| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 |
- /* Licensed under LGPLv2.1+ - see LICENSE file for details */
- #include "io.h"
- #include "backend.h"
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netdb.h>
- #include <string.h>
- #include <errno.h>
- #include <stdlib.h>
- #include <assert.h>
- #include <poll.h>
- #include <unistd.h>
- #include <fcntl.h>
- void *io_loop_return;
- struct io_alloc io_alloc = {
- malloc, realloc, free
- };
- #ifdef DEBUG
- /* Set to skip the next plan. */
- bool io_plan_nodebug;
- /* The current connection to apply plan to. */
- struct io_conn *current;
- /* User-defined function to select which connection(s) to debug. */
- bool (*io_debug_conn)(struct io_conn *conn);
- /* Set when we wake up an connection we are debugging. */
- bool io_debug_wakeup;
- struct io_plan io_debug(struct io_plan plan)
- {
- struct io_conn *ready = NULL;
- if (io_plan_nodebug) {
- io_plan_nodebug = false;
- return plan;
- }
- if (!current || !doing_debug_on(current)) {
- if (!io_debug_wakeup)
- return plan;
- }
- io_debug_wakeup = false;
- current->plan = plan;
- backend_plan_changed(current);
- /* If it closed, close duplex. */
- if (!current->plan.next && current->duplex) {
- current->duplex->plan = io_close_();
- backend_plan_changed(current->duplex);
- }
- /* Call back into the loop immediately. */
- io_loop_return = do_io_loop(&ready);
- if (ready) {
- set_current(ready);
- if (!ready->plan.next) {
- /* Call finish function immediately. */
- if (ready->finish) {
- errno = ready->plan.u1.s;
- ready->finish(ready, ready->finish_arg);
- ready->finish = NULL;
- }
- backend_del_conn(ready);
- } else {
- /* Calls back in itself, via io_debug_io(). */
- if (ready->plan.io(ready->fd.fd, &ready->plan) != 2)
- abort();
- }
- set_current(NULL);
- }
- /* Return a do-nothing plan, so backend_plan_changed in
- * io_ready doesn't do anything (it's already been called). */
- return io_idle_();
- }
- int io_debug_io(int ret)
- {
- /* Cache it for debugging; current changes. */
- struct io_conn *conn = current;
- int saved_errno = errno;
- if (!doing_debug_on(conn))
- return ret;
- /* These will all go linearly through the io_debug() path above. */
- switch (ret) {
- case -1:
- /* This will call io_debug above. */
- errno = saved_errno;
- io_close();
- break;
- case 0: /* Keep going with plan. */
- io_debug(conn->plan);
- break;
- case 1: /* Done: get next plan. */
- if (timeout_active(conn))
- backend_del_timeout(conn);
- conn->plan.next(conn, conn->plan.next_arg);
- break;
- default:
- abort();
- }
- /* Normally-invalid value, used for sanity check. */
- return 2;
- }
- static void debug_io_wake(struct io_conn *conn)
- {
- /* We want linear if we wake a debugged connection, too. */
- if (io_debug_conn && io_debug_conn(conn))
- io_debug_wakeup = true;
- }
- /* Counterpart to io_plan_no_debug(), called in macros in io.h */
- static void io_plan_debug_again(void)
- {
- io_plan_nodebug = false;
- }
- #else
- static void debug_io_wake(struct io_conn *conn)
- {
- }
- static void io_plan_debug_again(void)
- {
- }
- #endif
- struct io_listener *io_new_listener_(int fd,
- void (*init)(int fd, void *arg),
- void *arg)
- {
- struct io_listener *l = io_alloc.alloc(sizeof(*l));
- if (!l)
- return NULL;
- l->fd.listener = true;
- l->fd.fd = fd;
- l->init = init;
- l->arg = arg;
- if (!add_listener(l)) {
- io_alloc.free(l);
- return NULL;
- }
- return l;
- }
- void io_close_listener(struct io_listener *l)
- {
- close(l->fd.fd);
- del_listener(l);
- io_alloc.free(l);
- }
- struct io_conn *io_new_conn_(int fd, struct io_plan plan)
- {
- struct io_conn *conn = io_alloc.alloc(sizeof(*conn));
- io_plan_debug_again();
- if (!conn)
- return NULL;
- conn->fd.listener = false;
- conn->fd.fd = fd;
- conn->plan = plan;
- conn->finish = NULL;
- conn->finish_arg = NULL;
- conn->duplex = NULL;
- conn->timeout = NULL;
- if (!add_conn(conn)) {
- io_alloc.free(conn);
- return NULL;
- }
- return conn;
- }
- void io_set_finish_(struct io_conn *conn,
- void (*finish)(struct io_conn *, void *),
- void *arg)
- {
- conn->finish = finish;
- conn->finish_arg = arg;
- }
- struct io_conn *io_duplex_(struct io_conn *old, struct io_plan plan)
- {
- struct io_conn *conn;
- io_plan_debug_again();
- assert(!old->duplex);
- conn = io_alloc.alloc(sizeof(*conn));
- if (!conn)
- return NULL;
- conn->fd.listener = false;
- conn->fd.fd = old->fd.fd;
- conn->plan = plan;
- conn->duplex = old;
- conn->finish = NULL;
- conn->finish_arg = NULL;
- conn->timeout = NULL;
- if (!add_duplex(conn)) {
- io_alloc.free(conn);
- return NULL;
- }
- old->duplex = conn;
- return conn;
- }
- bool io_timeout_(struct io_conn *conn, struct timespec ts,
- struct io_plan (*cb)(struct io_conn *, void *), void *arg)
- {
- assert(cb);
- if (!conn->timeout) {
- conn->timeout = io_alloc.alloc(sizeof(*conn->timeout));
- if (!conn->timeout)
- return false;
- } else
- assert(!timeout_active(conn));
- conn->timeout->next = cb;
- conn->timeout->next_arg = arg;
- backend_add_timeout(conn, ts);
- return true;
- }
- /* Returns true if we're finished. */
- static int do_write(int fd, struct io_plan *plan)
- {
- ssize_t ret = write(fd, plan->u1.cp, plan->u2.s);
- if (ret < 0)
- return io_debug_io(-1);
- plan->u1.cp += ret;
- plan->u2.s -= ret;
- return io_debug_io(plan->u2.s == 0);
- }
- /* Queue some data to be written. */
- struct io_plan io_write_(const void *data, size_t len,
- struct io_plan (*cb)(struct io_conn *, void *),
- void *arg)
- {
- struct io_plan plan;
- assert(cb);
- plan.u1.const_vp = data;
- plan.u2.s = len;
- plan.io = do_write;
- plan.next = cb;
- plan.next_arg = arg;
- plan.pollflag = POLLOUT;
- return plan;
- }
- static int do_read(int fd, struct io_plan *plan)
- {
- ssize_t ret = read(fd, plan->u1.cp, plan->u2.s);
- if (ret <= 0)
- return io_debug_io(-1);
- plan->u1.cp += ret;
- plan->u2.s -= ret;
- return io_debug_io(plan->u2.s == 0);
- }
- /* Queue a request to read into a buffer. */
- struct io_plan io_read_(void *data, size_t len,
- struct io_plan (*cb)(struct io_conn *, void *),
- void *arg)
- {
- struct io_plan plan;
- assert(cb);
- plan.u1.cp = data;
- plan.u2.s = len;
- plan.io = do_read;
- plan.next = cb;
- plan.next_arg = arg;
- plan.pollflag = POLLIN;
- return plan;
- }
- static int do_read_partial(int fd, struct io_plan *plan)
- {
- ssize_t ret = read(fd, plan->u1.cp, *(size_t *)plan->u2.vp);
- if (ret <= 0)
- return io_debug_io(-1);
- *(size_t *)plan->u2.vp = ret;
- return io_debug_io(1);
- }
- /* Queue a partial request to read into a buffer. */
- struct io_plan io_read_partial_(void *data, size_t *len,
- struct io_plan (*cb)(struct io_conn *, void *),
- void *arg)
- {
- struct io_plan plan;
- assert(cb);
- plan.u1.cp = data;
- plan.u2.vp = len;
- plan.io = do_read_partial;
- plan.next = cb;
- plan.next_arg = arg;
- plan.pollflag = POLLIN;
- return plan;
- }
- static int do_write_partial(int fd, struct io_plan *plan)
- {
- ssize_t ret = write(fd, plan->u1.cp, *(size_t *)plan->u2.vp);
- if (ret < 0)
- return io_debug_io(-1);
- *(size_t *)plan->u2.vp = ret;
- return io_debug_io(1);
- }
- /* Queue a partial write request. */
- struct io_plan io_write_partial_(const void *data, size_t *len,
- struct io_plan (*cb)(struct io_conn*, void *),
- void *arg)
- {
- struct io_plan plan;
- assert(cb);
- plan.u1.const_vp = data;
- plan.u2.vp = len;
- plan.io = do_write_partial;
- plan.next = cb;
- plan.next_arg = arg;
- plan.pollflag = POLLOUT;
- return plan;
- }
- static int already_connected(int fd, struct io_plan *plan)
- {
- return io_debug_io(1);
- }
- static int do_connect(int fd, struct io_plan *plan)
- {
- int err, ret;
- socklen_t len = sizeof(err);
- /* Has async connect finished? */
- ret = getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &len);
- if (ret < 0)
- return -1;
- if (err == 0) {
- /* Restore blocking if it was initially. */
- fcntl(fd, F_SETFD, plan->u1.s);
- return 1;
- }
- return 0;
- }
- struct io_plan io_connect_(int fd, const struct addrinfo *addr,
- struct io_plan (*cb)(struct io_conn*, void *),
- void *arg)
- {
- struct io_plan plan;
- assert(cb);
- plan.next = cb;
- plan.next_arg = arg;
- /* Save old flags, set nonblock if not already. */
- plan.u1.s = fcntl(fd, F_GETFD);
- fcntl(fd, F_SETFD, plan.u1.s | O_NONBLOCK);
- /* Immediate connect can happen. */
- if (connect(fd, addr->ai_addr, addr->ai_addrlen) == 0) {
- /* Dummy will be called immediately. */
- plan.pollflag = POLLOUT;
- plan.io = already_connected;
- } else {
- if (errno != EINPROGRESS)
- return io_close_();
- plan.pollflag = POLLIN;
- plan.io = do_connect;
- }
- return plan;
- }
- struct io_plan io_idle_(void)
- {
- struct io_plan plan;
- plan.pollflag = 0;
- plan.io = NULL;
- /* Never called (overridden by io_wake), but NULL means closing */
- plan.next = (void *)io_idle_;
- return plan;
- }
- void io_wake_(struct io_conn *conn, struct io_plan plan)
- {
- io_plan_debug_again();
- /* It might be closing, but we haven't called its finish() yet. */
- if (!conn->plan.next)
- return;
- /* It was idle, right? */
- assert(!conn->plan.io);
- conn->plan = plan;
- backend_plan_changed(conn);
- debug_io_wake(conn);
- }
- void io_ready(struct io_conn *conn)
- {
- set_current(conn);
- switch (conn->plan.io(conn->fd.fd, &conn->plan)) {
- case -1: /* Failure means a new plan: close up. */
- conn->plan = io_close();
- backend_plan_changed(conn);
- break;
- case 0: /* Keep going with plan. */
- break;
- case 1: /* Done: get next plan. */
- if (timeout_active(conn))
- backend_del_timeout(conn);
- conn->plan = conn->plan.next(conn, conn->plan.next_arg);
- backend_plan_changed(conn);
- }
- set_current(NULL);
- /* If it closed, close duplex. */
- if (!conn->plan.next && conn->duplex) {
- set_current(conn->duplex);
- conn->duplex->plan = io_close();
- backend_plan_changed(conn->duplex);
- set_current(NULL);
- }
- }
- /* Close the connection, we're done. */
- struct io_plan io_close_(void)
- {
- struct io_plan plan;
- plan.pollflag = 0;
- /* This means we're closing. */
- plan.next = NULL;
- plan.u1.s = errno;
- return plan;
- }
- struct io_plan io_close_cb(struct io_conn *conn, void *arg)
- {
- return io_close();
- }
- /* Exit the loop, returning this (non-NULL) arg. */
- struct io_plan io_break_(void *ret, struct io_plan plan)
- {
- io_plan_debug_again();
- assert(ret);
- io_loop_return = ret;
- return plan;
- }
- int io_conn_fd(const struct io_conn *conn)
- {
- return conn->fd.fd;
- }
- void io_set_alloc(void *(*allocfn)(size_t size),
- void *(*reallocfn)(void *ptr, size_t size),
- void (*freefn)(void *ptr))
- {
- io_alloc.alloc = allocfn;
- io_alloc.realloc = reallocfn;
- io_alloc.free = freefn;
- }
|