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 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
//! # Submodule: Basic NDISAPI Structures
//!
//! This submodule provides Rust equivalents of several structures used in the NDISAPI Rust library
//! for communicating with the Windows Packet Filter driver.
//!
//! The structures in this submodule are related to network adapters, Ethernet packets, adapter events,
//! and Remote Access Service (RAS) links.
//!
//! For a detailed description of each structure, refer to their respective documentation within the
//! submodule.
// Import required external crates and types
use std::mem::size_of;
use windows::{
core::Result,
Win32::Foundation::{ERROR_INVALID_PARAMETER, HANDLE},
};
use super::constants::*;
/// The `TcpAdapterList` structure is the Rust equivalent of the
/// [_TCP_AdapterList](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_tcp_adapterlist/)
/// structure in the Windows Packet Filter documentation. It represents a list of network adapters,
/// along with their properties, such as adapter names, handles, medium types, current addresses, and MTUs.
///
/// # Fields
///
/// * `adapter_count`: A 32-bit unsigned integer representing the total number of adapters in the list.
/// * `adapter_name_list`: An array of arrays, with each inner array containing `ADAPTER_NAME_SIZE` bytes,
/// representing the adapter names in the list.
/// * `adapter_handle`: An array of `HANDLE` values, representing the handles of the adapters in the list.
/// * `adapter_medium_list`: An array of 32-bit unsigned integers, representing the medium types of the
/// adapters in the list.
/// * `current_address`: An array of arrays, with each inner array containing `ETHER_ADDR_LENGTH` bytes,
/// representing the current addresses of the adapters in the list.
/// * `mtu`: An array of 16-bit unsigned integers, representing the Maximum Transmission Units (MTUs) of the
/// adapters in the list.
#[repr(C, packed)]
#[derive(Debug, Copy, Clone)]
pub struct TcpAdapterList {
pub adapter_count: u32,
pub adapter_name_list: [[u8; ADAPTER_NAME_SIZE]; ADAPTER_LIST_SIZE],
pub adapter_handle: [HANDLE; ADAPTER_LIST_SIZE],
pub adapter_medium_list: [u32; ADAPTER_LIST_SIZE],
pub current_address: [[u8; ETHER_ADDR_LENGTH]; ADAPTER_LIST_SIZE],
pub mtu: [u16; ADAPTER_LIST_SIZE],
}
/// The `ListEntry` structure is the Rust equivalent of the
/// [_LIST_ENTRY](https://learn.microsoft.com/en-us/windows/win32/api/ntdef/ns-ntdef-list_entry)
/// structure in the Windows API. It represents a doubly-linked list entry, containing forward and backward
/// pointers to adjacent list entries.
///
/// # Fields
///
/// * `flink`: A mutable raw pointer to the next `ListEntry` in the list (forward link).
/// * `blink`: A mutable raw pointer to the previous `ListEntry` in the list (backward link).
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct ListEntry {
pub flink: *mut ListEntry,
pub blink: *mut ListEntry,
}
/// The `IntermediateBufferHeaderUnion` structure is the Rust equivalent of the union
/// used for `INTERMEDIATE_BUFFER` in the driver API. It represents a union between a
/// `HANDLE` and a `ListEntry`, providing a way to access either of them based on the context.
///
/// # Fields
///
/// * `adapter_handle`: A `HANDLE` representing the adapter handle.
/// * `list_entry`: A `ListEntry` structure representing a doubly-linked list entry.
#[repr(C, packed)]
#[derive(Copy, Clone)]
pub union IntermediateBufferHeaderUnion {
pub adapter_handle: HANDLE,
pub list_entry: ListEntry,
}
/// Provides a default implementation for the `IntermediateBufferHeaderUnion` structure.
///
/// # Safety
///
/// This implementation is safe because the union contains either a `HANDLE` or a `ListEntry`.
/// The `ListEntry` is a union of raw pointers, which can be safely zeroed as long as they are not dereferenced.
/// The `HANDLE` is a wrapper around an `isize`, which can also be safely zeroed.
impl Default for IntermediateBufferHeaderUnion {
fn default() -> Self {
// SAFETY: This union contains either a `HANDLE` or a `ListEntry`
// ListEntry: is an union of raw pointers which can be safely zeroed(as long as you not dereference it)
// HANDLE: is just an `isize` wrapper which can also be zeroed
unsafe { core::mem::zeroed() }
}
}
/// The `IntermediateBuffer` structure represents an intermediate buffer that stores packet data along with some
/// additional information. This structure is used internally by the packet filter driver.
///
/// Rust equivalent for [_INTERMEDIATE_BUFFER](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_intermediate_buffer/).
///
/// # Fields
/// * `header`: An `IntermediateBufferHeaderUnion` which is a union of `HANDLE` and `ListEntry`.
/// * `device_flags`: A `DirectionFlags` value that indicates the direction of the packet (send or receive).
/// * `length`: A `u32` representing the length of the packet data.
/// * `flags`: A `u32` value containing various flags related to the packet.
/// * `vlan_8021q`: A `u32` value representing the VLAN tag (802.1Q) associated with the packet.
/// * `filter_id`: A `u32` value identifying the filter that processed the packet.
/// * `reserved`: A reserved `[u32; 4usize]` array for future use.
/// * `buffer`: A `Buffer` structure containing the actual packet data.
#[repr(C, packed)]
#[derive(Copy, Clone, Default)]
pub struct IntermediateBuffer {
pub header: IntermediateBufferHeaderUnion,
pub device_flags: DirectionFlags,
pub length: u32,
pub flags: u32,
pub vlan_8021q: u32,
pub filter_id: u32,
pub reserved: [u32; 4usize],
pub buffer: Buffer,
}
/// This structure represents the buffer used for storing the actual packet data.
///
/// A wrapper around an array of bytes with a size of `MAX_ETHER_FRAME`.
#[repr(transparent)]
#[derive(Copy, Clone)]
pub struct Buffer(pub [u8; MAX_ETHER_FRAME]);
impl Default for Buffer {
fn default() -> Self {
Self([0; MAX_ETHER_FRAME])
}
}
/// IntermediateBuffer implementation
impl IntermediateBuffer {
/// Creates a new `IntermediateBuffer` with default values.
///
/// # Returns
/// A new `IntermediateBuffer` instance.
pub fn new() -> Self {
Self::default()
}
/// Gets the `DirectionFlags` value associated with the `IntermediateBuffer`.
///
/// # Returns
/// The `DirectionFlags` value indicating the direction of the packet (send or receive).
pub fn get_device_flags(&self) -> DirectionFlags {
self.device_flags
}
/// Gets the length of the packet data stored in the `IntermediateBuffer`.
///
/// # Returns
/// A `u32` value representing the length of the packet data.
pub fn get_length(&self) -> u32 {
self.length
}
/// Sets the length of the packet data stored in the `IntermediateBuffer`.
///
/// # Arguments
/// * `length`: A `u32` value representing the new length of the packet data.
pub fn set_length(&mut self, length: u32) {
self.length = length
}
}
/// This structure is used to define the mode of an adapter with a specified handle and filter flags.
///
/// A Rust equivalent for the [_ADAPTER_MODE](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/adapter_mode/) structure.
#[repr(C, packed)]
#[derive(Debug, Copy, Clone, Default)]
pub struct AdapterMode {
/// A `HANDLE` representing the adapter handle.
pub adapter_handle: HANDLE,
/// `FilterFlags` representing the filter flags associated with the adapter mode.
pub flags: FilterFlags,
}
/// This structure represents an Ethernet packet with an optional mutable reference to an `IntermediateBuffer`.
///
/// A Rust equivalent for the [_NDISRD_ETH_Packet](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_ndisrd_eth_packet/) structure.
///
/// The `buffer` field is an Option wrapping a mutable reference to an `IntermediateBuffer`. This design allows for flexibility
/// when manipulating Ethernet packets, as a packet may not always have a buffer associated with it (i.e., the buffer may be `None`).
#[repr(C)]
pub struct EthPacket<'a> {
/// An optional mutable reference to an `IntermediateBuffer` representing the buffer for this Ethernet packet.
pub buffer: Option<&'a mut IntermediateBuffer>,
}
/// Implements the `Into` trait for `EthPacket`.
///
/// This implementation allows for a straightforward conversion from an `EthPacket` into an `Option<&'a mut IntermediateBuffer>`.
/// This conversion is useful when you want to manipulate the buffer of a packet directly.
impl<'a> Into<Option<&'a mut IntermediateBuffer>> for EthPacket<'a> {
fn into(self) -> Option<&'a mut IntermediateBuffer> {
self.buffer
}
}
/// Implements the `Default` trait for `EthPacket`.
///
/// This implementation allows for the creation of an "empty" `EthPacket`, i.e., a packet without a buffer. This is useful when
/// initializing a variable of type `EthPacket` without immediately associating a buffer with it.
impl<'a> Default for EthPacket<'a> {
fn default() -> Self {
EthPacket { buffer: None }
}
}
/// This structure represents a request for an Ethernet packet, containing a network adapter handle and an `EthPacket`.
///
/// A Rust equivalent for the [_ETH_REQUEST](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_eth_request/) structure.
///
/// `adapter_handle` is a handle to the network adapter associated with this request. The `packet` field is an `EthPacket` that represents the Ethernet packet for this request.
#[repr(C)]
pub struct EthRequest<'a> {
/// A handle to the network adapter associated with this request.
pub adapter_handle: HANDLE,
/// An `EthPacket` representing the Ethernet packet for this request.
pub packet: EthPacket<'a>,
}
/// Provides methods for manipulating the `EthPacket` within an `EthRequest`.
impl<'a> EthRequest<'a> {
/// Creates a new `EthRequest` with the specified adapter handle and an empty `EthPacket`.
///
/// # Arguments
///
/// * `adapter_handle` - A handle to the network adapter to be associated with this request.
///
/// # Returns
///
/// * A new `EthRequest` instance with the specified adapter handle and an empty `EthPacket`.
pub fn new(adapter_handle: HANDLE) -> Self {
Self {
adapter_handle,
packet: EthPacket { buffer: None },
}
}
/// Takes the `EthPacket` out from the `EthRequest`, replacing it with `None`.
///
/// This is useful when you want to use the packet's buffer elsewhere, while ensuring that the `EthRequest` no longer has access to it.
pub fn take_packet(&mut self) -> Option<&'a mut IntermediateBuffer> {
self.packet.buffer.take()
}
/// Sets the `EthPacket` for the `EthRequest` using a mutable reference to an `IntermediateBuffer`.
///
/// This method allows you to associate a new buffer with the `EthRequest`. This is useful when you have a buffer that you want to send with the `EthRequest`.
pub fn set_packet(&mut self, buffer: &'a mut IntermediateBuffer) {
self.packet = EthPacket {
buffer: Some(buffer),
};
}
}
/// This structure represents a request for multiple Ethernet packets, containing a network adapter handle, packet number, packet success count, and an array of `EthPacket` instances.
///
/// A Rust equivalent for the [_ETH_M_REQUEST](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_eth_m_request/) structure.
///
/// `adapter_handle` is a handle to the network adapter associated with this request. `packet_number` is the number of packets in the `packets` array. `packet_success` is the number of packets that have been successfully processed. `packets` is an array of `EthPacket` instances representing the Ethernet packets for this request.
#[repr(C)]
pub struct EthMRequest<'a, const N: usize> {
/// A handle to the network adapter associated with this request.
adapter_handle: HANDLE,
/// The number of packets in the `packets` array.
packet_number: u32,
/// The number of successfully processed packets.
packet_success: u32,
/// An array of `EthPacket` representing the Ethernet packets for this request.
packets: [EthPacket<'a>; N],
}
/// Provides methods for manipulating the `EthPacket` instances within an `EthMRequest`.
impl<'a, const N: usize> EthMRequest<'a, N> {
/// Creates a new `EthMRequest` with the specified adapter handle.
///
/// All packets in the request are initialized to empty.
pub fn new(adapter_handle: HANDLE) -> Self {
let packets = [(); N].map(|_| EthPacket { buffer: None });
Self {
adapter_handle,
packet_number: 0,
packet_success: 0,
packets,
}
}
/// Takes the `IntermediateBuffer` from the `EthPacket` at the specified index, replacing it with `None`.
///
/// This is useful when you want to use the packet's buffer elsewhere, while ensuring that the `EthMRequest` no longer has access to it.
pub fn take_packet(&mut self, index: usize) -> Option<&'a mut IntermediateBuffer> {
if index < self.packet_number as usize {
self.packets[index].buffer.take()
} else {
None
}
}
/// Sets the `IntermediateBuffer` for the `EthPacket` at the specified index.
///
/// This method allows you to associate a new buffer with the `EthPacket` at the given index.
pub fn put_packet(&mut self, index: usize, buffer: &'a mut IntermediateBuffer) -> Result<()> {
if index < self.packet_number as usize {
self.packets[index].buffer = Some(buffer);
Ok(())
} else {
Err(ERROR_INVALID_PARAMETER.into())
}
}
/// Returns the number of packets in the `packets` array.
///
/// This provides a count of all packets, regardless of whether they've been successfully processed.
pub fn get_packet_number(&self) -> u32 {
self.packet_number
}
/// Sets the number of packets in the `packets` array.
///
/// This allows you to manually set the count of packets in the request.
pub fn set_packet_number(&mut self, number: u32) {
self.packet_number = number;
}
/// Resets the packet number to 0.
///
/// This effectively empties the request of packets.
pub fn reset(&mut self) {
self.set_packet_number(0);
}
/// Returns the number of successfully processed packets
pub fn get_packet_success(&self) -> u32 {
self.packet_success
}
/// Adds an `IntermediateBuffer` to the `packets` array if there's available space.
/// This effectively wraps the buffer into an `EthPacket` and stores it in the array.
///
/// The `packet_number` field of the `EthMRequest` is automatically incremented to reflect the addition of the new packet.
///
/// If there is no available space in the array (i.e., if the `packet_number` is equal to the array length `N`), this method returns an error, specifically `ERROR_INVALID_PARAMETER`.
///
/// This method provides an idiomatic way of adding new packets to an `EthMRequest` in Rust.
///
/// # Arguments
///
/// * `packet` - A mutable reference to the `IntermediateBuffer` to be added to the `packets` array.
///
/// # Returns
///
/// * `Ok(())` if the buffer was successfully added as a packet.
/// * `Err(ERROR_INVALID_PARAMETER.into())` if the `packets` array is full.
pub fn push(&mut self, packet: &'a mut IntermediateBuffer) -> Result<()> {
if (self.packet_number as usize) < N {
self.packets[self.packet_number as usize] = EthPacket {
buffer: Some(packet),
};
self.packet_number += 1;
Ok(())
} else {
Err(ERROR_INVALID_PARAMETER.into())
}
}
}
/// This structure represents an adapter event, containing an adapter handle and an event handle.
///
/// A Rust equivalent for the [_ADAPTER_EVENT](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/adapter_event/) structure.
#[repr(C, packed)]
#[derive(Debug, Copy, Clone)]
pub struct AdapterEvent {
/// A handle to the network adapter associated with this event.
pub adapter_handle: HANDLE,
/// A handle to the event associated with this adapter.
pub event_handle: HANDLE,
}
/// This structure is used to make queries or set parameters on a network adapter.
///
/// A Rust equivalent for the [_PACKET_OID_DATA](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_packet_oid_data/) structure.
#[repr(C, packed)]
pub struct PacketOidData<T> {
/// A handle to the network adapter associated with this query or parameter setting.
pub adapter_handle: HANDLE,
/// The OID (Object Identifier) that represents the query or parameter to be set.
pub oid: u32,
/// The length of the data in bytes.
pub length: u32,
/// The data associated with the query or parameter.
pub data: T,
}
impl<T> PacketOidData<T> {
/// Creates a new PacketOidData instance.
///
/// # Arguments
///
/// * `adapter_handle` - A handle to the network adapter associated with this query or parameter setting.
/// * `oid` - The OID (Object Identifier) that represents the query or parameter to be set.
/// * `data` - The data associated with the query or parameter.
pub fn new(adapter_handle: HANDLE, oid: u32, data: T) -> Self {
Self {
adapter_handle,
oid,
length: size_of::<T>() as u32,
data,
}
}
}
/// This structure contains information about a RAS (Remote Access Service) link.
///
/// A Rust equivalent for the [_RAS_LINK_INFO](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_ras_link_info/) structure.
#[repr(C, packed)]
#[derive(Debug, Copy, Clone)]
pub struct RasLinkInformation {
/// The link speed in bits per second.
link_speed: u32,
/// The maximum total size, in bytes.
maximum_total_size: u32,
/// The remote MAC address.
remote_address: [u8; ETHER_ADDR_LENGTH],
/// The local MAC address.
local_address: [u8; ETHER_ADDR_LENGTH],
/// The length of the protocol buffer, in bytes.
protocol_buffer_length: u32,
/// The buffer containing information about the RAS-managed protocols.
protocol_buffer: [u8; RAS_LINK_BUFFER_LENGTH],
}
impl RasLinkInformation {
/// Returns the link speed in bits per second.
pub fn get_link_speed(&self) -> u32 {
self.link_speed
}
/// Returns the maximum total size.
pub fn get_maximum_total_size(&self) -> u32 {
self.maximum_total_size
}
/// Returns the remote MAC address.
pub fn get_remote_address(&self) -> &[u8; ETHER_ADDR_LENGTH] {
&self.remote_address
}
/// Returns the local MAC address.
pub fn get_local_address(&self) -> &[u8; ETHER_ADDR_LENGTH] {
&self.local_address
}
/// Returns the length of the protocol buffer, in bytes.
pub fn get_protocol_buffer_length(&self) -> usize {
self.protocol_buffer_length as usize
}
/// Returns the buffer containing information about the RAS-managed protocols.
pub fn get_protocol_buffer(&self) -> &[u8; RAS_LINK_BUFFER_LENGTH] {
&self.protocol_buffer
}
}
/// This structure is a container for RAS (Remote Access Service) link information structures.
///
/// A Rust equivalent for the [_RAS_LINKS](https://www.ntkernel.com/docs/windows-packet-filter-documentation/structures/_ras_links/) structure.
/// Note that this struct may be too large to be allocated on the stack in Rust and may result in a stack overflow.
#[repr(C, packed)]
#[derive(Debug, Copy, Clone)]
pub struct RasLinks {
/// The number of RAS links in the array.
number_of_links: u32,
/// The array of RAS link information structures.
pub ras_links: [RasLinkInformation; RAS_LINKS_MAX],
}
impl Default for RasLinks {
/// Returns a zero-initialized instance of `RasLinks`.
///
/// # Safety
///
/// This structure is filled by the information by NDIS filter driver when passed as a memory buffer
/// along with IOCTL_NDISRD_GET_RAS_LINKS. It is safe to be zeroed because contains only values and arrays that
/// can be default initialized with zeroes.
fn default() -> Self {
unsafe { std::mem::zeroed() }
}
}
impl RasLinks {
/// Returns the number of RAS links in the array.
pub fn get_number_of_links(&self) -> usize {
self.number_of_links as usize
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn size_of_ethpacket() {
assert_eq!(
std::mem::size_of::<*mut IntermediateBuffer>(),
std::mem::size_of::<EthPacket>()
);
}
#[test]
fn size_of_ethrequest() {
assert_eq!(
std::mem::size_of::<EthPacket>() + std::mem::size_of::<HANDLE>(),
std::mem::size_of::<EthRequest>()
);
}
#[test]
fn size_of_ethmrequest() {
assert_eq!(
std::mem::size_of::<EthPacket>()
+ std::mem::size_of::<HANDLE>()
+ 2 * std::mem::size_of::<u32>(),
std::mem::size_of::<EthMRequest<1>>()
);
}
}