#jit #bpf #cbpf #libpcap #libbpfjit

sys bpfjit-sys

Rust bindings to NetBSD's cBPF JIT engine

6 stable releases

2.1.0 Nov 1, 2021
2.0.0 Oct 8, 2019
1.1.0 May 28, 2019
1.0.2 Apr 17, 2019
1.0.0 Apr 16, 2019

#635 in Unix APIs

Download history 276/week @ 2023-12-17 36/week @ 2023-12-24 224/week @ 2023-12-31 264/week @ 2024-01-07 439/week @ 2024-01-14 335/week @ 2024-01-21 325/week @ 2024-01-28 530/week @ 2024-02-04 400/week @ 2024-02-11 429/week @ 2024-02-18 346/week @ 2024-02-25 257/week @ 2024-03-03 516/week @ 2024-03-10 395/week @ 2024-03-17 84/week @ 2024-03-24 245/week @ 2024-03-31

1,242 downloads per month

BSD-2-Clause

1MB
31K SLoC

C 31K SLoC // 0.1% comments Rust 216 SLoC // 0.0% comments

bpfjit-sys

Rust bindings to NetBSD's cBPF JIT engine

Version: 2.0.0
Author: Alex Forster <alex@alexforster.com>
License: BSD-2-Clause

Build Status

Usage

use bpfjit_sys::{BpfJit, Linktype};

static PACKET: &'static [u8] = &[
	// 0xDE, 0xAD, 0xBE, 0xEF, ...
];

fn main() {
	let filter = BpfJit::new("udp dst port 123", Linktype::Ethernet)?;
	
	if filter.matches(PACKET) {
		// ...
	}
}

Attributions

sljit

Copyright © Zoltan Herczeg <hzmester@freemail.hu>. All rights reserved.

Distributed under the 2-clause BSD license (BSD-2-Clause).

bpfjit

Copyright © Alexander Nasonov <alnsn@yandex.ru>. All rights reserved.

Distributed under the 2-clause BSD license (BSD-2-Clause).

Dependencies