Merge pull request #4933 from paritytech/signing-fix
Don't remove confirmed requests to early.
This commit is contained in:
commit
c36f4266d2
@ -38,5 +38,6 @@ pub use self::requests::{
|
|||||||
};
|
};
|
||||||
pub use self::signing_queue::{
|
pub use self::signing_queue::{
|
||||||
ConfirmationsQueue, ConfirmationPromise, ConfirmationResult, SigningQueue, QueueEvent, DefaultAccount,
|
ConfirmationsQueue, ConfirmationPromise, ConfirmationResult, SigningQueue, QueueEvent, DefaultAccount,
|
||||||
|
QUEUE_LIMIT as SIGNING_QUEUE_LIMIT,
|
||||||
};
|
};
|
||||||
pub use self::signer::SignerService;
|
pub use self::signer::SignerService;
|
||||||
|
@ -77,7 +77,7 @@ pub enum QueueAddError {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO [todr] to consider: timeout instead of limit?
|
// TODO [todr] to consider: timeout instead of limit?
|
||||||
const QUEUE_LIMIT: usize = 50;
|
pub const QUEUE_LIMIT: usize = 50;
|
||||||
|
|
||||||
/// A queue of transactions awaiting to be confirmed and signed.
|
/// A queue of transactions awaiting to be confirmed and signed.
|
||||||
pub trait SigningQueue: Send + Sync {
|
pub trait SigningQueue: Send + Sync {
|
||||||
|
@ -27,7 +27,7 @@ use jsonrpc_core::Error;
|
|||||||
use v1::helpers::{
|
use v1::helpers::{
|
||||||
errors,
|
errors,
|
||||||
DefaultAccount,
|
DefaultAccount,
|
||||||
SigningQueue, ConfirmationPromise, ConfirmationResult, SignerService
|
SIGNING_QUEUE_LIMIT, SigningQueue, ConfirmationPromise, ConfirmationResult, SignerService
|
||||||
};
|
};
|
||||||
use v1::helpers::dispatch::{self, Dispatcher};
|
use v1::helpers::dispatch::{self, Dispatcher};
|
||||||
use v1::metadata::Metadata;
|
use v1::metadata::Metadata;
|
||||||
@ -42,7 +42,10 @@ use v1::types::{
|
|||||||
Origin,
|
Origin,
|
||||||
};
|
};
|
||||||
|
|
||||||
const MAX_PENDING_DURATION: u64 = 60 * 60;
|
/// After 60s entries that are not queried with `check_request` will get garbage collected.
|
||||||
|
const MAX_PENDING_DURATION_SEC: u64 = 60;
|
||||||
|
/// Max number of total requests pending and completed, before we start garbage collecting them.
|
||||||
|
const MAX_TOTAL_REQUESTS: usize = SIGNING_QUEUE_LIMIT;
|
||||||
|
|
||||||
enum DispatchResult {
|
enum DispatchResult {
|
||||||
Promise(ConfirmationPromise),
|
Promise(ConfirmationPromise),
|
||||||
@ -71,6 +74,21 @@ fn handle_dispatch<OnResponse>(res: Result<DispatchResult, Error>, on_response:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn collect_garbage(map: &mut TransientHashMap<U256, ConfirmationPromise>) {
|
||||||
|
map.prune();
|
||||||
|
if map.len() > MAX_TOTAL_REQUESTS {
|
||||||
|
// Remove all non-waiting entries.
|
||||||
|
let non_waiting: Vec<_> = map
|
||||||
|
.iter()
|
||||||
|
.filter(|&(_, val)| val.result() != ConfirmationResult::Waiting)
|
||||||
|
.map(|(key, _)| *key)
|
||||||
|
.collect();
|
||||||
|
for k in non_waiting {
|
||||||
|
map.remove(&k);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<D: Dispatcher + 'static> SigningQueueClient<D> {
|
impl<D: Dispatcher + 'static> SigningQueueClient<D> {
|
||||||
/// Creates a new signing queue client given shared signing queue.
|
/// Creates a new signing queue client given shared signing queue.
|
||||||
pub fn new(signer: &Arc<SignerService>, dispatcher: D, accounts: &Arc<AccountProvider>) -> Self {
|
pub fn new(signer: &Arc<SignerService>, dispatcher: D, accounts: &Arc<AccountProvider>) -> Self {
|
||||||
@ -78,7 +96,7 @@ impl<D: Dispatcher + 'static> SigningQueueClient<D> {
|
|||||||
signer: Arc::downgrade(signer),
|
signer: Arc::downgrade(signer),
|
||||||
accounts: Arc::downgrade(accounts),
|
accounts: Arc::downgrade(accounts),
|
||||||
dispatcher: dispatcher,
|
dispatcher: dispatcher,
|
||||||
pending: Arc::new(Mutex::new(TransientHashMap::new(MAX_PENDING_DURATION))),
|
pending: Arc::new(Mutex::new(TransientHashMap::new(MAX_PENDING_DURATION_SEC))),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,7 +142,10 @@ impl<D: Dispatcher + 'static> ParitySigning for SigningQueueClient<D> {
|
|||||||
DispatchResult::Value(v) => RpcEither::Or(v),
|
DispatchResult::Value(v) => RpcEither::Or(v),
|
||||||
DispatchResult::Promise(promise) => {
|
DispatchResult::Promise(promise) => {
|
||||||
let id = promise.id();
|
let id = promise.id();
|
||||||
pending.lock().insert(id, promise);
|
let mut pending = pending.lock();
|
||||||
|
collect_garbage(&mut pending);
|
||||||
|
pending.insert(id, promise);
|
||||||
|
|
||||||
RpcEither::Either(id.into())
|
RpcEither::Either(id.into())
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -138,7 +159,10 @@ impl<D: Dispatcher + 'static> ParitySigning for SigningQueueClient<D> {
|
|||||||
DispatchResult::Value(v) => RpcEither::Or(v),
|
DispatchResult::Value(v) => RpcEither::Or(v),
|
||||||
DispatchResult::Promise(promise) => {
|
DispatchResult::Promise(promise) => {
|
||||||
let id = promise.id();
|
let id = promise.id();
|
||||||
pending.lock().insert(id, promise);
|
let mut pending = pending.lock();
|
||||||
|
collect_garbage(&mut pending);
|
||||||
|
pending.insert(id, promise);
|
||||||
|
|
||||||
RpcEither::Either(id.into())
|
RpcEither::Either(id.into())
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -146,18 +170,15 @@ impl<D: Dispatcher + 'static> ParitySigning for SigningQueueClient<D> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn check_request(&self, id: RpcU256) -> Result<Option<RpcConfirmationResponse>, Error> {
|
fn check_request(&self, id: RpcU256) -> Result<Option<RpcConfirmationResponse>, Error> {
|
||||||
let mut pending = self.pending.lock();
|
|
||||||
let id: U256 = id.into();
|
let id: U256 = id.into();
|
||||||
let res = match pending.get(&id) {
|
match self.pending.lock().get(&id) {
|
||||||
Some(ref promise) => match promise.result() {
|
Some(ref promise) => match promise.result() {
|
||||||
ConfirmationResult::Waiting => { return Ok(None); }
|
ConfirmationResult::Waiting => Ok(None),
|
||||||
ConfirmationResult::Rejected => Err(errors::request_rejected()),
|
ConfirmationResult::Rejected => Err(errors::request_rejected()),
|
||||||
ConfirmationResult::Confirmed(rpc_response) => rpc_response.map(Some),
|
ConfirmationResult::Confirmed(rpc_response) => rpc_response.map(Some),
|
||||||
},
|
},
|
||||||
_ => { return Err(errors::request_not_found()); }
|
_ => Err(errors::request_not_found()),
|
||||||
};
|
}
|
||||||
pending.remove(&id);
|
|
||||||
res
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn decrypt_message(&self, meta: Metadata, address: RpcH160, data: RpcBytes) -> BoxFuture<RpcBytes, Error> {
|
fn decrypt_message(&self, meta: Metadata, address: RpcH160, data: RpcBytes) -> BoxFuture<RpcBytes, Error> {
|
||||||
|
Loading…
Reference in New Issue
Block a user