1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
|
/* $OpenBSD: bounce.c,v 1.54 2013/01/26 09:37:23 gilles Exp $ */
/*
* Copyright (c) 2009 Gilles Chehade <gilles@poolp.org>
* Copyright (c) 2009 Jacek Masiulaniec <jacekm@dobremiasto.net>
* Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
*
* 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 <sys/types.h>
#include <sys/queue.h>
#include <sys/tree.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <err.h>
#include <errno.h>
#include <event.h>
#include <imsg.h>
#include <inttypes.h>
#include <pwd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "smtpd.h"
#include "log.h"
#define BOUNCE_MAXRUN 2
#define BOUNCE_HIWAT 65535
enum {
BOUNCE_EHLO,
BOUNCE_MAIL,
BOUNCE_RCPT,
BOUNCE_DATA,
BOUNCE_DATA_NOTICE,
BOUNCE_DATA_MESSAGE,
BOUNCE_DATA_END,
BOUNCE_QUIT,
BOUNCE_CLOSE,
};
struct bounce_envelope {
TAILQ_ENTRY(bounce_envelope) entry;
uint64_t id;
char *report;
};
struct bounce_message {
SPLAY_ENTRY(bounce_message) sp_entry;
TAILQ_ENTRY(bounce_message) entry;
uint32_t msgid;
struct delivery_bounce bounce;
char *to;
time_t timeout;
TAILQ_HEAD(, bounce_envelope) envelopes;
};
struct bounce_session {
struct bounce_message *msg;
FILE *msgfp;
int state;
struct iobuf iobuf;
struct io io;
};
SPLAY_HEAD(bounce_message_tree, bounce_message);
static int bounce_message_cmp(const struct bounce_message *,
const struct bounce_message *);
SPLAY_PROTOTYPE(bounce_message_tree, bounce_message, sp_entry,
bounce_message_cmp);
static void bounce_drain(void);
static void bounce_send(struct bounce_session *, const char *, ...);
static int bounce_next_message(struct bounce_session *);
static int bounce_next(struct bounce_session *);
static void bounce_delivery(struct bounce_message *, int, const char *);
static void bounce_status(struct bounce_session *, const char *, ...);
static void bounce_io(struct io *, int);
static void bounce_timeout(int, short, void *);
static void bounce_free(struct bounce_session *);
static struct tree wait_fd;
static struct bounce_message_tree messages;
static TAILQ_HEAD(, bounce_message) pending;
static int nmessage = 0;
static int running = 0;
static struct event ev_timer;
static void
bounce_init(void)
{
static int init = 0;
if (init == 0) {
TAILQ_INIT(&pending);
SPLAY_INIT(&messages);
tree_init(&wait_fd);
evtimer_set(&ev_timer, bounce_timeout, NULL);
init = 1;
}
}
void
bounce_add(uint64_t evpid)
{
char buf[MAX_LINE_SIZE], *line;
struct envelope evp;
struct bounce_message key, *msg;
struct bounce_envelope *be;
bounce_init();
if (queue_envelope_load(evpid, &evp) == 0) {
m_create(p_scheduler, IMSG_DELIVERY_PERMFAIL, 0, 0, -1, 9);
m_add_evpid(p_scheduler, evpid);
m_close(p_scheduler);
return;
}
if (evp.type != D_BOUNCE)
errx(1, "bounce: evp:%016" PRIx64 " is not of type D_BOUNCE!",
evp.id);
key.msgid = evpid_to_msgid(evpid);
key.bounce = evp.agent.bounce;
msg = SPLAY_FIND(bounce_message_tree, &messages, &key);
if (msg == NULL) {
msg = xcalloc(1, sizeof(*msg), "bounce_add");
msg->msgid = key.msgid;
msg->bounce = key.bounce;
SPLAY_INSERT(bounce_message_tree, &messages, msg);
TAILQ_INIT(&msg->envelopes);
snprintf(buf, sizeof(buf), "%s@%s", evp.sender.user,
evp.sender.domain);
msg->to = xstrdup(buf, "bounce_add");
nmessage += 1;
log_debug("debug: bounce: new message %08" PRIx32,
msg->msgid);
stat_increment("bounce.message", 1);
} else
TAILQ_REMOVE(&pending, msg, entry);
line = evp.errorline;
if (strlen(line) > 4 && (*line == '1' || *line == '6'))
line += 4;
snprintf(buf, sizeof(buf), "%s@%s: %s\n", evp.dest.user,
evp.dest.domain, line);
be = xmalloc(sizeof *be, "bounce_add");
be->id = evpid;
be->report = xstrdup(buf, "bounce_add");
TAILQ_INSERT_TAIL(&msg->envelopes, be, entry);
log_debug("debug: bounce: adding report %16"PRIx64": %s", be->id,
be->report);
msg->timeout = time(NULL) + 1;
TAILQ_INSERT_TAIL(&pending, msg, entry);
stat_increment("bounce.envelope", 1);
bounce_drain();
}
void
bounce_fd(int fd)
{
struct bounce_session *s;
log_debug("debug: bounce: got enqueue socket %i", fd);
if (fd == -1) {
running -= 1;
bounce_drain();
return;
}
s = xcalloc(1, sizeof(*s), "bounce_fd");
s->state = BOUNCE_EHLO;
iobuf_xinit(&s->iobuf, 0, 0, "bounce_run");
io_init(&s->io, fd, s, bounce_io, &s->iobuf);
io_set_timeout(&s->io, 30000);
io_set_read(&s->io);
log_debug("debug: bounce: new session %p", s);
stat_increment("bounce.session", 1);
}
static void
bounce_timeout(int fd, short ev, void *arg)
{
log_debug("debug: bounce: timeout");
bounce_drain();
}
static void
bounce_drain()
{
struct bounce_message *msg;
struct timeval tv;
time_t t;
log_debug("debug: bounce: drain: nmessage=%i running=%i",
nmessage, running);
while (1) {
if (running >= BOUNCE_MAXRUN) {
log_debug("debug: bounce: max session reached");
return;
}
if (nmessage == 0) {
log_debug("debug: bounce: no more messages");
return;
}
if (running >= nmessage) {
log_debug("debug: bounce: enough sessions running");
return;
}
if ((msg = TAILQ_FIRST(&pending)) == NULL) {
log_debug("debug: bounce: no more pending messages");
return;
}
t = time(NULL);
if (msg->timeout > t) {
log_debug("debug: bounce: next message not ready yet");
if (!evtimer_pending(&ev_timer, NULL)) {
log_debug("debug: bounce: setting timer");
tv.tv_sec = msg->timeout - t;
tv.tv_usec = 0;
evtimer_add(&ev_timer, &tv);
}
return;
}
log_debug("debug: bounce: requesting new enqueue socket...");
m_compose(p_smtp, IMSG_SMTP_ENQUEUE_FD, 0, 0, -1, NULL, 0);
running += 1;
}
}
static void
bounce_send(struct bounce_session *s, const char *fmt, ...)
{
va_list ap;
char *p;
int len;
va_start(ap, fmt);
if ((len = vasprintf(&p, fmt, ap)) == -1)
fatal("bounce: vasprintf");
va_end(ap);
log_trace(TRACE_BOUNCE, "bounce: %p: >>> %s", s, p);
iobuf_xfqueue(&s->iobuf, "bounce_send", "%s\n", p);
free(p);
}
static const char *
bounce_duration(long long int d) {
static char buf[32];
if (d < 60) {
snprintf(buf, sizeof buf, "%lli second%s", d, (d == 1)?"":"s");
} else if (d < 3600) {
d = d / 60;
snprintf(buf, sizeof buf, "%lli minute%s", d, (d == 1)?"":"s");
}
else if (d < 3600 * 24) {
d = d / 3600;
snprintf(buf, sizeof buf, "%lli hour%s", d, (d == 1)?"":"s");
}
else {
d = d / (3600 * 24);
snprintf(buf, sizeof buf, "%lli day%s", d, (d == 1)?"":"s");
}
return (buf);
};
#define NOTICE_INTRO \
" Hi!\n\n" \
" This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.\n"
const char *notice_error =
" An error has occurred while attempting to deliver a message for\n"
" the following list of recipients:\n\n";
const char *notice_warning =
" A message is delayed for more than %s for the following\n"
" list of recipients:\n\n";
const char *notice_warning2 =
" Please note that this is only a temporary failure report.\n"
" The message is kept in the queue for up to %s.\n"
" You DO NOT NEED to re-send the message to these recipients.\n\n";
static int
bounce_next_message(struct bounce_session *s)
{
struct bounce_message *msg;
char buf[MAX_LINE_SIZE];
int fd;
again:
msg = TAILQ_FIRST(&pending);
if (msg == NULL || msg->timeout > time(NULL))
return (0);
TAILQ_REMOVE(&pending, msg, entry);
SPLAY_REMOVE(bounce_message_tree, &messages, msg);
if ((fd = queue_message_fd_r(msg->msgid)) == -1) {
bounce_delivery(msg, IMSG_DELIVERY_TEMPFAIL,
"Could not open message fd");
goto again;
}
if ((s->msgfp = fdopen(fd, "r")) == NULL) {
snprintf(buf, sizeof(buf), "fdopen: %s", strerror(errno));
log_warn("warn: bounce: fdopen");
close(fd);
bounce_delivery(msg, IMSG_DELIVERY_TEMPFAIL, buf);
goto again;
}
s->msg = msg;
return (1);
}
static int
bounce_next(struct bounce_session *s)
{
struct bounce_envelope *evp;
char *line;
size_t len, n;
switch (s->state) {
case BOUNCE_EHLO:
bounce_send(s, "EHLO %s", env->sc_hostname);
s->state = BOUNCE_MAIL;
break;
case BOUNCE_MAIL:
case BOUNCE_DATA_END:
log_debug("debug: bounce: %p: getting next message...", s);
if (bounce_next_message(s) == 0) {
log_debug("debug: bounce: %p: no more messages", s);
bounce_send(s, "QUIT");
s->state = BOUNCE_CLOSE;
break;
}
log_debug("debug: bounce: %p: found message %08"PRIx32,
s, s->msg->msgid);
bounce_send(s, "MAIL FROM: <>");
s->state = BOUNCE_RCPT;
break;
case BOUNCE_RCPT:
bounce_send(s, "RCPT TO: <%s>", s->msg->to);
s->state = BOUNCE_DATA;
break;
case BOUNCE_DATA:
bounce_send(s, "DATA");
s->state = BOUNCE_DATA_NOTICE;
break;
case BOUNCE_DATA_NOTICE:
/* Construct an appropriate notice. */
iobuf_xfqueue(&s->iobuf, "bounce_next: HEADER",
"Subject: Delivery status notification: %s\n"
"From: Mailer Daemon <MAILER-DAEMON@%s>\n"
"To: %s\n"
"Date: %s\n"
"\n"
NOTICE_INTRO
"\n",
(s->msg->bounce.type == B_ERROR) ? "error" : "warning",
env->sc_hostname,
s->msg->to,
time_to_text(time(NULL)));
if (s->msg->bounce.type == B_ERROR)
iobuf_xfqueue(&s->iobuf, "bounce_next: BODY",
notice_error);
else
iobuf_xfqueue(&s->iobuf, "bounce_next: BODY",
notice_warning,
bounce_duration(s->msg->bounce.delay));
TAILQ_FOREACH(evp, &s->msg->envelopes, entry) {
iobuf_xfqueue(&s->iobuf,
"bounce_next: DATA_NOTICE",
"%s", evp->report);
}
iobuf_xfqueue(&s->iobuf, "bounce_next: DATA_NOTICE", "\n");
if (s->msg->bounce.type == B_WARNING)
iobuf_xfqueue(&s->iobuf, "bounce_next: BODY",
notice_warning2,
bounce_duration(s->msg->bounce.expire));
iobuf_xfqueue(&s->iobuf, "bounce_next: DATA_NOTICE",
" Below is a copy of the original message:\n"
"\n");
log_trace(TRACE_BOUNCE, "bounce: %p: >>> [... %zu bytes ...]",
s, iobuf_queued(&s->iobuf));
s->state = BOUNCE_DATA_MESSAGE;
break;
case BOUNCE_DATA_MESSAGE:
n = iobuf_queued(&s->iobuf);
while (iobuf_len(&s->iobuf) < BOUNCE_HIWAT) {
line = fgetln(s->msgfp, &len);
if (line == NULL)
break;
line[len - 1] = '\0';
iobuf_xfqueue(&s->iobuf,
"bounce_next: DATA_MESSAGE", "%s%s\n",
(len == 2 && line[0] == '.') ? "." : "", line);
}
if (ferror(s->msgfp)) {
fclose(s->msgfp);
s->msgfp = NULL;
bounce_delivery(s->msg, IMSG_DELIVERY_TEMPFAIL,
"Error reading message");
s->msg = NULL;
return (-1);
}
log_trace(TRACE_BOUNCE, "bounce: %p: >>> [... %zu bytes ...]",
s, iobuf_queued(&s->iobuf) - n);
if (feof(s->msgfp)) {
fclose(s->msgfp);
s->msgfp = NULL;
bounce_send(s, ".");
s->state = BOUNCE_DATA_END;
}
break;
case BOUNCE_QUIT:
bounce_send(s, "QUIT");
s->state = BOUNCE_CLOSE;
break;
default:
fatalx("bounce: bad state");
}
return (0);
}
static void
bounce_delivery(struct bounce_message *msg, int delivery, const char *status)
{
struct bounce_envelope *be;
struct envelope evp;
size_t n;
log_debug("debug: bounce: status %s for message %08"PRIx32": %s",
imsg_to_str(delivery),
msg->msgid,
status);
n = 0;
while ((be = TAILQ_FIRST(&msg->envelopes))) {
if (delivery == IMSG_DELIVERY_TEMPFAIL) {
if (queue_envelope_load(be->id, &evp) == 0) {
fatalx("could not reload envelope!");
}
evp.retry++;
evp.lasttry = msg->timeout;
envelope_set_errormsg(&evp, "%s", status);
queue_envelope_update(&evp);
m_create(p_scheduler, delivery, 0, 0, -1, MSZ_EVP);
m_add_envelope(p_scheduler, &evp);
m_close(p_scheduler);
} else {
m_create(p_scheduler, delivery, 0, 0, -1,
sizeof(be->id) + 1);
m_add_evpid(p_scheduler, be->id);
m_close(p_scheduler);
queue_envelope_delete(be->id);
}
TAILQ_REMOVE(&msg->envelopes, be, entry);
free(be);
n += 1;
}
nmessage -= 1;
stat_decrement("bounce.message", 1);
stat_decrement("bounce.envelope", n);
free(msg);
}
static void
bounce_status(struct bounce_session *s, const char *fmt, ...)
{
va_list ap;
char *status;
int len, delivery;
/* Ignore if there is no message */
if (s->msg == NULL)
return;
va_start(ap, fmt);
if ((len = vasprintf(&status, fmt, ap)) == -1)
fatal("bounce: vasprintf");
va_end(ap);
if (*status == '2')
delivery = IMSG_DELIVERY_OK;
else if (*status == '5' || *status == '6')
delivery = IMSG_DELIVERY_PERMFAIL;
else
delivery = IMSG_DELIVERY_TEMPFAIL;
bounce_delivery(s->msg, delivery, status);
s->msg = NULL;
if (s->msgfp)
fclose(s->msgfp);
free(status);
}
static void
bounce_free(struct bounce_session *s)
{
log_debug("debug: bounce: %p: deleting session", s);
iobuf_clear(&s->iobuf);
io_clear(&s->io);
free(s);
running -= 1;
stat_decrement("bounce.session", 1);
bounce_drain();
}
static void
bounce_io(struct io *io, int evt)
{
struct bounce_session *s = io->arg;
const char *error;
char *line, *msg;
int cont;
size_t len;
log_trace(TRACE_IO, "bounce: %p: %s %s", s, io_strevent(evt),
io_strio(io));
switch (evt) {
case IO_DATAIN:
nextline:
line = iobuf_getline(&s->iobuf, &len);
if (line == NULL && iobuf_len(&s->iobuf) >= SMTP_LINE_MAX) {
bounce_status(s, "Input too long");
bounce_free(s);
return;
}
if (line == NULL) {
iobuf_normalize(&s->iobuf);
break;
}
log_trace(TRACE_BOUNCE, "bounce: %p: <<< %s", s, line);
if ((error = parse_smtp_response(line, len, &msg, &cont))) {
bounce_status(s, "Bad response: %s", error);
bounce_free(s);
return;
}
if (cont)
goto nextline;
if (s->state == BOUNCE_CLOSE) {
bounce_free(s);
return;
}
if (line[0] != '2' && line[0] != '3') { /* fail */
bounce_status(s, "%s", line);
s->state = BOUNCE_QUIT;
} else if (s->state == BOUNCE_DATA_END) { /* accepted */
bounce_status(s, "%s", line);
}
if (bounce_next(s) == -1) {
bounce_free(s);
return;
}
io_set_write(io);
break;
case IO_LOWAT:
if (s->state == BOUNCE_DATA_MESSAGE)
if (bounce_next(s) == -1) {
bounce_free(s);
return;
}
if (iobuf_queued(&s->iobuf) == 0)
io_set_read(io);
break;
default:
bounce_status(s, "442 i/o error %i", evt);
bounce_free(s);
break;
}
}
static int
bounce_message_cmp(const struct bounce_message *a,
const struct bounce_message *b)
{
if (a->msgid < b->msgid)
return (-1);
if (a->msgid > b->msgid)
return (1);
return memcmp(&a->bounce, &b->bounce, sizeof (a->bounce));
}
SPLAY_GENERATE(bounce_message_tree, bounce_message, sp_entry,
bounce_message_cmp);
|