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-04-06 10:07:24 +02:00
|
|
|
//! A queue of blocks. Sits between network or other I/O and the `BlockChain`.
|
2016-01-21 23:33:52 +01:00
|
|
|
//! Sorts them ready for blockchain insertion.
|
2016-01-17 23:07:58 +01:00
|
|
|
use std::thread::{JoinHandle, self};
|
|
|
|
use std::sync::atomic::{AtomicBool, Ordering as AtomicOrdering};
|
2016-07-27 11:39:24 +02:00
|
|
|
use std::sync::{Condvar as SCondvar, Mutex as SMutex};
|
2016-01-10 23:37:09 +01:00
|
|
|
use util::*;
|
2016-08-05 10:32:04 +02:00
|
|
|
use io::*;
|
2016-01-11 13:42:32 +01:00
|
|
|
use verification::*;
|
|
|
|
use error::*;
|
2016-07-28 20:32:20 +02:00
|
|
|
use engines::Engine;
|
2016-01-14 19:03:48 +01:00
|
|
|
use views::*;
|
2016-01-17 23:07:58 +01:00
|
|
|
use header::*;
|
2016-01-21 23:33:52 +01:00
|
|
|
use service::*;
|
2016-02-02 12:12:32 +01:00
|
|
|
use client::BlockStatus;
|
2016-01-09 10:16:35 +01:00
|
|
|
|
2016-07-07 09:39:32 +02:00
|
|
|
pub use types::block_queue_info::BlockQueueInfo;
|
|
|
|
|
2016-03-01 00:02:48 +01:00
|
|
|
known_heap_size!(0, UnverifiedBlock, VerifyingBlock, PreverifiedBlock);
|
2016-02-25 14:09:39 +01:00
|
|
|
|
2016-02-25 17:14:45 +01:00
|
|
|
const MIN_MEM_LIMIT: usize = 16384;
|
|
|
|
const MIN_QUEUE_LIMIT: usize = 512;
|
|
|
|
|
2016-02-25 14:09:39 +01:00
|
|
|
/// Block queue configuration
|
2016-09-06 15:31:13 +02:00
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
2016-02-25 14:09:39 +01:00
|
|
|
pub struct BlockQueueConfig {
|
|
|
|
/// Maximum number of blocks to keep in unverified queue.
|
|
|
|
/// When the limit is reached, is_full returns true.
|
|
|
|
pub max_queue_size: usize,
|
|
|
|
/// Maximum heap memory to use.
|
|
|
|
/// When the limit is reached, is_full returns true.
|
|
|
|
pub max_mem_use: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for BlockQueueConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
BlockQueueConfig {
|
|
|
|
max_queue_size: 30000,
|
|
|
|
max_mem_use: 50 * 1024 * 1024,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 04:54:38 +01:00
|
|
|
|
2016-01-25 18:56:36 +01:00
|
|
|
impl BlockQueueInfo {
|
|
|
|
/// The total size of the queues.
|
2016-01-25 23:24:51 +01:00
|
|
|
pub fn total_queue_size(&self) -> usize { self.unverified_queue_size + self.verified_queue_size + self.verifying_queue_size }
|
|
|
|
|
|
|
|
/// The size of the unverified and verifying queues.
|
|
|
|
pub fn incomplete_queue_size(&self) -> usize { self.unverified_queue_size + self.verifying_queue_size }
|
2016-02-08 12:14:48 +01:00
|
|
|
|
|
|
|
/// Indicates that queue is full
|
|
|
|
pub fn is_full(&self) -> bool {
|
2016-02-25 14:09:39 +01:00
|
|
|
self.unverified_queue_size + self.verified_queue_size + self.verifying_queue_size > self.max_queue_size ||
|
|
|
|
self.mem_used > self.max_mem_use
|
2016-02-08 12:14:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Indicates that queue is empty
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.unverified_queue_size + self.verified_queue_size + self.verifying_queue_size == 0
|
|
|
|
}
|
2016-01-25 18:56:36 +01:00
|
|
|
}
|
|
|
|
|
2016-04-06 10:07:24 +02:00
|
|
|
/// A queue of blocks. Sits between network or other I/O and the `BlockChain`.
|
2016-01-10 23:37:09 +01:00
|
|
|
/// Sorts them ready for blockchain insertion.
|
2016-01-11 13:42:32 +01:00
|
|
|
pub struct BlockQueue {
|
2016-02-10 15:28:43 +01:00
|
|
|
panic_handler: Arc<PanicHandler>,
|
2016-08-05 17:00:46 +02:00
|
|
|
engine: Arc<Engine>,
|
2016-07-27 11:39:24 +02:00
|
|
|
more_to_verify: Arc<SCondvar>,
|
2016-02-21 19:46:29 +01:00
|
|
|
verification: Arc<Verification>,
|
2016-01-17 23:07:58 +01:00
|
|
|
verifiers: Vec<JoinHandle<()>>,
|
|
|
|
deleting: Arc<AtomicBool>,
|
|
|
|
ready_signal: Arc<QueueSignal>,
|
2016-07-27 11:39:24 +02:00
|
|
|
empty: Arc<SCondvar>,
|
2016-02-25 14:09:39 +01:00
|
|
|
processing: RwLock<HashSet<H256>>,
|
|
|
|
max_queue_size: usize,
|
|
|
|
max_mem_use: usize,
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
|
2016-03-01 00:02:48 +01:00
|
|
|
struct UnverifiedBlock {
|
2016-01-17 23:07:58 +01:00
|
|
|
header: Header,
|
|
|
|
bytes: Bytes,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct VerifyingBlock {
|
|
|
|
hash: H256,
|
2016-03-01 00:02:48 +01:00
|
|
|
block: Option<PreverifiedBlock>,
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct QueueSignal {
|
2016-04-07 00:20:03 +02:00
|
|
|
deleting: Arc<AtomicBool>,
|
2016-01-17 23:07:58 +01:00
|
|
|
signalled: AtomicBool,
|
2016-07-11 17:02:42 +02:00
|
|
|
message_channel: IoChannel<ClientIoMessage>,
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl QueueSignal {
|
2016-03-11 11:16:49 +01:00
|
|
|
#[cfg_attr(feature="dev", allow(bool_comparison))]
|
2016-01-17 23:07:58 +01:00
|
|
|
fn set(&self) {
|
2016-04-07 00:20:03 +02:00
|
|
|
// Do not signal when we are about to close
|
|
|
|
if self.deleting.load(AtomicOrdering::Relaxed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-17 23:07:58 +01:00
|
|
|
if self.signalled.compare_and_swap(false, true, AtomicOrdering::Relaxed) == false {
|
2016-07-11 17:02:42 +02:00
|
|
|
if let Err(e) = self.message_channel.send(ClientIoMessage::BlockVerified) {
|
2016-06-21 15:56:00 +02:00
|
|
|
debug!("Error sending BlockVerified message: {:?}", e);
|
|
|
|
}
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
}
|
2016-04-07 00:20:03 +02:00
|
|
|
|
2016-01-17 23:07:58 +01:00
|
|
|
fn reset(&self) {
|
|
|
|
self.signalled.store(false, AtomicOrdering::Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Verification {
|
2016-02-22 00:36:59 +01:00
|
|
|
// All locks must be captured in the order declared here.
|
2016-03-07 15:10:15 +01:00
|
|
|
unverified: Mutex<VecDeque<UnverifiedBlock>>,
|
|
|
|
verified: Mutex<VecDeque<PreverifiedBlock>>,
|
2016-02-21 19:46:29 +01:00
|
|
|
verifying: Mutex<VecDeque<VerifyingBlock>>,
|
|
|
|
bad: Mutex<HashSet<H256>>,
|
2016-07-27 11:39:24 +02:00
|
|
|
more_to_verify: SMutex<()>,
|
|
|
|
empty: SMutex<()>,
|
2016-01-11 13:42:32 +01:00
|
|
|
}
|
2016-01-09 10:16:35 +01:00
|
|
|
|
|
|
|
impl BlockQueue {
|
2016-01-10 23:37:09 +01:00
|
|
|
/// Creates a new queue instance.
|
2016-08-05 17:00:46 +02:00
|
|
|
pub fn new(config: BlockQueueConfig, engine: Arc<Engine>, message_channel: IoChannel<ClientIoMessage>) -> BlockQueue {
|
2016-02-21 19:46:29 +01:00
|
|
|
let verification = Arc::new(Verification {
|
|
|
|
unverified: Mutex::new(VecDeque::new()),
|
|
|
|
verified: Mutex::new(VecDeque::new()),
|
|
|
|
verifying: Mutex::new(VecDeque::new()),
|
|
|
|
bad: Mutex::new(HashSet::new()),
|
2016-07-27 11:39:24 +02:00
|
|
|
more_to_verify: SMutex::new(()),
|
|
|
|
empty: SMutex::new(()),
|
|
|
|
|
2016-02-21 19:46:29 +01:00
|
|
|
});
|
2016-07-27 11:39:24 +02:00
|
|
|
let more_to_verify = Arc::new(SCondvar::new());
|
2016-01-17 23:07:58 +01:00
|
|
|
let deleting = Arc::new(AtomicBool::new(false));
|
2016-04-07 00:20:03 +02:00
|
|
|
let ready_signal = Arc::new(QueueSignal {
|
|
|
|
deleting: deleting.clone(),
|
|
|
|
signalled: AtomicBool::new(false),
|
|
|
|
message_channel: message_channel
|
|
|
|
});
|
2016-07-27 11:39:24 +02:00
|
|
|
let empty = Arc::new(SCondvar::new());
|
2016-02-10 16:35:52 +01:00
|
|
|
let panic_handler = PanicHandler::new_in_arc();
|
2016-01-17 23:07:58 +01:00
|
|
|
|
|
|
|
let mut verifiers: Vec<JoinHandle<()>> = Vec::new();
|
2016-02-22 00:36:59 +01:00
|
|
|
let thread_count = max(::num_cpus::get(), 3) - 2;
|
2016-01-22 04:54:38 +01:00
|
|
|
for i in 0..thread_count {
|
2016-01-17 23:07:58 +01:00
|
|
|
let verification = verification.clone();
|
|
|
|
let engine = engine.clone();
|
|
|
|
let more_to_verify = more_to_verify.clone();
|
|
|
|
let ready_signal = ready_signal.clone();
|
2016-01-25 19:20:34 +01:00
|
|
|
let empty = empty.clone();
|
2016-01-17 23:07:58 +01:00
|
|
|
let deleting = deleting.clone();
|
2016-02-10 12:50:27 +01:00
|
|
|
let panic_handler = panic_handler.clone();
|
|
|
|
verifiers.push(
|
|
|
|
thread::Builder::new()
|
|
|
|
.name(format!("Verifier #{}", i))
|
|
|
|
.spawn(move || {
|
2016-02-10 14:49:31 +01:00
|
|
|
panic_handler.catch_panic(move || {
|
2016-02-21 19:46:29 +01:00
|
|
|
BlockQueue::verify(verification, engine, more_to_verify, ready_signal, deleting, empty)
|
2016-02-10 12:50:27 +01:00
|
|
|
}).unwrap()
|
|
|
|
})
|
|
|
|
.expect("Error starting block verification thread")
|
|
|
|
);
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
2016-01-11 13:42:32 +01:00
|
|
|
BlockQueue {
|
|
|
|
engine: engine,
|
2016-02-10 12:50:27 +01:00
|
|
|
panic_handler: panic_handler,
|
2016-01-17 23:07:58 +01:00
|
|
|
ready_signal: ready_signal.clone(),
|
|
|
|
more_to_verify: more_to_verify.clone(),
|
|
|
|
verification: verification.clone(),
|
|
|
|
verifiers: verifiers,
|
|
|
|
deleting: deleting.clone(),
|
2016-02-02 12:12:32 +01:00
|
|
|
processing: RwLock::new(HashSet::new()),
|
2016-01-25 19:20:34 +01:00
|
|
|
empty: empty.clone(),
|
2016-02-25 17:14:45 +01:00
|
|
|
max_queue_size: max(config.max_queue_size, MIN_QUEUE_LIMIT),
|
|
|
|
max_mem_use: max(config.max_mem_use, MIN_MEM_LIMIT),
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
fn verify(verification: Arc<Verification>, engine: Arc<Engine>, wait: Arc<SCondvar>, ready: Arc<QueueSignal>, deleting: Arc<AtomicBool>, empty: Arc<SCondvar>) {
|
2016-02-16 17:53:31 +01:00
|
|
|
while !deleting.load(AtomicOrdering::Acquire) {
|
2016-01-17 23:07:58 +01:00
|
|
|
{
|
2016-07-27 11:39:24 +02:00
|
|
|
let mut more_to_verify = verification.more_to_verify.lock().unwrap();
|
2016-01-25 19:20:34 +01:00
|
|
|
|
2016-07-27 11:39:24 +02:00
|
|
|
if verification.unverified.lock().is_empty() && verification.verifying.lock().is_empty() {
|
2016-01-25 19:20:34 +01:00
|
|
|
empty.notify_all();
|
|
|
|
}
|
|
|
|
|
2016-07-27 11:39:24 +02:00
|
|
|
while verification.unverified.lock().is_empty() && !deleting.load(AtomicOrdering::Acquire) {
|
|
|
|
more_to_verify = wait.wait(more_to_verify).unwrap();
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
2016-02-10 12:50:27 +01:00
|
|
|
|
2016-02-16 17:53:31 +01:00
|
|
|
if deleting.load(AtomicOrdering::Acquire) {
|
2016-01-17 23:07:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let block = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut unverified = verification.unverified.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
if unverified.is_empty() {
|
2016-01-17 23:07:58 +01:00
|
|
|
continue;
|
|
|
|
}
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut verifying = verification.verifying.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
let block = unverified.pop_front().unwrap();
|
|
|
|
verifying.push_back(VerifyingBlock{ hash: block.header.hash(), block: None });
|
2016-01-17 23:07:58 +01:00
|
|
|
block
|
|
|
|
};
|
|
|
|
|
|
|
|
let block_hash = block.header.hash();
|
2016-08-05 17:00:46 +02:00
|
|
|
match verify_block_unordered(block.header, block.bytes, &*engine) {
|
2016-01-17 23:07:58 +01:00
|
|
|
Ok(verified) => {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut verifying = verification.verifying.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
for e in verifying.iter_mut() {
|
2016-01-17 23:07:58 +01:00
|
|
|
if e.hash == block_hash {
|
|
|
|
e.block = Some(verified);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-02-21 19:46:29 +01:00
|
|
|
if !verifying.is_empty() && verifying.front().unwrap().hash == block_hash {
|
2016-01-17 23:07:58 +01:00
|
|
|
// we're next!
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut verified = verification.verified.lock();
|
|
|
|
let mut bad = verification.bad.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
BlockQueue::drain_verifying(&mut verifying, &mut verified, &mut bad);
|
2016-01-17 23:07:58 +01:00
|
|
|
ready.set();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(err) => {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut verifying = verification.verifying.lock();
|
|
|
|
let mut verified = verification.verified.lock();
|
|
|
|
let mut bad = verification.bad.lock();
|
2016-01-17 23:07:58 +01:00
|
|
|
warn!(target: "client", "Stage 2 block verification failed for {}\nError: {:?}", block_hash, err);
|
2016-02-21 19:46:29 +01:00
|
|
|
bad.insert(block_hash.clone());
|
|
|
|
verifying.retain(|e| e.hash != block_hash);
|
|
|
|
BlockQueue::drain_verifying(&mut verifying, &mut verified, &mut bad);
|
2016-01-17 23:07:58 +01:00
|
|
|
ready.set();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 00:02:48 +01:00
|
|
|
fn drain_verifying(verifying: &mut VecDeque<VerifyingBlock>, verified: &mut VecDeque<PreverifiedBlock>, bad: &mut HashSet<H256>) {
|
2016-01-17 23:07:58 +01:00
|
|
|
while !verifying.is_empty() && verifying.front().unwrap().block.is_some() {
|
|
|
|
let block = verifying.pop_front().unwrap().block.unwrap();
|
2016-08-29 11:35:24 +02:00
|
|
|
if bad.contains(block.header.parent_hash()) {
|
2016-01-17 23:07:58 +01:00
|
|
|
bad.insert(block.header.hash());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
verified.push_back(block);
|
|
|
|
}
|
2016-01-11 13:42:32 +01:00
|
|
|
}
|
2016-01-09 10:16:35 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 23:37:09 +01:00
|
|
|
/// Clear the queue and stop verification activity.
|
2016-02-21 19:46:29 +01:00
|
|
|
pub fn clear(&self) {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut unverified = self.verification.unverified.lock();
|
|
|
|
let mut verifying = self.verification.verifying.lock();
|
|
|
|
let mut verified = self.verification.verified.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
unverified.clear();
|
|
|
|
verifying.clear();
|
|
|
|
verified.clear();
|
2016-07-13 19:59:59 +02:00
|
|
|
self.processing.write().clear();
|
2016-01-09 10:16:35 +01:00
|
|
|
}
|
|
|
|
|
2016-02-21 19:46:29 +01:00
|
|
|
/// Wait for unverified queue to be empty
|
|
|
|
pub fn flush(&self) {
|
2016-07-27 11:39:24 +02:00
|
|
|
let mut lock = self.verification.empty.lock().unwrap();
|
|
|
|
while !self.verification.unverified.lock().is_empty() || !self.verification.verifying.lock().is_empty() {
|
|
|
|
lock = self.empty.wait(lock).unwrap();
|
2016-01-25 23:24:51 +01:00
|
|
|
}
|
2016-01-25 19:20:34 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 12:12:32 +01:00
|
|
|
/// Check if the block is currently in the queue
|
|
|
|
pub fn block_status(&self, hash: &H256) -> BlockStatus {
|
2016-07-26 20:31:25 +02:00
|
|
|
if self.processing.read().contains(hash) {
|
2016-02-02 12:12:32 +01:00
|
|
|
return BlockStatus::Queued;
|
|
|
|
}
|
2016-07-26 20:31:25 +02:00
|
|
|
if self.verification.bad.lock().contains(hash) {
|
2016-02-02 12:12:32 +01:00
|
|
|
return BlockStatus::Bad;
|
|
|
|
}
|
|
|
|
BlockStatus::Unknown
|
|
|
|
}
|
|
|
|
|
2016-01-10 23:37:09 +01:00
|
|
|
/// Add a block to the queue.
|
2016-02-21 19:46:29 +01:00
|
|
|
pub fn import_block(&self, bytes: Bytes) -> ImportResult {
|
2016-01-17 23:07:58 +01:00
|
|
|
let header = BlockView::new(&bytes).header();
|
2016-01-27 13:28:15 +01:00
|
|
|
let h = header.hash();
|
2016-01-17 23:07:58 +01:00
|
|
|
{
|
2016-07-13 19:59:59 +02:00
|
|
|
if self.processing.read().contains(&h) {
|
2016-05-31 16:59:01 +02:00
|
|
|
return Err(ImportError::AlreadyQueued.into());
|
2016-02-21 19:46:29 +01:00
|
|
|
}
|
2016-03-02 01:24:06 +01:00
|
|
|
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut bad = self.verification.bad.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
if bad.contains(&h) {
|
2016-05-31 16:59:01 +02:00
|
|
|
return Err(ImportError::KnownBad.into());
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
|
2016-08-29 11:35:24 +02:00
|
|
|
if bad.contains(header.parent_hash()) {
|
2016-02-21 19:46:29 +01:00
|
|
|
bad.insert(h.clone());
|
2016-05-31 16:59:01 +02:00
|
|
|
return Err(ImportError::KnownBad.into());
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
match verify_block_basic(&header, &bytes, &*self.engine) {
|
2016-01-17 23:07:58 +01:00
|
|
|
Ok(()) => {
|
2016-07-13 19:59:59 +02:00
|
|
|
self.processing.write().insert(h.clone());
|
|
|
|
self.verification.unverified.lock().push_back(UnverifiedBlock { header: header, bytes: bytes });
|
2016-01-17 23:07:58 +01:00
|
|
|
self.more_to_verify.notify_all();
|
2016-01-27 13:28:15 +01:00
|
|
|
Ok(h)
|
2016-01-17 23:07:58 +01:00
|
|
|
},
|
|
|
|
Err(err) => {
|
|
|
|
warn!(target: "client", "Stage 1 block verification failed for {}\nError: {:?}", BlockView::new(&bytes).header_view().sha3(), err);
|
2016-07-13 19:59:59 +02:00
|
|
|
self.verification.bad.lock().insert(h.clone());
|
2016-03-01 00:02:48 +01:00
|
|
|
Err(err)
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-09 10:16:35 +01:00
|
|
|
}
|
2016-01-15 12:26:04 +01:00
|
|
|
|
2016-01-17 23:07:58 +01:00
|
|
|
/// Mark given block and all its children as bad. Stops verification.
|
2016-02-29 18:11:59 +01:00
|
|
|
pub fn mark_as_bad(&self, block_hashes: &[H256]) {
|
2016-03-10 00:21:07 +01:00
|
|
|
if block_hashes.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut verified_lock = self.verification.verified.lock();
|
2016-08-05 17:00:46 +02:00
|
|
|
let mut verified = &mut *verified_lock;
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut bad = self.verification.bad.lock();
|
|
|
|
let mut processing = self.processing.write();
|
2016-02-29 18:11:59 +01:00
|
|
|
bad.reserve(block_hashes.len());
|
2016-02-26 19:56:32 +01:00
|
|
|
for hash in block_hashes {
|
2016-02-29 18:11:59 +01:00
|
|
|
bad.insert(hash.clone());
|
2016-07-26 20:31:25 +02:00
|
|
|
processing.remove(hash);
|
2016-02-24 17:01:29 +01:00
|
|
|
}
|
|
|
|
|
2016-01-17 23:07:58 +01:00
|
|
|
let mut new_verified = VecDeque::new();
|
2016-02-21 19:46:29 +01:00
|
|
|
for block in verified.drain(..) {
|
2016-08-29 11:35:24 +02:00
|
|
|
if bad.contains(block.header.parent_hash()) {
|
2016-02-21 19:46:29 +01:00
|
|
|
bad.insert(block.header.hash());
|
2016-02-24 17:01:29 +01:00
|
|
|
processing.remove(&block.header.hash());
|
|
|
|
} else {
|
2016-01-17 23:07:58 +01:00
|
|
|
new_verified.push_back(block);
|
|
|
|
}
|
|
|
|
}
|
2016-02-21 19:46:29 +01:00
|
|
|
*verified = new_verified;
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 12:12:32 +01:00
|
|
|
/// Mark given block as processed
|
2016-02-29 18:11:59 +01:00
|
|
|
pub fn mark_as_good(&self, block_hashes: &[H256]) {
|
2016-03-10 00:21:07 +01:00
|
|
|
if block_hashes.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut processing = self.processing.write();
|
2016-02-26 19:56:32 +01:00
|
|
|
for hash in block_hashes {
|
2016-07-26 20:31:25 +02:00
|
|
|
processing.remove(hash);
|
2016-02-02 12:12:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 04:54:38 +01:00
|
|
|
/// Removes up to `max` verified blocks from the queue
|
2016-03-07 15:10:15 +01:00
|
|
|
pub fn drain(&self, max: usize) -> Vec<PreverifiedBlock> {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut verified = self.verification.verified.lock();
|
2016-02-21 19:46:29 +01:00
|
|
|
let count = min(max, verified.len());
|
2016-01-17 23:07:58 +01:00
|
|
|
let mut result = Vec::with_capacity(count);
|
|
|
|
for _ in 0..count {
|
2016-02-21 19:46:29 +01:00
|
|
|
let block = verified.pop_front().unwrap();
|
2016-01-17 23:07:58 +01:00
|
|
|
result.push(block);
|
|
|
|
}
|
|
|
|
self.ready_signal.reset();
|
2016-02-21 19:46:29 +01:00
|
|
|
if !verified.is_empty() {
|
2016-01-22 04:54:38 +01:00
|
|
|
self.ready_signal.set();
|
|
|
|
}
|
2016-01-17 23:07:58 +01:00
|
|
|
result
|
|
|
|
}
|
2016-01-22 04:54:38 +01:00
|
|
|
|
|
|
|
/// Get queue status.
|
|
|
|
pub fn queue_info(&self) -> BlockQueueInfo {
|
2016-02-29 18:11:59 +01:00
|
|
|
let (unverified_len, unverified_bytes) = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let v = self.verification.unverified.lock();
|
2016-02-29 18:11:59 +01:00
|
|
|
(v.len(), v.heap_size_of_children())
|
|
|
|
};
|
|
|
|
let (verifying_len, verifying_bytes) = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let v = self.verification.verifying.lock();
|
2016-02-29 18:11:59 +01:00
|
|
|
(v.len(), v.heap_size_of_children())
|
|
|
|
};
|
|
|
|
let (verified_len, verified_bytes) = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let v = self.verification.verified.lock();
|
2016-02-29 18:11:59 +01:00
|
|
|
(v.len(), v.heap_size_of_children())
|
|
|
|
};
|
2016-01-22 04:54:38 +01:00
|
|
|
BlockQueueInfo {
|
2016-02-29 18:11:59 +01:00
|
|
|
unverified_queue_size: unverified_len,
|
|
|
|
verifying_queue_size: verifying_len,
|
|
|
|
verified_queue_size: verified_len,
|
2016-02-25 14:09:39 +01:00
|
|
|
max_queue_size: self.max_queue_size,
|
|
|
|
max_mem_use: self.max_mem_use,
|
|
|
|
mem_used:
|
2016-02-29 18:11:59 +01:00
|
|
|
unverified_bytes
|
|
|
|
+ verifying_bytes
|
|
|
|
+ verified_bytes
|
2016-02-25 14:09:39 +01:00
|
|
|
// TODO: https://github.com/servo/heapsize/pull/50
|
2016-07-13 19:59:59 +02:00
|
|
|
//+ self.processing.read().heap_size_of_children(),
|
2016-01-22 04:54:38 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-25 14:09:39 +01:00
|
|
|
|
2016-03-11 13:50:39 +01:00
|
|
|
/// Optimise memory footprint of the heap fields.
|
2016-03-09 11:38:53 +01:00
|
|
|
pub fn collect_garbage(&self) {
|
2016-02-25 14:09:39 +01:00
|
|
|
{
|
2016-07-13 19:59:59 +02:00
|
|
|
self.verification.unverified.lock().shrink_to_fit();
|
|
|
|
self.verification.verifying.lock().shrink_to_fit();
|
|
|
|
self.verification.verified.lock().shrink_to_fit();
|
2016-01-22 04:54:38 +01:00
|
|
|
}
|
2016-07-13 19:59:59 +02:00
|
|
|
self.processing.write().shrink_to_fit();
|
2016-01-22 04:54:38 +01:00
|
|
|
}
|
2016-01-17 23:07:58 +01:00
|
|
|
}
|
|
|
|
|
2016-02-10 15:28:43 +01:00
|
|
|
impl MayPanic for BlockQueue {
|
|
|
|
fn on_panic<F>(&self, closure: F) where F: OnPanicListener {
|
2016-02-10 12:50:27 +01:00
|
|
|
self.panic_handler.on_panic(closure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-17 23:07:58 +01:00
|
|
|
impl Drop for BlockQueue {
|
|
|
|
fn drop(&mut self) {
|
2016-04-06 23:45:19 +02:00
|
|
|
trace!(target: "shutdown", "[BlockQueue] Closing...");
|
2016-01-17 23:07:58 +01:00
|
|
|
self.clear();
|
2016-02-16 17:53:31 +01:00
|
|
|
self.deleting.store(true, AtomicOrdering::Release);
|
2016-01-17 23:07:58 +01:00
|
|
|
self.more_to_verify.notify_all();
|
|
|
|
for t in self.verifiers.drain(..) {
|
|
|
|
t.join().unwrap();
|
|
|
|
}
|
2016-04-06 23:45:19 +02:00
|
|
|
trace!(target: "shutdown", "[BlockQueue] Closed.");
|
2016-01-15 12:26:04 +01:00
|
|
|
}
|
2016-01-09 10:16:35 +01:00
|
|
|
}
|
|
|
|
|
2016-01-18 00:24:20 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use util::*;
|
2016-08-05 10:32:04 +02:00
|
|
|
use io::*;
|
2016-01-18 00:24:20 +01:00
|
|
|
use spec::*;
|
2016-01-22 05:20:47 +01:00
|
|
|
use block_queue::*;
|
2016-01-28 19:14:07 +01:00
|
|
|
use tests::helpers::*;
|
|
|
|
use error::*;
|
2016-02-02 21:06:21 +01:00
|
|
|
use views::*;
|
2016-01-28 19:14:07 +01:00
|
|
|
|
|
|
|
fn get_test_queue() -> BlockQueue {
|
|
|
|
let spec = get_test_spec();
|
2016-04-09 19:20:35 +02:00
|
|
|
let engine = spec.engine;
|
2016-08-05 17:00:46 +02:00
|
|
|
BlockQueue::new(BlockQueueConfig::default(), engine, IoChannel::disconnected())
|
2016-01-28 19:14:07 +01:00
|
|
|
}
|
2016-01-18 00:24:20 +01:00
|
|
|
|
|
|
|
#[test]
|
2016-01-28 19:14:07 +01:00
|
|
|
fn can_be_created() {
|
2016-01-18 00:24:20 +01:00
|
|
|
// TODO better test
|
|
|
|
let spec = Spec::new_test();
|
2016-04-09 19:20:35 +02:00
|
|
|
let engine = spec.engine;
|
2016-08-05 17:00:46 +02:00
|
|
|
let _ = BlockQueue::new(BlockQueueConfig::default(), engine, IoChannel::disconnected());
|
2016-01-18 00:24:20 +01:00
|
|
|
}
|
2016-01-28 19:14:07 +01:00
|
|
|
|
|
|
|
#[test]
|
2016-01-28 19:43:57 +01:00
|
|
|
fn can_import_blocks() {
|
2016-02-22 00:36:59 +01:00
|
|
|
let queue = get_test_queue();
|
2016-01-28 19:14:07 +01:00
|
|
|
if let Err(e) = queue.import_block(get_good_dummy_block()) {
|
|
|
|
panic!("error importing block that is valid by definition({:?})", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn returns_error_for_duplicates() {
|
2016-02-22 00:36:59 +01:00
|
|
|
let queue = get_test_queue();
|
2016-01-28 19:14:07 +01:00
|
|
|
if let Err(e) = queue.import_block(get_good_dummy_block()) {
|
|
|
|
panic!("error importing block that is valid by definition({:?})", e);
|
|
|
|
}
|
2016-01-28 19:43:57 +01:00
|
|
|
|
2016-01-28 19:14:07 +01:00
|
|
|
let duplicate_import = queue.import_block(get_good_dummy_block());
|
2016-01-28 19:43:57 +01:00
|
|
|
match duplicate_import {
|
|
|
|
Err(e) => {
|
|
|
|
match e {
|
2016-03-01 19:59:12 +01:00
|
|
|
Error::Import(ImportError::AlreadyQueued) => {},
|
2016-01-28 19:43:57 +01:00
|
|
|
_ => { panic!("must return AlreadyQueued error"); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(_) => { panic!("must produce error"); }
|
|
|
|
}
|
|
|
|
}
|
2016-01-28 19:14:07 +01:00
|
|
|
|
2016-01-28 19:43:57 +01:00
|
|
|
#[test]
|
2016-02-01 16:18:32 +01:00
|
|
|
fn returns_ok_for_drained_duplicates() {
|
2016-02-22 00:36:59 +01:00
|
|
|
let queue = get_test_queue();
|
2016-02-02 21:06:21 +01:00
|
|
|
let block = get_good_dummy_block();
|
|
|
|
let hash = BlockView::new(&block).header().hash().clone();
|
|
|
|
if let Err(e) = queue.import_block(block) {
|
2016-01-28 19:43:57 +01:00
|
|
|
panic!("error importing block that is valid by definition({:?})", e);
|
|
|
|
}
|
|
|
|
queue.flush();
|
2016-02-01 16:18:32 +01:00
|
|
|
queue.drain(10);
|
2016-02-02 21:06:21 +01:00
|
|
|
queue.mark_as_good(&[ hash ]);
|
2016-01-28 19:43:57 +01:00
|
|
|
|
2016-02-01 16:18:32 +01:00
|
|
|
if let Err(e) = queue.import_block(get_good_dummy_block()) {
|
|
|
|
panic!("error importing block that has already been drained ({:?})", e);
|
2016-01-28 19:14:07 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-06 23:15:53 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn returns_empty_once_finished() {
|
2016-02-22 00:36:59 +01:00
|
|
|
let queue = get_test_queue();
|
2016-02-06 23:15:53 +01:00
|
|
|
queue.import_block(get_good_dummy_block()).expect("error importing block that is valid by definition");
|
|
|
|
queue.flush();
|
|
|
|
queue.drain(1);
|
|
|
|
|
2016-02-08 12:35:51 +01:00
|
|
|
assert!(queue.queue_info().is_empty());
|
2016-02-06 23:15:53 +01:00
|
|
|
}
|
2016-02-25 17:14:45 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_mem_limit() {
|
|
|
|
let spec = get_test_spec();
|
2016-04-09 19:20:35 +02:00
|
|
|
let engine = spec.engine;
|
2016-02-25 17:14:45 +01:00
|
|
|
let mut config = BlockQueueConfig::default();
|
|
|
|
config.max_mem_use = super::MIN_MEM_LIMIT; // empty queue uses about 15000
|
2016-08-05 17:00:46 +02:00
|
|
|
let queue = BlockQueue::new(config, engine, IoChannel::disconnected());
|
2016-02-25 17:14:45 +01:00
|
|
|
assert!(!queue.queue_info().is_full());
|
|
|
|
let mut blocks = get_good_dummy_block_seq(50);
|
|
|
|
for b in blocks.drain(..) {
|
|
|
|
queue.import_block(b).unwrap();
|
|
|
|
}
|
|
|
|
assert!(queue.queue_info().is_full());
|
|
|
|
}
|
2016-01-18 00:24:20 +01:00
|
|
|
}
|