Files
oldlinux-files/gnu/glibc/glibc-1.05.tar/glibc-1.05/sysdeps/mach/hurd/__select.c
2024-02-19 00:24:47 -05:00

204 lines
5.9 KiB
C

/* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
#include <ansidecl.h>
#include <sys/types.h>
#include <hurd.h>
#include <gnu-stabs.h>
/* Check the first NFDS descriptors each in READFDS (if not NULL) for read
readiness, in WRITEFDS (if not NULL) for write readiness, and in EXCEPTFDS
(if not NULL) for exceptional conditions. If TIMEOUT is not NULL, time out
after waiting the interval specified therein. Returns the number of ready
descriptors, or -1 for errors. */
int
DEFUN(__select, (nfds, readfds, writefds, exceptfds, timeout),
int nfds AND fd_set *readfds AND fd_set *writefds AND
fd_set *exceptfds AND struct timeval *timeout)
{
int i;
mach_port_t port;
int got;
struct _hurd_dtable dtable;
int dealloc_dtable; *dealloc, *types;
mach_port_t *ports;
struct _hurd_fd *cells;
error_t err;
/* If we're going to bomb, do it before we acquire any locks. */
if (readfds != NULL)
*(volatile fd_set *) readfds;
if (writefds != NULL)
*(volatile fd_set *) writefds;
if (exceptfds != NULL)
*(volatile fd_set *) exceptfds;
if (timeout != NULL && timeout->tv_sec == 0 && timeval->tv_usec == 0)
port = MACH_PORT_NULL;
else
{
/* Get a port to receive io_select_done messages on. */
__mach_port_allocate (__mach_task_self (),
MACH_PORT_RIGHT_RECEIVE, &port);
}
dtable = _hurd_dtable_use (&dealloc_dtable);
if (nfds > _hurd_dtable.size)
nfds = _hurd_dtable.size;
/* Collect the ports for interesting FDs. */
cells = __alloca (nfds * sizeof (*cells));
ports = __alloca (nfds * sizeof (*ports));
types = __alloca (nfds * sizeof (*types));
dealloc = __alloca (nfds * sizeof (*dealloc));
for (i = 0; i < nfds; ++i)
{
int type = 0;
if (readfds != NULL && FD_ISSET (i, readfds))
type |= SELECT_READ;
if (writefds != NULL && FD_ISSET (i, writefds))
type |= SELECT_WRITE;
if (exceptfds != NULL && FD_ISSET (i, exceptfds))
type |= SELECT_URG;
types[i] = type;
if (type)
{
cells[i] = _hurd_dtable_fd (i, dtable);
ports[i] = _hurd_port_locked_get (&cells[i]->port, &dealloc[i]);
if (ports[i] == MACH_PORT_NULL)
{
while (i-- > 0)
_hurd_port_free (&cells[i]->port, &dealloc[i]);
_hurd_dtable_done (dtable, &dealloc_dtable);
errno = EBADF;
return -1;
}
}
}
/* Send them all io_select calls. */
got = 0;
err = 0;
for (i = 0; i < nfds; ++i)
if (types[i])
{
if (!err)
{
err = __io_select (ports[i], types[i], port, i, &types[i]);
if (types[i])
++got;
}
_hurd_port_free (&cells[i]->port, ports[i], &dealloc[i]);
}
if (!err && got == 0 && port != MACH_PORT_NULL)
{
struct
{
mach_msg_header_t head;
mach_msg_type_t result_type;
int result;
mach_msg_type_t tag_type;
int tag;
} msg;
mach_msg_timeout_t timeout = (timeval != NULL ?
(timeval->tv_sec * 1000 +
timeval->tv_usec / 1000) :
0);
mach_msg_option_t options = (timeval == NULL ? 0 : MACH_RCV_TIMEOUT);
receive:
switch (err = __mach_msg (&msg, MACH_RCV_MSG | options, 0, sizeof (msg),
port, timeout, MACH_PORT_NULL))
{
case MACH_MSG_SUCCESS:
{
const mach_msg_type_t inttype =
{ MACH_MSG_TYPE_INTEGER_32, 32, 1, 1, 0, 0 };
if (msg.head.msgh_id == SELECT_DONE_MSGID &&
!(msg.head.msgh_bits & MACH_MSGH_BITS_COMPLEX) &&
*(int *) &msg.result_type == *(int *) &inttype &&
*(int *) &msg.tag_type == *(int *) &inttype &&
(msg.result & (SELECT_READ|SELECT_WRITE|SELECT_URG)) &&
msg.tag >= 0 && msg.tag < nfds)
{
types[i] = msg.result;
++got;
if (msg.msgh_remote_port != MACH_PORT_NULL)
{
msg.head.msgh_id += 100;
msg.result_type = inttype;
msg.result = POSIX_SUCCESS;
options = MACH_SEND_MSG | MACH_RCV_TIMEOUT;
}
}
else
{
/* Randomness. */
__mach_msg_destroy (msg);
options = MACH_RCV_TIMEOUT;
}
/* Poll for another message. */
timeout = 0;
goto receive;
}
case MACH_RCV_TIMED_OUT:
err = 0;
break;
}
}
if (port != MACH_PORT_NULL)
/* We must destroy the port if we made some select requests
that might send notification on that port after we no longer care.
If the port were reused, that notification could confuse the next
select call to use the port. The notification might be valid,
but the descriptor may have changed to a different server. */
__mach_port_destroy (port);
if (err)
return __hurd_fail (err);
/* Set the user bitarrays. */
for (i = 0; i < nfds; ++i)
if (types[i] & (SELECT_READ|SELECT_WRITE|SELECT_URG))
{
if (readfds != NULL)
if (types[i] & SELECT_READ)
FD_SET (i, readfds);
else
FD_CLR (i, readfds);
if (writefds != NULL)
if (types[i] & SELECT_WRITE)
FD_SET (i, writefds);
else
FD_CLR (i, writefds);
if (exceptfds != NULL)
if (types[i] & SELECT_URG)
FD_SET (i, exceptfds);
else
FD_CLR (i, exceptfds);
++got;
}
return got;
}