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)
Thu, Aug 13, 8:43 PM
Unknown Object (File)
Thu, Aug 13, 8:39 PM
Unknown Object (File)
Wed, Aug 12, 5:18 PM
Unknown Object (File)
Wed, Aug 12, 1:13 PM
Unknown Object (File)
Sat, Aug 8, 8:44 PM
Unknown Object (File)
Fri, Jul 24, 6:56 PM
Unknown Object (File)
Tue, Jul 21, 12:40 AM
Unknown Object (File)
Jul 4 2026, 4:30 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. :(