pcap-file
Provides parsers, readers and writers for Pcap and PcapNg files.
For Pcap files see the pcap module.
For PcapNg files see the pcapng module.
Documentation
Installation
This crate is on crates.io.
Add it to your Cargo.toml:
[]
= "3.0.0-rc.2"
Examples
PcapReader
use File;
use PcapReader;
let file_in = open.expect;
let pcap_reader = new.unwrap;
// Read test.pcap
for pkt in pcap_reader
The iterator API returns owned packets and is slower than next_packet(),
which can borrow packet data directly from the internal read buffer. It stops
after the first error.
PcapWriter
use File;
use ;
let file_in = open.expect;
let pcap_reader = new.unwrap;
let file_out = create.expect;
let mut pcap_writer = with_header.unwrap;
for pkt in pcap_reader
PcapNgReader
use File;
use PcapNgReader;
let file_in = open.expect;
let pcapng_reader = new.unwrap;
// Read test.pcapng
for block in pcapng_reader
The iterator API returns owned blocks and is slower than next_block(), which
can borrow block data directly from the internal read buffer and also exposes
the current PcapNgState. It stops after the first error.
PcapNgWriter
use File;
use ;
let file_in = open.expect;
let pcapng_reader = new.unwrap;
let file_out = create.expect;
let mut pcapng_writer =
with_section_header.unwrap;
for block in pcapng_reader
Packet blocks in pcapng refer to interface blocks by index. When creating a
pcapng file from scratch, write an InterfaceDescriptionBlock before any packet
block that uses that interface.
More complete read, write, raw recovery, and custom block examples are available
in tests/pcap/mod.rs and
tests/pcapng/mod.rs.
Fuzzing
Currently there are 4 crude harnesses to check that the parser won't panic in any situation. To start fuzzing you must install cargo-fuzz with the command:
And then, in the root of the repository, you can run the harnesses as:
Keep in mind that libfuzzer by default uses only one core, so you can either run all the harnesses in different terminals, or you can pass the -jobs and -workers attributes. More info can be found in its documentation here.
To get better crash reports add to you rust flags: -Zsanitizer=address.
E.g.
RUSTFLAGS="-Zsanitizer=address"
License
Licensed under MIT.
Disclaimer
To test the library I used the excellent PcapNg testing suite provided by hadrielk.