Write extcap programs in Rust.
The extcap interface is a versatile plugin interface used by Wireshark to
allow external binaries to act as capture interfaces. The extcap interface
itself is generic and can be used by applications other than Wireshark, like
Wireshark's command line sibling tshark
. For the sake of brevity, in the
documentation we will refer to the host application simply as Wireshark.
--extcap-interfaces
: In this step, Wireshark asks the extcap for its list of supported interfaces, version metadata, and the list of toolbar controls.--extcap-dlts
: Invoked once for each interface, Wireshark asks the extcap program for the data link type associated with the interface.--extcap-config
: Invoked for each interface upon user request, Wireshark asks the extcap program for a list of configurations to populate a config dialog in the UI.--capture
: The main part of the extcap program – invoked once when the user selects an interface for capture, to tell the extcap to start capturing packets. Captured packets should be written to the--fifo
in the PCAP format.
To create an extcap using this library, these are the high level steps:
-
Create a struct with
#[derive(clap::Parser)]
, and addExtcapArgs
as one of the fields with the#[command(flatten)]
attribute.#[derive(Debug, clap::Parser)] struct AppArgs { #[command(flatten)] extcap: r_extcap::ExtcapArgs, // Other args for extcap (see the `configs` module) }
-
In a
lazy_static
, define the necessary interfaces, toolbar controls, and configs. If you are unsure, you can simply start with theInterfaces
you want to capture and add the others later as needed. -
In the
main
function, parse the arguments and callExtcapArgs::run
. Use the returnedExtcapStep
to perform the requested operation. There are 5 steps:InterfacesStep
: List the interfaces that can be captured by this program, as well as the metadata and toolbar controls associated.DltsStep
: Prints the DLTs for a given interface.ConfigStep
: Optional, provide a list of UI configuration options that the user can change.ReloadConfigStep
: Optional, ifSelectorConfig::reload
is configured in one of the configs, invoked to reload the list of options the user can choose from.CaptureStep
: described below.
-
In the
CaptureStep
, start capturing packets from the external interface, and write the packets toCaptureStep::fifo
using thepcap_file
crate.
use clap::Parser;
use r_extcap::{cargo_metadata, ExtcapArgs, ExtcapStep, interface::*, controls::*, config::*};
#[derive(Debug, Parser)]
struct AppArgs {
#[command(flatten)]
extcap: ExtcapArgs,
}
lazy_static! {
// static ref CONFIG_FOO: SelectorConfig = ...;
// static ref CONFIG_BAR: StringConfig = ...;
// static ref CONTROL_A: BooleanControl = ...;
// static ref INTERFACE_1: Interface = ...;
}
fn main() -> anyhow::Result<()> {
match AppArgs::parse().extcap.run()? {
ExtcapStep::Interfaces(interfaces_step) => {
interfaces_step.list_interfaces(
&cargo_metadata!(),
&[
// &*INTERFACE_1,
],
&[
// &*CONTROL_A,
// &*CONTROL_B,
],
);
}
ExtcapStep::Dlts(dlts_step) => {
dlts_step.print_from_interfaces(&[
// &*INTERFACE_1,
])?;
}
ExtcapStep::Config(config_step) => config_step.list_configs(&[
// &*CONFIG_FOO,
// &*CONFIG_BAR,
]),
ExtcapStep::ReloadConfig(reload_config_step) => {
reload_config_step.reload_from_configs(&[
// &*CONFIG_FOO,
// &*CONFIG_BAR,
])?;
}
ExtcapStep::Capture(capture_step) => {
// Run capture
}
}
Ok(())
}
References:
- https://www.wireshark.org/docs/wsdg_html_chunked/ChCaptureExtcap.html
- https://www.wireshark.org/docs/man-pages/extcap.html
- https://gitlab.com/wireshark/wireshark/-/blob/master/doc/extcap_example.py
Contributions of any form are appreciated. New features, bug fixes, documentation improvements, additional tests, or PRs with failing test cases are welcome.