X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fmtio.c;h=3b728d0d8c62b1647d62fbfe332b5a2a482902ef;hb=fda48525a7bab9e487e69264619ebdbabcd83ff2;hp=3bb7b860a59535d008fd50bfe2dadd14e68a86fe;hpb=3dc69b452f437790c0a2f8b7211f542fc67310b4;p=ashd.git diff --git a/lib/mtio.c b/lib/mtio.c index 3bb7b86..3b728d0 100644 --- a/lib/mtio.c +++ b/lib/mtio.c @@ -17,11 +17,12 @@ */ #include +#include #include +#include #include -#include #include -#include +#include #ifdef HAVE_CONFIG_H #include @@ -31,94 +32,100 @@ #include #include -struct blocker { - struct blocker *n, *p; +struct stdiofd { int fd; - int ev; - time_t to; - struct muth *th; + int sock; + int timeout; }; -static struct blocker *blockers; - -int block(int fd, int ev, time_t to) +static ssize_t mtread(void *cookie, char *buf, size_t len) { - struct blocker *bl; - int rv; + struct stdiofd *d = cookie; + int ev; + ssize_t ret; - omalloc(bl); - bl->fd = fd; - bl->ev = ev; - if(to > 0) - bl->to = time(NULL) + to; - bl->th = current; - bl->n = blockers; - if(blockers) - blockers->p = bl; - blockers = bl; - rv = yield(); - if(bl->n) - bl->n->p = bl->p; - if(bl->p) - bl->p->n = bl->n; - if(bl == blockers) - blockers = bl->n; - return(rv); + while(1) { + ret = read(d->fd, buf, len); + if((ret < 0) && (errno == EAGAIN)) { + ev = block(d->fd, EV_READ, d->timeout); + if(ev < 0) { + /* If we just go on, we should get the real error. */ + continue; + } else if(ev == 0) { + errno = ETIMEDOUT; + return(-1); + } else { + continue; + } + } else { + return(ret); + } + } } -void ioloop(void) +static ssize_t mtwrite(void *cookie, const char *buf, size_t len) { - int ret; - fd_set rfds, wfds, efds; - struct blocker *bl, *nbl; - struct timeval toval; - time_t now, timeout; - int maxfd; + struct stdiofd *d = cookie; int ev; + size_t off; + ssize_t ret; - while(blockers != NULL) { - FD_ZERO(&rfds); - FD_ZERO(&wfds); - FD_ZERO(&efds); - maxfd = 0; - now = time(NULL); - timeout = 0; - for(bl = blockers; bl; bl = bl->n) { - if(bl->ev & EV_READ) - FD_SET(bl->fd, &rfds); - if(bl->ev & EV_WRITE) - FD_SET(bl->fd, &wfds); - FD_SET(bl->fd, &efds); - if(bl->fd > maxfd) - maxfd = bl->fd; - if((bl->to != 0) && ((timeout == 0) || (timeout > bl->to))) - timeout = bl->to; - } - toval.tv_sec = timeout - now; - toval.tv_usec = 0; - ret = select(maxfd + 1, &rfds, &wfds, &efds, timeout?(&toval):NULL); + off = 0; + while(off < len) { + if(d->sock) + ret = send(d->fd, buf + off, len - off, MSG_DONTWAIT | MSG_NOSIGNAL); + else + ret = write(d->fd, buf + off, len - off); if(ret < 0) { - if(errno != EINTR) { - flog(LOG_CRIT, "ioloop: select errored out: %s", strerror(errno)); - /* To avoid CPU hogging in case it's bad, which it - * probably is. */ - sleep(1); + if(errno == EAGAIN) { + ev = block(d->fd, EV_WRITE, d->timeout); + if(ev < 0) { + /* If we just go on, we should get the real error. */ + continue; + } else if(ev == 0) { + errno = ETIMEDOUT; + return(off); + } else { + continue; + } + } else { + return(off); } - } - now = time(NULL); - for(bl = blockers; bl; bl = nbl) { - nbl = bl->n; - ev = 0; - if(FD_ISSET(bl->fd, &rfds)) - ev |= EV_READ; - if(FD_ISSET(bl->fd, &wfds)) - ev |= EV_WRITE; - if(FD_ISSET(bl->fd, &efds)) - ev = -1; - if((ev < 0) || (ev & bl->ev)) - resume(bl->th, ev); - else if((bl->to != 0) && (bl->to <= now)) - resume(bl->th, 0); + } else { + off += ret; } } + return(off); +} + +static int mtclose(void *cookie) +{ + struct stdiofd *d = cookie; + + close(d->fd); + free(d); + return(0); +} + +static cookie_io_functions_t iofuns = { + .read = mtread, + .write = mtwrite, + .close = mtclose, +}; + +FILE *mtstdopen(int fd, int issock, int timeout, char *mode) +{ + struct stdiofd *d; + FILE *ret; + + omalloc(d); + d->fd = fd; + d->sock = issock; + d->timeout = timeout; + ret = fopencookie(d, mode, iofuns); + if(!ret) + free(d); + else + fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); + return(ret); }