1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) The Exim Maintainers 2020 - 2022 */
6 /* Copyright (c) University of Cambridge 1995 - 2018 */
7 /* See the file NOTICE for conditions of use and distribution. */
8 /* SPDX-License-Identifier: GPL-2.0-only */
10 /* Functions that operate on the input queue. */
21 #ifndef COMPILE_UTILITY
23 /* The number of nodes to use for the bottom-up merge sort when a list of queue
24 items is to be ordered. The code for this sort was contributed as a patch by
27 #define LOG2_MAXNODES 32
31 static BOOL queue_tls_init = FALSE;
34 /*************************************************
35 * Helper sort function for queue_get_spool_list *
36 *************************************************/
38 /* This function is used when sorting the queue list in the function
39 queue_get_spool_list() below.
42 a points to an ordered list of queue_filename items
43 b points to another ordered list
45 Returns: a pointer to a merged ordered list
48 static queue_filename *
49 merge_queue_lists(queue_filename *a, queue_filename *b)
51 queue_filename *first = NULL;
52 queue_filename **append = &first;
57 if ((d = Ustrncmp(a->text, b->text, 6)) == 0)
58 d = Ustrcmp(a->text + 14, b->text + 14);
81 /*************************************************
82 * Get list of spool files *
83 *************************************************/
85 /* Scan the spool directory and return a list of the relevant file names
86 therein. Single-character sub-directories are handled as follows:
88 If the first argument is > 0, a sub-directory is scanned; the letter is
89 taken from the nth entry in subdirs.
91 If the first argument is 0, sub-directories are not scanned. However, a
92 list of them is returned.
94 If the first argument is < 0, sub-directories are scanned for messages,
95 and a single, unified list is created. The returned data blocks contain the
96 identifying character of the subdirectory, if any. The subdirs vector is
97 still required as an argument.
99 If the randomize argument is TRUE, messages are returned in "randomized" order.
100 Actually, the order is anything but random, but the algorithm is cheap, and the
101 point is simply to ensure that the same order doesn't occur every time, in case
102 a particular message is causing a remote MTA to barf - we would like to try
103 other messages to that MTA first.
105 If the randomize argument is FALSE, sort the list according to the file name.
106 This should give the order in which the messages arrived. It is normally used
107 only for presentation to humans, in which case the (possibly expensive) sort
108 that it does is not part of the normal operational code. However, if
109 queue_run_in_order is set, sorting has to take place for queue runs as well.
110 When randomize is FALSE, the first argument is normally -1, so all messages are
114 subdiroffset sub-directory character offset, or 0 or -1 (see above)
115 subdirs vector to store list of subdirchars
116 subcount pointer to int in which to store count of subdirs
117 randomize TRUE if the order of the list is to be unpredictable
118 pcount If not NULL, fill in with count of files and do not return list
120 Returns: pointer to a chain of queue name items
123 static queue_filename *
124 queue_get_spool_list(int subdiroffset, uschar *subdirs, int *subcount,
125 BOOL randomize, unsigned * pcount)
131 queue_filename *yield = NULL;
132 queue_filename *last = NULL;
134 queue_filename *root[LOG2_MAXNODES];
136 /* When randomizing, the file names are added to the start or end of the list
137 according to the bits of the flags variable. Get a collection of bits from the
138 current time. Use the bottom 16 and just keep re-using them if necessary. When
139 not randomizing, initialize the sublists for the bottom-up merge sort. */
144 resetflags = time(NULL) & 0xFFFF;
146 for (i = 0; i < LOG2_MAXNODES; i++)
149 /* If processing the full queue, or just the top-level, start at the base
150 directory, and initialize the first subdirectory name (as none). Otherwise,
151 start at the sub-directory offset. */
153 if (subdiroffset <= 0)
162 /* Set up prototype for the directory name. */
164 spool_pname_buf(buffer, sizeof(buffer));
165 buffer[sizeof(buffer) - 3] = 0;
166 subptr = Ustrlen(buffer);
167 buffer[subptr+2] = 0; /* terminator for lengthened name */
169 /* This loop runs at least once, for the main or given directory, and then as
170 many times as necessary to scan any subdirectories encountered in the main
171 directory, if they are to be scanned at this time. */
173 for (; i <= *subcount; i++)
176 int subdirchar = subdirs[i]; /* 0 for main directory */
181 buffer[subptr] = '/';
182 buffer[subptr+1] = subdirchar;
185 DEBUG(D_queue_run) debug_printf("looking in %s\n", buffer);
186 if (!(dd = exim_opendir(buffer)))
189 /* Now scan the directory. */
191 for (struct dirent *ent; ent = readdir(dd); )
193 uschar *name = US ent->d_name;
194 int len = Ustrlen(name);
200 /* If we find a single alphameric sub-directory in the base directory,
201 add it to the list for subsequent scans. */
203 if (i == 0 && len == 1 && isalnum(*name))
205 *subcount = *subcount + 1;
206 subdirs[*subcount] = *name;
210 /* Otherwise, if it is a header spool file, add it to the list */
212 if (len == SPOOL_NAME_LENGTH &&
213 Ustrcmp(name + SPOOL_NAME_LENGTH - 2, "-H") == 0)
218 queue_filename * next =
219 store_get(sizeof(queue_filename) + Ustrlen(name), name);
220 Ustrcpy(next->text, name);
221 next->dir_uschar = subdirchar;
223 /* Handle the creation of a randomized list. The first item becomes both
224 the top and bottom of the list. Subsequent items are inserted either at
225 the top or the bottom, randomly. This is, I argue, faster than doing a
226 sort by allocating a random number to each item, and it also saves having
227 to store the number with each item. */
239 if ((flags & 1) == 0)
253 /* Otherwise do a bottom-up merge sort based on the name. */
258 for (int j = 0; j < LOG2_MAXNODES; j++)
261 next = merge_queue_lists(next, root[j]);
262 root[j] = j == LOG2_MAXNODES - 1 ? next : NULL;
273 /* Finished with this directory */
277 /* If we have just scanned a sub-directory, and it was empty (count == 2
278 implies just "." and ".." entries), and Exim is no longer configured to
279 use sub-directories, attempt to get rid of it. At the same time, try to
280 get rid of any corresponding msglog subdirectory. These are just cosmetic
281 tidying actions, so just ignore failures. If we are scanning just a single
282 sub-directory, break the loop. */
286 if (!split_spool_directory && count <= 2)
291 subdir[0] = subdirchar; subdir[1] = 0;
292 rmdir(CS spool_dname(US"msglog", subdir));
294 if (subdiroffset > 0) break; /* Single sub-directory */
297 /* If we have just scanned the base directory, and subdiroffset is 0,
298 we do not want to continue scanning the sub-directories. */
300 else if (subdiroffset == 0)
302 } /* Loop for multiple subdirectories */
304 /* When using a bottom-up merge sort, do the final merging of the sublists.
305 Then pass back the final list of file items. */
307 if (!pcount && !randomize)
308 for (i = 0; i < LOG2_MAXNODES; ++i)
309 yield = merge_queue_lists(yield, root[i]);
317 /*************************************************
318 * Perform a queue run *
319 *************************************************/
321 /* The arguments give the messages to start and stop at; NULL means start at
322 the beginning or stop at the end. If the given start message doesn't exist, we
323 start at the next lexically greater one, and likewise we stop at the after the
324 previous lexically lesser one if the given stop message doesn't exist. Because
325 a queue run can take some time, stat each file before forking, in case it has
326 been delivered in the meantime by some other means.
328 The global variables queue_run_force and queue_run_local may be set to cause
329 forced deliveries or local-only deliveries, respectively.
331 If deliver_selectstring[_sender] is not NULL, skip messages whose recipients do
332 not contain the string. As this option is typically used when a machine comes
333 back online, we want to ensure that at least one delivery attempt takes place,
334 so force the first one. The selecting string can optionally be a regex, or
335 refer to the sender instead of recipients.
337 If queue_2stage is set, the queue is scanned twice. The first time, queue_smtp
338 is set so that routing is done for all messages. Thus in the second run those
339 that are routed to the same host should go down the same SMTP connection.
342 start_id message id to start at, or NULL for all
343 stop_id message id to end at, or NULL for all
344 recurse TRUE if recursing for 2-stage run
350 queue_run(uschar *start_id, uschar *stop_id, BOOL recurse)
352 BOOL force_delivery = f.queue_run_force || deliver_selectstring != NULL ||
353 deliver_selectstring_sender != NULL;
354 const pcre2_code *selectstring_regex = NULL;
355 const pcre2_code *selectstring_regex_sender = NULL;
356 uschar *log_detail = NULL;
359 pid_t qpid[4] = {0}; /* Parallelism factor for q2stage 1st phase */
360 BOOL single_id = FALSE;
362 #ifdef MEASURE_TIMING
363 report_time_since(×tamp_startup, US"queue_run start");
366 /* Cancel any specific queue domains. Turn off the flag that causes SMTP
367 deliveries not to happen, unless doing a 2-stage queue run, when the SMTP flag
368 gets set. Save the queue_runner's pid and the flag that indicates any
369 deliveries run directly from this process. Deliveries that are run by handing
370 on TCP/IP channels have queue_run_pid set, but not queue_running. */
372 queue_domains = NULL;
373 queue_smtp_domains = NULL;
374 f.queue_smtp = f.queue_2stage;
376 queue_run_pid = getpid();
377 f.queue_running = TRUE;
379 /* Log the true start of a queue run, and fancy options */
386 if (f.queue_2stage) *p++ = 'q';
387 if (f.queue_run_first_delivery) *p++ = 'i';
388 if (f.queue_run_force) *p++ = 'f';
389 if (f.deliver_force_thaw) *p++ = 'f';
390 if (f.queue_run_local) *p++ = 'l';
394 p += sprintf(CS p, "pid=%d", (int)queue_run_pid);
397 p += sprintf(CS p, " -q%s", extras);
399 if (deliver_selectstring)
401 snprintf(CS p, big_buffer_size - (p - big_buffer), " -R%s %s",
402 f.deliver_selectstring_regex? "r" : "", deliver_selectstring);
406 if (deliver_selectstring_sender)
408 snprintf(CS p, big_buffer_size - (p - big_buffer), " -S%s %s",
409 f.deliver_selectstring_sender_regex? "r" : "", deliver_selectstring_sender);
413 log_detail = string_copy(big_buffer);
415 log_write(L_queue_run, LOG_MAIN, "Start '%s' queue run: %s",
416 queue_name, log_detail);
418 log_write(L_queue_run, LOG_MAIN, "Start queue run: %s", log_detail);
420 single_id = start_id && stop_id && !f.queue_2stage
421 && Ustrcmp(start_id, stop_id) == 0;
424 /* If deliver_selectstring is a regex, compile it. */
426 if (deliver_selectstring && f.deliver_selectstring_regex)
427 selectstring_regex = regex_must_compile(deliver_selectstring, MCS_CASELESS, FALSE);
429 if (deliver_selectstring_sender && f.deliver_selectstring_sender_regex)
430 selectstring_regex_sender =
431 regex_must_compile(deliver_selectstring_sender, MCS_CASELESS, FALSE);
433 /* If the spool is split into subdirectories, we want to process it one
434 directory at a time, so as to spread out the directory scanning and the
435 delivering when there are lots of messages involved, except when
436 queue_run_in_order is set.
438 In the random order case, this loop runs once for the main directory (handling
439 any messages therein), and then repeats for any subdirectories that were found.
440 When the first argument of queue_get_spool_list() is 0, it scans the top
441 directory, fills in subdirs, and sets subcount. The order of the directories is
442 then randomized after the first time through, before they are scanned in
443 subsequent iterations.
445 When the first argument of queue_get_spool_list() is -1 (for queue_run_in_
446 order), it scans all directories and makes a single message list. */
448 for (int i = queue_run_in_order ? -1 : 0;
449 i <= (queue_run_in_order ? -1 : subcount);
452 rmark reset_point1 = store_mark();
457 debug_printf("queue running main directory\n");
459 debug_printf("queue running combined directories\n");
461 debug_printf("queue running subdirectory '%c'\n", subdirs[i]);
464 for (queue_filename * fq = queue_get_spool_list(i, subdirs, &subcount,
465 !queue_run_in_order, NULL);
474 /* Unless deliveries are forced, if deliver_queue_load_max is non-negative,
475 check that the load average is low enough to permit deliveries. */
477 if (!f.queue_run_force && deliver_queue_load_max >= 0)
478 if ((load_average = os_getloadavg()) > deliver_queue_load_max)
480 log_write(L_queue_run, LOG_MAIN, "Abandon queue run: %s (load %.2f, max %.2f)",
482 (double)load_average/1000.0,
483 (double)deliver_queue_load_max/1000.0);
484 i = subcount; /* Don't process other directories */
488 DEBUG(D_load) debug_printf("load average = %.2f max = %.2f\n",
489 (double)load_average/1000.0,
490 (double)deliver_queue_load_max/1000.0);
492 /* If initial of a 2-phase run, maintain a set of child procs
493 to get disk parallelism */
495 if (f.queue_2stage && !queue_run_in_order)
498 if (qpid[f.running_in_test_harness ? 0 : nelem(qpid) - 1])
500 DEBUG(D_queue_run) debug_printf("q2stage waiting for child %d\n", (int)qpid[0]);
501 waitpid(qpid[0], NULL, 0);
502 DEBUG(D_queue_run) debug_printf("q2stage reaped child %d\n", (int)qpid[0]);
503 if (f.running_in_test_harness) i = 0;
504 else for (i = 0; i < nelem(qpid) - 1; i++) qpid[i] = qpid[i+1];
508 for (i = 0; qpid[i]; ) i++;
509 if ((qpid[i] = exim_fork(US"qrun-phase-one")))
510 continue; /* parent loops around */
513 /* Skip this message unless it's within the ID limits */
515 if (stop_id && Ustrncmp(fq->text, stop_id, MESSAGE_ID_LENGTH) > 0)
517 if (start_id && Ustrncmp(fq->text, start_id, MESSAGE_ID_LENGTH) < 0)
520 /* Check that the message still exists */
522 message_subdir[0] = fq->dir_uschar;
523 if (Ustat(spool_fname(US"input", message_subdir, fq->text, US""), &statbuf) < 0)
526 /* There are some tests that require the reading of the header file. Ensure
527 the store used is scavenged afterwards so that this process doesn't keep
528 growing its store. We have to read the header file again when actually
529 delivering, but it's cheaper than forking a delivery process for each
530 message when many are not going to be delivered. */
532 if (deliver_selectstring || deliver_selectstring_sender ||
533 f.queue_run_first_delivery)
536 BOOL orig_dont_deliver = f.dont_deliver;
537 rmark reset_point2 = store_mark();
539 /* Restore the original setting of dont_deliver after reading the header,
540 so that a setting for a particular message doesn't force it for any that
541 follow. If the message is chosen for delivery, the header is read again
542 in the deliver_message() function, in a subprocess. */
544 if (spool_read_header(fq->text, FALSE, TRUE) != spool_read_OK) goto go_around;
545 f.dont_deliver = orig_dont_deliver;
547 /* Now decide if we want to deliver this message. As we have read the
548 header file, we might as well do the freeze test now, and save forking
551 if (f.deliver_freeze && !f.deliver_force_thaw)
553 log_write(L_skip_delivery, LOG_MAIN, "Message is frozen");
557 /* Check first_delivery in the case when there are no message logs. */
559 else if (f.queue_run_first_delivery && !f.deliver_firsttime)
561 DEBUG(D_queue_run) debug_printf("%s: not first delivery\n", fq->text);
565 /* Check for a matching address if deliver_selectstring[_sender] is set.
566 If so, we do a fully delivery - don't want to omit other addresses since
567 their routing might trigger re-writing etc. */
569 /* Sender matching */
571 else if ( deliver_selectstring_sender
572 && !(f.deliver_selectstring_sender_regex
573 ? regex_match(selectstring_regex_sender, sender_address, -1, NULL)
574 : (strstric(sender_address, deliver_selectstring_sender, FALSE)
578 DEBUG(D_queue_run) debug_printf("%s: sender address did not match %s\n",
579 fq->text, deliver_selectstring_sender);
583 /* Recipient matching */
585 else if (deliver_selectstring)
588 for (i = 0; i < recipients_count; i++)
590 uschar *address = recipients_list[i].address;
591 if ( (f.deliver_selectstring_regex
592 ? regex_match(selectstring_regex, address, -1, NULL)
593 : (strstric(address, deliver_selectstring, FALSE) != NULL)
595 && tree_search(tree_nonrecipients, address) == NULL
600 if (i >= recipients_count)
603 debug_printf("%s: no recipient address matched %s\n",
604 fq->text, deliver_selectstring);
609 /* Recover store used when reading the header */
611 spool_clear_header_globals();
612 store_reset(reset_point2);
613 if (!wanted) goto go_around; /* With next message */
616 /* OK, got a message we want to deliver. Create a pipe which will
617 serve as a means of detecting when all the processes created by the
618 delivery process are finished. This is relevant when the delivery
619 process passes one or more SMTP channels on to its own children. The
620 pipe gets passed down; by reading on it here we detect when the last
621 descendent dies by the unblocking of the read. It's a pity that for
622 most of the time the pipe isn't used, but creating a pipe should be
626 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to create pipe in queue "
627 "runner process %d: %s", queue_run_pid, strerror(errno));
628 queue_run_pipe = pfd[pipe_write]; /* To ensure it gets passed on. */
630 /* Make sure it isn't stdin. This seems unlikely, but just to be on the
633 if (queue_run_pipe == 0)
635 queue_run_pipe = dup(queue_run_pipe);
639 /* Before forking to deliver the message, ensure any open and cached
640 lookup files or databases are closed. Otherwise, closing in the subprocess
641 can make the next subprocess have problems. There won't often be anything
642 open here, but it is possible (e.g. if spool_directory is an expanded
643 string). A single call before this loop would probably suffice, but just in
644 case expansions get inserted at some point, I've taken the heavy-handed
645 approach. When nothing is open, the call should be cheap. */
649 /* Now deliver the message; get the id by cutting the -H off the file
650 name. The return of the process is zero if a delivery was attempted. */
652 set_process_info("running queue: %s", fq->text);
653 fq->text[SPOOL_NAME_LENGTH-2] = 0;
654 #ifdef MEASURE_TIMING
655 report_time_since(×tamp_startup, US"queue msg selected");
661 queue_tls_init = TRUE;
662 /* Preload TLS library info for smtp transports. Once, and only if we
663 have a delivery to do. */
664 tls_client_creds_reload(FALSE);
669 if ((pid = exim_fork(US"qrun-delivery")) == 0)
672 (void)close(pfd[pipe_read]);
673 rc = deliver_message(fq->text, force_delivery, FALSE);
674 exim_underbar_exit(rc == DELIVER_NOT_ATTEMPTED
675 ? EXIT_FAILURE : EXIT_SUCCESS);
678 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "fork of delivery process from "
679 "queue runner %d failed\n", queue_run_pid);
681 /* Close the writing end of the synchronizing pipe in this process,
682 then wait for the first level process to terminate. */
684 (void)close(pfd[pipe_write]);
685 set_process_info("running queue: waiting for %s (%d)", fq->text, pid);
686 while (wait(&status) != pid);
688 /* A zero return means a delivery was attempted; turn off the force flag
689 for any subsequent calls unless queue_force is set. */
691 if (!(status & 0xffff)) force_delivery = f.queue_run_force;
693 /* If the process crashed, tell somebody */
695 else if (status & 0x00ff)
696 log_write(0, LOG_MAIN|LOG_PANIC,
697 "queue run: process %d crashed with signal %d while delivering %s",
698 (int)pid, status & 0x00ff, fq->text);
700 /* If single-item delivery was untried (likely due to locking)
701 retry once after a delay */
703 if (status & 0xff00 && single_id)
706 DEBUG(D_queue_run) debug_printf("qrun single-item pause before retry\n");
708 DEBUG(D_queue_run) debug_printf("qrun single-item retry after pause\n");
709 goto single_item_retry;
712 /* Before continuing, wait till the pipe gets closed at the far end. This
713 tells us that any children created by the delivery to re-use any SMTP
714 channels have all finished. Since no process actually writes to the pipe,
715 the mere fact that read() unblocks is enough. */
717 set_process_info("running queue: waiting for children of %d", pid);
718 if ((status = read(pfd[pipe_read], buffer, sizeof(buffer))) != 0)
719 log_write(0, LOG_MAIN|LOG_PANIC, status > 0 ?
720 "queue run: unexpected data on pipe" : "queue run: error on pipe: %s",
722 (void)close(pfd[pipe_read]);
723 set_process_info("running queue");
725 /* If initial of a 2-phase run, we are a child - so just exit */
726 if (f.queue_2stage && !queue_run_in_order)
727 exim_exit(EXIT_SUCCESS);
729 /* If we are in the test harness, and this is not the first of a 2-stage
730 queue run, update fudged queue times. */
732 if (f.running_in_test_harness && !f.queue_2stage)
734 uschar * fqtnext = Ustrchr(fudged_queue_times, '/');
735 if (fqtnext) fudged_queue_times = fqtnext + 1;
742 /* If initial of a 2-phase run, we are a child - so just exit */
743 if (f.queue_2stage && !queue_run_in_order)
744 exim_exit(EXIT_SUCCESS);
745 } /* End loop for list of messages */
747 tree_nonrecipients = NULL;
748 store_reset(reset_point1); /* Scavenge list of messages */
750 /* If this was the first time through for random order processing, and
751 sub-directories have been found, randomize their order if necessary. */
753 if (i == 0 && subcount > 1 && !queue_run_in_order)
754 for (int j = 1; j <= subcount; j++)
757 if ((r = random_number(100)) >= 50)
759 int k = (r % subcount) + 1;
761 subdirs[j] = subdirs[k];
765 } /* End loop for multiple directories */
767 /* If queue_2stage is true, we do it all again, with the 2stage flag
773 /* wait for last children */
774 for (int i = 0; i < nelem(qpid); i++)
777 DEBUG(D_queue_run) debug_printf("q2stage reaped child %d\n", (int)qpid[i]);
778 waitpid(qpid[i], NULL, 0);
782 #ifdef MEASURE_TIMING
783 report_time_since(×tamp_startup, US"queue_run 1st phase done");
785 f.queue_2stage = FALSE;
786 queue_run(start_id, stop_id, TRUE);
789 /* At top level, log the end of the run. */
793 log_write(L_queue_run, LOG_MAIN, "End '%s' queue run: %s",
794 queue_name, log_detail);
796 log_write(L_queue_run, LOG_MAIN, "End queue run: %s", log_detail);
802 /************************************************
803 * Count messages on the queue *
804 ************************************************/
806 /* Called as a result of -bpc
819 (void) queue_get_spool_list(-1, /* entire queue */
820 subdirs, /* for holding sub list */
821 &subcount, /* for subcount */
822 FALSE, /* not random */
823 &count); /* just get the count */
828 #define QUEUE_SIZE_AGE 60 /* update rate for queue_size */
831 queue_count_cached(void)
834 if ((now = time(NULL)) >= queue_size_next)
836 queue_size = queue_count();
837 queue_size_next = now + (f.running_in_test_harness ? 3 : QUEUE_SIZE_AGE);
842 /************************************************
843 * List extra deliveries *
844 ************************************************/
846 /* This is called from queue_list below to print out all addresses that
847 have received a message but which were not primary addresses. That is, all
848 the addresses in the tree of non-recipients that are not primary addresses.
849 The tree has been scanned and the data field filled in for those that are
852 Argument: points to the tree node
857 queue_list_extras(tree_node *p)
859 if (p->left) queue_list_extras(p->left);
860 if (!p->data.val) printf(" +D %s\n", p->name);
861 if (p->right) queue_list_extras(p->right);
866 /************************************************
867 * List messages on the queue *
868 ************************************************/
870 /* Or a given list of messages. In the "all" case, we get a list of file names
871 as quickly as possible, then scan each one for information to output. If any
872 disappear while we are processing, just leave them out, but give an error if an
873 explicit list was given. This function is a top-level function that is obeyed
874 as a result of the -bp argument. As there may be a lot of messages on the
875 queue, we must tidy up the store after reading the headers for each one.
878 option 0 => list top-level recipients, with "D" for those delivered
879 1 => list only undelivered top-level recipients
880 2 => as 0, plus any generated delivered recipients
881 If 8 is added to any of these values, the queue is listed in
883 list => first of any message ids to list
884 count count of message ids; 0 => all
890 queue_list(int option, uschar **list, int count)
893 int now = (int)time(NULL);
895 queue_filename * qf = NULL;
898 /* If given a list of messages, build a chain containing their ids. */
902 queue_filename *last = NULL;
903 for (int i = 0; i < count; i++)
905 queue_filename * next =
906 store_get(sizeof(queue_filename) + Ustrlen(list[i]) + 2, list[i]);
907 sprintf(CS next->text, "%s-H", list[i]);
908 next->dir_uschar = '*';
910 if (i == 0) qf = next; else last->next = next;
915 /* Otherwise get a list of the entire queue, in order if necessary. */
918 qf = queue_get_spool_list(
919 -1, /* entire queue */
920 subdirs, /* for holding sub list */
921 &subcount, /* for subcount */
922 option >= 8, /* randomize if required */
923 NULL); /* don't just count */
925 if (option >= 8) option -= 8;
927 /* Now scan the chain and print information, resetting store used
931 qf && (reset_point = store_mark());
932 spool_clear_header_globals(), store_reset(reset_point), qf = qf->next
940 message_subdir[0] = qf->dir_uschar;
941 rc = spool_read_header(qf->text, FALSE, count <= 0);
942 if (rc == spool_read_notopen && errno == ENOENT && count <= 0)
946 env_read = (rc == spool_read_OK || rc == spool_read_hdrerror);
953 uschar * fname = spool_fname(US"input", message_subdir, qf->text, US"");
955 ptr = Ustrlen(fname)-1;
958 /* Add the data size to the header size; don't count the file name
959 at the start of the data file, but add one for the notional blank line
960 that precedes the data. */
962 if (Ustat(fname, &statbuf) == 0)
963 size = message_size + statbuf.st_size - SPOOL_DATA_START_OFFSET + 1;
964 i = (now - received_time.tv_sec)/60; /* minutes on queue */
968 if (i > 72) printf("%2dd ", (i + 12)/24); else printf("%2dh ", i);
970 else printf("%2dm ", i);
972 /* Collect delivered addresses from any J file */
975 if ((jread = Ufopen(fname, "rb")))
977 while (Ufgets(big_buffer, big_buffer_size, jread) != NULL)
979 int n = Ustrlen(big_buffer);
981 tree_add_nonrecipient(big_buffer);
987 fprintf(stdout, "%s ", string_format_size(size, big_buffer));
988 for (int i = 0; i < 16; i++) fputc(qf->text[i], stdout);
990 if (env_read && sender_address)
992 printf(" <%s>", sender_address);
993 if (f.sender_set_untrusted) printf(" (%s)", originator_login);
996 if (rc != spool_read_OK)
999 if (save_errno == ERRNO_SPOOLFORMAT)
1001 struct stat statbuf;
1002 uschar * fname = spool_fname(US"input", message_subdir, qf->text, US"");
1004 if (Ustat(fname, &statbuf) == 0)
1005 printf("*** spool format error: size=" OFF_T_FMT " ***",
1007 else printf("*** spool format error ***");
1009 else printf("*** spool read error: %s ***", strerror(save_errno));
1010 if (rc != spool_read_hdrerror)
1017 if (f.deliver_freeze) printf(" *** frozen ***");
1021 if (recipients_list)
1023 for (int i = 0; i < recipients_count; i++)
1025 tree_node *delivered =
1026 tree_search(tree_nonrecipients, recipients_list[i].address);
1027 if (!delivered || option != 1)
1029 delivered ? "D" : " ", recipients_list[i].address);
1030 if (delivered) delivered->data.val = TRUE;
1032 if (option == 2 && tree_nonrecipients)
1033 queue_list_extras(tree_nonrecipients);
1041 /*************************************************
1042 * Act on a specific message *
1043 *************************************************/
1045 /* Actions that require a list of addresses make use of argv/argc/
1046 recipients_arg. Other actions do not. This function does its own
1050 id id of the message to work on
1051 action which action is required (MSG_xxx)
1052 argv the original argv for Exim
1053 argc the original argc for Exim
1054 recipients_arg offset to the list of recipients in argv
1056 Returns: FALSE if there was any problem
1060 queue_action(uschar *id, int action, uschar **argv, int argc, int recipients_arg)
1063 BOOL removed = FALSE;
1065 uschar *doing = NULL;
1068 uschar spoolname[32];
1070 /* Set the global message_id variable, used when re-writing spool files. This
1071 also causes message ids to be added to log messages. */
1073 Ustrcpy(message_id, id);
1075 /* The "actions" that just list the files do not require any locking to be
1076 done. Only admin users may read the spool files. */
1078 if (action >= MSG_SHOW_BODY)
1081 uschar *subdirectory, *suffix;
1085 printf("Permission denied\n");
1089 if (recipients_arg < argc)
1091 printf("*** Only one message can be listed at once\n");
1095 if (action == MSG_SHOW_BODY)
1097 subdirectory = US"input";
1100 else if (action == MSG_SHOW_HEADER)
1102 subdirectory = US"input";
1107 subdirectory = US"msglog";
1111 for (int i = 0; i < 2; i++)
1113 set_subdir_str(message_subdir, id, i);
1114 if ((fd = Uopen(spool_fname(subdirectory, message_subdir, id, suffix),
1120 printf("Failed to open %s file for %s%s: %s\n", subdirectory, id, suffix,
1122 if (action == MSG_SHOW_LOG && !message_logs)
1123 printf("(No message logs are being created because the message_logs "
1124 "option is false.)\n");
1128 while((rc = read(fd, big_buffer, big_buffer_size)) > 0)
1129 rc = write(fileno(stdout), big_buffer, rc);
1135 /* For actions that actually act, open and lock the data file to ensure that no
1136 other process is working on this message. If the file does not exist, continue
1137 only if the action is remove and the user is an admin user, to allow for
1138 tidying up broken states. */
1140 if ((deliver_datafile = spool_open_datafile(id)) < 0)
1141 if (errno == ENOENT)
1144 printf("Spool data file for %s does not exist\n", id);
1145 if (action != MSG_REMOVE || !f.admin_user) return FALSE;
1146 printf("Continuing, to ensure all files removed\n");
1150 if (errno == 0) printf("Message %s is locked\n", id);
1151 else printf("Couldn't open spool file for %s: %s\n", id,
1156 /* Read the spool header file for the message. Again, continue after an
1157 error only in the case of deleting by an administrator. Setting the third
1158 argument false causes it to look both in the main spool directory and in
1159 the appropriate subdirectory, and set message_subdir according to where it
1160 found the message. */
1162 sprintf(CS spoolname, "%s-H", id);
1163 if (spool_read_header(spoolname, TRUE, FALSE) != spool_read_OK)
1166 if (errno != ERRNO_SPOOLFORMAT)
1167 printf("Spool read error for %s: %s\n", spoolname, strerror(errno));
1169 printf("Spool format error for %s\n", spoolname);
1170 if (action != MSG_REMOVE || !f.admin_user)
1172 (void)close(deliver_datafile);
1173 deliver_datafile = -1;
1176 printf("Continuing to ensure all files removed\n");
1179 /* Check that the user running this process is entitled to operate on this
1180 message. Only admin users may freeze/thaw, add/cancel recipients, or otherwise
1181 mess about, but the original sender is permitted to remove a message. That's
1182 why we leave this check until after the headers are read. */
1184 if (!f.admin_user && (action != MSG_REMOVE || real_uid != originator_uid))
1186 printf("Permission denied\n");
1187 (void)close(deliver_datafile);
1188 deliver_datafile = -1;
1192 /* Set up the user name for logging. */
1194 pw = getpwuid(real_uid);
1195 username = (pw != NULL)?
1196 US pw->pw_name : string_sprintf("uid %ld", (long int)real_uid);
1198 /* Take the necessary action. */
1200 if (action != MSG_SHOW_COPY) printf("Message %s ", id);
1206 transport_ctx tctx = {{0}};
1207 deliver_in_buffer = store_malloc(DELIVER_IN_BUFFER_SIZE);
1208 deliver_out_buffer = store_malloc(DELIVER_OUT_BUFFER_SIZE);
1210 (void) transport_write_message(&tctx, 0);
1216 if (f.deliver_freeze)
1219 printf("is already frozen\n");
1223 f.deliver_freeze = TRUE;
1224 f.deliver_manual_thaw = FALSE;
1225 deliver_frozen_at = time(NULL);
1226 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1228 printf("is now frozen\n");
1229 log_write(0, LOG_MAIN, "frozen by %s", username);
1234 printf("could not be frozen: %s\n", errmsg);
1241 if (!f.deliver_freeze)
1244 printf("is not frozen\n");
1248 f.deliver_freeze = FALSE;
1249 f.deliver_manual_thaw = TRUE;
1250 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1252 printf("is no longer frozen\n");
1253 log_write(0, LOG_MAIN, "unfrozen by %s", username);
1258 printf("could not be unfrozen: %s\n", errmsg);
1264 /* We must ensure all files are removed from both the input directory
1265 and the appropriate subdirectory, to clean up cases when there are odd
1266 files left lying around in odd places. In the normal case message_subdir
1267 will have been set correctly by spool_read_header, but as this is a rare
1268 operation, just run everything twice. */
1276 message_subdir[0] = id[5];
1278 for (int j = 0; j < 2; message_subdir[0] = 0, j++)
1280 uschar * fname = spool_fname(US"msglog", message_subdir, id, US"");
1282 DEBUG(D_any) debug_printf(" removing %s", fname);
1283 if (Uunlink(fname) < 0)
1285 if (errno != ENOENT)
1288 printf("Error while removing %s: %s\n", fname, strerror(errno));
1290 else DEBUG(D_any) debug_printf(" (no file)\n");
1295 DEBUG(D_any) debug_printf(" (ok)\n");
1298 for (int i = 0; i < 3; i++)
1302 suffix[1] = (US"DHJ")[i];
1303 fname = spool_fname(US"input", message_subdir, id, suffix);
1305 DEBUG(D_any) debug_printf(" removing %s", fname);
1306 if (Uunlink(fname) < 0)
1308 if (errno != ENOENT)
1311 printf("Error while removing %s: %s\n", fname, strerror(errno));
1313 else DEBUG(D_any) debug_printf(" (no file)\n");
1318 DEBUG(D_any) debug_printf(" (done)\n");
1323 /* In the common case, the datafile is open (and locked), so give the
1324 obvious message. Otherwise be more specific. */
1326 if (deliver_datafile >= 0) printf("has been removed\n");
1327 else printf("has been removed or did not exist\n");
1330 #ifndef DISABLE_EVENT
1331 if (event_action) for (int i = 0; i < recipients_count; i++)
1333 tree_node *delivered =
1334 tree_search(tree_nonrecipients, recipients_list[i].address);
1337 uschar * save_local = deliver_localpart;
1338 const uschar * save_domain = deliver_domain;
1339 uschar * addr = recipients_list[i].address, * errmsg = NULL;
1340 int start, end, dom;
1342 if (!parse_extract_address(addr, &errmsg, &start, &end, &dom, TRUE))
1343 log_write(0, LOG_MAIN|LOG_PANIC,
1344 "failed to parse address '%.100s'\n: %s", addr, errmsg);
1348 string_copyn(addr+start, dom ? (dom-1) - start : end - start);
1349 deliver_domain = dom
1350 ? CUS string_copyn(addr+dom, end - dom) : CUS"";
1352 (void) event_raise(event_action, US"msg:fail:internal",
1353 string_sprintf("message removed by %s", username), NULL);
1355 deliver_localpart = save_local;
1356 deliver_domain = save_domain;
1360 (void) event_raise(event_action, US"msg:complete", NULL, NULL);
1362 log_write(0, LOG_MAIN, "removed by %s", username);
1363 log_write(0, LOG_MAIN, "Completed");
1370 /* The global "queue_name_dest" is used as destination, "queue_name"
1373 spool_move_message(id, message_subdir, US"", US"");
1377 case MSG_MARK_ALL_DELIVERED:
1378 for (int i = 0; i < recipients_count; i++)
1379 tree_add_nonrecipient(recipients_list[i].address);
1381 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1383 printf("has been modified\n");
1384 for (int i = 0; i < recipients_count; i++)
1385 log_write(0, LOG_MAIN, "address <%s> marked delivered by %s",
1386 recipients_list[i].address, username);
1391 printf("- could not mark all delivered: %s\n", errmsg);
1396 case MSG_EDIT_SENDER:
1397 if (recipients_arg < argc - 1)
1400 printf("- only one sender address can be specified\n");
1403 doing = US"editing sender";
1406 case MSG_ADD_RECIPIENT:
1407 if (doing == NULL) doing = US"adding recipient";
1410 case MSG_MARK_DELIVERED:
1411 if (doing == NULL) doing = US"marking as delivered";
1413 /* Common code for EDIT_SENDER, ADD_RECIPIENT, & MARK_DELIVERED */
1415 if (recipients_arg >= argc)
1418 printf("- error while %s: no address given\n", doing);
1422 for (; recipients_arg < argc; recipients_arg++)
1424 int start, end, domain;
1427 parse_extract_address(argv[recipients_arg], &errmess, &start, &end,
1428 &domain, (action == MSG_EDIT_SENDER));
1433 printf("- error while %s:\n bad address %s: %s\n",
1434 doing, argv[recipients_arg], errmess);
1436 else if (*recipient && domain == 0)
1439 printf("- error while %s:\n bad address %s: "
1440 "domain missing\n", doing, argv[recipients_arg]);
1444 if (action == MSG_ADD_RECIPIENT)
1447 if (string_is_utf8(recipient)) allow_utf8_domains = message_smtputf8 = TRUE;
1449 receive_add_recipient(recipient, -1);
1450 log_write(0, LOG_MAIN, "recipient <%s> added by %s",
1451 recipient, username);
1453 else if (action == MSG_MARK_DELIVERED)
1456 for (i = 0; i < recipients_count; i++)
1457 if (Ustrcmp(recipients_list[i].address, recipient) == 0) break;
1458 if (i >= recipients_count)
1460 printf("- error while %s:\n %s is not a recipient:"
1461 " message not updated\n", doing, recipient);
1466 tree_add_nonrecipient(recipients_list[i].address);
1467 log_write(0, LOG_MAIN, "address <%s> marked delivered by %s",
1468 recipient, username);
1471 else /* MSG_EDIT_SENDER */
1474 if (string_is_utf8(recipient)) allow_utf8_domains = message_smtputf8 = TRUE;
1476 sender_address = recipient;
1477 log_write(0, LOG_MAIN, "sender address changed to <%s> by %s",
1478 recipient, username);
1484 if (spool_write_header(id, SW_MODIFYING, &errmsg) >= 0)
1485 printf("has been modified\n");
1489 printf("- while %s: %s\n", doing, errmsg);
1495 /* Closing the datafile releases the lock and permits other processes
1496 to operate on the message (if it still exists). */
1498 if (deliver_datafile >= 0)
1500 (void)close(deliver_datafile);
1501 deliver_datafile = -1;
1508 /*************************************************
1509 * Check the queue_only_file condition *
1510 *************************************************/
1512 /* The queue_only_file option forces certain kinds of queueing if a given file
1520 queue_check_only(void)
1523 struct stat statbuf;
1524 const uschar * s = queue_only_file;
1528 while ((ss = string_nextinlist(&s, &sep, NULL, 0)))
1529 if (Ustrncmp(ss, "smtp", 4) == 0)
1532 if (Ustat(ss, &statbuf) == 0)
1534 f.queue_smtp = TRUE;
1535 DEBUG(D_receive) debug_printf("queue_smtp set because %s exists\n", ss);
1539 if (Ustat(ss, &statbuf) == 0)
1542 DEBUG(D_receive) debug_printf("queue_only set because %s exists\n", ss);
1548 /******************************************************************************/
1549 /******************************************************************************/
1551 #ifndef DISABLE_QUEUE_RAMP
1553 queue_notify_daemon(const uschar * msgid)
1555 uschar buf[MESSAGE_ID_LENGTH + 2];
1558 DEBUG(D_queue_run) debug_printf("%s: %s\n", __FUNCTION__, msgid);
1560 buf[0] = NOTIFY_MSG_QRUN;
1561 memcpy(buf+1, msgid, MESSAGE_ID_LENGTH+1);
1563 if ((fd = socket(AF_UNIX, SOCK_DGRAM, 0)) >= 0)
1565 struct sockaddr_un sa_un = {.sun_family = AF_UNIX};
1566 ssize_t len = daemon_notifier_sockname(&sa_un);
1568 if (sendto(fd, buf, sizeof(buf), 0, (struct sockaddr *)&sa_un, (socklen_t)len) < 0)
1570 debug_printf("%s: sendto %s\n", __FUNCTION__, strerror(errno));
1573 else DEBUG(D_queue_run) debug_printf(" socket: %s\n", strerror(errno));
1577 #endif /*!COMPILE_UTILITY*/
1579 /* End of queue.c */