| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- /* 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/>.
- */
- //! Manual connections session. Manages the creation of manual sessions.
- //! Used to create a manual session and to stop and start the session.
- //!
- //! A manual session is a type of outbound session in which we attempt
- //! connection to a predefined set of peers.
- //!
- //! 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::Arc;
- use async_trait::async_trait;
- use log::{info, warn};
- use smol::lock::Mutex;
- use url::Url;
- use super::{
- super::{
- channel::ChannelPtr,
- connector::Connector,
- p2p::{P2p, P2pPtr},
- },
- Session, SessionBitFlag, SESSION_MANUAL,
- };
- use crate::{
- system::{sleep, LazyWeak, StoppableTask, StoppableTaskPtr, Subscriber, SubscriberPtr},
- Error, Result,
- };
- pub type ManualSessionPtr = Arc<ManualSession>;
- /// Defines manual connections session.
- pub struct ManualSession {
- pub(in crate::net) p2p: LazyWeak<P2p>,
- connect_slots: Mutex<Vec<StoppableTaskPtr>>,
- /// Subscriber used to signal channels processing
- channel_subscriber: SubscriberPtr<Result<ChannelPtr>>,
- }
- impl ManualSession {
- /// Create a new manual session.
- pub fn new() -> ManualSessionPtr {
- Arc::new(Self {
- p2p: LazyWeak::new(),
- connect_slots: Mutex::new(Vec::new()),
- channel_subscriber: Subscriber::new(),
- })
- }
- /// Stops the manual session.
- pub async fn stop(&self) {
- let connect_slots = &*self.connect_slots.lock().await;
- for slot in connect_slots {
- slot.stop().await;
- }
- }
- /// Connect the manual session to the given address
- pub async fn connect(self: Arc<Self>, addr: Url) {
- let ex = self.p2p().executor();
- let task = StoppableTask::new();
- task.clone().start(
- self.clone().channel_connect_loop(addr),
- // Ignore stop handler
- |_| async {},
- Error::NetworkServiceStopped,
- ex,
- );
- self.connect_slots.lock().await.push(task);
- }
- /// Creates a connector object and tries to connect using it
- pub async fn channel_connect_loop(self: Arc<Self>, addr: Url) -> Result<()> {
- let ex = self.p2p().executor();
- let parent = Arc::downgrade(&self);
- let settings = self.p2p().settings();
- let connector = Connector::new(settings.clone(), parent);
- let attempts = settings.manual_attempt_limit;
- let mut remaining = attempts;
- // Add the peer to list of pending channels
- self.p2p().add_pending(&addr).await;
- // Loop forever if attempts==0, otherwise loop attempts number of times.
- let mut tried_attempts = 0;
- loop {
- tried_attempts += 1;
- info!(
- target: "net::manual_session",
- "[P2P] Connecting to manual outbound [{}] (attempt #{})",
- addr, tried_attempts,
- );
- match connector.connect(&addr).await {
- Ok((url, channel)) => {
- info!(
- target: "net::manual_session",
- "[P2P] Manual outbound connected [{}]", url,
- );
- let stop_sub =
- channel.subscribe_stop().await.expect("Channel should not be stopped");
- // Channel is now connected but not yet setup
- // Register the new channel
- self.register_channel(channel.clone(), ex.clone()).await?;
- // Remove pending lock since register_channel will add the channel to p2p
- self.p2p().remove_pending(&addr).await;
- // Add this connection to the anchorlist, remove it from the [otherlist]
- self.upgrade_connection(&addr).await;
- // Notify that channel processing has finished
- self.channel_subscriber.notify(Ok(channel)).await;
- // Wait for channel to close
- stop_sub.receive().await;
- info!(
- target: "net::manual_session",
- "[P2P] Manual outbound disconnected [{}]", url,
- );
- // DEV NOTE: Here we can choose to attempt reconnection again
- return Ok(())
- }
- Err(e) => {
- warn!(
- target: "net::manual_session",
- "[P2P] Unable to connect to manual outbound [{}]: {}",
- addr, e,
- );
- }
- }
- // Wait and try again.
- // TODO: Should we notify about the failure now, or after all attempts
- // have failed?
- self.channel_subscriber.notify(Err(Error::ConnectFailed)).await;
- remaining = if attempts == 0 { 1 } else { remaining - 1 };
- if remaining == 0 {
- break
- }
- info!(
- target: "net::manual_session",
- "[P2P] Waiting {} seconds until next manual outbound connection attempt [{}]",
- settings.outbound_connect_timeout, addr,
- );
- sleep(settings.outbound_connect_timeout).await;
- }
- warn!(
- target: "net::manual_session",
- "[P2P] Suspending manual connection to {} after {} failed attempts",
- addr, attempts,
- );
- self.p2p().remove_pending(&addr).await;
- Ok(())
- }
- }
- #[async_trait]
- impl Session for ManualSession {
- fn p2p(&self) -> P2pPtr {
- self.p2p.upgrade()
- }
- fn type_id(&self) -> SessionBitFlag {
- SESSION_MANUAL
- }
- }
|