2018-01-30 17:42:04 +03:00
|
|
|
// Copyright 2018 The Grin Developers
|
2016-10-25 07:35:10 +03:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2017-10-26 20:48:51 +03:00
|
|
|
use std::sync::Arc;
|
2017-11-21 17:24:29 +03:00
|
|
|
use std::net::SocketAddr;
|
2016-10-29 22:36:45 +03:00
|
|
|
|
2016-11-01 20:42:33 +03:00
|
|
|
use core::core;
|
2018-01-30 17:42:04 +03:00
|
|
|
use core::core::hash::{Hash, Hashed};
|
2016-10-25 07:35:10 +03:00
|
|
|
use core::ser;
|
2018-02-02 05:03:12 +03:00
|
|
|
use conn::*;
|
2016-10-26 08:06:13 +03:00
|
|
|
use msg::*;
|
2018-02-02 05:03:12 +03:00
|
|
|
use rand;
|
|
|
|
use rand::Rng;
|
2016-10-26 08:06:13 +03:00
|
|
|
use types::*;
|
2017-10-12 19:56:44 +03:00
|
|
|
use util::LOGGER;
|
2016-10-25 07:35:10 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
pub struct Protocol {
|
|
|
|
adapter: Arc<NetAdapter>,
|
|
|
|
addr: SocketAddr,
|
2016-10-31 22:29:08 +03:00
|
|
|
}
|
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
impl Protocol {
|
|
|
|
pub fn new(adapter: Arc<NetAdapter>, addr: SocketAddr) -> Protocol {
|
|
|
|
Protocol{adapter, addr}
|
2017-02-02 06:05:17 +03:00
|
|
|
}
|
2016-10-25 07:35:10 +03:00
|
|
|
}
|
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
impl MessageHandler for Protocol {
|
|
|
|
fn consume(&self, msg: &mut Message) -> Result<Option<(Vec<u8>, Type)>, Error> {
|
|
|
|
let adapter = &self.adapter;
|
2018-01-30 17:42:04 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
match msg.header.msg_type {
|
2016-12-12 00:04:52 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::Ping => {
|
|
|
|
let ping: Ping = msg.body()?;
|
|
|
|
adapter.peer_difficulty(self.addr, ping.total_difficulty, ping.height);
|
2017-02-08 00:52:17 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
let pong_bytes = ser::ser_vec(
|
|
|
|
&Pong {
|
|
|
|
total_difficulty: adapter.total_difficulty(),
|
|
|
|
height: adapter.total_height(),
|
|
|
|
}).unwrap();
|
2017-02-19 05:42:34 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Ok(Some((pong_bytes, Type::Pong)))
|
|
|
|
}
|
2018-01-31 23:39:55 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::Pong => {
|
|
|
|
let pong: Pong = msg.body()?;
|
|
|
|
adapter.peer_difficulty(self.addr, pong.total_difficulty, pong.height);
|
|
|
|
Ok(None)
|
2017-11-01 02:32:33 +03:00
|
|
|
},
|
2017-12-14 15:19:43 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::Transaction => {
|
|
|
|
let tx: core::Transaction = msg.body()?;
|
|
|
|
adapter.transaction_received(tx);
|
|
|
|
Ok(None)
|
2017-12-14 15:19:43 +03:00
|
|
|
}
|
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::GetBlock => {
|
|
|
|
let h: Hash = msg.body()?;
|
|
|
|
debug!(LOGGER, "handle_payload: GetBlock {}", h);
|
2018-01-30 17:42:04 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
let bo = adapter.get_block(h);
|
|
|
|
if let Some(b) = bo {
|
|
|
|
let block_bytes = ser::ser_vec(&b).unwrap();
|
|
|
|
return Ok(Some((block_bytes, Type::Block)));
|
2017-12-14 15:19:43 +03:00
|
|
|
}
|
2018-02-02 05:03:12 +03:00
|
|
|
Ok(None)
|
2017-02-08 00:52:17 +03:00
|
|
|
}
|
2018-01-31 23:39:55 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::Block => {
|
|
|
|
let b: core::Block = msg.body()?;
|
|
|
|
let bh = b.hash();
|
2018-01-31 23:39:55 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
debug!(LOGGER, "handle_payload: Block {}", bh);
|
2018-01-31 23:39:55 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
adapter.block_received(b, self.addr);
|
|
|
|
Ok(None)
|
|
|
|
}
|
2018-02-07 19:26:52 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
|
|
|
|
Type::GetCompactBlock => {
|
|
|
|
let h: Hash = msg.body()?;
|
|
|
|
debug!(LOGGER, "handle_payload: GetCompactBlock: {}", h);
|
|
|
|
|
|
|
|
if let Some(b) = adapter.get_block(h) {
|
|
|
|
let cb = b.as_compact_block();
|
|
|
|
|
|
|
|
// serialize and send the block over in compact representation
|
|
|
|
|
|
|
|
// if we have txs in the block send a compact block
|
|
|
|
// but if block is empty -
|
|
|
|
// to allow us to test all code paths, randomly choose to send
|
|
|
|
// either the block or the compact block
|
|
|
|
let mut rng = rand::thread_rng();
|
|
|
|
|
|
|
|
if cb.kern_ids.is_empty() && rng.gen() {
|
|
|
|
debug!(
|
|
|
|
LOGGER,
|
|
|
|
"handle_payload: GetCompactBlock: empty block, sending full block",
|
|
|
|
);
|
|
|
|
|
|
|
|
let block_bytes = ser::ser_vec(&b).unwrap();
|
|
|
|
Ok(Some((block_bytes, Type::Block)))
|
|
|
|
} else {
|
|
|
|
let compact_block_bytes = ser::ser_vec(&cb).unwrap();
|
|
|
|
Ok(Some((compact_block_bytes, Type::CompactBlock)))
|
|
|
|
}
|
2018-01-31 23:39:55 +03:00
|
|
|
} else {
|
2018-02-02 05:03:12 +03:00
|
|
|
Ok(None)
|
2018-01-31 23:39:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::CompactBlock => {
|
|
|
|
let b: core::CompactBlock = msg.body()?;
|
|
|
|
let bh = b.hash();
|
|
|
|
debug!(LOGGER, "handle_payload: CompactBlock: {}", bh);
|
2017-02-08 00:52:17 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
adapter.compact_block_received(b, self.addr);
|
|
|
|
Ok(None)
|
2017-12-14 15:19:43 +03:00
|
|
|
}
|
2017-02-08 00:52:17 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::GetHeaders => {
|
|
|
|
// load headers from the locator
|
|
|
|
let loc: Locator = msg.body()?;
|
|
|
|
let headers = adapter.locate_headers(loc.hashes);
|
2018-01-30 17:42:04 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
// serialize and send all the headers over
|
|
|
|
let header_bytes = ser::ser_vec(&Headers { headers: headers }).unwrap();
|
|
|
|
return Ok(Some((header_bytes, Type::Headers)));
|
|
|
|
}
|
2018-01-30 17:42:04 +03:00
|
|
|
|
2018-02-07 19:26:52 +03:00
|
|
|
// "header first" block propagation - if we have not yet seen this block
|
|
|
|
// we can go request it from some of our peers
|
|
|
|
Type::Header => {
|
|
|
|
let header: core::BlockHeader = msg.body()?;
|
|
|
|
|
|
|
|
adapter.header_received(header, self.addr);
|
|
|
|
|
|
|
|
// we do not return a hash here as we never request a single header
|
|
|
|
// a header will always arrive unsolicited
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::Headers => {
|
|
|
|
let headers: Headers = msg.body()?;
|
|
|
|
adapter.headers_received(headers.headers, self.addr);
|
|
|
|
Ok(None)
|
|
|
|
}
|
2018-01-30 17:42:04 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::GetPeerAddrs => {
|
|
|
|
let get_peers: GetPeerAddrs = msg.body()?;
|
|
|
|
let peer_addrs = adapter.find_peer_addrs(get_peers.capabilities);
|
|
|
|
let peer_addrs_bytes = ser::ser_vec(
|
|
|
|
&PeerAddrs {
|
|
|
|
peers: peer_addrs.iter().map(|sa| SockAddr(*sa)).collect(),
|
|
|
|
}).unwrap();
|
|
|
|
return Ok(Some((peer_addrs_bytes, Type::PeerAddrs)));
|
|
|
|
}
|
2017-02-19 05:42:34 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
Type::PeerAddrs => {
|
|
|
|
let peer_addrs: PeerAddrs = msg.body()?;
|
|
|
|
adapter.peer_addrs_received(peer_addrs.peers.iter().map(|pa| pa.0).collect());
|
|
|
|
Ok(None)
|
2017-12-14 15:19:43 +03:00
|
|
|
}
|
2017-02-19 05:42:34 +03:00
|
|
|
|
2018-02-02 05:03:12 +03:00
|
|
|
_ => {
|
|
|
|
debug!(LOGGER, "unknown message type {:?}", msg.header.msg_type);
|
|
|
|
Ok(None)
|
|
|
|
}
|
2017-02-02 06:05:17 +03:00
|
|
|
}
|
|
|
|
}
|
2016-12-16 01:57:04 +03:00
|
|
|
}
|