OSDN Git Service

fail fdopendir for O_PATH file descriptors
authorRich Felker <dalias@aerifal.cx>
Thu, 7 Feb 2019 17:51:02 +0000 (12:51 -0500)
committerRich Felker <dalias@aerifal.cx>
Thu, 7 Feb 2019 17:51:02 +0000 (12:51 -0500)
commit042b3ee452f542e0e16d847f90777e8c3a012375
tree906be6630f8838a9c3fd1b10beb31f01cc712cb9
parent1dd915c37090b32a6220488f99ce0f9be86eb46d
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.
src/dirent/fdopendir.c