use std::{io::Cursor, sync::LazyLock};
use clap::{ArgAction, Parser};
use config::{ConfigError, Map, Source, Value, ValueKind};
use getset::{CopyGetters, Getters};
use libmoshpit::PathDefaults;
use vergen_pretty::{Pretty, vergen_pretty_env};
static LONG_VERSION: LazyLock<String> = LazyLock::new(|| {
let pretty = Pretty::builder().env(vergen_pretty_env!()).build();
let mut cursor = Cursor::new(vec![]);
let mut output = env!("CARGO_PKG_VERSION").to_string();
output.push_str("\n\n");
pretty
.display(&mut cursor)
.expect("writing to Vec never fails");
output += &String::from_utf8_lossy(cursor.get_ref());
output
});
#[derive(Clone, CopyGetters, Debug, Getters, Parser)]
#[command(author, version, about, long_version = LONG_VERSION.as_str(), long_about = None)]
pub(crate) struct Cli {
#[clap(
short,
long,
action = ArgAction::Count,
help = "Turn up logging verbosity (multiple will turn it up more)",
conflicts_with = "quiet",
)]
#[getset(get_copy = "pub(crate)")]
verbose: u8,
#[clap(
short,
long,
action = ArgAction::Count,
help = "Turn down logging verbosity (multiple will turn it down more)",
conflicts_with = "verbose",
)]
#[getset(get_copy = "pub(crate)")]
quiet: u8,
#[clap(short, long, help = "Specify the absolute path to the config file")]
#[getset(get = "pub(crate)")]
config_absolute_path: Option<String>,
#[clap(
short,
long,
help = "Specify the absolute path to the tracing output file"
)]
#[getset(get = "pub(crate)")]
tracing_absolute_path: Option<String>,
#[clap(
short,
long,
help = "Specify the absolute path to the private key file"
)]
#[getset(get = "pub(crate)")]
private_key_path: Option<String>,
#[clap(
short = 'k',
long,
help = "Specify the absolute path to the public key file"
)]
#[getset(get = "pub(crate)")]
public_key_path: Option<String>,
#[clap(
short,
long,
help = "The port number of the server to connect to (default: 40404)",
default_value_t = 40404
)]
#[getset(get_copy = "pub(crate)")]
server_port: u16,
#[clap(help = "The IP address of the server to connect to")]
#[getset(get = "pub(crate)")]
server_destination: String,
#[clap(
long,
value_name = "MODE",
default_value = "adaptive",
help = "Local-echo prediction: adaptive (default), always, or never"
)]
#[getset(get = "pub(crate)")]
predict: String,
#[clap(
long,
help = "Send NAT warmup keepalives at UDP session start (opt-in)"
)]
#[getset(get_copy = "pub(crate)")]
nat_warmup: bool,
#[clap(
long,
value_name = "N",
default_value_t = 3,
help = "Number of NAT warmup keepalives to send (default: 3)"
)]
#[getset(get_copy = "pub(crate)")]
nat_warmup_count: u32,
#[clap(
long,
value_name = "MODE",
default_value = "reliable",
help = "UDP diff transport mode: reliable (default), datagram, or statesync"
)]
#[getset(get = "pub(crate)")]
diff_mode: String,
#[clap(
long,
value_name = "ALGOS",
help = "Ordered KEX algorithms to offer, comma-separated [supported: x25519-sha256 (default), ml-kem-768-sha256, ml-kem-512-sha256, ml-kem-1024-sha256, p384-sha384, p256-sha256]"
)]
#[getset(get = "pub(crate)")]
kex_algos: Option<String>,
#[clap(
long,
value_name = "ALGOS",
help = "Ordered AEAD algorithms to offer, comma-separated [supported: aes256-gcm-siv (default), aes256-gcm, chacha20-poly1305, aes128-gcm-siv]"
)]
#[getset(get = "pub(crate)")]
aead_algos: Option<String>,
#[clap(
long,
value_name = "ALGOS",
help = "Ordered MAC algorithms to offer, comma-separated [supported: hmac-sha512 (default), hmac-sha256]"
)]
#[getset(get = "pub(crate)")]
mac_algos: Option<String>,
#[clap(
long,
value_name = "ALGOS",
help = "Ordered KDF algorithms to offer, comma-separated [supported: hkdf-sha256 (default), hkdf-sha384, hkdf-sha512]"
)]
#[getset(get = "pub(crate)")]
kdf_algos: Option<String>,
}
fn build_algo_table(
kex: Option<&str>,
aead: Option<&str>,
mac: Option<&str>,
kdf: Option<&str>,
) -> Option<Map<String, Value>> {
let mut table = Map::new();
let parse = |s: &str| -> Vec<Value> {
s.split(',')
.map(|a| Value::new(None, ValueKind::String(a.trim().to_string())))
.collect()
};
for (key, opt) in [("kex", kex), ("aead", aead), ("mac", mac), ("kdf", kdf)] {
if let Some(s) = opt {
let _old = table.insert(
key.to_string(),
Value::new(None, ValueKind::Array(parse(s))),
);
}
}
(!table.is_empty()).then_some(table)
}
impl Source for Cli {
fn clone_into_box(&self) -> Box<dyn Source + Send + Sync> {
Box::new((*self).clone())
}
fn collect(&self) -> Result<Map<String, Value>, ConfigError> {
let mut map = Map::new();
let origin = String::from("command line");
let _old = map.insert(
"verbose".to_string(),
Value::new(Some(&origin), ValueKind::U64(u8::into(self.verbose))),
);
let _old = map.insert(
"quiet".to_string(),
Value::new(Some(&origin), ValueKind::U64(u8::into(self.quiet))),
);
if let Some(config_path) = &self.config_absolute_path {
let _old = map.insert(
"config_path".to_string(),
Value::new(Some(&origin), ValueKind::String(config_path.clone())),
);
}
if let Some(tracing_path) = &self.tracing_absolute_path {
let _old = map.insert(
"tracing_path".to_string(),
Value::new(Some(&origin), ValueKind::String(tracing_path.clone())),
);
}
if let Some(private_key_path) = &self.private_key_path {
let _old = map.insert(
"private_key_path".to_string(),
Value::new(Some(&origin), ValueKind::String(private_key_path.clone())),
);
}
if let Some(public_key_path) = &self.public_key_path {
let _old = map.insert(
"public_key_path".to_string(),
Value::new(Some(&origin), ValueKind::String(public_key_path.clone())),
);
}
let _old = map.insert(
"server_port".to_string(),
Value::new(Some(&origin), ValueKind::U64(u16::into(self.server_port))),
);
let _old = map.insert(
"server_destination".to_string(),
Value::new(
Some(&origin),
ValueKind::String(self.server_destination.clone()),
),
);
let _old = map.insert(
"predict".to_string(),
Value::new(Some(&origin), ValueKind::String(self.predict.clone())),
);
let _old = map.insert(
"nat_warmup".to_string(),
Value::new(Some(&origin), ValueKind::Boolean(self.nat_warmup)),
);
let _old = map.insert(
"nat_warmup_count".to_string(),
Value::new(
Some(&origin),
ValueKind::U64(u32::into(self.nat_warmup_count)),
),
);
let _old = map.insert(
"diff_mode".to_string(),
Value::new(Some(&origin), ValueKind::String(self.diff_mode.clone())),
);
if let Some(table) = build_algo_table(
self.kex_algos.as_deref(),
self.aead_algos.as_deref(),
self.mac_algos.as_deref(),
self.kdf_algos.as_deref(),
) {
let _old = map.insert(
"preferred_algorithms".to_string(),
Value::new(Some(&origin), ValueKind::Table(table)),
);
}
Ok(map)
}
}
impl PathDefaults for Cli {
fn env_prefix(&self) -> String {
env!("CARGO_PKG_NAME").to_ascii_uppercase()
}
fn config_absolute_path(&self) -> Option<String> {
self.config_absolute_path.clone()
}
fn default_file_path(&self) -> String {
env!("CARGO_PKG_NAME").to_string()
}
fn default_file_name(&self) -> String {
env!("CARGO_PKG_NAME").to_string()
}
fn tracing_absolute_path(&self) -> Option<String> {
self.tracing_absolute_path.clone()
}
fn default_tracing_path(&self) -> String {
format!("{}/logs", env!("CARGO_PKG_NAME"))
}
fn default_tracing_file_name(&self) -> String {
env!("CARGO_PKG_NAME").to_string()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_cli_defaults() -> anyhow::Result<()> {
let cli = Cli::try_parse_from(["moshpit", "user@host"])?;
assert_eq!(cli.verbose(), 0);
assert_eq!(cli.quiet(), 0);
assert_eq!(cli.config_absolute_path(), &None);
assert_eq!(cli.tracing_absolute_path(), &None);
assert_eq!(cli.private_key_path(), &None);
assert_eq!(cli.public_key_path(), &None);
assert_eq!(cli.server_port(), 40404);
assert_eq!(cli.server_destination(), "user@host");
assert_eq!(cli.predict(), "adaptive");
Ok(())
}
#[test]
fn test_cli_parsing() -> anyhow::Result<()> {
let cli = Cli::try_parse_from([
"moshpit",
"-vv",
"-c",
"/tmp/config",
"-t",
"/tmp/trace",
"-p",
"/tmp/priv",
"-k",
"/tmp/pub",
"-s",
"1234",
"--predict",
"always",
"admin@10.0.0.1",
])?;
assert_eq!(cli.verbose(), 2);
assert_eq!(cli.quiet(), 0);
assert_eq!(cli.config_absolute_path().as_deref(), Some("/tmp/config"));
assert_eq!(cli.tracing_absolute_path().as_deref(), Some("/tmp/trace"));
assert_eq!(cli.private_key_path().as_deref(), Some("/tmp/priv"));
assert_eq!(cli.public_key_path().as_deref(), Some("/tmp/pub"));
assert_eq!(cli.server_port(), 1234);
assert_eq!(cli.server_destination(), "admin@10.0.0.1");
assert_eq!(cli.predict(), "always");
Ok(())
}
#[test]
fn test_cli_quiet() -> anyhow::Result<()> {
let cli = Cli::try_parse_from(["moshpit", "-qqq", "host"])?;
assert_eq!(cli.quiet(), 3);
assert_eq!(cli.verbose(), 0);
Ok(())
}
#[test]
fn test_source_impl() -> anyhow::Result<()> {
let cli = Cli::try_parse_from(["moshpit", "host"])?;
let map = cli.collect()?;
assert!(matches!(
map.get("verbose")
.ok_or_else(|| anyhow::anyhow!("\"verbose\" not found in map"))?
.kind,
ValueKind::U64(0)
));
assert!(matches!(
map.get("quiet")
.ok_or_else(|| anyhow::anyhow!("\"quiet\" not found in map"))?
.kind,
ValueKind::U64(0)
));
assert!(matches!(
map.get("server_port")
.ok_or_else(|| anyhow::anyhow!("\"server_port\" not found in map"))?
.kind,
ValueKind::U64(40404)
));
if let ValueKind::String(ref s) = map
.get("server_destination")
.ok_or_else(|| anyhow::anyhow!("\"server_destination\" not found in map"))?
.kind
{
assert_eq!(s, "host");
} else {
panic!("Expected String");
}
if let ValueKind::String(ref s) = map
.get("predict")
.ok_or_else(|| anyhow::anyhow!("\"predict\" not found in map"))?
.kind
{
assert_eq!(s, "adaptive");
} else {
panic!("Expected String");
}
assert!(!map.contains_key("config_path"));
let boxed = cli.clone_into_box();
let map2 = boxed.collect()?;
if let ValueKind::String(ref s) = map2
.get("server_destination")
.ok_or_else(|| anyhow::anyhow!("\"server_destination\" not found in map2"))?
.kind
{
assert_eq!(s, "host");
} else {
panic!("Expected String");
}
Ok(())
}
#[test]
fn test_source_impl_with_options() -> anyhow::Result<()> {
let cli = Cli::try_parse_from([
"moshpit", "-c", "cfg", "-t", "trc", "-p", "prv", "-k", "pub", "host",
])?;
let map = cli.collect()?;
if let ValueKind::String(ref s) = map
.get("config_path")
.ok_or_else(|| anyhow::anyhow!("\"config_path\" not found in map"))?
.kind
{
assert_eq!(s, "cfg");
} else {
panic!("Expected String");
}
if let ValueKind::String(ref s) = map
.get("tracing_path")
.ok_or_else(|| anyhow::anyhow!("\"tracing_path\" not found in map"))?
.kind
{
assert_eq!(s, "trc");
} else {
panic!("Expected String");
}
if let ValueKind::String(ref s) = map
.get("private_key_path")
.ok_or_else(|| anyhow::anyhow!("\"private_key_path\" not found in map"))?
.kind
{
assert_eq!(s, "prv");
} else {
panic!("Expected String");
}
if let ValueKind::String(ref s) = map
.get("public_key_path")
.ok_or_else(|| anyhow::anyhow!("\"public_key_path\" not found in map"))?
.kind
{
assert_eq!(s, "pub");
} else {
panic!("Expected String");
}
Ok(())
}
#[test]
fn test_path_defaults() -> anyhow::Result<()> {
let cli = Cli::try_parse_from(["moshpit", "-c", "cfg", "-t", "trc", "host"])?;
assert_eq!(cli.env_prefix(), "MOSHPIT");
assert_eq!(cli.config_absolute_path().as_deref(), Some("cfg"));
assert_eq!(cli.default_file_path(), "moshpit");
assert_eq!(cli.default_file_name(), "moshpit");
assert_eq!(cli.tracing_absolute_path().as_deref(), Some("trc"));
assert_eq!(cli.default_tracing_path(), "moshpit/logs");
assert_eq!(cli.default_tracing_file_name(), "moshpit");
Ok(())
}
}