/* This file is part of cpp-ethereum. cpp-ethereum 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. cpp-ethereum 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 cpp-ethereum. If not, see . */ /** @file BlockInfo.cpp * @author Gav Wood * @date 2014 */ #include #include #include #include "ProofOfWork.h" #include "Exceptions.h" #include "BlockInfo.h" using namespace std; using namespace dev; using namespace dev::eth; u256 dev::eth::c_genesisDifficulty = (u256)1 << 17; BlockInfo::BlockInfo(): timestamp(Invalid256) { } BlockInfo::BlockInfo(bytesConstRef _block, bool _checkNonce) { populate(_block, _checkNonce); } void BlockInfo::setEmpty() { parentHash = h256(); sha3Uncles = EmptyListSHA3; coinbaseAddress = Address(); stateRoot = EmptyTrie; transactionsRoot = EmptyTrie; receiptsRoot = EmptyTrie; logBloom = LogBloom(); difficulty = 0; number = 0; gasLimit = 0; gasUsed = 0; timestamp = 0; extraData.clear(); nonce = h256(); hash = headerHash(WithNonce); } BlockInfo BlockInfo::fromHeader(bytesConstRef _block) { BlockInfo ret; ret.populateFromHeader(RLP(_block)); return ret; } h256 BlockInfo::headerHash(IncludeNonce _n) const { RLPStream s; streamRLP(s, _n); return sha3(s.out()); } void BlockInfo::streamRLP(RLPStream& _s, IncludeNonce _n) const { _s.appendList(_n == WithNonce ? 14 : 13) << parentHash << sha3Uncles << coinbaseAddress << stateRoot << transactionsRoot << receiptsRoot << logBloom << difficulty << number << gasLimit << gasUsed << timestamp << extraData; if (_n == WithNonce) _s << nonce; } h256 BlockInfo::headerHash(bytesConstRef _block) { return sha3(RLP(_block)[0].data()); } void BlockInfo::populateFromHeader(RLP const& _header, bool _checkNonce) { hash = dev::sha3(_header.data()); int field = 0; try { parentHash = _header[field = 0].toHash(); sha3Uncles = _header[field = 1].toHash(); coinbaseAddress = _header[field = 2].toHash
(); stateRoot = _header[field = 3].toHash(); transactionsRoot = _header[field = 4].toHash(); receiptsRoot = _header[field = 5].toHash(); logBloom = _header[field = 6].toHash(); difficulty = _header[field = 7].toInt(); number = _header[field = 8].toInt(); gasLimit = _header[field = 9].toInt(); gasUsed = _header[field = 10].toInt(); timestamp = _header[field = 11].toInt(); extraData = _header[field = 12].toBytes(); nonce = _header[field = 13].toHash(); } catch (Exception const& _e) { _e << errinfo_name("invalid block header format") << BadFieldError(field, toHex(_header[field].data().toBytes())); throw; } // check it hashes according to proof of work or that it's the genesis block. if (_checkNonce && parentHash && !ProofOfWork::verify(headerHash(WithoutNonce), nonce, difficulty)) BOOST_THROW_EXCEPTION(InvalidBlockNonce(headerHash(WithoutNonce), nonce, difficulty)); if (gasUsed > gasLimit) BOOST_THROW_EXCEPTION(TooMuchGasUsed()); if (number && extraData.size() > 1024) BOOST_THROW_EXCEPTION(ExtraDataTooBig()); } void BlockInfo::populate(bytesConstRef _block, bool _checkNonce) { RLP root(_block); RLP header = root[0]; if (!header.isList()) BOOST_THROW_EXCEPTION(InvalidBlockFormat(0,header.data())); populateFromHeader(header, _checkNonce); if (!root[1].isList()) BOOST_THROW_EXCEPTION(InvalidBlockFormat(1, root[1].data())); if (!root[2].isList()) BOOST_THROW_EXCEPTION(InvalidBlockFormat(2, root[2].data())); } void BlockInfo::verifyInternals(bytesConstRef _block) const { RLP root(_block); u256 mgp = (u256)-1; OverlayDB db; GenericTrieDB t(&db); t.init(); unsigned i = 0; for (auto const& tr: root[1]) { bytes k = rlp(i); t.insert(&k, tr.data()); u256 gp = tr[1].toInt(); mgp = min(mgp, gp); ++i; } if (transactionsRoot != t.root()) BOOST_THROW_EXCEPTION(InvalidTransactionsHash(t.root(), transactionsRoot)); if (sha3Uncles != sha3(root[2].data())) BOOST_THROW_EXCEPTION(InvalidUnclesHash()); } void BlockInfo::populateFromParent(BlockInfo const& _parent) { stateRoot = _parent.stateRoot; parentHash = _parent.hash; number = _parent.number + 1; gasLimit = calculateGasLimit(_parent); gasUsed = 0; difficulty = calculateDifficulty(_parent); } u256 BlockInfo::calculateGasLimit(BlockInfo const& _parent) const { if (!parentHash) return 1000000; else return max(125000, (_parent.gasLimit * (1024 - 1) + (_parent.gasUsed * 6 / 5)) / 1024); } u256 BlockInfo::calculateDifficulty(BlockInfo const& _parent) const { if (!parentHash) return c_genesisDifficulty; else return timestamp >= _parent.timestamp + 5 ? _parent.difficulty - (_parent.difficulty >> 10) : (_parent.difficulty + (_parent.difficulty >> 10)); } void BlockInfo::verifyParent(BlockInfo const& _parent) const { // Check difficulty is correct given the two timestamps. if (difficulty != calculateDifficulty(_parent)) BOOST_THROW_EXCEPTION(InvalidDifficulty()); if (gasLimit != calculateGasLimit(_parent)) BOOST_THROW_EXCEPTION(InvalidGasLimit(gasLimit, calculateGasLimit(_parent))); // Check timestamp is after previous timestamp. if (parentHash) { if (parentHash != _parent.hash) BOOST_THROW_EXCEPTION(InvalidParentHash()); if (timestamp < _parent.timestamp) BOOST_THROW_EXCEPTION(InvalidTimestamp()); if (number != _parent.number + 1) BOOST_THROW_EXCEPTION(InvalidNumber()); } }