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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
|
/* $OpenBSD: mta.c,v 1.107 2011/05/21 18:39:03 gilles Exp $ */
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2009 Jacek Masiulaniec <jacekm@dobremiasto.net>
*
* 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 <errno.h>
#include <event.h>
#include <imsg.h>
#include <netdb.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "smtpd.h"
#include "client.h"
#include "log.h"
static void mta_imsg(struct imsgev *, struct imsg *);
static void mta_shutdown(void);
static void mta_sig_handler(int, short, void *);
static struct mta_session *mta_lookup(u_int64_t);
static void mta_enter_state(struct mta_session *, int, void *);
static void mta_pickup(struct mta_session *, void *);
static void mta_event(int, short, void *);
static void mta_status(struct mta_session *, const char *, ...);
static void mta_message_status(struct envelope *, char *);
static void mta_message_log(struct mta_session *, struct envelope *);
static void mta_message_done(struct mta_session *, struct envelope *);
static void mta_connect_done(int, short, void *);
static void mta_request_datafd(struct mta_session *);
static void
mta_imsg(struct imsgev *iev, struct imsg *imsg)
{
struct ramqueue_batch *rq_batch;
struct mta_session *s;
struct mta_relay *relay;
struct envelope *e;
struct secret *secret;
struct dns *dns;
struct ssl *ssl;
if (iev->proc == PROC_QUEUE) {
switch (imsg->hdr.type) {
case IMSG_BATCH_CREATE:
rq_batch = imsg->data;
s = calloc(1, sizeof *s);
if (s == NULL)
fatal(NULL);
s->id = rq_batch->b_id;
s->state = MTA_INIT;
s->batch = rq_batch;
/* establish host name */
if (rq_batch->rule.r_action == A_RELAYVIA) {
s->host = strdup(rq_batch->rule.r_value.relayhost.hostname);
s->flags |= MTA_FORCE_MX;
}
else
s->host = NULL;
/* establish port */
s->port = ntohs(rq_batch->rule.r_value.relayhost.port); /* XXX */
/* have cert? */
s->cert = strdup(rq_batch->rule.r_value.relayhost.cert);
if (s->cert == NULL)
fatal(NULL);
else if (s->cert[0] == '\0') {
free(s->cert);
s->cert = NULL;
}
/* use auth? */
if ((rq_batch->rule.r_value.relayhost.flags & F_SSL) &&
(rq_batch->rule.r_value.relayhost.flags & F_AUTH)) {
s->flags |= MTA_USE_AUTH;
s->secmapid = rq_batch->rule.r_value.relayhost.secmapid;
}
/* force a particular SSL mode? */
switch (rq_batch->rule.r_value.relayhost.flags & F_SSL) {
case F_SSL:
s->flags |= MTA_FORCE_ANYSSL;
break;
case F_SMTPS:
s->flags |= MTA_FORCE_SMTPS;
case F_STARTTLS:
/* client_* API by default requires STARTTLS */
break;
default:
s->flags |= MTA_ALLOW_PLAIN;
}
TAILQ_INIT(&s->recipients);
TAILQ_INIT(&s->relays);
SPLAY_INSERT(mtatree, &env->mta_sessions, s);
return;
case IMSG_BATCH_APPEND:
e = imsg->data;
s = mta_lookup(e->batch_id);
e = malloc(sizeof *e);
if (e == NULL)
fatal(NULL);
*e = *(struct envelope *)imsg->data;
strlcpy(e->delivery.errorline, "000 init",
sizeof(e->delivery.errorline));
if (s->host == NULL) {
s->host = strdup(e->delivery.rcpt.domain);
if (s->host == NULL)
fatal("strdup");
}
TAILQ_INSERT_TAIL(&s->recipients, e, entry);
return;
case IMSG_BATCH_CLOSE:
rq_batch = imsg->data;
mta_pickup(mta_lookup(rq_batch->b_id), NULL);
return;
case IMSG_QUEUE_MESSAGE_FD:
rq_batch = imsg->data;
mta_pickup(mta_lookup(rq_batch->b_id), &imsg->fd);
return;
}
}
if (iev->proc == PROC_LKA) {
switch (imsg->hdr.type) {
case IMSG_LKA_SECRET:
secret = imsg->data;
mta_pickup(mta_lookup(secret->id), secret->secret);
return;
case IMSG_DNS_HOST:
dns = imsg->data;
s = mta_lookup(dns->id);
relay = calloc(1, sizeof *relay);
if (relay == NULL)
fatal(NULL);
relay->sa = dns->ss;
TAILQ_INSERT_TAIL(&s->relays, relay, entry);
return;
case IMSG_DNS_HOST_END:
dns = imsg->data;
mta_pickup(mta_lookup(dns->id), &dns->error);
return;
case IMSG_DNS_PTR:
dns = imsg->data;
s = mta_lookup(dns->id);
relay = TAILQ_FIRST(&s->relays);
if (dns->error)
strlcpy(relay->fqdn, "<unknown>",
sizeof relay->fqdn);
else
strlcpy(relay->fqdn, dns->host,
sizeof relay->fqdn);
mta_pickup(s, NULL);
return;
}
}
if (iev->proc == PROC_PARENT) {
switch (imsg->hdr.type) {
case IMSG_CONF_START:
if (env->sc_flags & SMTPD_CONFIGURING)
return;
env->sc_flags |= SMTPD_CONFIGURING;
env->sc_ssl = calloc(1, sizeof *env->sc_ssl);
if (env->sc_ssl == NULL)
fatal(NULL);
return;
case IMSG_CONF_SSL:
if (!(env->sc_flags & SMTPD_CONFIGURING))
return;
ssl = calloc(1, sizeof *ssl);
if (ssl == NULL)
fatal(NULL);
*ssl = *(struct ssl *)imsg->data;
ssl->ssl_cert = strdup((char *)imsg->data +
sizeof *ssl);
if (ssl->ssl_cert == NULL)
fatal(NULL);
ssl->ssl_key = strdup((char *)imsg->data +
sizeof *ssl + ssl->ssl_cert_len);
if (ssl->ssl_key == NULL)
fatal(NULL);
SPLAY_INSERT(ssltree, env->sc_ssl, ssl);
return;
case IMSG_CONF_END:
if (!(env->sc_flags & SMTPD_CONFIGURING))
return;
env->sc_flags &= ~SMTPD_CONFIGURING;
return;
case IMSG_CTL_VERBOSE:
log_verbose(*(int *)imsg->data);
return;
}
}
fatalx("mta_imsg: unexpected imsg");
}
static void
mta_sig_handler(int sig, short event, void *p)
{
switch (sig) {
case SIGINT:
case SIGTERM:
mta_shutdown();
break;
default:
fatalx("mta_sig_handler: unexpected signal");
}
}
static void
mta_shutdown(void)
{
log_info("mail transfer agent exiting");
_exit(0);
}
pid_t
mta(void)
{
pid_t pid;
struct passwd *pw;
struct event ev_sigint;
struct event ev_sigterm;
struct peer peers[] = {
{ PROC_PARENT, imsg_dispatch },
{ PROC_QUEUE, imsg_dispatch },
{ PROC_LKA, imsg_dispatch }
};
switch (pid = fork()) {
case -1:
fatal("mta: cannot fork");
case 0:
break;
default:
return (pid);
}
ssl_init();
purge_config(PURGE_EVERYTHING);
pw = env->sc_pw;
if (chroot(pw->pw_dir) == -1)
fatal("mta: chroot");
if (chdir("/") == -1)
fatal("mta: chdir(\"/\")");
smtpd_process = PROC_MTA;
setproctitle("%s", env->sc_title[smtpd_process]);
if (setgroups(1, &pw->pw_gid) ||
setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) ||
setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid))
fatal("mta: cannot drop privileges");
imsg_callback = mta_imsg;
event_init();
signal_set(&ev_sigint, SIGINT, mta_sig_handler, NULL);
signal_set(&ev_sigterm, SIGTERM, mta_sig_handler, NULL);
signal_add(&ev_sigint, NULL);
signal_add(&ev_sigterm, NULL);
signal(SIGPIPE, SIG_IGN);
signal(SIGHUP, SIG_IGN);
config_pipes(peers, nitems(peers));
config_peers(peers, nitems(peers));
ramqueue_init(&env->sc_rqueue);
SPLAY_INIT(&env->mta_sessions);
if (event_dispatch() < 0)
fatal("event_dispatch");
mta_shutdown();
return (0);
}
static struct mta_session *
mta_lookup(u_int64_t id)
{
struct mta_session key, *res;
key.id = id;
if ((res = SPLAY_FIND(mtatree, &env->mta_sessions, &key)) == NULL)
fatalx("mta_lookup: session not found");
return (res);
}
static void
mta_enter_state(struct mta_session *s, int newstate, void *p)
{
struct secret secret;
struct mta_relay *relay;
struct sockaddr *sa;
struct envelope *e;
struct smtp_client *pcb;
int max_reuse;
s->state = newstate;
switch (s->state) {
case MTA_SECRET:
/*
* Lookup AUTH secret.
*/
bzero(&secret, sizeof(secret));
secret.id = s->id;
secret.secmapid = s->secmapid;
strlcpy(secret.host, s->host, sizeof(secret.host));
imsg_compose_event(env->sc_ievs[PROC_LKA], IMSG_LKA_SECRET,
0, 0, -1, &secret, sizeof(secret));
break;
case MTA_MX:
/*
* Lookup MX record.
*/
if (s->flags & MTA_FORCE_MX)
dns_query_host(s->host, s->port, s->id);
else
dns_query_mx(s->host, 0, s->id);
break;
case MTA_DATA:
/*
* Obtain message body fd.
*/
log_debug("mta: getting datafd");
mta_request_datafd(s);
break;
case MTA_CONNECT:
/*
* Connect to the MX.
*/
if (s->flags & MTA_FORCE_ANYSSL)
max_reuse = 2;
else
max_reuse = 1;
/* pick next mx */
while ((relay = TAILQ_FIRST(&s->relays))) {
if (relay->used == max_reuse) {
TAILQ_REMOVE(&s->relays, relay, entry);
free(relay);
continue;
}
relay->used++;
log_debug("mta: connect %s", ss_to_text(&relay->sa));
sa = (struct sockaddr *)&relay->sa;
if (s->port)
sa_set_port(sa, s->port);
else if ((s->flags & MTA_FORCE_ANYSSL) && relay->used == 1)
sa_set_port(sa, 465);
else if (s->flags & MTA_FORCE_SMTPS)
sa_set_port(sa, 465);
else
sa_set_port(sa, 25);
s->fd = socket(sa->sa_family, SOCK_STREAM, 0);
if (s->fd == -1)
fatal("mta cannot create socket");
session_socket_blockmode(s->fd, BM_NONBLOCK);
session_socket_no_linger(s->fd);
if (connect(s->fd, sa, sa->sa_len) == -1) {
if (errno != EINPROGRESS) {
mta_status(s, "110 connect error: %s",
strerror(errno));
close(s->fd);
continue;
}
}
event_once(s->fd, EV_WRITE, mta_connect_done, s, NULL);
break;
}
/* tried them all? */
if (relay == NULL)
mta_enter_state(s, MTA_DONE, NULL);
break;
case MTA_PTR:
/*
* Lookup PTR record of the connected host.
*/
relay = TAILQ_FIRST(&s->relays);
dns_query_ptr(&relay->sa, s->id);
break;
case MTA_PROTOCOL:
/*
* Start protocol engine.
*/
log_debug("mta: entering smtp phase");
pcb = client_init(s->fd, s->datafp, env->sc_hostname, 1);
/* lookup SSL certificate */
if (s->cert) {
struct ssl key, *res;
strlcpy(key.ssl_name, s->cert, sizeof(key.ssl_name));
res = SPLAY_FIND(ssltree, env->sc_ssl, &key);
if (res == NULL) {
client_close(pcb);
s->pcb = NULL;
mta_status(s, "190 certificate not found");
mta_enter_state(s, MTA_DONE, NULL);
break;
}
client_certificate(pcb,
res->ssl_cert, res->ssl_cert_len,
res->ssl_key, res->ssl_key_len);
}
/* choose SMTPS vs. STARTTLS */
relay = TAILQ_FIRST(&s->relays);
if ((s->flags & MTA_FORCE_ANYSSL) && relay->used == 1)
client_ssl_smtps(pcb);
else if (s->flags & MTA_FORCE_SMTPS)
client_ssl_smtps(pcb);
else if (s->flags & MTA_ALLOW_PLAIN)
client_ssl_optional(pcb);
/* enable AUTH */
if (s->secret)
client_auth(pcb, s->secret);
/* set envelope sender */
e = TAILQ_FIRST(&s->recipients);
if (e->delivery.from.user[0] && e->delivery.from.domain[0])
client_sender(pcb, "%s@%s", e->delivery.from.user,
e->delivery.from.domain);
else
client_sender(pcb, "");
/* set envelope recipients */
TAILQ_FOREACH(e, &s->recipients, entry)
client_rcpt(pcb, e, "%s@%s", e->delivery.rcpt.user,
e->delivery.rcpt.domain);
s->pcb = pcb;
event_set(&s->ev, s->fd, EV_READ|EV_WRITE, mta_event, s);
event_add(&s->ev, &pcb->timeout);
break;
case MTA_DONE:
/*
* Kill mta session.
*/
/* update queue status */
while ((e = TAILQ_FIRST(&s->recipients)))
mta_message_done(s, e);
imsg_compose_event(env->sc_ievs[PROC_QUEUE],
IMSG_BATCH_DONE, 0, 0, -1, NULL, 0);
/* deallocate resources */
SPLAY_REMOVE(mtatree, &env->mta_sessions, s);
while ((relay = TAILQ_FIRST(&s->relays))) {
TAILQ_REMOVE(&s->relays, relay, entry);
free(relay);
}
if (s->datafp)
fclose(s->datafp);
free(s->secret);
free(s->host);
free(s->cert);
free(s);
break;
default:
fatal("mta_enter_state: unknown state");
}
}
static void
mta_pickup(struct mta_session *s, void *p)
{
int error;
switch (s->state) {
case MTA_INIT:
if (s->flags & MTA_USE_AUTH)
mta_enter_state(s, MTA_SECRET, NULL);
else
mta_enter_state(s, MTA_MX, NULL);
break;
case MTA_SECRET:
/* LKA responded to AUTH lookup. */
s->secret = strdup(p);
if (s->secret == NULL)
fatal(NULL);
else if (s->secret[0] == '\0') {
mta_status(s, "190 secrets lookup failed");
mta_enter_state(s, MTA_DONE, NULL);
} else
mta_enter_state(s, MTA_MX, NULL);
break;
case MTA_MX:
/* LKA responded to DNS lookup. */
error = *(int *)p;
if (error == EAI_AGAIN) {
mta_status(s, "100 MX lookup failed temporarily");
mta_enter_state(s, MTA_DONE, NULL);
} else if (error == EAI_NONAME) {
mta_status(s, "600 Domain does not exist");
mta_enter_state(s, MTA_DONE, NULL);
} else if (error) {
mta_status(s, "600 Unable to resolve DNS for domain");
mta_enter_state(s, MTA_DONE, NULL);
} else
mta_enter_state(s, MTA_DATA, NULL);
break;
case MTA_DATA:
/* QUEUE replied to body fd request. */
if (*(int *)p == -1)
fatalx("mta cannot obtain msgfd");
s->datafp = fdopen(*(int *)p, "r");
if (s->datafp == NULL)
fatal("fdopen");
mta_enter_state(s, MTA_CONNECT, NULL);
break;
case MTA_CONNECT:
/* Remote accepted/rejected connection. */
error = session_socket_error(s->fd);
if (error) {
mta_status(s, "110 connect error: %s", strerror(error));
close(s->fd);
mta_enter_state(s, MTA_CONNECT, NULL);
} else
mta_enter_state(s, MTA_PTR, NULL);
break;
case MTA_PTR:
mta_enter_state(s, MTA_PROTOCOL, NULL);
break;
default:
fatalx("mta_pickup: unexpected state");
}
}
static void
mta_event(int fd, short event, void *p)
{
struct mta_session *s = p;
struct smtp_client *pcb = s->pcb;
if (event & EV_TIMEOUT) {
mta_status(s, "150 timeout");
goto out;
}
switch (client_talk(pcb, event & EV_WRITE)) {
case CLIENT_WANT_WRITE:
goto rw;
case CLIENT_STOP_WRITE:
goto ro;
case CLIENT_RCPT_FAIL:
mta_message_status(pcb->rcptfail, pcb->reply);
mta_message_log(s, pcb->rcptfail);
mta_message_done(s, pcb->rcptfail);
goto rw;
case CLIENT_DONE:
mta_status(s, "%s", pcb->status);
break;
default:
fatalx("mta_event: unexpected code");
}
out:
client_close(pcb);
s->pcb = NULL;
if (TAILQ_EMPTY(&s->recipients))
mta_enter_state(s, MTA_DONE, NULL);
else
mta_enter_state(s, MTA_CONNECT, NULL);
return;
rw:
event_set(&s->ev, fd, EV_READ|EV_WRITE, mta_event, s);
event_add(&s->ev, &pcb->timeout);
return;
ro:
event_set(&s->ev, fd, EV_READ, mta_event, s);
event_add(&s->ev, &pcb->timeout);
}
static void
mta_status(struct mta_session *s, const char *fmt, ...)
{
char *status;
struct envelope *e, *next;
va_list ap;
va_start(ap, fmt);
if (vasprintf(&status, fmt, ap) == -1)
fatal("vasprintf");
va_end(ap);
for (e = TAILQ_FIRST(&s->recipients); e; e = next) {
next = TAILQ_NEXT(e, entry);
/* save new status */
mta_message_status(e, status);
/* remove queue entry */
if (*status == '2' || *status == '5' || *status == '6') {
mta_message_log(s, e);
mta_message_done(s, e);
}
}
free(status);
}
static void
mta_message_status(struct envelope *e, char *status)
{
/*
* Previous delivery attempts might have assigned an errorline of
* higher status (eg. 5yz is of higher status than 4yz), so check
* this before deciding to overwrite existing status with a new one.
*/
if (*status != '2' && strncmp(e->delivery.errorline, status, 3) > 0)
return;
/* change status */
log_debug("mta: new status for %s@%s: %s", e->delivery.rcpt.user,
e->delivery.rcpt.domain, status);
strlcpy(e->delivery.errorline, status, sizeof(e->delivery.errorline));
}
static void
mta_message_log(struct mta_session *s, struct envelope *e)
{
struct mta_relay *relay = TAILQ_FIRST(&s->relays);
char *status = e->delivery.errorline;
log_info("%016llx: to=<%s@%s>, delay=%d, relay=%s [%s], stat=%s (%s)",
e->delivery.id, e->delivery.rcpt.user,
e->delivery.rcpt.domain, time(NULL) - e->delivery.creation,
relay ? relay->fqdn : "(none)",
relay ? ss_to_text(&relay->sa) : "",
*status == '2' ? "Sent" :
*status == '5' ? "RemoteError" :
*status == '4' ? "RemoteError" : "LocalError",
status + 4);
}
static void
mta_message_done(struct mta_session *s, struct envelope *e)
{
switch (e->delivery.errorline[0]) {
case '6':
case '5':
e->delivery.status = DS_PERMFAILURE;
break;
case '2':
e->delivery.status = DS_ACCEPTED;
break;
default:
e->delivery.status = DS_TEMPFAILURE;
break;
}
imsg_compose_event(env->sc_ievs[PROC_QUEUE],
IMSG_QUEUE_MESSAGE_UPDATE, 0, 0, -1, e, sizeof(*e));
TAILQ_REMOVE(&s->recipients, e, entry);
free(e);
}
static void
mta_connect_done(int fd, short event, void *p)
{
mta_pickup(p, NULL);
}
static void
mta_request_datafd(struct mta_session *s)
{
struct ramqueue_batch rq_batch;
struct envelope *e;
e = TAILQ_FIRST(&s->recipients);
rq_batch.b_id = s->id;
rq_batch.msgid = evpid_to_msgid(e->delivery.id);
imsg_compose_event(env->sc_ievs[PROC_QUEUE], IMSG_QUEUE_MESSAGE_FD,
0, 0, -1, &rq_batch, sizeof(rq_batch));
}
int
mta_session_cmp(struct mta_session *a, struct mta_session *b)
{
return (a->id < b->id ? -1 : a->id > b->id);
}
SPLAY_GENERATE(mtatree, mta_session, entry, mta_session_cmp);
|