summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-02-07 12:51:02 -0500
committerRich Felker <dalias@aerifal.cx>2019-02-07 12:51:02 -0500
commit042b3ee452f542e0e16d847f90777e8c3a012375 (patch)
tree906be6630f8838a9c3fd1b10beb31f01cc712cb9 /configure
parent1dd915c37090b32a6220488f99ce0f9be86eb46d (diff)
downloadmusl-042b3ee452f542e0e16d847f90777e8c3a012375.tar.gz
fail fdopendir for O_PATH file descriptors
fdopendir is specified to fail with EBADF if the file descriptor passed is not open for reading. while O_PATH is an extension and arguably exempt from this requirement, it's used, albeit incompletely, to implement O_SEARCH, and fdopendir should fail when passed an O_SEARCH file descriptor. the new check is performed after fstat so that we don't have to consider the possibility that the fd is invalid. an alternate solution would be attempting to pre-fill the buffer using getdents, which would fail with EBADF for us, but that seems more complex and error-prone and involves either code duplication or refactoring, so the simple fix with an additional inexpensive syscall is what I've made for now.
Diffstat (limited to 'configure')
0 files changed, 0 insertions, 0 deletions