| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- #include <stdlib.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <stdbool.h>
- #include <string.h>
- #include <sys/mman.h>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <errno.h>
- #include <err.h>
- #include "antithread.h"
- #include <ccan/noerr/noerr.h>
- #include <ccan/talloc/talloc.h>
- #include <ccan/alloc/alloc.h>
- /* FIXME: Valgrind support should be possible for some cases. Tricky
- * case is where another process allocates for you, but at worst we
- * could reset what is valid and what isn't on every entry into the
- * library or something. */
- struct at_pool
- {
- const void *ctx;
- void *pool;
- unsigned long poolsize;
- int fd;
- int parent_rfd, parent_wfd;
- };
- struct athread
- {
- pid_t pid;
- int rfd, wfd;
- };
- /* FIXME: Better locking through futexes. */
- static void lock(int fd, unsigned long off)
- {
- struct flock fl;
- fl.l_type = F_WRLCK;
- fl.l_whence = SEEK_SET;
- fl.l_start = off;
- fl.l_len = 1;
- while (fcntl(fd, F_SETLKW, &fl) < 0) {
- if (errno != EINTR)
- err(1, "Failure locking antithread file");
- }
- }
- static void unlock(int fd, unsigned long off)
- {
- struct flock fl;
- int serrno = errno;
- fl.l_type = F_UNLCK;
- fl.l_whence = SEEK_SET;
- fl.l_start = off;
- fl.l_len = 1;
- fcntl(fd, F_SETLK, &fl);
- errno = serrno;
- }
- static void *at_realloc(const void *parent, void *ptr, size_t size)
- {
- struct at_pool *p = talloc_find_parent_bytype(parent, struct at_pool);
- /* FIXME: realloc in ccan/alloc? */
- void *new;
- lock(p->fd, 0);
- if (size == 0) {
- alloc_free(p->pool, p->poolsize, ptr);
- new = NULL;
- } else if (ptr == NULL) {
- /* FIXME: Alignment */
- new = alloc_get(p->pool, p->poolsize, size, 16);
- } else {
- if (size <= alloc_size(p->pool, p->poolsize, ptr))
- new = ptr;
- else {
- new = alloc_get(p->pool, p->poolsize, size, 16);
- if (new) {
- memcpy(new, ptr,
- alloc_size(p->pool, p->poolsize, ptr));
- alloc_free(p->pool, p->poolsize, ptr);
- }
- }
- }
- unlock(p->fd, 0);
- return new;
- }
- /* We add 16MB to size. This compensates for address randomization. */
- #define PADDING (16 * 1024 * 1024)
- /* Create a new sharable pool. */
- struct at_pool *at_pool(unsigned long size)
- {
- int fd;
- struct at_pool *p;
- FILE *f;
- /* FIXME: How much should we actually add for overhead?. */
- size += 32 * getpagesize();
- /* Round up to whole pages. */
- size = (size + getpagesize()-1) & ~(getpagesize()-1);
- f = tmpfile();
- if (!f)
- return NULL;
- fd = dup(fileno(f));
- fclose_noerr(f);
- if (fd < 0)
- return NULL;
- if (ftruncate(fd, size + PADDING) != 0)
- goto fail_close;
- p = talloc(NULL, struct at_pool);
- if (!p)
- goto fail_close;
- /* First map gets a nice big area. */
- p->pool = mmap(NULL, size+PADDING, PROT_READ|PROT_WRITE, MAP_SHARED, fd,
- 0);
- if (p->pool == MAP_FAILED)
- goto fail_free;
- /* Then we remap into the middle of it. */
- munmap(p->pool, size+PADDING);
- p->pool = mmap(p->pool + PADDING/2, size, PROT_READ|PROT_WRITE,
- MAP_SHARED, fd, 0);
- if (p->pool == MAP_FAILED)
- goto fail_free;
- /* FIXME: Destructor? */
- p->fd = fd;
- p->poolsize = size;
- p->parent_rfd = p->parent_wfd = -1;
- alloc_init(p->pool, p->poolsize);
- p->ctx = talloc_add_external(p, at_realloc);
- if (!p->ctx)
- goto fail_unmap;
- return p;
- fail_unmap:
- munmap(p->pool, size);
- fail_free:
- talloc_free(p);
- fail_close:
- close_noerr(fd);
- return NULL;
- }
- /* Talloc off this to allocate from within the pool. */
- const void *at_pool_ctx(struct at_pool *atp)
- {
- return atp->ctx;
- }
- static int cant_destroy_self(struct athread *at)
- {
- /* Perhaps this means we want to detach, but it doesn't really
- * make sense. */
- abort();
- return 0;
- }
- static int destroy_at(struct athread *at)
- {
- /* If it is already a zombie, this is harmless. */
- kill(at->pid, SIGTERM);
- close(at->rfd);
- close(at->wfd);
- /* FIXME: Should we do SIGKILL if process doesn't exit soon? */
- if (waitpid(at->pid, NULL, 0) != at->pid)
- err(1, "Waiting for athread %p (pid %u)", at, at->pid);
- return 0;
- }
- /* Sets up thread and forks it. NULL on error. */
- static struct athread *fork_thread(struct at_pool *pool)
- {
- int p2c[2], c2p[2];
- struct athread *at;
- /* You can't already be a child of this pool. */
- if (pool->parent_rfd != -1)
- errx(1, "Can't create antithread on this pool: we're one");
- /* We don't want this allocated *in* the pool. */
- at = talloc_steal(pool, talloc(NULL, struct athread));
- if (pipe(p2c) != 0)
- goto free;
- if (pipe(c2p) != 0)
- goto close_p2c;
- at->pid = fork();
- if (at->pid == -1)
- goto close_c2p;
- if (at->pid == 0) {
- /* Child */
- close(c2p[0]);
- close(p2c[1]);
- pool->parent_rfd = p2c[0];
- pool->parent_wfd = c2p[1];
- talloc_set_destructor(at, cant_destroy_self);
- } else {
- /* Parent */
- close(c2p[1]);
- close(p2c[0]);
- at->rfd = c2p[0];
- at->wfd = p2c[1];
- talloc_set_destructor(at, destroy_at);
- }
- return at;
- close_c2p:
- close_noerr(c2p[0]);
- close_noerr(c2p[1]);
- close_p2c:
- close_noerr(p2c[0]);
- close_noerr(p2c[1]);
- free:
- talloc_free(at);
- return NULL;
- }
- /* Creating an antithread via fork() */
- struct athread *_at_run(struct at_pool *pool,
- void *(*fn)(struct at_pool *, void *),
- void *obj)
- {
- struct athread *at;
- at = fork_thread(pool);
- if (!at)
- return NULL;
- if (at->pid == 0) {
- /* Child */
- at_tell_parent(pool, fn(pool, obj));
- exit(0);
- }
- /* Parent */
- return at;
- }
- static unsigned int num_args(char *const argv[])
- {
- unsigned int i;
- for (i = 0; argv[i]; i++);
- return i;
- }
- /* Fork and execvp, with added arguments for child to grab. */
- struct athread *at_spawn(struct at_pool *pool, void *arg, char *cmdline[])
- {
- struct athread *at;
- int err;
- at = fork_thread(pool);
- if (!at)
- return NULL;
- if (at->pid == 0) {
- /* child */
- char *argv[num_args(cmdline) + 2];
- argv[0] = cmdline[0];
- argv[1] = talloc_asprintf(NULL, "AT:%p/%lu/%i/%i/%i/%p",
- pool->pool, pool->poolsize,
- pool->fd, pool->parent_rfd,
- pool->parent_wfd, arg);
- /* Copy including NULL terminator. */
- memcpy(&argv[2], &cmdline[1], num_args(cmdline)*sizeof(char *));
- execvp(argv[0], argv);
- err = errno;
- write(pool->parent_wfd, &err, sizeof(err));
- exit(1);
- }
- /* Child should always write an error code (or 0). */
- if (read(at->rfd, &err, sizeof(err)) != sizeof(err)) {
- errno = ECHILD;
- talloc_free(at);
- return NULL;
- }
- if (err != 0) {
- errno = err;
- talloc_free(at);
- return NULL;
- }
- return at;
- }
- /* The fd to poll on */
- int at_fd(struct athread *at)
- {
- return at->rfd;
- }
- /* What's the antithread saying? Blocks if fd not ready. */
- void *at_read(struct athread *at)
- {
- void *ret;
- switch (read(at->rfd, &ret, sizeof(ret))) {
- case -1:
- err(1, "Reading from athread %p (pid %u)", at, at->pid);
- case 0:
- /* Thread died. */
- return NULL;
- case sizeof(ret):
- return ret;
- default:
- /* Should never happen. */
- err(1, "Short read from athread %p (pid %u)", at, at->pid);
- }
- }
- /* Say something to a child. */
- void at_tell(struct athread *at, const void *status)
- {
- if (write(at->wfd, &status, sizeof(status)) != sizeof(status))
- err(1, "Failure writing to athread %p (pid %u)", at, at->pid);
- }
- /* For child to grab arguments from command line (removes them) */
- struct at_pool *at_get_pool(int *argc, char *argv[], void **arg)
- {
- struct at_pool *p = talloc(NULL, struct at_pool);
- void *map;
- int err;
- if (!argv[1]) {
- errno = EINVAL;
- goto fail;
- }
- /* If they don't care, use dummy value. */
- if (arg == NULL)
- arg = ↦
- if (sscanf(argv[1], "AT:%p/%lu/%i/%i/%i/%p",
- &p->pool, &p->poolsize, &p->fd,
- &p->parent_rfd, &p->parent_wfd, arg) != 6) {
- errno = EINVAL;
- goto fail;
- }
- /* FIXME: To try to adjust for address space randomization, we
- * could re-exec a few times. */
- map = mmap(p->pool, p->poolsize, PROT_READ|PROT_WRITE, MAP_SHARED,
- p->fd, 0);
- if (map != p->pool) {
- fprintf(stderr, "Mapping %lu bytes @%p gave %p\n",
- p->poolsize, p->pool, map);
- errno = ENOMEM;
- goto fail;
- }
- p->ctx = talloc_add_external(p, at_realloc);
- if (!p->ctx)
- goto fail;
- /* Tell parent we're good. */
- err = 0;
- if (write(p->parent_wfd, &err, sizeof(err)) != sizeof(err)) {
- errno = EBADF;
- goto fail;
- }
- /* Delete AT arg. */
- memmove(&argv[1], &argv[2], --(*argc));
- return p;
- fail:
- /* FIXME: cleanup properly. */
- talloc_free(p);
- return NULL;
- }
- /* Say something to our parent (async). */
- void at_tell_parent(struct at_pool *pool, const void *status)
- {
- if (pool->parent_wfd == -1)
- errx(1, "This process is not an antithread of this pool");
- if (write(pool->parent_wfd, &status, sizeof(status)) != sizeof(status))
- err(1, "Failure writing to parent");
- }
- /* What's the parent saying? Blocks if fd not ready. */
- void *at_read_parent(struct at_pool *pool)
- {
- void *ret;
- if (pool->parent_rfd == -1)
- errx(1, "This process is not an antithread of this pool");
- switch (read(pool->parent_rfd, &ret, sizeof(ret))) {
- case -1:
- err(1, "Reading from parent");
- case 0:
- /* Parent died. */
- return NULL;
- case sizeof(ret):
- return ret;
- default:
- /* Should never happen. */
- err(1, "Short read from parent");
- }
- }
- /* The fd to poll on */
- int at_parent_fd(struct at_pool *pool)
- {
- if (pool->parent_rfd == -1)
- errx(1, "This process is not an antithread of this pool");
- return pool->parent_rfd;
- }
- /* FIXME: Futexme. */
- void at_lock(void *obj)
- {
- struct at_pool *p = talloc_find_parent_bytype(obj, struct at_pool);
- #if 0
- unsigned int *l;
- /* This isn't required yet, but ensures it's a talloc ptr */
- l = talloc_lock_ptr(obj);
- #endif
- lock(p->fd, (char *)obj - (char *)p->pool);
- #if 0
- if (*l)
- errx(1, "Object %p was already locked (something died?)", obj);
- *l = 1;
- #endif
- }
- void at_unlock(void *obj)
- {
- struct at_pool *p = talloc_find_parent_bytype(obj, struct at_pool);
- #if 0
- unsigned int *l;
- l = talloc_lock_ptr(obj);
- if (!*l)
- errx(1, "Object %p was already unlocked", obj);
- *l = 0;
- #endif
- unlock(p->fd, (char *)obj - (char *)p->pool);
- }
- void at_lock_all(struct at_pool *p)
- {
- lock(p->fd, 0);
- }
-
- void at_unlock_all(struct at_pool *p)
- {
- unlock(p->fd, 0);
- }
|