/* $OpenBSD: queue_fsqueue.c,v 1.44 2012/07/08 18:13:08 chl Exp $ */ /* * Copyright (c) 2011 Gilles Chehade * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "smtpd.h" #include "log.h" static int fsqueue_envelope_load(struct envelope *); static int fsqueue_envelope_update(struct envelope *); static int fsqueue_envelope_delete(struct envelope *); static int fsqueue_message_create(u_int32_t *); static int fsqueue_message_commit(u_int32_t); static int fsqueue_message_fd_r(u_int32_t); static int fsqueue_message_delete(u_int32_t); static int fsqueue_message_corrupt(u_int32_t); static int fsqueue_message_path(uint32_t, char *, size_t); static int fsqueue_envelope_path(u_int64_t, char *, size_t); static int fsqueue_envelope_dump_atomic(char *, struct envelope *); static int fsqueue_init(int); static int fsqueue_message(enum queue_op, u_int32_t *); static int fsqueue_envelope(enum queue_op , struct envelope *); static void *fsqueue_qwalk_new(u_int32_t); static int fsqueue_qwalk(void *, u_int64_t *); static void fsqueue_qwalk_close(void *); #define PATH_QUEUE "/queue" #define PATH_CORRUPT "/corrupt" #define PATH_EVPTMP PATH_INCOMING "/envelope.tmp" struct queue_backend queue_backend_fs = { fsqueue_init, fsqueue_message, fsqueue_envelope, fsqueue_qwalk_new, fsqueue_qwalk, fsqueue_qwalk_close }; static int fsqueue_message_path(uint32_t msgid, char *buf, size_t len) { return bsnprintf(buf, len, "%s/%03x/%08x", PATH_QUEUE, msgid & 0xfff, msgid); } static int fsqueue_message_corrupt_path(uint32_t msgid, char *buf, size_t len) { return bsnprintf(buf, len, "%s/%08x", PATH_CORRUPT, msgid); } static int fsqueue_envelope_path(uint64_t evpid, char *buf, size_t len) { return bsnprintf(buf, len, "%s/%03x/%08x%s/%016" PRIx64, PATH_QUEUE, evpid_to_msgid(evpid) & 0xfff, evpid_to_msgid(evpid), PATH_ENVELOPES, evpid); } static int fsqueue_envelope_dump_atomic(char *dest, struct envelope *ep) { FILE *fp; char buf[MAXPATHLEN]; /* temporary fix for multi-process access to the queue, * should be fixed by rerouting ALL queue access through * the queue process. */ snprintf(buf, sizeof buf, PATH_EVPTMP".%d", getpid()); fp = fopen(buf, "w"); if (fp == NULL) { if (errno == ENOSPC || errno == ENFILE) goto tempfail; fatal("fsqueue_envelope_dump_atomic: open"); } if (! envelope_dump_file(ep, fp)) { if (errno == ENOSPC) goto tempfail; fatal("fsqueue_envelope_dump_atomic: fwrite"); } if (! safe_fclose(fp)) goto tempfail; fp = NULL; if (rename(buf, dest) == -1) { if (errno == ENOSPC) goto tempfail; fatal("fsqueue_envelope_dump_atomic: rename"); } return 1; tempfail: if (fp) fclose(fp); if (unlink(buf) == -1) fatal("fsqueue_envelope_dump_atomic: unlink"); return 0; } static int fsqueue_envelope_create(struct envelope *ep) { char evpname[MAXPATHLEN]; u_int64_t evpid; struct stat sb; again: evpid = queue_generate_evpid(evpid_to_msgid(ep->id)); if (ep->type == D_BOUNCE) fsqueue_envelope_path(evpid, evpname, sizeof(evpname)); else queue_envelope_incoming_path(evpid, evpname, sizeof(evpname)); if (stat(evpname, &sb) != -1 || errno != ENOENT) goto again; ep->id = evpid; return (fsqueue_envelope_dump_atomic(evpname, ep)); } static int fsqueue_envelope_load(struct envelope *ep) { char pathname[MAXPATHLEN]; FILE *fp; int ret; fsqueue_envelope_path(ep->id, pathname, sizeof(pathname)); fp = fopen(pathname, "r"); if (fp == NULL) { if (errno == ENOENT || errno == ENFILE) return 0; fatal("fsqueue_envelope_load: fopen"); } ret = envelope_load_file(ep, fp); fclose(fp); return ret; } static int fsqueue_envelope_update(struct envelope *ep) { char dest[MAXPATHLEN]; fsqueue_envelope_path(ep->id, dest, sizeof(dest)); return (fsqueue_envelope_dump_atomic(dest, ep)); } static int fsqueue_envelope_delete(struct envelope *ep) { char pathname[MAXPATHLEN]; log_debug("#### %s: queue_envelope_delete: %016" PRIx64, __func__, ep->id); fsqueue_envelope_path(ep->id, pathname, sizeof(pathname)); if (unlink(pathname) == -1) { log_debug("######: %s [errno: %d]", pathname, errno); fatal("fsqueue_envelope_delete: unlink"); } *strrchr(pathname, '/') = '\0'; if (rmdir(pathname) != -1) fsqueue_message_delete(evpid_to_msgid(ep->id)); return 1; } static int fsqueue_message_create(u_int32_t *msgid) { char rootdir[MAXPATHLEN]; char evpdir[MAXPATHLEN]; struct stat sb; again: *msgid = queue_generate_msgid(); /* prevent possible collision later when moving to Q_QUEUE */ fsqueue_message_path(*msgid, rootdir, sizeof(rootdir)); if (stat(rootdir, &sb) != -1 || errno != ENOENT) goto again; queue_message_incoming_path(*msgid, rootdir, sizeof(rootdir)); if (mkdir(rootdir, 0700) == -1) { if (errno == EEXIST) goto again; if (errno == ENOSPC) { *msgid = 0; return 0; } fatal("fsqueue_message_create: mkdir"); } strlcpy(evpdir, rootdir, sizeof(evpdir)); strlcat(evpdir, PATH_ENVELOPES, sizeof(evpdir)); if (mkdir(evpdir, 0700) == -1) { if (errno == ENOSPC) { rmdir(rootdir); *msgid = 0; return 0; } fatal("fsqueue_message_create: mkdir"); } return 1; } static int fsqueue_message_commit(u_int32_t msgid) { char incomingdir[MAXPATHLEN]; char queuedir[MAXPATHLEN]; char msgdir[MAXPATHLEN]; queue_message_incoming_path(msgid, incomingdir, sizeof(incomingdir)); fsqueue_message_path(msgid, msgdir, sizeof(msgdir)); strlcpy(queuedir, msgdir, sizeof(queuedir)); *strrchr(queuedir, '/') = '\0'; if (mkdir(queuedir, 0700) == -1) { if (errno == ENOSPC) return 0; if (errno != EEXIST) fatal("fsqueue_message_commit: mkdir"); } if (rename(incomingdir, msgdir) == -1) { if (errno == ENOSPC) return 0; fatal("fsqueue_message_commit: rename"); } return 1; } static int fsqueue_message_fd_r(u_int32_t msgid) { int fd; char path[MAXPATHLEN]; fsqueue_message_path(msgid, path, sizeof(path)); strlcat(path, PATH_MESSAGE, sizeof(path)); if ((fd = open(path, O_RDONLY)) == -1) fatal("fsqueue_message_fd_r: open"); return fd; } static int fsqueue_message_delete(u_int32_t msgid) { char rootdir[MAXPATHLEN]; if (! fsqueue_message_path(msgid, rootdir, sizeof(rootdir))) fatal("fsqueue_message_delete: snprintf"); if (rmtree(rootdir, 0) == -1) fatal("fsqueue_message_delete: rmtree"); return 1; } static int fsqueue_message_corrupt(u_int32_t msgid) { struct stat sb; char rootdir[MAXPATHLEN]; char corruptdir[MAXPATHLEN]; char buf[64]; int retry = 0; fsqueue_message_path(msgid, rootdir, sizeof(rootdir)); fsqueue_message_corrupt_path(msgid, corruptdir, sizeof(corruptdir)); again: if (stat(corruptdir, &sb) != -1 || errno != ENOENT) { fsqueue_message_corrupt_path(msgid, corruptdir, sizeof(corruptdir)); snprintf(buf, sizeof(buf), ".%i", retry++); strlcat(corruptdir, buf, sizeof(corruptdir)); goto again; } if (rename(rootdir, corruptdir) == -1) fatalx("fsqueue_message_corrupt: rename"); return 1; } static int fsqueue_init(int server) { unsigned int n; char *paths[] = { PATH_QUEUE, PATH_CORRUPT }; char path[MAXPATHLEN]; int ret; if (!fsqueue_envelope_path(0, path, sizeof(path))) errx(1, "cannot store envelope path in %s", PATH_QUEUE); ret = 1; for (n = 0; n < nitems(paths); n++) { strlcpy(path, PATH_SPOOL, sizeof(path)); if (strlcat(path, paths[n], sizeof(path)) >= sizeof(path)) errx(1, "path too long %s%s", PATH_SPOOL, paths[n]); if (ckdir(path, 0700, env->sc_pw->pw_uid, 0, server) == 0) ret = 0; } return ret; } static int fsqueue_message(enum queue_op qop, u_int32_t *msgid) { switch (qop) { case QOP_CREATE: return fsqueue_message_create(msgid); case QOP_DELETE: return fsqueue_message_delete(*msgid); case QOP_COMMIT: return fsqueue_message_commit(*msgid); case QOP_FD_R: return fsqueue_message_fd_r(*msgid); case QOP_CORRUPT: return fsqueue_message_corrupt(*msgid); default: fatalx("queue_fsqueue_message: unsupported operation."); } return 0; } static int fsqueue_envelope(enum queue_op qop, struct envelope *m) { switch (qop) { case QOP_CREATE: return fsqueue_envelope_create(m); case QOP_DELETE: return fsqueue_envelope_delete(m); case QOP_LOAD: return fsqueue_envelope_load(m); case QOP_UPDATE: return fsqueue_envelope_update(m); default: fatalx("queue_fsqueue_envelope: unsupported operation."); } return 0; } #define QWALK_AGAIN 0x1 #define QWALK_RECURSE 0x2 #define QWALK_RETURN 0x3 struct qwalk { char path[MAXPATHLEN]; DIR *dirs[3]; int (*filefn)(struct qwalk *, char *); int bucket; int level; u_int32_t msgid; }; static int walk_queue(struct qwalk *, char *); static void * fsqueue_qwalk_new(u_int32_t msgid) { struct qwalk *q; q = calloc(1, sizeof(struct qwalk)); if (q == NULL) fatal("qwalk_new: calloc"); strlcpy(q->path, PATH_QUEUE, sizeof(q->path)); q->level = 0; q->msgid = msgid; if (q->msgid) { /* force level and bucket */ q->bucket = q->msgid & 0xfff; q->level = 2; if (! bsnprintf(q->path, sizeof(q->path), "%s/%03x/%08x/%s", PATH_QUEUE, q->bucket, q->msgid, PATH_ENVELOPES)) fatalx("walk_queue: snprintf"); } q->filefn = walk_queue; q->dirs[q->level] = opendir(q->path); if (q->dirs[q->level] == NULL) fatal("qwalk_new: opendir"); return (q); } static int fsqueue_qwalk(void *hdl, u_int64_t *evpid) { struct qwalk *q = hdl; struct dirent *dp; again: errno = 0; dp = readdir(q->dirs[q->level]); if (errno) fatal("qwalk: readdir"); if (dp == NULL) { closedir(q->dirs[q->level]); q->dirs[q->level] = NULL; if (q->level == 0 || q->msgid) return (0); q->level--; goto again; } if (strcmp(dp->d_name, ".") == 0 || strcmp(dp->d_name, "..") == 0) goto again; switch (q->filefn(q, dp->d_name)) { case QWALK_AGAIN: goto again; case QWALK_RECURSE: goto recurse; case QWALK_RETURN: { char *endptr; errno = 0; *evpid = (u_int64_t)strtoull(dp->d_name, &endptr, 16); if (q->path[0] == '\0' || *endptr != '\0') goto again; if (errno == ERANGE && *evpid == ULLONG_MAX) goto again; if (q->msgid) if (evpid_to_msgid(*evpid) != q->msgid) return 0; return (1); } default: fatalx("qwalk: callback failed"); } recurse: q->level++; q->dirs[q->level] = opendir(q->path); if (q->dirs[q->level] == NULL) { if (errno == ENOENT) { q->level--; goto again; } fatal("qwalk: opendir"); } goto again; } static void fsqueue_qwalk_close(void *hdl) { int i; struct qwalk *q = hdl; for (i = 0; i <= q->level; i++) if (q->dirs[i]) closedir(q->dirs[i]); bzero(q, sizeof(struct qwalk)); free(q); } static int walk_queue(struct qwalk *q, char *fname) { char *ep; switch (q->level) { case 0: q->bucket = strtoul(fname, &ep, 16); if (fname[0] == '\0' || *ep != '\0') { log_warnx("walk_queue: invalid bucket: %s", fname); return (QWALK_AGAIN); } if (errno == ERANGE || q->bucket >= DIRHASH_BUCKETS) { log_warnx("walk_queue: invalid bucket: %s", fname); return (QWALK_AGAIN); } if (! bsnprintf(q->path, sizeof(q->path), "%s/%03x", PATH_QUEUE, q->bucket & 0xfff)) fatalx("walk_queue: snprintf"); return (QWALK_RECURSE); case 1: if (! bsnprintf(q->path, sizeof(q->path), "%s/%03x/%s%s", PATH_QUEUE, q->bucket & 0xfff, fname, PATH_ENVELOPES)) fatalx("walk_queue: snprintf"); return (QWALK_RECURSE); case 2: return (QWALK_RETURN); } return (-1); }