2018-05-18 14:56:11 +02:00
|
|
|
// Copyright 2018 Parity Technologies (UK) Ltd.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2018-08-22 10:46:23 +02:00
|
|
|
//! Libp2p is a peer-to-peer framework.
|
|
|
|
//!
|
|
|
|
//! # Major libp2p concepts
|
|
|
|
//!
|
|
|
|
//! Here is a list of all the major concepts of libp2p.
|
|
|
|
//!
|
|
|
|
//! ## Multiaddr
|
2018-09-12 09:10:05 +02:00
|
|
|
//!
|
2018-08-22 10:46:23 +02:00
|
|
|
//! A `Multiaddr` is a way to reach a node. Examples:
|
2018-09-12 09:10:05 +02:00
|
|
|
//!
|
2018-08-22 10:46:23 +02:00
|
|
|
//! * `/ip4/80.123.90.4/tcp/5432`
|
|
|
|
//! * `/ip6/[::1]/udp/10560`
|
|
|
|
//! * `/unix//path/to/socket`
|
|
|
|
//!
|
|
|
|
//! ## Transport
|
|
|
|
//!
|
|
|
|
//! `Transport` is a trait that represents an object capable of dialing multiaddresses or
|
|
|
|
//! listening on multiaddresses. The `Transport` produces an output which varies depending on the
|
|
|
|
//! object that implements the trait.
|
|
|
|
//!
|
|
|
|
//! Each implementation of `Transport` typically supports only some multiaddresses. For example
|
|
|
|
//! the `TcpConfig` type (which implements `Transport`) only supports multiaddresses of the format
|
|
|
|
//! `/ip4/.../tcp/...`.
|
|
|
|
//!
|
|
|
|
//! Example:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! use libp2p::{Multiaddr, Transport, tcp::TcpConfig};
|
|
|
|
//! let tcp_transport = TcpConfig::new();
|
|
|
|
//! let addr: Multiaddr = "/ip4/98.97.96.95/tcp/20500".parse().expect("invalid multiaddr");
|
|
|
|
//! let _outgoing_connec = tcp_transport.dial(addr);
|
|
|
|
//! // Note that `_outgoing_connec` is a `Future`, and therefore doesn't do anything by itself
|
|
|
|
//! // unless it is run through a tokio runtime.
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! The easiest way to create a transport is to use the `CommonTransport` struct. This struct
|
|
|
|
//! provides support for the most common protocols.
|
|
|
|
//!
|
|
|
|
//! Example:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! use libp2p::CommonTransport;
|
|
|
|
//! let _transport = CommonTransport::new();
|
|
|
|
//! // _transport.dial(...);
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! See the documentation of the `libp2p-core` crate for more details about transports.
|
|
|
|
//!
|
|
|
|
//! # Connection upgrades
|
|
|
|
//!
|
|
|
|
//! Once a connection has been opened with a remote through a `Transport`, it can be *upgraded*.
|
|
|
|
//! This consists in negotiating a protocol with the remote (through the `multistream-select`
|
|
|
|
//! protocol), and applying that protocol on the socket.
|
|
|
|
//!
|
|
|
|
//! Example upgrades:
|
|
|
|
//!
|
|
|
|
//! - Adding a security layer on top of the connection.
|
|
|
|
//! - Applying multiplexing, so that a connection can be split into multiple substreams.
|
|
|
|
//! - Negotiating a specific protocol, such as *ping* or *kademlia*.
|
|
|
|
//!
|
|
|
|
//! A potential connection upgrade is represented with the `ConnectionUpgrade` trait. The trait
|
|
|
|
//! consists in a protocol name plus a method that turns the socket into an `Output` object whose
|
|
|
|
//! nature and type is specific to each upgrade. For example, if you upgrade a connection with a
|
|
|
|
//! security layer, the output might contain an encrypted stream and the public key of the remote.
|
|
|
|
//!
|
|
|
|
//! You can combine a `Transport` with a compatible `ConnectionUpgrade` in order to obtain another
|
|
|
|
//! `Transport` that yields the output of the upgrade.
|
|
|
|
//!
|
|
|
|
//! Example:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
2018-08-29 11:24:44 +02:00
|
|
|
//! # #[cfg(all(not(target_os = "emscripten"), feature = "libp2p-secio"))] {
|
2018-08-22 10:46:23 +02:00
|
|
|
//! use libp2p::{Transport, tcp::TcpConfig, secio::{SecioConfig, SecioKeyPair}};
|
|
|
|
//! let tcp_transport = TcpConfig::new();
|
2018-09-12 09:10:05 +02:00
|
|
|
//! let secio_upgrade = SecioConfig::new(SecioKeyPair::ed25519_generated().unwrap());
|
2018-08-22 10:46:23 +02:00
|
|
|
//! let with_security = tcp_transport.with_upgrade(secio_upgrade);
|
|
|
|
//! // let _ = with_security.dial(...);
|
|
|
|
//! // `with_security` also implements the `Transport` trait, and all the connections opened
|
|
|
|
//! // through it will automatically negotiate the `secio` protocol.
|
2018-08-29 11:24:44 +02:00
|
|
|
//! # }
|
2018-08-22 10:46:23 +02:00
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! See the documentation of the `libp2p-core` crate for more details about upgrades.
|
|
|
|
//!
|
|
|
|
//! ## Swarm
|
|
|
|
//!
|
|
|
|
//! Once you have created an object that implements the `Transport` trait, you can put it in a
|
|
|
|
//! *swarm*. This is done by calling the `swarm()` freestanding function with the transport
|
|
|
|
//! alongside with a function or a closure that will turn the output of the upgrade (usually an
|
|
|
|
//! actual protocol, as explained above) into a `Future` producing `()`.
|
|
|
|
//!
|
|
|
|
//! See the documentation of the `libp2p-core` crate for more details about creating a swarm.
|
|
|
|
//!
|
|
|
|
//! # Using libp2p
|
|
|
|
//!
|
|
|
|
//! This section contains details about how to use libp2p in practice.
|
|
|
|
//!
|
|
|
|
//! The most simple way to use libp2p consists in the following steps:
|
|
|
|
//!
|
|
|
|
//! - Create a *base* implementation of `Transport` that combines all the protocols you want and
|
|
|
|
//! the upgrades you want, such as the security layer and multiplexing.
|
|
|
|
//! - Create structs that implement the `ConnectionUpgrade` trait for the protocols you want to
|
|
|
|
//! create, or use the protocols provided by the `libp2p` crate.
|
|
|
|
//! - Create a swarm that combines your base transport and all the upgrades and that handles the
|
|
|
|
//! behaviour that happens.
|
|
|
|
//! - Use this swarm to dial and listen.
|
|
|
|
//!
|
|
|
|
//! You probably also want to have some sort of nodes discovery mechanism, so that you
|
|
|
|
//! automatically connect to nodes of the network. The details of this haven't been fleshed out
|
|
|
|
//! in libp2p and will be written later.
|
|
|
|
//!
|
|
|
|
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate bytes;
|
|
|
|
pub extern crate futures;
|
|
|
|
pub extern crate multiaddr;
|
2018-10-31 08:31:15 +01:00
|
|
|
pub extern crate multihash;
|
2018-05-23 16:27:55 +02:00
|
|
|
pub extern crate tokio_io;
|
2018-06-22 16:12:23 +02:00
|
|
|
pub extern crate tokio_codec;
|
2018-05-18 14:56:11 +02:00
|
|
|
|
2018-11-12 17:12:47 +01:00
|
|
|
extern crate libp2p_core_derive;
|
2018-10-26 11:07:59 +02:00
|
|
|
extern crate tokio_executor;
|
|
|
|
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate libp2p_core as core;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate libp2p_dns as dns;
|
|
|
|
pub extern crate libp2p_identify as identify;
|
|
|
|
pub extern crate libp2p_kad as kad;
|
|
|
|
pub extern crate libp2p_floodsub as floodsub;
|
|
|
|
pub extern crate libp2p_mplex as mplex;
|
|
|
|
pub extern crate libp2p_peerstore as peerstore;
|
|
|
|
pub extern crate libp2p_ping as ping;
|
2018-11-21 13:59:41 +01:00
|
|
|
pub extern crate libp2p_plaintext as plaintext;
|
2018-05-20 10:11:42 +02:00
|
|
|
pub extern crate libp2p_ratelimit as ratelimit;
|
|
|
|
pub extern crate libp2p_relay as relay;
|
2018-05-21 18:49:02 +02:00
|
|
|
pub extern crate libp2p_secio as secio;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate libp2p_tcp_transport as tcp;
|
2018-06-25 15:12:39 +02:00
|
|
|
pub extern crate libp2p_transport_timeout as transport_timeout;
|
2018-08-08 12:38:29 +02:00
|
|
|
pub extern crate libp2p_uds as uds;
|
2018-11-12 11:42:42 +01:00
|
|
|
#[cfg(feature = "libp2p-websocket")]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate libp2p_websocket as websocket;
|
2018-07-16 12:45:28 +02:00
|
|
|
pub extern crate libp2p_yamux as yamux;
|
2018-05-18 14:56:11 +02:00
|
|
|
|
2018-10-26 11:07:59 +02:00
|
|
|
mod transport_ext;
|
|
|
|
|
2018-05-23 16:27:55 +02:00
|
|
|
pub mod simple;
|
|
|
|
|
2018-11-15 17:41:11 +01:00
|
|
|
pub use self::core::{
|
2018-11-20 10:35:22 +01:00
|
|
|
Transport, PeerId, Swarm,
|
2018-11-15 17:41:11 +01:00
|
|
|
upgrade::{InboundUpgrade, InboundUpgradeExt, OutboundUpgrade, OutboundUpgradeExt}
|
|
|
|
};
|
2018-11-12 17:12:47 +01:00
|
|
|
pub use libp2p_core_derive::NetworkBehaviour;
|
2018-05-18 14:56:11 +02:00
|
|
|
pub use self::multiaddr::Multiaddr;
|
2018-05-23 16:27:55 +02:00
|
|
|
pub use self::simple::SimpleProtocol;
|
2018-10-26 11:07:59 +02:00
|
|
|
pub use self::transport_ext::TransportExt;
|
2018-06-25 15:12:39 +02:00
|
|
|
pub use self::transport_timeout::TransportTimeout;
|
2018-05-18 14:56:11 +02:00
|
|
|
|
|
|
|
/// Implementation of `Transport` that supports the most common protocols.
|
|
|
|
///
|
|
|
|
/// The list currently is TCP/IP, DNS, and WebSockets. However this list could change in the
|
|
|
|
/// future to get new transports.
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct CommonTransport {
|
|
|
|
// The actual implementation of everything.
|
2018-05-23 11:22:49 +02:00
|
|
|
inner: CommonTransportInner
|
|
|
|
}
|
|
|
|
|
2018-11-12 11:42:42 +01:00
|
|
|
#[cfg(all(not(target_os = "emscripten"), feature = "libp2p-websocket"))]
|
2018-05-31 17:16:23 +02:00
|
|
|
pub type InnerImplementation = core::transport::OrTransport<dns::DnsConfig<tcp::TcpConfig>, websocket::WsConfig<dns::DnsConfig<tcp::TcpConfig>>>;
|
2018-11-12 11:42:42 +01:00
|
|
|
#[cfg(all(not(target_os = "emscripten"), not(feature = "libp2p-websocket")))]
|
|
|
|
pub type InnerImplementation = dns::DnsConfig<tcp::TcpConfig>;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(target_os = "emscripten")]
|
2018-05-31 17:16:23 +02:00
|
|
|
pub type InnerImplementation = websocket::BrowserWsConfig;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2018-05-23 11:22:49 +02:00
|
|
|
struct CommonTransportInner {
|
2018-05-31 17:16:23 +02:00
|
|
|
inner: InnerImplementation,
|
2018-05-23 11:22:49 +02:00
|
|
|
}
|
2018-05-18 14:56:11 +02:00
|
|
|
|
|
|
|
impl CommonTransport {
|
|
|
|
/// Initializes the `CommonTransport`.
|
|
|
|
#[inline]
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-07-16 12:15:27 +02:00
|
|
|
pub fn new() -> CommonTransport {
|
2018-11-12 11:42:42 +01:00
|
|
|
let transport = tcp::TcpConfig::new();
|
|
|
|
let transport = dns::DnsConfig::new(transport);
|
|
|
|
#[cfg(feature = "libp2p-websocket")]
|
|
|
|
let transport = {
|
|
|
|
let trans_clone = transport.clone();
|
|
|
|
transport.or_transport(websocket::WsConfig::new(trans_clone))
|
|
|
|
};
|
2018-05-23 11:22:49 +02:00
|
|
|
|
|
|
|
CommonTransport {
|
2018-11-12 11:42:42 +01:00
|
|
|
inner: CommonTransportInner { inner: transport }
|
2018-05-23 11:22:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Initializes the `CommonTransport`.
|
|
|
|
#[inline]
|
|
|
|
#[cfg(target_os = "emscripten")]
|
|
|
|
pub fn new() -> CommonTransport {
|
|
|
|
let inner = websocket::BrowserWsConfig::new();
|
|
|
|
CommonTransport {
|
|
|
|
inner: CommonTransportInner { inner: inner }
|
|
|
|
}
|
2018-05-18 14:56:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Transport for CommonTransport {
|
2018-05-23 11:22:49 +02:00
|
|
|
type Output = <InnerImplementation as Transport>::Output;
|
|
|
|
type Listener = <InnerImplementation as Transport>::Listener;
|
|
|
|
type ListenerUpgrade = <InnerImplementation as Transport>::ListenerUpgrade;
|
|
|
|
type Dial = <InnerImplementation as Transport>::Dial;
|
2018-05-18 14:56:11 +02:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn listen_on(self, addr: Multiaddr) -> Result<(Self::Listener, Multiaddr), (Self, Multiaddr)> {
|
2018-05-23 11:22:49 +02:00
|
|
|
match self.inner.inner.listen_on(addr) {
|
2018-05-18 14:56:11 +02:00
|
|
|
Ok(res) => Ok(res),
|
|
|
|
Err((inner, addr)) => {
|
2018-05-23 11:22:49 +02:00
|
|
|
let trans = CommonTransport { inner: CommonTransportInner { inner: inner } };
|
2018-05-18 14:56:11 +02:00
|
|
|
Err((trans, addr))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn dial(self, addr: Multiaddr) -> Result<Self::Dial, (Self, Multiaddr)> {
|
2018-05-23 11:22:49 +02:00
|
|
|
match self.inner.inner.dial(addr) {
|
2018-05-18 14:56:11 +02:00
|
|
|
Ok(res) => Ok(res),
|
|
|
|
Err((inner, addr)) => {
|
2018-05-23 11:22:49 +02:00
|
|
|
let trans = CommonTransport { inner: CommonTransportInner { inner: inner } };
|
2018-05-18 14:56:11 +02:00
|
|
|
Err((trans, addr))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn nat_traversal(&self, server: &Multiaddr, observed: &Multiaddr) -> Option<Multiaddr> {
|
2018-05-23 11:22:49 +02:00
|
|
|
self.inner.inner.nat_traversal(server, observed)
|
2018-05-18 14:56:11 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-15 17:19:19 +02:00
|
|
|
|
|
|
|
/// The `multiaddr!` macro is an easy way for a user to create a `Multiaddr`.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate libp2p;
|
|
|
|
/// # fn main() {
|
2018-09-20 19:51:00 +02:00
|
|
|
/// let _addr = multiaddr![Ip4([127, 0, 0, 1]), Tcp(10500u16)];
|
2018-08-15 17:19:19 +02:00
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
///
|
2018-09-20 19:51:00 +02:00
|
|
|
/// Each element passed to `multiaddr![]` should be a variant of the `Protocol` enum. The
|
2018-08-15 17:19:19 +02:00
|
|
|
/// optional parameter is casted into the proper type with the `Into` trait.
|
|
|
|
///
|
2018-09-20 19:51:00 +02:00
|
|
|
/// For example, `Ip4([127, 0, 0, 1])` works because `Ipv4Addr` implements `From<[u8; 4]>`.
|
2018-08-15 17:19:19 +02:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! multiaddr {
|
|
|
|
($($comp:ident $(($param:expr))*),+) => {
|
|
|
|
{
|
|
|
|
use std::iter;
|
2018-09-20 19:51:00 +02:00
|
|
|
let elem = iter::empty::<$crate::multiaddr::Protocol>();
|
2018-08-15 17:19:19 +02:00
|
|
|
$(
|
|
|
|
let elem = {
|
2018-09-20 19:51:00 +02:00
|
|
|
let cmp = $crate::multiaddr::Protocol::$comp $(( $param.into() ))*;
|
2018-08-15 17:19:19 +02:00
|
|
|
elem.chain(iter::once(cmp))
|
|
|
|
};
|
|
|
|
)+
|
|
|
|
elem.collect::<$crate::Multiaddr>()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|