Problem
kerykeion's Meshtastic codec parses binary protocol frames from untrusted radio input. The codec has good unit tests for malformed input rejection, but no fuzz testing to discover edge cases that hand-written tests miss.
Required
fuzz/ directory with cargo-fuzz targets
- Targets for: Meshtastic frame decoding (codec.rs), protobuf-like message parsing, mesh packet routing decisions
- Seed corpus from the existing test fixtures
- Property tests (proptest) for codec round-trips: arbitrary valid frame → encode → decode → equals original
Impact
Radio protocol parsing handles untrusted input from the mesh network. A parsing bug could crash the collector or corrupt state.
Problem
kerykeion's Meshtastic codec parses binary protocol frames from untrusted radio input. The codec has good unit tests for malformed input rejection, but no fuzz testing to discover edge cases that hand-written tests miss.
Required
fuzz/directory with cargo-fuzz targetsImpact
Radio protocol parsing handles untrusted input from the mesh network. A parsing bug could crash the collector or corrupt state.