1
#![cfg_attr(docsrs, feature(doc_cfg))]
2
#![doc = include_str!("../README.md")]
3
// @@ begin lint list maintained by maint/add_warning @@
4
#![allow(renamed_and_removed_lints)] // @@REMOVE_WHEN(ci_arti_stable)
5
#![allow(unknown_lints)] // @@REMOVE_WHEN(ci_arti_nightly)
6
#![warn(missing_docs)]
7
#![warn(noop_method_call)]
8
#![warn(unreachable_pub)]
9
#![warn(clippy::all)]
10
#![deny(clippy::await_holding_lock)]
11
#![deny(clippy::cargo_common_metadata)]
12
#![deny(clippy::cast_lossless)]
13
#![deny(clippy::checked_conversions)]
14
#![allow(clippy::cognitive_complexity)] // See arti#2556
15
#![deny(clippy::debug_assert_with_mut_call)]
16
#![deny(clippy::exhaustive_enums)]
17
#![deny(clippy::exhaustive_structs)]
18
#![deny(clippy::expl_impl_clone_on_copy)]
19
#![deny(clippy::fallible_impl_from)]
20
#![deny(clippy::implicit_clone)]
21
#![deny(clippy::large_stack_arrays)]
22
#![warn(clippy::manual_ok_or)]
23
#![deny(clippy::missing_docs_in_private_items)]
24
#![warn(clippy::needless_borrow)]
25
#![warn(clippy::needless_pass_by_value)]
26
#![warn(clippy::option_option)]
27
#![deny(clippy::print_stderr)]
28
#![deny(clippy::print_stdout)]
29
#![warn(clippy::rc_buffer)]
30
#![deny(clippy::ref_option_ref)]
31
#![warn(clippy::semicolon_if_nothing_returned)]
32
#![warn(clippy::trait_duplication_in_bounds)]
33
#![deny(clippy::unchecked_time_subtraction)]
34
#![deny(clippy::unnecessary_wraps)]
35
#![warn(clippy::unseparated_literal_suffix)]
36
#![deny(clippy::unwrap_used)]
37
#![deny(clippy::mod_module_files)]
38
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
39
#![allow(clippy::uninlined_format_args)]
40
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
41
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
42
#![allow(clippy::needless_raw_string_hashes)] // complained-about code is fine, often best
43
#![allow(clippy::needless_lifetimes)] // See arti#1765
44
#![allow(mismatched_lifetime_syntaxes)] // temporary workaround for arti#2060
45
#![allow(clippy::collapsible_if)] // See arti#2342
46
#![deny(clippy::unused_async)]
47
#![deny(clippy::string_slice)] // See arti#2571
48
//! <!-- @@ end lint list maintained by maint/add_warning @@ -->
49

            
50
pub mod config;
51
pub mod err;
52

            
53
#[cfg(feature = "managed-pts")]
54
pub mod ipc;
55

            
56
#[cfg(feature = "managed-pts")]
57
mod managed;
58

            
59
use crate::config::{TransportConfig, TransportOptions};
60
use crate::err::PtError;
61
use std::collections::HashMap;
62
use std::net::SocketAddr;
63
use std::path::PathBuf;
64
use std::sync::{Arc, RwLock};
65
use tor_chanmgr::ProxyProtocol;
66
use tor_config_path::CfgPathResolver;
67
use tor_linkspec::PtTransportName;
68
use tor_rtcompat::Runtime;
69
use tor_socksproto::SocksVersion;
70
use tracing::warn;
71
#[cfg(feature = "managed-pts")]
72
use {
73
    crate::managed::{PtReactor, PtReactorMessage},
74
    futures::channel::mpsc::{self, UnboundedSender},
75
    tor_error::error_report,
76
    tor_rtcompat::SpawnExt,
77
};
78
#[cfg(feature = "tor-channel-factory")]
79
use {
80
    async_trait::async_trait,
81
    tor_chanmgr::{
82
        builder::ChanBuilder,
83
        factory::{AbstractPtError, ChannelFactory},
84
        transport::ExternalProxyPlugin,
85
    },
86
    tracing::trace,
87
};
88
#[cfg(all(feature = "managed-pts", feature = "tor-channel-factory"))]
89
use {oneshot_fused_workaround as oneshot, tracing::info};
90

            
91
/// Shared mutable state between the `PtReactor` and `PtMgr`.
92
#[derive(Default, Debug)]
93
struct PtSharedState {
94
    /// Connection information for pluggable transports from currently running binaries.
95
    ///
96
    /// Unmanaged pluggable transports are not included in this map.
97
    #[cfg(feature = "managed-pts")]
98
    managed_cmethods: HashMap<PtTransportName, PtClientMethod>,
99
    /// Current configured set of pluggable transports.
100
    configured: HashMap<PtTransportName, TransportOptions>,
101
    /// The global Tor outbound proxy, if any.
102
    outbound_proxy: Option<ProxyProtocol>,
103
}
104

            
105
/// A pluggable transport manager knows how to make different
106
/// kinds of connections to the Tor network, for censorship avoidance.
107
pub struct PtMgr<R> {
108
    /// An underlying `Runtime`, used to spawn background tasks.
109
    #[allow(dead_code)]
110
    runtime: R,
111
    /// State for this `PtMgr` that's shared with the `PtReactor`.
112
    state: Arc<RwLock<PtSharedState>>,
113
    /// PtReactor channel when the `managed-pts` feature is enabled.
114
    #[cfg(feature = "managed-pts")]
115
    tx: UnboundedSender<PtReactorMessage>,
116
}
117

            
118
impl<R: Runtime> PtMgr<R> {
119
    /// Transform the config into a more useful representation indexed by transport name.
120
    fn transform_config(
121
        binaries: Vec<TransportConfig>,
122
    ) -> Result<HashMap<PtTransportName, TransportOptions>, tor_error::Bug> {
123
        let mut ret = HashMap::new();
124
        // FIXME(eta): You can currently specify overlapping protocols, and it'll
125
        //             just use the last transport specified.
126
        //             I attempted to fix this, but decided I didn't want to stare into the list
127
        //             builder macro void after trying it for 15 minutes.
128
        for thing in binaries {
129
            for tn in thing.protocols.iter() {
130
                ret.insert(tn.clone(), thing.clone().try_into()?);
131
            }
132
        }
133
        for opt in ret.values() {
134
            match opt {
135
                TransportOptions::Unmanaged(u) => {
136
                    if !u.is_localhost() {
137
                        warn!(
138
                            "Configured to connect to a PT on a non-local addresses. This is usually insecure! We recommend running PTs on localhost only."
139
                        );
140
                    }
141
                }
142
                #[cfg(feature = "managed-pts")]
143
                TransportOptions::Managed(_) => {
144
                    // Nothing to check here,
145
                    // since we should spawn the managed PT and
146
                    // we shouldn't know what address it will listen on yet.
147
                }
148
            }
149
        }
150
        Ok(ret)
151
    }
152

            
153
    /// Create a new PtMgr.
154
    // TODO: maybe don't have the Vec directly exposed?
155
    pub fn new(
156
        transports: Vec<TransportConfig>,
157
        #[allow(unused)] state_dir: PathBuf,
158
        #[allow(unused)] path_resolver: Arc<CfgPathResolver>,
159
        outbound_proxy: Option<ProxyProtocol>,
160
        rt: R,
161
    ) -> Result<Self, PtError> {
162
        let state = PtSharedState {
163
            #[cfg(feature = "managed-pts")]
164
            managed_cmethods: Default::default(),
165
            configured: Self::transform_config(transports)?,
166
            outbound_proxy,
167
        };
168
        let state = Arc::new(RwLock::new(state));
169

            
170
        // reactor is only needed if we support managed pts
171
        #[cfg(feature = "managed-pts")]
172
        let tx = {
173
            let (tx, rx) = mpsc::unbounded();
174

            
175
            let mut reactor =
176
                PtReactor::new(rt.clone(), state.clone(), rx, state_dir, path_resolver);
177
            rt.spawn(async move {
178
                loop {
179
                    match reactor.run_one_step().await {
180
                        Ok(true) => return,
181
                        Ok(false) => {}
182
                        Err(e) => {
183
                            error_report!(e, "PtReactor failed");
184
                            return;
185
                        }
186
                    }
187
                }
188
            })
189
            .map_err(|e| PtError::Spawn { cause: Arc::new(e) })?;
190

            
191
            tx
192
        };
193

            
194
        Ok(Self {
195
            runtime: rt,
196
            state,
197
            #[cfg(feature = "managed-pts")]
198
            tx,
199
        })
200
    }
201

            
202
    /// Reload the configuration
203
    pub fn reconfigure(
204
        &self,
205
        how: tor_config::Reconfigure,
206
        transports: Vec<TransportConfig>,
207
        outbound_proxy: Option<ProxyProtocol>,
208
    ) -> Result<(), tor_config::ReconfigureError> {
209
        let configured = Self::transform_config(transports)?;
210
        if how == tor_config::Reconfigure::CheckAllOrNothing {
211
            return Ok(());
212
        }
213
        {
214
            let mut inner = self.state.write().expect("ptmgr poisoned");
215
            inner.configured = configured;
216
            inner.outbound_proxy = outbound_proxy;
217
        }
218
        // We don't have any way of propagating this sanely; the caller will find out the reactor
219
        // has died later on anyway.
220
        // TODO(#2634):
221
        // PT reactor doesn't appear to update its running list when Reconfigured.
222
        // Change logic in PtReactor::run_one_step(...)
223
        // to update the running list upon receiving a reconfigured message.
224
        #[cfg(feature = "managed-pts")]
225
        let _ = self.tx.unbounded_send(PtReactorMessage::Reconfigured);
226
        Ok(())
227
    }
228

            
229
    /// Given a transport name, return a method that we can use to contact that transport.
230
    ///
231
    /// May have to launch a managed transport as needed.
232
    ///
233
    /// Returns Ok(None) if no such transport exists.
234
    #[cfg(feature = "tor-channel-factory")]
235
    async fn get_cmethod_for_transport(
236
        &self,
237
        transport: &PtTransportName,
238
    ) -> Result<Option<PtClientMethod>, PtError> {
239
        let (cfg, managed_cmethod) = {
240
            // NOTE(eta): This is using a RwLock inside async code (but not across an await point).
241
            //            Arguably this is fine since it's just a small read, and nothing should ever
242
            //            hold this lock for very long.
243
            let inner = self.state.read().expect("ptmgr poisoned");
244
            let cfg = inner.configured.get(transport);
245
            let managed_cmethod = inner.managed_cmethods.get(transport);
246
            (cfg.cloned(), managed_cmethod.cloned())
247
        };
248

            
249
        #[cfg(not(feature = "managed-pts"))]
250
        let _ = managed_cmethod; // avoid unused variable warning
251

            
252
        match cfg {
253
            Some(TransportOptions::Unmanaged(cfg)) => {
254
                let cmethod = cfg.cmethod();
255
                trace!(
256
                    "Found configured unmanaged transport {transport} accessible via {cmethod:?}"
257
                );
258
                Ok(Some(cmethod))
259
            }
260
            #[cfg(feature = "managed-pts")]
261
            Some(TransportOptions::Managed(_cfg)) => {
262
                match managed_cmethod {
263
                    // A configured-and-running cmethod.
264
                    Some(cmethod) => {
265
                        trace!(
266
                            "Found configured managed transport {transport} accessible via {cmethod:?}"
267
                        );
268
                        Ok(Some(cmethod))
269
                    }
270
                    // A configured-but-not-running cmethod.
271
                    None => {
272
                        // There is going to be a lot happening "under the hood" here.
273
                        //
274
                        // When we are asked to get a ChannelFactory for a given
275
                        // connection, we will need to:
276
                        //    - launch the binary for that transport if it is not already running*.
277
                        //    - If we launched the binary, talk to it and see which ports it
278
                        //      is listening on.
279
                        //    - Return a ChannelFactory that connects via one of those ports,
280
                        //      using the appropriate version of SOCKS, passing K=V parameters
281
                        //      encoded properly.
282
                        //
283
                        // * As in other managers, we'll need to avoid trying to launch the same
284
                        //   transport twice if we get two concurrent requests.
285
                        //
286
                        // Later if the binary crashes, we should detect that.  We should relaunch
287
                        // it on demand.
288
                        //
289
                        // On reconfigure, we should shut down any no-longer-used transports.
290
                        //
291
                        // Maybe, we should shut down transports that haven't been used
292
                        // for a long time.
293
                        Ok(Some(self.spawn_transport(transport).await?))
294
                    }
295
                }
296
            }
297
            // No configuration for this transport.
298
            None => {
299
                trace!("Got a request for transport {transport}, which is not configured.");
300
                Ok(None)
301
            }
302
        }
303
    }
304

            
305
    /// Communicate with the PT reactor to launch a managed transport.
306
    #[cfg(all(feature = "tor-channel-factory", feature = "managed-pts"))]
307
    async fn spawn_transport(
308
        &self,
309
        transport: &PtTransportName,
310
    ) -> Result<PtClientMethod, PtError> {
311
        // Tell the reactor to spawn the PT, and wait for it.
312
        // (The reactor will handle coalescing multiple requests.)
313
        info!(
314
            "Got a request for transport {transport}, which is not currently running. Launching it."
315
        );
316

            
317
        let (tx, rx) = oneshot::channel();
318
        self.tx
319
            .unbounded_send(PtReactorMessage::Spawn {
320
                pt: transport.clone(),
321
                result: tx,
322
            })
323
            .map_err(|_| {
324
                PtError::Internal(tor_error::internal!("PT reactor closed unexpectedly"))
325
            })?;
326

            
327
        let method = match rx.await {
328
            Err(_) => {
329
                return Err(PtError::Internal(tor_error::internal!(
330
                    "PT reactor closed unexpectedly"
331
                )));
332
            }
333
            Ok(Err(e)) => {
334
                warn!("PT for {transport} failed to launch: {e}");
335
                return Err(e);
336
            }
337
            Ok(Ok(method)) => method,
338
        };
339

            
340
        info!("Successfully launched PT for {transport} at {method:?}.");
341
        Ok(method)
342
    }
343
}
344

            
345
/// A SOCKS endpoint to connect through a pluggable transport.
346
#[derive(Debug, Clone, PartialEq, Eq)]
347
pub struct PtClientMethod {
348
    /// The SOCKS protocol version to use.
349
    pub(crate) kind: SocksVersion,
350
    /// The socket address to connect to.
351
    pub(crate) endpoint: SocketAddr,
352
}
353

            
354
impl PtClientMethod {
355
    /// Get the SOCKS protocol version to use.
356
    pub fn kind(&self) -> SocksVersion {
357
        self.kind
358
    }
359

            
360
    /// Get the socket address to connect to.
361
    pub fn endpoint(&self) -> SocketAddr {
362
        self.endpoint
363
    }
364
}
365

            
366
#[cfg(feature = "tor-channel-factory")]
367
#[async_trait]
368
impl<R: Runtime> tor_chanmgr::factory::AbstractPtMgr for PtMgr<R> {
369
    async fn factory_for_transport(
370
        &self,
371
        transport: &PtTransportName,
372
    ) -> Result<Option<Arc<dyn ChannelFactory + Send + Sync>>, Arc<dyn AbstractPtError>> {
373
        let cmethod = match self.get_cmethod_for_transport(transport).await {
374
            Err(e) => return Err(Arc::new(e)),
375
            Ok(None) => return Ok(None),
376
            Ok(Some(m)) => m,
377
        };
378

            
379
        let proxy = ExternalProxyPlugin::new(self.runtime.clone(), cmethod.endpoint, cmethod.kind);
380
        let factory = ChanBuilder::new_client(self.runtime.clone(), proxy);
381
        // FIXME(eta): Should we cache constructed factories? If no: should this still be an Arc?
382
        // FIXME(eta): Should we track what transports are live somehow, so we can shut them down?
383
        Ok(Some(Arc::new(factory)))
384
    }
385
}