recvmsg: compute cmsg nexthdr end without firsthdr#1583
Open
rootvector2 wants to merge 1 commit into
Open
Conversation
In io_uring_recvmsg_cmsg_nexthdr() the cmsg region end is computed as io_uring_recvmsg_cmsg_firsthdr(o, msgh) + o->controllen. firsthdr returns NULL when o->controllen < sizeof(struct cmsghdr), and the addition becomes a non-zero offset applied to a null pointer, which is undefined behavior. Compute end directly as name + namelen + controllen so the arithmetic is always on a real pointer. The value is identical to the old expression when firsthdr would have succeeded, and the function still returns NULL for any cmsg that does not fit in the cmsg region. Signed-off-by: rootvector2 <dxbnaveed.k@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Noticed io_uring_recvmsg_cmsg_nexthdr() computes the cmsg region end as
io_uring_recvmsg_cmsg_firsthdr(o, msgh) + o->controllen. firsthdr
returns NULL when o->controllen < sizeof(struct cmsghdr), so this
becomes a non-zero offset applied to a null pointer, which is undefined
behavior. Compute end directly as name + namelen + controllen so the
arithmetic is always on a real pointer; the value matches the old
expression when firsthdr would have succeeded.