Page MenuHomeFreeBSD

netipsec: Fix handling of unmapped mbufs
AbandonedPublic

Authored by markj on Jan 14 2021, 4:36 PM.
Tags
None
Referenced Files
F102965630: D28160.diff
Tue, Nov 19, 7:12 AM
Unknown Object (File)
Thu, Oct 24, 8:44 AM
Unknown Object (File)
Thu, Oct 24, 8:44 AM
Unknown Object (File)
Thu, Oct 24, 8:24 AM
Unknown Object (File)
Oct 19 2024, 2:29 AM
Unknown Object (File)
Sep 29 2024, 5:57 PM
Unknown Object (File)
Sep 29 2024, 4:44 AM
Unknown Object (File)
Sep 5 2024, 8:18 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. :(