/* $OpenBSD: bounce.c,v 1.13 2009/12/12 10:33:11 jacekm Exp $ */ /* * Copyright (c) 2009 Gilles Chehade * Copyright (c) 2009 Jacek Masiulaniec * * 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 "smtpd.h" #include "client.h" struct client_ctx { struct event ev; struct message m; struct smtp_client *pcb; }; void bounce_event(int, short, void *); void bounce_process(struct smtpd *env, struct message *message) { imsg_compose_event(env->sc_ievs[PROC_SMTP], IMSG_SMTP_ENQUEUE, 0, 0, -1, message, sizeof(*message)); } int bounce_session(struct smtpd *env, int fd, struct message *messagep) { struct client_ctx *cc = NULL; int msgfd = -1; char *reason; /* init smtp session */ if ((cc = calloc(1, sizeof(*cc))) == NULL) goto fail; cc->pcb = client_init(fd, env->sc_hostname, 1); cc->m = *messagep; client_ssl_optional(cc->pcb); /* assign recipient */ client_rcpt(cc->pcb, NULL, "%s@%s", messagep->sender.user, messagep->sender.domain); /* Construct an appropriate reason line. */ reason = messagep->session_errorline; if (strlen(reason) > 4 && (*reason == '1' || *reason == '6')) reason += 4; /* create message header */ /* XXX - The Date: header should be added during SMTP pickup. */ client_data_printf(cc->pcb, "Subject: Delivery status notification\n" "From: Mailer Daemon \n" "To: %s@%s\n" "Date: %s\n" "\n" "Hi !\n" "\n" "This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.\n" "An error has occurred while attempting to deliver a message.\n" "\n" "Recipient: %s@%s\n" "Reason:\n" "%s\n" "\n" "Below is a copy of the original message:\n" "\n", env->sc_hostname, messagep->sender.user, messagep->sender.domain, time_to_text(time(NULL)), messagep->recipient.user, messagep->recipient.domain, reason); /* append original message */ if ((msgfd = queue_open_message_file(messagep->message_id)) == -1) goto fail; client_data_fd(cc->pcb, msgfd); close(msgfd); msgfd = -1; /* setup event */ session_socket_blockmode(fd, BM_NONBLOCK); event_set(&cc->ev, fd, EV_WRITE, bounce_event, cc); event_add(&cc->ev, &cc->pcb->timeout); return 1; fail: close(msgfd); if (cc && cc->pcb) client_close(cc->pcb); free(cc); return 0; } void bounce_event(int fd, short event, void *p) { struct client_ctx *cc = p; char *ep; if (event & EV_TIMEOUT) { ep = "150 timeout"; goto out; } switch (client_talk(cc->pcb)) { case CLIENT_WANT_READ: goto read; case CLIENT_WANT_WRITE: goto write; case CLIENT_RCPT_FAIL: ep = cc->pcb->reply; break; case CLIENT_DONE: ep = cc->pcb->status; break; default: fatalx("bounce_event: unexpected code"); } out: if (*ep == '2') queue_remove_envelope(&cc->m); else { if (*ep == '5') cc->m.status = S_MESSAGE_PERMFAILURE; else cc->m.status = S_MESSAGE_TEMPFAILURE; message_set_errormsg(&cc->m, "%s", ep); queue_message_update(&cc->m); } client_close(cc->pcb); free(cc); return; read: event_set(&cc->ev, fd, EV_READ, bounce_event, cc); event_add(&cc->ev, &cc->pcb->timeout); return; write: event_set(&cc->ev, fd, EV_WRITE, bounce_event, cc); event_add(&cc->ev, &cc->pcb->timeout); }