Page MenuHomeFreeBSD

ipfw: Update the pfil mbuf pointer in ipfw_check_frame()
ClosedPublic

Authored by markj on Jun 14 2021, 9:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Nov 25, 8:53 AM
Unknown Object (File)
Sun, Nov 23, 1:03 PM
Unknown Object (File)
Sat, Nov 22, 12:07 PM
Unknown Object (File)
Wed, Nov 19, 10:51 PM
Unknown Object (File)
Wed, Nov 19, 10:51 PM
Unknown Object (File)
Wed, Nov 19, 10:50 PM
Unknown Object (File)
Wed, Nov 19, 10:49 PM
Unknown Object (File)
Thu, Nov 13, 9:24 PM

Details

Summary

ipfw_chk() might call m_pullup() and thus can change the mbuf chain
head. In this case, the new chain head has to be returned to the pfil
hook caller.

PR: 256439
Fixes: f355cb3e6
MFC after: 3 days

Diff Detail

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

Event Timeline

markj requested review of this revision.Jun 14 2021, 9:42 PM

I think we can set *p.m unconditionally, like we do in ipfw_check_packet().

This revision is now accepted and ready to land.Jun 15 2021, 11:21 AM
In D30764#691796, @ae wrote:

I think we can set *p.m unconditionally, like we do in ipfw_check_packet().

p is a union of struct mbuf ** and void *. So wouldn't setting *p.m do the wrong thing if the packet is passed with PFIL_MEMPTR?

p is a union of struct mbuf ** and void *. So wouldn't setting *p.m do the wrong thing if the packet is passed with PFIL_MEMPTR?

You are right.