forked from CodeChain-io/codechain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction.rs
346 lines (306 loc) · 10.2 KB
/
transaction.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
// Copyright 2018-2019 Kodebox, Inc.
// This file is part of CodeChain.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use std::ops::Deref;
use ccrypto::blake256;
use ckey::{self, public_to_address, recover, sign, Private, Public, Signature};
use ctypes::errors::SyntaxError;
use ctypes::transaction::Transaction;
use ctypes::{BlockNumber, CommonParams};
use primitives::H256;
use rlp::{self, DecoderError, Encodable, RlpStream, UntrustedRlp};
use crate::error::Error;
/// Signed transaction information without verified signature.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct UnverifiedTransaction {
/// Plain Transaction.
unsigned: Transaction,
/// Signature.
sig: Signature,
/// Hash of the transaction
hash: H256,
}
impl Deref for UnverifiedTransaction {
type Target = Transaction;
fn deref(&self) -> &Self::Target {
&self.unsigned
}
}
impl From<UnverifiedTransaction> for Transaction {
fn from(tx: UnverifiedTransaction) -> Self {
tx.unsigned
}
}
impl rlp::Decodable for UnverifiedTransaction {
fn decode(d: &UntrustedRlp) -> Result<Self, DecoderError> {
let item_count = d.item_count()?;
if item_count != 5 {
return Err(DecoderError::RlpIncorrectListLen {
expected: 5,
got: item_count,
})
}
let hash = blake256(d.as_raw());
Ok(UnverifiedTransaction {
unsigned: Transaction {
seq: d.val_at(0)?,
fee: d.val_at(1)?,
network_id: d.val_at(2)?,
action: d.val_at(3)?,
},
sig: d.val_at(4)?,
hash,
})
}
}
impl rlp::Encodable for UnverifiedTransaction {
fn rlp_append(&self, s: &mut RlpStream) {
self.rlp_append_sealed_transaction(s)
}
}
impl UnverifiedTransaction {
pub fn new(unsigned: Transaction, sig: Signature) -> Self {
UnverifiedTransaction {
unsigned,
sig,
hash: 0.into(),
}
.compute_hash()
}
/// Used to compute hash of created transactions
fn compute_hash(mut self) -> UnverifiedTransaction {
let hash = blake256(&*self.rlp_bytes());
self.hash = hash;
self
}
/// Append object with a signature into RLP stream
fn rlp_append_sealed_transaction(&self, s: &mut RlpStream) {
s.begin_list(5);
s.append(&self.seq);
s.append(&self.fee);
s.append(&self.network_id);
s.append(&self.action);
s.append(&self.sig);
}
/// Get the hash of this header (blake256 of the RLP).
pub fn hash(&self) -> H256 {
self.hash
}
/// Construct a signature object from the sig.
pub fn signature(&self) -> Signature {
self.sig
}
/// Recovers the public key of the signature.
pub fn recover_public(&self) -> Result<Public, ckey::Error> {
Ok(recover(&self.signature(), &self.unsigned.hash())?)
}
/// Checks whether the signature has a low 's' value.
pub fn check_low_s(&self) -> Result<(), ckey::Error> {
if !self.signature().is_low_s() {
Err(ckey::Error::InvalidSignature)
} else {
Ok(())
}
}
/// Verify basic signature params. Does not attempt signer recovery.
pub fn verify_basic(&self) -> Result<(), SyntaxError> {
self.action.verify()
}
/// Verify transactiosn with the common params. Does not attempt signer recovery.
pub fn verify_with_params(&self, params: &CommonParams, is_order_disabled: bool) -> Result<(), SyntaxError> {
if self.network_id != params.network_id() {
return Err(SyntaxError::InvalidNetworkId(self.network_id))
}
let byte_size = rlp::encode(self).to_vec().len();
if byte_size >= params.max_body_size() {
return Err(SyntaxError::TransactionIsTooBig)
}
self.action.verify_with_params(params, is_order_disabled)
}
}
/// A `UnverifiedTransaction` with successfully recovered `signer`.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct SignedTransaction {
tx: UnverifiedTransaction,
signer_public: Public,
}
pub struct PendingSignedTransactions {
pub transactions: Vec<SignedTransaction>,
pub last_timestamp: Option<u64>,
}
impl rlp::Encodable for SignedTransaction {
fn rlp_append(&self, s: &mut RlpStream) {
self.tx.rlp_append_sealed_transaction(s)
}
}
impl rlp::Decodable for SignedTransaction {
fn decode(d: &UntrustedRlp) -> Result<Self, DecoderError> {
let unverified_transaction: UnverifiedTransaction = UnverifiedTransaction::decode(d)?;
match unverified_transaction.recover_public() {
Ok(key) => Ok(SignedTransaction {
tx: unverified_transaction,
signer_public: key,
}),
Err(_) => Err(DecoderError::Custom("signer public key recover failed")),
}
}
}
impl Deref for SignedTransaction {
type Target = UnverifiedTransaction;
fn deref(&self) -> &Self::Target {
&self.tx
}
}
impl From<SignedTransaction> for UnverifiedTransaction {
fn from(tx: SignedTransaction) -> Self {
tx.tx
}
}
impl SignedTransaction {
/// Try to verify transaction and recover public.
pub fn try_new(tx: UnverifiedTransaction) -> Result<Self, Error> {
let signer_public = tx.recover_public()?;
let signer = public_to_address(&signer_public);
tx.action.verify_with_signer_address(&signer)?;
Ok(SignedTransaction {
tx,
signer_public,
})
}
/// Signs the transaction as coming from `signer`.
pub fn new_with_sign(tx: Transaction, private: &Private) -> SignedTransaction {
let sig = sign(&private, &tx.hash()).expect("data is valid and context has signing capabilities; qed");
SignedTransaction::try_new(UnverifiedTransaction::new(tx, sig)).expect("secret is valid so it's recoverable")
}
/// Returns a public key of the signer.
pub fn signer_public(&self) -> Public {
self.signer_public
}
/// Deconstructs this transaction back into `UnverifiedTransaction`
pub fn deconstruct(self) -> (UnverifiedTransaction, Public) {
(self.tx, self.signer_public)
}
}
/// Signed Transaction that is a part of canon blockchain.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LocalizedTransaction {
/// Signed part.
pub signed: UnverifiedTransaction,
/// Block number.
pub block_number: BlockNumber,
/// Block hash.
pub block_hash: H256,
/// Transaction index within block.
pub transaction_index: usize,
/// Cached public
pub cached_signer_public: Option<Public>,
}
impl LocalizedTransaction {
/// Returns transaction signer.
/// Panics if `LocalizedTransaction` is constructed using invalid `UnverifiedTransaction`.
pub fn signer(&mut self) -> Public {
if let Some(public) = self.cached_signer_public {
return public
}
let public = self.recover_public()
.expect("LocalizedTransaction is always constructed from transaction from blockchain; Blockchain only stores verified transactions; qed");
self.cached_signer_public = Some(public);
public
}
}
impl Deref for LocalizedTransaction {
type Target = UnverifiedTransaction;
fn deref(&self) -> &Self::Target {
&self.signed
}
}
impl From<LocalizedTransaction> for Transaction {
fn from(tx: LocalizedTransaction) -> Self {
tx.signed.into()
}
}
#[cfg(test)]
mod tests {
use ckey::{Address, Public, Signature};
use ctypes::transaction::Action;
use primitives::H256;
use rlp::rlp_encode_and_decode_test;
use super::*;
#[test]
fn unverified_transaction_rlp() {
rlp_encode_and_decode_test!(UnverifiedTransaction {
unsigned: Transaction {
seq: 0,
fee: 10,
action: Action::CreateShard {
users: vec![Address::random(), Address::random()]
},
network_id: "tc".into(),
},
sig: Signature::default(),
hash: H256::default(),
}
.compute_hash());
}
#[test]
fn encode_and_decode_pay_transaction() {
rlp_encode_and_decode_test!(UnverifiedTransaction {
unsigned: Transaction {
seq: 30,
fee: 40,
network_id: "tc".into(),
action: Action::Pay {
receiver: Address::random(),
quantity: 300,
},
},
sig: Signature::default(),
hash: H256::default(),
}
.compute_hash());
}
#[test]
fn encode_and_decode_set_regular_key_transaction() {
rlp_encode_and_decode_test!(UnverifiedTransaction {
unsigned: Transaction {
seq: 30,
fee: 40,
network_id: "tc".into(),
action: Action::SetRegularKey {
key: Public::random(),
},
},
sig: Signature::default(),
hash: H256::default(),
}
.compute_hash());
}
#[test]
fn encode_and_decode_create_shard_transaction() {
rlp_encode_and_decode_test!(UnverifiedTransaction {
unsigned: Transaction {
seq: 30,
fee: 40,
network_id: "tc".into(),
action: Action::CreateShard {
users: vec![]
},
},
sig: Signature::default(),
hash: H256::default(),
}
.compute_hash());
}
}