| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2023 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- //! Outbound connections session. Manages the creation of outbound sessions.
- //! Used to create an outbound session and to stop and start the session.
- //!
- //! Class consists of a weak pointer to the p2p interface and a vector of
- //! outbound connection slots. Using a weak pointer to p2p allows us to
- //! avoid circular dependencies. The vector of slots is wrapped in a mutex
- //! lock. This is switched on every time we instantiate a connection slot
- //! and insures that no other part of the program uses the slots at the
- //! same time.
- use std::{
- sync::{
- atomic::{AtomicU32, Ordering},
- Arc, Weak,
- },
- time::{Duration, Instant, SystemTime},
- };
- use async_trait::async_trait;
- use log::{debug, error, info, warn};
- use rand::{
- Rng,
- };
- use smol::lock::Mutex;
- use url::Url;
- use super::{
- super::{
- channel::ChannelPtr,
- connector::Connector,
- dnet::{self, dnetev, DnetEvent},
- message::GetAddrsMessage,
- p2p::{P2p, P2pPtr},
- protocol::ProtocolVersion,
- },
- Session, SessionBitFlag, SESSION_OUTBOUND,
- };
- use crate::{
- system::{
- sleep, timeout::timeout, CondVar, LazyWeak, StoppableTask, StoppableTaskPtr, Subscriber,
- SubscriberPtr,
- },
- Error, Result,
- };
- pub type OutboundSessionPtr = Arc<OutboundSession>;
- /// Defines outbound connections session.
- pub struct OutboundSession {
- /// Weak pointer to parent p2p object
- pub(in crate::net) p2p: LazyWeak<P2p>,
- /// Subscriber used to signal channels processing
- channel_subscriber: SubscriberPtr<Result<ChannelPtr>>,
- /// Outbound connection slots
- slots: Mutex<Vec<Arc<Slot>>>,
- /// Peer discovery task
- peer_discovery: Arc<PeerDiscovery>,
- }
- impl OutboundSession {
- /// Create a new outbound session.
- pub(crate) fn new() -> OutboundSessionPtr {
- let self_ = Arc::new(Self {
- p2p: LazyWeak::new(),
- channel_subscriber: Subscriber::new(),
- slots: Mutex::new(Vec::new()),
- peer_discovery: PeerDiscovery::new(),
- });
- self_.peer_discovery.session.init(self_.clone());
- self_
- }
- /// Start the outbound session. Runs the channel connect loop.
- pub(crate) async fn start(self: Arc<Self>) {
- let n_slots = self.p2p().settings().outbound_connections;
- info!(target: "net::outbound_session", "[P2P] Starting {} outbound connection slots.", n_slots);
- // Activate mutex lock on connection slots.
- let mut slots = self.slots.lock().await;
- let self_ = Arc::downgrade(&self);
- for i in 0..n_slots as u32 {
- let slot = Slot::new(self_.clone(), i);
- slot.clone().start().await;
- slots.push(slot);
- }
- self.peer_discovery.clone().start().await;
- }
- /// Stops the outbound session.
- pub(crate) async fn stop(&self) {
- let slots = &*self.slots.lock().await;
- for slot in slots {
- slot.clone().stop().await;
- }
- self.peer_discovery.clone().stop().await;
- }
- pub async fn slot_info(&self) -> Vec<u32> {
- let mut info = Vec::new();
- let slots = &*self.slots.lock().await;
- for slot in slots {
- info.push(slot.channel_id.load(Ordering::Relaxed));
- }
- info
- }
- fn wakeup_peer_discovery(&self) {
- self.peer_discovery.notify()
- }
- async fn wakeup_slots(&self) {
- let slots = &*self.slots.lock().await;
- for slot in slots {
- slot.notify();
- }
- }
- }
- #[async_trait]
- impl Session for OutboundSession {
- fn p2p(&self) -> P2pPtr {
- self.p2p.upgrade()
- }
- fn type_id(&self) -> SessionBitFlag {
- SESSION_OUTBOUND
- }
- }
- pub struct Slot {
- slot: u32,
- process: StoppableTaskPtr,
- wakeup_self: CondVar,
- session: Weak<OutboundSession>,
- // For debugging
- channel_id: AtomicU32,
- }
- impl Slot {
- fn new(session: Weak<OutboundSession>, slot: u32) -> Arc<Self> {
- Arc::new(Self {
- slot,
- process: StoppableTask::new(),
- wakeup_self: CondVar::new(),
- session,
- channel_id: AtomicU32::new(0),
- })
- }
- async fn start(self: Arc<Self>) {
- // TODO: way too many clones, look into making this implicit. See implicit-clone crate
- let ex = self.p2p().executor();
- self.process.clone().start(
- async move {
- self.run().await;
- unreachable!();
- },
- // Ignore stop handler
- |_| async {},
- Error::NetworkServiceStopped,
- ex,
- );
- }
- async fn stop(self: Arc<Self>) {
- self.process.stop().await
- }
- // TODO: clean documentation
- // Looks up whitelisted addresses. Tries to connect to them.
- // On success, updates the whitelist last_seen field.
- async fn run(self: Arc<Self>) {
- // This is the main outbound connection loop where we try to establish
- // a connection in the slot. The `try_connect` function will block in
- // case the connection was sucessfully established. If it fails, then
- // we will wait for a defined number of seconds and try to fill the
- // slot again. This function should never exit during the lifetime of
- // the P2P network, as it is supposed to represent an outbound slot we
- // want to fill.
- // The actual connection logic and peer selection is in `try_connect`.
- // If the connection is successful, `try_connect` will wait for a stop
- // signal and then exit. Once it exits, we'll run `try_connect` again
- // and attempt to fill the slot with another peer.
- let hosts = self.p2p().hosts();
- loop {
- // Activate the slot
- debug!(
- target: "net::outbound_session::try_connect()",
- "[P2P] Finding a host to connect to for outbound slot #{}",
- self.slot,
- );
- // Retrieve outbound transports
- let transports = &self.p2p().settings().allowed_transports;
- // Find a whitelisted address to connect to. We also do peer discovery here if needed.
- let (addr, _last_seen) = if let Some(addr) =
- hosts.whitelist_fetch_address_with_lock(self.p2p(), transports).await
- {
- addr
- } else {
- dnetev!(self, OutboundSlotSleeping, {
- slot: self.slot,
- });
- self.wakeup_self.reset();
- // Peer discovery
- self.session().wakeup_peer_discovery();
- // Wait to be woken up by peer discovery
- self.wakeup_self.wait().await;
- continue
- };
- info!(
- target: "net::outbound_session::try_connect()",
- "[P2P] Connecting outbound slot #{} [{}]",
- self.slot, addr,
- );
- dnetev!(self, OutboundSlotConnecting, {
- slot: self.slot,
- addr: addr.clone(),
- });
- let (addr_final, channel) =
- match self.try_connect(addr.clone()).await {
- Ok(connect_info) => connect_info,
- Err(err) => {
- error!(
- target: "net::outbound_session",
- "[P2P] Outbound slot #{} connection failed: {}",
- self.slot, err,
- );
- dnetev!(self, OutboundSlotDisconnected, {
- slot: self.slot,
- err: err.to_string()
- });
- self.channel_id.store(0, Ordering::Relaxed);
- continue
- }
- };
- info!(
- target: "net::outbound_session::try_connect()",
- "[P2P] Outbound slot #{} connected [{}]",
- self.slot, addr_final
- );
- // Update the last_seen field for this whitelisted peer.
- // TODO: This peer should also be flagged as an "anchor" because we have been
- // able to establish a connection to it to it.
- let last_seen =
- SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs();
- hosts.whitelist_update(&addr_final, last_seen).await;
- dnetev!(self, OutboundSlotConnected, {
- slot: self.slot,
- addr: addr_final.clone(),
- channel_id: channel.info.id
- });
- let stop_sub = channel.subscribe_stop().await.expect("Channel should not be stopped");
- // Setup new channel
- if let Err(err) = self.setup_channel(addr, channel.clone()).await {
- info!(
- target: "net::outbound_session",
- "[P2P] Outbound slot #{} disconnected: {}",
- self.slot, err
- );
- dnetev!(self, OutboundSlotDisconnected, {
- slot: self.slot,
- err: err.to_string()
- });
- self.channel_id.store(0, Ordering::Relaxed);
- continue
- }
- self.channel_id.store(channel.info.id, Ordering::Relaxed);
- // Wait for channel to close
- stop_sub.receive().await;
- self.channel_id.store(0, Ordering::Relaxed);
- }
- }
- /// Start making an outbound connection, using provided [`Connector`].
- /// Tries to find a valid address to connect to, otherwise does peer
- /// discovery. The peer discovery loops until some peer we can connect
- /// to is found. Once connected, registers the channel, removes it from
- /// the list of pending channels, and starts sending messages across the
- /// channel. In case of any failures, a network error is returned and the
- /// main connect loop (parent of this function) will iterate again.
- async fn try_connect(&self, addr: Url) -> Result<(Url, ChannelPtr)> {
- let parent = Arc::downgrade(&self.session());
- let connector = Connector::new(self.p2p().settings(), parent);
- match connector.connect(&addr).await {
- Ok((addr_final, channel)) => Ok((addr_final, channel)),
- Err(e) => {
- error!(
- target: "net::outbound_session::try_connect()",
- "[P2P] Unable to connect outbound slot #{} [{}]: {}",
- self.slot, addr, e
- );
- // At this point we failed to connect.
- // Remove this item from the whitelist and add it to the greylist.
- self.p2p().hosts().whitelist_downgrade(&addr).await;
- // Remove connection from pending
- self.p2p().remove_pending(&addr).await;
- // Notify that channel processing failed
- self.session().channel_subscriber.notify(Err(Error::ConnectFailed)).await;
- Err(Error::ConnectFailed)
- }
- }
- }
- async fn setup_channel(&self, addr: Url, channel: ChannelPtr) -> Result<()> {
- // Register the new channel
- self.session().register_channel(channel.clone(), self.p2p().executor()).await?;
- // Channel is now connected but not yet setup
- // Remove pending lock since register_channel will add the channel to p2p
- self.p2p().remove_pending(&addr).await;
- // Notify that channel processing has been finished
- self.session().channel_subscriber.notify(Ok(channel)).await;
- Ok(())
- }
- ///// TODO: this method should go in hosts
- fn notify(&self) {
- self.wakeup_self.notify()
- }
- fn session(&self) -> OutboundSessionPtr {
- self.session.upgrade().unwrap()
- }
- fn p2p(&self) -> P2pPtr {
- self.session().p2p()
- }
- }
- struct PeerDiscovery {
- process: StoppableTaskPtr,
- wakeup_self: CondVar,
- session: LazyWeak<OutboundSession>,
- }
- impl PeerDiscovery {
- fn new() -> Arc<Self> {
- Arc::new(Self {
- process: StoppableTask::new(),
- wakeup_self: CondVar::new(),
- session: LazyWeak::new(),
- })
- }
- async fn start(self: Arc<Self>) {
- let ex = self.p2p().executor();
- self.process.clone().start(
- async move {
- self.run().await;
- unreachable!();
- },
- // Ignore stop handler
- |_| async {},
- Error::NetworkServiceStopped,
- ex,
- );
- }
- async fn stop(self: Arc<Self>) {
- self.process.stop().await
- }
- /// Activate peer discovery if not active already. This will loop through all
- /// connected P2P channels and send out a `GetAddrs` message to request more
- /// peers. Other parts of the P2P stack will then handle the incoming addresses
- /// and place them in the hosts list.
- /// This function will also sleep `Settings::outbound_connect_timeout` seconds
- /// after broadcasting in order to let the P2P stack receive and work through
- /// the addresses it is expecting.
- async fn run(self: Arc<Self>) {
- let mut current_attempt = 0;
- loop {
- dnetev!(self, OutboundPeerDiscovery, {
- attempt: current_attempt,
- state: "wait",
- });
- // wait to be woken up by notify()
- let sleep_was_instant = self.wait().await;
- let p2p = self.p2p();
- if sleep_was_instant {
- // Try again
- current_attempt += 1;
- } else {
- // reset back to start
- current_attempt = 1;
- }
- if current_attempt >= 4 {
- info!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Sleeping and trying again..."
- );
- dnetev!(self, OutboundPeerDiscovery, {
- attempt: current_attempt,
- state: "sleep",
- });
- sleep(p2p.settings().outbound_peer_discovery_cooloff_time).await;
- current_attempt = 1;
- }
- // First 2 times try sending GetAddr to the network.
- // 3rd time do a seed sync.
- if p2p.is_connected().await && current_attempt <= 2 {
- // Broadcast the GetAddrs message to all active channels.
- // If we have no active channels, we will perform a SeedSyncSession instead.
- info!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Requesting addrs from active channels. Attempt: {}",
- current_attempt
- );
- dnetev!(self, OutboundPeerDiscovery, {
- attempt: current_attempt,
- state: "getaddr",
- });
- let get_addrs = GetAddrsMessage {
- max: p2p.settings().outbound_connections as u32,
- transports: p2p.settings().allowed_transports.clone(),
- };
- p2p.broadcast(&get_addrs).await;
- // Wait for a hosts store update event
- let store_sub = self.p2p().hosts().subscribe_store().await.unwrap();
- let result = timeout(
- Duration::from_secs(p2p.settings().outbound_peer_discovery_attempt_time),
- store_sub.receive(),
- )
- .await;
- match result {
- Ok(addrs_len) => {
- info!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Discovered {} addrs", addrs_len
- );
- }
- Err(_) => {
- warn!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Peer discovery waiting for addrs timed out."
- );
- // TODO: Just do seed next time
- }
- }
- // TODO: check every subscribe() call has a corresponding unsubscribe()
- store_sub.unsubscribe().await;
- } else {
- info!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Seeding hosts. Attempt: {}",
- current_attempt
- );
- dnetev!(self, OutboundPeerDiscovery, {
- attempt: current_attempt,
- state: "seed",
- });
- match p2p.clone().seed().await {
- Ok(()) => {
- info!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Seeding hosts successful."
- );
- }
- Err(err) => {
- error!(
- target: "net::outbound_session::peer_discovery()",
- "[P2P] Network reseed failed: {}", err,
- );
- }
- }
- }
- self.wakeup_self.reset();
- self.session().wakeup_slots().await;
- // Give some time for new connections to be established
- sleep(p2p.settings().outbound_peer_discovery_attempt_time).await;
- }
- }
- async fn wait(&self) -> bool {
- let wakeup_start = Instant::now();
- self.wakeup_self.wait().await;
- let wakeup_end = Instant::now();
- let epsilon = Duration::from_millis(200);
- wakeup_end - wakeup_start <= epsilon
- }
- fn notify(&self) {
- self.wakeup_self.notify()
- }
- fn session(&self) -> OutboundSessionPtr {
- self.session.upgrade()
- }
- fn p2p(&self) -> P2pPtr {
- self.session().p2p()
- }
- }
- //// Probe random peers on the greylist. If a peer is responsive, update the last_seen field and
- //// add it to the whitelist. If a node does not respond, remove it from the greylist.
- //// Called periodically.
- // NOTE: in monero this is called "greylist housekeeping" but that's a bit verbose.
- struct GreylistRefinery {
- process: StoppableTaskPtr,
- //wakeup_self: CondVar,
- session: LazyWeak<OutboundSession>,
- }
- impl GreylistRefinery {
- fn new() -> Arc<Self> {
- Arc::new(Self {
- process: StoppableTask::new(),
- //wakeup_self: CondVar::new(),
- session: LazyWeak::new(),
- })
- }
- //async fn start(self: Arc<Self>) {
- // let ex = self.p2p().executor();
- // self.process.clone().start(
- // async move {
- // self.run().await;
- // unreachable!();
- // },
- // // Ignore stop handler
- // |_| async {},
- // Error::NetworkServiceStopped,
- // ex,
- // );
- //}
- async fn stop(self: Arc<Self>) {
- self.process.stop().await
- }
- //// Randomly select a peer on the greylist and probe it.
- //// TODO: This frequency of this call can be set in net::Settings.
- async fn run(self: Arc<Self>) {
- loop {
- let p2p = self.p2p();
- let hosts = p2p.hosts();
- let session = self.session();
- let greylist = hosts.greylist.read().await;
- //// Randomly select an entry from the greylist.
- let position = rand::thread_rng().gen_range(0..greylist.len());
- let entry = &greylist[position];
- let url = &entry.0;
- let parent = Arc::downgrade(&self.session());
- let mut greylist = hosts.greylist.write().await;
- let mut whitelist = hosts.whitelist.write().await;
- let connector = Connector::new(p2p.settings(), parent);
- debug!(target: "net::greylist_refinery::run()", "Connecting to {}", url);
- match connector.connect(url).await {
- Ok((_url, channel)) => {
- debug!(target: "net::greylist_refinery::run()", "Connected successfully!");
- let proto_ver = ProtocolVersion::new(channel.clone(), p2p.settings()).await;
- let handshake_task = session.perform_handshake_protocols(
- proto_ver,
- channel.clone(),
- p2p.executor(),
- );
- channel.clone().start(p2p.executor());
- match handshake_task.await {
- Ok(()) => {
- debug!(target: "net::greylist_refinery::run()", "Handshake success! Stopping channel.");
- channel.stop().await;
- // Peer is responsive. Update last_seen and add it to the whitelist.
- let last_seen = SystemTime::now()
- .duration_since(SystemTime::UNIX_EPOCH)
- .unwrap()
- .as_secs();
- // Remove oldest element if the whitelist reaches max size.
- if whitelist.len() == 1000 {
- // Last element in vector should have the oldest timestamp.
- // This should never crash as only returns None when whitelist len() == 0.
- let entry = whitelist.pop().unwrap();
- debug!(target: "net::greylist_refinery::run()", "Whitelist reached max size. Removed host {}", entry.0);
- }
- // Append to the whitelist.
- debug!(target: "net::greylist_refinery::run()", "Adding peer {} to whitelist", url);
- whitelist.push((url.clone(), last_seen));
- // Sort whitelist by last_seen.
- whitelist.sort_unstable_by_key(|entry| entry.1);
- // Remove whitelisted peer from the greylist.
- debug!(target: "net::greylist_refinery::run()", "Removing whitelisted peer {} from greylist", url);
- greylist.remove(position);
- }
- Err(e) => {
- debug!(target: "net::hosts::probe_node()", "Handshake failure! {}", e);
- // Peer is not responsive. Remove it from the greylist.
- greylist.remove(position);
- debug!(target: "net::hosts::refresh_greylist()", "Peer {} is not response. Removed from greylist", url);
- }
- }
- }
- Err(e) => {
- debug!(target: "net::hosts::probe_node()", "Failed to connect to {}, ({})", url, e);
- // Peer is not responsive. Remove it from the greylist.
- greylist.remove(position);
- debug!(target: "net::hosts::refresh_greylist()", "Peer {} is not response. Removed from greylist", url);
- }
- }
- // TODO: create a custom net setting for this timer
- sleep(p2p.settings().outbound_peer_discovery_attempt_time).await;
- }
- }
- //async fn wait(&self) -> bool {
- // let wakeup_start = Instant::now();
- // self.wakeup_self.wait().await;
- // let wakeup_end = Instant::now();
- // let epsilon = Duration::from_millis(200);
- // wakeup_end - wakeup_start <= epsilon
- //}
- //fn notify(&self) {
- // self.wakeup_self.notify()
- //}
- fn session(&self) -> OutboundSessionPtr {
- self.session.upgrade()
- }
- fn p2p(&self) -> P2pPtr {
- self.session().p2p()
- }
- //fn hosts(&self) -> HostsPtr {
- // self.session().p2p().hosts()
- //}
- }
|