]> git.ipfire.org Git - people/ms/dma.git/blob - dma.c
adopt 03-debian-locations.patch; do not set a default bogus smarthost
[people/ms/dma.git] / dma.c
1 /*
2 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
3 *
4 * This code is derived from software contributed to The DragonFly Project
5 * by Simon 'corecode' Schubert <corecode@fs.ei.tum.de>.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35 #include "dfcompat.h"
36
37 #include <sys/param.h>
38 #include <sys/types.h>
39 #include <sys/queue.h>
40 #include <sys/stat.h>
41 #include <sys/time.h>
42 #include <sys/wait.h>
43
44 #include <dirent.h>
45 #include <err.h>
46 #include <errno.h>
47 #include <fcntl.h>
48 #include <inttypes.h>
49 #include <paths.h>
50 #include <pwd.h>
51 #include <signal.h>
52 #include <stdarg.h>
53 #include <stdio.h>
54 #include <stdlib.h>
55 #include <string.h>
56 #include <syslog.h>
57 #include <unistd.h>
58
59 #include "dma.h"
60
61
62 static void deliver(struct qitem *);
63
64 struct aliases aliases = LIST_HEAD_INITIALIZER(aliases);
65 struct strlist tmpfs = SLIST_HEAD_INITIALIZER(tmpfs);
66 struct authusers authusers = LIST_HEAD_INITIALIZER(authusers);
67 const char *username;
68 const char *logident_base;
69
70 static int daemonize = 1;
71
72 struct config config = {
73 .smarthost = NULL,
74 .port = 25,
75 .aliases = "/etc/aliases",
76 .spooldir = "/var/spool/dma",
77 .authpath = NULL,
78 .certfile = NULL,
79 .features = 0,
80 .mailname = NULL,
81 .mailnamefile = NULL,
82 };
83
84
85 static void
86 sighup_handler(int signo)
87 {
88 (void)signo; /* so that gcc doesn't complain */
89 }
90
91 static char *
92 set_from(struct queue *queue, const char *osender)
93 {
94 char *sender;
95
96 if (osender) {
97 sender = strdup(osender);
98 if (sender == NULL)
99 return (NULL);
100 } else if (getenv("EMAIL") != NULL) {
101 sender = strdup(getenv("EMAIL"));
102 if (sender == NULL)
103 return (NULL);
104 } else {
105 if (asprintf(&sender, "%s@%s", username, hostname()) <= 0)
106 return (NULL);
107 }
108
109 if (strchr(sender, '\n') != NULL) {
110 errno = EINVAL;
111 return (NULL);
112 }
113
114 queue->sender = sender;
115 return (sender);
116 }
117
118 static int
119 read_aliases(void)
120 {
121 yyin = fopen(config.aliases, "r");
122 if (yyin == NULL) {
123 /*
124 * Non-existing aliases file is not a fatal error
125 */
126 if (errno == ENOENT)
127 return (0);
128 /* Other problems are. */
129 return (-1);
130 }
131 if (yyparse())
132 return (-1); /* fatal error, probably malloc() */
133 fclose(yyin);
134 return (0);
135 }
136
137 int
138 add_recp(struct queue *queue, const char *str, int expand)
139 {
140 struct qitem *it, *tit;
141 struct stritem *sit;
142 struct alias *al;
143 struct passwd *pw;
144 char *host;
145 int aliased = 0;
146
147 it = calloc(1, sizeof(*it));
148 if (it == NULL)
149 return (-1);
150 it->addr = strdup(str);
151 if (it->addr == NULL)
152 return (-1);
153
154 it->sender = queue->sender;
155 host = strrchr(it->addr, '@');
156 if (host != NULL &&
157 (strcmp(host + 1, hostname()) == 0 ||
158 strcmp(host + 1, "localhost") == 0)) {
159 *host = 0;
160 }
161 LIST_FOREACH(tit, &queue->queue, next) {
162 /* weed out duplicate dests */
163 if (strcmp(tit->addr, it->addr) == 0) {
164 free(it->addr);
165 free(it);
166 return (0);
167 }
168 }
169 LIST_INSERT_HEAD(&queue->queue, it, next);
170 if (strrchr(it->addr, '@') == NULL) {
171 it->remote = 0;
172 if (expand) {
173 LIST_FOREACH(al, &aliases, next) {
174 if (strcmp(al->alias, it->addr) != 0)
175 continue;
176 SLIST_FOREACH(sit, &al->dests, next) {
177 if (add_recp(queue, sit->str, 1) != 0)
178 return (-1);
179 }
180 aliased = 1;
181 }
182 if (aliased) {
183 LIST_REMOVE(it, next);
184 } else {
185 /* Local destination, check */
186 pw = getpwnam(it->addr);
187 if (pw == NULL)
188 goto out;
189 /* XXX read .forward */
190 endpwent();
191 }
192 }
193 } else {
194 it->remote = 1;
195 }
196
197 return (0);
198
199 out:
200 free(it->addr);
201 free(it);
202 return (-1);
203 }
204
205 static struct qitem *
206 go_background(struct queue *queue)
207 {
208 struct sigaction sa;
209 struct qitem *it;
210 pid_t pid;
211
212 if (daemonize && daemon(0, 0) != 0) {
213 syslog(LOG_ERR, "can not daemonize: %m");
214 exit(1);
215 }
216 daemonize = 0;
217
218 bzero(&sa, sizeof(sa));
219 #ifdef SA_NOCLDWAIT
220 sa.sa_flags = SA_NOCLDWAIT;
221 #endif
222 sa.sa_handler = SIG_IGN;
223 sigaction(SIGCHLD, &sa, NULL);
224
225 LIST_FOREACH(it, &queue->queue, next) {
226 /* No need to fork for the last dest */
227 if (LIST_NEXT(it, next) == NULL)
228 goto retit;
229
230 pid = fork();
231 switch (pid) {
232 case -1:
233 syslog(LOG_ERR, "can not fork: %m");
234 exit(1);
235 break;
236
237 case 0:
238 /*
239 * Child:
240 *
241 * return and deliver mail
242 */
243 retit:
244 /*
245 * If necessary, acquire the queue and * mail files.
246 * If this fails, we probably were raced by another
247 * process.
248 */
249 setlogident("%s", it->queueid);
250 if (acquirespool(it) < 0)
251 exit(1);
252 dropspool(queue, it);
253 return (it);
254
255 default:
256 /*
257 * Parent:
258 *
259 * fork next child
260 */
261 break;
262 }
263 }
264
265 syslog(LOG_CRIT, "reached dead code");
266 exit(1);
267 }
268
269 static void
270 deliver(struct qitem *it)
271 {
272 int error;
273 unsigned int backoff = MIN_RETRY;
274 const char *errmsg = "unknown bounce reason";
275 struct timeval now;
276 struct stat st;
277
278 retry:
279 syslog(LOG_INFO, "trying delivery");
280
281 if (it->remote)
282 error = deliver_remote(it, &errmsg);
283 else
284 error = deliver_local(it, &errmsg);
285
286 switch (error) {
287 case 0:
288 delqueue(it);
289 syslog(LOG_INFO, "delivery successful");
290 exit(0);
291
292 case 1:
293 if (stat(it->queuefn, &st) != 0) {
294 syslog(LOG_ERR, "lost queue file `%s'", it->queuefn);
295 exit(1);
296 }
297 if (gettimeofday(&now, NULL) == 0 &&
298 (now.tv_sec - st.st_mtim.tv_sec > MAX_TIMEOUT)) {
299 asprintf(__DECONST(void *, &errmsg),
300 "Could not deliver for the last %d seconds. Giving up.",
301 MAX_TIMEOUT);
302 goto bounce;
303 }
304 if (sleep(backoff) == 0) {
305 /* pick the next backoff between [1.5, 2.5) times backoff */
306 backoff = backoff + backoff / 2 + random() % backoff;
307 if (backoff > MAX_RETRY)
308 backoff = MAX_RETRY;
309 }
310 goto retry;
311
312 case -1:
313 default:
314 break;
315 }
316
317 bounce:
318 bounce(it, errmsg);
319 /* NOTREACHED */
320 }
321
322 void
323 run_queue(struct queue *queue)
324 {
325 struct qitem *it;
326
327 if (LIST_EMPTY(&queue->queue))
328 return;
329
330 it = go_background(queue);
331 deliver(it);
332 /* NOTREACHED */
333 }
334
335 static void
336 show_queue(struct queue *queue)
337 {
338 struct qitem *it;
339 int locked = 0; /* XXX */
340
341 if (LIST_EMPTY(&queue->queue)) {
342 printf("Mail queue is empty\n");
343 return;
344 }
345
346 LIST_FOREACH(it, &queue->queue, next) {
347 printf("ID\t: %s%s\n"
348 "From\t: %s\n"
349 "To\t: %s\n",
350 it->queueid,
351 locked ? "*" : "",
352 it->sender, it->addr);
353
354 if (LIST_NEXT(it, next) != NULL)
355 printf("--\n");
356 }
357 }
358
359 /*
360 * TODO:
361 *
362 * - alias processing
363 * - use group permissions
364 * - proper sysexit codes
365 */
366
367 int
368 main(int argc, char **argv)
369 {
370 struct sigaction act;
371 char *sender = NULL;
372 struct queue queue;
373 int i, ch;
374 int nodot = 0, doqueue = 0, showq = 0, queue_only = 0;
375 int recp_from_header = 0;
376
377 atexit(deltmp);
378 init_random();
379
380 bzero(&queue, sizeof(queue));
381 LIST_INIT(&queue.queue);
382
383 if (strcmp(argv[0], "mailq") == 0) {
384 argv++; argc--;
385 showq = 1;
386 if (argc != 0)
387 errx(1, "invalid arguments");
388 goto skipopts;
389 }
390
391 opterr = 0;
392 while ((ch = getopt(argc, argv, ":A:b:B:C:d:Df:F:h:iL:N:no:O:q:r:R:tUV:vX:")) != -1) {
393 switch (ch) {
394 case 'A':
395 /* -AX is being ignored, except for -A{c,m} */
396 if (optarg[0] == 'c' || optarg[0] == 'm') {
397 break;
398 }
399 /* else FALLTRHOUGH */
400 case 'b':
401 /* -bX is being ignored, except for -bp */
402 if (optarg[0] == 'p') {
403 showq = 1;
404 break;
405 } else if (optarg[0] == 'q') {
406 queue_only = 1;
407 break;
408 }
409 /* else FALLTRHOUGH */
410 case 'D':
411 daemonize = 0;
412 break;
413 case 'L':
414 logident_base = optarg;
415 break;
416 case 'f':
417 case 'r':
418 sender = optarg;
419 break;
420
421 case 't':
422 recp_from_header = 1;
423 break;
424
425 case 'o':
426 /* -oX is being ignored, except for -oi */
427 if (optarg[0] != 'i')
428 break;
429 /* else FALLTRHOUGH */
430 case 'O':
431 break;
432 case 'i':
433 nodot = 1;
434 break;
435
436 case 'q':
437 doqueue = 1;
438 break;
439
440 /* Ignored options */
441 case 'B':
442 case 'C':
443 case 'd':
444 case 'F':
445 case 'h':
446 case 'N':
447 case 'n':
448 case 'R':
449 case 'U':
450 case 'V':
451 case 'v':
452 case 'X':
453 break;
454
455 case ':':
456 if (optopt == 'q') {
457 doqueue = 1;
458 break;
459 }
460 /* FALLTHROUGH */
461
462 default:
463 fprintf(stderr, "invalid argument: `-%c'\n", optopt);
464 exit(1);
465 }
466 }
467 argc -= optind;
468 argv += optind;
469 opterr = 1;
470
471 if (argc != 0 && (showq || doqueue))
472 errx(1, "sending mail and queue operations are mutually exclusive");
473
474 if (showq + doqueue > 1)
475 errx(1, "conflicting queue operations");
476
477 skipopts:
478 if (logident_base == NULL)
479 logident_base = "dma";
480 setlogident(NULL);
481 set_username();
482
483 /* XXX fork root here */
484
485 act.sa_handler = sighup_handler;
486 act.sa_flags = 0;
487 sigemptyset(&act.sa_mask);
488 if (sigaction(SIGHUP, &act, NULL) != 0)
489 syslog(LOG_WARNING, "can not set signal handler: %m");
490
491 parse_conf(CONF_PATH);
492
493 if (config.authpath != NULL)
494 parse_authfile(config.authpath);
495
496 if (showq) {
497 if (load_queue(&queue) < 0)
498 errlog(1, "can not load queue");
499 show_queue(&queue);
500 return (0);
501 }
502
503 if (doqueue) {
504 if (load_queue(&queue) < 0)
505 errlog(1, "can not load queue");
506 run_queue(&queue);
507 return (0);
508 }
509
510 if (read_aliases() != 0)
511 errlog(1, "can not read aliases file `%s'", config.aliases);
512
513 if ((sender = set_from(&queue, sender)) == NULL)
514 errlog(1, NULL);
515
516 if (newspoolf(&queue) != 0)
517 errlog(1, "can not create temp file");
518
519 setlogident("%s", queue.id);
520
521 for (i = 0; i < argc; i++) {
522 if (add_recp(&queue, argv[i], 1) != 0)
523 errlogx(1, "invalid recipient `%s'", argv[i]);
524 }
525
526 if (LIST_EMPTY(&queue.queue) && !recp_from_header)
527 errlogx(1, "no recipients");
528
529 if (readmail(&queue, nodot, recp_from_header) != 0)
530 errlog(1, "can not read mail");
531
532 if (LIST_EMPTY(&queue.queue))
533 errlogx(1, "no recipients");
534
535 if (linkspool(&queue) != 0)
536 errlog(1, "can not create spools");
537
538 /* From here on the mail is safe. */
539
540 if (config.features & DEFER || queue_only)
541 return (0);
542
543 run_queue(&queue);
544
545 /* NOTREACHED */
546 return (0);
547 }