9a4d574b8d
* Makefile.in (DLL_OFILES): Add sigfe.o. Remove reliance on cygwin.def from cygwin0.dll dependency since dependence on sigfe.o implies that. Generate def file on the fly using 'gendef'. * configure.in: Don't auto-generate cygwin.def. * configure: Regenerate. * cygwin.din: Add SIGFE stuff where appropriate. * dcrt0.cc (dll_crt0_1): Initialize cygwin tls early in process startup. Set _main_tls to address of the main thread's cygwin tls. * debug.h: Remove now unneeded WFSO and WFMO declarations. * exceptions.cc (_last_thread): Define. (set_thread_state_for_signals): New function. (reset_thread_exception_for_signals): Ditto. (init_thread_for_signals): Ditto. (delete_thread_for_signals): Ditto. (capture_thread_for_signals): Ditto. (handle_exceptions): Set return address explicitly for exceptions prior to calling sig_send. (interrupt_on_return): Eliminate. (setup_handler): Add preliminary implementation for dealing with thread-specific signals by querying _main_tls. (signal_exit): Use cygthread::main_thread_id instead of mainthread.id. (call_signal_handler_now): For now, just handle the main thread. * fork.cc (vfork): Save and restore main _my_tls. * gendef: New file. Generates def file and sigfe.s file. * gentls_offsets: New file. Generates offsets for perl to use in sigfe.s. * how-signals-work.txt: Mention that info is obsolete. * init.cc (dll_entry): Initialize cygwin tls storage here. * miscfuncs.cc (low_priority_sleep): Make a C function for easier calling from asm. * perthread.h (vfork_save::tls): New element. * signal.cc (nanosleep): Replace previous use of sigframe.call_signal_handler_now with straight call to call_signal_handler_now. (abort): Ditto. * syscalls.cc (readv): Ditto. * termios.cc (tcsetattr): Ditto. * wait.cc (wait4): Ditto. * sigproc.cc (sig_dispatch_pending): Ditto. (sig_send): Ditto. * sigproc.h: Declare call_signal_handler_now. * thread.cc (pthread::thread_init_wrapper): Initialize cygwin tls. Remove obsolete and unworking signal stuff. * thread.h (verifyable_object::sigs): Eliminate. (verifyable_object::sigmask): Eliminate. (verifyable_object::sigtodo): Eliminate. (verifyable_object::exit): Make attribute noreturn. (verifyable_object::thread_init_wrapper): Ditto. (pthread_null::exit): Ditto. * winbase.h (__stackbase): Always define. * winsup.h (low_priority_sleep): Declare as a "C" function. * include/cygwin/version.h: Bump API version to reflect sigwait export. * include/sys/queue.h: Protect SLIST_ENTRY from previous declaration. * signal.cc (sigwait): Implement. * select.cc (fhandler_base::ready_for_read): Add debugging output. * devices.h: Define more device pointers via their storage. * devices.in: Don't parse things like /dev/inet/tcp, as they really have no meaning. * devices.cc: Regenerate. * gendevices: Set proper protection for output file. * cygtls.h: New file. * gendef: New file. * gentls_offsets: New file. * tlsoffsets.h: New file. Autogenerated. * config/i386/longjmp.c: Remove. File subsumed by gendef output. * config/i386/makefrag: Remove obsolete file. * fhandler.cc: Remove spurious access_worker declaration. * spawn.cc (spawnve): Make debugging output more accurate. * cygwin-gperf: Remove. * devices.cc: Remove.
138 lines
3.4 KiB
C++
138 lines
3.4 KiB
C++
/* poll.cc. Implements poll(2) via usage of select(2) call.
|
|
|
|
Copyright 2000, 2001, 2002 Red Hat, Inc.
|
|
|
|
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. */
|
|
|
|
#define __INSIDE_CYGWIN_NET__
|
|
|
|
#define FD_SETSIZE 16384 // lots of fds
|
|
#include "winsup.h"
|
|
#include <sys/time.h>
|
|
#include <sys/poll.h>
|
|
#include <sys/socket.h>
|
|
#include <stdlib.h>
|
|
#define USE_SYS_TYPES_FD_SET
|
|
#include <winsock2.h>
|
|
#include "security.h"
|
|
#include "path.h"
|
|
#include "fhandler.h"
|
|
#include "dtable.h"
|
|
#include "cygerrno.h"
|
|
#include "cygheap.h"
|
|
#include "sigproc.h"
|
|
|
|
extern "C" int
|
|
poll (struct pollfd *fds, unsigned int nfds, int timeout)
|
|
{
|
|
int max_fd = 0;
|
|
fd_set *read_fds, *write_fds, *except_fds;
|
|
struct timeval tv = { timeout / 1000, (timeout % 1000) * 1000 };
|
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
if (fds[i].fd > max_fd)
|
|
max_fd = fds[i].fd;
|
|
|
|
size_t fds_size = howmany (max_fd + 1, NFDBITS) * sizeof (fd_mask);
|
|
|
|
read_fds = (fd_set *) alloca (fds_size);
|
|
write_fds = (fd_set *) alloca (fds_size);
|
|
except_fds = (fd_set *) alloca (fds_size);
|
|
|
|
if (!read_fds || !write_fds || !except_fds)
|
|
{
|
|
set_errno (ENOMEM);
|
|
return -1;
|
|
}
|
|
|
|
memset (read_fds, 0, fds_size);
|
|
memset (write_fds, 0, fds_size);
|
|
memset (except_fds, 0, fds_size);
|
|
|
|
int invalid_fds = 0;
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
{
|
|
fds[i].revents = 0;
|
|
if (!cygheap->fdtab.not_open (fds[i].fd))
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
|
|
if (invalid_fds)
|
|
return invalid_fds;
|
|
|
|
int ret = cygwin_select (max_fd + 1, read_fds, write_fds, except_fds, timeout < 0 ? NULL : &tv);
|
|
|
|
if (ret > 0)
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
{
|
|
if (fds[i].fd >= 0)
|
|
{
|
|
if (cygheap->fdtab.not_open (fds[i].fd))
|
|
fds[i].revents = POLLHUP;
|
|
else
|
|
{
|
|
if (FD_ISSET(fds[i].fd, read_fds))
|
|
{
|
|
char peek[1];
|
|
fhandler_socket *sock =
|
|
cygheap->fdtab[fds[i].fd]->is_socket ();
|
|
if (!sock)
|
|
fds[i].revents |= POLLIN;
|
|
else
|
|
{
|
|
/* 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,
|
|
we must not set POLLERR but POLLIN. */
|
|
if (WSAGetLastError () != WSAENOTCONN)
|
|
fds[i].revents |= POLLERR;
|
|
else
|
|
fds[i].revents |= POLLIN;
|
|
break;
|
|
case 0: /* Closed on the read side. */
|
|
fds[i].revents |= POLLHUP;
|
|
break;
|
|
default:
|
|
fds[i].revents |= POLLIN;
|
|
break;
|
|
}
|
|
set_errno (old_errno);
|
|
}
|
|
}
|
|
if (FD_ISSET(fds[i].fd, write_fds))
|
|
fds[i].revents |= POLLOUT;
|
|
if (FD_ISSET(fds[i].fd, except_fds))
|
|
fds[i].revents |= POLLPRI;
|
|
}
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|