Page MenuHomeFreeBSD

freebsd32_sendmsg: fix control message ABI
ClosedPublic

Authored by brooks on Aug 23 2022, 9:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Aug 9, 9:22 AM
Unknown Object (File)
Sun, Aug 9, 9:18 AM
Unknown Object (File)
Sun, Aug 9, 8:52 AM
Unknown Object (File)
Wed, Aug 5, 8:28 AM
Unknown Object (File)
Wed, Aug 5, 2:23 AM
Unknown Object (File)
Tue, Aug 4, 4:39 AM
Unknown Object (File)
Sat, Aug 1, 11:04 PM
Unknown Object (File)
Jul 17 2026, 11:35 AM
Subscribers

Details

Summary

When a freebsd32 caller uses all or most allowed space for control
messages (MCLBYTES == 2K) then the message may no longer fit when
the messages are padded for 64-bit alignment. Historically we've just
shrugged and said there is no ABI guarantee. We ran into this on
CheriBSD where a capsicumized 64-bit nm would fail when called with more
than 64 files.

Fix this by not gratutiously capping size of mbuf data we'll allocate
to MCLBYTES and let m_get2 allocate up to MJUMPAGESIZE (4K or larger).
Instead of hard-coding a length check, let m_get2 do it and check for a
NULL return.

Sponsored by: DARPA, AFRL

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable