linux: Improve panic message for out-of-range fds in FD_* functions - #5528
Open
danielcanencia wants to merge 1 commit into
Open
linux: Improve panic message for out-of-range fds in FD_* functions#5528danielcanencia wants to merge 1 commit into
danielcanencia wants to merge 1 commit into
Conversation
Passing a file descriptor that is negative or >= FD_SETSIZE to FD_SET, FD_CLR or FD_ISSET is undefined behavior per POSIX, and the previous "index out of bounds" panic gave no hint of the required range. Panic with a message that states the valid 0..FD_SETSIZE range instead. Source: https://github.com/bminor/glibc/blob/d2097651cc57834dbfcaa102ddfacae0d86cfb66/misc/sys/select.h Part of rust-lang#1401 Signed-off-by: Daniel Canencia Garcia <danielcanenciagarcia@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.
Part of #1401
Fixes the out-of-bounds FD_SET/FD_CLR/FD_ISSET panic for Linux
(linux_like). The issue also calls for the same clear panic message in
other platforms; those remain a follow-up (cygwin, haiku, solaris, etc).
Note:
is nothing to range-check.