]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Add compat implementation of ppoll using pselect.
authorDarren Tucker <dtucker@dtucker.net>
Thu, 18 Nov 2021 12:11:37 +0000 (23:11 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Thu, 18 Nov 2021 12:11:37 +0000 (23:11 +1100)
configure.ac
openbsd-compat/bsd-poll.c
openbsd-compat/bsd-poll.h

index cd4cadecc9bb1250b3df4e3f31e66e6f60d02350..a159d9f07ab2a54cbe35407d3450f7f843b6bb5a 100644 (file)
@@ -1874,6 +1874,7 @@ AC_CHECK_FUNCS([ \
        openlog_r \
        pledge \
        poll \
+       ppoll \
        prctl \
        procctl \
        pselect \
@@ -3547,6 +3548,26 @@ AC_RUN_IFELSE(
         select_works_with_rlimit=yes]
 )
 
+AC_CHECK_MEMBERS([struct pollfd.fd], [], [], [[
+#include <sys/types.h>
+#ifdef HAVE_POLL_H
+#include <poll.h>
+#endif
+#ifdef HAVE_SYS_POLL_H
+#include <sys/poll.h>
+#endif
+]])
+
+AC_CHECK_TYPES([nfds_t], , , [
+#include <sys/types.h>
+#ifdef HAVE_POLL_H
+#include <poll.h>
+#endif
+#ifdef HAVE_SYS_POLL_H
+#include <sys/poll.h>
+#endif
+])
+
 AC_MSG_CHECKING([if setrlimit(RLIMIT_NOFILE,{0,0}) works])
 AC_RUN_IFELSE(
        [AC_LANG_PROGRAM([[
index c8e6222c0e345eff9e977c94dc4105b8d8ad212a..f1b2f119c1b92919be3aaa6fe4ea9515d64f3116 100644 (file)
@@ -15,7 +15,7 @@
  */
 
 #include "includes.h"
-#if !defined(HAVE_POLL)
+#if !defined(HAVE_PPOLL) || !defined(HAVE_POLL)
 
 #include <sys/types.h>
 #include <sys/time.h>
 #endif
 
 #include <errno.h>
+#include <signal.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include "bsd-poll.h"
 
+#ifndef HAVE_PPOLL
 /*
- * A minimal implementation of poll(2), built on top of select(2).
+ * A minimal implementation of ppoll(2), built on top of pselect(2).
  *
  * Only supports POLLIN and POLLOUT flags in pfd.events, and POLLIN, POLLOUT
  * and POLLERR flags in revents.
  */
 
 int
-poll(struct pollfd *fds, nfds_t nfds, int timeout)
+ppoll(struct pollfd *fds, nfds_t nfds, const struct timespec *tmoutp,
+    const sigset_t *sigmask)
 {
        nfds_t i;
        int saved_errno, ret, fd, maxfd = 0;
        fd_set *readfds = NULL, *writefds = NULL, *exceptfds = NULL;
        size_t nmemb;
-       struct timeval tv, *tvp = NULL;
 
        for (i = 0; i < nfds; i++) {
                fd = fds[i].fd;
@@ -79,14 +81,7 @@ poll(struct pollfd *fds, nfds_t nfds, int timeout)
                }
        }
 
-       /* poll timeout is msec, select is timeval (sec + usec) */
-       if (timeout >= 0) {
-               tv.tv_sec = timeout / 1000;
-               tv.tv_usec = (timeout % 1000) * 1000;
-               tvp = &tv;
-       }
-
-       ret = select(maxfd + 1, readfds, writefds, exceptfds, tvp);
+       ret = pselect(maxfd + 1, readfds, writefds, exceptfds, tmoutp, sigmask);
        saved_errno = errno;
 
        /* scan through select results and set poll() flags */
@@ -114,4 +109,23 @@ out:
                errno = saved_errno;
        return ret;
 }
-#endif
+#endif /* HAVE_PPOLL */
+
+#ifdef HAVE_POLL
+int
+poll(struct pollfd *fds, nfds_t nfds, int timeout)
+{
+       struct timespec ts, *tsp = NULL;
+
+       /* poll timeout is msec, ppoll is timespec (sec + nsec) */
+       if (timeout >= 0) {
+               ts.tv_sec = timeout / 1000;
+               ts.tv_nsec = (timeout % 1000000) * 1000000;
+               tsp = &ts;
+       }
+
+       return ppoll(fds, nfds, tsp, NULL);
+}
+#endif /* HAVE_POLL */
+
+#endif /* HAVE_PPOLL || HAVE_POLL */
index 8420ca1db3781bcd9bac06cc6250bea2ea2ef5ea..73acd3c1726c31578c432f0b082b10d0fe08b599 100644 (file)
 
 /* OPENBSD ORIGINAL: sys/sys/poll.h */
 
-#if !defined(HAVE_POLL) && !defined(HAVE_POLL_H)
 #ifndef        _COMPAT_POLL_H_
 #define        _COMPAT_POLL_H_
 
+#include <sys/types.h>
+#ifdef HAVE_POLL_H
+# include <poll.h>
+#endif
+#ifdef HAVE_SYS_POLL_H
+# include <sys/poll.h>
+#endif
+
+#ifndef HAVE_STRUCT_POLLFD_FD
 typedef struct pollfd {
        int     fd;
        short   events;
        short   revents;
 } pollfd_t;
 
-typedef unsigned int   nfds_t;
-
 #define        POLLIN          0x0001
 #define        POLLOUT         0x0004
 #define        POLLERR         0x0008
@@ -55,7 +61,18 @@ typedef unsigned int nfds_t;
 #endif
 
 #define INFTIM         (-1)    /* not standard */
+#endif /* !HAVE_STRUCT_POLLFD_FD */
+
+#ifndef HAVE_NFDS_T
+typedef unsigned int   nfds_t;
+#endif
 
+#ifndef HAVE_POLL
 int   poll(struct pollfd *, nfds_t, int);
+#endif
+
+#ifndef HAVE_PPOLL
+int   ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
+#endif
+
 #endif /* !_COMPAT_POLL_H_ */
-#endif /* !HAVE_POLL_H */