// Copyright 2016 The Grin Developers // // 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. //! Grin server implementation, accepts incoming connections and connects to //! other peers in the network. use rand::{self, Rng}; use std::cell::RefCell; use std::io; use std::net::{SocketAddr, ToSocketAddrs}; use std::ops::Deref; use std::str::FromStr; use std::sync::{Arc, RwLock}; use mioco; use mioco::sync::mpsc::{sync_channel, SyncSender}; use mioco::tcp::{TcpListener, TcpStream}; use core::core; use core::ser::Error; use handshake::Handshake; use peer::Peer; use types::*; pub struct DummyAdapter {} impl NetAdapter for DummyAdapter { fn transaction_received(&self, tx: core::Transaction) {} fn block_received(&self, b: core::Block) {} } /// P2P server implementation, handling bootstrapping to find and connect to /// peers, receiving connections from other peers and keep track of all of them. pub struct Server { config: P2PConfig, peers: RwLock>>, stop_send: RefCell>>, } unsafe impl Sync for Server {} unsafe impl Send for Server {} // TODO TLS impl Server { /// Creates a new idle p2p server with no peers pub fn new(config: P2PConfig) -> Server { Server { config: config, peers: RwLock::new(Vec::new()), stop_send: RefCell::new(None), } } /// Starts the p2p server. Opens a TCP port to allow incoming /// connections and starts the bootstrapping process to find peers. pub fn start(&self) -> Result<(), Error> { let addr = SocketAddr::new(self.config.host, self.config.port); let listener = try!(TcpListener::bind(&addr).map_err(&Error::IOErr)); warn!("P2P server started on {}", addr); let hs = Arc::new(Handshake::new()); let (stop_send, stop_recv) = sync_channel(1); { let mut stop_mut = self.stop_send.borrow_mut(); *stop_mut = Some(stop_send); } loop { select!( r:listener => { let conn = try!(listener.accept().map_err(&Error::IOErr)); let hs = hs.clone(); let peer = try!(Peer::accept(conn, &hs)); let wpeer = Arc::new(peer); { let mut peers = self.peers.write().unwrap(); peers.push(wpeer.clone()); } mioco::spawn(move || -> io::Result<()> { if let Err(err) = wpeer.run(&DummyAdapter{}) { error!("{:?}", err); } Ok(()) }); }, r:stop_recv => { stop_recv.recv(); return Ok(()); } ); } } pub fn connect_peer(&self, addr: A) -> Result<(), Error> { for sock_addr in addr.to_socket_addrs().unwrap() { info!("Connecting to peer {}", sock_addr); let tcp_client = TcpStream::connect(&sock_addr).unwrap(); let peer = try!(Peer::connect(tcp_client, &Handshake::new()) .map_err(|_| io::Error::last_os_error())); let peer = Arc::new(peer); let in_peer = peer.clone(); mioco::spawn(move || -> io::Result<()> { in_peer.run(&DummyAdapter {}); Ok(()) }); self.peers.write().unwrap().push(peer); } Ok(()) } /// Asks all the peers to relay the provided block. A peer may choose to /// ignore the relay request if it has knowledge that the remote peer /// already knows the block. pub fn relay_block(&self, b: &core::Block) -> Result<(), Error> { let peers = self.peers.write().unwrap(); for p in peers.deref() { try!(p.send_block(b)); } Ok(()) } /// Asks all the peers to relay the provided transaction. A peer may choose /// to ignore the relay request if it has knowledge that the remote peer /// already knows the transaction. pub fn relay_transaction(&self, tx: &core::Transaction) -> Result<(), Error> { let peers = self.peers.write().unwrap(); for p in peers.deref() { try!(p.send_transaction(tx)); } Ok(()) } /// Number of peers this server is connected to. pub fn peers_count(&self) -> u32 { self.peers.read().unwrap().len() as u32 } /// Gets a random peer from our set of connected peers. pub fn get_any_peer(&self) -> Arc { let mut rng = rand::thread_rng(); let peers = self.peers.read().unwrap(); peers[rng.gen_range(0, peers.len())].clone() } /// Stops the server. Disconnect from all peers at the same time. pub fn stop(&self) { let peers = self.peers.write().unwrap(); for p in peers.deref() { p.stop(); } let stop_send = self.stop_send.borrow(); stop_send.as_ref().unwrap().send(0); } }