60a20c8fe87d7500ba418a8e52a700b32df901c2
[exim.git] / src / src / transports / pipe.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) The Exim maintainers 2020 - 2023 */
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-or-later */
9
10
11 #include "../exim.h"
12
13 #ifdef TRANSPORT_PIPE   /* Remainder of file */
14 #include "pipe.h"
15
16 #ifdef HAVE_SETCLASSRESOURCES
17 #include <login_cap.h>
18 #endif
19
20
21
22 /* Options specific to the pipe transport. They must be in alphabetic
23 order (note that "_" comes before the lower case letters). Those starting
24 with "*" are not settable by the user but are used by the option-reading
25 software for alternative value types. Some options are stored in the transport
26 instance block so as to be publicly visible; these are flagged with opt_public.
27 */
28 #define LOFF(field) OPT_OFF(pipe_transport_options_block, field)
29
30 optionlist pipe_transport_options[] = {
31   { "allow_commands",    opt_stringptr, LOFF(allow_commands) },
32   { "batch_id",          opt_stringptr | opt_public,
33       OPT_OFF(transport_instance, batch_id) },
34   { "batch_max",         opt_int | opt_public,
35       OPT_OFF(transport_instance, batch_max) },
36   { "check_string",      opt_stringptr, LOFF(check_string) },
37   { "command",           opt_stringptr, LOFF(cmd) },
38   { "environment",       opt_stringptr, LOFF(environment) },
39   { "escape_string",     opt_stringptr, LOFF(escape_string) },
40   { "force_command",         opt_bool,  LOFF(force_command) },
41   { "freeze_exec_fail",  opt_bool,      LOFF(freeze_exec_fail) },
42   { "freeze_signal",     opt_bool,      LOFF(freeze_signal) },
43   { "ignore_status",     opt_bool,      LOFF(ignore_status) },
44   { "log_defer_output",  opt_bool | opt_public,
45       OPT_OFF(transport_instance, log_defer_output) },
46   { "log_fail_output",   opt_bool | opt_public,
47       OPT_OFF(transport_instance, log_fail_output) },
48   { "log_output",        opt_bool | opt_public,
49       OPT_OFF(transport_instance, log_output) },
50   { "max_output",        opt_mkint,     LOFF(max_output) },
51   { "message_prefix",    opt_stringptr, LOFF(message_prefix) },
52   { "message_suffix",    opt_stringptr, LOFF(message_suffix) },
53   { "path",              opt_stringptr, LOFF(path) },
54   { "permit_coredump",   opt_bool,      LOFF(permit_coredump) },
55   { "pipe_as_creator",   opt_bool | opt_public,
56       OPT_OFF(transport_instance, deliver_as_creator) },
57   { "restrict_to_path",  opt_bool,      LOFF(restrict_to_path) },
58   { "return_fail_output",opt_bool | opt_public,
59       OPT_OFF(transport_instance, return_fail_output) },
60   { "return_output",     opt_bool | opt_public,
61       OPT_OFF(transport_instance, return_output) },
62   { "temp_errors",       opt_stringptr, LOFF(temp_errors) },
63   { "timeout",           opt_time,      LOFF(timeout) },
64   { "timeout_defer",     opt_bool,      LOFF(timeout_defer) },
65   { "umask",             opt_octint,    LOFF(umask) },
66   { "use_bsmtp",         opt_bool,      LOFF(use_bsmtp) },
67   #ifdef HAVE_SETCLASSRESOURCES
68   { "use_classresources", opt_bool,     LOFF(use_classresources) },
69   #endif
70   { "use_crlf",          opt_bool,      LOFF(use_crlf) },
71   { "use_shell",         opt_bool,      LOFF(use_shell) },
72 };
73
74 /* Size of the options list. An extern variable has to be used so that its
75 address can appear in the tables drtables.c. */
76
77 int pipe_transport_options_count =
78   sizeof(pipe_transport_options)/sizeof(optionlist);
79
80
81 #ifdef MACRO_PREDEF
82
83 /* Dummy values */
84 pipe_transport_options_block pipe_transport_option_defaults = {0};
85 void pipe_transport_init(transport_instance *tblock) {}
86 BOOL pipe_transport_entry(transport_instance *tblock, address_item *addr) {return FALSE;}
87
88 #else   /*!MACRO_PREDEF*/
89
90
91 /* Default private options block for the pipe transport. */
92
93 pipe_transport_options_block pipe_transport_option_defaults = {
94   .path =       US"/bin:/usr/bin",
95   .temp_errors = US mac_expanded_string(EX_TEMPFAIL) ":"
96                    mac_expanded_string(EX_CANTCREAT),
97   .umask =      022,
98   .max_output = 20480,
99   .timeout =    60*60,
100   /* all others null/zero/false */
101 };
102
103
104
105 /*************************************************
106 *              Setup entry point                 *
107 *************************************************/
108
109 /* Called for each delivery in the privileged state, just before the uid/gid
110 are changed and the main entry point is called. In a system that supports the
111 login_cap facilities, this function is used to set the class resource limits
112 for the user.  It may also re-enable coredumps.
113
114 Arguments:
115   tblock     points to the transport instance
116   addrlist   addresses about to be delivered (not used)
117   dummy      not used (doesn't pass back data)
118   uid        the uid that will be set (not used)
119   gid        the gid that will be set (not used)
120   errmsg     where to put an error message
121
122 Returns:     OK, FAIL, or DEFER
123 */
124
125 static int
126 pipe_transport_setup(transport_instance *tblock, address_item *addrlist,
127   transport_feedback *dummy, uid_t uid, gid_t gid, uschar **errmsg)
128 {
129 pipe_transport_options_block *ob =
130   (pipe_transport_options_block *)(tblock->options_block);
131
132 #ifdef HAVE_SETCLASSRESOURCES
133 if (ob->use_classresources)
134   {
135   struct passwd *pw = getpwuid(uid);
136   if (pw != NULL)
137     {
138     login_cap_t *lc = login_getpwclass(pw);
139     if (lc != NULL)
140       {
141       setclassresources(lc);
142       login_close(lc);
143       }
144     }
145   }
146 #endif
147
148 #ifdef RLIMIT_CORE
149 if (ob->permit_coredump)
150   {
151   struct rlimit rl;
152   rl.rlim_cur = RLIM_INFINITY;
153   rl.rlim_max = RLIM_INFINITY;
154   if (setrlimit(RLIMIT_CORE, &rl) < 0)
155     {
156 #ifdef SETRLIMIT_NOT_SUPPORTED
157     if (errno != ENOSYS && errno != ENOTSUP)
158 #endif
159       log_write(0, LOG_MAIN,
160           "delivery setrlimit(RLIMIT_CORE, RLIM_INFINITY) failed: %s",
161           strerror(errno));
162     }
163   }
164 #endif
165
166 return OK;
167 }
168
169
170
171 /*************************************************
172 *          Initialization entry point            *
173 *************************************************/
174
175 /* Called for each instance, after its options have been read, to
176 enable consistency checks to be done, or anything else that needs
177 to be set up. */
178
179 void
180 pipe_transport_init(transport_instance *tblock)
181 {
182 pipe_transport_options_block *ob =
183   (pipe_transport_options_block *)(tblock->options_block);
184
185 /* Set up the setup entry point, to be called in the privileged state */
186
187 tblock->setup = pipe_transport_setup;
188
189 /* If pipe_as_creator is set, then uid/gid should not be set. */
190
191 if (tblock->deliver_as_creator && (tblock->uid_set || tblock->gid_set ||
192   tblock->expand_uid != NULL || tblock->expand_gid != NULL))
193     log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
194       "both pipe_as_creator and an explicit uid/gid are set for the %s "
195         "transport", tblock->name);
196
197 /* If a fixed uid field is set, then a gid field must also be set. */
198
199 if (tblock->uid_set && !tblock->gid_set && tblock->expand_gid == NULL)
200   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
201     "user set without group for the %s transport", tblock->name);
202
203 /* Temp_errors must consist only of digits and colons, but there can be
204 spaces round the colons, so allow them too. */
205
206 if (ob->temp_errors != NULL && Ustrcmp(ob->temp_errors, "*") != 0)
207   {
208   size_t p = Ustrspn(ob->temp_errors, "0123456789: ");
209   if (ob->temp_errors[p] != 0)
210     log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
211       "temp_errors must be a list of numbers or an asterisk for the %s "
212       "transport", tblock->name);
213   }
214
215 /* Only one of return_output/return_fail_output or log_output/log_fail_output
216 should be set. */
217
218 if (tblock->return_output && tblock->return_fail_output)
219   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
220     "both return_output and return_fail_output set for %s transport",
221     tblock->name);
222
223 if (tblock->log_output && tblock->log_fail_output)
224   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
225     "both log_output and log_fail_output set for the %s transport",
226     tblock->name);
227
228 /* If batch SMTP is set, force the check and escape strings, and arrange that
229 headers are also escaped. */
230
231 if (ob->use_bsmtp)
232   {
233   ob->check_string = US".";
234   ob->escape_string = US"..";
235   ob->options |= topt_escape_headers;
236   }
237
238 /* If not batch SMTP, and message_prefix or message_suffix are unset, insert
239 default values for them. */
240
241 else
242   {
243   if (ob->message_prefix == NULL) ob->message_prefix =
244     US"From ${if def:return_path{$return_path}{MAILER-DAEMON}} ${tod_bsdinbox}\n";
245   if (ob->message_suffix == NULL) ob->message_suffix = US"\n";
246   }
247
248 /* The restrict_to_path  and use_shell options are incompatible */
249
250 if (ob->restrict_to_path && ob->use_shell)
251   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
252     "both restrict_to_path and use_shell set for %s transport",
253     tblock->name);
254
255 /* The allow_commands and use_shell options are incompatible */
256
257 if (ob->allow_commands && ob->use_shell)
258   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
259     "both allow_commands and use_shell set for %s transport",
260     tblock->name);
261
262 /* Set up the bitwise options for transport_write_message from the various
263 driver options. Only one of body_only and headers_only can be set. */
264
265 ob->options |=
266     (tblock->body_only ? topt_no_headers : 0)
267   | (tblock->headers_only ? topt_no_body : 0)
268   | (tblock->return_path_add ? topt_add_return_path : 0)
269   | (tblock->delivery_date_add ? topt_add_delivery_date : 0)
270   | (tblock->envelope_to_add ? topt_add_envelope_to : 0)
271   | (ob->use_crlf ? topt_use_crlf : 0);
272 }
273
274
275
276 /*************************************************
277 *          Set up direct (non-shell) command     *
278 *************************************************/
279
280 /* This function is called when a command line is to be parsed by the transport
281 and executed directly, without the use of /bin/sh.
282
283 Arguments:
284   argvptr            pointer to anchor for argv vector
285   cmd                points to the command string
286   expand_arguments   true if expansion is to occur
287   expand_fail        error if expansion fails
288   addr               chain of addresses
289   tname              the transport name
290   ob                 the transport options block
291
292 Returns:             TRUE if all went well; otherwise an error will be
293                      set in the first address and FALSE returned
294 */
295
296 static BOOL
297 set_up_direct_command(const uschar *** argvptr, const uschar * cmd,
298   BOOL expand_arguments, int expand_fail, address_item * addr, uschar * tname,
299   pipe_transport_options_block * ob)
300 {
301 BOOL permitted = FALSE;
302 const uschar **argv;
303
304 /* Set up "transport <name>" to be put in any error messages, and then
305 call the common function for creating an argument list and expanding
306 the items if necessary. If it fails, this function fails (error information
307 is in the addresses). */
308
309 if (!transport_set_up_command(argvptr, cmd,
310       expand_arguments ? TSUC_EXPAND_ARGS : 0,
311       expand_fail, addr, string_sprintf("%.50s transport", tname), NULL))
312   return FALSE;
313
314 /* Point to the set-up arguments. */
315
316 argv = *argvptr;
317
318 /* If allow_commands is set, see if the command is in the permitted list. */
319
320 GET_OPTION("allow_commands");
321 if (ob->allow_commands)
322   {
323   int sep = 0;
324   const uschar *s;
325   uschar *p;
326
327   if (!(s = expand_string(ob->allow_commands)))
328     {
329     addr->transport_return = DEFER;
330     addr->message = string_sprintf("failed to expand string \"%s\" "
331       "for %s transport: %s", ob->allow_commands, tname, expand_string_message);
332     return FALSE;
333     }
334
335   while ((p = string_nextinlist(&s, &sep, NULL, 0)))
336     if (Ustrcmp(p, argv[0]) == 0) { permitted = TRUE; break; }
337   }
338
339 /* If permitted is TRUE it means the command was found in the allowed list, and
340 no further checks are done. If permitted = FALSE, it either means
341 allow_commands wasn't set, or that the command didn't match anything in the
342 list. In both cases, if restrict_to_path is set, we fail if the command
343 contains any slashes, but if restrict_to_path is not set, we must fail the
344 command only if allow_commands is set. */
345
346 if (!permitted)
347   {
348   if (ob->restrict_to_path)
349     {
350     if (Ustrchr(argv[0], '/') != NULL)
351       {
352       addr->transport_return = FAIL;
353       addr->message = string_sprintf("\"/\" found in \"%s\" (command for %s "
354         "transport) - failed for security reasons", cmd, tname);
355       return FALSE;
356       }
357     }
358
359   else if (ob->allow_commands)
360     {
361     addr->transport_return = FAIL;
362     addr->message = string_sprintf("\"%s\" command not permitted by %s "
363       "transport", argv[0], tname);
364     return FALSE;
365     }
366   }
367
368 /* If the command is not an absolute path, search the PATH directories
369 for it. */
370
371 if (argv[0][0] != '/')
372   {
373   int sep = 0;
374   uschar * p;
375
376   GET_OPTION("path");
377   for (const uschar * listptr = expand_string(ob->path);
378       p = string_nextinlist(&listptr, &sep, NULL, 0); )
379     {
380     struct stat statbuf;
381     sprintf(CS big_buffer, "%.256s/%.256s", p, argv[0]);
382     if (Ustat(big_buffer, &statbuf) == 0)
383       {
384       argv[0] = string_copy(big_buffer);
385       break;
386       }
387     }
388   if (!p)
389     {
390     addr->transport_return = FAIL;
391     addr->message = string_sprintf("\"%s\" command not found for %s transport",
392       argv[0], tname);
393     return FALSE;
394     }
395   }
396
397 return TRUE;
398 }
399
400
401 /*************************************************
402 *               Set up shell command             *
403 *************************************************/
404
405 /* This function is called when a command line is to be passed to /bin/sh
406 without parsing inside the transport.
407
408 Arguments:
409   argvptr            pointer to anchor for argv vector
410   cmd                points to the command string
411   expand_arguments   true if expansion is to occur
412   expand_fail        error if expansion fails
413   addr               chain of addresses
414   tname              the transport name
415
416 Returns:             TRUE if all went well; otherwise an error will be
417                      set in the first address and FALSE returned
418 */
419
420 static BOOL
421 set_up_shell_command(const uschar *** argvptr, const uschar * cmd,
422   BOOL expand_arguments, int expand_fail, address_item * addr, uschar * tname)
423 {
424 const uschar **argv;
425
426 *argvptr = argv = store_get((4)*sizeof(uschar *), GET_UNTAINTED);
427
428 argv[0] = US"/bin/sh";
429 argv[1] = US"-c";
430
431 /* We have to take special action to handle the special "variable" called
432 $pipe_addresses, which is not recognized by the normal expansion function. */
433
434 if (expand_arguments)
435   {
436   uschar * p = Ustrstr(cmd, "pipe_addresses");
437   gstring * g = NULL;
438
439   DEBUG(D_transport)
440     debug_printf("shell pipe command before expansion:\n  %s\n", cmd);
441
442   /* Allow $recipients in the expansion iff it comes from a system filter */
443
444   f.enable_dollar_recipients = addr && addr->parent &&
445     Ustrcmp(addr->parent->address, "system-filter") == 0;
446
447   if (p != NULL && (
448          (p > cmd && p[-1] == '$') ||
449          (p > cmd + 1 && p[-2] == '$' && p[-1] == '{' && p[14] == '}')))
450     {
451     uschar *q = p + 14;
452
453     if (p[-1] == '{') { q++; p--; }
454
455     g = string_get(Ustrlen(cmd) + 64);
456     g = string_catn(g, cmd, p - cmd - 1);
457
458     for (address_item * ad = addr; ad; ad = ad->next)
459       {
460       DEBUG(D_transport) if (is_tainted(ad->address))
461         debug_printf("tainted element '%s' from $pipe_addresses\n", ad->address);
462
463       /*XXX string_append_listele() ? */
464       if (ad != addr) g = string_catn(g, US" ", 1);
465       g = string_cat(g, ad->address);
466       }
467
468     g = string_cat(g, q);
469     argv[2] = (cmd = string_from_gstring(g)) ? expand_cstring(cmd) : NULL;
470     }
471   else
472     argv[2] = expand_cstring(cmd);
473
474   f.enable_dollar_recipients = FALSE;
475
476   if (!argv[2])
477     {
478     addr->transport_return = f.search_find_defer ? DEFER : expand_fail;
479     addr->message = string_sprintf("Expansion of command \"%s\" "
480       "in %s transport failed: %s",
481       cmd, tname, expand_string_message);
482     return FALSE;
483     }
484
485   DEBUG(D_transport)
486     debug_printf("shell pipe command after expansion:\n  %s\n", argv[2]);
487   }
488 else
489   {
490   DEBUG(D_transport)
491     debug_printf("shell pipe command (no expansion):\n  %s\n", cmd);
492   argv[2] = cmd;
493   }
494
495 argv[3] = US 0;
496 return TRUE;
497 }
498
499
500
501
502 /*************************************************
503 *              Main entry point                  *
504 *************************************************/
505
506 /* See local README for interface details. This transport always returns FALSE,
507 indicating that the status in the first address is the status for all addresses
508 in a batch. */
509
510 BOOL
511 pipe_transport_entry(
512   transport_instance *tblock,      /* data for this instantiation */
513   address_item *addr)              /* address(es) we are working on */
514 {
515 pid_t pid, outpid;
516 int fd_in, fd_out, rc;
517 int envcount = 0;
518 int envsep = 0;
519 int expand_fail;
520 pipe_transport_options_block *ob =
521   (pipe_transport_options_block *)(tblock->options_block);
522 int timeout = ob->timeout;
523 BOOL written_ok = FALSE;
524 BOOL expand_arguments;
525 const uschar ** argv;
526 uschar * envp[50];
527 const uschar * envlist = ob->environment;
528 const uschar * cmd;
529 uschar * ss;
530 uschar * eol = ob->use_crlf ? US"\r\n" : US"\n";
531 transport_ctx tctx = {
532   .tblock = tblock,
533   .addr = addr,
534   .check_string = ob->check_string,
535   .escape_string = ob->escape_string,
536   ob->options | topt_not_socket /* set at initialization time */
537 };
538
539 DEBUG(D_transport) debug_printf("%s transport entered\n", tblock->name);
540
541 /* Set up for the good case */
542
543 addr->transport_return = OK;
544 addr->basic_errno = 0;
545
546 /* Pipes are not accepted as general addresses, but they can be generated from
547 .forward files or alias files. In those cases, the pfr flag is set, and the
548 command to be obeyed is pointed to by addr->local_part; it starts with the pipe
549 symbol. In other cases, the command is supplied as one of the pipe transport's
550 options. */
551
552 if (testflag(addr, af_pfr) && addr->local_part[0] == '|')
553   if (ob->force_command)
554     {
555     /* Enables expansion of $address_pipe into separate arguments */
556     setflag(addr, af_force_command);
557     GET_OPTION("commsnd");
558     cmd = ob->cmd;
559     expand_arguments = TRUE;
560     expand_fail = PANIC;
561     }
562   else
563     {
564     cmd = addr->local_part + 1;
565     while (isspace(*cmd)) cmd++;
566     expand_arguments = testflag(addr, af_expand_pipe);
567     expand_fail = FAIL;
568     }
569 else
570   {
571   GET_OPTION("commsnd");
572   cmd = ob->cmd;
573   expand_arguments = TRUE;
574   expand_fail = PANIC;
575   }
576
577 /* If no command has been supplied, we are in trouble.
578 We also check for an empty string since it may be
579 coming from addr->local_part[0] == '|' */
580
581 if (!cmd || !*cmd)
582   {
583   addr->transport_return = DEFER;
584   addr->message = string_sprintf("no command specified for %s transport",
585     tblock->name);
586   return FALSE;
587   }
588 if (is_tainted(cmd))
589   {
590   DEBUG(D_transport) debug_printf("cmd '%s' is tainted\n", cmd);
591   addr->message = string_sprintf("Tainted '%s' (command "
592     "for %s transport) not permitted", cmd, tblock->name);
593   addr->transport_return = PANIC;
594   return FALSE;
595   }
596
597 /* When a pipe is set up by a filter file, there may be values for $thisaddress
598 and numerical the variables in existence. These are passed in
599 addr->pipe_expandn for use here. */
600
601 if (expand_arguments && addr->pipe_expandn)
602   {
603   uschar **ss = addr->pipe_expandn;
604   expand_nmax = -1;
605   if (*ss) filter_thisaddress = *ss++;
606   while (*ss)
607     {
608     expand_nstring[++expand_nmax] = *ss;
609     expand_nlength[expand_nmax] = Ustrlen(*ss++);
610     }
611   }
612
613 /* The default way of processing the command is to split it up into arguments
614 here, and run it directly. This offers some security advantages. However, there
615 are installations that want by default to run commands under /bin/sh always, so
616 there is an option to do that. */
617
618 if (ob->use_shell)
619   {
620   if (!set_up_shell_command(&argv, cmd, expand_arguments, expand_fail, addr,
621     tblock->name)) return FALSE;
622   }
623 else if (!set_up_direct_command(&argv, cmd, expand_arguments, expand_fail, addr,
624   tblock->name, ob)) return FALSE;
625
626 expand_nmax = -1;           /* Reset */
627 filter_thisaddress = NULL;
628
629 /* Set up the environment for the command. */
630
631 envp[envcount++] = string_sprintf("LOCAL_PART=%s", deliver_localpart);
632 envp[envcount++] = string_sprintf("LOGNAME=%s", deliver_localpart);
633 envp[envcount++] = string_sprintf("USER=%s", deliver_localpart);
634 envp[envcount++] = string_sprintf("LOCAL_PART_PREFIX=%#s",
635   deliver_localpart_prefix);
636 envp[envcount++] = string_sprintf("LOCAL_PART_SUFFIX=%#s",
637   deliver_localpart_suffix);
638 envp[envcount++] = string_sprintf("DOMAIN=%s", deliver_domain);
639 envp[envcount++] = string_sprintf("HOME=%#s", deliver_home);
640 envp[envcount++] = string_sprintf("MESSAGE_ID=%s", message_id);
641 envp[envcount++] = string_sprintf("PATH=%s", expand_string(ob->path));
642 envp[envcount++] = string_sprintf("RECIPIENT=%#s%#s%#s@%#s",
643   deliver_localpart_prefix, deliver_localpart, deliver_localpart_suffix,
644   deliver_domain);
645 envp[envcount++] = string_sprintf("QUALIFY_DOMAIN=%s", qualify_domain_sender);
646 envp[envcount++] = string_sprintf("SENDER=%s", sender_address);
647 envp[envcount++] = US"SHELL=/bin/sh";
648
649 if (addr->host_list)
650   envp[envcount++] = string_sprintf("HOST=%s", addr->host_list->name);
651
652 if (f.timestamps_utc)
653   envp[envcount++] = US"TZ=UTC";
654 else if (timezone_string && timezone_string[0])
655   envp[envcount++] = string_sprintf("TZ=%s", timezone_string);
656
657 /* Add any requested items */
658
659 GET_OPTION("environment");
660 if (envlist)
661   if (!(envlist = expand_cstring(envlist)))
662     {
663     addr->transport_return = DEFER;
664     addr->message = string_sprintf("failed to expand string \"%s\" "
665       "for %s transport: %s", ob->environment, tblock->name,
666       expand_string_message);
667     return FALSE;
668     }
669
670 while ((ss = string_nextinlist(&envlist, &envsep, NULL, 0)))
671    {
672    if (envcount > nelem(envp) - 2)
673      {
674      addr->transport_return = DEFER;
675      addr->basic_errno = E2BIG;
676      addr->message = string_sprintf("too many environment settings for "
677        "%s transport", tblock->name);
678      return FALSE;
679      }
680    envp[envcount++] = string_copy(ss);
681    }
682
683 envp[envcount] = NULL;
684
685 /* If the -N option is set, can't do any more. */
686
687 if (f.dont_deliver)
688   {
689   DEBUG(D_transport)
690     debug_printf("*** delivery by %s transport bypassed by -N option",
691       tblock->name);
692   return FALSE;
693   }
694
695
696 /* Handling the output from the pipe is tricky. If a file for catching this
697 output is provided, we could in theory just hand that fd over to the process,
698 but this isn't very safe because it might loop and carry on writing for
699 ever (which is exactly what happened in early versions of Exim). Therefore we
700 use the standard child_open() function, which creates pipes. We can then read
701 our end of the output pipe and count the number of bytes that come through,
702 chopping the sub-process if it exceeds some limit.
703
704 However, this means we want to run a sub-process with both its input and output
705 attached to pipes. We can't handle that easily from a single parent process
706 using straightforward code such as the transport_write_message() function
707 because the subprocess might not be reading its input because it is trying to
708 write to a full output pipe. The complication of redesigning the world to
709 handle this is too great - simpler just to run another process to do the
710 reading of the output pipe. */
711
712
713 /* As this is a local transport, we are already running with the required
714 uid/gid and current directory. Request that the new process be a process group
715 leader, so we can kill it and all its children on a timeout. */
716
717 if ((pid = child_open(USS argv, envp, ob->umask, &fd_in, &fd_out, TRUE,
718                         US"pipe-tpt-cmd")) < 0)
719   {
720   addr->transport_return = DEFER;
721   addr->message = string_sprintf(
722     "Failed to create child process for %s transport: %s", tblock->name,
723       strerror(errno));
724   return FALSE;
725   }
726 tctx.u.fd = fd_in;
727
728 /* Now fork a process to handle the output that comes down the pipe. */
729
730 if ((outpid = exim_fork(US"pipe-tpt-output")) < 0)
731   {
732   addr->basic_errno = errno;
733   addr->transport_return = DEFER;
734   addr->message = string_sprintf(
735     "Failed to create process for handling output in %s transport",
736       tblock->name);
737   (void)close(fd_in);
738   (void)close(fd_out);
739   return FALSE;
740   }
741
742 /* This is the code for the output-handling subprocess. Read from the pipe
743 in chunks, and write to the return file if one is provided. Keep track of
744 the number of bytes handled. If the limit is exceeded, try to kill the
745 subprocess group, and in any case close the pipe and exit, which should cause
746 the subprocess to fail. */
747
748 if (outpid == 0)
749   {
750   int count = 0;
751   (void)close(fd_in);
752   set_process_info("reading output from |%s", cmd);
753   while ((rc = read(fd_out, big_buffer, big_buffer_size)) > 0)
754     {
755     if (addr->return_file >= 0)
756       if(write(addr->return_file, big_buffer, rc) != rc)
757         DEBUG(D_transport) debug_printf("Problem writing to return_file\n");
758     count += rc;
759     if (count > ob->max_output)
760       {
761       DEBUG(D_transport) debug_printf("Too much output from pipe - killed\n");
762       if (addr->return_file >= 0)
763         {
764         uschar *message = US"\n\n*** Too much output - remainder discarded ***\n";
765         rc = Ustrlen(message);
766         if(write(addr->return_file, message, rc) != rc)
767           DEBUG(D_transport) debug_printf("Problem writing to return_file\n");
768         }
769       killpg(pid, SIGKILL);
770       break;
771       }
772     }
773   (void)close(fd_out);
774   _exit(0);
775   }
776
777 (void)close(fd_out);  /* Not used in this process */
778
779
780 /* Carrying on now with the main parent process. Attempt to write the message
781 to it down the pipe. It is a fallacy to think that you can detect write errors
782 when the sub-process fails to read the pipe. The parent process may complete
783 writing and close the pipe before the sub-process completes. We could sleep a
784 bit here to let the sub-process get going, but it may still not complete. So we
785 ignore all writing errors. (When in the test harness, we do do a short sleep so
786 any debugging output is likely to be in the same order.) */
787
788 testharness_pause_ms(500);
789
790 DEBUG(D_transport) debug_printf("Writing message to pipe\n");
791
792 /* Arrange to time out writes if there is a timeout set. */
793
794 if (timeout > 0)
795   {
796   sigalrm_seen = FALSE;
797   transport_write_timeout = timeout;
798   }
799
800 /* Reset the counter of bytes written */
801
802 transport_count = 0;
803
804 /* First write any configured prefix information */
805
806 GET_OPTION("message_prefix");
807 if (ob->message_prefix)
808   {
809   uschar * prefix = expand_string(ob->message_prefix);
810   if (!prefix)
811     {
812     addr->transport_return = f.search_find_defer? DEFER : PANIC;
813     addr->message = string_sprintf("Expansion of \"%s\" (prefix for %s "
814       "transport) failed: %s", ob->message_prefix, tblock->name,
815       expand_string_message);
816     return FALSE;
817     }
818   if (!transport_write_block(&tctx, prefix, Ustrlen(prefix), FALSE))
819     goto END_WRITE;
820   }
821
822 /* If the use_bsmtp option is set, we need to write SMTP prefix information.
823 The various different values for batching are handled outside; if there is more
824 than one address available here, all must be included. Force SMTP dot-handling.
825 */
826
827 if (ob->use_bsmtp)
828   {
829   if (!transport_write_string(fd_in, "MAIL FROM:<%s>%s", return_path, eol))
830     goto END_WRITE;
831
832   for (address_item * a = addr; a; a = a->next)
833     if (!transport_write_string(fd_in,
834         "RCPT TO:<%s>%s",
835         transport_rcpt_address(a, tblock->rcpt_include_affixes),
836         eol))
837       goto END_WRITE;
838
839   if (!transport_write_string(fd_in, "DATA%s", eol)) goto END_WRITE;
840   }
841
842 /* Now the actual message */
843
844 if (!transport_write_message(&tctx, 0))
845     goto END_WRITE;
846
847 /* Now any configured suffix */
848
849 GET_OPTION("message_suffix");
850 if (ob->message_suffix)
851   {
852   uschar * suffix = expand_string(ob->message_suffix);
853   if (!suffix)
854     {
855     addr->transport_return = f.search_find_defer? DEFER : PANIC;
856     addr->message = string_sprintf("Expansion of \"%s\" (suffix for %s "
857       "transport) failed: %s", ob->message_suffix, tblock->name,
858       expand_string_message);
859     return FALSE;
860     }
861   if (!transport_write_block(&tctx, suffix, Ustrlen(suffix), FALSE))
862     goto END_WRITE;
863   }
864
865 /* If local_smtp, write the terminating dot. */
866
867 if (ob->use_bsmtp && !transport_write_string(fd_in, ".%s", eol))
868   goto END_WRITE;
869
870 /* Flag all writing completed successfully. */
871
872 written_ok = TRUE;
873
874 /* Come here if there are errors during writing. */
875
876 END_WRITE:
877
878 /* OK, the writing is now all done. Close the pipe. */
879
880 (void) close(fd_in);
881
882 /* Handle errors during writing. For timeouts, set the timeout for waiting for
883 the child process to 1 second. If the process at the far end of the pipe died
884 without reading all of it, we expect an EPIPE error, which should be ignored.
885 We used also to ignore WRITEINCOMPLETE but the writing function is now cleverer
886 at handling OS where the death of a pipe doesn't give EPIPE immediately. See
887 comments therein. */
888
889 if (!written_ok)
890   {
891   if (errno == ETIMEDOUT)
892     {
893     addr->message = string_sprintf("%stimeout while writing to pipe",
894       f.transport_filter_timed_out ? "transport filter " : "");
895     addr->transport_return = ob->timeout_defer? DEFER : FAIL;
896     timeout = 1;
897     }
898   else if (errno == EPIPE)
899     {
900     debug_printf("transport error EPIPE ignored\n");
901     }
902   else
903     {
904     addr->transport_return = PANIC;
905     addr->basic_errno = errno;
906     if (errno == ERRNO_CHHEADER_FAIL)
907       addr->message =
908         string_sprintf("Failed to expand headers_add or headers_remove: %s",
909           expand_string_message);
910     else if (errno == ERRNO_FILTER_FAIL)
911       addr->message = string_sprintf("Transport filter process failed (%d)%s",
912       addr->more_errno,
913       (addr->more_errno == EX_EXECFAILED)? ": unable to execute command" : "");
914     else if (errno == ERRNO_WRITEINCOMPLETE)
915       addr->message = US"Failed repeatedly to write data";
916     else
917       addr->message = string_sprintf("Error %d", errno);
918     return FALSE;
919     }
920   }
921
922 /* Wait for the child process to complete and take action if the returned
923 status is nonzero. The timeout will be just 1 second if any of the writes
924 above timed out. */
925
926 if ((rc = child_close(pid, timeout)) != 0)
927   {
928   uschar * tmsg = addr->message
929     ? string_sprintf(" (preceded by %s)", addr->message) : US"";
930
931   /* The process did not complete in time; kill its process group and fail
932   the delivery. It appears to be necessary to kill the output process too, as
933   otherwise it hangs on for some time if the actual pipe process is sleeping.
934   (At least, that's what I observed on Solaris 2.5.1.) Since we are failing
935   the delivery, that shouldn't cause any problem. */
936
937   if (rc == -256)
938     {
939     killpg(pid, SIGKILL);
940     kill(outpid, SIGKILL);
941     addr->transport_return = ob->timeout_defer? DEFER : FAIL;
942     addr->message = string_sprintf("pipe delivery process timed out%s", tmsg);
943     }
944
945   /* Wait() failed. */
946
947   else if (rc == -257)
948     {
949     addr->transport_return = PANIC;
950     addr->message = string_sprintf("Wait() failed for child process of %s "
951       "transport: %s%s", tblock->name, strerror(errno), tmsg);
952     }
953
954   /* Since the transport_filter timed out we assume it has sent the child process
955   a malformed or incomplete data stream.  Kill off the child process
956   and prevent checking its exit status as it will has probably exited in error.
957   This prevents the transport_filter timeout message from getting overwritten
958   by the exit error which is not the cause of the problem. */
959
960   else if (f.transport_filter_timed_out)
961     {
962     killpg(pid, SIGKILL);
963     kill(outpid, SIGKILL);
964     }
965
966   /* Either the process completed, but yielded a non-zero (necessarily
967   positive) status, or the process was terminated by a signal (rc will contain
968   the negation of the signal number). Treat killing by signal as failure unless
969   status is being ignored. By default, the message is bounced back, unless
970   freeze_signal is set, in which case it is frozen instead. */
971
972   else if (rc < 0)
973     {
974     if (ob->freeze_signal)
975       {
976       addr->transport_return = DEFER;
977       addr->special_action = SPECIAL_FREEZE;
978       addr->message = string_sprintf("Child process of %s transport (running "
979         "command \"%s\") was terminated by signal %d (%s)%s", tblock->name, cmd,
980         -rc, os_strsignal(-rc), tmsg);
981       }
982     else if (!ob->ignore_status)
983       {
984       addr->transport_return = FAIL;
985       addr->message = string_sprintf("Child process of %s transport (running "
986         "command \"%s\") was terminated by signal %d (%s)%s", tblock->name, cmd,
987         -rc, os_strsignal(-rc), tmsg);
988       }
989     }
990
991   /* For positive values (process terminated with non-zero status), we need a
992   status code to request deferral. A number of systems contain the following
993   line in sysexits.h:
994
995       #define EX_TEMPFAIL 75
996
997   with the description
998
999       EX_TEMPFAIL -- temporary failure, indicating something that
1000          is not really an error.  In sendmail, this means
1001          that a mailer (e.g.) could not create a connection,
1002          and the request should be reattempted later.
1003
1004   Based on this, we use exit code EX_TEMPFAIL as a default to mean "defer" when
1005   not ignoring the returned status. However, there is now an option that
1006   contains a list of temporary codes, with TEMPFAIL and CANTCREAT as defaults.
1007
1008   Another case that needs special treatment is if execve() failed (typically
1009   the command that was given is a non-existent path). By default this is
1010   treated as just another failure, but if freeze_exec_fail is set, the reaction
1011   is to freeze the message rather than bounce the address. Exim used to signal
1012   this failure with EX_UNAVAILABLE, which is defined in many systems as
1013
1014       #define EX_UNAVAILABLE  69
1015
1016   with the description
1017
1018       EX_UNAVAILABLE -- A service is unavailable.  This can occur
1019             if a support program or file does not exist.  This
1020             can also be used as a catchall message when something
1021             you wanted to do doesn't work, but you don't know why.
1022
1023   However, this can be confused with a command that actually returns 69 because
1024   something *it* wanted is unavailable. At release 4.21, Exim was changed to
1025   use return code 127 instead, because this is what the shell returns when it
1026   is unable to exec a command. We define it as EX_EXECFAILED, and use it in
1027   child.c to signal execve() failure and other unexpected failures such as
1028   setuid() not working - though that won't be the case here because we aren't
1029   changing uid. */
1030
1031   else
1032     {
1033     /* Always handle execve() failure specially if requested to */
1034
1035     if (ob->freeze_exec_fail  &&  rc == EX_EXECFAILED)
1036       {
1037       addr->transport_return = DEFER;
1038       addr->special_action = SPECIAL_FREEZE;
1039       addr->message = string_sprintf("pipe process failed to exec \"%s\"%s",
1040         cmd, tmsg);
1041       }
1042
1043     /* Otherwise take action only if not ignoring status */
1044
1045     else if (!ob->ignore_status)
1046       {
1047       uschar *ss;
1048       gstring * g;
1049
1050       /* If temp_errors is "*" all codes are temporary. Initialization checks
1051       that it's either "*" or a list of numbers. If not "*", scan the list of
1052       temporary failure codes; if any match, the result is DEFER. */
1053
1054       if (ob->temp_errors[0] == '*')
1055         addr->transport_return = DEFER;
1056
1057       else
1058         {
1059         const uschar *s = ob->temp_errors;
1060         uschar *p;
1061         int sep = 0;
1062
1063         addr->transport_return = FAIL;
1064         while ((p = string_nextinlist(&s,&sep,NULL,0)))
1065           if (rc == Uatoi(p)) { addr->transport_return = DEFER; break; }
1066         }
1067
1068       /* Ensure the message contains the expanded command and arguments. This
1069       doesn't have to be brilliantly efficient - it is an error situation. */
1070
1071       addr->message = string_sprintf("Child process of %s transport returned "
1072         "%d", tblock->name, rc);
1073       g = string_cat(NULL, addr->message);
1074
1075       /* If the return code is > 128, it often means that a shell command
1076       was terminated by a signal. */
1077
1078       ss = (rc > 128)?
1079         string_sprintf("(could mean shell command ended by signal %d (%s))",
1080           rc-128, os_strsignal(rc-128)) :
1081         US os_strexit(rc);
1082
1083       if (*ss)
1084         {
1085         g = string_catn(g, US" ", 1);
1086         g = string_cat (g, ss);
1087         }
1088
1089       /* Now add the command and arguments */
1090
1091       g = string_catn(g, US" from command:", 14);
1092
1093       for (int i = 0; i < sizeof(argv)/sizeof(int *) && argv[i] != NULL; i++)
1094         {
1095         BOOL quote = FALSE;
1096         g = string_catn(g, US" ", 1);
1097         if (Ustrpbrk(argv[i], " \t") != NULL)
1098           {
1099           quote = TRUE;
1100           g = string_catn(g, US"\"", 1);
1101           }
1102         g = string_cat(g, argv[i]);
1103         if (quote)
1104           g = string_catn(g, US"\"", 1);
1105         }
1106
1107       /* Add previous filter timeout message, if present. */
1108
1109       if (*tmsg)
1110         g = string_cat(g, tmsg);
1111
1112       addr->message = string_from_gstring(g);
1113       }
1114     }
1115   }
1116
1117 /* Ensure all subprocesses (in particular, the output handling process)
1118 are complete before we pass this point. */
1119
1120 while (wait(&rc) >= 0);
1121
1122 DEBUG(D_transport) debug_printf("%s transport yielded %d\n", tblock->name,
1123   addr->transport_return);
1124
1125 /* If there has been a problem, the message in addr->message contains details
1126 of the pipe command. We don't want to expose these to the world, so we set up
1127 something bland to return to the sender. */
1128
1129 if (addr->transport_return != OK)
1130   addr->user_message = US"local delivery failed";
1131
1132 return FALSE;
1133 }
1134
1135 #endif  /*!MACRO_PREDEF*/
1136 #endif  /*TRASPORT_PIPE*/
1137 /* End of transport/pipe.c */