1use std::{collections::HashSet, net::SocketAddr, time::Duration};
2
3use hopr_lib::{
4 HoprProtocolConfig, SafeModule, WinningProbability,
5 config::{
6 HoprLibConfig, HoprPacketPipelineConfig, HostConfig, HostType, ProbeConfig, SessionGlobalConfig,
7 TransportConfig,
8 },
9 exports::transport::config::HoprCodecConfig,
10};
11use hoprd_api::config::{Api, Auth};
12use proc_macro_regex::regex;
13use serde::{Deserialize, Serialize};
14use serde_with::serde_as;
15use validator::{Validate, ValidationError, ValidationErrors};
16
17pub const DEFAULT_HOST: &str = "0.0.0.0";
18pub const DEFAULT_PORT: u16 = 9091;
19
20fn validate_file_path(_s: &str) -> Result<(), ValidationError> {
26 Ok(())
27
28 }
36
37fn validate_password(s: &str) -> Result<(), ValidationError> {
38 if !s.is_empty() {
39 Ok(())
40 } else {
41 Err(ValidationError::new("No password could be found"))
42 }
43}
44
45regex!(is_private_key "^(0[xX])?[a-fA-F0-9]{128}$");
46
47pub(crate) fn validate_private_key(s: &str) -> Result<(), ValidationError> {
48 if is_private_key(s) {
49 Ok(())
50 } else {
51 Err(ValidationError::new("No valid private key could be found"))
52 }
53}
54
55fn validate_optional_private_key(s: &str) -> Result<(), ValidationError> {
56 validate_private_key(s)
57}
58
59#[derive(Default, Serialize, Deserialize, Validate, Clone, PartialEq)]
60#[serde(deny_unknown_fields)]
61pub struct Identity {
62 #[validate(custom(function = "validate_file_path"))]
63 #[serde(default)]
64 pub file: String,
65 #[validate(custom(function = "validate_password"))]
66 #[serde(default)]
67 pub password: String,
68 #[validate(custom(function = "validate_optional_private_key"))]
69 #[serde(default)]
70 pub private_key: Option<String>,
71}
72
73impl std::fmt::Debug for Identity {
74 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
75 let obfuscated: String = "<REDACTED>".into();
76
77 f.debug_struct("Identity")
78 .field("file", &self.file)
79 .field("password", &obfuscated)
80 .field("private_key", &obfuscated)
81 .finish()
82 }
83}
84
85#[derive(Debug, Clone, PartialEq, smart_default::SmartDefault, Serialize, Deserialize, Validate)]
86#[serde(deny_unknown_fields)]
87pub struct Db {
88 #[serde(default)]
90 pub data: String,
91 #[serde(default = "just_true")]
93 #[default = true]
94 pub initialize: bool,
95 #[serde(default)]
97 pub force_initialize: bool,
98}
99
100fn default_session_idle_timeout() -> Duration {
101 HoprLibConfig::default().protocol.session.idle_timeout
102}
103
104fn default_max_sessions() -> usize {
105 HoprLibConfig::default().protocol.session.maximum_sessions as usize
106}
107
108fn default_session_establish_max_retries() -> usize {
109 HoprLibConfig::default().protocol.session.establish_max_retries as usize
110}
111
112fn default_probe_recheck_threshold() -> Duration {
113 HoprLibConfig::default().protocol.probe.recheck_threshold
114}
115
116fn default_probe_interval() -> Duration {
117 HoprLibConfig::default().protocol.probe.interval
118}
119
120fn default_outgoing_ticket_winning_prob() -> Option<f64> {
121 HoprLibConfig::default()
122 .protocol
123 .packet
124 .codec
125 .outgoing_win_prob
126 .map(|p| p.as_f64())
127}
128
129#[derive(Debug, Clone, PartialEq, smart_default::SmartDefault, Serialize, Deserialize)]
131#[serde(deny_unknown_fields)]
132pub struct UserHoprNetworkConfig {
133 #[default(default_session_idle_timeout())]
135 #[serde(default = "default_session_idle_timeout", with = "humantime_serde")]
136 pub session_idle_timeout: Duration,
137 #[default(default_max_sessions())]
139 #[serde(default = "default_max_sessions")]
140 pub maximum_sessions: usize,
141 #[default(default_session_establish_max_retries())]
143 #[serde(default = "default_session_establish_max_retries")]
144 pub session_establish_max_retries: usize,
145 #[default(default_probe_recheck_threshold())]
147 #[serde(default = "default_probe_recheck_threshold", with = "humantime_serde")]
148 pub probe_recheck_threshold: Duration,
149 #[default(default_probe_interval())]
151 #[serde(default = "default_probe_interval", with = "humantime_serde")]
152 pub probe_interval: Duration,
153 #[serde(default)]
155 pub announce_local_addresses: bool,
156 #[serde(default)]
158 pub prefer_local_addresses: bool,
159 #[default(default_outgoing_ticket_winning_prob())]
161 #[serde(default = "default_outgoing_ticket_winning_prob")]
162 pub outgoing_ticket_winning_prob: Option<f64>,
163}
164
165#[derive(Debug, Clone, PartialEq, smart_default::SmartDefault, Serialize, Deserialize)]
167#[serde(deny_unknown_fields)]
168pub struct UserHoprLibConfig {
169 #[default(just_true())]
171 #[serde(default = "just_true")]
172 pub announce: bool,
173 #[default(default_host())]
175 #[serde(default = "default_host")]
176 pub host: HostConfig,
177 #[serde(default)]
179 pub safe_module: SafeModule,
180 #[serde(default)]
182 pub network: UserHoprNetworkConfig,
183}
184
185#[inline]
188fn default_host() -> HostConfig {
189 HostConfig {
190 address: HostType::IPv4(hopr_lib::config::DEFAULT_HOST.to_owned()),
191 port: hopr_lib::config::DEFAULT_PORT,
192 }
193}
194
195impl From<UserHoprLibConfig> for HoprLibConfig {
196 fn from(value: UserHoprLibConfig) -> Self {
197 HoprLibConfig {
198 host: value.host,
199 publish: value.announce,
200 safe_module: value.safe_module,
201 protocol: HoprProtocolConfig {
202 transport: TransportConfig {
203 announce_local_addresses: value.network.announce_local_addresses,
204 prefer_local_addresses: value.network.prefer_local_addresses,
205 },
206 network: Default::default(),
207 packet: HoprPacketPipelineConfig {
208 codec: HoprCodecConfig {
209 outgoing_win_prob: value
210 .network
211 .outgoing_ticket_winning_prob
212 .and_then(|v| WinningProbability::try_from_f64(v).ok()),
213 ..Default::default()
214 },
215 ..Default::default()
216 },
217 probe: ProbeConfig {
218 interval: value.network.probe_interval,
219 recheck_threshold: value.network.probe_recheck_threshold,
220 ..Default::default()
221 },
222 session: SessionGlobalConfig {
223 idle_timeout: value.network.session_idle_timeout,
224 maximum_sessions: value.network.maximum_sessions as u32,
225 establish_max_retries: value.network.session_establish_max_retries as u32,
226 ..Default::default()
227 },
228 },
229 }
230 }
231}
232
233impl Validate for UserHoprLibConfig {
234 fn validate(&self) -> Result<(), ValidationErrors> {
235 HoprLibConfig::from(self.clone()).validate()
236 }
237}
238
239#[derive(Debug, Serialize, Deserialize, Validate, Clone, PartialEq, smart_default::SmartDefault)]
247#[serde(deny_unknown_fields)]
248pub struct HoprdConfig {
249 #[validate(nested)]
251 #[serde(default)]
252 pub hopr: UserHoprLibConfig,
253 #[validate(nested)]
255 #[serde(default)]
256 pub identity: Identity,
257 #[validate(nested)]
259 #[serde(default)]
260 pub db: Db,
261 #[validate(nested)]
263 #[serde(default)]
264 pub api: Api,
265 #[validate(nested)]
267 #[serde(default)]
268 pub session_ip_forwarding: SessionIpForwardingConfig,
269 #[validate(url)]
271 pub blokli_url: Option<String>,
272 #[validate(nested)]
277 #[serde(default = "hopr_strategy::hopr_default_strategies")]
278 #[default(hopr_strategy::hopr_default_strategies())]
279 pub strategy: hopr_strategy::StrategyConfig,
280}
281
282impl HoprdConfig {
283 pub fn as_redacted(&self) -> Self {
284 let mut ret = self.clone();
285 match ret.api.auth {
287 Auth::None => {}
288 Auth::Token(_) => ret.api.auth = Auth::Token("<REDACTED>".to_owned()),
289 }
290
291 if ret.identity.private_key.is_some() {
292 ret.identity.private_key = Some("<REDACTED>".to_owned());
293 }
294
295 "<REDACTED>".clone_into(&mut ret.identity.password);
296
297 ret
298 }
299
300 pub fn as_redacted_string(&self) -> crate::errors::Result<String> {
301 let redacted_cfg = self.as_redacted();
302 serde_json::to_string(&redacted_cfg).map_err(|e| crate::errors::HoprdError::SerializationError(e.to_string()))
303 }
304}
305
306fn default_target_retry_delay() -> Duration {
307 Duration::from_secs(2)
308}
309
310fn default_entry_listen_host() -> SocketAddr {
311 "127.0.0.1:0".parse().unwrap()
312}
313
314fn default_max_tcp_target_retries() -> u32 {
315 10
316}
317
318fn just_true() -> bool {
319 true
320}
321
322#[serde_as]
325#[derive(
326 Clone, Debug, Eq, PartialEq, smart_default::SmartDefault, serde::Deserialize, serde::Serialize, validator::Validate,
327)]
328pub struct SessionIpForwardingConfig {
329 #[serde(default = "just_true")]
334 #[default(true)]
335 pub use_target_allow_list: bool,
336
337 #[serde(default)]
344 #[serde_as(as = "HashSet<serde_with::DisplayFromStr>")]
345 pub target_allow_list: HashSet<SocketAddr>,
346
347 #[serde(default = "default_target_retry_delay")]
351 #[default(default_target_retry_delay())]
352 #[serde_as(as = "serde_with::DurationSeconds<u64>")]
353 pub tcp_target_retry_delay: Duration,
354
355 #[serde(default = "default_max_tcp_target_retries")]
359 #[default(default_max_tcp_target_retries())]
360 #[validate(range(min = 1))]
361 pub max_tcp_target_retries: u32,
362
363 #[serde(default = "default_entry_listen_host")]
366 #[default(default_entry_listen_host())]
367 #[serde_as(as = "serde_with::DisplayFromStr")]
368 pub default_entry_listen_host: SocketAddr,
369}
370
371#[cfg(test)]
372mod tests {
373 use std::{
374 io::{Read, Write},
375 str::FromStr,
376 };
377
378 use anyhow::Context;
379 use clap::{Args, Command, FromArgMatches};
380 use hopr_lib::Address;
381 use tempfile::NamedTempFile;
382
383 use super::*;
384
385 pub fn example_cfg() -> anyhow::Result<HoprdConfig> {
386 let safe_module = hopr_lib::config::SafeModule {
387 safe_transaction_service_provider: "https:://provider.com/".to_owned(),
388 safe_address: Address::from_str("0x0000000000000000000000000000000000000000")?,
389 module_address: Address::from_str("0x0000000000000000000000000000000000000000")?,
390 };
391
392 let identity = Identity {
393 file: "path/to/identity.file".to_string(),
394 password: "change_me".to_owned(),
395 private_key: None,
396 };
397
398 let host = HostConfig {
399 address: HostType::IPv4("1.2.3.4".into()),
400 port: 9091,
401 };
402
403 Ok(HoprdConfig {
404 hopr: UserHoprLibConfig {
405 host,
406 safe_module,
407 ..Default::default()
408 },
409 db: Db {
410 data: "/app/db".to_owned(),
411 ..Default::default()
412 },
413 identity,
414 ..HoprdConfig::default()
415 })
416 }
417
418 #[test]
419 fn test_config_should_be_serializable_into_string() -> anyhow::Result<()> {
420 let cfg = example_cfg()?;
421
422 let from_yaml: HoprdConfig = serde_yaml::from_str(include_str!("../example_cfg.yaml"))?;
423 assert_eq!(cfg, from_yaml);
424
425 Ok(())
426 }
427
428 #[test]
429 fn test_config_should_be_deserializable_from_a_string_in_a_file() -> anyhow::Result<()> {
430 let mut config_file = NamedTempFile::new()?;
431 let mut prepared_config_file = config_file.reopen()?;
432
433 let cfg = example_cfg()?;
434 let yaml = serde_yaml::to_string(&cfg)?;
435 config_file.write_all(yaml.as_bytes())?;
436
437 let mut buf = String::new();
438 prepared_config_file.read_to_string(&mut buf)?;
439 let deserialized_cfg: HoprdConfig = serde_yaml::from_str(&buf)?;
440
441 assert_eq!(deserialized_cfg, cfg);
442
443 Ok(())
444 }
445
446 #[test]
450 #[ignore]
451 fn test_config_is_extractable_from_the_cli_arguments() -> anyhow::Result<()> {
452 let pwnd = "rpc://pawned!";
453
454 let mut config_file = NamedTempFile::new()?;
455
456 let mut cfg = example_cfg()?;
457 cfg.blokli_url = Some(pwnd.to_owned());
458
459 let yaml = serde_yaml::to_string(&cfg)?;
460 config_file.write_all(yaml.as_bytes())?;
461 let cfg_file_path = config_file
462 .path()
463 .to_str()
464 .context("file path should have a string representation")?
465 .to_string();
466
467 let cli_args = vec!["hoprd", "--configurationFilePath", cfg_file_path.as_str()];
468
469 let mut cmd = Command::new("hoprd").version("0.0.0");
470 cmd = crate::cli::CliArgs::augment_args(cmd);
471 let derived_matches = cmd.try_get_matches_from(cli_args)?;
472 let args = crate::cli::CliArgs::from_arg_matches(&derived_matches)?;
473
474 let cfg = HoprdConfig::try_from(args)?;
476
477 assert_eq!(cfg.blokli_url, Some(pwnd.to_owned()));
478
479 Ok(())
480 }
481}