Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add optional VLAN QOS specification
- Loading branch information
Showing
2 changed files
with
187 additions
and
6 deletions.
There are no files selected for viewing
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,135 @@ | ||
| // SPDX-License-Identifier: MIT | ||
|
|
||
| use std::{env, error::Error as StdError, str::FromStr}; | ||
|
|
||
| use rtnetlink::{new_connection, QosMapping}; | ||
|
|
||
| fn parse_mapping(parameter: &str) -> Result<QosMapping, Box<dyn StdError>> { | ||
| let (from, to) = parameter | ||
| .split_once(':') | ||
| .ok_or_else(|| "Failed to parse mapping..")?; | ||
|
|
||
| Ok(QosMapping { | ||
| from: u32::from_str(from)?, | ||
| to: u32::from_str(to)?, | ||
| }) | ||
| } | ||
|
|
||
| const ARG_BASE: &'static str = "--base"; | ||
| const ARG_NAME: &'static str = "--name"; | ||
| const ARG_ID: &'static str = "--id"; | ||
| const ARG_INGRESS_QOS: &'static str = "--ingress-qos-mapping"; | ||
| const ARG_EGRESS_QOS: &'static str = "--egress-qos-mapping"; | ||
|
|
||
| enum ParsingMode { | ||
| None, | ||
| Base, | ||
| Name, | ||
| Id, | ||
| Ingress, | ||
| Egress, | ||
| } | ||
|
|
||
| #[tokio::main] | ||
| async fn main() -> Result<(), String> { | ||
| let mut args: Vec<String> = env::args().collect(); | ||
|
|
||
| let mut base_interface = None; | ||
| let mut name = None; | ||
| let mut id = None; | ||
| let mut ingress = Vec::new(); | ||
| let mut egress = Vec::new(); | ||
|
|
||
| let mut mode = ParsingMode::None; | ||
| for argument in args.drain(1..) { | ||
| fn match_argument(argument: String) -> Result<ParsingMode, String> { | ||
| match argument.to_lowercase().as_str() { | ||
| ARG_BASE => Ok(ParsingMode::Base), | ||
| ARG_NAME => Ok(ParsingMode::Name), | ||
| ARG_ID => Ok(ParsingMode::Id), | ||
| ARG_INGRESS_QOS => Ok(ParsingMode::Ingress), | ||
| ARG_EGRESS_QOS => Ok(ParsingMode::Egress), | ||
| other => { | ||
| usage(); | ||
| return Err(format!("Unexpected argument: {other}")); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| mode = match mode { | ||
| ParsingMode::None => match_argument(argument)?, | ||
| ParsingMode::Base => { | ||
| base_interface = u32::from_str(&argument).ok(); | ||
| ParsingMode::None | ||
| } | ||
| ParsingMode::Name => { | ||
| name = Some(argument); | ||
| ParsingMode::None | ||
| } | ||
| ParsingMode::Id => { | ||
| id = u16::from_str(&argument).ok(); | ||
| ParsingMode::None | ||
| } | ||
| mode @ ParsingMode::Ingress => match parse_mapping(&argument) { | ||
| Ok(mapping) => { | ||
| ingress.push(mapping); | ||
| mode | ||
| } | ||
| Err(_) => match_argument(argument)?, | ||
| }, | ||
| mode @ ParsingMode::Egress => match parse_mapping(&argument) { | ||
| Ok(mapping) => { | ||
| egress.push(mapping); | ||
| mode | ||
| } | ||
| Err(_) => match_argument(argument)?, | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| let Some(base) = base_interface else { | ||
| usage(); | ||
| return Err( | ||
| "Missing or invalid argument for base interface!".to_owned() | ||
| ); | ||
| }; | ||
|
|
||
| let Some(name) = name else { | ||
| usage(); | ||
| return Err( | ||
| "Missing or invalid argument for new interface name!".to_owned() | ||
| ); | ||
| }; | ||
|
|
||
| let Some(id) = id else { | ||
| usage(); | ||
| return Err("Missing or invalid argument for vlan id!".to_owned()); | ||
| }; | ||
|
|
||
| let (connection, handle, _) = new_connection().unwrap(); | ||
| tokio::spawn(connection); | ||
|
|
||
| handle | ||
| .link() | ||
| .add() | ||
| .vlan_with_qos(name, base, id, ingress, egress) | ||
| .execute() | ||
| .await | ||
| .map_err(|err| format!("Netlink request failed: {err}")) | ||
| } | ||
|
|
||
| fn usage() { | ||
| eprintln!( | ||
| "usage: | ||
| cargo run --example create_vlan -- --base <base link index> --name <link name> --id <vlan id> [--ingress-qos-mapping <mapping as <integer>:<integer> ..>] [--egress-qos-mapping <mapping as <integer>:<integer> ..>] | ||
| Note that you need to run this program as root. Instead of running cargo as root, | ||
| build the example normally: | ||
| cd netlink-ip ; cargo build --example create_vlan | ||
| Then find the binary in the target directory: | ||
| cd ../target/debug/example ; sudo ./create_vlan <link_name>" | ||
| ); | ||
| } |
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