eddb8d85c6a9bd667d89e2e271423a179d5dd331
[exim.git] / src / src / queue.c
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2015 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Functions that operate on the input queue. */
9
10
11 #include "exim.h"
12
13
14
15 /* Routines with knowlege of spool layout */
16
17 #ifndef COMPILE_UTILITY
18 static void
19 spool_pname_buf(uschar * buf, int len)
20 {
21 snprintf(CS buf, len, "%s/%s/input", spool_directory, queue_name);
22 }
23
24 uschar *
25 spool_dname(const uschar * purpose, uschar * subdir)
26 {
27 return string_sprintf("%s/%s/%s/%s",
28 spool_directory, queue_name, purpose, subdir);
29 }
30 #endif
31
32 uschar *
33 spool_sname(const uschar * purpose, uschar * subdir)
34 {
35 return string_sprintf("%s%s%s%s%s",
36 queue_name, *queue_name ? "/" : "",
37 purpose,
38 *subdir ? "/" : "", subdir);
39 }
40
41 uschar *
42 spool_fname(const uschar * purpose, uschar * subdir, uschar * fname, uschar * suffix)
43 {
44 return string_sprintf("%s/%s/%s/%s/%s%s",
45 spool_directory, queue_name, purpose, subdir, fname, suffix);
46 }
47
48
49
50
51 #ifndef COMPILE_UTILITY
52
53 /* The number of nodes to use for the bottom-up merge sort when a list of queue
54 items is to be ordered. The code for this sort was contributed as a patch by
55 Michael Haardt. */
56
57 #define LOG2_MAXNODES 32
58
59
60
61 /*************************************************
62 * Helper sort function for queue_get_spool_list *
63 *************************************************/
64
65 /* This function is used when sorting the queue list in the function
66 queue_get_spool_list() below.
67
68 Arguments:
69 a points to an ordered list of queue_filename items
70 b points to another ordered list
71
72 Returns: a pointer to a merged ordered list
73 */
74
75 static queue_filename *
76 merge_queue_lists(queue_filename *a, queue_filename *b)
77 {
78 queue_filename *first = NULL;
79 queue_filename **append = &first;
80
81 while (a && b)
82 if (Ustrcmp(a->text, b->text) < 0)
83 {
84 *append = a;
85 append= &a->next;
86 a = a->next;
87 }
88 else
89 {
90 *append = b;
91 append= &b->next;
92 b = b->next;
93 }
94
95 *append = a ? a : b;
96 return first;
97 }
98
99
100
101
102
103 /*************************************************
104 * Get list of spool files *
105 *************************************************/
106
107 /* Scan the spool directory and return a list of the relevant file names
108 therein. Single-character sub-directories are handled as follows:
109
110 If the first argument is > 0, a sub-directory is scanned; the letter is
111 taken from the nth entry in subdirs.
112
113 If the first argument is 0, sub-directories are not scanned. However, a
114 list of them is returned.
115
116 If the first argument is < 0, sub-directories are scanned for messages,
117 and a single, unified list is created. The returned data blocks contain the
118 identifying character of the subdirectory, if any. The subdirs vector is
119 still required as an argument.
120
121 If the randomize argument is TRUE, messages are returned in "randomized" order.
122 Actually, the order is anything but random, but the algorithm is cheap, and the
123 point is simply to ensure that the same order doesn't occur every time, in case
124 a particular message is causing a remote MTA to barf - we would like to try
125 other messages to that MTA first.
126
127 If the randomize argument is FALSE, sort the list according to the file name.
128 This should give the order in which the messages arrived. It is normally used
129 only for presentation to humans, in which case the (possibly expensive) sort
130 that it does is not part of the normal operational code. However, if
131 queue_run_in_order is set, sorting has to take place for queue runs as well.
132 When randomize is FALSE, the first argument is normally -1, so all messages are
133 included.
134
135 Arguments:
136 subdiroffset sub-directory character offset, or 0 or -1 (see above)
137 subdirs vector to store list of subdirchars
138 subcount pointer to int in which to store count of subdirs
139 randomize TRUE if the order of the list is to be unpredictable
140
141 Returns: pointer to a chain of queue name items
142 */
143
144 static queue_filename *
145 queue_get_spool_list(int subdiroffset, uschar *subdirs, int *subcount,
146 BOOL randomize)
147 {
148 int i;
149 int flags = 0;
150 int resetflags = -1;
151 int subptr;
152 queue_filename *yield = NULL;
153 queue_filename *last = NULL;
154 struct dirent *ent;
155 DIR *dd;
156 uschar buffer[256];
157 queue_filename *root[LOG2_MAXNODES];
158
159 /* When randomizing, the file names are added to the start or end of the list
160 according to the bits of the flags variable. Get a collection of bits from the
161 current time. Use the bottom 16 and just keep re-using them if necessary. When
162 not randomizing, initialize the sublists for the bottom-up merge sort. */
163
164 if (randomize)
165 resetflags = time(NULL) & 0xFFFF;
166 else
167 for (i = 0; i < LOG2_MAXNODES; i++)
168 root[i] = NULL;
169
170 /* If processing the full queue, or just the top-level, start at the base
171 directory, and initialize the first subdirectory name (as none). Otherwise,
172 start at the sub-directory offset. */
173
174 if (subdiroffset <= 0)
175 {
176 i = 0;
177 subdirs[0] = 0;
178 *subcount = 0;
179 }
180 else
181 i = subdiroffset;
182
183 /* Set up prototype for the directory name. */
184
185 spool_pname_buf(buffer, sizeof(buffer));
186 buffer[sizeof(buffer) - 3] = 0;
187 subptr = Ustrlen(buffer);
188 buffer[subptr+2] = 0; /* terminator for lengthened name */
189
190 /* This loop runs at least once, for the main or given directory, and then as
191 many times as necessary to scan any subdirectories encountered in the main
192 directory, if they are to be scanned at this time. */
193
194 for (; i <= *subcount; i++)
195 {
196 int count = 0;
197 int subdirchar = subdirs[i]; /* 0 for main directory */
198
199 if (subdirchar != 0)
200 {
201 buffer[subptr] = '/';
202 buffer[subptr+1] = subdirchar;
203 }
204
205 DEBUG(D_queue_run) debug_printf("looking in %s\n", buffer);
206 if (!(dd = opendir(CS buffer)))
207 continue;
208
209 /* Now scan the directory. */
210
211 while ((ent = readdir(dd)))
212 {
213 uschar *name = US ent->d_name;
214 int len = Ustrlen(name);
215
216 /* Count entries */
217
218 count++;
219
220 /* If we find a single alphameric sub-directory in the base directory,
221 add it to the list for subsequent scans. */
222
223 if (i == 0 && len == 1 && isalnum(*name))
224 {
225 *subcount = *subcount + 1;
226 subdirs[*subcount] = *name;
227 continue;
228 }
229
230 /* Otherwise, if it is a header spool file, add it to the list */
231
232 if (len == SPOOL_NAME_LENGTH &&
233 Ustrcmp(name + SPOOL_NAME_LENGTH - 2, "-H") == 0)
234 {
235 queue_filename *next =
236 store_get(sizeof(queue_filename) + Ustrlen(name));
237 Ustrcpy(next->text, name);
238 next->dir_uschar = subdirchar;
239
240 /* Handle the creation of a randomized list. The first item becomes both
241 the top and bottom of the list. Subsequent items are inserted either at
242 the top or the bottom, randomly. This is, I argue, faster than doing a
243 sort by allocating a random number to each item, and it also saves having
244 to store the number with each item. */
245
246 if (randomize)
247 if (!yield)
248 {
249 next->next = NULL;
250 yield = last = next;
251 }
252 else
253 {
254 if (flags == 0)
255 flags = resetflags;
256 if ((flags & 1) == 0)
257 {
258 next->next = yield;
259 yield = next;
260 }
261 else
262 {
263 next->next = NULL;
264 last->next = next;
265 last = next;
266 }
267 flags = flags >> 1;
268 }
269
270 /* Otherwise do a bottom-up merge sort based on the name. */
271
272 else
273 {
274 int j;
275 next->next = NULL;
276 for (j = 0; j < LOG2_MAXNODES; j++)
277 if (root[j])
278 {
279 next = merge_queue_lists(next, root[j]);
280 root[j] = (j == LOG2_MAXNODES - 1)? next : NULL;
281 }
282 else
283 {
284 root[j] = next;
285 break;
286 }
287 }
288 }
289 }
290
291 /* Finished with this directory */
292
293 closedir(dd);
294
295 /* If we have just scanned a sub-directory, and it was empty (count == 2
296 implies just "." and ".." entries), and Exim is no longer configured to
297 use sub-directories, attempt to get rid of it. At the same time, try to
298 get rid of any corresponding msglog subdirectory. These are just cosmetic
299 tidying actions, so just ignore failures. If we are scanning just a single
300 sub-directory, break the loop. */
301
302 if (i != 0)
303 {
304 if (!split_spool_directory && count <= 2)
305 {
306 uschar subdir[2];
307
308 rmdir(CS buffer);
309 subdir[0] = subdirchar; subdir[1] = 0;
310 rmdir(CS spool_dname(US"msglog", subdir));
311 }
312 if (subdiroffset > 0) break; /* Single sub-directory */
313 }
314
315 /* If we have just scanned the base directory, and subdiroffset is 0,
316 we do not want to continue scanning the sub-directories. */
317
318 else if (subdiroffset == 0)
319 break;
320 } /* Loop for multiple subdirectories */
321
322 /* When using a bottom-up merge sort, do the final merging of the sublists.
323 Then pass back the final list of file items. */
324
325 if (!randomize)
326 for (i = 0; i < LOG2_MAXNODES; ++i)
327 yield = merge_queue_lists(yield, root[i]);
328
329 return yield;
330 }
331
332
333
334
335 /*************************************************
336 * Perform a queue run *
337 *************************************************/
338
339 /* The arguments give the messages to start and stop at; NULL means start at
340 the beginning or stop at the end. If the given start message doesn't exist, we
341 start at the next lexically greater one, and likewise we stop at the after the
342 previous lexically lesser one if the given stop message doesn't exist. Because
343 a queue run can take some time, stat each file before forking, in case it has
344 been delivered in the meantime by some other means.
345
346 The global variables queue_run_force and queue_run_local may be set to cause
347 forced deliveries or local-only deliveries, respectively.
348
349 If deliver_selectstring[_sender] is not NULL, skip messages whose recipients do
350 not contain the string. As this option is typically used when a machine comes
351 back online, we want to ensure that at least one delivery attempt takes place,
352 so force the first one. The selecting string can optionally be a regex, or
353 refer to the sender instead of recipients.
354
355 If queue_2stage is set, the queue is scanned twice. The first time, queue_smtp
356 is set so that routing is done for all messages. Thus in the second run those
357 that are routed to the same host should go down the same SMTP connection.
358
359 Arguments:
360 start_id message id to start at, or NULL for all
361 stop_id message id to end at, or NULL for all
362 recurse TRUE if recursing for 2-stage run
363
364 Returns: nothing
365 */
366
367 void
368 queue_run(uschar *start_id, uschar *stop_id, BOOL recurse)
369 {
370 BOOL force_delivery = queue_run_force || deliver_selectstring != NULL ||
371 deliver_selectstring_sender != NULL;
372 const pcre *selectstring_regex = NULL;
373 const pcre *selectstring_regex_sender = NULL;
374 uschar *log_detail = NULL;
375 int subcount = 0;
376 int i;
377 uschar subdirs[64];
378
379 /* Cancel any specific queue domains. Turn off the flag that causes SMTP
380 deliveries not to happen, unless doing a 2-stage queue run, when the SMTP flag
381 gets set. Save the queue_runner's pid and the flag that indicates any
382 deliveries run directly from this process. Deliveries that are run by handing
383 on TCP/IP channels have queue_run_pid set, but not queue_running. */
384
385 queue_domains = NULL;
386 queue_smtp_domains = NULL;
387 queue_smtp = queue_2stage;
388
389 queue_run_pid = getpid();
390 queue_running = TRUE;
391
392 /* Log the true start of a queue run, and fancy options */
393
394 if (!recurse)
395 {
396 uschar extras[8];
397 uschar *p = extras;
398
399 if (queue_2stage) *p++ = 'q';
400 if (queue_run_first_delivery) *p++ = 'i';
401 if (queue_run_force) *p++ = 'f';
402 if (deliver_force_thaw) *p++ = 'f';
403 if (queue_run_local) *p++ = 'l';
404 *p = 0;
405
406 p = big_buffer;
407 sprintf(CS p, "pid=%d", (int)queue_run_pid);
408 while (*p != 0) p++;
409
410 if (extras[0] != 0)
411 {
412 sprintf(CS p, " -q%s", extras);
413 while (*p != 0) p++;
414 }
415
416 if (deliver_selectstring != NULL)
417 {
418 sprintf(CS p, " -R%s %s", deliver_selectstring_regex? "r" : "",
419 deliver_selectstring);
420 while (*p != 0) p++;
421 }
422
423 if (deliver_selectstring_sender != NULL)
424 {
425 sprintf(CS p, " -S%s %s", deliver_selectstring_sender_regex? "r" : "",
426 deliver_selectstring_sender);
427 while (*p != 0) p++;
428 }
429
430 log_detail = string_copy(big_buffer);
431 if (*queue_name)
432 log_write(L_queue_run, LOG_MAIN, "Start '%s' queue run: %s",
433 queue_name, log_detail);
434 else
435 log_write(L_queue_run, LOG_MAIN, "Start queue run: %s", log_detail);
436 }
437
438 /* If deliver_selectstring is a regex, compile it. */
439
440 if (deliver_selectstring != NULL && deliver_selectstring_regex)
441 selectstring_regex = regex_must_compile(deliver_selectstring, TRUE, FALSE);
442
443 if (deliver_selectstring_sender != NULL && deliver_selectstring_sender_regex)
444 selectstring_regex_sender =
445 regex_must_compile(deliver_selectstring_sender, TRUE, FALSE);
446
447 /* If the spool is split into subdirectories, we want to process it one
448 directory at a time, so as to spread out the directory scanning and the
449 delivering when there are lots of messages involved, except when
450 queue_run_in_order is set.
451
452 In the random order case, this loop runs once for the main directory (handling
453 any messages therein), and then repeats for any subdirectories that were found.
454 When the first argument of queue_get_spool_list() is 0, it scans the top
455 directory, fills in subdirs, and sets subcount. The order of the directories is
456 then randomized after the first time through, before they are scanned in
457 subsqeuent iterations.
458
459 When the first argument of queue_get_spool_list() is -1 (for queue_run_in_
460 order), it scans all directories and makes a single message list. */
461
462 for (i = (queue_run_in_order? -1 : 0);
463 i <= (queue_run_in_order? -1 : subcount);
464 i++)
465 {
466 queue_filename *f;
467 void *reset_point1 = store_get(0);
468
469 DEBUG(D_queue_run)
470 {
471 if (i == 0)
472 debug_printf("queue running main directory\n");
473 else if (i == -1)
474 debug_printf("queue running combined directories\n");
475 else
476 debug_printf("queue running subdirectory '%c'\n", subdirs[i]);
477 }
478
479 for (f = queue_get_spool_list(i, subdirs, &subcount, !queue_run_in_order);
480 f;
481 f = f->next)
482 {
483 pid_t pid;
484 int status;
485 int pfd[2];
486 struct stat statbuf;
487 uschar buffer[256];
488
489 /* Unless deliveries are forced, if deliver_queue_load_max is non-negative,
490 check that the load average is low enough to permit deliveries. */
491
492 if (!queue_run_force && deliver_queue_load_max >= 0)
493 if ((load_average = os_getloadavg()) > deliver_queue_load_max)
494 {
495 log_write(L_queue_run, LOG_MAIN, "Abandon queue run: %s (load %.2f, max %.2f)",
496 log_detail,
497 (double)load_average/1000.0,
498 (double)deliver_queue_load_max/1000.0);
499 i = subcount; /* Don't process other directories */
500 break;
501 }
502 else
503 DEBUG(D_load) debug_printf("load average = %.2f max = %.2f\n",
504 (double)load_average/1000.0,
505 (double)deliver_queue_load_max/1000.0);
506
507 /* Skip this message unless it's within the ID limits */
508
509 if (stop_id && Ustrncmp(f->text, stop_id, MESSAGE_ID_LENGTH) > 0)
510 continue;
511 if (start_id && Ustrncmp(f->text, start_id, MESSAGE_ID_LENGTH) < 0)
512 continue;
513
514 /* Check that the message still exists */
515
516 message_subdir[0] = f->dir_uschar;
517 if (Ustat(spool_fname(US"input", message_subdir, f->text, US""), &statbuf) < 0)
518 continue;
519
520 /* There are some tests that require the reading of the header file. Ensure
521 the store used is scavenged afterwards so that this process doesn't keep
522 growing its store. We have to read the header file again when actually
523 delivering, but it's cheaper than forking a delivery process for each
524 message when many are not going to be delivered. */
525
526 if (deliver_selectstring || deliver_selectstring_sender ||
527 queue_run_first_delivery)
528 {
529 BOOL wanted = TRUE;
530 BOOL orig_dont_deliver = dont_deliver;
531 void *reset_point2 = store_get(0);
532
533 /* Restore the original setting of dont_deliver after reading the header,
534 so that a setting for a particular message doesn't force it for any that
535 follow. If the message is chosen for delivery, the header is read again
536 in the deliver_message() function, in a subprocess. */
537
538 if (spool_read_header(f->text, FALSE, TRUE) != spool_read_OK) continue;
539 dont_deliver = orig_dont_deliver;
540
541 /* Now decide if we want to deliver this message. As we have read the
542 header file, we might as well do the freeze test now, and save forking
543 another process. */
544
545 if (deliver_freeze && !deliver_force_thaw)
546 {
547 log_write(L_skip_delivery, LOG_MAIN, "Message is frozen");
548 wanted = FALSE;
549 }
550
551 /* Check first_delivery in the case when there are no message logs. */
552
553 else if (queue_run_first_delivery && !deliver_firsttime)
554 {
555 DEBUG(D_queue_run) debug_printf("%s: not first delivery\n", f->text);
556 wanted = FALSE;
557 }
558
559 /* Check for a matching address if deliver_selectstring[_sender] is set.
560 If so, we do a fully delivery - don't want to omit other addresses since
561 their routing might trigger re-writing etc. */
562
563 /* Sender matching */
564
565 else if ( deliver_selectstring_sender
566 && !(deliver_selectstring_sender_regex
567 ? (pcre_exec(selectstring_regex_sender, NULL,
568 CS sender_address, Ustrlen(sender_address), 0, PCRE_EOPT,
569 NULL, 0) >= 0)
570 : (strstric(sender_address, deliver_selectstring_sender, FALSE)
571 != NULL)
572 ) )
573 {
574 DEBUG(D_queue_run) debug_printf("%s: sender address did not match %s\n",
575 f->text, deliver_selectstring_sender);
576 wanted = FALSE;
577 }
578
579 /* Recipient matching */
580
581 else if (deliver_selectstring)
582 {
583 int i;
584 for (i = 0; i < recipients_count; i++)
585 {
586 uschar *address = recipients_list[i].address;
587 if ( (deliver_selectstring_regex
588 ? (pcre_exec(selectstring_regex, NULL, CS address,
589 Ustrlen(address), 0, PCRE_EOPT, NULL, 0) >= 0)
590 : (strstric(address, deliver_selectstring, FALSE) != NULL)
591 )
592 && tree_search(tree_nonrecipients, address) == NULL
593 )
594 break;
595 }
596
597 if (i >= recipients_count)
598 {
599 DEBUG(D_queue_run)
600 debug_printf("%s: no recipient address matched %s\n",
601 f->text, deliver_selectstring);
602 wanted = FALSE;
603 }
604 }
605
606 /* Recover store used when reading the header */
607
608 store_reset(reset_point2);
609 if (!wanted) continue; /* With next message */
610 }
611
612 /* OK, got a message we want to deliver. Create a pipe which will
613 serve as a means of detecting when all the processes created by the
614 delivery process are finished. This is relevant when the delivery
615 process passes one or more SMTP channels on to its own children. The
616 pipe gets passed down; by reading on it here we detect when the last
617 descendent dies by the unblocking of the read. It's a pity that for
618 most of the time the pipe isn't used, but creating a pipe should be
619 pretty cheap. */
620
621 if (pipe(pfd) < 0)
622 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to create pipe in queue "
623 "runner process %d: %s", queue_run_pid, strerror(errno));
624 queue_run_pipe = pfd[pipe_write]; /* To ensure it gets passed on. */
625
626 /* Make sure it isn't stdin. This seems unlikely, but just to be on the
627 safe side... */
628
629 if (queue_run_pipe == 0)
630 {
631 queue_run_pipe = dup(queue_run_pipe);
632 (void)close(0);
633 }
634
635 /* Before forking to deliver the message, ensure any open and cached
636 lookup files or databases are closed. Otherwise, closing in the subprocess
637 can make the next subprocess have problems. There won't often be anything
638 open here, but it is possible (e.g. if spool_directory is an expanded
639 string). A single call before this loop would probably suffice, but just in
640 case expansions get inserted at some point, I've taken the heavy-handed
641 approach. When nothing is open, the call should be cheap. */
642
643 search_tidyup();
644
645 /* Now deliver the message; get the id by cutting the -H off the file
646 name. The return of the process is zero if a delivery was attempted. */
647
648 set_process_info("running queue: %s", f->text);
649 f->text[SPOOL_NAME_LENGTH-2] = 0;
650 if ((pid = fork()) == 0)
651 {
652 int rc;
653 if (running_in_test_harness) millisleep(100);
654 (void)close(pfd[pipe_read]);
655 rc = deliver_message(f->text, force_delivery, FALSE);
656 _exit(rc == DELIVER_NOT_ATTEMPTED);
657 }
658 if (pid < 0)
659 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "fork of delivery process from "
660 "queue runner %d failed\n", queue_run_pid);
661
662 /* Close the writing end of the synchronizing pipe in this process,
663 then wait for the first level process to terminate. */
664
665 (void)close(pfd[pipe_write]);
666 set_process_info("running queue: waiting for %s (%d)", f->text, pid);
667 while (wait(&status) != pid);
668
669 /* A zero return means a delivery was attempted; turn off the force flag
670 for any subsequent calls unless queue_force is set. */
671
672 if ((status & 0xffff) == 0) force_delivery = queue_run_force;
673
674 /* If the process crashed, tell somebody */
675
676 else if ((status & 0x00ff) != 0)
677 log_write(0, LOG_MAIN|LOG_PANIC,
678 "queue run: process %d crashed with signal %d while delivering %s",
679 (int)pid, status & 0x00ff, f->text);
680
681 /* Before continuing, wait till the pipe gets closed at the far end. This
682 tells us that any children created by the delivery to re-use any SMTP
683 channels have all finished. Since no process actually writes to the pipe,
684 the mere fact that read() unblocks is enough. */
685
686 set_process_info("running queue: waiting for children of %d", pid);
687 if (read(pfd[pipe_read], buffer, sizeof(buffer)) > 0)
688 log_write(0, LOG_MAIN|LOG_PANIC, "queue run: unexpected data on pipe");
689 (void)close(pfd[pipe_read]);
690 set_process_info("running queue");
691
692 /* If we are in the test harness, and this is not the first of a 2-stage
693 queue run, update fudged queue times. */
694
695 if (running_in_test_harness && !queue_2stage)
696 {
697 uschar *fqtnext = Ustrchr(fudged_queue_times, '/');
698 if (fqtnext != NULL) fudged_queue_times = fqtnext + 1;
699 }
700 } /* End loop for list of messages */
701
702 store_reset(reset_point1); /* Scavenge list of messages */
703
704 /* If this was the first time through for random order processing, and
705 sub-directories have been found, randomize their order if necessary. */
706
707 if (i == 0 && subcount > 1 && !queue_run_in_order)
708 {
709 int j;
710 for (j = 1; j <= subcount; j++)
711 {
712 int r = random_number(100);
713 if (r >= 50)
714 {
715 int k = (r % subcount) + 1;
716 int x = subdirs[j];
717 subdirs[j] = subdirs[k];
718 subdirs[k] = x;
719 }
720 }
721 }
722 } /* End loop for multiple directories */
723
724 /* If queue_2stage is true, we do it all again, with the 2stage flag
725 turned off. */
726
727 if (queue_2stage)
728 {
729 queue_2stage = FALSE;
730 queue_run(start_id, stop_id, TRUE);
731 }
732
733 /* At top level, log the end of the run. */
734
735 if (!recurse)
736 if (*queue_name)
737 log_write(L_queue_run, LOG_MAIN, "End '%s' queue run: %s",
738 queue_name, log_detail);
739 else
740 log_write(L_queue_run, LOG_MAIN, "End queue run: %s", log_detail);
741 }
742
743
744
745
746 /************************************************
747 * Count messages on the queue *
748 ************************************************/
749
750 /* Called as a result of -bpc
751
752 Arguments: none
753 Returns: nothing
754 */
755
756 void
757 queue_count(void)
758 {
759 int subcount;
760 int count = 0;
761 queue_filename *f = NULL;
762 uschar subdirs[64];
763 f = queue_get_spool_list(
764 -1, /* entire queue */
765 subdirs, /* for holding sub list */
766 &subcount, /* for subcount */
767 FALSE); /* not random */
768 for (; f != NULL; f = f->next) count++;
769 fprintf(stdout, "%d\n", count);
770 }
771
772
773
774 /************************************************
775 * List extra deliveries *
776 ************************************************/
777
778 /* This is called from queue_list below to print out all addresses that
779 have received a message but which were not primary addresses. That is, all
780 the addresses in the tree of non-recipients that are not primary addresses.
781 The tree has been scanned and the data field filled in for those that are
782 primary addresses.
783
784 Argument: points to the tree node
785 Returns: nothing
786 */
787
788 static void queue_list_extras(tree_node *p)
789 {
790 if (p->left != NULL) queue_list_extras(p->left);
791 if (!p->data.val) printf(" +D %s\n", p->name);
792 if (p->right != NULL) queue_list_extras(p->right);
793 }
794
795
796
797 /************************************************
798 * List messages on the queue *
799 ************************************************/
800
801 /* Or a given list of messages. In the "all" case, we get a list of file names
802 as quickly as possible, then scan each one for information to output. If any
803 disappear while we are processing, just leave them out, but give an error if an
804 explicit list was given. This function is a top-level function that is obeyed
805 as a result of the -bp argument. As there may be a lot of messages on the
806 queue, we must tidy up the store after reading the headers for each one.
807
808 Arguments:
809 option 0 => list top-level recipients, with "D" for those delivered
810 1 => list only undelivered top-level recipients
811 2 => as 0, plus any generated delivered recipients
812 If 8 is added to any of these values, the queue is listed in
813 random order.
814 list => first of any message ids to list
815 count count of message ids; 0 => all
816
817 Returns: nothing
818 */
819
820 void
821 queue_list(int option, uschar **list, int count)
822 {
823 int i;
824 int subcount;
825 int now = (int)time(NULL);
826 void *reset_point;
827 queue_filename *f = NULL;
828 uschar subdirs[64];
829
830 /* If given a list of messages, build a chain containing their ids. */
831
832 if (count > 0)
833 {
834 queue_filename *last = NULL;
835 for (i = 0; i < count; i++)
836 {
837 queue_filename *next =
838 store_get(sizeof(queue_filename) + Ustrlen(list[i]) + 2);
839 sprintf(CS next->text, "%s-H", list[i]);
840 next->dir_uschar = '*';
841 next->next = NULL;
842 if (i == 0) f = next; else last->next = next;
843 last = next;
844 }
845 }
846
847 /* Otherwise get a list of the entire queue, in order if necessary. */
848
849 else
850 f = queue_get_spool_list(
851 -1, /* entire queue */
852 subdirs, /* for holding sub list */
853 &subcount, /* for subcount */
854 option >= 8); /* randomize if required */
855
856 if (option >= 8) option -= 8;
857
858 /* Now scan the chain and print information, resetting store used
859 each time. */
860
861 reset_point = store_get(0);
862
863 for (; f != NULL; f = f->next)
864 {
865 int rc, save_errno;
866 int size = 0;
867 BOOL env_read;
868
869 store_reset(reset_point);
870 message_size = 0;
871 message_subdir[0] = f->dir_uschar;
872 rc = spool_read_header(f->text, FALSE, count <= 0);
873 if (rc == spool_read_notopen && errno == ENOENT && count <= 0) continue;
874 save_errno = errno;
875
876 env_read = (rc == spool_read_OK || rc == spool_read_hdrerror);
877
878 if (env_read)
879 {
880 int ptr;
881 FILE *jread;
882 struct stat statbuf;
883 uschar * fname = spool_fname(US"input", message_subdir, f->text, US"");
884
885 ptr = Ustrlen(fname)-1;
886 fname[ptr] = 'D';
887
888 /* Add the data size to the header size; don't count the file name
889 at the start of the data file, but add one for the notional blank line
890 that precedes the data. */
891
892 if (Ustat(fname, &statbuf) == 0)
893 size = message_size + statbuf.st_size - SPOOL_DATA_START_OFFSET + 1;
894 i = (now - received_time)/60; /* minutes on queue */
895 if (i > 90)
896 {
897 i = (i + 30)/60;
898 if (i > 72) printf("%2dd ", (i + 12)/24); else printf("%2dh ", i);
899 }
900 else printf("%2dm ", i);
901
902 /* Collect delivered addresses from any J file */
903
904 fname[ptr] = 'J';
905 jread = Ufopen(fname, "rb");
906 if (jread != NULL)
907 {
908 while (Ufgets(big_buffer, big_buffer_size, jread) != NULL)
909 {
910 int n = Ustrlen(big_buffer);
911 big_buffer[n-1] = 0;
912 tree_add_nonrecipient(big_buffer);
913 }
914 (void)fclose(jread);
915 }
916 }
917
918 fprintf(stdout, "%s ", string_format_size(size, big_buffer));
919 for (i = 0; i < 16; i++) fputc(f->text[i], stdout);
920
921 if (env_read && sender_address != NULL)
922 {
923 printf(" <%s>", sender_address);
924 if (sender_set_untrusted) printf(" (%s)", originator_login);
925 }
926
927 if (rc != spool_read_OK)
928 {
929 printf("\n ");
930 if (save_errno == ERRNO_SPOOLFORMAT)
931 {
932 struct stat statbuf;
933 uschar * fname = spool_fname(US"input", message_subdir, f->text, US"");
934
935 if (Ustat(fname, &statbuf) == 0)
936 printf("*** spool format error: size=" OFF_T_FMT " ***",
937 statbuf.st_size);
938 else printf("*** spool format error ***");
939 }
940 else printf("*** spool read error: %s ***", strerror(save_errno));
941 if (rc != spool_read_hdrerror)
942 {
943 printf("\n\n");
944 continue;
945 }
946 }
947
948 if (deliver_freeze) printf(" *** frozen ***");
949
950 printf("\n");
951
952 if (recipients_list != NULL)
953 {
954 for (i = 0; i < recipients_count; i++)
955 {
956 tree_node *delivered =
957 tree_search(tree_nonrecipients, recipients_list[i].address);
958 if (!delivered || option != 1)
959 printf(" %s %s\n", (delivered != NULL)? "D":" ",
960 recipients_list[i].address);
961 if (delivered != NULL) delivered->data.val = TRUE;
962 }
963 if (option == 2 && tree_nonrecipients != NULL)
964 queue_list_extras(tree_nonrecipients);
965 printf("\n");
966 }
967 }
968 }
969
970
971
972 /*************************************************
973 * Act on a specific message *
974 *************************************************/
975
976 /* Actions that require a list of addresses make use of argv/argc/
977 recipients_arg. Other actions do not. This function does its own
978 authority checking.
979
980 Arguments:
981 id id of the message to work on
982 action which action is required (MSG_xxx)
983 argv the original argv for Exim
984 argc the original argc for Exim
985 recipients_arg offset to the list of recipients in argv
986
987 Returns: FALSE if there was any problem
988 */
989
990 BOOL
991 queue_action(uschar *id, int action, uschar **argv, int argc, int recipients_arg)
992 {
993 int i, j;
994 BOOL yield = TRUE;
995 BOOL removed = FALSE;
996 struct passwd *pw;
997 uschar *doing = NULL;
998 uschar *username;
999 uschar *errmsg;
1000 uschar spoolname[32];
1001
1002 /* Set the global message_id variable, used when re-writing spool files. This
1003 also causes message ids to be added to log messages. */
1004
1005 Ustrcpy(message_id, id);
1006
1007 /* The "actions" that just list the files do not require any locking to be
1008 done. Only admin users may read the spool files. */
1009
1010 if (action >= MSG_SHOW_BODY)
1011 {
1012 int fd, i, rc;
1013 uschar *subdirectory, *suffix;
1014
1015 if (!admin_user)
1016 {
1017 printf("Permission denied\n");
1018 return FALSE;
1019 }
1020
1021 if (recipients_arg < argc)
1022 {
1023 printf("*** Only one message can be listed at once\n");
1024 return FALSE;
1025 }
1026
1027 if (action == MSG_SHOW_BODY)
1028 {
1029 subdirectory = US"input";
1030 suffix = US"-D";
1031 }
1032 else if (action == MSG_SHOW_HEADER)
1033 {
1034 subdirectory = US"input";
1035 suffix = US"-H";
1036 }
1037 else
1038 {
1039 subdirectory = US"msglog";
1040 suffix = US"";
1041 }
1042
1043 for (i = 0; i < 2; i++)
1044 {
1045 message_subdir[0] = split_spool_directory == (i == 0) ? id[5] : 0;
1046 if ((fd = Uopen(spool_fname(subdirectory, message_subdir, id, suffix),
1047 O_RDONLY, 0)) >= 0)
1048 break;
1049 if (i == 0)
1050 continue;
1051
1052 printf("Failed to open %s file for %s%s: %s\n", subdirectory, id, suffix,
1053 strerror(errno));
1054 if (action == MSG_SHOW_LOG && !message_logs)
1055 printf("(No message logs are being created because the message_logs "
1056 "option is false.)\n");
1057 return FALSE;
1058 }
1059
1060 while((rc = read(fd, big_buffer, big_buffer_size)) > 0)
1061 rc = write(fileno(stdout), big_buffer, rc);
1062
1063 (void)close(fd);
1064 return TRUE;
1065 }
1066
1067 /* For actions that actually act, open and lock the data file to ensure that no
1068 other process is working on this message. If the file does not exist, continue
1069 only if the action is remove and the user is an admin user, to allow for
1070 tidying up broken states. */
1071
1072 if ((deliver_datafile = spool_open_datafile(id)) < 0)
1073 if (errno == ENOENT)
1074 {
1075 yield = FALSE;
1076 printf("Spool data file for %s does not exist\n", id);
1077 if (action != MSG_REMOVE || !admin_user) return FALSE;
1078 printf("Continuing, to ensure all files removed\n");
1079 }
1080 else
1081 {
1082 if (errno == 0) printf("Message %s is locked\n", id);
1083 else printf("Couldn't open spool file for %s: %s\n", id,
1084 strerror(errno));
1085 return FALSE;
1086 }
1087
1088 /* Read the spool header file for the message. Again, continue after an
1089 error only in the case of deleting by an administrator. Setting the third
1090 argument false causes it to look both in the main spool directory and in
1091 the appropriate subdirectory, and set message_subdir according to where it
1092 found the message. */
1093
1094 sprintf(CS spoolname, "%s-H", id);
1095 if (spool_read_header(spoolname, TRUE, FALSE) != spool_read_OK)
1096 {
1097 yield = FALSE;
1098 if (errno != ERRNO_SPOOLFORMAT)
1099 printf("Spool read error for %s: %s\n", spoolname, strerror(errno));
1100 else
1101 printf("Spool format error for %s\n", spoolname);
1102 if (action != MSG_REMOVE || !admin_user)
1103 {
1104 (void)close(deliver_datafile);
1105 deliver_datafile = -1;
1106 return FALSE;
1107 }
1108 printf("Continuing to ensure all files removed\n");
1109 }
1110
1111 /* Check that the user running this process is entitled to operate on this
1112 message. Only admin users may freeze/thaw, add/cancel recipients, or otherwise
1113 mess about, but the original sender is permitted to remove a message. That's
1114 why we leave this check until after the headers are read. */
1115
1116 if (!admin_user && (action != MSG_REMOVE || real_uid != originator_uid))
1117 {
1118 printf("Permission denied\n");
1119 (void)close(deliver_datafile);
1120 deliver_datafile = -1;
1121 return FALSE;
1122 }
1123
1124 /* Set up the user name for logging. */
1125
1126 pw = getpwuid(real_uid);
1127 username = (pw != NULL)?
1128 US pw->pw_name : string_sprintf("uid %ld", (long int)real_uid);
1129
1130 /* Take the necessary action. */
1131
1132 if (action != MSG_SHOW_COPY) printf("Message %s ", id);
1133
1134 switch(action)
1135 {
1136 case MSG_SHOW_COPY:
1137 deliver_in_buffer = store_malloc(DELIVER_IN_BUFFER_SIZE);
1138 deliver_out_buffer = store_malloc(DELIVER_OUT_BUFFER_SIZE);
1139 transport_write_message(1, NULL, 0);
1140 break;
1141
1142
1143 case MSG_FREEZE:
1144 if (deliver_freeze)
1145 {
1146 yield = FALSE;
1147 printf("is already frozen\n");
1148 }
1149 else
1150 {
1151 deliver_freeze = TRUE;
1152 deliver_manual_thaw = FALSE;
1153 deliver_frozen_at = time(NULL);
1154 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1155 {
1156 printf("is now frozen\n");
1157 log_write(0, LOG_MAIN, "frozen by %s", username);
1158 }
1159 else
1160 {
1161 yield = FALSE;
1162 printf("could not be frozen: %s\n", errmsg);
1163 }
1164 }
1165 break;
1166
1167
1168 case MSG_THAW:
1169 if (!deliver_freeze)
1170 {
1171 yield = FALSE;
1172 printf("is not frozen\n");
1173 }
1174 else
1175 {
1176 deliver_freeze = FALSE;
1177 deliver_manual_thaw = TRUE;
1178 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1179 {
1180 printf("is no longer frozen\n");
1181 log_write(0, LOG_MAIN, "unfrozen by %s", username);
1182 }
1183 else
1184 {
1185 yield = FALSE;
1186 printf("could not be unfrozen: %s\n", errmsg);
1187 }
1188 }
1189 break;
1190
1191
1192 /* We must ensure all files are removed from both the input directory
1193 and the appropriate subdirectory, to clean up cases when there are odd
1194 files left lying around in odd places. In the normal case message_subdir
1195 will have been set correctly by spool_read_header, but as this is a rare
1196 operation, just run everything twice. */
1197
1198 case MSG_REMOVE:
1199 {
1200 uschar suffix[3];
1201
1202 suffix[0] = '-';
1203 suffix[2] = 0;
1204 message_subdir[0] = id[5];
1205
1206 for (j = 0; j < 2; message_subdir[0] = 0, j++)
1207 {
1208 uschar * fname = spool_fname(US"msglog", message_subdir, id, US"");
1209
1210 DEBUG(D_any) debug_printf(" removing %s", fname);
1211 if (Uunlink(fname) < 0)
1212 {
1213 if (errno != ENOENT)
1214 {
1215 yield = FALSE;
1216 printf("Error while removing %s: %s\n", fname, strerror(errno));
1217 }
1218 else DEBUG(D_any) debug_printf(" (no file)\n");
1219 }
1220 else
1221 {
1222 removed = TRUE;
1223 DEBUG(D_any) debug_printf(" (ok)\n");
1224 }
1225
1226 for (i = 0; i < 3; i++)
1227 {
1228 uschar * fname;
1229
1230 suffix[1] = (US"DHJ")[i];
1231 fname = spool_fname(US"input", message_subdir, id, suffix);
1232
1233 DEBUG(D_any) debug_printf(" removing %s", fname);
1234 if (Uunlink(fname) < 0)
1235 {
1236 if (errno != ENOENT)
1237 {
1238 yield = FALSE;
1239 printf("Error while removing %s: %s\n", fname, strerror(errno));
1240 }
1241 else DEBUG(D_any) debug_printf(" (no file)\n");
1242 }
1243 else
1244 {
1245 removed = TRUE;
1246 DEBUG(D_any) debug_printf(" (done)\n");
1247 }
1248 }
1249 }
1250
1251 /* In the common case, the datafile is open (and locked), so give the
1252 obvious message. Otherwise be more specific. */
1253
1254 if (deliver_datafile >= 0) printf("has been removed\n");
1255 else printf("has been removed or did not exist\n");
1256 if (removed)
1257 {
1258 log_write(0, LOG_MAIN, "removed by %s", username);
1259 log_write(0, LOG_MAIN, "Completed");
1260 }
1261 break;
1262 }
1263
1264
1265 case MSG_MARK_ALL_DELIVERED:
1266 for (i = 0; i < recipients_count; i++)
1267 {
1268 tree_add_nonrecipient(recipients_list[i].address);
1269 }
1270 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1271 {
1272 printf("has been modified\n");
1273 for (i = 0; i < recipients_count; i++)
1274 log_write(0, LOG_MAIN, "address <%s> marked delivered by %s",
1275 recipients_list[i].address, username);
1276 }
1277 else
1278 {
1279 yield = FALSE;
1280 printf("- could not mark all delivered: %s\n", errmsg);
1281 }
1282 break;
1283
1284
1285 case MSG_EDIT_SENDER:
1286 if (recipients_arg < argc - 1)
1287 {
1288 yield = FALSE;
1289 printf("- only one sender address can be specified\n");
1290 break;
1291 }
1292 doing = US"editing sender";
1293 /* Fall through */
1294
1295 case MSG_ADD_RECIPIENT:
1296 if (doing == NULL) doing = US"adding recipient";
1297 /* Fall through */
1298
1299 case MSG_MARK_DELIVERED:
1300 if (doing == NULL) doing = US"marking as delivered";
1301
1302 /* Common code for EDIT_SENDER, ADD_RECIPIENT, & MARK_DELIVERED */
1303
1304 if (recipients_arg >= argc)
1305 {
1306 yield = FALSE;
1307 printf("- error while %s: no address given\n", doing);
1308 break;
1309 }
1310
1311 for (; recipients_arg < argc; recipients_arg++)
1312 {
1313 int start, end, domain;
1314 uschar *errmess;
1315 uschar *recipient =
1316 parse_extract_address(argv[recipients_arg], &errmess, &start, &end,
1317 &domain, (action == MSG_EDIT_SENDER));
1318
1319 if (recipient == NULL)
1320 {
1321 yield = FALSE;
1322 printf("- error while %s:\n bad address %s: %s\n",
1323 doing, argv[recipients_arg], errmess);
1324 }
1325 else if (recipient[0] != 0 && domain == 0)
1326 {
1327 yield = FALSE;
1328 printf("- error while %s:\n bad address %s: "
1329 "domain missing\n", doing, argv[recipients_arg]);
1330 }
1331 else
1332 {
1333 if (action == MSG_ADD_RECIPIENT)
1334 {
1335 #ifdef SUPPORT_I18N
1336 if (string_is_utf8(recipient)) allow_utf8_domains = message_smtputf8 = TRUE;
1337 #endif
1338 receive_add_recipient(recipient, -1);
1339 log_write(0, LOG_MAIN, "recipient <%s> added by %s",
1340 recipient, username);
1341 }
1342 else if (action == MSG_MARK_DELIVERED)
1343 {
1344 for (i = 0; i < recipients_count; i++)
1345 if (Ustrcmp(recipients_list[i].address, recipient) == 0) break;
1346 if (i >= recipients_count)
1347 {
1348 printf("- error while %s:\n %s is not a recipient:"
1349 " message not updated\n", doing, recipient);
1350 yield = FALSE;
1351 }
1352 else
1353 {
1354 tree_add_nonrecipient(recipients_list[i].address);
1355 log_write(0, LOG_MAIN, "address <%s> marked delivered by %s",
1356 recipient, username);
1357 }
1358 }
1359 else /* MSG_EDIT_SENDER */
1360 {
1361 #ifdef SUPPORT_I18N
1362 if (string_is_utf8(recipient)) allow_utf8_domains = message_smtputf8 = TRUE;
1363 #endif
1364 sender_address = recipient;
1365 log_write(0, LOG_MAIN, "sender address changed to <%s> by %s",
1366 recipient, username);
1367 }
1368 }
1369 }
1370
1371 if (yield)
1372 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1373 printf("has been modified\n");
1374 else
1375 {
1376 yield = FALSE;
1377 printf("- while %s: %s\n", doing, errmsg);
1378 }
1379
1380 break;
1381 }
1382
1383 /* Closing the datafile releases the lock and permits other processes
1384 to operate on the message (if it still exists). */
1385
1386 if (deliver_datafile >= 0)
1387 {
1388 (void)close(deliver_datafile);
1389 deliver_datafile = -1;
1390 }
1391 return yield;
1392 }
1393
1394
1395
1396 /*************************************************
1397 * Check the queue_only_file condition *
1398 *************************************************/
1399
1400 /* The queue_only_file option forces certain kinds of queueing if a given file
1401 exists.
1402
1403 Arguments: none
1404 Returns: nothing
1405 */
1406
1407 void
1408 queue_check_only(void)
1409 {
1410 BOOL *set;
1411 int sep = 0;
1412 struct stat statbuf;
1413 const uschar *s;
1414 uschar *ss, *name;
1415 uschar buffer[1024];
1416
1417 if (queue_only_file == NULL) return;
1418
1419 s = queue_only_file;
1420 while ((ss = string_nextinlist(&s, &sep, buffer, sizeof(buffer))) != NULL)
1421 {
1422 if (Ustrncmp(ss, "smtp", 4) == 0)
1423 {
1424 name = US"queue_smtp";
1425 set = &queue_smtp;
1426 ss += 4;
1427 }
1428 else
1429 {
1430 name = US"queue_only";
1431 set = &queue_only;
1432 }
1433
1434 if (Ustat(ss, &statbuf) == 0)
1435 {
1436 *set = TRUE;
1437 DEBUG(D_receive) debug_printf("%s set because %s exists\n", name, ss);
1438 }
1439 }
1440 }
1441
1442 #endif /*!COMPILE_UTILITY*/
1443
1444 /* End of queue.c */