-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fredi-raspall
wants to merge
35
commits into
main
Choose a base branch
from
pr/fredi/cli-proto-and-frontend
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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 df10991
feat(cli): add cmdtree.rs
Fredi-raspall edabdbc
feat(cli): add cli 'protocol' for the dataplane
Fredi-raspall cb2db80
feat(cli): Add command completion utils
Fredi-raspall 33ae007
feat(cli): Adds custom command tree for dataplane
Fredi-raspall 243de15
feat(cli): add module to parse command arguments
Fredi-raspall fe32ea1
feat(cli): add terminal object
Fredi-raspall 6f87192
feat(cli): change module visibility
Fredi-raspall 705f7bb
feat(cli): add methods to ser/deserialize messages
Fredi-raspall 6b24715
feat(cli): define trait to serialize Cli messages
Fredi-raspall 9d39309
feat(cli): add cli binary
Fredi-raspall 518b58d
feat(cli): add feature cli
Fredi-raspall 22f91c8
feat(cli): Let CliResponse include a Result<>
Fredi-raspall 5b22f0f
feat(cli): adapt cli bin to display errors
Fredi-raspall 6d8a5d6
feat(cli): add bind-address for Connect action
Fredi-raspall 3a0c2a1
feat(cli): remove clap & let terminal own sock
Fredi-raspall 25b63fd
feat(cli): separate local from remote args
Fredi-raspall 4137a0b
feat(cli): flatten dpataplane cmd tree
Fredi-raspall 77d2dc9
feat(cli): repl arg vrf (string) by vrfid (number)
Fredi-raspall 5624dc7
feat(cli): unify cmd to get IP addresses into one
Fredi-raspall 3a589e0
feat(cli): add cmd to show ip route next-hops
Fredi-raspall c4a7bc8
feat(cli): arg to route cmds to filter by proto
Fredi-raspall b7f6715
feat(cli): remove unnecessary loop in cli binary
Fredi-raspall c568189
feat(cli): add vni argument
Fredi-raspall e8f8fe2
feat(cli): add cmd to show VTEP information
Fredi-raspall c1a7123
feat(cli): add cmd to show adjacency table
Fredi-raspall 23c83b7
feat(cli): add cmds to show fib state
Fredi-raspall d7c5608
feat(cli): partially fix completions
Fredi-raspall cb8b3eb
feat(cli): homogenize comments
Fredi-raspall e082e96
feat(cli): move print_err macro
Fredi-raspall b3ae537
feat(cli): cosmetic fixes & Cargo
Fredi-raspall 6cabc1d
feat(cli): use rustyline 15.0.0
Fredi-raspall 65e9659
feat(cli): only store good inputs in history
Fredi-raspall ceb2e10
chore: except cli dependencies in deny.toml
Fredi-raspall 6e506ef
feat(cli): remove enum_primitive dependency
Fredi-raspall File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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
tomembers
but not todefault-members
, which means tests won't be exercised on a simplecargo test
from the root of the repository. Is this Probably something we should change?There was a problem hiding this comment.
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