// Copyright 2015-2018 Parity Technologies (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 . //! Parity-specific rpc implementation. use std::sync::Arc; use std::str::FromStr; use std::collections::{BTreeMap, HashSet}; use ethereum_types::Address; use version::version_data; use crypto::DEFAULT_MAC; use ethkey::{crypto::ecies, Brain, Generator}; use ethstore::random_phrase; use sync::{SyncProvider, ManageNetwork}; use ethcore::account_provider::AccountProvider; use ethcore::client::{BlockChainClient, StateClient, Call}; use ethcore::ids::BlockId; use ethcore::miner::{self, MinerService}; use ethcore::snapshot::{SnapshotService, RestorationStatus}; use ethcore::state::StateInfo; use ethcore_logger::RotatingLogger; use updater::{Service as UpdateService}; use jsonrpc_core::{BoxFuture, Result}; use jsonrpc_core::futures::future; use jsonrpc_macros::Trailing; use v1::helpers::{self, errors, fake_sign, ipfs, SigningQueue, SignerService, NetworkSettings}; use v1::helpers::block_import::is_major_importing; use v1::metadata::Metadata; use v1::traits::Parity; use v1::types::{ Bytes, U256, H64, H160, H256, H512, CallRequest, Peers, Transaction, RpcSettings, Histogram, TransactionStats, LocalTransactionStatus, BlockNumber, ConsensusCapability, VersionInfo, OperationsInfo, ChainStatus, AccountInfo, HwAccountInfo, RichHeader, Receipt, block_number_to_id }; use Host; /// Parity implementation. pub struct ParityClient { client: Arc, miner: Arc, updater: Arc, sync: Arc, net: Arc, accounts: Arc, logger: Arc, settings: Arc, signer: Option>, ws_address: Option, snapshot: Option>, } impl ParityClient where C: BlockChainClient, { /// Creates new `ParityClient`. pub fn new( client: Arc, miner: Arc, sync: Arc, updater: Arc, net: Arc, accounts: Arc, logger: Arc, settings: Arc, signer: Option>, ws_address: Option, snapshot: Option>, ) -> Self { ParityClient { client, miner, sync, updater, net, accounts, logger, settings, signer, ws_address, snapshot, } } } impl Parity for ParityClient where S: StateInfo + 'static, C: miner::BlockChainClient + BlockChainClient + StateClient + Call + 'static, M: MinerService + 'static, U: UpdateService + 'static, { type Metadata = Metadata; fn accounts_info(&self) -> Result> { let dapp_accounts = self.accounts.accounts() .map_err(|e| errors::account("Could not fetch accounts.", e))? .into_iter().collect::>(); let info = self.accounts.accounts_info().map_err(|e| errors::account("Could not fetch account info.", e))?; let other = self.accounts.addresses_info(); Ok(info .into_iter() .chain(other.into_iter()) .filter(|&(ref a, _)| dapp_accounts.contains(a)) .map(|(a, v)| (H160::from(a), AccountInfo { name: v.name })) .collect() ) } fn hardware_accounts_info(&self) -> Result> { let info = self.accounts.hardware_accounts_info().map_err(|e| errors::account("Could not fetch account info.", e))?; Ok(info .into_iter() .map(|(a, v)| (H160::from(a), HwAccountInfo { name: v.name, manufacturer: v.meta })) .collect() ) } fn locked_hardware_accounts_info(&self) -> Result> { self.accounts.locked_hardware_accounts().map_err(|e| errors::account("Error communicating with hardware wallet.", e)) } fn default_account(&self) -> Result { Ok(self.accounts.default_account() .map(Into::into) .ok() .unwrap_or_default()) } fn transactions_limit(&self) -> Result { Ok(self.miner.queue_status().limits.max_count) } fn min_gas_price(&self) -> Result { Ok(self.miner.queue_status().options.minimal_gas_price.into()) } fn extra_data(&self) -> Result { Ok(Bytes::new(self.miner.authoring_params().extra_data)) } fn gas_floor_target(&self) -> Result { Ok(U256::from(self.miner.authoring_params().gas_range_target.0)) } fn gas_ceil_target(&self) -> Result { Ok(U256::from(self.miner.authoring_params().gas_range_target.1)) } fn dev_logs(&self) -> Result> { let logs = self.logger.logs(); Ok(logs.as_slice().to_owned()) } fn dev_logs_levels(&self) -> Result { Ok(self.logger.levels().to_owned()) } fn net_chain(&self) -> Result { Ok(self.settings.chain.clone()) } fn chain(&self) -> Result { Ok(self.client.spec_name()) } fn net_peers(&self) -> Result { let sync_status = self.sync.status(); let num_peers_range = self.net.num_peers_range(); debug_assert!(num_peers_range.end > num_peers_range.start); let peers = self.sync.peers().into_iter().map(Into::into).collect(); Ok(Peers { active: sync_status.num_active_peers, connected: sync_status.num_peers, max: sync_status.current_max_peers(num_peers_range.start, num_peers_range.end - 1), peers: peers }) } fn net_port(&self) -> Result { Ok(self.settings.network_port) } fn node_name(&self) -> Result { Ok(self.settings.name.clone()) } fn registry_address(&self) -> Result> { Ok( self.client .additional_params() .get("registrar") .and_then(|s| Address::from_str(s).ok()) .map(|s| H160::from(s)) ) } fn rpc_settings(&self) -> Result { Ok(RpcSettings { enabled: self.settings.rpc_enabled, interface: self.settings.rpc_interface.clone(), port: self.settings.rpc_port as u64, }) } fn default_extra_data(&self) -> Result { Ok(Bytes::new(version_data())) } fn gas_price_histogram(&self) -> BoxFuture { Box::new(future::done(self.client .gas_price_corpus(100) .histogram(10) .ok_or_else(errors::not_enough_data) .map(Into::into) )) } fn unsigned_transactions_count(&self) -> Result { match self.signer { None => Err(errors::signer_disabled()), Some(ref signer) => Ok(signer.len()), } } fn generate_secret_phrase(&self) -> Result { Ok(random_phrase(12)) } fn phrase_to_address(&self, phrase: String) -> Result { Ok(Brain::new(phrase).generate().unwrap().address().into()) } fn list_accounts(&self, count: u64, after: Option, block_number: Trailing) -> Result>> { let number = match block_number.unwrap_or_default() { BlockNumber::Pending => { warn!("BlockNumber::Pending is unsupported"); return Ok(None); }, num => block_number_to_id(num) }; Ok(self.client .list_accounts(number, after.map(Into::into).as_ref(), count) .map(|a| a.into_iter().map(Into::into).collect())) } fn list_storage_keys(&self, address: H160, count: u64, after: Option, block_number: Trailing) -> Result>> { let number = match block_number.unwrap_or_default() { BlockNumber::Pending => { warn!("BlockNumber::Pending is unsupported"); return Ok(None); }, num => block_number_to_id(num) }; Ok(self.client .list_storage(number, &address.into(), after.map(Into::into).as_ref(), count) .map(|a| a.into_iter().map(Into::into).collect())) } fn encrypt_message(&self, key: H512, phrase: Bytes) -> Result { ecies::encrypt(&key.into(), &DEFAULT_MAC, &phrase.0) .map_err(errors::encryption) .map(Into::into) } fn pending_transactions(&self, limit: Trailing) -> Result> { let ready_transactions = self.miner.ready_transactions( &*self.client, limit.unwrap_or_else(usize::max_value), miner::PendingOrdering::Priority, ); Ok(ready_transactions .into_iter() .map(|t| Transaction::from_pending(t.pending().clone())) .collect() ) } fn all_transactions(&self) -> Result> { let all_transactions = self.miner.queued_transactions(); Ok(all_transactions .into_iter() .map(|t| Transaction::from_pending(t.pending().clone())) .collect() ) } fn all_transaction_hashes(&self) -> Result> { let all_transaction_hashes = self.miner.queued_transaction_hashes(); Ok(all_transaction_hashes .into_iter() .map(|hash| hash.into()) .collect() ) } fn future_transactions(&self) -> Result> { Err(errors::deprecated("Use `parity_allTransaction` instead.")) } fn pending_transactions_stats(&self) -> Result> { let stats = self.sync.transactions_stats(); Ok(stats.into_iter() .map(|(hash, stats)| (hash.into(), stats.into())) .collect() ) } fn local_transactions(&self) -> Result> { let transactions = self.miner.local_transactions(); Ok(transactions .into_iter() .map(|(hash, status)| (hash.into(), LocalTransactionStatus::from(status))) .collect() ) } fn ws_url(&self) -> Result { helpers::to_url(&self.ws_address) .ok_or_else(errors::ws_disabled) } fn next_nonce(&self, address: H160) -> BoxFuture { let address: Address = address.into(); Box::new(future::ok(self.miner.next_nonce(&*self.client, &address).into())) } fn mode(&self) -> Result { Ok(self.client.mode().to_string()) } fn enode(&self) -> Result { self.sync.enode().ok_or_else(errors::network_disabled) } fn consensus_capability(&self) -> Result { Ok(self.updater.capability().into()) } fn version_info(&self) -> Result { Ok(self.updater.version_info().into()) } fn releases_info(&self) -> Result> { Ok(self.updater.info().map(Into::into)) } fn chain_status(&self) -> Result { let chain_info = self.client.chain_info(); let gap = chain_info.ancient_block_number.map(|x| U256::from(x + 1)) .and_then(|first| chain_info.first_block_number.map(|last| (first, U256::from(last)))); Ok(ChainStatus { block_gap: gap.map(|(x, y)| (x.into(), y.into())), }) } fn node_kind(&self) -> Result<::v1::types::NodeKind> { use ::v1::types::{NodeKind, Availability, Capability}; Ok(NodeKind { availability: Availability::Personal, capability: Capability::Full, }) } fn block_header(&self, number: Trailing) -> BoxFuture { const EXTRA_INFO_PROOF: &str = "Object exists in blockchain (fetched earlier), extra_info is always available if object exists; qed"; let number = number.unwrap_or_default(); let (header, extra) = if number == BlockNumber::Pending { let info = self.client.chain_info(); let header = try_bf!(self.miner.pending_block_header(info.best_block_number).ok_or_else(errors::unknown_block)); (header.encoded(), None) } else { let id = match number { BlockNumber::Num(num) => BlockId::Number(num), BlockNumber::Earliest => BlockId::Earliest, BlockNumber::Latest => BlockId::Latest, BlockNumber::Pending => unreachable!(), // Already covered }; let header = try_bf!(self.client.block_header(id.clone()).ok_or_else(errors::unknown_block)); let info = self.client.block_extra_info(id).expect(EXTRA_INFO_PROOF); (header, Some(info)) }; Box::new(future::ok(RichHeader { inner: header.into(), extra_info: extra.unwrap_or_default(), })) } fn block_receipts(&self, number: Trailing) -> BoxFuture> { let number = number.unwrap_or_default(); let id = match number { BlockNumber::Pending => { let info = self.client.chain_info(); let receipts = try_bf!(self.miner.pending_receipts(info.best_block_number).ok_or_else(errors::unknown_block)); return Box::new(future::ok(receipts .into_iter() .map(Into::into) .collect() )) }, BlockNumber::Num(num) => BlockId::Number(num), BlockNumber::Earliest => BlockId::Earliest, BlockNumber::Latest => BlockId::Latest, }; let receipts = try_bf!(self.client.block_receipts(id).ok_or_else(errors::unknown_block)); Box::new(future::ok(receipts.into_iter().map(Into::into).collect())) } fn ipfs_cid(&self, content: Bytes) -> Result { ipfs::cid(content) } fn call(&self, requests: Vec, num: Trailing) -> Result> { let requests = requests .into_iter() .map(|request| Ok(( fake_sign::sign_call(request.into())?, Default::default() ))) .collect::>>()?; let num = num.unwrap_or_default(); let (mut state, header) = if num == BlockNumber::Pending { let info = self.client.chain_info(); let state = self.miner.pending_state(info.best_block_number).ok_or_else(errors::state_pruned)?; let header = self.miner.pending_block_header(info.best_block_number).ok_or_else(errors::state_pruned)?; (state, header) } else { let id = match num { BlockNumber::Num(num) => BlockId::Number(num), BlockNumber::Earliest => BlockId::Earliest, BlockNumber::Latest => BlockId::Latest, BlockNumber::Pending => unreachable!(), // Already covered }; let state = self.client.state_at(id).ok_or_else(errors::state_pruned)?; let header = self.client.block_header(id).ok_or_else(errors::state_pruned)?.decode().map_err(errors::decode)?; (state, header) }; self.client.call_many(&requests, &mut state, &header) .map(|res| res.into_iter().map(|res| res.output.into()).collect()) .map_err(errors::call) } fn submit_work_detail(&self, nonce: H64, pow_hash: H256, mix_hash: H256) -> Result { helpers::submit_work_detail(&self.client, &self.miner, nonce, pow_hash, mix_hash) } fn status(&self) -> Result<()> { let has_peers = self.settings.is_dev_chain || self.sync.status().num_peers > 0; let is_warping = match self.snapshot.as_ref().map(|s| s.status()) { Some(RestorationStatus::Ongoing { .. }) => true, _ => false, }; let is_not_syncing = !is_warping && !is_major_importing(Some(self.sync.status().state), self.client.queue_info()); if has_peers && is_not_syncing { Ok(()) } else { Err(errors::status_error(has_peers)) } } }