-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtimeout.rs
121 lines (107 loc) · 3.83 KB
/
timeout.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//
// Copyright 2018-2019 Tamas Blummer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//!
//! # Keep track of peer timeouts
//!
use crate::p2p::{P2PControl, P2PControlSender, PeerId};
use log::debug;
use std::{
cmp::min,
collections::HashMap,
sync::{Arc, Mutex},
time::{SystemTime, UNIX_EPOCH}
};
use std::hash::Hash;
pub type SharedTimeout<Message, Reply> = Arc<Mutex<Timeout<Message, Reply>>>;
const TIMEOUT:u64 = 60;
const TIMEOUT:u34 = 30;
#[derive(Eq, PartialEq, Hash, Debug)]
pub enum ExpectedReply {
Block,
Headers,
Pong,
FilterHeader,
FilterCheckpoints,
Filter
}
pub struct Timeout<Message: Send + Sync + Clone, Reply : Eq + Hash + std::fmt::Debug> {
timeouts: HashMap<PeerId, u64>,
expected: HashMap<PeerId, HashMap<Reply, usize>>,
p2p: P2PControlSender<Message>
}
impl<Message: Send + Sync + Clone, Reply: Eq + Hash + std::fmt::Debug> Timeout<Message, Reply> {
pub fn new (p2p: P2PControlSender<Message>) -> Timeout<Message, Reply> {
Timeout{p2p, timeouts: HashMap::new(), expected: HashMap::new()}
}
pub fn forget (&mut self, peer: PeerId) {
self.timeouts.remove(&peer);
self.expected.remove(&peer);
}
pub fn expect (&mut self, peer: PeerId, n: usize, what: Reply) {
self.timeouts.insert(peer, Self::now() + TIMEOUT);
*self.expected.entry(peer).or_insert(HashMap::new()).entry(what).or_insert(0) += n;
}
pub fn received (&mut self, peer: PeerId, n: usize, what: Reply) {
if let Some(expected) = self.expected.get(&peer) {
if let Some(m) = expected.get(&what) {
if *m > 0 {
self.timeouts.insert(peer, Self::now() + TIMEOUT);
}
}
}
{
let expected = self.expected.entry(peer).or_insert(HashMap::new()).entry(what).or_insert(n);
*expected -= min(n, *expected);
}
if let Some(expected) = self.expected.get(&peer) {
if expected.values().all(|v| *v == 0) {
self.timeouts.remove(&peer);
}
}
}
pub fn is_busy (&self, peer: PeerId) -> bool {
self.timeouts.contains_key(&peer)
}
pub fn is_busy_with (&self, peer: PeerId, what: Reply) -> bool {
if self.timeouts.contains_key(&peer) {
if let Some(expected) = self.expected.get(&peer) {
if let Some(n) = expected.get(&what) {
return *n > 0;
}
}
}
false
}
pub fn check (&mut self, expected: Vec<Reply>) {
let mut banned = Vec::new();
for (peer, timeout) in &self.timeouts {
if *timeout < Self::now () {
if expected.iter().any(|expected| if let Some(e) = self.expected.get(peer) { if let Some(n) = e.get(expected) { *n>0 } else { false } } else { false }) {
debug!("too slow answering {:?} requests {:?}, disconnecting peer={}", expected, self.expected.get(peer), *peer);
self.p2p.send(P2PControl::Disconnect(*peer));
banned.push(*peer);
}
}
}
for peer in &banned {
self.timeouts.remove(peer);
self.expected.remove(peer);
}
}
fn now() -> u64 {
SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs()
}
}