X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fmtio.c;h=b911f72fd2e0d59e160b4a705f6ae5cb144ed7b3;hb=44f924bc6ccfe9f0d8b78ffbcc19975ba1a230e0;hp=d7f36ac82d31be22e5d5c9111476d16ee2a15e99;hpb=9c2c000910cf1ec8ce86eeece2dd263e83970a50;p=ashd.git diff --git a/lib/mtio.c b/lib/mtio.c index d7f36ac..b911f72 100644 --- a/lib/mtio.c +++ b/lib/mtio.c @@ -31,6 +31,41 @@ #include #include #include +#include + +static ssize_t mtrecv(struct stdiofd *d, void *buf, size_t len) +{ + struct msghdr msg; + char cbuf[512]; + struct cmsghdr *cmsg; + struct iovec bufvec; + socklen_t clen; + ssize_t ret; + int i, *fds; + + msg = (struct msghdr){}; + msg.msg_iov = &bufvec; + msg.msg_iovlen = 1; + bufvec.iov_base = buf; + bufvec.iov_len = len; + msg.msg_control = cbuf; + msg.msg_controllen = sizeof(cbuf); + if((ret = recvmsg(d->fd, &msg, MSG_DONTWAIT)) < 0) + return(ret); + for(cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) { + if((cmsg->cmsg_level == SOL_SOCKET) && (cmsg->cmsg_type == SCM_RIGHTS)) { + fds = (int *)CMSG_DATA(cmsg); + clen = (cmsg->cmsg_len - ((char *)fds - (char *)cmsg)) / sizeof(*fds); + for(i = 0; i < clen; i++) { + if(d->rights < 0) + d->rights = fds[i]; + else + close(fds[i]); + } + } + } + return(ret); +} static ssize_t mtread(void *cookie, void *buf, size_t len) { @@ -39,7 +74,10 @@ static ssize_t mtread(void *cookie, void *buf, size_t len) ssize_t ret; while(1) { - ret = read(d->fd, buf, len); + if(d->sock) + ret = mtrecv(d, buf, len); + else + ret = read(d->fd, buf, len); if((ret < 0) && (errno == EAGAIN)) { ev = block(d->fd, EV_READ, d->timeout); if(ev < 0) { @@ -57,6 +95,39 @@ static ssize_t mtread(void *cookie, void *buf, size_t len) } } +static ssize_t mtsend(struct stdiofd *d, const void *buf, size_t len) +{ + struct msghdr msg; + struct cmsghdr *cmsg; + char cbuf[CMSG_SPACE(sizeof(int))]; + struct iovec bufvec; + ssize_t ret; + int cr; + + msg = (struct msghdr){}; + msg.msg_iov = &bufvec; + msg.msg_iovlen = 1; + bufvec.iov_base = (void *)buf; + bufvec.iov_len = len; + cr = -1; + if(d->sendrights >= 0) { + msg.msg_control = cbuf; + msg.msg_controllen = sizeof(cbuf); + cmsg = CMSG_FIRSTHDR(&msg); + cmsg->cmsg_level = SOL_SOCKET; + cmsg->cmsg_type = SCM_RIGHTS; + cmsg->cmsg_len = CMSG_LEN(sizeof(int)); + *((int *)CMSG_DATA(cmsg)) = d->sendrights; + cr = d->sendrights; + d->sendrights = -1; + msg.msg_controllen = cmsg->cmsg_len; + } + ret = sendmsg(d->fd, &msg, MSG_DONTWAIT | MSG_NOSIGNAL); + if(cr >= 0) + close(cr); + return(ret); +} + static ssize_t mtwrite(void *cookie, const void *buf, size_t len) { struct stdiofd *d = cookie; @@ -65,7 +136,7 @@ static ssize_t mtwrite(void *cookie, const void *buf, size_t len) while(1) { if(d->sock) - ret = send(d->fd, buf, len, MSG_DONTWAIT | MSG_NOSIGNAL); + ret = mtsend(d, buf, len); else ret = write(d->fd, buf, len); if((ret < 0) && (errno == EAGAIN)) { @@ -88,6 +159,10 @@ static int mtclose(void *cookie) struct stdiofd *d = cookie; close(d->fd); + if(d->rights >= 0) + close(d->rights); + if(d->sendrights >= 0) + close(d->sendrights); free(d); return(0); } @@ -111,6 +186,7 @@ FILE *mtstdopen(int fd, int issock, int timeout, char *mode, struct stdiofd **in d->fd = fd; d->sock = issock; d->timeout = timeout; + d->rights = d->sendrights = -1; if(!(ret = funstdio(d, r?mtread:NULL, w?mtwrite:NULL, NULL, mtclose))) { free(d); return(NULL); @@ -121,6 +197,35 @@ FILE *mtstdopen(int fd, int issock, int timeout, char *mode, struct stdiofd **in return(ret); } +struct bufio *mtbioopen(int fd, int issock, int timeout, char *mode, struct stdiofd **infop) +{ + static struct bufioops ops = { + .read = mtread, .write = mtwrite, .close = mtclose, + }; + struct stdiofd *d; + struct bufio *ret; + + if(!strcmp(mode, "r")) { + } else if(!strcmp(mode, "w")) { + } else if(!strcmp(mode, "r+")) { + } else { + return(NULL); + } + omalloc(d); + d->fd = fd; + d->sock = issock; + d->timeout = timeout; + d->rights = d->sendrights = -1; + if(!(ret = bioopen(d, &ops))) { + free(d); + return(NULL); + } + fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); + if(infop) + *infop = d; + return(ret); +} + struct pipe { struct charbuf data; size_t bufmax;