2019-04-01 16:45:53 -07:00
|
|
|
use crate::id;
|
|
|
|
use crate::stake_state::{StakeAccount, StakeState};
|
|
|
|
use bincode::deserialize;
|
|
|
|
use log::*;
|
|
|
|
use serde_derive::{Deserialize, Serialize};
|
|
|
|
use solana_sdk::account::KeyedAccount;
|
|
|
|
use solana_sdk::instruction::{AccountMeta, Instruction, InstructionError};
|
|
|
|
use solana_sdk::pubkey::Pubkey;
|
2019-06-17 19:34:21 -07:00
|
|
|
use solana_sdk::syscall;
|
2019-04-03 09:45:57 -06:00
|
|
|
use solana_sdk::system_instruction;
|
2019-04-01 16:45:53 -07:00
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
|
|
|
|
pub enum StakeInstruction {
|
2019-05-21 07:32:38 -07:00
|
|
|
// Initialize the stake account as a MiningPool account
|
|
|
|
///
|
2019-06-10 12:17:29 -07:00
|
|
|
/// Expects 1 Accounts:
|
|
|
|
/// 0 - MiningPool StakeAccount to be initialized
|
2019-05-21 07:32:38 -07:00
|
|
|
InitializeMiningPool,
|
|
|
|
|
2019-06-10 12:17:29 -07:00
|
|
|
/// `Delegate` a stake to a particular node
|
2019-05-21 07:32:38 -07:00
|
|
|
///
|
2019-06-10 12:17:29 -07:00
|
|
|
/// Expects 2 Accounts:
|
2019-06-17 19:34:21 -07:00
|
|
|
/// 0 - Uninitialized StakeAccount to be delegated <= must have this signature
|
2019-06-10 12:17:29 -07:00
|
|
|
/// 1 - VoteAccount to which this Stake will be delegated
|
|
|
|
///
|
|
|
|
/// The u64 is the portion of the Stake account balance to be activated,
|
|
|
|
/// must be less than StakeAccount.lamports
|
|
|
|
///
|
|
|
|
/// This instruction resets rewards, so issue
|
|
|
|
DelegateStake(u64),
|
2019-04-01 16:45:53 -07:00
|
|
|
|
|
|
|
/// Redeem credits in the stake account
|
2019-05-21 07:32:38 -07:00
|
|
|
///
|
2019-06-10 12:17:29 -07:00
|
|
|
/// Expects 3 Accounts:
|
|
|
|
/// 0 - MiningPool Stake Account to redeem credits from
|
|
|
|
/// 1 - Delegate StakeAccount to be updated
|
|
|
|
/// 2 - VoteAccount to which the Stake is delegated,
|
2019-04-01 16:45:53 -07:00
|
|
|
RedeemVoteCredits,
|
|
|
|
}
|
|
|
|
|
2019-06-10 12:17:29 -07:00
|
|
|
pub fn create_stake_account(
|
2019-05-23 23:20:04 -07:00
|
|
|
from_pubkey: &Pubkey,
|
|
|
|
staker_pubkey: &Pubkey,
|
2019-05-21 07:32:38 -07:00
|
|
|
lamports: u64,
|
|
|
|
) -> Vec<Instruction> {
|
2019-06-17 19:34:21 -07:00
|
|
|
vec![system_instruction::create_account(
|
|
|
|
from_pubkey,
|
|
|
|
staker_pubkey,
|
|
|
|
lamports,
|
|
|
|
std::mem::size_of::<StakeState>() as u64,
|
|
|
|
&id(),
|
|
|
|
)]
|
2019-05-21 07:32:38 -07:00
|
|
|
}
|
|
|
|
|
2019-06-10 12:17:29 -07:00
|
|
|
pub fn create_stake_account_and_delegate_stake(
|
|
|
|
from_pubkey: &Pubkey,
|
|
|
|
staker_pubkey: &Pubkey,
|
|
|
|
vote_pubkey: &Pubkey,
|
|
|
|
lamports: u64,
|
|
|
|
) -> Vec<Instruction> {
|
|
|
|
let mut instructions = create_stake_account(from_pubkey, staker_pubkey, lamports);
|
|
|
|
instructions.push(delegate_stake(staker_pubkey, vote_pubkey, lamports));
|
|
|
|
instructions
|
|
|
|
}
|
|
|
|
|
2019-05-21 07:32:38 -07:00
|
|
|
pub fn create_mining_pool_account(
|
2019-05-23 23:20:04 -07:00
|
|
|
from_pubkey: &Pubkey,
|
|
|
|
staker_pubkey: &Pubkey,
|
2019-05-21 07:32:38 -07:00
|
|
|
lamports: u64,
|
|
|
|
) -> Vec<Instruction> {
|
|
|
|
vec![
|
|
|
|
system_instruction::create_account(
|
2019-05-23 23:20:04 -07:00
|
|
|
from_pubkey,
|
|
|
|
staker_pubkey,
|
2019-05-21 07:32:38 -07:00
|
|
|
lamports,
|
|
|
|
std::mem::size_of::<StakeState>() as u64,
|
|
|
|
&id(),
|
|
|
|
),
|
|
|
|
Instruction::new(
|
|
|
|
id(),
|
|
|
|
&StakeInstruction::InitializeMiningPool,
|
2019-06-03 09:04:51 -07:00
|
|
|
vec![AccountMeta::new(*staker_pubkey, false)],
|
2019-05-21 07:32:38 -07:00
|
|
|
),
|
|
|
|
]
|
2019-04-03 09:45:57 -06:00
|
|
|
}
|
2019-04-01 16:45:53 -07:00
|
|
|
|
2019-04-03 09:45:57 -06:00
|
|
|
pub fn redeem_vote_credits(
|
2019-05-23 23:20:04 -07:00
|
|
|
mining_pool_pubkey: &Pubkey,
|
|
|
|
stake_pubkey: &Pubkey,
|
|
|
|
vote_pubkey: &Pubkey,
|
2019-04-03 09:45:57 -06:00
|
|
|
) -> Instruction {
|
|
|
|
let account_metas = vec![
|
2019-05-23 23:20:04 -07:00
|
|
|
AccountMeta::new(*mining_pool_pubkey, false),
|
|
|
|
AccountMeta::new(*stake_pubkey, false),
|
|
|
|
AccountMeta::new(*vote_pubkey, false),
|
2019-04-03 09:45:57 -06:00
|
|
|
];
|
|
|
|
Instruction::new(id(), &StakeInstruction::RedeemVoteCredits, account_metas)
|
|
|
|
}
|
2019-04-01 16:45:53 -07:00
|
|
|
|
2019-06-10 12:17:29 -07:00
|
|
|
pub fn delegate_stake(stake_pubkey: &Pubkey, vote_pubkey: &Pubkey, stake: u64) -> Instruction {
|
2019-04-03 09:45:57 -06:00
|
|
|
let account_metas = vec![
|
2019-05-23 23:20:04 -07:00
|
|
|
AccountMeta::new(*stake_pubkey, true),
|
|
|
|
AccountMeta::new(*vote_pubkey, false),
|
2019-06-17 19:34:21 -07:00
|
|
|
AccountMeta::new(syscall::current::id(), false),
|
2019-04-03 09:45:57 -06:00
|
|
|
];
|
2019-06-10 12:17:29 -07:00
|
|
|
Instruction::new(id(), &StakeInstruction::DelegateStake(stake), account_metas)
|
2019-04-01 16:45:53 -07:00
|
|
|
}
|
|
|
|
|
2019-06-17 19:34:21 -07:00
|
|
|
fn current(current_account: &KeyedAccount) -> Result<syscall::current::Current, InstructionError> {
|
|
|
|
syscall::current::Current::from(current_account.account)
|
|
|
|
.ok_or(InstructionError::InvalidArgument)
|
|
|
|
}
|
|
|
|
|
2019-04-01 16:45:53 -07:00
|
|
|
pub fn process_instruction(
|
|
|
|
_program_id: &Pubkey,
|
|
|
|
keyed_accounts: &mut [KeyedAccount],
|
|
|
|
data: &[u8],
|
|
|
|
) -> Result<(), InstructionError> {
|
|
|
|
solana_logger::setup();
|
|
|
|
|
|
|
|
trace!("process_instruction: {:?}", data);
|
|
|
|
trace!("keyed_accounts: {:?}", keyed_accounts);
|
|
|
|
|
2019-06-03 09:04:51 -07:00
|
|
|
if keyed_accounts.is_empty() {
|
2019-04-01 16:45:53 -07:00
|
|
|
Err(InstructionError::InvalidInstructionData)?;
|
|
|
|
}
|
|
|
|
|
2019-06-03 09:04:51 -07:00
|
|
|
let (me, rest) = &mut keyed_accounts.split_at_mut(1);
|
|
|
|
let me = &mut me[0];
|
2019-04-01 16:45:53 -07:00
|
|
|
|
|
|
|
// TODO: data-driven unpack and dispatch of KeyedAccounts
|
|
|
|
match deserialize(data).map_err(|_| InstructionError::InvalidInstructionData)? {
|
2019-05-21 07:32:38 -07:00
|
|
|
StakeInstruction::InitializeMiningPool => {
|
|
|
|
if !rest.is_empty() {
|
|
|
|
Err(InstructionError::InvalidInstructionData)?;
|
|
|
|
}
|
|
|
|
me.initialize_mining_pool()
|
|
|
|
}
|
2019-06-10 12:17:29 -07:00
|
|
|
StakeInstruction::DelegateStake(stake) => {
|
2019-06-17 19:34:21 -07:00
|
|
|
if rest.len() != 2 {
|
2019-04-01 16:45:53 -07:00
|
|
|
Err(InstructionError::InvalidInstructionData)?;
|
|
|
|
}
|
|
|
|
let vote = &rest[0];
|
2019-06-17 19:34:21 -07:00
|
|
|
|
|
|
|
me.delegate_stake(vote, stake, ¤t(&rest[1])?)
|
2019-04-01 16:45:53 -07:00
|
|
|
}
|
|
|
|
StakeInstruction::RedeemVoteCredits => {
|
|
|
|
if rest.len() != 2 {
|
|
|
|
Err(InstructionError::InvalidInstructionData)?;
|
|
|
|
}
|
|
|
|
let (stake, vote) = rest.split_at_mut(1);
|
|
|
|
let stake = &mut stake[0];
|
2019-04-07 21:45:28 -07:00
|
|
|
let vote = &mut vote[0];
|
|
|
|
|
2019-04-01 16:45:53 -07:00
|
|
|
me.redeem_vote_credits(stake, vote)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use bincode::serialize;
|
|
|
|
use solana_sdk::account::Account;
|
|
|
|
|
2019-05-07 17:08:49 -07:00
|
|
|
fn process_instruction(instruction: &Instruction) -> Result<(), InstructionError> {
|
2019-06-17 19:34:21 -07:00
|
|
|
let mut accounts: Vec<_> = instruction
|
|
|
|
.accounts
|
|
|
|
.iter()
|
|
|
|
.map(|meta| {
|
|
|
|
if syscall::current::check_id(&meta.pubkey) {
|
|
|
|
syscall::current::create_account(1, 0, 0, 0)
|
|
|
|
} else {
|
|
|
|
Account::default()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2019-05-07 17:08:49 -07:00
|
|
|
{
|
|
|
|
let mut keyed_accounts: Vec<_> = instruction
|
|
|
|
.accounts
|
|
|
|
.iter()
|
|
|
|
.zip(accounts.iter_mut())
|
|
|
|
.map(|(meta, account)| KeyedAccount::new(&meta.pubkey, meta.is_signer, account))
|
|
|
|
.collect();
|
2019-05-31 16:29:21 -06:00
|
|
|
super::process_instruction(&Pubkey::default(), &mut keyed_accounts, &instruction.data)
|
2019-05-07 17:08:49 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_stake_process_instruction() {
|
|
|
|
assert_eq!(
|
|
|
|
process_instruction(&redeem_vote_credits(
|
|
|
|
&Pubkey::default(),
|
|
|
|
&Pubkey::default(),
|
|
|
|
&Pubkey::default()
|
|
|
|
)),
|
|
|
|
Err(InstructionError::InvalidAccountData),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2019-06-10 12:17:29 -07:00
|
|
|
process_instruction(&delegate_stake(&Pubkey::default(), &Pubkey::default(), 0)),
|
2019-05-07 17:08:49 -07:00
|
|
|
Err(InstructionError::InvalidAccountData),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-01 16:45:53 -07:00
|
|
|
#[test]
|
|
|
|
fn test_stake_process_instruction_decode_bail() {
|
|
|
|
// these will not call stake_state, have bogus contents
|
|
|
|
|
|
|
|
// gets the first check
|
|
|
|
assert_eq!(
|
2019-05-07 17:08:49 -07:00
|
|
|
super::process_instruction(
|
2019-04-01 16:45:53 -07:00
|
|
|
&Pubkey::default(),
|
|
|
|
&mut [KeyedAccount::new(
|
|
|
|
&Pubkey::default(),
|
|
|
|
false,
|
|
|
|
&mut Account::default(),
|
|
|
|
)],
|
2019-06-10 12:17:29 -07:00
|
|
|
&serialize(&StakeInstruction::DelegateStake(0)).unwrap(),
|
2019-04-01 16:45:53 -07:00
|
|
|
),
|
|
|
|
Err(InstructionError::InvalidInstructionData),
|
|
|
|
);
|
|
|
|
|
2019-05-07 17:08:49 -07:00
|
|
|
// gets the sub-check for number of args
|
2019-04-01 16:45:53 -07:00
|
|
|
assert_eq!(
|
2019-05-07 17:08:49 -07:00
|
|
|
super::process_instruction(
|
2019-04-01 16:45:53 -07:00
|
|
|
&Pubkey::default(),
|
2019-06-03 09:04:51 -07:00
|
|
|
&mut [KeyedAccount::new(
|
|
|
|
&Pubkey::default(),
|
|
|
|
false,
|
|
|
|
&mut Account::default()
|
|
|
|
),],
|
2019-06-10 12:17:29 -07:00
|
|
|
&serialize(&StakeInstruction::DelegateStake(0)).unwrap(),
|
2019-04-01 16:45:53 -07:00
|
|
|
),
|
|
|
|
Err(InstructionError::InvalidInstructionData),
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2019-05-07 17:08:49 -07:00
|
|
|
super::process_instruction(
|
2019-04-01 16:45:53 -07:00
|
|
|
&Pubkey::default(),
|
|
|
|
&mut [
|
|
|
|
KeyedAccount::new(&Pubkey::default(), false, &mut Account::default()),
|
|
|
|
KeyedAccount::new(&Pubkey::default(), false, &mut Account::default()),
|
|
|
|
],
|
|
|
|
&serialize(&StakeInstruction::RedeemVoteCredits).unwrap(),
|
|
|
|
),
|
|
|
|
Err(InstructionError::InvalidInstructionData),
|
|
|
|
);
|
2019-05-07 17:08:49 -07:00
|
|
|
|
2019-06-17 19:34:21 -07:00
|
|
|
// gets the check non-deserialize-able account in delegate_stake
|
2019-05-07 17:08:49 -07:00
|
|
|
assert_eq!(
|
|
|
|
super::process_instruction(
|
|
|
|
&Pubkey::default(),
|
|
|
|
&mut [
|
|
|
|
KeyedAccount::new(&Pubkey::default(), true, &mut Account::default()),
|
|
|
|
KeyedAccount::new(&Pubkey::default(), false, &mut Account::default()),
|
2019-06-17 19:34:21 -07:00
|
|
|
KeyedAccount::new(
|
|
|
|
&syscall::current::id(),
|
|
|
|
false,
|
|
|
|
&mut syscall::current::create_account(1, 0, 0, 0)
|
|
|
|
),
|
2019-05-07 17:08:49 -07:00
|
|
|
],
|
2019-06-10 12:17:29 -07:00
|
|
|
&serialize(&StakeInstruction::DelegateStake(0)).unwrap(),
|
2019-05-07 17:08:49 -07:00
|
|
|
),
|
|
|
|
Err(InstructionError::InvalidAccountData),
|
|
|
|
);
|
|
|
|
|
|
|
|
// gets the check in redeem_vote_credits
|
|
|
|
assert_eq!(
|
|
|
|
super::process_instruction(
|
|
|
|
&Pubkey::default(),
|
|
|
|
&mut [
|
|
|
|
KeyedAccount::new(&Pubkey::default(), false, &mut Account::default()),
|
|
|
|
KeyedAccount::new(&Pubkey::default(), false, &mut Account::default()),
|
|
|
|
KeyedAccount::new(&Pubkey::default(), false, &mut Account::default()),
|
|
|
|
],
|
|
|
|
&serialize(&StakeInstruction::RedeemVoteCredits).unwrap(),
|
|
|
|
),
|
|
|
|
Err(InstructionError::InvalidAccountData),
|
|
|
|
);
|
2019-04-01 16:45:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|