/winsup/cygwin/poll.cc

https://bitbucket.org/pizzafactory/binutils · C++ · 158 lines · 113 code · 14 blank · 31 comment · 35 complexity · 4dfdf466ef4f1b95ee0ad75a762fe182 MD5 · raw file

  1. /* poll.cc. Implements poll(2) via usage of select(2) call.
  2. Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011,
  3. 2012 Red Hat, Inc.
  4. This file is part of Cygwin.
  5. This software is a copyrighted work licensed under the terms of the
  6. Cygwin license. Please consult the file "CYGWIN_LICENSE" for
  7. details. */
  8. #define FD_SETSIZE 16384 // lots of fds
  9. #include "winsup.h"
  10. #include <sys/poll.h>
  11. #include <stdlib.h>
  12. #define USE_SYS_TYPES_FD_SET
  13. #include "cygerrno.h"
  14. #include "path.h"
  15. #include "fhandler.h"
  16. #include "dtable.h"
  17. #include "cygheap.h"
  18. #include "pinfo.h"
  19. #include "sigproc.h"
  20. extern "C" int
  21. poll (struct pollfd *fds, nfds_t nfds, int timeout)
  22. {
  23. int max_fd = 0;
  24. int invalid_fds = 0;
  25. fd_set *read_fds, *write_fds, *except_fds;
  26. struct timeval tv = { timeout / 1000, (timeout % 1000) * 1000 };
  27. for (unsigned int i = 0; i < nfds; ++i)
  28. if (fds[i].fd > max_fd)
  29. max_fd = fds[i].fd;
  30. size_t fds_size = howmany (max_fd + 1, NFDBITS) * sizeof (fd_mask);
  31. read_fds = (fd_set *) alloca (fds_size);
  32. write_fds = (fd_set *) alloca (fds_size);
  33. except_fds = (fd_set *) alloca (fds_size);
  34. if (!read_fds || !write_fds || !except_fds)
  35. {
  36. set_errno (EINVAL); /* According to SUSv3. */
  37. return -1;
  38. }
  39. memset (read_fds, 0, fds_size);
  40. memset (write_fds, 0, fds_size);
  41. memset (except_fds, 0, fds_size);
  42. for (unsigned int i = 0; i < nfds; ++i)
  43. {
  44. fds[i].revents = 0;
  45. if (!cygheap->fdtab.not_open (fds[i].fd))
  46. {
  47. if (fds[i].events & POLLIN)
  48. FD_SET(fds[i].fd, read_fds);
  49. if (fds[i].events & POLLOUT)
  50. FD_SET(fds[i].fd, write_fds);
  51. if (fds[i].events & POLLPRI)
  52. FD_SET(fds[i].fd, except_fds);
  53. }
  54. else if (fds[i].fd >= 0)
  55. {
  56. ++invalid_fds;
  57. fds[i].revents = POLLNVAL;
  58. }
  59. }
  60. /* Invalid fds? */
  61. if (invalid_fds > 0)
  62. {
  63. /* Only invalid fds? Return. */
  64. if ((nfds_t) invalid_fds == nfds)
  65. return invalid_fds;
  66. /* POSIX doesn't explicitely define this behaviour, but on Linux,
  67. the timeout is set to 0 if an error occurs, and POLLNVAL is one
  68. of these errors. So, for Linux-compatibility's sake... */
  69. tv.tv_sec = tv.tv_usec = 0;
  70. }
  71. int ret = cygwin_select (max_fd + 1, read_fds, write_fds, except_fds,
  72. timeout < 0 ? NULL : &tv);
  73. /* timeout, signal, whatever? Return. If invalid fds exist, return with
  74. their number. */
  75. if (ret <= 0)
  76. return invalid_fds ?: ret;
  77. /* Set revents fields and count fds with non-zero revents fields for
  78. return value. */
  79. ret = 0;
  80. for (unsigned int i = 0; i < nfds; ++i)
  81. {
  82. if (fds[i].fd >= 0 && fds[i].revents != POLLNVAL)
  83. {
  84. fhandler_socket *sock;
  85. /* Check if the descriptor has been closed, or if shutdown for the
  86. read side has been called on a socket. */
  87. if (cygheap->fdtab.not_open (fds[i].fd)
  88. || ((sock = cygheap->fdtab[fds[i].fd]->is_socket ())
  89. && sock->saw_shutdown_read ()))
  90. fds[i].revents = POLLHUP;
  91. else
  92. {
  93. if (FD_ISSET(fds[i].fd, read_fds))
  94. /* This should be sufficient for sockets, too. Using
  95. MSG_PEEK, as before, can be considered dangerous at
  96. best. Quote from W. Richard Stevens: "The presence
  97. of an error can be considered either normal data or
  98. an error (POLLERR). In either case, a subsequent read
  99. will return -1 with errno set to the appropriate value."
  100. So it looks like there's actually no good reason to
  101. return POLLERR. */
  102. fds[i].revents |= POLLIN;
  103. /* Handle failed connect. */
  104. if (FD_ISSET(fds[i].fd, write_fds)
  105. && (sock = cygheap->fdtab[fds[i].fd]->is_socket ())
  106. && sock->connect_state () == connect_failed)
  107. fds[i].revents |= (POLLIN | POLLERR);
  108. else
  109. {
  110. if (FD_ISSET(fds[i].fd, write_fds))
  111. fds[i].revents |= POLLOUT;
  112. if (FD_ISSET(fds[i].fd, except_fds))
  113. fds[i].revents |= POLLPRI;
  114. }
  115. }
  116. if (fds[i].revents)
  117. ++ret;
  118. }
  119. }
  120. /* Number of fds with event includes the invalid fds. */
  121. return ret + invalid_fds;
  122. }
  123. extern "C" int
  124. ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout_ts,
  125. const sigset_t *sigmask)
  126. {
  127. int timeout;
  128. sigset_t oldset = _my_tls.sigmask;
  129. myfault efault;
  130. if (efault.faulted (EFAULT))
  131. return -1;
  132. timeout = (timeout_ts == NULL)
  133. ? -1
  134. : (timeout_ts->tv_sec * 1000 + timeout_ts->tv_nsec / 1000000);
  135. if (sigmask)
  136. set_signal_mask (_my_tls.sigmask, *sigmask);
  137. int ret = poll (fds, nfds, timeout);
  138. if (sigmask)
  139. set_signal_mask (_my_tls.sigmask, oldset);
  140. return ret;
  141. }