-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix panic on dropping RecvAncillaryBuffer
after failed recvmsg
#676
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
use super::super::c; | ||
use super::super::net::write_sockaddr::{encode_sockaddr_v4, encode_sockaddr_v6}; | ||
|
||
use crate::io::{IoSlice, IoSliceMut}; | ||
use crate::io::{self, IoSlice, IoSliceMut}; | ||
use crate::net::{RecvAncillaryBuffer, SendAncillaryBuffer, SocketAddrV4, SocketAddrV6}; | ||
use crate::utils::as_ptr; | ||
|
||
|
@@ -31,8 +31,10 @@ pub(crate) fn with_recv_msghdr<R>( | |
name: &mut MaybeUninit<c::sockaddr_storage>, | ||
iov: &mut [IoSliceMut<'_>], | ||
control: &mut RecvAncillaryBuffer<'_>, | ||
f: impl FnOnce(&mut c::msghdr) -> R, | ||
) -> R { | ||
f: impl FnOnce(&mut c::msghdr) -> io::Result<R>, | ||
) -> io::Result<R> { | ||
control.clear(); | ||
|
||
let namelen = size_of::<c::sockaddr_storage>() as c::c_int; | ||
let mut msghdr = c::msghdr { | ||
msg_name: name.as_mut_ptr().cast(), | ||
|
@@ -49,8 +51,10 @@ pub(crate) fn with_recv_msghdr<R>( | |
let res = f(&mut msghdr); | ||
|
||
// Reset the control length. | ||
unsafe { | ||
control.set_control_len(msghdr.msg_controllen.try_into().unwrap_or(usize::MAX)); | ||
if res.is_ok() { | ||
unsafe { | ||
control.set_control_len(msghdr.msg_controllen.try_into().unwrap_or(usize::MAX)); | ||
} | ||
} | ||
Comment on lines
+54
to
58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto here. |
||
|
||
res | ||
|
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if the contents of the control buffer are defined on error. I think it would be safest to set the buffer's length to zero on error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set_control_len
just sets thelength
(andread
) field of theRecvAncillaryBuffer
, which isn't part of the buffer that libc will be touching so it won't be changed by therecvmsg
call if thisset_control_len
line isn't run.And for a newly allocated
RecvAncillaryBuffer
, it will already be0
. So there's no need to set it, in that case.If the same
RecvAncillaryBuffer
is re-used in multiple calls, I'm not sure how that works currently. Should check that doesn't leak file descriptors or anything.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably be clearing out all of the inner data before we do anything with it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a commit that clears the
RecvAncillaryBuffer
at the start of the recv operation.