openethereum/src/transaction.rs

171 lines
5.3 KiB
Rust
Raw Normal View History

use util::*;
2016-01-11 20:36:29 +01:00
use basic_types::*;
use error::*;
2016-01-12 01:30:30 +01:00
use evm::Schedule;
2015-12-09 00:45:33 +01:00
2016-01-11 13:52:40 +01:00
pub enum Action {
Create,
Call(Address),
2016-01-07 19:05:44 +01:00
}
/// A set of information describing an externally-originating message call
/// or contract creation operation.
2015-12-09 00:45:33 +01:00
pub struct Transaction {
2016-01-07 19:05:44 +01:00
pub nonce: U256,
pub gas_price: U256,
pub gas: U256,
2016-01-11 15:23:27 +01:00
pub action: Action,
2016-01-07 19:05:44 +01:00
pub value: U256,
2016-01-11 15:23:27 +01:00
pub data: Bytes,
2016-01-11 21:57:22 +01:00
// signature
pub v: u8,
2016-01-12 01:30:30 +01:00
pub r: U256,
pub s: U256,
2015-12-09 00:45:33 +01:00
hash: RefCell<Option<H256>>, //TODO: make this private
2015-12-09 00:45:33 +01:00
}
2016-01-07 19:05:44 +01:00
2016-01-11 20:36:29 +01:00
impl Transaction {
2016-01-11 22:00:25 +01:00
/// Append object into RLP stream, optionally with or without the signature.
2016-01-11 20:36:29 +01:00
pub fn rlp_append_opt(&self, s: &mut RlpStream, with_seal: Seal) {
s.append_list(6 + match with_seal { Seal::With => 3, _ => 0 });
s.append(&self.nonce);
s.append(&self.gas_price);
s.append(&self.gas);
2016-01-11 13:52:40 +01:00
match self.action {
Action::Create => s.append_empty_data(),
Action::Call(ref to) => s.append(to),
};
s.append(&self.value);
s.append(&self.data);
2016-01-11 20:36:29 +01:00
match with_seal {
2016-01-11 21:57:22 +01:00
Seal::With => { s.append(&(self.v as u16)).append(&self.r).append(&self.s); },
2016-01-11 20:36:29 +01:00
_ => {}
}
2016-01-07 21:29:36 +01:00
}
2016-01-11 20:36:29 +01:00
2016-01-11 22:00:25 +01:00
/// Get the RLP serialisation of the object, optionally with or without the signature.
2016-01-11 20:36:29 +01:00
pub fn rlp_bytes_opt(&self, with_seal: Seal) -> Bytes {
let mut s = RlpStream::new();
self.rlp_append_opt(&mut s, with_seal);
s.out()
}
}
impl RlpStandard for Transaction {
fn rlp_append(&self, s: &mut RlpStream) { self.rlp_append_opt(s, Seal::With) }
}
2016-01-07 21:29:36 +01:00
impl Transaction {
/// Get the hash of this header (sha3 of the RLP).
pub fn hash(&self) -> H256 {
let mut hash = self.hash.borrow_mut();
match &mut *hash {
&mut Some(ref h) => h.clone(),
hash @ &mut None => {
*hash = Some(self.rlp_sha3());
hash.as_ref().unwrap().clone()
}
}
}
2016-01-07 19:05:44 +01:00
/// Note that some fields have changed. Resets the memoised hash.
pub fn note_dirty(&self) {
*self.hash.borrow_mut() = None;
2016-01-07 19:05:44 +01:00
}
/// Returns transaction type.
2016-01-11 13:52:40 +01:00
pub fn action(&self) -> &Action { &self.action }
2016-01-08 22:04:21 +01:00
2016-01-12 01:30:30 +01:00
/// 0 is `v` is 27, 1 if 28, and 4 otherwise.
pub fn standard_v(&self) -> u8 { match self.v { 27 => 0, 28 => 1, _ => 4 } }
2016-01-11 21:57:22 +01:00
/// Construct a signature object from the sig.
2016-01-12 01:30:30 +01:00
pub fn signature(&self) -> Signature { Signature::from_rsv(&From::from(&self.r), &From::from(&self.s), self.standard_v()) }
2016-01-11 21:57:22 +01:00
/// The message hash of the transaction.
2016-01-11 22:00:25 +01:00
pub fn message_hash(&self) -> H256 { self.rlp_bytes_opt(Seal::Without).sha3() }
2016-01-11 21:57:22 +01:00
2016-01-11 15:23:27 +01:00
/// Returns transaction sender.
2016-01-11 21:57:22 +01:00
pub fn sender(&self) -> Result<Address, Error> { Ok(From::from(try!(ec::recover(&self.signature(), &self.message_hash())).sha3())) }
2016-01-12 01:30:30 +01:00
2016-01-12 17:40:34 +01:00
/// Signs the transaction as coming from `sender`.
pub fn sign(&mut self, secret: &Secret) {
let sig = ec::sign(secret, &self.message_hash());
let (r, s, v) = sig.unwrap().to_rsv();
self.r = r;
self.s = s;
self.v = v;
}
2016-01-12 01:30:30 +01:00
/// Get the transaction cost in gas for the given params.
2016-01-12 17:40:34 +01:00
pub fn gas_required_for(is_create: bool, data: &[u8], schedule: &Schedule) -> u64 {
2016-01-12 01:30:30 +01:00
data.iter().fold(
2016-01-12 17:40:34 +01:00
(if is_create {schedule.tx_create_gas} else {schedule.tx_gas}) as u64,
|g, b| g + (match *b { 0 => schedule.tx_data_zero_gas, _ => schedule.tx_data_non_zero_gas }) as u64
2016-01-12 01:30:30 +01:00
)
}
/// Get the transaction cost in gas for this transaction.
2016-01-12 17:40:34 +01:00
pub fn gas_required(&self, schedule: &Schedule) -> u64 {
Self::gas_required_for(match self.action{Action::Create=>true, Action::Call(_)=>false}, &self.data, schedule)
}
/// Do basic validation, checking for valid signature and minimum gas,
pub fn validate(self, schedule: &Schedule) -> Result<Transaction, Error> {
try!(self.sender());
2016-01-12 17:40:34 +01:00
if self.gas < U256::from(self.gas_required(&schedule)) {
Err(From::from(TransactionError::InvalidGasLimit(OutOfBounds{min: Some(U256::from(self.gas_required(&schedule))), max: None, found: self.gas})))
} else {
Ok(self)
}
2016-01-12 01:30:30 +01:00
}
}
2016-01-11 13:52:40 +01:00
impl Decodable for Action {
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder {
let rlp = decoder.as_rlp();
if rlp.is_empty() {
Ok(Action::Create)
} else {
Ok(Action::Call(try!(rlp.as_val())))
}
2015-12-09 00:45:33 +01:00
}
}
impl Decodable for Transaction {
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder {
2015-12-14 12:09:32 +01:00
let d = try!(decoder.as_list());
2016-01-12 01:30:30 +01:00
if d.len() != 9 {
return Err(DecoderError::RlpIncorrectListLen);
}
2016-01-11 20:36:29 +01:00
Ok(Transaction {
2015-12-14 12:09:32 +01:00
nonce: try!(Decodable::decode(&d[0])),
gas_price: try!(Decodable::decode(&d[1])),
gas: try!(Decodable::decode(&d[2])),
2016-01-11 13:52:40 +01:00
action: try!(Decodable::decode(&d[3])),
2015-12-14 12:09:32 +01:00
value: try!(Decodable::decode(&d[4])),
data: try!(Decodable::decode(&d[5])),
2016-01-11 21:57:22 +01:00
v: try!(u16::decode(&d[6])) as u8,
r: try!(Decodable::decode(&d[7])),
s: try!(Decodable::decode(&d[8])),
hash: RefCell::new(None)
2016-01-11 20:36:29 +01:00
})
2015-12-09 00:45:33 +01:00
}
}
2016-01-11 21:57:22 +01:00
#[test]
fn sender_test() {
let t: Transaction = decode(&FromHex::from_hex("f85f800182520894095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba048b55bfa915ac795c431978d8a6a992b628d557da5ff759b307d495a36649353a0efffd310ac743f371de3b9f7f9cb56c0b28ad43601b4ab949f53faa07bd2c804").unwrap());
assert_eq!(t.data, b"");
assert_eq!(t.gas, U256::from(0x5208u64));
assert_eq!(t.gas_price, U256::from(0x01u64));
assert_eq!(t.nonce, U256::from(0x00u64));
if let Action::Call(ref to) = t.action {
assert_eq!(*to, address_from_hex("095e7baea6a6c7c4c2dfeb977efac326af552d87"));
} else { panic!(); }
assert_eq!(t.value, U256::from(0x0au64));
assert_eq!(t.sender().unwrap(), address_from_hex("0f65fe9276bc9a24ae7083ae28e2660ef72df99e"));
2016-01-12 01:30:30 +01:00
}