2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2017-11-01 11:23:18 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2017-11-01 11:23:18 +01: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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2017-11-01 11:23:18 +01: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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-11-01 11:23:18 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{
|
|
|
|
cmp,
|
|
|
|
collections::HashMap,
|
|
|
|
mem,
|
|
|
|
sync::{
|
|
|
|
atomic,
|
|
|
|
atomic::{AtomicBool, AtomicUsize},
|
|
|
|
Arc,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
use ethereum_types::{Address, U256};
|
|
|
|
use futures::{future, future::Either, sync::oneshot, Async, Future, Poll};
|
2018-10-22 09:40:50 +02:00
|
|
|
use parity_runtime::Executor;
|
2017-11-01 11:23:18 +01:00
|
|
|
|
2017-11-12 12:36:41 +01:00
|
|
|
/// Manages currently reserved and prospective nonces
|
|
|
|
/// for multiple senders.
|
2017-11-01 11:23:18 +01:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Reservations {
|
2020-08-05 06:08:03 +02:00
|
|
|
nonces: HashMap<Address, SenderReservations>,
|
|
|
|
executor: Executor,
|
2017-11-12 12:36:41 +01:00
|
|
|
}
|
|
|
|
impl Reservations {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// A maximal number of reserved nonces in the hashmap
|
|
|
|
/// before we start clearing the unused ones.
|
|
|
|
const CLEAN_AT: usize = 512;
|
|
|
|
|
|
|
|
/// Create new nonces manager with given executor.
|
|
|
|
pub fn new(executor: Executor) -> Self {
|
|
|
|
Reservations {
|
|
|
|
nonces: Default::default(),
|
|
|
|
executor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Reserve a nonce for particular address.
|
|
|
|
///
|
|
|
|
/// The reserved nonce cannot be smaller than the minimal nonce.
|
|
|
|
pub fn reserve(&mut self, sender: Address, minimal: U256) -> Reserved {
|
|
|
|
if self.nonces.len() + 1 > Self::CLEAN_AT {
|
|
|
|
self.nonces.retain(|_, v| !v.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
let executor = &self.executor;
|
|
|
|
self.nonces
|
|
|
|
.entry(sender)
|
|
|
|
.or_insert_with(move || SenderReservations::new(executor.clone()))
|
|
|
|
.reserve_nonce(minimal)
|
|
|
|
}
|
2017-11-12 12:36:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Manages currently reserved and prospective nonces.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SenderReservations {
|
2020-08-05 06:08:03 +02:00
|
|
|
previous: Option<oneshot::Receiver<U256>>,
|
|
|
|
previous_ready: Arc<AtomicBool>,
|
|
|
|
executor: Executor,
|
|
|
|
prospective_value: U256,
|
|
|
|
dropped: Arc<AtomicUsize>,
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
2017-11-12 12:36:41 +01:00
|
|
|
impl SenderReservations {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Create new nonces manager with given executor.
|
|
|
|
pub fn new(executor: Executor) -> Self {
|
|
|
|
SenderReservations {
|
|
|
|
previous: None,
|
|
|
|
previous_ready: Arc::new(AtomicBool::new(true)),
|
|
|
|
executor,
|
|
|
|
prospective_value: Default::default(),
|
|
|
|
dropped: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Reserves a prospective nonce.
|
|
|
|
/// The caller should provide a minimal nonce that needs to be reserved (taken from state/txqueue).
|
|
|
|
/// If there were any previous reserved nonces the returned future will be resolved when those are finished
|
|
|
|
/// (confirmed that the nonce were indeed used).
|
|
|
|
/// The caller can use `prospective_nonce` and perform some heavy computation anticipating
|
|
|
|
/// that the `prospective_nonce` will be equal to the one he will get.
|
|
|
|
pub fn reserve_nonce(&mut self, minimal: U256) -> Reserved {
|
|
|
|
// Update prospective value
|
|
|
|
let dropped = self.dropped.swap(0, atomic::Ordering::SeqCst);
|
|
|
|
let prospective_value = cmp::max(minimal, self.prospective_value - dropped);
|
|
|
|
self.prospective_value = prospective_value + 1;
|
|
|
|
|
|
|
|
let (next, rx) = oneshot::channel();
|
|
|
|
let next = Some(next);
|
|
|
|
let next_sent = Arc::new(AtomicBool::default());
|
|
|
|
let executor = self.executor.clone();
|
|
|
|
let dropped = self.dropped.clone();
|
|
|
|
self.previous_ready = next_sent.clone();
|
|
|
|
match mem::replace(&mut self.previous, Some(rx)) {
|
|
|
|
Some(previous) => Reserved {
|
|
|
|
previous: Either::A(previous),
|
|
|
|
next,
|
|
|
|
next_sent,
|
|
|
|
minimal,
|
|
|
|
prospective_value,
|
|
|
|
executor,
|
|
|
|
dropped,
|
|
|
|
},
|
|
|
|
None => Reserved {
|
|
|
|
previous: Either::B(future::ok(minimal)),
|
|
|
|
next,
|
|
|
|
next_sent,
|
|
|
|
minimal,
|
|
|
|
prospective_value,
|
|
|
|
executor,
|
|
|
|
dropped,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if there are no reserved nonces.
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.previous_ready.load(atomic::Ordering::SeqCst)
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a future nonce.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Reserved {
|
2020-08-05 06:08:03 +02:00
|
|
|
previous: Either<oneshot::Receiver<U256>, future::FutureResult<U256, oneshot::Canceled>>,
|
|
|
|
next: Option<oneshot::Sender<U256>>,
|
|
|
|
next_sent: Arc<AtomicBool>,
|
|
|
|
minimal: U256,
|
|
|
|
prospective_value: U256,
|
|
|
|
executor: Executor,
|
|
|
|
dropped: Arc<AtomicUsize>,
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Reserved {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Returns a prospective value of the nonce.
|
|
|
|
/// NOTE: This might be different than the one we resolve to.
|
|
|
|
/// Make sure to check if both nonces match or use the latter one.
|
|
|
|
pub fn prospective_value(&self) -> &U256 {
|
|
|
|
&self.prospective_value
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Future for Reserved {
|
|
|
|
type Item = Ready;
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
2020-08-05 06:08:03 +02:00
|
|
|
let mut value = try_ready!(self.previous.poll().map_err(|e| {
|
|
|
|
warn!("Unexpected nonce cancellation: {}", e);
|
|
|
|
}));
|
|
|
|
|
|
|
|
if value < self.minimal {
|
|
|
|
value = self.minimal
|
|
|
|
}
|
|
|
|
let matches_prospective = value == self.prospective_value;
|
|
|
|
|
|
|
|
Ok(Async::Ready(Ready {
|
|
|
|
value,
|
|
|
|
matches_prospective,
|
|
|
|
next: self.next.take(),
|
|
|
|
next_sent: self.next_sent.clone(),
|
|
|
|
dropped: self.dropped.clone(),
|
|
|
|
}))
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Reserved {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn drop(&mut self) {
|
|
|
|
if let Some(next) = self.next.take() {
|
|
|
|
let next_sent = self.next_sent.clone();
|
|
|
|
self.dropped.fetch_add(1, atomic::Ordering::SeqCst);
|
|
|
|
// If Reserved is dropped just pipe previous and next together.
|
|
|
|
let previous = mem::replace(&mut self.previous, Either::B(future::ok(U256::default())));
|
|
|
|
self.executor.spawn(
|
|
|
|
previous
|
|
|
|
.map(move |nonce| {
|
|
|
|
next_sent.store(true, atomic::Ordering::SeqCst);
|
|
|
|
next.send(nonce).expect(Ready::RECV_PROOF)
|
|
|
|
})
|
|
|
|
.map_err(|err| error!("Error dropping `Reserved`: {:?}", err)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a valid reserved nonce.
|
|
|
|
/// This can be used to dispatch the transaction.
|
|
|
|
///
|
|
|
|
/// After this nonce is used it should be marked as such
|
|
|
|
/// using `mark_used` method.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Ready {
|
2020-08-05 06:08:03 +02:00
|
|
|
value: U256,
|
|
|
|
matches_prospective: bool,
|
|
|
|
next: Option<oneshot::Sender<U256>>,
|
|
|
|
next_sent: Arc<AtomicBool>,
|
|
|
|
dropped: Arc<AtomicUsize>,
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Ready {
|
2020-08-05 06:08:03 +02:00
|
|
|
const RECV_PROOF: &'static str = "Receiver never dropped.";
|
|
|
|
|
|
|
|
/// Returns a value of the nonce.
|
|
|
|
pub fn value(&self) -> &U256 {
|
|
|
|
&self.value
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if current value matches the prospective nonce.
|
|
|
|
pub fn matches_prospective(&self) -> bool {
|
|
|
|
self.matches_prospective
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Marks this nonce as used.
|
|
|
|
/// Make sure to call that method after this nonce has been consumed.
|
|
|
|
pub fn mark_used(mut self) {
|
|
|
|
let next = self
|
|
|
|
.next
|
|
|
|
.take()
|
|
|
|
.expect("Nonce can be marked as used only once; qed");
|
|
|
|
self.next_sent.store(true, atomic::Ordering::SeqCst);
|
|
|
|
next.send(self.value + 1).expect(Self::RECV_PROOF);
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Ready {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn drop(&mut self) {
|
|
|
|
if let Some(next) = self.next.take() {
|
|
|
|
self.dropped.fetch_add(1, atomic::Ordering::SeqCst);
|
|
|
|
self.next_sent.store(true, atomic::Ordering::SeqCst);
|
|
|
|
next.send(self.value).expect(Self::RECV_PROOF);
|
|
|
|
}
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2018-10-22 09:40:50 +02:00
|
|
|
use parity_runtime::Runtime;
|
2017-11-01 11:23:18 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
#[test]
|
|
|
|
fn should_reserve_a_set_of_nonces_and_resolve_them() {
|
|
|
|
let runtime = Runtime::with_thread_count(1);
|
|
|
|
let mut nonces = SenderReservations::new(runtime.executor());
|
|
|
|
|
|
|
|
assert!(nonces.is_empty());
|
|
|
|
let n1 = nonces.reserve_nonce(5.into());
|
|
|
|
let n2 = nonces.reserve_nonce(5.into());
|
|
|
|
let n3 = nonces.reserve_nonce(5.into());
|
|
|
|
let n4 = nonces.reserve_nonce(5.into());
|
|
|
|
assert!(!nonces.is_empty());
|
|
|
|
|
|
|
|
// Check first nonce
|
|
|
|
let r = n1.wait().unwrap();
|
|
|
|
assert_eq!(r.value(), &U256::from(5));
|
|
|
|
assert!(r.matches_prospective());
|
|
|
|
r.mark_used();
|
|
|
|
|
|
|
|
// Drop second nonce
|
|
|
|
drop(n2);
|
|
|
|
|
|
|
|
// Drop third without marking as used
|
|
|
|
let r = n3.wait().unwrap();
|
|
|
|
drop(r);
|
|
|
|
|
|
|
|
// Last nonce should be resolved to 6
|
|
|
|
let r = n4.wait().unwrap();
|
|
|
|
assert_eq!(r.value(), &U256::from(6));
|
|
|
|
assert!(!r.matches_prospective());
|
|
|
|
r.mark_used();
|
|
|
|
|
|
|
|
// Next nonce should be immediately available.
|
|
|
|
let n5 = nonces.reserve_nonce(5.into());
|
|
|
|
let r = n5.wait().unwrap();
|
|
|
|
assert_eq!(r.value(), &U256::from(7));
|
|
|
|
assert!(r.matches_prospective());
|
|
|
|
r.mark_used();
|
|
|
|
|
|
|
|
// Should use start number if it's greater
|
|
|
|
let n6 = nonces.reserve_nonce(10.into());
|
|
|
|
let r = n6.wait().unwrap();
|
|
|
|
assert_eq!(r.value(), &U256::from(10));
|
|
|
|
assert!(r.matches_prospective());
|
|
|
|
r.mark_used();
|
|
|
|
|
|
|
|
assert!(nonces.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_return_prospective_nonce() {
|
|
|
|
let runtime = Runtime::with_thread_count(1);
|
|
|
|
let mut nonces = SenderReservations::new(runtime.executor());
|
|
|
|
|
|
|
|
let n1 = nonces.reserve_nonce(5.into());
|
|
|
|
let n2 = nonces.reserve_nonce(5.into());
|
|
|
|
|
|
|
|
assert_eq!(n1.prospective_value(), &U256::from(5));
|
|
|
|
assert_eq!(n2.prospective_value(), &U256::from(6));
|
|
|
|
}
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|