2000-07-05 00:58:49 +08:00
|
|
|
/* poll.cc. Implements poll(2) via usage of select(2) call.
|
|
|
|
|
2002-06-05 12:01:43 +08:00
|
|
|
Copyright 2000, 2001, 2002 Red Hat, Inc.
|
2000-07-05 00:58:49 +08:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2002-11-20 16:03:50 +08:00
|
|
|
#define __INSIDE_CYGWIN_NET__
|
|
|
|
|
2000-08-12 13:39:41 +08:00
|
|
|
#include "winsup.h"
|
2000-09-08 10:56:55 +08:00
|
|
|
#include <sys/time.h>
|
2000-08-03 00:28:18 +08:00
|
|
|
#include <sys/poll.h>
|
2002-08-29 17:41:00 +08:00
|
|
|
#include <sys/socket.h>
|
2000-08-12 04:34:24 +08:00
|
|
|
#include <errno.h>
|
2001-11-15 11:25:52 +08:00
|
|
|
#include <stdlib.h>
|
2002-11-20 16:03:50 +08:00
|
|
|
#define USE_SYS_TYPES_FD_SET
|
|
|
|
#include <winsock2.h>
|
2001-07-27 03:22:24 +08:00
|
|
|
#include "security.h"
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "fhandler.h"
|
2001-10-01 12:10:07 +08:00
|
|
|
#include "path.h"
|
2000-08-12 13:35:42 +08:00
|
|
|
#include "dtable.h"
|
2000-08-22 11:58:47 +08:00
|
|
|
#include "cygerrno.h"
|
2001-10-16 07:39:33 +08:00
|
|
|
#include "cygheap.h"
|
2001-03-20 06:48:26 +08:00
|
|
|
#include "sigproc.h"
|
2000-07-05 00:58:49 +08:00
|
|
|
|
2003-03-10 04:10:25 +08:00
|
|
|
extern "C" int
|
2000-07-05 00:58:49 +08:00
|
|
|
poll (struct pollfd *fds, unsigned int nfds, int timeout)
|
|
|
|
{
|
|
|
|
int max_fd = 0;
|
2002-03-14 20:15:31 +08:00
|
|
|
fd_set *read_fds, *write_fds, *except_fds;
|
2000-07-05 00:58:49 +08:00
|
|
|
struct timeval tv = { timeout / 1000, (timeout % 1000) * 1000 };
|
2001-03-20 06:48:26 +08:00
|
|
|
sigframe thisframe (mainthread);
|
2000-07-05 00:58:49 +08:00
|
|
|
|
2000-08-12 04:34:24 +08:00
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
|
|
if (fds[i].fd > max_fd)
|
|
|
|
max_fd = fds[i].fd;
|
|
|
|
|
2002-09-22 11:38:57 +08:00
|
|
|
size_t fds_size = howmany (max_fd + 1, NFDBITS) * sizeof (fd_mask);
|
2000-08-12 04:34:24 +08:00
|
|
|
|
|
|
|
read_fds = (fd_set *) alloca (fds_size);
|
|
|
|
write_fds = (fd_set *) alloca (fds_size);
|
|
|
|
except_fds = (fd_set *) alloca (fds_size);
|
|
|
|
|
2002-03-14 20:15:31 +08:00
|
|
|
if (!read_fds || !write_fds || !except_fds)
|
2000-08-12 04:34:24 +08:00
|
|
|
{
|
|
|
|
set_errno (ENOMEM);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset (read_fds, 0, fds_size);
|
|
|
|
memset (write_fds, 0, fds_size);
|
|
|
|
memset (except_fds, 0, fds_size);
|
2000-07-05 00:58:49 +08:00
|
|
|
|
2002-05-28 09:55:40 +08:00
|
|
|
int invalid_fds = 0;
|
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
|
|
{
|
|
|
|
fds[i].revents = 0;
|
2002-09-22 11:38:57 +08:00
|
|
|
if (!cygheap->fdtab.not_open (fds[i].fd))
|
2002-05-28 09:55:40 +08:00
|
|
|
{
|
|
|
|
if (fds[i].events & POLLIN)
|
|
|
|
FD_SET(fds[i].fd, read_fds);
|
|
|
|
if (fds[i].events & POLLOUT)
|
|
|
|
FD_SET(fds[i].fd, write_fds);
|
|
|
|
if (fds[i].events & POLLPRI)
|
|
|
|
FD_SET(fds[i].fd, except_fds);
|
|
|
|
}
|
|
|
|
else if (fds[i].fd >= 0)
|
|
|
|
{
|
|
|
|
++invalid_fds;
|
|
|
|
fds[i].revents = POLLNVAL;
|
|
|
|
}
|
|
|
|
}
|
2000-07-05 00:58:49 +08:00
|
|
|
|
2002-05-28 09:55:40 +08:00
|
|
|
if (invalid_fds)
|
|
|
|
return invalid_fds;
|
2002-03-20 01:12:49 +08:00
|
|
|
|
2002-05-28 09:55:40 +08:00
|
|
|
int ret = cygwin_select (max_fd + 1, read_fds, write_fds, except_fds, timeout < 0 ? NULL : &tv);
|
2000-07-05 00:58:49 +08:00
|
|
|
|
2002-05-28 09:55:40 +08:00
|
|
|
if (ret > 0)
|
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
|
|
{
|
|
|
|
if (fds[i].fd >= 0)
|
|
|
|
{
|
2002-09-22 11:38:57 +08:00
|
|
|
if (cygheap->fdtab.not_open (fds[i].fd))
|
2002-05-28 09:55:40 +08:00
|
|
|
fds[i].revents = POLLHUP;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (FD_ISSET(fds[i].fd, read_fds))
|
2002-08-29 17:41:00 +08:00
|
|
|
{
|
|
|
|
char peek[1];
|
|
|
|
fhandler_socket *sock =
|
|
|
|
cygheap->fdtab[fds[i].fd]->is_socket ();
|
|
|
|
if (!sock)
|
|
|
|
fds[i].revents |= POLLIN;
|
|
|
|
else
|
2002-11-20 16:03:50 +08:00
|
|
|
{
|
|
|
|
/* The following action can change errno. We have to
|
|
|
|
reset it to it's old value. */
|
|
|
|
int old_errno = get_errno ();
|
|
|
|
switch (sock->recvfrom (peek, sizeof (peek), MSG_PEEK,
|
|
|
|
NULL, NULL))
|
|
|
|
{
|
|
|
|
case -1: /* Something weird happened */
|
|
|
|
/* When select returns that data is available,
|
|
|
|
that could mean that the socket is in
|
|
|
|
listen mode and a client tries to connect.
|
|
|
|
Unfortunately, recvfrom() doesn't make much
|
|
|
|
sense then. It returns WSAENOTCONN in that
|
|
|
|
case. Since that's not actually an error,
|
2002-11-20 19:00:15 +08:00
|
|
|
we must not set POLLERR but POLLIN. */
|
2002-11-20 16:03:50 +08:00
|
|
|
if (WSAGetLastError () != WSAENOTCONN)
|
|
|
|
fds[i].revents |= POLLERR;
|
2002-11-20 19:00:15 +08:00
|
|
|
else
|
|
|
|
fds[i].revents |= POLLIN;
|
2002-11-20 16:03:50 +08:00
|
|
|
break;
|
|
|
|
case 0: /* Closed on the read side. */
|
|
|
|
fds[i].revents |= POLLHUP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fds[i].revents |= POLLIN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
set_errno (old_errno);
|
|
|
|
}
|
2002-08-29 17:41:00 +08:00
|
|
|
}
|
2002-05-28 09:55:40 +08:00
|
|
|
if (FD_ISSET(fds[i].fd, write_fds))
|
|
|
|
fds[i].revents |= POLLOUT;
|
|
|
|
if (FD_ISSET(fds[i].fd, except_fds))
|
|
|
|
fds[i].revents |= POLLPRI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-07-05 00:58:49 +08:00
|
|
|
|
2002-05-28 09:55:40 +08:00
|
|
|
return ret;
|
|
|
|
}
|