2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
2016-06-14 18:34:27 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity 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 General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Block RLP compression.
|
|
|
|
|
|
|
|
use block::Block;
|
|
|
|
use header::Header;
|
2017-08-30 19:18:28 +02:00
|
|
|
use hash::keccak;
|
2016-06-14 18:34:27 +02:00
|
|
|
|
|
|
|
use views::BlockView;
|
2018-04-16 15:52:12 +02:00
|
|
|
use rlp::{DecoderError, RlpStream, Rlp};
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::H256;
|
2017-09-06 20:47:45 +02:00
|
|
|
use bytes::Bytes;
|
2017-09-03 09:11:14 +02:00
|
|
|
use triehash::ordered_trie_root;
|
2016-06-14 18:34:27 +02:00
|
|
|
|
2016-09-22 19:47:03 +02:00
|
|
|
const HEADER_FIELDS: usize = 8;
|
2016-06-14 18:34:27 +02:00
|
|
|
const BLOCK_FIELDS: usize = 2;
|
|
|
|
|
|
|
|
pub struct AbridgedBlock {
|
|
|
|
rlp: Bytes,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AbridgedBlock {
|
2016-08-25 14:28:45 +02:00
|
|
|
/// Create from rlp-compressed bytes. Does no verification.
|
|
|
|
pub fn from_raw(compressed: Bytes) -> Self {
|
2016-06-14 18:34:27 +02:00
|
|
|
AbridgedBlock {
|
2016-08-25 14:28:45 +02:00
|
|
|
rlp: compressed,
|
2016-06-14 18:34:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the inner bytes.
|
|
|
|
pub fn into_inner(self) -> Bytes {
|
|
|
|
self.rlp
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Given a full block view, trim out the parent hash and block number,
|
|
|
|
/// producing new rlp.
|
|
|
|
pub fn from_block_view(block_view: &BlockView) -> Self {
|
|
|
|
let header = block_view.header_view();
|
|
|
|
let seal_fields = header.seal();
|
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
// 10 header fields, unknown number of seal fields, and 2 block fields.
|
2016-06-14 18:34:27 +02:00
|
|
|
let mut stream = RlpStream::new_list(
|
|
|
|
HEADER_FIELDS +
|
|
|
|
seal_fields.len() +
|
|
|
|
BLOCK_FIELDS
|
|
|
|
);
|
|
|
|
|
|
|
|
// write header values.
|
|
|
|
stream
|
|
|
|
.append(&header.author())
|
|
|
|
.append(&header.state_root())
|
|
|
|
.append(&header.log_bloom())
|
|
|
|
.append(&header.difficulty())
|
|
|
|
.append(&header.gas_limit())
|
|
|
|
.append(&header.gas_used())
|
|
|
|
.append(&header.timestamp())
|
|
|
|
.append(&header.extra_data());
|
|
|
|
|
2016-07-11 15:10:05 +02:00
|
|
|
// write block values.
|
2017-03-20 19:14:29 +01:00
|
|
|
stream
|
|
|
|
.append_list(&block_view.transactions())
|
|
|
|
.append_list(&block_view.uncles());
|
2016-07-11 15:10:05 +02:00
|
|
|
|
2016-06-14 18:34:27 +02:00
|
|
|
// write seal fields.
|
|
|
|
for field in seal_fields {
|
|
|
|
stream.append_raw(&field, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
AbridgedBlock {
|
2016-09-22 19:47:03 +02:00
|
|
|
rlp: stream.out(),
|
2016-06-14 18:34:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Flesh out an abridged block view with the provided parent hash and block number.
|
|
|
|
///
|
|
|
|
/// Will fail if contains invalid rlp.
|
2016-09-22 19:47:03 +02:00
|
|
|
pub fn to_block(&self, parent_hash: H256, number: u64, receipts_root: H256) -> Result<Block, DecoderError> {
|
2018-04-16 15:52:12 +02:00
|
|
|
let rlp = Rlp::new(&self.rlp);
|
2016-06-14 18:34:27 +02:00
|
|
|
|
2016-08-29 11:35:24 +02:00
|
|
|
let mut header: Header = Default::default();
|
|
|
|
header.set_parent_hash(parent_hash);
|
2016-12-27 12:53:56 +01:00
|
|
|
header.set_author(rlp.val_at(0)?);
|
|
|
|
header.set_state_root(rlp.val_at(1)?);
|
|
|
|
header.set_log_bloom(rlp.val_at(2)?);
|
|
|
|
header.set_difficulty(rlp.val_at(3)?);
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_number(number);
|
2016-12-27 12:53:56 +01:00
|
|
|
header.set_gas_limit(rlp.val_at(4)?);
|
|
|
|
header.set_gas_used(rlp.val_at(5)?);
|
|
|
|
header.set_timestamp(rlp.val_at(6)?);
|
|
|
|
header.set_extra_data(rlp.val_at(7)?);
|
2016-09-01 14:29:59 +02:00
|
|
|
|
2017-03-22 14:41:46 +01:00
|
|
|
let transactions = rlp.list_at(8)?;
|
|
|
|
let uncles: Vec<Header> = rlp.list_at(9)?;
|
2016-09-22 19:47:03 +02:00
|
|
|
|
|
|
|
header.set_transactions_root(ordered_trie_root(
|
2018-02-16 20:24:16 +01:00
|
|
|
rlp.at(8)?.iter().map(|r| r.as_raw())
|
2016-09-22 19:47:03 +02:00
|
|
|
));
|
|
|
|
header.set_receipts_root(receipts_root);
|
2016-07-11 15:10:05 +02:00
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
let mut uncles_rlp = RlpStream::new();
|
2017-03-20 19:14:29 +01:00
|
|
|
uncles_rlp.append_list(&uncles);
|
2017-08-30 19:18:28 +02:00
|
|
|
header.set_uncles_hash(keccak(uncles_rlp.as_raw()));
|
2016-06-14 18:34:27 +02:00
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
let mut seal_fields = Vec::new();
|
2017-03-22 14:41:46 +01:00
|
|
|
for i in (HEADER_FIELDS + BLOCK_FIELDS)..rlp.item_count()? {
|
2016-12-27 12:53:56 +01:00
|
|
|
let seal_rlp = rlp.at(i)?;
|
2016-08-05 17:00:46 +02:00
|
|
|
seal_fields.push(seal_rlp.as_raw().to_owned());
|
|
|
|
}
|
2016-06-14 18:34:27 +02:00
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
header.set_seal(seal_fields);
|
2016-07-11 15:10:05 +02:00
|
|
|
|
2016-06-15 12:45:04 +02:00
|
|
|
Ok(Block {
|
2016-06-14 18:34:27 +02:00
|
|
|
header: header,
|
2016-07-11 15:10:05 +02:00
|
|
|
transactions: transactions,
|
|
|
|
uncles: uncles,
|
2016-06-15 12:45:04 +02:00
|
|
|
})
|
2016-06-14 18:34:27 +02:00
|
|
|
}
|
2016-07-11 18:31:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use views::BlockView;
|
|
|
|
use block::Block;
|
|
|
|
use super::AbridgedBlock;
|
2017-07-12 13:09:17 +02:00
|
|
|
use transaction::{Action, Transaction};
|
2016-07-11 18:31:18 +02:00
|
|
|
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::{H256, U256, Address};
|
2017-09-06 20:47:45 +02:00
|
|
|
use bytes::Bytes;
|
2016-07-11 18:31:18 +02:00
|
|
|
|
|
|
|
fn encode_block(b: &Block) -> Bytes {
|
2018-04-03 10:01:28 +02:00
|
|
|
b.rlp_bytes()
|
2016-07-11 18:31:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_block_abridging() {
|
|
|
|
let b = Block::default();
|
2016-09-22 19:47:03 +02:00
|
|
|
let receipts_root = b.header.receipts_root().clone();
|
2016-07-11 18:31:18 +02:00
|
|
|
let encoded = encode_block(&b);
|
|
|
|
|
2018-04-16 15:52:12 +02:00
|
|
|
let abridged = AbridgedBlock::from_block_view(&view!(BlockView, &encoded));
|
2016-09-22 19:47:03 +02:00
|
|
|
assert_eq!(abridged.to_block(H256::new(), 0, receipts_root).unwrap(), b);
|
2016-07-11 18:31:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn wrong_number() {
|
|
|
|
let b = Block::default();
|
2016-09-22 19:47:03 +02:00
|
|
|
let receipts_root = b.header.receipts_root().clone();
|
2016-07-11 18:31:18 +02:00
|
|
|
let encoded = encode_block(&b);
|
|
|
|
|
2018-04-16 15:52:12 +02:00
|
|
|
let abridged = AbridgedBlock::from_block_view(&view!(BlockView, &encoded));
|
2016-09-22 19:47:03 +02:00
|
|
|
assert_eq!(abridged.to_block(H256::new(), 2, receipts_root).unwrap(), b);
|
2016-07-11 18:31:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_transactions() {
|
|
|
|
let mut b = Block::default();
|
|
|
|
|
|
|
|
let t1 = Transaction {
|
|
|
|
action: Action::Create,
|
|
|
|
nonce: U256::from(42),
|
|
|
|
gas_price: U256::from(3000),
|
|
|
|
gas: U256::from(50_000),
|
|
|
|
value: U256::from(1),
|
2017-06-28 16:41:08 +02:00
|
|
|
data: b"Hello!".to_vec()
|
2016-07-11 18:31:18 +02:00
|
|
|
}.fake_sign(Address::from(0x69));
|
|
|
|
|
|
|
|
let t2 = Transaction {
|
|
|
|
action: Action::Create,
|
|
|
|
nonce: U256::from(88),
|
|
|
|
gas_price: U256::from(12345),
|
|
|
|
gas: U256::from(300000),
|
|
|
|
value: U256::from(1000000000),
|
|
|
|
data: "Eep!".into(),
|
|
|
|
}.fake_sign(Address::from(0x55));
|
|
|
|
|
2017-01-13 09:51:36 +01:00
|
|
|
b.transactions.push(t1.into());
|
|
|
|
b.transactions.push(t2.into());
|
2016-07-11 18:31:18 +02:00
|
|
|
|
2016-09-22 19:47:03 +02:00
|
|
|
let receipts_root = b.header.receipts_root().clone();
|
2017-09-03 09:11:14 +02:00
|
|
|
b.header.set_transactions_root(::triehash::ordered_trie_root(
|
2018-02-16 20:24:16 +01:00
|
|
|
b.transactions.iter().map(::rlp::encode)
|
2016-09-22 19:47:03 +02:00
|
|
|
));
|
|
|
|
|
2016-07-11 18:31:18 +02:00
|
|
|
let encoded = encode_block(&b);
|
|
|
|
|
2018-04-16 15:52:12 +02:00
|
|
|
let abridged = AbridgedBlock::from_block_view(&view!(BlockView, &encoded[..]));
|
2016-09-22 19:47:03 +02:00
|
|
|
assert_eq!(abridged.to_block(H256::new(), 0, receipts_root).unwrap(), b);
|
2016-07-11 18:31:18 +02:00
|
|
|
}
|
2016-08-03 18:05:17 +02:00
|
|
|
}
|