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
use crate::{protocols::ReturnableConnection, Connection, Pea2Pea};
use tokio::{sync::mpsc, task, time::timeout};
use tracing::*;
use std::{io, time::Duration};
#[async_trait::async_trait]
pub trait Handshake: Pea2Pea
where
Self: Clone + Send + Sync + 'static,
{
fn enable_handshake(&self) {
let (from_node_sender, mut from_node_receiver) = mpsc::channel::<ReturnableConnection>(
self.node().config().protocol_handler_queue_depth,
);
let self_clone = self.clone();
let handshake_task = tokio::spawn(async move {
trace!(parent: self_clone.node().span(), "spawned the Handshake handler task");
while let Some((conn, result_sender)) = from_node_receiver.recv().await {
let addr = conn.addr;
let node = self_clone.clone();
task::spawn(async move {
debug!(parent: node.node().span(), "handshake with {} as the {:?}", addr, !conn.side);
let result = timeout(
Duration::from_millis(node.node().config().max_handshake_time_ms),
node.perform_handshake(conn),
)
.await;
let ret = match result {
Ok(Ok(conn)) => {
debug!(parent: node.node().span(), "succeessfully handshaken with {}", addr);
Ok(conn)
}
Ok(Err(e)) => {
error!(parent: node.node().span(), "handshake with {} failed: {}", addr, e);
Err(e)
}
Err(_) => {
error!(parent: node.node().span(), "handshake with {} timed out", addr);
Err(io::ErrorKind::TimedOut.into())
}
};
if result_sender.send(ret).is_err() {
unreachable!("could't return a Connection to the Node");
}
});
}
});
self.node().tasks.lock().push(handshake_task);
let hdl = HandshakeHandler(from_node_sender);
if self.node().protocols.handshake_handler.set(hdl).is_err() {
panic!("the Handshake protocol was enabled more than once!");
}
}
async fn perform_handshake(&self, conn: Connection) -> io::Result<Connection>;
}
pub struct HandshakeHandler(mpsc::Sender<ReturnableConnection>);
impl HandshakeHandler {
pub(crate) async fn trigger(&self, item: ReturnableConnection) {
if self.0.send(item).await.is_err() {
unreachable!();
}
}
}