2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-06-01 19:37:34 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-06-01 19:37:34 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-06-01 19:37:34 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-01 19:37:34 +02:00
|
|
|
|
2016-11-06 12:51:53 +01:00
|
|
|
//! Transactions Confirmations rpc implementation
|
2016-06-01 19:37:34 +02:00
|
|
|
|
2017-05-28 14:40:36 +02:00
|
|
|
use std::sync::Arc;
|
2016-11-09 13:13:35 +01:00
|
|
|
|
2017-04-27 18:23:22 +02:00
|
|
|
use ethkey;
|
2018-10-22 09:40:50 +02:00
|
|
|
use parity_runtime::Executor;
|
2017-09-02 20:09:13 +02:00
|
|
|
use parking_lot::Mutex;
|
2018-04-16 15:52:12 +02:00
|
|
|
use rlp::Rlp;
|
2019-01-04 14:05:46 +01:00
|
|
|
use types::transaction::{SignedTransaction, PendingTransaction};
|
2016-11-10 11:27:05 +01:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
use jsonrpc_core::{Result, BoxFuture, Error};
|
2017-10-05 12:35:01 +02:00
|
|
|
use jsonrpc_core::futures::{future, Future, IntoFuture};
|
|
|
|
use jsonrpc_core::futures::future::Either;
|
2019-02-05 14:31:19 +01:00
|
|
|
use jsonrpc_pubsub::{SubscriptionId, typed::{Sink, Subscriber}};
|
2019-02-07 14:34:24 +01:00
|
|
|
use v1::helpers::deprecated::{self, DeprecationNotice};
|
2017-04-27 18:23:22 +02:00
|
|
|
use v1::helpers::dispatch::{self, Dispatcher, WithToken, eth_data_hash};
|
2019-02-07 14:34:24 +01:00
|
|
|
use v1::helpers::{errors, ConfirmationPayload, FilledTransactionRequest, Subscribers};
|
|
|
|
use v1::helpers::external_signer::{SigningQueue, SignerService};
|
2017-05-17 16:20:41 +02:00
|
|
|
use v1::metadata::Metadata;
|
2017-01-30 21:08:36 +01:00
|
|
|
use v1::traits::Signer;
|
|
|
|
use v1::types::{TransactionModification, ConfirmationRequest, ConfirmationResponse, ConfirmationResponseWithToken, U256, Bytes};
|
2016-06-01 19:37:34 +02:00
|
|
|
|
|
|
|
/// Transactions confirmation (personal) rpc implementation.
|
2017-02-08 16:55:06 +01:00
|
|
|
pub struct SignerClient<D: Dispatcher> {
|
2017-05-28 14:40:36 +02:00
|
|
|
signer: Arc<SignerService>,
|
2019-02-07 14:34:24 +01:00
|
|
|
accounts: Arc<dispatch::Accounts>,
|
2017-05-17 16:20:41 +02:00
|
|
|
dispatcher: D,
|
|
|
|
subscribers: Arc<Mutex<Subscribers<Sink<Vec<ConfirmationRequest>>>>>,
|
2019-02-07 14:34:24 +01:00
|
|
|
deprecation_notice: DeprecationNotice,
|
2016-06-01 19:37:34 +02:00
|
|
|
}
|
|
|
|
|
2017-02-08 16:55:06 +01:00
|
|
|
impl<D: Dispatcher + 'static> SignerClient<D> {
|
2016-06-01 19:37:34 +02:00
|
|
|
/// Create new instance of signer client.
|
2016-09-21 12:44:49 +02:00
|
|
|
pub fn new(
|
2019-02-07 14:34:24 +01:00
|
|
|
accounts: Arc<dispatch::Accounts>,
|
2017-02-08 16:55:06 +01:00
|
|
|
dispatcher: D,
|
2016-09-21 12:44:49 +02:00
|
|
|
signer: &Arc<SignerService>,
|
2018-10-22 09:40:50 +02:00
|
|
|
executor: Executor,
|
2016-09-21 12:44:49 +02:00
|
|
|
) -> Self {
|
2017-05-17 16:20:41 +02:00
|
|
|
let subscribers = Arc::new(Mutex::new(Subscribers::default()));
|
|
|
|
let subs = Arc::downgrade(&subscribers);
|
|
|
|
let s = Arc::downgrade(signer);
|
|
|
|
signer.queue().on_event(move |_event| {
|
|
|
|
if let (Some(s), Some(subs)) = (s.upgrade(), subs.upgrade()) {
|
|
|
|
let requests = s.requests().into_iter().map(Into::into).collect::<Vec<ConfirmationRequest>>();
|
|
|
|
for subscription in subs.lock().values() {
|
|
|
|
let subscription: &Sink<_> = subscription;
|
2018-10-22 09:40:50 +02:00
|
|
|
executor.spawn(subscription
|
2017-06-09 12:20:37 +02:00
|
|
|
.notify(Ok(requests.clone()))
|
2017-05-17 16:20:41 +02:00
|
|
|
.map(|_| ())
|
|
|
|
.map_err(|e| warn!(target: "rpc", "Unable to send notification: {}", e))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-06-01 19:37:34 +02:00
|
|
|
SignerClient {
|
2017-05-28 14:40:36 +02:00
|
|
|
signer: signer.clone(),
|
2019-02-07 14:34:24 +01:00
|
|
|
accounts: accounts.clone(),
|
2017-10-24 12:13:00 +02:00
|
|
|
dispatcher,
|
|
|
|
subscribers,
|
2019-02-07 14:34:24 +01:00
|
|
|
deprecation_notice: Default::default(),
|
2016-06-01 19:37:34 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-05 17:50:46 +02:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn confirm_internal<F, T>(&self, id: U256, modification: TransactionModification, f: F) -> BoxFuture<WithToken<ConfirmationResponse>> where
|
2019-02-07 14:34:24 +01:00
|
|
|
F: FnOnce(D, &Arc<dispatch::Accounts>, ConfirmationPayload) -> T,
|
2017-02-08 16:55:06 +01:00
|
|
|
T: IntoFuture<Item=WithToken<ConfirmationResponse>, Error=Error>,
|
|
|
|
T::Future: Send + 'static
|
2016-11-30 16:11:41 +01:00
|
|
|
{
|
2016-10-31 17:11:56 +01:00
|
|
|
let id = id.into();
|
2017-02-08 16:55:06 +01:00
|
|
|
let dispatcher = self.dispatcher.clone();
|
2017-10-05 12:35:01 +02:00
|
|
|
let signer = self.signer.clone();
|
2017-02-08 16:55:06 +01:00
|
|
|
|
2018-06-12 15:21:30 +02:00
|
|
|
Box::new(signer.take(&id).map(|sender| {
|
|
|
|
let mut payload = sender.request.payload.clone();
|
2016-11-09 13:13:35 +01:00
|
|
|
// Modify payload
|
2016-12-10 20:18:42 +01:00
|
|
|
if let ConfirmationPayload::SendTransaction(ref mut request) = payload {
|
2018-06-12 15:21:30 +02:00
|
|
|
if let Some(sender) = modification.sender {
|
2017-01-30 11:10:58 +01:00
|
|
|
request.from = sender.into();
|
|
|
|
// Altering sender should always reset the nonce.
|
|
|
|
request.nonce = None;
|
|
|
|
}
|
2016-12-10 20:18:42 +01:00
|
|
|
if let Some(gas_price) = modification.gas_price {
|
2016-11-09 13:13:35 +01:00
|
|
|
request.gas_price = gas_price.into();
|
2016-12-10 20:18:42 +01:00
|
|
|
}
|
|
|
|
if let Some(gas) = modification.gas {
|
|
|
|
request.gas = gas.into();
|
|
|
|
}
|
2017-02-03 19:32:10 +01:00
|
|
|
if let Some(ref condition) = modification.condition {
|
|
|
|
request.condition = condition.clone().map(Into::into);
|
2016-12-15 18:19:19 +01:00
|
|
|
}
|
2016-11-09 13:13:35 +01:00
|
|
|
}
|
2019-02-07 14:34:24 +01:00
|
|
|
let fut = f(dispatcher, &self.accounts, payload);
|
2017-10-05 12:35:01 +02:00
|
|
|
Either::A(fut.into_future().then(move |result| {
|
2017-02-08 16:55:06 +01:00
|
|
|
// Execute
|
|
|
|
if let Ok(ref response) = result {
|
2018-06-12 15:21:30 +02:00
|
|
|
signer.request_confirmed(sender, Ok((*response).clone()));
|
|
|
|
} else {
|
|
|
|
signer.request_untouched(sender);
|
2017-02-08 16:55:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
result
|
2017-10-05 12:35:01 +02:00
|
|
|
}))
|
2017-02-08 16:55:06 +01:00
|
|
|
})
|
2017-10-05 12:35:01 +02:00
|
|
|
.unwrap_or_else(|| Either::B(future::err(errors::invalid_params("Unknown RequestID", id)))))
|
2016-06-01 19:37:34 +02:00
|
|
|
}
|
2017-04-27 18:23:22 +02:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn verify_transaction<F>(bytes: Bytes, request: FilledTransactionRequest, process: F) -> Result<ConfirmationResponse> where
|
|
|
|
F: FnOnce(PendingTransaction) -> Result<ConfirmationResponse>,
|
2017-04-27 18:23:22 +02:00
|
|
|
{
|
2018-04-16 15:52:12 +02:00
|
|
|
let signed_transaction = Rlp::new(&bytes.0).as_val().map_err(errors::rlp)?;
|
2017-04-27 18:23:22 +02:00
|
|
|
let signed_transaction = SignedTransaction::new(signed_transaction).map_err(|e| errors::invalid_params("Invalid signature.", e))?;
|
|
|
|
let sender = signed_transaction.sender();
|
|
|
|
|
|
|
|
// Verification
|
|
|
|
let sender_matches = sender == request.from;
|
|
|
|
let data_matches = signed_transaction.data == request.data;
|
|
|
|
let value_matches = signed_transaction.value == request.value;
|
|
|
|
let nonce_matches = match request.nonce {
|
|
|
|
Some(nonce) => signed_transaction.nonce == nonce,
|
|
|
|
None => true,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Dispatch if everything is ok
|
|
|
|
if sender_matches && data_matches && value_matches && nonce_matches {
|
|
|
|
let pending_transaction = PendingTransaction::new(signed_transaction, request.condition.map(Into::into));
|
|
|
|
process(pending_transaction)
|
|
|
|
} else {
|
|
|
|
let mut error = Vec::new();
|
|
|
|
if !sender_matches { error.push("from") }
|
|
|
|
if !data_matches { error.push("data") }
|
|
|
|
if !value_matches { error.push("value") }
|
|
|
|
if !nonce_matches { error.push("nonce") }
|
|
|
|
|
|
|
|
Err(errors::invalid_params("Sent transaction does not match the request.", error))
|
|
|
|
}
|
|
|
|
}
|
2016-11-30 16:11:41 +01:00
|
|
|
}
|
|
|
|
|
2017-02-08 16:55:06 +01:00
|
|
|
impl<D: Dispatcher + 'static> Signer for SignerClient<D> {
|
2017-05-17 16:20:41 +02:00
|
|
|
type Metadata = Metadata;
|
2016-11-30 16:11:41 +01:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn requests_to_confirm(&self) -> Result<Vec<ConfirmationRequest>> {
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_requestsToConfirm", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2017-05-28 14:40:36 +02:00
|
|
|
Ok(self.signer.requests()
|
2016-11-30 16:11:41 +01:00
|
|
|
.into_iter()
|
|
|
|
.map(Into::into)
|
|
|
|
.collect()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO [ToDr] TransactionModification is redundant for some calls
|
|
|
|
// might be better to replace it in future
|
2017-02-08 16:55:06 +01:00
|
|
|
fn confirm_request(&self, id: U256, modification: TransactionModification, pass: String)
|
2017-11-14 11:38:17 +01:00
|
|
|
-> BoxFuture<ConfirmationResponse>
|
2017-02-08 16:55:06 +01:00
|
|
|
{
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_confirmRequest", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2017-10-05 12:35:01 +02:00
|
|
|
Box::new(self.confirm_internal(id, modification, move |dis, accounts, payload| {
|
2018-06-22 15:09:15 +02:00
|
|
|
dispatch::execute(dis, accounts, payload, dispatch::SignWith::Password(pass.into()))
|
2017-10-05 12:35:01 +02:00
|
|
|
}).map(|v| v.into_value()))
|
2016-11-30 16:11:41 +01:00
|
|
|
}
|
|
|
|
|
2017-02-08 16:55:06 +01:00
|
|
|
fn confirm_request_with_token(&self, id: U256, modification: TransactionModification, token: String)
|
2017-11-14 11:38:17 +01:00
|
|
|
-> BoxFuture<ConfirmationResponseWithToken>
|
2017-02-08 16:55:06 +01:00
|
|
|
{
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_confirmRequestWithToken", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2017-10-05 12:35:01 +02:00
|
|
|
Box::new(self.confirm_internal(id, modification, move |dis, accounts, payload| {
|
2018-06-22 15:09:15 +02:00
|
|
|
dispatch::execute(dis, accounts, payload, dispatch::SignWith::Token(token.into()))
|
2016-11-30 17:05:31 +01:00
|
|
|
}).and_then(|v| match v {
|
|
|
|
WithToken::No(_) => Err(errors::internal("Unexpected response without token.", "")),
|
|
|
|
WithToken::Yes(response, token) => Ok(ConfirmationResponseWithToken {
|
|
|
|
result: response,
|
|
|
|
token: token,
|
|
|
|
}),
|
2017-10-05 12:35:01 +02:00
|
|
|
}))
|
2016-11-30 16:11:41 +01:00
|
|
|
}
|
2016-06-01 19:37:34 +02:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn confirm_request_raw(&self, id: U256, bytes: Bytes) -> Result<ConfirmationResponse> {
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_confirmRequestRaw", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2016-11-10 11:27:05 +01:00
|
|
|
let id = id.into();
|
|
|
|
|
2018-06-12 15:21:30 +02:00
|
|
|
self.signer.take(&id).map(|sender| {
|
|
|
|
let payload = sender.request.payload.clone();
|
|
|
|
let result = match payload {
|
2016-11-10 11:27:05 +01:00
|
|
|
ConfirmationPayload::SendTransaction(request) => {
|
2017-04-27 18:23:22 +02:00
|
|
|
Self::verify_transaction(bytes, request, |pending_transaction| {
|
2017-02-08 16:55:06 +01:00
|
|
|
self.dispatcher.dispatch_transaction(pending_transaction)
|
2016-11-10 11:27:05 +01:00
|
|
|
.map(Into::into)
|
|
|
|
.map(ConfirmationResponse::SendTransaction)
|
2017-04-27 18:23:22 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
ConfirmationPayload::SignTransaction(request) => {
|
|
|
|
Self::verify_transaction(bytes, request, |pending_transaction| {
|
2017-10-24 12:13:00 +02:00
|
|
|
let rich = self.dispatcher.enrich(pending_transaction.transaction);
|
|
|
|
Ok(ConfirmationResponse::SignTransaction(rich))
|
2017-04-27 18:23:22 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
ConfirmationPayload::EthSignMessage(address, data) => {
|
|
|
|
let expected_hash = eth_data_hash(data);
|
2017-05-11 12:18:20 +02:00
|
|
|
let signature = ethkey::Signature::from_electrum(&bytes.0);
|
2017-04-27 18:23:22 +02:00
|
|
|
match ethkey::verify_address(&address, &signature, &expected_hash) {
|
|
|
|
Ok(true) => Ok(ConfirmationResponse::Signature(bytes.0.as_slice().into())),
|
|
|
|
Ok(false) => Err(errors::invalid_params("Sender address does not match the signature.", ())),
|
|
|
|
Err(err) => Err(errors::invalid_params("Invalid signature received.", err)),
|
2016-11-10 11:27:05 +01:00
|
|
|
}
|
|
|
|
},
|
2018-11-14 09:02:40 +01:00
|
|
|
ConfirmationPayload::SignMessage(address, hash) => {
|
|
|
|
let signature = ethkey::Signature::from_electrum(&bytes.0);
|
|
|
|
match ethkey::verify_address(&address, &signature, &hash) {
|
|
|
|
Ok(true) => Ok(ConfirmationResponse::Signature(bytes.0.as_slice().into())),
|
|
|
|
Ok(false) => Err(errors::invalid_params("Sender address does not match the signature.", ())),
|
|
|
|
Err(err) => Err(errors::invalid_params("Invalid signature received.", err)),
|
|
|
|
}
|
|
|
|
},
|
2017-05-15 18:59:41 +02:00
|
|
|
ConfirmationPayload::Decrypt(_address, _data) => {
|
|
|
|
// TODO [ToDr]: Decrypt can we verify if the answer is correct?
|
|
|
|
Ok(ConfirmationResponse::Decrypt(bytes))
|
|
|
|
},
|
2016-11-10 11:27:05 +01:00
|
|
|
};
|
|
|
|
if let Ok(ref response) = result {
|
2018-06-12 15:21:30 +02:00
|
|
|
self.signer.request_confirmed(sender, Ok(response.clone()));
|
|
|
|
} else {
|
|
|
|
self.signer.request_untouched(sender);
|
2016-11-10 11:27:05 +01:00
|
|
|
}
|
|
|
|
result
|
|
|
|
}).unwrap_or_else(|| Err(errors::invalid_params("Unknown RequestID", id)))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn reject_request(&self, id: U256) -> Result<bool> {
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_rejectRequest", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2018-06-12 15:21:30 +02:00
|
|
|
let res = self.signer.take(&id.into()).map(|sender| self.signer.request_rejected(sender));
|
2016-10-31 17:11:56 +01:00
|
|
|
Ok(res.is_some())
|
2016-06-01 19:37:34 +02:00
|
|
|
}
|
2016-09-21 12:44:49 +02:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn generate_token(&self) -> Result<String> {
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_generateAuthorizationToken", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2017-05-28 14:40:36 +02:00
|
|
|
self.signer.generate_token()
|
2016-09-21 12:44:49 +02:00
|
|
|
.map_err(|e| errors::token(e))
|
|
|
|
}
|
2016-12-27 11:15:02 +01:00
|
|
|
|
2017-05-17 16:20:41 +02:00
|
|
|
fn subscribe_pending(&self, _meta: Self::Metadata, sub: Subscriber<Vec<ConfirmationRequest>>) {
|
2019-02-07 14:34:24 +01:00
|
|
|
self.deprecation_notice.print("signer_subscribePending", deprecated::msgs::ACCOUNTS);
|
|
|
|
|
2017-05-17 16:20:41 +02:00
|
|
|
self.subscribers.lock().push(sub)
|
|
|
|
}
|
2016-12-27 11:15:02 +01:00
|
|
|
|
2019-02-05 14:31:19 +01:00
|
|
|
fn unsubscribe_pending(&self, _: Option<Self::Metadata>, id: SubscriptionId) -> Result<bool> {
|
2017-05-17 16:20:41 +02:00
|
|
|
let res = self.subscribers.lock().remove(&id).is_some();
|
2017-10-05 12:35:01 +02:00
|
|
|
Ok(res)
|
2016-12-27 11:15:02 +01:00
|
|
|
}
|
2016-06-01 19:37:34 +02:00
|
|
|
}
|