2019-03-23 21:12:27 -06:00
|
|
|
//! Defines a composable Instruction type and a memory-efficient CompiledInstruction.
|
|
|
|
|
|
|
|
use crate::pubkey::Pubkey;
|
2019-03-25 09:15:16 -06:00
|
|
|
use crate::short_vec;
|
2019-03-23 21:12:27 -06:00
|
|
|
use crate::system_instruction::SystemError;
|
2019-03-24 22:51:56 -07:00
|
|
|
use bincode::serialize;
|
2019-03-23 21:12:27 -06:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
/// Reasons the runtime might have rejected an instruction.
|
2019-04-05 19:07:30 -06:00
|
|
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
|
2019-03-23 21:12:27 -06:00
|
|
|
pub enum InstructionError {
|
|
|
|
/// Deprecated! Use CustomError instead!
|
|
|
|
/// The program instruction returned an error
|
|
|
|
GenericError,
|
|
|
|
|
|
|
|
/// The arguments provided to a program instruction where invalid
|
|
|
|
InvalidArgument,
|
|
|
|
|
|
|
|
/// An instruction's data contents was invalid
|
|
|
|
InvalidInstructionData,
|
|
|
|
|
|
|
|
/// An account's data contents was invalid
|
|
|
|
InvalidAccountData,
|
|
|
|
|
|
|
|
/// An account's data was too small
|
|
|
|
AccountDataTooSmall,
|
|
|
|
|
2019-06-10 12:17:29 -07:00
|
|
|
/// An account's balance was too small to complete the instruction
|
|
|
|
InsufficientFunds,
|
|
|
|
|
2019-03-23 21:12:27 -06:00
|
|
|
/// The account did not have the expected program id
|
|
|
|
IncorrectProgramId,
|
|
|
|
|
|
|
|
/// A signature was required but not found
|
|
|
|
MissingRequiredSignature,
|
|
|
|
|
|
|
|
/// An initialize instruction was sent to an account that has already been initialized.
|
|
|
|
AccountAlreadyInitialized,
|
|
|
|
|
|
|
|
/// An attempt to operate on an account that hasn't been initialized.
|
|
|
|
UninitializedAccount,
|
|
|
|
|
|
|
|
/// Program's instruction lamport balance does not equal the balance after the instruction
|
|
|
|
UnbalancedInstruction,
|
|
|
|
|
|
|
|
/// Program modified an account's program id
|
|
|
|
ModifiedProgramId,
|
|
|
|
|
|
|
|
/// Program spent the lamports of an account that doesn't belong to it
|
|
|
|
ExternalAccountLamportSpend,
|
|
|
|
|
|
|
|
/// Program modified the data of an account that doesn't belong to it
|
|
|
|
ExternalAccountDataModified,
|
|
|
|
|
2019-06-10 20:50:02 -06:00
|
|
|
/// Credit-only account spent lamports
|
|
|
|
CreditOnlyLamportSpend,
|
|
|
|
|
|
|
|
/// Credit-only account modified data
|
|
|
|
CreditOnlyDataModified,
|
|
|
|
|
2019-03-23 21:12:27 -06:00
|
|
|
/// An account was referenced more than once in a single instruction
|
|
|
|
DuplicateAccountIndex,
|
|
|
|
|
|
|
|
/// CustomError allows on-chain programs to implement program-specific error types and see
|
2019-04-11 11:41:12 -07:00
|
|
|
/// them returned by the Solana runtime. A CustomError may be any type that is represented
|
|
|
|
/// as or serialized to a u32 integer.
|
|
|
|
CustomError(u32),
|
2019-03-23 21:12:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl InstructionError {
|
|
|
|
pub fn new_result_with_negative_lamports() -> Self {
|
2019-04-11 11:41:12 -07:00
|
|
|
InstructionError::CustomError(SystemError::ResultWithNegativeLamports as u32)
|
2019-03-23 21:12:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-29 16:11:21 -06:00
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
2019-03-27 17:06:50 -06:00
|
|
|
pub struct Instruction {
|
|
|
|
/// Pubkey of the instruction processor that executes this instruction
|
2019-07-01 18:34:22 -06:00
|
|
|
pub program_id: Pubkey,
|
2019-03-27 17:06:50 -06:00
|
|
|
/// Metadata for what accounts should be passed to the instruction processor
|
|
|
|
pub accounts: Vec<AccountMeta>,
|
|
|
|
/// Opaque data passed to the instruction processor
|
2019-03-23 21:12:27 -06:00
|
|
|
pub data: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
2019-03-27 17:06:50 -06:00
|
|
|
impl Instruction {
|
2019-07-01 18:34:22 -06:00
|
|
|
pub fn new<T: Serialize>(program_id: Pubkey, data: &T, accounts: Vec<AccountMeta>) -> Self {
|
2019-03-23 21:12:27 -06:00
|
|
|
let data = serialize(data).unwrap();
|
|
|
|
Self {
|
2019-07-01 18:34:22 -06:00
|
|
|
program_id,
|
2019-03-23 21:12:27 -06:00
|
|
|
data,
|
|
|
|
accounts,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Account metadata used to define Instructions
|
2019-03-29 16:11:21 -06:00
|
|
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
2019-03-23 21:12:27 -06:00
|
|
|
pub struct AccountMeta {
|
|
|
|
/// An account's public key
|
|
|
|
pub pubkey: Pubkey,
|
|
|
|
/// True if an Instruciton requires a Transaction signature matching `pubkey`.
|
|
|
|
pub is_signer: bool,
|
2019-05-23 18:19:53 -04:00
|
|
|
/// True if the `pubkey` can be loaded as a credit-debit account.
|
|
|
|
pub is_debitable: bool,
|
2019-03-23 21:12:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AccountMeta {
|
|
|
|
pub fn new(pubkey: Pubkey, is_signer: bool) -> Self {
|
2019-05-23 18:19:53 -04:00
|
|
|
Self {
|
|
|
|
pubkey,
|
|
|
|
is_signer,
|
|
|
|
is_debitable: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new_credit_only(pubkey: Pubkey, is_signer: bool) -> Self {
|
|
|
|
Self {
|
|
|
|
pubkey,
|
|
|
|
is_signer,
|
|
|
|
is_debitable: false,
|
|
|
|
}
|
2019-03-23 21:12:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-27 17:06:50 -06:00
|
|
|
/// An instruction to execute a program
|
|
|
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
|
|
|
|
pub struct CompiledInstruction {
|
2019-05-22 18:23:16 -04:00
|
|
|
/// Index into the transaction keys array indicating the program account that executes this instruction
|
2019-07-01 18:34:22 -06:00
|
|
|
pub program_id_index: u8,
|
2019-03-27 17:06:50 -06:00
|
|
|
/// Ordered indices into the transaction keys array indicating which accounts to pass to the program
|
2019-03-25 09:15:16 -06:00
|
|
|
#[serde(with = "short_vec")]
|
2019-03-27 17:06:50 -06:00
|
|
|
pub accounts: Vec<u8>,
|
|
|
|
/// The program input data
|
2019-03-25 09:15:16 -06:00
|
|
|
#[serde(with = "short_vec")]
|
2019-03-27 17:06:50 -06:00
|
|
|
pub data: Vec<u8>,
|
|
|
|
}
|
2019-03-23 21:12:27 -06:00
|
|
|
|
|
|
|
impl CompiledInstruction {
|
2019-03-27 17:06:50 -06:00
|
|
|
pub fn new<T: Serialize>(program_ids_index: u8, data: &T, accounts: Vec<u8>) -> Self {
|
|
|
|
let data = serialize(data).unwrap();
|
|
|
|
Self {
|
2019-07-01 18:34:22 -06:00
|
|
|
program_id_index: program_ids_index,
|
2019-03-27 17:06:50 -06:00
|
|
|
data,
|
|
|
|
accounts,
|
|
|
|
}
|
|
|
|
}
|
2019-04-02 16:02:57 -06:00
|
|
|
|
|
|
|
pub fn program_id<'a>(&self, program_ids: &'a [Pubkey]) -> &'a Pubkey {
|
2019-07-01 18:34:22 -06:00
|
|
|
&program_ids[self.program_id_index as usize]
|
2019-04-02 16:02:57 -06:00
|
|
|
}
|
2019-03-23 21:12:27 -06:00
|
|
|
}
|