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)
Tue, Sep 15, 7:20 PM
Unknown Object (File)
Fri, Sep 11, 1:25 AM
Unknown Object (File)
Wed, Sep 9, 12:55 AM
Unknown Object (File)
Sat, Sep 5, 5:29 AM
Unknown Object (File)
Thu, Sep 3, 5:09 PM
Unknown Object (File)
Thu, Sep 3, 4:53 PM
Unknown Object (File)
Thu, Sep 3, 12:00 PM
Unknown Object (File)
Thu, Sep 3, 1:11 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. :(