poll: fix misuse of timespec type on 32-bit archs without poll syscall
authorRich Felker <dalias@aerifal.cx>
Fri, 3 Mar 2023 14:27:04 +0000 (09:27 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 3 Mar 2023 14:52:52 +0000 (09:52 -0500)
commitb6811019e62a7561a4922f90e54b30ac306efe0b
tree964cd15c4e8fa86497b8b52d79fa00ef5c1e17ad
parent8949da7ab1c0dbf801e8bc78f0c0adc625020f75
poll: fix misuse of timespec type on 32-bit archs without poll syscall

this function was overlooked during the time64 transition, probably as
a result of not having any time-related types in its application-side
interface. however, for archs that lack the traditional poll syscall
and have only ppoll, it used timespec as part of its interface with
the kernel: the millisecond timeout was converted to a timespec to
pass to SYS_ppoll. this is a type/ABI mismatch on 32-bit archs with
legacy time32 syscalls.

only one supported arch, or1k, is affected. all of the others either
have SYS_poll, or are 64-bit.

rather than using timespec, define a type locally to match what the
kernel expects. the condition (SYS_ppoll_time64 == SYS_ppoll),
comparable to conditions used elsewhere in timespec-handling code,
evaluates true for "natively time64" 32-bit archs including x32,
future riscv32, and all future 32-bit archs (via definitions in
internal syscall.h). otherwise, the arch is either 64-bit or has
syscalls that take the legacy type, and in either case "long" is
correct.

this fix is based on bug report and proposal by Alexey Izbyshev but
with a different approach to the changes to minimize the contextual
knowledge needed for a reader to understand the source file.
src/select/poll.c