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
|
//! Configuration for the Arti command line application
//
// (Thia module is called `cfg` to avoid name clash with the `config` crate, which we use.)
use derive_builder::Builder;
use serde::{Deserialize, Serialize};
use arti_client::config::TorClientConfigBuilder;
use arti_client::TorClientConfig;
use tor_config::ConfigBuildError;
use crate::{LoggingConfig, LoggingConfigBuilder};
/// Structure to hold our application configuration options
#[derive(Debug, Default, Clone, Builder, Eq, PartialEq)]
#[builder(build_fn(error = "ConfigBuildError"))]
#[builder(derive(Debug, Serialize, Deserialize))]
pub struct ApplicationConfig {
/// If true, we should watch our configuration files for changes, and reload
/// our configuration when they change.
///
/// Note that this feature may behave in unexpected ways if the path to the
/// directory holding our configuration files changes its identity (because
/// an intermediate symlink is changed, because the directory is removed and
/// recreated, or for some other reason).
#[builder(default)]
pub(crate) watch_configuration: bool,
}
/// Configuration for one or more proxy listeners.
#[derive(Deserialize, Debug, Clone, Builder, Eq, PartialEq)]
#[serde(deny_unknown_fields)]
#[builder(build_fn(error = "ConfigBuildError"))]
#[builder(derive(Debug, Serialize, Deserialize))]
pub struct ProxyConfig {
/// Port to listen on (at localhost) for incoming SOCKS
/// connections.
#[serde(default = "default_socks_port")]
#[builder(default = "default_socks_port()")]
pub(crate) socks_port: Option<u16>,
/// Port to lisen on (at localhost) for incoming DNS connections.
#[serde(default)]
#[builder(default)]
pub(crate) dns_port: Option<u16>,
}
/// Return the default value for `socks_port`
#[allow(clippy::unnecessary_wraps)]
fn default_socks_port() -> Option<u16> {
Some(9150)
}
impl Default for ProxyConfig {
fn default() -> Self {
Self::builder().build().expect("Default builder failed")
}
}
impl ProxyConfig {
/// Return a new [`ProxyConfigBuilder`].
pub fn builder() -> ProxyConfigBuilder {
ProxyConfigBuilder::default()
}
}
/// Configuration for system resources used by Tor.
///
/// You cannot change this section on a running Arti client.
#[derive(Debug, Clone, Builder, Eq, PartialEq)]
#[builder(build_fn(error = "ConfigBuildError"))]
#[builder(derive(Debug, Serialize, Deserialize))]
#[non_exhaustive]
pub struct SystemConfig {
/// Maximum number of file descriptors we should launch with
#[builder(setter(into), default = "default_max_files()")]
pub(crate) max_files: u64,
}
/// Return the default maximum number of file descriptors to launch with.
fn default_max_files() -> u64 {
16384
}
impl Default for SystemConfig {
fn default() -> Self {
Self::builder().build().expect("Default builder failed")
}
}
impl SystemConfig {
/// Return a new SystemConfigBuilder.
pub fn builder() -> SystemConfigBuilder {
SystemConfigBuilder::default()
}
}
/// Structure to hold Arti's configuration options, whether from a
/// configuration file or the command line.
//
/// These options are declared in a public crate outside of `arti` so that other
/// applications can parse and use them, if desired. If you're only embedding
/// arti via `arti-client`, and you don't want to use Arti's configuration
/// format, use [`arti_client::TorClientConfig`] instead.
///
/// By default, Arti will run using the default Tor network, store state and
/// cache information to a per-user set of directories shared by all
/// that user's applications, and run a SOCKS client on a local port.
///
/// NOTE: These are NOT the final options or their final layout. Expect NO
/// stability here.
#[derive(Debug, Builder, Clone, Eq, PartialEq, Default)]
#[builder(derive(Serialize, Deserialize, Debug))]
#[builder(build_fn(error = "ConfigBuildError"))]
pub struct ArtiConfig {
/// Configuration for application behavior.
#[builder(sub_builder)]
#[builder_field_attr(serde(default))]
application: ApplicationConfig,
/// Configuration for proxy listeners
#[builder(sub_builder)]
#[builder_field_attr(serde(default))]
proxy: ProxyConfig,
/// Logging configuration
#[builder(sub_builder)]
#[builder_field_attr(serde(default))]
logging: LoggingConfig,
/// Information on system resources used by Arti.
#[builder(sub_builder)]
#[builder_field_attr(serde(default))]
pub(crate) system: SystemConfig,
/// Configuration of the actual Tor client
#[builder(sub_builder)]
#[builder_field_attr(serde(flatten))]
tor: TorClientConfig,
}
impl TryFrom<config::Config> for ArtiConfig {
type Error = config::ConfigError;
fn try_from(cfg: config::Config) -> Result<ArtiConfig, Self::Error> {
let builder: ArtiConfigBuilder = cfg.try_deserialize()?;
builder
.build()
.map_err(|e| config::ConfigError::Foreign(Box::new(e)))
}
}
// This handwritten impl ought not to exist, but it is needed until #374 is done.
impl From<ArtiConfigBuilder> for TorClientConfigBuilder {
fn from(cfg: ArtiConfigBuilder) -> TorClientConfigBuilder {
cfg.tor
}
}
impl ArtiConfig {
/// Construct a [`TorClientConfig`] based on this configuration.
pub fn tor_client_config(&self) -> Result<TorClientConfig, ConfigBuildError> {
Ok(self.tor.clone())
}
/// Return a new ArtiConfigBuilder.
pub fn builder() -> ArtiConfigBuilder {
ArtiConfigBuilder::default()
}
/// Return the [`ApplicationConfig`] for this configuration.
pub fn application(&self) -> &ApplicationConfig {
&self.application
}
/// Return the [`LoggingConfig`] for this configuration.
pub fn logging(&self) -> &LoggingConfig {
&self.logging
}
/// Return the [`ProxyConfig`] for this configuration.
pub fn proxy(&self) -> &ProxyConfig {
&self.proxy
}
}
#[cfg(test)]
mod test {
#![allow(clippy::unwrap_used)]
use arti_client::config::dir;
use arti_config::ARTI_DEFAULTS;
use std::time::Duration;
use super::*;
#[test]
fn default_config() {
// TODO: this is duplicate code.
let cfg = config::Config::builder()
.add_source(config::File::from_str(
ARTI_DEFAULTS,
config::FileFormat::Toml,
))
.build()
.unwrap();
let parsed: ArtiConfig = cfg.try_into().unwrap();
let default = ArtiConfig::default();
assert_eq!(&parsed, &default);
// Make sure that the client configuration this gives us is the default one.
let client_config = parsed.tor_client_config().unwrap();
let dflt_client_config = TorClientConfig::default();
assert_eq!(&client_config, &dflt_client_config);
}
#[test]
fn builder() {
use tor_config::CfgPath;
let sec = std::time::Duration::from_secs(1);
let auth = dir::Authority::builder()
.name("Fred")
.v3ident([22; 20].into())
.clone();
let mut fallback = dir::FallbackDir::builder();
fallback
.rsa_identity([23; 20].into())
.ed_identity([99; 32].into())
.orports()
.push("127.0.0.7:7".parse().unwrap());
let mut bld = ArtiConfig::builder();
bld.proxy().socks_port(Some(9999));
bld.logging().console("warn");
bld.tor().tor_network().set_authorities(vec![auth]);
bld.tor().tor_network().set_fallback_caches(vec![fallback]);
bld.tor()
.storage()
.cache_dir(CfgPath::new("/var/tmp/foo".to_owned()))
.state_dir(CfgPath::new("/var/tmp/bar".to_owned()));
bld.tor().download_schedule().retry_certs().attempts(10);
bld.tor()
.download_schedule()
.retry_certs()
.initial_delay(sec);
bld.tor().download_schedule().retry_certs().parallelism(3);
bld.tor()
.download_schedule()
.retry_microdescs()
.attempts(30);
bld.tor()
.download_schedule()
.retry_microdescs()
.initial_delay(10 * sec);
bld.tor()
.download_schedule()
.retry_microdescs()
.parallelism(9);
bld.tor()
.override_net_params()
.insert("wombats-per-quokka".to_owned(), 7);
bld.tor()
.path_rules()
.ipv4_subnet_family_prefix(20)
.ipv6_subnet_family_prefix(48);
bld.tor().preemptive_circuits().disable_at_threshold(12);
bld.tor()
.preemptive_circuits()
.set_initial_predicted_ports(vec![80, 443]);
bld.tor()
.preemptive_circuits()
.prediction_lifetime(Duration::from_secs(3600))
.min_exit_circs_for_port(2);
bld.tor()
.circuit_timing()
.max_dirtiness(90 * sec)
.request_timeout(10 * sec)
.request_max_retries(22)
.request_loyalty(3600 * sec);
bld.tor().address_filter().allow_local_addrs(true);
let val = bld.build().unwrap();
assert_ne!(val, ArtiConfig::default());
}
}
|