//! Configure and implement onion service reverse-proxy feature. use std::{ collections::{btree_map::Entry, BTreeMap, HashSet}, sync::{Arc, Mutex}, }; use arti_client::config::onion_service::{OnionServiceConfig, OnionServiceConfigBuilder}; use futures::task::SpawnExt; use tor_config::{ define_list_builder_helper, impl_standard_builder, ConfigBuildError, Flatten, Reconfigure, ReconfigureError, }; use tor_error::warn_report; use tor_hsrproxy::{config::ProxyConfigBuilder, OnionServiceReverseProxy, ProxyConfig}; use tor_hsservice::{HsNickname, RunningOnionService}; use tor_rtcompat::Runtime; use tracing::debug; /// Configuration for running an onion service from `arti`. /// /// This onion service will forward incoming connections to one or more local /// ports, depending on its configuration. If you need it to do something else /// with incoming connections, or if you need finer-grained control over its /// behavior, consider using /// [`TorClient::launch_onion_service`](arti_client::TorClient::launch_onion_service). #[derive(Clone, Debug, Eq, PartialEq)] pub struct OnionServiceProxyConfig { /// Configuration for the onion service itself. pub(crate) svc_cfg: OnionServiceConfig, /// Configuration for the reverse proxy that handles incoming connections /// from the onion service. pub(crate) proxy_cfg: ProxyConfig, } /// Builder object to construct an [`OnionServiceProxyConfig`]. // // We cannot easily use derive_builder on this builder type, since we want it to be a // "Flatten<>" internally. Fortunately, it's easy enough to implement the // pieces that we need. #[derive(Clone, Debug, serde::Serialize, serde::Deserialize, Default)] #[serde(transparent)] pub struct OnionServiceProxyConfigBuilder(Flatten); impl OnionServiceProxyConfigBuilder { /// Try to construct an [`OnionServiceProxyConfig`]. /// /// Returns an error if any part of this builder is invalid. pub fn build(&self) -> Result { let svc_cfg = self.0 .0.build()?; let proxy_cfg = self.0 .1.build()?; Ok(OnionServiceProxyConfig { svc_cfg, proxy_cfg }) } /// Return a mutable reference to an onion-service configuration sub-builder. pub fn service(&mut self) -> &mut OnionServiceConfigBuilder { &mut self.0 .0 } /// Return a mutable reference to a proxy configuration sub-builder. pub fn proxy(&mut self) -> &mut ProxyConfigBuilder { &mut self.0 .1 } } impl_standard_builder! { OnionServiceProxyConfig: !Default } /// Alias for a `BTreeMap` of `OnionServiceProxyConfig`; used to make derive_builder /// happy. #[cfg(feature = "onion-service-service")] pub(crate) type OnionServiceProxyConfigMap = BTreeMap; /// The serialized format of an OnionServiceProxyConfigListBuilder: /// a map from nickname to `OnionServiceConfigBuilder` type ProxyBuilderMap = BTreeMap; // TODO: Someday we might want to have an API for a MapBuilder that is distinct // from that of a ListBuilder. It would have to enforce that everything has a // key, and that keys are distinct. #[cfg(feature = "onion-service-service")] define_list_builder_helper! { pub struct OnionServiceProxyConfigMapBuilder { services: [OnionServiceProxyConfigBuilder], } built: OnionServiceProxyConfigMap = build_list(services)?; default = vec![]; #[serde(try_from="ProxyBuilderMap", into="ProxyBuilderMap")] } /// Construct a OnionServiceProxyConfigList from a vec of OnionServiceProxyConfig; /// enforce that nicknames are unique. fn build_list( services: Vec, ) -> Result { // TODO: Add a test for this function. // // It *is* reachable from OnionServiceProxyConfigMapBuilder::build(), since // that builder's API uses push() to add OnionServiceProxyConfigBuilders to // an internal _list_. Alternatively, we might want to have a distinct // MapBuilder type. let mut map = BTreeMap::new(); for service in services { if let Some(previous_value) = map.insert(service.svc_cfg.nickname().clone(), service) { return Err(ConfigBuildError::Inconsistent { fields: vec!["nickname".into()], problem: format!( "Multiple onion services with the nickname {}", previous_value.svc_cfg.nickname() ), }); }; } Ok(map) } impl TryFrom for OnionServiceProxyConfigMapBuilder { type Error = ConfigBuildError; fn try_from(value: ProxyBuilderMap) -> Result { let mut list_builder = OnionServiceProxyConfigMapBuilder::default(); for (nickname, mut cfg) in value { match cfg.0 .0.peek_nickname() { Some(n) if n == &nickname => (), None => (), Some(other) => { return Err(ConfigBuildError::Inconsistent { fields: vec![nickname.to_string(), format!("{nickname}.{other}")], problem: "mismatched nicknames on onion service.".into(), }); } } cfg.0 .0.nickname(nickname); list_builder.access().push(cfg); } Ok(list_builder) } } impl From for ProxyBuilderMap { /// Convert our Builder representation of a set of onion services into the /// format that serde will serialize. /// /// Note: This is a potentially lossy conversion, since the serialized format /// can't represent partially-built services without a nickname, or /// a collection of services with duplicate nicknames. fn from(value: OnionServiceProxyConfigMapBuilder) -> Self { let mut map = BTreeMap::new(); for cfg in value.services.into_iter().flatten() { let nickname = cfg.0 .0.peek_nickname().cloned().unwrap_or_else(|| { "Unnamed" .to_string() .try_into() .expect("'Unnamed' was not a valid nickname") }); map.insert(nickname, cfg); } map } } /// A running onion service and an associated reverse proxy. /// /// This is what a user configures when they add an onion service to their /// configuration. #[must_use = "a hidden service Proxy object will terminate the service when dropped"] struct Proxy { /// The onion service. /// /// This is launched and running. svc: Arc, /// The reverse proxy that accepts connections from the onion service. /// /// This is also launched and running. proxy: Arc, } impl Proxy { /// Create and launch a new onion service proxy, using a given `client`, /// to handle connections according to `config`. pub(crate) fn launch_new( client: &arti_client::TorClient, config: OnionServiceProxyConfig, ) -> anyhow::Result { let OnionServiceProxyConfig { svc_cfg, proxy_cfg } = config; let nickname = svc_cfg.nickname().clone(); let (svc, request_stream) = client.launch_onion_service(svc_cfg)?; let proxy = OnionServiceReverseProxy::new(proxy_cfg); { let proxy = proxy.clone(); let runtime_clone = client.runtime().clone(); client.runtime().spawn(async move { match proxy .handle_requests(runtime_clone, nickname.clone(), request_stream) .await { Ok(()) => { debug!("Onion service {} exited cleanly.", nickname); } Err(e) => { warn_report!(e, "Onion service {} exited with an error", nickname); } } })?; } Ok(Proxy { svc, proxy }) } /// Reconfigure this proxy, using the new configuration `config` and the /// rules in `how`. fn reconfigure( &mut self, config: OnionServiceProxyConfig, how: Reconfigure, ) -> Result<(), ReconfigureError> { if matches!(how, Reconfigure::AllOrNothing) { self.reconfigure_inner(config.clone(), Reconfigure::CheckAllOrNothing)?; } self.reconfigure_inner(config, how) } /// Helper for reconfigure: Run `reconfigure` on each part of this `Proxy`. fn reconfigure_inner( &mut self, config: OnionServiceProxyConfig, how: Reconfigure, ) -> Result<(), ReconfigureError> { let OnionServiceProxyConfig { svc_cfg, proxy_cfg } = config; self.svc.reconfigure(svc_cfg, how)?; self.proxy.reconfigure(proxy_cfg, how)?; Ok(()) } } /// A set of configured onion service proxies. #[must_use = "a hidden service ProxySet object will terminate the services when dropped"] pub(crate) struct ProxySet { /// The arti_client that we use to launch proxies. client: arti_client::TorClient, /// The proxies themselves, indexed by nickname. proxies: Mutex>, } impl ProxySet { /// Create and launch a set of onion service proxies. pub(crate) fn launch_new( client: &arti_client::TorClient, config_list: OnionServiceProxyConfigMap, ) -> anyhow::Result { let proxies: BTreeMap<_, _> = config_list .into_iter() .map(|(nickname, cfg)| Ok((nickname, Proxy::launch_new(client, cfg)?))) .collect::>>()?; Ok(Self { client: client.clone(), proxies: Mutex::new(proxies), }) } /// Try to reconfigure the set of onion proxies according to the /// configuration in `new_config`. /// /// Launches or closes proxies as necessary. Does not close existing /// connections. pub(crate) fn reconfigure( &self, new_config: OnionServiceProxyConfigMap, // TODO: this should probably take `how: Reconfigure` and implement an all-or-nothing mode. // See #1156. ) -> Result<(), anyhow::Error> { let mut proxy_map = self.proxies.lock().expect("lock poisoned"); // Set of the nicknames of defunct proxies. let mut defunct_nicknames: HashSet<_> = proxy_map.keys().map(Clone::clone).collect(); for cfg in new_config.into_values() { let nickname = cfg.svc_cfg.nickname().clone(); // This proxy is still configured, so remove it from the list of // defunct proxies. defunct_nicknames.remove(&nickname); match proxy_map.entry(nickname) { Entry::Occupied(mut existing_proxy) => { // We already have a proxy by this name, so we try to // reconfigure it. existing_proxy .get_mut() .reconfigure(cfg, Reconfigure::WarnOnFailures)?; } Entry::Vacant(ent) => { // We do not have a proxy by this name, so we try to launch // one. match Proxy::launch_new(&self.client, cfg) { Ok(new_proxy) => { ent.insert(new_proxy); } Err(err) => { warn_report!(err, "Unable to launch onion service {}", ent.key()); } } } } } for nickname in defunct_nicknames { // We no longer have any configuration for this proxy, so we remove // it from our map. let defunct_proxy = proxy_map .remove(&nickname) .expect("Somehow a proxy disappeared from the map"); // This "drop" should shut down the proxy. drop(defunct_proxy); } Ok(()) } } impl crate::reload_cfg::ReconfigurableModule for ProxySet { fn reconfigure(&self, new: &crate::ArtiCombinedConfig) -> anyhow::Result<()> { ProxySet::reconfigure(self, new.0.onion_services.clone())?; Ok(()) } }