/* * Copyright (c) 2001-2002 Packet Design, LLC. * All rights reserved. * * Subject to the following obligations and disclaimer of warranty, * use and redistribution of this software, in source or object code * forms, with or without modifications are expressly permitted by * Packet Design; provided, however, that: * * (i) Any and all reproductions of the source or object code * must include the copyright notice above and the following * disclaimer of warranties; and * (ii) No rights are granted, in any manner or form, to use * Packet Design trademarks, including the mark "PACKET DESIGN" * on advertising, endorsements, or otherwise except as such * appears in the above copyright notice or in the software. * * THIS SOFTWARE IS BEING PROVIDED BY PACKET DESIGN "AS IS", AND * TO THE MAXIMUM EXTENT PERMITTED BY LAW, PACKET DESIGN MAKES NO * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING * THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, * OR NON-INFRINGEMENT. PACKET DESIGN DOES NOT WARRANT, GUARANTEE, * OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS * OF THE USE OF THIS SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, * RELIABILITY OR OTHERWISE. IN NO EVENT SHALL PACKET DESIGN BE * LIABLE FOR ANY DAMAGES RESULTING FROM OR ARISING OUT OF ANY USE * OF THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL * DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF * USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER 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 PACKET DESIGN IS ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * * Author: Archie Cobbs */ #include #include #include #include #include #include #include #include #include #include #include "structs/structs.h" #include "structs/type/array.h" #include "io/timeout_fp.h" #include "util/typed_mem.h" #define MEM_TYPE "timeout_fp" struct fdt_info { int fd; int timeout; }; typedef int fun_reader(void *cookie, char *buf, int len); typedef int fun_writer(void *cookie, const char *buf, int len); /* * Internal functions */ static int timeout_fp_readwrite(struct fdt_info *fdt, char *buf, int len, int wr); static int timeout_fp_close(void *cookie); static fun_reader timeout_fp_read; static fun_writer timeout_fp_write; /* * Same as fdopen(3) but with a timeout. */ FILE * timeout_fdopen(int fd, const char *mode, int timeout) { fun_reader *reader = NULL; fun_writer *writer = NULL; struct fdt_info *fdt; const char *s; FILE *fp; /* If no timeout, fall back to normal case */ if (timeout <= 0) return (fdopen(fd, mode)); /* Create the info structure */ if ((fdt = MALLOC(MEM_TYPE, sizeof(*fdt))) == NULL) return (NULL); memset(fdt, 0, sizeof(*fdt)); fdt->fd = fd; fdt->timeout = timeout; /* Get reader & writer functions */ for (s = mode; *s != '\0'; s++) { switch (*s) { case 'r': reader = timeout_fp_read; break; case 'w': case 'a': writer = timeout_fp_write; break; case '+': reader = timeout_fp_read; writer = timeout_fp_write; break; } } /* Get FILE * wrapper */ if ((fp = funopen(fdt, reader, writer, NULL, timeout_fp_close)) == NULL) { FREE(MEM_TYPE, fdt); return (NULL); } /* Done */ return (fp); } static int timeout_fp_read(void *cookie, char *buf, int len) { struct fdt_info *const fdt = cookie; return (timeout_fp_readwrite(fdt, buf, len, 0)); } static int timeout_fp_write(void *cookie, const char *buf, int len) { struct fdt_info *const fdt = cookie; return (timeout_fp_readwrite(fdt, (char *)buf, len, 1)); } /* * Do the threaded read or write depending on the value of 'wr'. */ static int timeout_fp_readwrite(struct fdt_info *fdt, char *buf, int len, int wr) { struct pollfd pfd; int nfds; /* Set up read/write poll(2) event */ memset(&pfd, 0, sizeof(pfd)); pfd.fd = fdt->fd; pfd.events = wr ? POLLWRNORM : POLLRDNORM; /* Wait for readability or writability */ if ((nfds = poll(&pfd, 1, fdt->timeout * 1000)) == -1) return (-1); /* Check for timeout */ if (nfds == 0) { errno = ETIMEDOUT; return (-1); } /* Do I/O */ return (wr ? write(fdt->fd, buf, len) : read(fdt->fd, buf, len)); } /* * Closer for timeout_fp streams. */ static int timeout_fp_close(void *cookie) { struct fdt_info *const fdt = cookie; int r; r = close(fdt->fd); FREE(MEM_TYPE, fdt); return (r); }