tor_chanmgr/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
#![doc = include_str!("../README.md")]
// @@ begin lint list maintained by maint/add_warning @@
#![allow(renamed_and_removed_lints)] // @@REMOVE_WHEN(ci_arti_stable)
#![allow(unknown_lints)] // @@REMOVE_WHEN(ci_arti_nightly)
#![warn(missing_docs)]
#![warn(noop_method_call)]
#![warn(unreachable_pub)]
#![warn(clippy::all)]
#![deny(clippy::await_holding_lock)]
#![deny(clippy::cargo_common_metadata)]
#![deny(clippy::cast_lossless)]
#![deny(clippy::checked_conversions)]
#![warn(clippy::cognitive_complexity)]
#![deny(clippy::debug_assert_with_mut_call)]
#![deny(clippy::exhaustive_enums)]
#![deny(clippy::exhaustive_structs)]
#![deny(clippy::expl_impl_clone_on_copy)]
#![deny(clippy::fallible_impl_from)]
#![deny(clippy::implicit_clone)]
#![deny(clippy::large_stack_arrays)]
#![warn(clippy::manual_ok_or)]
#![deny(clippy::missing_docs_in_private_items)]
#![warn(clippy::needless_borrow)]
#![warn(clippy::needless_pass_by_value)]
#![warn(clippy::option_option)]
#![deny(clippy::print_stderr)]
#![deny(clippy::print_stdout)]
#![warn(clippy::rc_buffer)]
#![deny(clippy::ref_option_ref)]
#![warn(clippy::semicolon_if_nothing_returned)]
#![warn(clippy::trait_duplication_in_bounds)]
#![deny(clippy::unchecked_duration_subtraction)]
#![deny(clippy::unnecessary_wraps)]
#![warn(clippy::unseparated_literal_suffix)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::mod_module_files)]
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
#![allow(clippy::uninlined_format_args)]
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
#![allow(clippy::needless_raw_string_hashes)] // complained-about code is fine, often best
#![allow(clippy::needless_lifetimes)] // See arti#1765
//! <!-- @@ end lint list maintained by maint/add_warning @@ -->
pub mod builder;
mod config;
mod err;
mod event;
pub mod factory;
mod mgr;
#[cfg(test)]
mod testing;
pub mod transport;
pub(crate) mod util;
use futures::select_biased;
use futures::task::SpawnExt;
use futures::StreamExt;
use std::result::Result as StdResult;
use std::sync::{Arc, Weak};
use std::time::Duration;
use tor_config::ReconfigureError;
use tor_error::error_report;
use tor_linkspec::{ChanTarget, OwnedChanTarget};
use tor_netdir::{params::NetParameters, NetDirProvider};
use tor_proto::channel::Channel;
#[cfg(feature = "experimental-api")]
use tor_proto::memquota::ChannelAccount;
use tor_proto::memquota::ToplevelAccount;
use tracing::debug;
use void::{ResultVoidErrExt, Void};
pub use err::Error;
pub use config::{ChannelConfig, ChannelConfigBuilder};
use tor_rtcompat::Runtime;
/// A Result as returned by this crate.
pub type Result<T> = std::result::Result<T, Error>;
use crate::factory::BootstrapReporter;
pub use event::{ConnBlockage, ConnStatus, ConnStatusEvents};
use tor_rtcompat::scheduler::{TaskHandle, TaskSchedule};
/// An object that remembers a set of live channels, and launches new ones on
/// request.
///
/// Use the [`ChanMgr::get_or_launch`] function to create a new [`Channel`], or
/// get one if it exists. (For a slightly lower-level API that does no caching,
/// see [`ChannelFactory`](factory::ChannelFactory) and its implementors. For a
/// much lower-level API, see [`tor_proto::channel::ChannelBuilder`].)
///
/// Each channel is kept open as long as there is a reference to it, or
/// something else (such as the relay or a network error) kills the channel.
///
/// After a `ChanMgr` launches a channel, it keeps a reference to it until that
/// channel has been unused (that is, had no circuits attached to it) for a
/// certain amount of time. (Currently this interval is chosen randomly from
/// between 180-270 seconds, but this is an implementation detail that may change
/// in the future.)
pub struct ChanMgr<R: Runtime> {
/// Internal channel manager object that does the actual work.
///
/// ## How this is built
///
/// This internal manager is parameterized over an
/// [`mgr::AbstractChannelFactory`], which here is instantiated with a [`factory::CompoundFactory`].
/// The `CompoundFactory` itself holds:
/// * A `dyn` [`factory::AbstractPtMgr`] that can provide a `dyn`
/// [`factory::ChannelFactory`] for each supported pluggable transport.
/// This starts out as `None`, but can be replaced with [`ChanMgr::set_pt_mgr`].
/// The `TorClient` code currently sets this using `tor_ptmgr::PtMgr`.
/// `PtMgr` currently returns `ChannelFactory` implementations that are
/// built using [`transport::proxied::ExternalProxyPlugin`], which implements
/// [`transport::TransportImplHelper`], which in turn is wrapped into a
/// `ChanBuilder` to implement `ChannelFactory`.
/// * A generic [`factory::ChannelFactory`] that it uses for everything else
/// We instantiate this with a
/// [`builder::ChanBuilder`] using a [`transport::default::DefaultTransport`].
// This type is a bit long, but I think it's better to just state it here explicitly rather than
// hiding parts of it behind a type alias to make it look nicer.
mgr: mgr::AbstractChanMgr<
factory::CompoundFactory<builder::ChanBuilder<R, transport::DefaultTransport<R>>>,
>,
/// Stream of [`ConnStatus`] events.
bootstrap_status: event::ConnStatusEvents,
/// This currently isn't actually used, but we're keeping a PhantomData here
/// since probably we'll want it again, sooner or later.
runtime: std::marker::PhantomData<fn(R) -> R>,
}
/// Description of how we got a channel.
#[non_exhaustive]
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum ChanProvenance {
/// This channel was newly launched, or was in progress and finished while
/// we were waiting.
NewlyCreated,
/// This channel already existed when we asked for it.
Preexisting,
}
/// Dormancy state, as far as the channel manager is concerned
///
/// This is usually derived in higher layers from `arti_client::DormantMode`.
#[non_exhaustive]
#[derive(Debug, Default, Copy, Clone, Eq, PartialEq)]
pub enum Dormancy {
/// Not dormant
///
/// Channels will operate normally.
#[default]
Active,
/// Totally dormant
///
/// Channels will not perform any spontaneous activity (eg, netflow padding)
Dormant,
}
/// The usage that we have in mind when requesting a channel.
///
/// A channel may be used in multiple ways. Each time a channel is requested
/// from `ChanMgr` a separate `ChannelUsage` is passed in to tell the `ChanMgr`
/// how the channel will be used this time.
///
/// To be clear, the `ChannelUsage` is aspect of a _request_ for a channel, and
/// is not an immutable property of the channel itself.
///
/// This type is obtained from a `tor_circmgr::usage::SupportedCircUsage` in
/// `tor_circmgr::usage`, and it has roughly the same set of variants.
#[derive(Clone, Debug, Copy, Eq, PartialEq)]
#[non_exhaustive]
pub enum ChannelUsage {
/// Requesting a channel to use for BEGINDIR-based non-anonymous directory
/// connections.
Dir,
/// Requesting a channel to transmit user traffic (including exit traffic)
/// over the network.
///
/// This includes the case where we are constructing a circuit preemptively,
/// and _planning_ to use it for user traffic later on.
UserTraffic,
/// Requesting a channel that the caller does not plan to used at all, or
/// which it plans to use only for testing circuits.
UselessCircuit,
}
impl<R: Runtime> ChanMgr<R> {
/// Construct a new channel manager.
///
/// A new `ChannelAccount` will be made from `memquota`, for each Channel.
///
/// The `ChannelAccount` is used for data associated with this channel.
///
/// This does *not* (currently) include downstream outbound data
/// (ie, data processed by the channel implementation here,
/// awaiting TLS processing and actual transmission).
/// In any case we try to keep those buffers small.
///
/// The ChannelAccount *does* track upstream outbound data
/// (ie, data processed by a circuit, but not yet by the channel),
/// even though that data relates to a specific circuit.
/// TODO #1652 use `CircuitAccount` for circuit->channel queue.
///
/// # Usage note
///
/// For the manager to work properly, you will need to call `ChanMgr::launch_background_tasks`.
pub fn new(
runtime: R,
config: &ChannelConfig,
dormancy: Dormancy,
netparams: &NetParameters,
memquota: ToplevelAccount,
) -> Self
where
R: 'static,
{
let (sender, receiver) = event::channel();
let sender = Arc::new(std::sync::Mutex::new(sender));
let reporter = BootstrapReporter(sender);
let transport = transport::DefaultTransport::new(runtime.clone());
let builder = builder::ChanBuilder::new(runtime, transport);
let factory = factory::CompoundFactory::new(
Arc::new(builder),
#[cfg(feature = "pt-client")]
None,
);
let mgr =
mgr::AbstractChanMgr::new(factory, config, dormancy, netparams, reporter, memquota);
ChanMgr {
mgr,
bootstrap_status: receiver,
runtime: std::marker::PhantomData,
}
}
/// Launch the periodic daemon tasks required by the manager to function properly.
///
/// Returns a [`TaskHandle`] that can be used to manage
/// those daemon tasks that poll periodically.
pub fn launch_background_tasks(
self: &Arc<Self>,
runtime: &R,
netdir: Arc<dyn NetDirProvider>,
) -> Result<Vec<TaskHandle>> {
runtime
.spawn(Self::continually_update_channels_config(
Arc::downgrade(self),
netdir,
))
.map_err(|e| Error::from_spawn("channels config task", e))?;
let (sched, handle) = TaskSchedule::new(runtime.clone());
runtime
.spawn(Self::continually_expire_channels(
sched,
Arc::downgrade(self),
))
.map_err(|e| Error::from_spawn("channel expiration task", e))?;
Ok(vec![handle])
}
/// Build a channel for an incoming stream.
///
/// The channel may or may not be authenticated.
/// This method will wait until the channel is usable,
/// and may return an error if we already have an existing channel to this peer,
/// or if there are already too many open connections with this
/// peer or subnet (as a dos defence).
#[cfg(feature = "relay")]
pub async fn handle_incoming(
&self,
src: std::net::SocketAddr,
stream: <R as tor_rtcompat::NetStreamProvider>::Stream,
) -> Result<Arc<Channel>> {
self.mgr.handle_incoming(src, stream).await
}
/// Try to get a suitable channel to the provided `target`,
/// launching one if one does not exist.
///
/// If there is already a channel launch attempt in progress, this
/// function will wait until that launch is complete, and succeed
/// or fail depending on its outcome.
pub async fn get_or_launch<T: ChanTarget + ?Sized>(
&self,
target: &T,
usage: ChannelUsage,
) -> Result<(Arc<Channel>, ChanProvenance)> {
let targetinfo = OwnedChanTarget::from_chan_target(target);
let (chan, provenance) = self.mgr.get_or_launch(targetinfo, usage).await?;
// Double-check the match to make sure that the RSA identity is
// what we wanted too.
chan.check_match(target)
.map_err(|e| Error::from_proto_no_skew(e, target))?;
Ok((chan, provenance))
}
/// Return a stream of [`ConnStatus`] events to tell us about changes
/// in our ability to connect to the internet.
///
/// Note that this stream can be lossy: the caller will not necessarily
/// observe every event on the stream
pub fn bootstrap_events(&self) -> ConnStatusEvents {
self.bootstrap_status.clone()
}
/// Expire all channels that have been unused for too long.
///
/// Return the duration from now until next channel expires.
pub fn expire_channels(&self) -> Duration {
self.mgr.expire_channels()
}
/// Notifies the chanmgr to be dormant like dormancy
pub fn set_dormancy(
&self,
dormancy: Dormancy,
netparams: Arc<dyn AsRef<NetParameters>>,
) -> StdResult<(), tor_error::Bug> {
self.mgr.set_dormancy(dormancy, netparams)
}
/// Reconfigure all channels
pub fn reconfigure(
&self,
config: &ChannelConfig,
how: tor_config::Reconfigure,
netparams: Arc<dyn AsRef<NetParameters>>,
) -> StdResult<(), ReconfigureError> {
if how == tor_config::Reconfigure::CheckAllOrNothing {
// Since `self.mgr.reconfigure` returns an error type of `Bug` and not
// `ReconfigureError` (see check below), the reconfigure should only fail due to bugs.
// This means we can return `Ok` here since there should never be an error with the
// provided `config` values.
return Ok(());
}
let r = self.mgr.reconfigure(config, netparams);
// Check that `self.mgr.reconfigure` returns an error type of `Bug` (see comment above).
let _: Option<&tor_error::Bug> = r.as_ref().err();
Ok(r?)
}
/// Replace the transport registry with one that may know about
/// more transports.
///
/// Note that the [`ChannelFactory`](factory::ChannelFactory) instances returned by `ptmgr` are
/// required to time-out channels that take too long to build. You'll get
/// this behavior by default if the factories implement [`ChannelFactory`](factory::ChannelFactory) using
/// [`transport::proxied::ExternalProxyPlugin`], which `tor-ptmgr` does.
#[cfg(feature = "pt-client")]
pub fn set_pt_mgr(&self, ptmgr: Arc<dyn factory::AbstractPtMgr + 'static>) {
self.mgr.with_mut_builder(|f| f.replace_ptmgr(ptmgr));
}
/// Try to create a new, unmanaged channel to `target`.
///
/// Unlike [`get_or_launch`](ChanMgr::get_or_launch), this function always
/// creates a new channel, never retries transient failure, and does not
/// register this channel with the `ChanMgr`.
///
/// Generally you should not use this function; `get_or_launch` is usually a
/// better choice. This function is the right choice if, for whatever
/// reason, you need to manage the lifetime of the channel you create, and
/// make sure that no other code with access to this `ChanMgr` will be able
/// to use the channel.
#[cfg(feature = "experimental-api")]
pub async fn build_unmanaged_channel(
&self,
target: impl tor_linkspec::IntoOwnedChanTarget,
memquota: ChannelAccount,
) -> Result<Arc<Channel>> {
use factory::ChannelFactory as _;
let target = target.to_owned();
self.mgr
.channels
.builder()
.connect_via_transport(&target, self.mgr.reporter.clone(), memquota)
.await
}
/// Watch for things that ought to change the configuration of all channels in the client
///
/// Currently this handles enabling and disabling channel padding.
///
/// This is a daemon task that runs indefinitely in the background,
/// and exits when we find that `chanmgr` is dropped.
async fn continually_update_channels_config(
self_: Weak<Self>,
netdir: Arc<dyn NetDirProvider>,
) {
use tor_netdir::DirEvent as DE;
let mut netdir_stream = netdir.events().fuse();
let netdir = {
let weak = Arc::downgrade(&netdir);
drop(netdir);
weak
};
let termination_reason: std::result::Result<Void, &str> = async move {
loop {
select_biased! {
direvent = netdir_stream.next() => {
let direvent = direvent.ok_or("EOF on netdir provider event stream")?;
if ! matches!(direvent, DE::NewConsensus) { continue };
let self_ = self_.upgrade().ok_or("channel manager gone away")?;
let netdir = netdir.upgrade().ok_or("netdir gone away")?;
let netparams = netdir.params();
self_.mgr.update_netparams(netparams).map_err(|e| {
error_report!(e, "continually_update_channels_config: failed to process!");
"error processing netdir"
})?;
}
}
}
}
.await;
debug!(
"continually_update_channels_config: shutting down: {}",
termination_reason.void_unwrap_err()
);
}
/// Periodically expire any channels that have been unused beyond
/// the maximum duration allowed.
///
/// Exist when we find that `chanmgr` is dropped
///
/// This is a daemon task that runs indefinitely in the background
async fn continually_expire_channels(mut sched: TaskSchedule<R>, chanmgr: Weak<Self>) {
while sched.next().await.is_some() {
let Some(cm) = Weak::upgrade(&chanmgr) else {
// channel manager is closed.
return;
};
let delay = cm.expire_channels();
// This will sometimes be an underestimate, but it's no big deal; we just sleep some more.
sched.fire_in(delay);
}
}
}