Page MenuHomeFreeBSD

netipsec: Fix handling of unmapped mbufs
AbandonedPublic

Authored by markj on Jan 14 2021, 4:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
May 7 2026, 3:32 PM
Unknown Object (File)
May 3 2026, 7:33 AM
Unknown Object (File)
May 2 2026, 9:23 AM
Unknown Object (File)
Apr 30 2026, 1:47 AM
Unknown Object (File)
Apr 7 2026, 7:25 PM
Unknown Object (File)
Mar 29 2026, 3:06 AM
Unknown Object (File)
Mar 25 2026, 4:05 AM
Unknown Object (File)
Mar 22 2026, 4:04 PM
Subscribers

Details

Reviewers
jhb
gallatin
Summary

sendfile over an encrypted ESP tunnel triggers a panic because we fail
to map packet data before trying to compute a checksum. Add the same
mb_unmapped_to_ext() call that we have in other places.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 36203
Build 33092: arc lint + arc unit

Event Timeline

Thank you for catching this.

This revision is now accepted and ready to land.Jan 14 2021, 6:13 PM

I think the patch in D28187 is better. You need to release reference to SP when error occurs before ipsec4_process_packet().

In D28160#630053, @ae wrote:

I think the patch in D28187 is better. You need to release reference to SP when error occurs before ipsec4_process_packet().

Oops, thanks. :(