486730f7fd
PR: 35449 Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at>
264 lines
6.2 KiB
C
264 lines
6.2 KiB
C
/*
|
|
* Copyright (c) 1992, 1993, 1996
|
|
* Berkeley Software Design, Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by Berkeley Software
|
|
* Design, Inc.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* BSDI AsyncIO.c,v 2.2 1996/04/08 19:32:10 bostic Exp
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
#include "doscmd.h"
|
|
#include "AsyncIO.h"
|
|
|
|
#define FD_ISZERO(p) ((p)->fds_bits[0] == 0)
|
|
|
|
/*
|
|
* Set or Clear the Async nature of an FD
|
|
*/
|
|
|
|
#define SETASYNC(fd) fcntl(fd, F_SETFL, handlers[fd].flag | FASYNC)
|
|
#define CLRASYNC(fd) fcntl(fd, F_SETFL, handlers[fd].flag & ~FASYNC)
|
|
|
|
/*
|
|
* Request that ``func'' be called everytime data is available on ``fd''
|
|
*/
|
|
|
|
static fd_set fdset; /* File Descriptors to select on */
|
|
|
|
typedef struct {
|
|
void (*func)(int, int, void *, regcontext_t *);
|
|
/* Function to call on data arrival */
|
|
void (*failure)(void *); /* Function to call on failure */
|
|
void *arg; /* Argument to above functions */
|
|
int lockcnt; /* Nested level of lock */
|
|
fd_set members; /* Set of FD's to disable on SIGIO */
|
|
int flag; /* The flag from F_GETFL (we own it) */
|
|
} Async;
|
|
|
|
static Async handlers[OPEN_MAX];
|
|
|
|
static void CleanIO(void);
|
|
static void HandleIO(struct sigframe *sf);
|
|
|
|
void
|
|
_RegisterIO(int fd, void (*func)(int, int, void *, regcontext_t *),
|
|
void *arg, void (*failure)(void *))
|
|
{
|
|
static int firsttime = 1;
|
|
Async *as;
|
|
|
|
if (fd < 0 || fd > OPEN_MAX) {
|
|
printf("%d: Invalid FD\n", fd);
|
|
return;
|
|
}
|
|
|
|
as = &handlers[fd];
|
|
|
|
if ((as->flag = fcntl(fd, F_GETFL, 0)) == -1) {
|
|
if (func) {
|
|
/*@*/ perror("get fcntl");
|
|
/*@*/ abort();
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (firsttime) {
|
|
firsttime = 0;
|
|
setsignal(SIGIO, HandleIO);
|
|
}
|
|
|
|
if ((handlers[fd].func = func) != 0) {
|
|
as->lockcnt = 0;
|
|
as->arg = arg;
|
|
as->failure = failure;
|
|
|
|
FD_SET(fd, &fdset);
|
|
FD_ZERO(&handlers[fd].members);
|
|
FD_SET(fd, &handlers[fd].members);
|
|
if (fcntl(fd, F_SETOWN, getpid()) < 0) {
|
|
/*@*/ perror("SETOWN");
|
|
}
|
|
SETASYNC(fd);
|
|
} else {
|
|
as->arg = 0;
|
|
as->failure = 0;
|
|
as->lockcnt = 0;
|
|
|
|
CLRASYNC(fd);
|
|
FD_CLR(fd, &fdset);
|
|
}
|
|
}
|
|
|
|
static void
|
|
CleanIO()
|
|
{
|
|
int x;
|
|
static struct timeval tv;
|
|
|
|
/*
|
|
* For every file des in fd_set, we check to see if it
|
|
* causes a fault on select(). If so, we unregister it
|
|
* for the user.
|
|
*/
|
|
for (x = 0; x < OPEN_MAX; ++x) {
|
|
fd_set set;
|
|
|
|
if (!FD_ISSET(x, &fdset))
|
|
continue;
|
|
|
|
FD_ZERO(&set);
|
|
FD_SET(x, &set);
|
|
errno = 0;
|
|
if (select(FD_SETSIZE, &set, 0, 0, &tv) < 0 &&
|
|
errno == EBADF) {
|
|
void (*f)(void *);
|
|
void *a;
|
|
printf("Closed file descriptor %d\n", x);
|
|
|
|
f = handlers[x].failure;
|
|
a = handlers[x].arg;
|
|
handlers[x].failure = 0;
|
|
handlers[x].func = 0;
|
|
handlers[x].arg = 0;
|
|
handlers[x].lockcnt = 0;
|
|
FD_CLR(x, &fdset);
|
|
if (f)
|
|
(*f)(a);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
HandleIO(struct sigframe *sf)
|
|
{
|
|
static struct timeval tv;
|
|
fd_set readset, writeset;
|
|
int x, fd;
|
|
|
|
again:
|
|
readset = writeset = fdset;
|
|
if ((x = select(FD_SETSIZE, &readset, &writeset, 0, &tv)) < 0) {
|
|
/*
|
|
* If we failed because of a BADFiledes, go find
|
|
* which one(s), fail them out and then try a
|
|
* new select to see if any of the good ones are
|
|
* okay.
|
|
*/
|
|
if (errno == EBADF) {
|
|
CleanIO();
|
|
if (FD_ISZERO(&fdset))
|
|
return;
|
|
goto again;
|
|
}
|
|
perror("select");
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* If we run out of fds to look at, break out of the loop
|
|
* and exit the handler.
|
|
*/
|
|
if (x == 0)
|
|
return;
|
|
|
|
/*
|
|
* If there is at least 1 fd saying it has something for
|
|
* us, then loop through the sets looking for those
|
|
* bits, stopping when we have handleed the number it has
|
|
* asked for.
|
|
*/
|
|
for (fd = 0; x && fd < OPEN_MAX; fd ++) {
|
|
Async *as;
|
|
int cond;
|
|
|
|
cond = 0;
|
|
|
|
if (FD_ISSET(fd, &readset)) {
|
|
cond |= AS_RD;
|
|
x --;
|
|
}
|
|
if (FD_ISSET(fd, &writeset)) {
|
|
cond |= AS_WR;
|
|
x --;
|
|
}
|
|
|
|
if (cond == 0)
|
|
continue;
|
|
|
|
/*
|
|
* Is suppose it is possible that one of the previous
|
|
* I/O requests changed the fdset.
|
|
* We do know that SIGIO is turned off right now,
|
|
* so it is safe to checkit.
|
|
*/
|
|
if (!FD_ISSET(fd, &fdset)) {
|
|
continue;
|
|
}
|
|
as = &handlers[fd];
|
|
|
|
/*
|
|
* as in above, maybe someone locked us...
|
|
* we are in dangerous water now if we are
|
|
* multi-tasked
|
|
*/
|
|
if (as->lockcnt) {
|
|
fprintf(stderr, "Selected IO on locked %d\n",fd);
|
|
continue;
|
|
}
|
|
/*
|
|
* Okay, now if there exists a handler, we should
|
|
* call it. We must turn back on SIGIO if there
|
|
* are possibly other people waiting for it.
|
|
*/
|
|
if (as->func) {
|
|
(*handlers[fd].func)(fd, cond, handlers[fd].arg,
|
|
(regcontext_t *)&sf->sf_uc.uc_mcontext);
|
|
} else {
|
|
/*
|
|
* Otherwise deregister this guy.
|
|
*/
|
|
_RegisterIO(fd, 0, 0, 0);
|
|
}
|
|
}
|
|
/*
|
|
* If we did not process all the fd's, then we should
|
|
* break out of the probable infinite loop.
|
|
*/
|
|
}
|