solana/src/accountant.rs

310 lines
10 KiB
Rust
Raw Normal View History

2018-03-30 10:43:38 -07:00
//! The `accountant` module tracks client balances, and the progress of pending
2018-03-29 11:20:54 -07:00
//! transactions. It offers a high-level public API that signs transactions
2018-03-30 10:43:38 -07:00
//! on behalf of the caller, and a private low-level API for when they have
2018-03-29 11:20:54 -07:00
//! already been signed and verified.
2018-02-23 13:08:19 -08:00
use chrono::prelude::*;
2018-03-06 11:18:17 -08:00
use event::Event;
use hash::Hash;
use mint::Mint;
2018-04-02 12:51:44 -07:00
use plan::{Payment, Plan, Witness};
use signature::{KeyPair, PublicKey, Signature};
use std::collections::hash_map::Entry::Occupied;
use std::collections::{HashMap, HashSet};
use std::result;
use transaction::Transaction;
#[derive(Debug, PartialEq, Eq)]
pub enum AccountingError {
InsufficientFunds,
InvalidTransferSignature,
}
pub type Result<T> = result::Result<T, AccountingError>;
2018-02-23 13:08:19 -08:00
/// Commit funds to the 'to' party.
2018-04-02 12:51:44 -07:00
fn apply_payment(balances: &mut HashMap<PublicKey, i64>, payment: &Payment) {
*balances.entry(payment.to).or_insert(0) += payment.tokens;
}
2018-02-23 13:08:19 -08:00
pub struct Accountant {
2018-04-02 08:30:10 -07:00
balances: HashMap<PublicKey, i64>,
pending: HashMap<Signature, Plan>,
signatures: HashSet<Signature>,
2018-03-08 09:05:00 -08:00
time_sources: HashSet<PublicKey>,
last_time: DateTime<Utc>,
2018-02-23 13:08:19 -08:00
}
impl Accountant {
2018-04-02 12:51:44 -07:00
/// Create an Accountant using a deposit.
pub fn new_from_deposit(deposit: &Payment) -> Self {
2018-04-02 12:51:44 -07:00
let mut balances = HashMap::new();
2018-04-03 08:55:33 -07:00
apply_payment(&mut balances, deposit);
2018-04-02 12:51:44 -07:00
Accountant {
balances,
pending: HashMap::new(),
signatures: HashSet::new(),
time_sources: HashSet::new(),
last_time: Utc.timestamp(0, 0),
}
}
/// Create an Accountant with only a Mint. Typically used by unit tests.
pub fn new(mint: &Mint) -> Self {
2018-04-02 12:51:44 -07:00
let deposit = Payment {
to: mint.pubkey(),
tokens: mint.tokens,
};
Self::new_from_deposit(&deposit)
2018-04-02 12:51:44 -07:00
}
fn reserve_signature(&mut self, sig: &Signature) -> bool {
if self.signatures.contains(sig) {
return false;
}
self.signatures.insert(*sig);
true
}
2018-03-29 11:20:54 -07:00
/// Process a Transaction that has already been verified.
pub fn process_verified_transaction(&mut self, tr: &Transaction) -> Result<()> {
if self.get_balance(&tr.from).unwrap_or(0) < tr.tokens {
return Err(AccountingError::InsufficientFunds);
}
if !self.reserve_signature(&tr.sig) {
return Err(AccountingError::InvalidTransferSignature);
}
if let Some(x) = self.balances.get_mut(&tr.from) {
*x -= tr.tokens;
}
2018-03-10 23:30:01 -08:00
let mut plan = tr.plan.clone();
2018-03-22 13:38:06 -07:00
plan.apply_witness(&Witness::Timestamp(self.last_time));
2018-03-10 23:30:01 -08:00
2018-04-02 12:51:44 -07:00
if let Some(ref payment) = plan.final_payment() {
apply_payment(&mut self.balances, payment);
} else {
2018-03-10 23:30:01 -08:00
self.pending.insert(tr.sig, plan);
}
Ok(())
2018-02-23 13:08:19 -08:00
}
2018-03-29 11:20:54 -07:00
/// Process a Witness Signature that has already been verified.
fn process_verified_sig(&mut self, from: PublicKey, tx_sig: Signature) -> Result<()> {
if let Occupied(mut e) = self.pending.entry(tx_sig) {
2018-03-22 13:38:06 -07:00
e.get_mut().apply_witness(&Witness::Signature(from));
2018-04-02 12:51:44 -07:00
if let Some(ref payment) = e.get().final_payment() {
apply_payment(&mut self.balances, payment);
e.remove_entry();
}
2018-03-10 23:11:08 -08:00
};
Ok(())
}
2018-03-29 11:20:54 -07:00
/// Process a Witness Timestamp that has already been verified.
2018-03-08 09:05:00 -08:00
fn process_verified_timestamp(&mut self, from: PublicKey, dt: DateTime<Utc>) -> Result<()> {
// If this is the first timestamp we've seen, it probably came from the genesis block,
// so we'll trust it.
if self.last_time == Utc.timestamp(0, 0) {
self.time_sources.insert(from);
}
if self.time_sources.contains(&from) {
if dt > self.last_time {
self.last_time = dt;
}
} else {
return Ok(());
2018-03-08 09:05:00 -08:00
}
// Check to see if any timelocked transactions can be completed.
let mut completed = vec![];
2018-03-10 23:30:01 -08:00
for (key, plan) in &mut self.pending {
2018-03-22 13:38:06 -07:00
plan.apply_witness(&Witness::Timestamp(self.last_time));
2018-04-02 12:51:44 -07:00
if let Some(ref payment) = plan.final_payment() {
apply_payment(&mut self.balances, payment);
2018-03-10 23:30:01 -08:00
completed.push(key.clone());
}
}
for key in completed {
self.pending.remove(&key);
}
Ok(())
}
2018-03-29 11:20:54 -07:00
/// Process an Transaction or Witness that has already been verified.
pub fn process_verified_event(&mut self, event: &Event) -> Result<()> {
match *event {
Event::Transaction(ref tr) => self.process_verified_transaction(tr),
Event::Signature { from, tx_sig, .. } => self.process_verified_sig(from, tx_sig),
Event::Timestamp { from, dt, .. } => self.process_verified_timestamp(from, dt),
}
}
2018-03-29 11:20:54 -07:00
/// Create, sign, and process a Transaction from `keypair` to `to` of
/// `n` tokens where `last_id` is the last Entry ID observed by the client.
2018-02-23 13:08:19 -08:00
pub fn transfer(
&mut self,
n: i64,
keypair: &KeyPair,
2018-02-28 09:07:54 -08:00
to: PublicKey,
2018-03-20 22:15:44 -07:00
last_id: Hash,
) -> Result<Signature> {
2018-03-20 22:15:44 -07:00
let tr = Transaction::new(keypair, to, n, last_id);
let sig = tr.sig;
self.process_verified_transaction(&tr).map(|_| sig)
2018-02-23 13:08:19 -08:00
}
2018-03-29 11:20:54 -07:00
/// Create, sign, and process a postdated Transaction from `keypair`
/// to `to` of `n` tokens on `dt` where `last_id` is the last Entry ID
/// observed by the client.
pub fn transfer_on_date(
&mut self,
n: i64,
keypair: &KeyPair,
to: PublicKey,
dt: DateTime<Utc>,
2018-03-20 22:15:44 -07:00
last_id: Hash,
) -> Result<Signature> {
2018-03-20 22:15:44 -07:00
let tr = Transaction::new_on_date(keypair, to, dt, n, last_id);
let sig = tr.sig;
self.process_verified_transaction(&tr).map(|_| sig)
}
pub fn get_balance(&self, pubkey: &PublicKey) -> Option<i64> {
2018-03-22 13:15:29 -07:00
self.balances.get(pubkey).cloned()
2018-02-23 13:08:19 -08:00
}
}
#[cfg(test)]
mod tests {
use super::*;
use signature::KeyPairUtil;
2018-02-23 13:08:19 -08:00
#[test]
fn test_accountant() {
let alice = Mint::new(10_000);
let bob_pubkey = KeyPair::new().pubkey();
let mut acc = Accountant::new(&alice);
acc.transfer(1_000, &alice.keypair(), bob_pubkey, alice.last_id())
2018-03-20 22:15:44 -07:00
.unwrap();
assert_eq!(acc.get_balance(&bob_pubkey).unwrap(), 1_000);
2018-02-23 13:08:19 -08:00
acc.transfer(500, &alice.keypair(), bob_pubkey, alice.last_id())
2018-03-20 22:15:44 -07:00
.unwrap();
2018-02-23 13:08:19 -08:00
assert_eq!(acc.get_balance(&bob_pubkey).unwrap(), 1_500);
}
2018-02-27 10:28:10 -08:00
#[test]
fn test_invalid_transfer() {
let alice = Mint::new(11_000);
let mut acc = Accountant::new(&alice);
let bob_pubkey = KeyPair::new().pubkey();
acc.transfer(1_000, &alice.keypair(), bob_pubkey, alice.last_id())
2018-03-20 22:15:44 -07:00
.unwrap();
assert_eq!(
acc.transfer(10_001, &alice.keypair(), bob_pubkey, alice.last_id()),
Err(AccountingError::InsufficientFunds)
);
let alice_pubkey = alice.keypair().pubkey();
2018-02-27 10:28:10 -08:00
assert_eq!(acc.get_balance(&alice_pubkey).unwrap(), 10_000);
assert_eq!(acc.get_balance(&bob_pubkey).unwrap(), 1_000);
}
#[test]
fn test_transfer_to_newb() {
let alice = Mint::new(10_000);
let mut acc = Accountant::new(&alice);
let alice_keypair = alice.keypair();
let bob_pubkey = KeyPair::new().pubkey();
acc.transfer(500, &alice_keypair, bob_pubkey, alice.last_id())
2018-03-20 22:15:44 -07:00
.unwrap();
2018-02-27 10:28:10 -08:00
assert_eq!(acc.get_balance(&bob_pubkey).unwrap(), 500);
}
#[test]
fn test_transfer_on_date() {
let alice = Mint::new(1);
let mut acc = Accountant::new(&alice);
let alice_keypair = alice.keypair();
let bob_pubkey = KeyPair::new().pubkey();
let dt = Utc::now();
acc.transfer_on_date(1, &alice_keypair, bob_pubkey, dt, alice.last_id())
.unwrap();
// Alice's balance will be zero because all funds are locked up.
assert_eq!(acc.get_balance(&alice.pubkey()), Some(0));
// Bob's balance will be None because the funds have not been
// sent.
assert_eq!(acc.get_balance(&bob_pubkey), None);
// Now, acknowledge the time in the condition occurred and
// that bob's funds are now available.
acc.process_verified_timestamp(alice.pubkey(), dt).unwrap();
assert_eq!(acc.get_balance(&bob_pubkey), Some(1));
acc.process_verified_timestamp(alice.pubkey(), dt).unwrap(); // <-- Attack! Attempt to process completed transaction.
assert_ne!(acc.get_balance(&bob_pubkey), Some(2));
}
2018-03-08 14:39:03 -08:00
#[test]
fn test_transfer_after_date() {
let alice = Mint::new(1);
let mut acc = Accountant::new(&alice);
2018-03-08 14:39:03 -08:00
let alice_keypair = alice.keypair();
let bob_pubkey = KeyPair::new().pubkey();
let dt = Utc::now();
acc.process_verified_timestamp(alice.pubkey(), dt).unwrap();
// It's now past now, so this transfer should be processed immediately.
acc.transfer_on_date(1, &alice_keypair, bob_pubkey, dt, alice.last_id())
2018-03-08 14:39:03 -08:00
.unwrap();
assert_eq!(acc.get_balance(&alice.pubkey()), Some(0));
assert_eq!(acc.get_balance(&bob_pubkey), Some(1));
}
#[test]
fn test_cancel_transfer() {
let alice = Mint::new(1);
let mut acc = Accountant::new(&alice);
let alice_keypair = alice.keypair();
let bob_pubkey = KeyPair::new().pubkey();
let dt = Utc::now();
let sig = acc.transfer_on_date(1, &alice_keypair, bob_pubkey, dt, alice.last_id())
.unwrap();
// Alice's balance will be zero because all funds are locked up.
assert_eq!(acc.get_balance(&alice.pubkey()), Some(0));
// Bob's balance will be None because the funds have not been
// sent.
assert_eq!(acc.get_balance(&bob_pubkey), None);
// Now, cancel the trancaction. Alice gets her funds back, Bob never sees them.
acc.process_verified_sig(alice.pubkey(), sig).unwrap();
assert_eq!(acc.get_balance(&alice.pubkey()), Some(1));
assert_eq!(acc.get_balance(&bob_pubkey), None);
acc.process_verified_sig(alice.pubkey(), sig).unwrap(); // <-- Attack! Attempt to cancel completed transaction.
assert_ne!(acc.get_balance(&alice.pubkey()), Some(2));
}
#[test]
fn test_duplicate_event_signature() {
let alice = Mint::new(1);
let mut acc = Accountant::new(&alice);
let sig = Signature::default();
assert!(acc.reserve_signature(&sig));
assert!(!acc.reserve_signature(&sig));
}
2018-02-23 13:08:19 -08:00
}