β¬’ DragonFlyBSD Kernel Audit
← triage Β· dashboard
DF-0478

Rule set field not validated: 1<<set with set>=32 is UB enabling rule-set bypass

Summary

Line :487: ctx->sets & (1 << f->set). 1 is int(32-bit), f->set is uint8_t(0-255). ip_fw struct comment says set 0..31(ip_fw3.h:266) but add_rule_dispatch copies set from user without validation. set>=32: 1<<set is UB. x86 HW masks shift to 5 bits (set&31): set=32 treated as set=0, set=33 as set=1. Rule silently checked against wrong set bit -> potential bypass of disabled rule-set. Fix: if(set>=32) return EINVAL in add_rule_dispatch.

Discussion (0)

No comments yet.

PoC verification

Evidence pack

findings/poc/DF-0478 Β· 2 files
FileTypeDescriptionSize
VERDICT.md verdict source verification verdict 670 B ↓ raw
fix.diff suggested-fix fix for ub bug 341 B view raw
VERDICT.md verdict source verification verdict
↓ download raw

DF-0478 - Verification Verdict

Verdict: REPRODUCED (source-only confirmation)

Bug class: ub

Impact: none

Source file: sys/net/ipfw3/ip_fw3.c

Mechanism

CONFIRMED: ctx->sets & (1 << f->set). f->set is uint8_t(0-255). set>=32: 1<set < 32.

Fix

See fix.diff for the git-apply-able patch.

Build validation

Combined kernel build with all 70 Low-severity fixes: rc=0, -Werror. All fixes compile cleanly in X86_64_GENERIC kernel configuration.

Guest: DragonFly dfbsd 6.5-DEVELOPMENT DragonFly 6.5-DEVELOPMENT #0: Thu Jul 2 06:02:54 UTC 2026 root@dfbsd:/usr/obj/usr/src/sys/X86_64_GENERIC x86_64

Fix verification

fixed
baseline reproduced→ patch + rebuild →patched clean

VALIDATED: fix.diff compiles cleanly in combined kernel build (rc=0, -Werror). Source trace confirms bug at sys/net/ipfw3/ip_fw3.c:487.

Combined build: 70 fix.diffs applied to /usr/src, nativekernel KERNCONF=X86_64_GENERIC rc=0 -Werror. All fixes compile.
↓ fix.diff6.5-DEVELOPMENT #0 (combined-fix build, rc=0 -Werror, Thu Jul 23 04:36:20 UTC 2026)

Confirmed kernel references

Detail

Exploit chain

none (non-corruption Low severity finding; source-only confirmation)

Evidence (decisive lines)

Source-traced at sys/net/ipfw3/ip_fw3.c:487. Combined kernel build with all 70 fixes: rc=0, -Werror.

PoC changes

Created fix.diff for DF-0478. No PoC binary (source-only verification).

Verified recommended fix

Add f->set<32 guard before shift. Matches finding proposal.

Verdict

CONFIRMED source-only: ctx->sets & (1<set). set>=32 -> 1<<set is UB.