mikrotik_rs/protocol/command.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
use getrandom;
use std::{marker::PhantomData, mem::size_of};
/// Represents an empty command. Used as a marker in [`CommandBuilder`].
pub struct NoCmd;
/// Represents a command that has at least one operation (e.g., a login or a query).
/// Used as a marker in [`CommandBuilder`].
#[derive(Clone)]
pub struct Cmd;
/// Builds MikroTik router commands using a fluid API.
///
/// Ensures that only commands with at least one operation can be built and sent.
///
/// # Examples
/// ```rust
/// let cmd = CommandBuilder::new()
/// .command("/system/resource/print")
/// .attribute("detail", None)
/// .build();
/// ```
#[derive(Clone)]
pub struct CommandBuilder<Cmd> {
tag: u16,
cmd: CommandBuffer,
state: PhantomData<Cmd>,
}
impl Default for CommandBuilder<NoCmd> {
fn default() -> Self {
Self::new()
}
}
impl CommandBuilder<NoCmd> {
/// Begin building a new [`Command`] with a randomly generated tag.
pub fn new() -> Self {
let mut dest = [0_u8; size_of::<u16>()];
getrandom::getrandom(&mut dest).expect("Failed to generate random tag");
Self {
tag: u16::from_be_bytes(dest),
cmd: CommandBuffer::default(),
state: PhantomData,
}
}
/// Begin building a new [`Command`] with a specified tag.
///
/// # Arguments
///
/// * `tag` - A `u16` tag value that identifies the command for RouterOS correlation. **Must be unique**.
///
/// # Examples
///
/// ```rust
/// let builder = CommandBuilder::with_tag(1234);
/// ```
pub fn with_tag(tag: u16) -> Self {
Self {
tag,
cmd: CommandBuffer::default(),
state: PhantomData,
}
}
/// Builds a login command with the provided username and optional password.
///
/// # Arguments
///
/// * `username` - The username for the login command.
/// * `password` - An optional password for the login command.
///
/// # Returns
///
/// A `Command` which represents the login operation.
///
/// # Examples
///
/// ```rust
/// let login_cmd = CommandBuilder::login("admin", Some("password"));
/// ```
pub fn login(username: &str, password: Option<&str>) -> Command {
Self::new()
.command("/login")
.attribute("name", Some(username))
.attribute("password", password)
.build()
}
/// Builds a command to cancel a specific running command identified by `tag`.
///
/// # Arguments
///
/// * `tag` - The tag of the command to be canceled.
///
/// # Returns
///
/// A `Command` which represents the cancel operation.
///
/// # Examples
///
/// ```rust
/// let cancel_cmd = CommandBuilder::cancel(1234);
/// ```
pub fn cancel(tag: u16) -> Command {
Self::with_tag(tag)
.command("/cancel")
.attribute("tag", Some(tag.to_string().as_str()))
.build()
}
/// Specify the command to be executed.
///
/// # Arguments
///
/// * `command` - The MikroTik command to execute.
///
/// # Returns
///
/// The builder transitioned to the `Cmd` state for attributes configuration.
pub fn command(self, command: &str) -> CommandBuilder<Cmd> {
let Self { tag, mut cmd, .. } = self;
// FIX: This allocation should be avoided
// Write the command
cmd.write_word(command.as_bytes());
// FIX: This allocation should be avoided
// Tag the command
cmd.write_word(format!(".tag={}", tag).as_bytes());
CommandBuilder {
tag,
cmd,
state: PhantomData,
}
}
}
impl CommandBuilder<Cmd> {
/// Adds an attribute to the command being built.
///
/// # Arguments
///
/// * `key` - The attribute's key.
/// * `value` - The attribute's value, which is optional. If `None`, the attribute is treated as a flag (e.g., `=key=`).
///
/// # Returns
///
/// The builder with the attribute added, allowing for method chaining.
pub fn attribute(self, key: &str, value: Option<&str>) -> Self {
let Self { tag, mut cmd, .. } = self;
match value {
Some(v) => {
// FIX: This allocation should be avoided
cmd.write_word(format!("={key}={v}").as_bytes());
}
None => {
// FIX: This allocation should be avoided
cmd.write_word(format!("={key}=").as_bytes());
}
};
CommandBuilder {
tag,
cmd,
state: PhantomData,
}
}
/// Finalizes the command construction process, producing a [`Command`].
///
/// # Returns
///
/// A `Command` instance ready for execution.
pub fn build(self) -> Command {
let Self { tag, mut cmd, .. } = self;
// Terminate the command
cmd.write_len(0);
Command { tag, data: cmd.0 }
}
}
/// Represents a final command, complete with a tag and data, ready to be sent to the router.
/// To create a [`Command`], use a [`CommandBuilder`].
///
/// - `tag` is used to identify the command and correlate with its [`response::CommandResponse`]s when it is received.
/// - `data` contains the command itself, which is a sequence of bytes, null-terminated.
///
/// # Examples
///
/// ```rust
/// let cmd = CommandBuilder::new().command("/interface/print").build();
/// ```
#[derive(Debug)]
pub struct Command {
/// The tag of the command.
pub tag: u16,
/// The data of the command.
pub data: Vec<u8>,
}
#[derive(Default, Clone)]
struct CommandBuffer(Vec<u8>);
impl CommandBuffer {
fn write_str(&mut self, str_buff: &[u8]) {
self.0.extend_from_slice(str_buff);
}
fn write_len(&mut self, len: u32) {
match len {
0x00..=0x7F => self.write_str(&[len as u8]),
0x80..=0x3FFF => {
let l = len | 0x8000;
self.write_str(&[((l >> 8) & 0xFF) as u8]);
self.write_str(&[(l & 0xFF) as u8]);
}
0x4000..=0x1FFFFF => {
let l = len | 0xC00000;
self.write_str(&[((l >> 16) & 0xFF) as u8]);
self.write_str(&[((l >> 8) & 0xFF) as u8]);
self.write_str(&[(l & 0xFF) as u8]);
}
0x200000..=0xFFFFFFF => {
let l = len | 0xE0000000;
self.write_str(&[((l >> 24) & 0xFF) as u8]);
self.write_str(&[((l >> 16) & 0xFF) as u8]);
self.write_str(&[((l >> 8) & 0xFF) as u8]);
self.write_str(&[(l & 0xFF) as u8]);
}
_ => {
self.write_str(&[0xF0_u8]);
self.write_str(&[((len >> 24) & 0xFF) as u8]);
self.write_str(&[((len >> 16) & 0xFF) as u8]);
self.write_str(&[((len >> 8) & 0xFF) as u8]);
self.write_str(&[(len & 0xFF) as u8]);
}
}
}
fn write_word(&mut self, w: &[u8]) {
self.write_len(w.len() as u32);
self.write_str(w);
}
}
/// A macro for quickly building commands.
///
/// ```rust
/// // Macro usage examples:
/// let no_attrs_cmd = command!("/system/resource/print");
/// let with_attrs_cmd = command!("/login", name="admin", password="secret");
/// ```
#[macro_export]
macro_rules! command {
// Case: only a command string
($cmd:expr) => {{
$crate::CommandBuilder::new()
.command($cmd)
.build()
}};
// Case: command string plus one or more attributes
($cmd:expr, $($key:ident = $value:expr),+ $(,)?) => {{
let mut builder = $crate::CommandBuilder::new().command($cmd);
$(
builder = builder.attribute(stringify!($key), Some($value));
)+
builder.build()
}};
}
// Add these when implementing query building
// pub fn query_is_present(&mut self, key: &str) {
// let query = format!("?{key}");
// self.write_word(query.as_str());
// }
// pub fn query_not_present(&mut self, key: &str) {
// let query = format!("?-{key}");
// self.write_word(query.as_str());
// }
// pub fn query_equal(&mut self, key: &str, value: &str) {
// let query = format!("?{key}={value}");
// self.write_word(query.as_str());
// }
// pub fn query_gt(&mut self, key: &str, value: &str) {
// let query = format!("?>{key}={value}");
// self.write_word(query.as_str());
// }
// pub fn query_lt(&mut self, key: &str, value: &str) {
// let query = format!("?<{key}={value}");
// self.write_word(query.as_str());
// }
// pub fn query_operator(&mut self, operator: QueryOperator) {
// let query = format!("?#{operator}");
// self.write_word(query.as_str());
// }
// Represents a query operator. WIP.
//pub enum QueryOperator {
// Represents the `!` operator.
// Not,
// Represents the `&` operator.
// And,
// Represents the `|` operator.
// Or,
// Represents the `.` operator.
// Dot,
//}
//
//impl std::fmt::Display for QueryOperator {
// fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
// match self {
// QueryOperator::Not => write!(f, "!"),
// QueryOperator::And => write!(f, "&"),
// QueryOperator::Or => write!(f, "|"),
// QueryOperator::Dot => write!(f, "."),
// }
// }
//}
#[cfg(test)]
mod tests {
use super::*;
use std::str;
#[test]
fn test_command_builder_new() {
let builder = CommandBuilder::<NoCmd>::new();
assert_eq!(builder.cmd.0.len(), 0);
assert!(builder.tag != 0); // Ensure that random tag is generated
}
#[test]
fn test_command_builder_with_tag() {
let tag = 1234;
let builder = CommandBuilder::<NoCmd>::with_tag(tag);
assert_eq!(builder.tag, tag);
}
#[test]
fn test_command_builder_command() {
let builder = CommandBuilder::<NoCmd>::with_tag(1234).command("/interface/print");
println!("{:?}", builder.cmd.0);
assert_eq!(builder.cmd.0.len(), 27);
assert_eq!(builder.cmd.0[1..17], b"/interface/print"[..]);
assert_eq!(builder.cmd.0[18..27], b".tag=1234"[..]);
}
#[test]
fn test_command_builder_attribute() {
let builder = CommandBuilder::<NoCmd>::with_tag(1234)
.command("/interface/print")
.attribute("name", Some("ether1"));
assert_eq!(builder.cmd.0[28..40], b"=name=ether1"[..]);
}
//#[test]
//fn test_command_builder_build() {
// let command = CommandBuilder::<NoCmd>::with_tag(1234)
// .command("/interface/print")
// .attribute("name", Some("ether1"))
// .attribute("disabled", None)
// .build();
//
// let expected_data: &[u8] = [
// b"\x10/interface/print",
// b"\x09.tag=1234",
// b"\x0C=name=ether1",
// b"\x0A=disabled=",
// b"\x00",
// ].concat();
//
// assert_eq!(command.data, expected_data);
//}
#[test]
fn test_command_builder_login() {
let command = CommandBuilder::<NoCmd>::login("admin", Some("password"));
assert!(str::from_utf8(&command.data).unwrap().contains("/login"));
assert!(str::from_utf8(&command.data)
.unwrap()
.contains("name=admin"));
assert!(str::from_utf8(&command.data)
.unwrap()
.contains("password=password"));
}
#[test]
fn test_command_builder_cancel() {
let command = CommandBuilder::<NoCmd>::cancel(1234);
assert!(str::from_utf8(&command.data).unwrap().contains("/cancel"));
assert!(str::from_utf8(&command.data).unwrap().contains("tag=1234"));
}
#[test]
fn test_command_buffer_write_len() {
let mut buffer = CommandBuffer::default();
buffer.write_len(0x7F);
assert_eq!(buffer.0, vec![0x7F]);
buffer.0.clear();
buffer.write_len(0x80);
assert_eq!(buffer.0, vec![0x80, 0x80]);
buffer.0.clear();
buffer.write_len(0x4000);
assert_eq!(buffer.0, vec![0xC0, 0x40, 0x00]);
buffer.0.clear();
buffer.write_len(0x200000);
assert_eq!(buffer.0, vec![0xE0, 0x20, 0x00, 0x00]);
buffer.0.clear();
buffer.write_len(0x10000000);
assert_eq!(buffer.0, vec![0xF0, 0x10, 0x00, 0x00, 0x00]);
}
#[test]
fn test_command_buffer_write_word() {
let mut buffer = CommandBuffer::default();
buffer.write_word(b"test");
assert_eq!(buffer.0, vec![0x04, b't', b'e', b's', b't']);
}
//#[test]
//fn test_query_operator_to_string() {
// assert_eq!(QueryOperator::Not.to_string(), "!");
// assert_eq!(QueryOperator::And.to_string(), "&");
// assert_eq!(QueryOperator::Or.to_string(), "|");
// assert_eq!(QueryOperator::Dot.to_string(), ".");
//}
}