1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* Copyright (c) The Exim maintainers 2020 */
7 /* See the file NOTICE for conditions of use and distribution. */
13 #ifdef HAVE_SETCLASSRESOURCES
14 #include <login_cap.h>
19 /* Options specific to the pipe transport. They must be in alphabetic
20 order (note that "_" comes before the lower case letters). Those starting
21 with "*" are not settable by the user but are used by the option-reading
22 software for alternative value types. Some options are stored in the transport
23 instance block so as to be publicly visible; these are flagged with opt_public.
26 optionlist pipe_transport_options[] = {
27 { "allow_commands", opt_stringptr,
28 (void *)offsetof(pipe_transport_options_block, allow_commands) },
29 { "batch_id", opt_stringptr | opt_public,
30 (void *)offsetof(transport_instance, batch_id) },
31 { "batch_max", opt_int | opt_public,
32 (void *)offsetof(transport_instance, batch_max) },
33 { "check_string", opt_stringptr,
34 (void *)offsetof(pipe_transport_options_block, check_string) },
35 { "command", opt_stringptr,
36 (void *)offsetof(pipe_transport_options_block, cmd) },
37 { "environment", opt_stringptr,
38 (void *)offsetof(pipe_transport_options_block, environment) },
39 { "escape_string", opt_stringptr,
40 (void *)offsetof(pipe_transport_options_block, escape_string) },
41 { "force_command", opt_bool,
42 (void *)offsetof(pipe_transport_options_block, force_command) },
43 { "freeze_exec_fail", opt_bool,
44 (void *)offsetof(pipe_transport_options_block, freeze_exec_fail) },
45 { "freeze_signal", opt_bool,
46 (void *)offsetof(pipe_transport_options_block, freeze_signal) },
47 { "ignore_status", opt_bool,
48 (void *)offsetof(pipe_transport_options_block, ignore_status) },
49 { "log_defer_output", opt_bool | opt_public,
50 (void *)offsetof(transport_instance, log_defer_output) },
51 { "log_fail_output", opt_bool | opt_public,
52 (void *)offsetof(transport_instance, log_fail_output) },
53 { "log_output", opt_bool | opt_public,
54 (void *)offsetof(transport_instance, log_output) },
55 { "max_output", opt_mkint,
56 (void *)offsetof(pipe_transport_options_block, max_output) },
57 { "message_prefix", opt_stringptr,
58 (void *)offsetof(pipe_transport_options_block, message_prefix) },
59 { "message_suffix", opt_stringptr,
60 (void *)offsetof(pipe_transport_options_block, message_suffix) },
61 { "path", opt_stringptr,
62 (void *)offsetof(pipe_transport_options_block, path) },
63 { "permit_coredump", opt_bool,
64 (void *)offsetof(pipe_transport_options_block, permit_coredump) },
65 { "pipe_as_creator", opt_bool | opt_public,
66 (void *)offsetof(transport_instance, deliver_as_creator) },
67 { "restrict_to_path", opt_bool,
68 (void *)offsetof(pipe_transport_options_block, restrict_to_path) },
69 { "return_fail_output",opt_bool | opt_public,
70 (void *)offsetof(transport_instance, return_fail_output) },
71 { "return_output", opt_bool | opt_public,
72 (void *)offsetof(transport_instance, return_output) },
73 { "temp_errors", opt_stringptr,
74 (void *)offsetof(pipe_transport_options_block, temp_errors) },
75 { "timeout", opt_time,
76 (void *)offsetof(pipe_transport_options_block, timeout) },
77 { "timeout_defer", opt_bool,
78 (void *)offsetof(pipe_transport_options_block, timeout_defer) },
79 { "umask", opt_octint,
80 (void *)offsetof(pipe_transport_options_block, umask) },
81 { "use_bsmtp", opt_bool,
82 (void *)offsetof(pipe_transport_options_block, use_bsmtp) },
83 #ifdef HAVE_SETCLASSRESOURCES
84 { "use_classresources", opt_bool,
85 (void *)offsetof(pipe_transport_options_block, use_classresources) },
87 { "use_crlf", opt_bool,
88 (void *)offsetof(pipe_transport_options_block, use_crlf) },
89 { "use_shell", opt_bool,
90 (void *)offsetof(pipe_transport_options_block, use_shell) },
93 /* Size of the options list. An extern variable has to be used so that its
94 address can appear in the tables drtables.c. */
96 int pipe_transport_options_count =
97 sizeof(pipe_transport_options)/sizeof(optionlist);
103 pipe_transport_options_block pipe_transport_option_defaults = {0};
104 void pipe_transport_init(transport_instance *tblock) {}
105 BOOL pipe_transport_entry(transport_instance *tblock, address_item *addr) {return FALSE;}
107 #else /*!MACRO_PREDEF*/
110 /* Default private options block for the pipe transport. */
112 pipe_transport_options_block pipe_transport_option_defaults = {
114 NULL, /* allow_commands */
115 NULL, /* environment */
116 US"/bin:/usr/bin", /* path */
117 NULL, /* message_prefix (reset in init if not bsmtp) */
118 NULL, /* message_suffix (ditto) */
119 US mac_expanded_string(EX_TEMPFAIL) ":" /* temp_errors */
120 mac_expanded_string(EX_CANTCREAT),
121 NULL, /* check_string */
122 NULL, /* escape_string */
124 20480, /* max_output */
127 FALSE, /* force_command */
128 FALSE, /* freeze_exec_fail */
129 FALSE, /* freeze_signal */
130 FALSE, /* ignore_status */
131 FALSE, /* permit_coredump */
132 FALSE, /* restrict_to_path */
133 FALSE, /* timeout_defer */
134 FALSE, /* use_shell */
135 FALSE, /* use_bsmtp */
136 FALSE, /* use_classresources */
142 /*************************************************
143 * Setup entry point *
144 *************************************************/
146 /* Called for each delivery in the privileged state, just before the uid/gid
147 are changed and the main entry point is called. In a system that supports the
148 login_cap facilities, this function is used to set the class resource limits
149 for the user. It may also re-enable coredumps.
152 tblock points to the transport instance
153 addrlist addresses about to be delivered (not used)
154 dummy not used (doesn't pass back data)
155 uid the uid that will be set (not used)
156 gid the gid that will be set (not used)
157 errmsg where to put an error message
159 Returns: OK, FAIL, or DEFER
163 pipe_transport_setup(transport_instance *tblock, address_item *addrlist,
164 transport_feedback *dummy, uid_t uid, gid_t gid, uschar **errmsg)
166 pipe_transport_options_block *ob =
167 (pipe_transport_options_block *)(tblock->options_block);
169 addrlist = addrlist; /* Keep compiler happy */
176 #ifdef HAVE_SETCLASSRESOURCES
177 if (ob->use_classresources)
179 struct passwd *pw = getpwuid(uid);
182 login_cap_t *lc = login_getpwclass(pw);
185 setclassresources(lc);
193 if (ob->permit_coredump)
196 rl.rlim_cur = RLIM_INFINITY;
197 rl.rlim_max = RLIM_INFINITY;
198 if (setrlimit(RLIMIT_CORE, &rl) < 0)
200 #ifdef SETRLIMIT_NOT_SUPPORTED
201 if (errno != ENOSYS && errno != ENOTSUP)
203 log_write(0, LOG_MAIN,
204 "delivery setrlimit(RLIMIT_CORE, RLIM_INFINITY) failed: %s",
215 /*************************************************
216 * Initialization entry point *
217 *************************************************/
219 /* Called for each instance, after its options have been read, to
220 enable consistency checks to be done, or anything else that needs
224 pipe_transport_init(transport_instance *tblock)
226 pipe_transport_options_block *ob =
227 (pipe_transport_options_block *)(tblock->options_block);
229 /* Set up the setup entry point, to be called in the privileged state */
231 tblock->setup = pipe_transport_setup;
233 /* If pipe_as_creator is set, then uid/gid should not be set. */
235 if (tblock->deliver_as_creator && (tblock->uid_set || tblock->gid_set ||
236 tblock->expand_uid != NULL || tblock->expand_gid != NULL))
237 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
238 "both pipe_as_creator and an explicit uid/gid are set for the %s "
239 "transport", tblock->name);
241 /* If a fixed uid field is set, then a gid field must also be set. */
243 if (tblock->uid_set && !tblock->gid_set && tblock->expand_gid == NULL)
244 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
245 "user set without group for the %s transport", tblock->name);
247 /* Temp_errors must consist only of digits and colons, but there can be
248 spaces round the colons, so allow them too. */
250 if (ob->temp_errors != NULL && Ustrcmp(ob->temp_errors, "*") != 0)
252 size_t p = Ustrspn(ob->temp_errors, "0123456789: ");
253 if (ob->temp_errors[p] != 0)
254 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
255 "temp_errors must be a list of numbers or an asterisk for the %s "
256 "transport", tblock->name);
259 /* Only one of return_output/return_fail_output or log_output/log_fail_output
262 if (tblock->return_output && tblock->return_fail_output)
263 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
264 "both return_output and return_fail_output set for %s transport",
267 if (tblock->log_output && tblock->log_fail_output)
268 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
269 "both log_output and log_fail_output set for the %s transport",
272 /* If batch SMTP is set, force the check and escape strings, and arrange that
273 headers are also escaped. */
277 ob->check_string = US".";
278 ob->escape_string = US"..";
279 ob->options |= topt_escape_headers;
282 /* If not batch SMTP, and message_prefix or message_suffix are unset, insert
283 default values for them. */
287 if (ob->message_prefix == NULL) ob->message_prefix =
288 US"From ${if def:return_path{$return_path}{MAILER-DAEMON}} ${tod_bsdinbox}\n";
289 if (ob->message_suffix == NULL) ob->message_suffix = US"\n";
292 /* The restrict_to_path and use_shell options are incompatible */
294 if (ob->restrict_to_path && ob->use_shell)
295 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
296 "both restrict_to_path and use_shell set for %s transport",
299 /* The allow_commands and use_shell options are incompatible */
301 if (ob->allow_commands && ob->use_shell)
302 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
303 "both allow_commands and use_shell set for %s transport",
306 /* Set up the bitwise options for transport_write_message from the various
307 driver options. Only one of body_only and headers_only can be set. */
310 (tblock->body_only? topt_no_headers : 0) |
311 (tblock->headers_only? topt_no_body : 0) |
312 (tblock->return_path_add? topt_add_return_path : 0) |
313 (tblock->delivery_date_add? topt_add_delivery_date : 0) |
314 (tblock->envelope_to_add? topt_add_envelope_to : 0) |
315 (ob->use_crlf? topt_use_crlf : 0);
320 /*************************************************
321 * Set up direct (non-shell) command *
322 *************************************************/
324 /* This function is called when a command line is to be parsed by the transport
325 and executed directly, without the use of /bin/sh.
328 argvptr pointer to anchor for argv vector
329 cmd points to the command string
330 expand_arguments true if expansion is to occur
331 expand_fail error if expansion fails
332 addr chain of addresses
333 tname the transport name
334 ob the transport options block
336 Returns: TRUE if all went well; otherwise an error will be
337 set in the first address and FALSE returned
341 set_up_direct_command(const uschar ***argvptr, uschar *cmd,
342 BOOL expand_arguments, int expand_fail, address_item *addr, uschar *tname,
343 pipe_transport_options_block *ob)
345 BOOL permitted = FALSE;
348 /* Set up "transport <name>" to be put in any error messages, and then
349 call the common function for creating an argument list and expanding
350 the items if necessary. If it fails, this function fails (error information
351 is in the addresses). */
353 if (!transport_set_up_command(argvptr, cmd, expand_arguments, expand_fail,
354 addr, string_sprintf("%.50s transport", tname), NULL))
357 /* Point to the set-up arguments. */
361 /* If allow_commands is set, see if the command is in the permitted list. */
363 if (ob->allow_commands)
369 if (!(s = expand_string(ob->allow_commands)))
371 addr->transport_return = DEFER;
372 addr->message = string_sprintf("failed to expand string \"%s\" "
373 "for %s transport: %s", ob->allow_commands, tname, expand_string_message);
377 while ((p = string_nextinlist(&s, &sep, NULL, 0)))
378 if (Ustrcmp(p, argv[0]) == 0) { permitted = TRUE; break; }
381 /* If permitted is TRUE it means the command was found in the allowed list, and
382 no further checks are done. If permitted = FALSE, it either means
383 allow_commands wasn't set, or that the command didn't match anything in the
384 list. In both cases, if restrict_to_path is set, we fail if the command
385 contains any slashes, but if restrict_to_path is not set, we must fail the
386 command only if allow_commands is set. */
390 if (ob->restrict_to_path)
392 if (Ustrchr(argv[0], '/') != NULL)
394 addr->transport_return = FAIL;
395 addr->message = string_sprintf("\"/\" found in \"%s\" (command for %s "
396 "transport) - failed for security reasons", cmd, tname);
401 else if (ob->allow_commands)
403 addr->transport_return = FAIL;
404 addr->message = string_sprintf("\"%s\" command not permitted by %s "
405 "transport", argv[0], tname);
410 /* If the command is not an absolute path, search the PATH directories
413 if (argv[0][0] != '/')
417 const uschar *listptr = expand_string(ob->path);
419 while ((p = string_nextinlist(&listptr, &sep, NULL, 0)))
422 sprintf(CS big_buffer, "%.256s/%.256s", p, argv[0]);
423 if (Ustat(big_buffer, &statbuf) == 0)
425 argv[0] = string_copy(big_buffer);
431 addr->transport_return = FAIL;
432 addr->message = string_sprintf("\"%s\" command not found for %s transport",
442 /*************************************************
443 * Set up shell command *
444 *************************************************/
446 /* This function is called when a command line is to be passed to /bin/sh
447 without parsing inside the transport.
450 argvptr pointer to anchor for argv vector
451 cmd points to the command string
452 expand_arguments true if expansion is to occur
453 expand_fail error if expansion fails
454 addr chain of addresses
455 tname the transport name
457 Returns: TRUE if all went well; otherwise an error will be
458 set in the first address and FALSE returned
462 set_up_shell_command(const uschar ***argvptr, uschar *cmd,
463 BOOL expand_arguments, int expand_fail, address_item *addr, uschar *tname)
467 *argvptr = argv = store_get((4)*sizeof(uschar *), FALSE);
469 argv[0] = US"/bin/sh";
472 /* We have to take special action to handle the special "variable" called
473 $pipe_addresses, which is not recognized by the normal expansion function. */
475 if (expand_arguments)
477 uschar * p = Ustrstr(cmd, "pipe_addresses");
481 debug_printf("shell pipe command before expansion:\n %s\n", cmd);
483 /* Allow $recipients in the expansion iff it comes from a system filter */
485 f.enable_dollar_recipients = addr && addr->parent &&
486 Ustrcmp(addr->parent->address, "system-filter") == 0;
489 (p > cmd && p[-1] == '$') ||
490 (p > cmd + 1 && p[-2] == '$' && p[-1] == '{' && p[14] == '}')))
494 if (p[-1] == '{') { q++; p--; }
496 g = string_get(Ustrlen(cmd) + 64);
497 g = string_catn(g, cmd, p - cmd - 1);
499 for (address_item * ad = addr; ad; ad = ad->next)
501 /*XXX string_append_listele() ? */
502 if (ad != addr) g = string_catn(g, US" ", 1);
503 g = string_cat(g, ad->address);
506 g = string_cat(g, q);
507 argv[2] = (cmd = string_from_gstring(g)) ? expand_string(cmd) : NULL;
510 argv[2] = expand_string(cmd);
512 f.enable_dollar_recipients = FALSE;
516 addr->transport_return = f.search_find_defer ? DEFER : expand_fail;
517 addr->message = string_sprintf("Expansion of command \"%s\" "
518 "in %s transport failed: %s",
519 cmd, tname, expand_string_message);
524 debug_printf("shell pipe command after expansion:\n %s\n", argv[2]);
529 debug_printf("shell pipe command (no expansion):\n %s\n", cmd);
540 /*************************************************
542 *************************************************/
544 /* See local README for interface details. This transport always returns FALSE,
545 indicating that the status in the first address is the status for all addresses
549 pipe_transport_entry(
550 transport_instance *tblock, /* data for this instantiation */
551 address_item *addr) /* address(es) we are working on */
554 int fd_in, fd_out, rc;
558 pipe_transport_options_block *ob =
559 (pipe_transport_options_block *)(tblock->options_block);
560 int timeout = ob->timeout;
561 BOOL written_ok = FALSE;
562 BOOL expand_arguments;
565 const uschar *envlist = ob->environment;
567 uschar *eol = ob->use_crlf ? US"\r\n" : US"\n";
568 transport_ctx tctx = {
571 .check_string = ob->check_string,
572 .escape_string = ob->escape_string,
573 ob->options | topt_not_socket /* set at initialization time */
576 DEBUG(D_transport) debug_printf("%s transport entered\n", tblock->name);
578 /* Set up for the good case */
580 addr->transport_return = OK;
581 addr->basic_errno = 0;
583 /* Pipes are not accepted as general addresses, but they can be generated from
584 .forward files or alias files. In those cases, the pfr flag is set, and the
585 command to be obeyed is pointed to by addr->local_part; it starts with the pipe
586 symbol. In other cases, the command is supplied as one of the pipe transport's
589 if (testflag(addr, af_pfr) && addr->local_part[0] == '|')
590 if (ob->force_command)
592 /* Enables expansion of $address_pipe into separate arguments */
593 setflag(addr, af_force_command);
595 expand_arguments = TRUE;
600 cmd = addr->local_part + 1;
601 while (isspace(*cmd)) cmd++;
602 expand_arguments = testflag(addr, af_expand_pipe);
608 expand_arguments = TRUE;
612 /* If no command has been supplied, we are in trouble.
613 * We also check for an empty string since it may be
614 * coming from addr->local_part[0] == '|'
619 addr->transport_return = DEFER;
620 addr->message = string_sprintf("no command specified for %s transport",
626 addr->message = string_sprintf("Tainted '%s' (command "
627 "for %s transport) not permitted", cmd, tblock->name);
628 addr->transport_return = PANIC;
632 /* When a pipe is set up by a filter file, there may be values for $thisaddress
633 and numerical the variables in existence. These are passed in
634 addr->pipe_expandn for use here. */
636 if (expand_arguments && addr->pipe_expandn)
638 uschar **ss = addr->pipe_expandn;
640 if (*ss) filter_thisaddress = *ss++;
643 expand_nstring[++expand_nmax] = *ss;
644 expand_nlength[expand_nmax] = Ustrlen(*ss++);
648 /* The default way of processing the command is to split it up into arguments
649 here, and run it directly. This offers some security advantages. However, there
650 are installations that want by default to run commands under /bin/sh always, so
651 there is an option to do that. */
655 if (!set_up_shell_command(&argv, cmd, expand_arguments, expand_fail, addr,
656 tblock->name)) return FALSE;
658 else if (!set_up_direct_command(&argv, cmd, expand_arguments, expand_fail, addr,
659 tblock->name, ob)) return FALSE;
661 expand_nmax = -1; /* Reset */
662 filter_thisaddress = NULL;
664 /* Set up the environment for the command. */
666 envp[envcount++] = string_sprintf("LOCAL_PART=%s", deliver_localpart);
667 envp[envcount++] = string_sprintf("LOGNAME=%s", deliver_localpart);
668 envp[envcount++] = string_sprintf("USER=%s", deliver_localpart);
669 envp[envcount++] = string_sprintf("LOCAL_PART_PREFIX=%#s",
670 deliver_localpart_prefix);
671 envp[envcount++] = string_sprintf("LOCAL_PART_SUFFIX=%#s",
672 deliver_localpart_suffix);
673 envp[envcount++] = string_sprintf("DOMAIN=%s", deliver_domain);
674 envp[envcount++] = string_sprintf("HOME=%#s", deliver_home);
675 envp[envcount++] = string_sprintf("MESSAGE_ID=%s", message_id);
676 envp[envcount++] = string_sprintf("PATH=%s", expand_string(ob->path));
677 envp[envcount++] = string_sprintf("RECIPIENT=%#s%#s%#s@%#s",
678 deliver_localpart_prefix, deliver_localpart, deliver_localpart_suffix,
680 envp[envcount++] = string_sprintf("QUALIFY_DOMAIN=%s", qualify_domain_sender);
681 envp[envcount++] = string_sprintf("SENDER=%s", sender_address);
682 envp[envcount++] = US"SHELL=/bin/sh";
684 if (addr->host_list != NULL)
685 envp[envcount++] = string_sprintf("HOST=%s", addr->host_list->name);
687 if (f.timestamps_utc) envp[envcount++] = US"TZ=UTC";
688 else if (timezone_string != NULL && timezone_string[0] != 0)
689 envp[envcount++] = string_sprintf("TZ=%s", timezone_string);
691 /* Add any requested items */
694 if (!(envlist = expand_cstring(envlist)))
696 addr->transport_return = DEFER;
697 addr->message = string_sprintf("failed to expand string \"%s\" "
698 "for %s transport: %s", ob->environment, tblock->name,
699 expand_string_message);
703 while ((ss = string_nextinlist(&envlist, &envsep, big_buffer, big_buffer_size)))
705 if (envcount > nelem(envp) - 2)
707 addr->transport_return = DEFER;
708 addr->basic_errno = E2BIG;
709 addr->message = string_sprintf("too many environment settings for "
710 "%s transport", tblock->name);
713 envp[envcount++] = string_copy(ss);
716 envp[envcount] = NULL;
718 /* If the -N option is set, can't do any more. */
723 debug_printf("*** delivery by %s transport bypassed by -N option",
729 /* Handling the output from the pipe is tricky. If a file for catching this
730 output is provided, we could in theory just hand that fd over to the process,
731 but this isn't very safe because it might loop and carry on writing for
732 ever (which is exactly what happened in early versions of Exim). Therefore we
733 use the standard child_open() function, which creates pipes. We can then read
734 our end of the output pipe and count the number of bytes that come through,
735 chopping the sub-process if it exceeds some limit.
737 However, this means we want to run a sub-process with both its input and output
738 attached to pipes. We can't handle that easily from a single parent process
739 using straightforward code such as the transport_write_message() function
740 because the subprocess might not be reading its input because it is trying to
741 write to a full output pipe. The complication of redesigning the world to
742 handle this is too great - simpler just to run another process to do the
743 reading of the output pipe. */
746 /* As this is a local transport, we are already running with the required
747 uid/gid and current directory. Request that the new process be a process group
748 leader, so we can kill it and all its children on a timeout. */
750 if ((pid = child_open(USS argv, envp, ob->umask, &fd_in, &fd_out, TRUE)) < 0)
752 addr->transport_return = DEFER;
753 addr->message = string_sprintf(
754 "Failed to create child process for %s transport: %s", tblock->name,
760 /* Now fork a process to handle the output that comes down the pipe. */
762 if ((outpid = fork()) < 0)
764 addr->basic_errno = errno;
765 addr->transport_return = DEFER;
766 addr->message = string_sprintf(
767 "Failed to create process for handling output in %s transport",
774 /* This is the code for the output-handling subprocess. Read from the pipe
775 in chunks, and write to the return file if one is provided. Keep track of
776 the number of bytes handled. If the limit is exceeded, try to kill the
777 subprocess group, and in any case close the pipe and exit, which should cause
778 the subprocess to fail. */
784 set_process_info("reading output from |%s", cmd);
785 while ((rc = read(fd_out, big_buffer, big_buffer_size)) > 0)
787 if (addr->return_file >= 0)
788 if(write(addr->return_file, big_buffer, rc) != rc)
789 DEBUG(D_transport) debug_printf("Problem writing to return_file\n");
791 if (count > ob->max_output)
793 DEBUG(D_transport) debug_printf("Too much output from pipe - killed\n");
794 if (addr->return_file >= 0)
796 uschar *message = US"\n\n*** Too much output - remainder discarded ***\n";
797 rc = Ustrlen(message);
798 if(write(addr->return_file, message, rc) != rc)
799 DEBUG(D_transport) debug_printf("Problem writing to return_file\n");
801 killpg(pid, SIGKILL);
809 (void)close(fd_out); /* Not used in this process */
812 /* Carrying on now with the main parent process. Attempt to write the message
813 to it down the pipe. It is a fallacy to think that you can detect write errors
814 when the sub-process fails to read the pipe. The parent process may complete
815 writing and close the pipe before the sub-process completes. We could sleep a
816 bit here to let the sub-process get going, but it may still not complete. So we
817 ignore all writing errors. (When in the test harness, we do do a short sleep so
818 any debugging output is likely to be in the same order.) */
820 testharness_pause_ms(500);
822 DEBUG(D_transport) debug_printf("Writing message to pipe\n");
824 /* Arrange to time out writes if there is a timeout set. */
828 sigalrm_seen = FALSE;
829 transport_write_timeout = timeout;
832 /* Reset the counter of bytes written */
836 /* First write any configured prefix information */
838 if (ob->message_prefix)
840 uschar *prefix = expand_string(ob->message_prefix);
843 addr->transport_return = f.search_find_defer? DEFER : PANIC;
844 addr->message = string_sprintf("Expansion of \"%s\" (prefix for %s "
845 "transport) failed: %s", ob->message_prefix, tblock->name,
846 expand_string_message);
849 if (!transport_write_block(&tctx, prefix, Ustrlen(prefix), FALSE))
853 /* If the use_bsmtp option is set, we need to write SMTP prefix information.
854 The various different values for batching are handled outside; if there is more
855 than one address available here, all must be included. Force SMTP dot-handling.
860 if (!transport_write_string(fd_in, "MAIL FROM:<%s>%s", return_path, eol))
863 for (address_item * a = addr; a; a = a->next)
864 if (!transport_write_string(fd_in,
866 transport_rcpt_address(a, tblock->rcpt_include_affixes),
870 if (!transport_write_string(fd_in, "DATA%s", eol)) goto END_WRITE;
873 /* Now the actual message */
875 if (!transport_write_message(&tctx, 0))
878 /* Now any configured suffix */
880 if (ob->message_suffix)
882 uschar *suffix = expand_string(ob->message_suffix);
885 addr->transport_return = f.search_find_defer? DEFER : PANIC;
886 addr->message = string_sprintf("Expansion of \"%s\" (suffix for %s "
887 "transport) failed: %s", ob->message_suffix, tblock->name,
888 expand_string_message);
891 if (!transport_write_block(&tctx, suffix, Ustrlen(suffix), FALSE))
895 /* If local_smtp, write the terminating dot. */
897 if (ob->use_bsmtp && !transport_write_string(fd_in, ".%s", eol))
900 /* Flag all writing completed successfully. */
904 /* Come here if there are errors during writing. */
908 /* OK, the writing is now all done. Close the pipe. */
912 /* Handle errors during writing. For timeouts, set the timeout for waiting for
913 the child process to 1 second. If the process at the far end of the pipe died
914 without reading all of it, we expect an EPIPE error, which should be ignored.
915 We used also to ignore WRITEINCOMPLETE but the writing function is now cleverer
916 at handling OS where the death of a pipe doesn't give EPIPE immediately. See
921 if (errno == ETIMEDOUT)
923 addr->message = string_sprintf("%stimeout while writing to pipe",
924 f.transport_filter_timed_out ? "transport filter " : "");
925 addr->transport_return = ob->timeout_defer? DEFER : FAIL;
928 else if (errno == EPIPE)
930 debug_printf("transport error EPIPE ignored\n");
934 addr->transport_return = PANIC;
935 addr->basic_errno = errno;
936 if (errno == ERRNO_CHHEADER_FAIL)
938 string_sprintf("Failed to expand headers_add or headers_remove: %s",
939 expand_string_message);
940 else if (errno == ERRNO_FILTER_FAIL)
941 addr->message = string_sprintf("Transport filter process failed (%d)%s",
943 (addr->more_errno == EX_EXECFAILED)? ": unable to execute command" : "");
944 else if (errno == ERRNO_WRITEINCOMPLETE)
945 addr->message = US"Failed repeatedly to write data";
947 addr->message = string_sprintf("Error %d", errno);
952 /* Wait for the child process to complete and take action if the returned
953 status is nonzero. The timeout will be just 1 second if any of the writes
956 if ((rc = child_close(pid, timeout)) != 0)
958 uschar * tmsg = addr->message
959 ? string_sprintf(" (preceded by %s)", addr->message) : US"";
961 /* The process did not complete in time; kill its process group and fail
962 the delivery. It appears to be necessary to kill the output process too, as
963 otherwise it hangs on for some time if the actual pipe process is sleeping.
964 (At least, that's what I observed on Solaris 2.5.1.) Since we are failing
965 the delivery, that shouldn't cause any problem. */
969 killpg(pid, SIGKILL);
970 kill(outpid, SIGKILL);
971 addr->transport_return = ob->timeout_defer? DEFER : FAIL;
972 addr->message = string_sprintf("pipe delivery process timed out%s", tmsg);
979 addr->transport_return = PANIC;
980 addr->message = string_sprintf("Wait() failed for child process of %s "
981 "transport: %s%s", tblock->name, strerror(errno), tmsg);
984 /* Since the transport_filter timed out we assume it has sent the child process
985 a malformed or incomplete data stream. Kill off the child process
986 and prevent checking its exit status as it will has probably exited in error.
987 This prevents the transport_filter timeout message from getting overwritten
988 by the exit error which is not the cause of the problem. */
990 else if (f.transport_filter_timed_out)
992 killpg(pid, SIGKILL);
993 kill(outpid, SIGKILL);
996 /* Either the process completed, but yielded a non-zero (necessarily
997 positive) status, or the process was terminated by a signal (rc will contain
998 the negation of the signal number). Treat killing by signal as failure unless
999 status is being ignored. By default, the message is bounced back, unless
1000 freeze_signal is set, in which case it is frozen instead. */
1004 if (ob->freeze_signal)
1006 addr->transport_return = DEFER;
1007 addr->special_action = SPECIAL_FREEZE;
1008 addr->message = string_sprintf("Child process of %s transport (running "
1009 "command \"%s\") was terminated by signal %d (%s)%s", tblock->name, cmd,
1010 -rc, os_strsignal(-rc), tmsg);
1012 else if (!ob->ignore_status)
1014 addr->transport_return = FAIL;
1015 addr->message = string_sprintf("Child process of %s transport (running "
1016 "command \"%s\") was terminated by signal %d (%s)%s", tblock->name, cmd,
1017 -rc, os_strsignal(-rc), tmsg);
1021 /* For positive values (process terminated with non-zero status), we need a
1022 status code to request deferral. A number of systems contain the following
1025 #define EX_TEMPFAIL 75
1027 with the description
1029 EX_TEMPFAIL -- temporary failure, indicating something that
1030 is not really an error. In sendmail, this means
1031 that a mailer (e.g.) could not create a connection,
1032 and the request should be reattempted later.
1034 Based on this, we use exit code EX_TEMPFAIL as a default to mean "defer" when
1035 not ignoring the returned status. However, there is now an option that
1036 contains a list of temporary codes, with TEMPFAIL and CANTCREAT as defaults.
1038 Another case that needs special treatment is if execve() failed (typically
1039 the command that was given is a non-existent path). By default this is
1040 treated as just another failure, but if freeze_exec_fail is set, the reaction
1041 is to freeze the message rather than bounce the address. Exim used to signal
1042 this failure with EX_UNAVAILABLE, which is defined in many systems as
1044 #define EX_UNAVAILABLE 69
1046 with the description
1048 EX_UNAVAILABLE -- A service is unavailable. This can occur
1049 if a support program or file does not exist. This
1050 can also be used as a catchall message when something
1051 you wanted to do doesn't work, but you don't know why.
1053 However, this can be confused with a command that actually returns 69 because
1054 something *it* wanted is unavailable. At release 4.21, Exim was changed to
1055 use return code 127 instead, because this is what the shell returns when it
1056 is unable to exec a command. We define it as EX_EXECFAILED, and use it in
1057 child.c to signal execve() failure and other unexpected failures such as
1058 setuid() not working - though that won't be the case here because we aren't
1063 /* Always handle execve() failure specially if requested to */
1065 if (ob->freeze_exec_fail && rc == EX_EXECFAILED)
1067 addr->transport_return = DEFER;
1068 addr->special_action = SPECIAL_FREEZE;
1069 addr->message = string_sprintf("pipe process failed to exec \"%s\"%s",
1073 /* Otherwise take action only if not ignoring status */
1075 else if (!ob->ignore_status)
1080 /* If temp_errors is "*" all codes are temporary. Initialization checks
1081 that it's either "*" or a list of numbers. If not "*", scan the list of
1082 temporary failure codes; if any match, the result is DEFER. */
1084 if (ob->temp_errors[0] == '*')
1085 addr->transport_return = DEFER;
1089 const uschar *s = ob->temp_errors;
1093 addr->transport_return = FAIL;
1094 while ((p = string_nextinlist(&s,&sep,NULL,0)))
1095 if (rc == Uatoi(p)) { addr->transport_return = DEFER; break; }
1098 /* Ensure the message contains the expanded command and arguments. This
1099 doesn't have to be brilliantly efficient - it is an error situation. */
1101 addr->message = string_sprintf("Child process of %s transport returned "
1102 "%d", tblock->name, rc);
1103 g = string_cat(NULL, addr->message);
1105 /* If the return code is > 128, it often means that a shell command
1106 was terminated by a signal. */
1109 string_sprintf("(could mean shell command ended by signal %d (%s))",
1110 rc-128, os_strsignal(rc-128)) :
1115 g = string_catn(g, US" ", 1);
1116 g = string_cat (g, ss);
1119 /* Now add the command and arguments */
1121 g = string_catn(g, US" from command:", 14);
1123 for (int i = 0; i < sizeof(argv)/sizeof(int *) && argv[i] != NULL; i++)
1126 g = string_catn(g, US" ", 1);
1127 if (Ustrpbrk(argv[i], " \t") != NULL)
1130 g = string_catn(g, US"\"", 1);
1132 g = string_cat(g, argv[i]);
1134 g = string_catn(g, US"\"", 1);
1137 /* Add previous filter timeout message, if present. */
1140 g = string_cat(g, tmsg);
1142 addr->message = string_from_gstring(g);
1147 /* Ensure all subprocesses (in particular, the output handling process)
1148 are complete before we pass this point. */
1150 while (wait(&rc) >= 0);
1152 DEBUG(D_transport) debug_printf("%s transport yielded %d\n", tblock->name,
1153 addr->transport_return);
1155 /* If there has been a problem, the message in addr->message contains details
1156 of the pipe command. We don't want to expose these to the world, so we set up
1157 something bland to return to the sender. */
1159 if (addr->transport_return != OK)
1160 addr->user_message = US"local delivery failed";
1165 #endif /*!MACRO_PREDEF*/
1166 /* End of transport/pipe.c */