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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
use std::{
collections::HashMap,
io,
net::SocketAddr,
str,
time::{Duration, Instant},
};
use connection::{Connection, EncryptedConnection, Packet, MAX_PAYLOAD_SIZE};
use ethereum_types::H256;
use handshake::Handshake;
use host::*;
use io::{IoContext, StreamToken};
use mio::{
deprecated::{EventLoop, Handler},
tcp::*,
*,
};
use network::{
client_version::ClientVersion, DisconnectReason, Error, ErrorKind, PeerCapabilityInfo,
ProtocolId, SessionCapabilityInfo, SessionInfo,
};
use node_table::NodeId;
use rlp::{Rlp, RlpStream, EMPTY_LIST_RLP};
use snappy;
const PING_TIMEOUT: Duration = Duration::from_secs(60);
const PING_INTERVAL: Duration = Duration::from_secs(120);
const MIN_PROTOCOL_VERSION: u32 = 4;
const MIN_COMPRESSION_PROTOCOL_VERSION: u32 = 5;
#[derive(Debug, Clone)]
enum ProtocolState {
Pending(Vec<(Vec<u8>, u8)>),
Connected,
}
pub struct Session {
pub info: SessionInfo,
had_hello: bool,
expired: bool,
ping_time: Instant,
pong_time: Option<Instant>,
state: State,
protocol_states: HashMap<ProtocolId, ProtocolState>,
compression: bool,
}
enum State {
Handshake(Handshake),
Session(EncryptedConnection),
}
pub enum SessionData {
None,
Ready,
Packet {
data: Vec<u8>,
protocol: ProtocolId,
packet_id: u8,
},
Continue,
}
const PACKET_HELLO: u8 = 0x80;
const PACKET_DISCONNECT: u8 = 0x01;
const PACKET_PING: u8 = 0x02;
const PACKET_PONG: u8 = 0x03;
const PACKET_GET_PEERS: u8 = 0x04;
const PACKET_PEERS: u8 = 0x05;
const PACKET_USER: u8 = 0x10;
const PACKET_LAST: u8 = 0x7f;
impl Session {
pub fn new<Message>(
io: &IoContext<Message>,
socket: TcpStream,
token: StreamToken,
id: Option<&NodeId>,
nonce: &H256,
host: &HostInfo,
) -> Result<Session, Error>
where
Message: Send + Clone + Sync + 'static,
{
let originated = id.is_some();
let mut handshake =
Handshake::new(token, id, socket, nonce).expect("Can't create handshake");
let local_addr = handshake.connection.local_addr_str();
handshake.start(io, host, originated)?;
Ok(Session {
state: State::Handshake(handshake),
had_hello: false,
info: SessionInfo {
id: id.cloned(),
client_version: ClientVersion::from(""),
protocol_version: 0,
capabilities: Vec::new(),
peer_capabilities: Vec::new(),
ping: None,
originated,
remote_address: "Handshake".to_owned(),
local_address: local_addr,
},
ping_time: Instant::now(),
pong_time: None,
expired: false,
protocol_states: HashMap::new(),
compression: false,
})
}
fn complete_handshake<Message>(
&mut self,
io: &IoContext<Message>,
host: &HostInfo,
) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
let connection = if let State::Handshake(ref mut h) = self.state {
self.info.id = Some(h.id);
self.info.remote_address = h.connection.remote_addr_str();
EncryptedConnection::new(h)?
} else {
panic!("Unexpected state");
};
self.state = State::Session(connection);
self.write_hello(io, host)?;
Ok(())
}
fn connection(&self) -> &Connection {
match self.state {
State::Handshake(ref h) => &h.connection,
State::Session(ref s) => &s.connection,
}
}
pub fn id(&self) -> Option<&NodeId> {
self.info.id.as_ref()
}
pub fn is_ready(&self) -> bool {
self.had_hello
}
pub fn set_expired(&mut self) {
self.expired = true;
}
pub fn expired(&self) -> bool {
self.expired
}
pub fn done(&self) -> bool {
self.expired() && !self.connection().is_sending()
}
pub fn remote_addr(&self) -> io::Result<SocketAddr> {
self.connection().remote_addr()
}
pub fn readable<Message>(
&mut self,
io: &IoContext<Message>,
host: &HostInfo,
) -> Result<SessionData, Error>
where
Message: Send + Sync + Clone,
{
if self.expired() {
return Ok(SessionData::None);
}
let mut create_session = false;
let mut packet_data = None;
match self.state {
State::Handshake(ref mut h) => {
h.readable(io, host)?;
if h.done() {
create_session = true;
}
}
State::Session(ref mut c) => match c.readable(io)? {
data @ Some(_) => packet_data = data,
None => return Ok(SessionData::None),
},
}
if let Some(data) = packet_data {
return Ok(self.read_packet(io, &data, host)?);
}
if create_session {
self.complete_handshake(io, host)?;
io.update_registration(self.token())
.unwrap_or_else(|e| debug!(target: "network", "Token registration error: {:?}", e));
}
Ok(SessionData::None)
}
pub fn writable<Message>(
&mut self,
io: &IoContext<Message>,
_host: &HostInfo,
) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
match self.state {
State::Handshake(ref mut h) => h.writable(io),
State::Session(ref mut s) => s.writable(io),
}
}
pub fn have_capability(&self, protocol: ProtocolId) -> bool {
self.info
.capabilities
.iter()
.any(|c| c.protocol == protocol)
}
pub fn capability_version(&self, protocol: ProtocolId) -> Option<u8> {
self.info
.capabilities
.iter()
.filter_map(|c| {
if c.protocol == protocol {
Some(c.version)
} else {
None
}
})
.max()
}
pub fn register_socket<Host: Handler<Timeout = Token>>(
&self,
reg: Token,
event_loop: &mut EventLoop<Host>,
) -> Result<(), Error> {
if self.expired() {
return Ok(());
}
self.connection().register_socket(reg, event_loop)?;
Ok(())
}
pub fn update_socket<Host: Handler>(
&self,
reg: Token,
event_loop: &mut EventLoop<Host>,
) -> Result<(), Error> {
self.connection().update_socket(reg, event_loop)?;
Ok(())
}
pub fn deregister_socket<Host: Handler>(
&self,
event_loop: &mut EventLoop<Host>,
) -> Result<(), Error> {
self.connection().deregister_socket(event_loop)?;
Ok(())
}
pub fn send_packet<Message>(
&mut self,
io: &IoContext<Message>,
protocol: Option<ProtocolId>,
packet_id: u8,
data: &[u8],
) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
if protocol.is_some() && (self.info.capabilities.is_empty() || !self.had_hello) {
debug!(target: "network", "Sending to unconfirmed session {}, protocol: {:?}, packet: {}", self.token(), protocol.map(|p| str::from_utf8(&p.as_u64().to_ne_bytes()).unwrap_or("??").to_string()), packet_id);
bail!(ErrorKind::BadProtocol);
}
if self.expired() {
return Err(ErrorKind::Expired.into());
}
let mut i = 0usize;
let pid = match protocol {
Some(protocol) => {
while protocol != self.info.capabilities[i].protocol {
i += 1;
if i == self.info.capabilities.len() {
debug!(target: "network", "Unknown protocol: {:?}", protocol);
return Ok(());
}
}
self.info.capabilities[i].id_offset + packet_id
}
None => packet_id,
};
let mut rlp = RlpStream::new();
rlp.append(&(u32::from(pid)));
let mut compressed = Vec::new();
let mut payload = data;
if self.compression {
if payload.len() > MAX_PAYLOAD_SIZE {
bail!(ErrorKind::OversizedPacket);
}
let len = snappy::compress_into(&payload, &mut compressed);
trace!(target: "network", "compressed {} to {}", payload.len(), len);
payload = &compressed[0..len];
}
rlp.append_raw(payload, 1);
self.send(io, &rlp.drain())
}
pub fn keep_alive<Message>(&mut self, io: &IoContext<Message>) -> bool
where
Message: Send + Sync + Clone,
{
if let State::Handshake(_) = self.state {
return true;
}
let timed_out = if let Some(pong) = self.pong_time {
pong.duration_since(self.ping_time) > PING_TIMEOUT
} else {
self.ping_time.elapsed() > PING_TIMEOUT
};
if !timed_out && self.ping_time.elapsed() > PING_INTERVAL {
if let Err(e) = self.send_ping(io) {
debug!("Error sending ping message: {:?}", e);
}
}
!timed_out
}
pub fn token(&self) -> StreamToken {
self.connection().token()
}
pub fn mark_connected(&mut self, protocol: ProtocolId) -> Vec<(ProtocolId, u8, Vec<u8>)> {
match self
.protocol_states
.insert(protocol, ProtocolState::Connected)
{
None => Vec::new(),
Some(ProtocolState::Connected) => {
debug!(target: "network", "Protocol {:?} marked as connected more than once", protocol);
Vec::new()
}
Some(ProtocolState::Pending(pending)) => pending
.into_iter()
.map(|(data, id)| (protocol, id, data))
.collect(),
}
}
fn read_packet<Message>(
&mut self,
io: &IoContext<Message>,
packet: &Packet,
host: &HostInfo,
) -> Result<SessionData, Error>
where
Message: Send + Sync + Clone,
{
if packet.data.len() < 2 {
return Err(ErrorKind::BadProtocol.into());
}
let packet_id = packet.data[0];
if packet_id != PACKET_HELLO && packet_id != PACKET_DISCONNECT && !self.had_hello {
return Err(ErrorKind::BadProtocol.into());
}
let data = if self.compression {
let compressed = &packet.data[1..];
if snappy::decompressed_len(&compressed)? > MAX_PAYLOAD_SIZE {
bail!(ErrorKind::OversizedPacket);
}
snappy::decompress(&compressed)?
} else {
packet.data[1..].to_owned()
};
match packet_id {
PACKET_HELLO => {
let rlp = Rlp::new(&data);
self.read_hello(io, &rlp, host)?;
Ok(SessionData::Ready)
}
PACKET_DISCONNECT => {
let rlp = Rlp::new(&data);
let reason: u8 = rlp.val_at(0)?;
if self.had_hello {
debug!(target:"network", "Disconnected: {}: {:?}", self.token(), DisconnectReason::from_u8(reason));
}
Err(ErrorKind::Disconnect(DisconnectReason::from_u8(reason)).into())
}
PACKET_PING => {
self.send_pong(io)?;
Ok(SessionData::Continue)
}
PACKET_PONG => {
let time = Instant::now();
self.pong_time = Some(time);
self.info.ping = Some(time.duration_since(self.ping_time));
Ok(SessionData::Continue)
}
PACKET_GET_PEERS => Ok(SessionData::None),
PACKET_PEERS => Ok(SessionData::None),
PACKET_USER..=PACKET_LAST => {
let mut i = 0usize;
while packet_id
>= self.info.capabilities[i].id_offset + self.info.capabilities[i].packet_count
{
i += 1;
if i == self.info.capabilities.len() {
debug!(target: "network", "Unknown packet: {:?}", packet_id);
return Ok(SessionData::Continue);
}
}
let protocol = self.info.capabilities[i].protocol;
let protocol_packet_id = packet_id - self.info.capabilities[i].id_offset;
match *self
.protocol_states
.entry(protocol)
.or_insert_with(|| ProtocolState::Pending(Vec::new()))
{
ProtocolState::Connected => {
trace!(target: "network", "Packet {} mapped to {:?}:{}, i={}, capabilities={:?}", packet_id, protocol, protocol_packet_id, i, self.info.capabilities);
Ok(SessionData::Packet {
data,
protocol,
packet_id: protocol_packet_id,
})
}
ProtocolState::Pending(ref mut pending) => {
trace!(target: "network", "Packet {} deferred until protocol connection event completion", packet_id);
pending.push((data, protocol_packet_id));
Ok(SessionData::Continue)
}
}
}
_ => {
debug!(target: "network", "Unknown packet: {:?}", packet_id);
Ok(SessionData::Continue)
}
}
}
fn write_hello<Message>(
&mut self,
io: &IoContext<Message>,
host: &HostInfo,
) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
let mut rlp = RlpStream::new();
rlp.append_raw(&[PACKET_HELLO as u8], 0);
rlp.begin_list(5)
.append(&host.protocol_version)
.append(&host.client_version())
.append_list(&host.capabilities)
.append(&host.local_endpoint.address.port())
.append(host.id());
self.send(io, &rlp.drain())
}
fn read_hello<Message>(
&mut self,
io: &IoContext<Message>,
rlp: &Rlp,
host: &HostInfo,
) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
let protocol = rlp.val_at::<u32>(0)?;
let client_version_string = rlp.val_at::<String>(1)?;
let client_version = ClientVersion::from(client_version_string);
let peer_caps: Vec<PeerCapabilityInfo> = rlp.list_at(2)?;
let id = rlp.val_at::<NodeId>(4)?;
let mut caps: Vec<SessionCapabilityInfo> = Vec::new();
for hc in &host.capabilities {
if peer_caps
.iter()
.any(|c| c.protocol == hc.protocol && c.version == hc.version)
{
caps.push(SessionCapabilityInfo {
protocol: hc.protocol,
version: hc.version,
id_offset: 0,
packet_count: hc.packet_count,
});
}
}
caps.retain(|c| {
host.capabilities
.iter()
.any(|hc| hc.protocol == c.protocol && hc.version == c.version)
});
let mut i = 0;
while i < caps.len() {
if caps
.iter()
.any(|c| c.protocol == caps[i].protocol && c.version > caps[i].version)
{
caps.remove(i);
} else {
i += 1;
}
}
caps.sort();
i = 0;
let mut offset: u8 = PACKET_USER;
while i < caps.len() {
caps[i].id_offset = offset;
offset += caps[i].packet_count;
i += 1;
}
debug!(target: "network", "Hello: {} v{} {} {:?}", client_version, protocol, id, caps);
let protocol = ::std::cmp::min(protocol, host.protocol_version);
self.info.protocol_version = protocol;
self.info.client_version = client_version;
self.info.capabilities = caps;
self.info.peer_capabilities = peer_caps;
if self.info.capabilities.is_empty() {
trace!(target: "network", "No common capabilities with peer.");
return Err(self.disconnect(io, DisconnectReason::UselessPeer));
}
if protocol < MIN_PROTOCOL_VERSION {
trace!(target: "network", "Peer protocol version mismatch: {}", protocol);
return Err(self.disconnect(io, DisconnectReason::UselessPeer));
}
self.compression = protocol >= MIN_COMPRESSION_PROTOCOL_VERSION;
self.send_ping(io)?;
self.had_hello = true;
Ok(())
}
pub fn send_ping<Message>(&mut self, io: &IoContext<Message>) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
self.send_packet(io, None, PACKET_PING, &EMPTY_LIST_RLP)?;
self.ping_time = Instant::now();
self.pong_time = None;
Ok(())
}
fn send_pong<Message>(&mut self, io: &IoContext<Message>) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
self.send_packet(io, None, PACKET_PONG, &EMPTY_LIST_RLP)
}
pub fn disconnect<Message>(
&mut self,
io: &IoContext<Message>,
reason: DisconnectReason,
) -> Error
where
Message: Send + Sync + Clone,
{
if let State::Session(_) = self.state {
let mut rlp = RlpStream::new();
rlp.begin_list(1);
rlp.append(&(reason as u32));
self.send_packet(io, None, PACKET_DISCONNECT, &rlp.drain())
.ok();
}
ErrorKind::Disconnect(reason).into()
}
fn send<Message>(&mut self, io: &IoContext<Message>, data: &[u8]) -> Result<(), Error>
where
Message: Send + Sync + Clone,
{
match self.state {
State::Handshake(_) => {
warn!(target:"network", "Unexpected send request");
}
State::Session(ref mut s) => s.send_packet(io, data)?,
}
Ok(())
}
}