Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cli binary and protocol with dataplane #376

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
241b0a8
feat(cli): add cli crate to implement a cli
Fredi-raspall Feb 18, 2025
df10991
feat(cli): add cmdtree.rs
Fredi-raspall Feb 18, 2025
edabdbc
feat(cli): add cli 'protocol' for the dataplane
Fredi-raspall Feb 18, 2025
cb2db80
feat(cli): Add command completion utils
Fredi-raspall Feb 18, 2025
33ae007
feat(cli): Adds custom command tree for dataplane
Fredi-raspall Feb 18, 2025
243de15
feat(cli): add module to parse command arguments
Fredi-raspall Feb 18, 2025
fe32ea1
feat(cli): add terminal object
Fredi-raspall Feb 18, 2025
6f87192
feat(cli): change module visibility
Fredi-raspall Feb 18, 2025
705f7bb
feat(cli): add methods to ser/deserialize messages
Fredi-raspall Feb 18, 2025
6b24715
feat(cli): define trait to serialize Cli messages
Fredi-raspall Feb 19, 2025
9d39309
feat(cli): add cli binary
Fredi-raspall Feb 18, 2025
518b58d
feat(cli): add feature cli
Fredi-raspall Feb 18, 2025
22f91c8
feat(cli): Let CliResponse include a Result<>
Fredi-raspall Feb 19, 2025
5b22f0f
feat(cli): adapt cli bin to display errors
Fredi-raspall Feb 19, 2025
6d8a5d6
feat(cli): add bind-address for Connect action
Fredi-raspall Feb 20, 2025
3a0c2a1
feat(cli): remove clap & let terminal own sock
Fredi-raspall Feb 20, 2025
25b63fd
feat(cli): separate local from remote args
Fredi-raspall Feb 20, 2025
4137a0b
feat(cli): flatten dpataplane cmd tree
Fredi-raspall Feb 20, 2025
77d2dc9
feat(cli): repl arg vrf (string) by vrfid (number)
Fredi-raspall Feb 20, 2025
5624dc7
feat(cli): unify cmd to get IP addresses into one
Fredi-raspall Feb 20, 2025
3a589e0
feat(cli): add cmd to show ip route next-hops
Fredi-raspall Feb 20, 2025
c4a7bc8
feat(cli): arg to route cmds to filter by proto
Fredi-raspall Feb 21, 2025
b7f6715
feat(cli): remove unnecessary loop in cli binary
Fredi-raspall Feb 21, 2025
c568189
feat(cli): add vni argument
Fredi-raspall Mar 2, 2025
e8f8fe2
feat(cli): add cmd to show VTEP information
Fredi-raspall Mar 4, 2025
c1a7123
feat(cli): add cmd to show adjacency table
Fredi-raspall Mar 4, 2025
23c83b7
feat(cli): add cmds to show fib state
Fredi-raspall Mar 14, 2025
d7c5608
feat(cli): partially fix completions
Fredi-raspall Mar 14, 2025
cb8b3eb
feat(cli): homogenize comments
Fredi-raspall Mar 31, 2025
e082e96
feat(cli): move print_err macro
Fredi-raspall Mar 31, 2025
b3ae537
feat(cli): cosmetic fixes & Cargo
Fredi-raspall Mar 31, 2025
6cabc1d
feat(cli): use rustyline 15.0.0
Fredi-raspall Mar 31, 2025
65e9659
feat(cli): only store good inputs in history
Fredi-raspall Mar 31, 2025
ceb2e10
chore: except cli dependencies in deny.toml
Fredi-raspall Apr 2, 2025
6e506ef
feat(cli): remove enum_primitive dependency
Fredi-raspall Apr 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
754 changes: 731 additions & 23 deletions Cargo.lock

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]

members = [
members = [ "cli",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I note you added cli to members but not to default-members, which means tests won't be exercised on a simple cargo test from the root of the repository. Is this Probably something we should change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are not tests at the moment in the CLI

"dataplane",
"dpdk",
"dpdk-sys",
Expand Down Expand Up @@ -57,9 +57,14 @@ ordermap = { version = "0.5.6", default-features = false, features = [] }
ipnet = { version = "2.11.0", default-features = false, features = [] }
iptrie = { version = "0.10.2", default-features = false, features = [] }
mio = { version = "1.0.3", default-features = false, features = [] }
rustyline = { version = "15.0.0", default-features = false, features = [] }
serde = { version = "1.0.219", default-features = false, features = [] }
serde_yml = { version = "0.0.12", default-features = false, features = [] }
smallvec = { version = "1.14.0" }
strum = { version = "0.27", features = ["derive"] }
thiserror = { version = "2.0.12", default-features = false, features = [] }

# attribute feature is so commonly used that we should just leave it on globally
tracing = { version = "0.1.41", default-features = false, features = ["attributes"] }
tracing-subscriber = { version = "0.3.19", default-features = false, features = [] }
tracing-test = { version = "0.2.5", default-features = false, features = [] }
Expand Down
24 changes: 24 additions & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "cli"
version = "0.1.0"
edition = "2024"
publish = false
license = "Apache-2.0"

[[bin]]
name = "cli"
path = "src/bin/cli.rs"
required-features = ["cli"]

[dependencies]
colored = "3.0.0"
bincode2 = "2.0.1"
log = { version = "^0.4.25", features = ["serde"]}
rustyline = { workspace = true , features = ["with-fuzzy", "custom-bindings"] }
serde = {workspace = true, features = ["derive", "serde_derive"]}
strum = { workspace = true }
thiserror = { workspace = true }

[features]
cli = []

134 changes: 134 additions & 0 deletions cli/src/argsparse.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright Open Network Fabric Authors

//! Adds main parser for command arguments

use crate::cliproto::{RequestArgs, RouteProtocol};
use log::Level;
use std::collections::HashMap;
use std::net::IpAddr;
use std::str::FromStr;
use thiserror::Error;

/// Errors when parsing arguments
#[derive(Error, Debug)]
pub enum ArgsError {
#[error("Parse failure: {0}")]
ParseFailure(String),
#[error("Bad prefix: {0}")]
BadPrefix(String),
#[error("Wrong prefix length {0}")]
BadPrefixLength(u8),
#[error("Bad prefix format: {0}")]
BadPrefixFormat(String),
#[error("Unrecognized arguments")]
UnrecognizedArgs(HashMap<String, String>),
#[error("Missing value for {0}")]
MissingValue(&'static str),
#[error("Unknown loglevel {0}")]
UnknownLogLevel(String),
#[error("Bad value {0}")]
BadValue(String),
#[error("Unknown protocol '{0}'")]
UnknownProtocol(String),
}

#[derive(Default)]
pub struct CliArgs {
pub connpath: Option<String>, /* connection path; this is local */
pub bind_address: Option<String>, /* address to bind unix sock to */
pub remote: RequestArgs, /* args to send to remote */
}

#[allow(unused)]
impl CliArgs {
pub fn new() -> Self {
Self::default()
}
pub fn from_args_map(mut args_map: HashMap<String, String>) -> Result<CliArgs, ArgsError> {
let mut args = CliArgs::new();
if let Some(addr) = &args_map.remove("address") {
let address =
IpAddr::from_str(addr).map_err(|_| ArgsError::BadPrefix(addr.to_owned()))?;
args.remote.address = Some(address);
}
if let Some(prefix) = args_map.remove("prefix") {
if let Some((addr, len)) = prefix.split_once('/') {
let pfx =
IpAddr::from_str(addr).map_err(|_| ArgsError::BadPrefix(addr.to_owned()))?;
let max_len = match pfx {
IpAddr::V4(_) => 32,
IpAddr::V6(_) => 128,
};
let pxf_len: u8 = len
.parse::<u8>()
.map_err(|_| ArgsError::ParseFailure(len.to_owned()))?;
if pxf_len > max_len {
return Err(ArgsError::BadPrefixLength(pxf_len));
}
args.remote.prefix = Some((pfx, pxf_len));
} else {
return Err(ArgsError::BadPrefixFormat(prefix.to_owned()));
}
}
if let Some(path) = args_map.remove("path") {
if path.is_empty() {
return Err(ArgsError::MissingValue("path"));
}
args.connpath = Some(path.clone());
}
if let Some(path) = args_map.remove("bind-address") {
if path.is_empty() {
return Err(ArgsError::MissingValue("bind-address"));
}
args.bind_address = Some(path.clone());
}
if let Some(vrfid) = args_map.remove("vrfid") {
if vrfid.is_empty() {
return Err(ArgsError::MissingValue("vrfid"));
}
args.remote.vrfid = Some(
vrfid
.parse::<u32>()
.map_err(|_| ArgsError::BadValue(vrfid))?,
);
}
if let Some(vni) = args_map.remove("vni") {
if vni.is_empty() {
return Err(ArgsError::MissingValue("vni"));
}
args.remote.vni = Some(vni.parse::<u32>().map_err(|_| ArgsError::BadValue(vni))?);
}
if let Some(ifname) = args_map.remove("ifname") {
if ifname.is_empty() {
return Err(ArgsError::MissingValue("ifname"));
}
args.remote.ifname = Some(ifname).clone();
}
if let Some(level) = args_map.remove("level") {
if level.is_empty() {
return Err(ArgsError::MissingValue("level"));
} else {
let level = level.to_uppercase();
args.remote.loglevel = Some(
Level::from_str(level.as_str())
.map_err(|_| ArgsError::UnknownLogLevel(level))?,
);
}
}
if let Some(protocol) = args_map.remove("protocol") {
if protocol.is_empty() {
return Err(ArgsError::MissingValue("protocol"));
}
args.remote.protocol = Some(
RouteProtocol::from_str(&protocol)
.map_err(|_| ArgsError::UnknownProtocol(protocol))?,
);
}
if !args_map.is_empty() {
Err(ArgsError::UnrecognizedArgs(args_map))
} else {
Ok(args)
}
}
}
Loading
Loading