/* lmtpproxyd.c -- Program to proxy mail delivery * * $Id: lmtpproxyd.c,v 1.54 2003/05/29 02:14:32 rjs3 Exp $ * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The name "Carnegie Mellon University" must not be used to * endorse or promote products derived from this software without * prior written permission. For permission or any other legal * details, please contact * Office of Technology Transfer * Carnegie Mellon University * 5000 Forbes Avenue * Pittsburgh, PA 15213-3890 * (412) 268-4387, fax: (412) 268-7395 * tech-transfer@andrew.cmu.edu * * 4. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by Computing Services * at Carnegie Mellon University (http://www.cmu.edu/computing/)." * * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE * FOR ANY SPECIAL, 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 #ifdef HAVE_UNISTD_H #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "acl.h" #include "assert.h" #include "util.h" #include "prot.h" #include "imapconf.h" #include "exitcodes.h" #include "imap_err.h" #include "mailbox.h" #include "xmalloc.h" #include "version.h" #include "mboxname.h" #include "mupdate-client.h" #include "lmtpengine.h" #include "lmtpstats.h" struct protstream *deliver_out = NULL, *deliver_in = NULL; extern int optind; extern char *optarg; /* a final destination for a message */ struct rcpt { char mailbox[MAX_MAILBOX_NAME+1]; /* where? */ int rcpt_num; /* credit this to who? */ struct rcpt *next; }; struct dest { char server[MAX_MAILBOX_NAME+1]; /* where? */ char authas[MAX_MAILBOX_NAME+1]; /* as who? */ int rnum; /* number of rcpts */ struct rcpt *to; struct dest *next; }; enum pending { s_wait, /* processing sieve requests */ s_err, /* error in sieve processing/sending */ s_done, /* sieve script successfully run */ nosieve, /* no sieve script */ done, }; /* data pertaining to a message in transit */ struct mydata { int cur_rcpt; const char *temp[2]; /* used to avoid extra indirection in getenvelope() */ char *authuser; /* user who submitted message */ struct dest *dlist; enum pending *pend; }; typedef struct mydata mydata_t; static int adddest(struct mydata *mydata, const char *mailbox, const char *authas); /* data per script */ typedef struct script_data { char *username; char *mailboxname; } script_data_t; /* forward declarations */ static int deliver(message_data_t *msgdata, char *authuser, struct auth_state *authstate); static int verify_user(const char *user, long quotacheck, struct auth_state *authstate); FILE *proxy_spoolfile(message_data_t *msgdata); void shut_down(int code); static void usage(); struct lmtp_func mylmtp = { &deliver, &verify_user, &shut_down, &proxy_spoolfile, NULL, 0, 0, 0 }; /* globals */ static int quotaoverride = 0; /* should i override quota? */ const char *BB = ""; static mupdate_handle *mhandle = NULL; static const char *mupdate_server = NULL; int deliver_logfd = -1; /* used in lmtpengine.c */ /* current namespace */ static struct namespace lmtpd_namespace; /* the sasl proxy policy context */ static struct proxy_context lmtpd_proxyctx = { "lmtp", 1, 0, 0, NULL, NULL, NULL }; static struct sasl_callback mysasl_cb[] = { { SASL_CB_GETOPT, &mysasl_config, NULL }, { SASL_CB_PROXY_POLICY, &mysasl_proxy_policy, (void*) &lmtpd_proxyctx }, { SASL_CB_CANON_USER, &mysasl_canon_user, NULL }, { SASL_CB_LIST_END, NULL, NULL } }; int service_init(int argc __attribute__((unused)), char **argv __attribute__((unused)), char **envp __attribute__((unused))) { int r; config_changeident("lmtpproxyd"); if (geteuid() == 0) return 1; signals_set_shutdown(&shut_down); signals_add_handlers(); signal(SIGPIPE, SIG_IGN); BB = config_getstring("postuser", BB); if ((r = sasl_server_init(mysasl_cb, "Cyrus")) != SASL_OK) { syslog(LOG_ERR, "SASL failed initializing: sasl_server_init(): %s", sasl_errstring(r, NULL, NULL)); return EC_SOFTWARE; } r = sasl_client_init(NULL); if(r != 0) { syslog(LOG_ERR, "could not initialize client-side SASL: %s", sasl_errstring(r, NULL, NULL)); return EC_SOFTWARE; } /* Set namespace */ if ((r = mboxname_init_namespace(&lmtpd_namespace, 0)) != 0) { syslog(LOG_ERR, error_message(r)); fatal(error_message(r), EC_CONFIG); } mupdate_server = config_getstring("mupdate_server", NULL); if (!mupdate_server) { syslog(LOG_ERR, "no mupdate_server defined"); return EC_CONFIG; } mhandle = NULL; return 0; } static int mupdate_ignore_cb(struct mupdate_mailboxdata *mdata __attribute__((unused)), const char *cmd __attribute__((unused)), void *context __attribute__((unused))) { /* If we get called, we've recieved something other than an OK in * response to the NOOP, so we want to hang up this connection anyway */ return MUPDATE_FAIL; } /* * run for each accepted connection */ int service_main(int argc __attribute__((unused)), char **argv __attribute__((unused)), char **envp __attribute__((unused))) { int opt; int r; deliver_in = prot_new(0, 0); deliver_out = prot_new(1, 1); prot_setflushonread(deliver_in, deliver_out); prot_settimeout(deliver_in, 300); while ((opt = getopt(argc, argv, "q")) != EOF) { switch(opt) { case 'q': quotaoverride = 1; break; default: usage(); } } /* get a connection to the mupdate server */ r = 0; if (mhandle) { /* we have one already, test it */ r = mupdate_noop(mhandle, mupdate_ignore_cb, NULL); if(r) { /* will NULL mhandle for us */ mupdate_disconnect(&mhandle); } } /* connect to the mupdate server */ if (!mhandle) { r = mupdate_connect(mupdate_server, NULL, &mhandle, NULL); } if (!r) { lmtpmode(&mylmtp, deliver_in, deliver_out, 0); } else { mhandle = NULL; syslog(LOG_ERR, "couldn't connect to %s: %s", mupdate_server, error_message(r)); prot_printf(deliver_out, "451 %s LMTP Cyrus %s %s\r\n", config_servername, CYRUS_VERSION, error_message(r)); } /* free session state */ if (deliver_in) prot_free(deliver_in); if (deliver_out) prot_free(deliver_out); if (deliver_logfd != -1) { close(deliver_logfd); deliver_logfd = -1; } cyrus_close_sock(0); cyrus_close_sock(1); cyrus_close_sock(2); return 0; } /* Called by service API to shut down the service */ void service_abort(int error) { exit(error); } static void usage() { fprintf(stderr, "421-4.3.0 usage: lmtpproxyd [-C ]\r\n"); fprintf(stderr, "421 4.3.0 %s\n", CYRUS_VERSION); exit(EC_USAGE); } struct connlist { char *host; struct lmtp_conn *conn; struct connlist *next; } *chead = NULL; extern sasl_callback_t *mysasl_callbacks(const char *username, const char *authname, const char *realm, const char *password); void free_callbacks(sasl_callback_t *in); static struct lmtp_conn *getconn(const char *server) { int r; struct connlist *p = chead; sasl_callback_t *cb = NULL; for (p = chead; p != NULL; p = p->next) { if (!strcmp(p->host, server)) break; } if (!p) { const char *pass; char *cp; char optstr[128]; /* create a new one */ p = xmalloc(sizeof(struct connlist)); p->host = xstrdup(server); strlcpy(optstr, server, sizeof(optstr)); cp = strchr(optstr, '.'); if (cp) *cp = '\0'; strlcat(optstr, "_password", sizeof(optstr)); pass = config_getstring(optstr, NULL); cb = mysasl_callbacks(config_getstring("lmtpproxy_username", ""), config_getstring("lmtpproxy_authname", "proxy"), config_getstring("lmtpproxy_realm", NULL), pass); r = lmtp_connect(p->host, cb, &p->conn); if (r) { fatal("can't connect to backend lmtp server", EC_TEMPFAIL); } /* insert it */ p->next = chead; chead = p; } /* verify connection is ok */ r = lmtp_verify_conn(p->conn); if (r) { r = lmtp_disconnect(p->conn); if (r) { fatal("can't dispose of backend server connection", EC_TEMPFAIL); } r = lmtp_connect(p->host, NULL, &p->conn); if (r) { fatal("can't connect to backend lmtp server", EC_TEMPFAIL); } } if(cb) free_callbacks(cb); return p->conn; } static void putconn(const char *server __attribute__((unused)), struct lmtp_conn *c __attribute__((unused))) { return; } static int adddest(struct mydata *mydata, const char *mailbox, const char *authas) { struct rcpt *new_rcpt = xmalloc(sizeof(struct rcpt)); struct dest *d; struct mupdate_mailboxdata *mailboxdata; int sl = strlen(BB); int r; char buf[MAX_MAILBOX_NAME+1]; strlcpy(new_rcpt->mailbox, mailbox, sizeof(new_rcpt->mailbox)); new_rcpt->rcpt_num = mydata->cur_rcpt; /* find what server we're sending this to */ if (sl < strlen(mailbox) && !strncmp(mailbox, BB, sl) && mailbox[sl] == '+') { /* special shared folder address */ strlcpy(buf, mailbox + sl + 1, sizeof(buf)); mboxname_hiersep_tointernal(&lmtpd_namespace, buf); r = mupdate_find(mhandle, buf, &mailboxdata); } else { char *plus; strlcpy(buf, "user.", sizeof(buf)); strlcat(buf, mailbox, sizeof(buf)); plus = strchr(buf, '+'); if (plus) *plus = '\0'; /* find where this user lives */ r = mupdate_find(mhandle, buf, &mailboxdata); } if (r == MUPDATE_NOCONN) { /* yuck; our error handling for now will be to exit; this txn will be retried later */ fatal("mupdate server not responding", EC_TEMPFAIL); } else if (r == MUPDATE_MAILBOX_UNKNOWN) { r = IMAP_MAILBOX_NONEXISTENT; } if (r) { free(new_rcpt); return r; } assert(mailboxdata != NULL); /* xxx hide the fact that we are storing partitions */ if(mailboxdata->server) { char *c; c = strchr(mailboxdata->server, '!'); if(c) *c = '\0'; } /* see if we currently have a 'mailboxdata->server'/'authas' combination. */ d = mydata->dlist; for (d = mydata->dlist; d != NULL; d = d->next) { if (!strcmp(d->server, mailboxdata->server) && !strcmp(d->authas, authas ? authas : "")) break; } if (d == NULL) { /* create a new one */ d = xmalloc(sizeof(struct dest)); strlcpy(d->server, mailboxdata->server, sizeof(d->server)); strlcpy(d->authas, authas ? authas : "", sizeof(d->authas)); d->rnum = 0; d->to = NULL; d->next = mydata->dlist; mydata->dlist = d; } /* add rcpt to d */ d->rnum++; new_rcpt->next = d->to; d->to = new_rcpt; /* don't need to free mailboxdata; it goes with the handle */ /* and we're done */ return 0; } static void runme(struct mydata *mydata, message_data_t *msgdata) { struct dest *d; /* run the txns */ d = mydata->dlist; while (d) { struct lmtp_txn *lt = LMTP_TXN_ALLOC(d->rnum); struct rcpt *rc; struct lmtp_conn *remote; int i = 0; int r = 0; lt->from = msgdata->return_path; lt->auth = d->authas[0] ? d->authas : NULL; lt->isdotstuffed = 0; prot_rewind(msgdata->data); lt->data = msgdata->data; lt->rcpt_num = d->rnum; rc = d->to; for (rc = d->to; rc != NULL; rc = rc->next, i++) { assert(i < d->rnum); lt->rcpt[i].addr = rc->mailbox; lt->rcpt[i].ignorequota = msg_getrcpt_ignorequota(msgdata, rc->rcpt_num); } assert(i == d->rnum); remote = getconn(d->server); if (remote) { r = lmtp_runtxn(remote, lt); putconn(d->server, remote); } else { /* remote server not available; tempfail all deliveries */ for (rc = d->to, i = 0; i < d->rnum; i++) { lt->rcpt[i].result = RCPT_TEMPFAIL; lt->rcpt[i].r = IMAP_SERVER_UNAVAILABLE; } } /* process results of the txn, propogating error state to the recipients */ for (rc = d->to, i = 0; rc != NULL; rc = rc->next, i++) { int j = rc->rcpt_num; switch (mydata->pend[j]) { case s_wait: /* hmmm, if something fails we'll want to try an error delivery */ if (lt->rcpt[i].result != RCPT_GOOD) { mydata->pend[j] = s_err; } break; case s_err: /* we've already detected an error for this recipient, and nothing will convince me otherwise */ break; case nosieve: /* this is the only delivery we're attempting for this rcpt */ msg_setrcpt_status(msgdata, j, lt->rcpt[i].r); mydata->pend[j] = done; break; case done: case s_done: /* yikes! we shouldn't be getting a notification for this person! */ abort(); break; } } free(lt); d = d->next; } } /* deliver() runs through each recipient in 'msgdata', compiling a list of final destinations for this message (each represented by a 'struct dest' linked off of 'mydata'. it then batches all the times this message is going to the same backend server with the same authentication, and attempts delivery of all of them simultaneously. it then examines the results, attempts any error deliveries (for sieve script errors) if necessary, and assigns the correct result for each of the original receipients. */ int deliver(message_data_t *msgdata, char *authuser, struct auth_state *authstate) { int n, nrcpts; mydata_t mydata; struct dest *d; assert(msgdata); nrcpts = msg_getnumrcpt(msgdata); assert(nrcpts); /* create 'mydata', our per-delivery data */ mydata.temp[0] = mydata.temp[1] = NULL; mydata.authuser = authuser; mydata.dlist = NULL; mydata.pend = xzmalloc(sizeof(enum pending) * nrcpts); /* loop through each recipient, compiling list of destinations */ for (n = 0; n < nrcpts; n++) { char *rcpt = xstrdup(msg_getrcpt(msgdata, n)); char *plus; int r = 0; mydata.cur_rcpt = n; plus = strchr(rcpt, '+'); if (plus) *plus++ = '\0'; /* case 1: shared mailbox request */ if (plus && !strcmp(rcpt, BB)) { *--plus = '+'; /* put that plus back */ r = adddest(&mydata, rcpt, mydata.authuser); if (r) { msg_setrcpt_status(msgdata, n, r); mydata.pend[n] = done; } else { mydata.pend[n] = nosieve; } } /* case 2: ordinary user, Sieve script---naaah, not here */ /* case 3: ordinary user, no Sieve script */ else { if (plus) *--plus = '+'; r = adddest(&mydata, rcpt, authuser); if (r) { msg_setrcpt_status(msgdata, n, r); mydata.pend[n] = done; } else { mydata.pend[n] = nosieve; } } free(rcpt); } /* run the txns */ runme(&mydata, msgdata); /* free the recipient/destination lists */ d = mydata.dlist; while (d) { struct dest *nextd = d->next; struct rcpt *rc = d->to; while (rc) { struct rcpt *nextrc = rc->next; free(rc); rc = nextrc; } free(d); d = nextd; } mydata.dlist = NULL; /* do any sieve error recovery, if needed */ for (n = 0; n < nrcpts; n++) { switch (mydata.pend[n]) { case s_wait: case s_err: case s_done: /* yikes, we haven't implemented sieve ! */ syslog(LOG_CRIT, "sieve states reached, but we don't implement sieve"); abort(); break; case nosieve: /* yikes, we never got an answer on this one */ syslog(LOG_CRIT, "still waiting for response to rcpt %d", n); abort(); break; case done: /* good */ break; } } /* run the error recovery txns */ runme(&mydata, msgdata); /* everything should be in the 'done' state now, verify this */ for (n = 0; n < nrcpts; n++) { assert(mydata.pend[n] == done || mydata.pend[n] == s_done); } /* free data */ free(mydata.pend); return 0; } void fatal(const char* s, int code) { if(deliver_out) { prot_printf(deliver_out,"421 4.3.0 deliver: %s\r\n", s); prot_flush(deliver_out); } else { syslog(LOG_ERR, "FATAL: %s", s); } exit(code); } /* * Cleanly shut down and exit */ void shut_down(int code) __attribute__((noreturn)); void shut_down(int code) { prot_flush(deliver_out); if (mhandle) { mupdate_disconnect(&mhandle); } exit(code); } static int verify_user(const char *user, long quotacheck __attribute__((unused)), struct auth_state *authstate) { char buf[MAX_MAILBOX_PATH+1]; int r = 0; int sl = strlen(BB); /* check to see if mailbox exists */ if (!strncmp(user, BB, sl) && user[sl] == '+') { /* special shared folder address */ strlcpy(buf, user + sl + 1, sizeof(buf)); } else { /* ordinary user */ int l; char *plus = strchr(user, '+'); if (plus) l = plus - user; else l = strlen(user); if (l >= MAX_MAILBOX_NAME - 5) { /* too long a name (including user. prefix) */ r = IMAP_MAILBOX_NONEXISTENT; } else { /* strcpy is safe here since we know buf is large enough */ strcpy(buf, "user."); /* just copy before the plus -- strlcpy not applicable */ strncat(buf, user, l); buf[l + 5] = '\0'; } } #ifdef CHECK_MUPDATE_EARLY /* Translate any separators */ if (!r) mboxname_hiersep_tointernal(&lmtpd_namespace, buf); if (!r) { r = mupdate_find(mhandle, buf, &mailboxdata); if (r == MUPDATE_NOCONN) { /* yuck; our error handling for now will be to exit; this txn will be retried later */ } if (!r) { /* xxx check ACL */ } if (!r) { /* add to destination list */ } #endif return r; } /* we're a proxy, we don't care about single instance store */ FILE *proxy_spoolfile(message_data_t *msgdata __attribute__((unused))) { return tmpfile(); }