10 releases

new 0.4.6 Apr 18, 2024
0.4.5 Dec 28, 2022
0.4.4 Oct 8, 2021
0.4.1 Feb 23, 2021
0.1.0 Dec 20, 2017

#23 in macOS and iOS APIs

Download history 845/week @ 2024-01-01 1122/week @ 2024-01-08 799/week @ 2024-01-15 723/week @ 2024-01-22 926/week @ 2024-01-29 1314/week @ 2024-02-05 1640/week @ 2024-02-12 720/week @ 2024-02-19 744/week @ 2024-02-26 1496/week @ 2024-03-04 1350/week @ 2024-03-11 1552/week @ 2024-03-18 1600/week @ 2024-03-25 991/week @ 2024-04-01 1740/week @ 2024-04-08 1534/week @ 2024-04-15

5,873 downloads per month

MIT/Apache

200KB
6K SLoC

pfctl

Library for interfacing with the Packet Filter (PF) firewall on macOS.

Allows controlling the PF firewall on macOS through ioctl syscalls and the /dev/pf device.

Reading and writing to /dev/pf requires root permissions. So any program using this crate must run as the superuser, otherwise creating the PfCtl instance will fail with a "Permission denied" error.

OS Compatibility

PF is the firewall used in most (all?) BSD systems, but this crate only supports the macOS variant for now. If it can be made to work on more BSD systems that would be great, but no work has been put into that so far.

Usage and examples

A lot of examples of how to use the various features of this crate can be found in the integration tests in and examples.

Here is a simple example showing how to enable the firewall and add a packet filtering rule:

extern crate pfctl;

// Create a PfCtl instance to control PF with:
let mut pf = pfctl::PfCtl::new().unwrap();

// Enable the firewall, equivalent to the command "pfctl -e":
pf.try_enable().unwrap();

// Add an anchor rule for packet filtering rules into PF. This will fail if it already exists,
// use `try_add_anchor` to avoid that:
let anchor_name = "testing-out-pfctl";
pf.add_anchor(anchor_name, pfctl::AnchorKind::Filter).unwrap();

// Create a packet filtering rule matching all packets on the "lo0" interface and allowing
// them to pass:
let rule = pfctl::FilterRuleBuilder::default()
    .action(pfctl::FilterRuleAction::Pass)
    .interface("lo0")
    .build()
    .unwrap();

// Add the filterig rule to the anchor we just created.
pf.add_rule(anchor_name, &rule).unwrap();

License: MIT/Apache-2.0

Dependencies

~4.5–6MB
~123K SLoC