//===-- Linux implementation of select ------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "src/sys/select/select.h" #include "src/__support/CPP/limits.h" #include "src/__support/OSUtil/syscall.h" // For internal syscall function. #include "src/__support/common.h" #include "src/errno/libc_errno.h" #include #include // For size_t #include #include // For syscall numbers. namespace __llvm_libc { struct pselect6_sigset_t { sigset_t *ss; size_t ss_len; }; LLVM_LIBC_FUNCTION(int, select, (int nfds, fd_set *__restrict read_set, fd_set *__restrict write_set, fd_set *__restrict error_set, struct timeval *__restrict timeout)) { // Linux has a SYS_select syscall but it is not available on all // architectures. So, we use the SYS_pselect6 syscall which is more // widely available. However, SYS_pselect6 takes a struct timespec argument // instead of a struct timeval argument. Also, it takes an additional // argument which is a pointer to an object of a type defined above as // "pselect6_sigset_t". struct timespec ts { 0, 0 }; if (timeout != nullptr) { // In general, if the tv_sec and tv_usec in |timeout| are correctly set, // then converting tv_usec to nanoseconds will not be a problem. However, // if tv_usec in |timeout| is more than a second, it can lead to overflows. // So, we detect such cases and adjust. constexpr time_t TIME_MAX = cpp::numeric_limits::max(); if ((TIME_MAX - timeout->tv_sec) < (timeout->tv_usec / 1000000)) { ts.tv_sec = TIME_MAX; ts.tv_nsec = 999999999; } else { ts.tv_sec = timeout->tv_sec + timeout->tv_usec / 1000000; ts.tv_nsec = timeout->tv_usec * 1000; } } pselect6_sigset_t pss{nullptr, sizeof(sigset_t)}; long ret = __llvm_libc::syscall_impl(SYS_pselect6, nfds, read_set, write_set, error_set, &ts, &pss); if (ret < 0) { libc_errno = -ret; return -1; } return ret; } } // namespace __llvm_libc