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, Jun 20, 11:27 PM
Unknown Object (File)
Thu, Jun 20, 10:07 PM
Unknown Object (File)
Thu, Jun 20, 6:41 PM
Unknown Object (File)
Thu, Jun 20, 4:44 PM
Unknown Object (File)
May 24 2024, 3:02 PM
Unknown Object (File)
Feb 24 2024, 5:48 AM
Unknown Object (File)
Dec 21 2023, 12:27 AM
Unknown Object (File)
Dec 20 2023, 8:29 AM
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. :(