2 releases

0.1.1 Nov 16, 2023
0.1.0 Apr 19, 2023

#5 in #netfilter

Download history 91/week @ 2023-12-19 151/week @ 2023-12-26 383/week @ 2024-01-02 285/week @ 2024-01-09 276/week @ 2024-01-16 318/week @ 2024-01-23 285/week @ 2024-01-30 253/week @ 2024-02-06 260/week @ 2024-02-13 305/week @ 2024-02-20 231/week @ 2024-02-27 188/week @ 2024-03-05 193/week @ 2024-03-12 55/week @ 2024-03-19 193/week @ 2024-03-26 181/week @ 2024-04-02

659 downloads per month

Custom license

48KB
1K SLoC

github crates-io rust-docs Dependency Status


conntrack-rs

An API providing access to the Conntrack subsystem of the Linux kernel written in rust 🦀

This library provides access to the conntrack subsystem in the linux kernel leveraging netlink support via the neli library.

The current version only supplies Dump() functionality for the Conntrack table. Leveraging the conntrack-tools utility in linux, the Dump() behavior is equivalent to: conntrack -L. Most of the model and attribute parsing supported in this library extends beyond the dump() command, which allows this library to eventually cover the full feature set of the conntrack subsystem.

You can enable byte and packet counters using sysctl -w net.netfilter.nf_conntrack_acct=1

Privileges

You need the CAP_NET_ADMIN capability in order to allow your application to receive events from and to send commands to kernel-space, excepting the conntrack table dumping operation.

WSL2 Conntrack

Note that in order to enable connection tracking via conntrack on WSL2, you'll need to add the following iptable entry:

iptables -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT

Example

use conntrack::*;

fn main() -> Result<()> {
    // Create the Conntrack table via netfilter socket syscall
    let mut ct = Conntrack::connect()?;

    // Dump conntrack table as a Vec<Flow>
    let flows = ct.dump()?;

    for flow in flows {
        log::info!("{flow:?}");
    }

    Ok(())
}

Dependencies

~3.5MB
~71K SLoC