2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// 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/>.
|
|
|
|
|
2016-01-10 14:05:39 +01:00
|
|
|
//! General error types for use in ethcore.
|
|
|
|
|
|
|
|
use util::*;
|
2016-01-11 12:45:35 +01:00
|
|
|
use header::BlockNumber;
|
2016-01-14 19:03:48 +01:00
|
|
|
use basic_types::LogBloom;
|
2016-05-18 11:34:15 +02:00
|
|
|
use client::Error as ClientError;
|
2016-01-10 14:05:39 +01:00
|
|
|
|
2016-05-16 18:33:32 +02:00
|
|
|
pub use types::executed::ExecutionError;
|
2016-01-11 17:37:22 +01:00
|
|
|
|
2016-04-18 19:34:59 +02:00
|
|
|
#[derive(Debug, PartialEq)]
|
2016-03-10 11:38:24 +01:00
|
|
|
/// Errors concerning transaction processing.
|
2016-01-12 11:44:16 +01:00
|
|
|
pub enum TransactionError {
|
2016-03-17 15:49:29 +01:00
|
|
|
/// Transaction is already imported to the queue
|
|
|
|
AlreadyImported,
|
|
|
|
/// Transaction is not valid anymore (state already has higher nonce)
|
|
|
|
Old,
|
2016-04-18 19:34:59 +02:00
|
|
|
/// Transaction has too low fee
|
|
|
|
/// (there is already a transaction with the same sender-nonce but higher gas price)
|
|
|
|
TooCheapToReplace,
|
|
|
|
/// Transaction was not imported to the queue because limit has been reached.
|
|
|
|
LimitReached,
|
2016-03-10 11:38:24 +01:00
|
|
|
/// Transaction's gas price is below threshold.
|
|
|
|
InsufficientGasPrice {
|
|
|
|
/// Minimal expected gas price
|
|
|
|
minimal: U256,
|
|
|
|
/// Transaction gas price
|
2016-03-16 10:40:33 +01:00
|
|
|
got: U256,
|
|
|
|
},
|
|
|
|
/// Sender doesn't have enough funds to pay for this transaction
|
|
|
|
InsufficientBalance {
|
|
|
|
/// Senders balance
|
|
|
|
balance: U256,
|
|
|
|
/// Transaction cost
|
|
|
|
cost: U256,
|
2016-03-10 11:38:24 +01:00
|
|
|
},
|
2016-03-17 15:20:33 +01:00
|
|
|
/// Transactions gas is higher then current gas limit
|
|
|
|
GasLimitExceeded {
|
|
|
|
/// Current gas limit
|
|
|
|
limit: U256,
|
|
|
|
/// Declared transaction gas
|
|
|
|
got: U256,
|
|
|
|
},
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Transaction's gas limit (aka gas) is invalid.
|
2016-01-12 11:44:16 +01:00
|
|
|
InvalidGasLimit(OutOfBounds<U256>),
|
|
|
|
}
|
|
|
|
|
2016-05-21 00:13:16 +02:00
|
|
|
impl fmt::Display for TransactionError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
use self::TransactionError::*;
|
|
|
|
let msg = match *self {
|
2016-05-22 18:41:45 +02:00
|
|
|
AlreadyImported => "Already imported".into(),
|
|
|
|
Old => "No longer valid".into(),
|
|
|
|
TooCheapToReplace => "Gas price too low to replace".into(),
|
|
|
|
LimitReached => "Transaction limit reached".into(),
|
|
|
|
InsufficientGasPrice { minimal, got } =>
|
|
|
|
format!("Insufficient gas price. Min={}, Given={}", minimal, got),
|
|
|
|
InsufficientBalance { balance, cost } =>
|
2016-05-21 00:13:16 +02:00
|
|
|
format!("Insufficient balance for transaction. Balance={}, Cost={}",
|
2016-05-22 18:41:45 +02:00
|
|
|
balance, cost),
|
|
|
|
GasLimitExceeded { limit, got } =>
|
|
|
|
format!("Gas limit exceeded. Limit={}, Given={}", limit, got),
|
|
|
|
InvalidGasLimit(ref err) => format!("Invalid gas limit. {}", err),
|
2016-05-21 00:13:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
f.write_fmt(format_args!("Transaction error ({})", msg))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Errors concerning block processing.
|
2016-01-10 14:05:39 +01:00
|
|
|
pub enum BlockError {
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Block has too many uncles.
|
2016-01-10 19:47:32 +01:00
|
|
|
TooManyUncles(OutOfBounds<usize>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Extra data is of an invalid length.
|
2016-01-10 14:05:39 +01:00
|
|
|
ExtraDataOutOfBounds(OutOfBounds<usize>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Seal is incorrect format.
|
2016-01-10 14:05:39 +01:00
|
|
|
InvalidSealArity(Mismatch<usize>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Block has too much gas used.
|
2016-01-10 19:47:32 +01:00
|
|
|
TooMuchGasUsed(OutOfBounds<U256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Uncles hash in header is invalid.
|
2016-01-10 19:47:32 +01:00
|
|
|
InvalidUnclesHash(Mismatch<H256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// An uncle is from a generation too old.
|
2016-01-11 12:45:35 +01:00
|
|
|
UncleTooOld(OutOfBounds<BlockNumber>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// An uncle is from the same generation as the block.
|
2016-01-11 12:45:35 +01:00
|
|
|
UncleIsBrother(OutOfBounds<BlockNumber>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// An uncle is already in the chain.
|
2016-01-10 19:47:32 +01:00
|
|
|
UncleInChain(H256),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// An uncle has a parent not in the chain.
|
2016-01-10 19:47:32 +01:00
|
|
|
UncleParentNotInChain(H256),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// State root header field is invalid.
|
2016-01-14 19:03:48 +01:00
|
|
|
InvalidStateRoot(Mismatch<H256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Gas used header field is invalid.
|
2016-01-14 19:03:48 +01:00
|
|
|
InvalidGasUsed(Mismatch<U256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Transactions root header field is invalid.
|
2016-01-10 19:47:32 +01:00
|
|
|
InvalidTransactionsRoot(Mismatch<H256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Difficulty is out of range; this can be used as an looser error prior to getting a definitive
|
|
|
|
/// value for difficulty. This error needs only provide bounds of which it is out.
|
|
|
|
DifficultyOutOfBounds(OutOfBounds<U256>),
|
|
|
|
/// Difficulty header field is invalid; this is a strong error used after getting a definitive
|
|
|
|
/// value for difficulty (which is provided).
|
2016-01-10 19:47:32 +01:00
|
|
|
InvalidDifficulty(Mismatch<U256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Seal element of type H256 (max_hash for Ethash, but could be something else for
|
|
|
|
/// other seal engines) is out of bounds.
|
|
|
|
MismatchedH256SealElement(Mismatch<H256>),
|
|
|
|
/// Proof-of-work aspect of seal, which we assume is a 256-bit value, is invalid.
|
|
|
|
InvalidProofOfWork(OutOfBounds<U256>),
|
2016-05-21 00:13:16 +02:00
|
|
|
/// Some low-level aspect of the seal is incorrect.
|
2016-05-03 17:23:53 +02:00
|
|
|
InvalidSeal,
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Gas limit header field is invalid.
|
2016-01-10 19:47:32 +01:00
|
|
|
InvalidGasLimit(OutOfBounds<U256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Receipts trie root header field is invalid.
|
|
|
|
InvalidReceiptsRoot(Mismatch<H256>),
|
|
|
|
/// Timestamp header field is invalid.
|
2016-01-11 12:45:35 +01:00
|
|
|
InvalidTimestamp(OutOfBounds<u64>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Log bloom header field is invalid.
|
2016-01-14 19:03:48 +01:00
|
|
|
InvalidLogBloom(Mismatch<LogBloom>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Parent hash field of header is invalid; this is an invalid error indicating a logic flaw in the codebase.
|
|
|
|
/// TODO: remove and favour an assert!/panic!.
|
2016-01-10 19:47:32 +01:00
|
|
|
InvalidParentHash(Mismatch<H256>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Number field of header is invalid.
|
2016-01-27 14:09:32 +01:00
|
|
|
InvalidNumber(Mismatch<BlockNumber>),
|
|
|
|
/// Block number isn't sensible.
|
|
|
|
RidiculousNumber(OutOfBounds<BlockNumber>),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Parent given is unknown.
|
2016-01-10 19:47:32 +01:00
|
|
|
UnknownParent(H256),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Uncle parent given is unknown.
|
2016-01-10 19:47:32 +01:00
|
|
|
UnknownUncleParent(H256),
|
2016-01-10 14:05:39 +01:00
|
|
|
}
|
|
|
|
|
2016-05-21 00:13:16 +02:00
|
|
|
impl fmt::Display for BlockError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
use self::BlockError::*;
|
|
|
|
|
|
|
|
let msg = match *self {
|
2016-05-22 18:41:45 +02:00
|
|
|
TooManyUncles(ref oob) => format!("Block has too many uncles. {}", oob),
|
|
|
|
ExtraDataOutOfBounds(ref oob) => format!("Extra block data too long. {}", oob),
|
|
|
|
InvalidSealArity(ref mis) => format!("Block seal in incorrect format: {}", mis),
|
|
|
|
TooMuchGasUsed(ref oob) => format!("Block has too much gas used. {}", oob),
|
|
|
|
InvalidUnclesHash(ref mis) => format!("Block has invalid uncles hash: {}", mis),
|
|
|
|
UncleTooOld(ref oob) => format!("Uncle block is too old. {}", oob),
|
|
|
|
UncleIsBrother(ref oob) => format!("Uncle from same generation as block. {}", oob),
|
|
|
|
UncleInChain(ref hash) => format!("Uncle {} already in chain", hash),
|
|
|
|
UncleParentNotInChain(ref hash) => format!("Uncle {} has a parent not in the chain", hash),
|
|
|
|
InvalidStateRoot(ref mis) => format!("Invalid state root in header: {}", mis),
|
|
|
|
InvalidGasUsed(ref mis) => format!("Invalid gas used in header: {}", mis),
|
|
|
|
InvalidTransactionsRoot(ref mis) => format!("Invalid transactions root in header: {}", mis),
|
|
|
|
DifficultyOutOfBounds(ref oob) => format!("Invalid block difficulty: {}", oob),
|
|
|
|
InvalidDifficulty(ref mis) => format!("Invalid block difficulty: {}", mis),
|
|
|
|
MismatchedH256SealElement(ref mis) => format!("Seal element out of bounds: {}", mis),
|
|
|
|
InvalidProofOfWork(ref oob) => format!("Block has invalid PoW: {}", oob),
|
|
|
|
InvalidSeal => "Block has invalid seal.".into(),
|
|
|
|
InvalidGasLimit(ref oob) => format!("Invalid gas limit: {}", oob),
|
|
|
|
InvalidReceiptsRoot(ref mis) => format!("Invalid receipts trie root in header: {}", mis),
|
|
|
|
InvalidTimestamp(ref oob) => format!("Invalid timestamp in header: {}", oob),
|
|
|
|
InvalidLogBloom(ref oob) => format!("Invalid log bloom in header: {}", oob),
|
|
|
|
InvalidParentHash(ref mis) => format!("Invalid parent hash: {}", mis),
|
|
|
|
InvalidNumber(ref mis) => format!("Invalid number in header: {}", mis),
|
|
|
|
RidiculousNumber(ref oob) => format!("Implausible block number. {}", oob),
|
|
|
|
UnknownParent(ref hash) => format!("Unknown parent: {}", hash),
|
|
|
|
UnknownUncleParent(ref hash) => format!("Unknown uncle parent: {}", hash),
|
2016-05-21 00:13:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
f.write_fmt(format_args!("Block error ({})", msg))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 19:34:59 +02:00
|
|
|
#[derive(Debug, PartialEq)]
|
2016-02-02 12:12:32 +01:00
|
|
|
/// Import to the block queue result
|
2016-01-10 23:37:09 +01:00
|
|
|
pub enum ImportError {
|
2016-03-01 00:02:48 +01:00
|
|
|
/// Already in the block chain.
|
2016-01-10 23:37:09 +01:00
|
|
|
AlreadyInChain,
|
2016-03-01 00:02:48 +01:00
|
|
|
/// Already in the block queue.
|
2016-01-10 23:37:09 +01:00
|
|
|
AlreadyQueued,
|
2016-03-01 00:02:48 +01:00
|
|
|
/// Already marked as bad from a previous import (could mean parent is bad).
|
|
|
|
KnownBad,
|
2016-01-10 23:37:09 +01:00
|
|
|
}
|
|
|
|
|
2016-05-21 00:13:16 +02:00
|
|
|
impl fmt::Display for ImportError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-05-22 18:41:45 +02:00
|
|
|
let msg = match *self {
|
|
|
|
ImportError::AlreadyInChain => "block already in chain",
|
|
|
|
ImportError::AlreadyQueued => "block already in the block queue",
|
|
|
|
ImportError::KnownBad => "block known to be bad",
|
2016-05-21 00:13:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
f.write_fmt(format_args!("Block import error ({})", msg))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 14:05:39 +01:00
|
|
|
#[derive(Debug)]
|
|
|
|
/// General error type which should be capable of representing all errors in ethcore.
|
|
|
|
pub enum Error {
|
2016-05-18 11:34:15 +02:00
|
|
|
/// Client configuration error.
|
|
|
|
Client(ClientError),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Error concerning a utility.
|
2016-01-10 14:05:39 +01:00
|
|
|
Util(UtilError),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Error concerning block processing.
|
2016-01-10 14:05:39 +01:00
|
|
|
Block(BlockError),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Unknown engine given.
|
2016-01-10 14:05:39 +01:00
|
|
|
UnknownEngineName(String),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Error concerning EVM code execution.
|
2016-01-11 17:37:22 +01:00
|
|
|
Execution(ExecutionError),
|
2016-02-03 12:18:12 +01:00
|
|
|
/// Error concerning transaction processing.
|
2016-01-12 11:44:16 +01:00
|
|
|
Transaction(TransactionError),
|
2016-03-01 00:02:48 +01:00
|
|
|
/// Error concerning block import.
|
|
|
|
Import(ImportError),
|
|
|
|
/// PoW hash is invalid or out of date.
|
|
|
|
PowHashInvalid,
|
|
|
|
/// The value of the nonce or mishash is invalid.
|
|
|
|
PowInvalid,
|
2016-06-07 20:44:09 +02:00
|
|
|
/// Error concerning TrieDBs
|
|
|
|
TrieError(TrieError),
|
2016-01-12 11:44:16 +01:00
|
|
|
}
|
|
|
|
|
2016-05-21 00:13:16 +02:00
|
|
|
impl fmt::Display for Error {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
Error::Client(ref err) => f.write_fmt(format_args!("{}", err)),
|
|
|
|
Error::Util(ref err) => f.write_fmt(format_args!("{}", err)),
|
|
|
|
Error::Block(ref err) => f.write_fmt(format_args!("{}", err)),
|
|
|
|
Error::Execution(ref err) => f.write_fmt(format_args!("{}", err)),
|
|
|
|
Error::Transaction(ref err) => f.write_fmt(format_args!("{}", err)),
|
|
|
|
Error::Import(ref err) => f.write_fmt(format_args!("{}", err)),
|
2016-05-22 18:41:45 +02:00
|
|
|
Error::UnknownEngineName(ref name) =>
|
|
|
|
f.write_fmt(format_args!("Unknown engine name ({})", name)),
|
|
|
|
Error::PowHashInvalid => f.write_str("Invalid or out of date PoW hash."),
|
|
|
|
Error::PowInvalid => f.write_str("Invalid nonce or mishash"),
|
2016-06-07 20:44:09 +02:00
|
|
|
Error::TrieError(ref err) => f.write_fmt(format_args!("{}", err)),
|
2016-05-21 00:13:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 00:02:48 +01:00
|
|
|
/// Result of import block operation.
|
|
|
|
pub type ImportResult = Result<H256, Error>;
|
|
|
|
|
2016-05-18 11:34:15 +02:00
|
|
|
impl From<ClientError> for Error {
|
|
|
|
fn from(err: ClientError) -> Error {
|
|
|
|
Error::Client(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-12 11:44:16 +01:00
|
|
|
impl From<TransactionError> for Error {
|
|
|
|
fn from(err: TransactionError) -> Error {
|
|
|
|
Error::Transaction(err)
|
|
|
|
}
|
2016-01-10 14:05:39 +01:00
|
|
|
}
|
|
|
|
|
2016-03-01 00:02:48 +01:00
|
|
|
impl From<ImportError> for Error {
|
|
|
|
fn from(err: ImportError) -> Error {
|
|
|
|
Error::Import(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 14:05:39 +01:00
|
|
|
impl From<BlockError> for Error {
|
|
|
|
fn from(err: BlockError) -> Error {
|
|
|
|
Error::Block(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-11 17:37:22 +01:00
|
|
|
impl From<ExecutionError> for Error {
|
|
|
|
fn from(err: ExecutionError) -> Error {
|
|
|
|
Error::Execution(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-11 20:47:19 +01:00
|
|
|
impl From<CryptoError> for Error {
|
|
|
|
fn from(err: CryptoError) -> Error {
|
|
|
|
Error::Util(UtilError::Crypto(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-12 11:44:16 +01:00
|
|
|
impl From<DecoderError> for Error {
|
|
|
|
fn from(err: DecoderError) -> Error {
|
|
|
|
Error::Util(UtilError::Decoder(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-13 23:15:44 +01:00
|
|
|
impl From<UtilError> for Error {
|
|
|
|
fn from(err: UtilError) -> Error {
|
|
|
|
Error::Util(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<IoError> for Error {
|
|
|
|
fn from(err: IoError) -> Error {
|
|
|
|
Error::Util(From::from(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 20:44:09 +02:00
|
|
|
impl From<TrieError> for Error {
|
|
|
|
fn from(err: TrieError) -> Error {
|
|
|
|
Error::TrieError(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 14:05:39 +01:00
|
|
|
// TODO: uncomment below once https://github.com/rust-lang/rust/issues/27336 sorted.
|
|
|
|
/*#![feature(concat_idents)]
|
|
|
|
macro_rules! assimilate {
|
|
|
|
($name:ident) => (
|
|
|
|
impl From<concat_idents!($name, Error)> for Error {
|
|
|
|
fn from(err: concat_idents!($name, Error)) -> Error {
|
|
|
|
Error:: $name (err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
assimilate!(FromHex);
|
|
|
|
assimilate!(BaseData);*/
|