Use dedicated union member for option offsets
[exim.git] / src / src / transport.c
CommitLineData
059ec3d9
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
f9ba5e22 5/* Copyright (c) University of Cambridge 1995 - 2018 */
059ec3d9
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* General functions concerned with transportation, and generic options for all
9transports. */
10
11
12#include "exim.h"
13
059ec3d9
PH
14/* Generic options for transports, all of which live inside transport_instance
15data blocks and which therefore have the opt_public flag set. Note that there
16are other options living inside this structure which can be set only from
17certain transports. */
13a4b4c1 18#define LOFF(field) OPT_OFF(transport_instance, field)
059ec3d9
PH
19
20optionlist optionlist_transports[] = {
f2ed27cf 21 /* name type value */
059ec3d9 22 { "*expand_group", opt_stringptr|opt_hidden|opt_public,
13a4b4c1 23 LOFF(expand_gid) },
059ec3d9 24 { "*expand_user", opt_stringptr|opt_hidden|opt_public,
13a4b4c1 25 LOFF(expand_uid) },
059ec3d9 26 { "*headers_rewrite_flags", opt_int|opt_public|opt_hidden,
13a4b4c1 27 LOFF(rewrite_existflags) },
059ec3d9 28 { "*headers_rewrite_rules", opt_void|opt_public|opt_hidden,
13a4b4c1 29 LOFF(rewrite_rules) },
059ec3d9 30 { "*set_group", opt_bool|opt_hidden|opt_public,
13a4b4c1 31 LOFF(gid_set) },
059ec3d9 32 { "*set_user", opt_bool|opt_hidden|opt_public,
13a4b4c1 33 LOFF(uid_set) },
059ec3d9 34 { "body_only", opt_bool|opt_public,
13a4b4c1 35 LOFF(body_only) },
059ec3d9 36 { "current_directory", opt_stringptr|opt_public,
13a4b4c1 37 LOFF(current_dir) },
059ec3d9 38 { "debug_print", opt_stringptr | opt_public,
13a4b4c1 39 LOFF(debug_string) },
059ec3d9 40 { "delivery_date_add", opt_bool|opt_public,
13a4b4c1 41 LOFF(delivery_date_add) },
059ec3d9 42 { "disable_logging", opt_bool|opt_public,
13a4b4c1 43 LOFF(disable_logging) },
059ec3d9 44 { "driver", opt_stringptr|opt_public,
13a4b4c1 45 LOFF(driver_name) },
059ec3d9 46 { "envelope_to_add", opt_bool|opt_public,
13a4b4c1 47 LOFF(envelope_to_add) },
0cbf2b82 48#ifndef DISABLE_EVENT
774ef2d7 49 { "event_action", opt_stringptr | opt_public,
13a4b4c1 50 LOFF(event_action) },
774ef2d7 51#endif
059ec3d9 52 { "group", opt_expand_gid|opt_public,
13a4b4c1 53 LOFF(gid) },
846726c5 54 { "headers_add", opt_stringptr|opt_public|opt_rep_str,
13a4b4c1 55 LOFF(add_headers) },
059ec3d9 56 { "headers_only", opt_bool|opt_public,
13a4b4c1 57 LOFF(headers_only) },
846726c5 58 { "headers_remove", opt_stringptr|opt_public|opt_rep_str,
13a4b4c1 59 LOFF(remove_headers) },
059ec3d9 60 { "headers_rewrite", opt_rewrite|opt_public,
13a4b4c1 61 LOFF(headers_rewrite) },
059ec3d9 62 { "home_directory", opt_stringptr|opt_public,
13a4b4c1 63 LOFF(home_dir) },
059ec3d9 64 { "initgroups", opt_bool|opt_public,
13a4b4c1 65 LOFF(initgroups) },
fa41615d 66 { "max_parallel", opt_stringptr|opt_public,
13a4b4c1 67 LOFF(max_parallel) },
059ec3d9 68 { "message_size_limit", opt_stringptr|opt_public,
13a4b4c1 69 LOFF(message_size_limit) },
059ec3d9 70 { "rcpt_include_affixes", opt_bool|opt_public,
13a4b4c1 71 LOFF(rcpt_include_affixes) },
059ec3d9 72 { "retry_use_local_part", opt_bool|opt_public,
13a4b4c1 73 LOFF(retry_use_local_part) },
059ec3d9 74 { "return_path", opt_stringptr|opt_public,
13a4b4c1 75 LOFF(return_path) },
059ec3d9 76 { "return_path_add", opt_bool|opt_public,
13a4b4c1 77 LOFF(return_path_add) },
059ec3d9 78 { "shadow_condition", opt_stringptr|opt_public,
13a4b4c1 79 LOFF(shadow_condition) },
059ec3d9 80 { "shadow_transport", opt_stringptr|opt_public,
13a4b4c1 81 LOFF(shadow) },
059ec3d9 82 { "transport_filter", opt_stringptr|opt_public,
13a4b4c1 83 LOFF(filter_command) },
059ec3d9 84 { "transport_filter_timeout", opt_time|opt_public,
13a4b4c1 85 LOFF(filter_timeout) },
059ec3d9 86 { "user", opt_expand_uid|opt_public,
13a4b4c1 87 LOFF(uid) }
059ec3d9
PH
88};
89
c0b9d3e8 90int optionlist_transports_size = nelem(optionlist_transports);
059ec3d9 91
d185889f
JH
92#ifdef MACRO_PREDEF
93
5f69a529 94# include "macro_predef.h"
059ec3d9 95
c0b9d3e8 96void
d185889f 97options_transports(void)
c0b9d3e8 98{
d185889f 99uschar buf[64];
c0b9d3e8 100
d185889f 101options_from_list(optionlist_transports, nelem(optionlist_transports), US"TRANSPORTS", NULL);
c0b9d3e8 102
d7978c0f 103for (transport_info * ti = transports_available; ti->driver_name[0]; ti++)
4945f557 104 {
cab0c277 105 spf(buf, sizeof(buf), US"_DRIVER_TRANSPORT_%T", ti->driver_name);
d185889f
JH
106 builtin_macro_create(buf);
107 options_from_list(ti->options, (unsigned)*ti->options_count, US"TRANSPORT", ti->driver_name);
4945f557 108 }
383832ef 109}
c0b9d3e8 110
d185889f
JH
111#else /*!MACRO_PREDEF*/
112
113/* Structure for keeping list of addresses that have been added to
114Envelope-To:, in order to avoid duplication. */
115
116struct aci {
117 struct aci *next;
118 address_item *ptr;
119 };
120
121
122/* Static data for write_chunk() */
123
124static uschar *chunk_ptr; /* chunk pointer */
125static uschar *nl_check; /* string to look for at line start */
126static int nl_check_length; /* length of same */
127static uschar *nl_escape; /* string to insert */
128static int nl_escape_length; /* length of same */
129static int nl_partial_match; /* length matched at chunk end */
130
131
059ec3d9
PH
132/*************************************************
133* Initialize transport list *
134*************************************************/
135
136/* Read the transports section of the configuration file, and set up a chain of
137transport instances according to its contents. Each transport has generic
138options and may also have its own private options. This function is only ever
139called when transports == NULL. We use generic code in readconf to do most of
140the work. */
141
142void
143transport_init(void)
144{
059ec3d9
PH
145readconf_driver_init(US"transport",
146 (driver_instance **)(&transports), /* chain anchor */
147 (driver_info *)transports_available, /* available drivers */
148 sizeof(transport_info), /* size of info block */
149 &transport_defaults, /* default values for generic options */
150 sizeof(transport_instance), /* size of instance block */
151 optionlist_transports, /* generic options */
152 optionlist_transports_size);
153
154/* Now scan the configured transports and check inconsistencies. A shadow
155transport is permitted only for local transports. */
156
d7978c0f 157for (transport_instance * t = transports; t; t = t->next)
059ec3d9 158 {
7b4c8c1f
JH
159 if (!t->info->local && t->shadow)
160 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
161 "shadow transport not allowed on non-local transport %s", t->name);
059ec3d9
PH
162
163 if (t->body_only && t->headers_only)
164 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
165 "%s transport: body_only and headers_only are mutually exclusive",
166 t->name);
167 }
168}
169
170
171
172/*************************************************
173* Write block of data *
174*************************************************/
175
73a10da9
JH
176static int
177tpt_write(int fd, uschar * block, int len, BOOL more, int options)
178{
179return
180#ifndef DISABLE_TLS
181 tls_out.active.sock == fd
182 ? tls_write(tls_out.active.tls_ctx, block, len, more) :
183#endif
184#ifdef MSG_MORE
185 more && !(options & topt_not_socket) ? send(fd, block, len, MSG_MORE) :
186#endif
187 write(fd, block, len);
188}
189
059ec3d9
PH
190/* Subroutine called by write_chunk() and at the end of the message actually
191to write a data block. Also called directly by some transports to write
192additional data to the file descriptor (e.g. prefix, suffix).
193
194If a transport wants data transfers to be timed, it sets a non-zero value in
195transport_write_timeout. A non-zero transport_write_timeout causes a timer to
196be set for each block of data written from here. If time runs out, then write()
197fails and provokes an error return. The caller can then inspect sigalrm_seen to
198check for a timeout.
199
200On some systems, if a quota is exceeded during the write, the yield is the
201number of bytes written rather than an immediate error code. This also happens
202on some systems in other cases, for example a pipe that goes away because the
203other end's process terminates (Linux). On other systems, (e.g. Solaris 2) you
204get the error codes the first time.
205
206The write() function is also interruptible; the Solaris 2.6 man page says:
207
208 If write() is interrupted by a signal before it writes any
209 data, it will return -1 with errno set to EINTR.
210
211 If write() is interrupted by a signal after it successfully
212 writes some data, it will return the number of bytes written.
213
214To handle these cases, we want to restart the write() to output the remainder
215of the data after a non-negative return from write(), except after a timeout.
216In the error cases (EDQUOT, EPIPE) no bytes get written the second time, and a
217proper error then occurs. In principle, after an interruption, the second
218write() could suffer the same fate, but we do not want to continue for
219evermore, so stick a maximum repetition count on the loop to act as a
220longstop.
221
222Arguments:
42055a33 223 tctx transport context: file descriptor or string to write to
059ec3d9
PH
224 block block of bytes to write
225 len number of bytes to write
925ac8e4 226 more further data expected soon
059ec3d9
PH
227
228Returns: TRUE on success, FALSE on failure (with errno preserved);
229 transport_count is incremented by the number of bytes written
230*/
231
42055a33 232static BOOL
73a10da9 233transport_write_block_fd(transport_ctx * tctx, uschar * block, int len, BOOL more)
059ec3d9 234{
d7978c0f 235int rc, save_errno;
958541e9 236int local_timeout = transport_write_timeout;
73a10da9 237int connretry = 1;
42055a33 238int fd = tctx->u.fd;
958541e9
PH
239
240/* This loop is for handling incomplete writes and other retries. In most
241normal cases, it is only ever executed once. */
059ec3d9 242
d7978c0f 243for (int i = 0; i < 100; i++)
059ec3d9
PH
244 {
245 DEBUG(D_transport)
42055a33
JH
246 debug_printf("writing data block fd=%d size=%d timeout=%d%s\n",
247 fd, len, local_timeout, more ? " (more expected)" : "");
059ec3d9 248
73a10da9
JH
249 /* When doing TCP Fast Open we may get this far before the 3-way handshake
250 is complete, and write returns ENOTCONN. Detect that, wait for the socket
251 to become writable, and retry once only. */
059ec3d9 252
73a10da9 253 for(;;)
059ec3d9 254 {
73a10da9
JH
255 fd_set fds;
256 /* This code makes use of alarm() in order to implement the timeout. This
257 isn't a very tidy way of doing things. Using non-blocking I/O with select()
258 provides a neater approach. However, I don't know how to do this when TLS is
259 in use. */
42055a33 260
73a10da9
JH
261 if (transport_write_timeout <= 0) /* No timeout wanted */
262 {
263 rc = tpt_write(fd, block, len, more, tctx->options);
264 save_errno = errno;
265 }
266 else /* Timeout wanted. */
059ec3d9 267 {
73a10da9
JH
268 ALARM(local_timeout);
269 rc = tpt_write(fd, block, len, more, tctx->options);
270 save_errno = errno;
271 local_timeout = ALARM_CLR(0);
272 if (sigalrm_seen)
273 {
274 errno = ETIMEDOUT;
275 return FALSE;
276 }
059ec3d9 277 }
73a10da9
JH
278
279 if (rc >= 0 || errno != ENOTCONN || connretry <= 0)
280 break;
281
282 FD_ZERO(&fds); FD_SET(fd, &fds);
283 select(fd+1, NULL, &fds, NULL, NULL); /* could set timout? */
284 connretry--;
059ec3d9
PH
285 }
286
287 /* Hopefully, the most common case is success, so test that first. */
288
289 if (rc == len) { transport_count += len; return TRUE; }
290
958541e9
PH
291 /* A non-negative return code is an incomplete write. Try again for the rest
292 of the block. If we have exactly hit the timeout, give up. */
059ec3d9
PH
293
294 if (rc >= 0)
295 {
296 len -= rc;
297 block += rc;
298 transport_count += rc;
299 DEBUG(D_transport) debug_printf("write incomplete (%d)\n", rc);
958541e9 300 goto CHECK_TIMEOUT; /* A few lines below */
059ec3d9
PH
301 }
302
303 /* A negative return code with an EINTR error is another form of
304 incomplete write, zero bytes having been written */
305
306 if (save_errno == EINTR)
307 {
308 DEBUG(D_transport)
309 debug_printf("write interrupted before anything written\n");
958541e9 310 goto CHECK_TIMEOUT; /* A few lines below */
059ec3d9
PH
311 }
312
313 /* A response of EAGAIN from write() is likely only in the case of writing
314 to a FIFO that is not swallowing the data as fast as Exim is writing it. */
315
316 if (save_errno == EAGAIN)
317 {
318 DEBUG(D_transport)
319 debug_printf("write temporarily locked out, waiting 1 sec\n");
320 sleep(1);
958541e9
PH
321
322 /* Before continuing to try another write, check that we haven't run out of
323 time. */
324
325 CHECK_TIMEOUT:
326 if (transport_write_timeout > 0 && local_timeout <= 0)
327 {
328 errno = ETIMEDOUT;
329 return FALSE;
330 }
059ec3d9
PH
331 continue;
332 }
333
334 /* Otherwise there's been an error */
335
336 DEBUG(D_transport) debug_printf("writing error %d: %s\n", save_errno,
337 strerror(save_errno));
338 errno = save_errno;
339 return FALSE;
340 }
341
342/* We've tried and tried and tried but still failed */
343
344errno = ERRNO_WRITEINCOMPLETE;
345return FALSE;
346}
347
348
42055a33
JH
349BOOL
350transport_write_block(transport_ctx * tctx, uschar *block, int len, BOOL more)
351{
352if (!(tctx->options & topt_output_string))
353 return transport_write_block_fd(tctx, block, len, more);
354
355/* Write to expanding-string. NOTE: not NUL-terminated */
356
357if (!tctx->u.msg)
acec9514 358 tctx->u.msg = string_get(1024);
42055a33 359
acec9514 360tctx->u.msg = string_catn(tctx->u.msg, block, len);
42055a33
JH
361return TRUE;
362}
363
364
059ec3d9
PH
365
366
367/*************************************************
368* Write formatted string *
369*************************************************/
370
371/* This is called by various transports. It is a convenience function.
372
373Arguments:
374 fd file descriptor
375 format string format
376 ... arguments for format
377
378Returns: the yield of transport_write_block()
379*/
380
381BOOL
1ba28e2b 382transport_write_string(int fd, const char *format, ...)
059ec3d9 383{
cab0c277 384transport_ctx tctx = {{0}};
d12746bc 385gstring gs = { .size = big_buffer_size, .ptr = 0, .s = big_buffer };
059ec3d9 386va_list ap;
d12746bc 387
f3ebb786
JH
388/* Use taint-unchecked routines for writing into big_buffer, trusting
389that the result will never be expanded. */
390
059ec3d9 391va_start(ap, format);
f3ebb786 392if (!string_vformat(&gs, SVFMT_TAINT_NOCHK, format, ap))
059ec3d9
PH
393 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "overlong formatted string in transport");
394va_end(ap);
42055a33 395tctx.u.fd = fd;
d12746bc 396return transport_write_block(&tctx, gs.s, gs.ptr, FALSE);
059ec3d9
PH
397}
398
399
400
401
42055a33
JH
402void
403transport_write_reset(int options)
404{
405if (!(options & topt_continuation)) chunk_ptr = deliver_out_buffer;
406nl_partial_match = -1;
407nl_check_length = nl_escape_length = 0;
408}
409
410
411
059ec3d9
PH
412/*************************************************
413* Write character chunk *
414*************************************************/
415
416/* Subroutine used by transport_write_message() to scan character chunks for
417newlines and act appropriately. The object is to minimise the number of writes.
418The output byte stream is buffered up in deliver_out_buffer, which is written
419only when it gets full, thus minimizing write operations and TCP packets.
420
421Static data is used to handle the case when the last character of the previous
422chunk was NL, or matched part of the data that has to be escaped.
423
424Arguments:
42055a33
JH
425 tctx transport context - processing to be done during output,
426 and file descriptor to write to
059ec3d9
PH
427 chunk pointer to data to write
428 len length of data to write
059ec3d9
PH
429
430In addition, the static nl_xxx variables must be set as required.
431
432Returns: TRUE on success, FALSE on failure (with errno preserved)
433*/
434
42055a33
JH
435BOOL
436write_chunk(transport_ctx * tctx, uschar *chunk, int len)
059ec3d9
PH
437{
438uschar *start = chunk;
439uschar *end = chunk + len;
059ec3d9
PH
440int mlen = DELIVER_OUT_BUFFER_SIZE - nl_escape_length - 2;
441
442/* The assumption is made that the check string will never stretch over move
443than one chunk since the only time there are partial matches is when copying
444the body in large buffers. There is always enough room in the buffer for an
445escape string, since the loop below ensures this for each character it
446processes, and it won't have stuck in the escape string if it left a partial
447match. */
448
449if (nl_partial_match >= 0)
450 {
451 if (nl_check_length > 0 && len >= nl_check_length &&
452 Ustrncmp(start, nl_check + nl_partial_match,
453 nl_check_length - nl_partial_match) == 0)
454 {
455 Ustrncpy(chunk_ptr, nl_escape, nl_escape_length);
456 chunk_ptr += nl_escape_length;
457 start += nl_check_length - nl_partial_match;
458 }
459
460 /* The partial match was a false one. Insert the characters carried over
461 from the previous chunk. */
462
463 else if (nl_partial_match > 0)
464 {
465 Ustrncpy(chunk_ptr, nl_check, nl_partial_match);
466 chunk_ptr += nl_partial_match;
467 }
468
469 nl_partial_match = -1;
470 }
471
472/* Now process the characters in the chunk. Whenever we hit a newline we check
473for possible escaping. The code for the non-NL route should be as fast as
474possible. */
475
d7978c0f 476for (uschar * ptr = start; ptr < end; ptr++)
059ec3d9 477 {
6d5c916c 478 int ch, len;
059ec3d9
PH
479
480 /* Flush the buffer if it has reached the threshold - we want to leave enough
481 room for the next uschar, plus a possible extra CR for an LF, plus the escape
482 string. */
483
6d5c916c 484 if ((len = chunk_ptr - deliver_out_buffer) > mlen)
059ec3d9 485 {
58fc5fb2
JH
486 DEBUG(D_transport) debug_printf("flushing headers buffer\n");
487
6d5c916c
JH
488 /* If CHUNKING, prefix with BDAT (size) NON-LAST. Also, reap responses
489 from previous SMTP commands. */
490
d315eda1 491 if (tctx->options & topt_use_bdat && tctx->chunk_cb)
58fc5fb2 492 {
d2aa036b 493 if ( tctx->chunk_cb(tctx, (unsigned)len, 0) != OK
42055a33 494 || !transport_write_block(tctx, deliver_out_buffer, len, FALSE)
d2aa036b 495 || tctx->chunk_cb(tctx, 0, tc_reap_prev) != OK
58fc5fb2
JH
496 )
497 return FALSE;
498 }
499 else
42055a33 500 if (!transport_write_block(tctx, deliver_out_buffer, len, FALSE))
6d5c916c 501 return FALSE;
059ec3d9
PH
502 chunk_ptr = deliver_out_buffer;
503 }
504
328c5688
JH
505 /* Remove CR before NL if required */
506
507 if ( *ptr == '\r' && ptr[1] == '\n'
d315eda1 508 && !(tctx->options & topt_use_crlf)
8768d548 509 && f.spool_file_wireformat
328c5688
JH
510 )
511 ptr++;
512
059ec3d9
PH
513 if ((ch = *ptr) == '\n')
514 {
515 int left = end - ptr - 1; /* count of chars left after NL */
516
517 /* Insert CR before NL if required */
518
8768d548 519 if (tctx->options & topt_use_crlf && !f.spool_file_wireformat)
328c5688 520 *chunk_ptr++ = '\r';
059ec3d9 521 *chunk_ptr++ = '\n';
332f5cf3 522 transport_newlines++;
059ec3d9
PH
523
524 /* The check_string test (formerly "from hack") replaces the specific
525 string at the start of a line with an escape string (e.g. "From " becomes
526 ">From " or "." becomes "..". It is a case-sensitive test. The length
527 check above ensures there is always enough room to insert this string. */
528
529 if (nl_check_length > 0)
530 {
531 if (left >= nl_check_length &&
532 Ustrncmp(ptr+1, nl_check, nl_check_length) == 0)
533 {
534 Ustrncpy(chunk_ptr, nl_escape, nl_escape_length);
535 chunk_ptr += nl_escape_length;
536 ptr += nl_check_length;
537 }
538
539 /* Handle the case when there isn't enough left to match the whole
540 check string, but there may be a partial match. We remember how many
541 characters matched, and finish processing this chunk. */
542
543 else if (left <= 0) nl_partial_match = 0;
544
545 else if (Ustrncmp(ptr+1, nl_check, left) == 0)
546 {
547 nl_partial_match = left;
548 ptr = end;
549 }
550 }
551 }
552
553 /* Not a NL character */
554
555 else *chunk_ptr++ = ch;
556 }
557
558return TRUE;
559}
560
561
562
563
564/*************************************************
565* Generate address for RCPT TO *
566*************************************************/
567
568/* This function puts together an address for RCPT to, using the caseful
569version of the local part and the caseful version of the domain. If there is no
570prefix or suffix, or if affixes are to be retained, we can just use the
571original address. Otherwise, if there is a prefix but no suffix we can use a
572pointer into the original address. If there is a suffix, however, we have to
573build a new string.
574
575Arguments:
576 addr the address item
577 include_affixes TRUE if affixes are to be included
578
579Returns: a string
580*/
581
582uschar *
583transport_rcpt_address(address_item *addr, BOOL include_affixes)
584{
585uschar *at;
586int plen, slen;
587
588if (include_affixes)
589 {
590 setflag(addr, af_include_affixes); /* Affects logged => line */
591 return addr->address;
592 }
593
594if (addr->suffix == NULL)
595 {
596 if (addr->prefix == NULL) return addr->address;
597 return addr->address + Ustrlen(addr->prefix);
598 }
599
600at = Ustrrchr(addr->address, '@');
601plen = (addr->prefix == NULL)? 0 : Ustrlen(addr->prefix);
602slen = Ustrlen(addr->suffix);
603
bb07bcd3 604return string_sprintf("%.*s@%s", (int)(at - addr->address - plen - slen),
059ec3d9
PH
605 addr->address + plen, at + 1);
606}
607
608
609/*************************************************
610* Output Envelope-To: address & scan duplicates *
611*************************************************/
612
613/* This function is called from internal_transport_write_message() below, when
614generating an Envelope-To: header line. It checks for duplicates of the given
615address and its ancestors. When one is found, this function calls itself
616recursively, to output the envelope address of the duplicate.
617
618We want to avoid duplication in the list, which can arise for example when
619A->B,C and then both B and C alias to D. This can also happen when there are
620unseen drivers in use. So a list of addresses that have been output is kept in
621the plist variable.
622
623It is also possible to have loops in the address ancestry/duplication graph,
624for example if there are two top level addresses A and B and we have A->B,C and
625B->A. To break the loop, we use a list of processed addresses in the dlist
626variable.
627
628After handling duplication, this function outputs the progenitor of the given
629address.
630
631Arguments:
632 p the address we are interested in
633 pplist address of anchor of the list of addresses not to output
634 pdlist address of anchor of the list of processed addresses
635 first TRUE if this is the first address; set it FALSE afterwards
6d5c916c 636 tctx transport context - processing to be done during output
42055a33 637 and the file descriptor to write to
059ec3d9
PH
638
639Returns: FALSE if writing failed
640*/
641
642static BOOL
643write_env_to(address_item *p, struct aci **pplist, struct aci **pdlist,
42055a33 644 BOOL *first, transport_ctx * tctx)
059ec3d9
PH
645{
646address_item *pp;
647struct aci *ppp;
648
649/* Do nothing if we have already handled this address. If not, remember it
650so that we don't handle it again. */
651
ff5aac2b 652for (ppp = *pdlist; ppp; ppp = ppp->next) if (p == ppp->ptr) return TRUE;
059ec3d9 653
f3ebb786 654ppp = store_get(sizeof(struct aci), FALSE);
059ec3d9
PH
655ppp->next = *pdlist;
656*pdlist = ppp;
657ppp->ptr = p;
658
659/* Now scan up the ancestry, checking for duplicates at each generation. */
660
661for (pp = p;; pp = pp->parent)
662 {
663 address_item *dup;
ff5aac2b
JH
664 for (dup = addr_duplicate; dup; dup = dup->next)
665 if (dup->dupof == pp) /* a dup of our address */
42055a33 666 if (!write_env_to(dup, pplist, pdlist, first, tctx))
ff5aac2b
JH
667 return FALSE;
668 if (!pp->parent) break;
059ec3d9
PH
669 }
670
671/* Check to see if we have already output the progenitor. */
672
ff5aac2b
JH
673for (ppp = *pplist; ppp; ppp = ppp->next) if (pp == ppp->ptr) break;
674if (ppp) return TRUE;
059ec3d9
PH
675
676/* Remember what we have output, and output it. */
677
f3ebb786 678ppp = store_get(sizeof(struct aci), FALSE);
059ec3d9
PH
679ppp->next = *pplist;
680*pplist = ppp;
681ppp->ptr = pp;
682
42055a33 683if (!*first && !write_chunk(tctx, US",\n ", 3)) return FALSE;
059ec3d9 684*first = FALSE;
42055a33 685return write_chunk(tctx, pp->address, Ustrlen(pp->address));
059ec3d9
PH
686}
687
688
689
690
4c04137d 691/* Add/remove/rewrite headers, and send them plus the empty-line separator.
511a6c14
JH
692
693Globals:
694 header_list
695
696Arguments:
697 addr (chain of) addresses (for extra headers), or NULL;
698 only the first address is used
44bc8f0c 699 tctx transport context
59932f7d 700 sendfn function for output (transport or verify)
511a6c14
JH
701
702Returns: TRUE on success; FALSE on failure.
703*/
704BOOL
42055a33
JH
705transport_headers_send(transport_ctx * tctx,
706 BOOL (*sendfn)(transport_ctx * tctx, uschar * s, int len))
511a6c14 707{
6b46ecc6 708const uschar *list;
6d5c916c
JH
709transport_instance * tblock = tctx ? tctx->tblock : NULL;
710address_item * addr = tctx ? tctx->addr : NULL;
511a6c14
JH
711
712/* Then the message's headers. Don't write any that are flagged as "old";
713that means they were rewritten, or are a record of envelope rewriting, or
714were removed (e.g. Bcc). If remove_headers is not null, skip any headers that
76146973
JH
715match any entries therein. It is a colon-sep list; expand the items
716separately and squash any empty ones.
d43cbe25 717Then check addr->prop.remove_headers too, provided that addr is not NULL. */
511a6c14 718
d7978c0f 719for (header_line * h = header_list; h; h = h->next) if (h->type != htype_old)
511a6c14 720 {
511a6c14
JH
721 BOOL include_header = TRUE;
722
fb6833e0 723 list = tblock ? tblock->remove_headers : NULL;
d7978c0f 724 for (int i = 0; i < 2; i++) /* For remove_headers && addr->prop.remove_headers */
511a6c14
JH
725 {
726 if (list)
727 {
728 int sep = ':'; /* This is specified as a colon-separated list */
729 uschar *s, *ss;
8bc732e8 730 while ((s = string_nextinlist(&list, &sep, NULL, 0)))
511a6c14 731 {
76146973
JH
732 int len;
733
734 if (i == 0)
8768d548 735 if (!(s = expand_string(s)) && !f.expand_string_forcedfail)
76146973
JH
736 {
737 errno = ERRNO_CHHEADER_FAIL;
738 return FALSE;
739 }
d4ff61d1 740 len = s ? Ustrlen(s) : 0;
511a6c14
JH
741 if (strncmpic(h->text, s, len) != 0) continue;
742 ss = h->text + len;
743 while (*ss == ' ' || *ss == '\t') ss++;
744 if (*ss == ':') break;
745 }
6b46ecc6 746 if (s) { include_header = FALSE; break; }
511a6c14 747 }
6b46ecc6 748 if (addr) list = addr->prop.remove_headers;
511a6c14
JH
749 }
750
751 /* If this header is to be output, try to rewrite it if there are rewriting
752 rules. */
753
754 if (include_header)
755 {
fb6833e0 756 if (tblock && tblock->rewrite_rules)
511a6c14 757 {
f3ebb786 758 rmark reset_point = store_mark();
511a6c14
JH
759 header_line *hh;
760
6b46ecc6
JH
761 if ((hh = rewrite_header(h, NULL, NULL, tblock->rewrite_rules,
762 tblock->rewrite_existflags, FALSE)))
511a6c14 763 {
42055a33 764 if (!sendfn(tctx, hh->text, hh->slen)) return FALSE;
511a6c14
JH
765 store_reset(reset_point);
766 continue; /* With the next header line */
767 }
768 }
769
770 /* Either no rewriting rules, or it didn't get rewritten */
771
42055a33 772 if (!sendfn(tctx, h->text, h->slen)) return FALSE;
511a6c14
JH
773 }
774
775 /* Header removed */
776
777 else
511a6c14 778 DEBUG(D_transport) debug_printf("removed header line:\n%s---\n", h->text);
511a6c14
JH
779 }
780
781/* Add on any address-specific headers. If there are multiple addresses,
782they will all have the same headers in order to be batched. The headers
783are chained in reverse order of adding (so several addresses from the
784same alias might share some of them) but we want to output them in the
785opposite order. This is a bit tedious, but there shouldn't be very many
786of them. We just walk the list twice, reversing the pointers each time,
787but on the second time, write out the items.
788
789Headers added to an address by a router are guaranteed to end with a newline.
790*/
791
792if (addr)
793 {
d43cbe25 794 header_line *hprev = addr->prop.extra_headers;
d7978c0f
JH
795 header_line *hnext, * h;
796 for (int i = 0; i < 2; i++)
ff5aac2b 797 for (h = hprev, hprev = NULL; h; h = hnext)
511a6c14
JH
798 {
799 hnext = h->next;
800 h->next = hprev;
801 hprev = h;
802 if (i == 1)
803 {
42055a33 804 if (!sendfn(tctx, h->text, h->slen)) return FALSE;
511a6c14
JH
805 DEBUG(D_transport)
806 debug_printf("added header line(s):\n%s---\n", h->text);
807 }
808 }
511a6c14
JH
809 }
810
76146973
JH
811/* If a string containing additional headers exists it is a newline-sep
812list. Expand each item and write out the result. This is done last so that
813if it (deliberately or accidentally) isn't in header format, it won't mess
814up any other headers. An empty string or a forced expansion failure are
815noops. An added header string from a transport may not end with a newline;
816add one if it does not. */
511a6c14 817
fb6833e0 818if (tblock && (list = CUS tblock->add_headers))
511a6c14 819 {
76146973
JH
820 int sep = '\n';
821 uschar * s;
822
6b46ecc6 823 while ((s = string_nextinlist(&list, &sep, NULL, 0)))
ff5aac2b 824 if ((s = expand_string(s)))
76146973
JH
825 {
826 int len = Ustrlen(s);
827 if (len > 0)
511a6c14 828 {
42055a33
JH
829 if (!sendfn(tctx, s, len)) return FALSE;
830 if (s[len-1] != '\n' && !sendfn(tctx, US"\n", 1))
76146973
JH
831 return FALSE;
832 DEBUG(D_transport)
833 {
834 debug_printf("added header line:\n%s", s);
835 if (s[len-1] != '\n') debug_printf("\n");
836 debug_printf("---\n");
837 }
511a6c14
JH
838 }
839 }
8768d548 840 else if (!f.expand_string_forcedfail)
ff5aac2b 841 { errno = ERRNO_CHHEADER_FAIL; return FALSE; }
511a6c14
JH
842 }
843
844/* Separate headers from body with a blank line */
845
42055a33 846return sendfn(tctx, US"\n", 1);
511a6c14
JH
847}
848
849
059ec3d9
PH
850/*************************************************
851* Write the message *
852*************************************************/
853
854/* This function writes the message to the given file descriptor. The headers
855are in the in-store data structure, and the rest of the message is in the open
856file descriptor deliver_datafile. Make sure we start it at the beginning.
857
858. If add_return_path is TRUE, a "return-path:" header is added to the message,
859 containing the envelope sender's address.
860
861. If add_envelope_to is TRUE, a "envelope-to:" header is added to the message,
862 giving the top-level envelope address that caused this delivery to happen.
863
864. If add_delivery_date is TRUE, a "delivery-date:" header is added to the
865 message. It gives the time and date that delivery took place.
866
867. If check_string is not null, the start of each line is checked for that
868 string. If it is found, it is replaced by escape_string. This used to be
869 the "from hack" for files, and "smtp_dots" for escaping SMTP dots.
870
871. If use_crlf is true, newlines are turned into CRLF (SMTP output).
872
873The yield is TRUE if all went well, and FALSE if not. Exit *immediately* after
874any writing or reading error, leaving the code in errno intact. Error exits
875can include timeouts for certain transports, which are requested by setting
876transport_write_timeout non-zero.
877
878Arguments:
6b46ecc6 879 tctx
42055a33
JH
880 (fd, msg) Either and fd, to write the message to,
881 or a string: if null write message to allocated space
882 otherwire take content as headers.
6b46ecc6
JH
883 addr (chain of) addresses (for extra headers), or NULL;
884 only the first address is used
885 tblock optional transport instance block (NULL signifies NULL/0):
886 add_headers a string containing one or more headers to add; it is
887 expanded, and must be in correct RFC 822 format as
888 it is transmitted verbatim; NULL => no additions,
889 and so does empty string or forced expansion fail
890 remove_headers a colon-separated list of headers to remove, or NULL
891 rewrite_rules chain of header rewriting rules
892 rewrite_existflags flags for the rewriting rules
893 options bit-wise options:
894 add_return_path if TRUE, add a "return-path" header
895 add_envelope_to if TRUE, add a "envelope-to" header
896 add_delivery_date if TRUE, add a "delivery-date" header
897 use_crlf if TRUE, turn NL into CR LF
898 end_dot if TRUE, send a terminating "." line at the end
899 no_headers if TRUE, omit the headers
900 no_body if TRUE, omit the body
2d14f397
JH
901 check_string a string to check for at the start of lines, or NULL
902 escape_string a string to insert in front of any check string
903 size_limit if > 0, this is a limit to the size of message written;
6b46ecc6
JH
904 it is used when returning messages to their senders,
905 and is approximate rather than exact, owing to chunk
906 buffering
059ec3d9
PH
907
908Returns: TRUE on success; FALSE (with errno) on failure.
909 In addition, the global variable transport_count
910 is incremented by the number of bytes written.
911*/
912
d315eda1 913static BOOL
42055a33 914internal_transport_write_message(transport_ctx * tctx, int size_limit)
059ec3d9 915{
328c5688 916int len, size = 0;
059ec3d9
PH
917
918/* Initialize pointer in output buffer. */
919
42055a33 920transport_write_reset(tctx->options);
059ec3d9
PH
921
922/* Set up the data for start-of-line data checking and escaping */
923
6b46ecc6 924if (tctx->check_string && tctx->escape_string)
059ec3d9 925 {
6b46ecc6 926 nl_check = tctx->check_string;
059ec3d9 927 nl_check_length = Ustrlen(nl_check);
6b46ecc6 928 nl_escape = tctx->escape_string;
059ec3d9
PH
929 nl_escape_length = Ustrlen(nl_escape);
930 }
059ec3d9 931
328c5688
JH
932/* Whether the escaping mechanism is applied to headers or not is controlled by
933an option (set for SMTP, not otherwise). Negate the length if not wanted till
934after the headers. */
935
936if (!(tctx->options & topt_escape_headers))
937 nl_check_length = -nl_check_length;
938
059ec3d9 939/* Write the headers if required, including any that have to be added. If there
328c5688
JH
940are header rewriting rules, apply them. The datasource is not the -D spoolfile
941so temporarily hide the global that adjusts for its format. */
059ec3d9 942
6b46ecc6 943if (!(tctx->options & topt_no_headers))
059ec3d9 944 {
8768d548
JH
945 BOOL save_wireformat = f.spool_file_wireformat;
946 f.spool_file_wireformat = FALSE;
42055a33 947
059ec3d9
PH
948 /* Add return-path: if requested. */
949
6b46ecc6 950 if (tctx->options & topt_add_return_path)
059ec3d9
PH
951 {
952 uschar buffer[ADDRESS_MAXLENGTH + 20];
ff5aac2b 953 int n = sprintf(CS buffer, "Return-path: <%.*s>\n", ADDRESS_MAXLENGTH,
059ec3d9 954 return_path);
328c5688 955 if (!write_chunk(tctx, buffer, n)) goto bad;
059ec3d9
PH
956 }
957
958 /* Add envelope-to: if requested */
959
6b46ecc6 960 if (tctx->options & topt_add_envelope_to)
059ec3d9
PH
961 {
962 BOOL first = TRUE;
059ec3d9
PH
963 struct aci *plist = NULL;
964 struct aci *dlist = NULL;
f3ebb786 965 rmark reset_point = store_mark();
059ec3d9 966
328c5688 967 if (!write_chunk(tctx, US"Envelope-to: ", 13)) goto bad;
059ec3d9
PH
968
969 /* Pick up from all the addresses. The plist and dlist variables are
970 anchors for lists of addresses already handled; they have to be defined at
4c04137d 971 this level because write_env_to() calls itself recursively. */
059ec3d9 972
d7978c0f
JH
973 for (address_item * p = tctx->addr; p; p = p->next)
974 if (!write_env_to(p, &plist, &dlist, &first, tctx))
975 goto bad;
059ec3d9
PH
976
977 /* Add a final newline and reset the store used for tracking duplicates */
978
328c5688 979 if (!write_chunk(tctx, US"\n", 1)) goto bad;
059ec3d9
PH
980 store_reset(reset_point);
981 }
982
983 /* Add delivery-date: if requested. */
984
6b46ecc6 985 if (tctx->options & topt_add_delivery_date)
059ec3d9 986 {
a5ffa9b4
JH
987 uschar * s = tod_stamp(tod_full);
988
989 if ( !write_chunk(tctx, US"Delivery-date: ", 15)
990 || !write_chunk(tctx, s, Ustrlen(s))
991 || !write_chunk(tctx, US"\n", 1)) goto bad;
059ec3d9
PH
992 }
993
994 /* Then the message's headers. Don't write any that are flagged as "old";
995 that means they were rewritten, or are a record of envelope rewriting, or
996 were removed (e.g. Bcc). If remove_headers is not null, skip any headers that
d43cbe25 997 match any entries therein. Then check addr->prop.remove_headers too, provided that
059ec3d9 998 addr is not NULL. */
6b46ecc6 999
42055a33 1000 if (!transport_headers_send(tctx, &write_chunk))
328c5688
JH
1001 {
1002bad:
8768d548 1003 f.spool_file_wireformat = save_wireformat;
511a6c14 1004 return FALSE;
328c5688
JH
1005 }
1006
8768d548 1007 f.spool_file_wireformat = save_wireformat;
059ec3d9
PH
1008 }
1009
58fc5fb2
JH
1010/* When doing RFC3030 CHUNKING output, work out how much data would be in a
1011last-BDAT, consisting of the current write_chunk() output buffer fill
59932f7d
JH
1012(optimally, all of the headers - but it does not matter if we already had to
1013flush that buffer with non-last BDAT prependix) plus the amount of body data
58fc5fb2 1014(as expanded for CRLF lines). Then create and write BDAT(s), and ensure
e027f545
JH
1015that further use of write_chunk() will not prepend BDATs.
1016The first BDAT written will also first flush any outstanding MAIL and RCPT
1017commands which were buffered thans to PIPELINING.
1018Commands go out (using a send()) from a different buffer to data (using a
1019write()). They might not end up in the same TCP segment, which is
1020suboptimal. */
59932f7d 1021
65de12cc 1022if (tctx->options & topt_use_bdat)
59932f7d 1023 {
e027f545 1024 off_t fsize;
328c5688 1025 int hsize;
e027f545
JH
1026
1027 if ((hsize = chunk_ptr - deliver_out_buffer) < 0)
1028 hsize = 0;
65de12cc 1029 if (!(tctx->options & topt_no_body))
59932f7d
JH
1030 {
1031 if ((fsize = lseek(deliver_datafile, 0, SEEK_END)) < 0) return FALSE;
1032 fsize -= SPOOL_DATA_START_OFFSET;
1033 if (size_limit > 0 && fsize > size_limit)
1034 fsize = size_limit;
e027f545 1035 size = hsize + fsize;
8768d548 1036 if (tctx->options & topt_use_crlf && !f.spool_file_wireformat)
59932f7d 1037 size += body_linecount; /* account for CRLF-expansion */
42055a33
JH
1038
1039 /* With topt_use_bdat we never do dot-stuffing; no need to
1040 account for any expansion due to that. */
59932f7d
JH
1041 }
1042
e027f545
JH
1043 /* If the message is large, emit first a non-LAST chunk with just the
1044 headers, and reap the command responses. This lets us error out early
1045 on RCPT rejects rather than sending megabytes of data. Include headers
1046 on the assumption they are cheap enough and some clever implementations
1047 might errorcheck them too, on-the-fly, and reject that chunk. */
1048
1049 if (size > DELIVER_OUT_BUFFER_SIZE && hsize > 0)
1050 {
58fc5fb2 1051 DEBUG(D_transport)
4c04137d 1052 debug_printf("sending small initial BDAT; hsize=%d\n", hsize);
d2aa036b 1053 if ( tctx->chunk_cb(tctx, hsize, 0) != OK
42055a33 1054 || !transport_write_block(tctx, deliver_out_buffer, hsize, FALSE)
d2aa036b 1055 || tctx->chunk_cb(tctx, 0, tc_reap_prev) != OK
e027f545
JH
1056 )
1057 return FALSE;
1058 chunk_ptr = deliver_out_buffer;
1059 size -= hsize;
1060 }
1061
d2aa036b
JH
1062 /* Emit a LAST datachunk command, and unmark the context for further
1063 BDAT commands. */
59932f7d 1064
d2aa036b 1065 if (tctx->chunk_cb(tctx, size, tc_chunk_last) != OK)
511a6c14 1066 return FALSE;
6d5c916c 1067 tctx->options &= ~topt_use_bdat;
059ec3d9
PH
1068 }
1069
1070/* If the body is required, ensure that the data for check strings (formerly
1071the "from hack") is enabled by negating the length if necessary. (It will be
1072negative in cases where it isn't to apply to the headers). Then ensure the body
1073is positioned at the start of its file (following the message id), then write
1074it, applying the size limit if required. */
1075
328c5688
JH
1076/* If we have a wireformat -D file (CRNL lines, non-dotstuffed, no ending dot)
1077and we want to send a body without dotstuffing or ending-dot, in-clear,
1078then we can just dump it using sendfile.
1079This should get used for CHUNKING output and also for writing the -K file for
1080dkim signing, when we had CHUNKING input. */
1081
7d758a6a 1082#ifdef OS_SENDFILE
8768d548 1083if ( f.spool_file_wireformat
328c5688
JH
1084 && !(tctx->options & (topt_no_body | topt_end_dot))
1085 && !nl_check_length
74f1a423 1086 && tls_out.active.sock != tctx->u.fd
328c5688
JH
1087 )
1088 {
1089 ssize_t copied = 0;
1090 off_t offset = SPOOL_DATA_START_OFFSET;
1091
1092 /* Write out any header data in the buffer */
1093
1094 if ((len = chunk_ptr - deliver_out_buffer) > 0)
1095 {
1096 if (!transport_write_block(tctx, deliver_out_buffer, len, TRUE))
1097 return FALSE;
1098 size -= len;
1099 }
1100
1101 DEBUG(D_transport) debug_printf("using sendfile for body\n");
1102
1103 while(size > 0)
1104 {
7d758a6a 1105 if ((copied = os_sendfile(tctx->u.fd, deliver_datafile, &offset, size)) <= 0) break;
328c5688
JH
1106 size -= copied;
1107 }
1108 return copied >= 0;
1109 }
1110#else
1111DEBUG(D_transport) debug_printf("cannot use sendfile for body: no support\n");
1112#endif
1113
1114DEBUG(D_transport)
1115 if (!(tctx->options & topt_no_body))
1116 debug_printf("cannot use sendfile for body: %s\n",
8768d548 1117 !f.spool_file_wireformat ? "spoolfile not wireformat"
328c5688
JH
1118 : tctx->options & topt_end_dot ? "terminating dot wanted"
1119 : nl_check_length ? "dot- or From-stuffing wanted"
1120 : "TLS output wanted");
1121
6b46ecc6 1122if (!(tctx->options & topt_no_body))
059ec3d9 1123 {
05bf16f6 1124 unsigned long size = size_limit > 0 ? size_limit : ULONG_MAX;
e027f545 1125
059ec3d9
PH
1126 nl_check_length = abs(nl_check_length);
1127 nl_partial_match = 0;
d4ff61d1
JH
1128 if (lseek(deliver_datafile, SPOOL_DATA_START_OFFSET, SEEK_SET) < 0)
1129 return FALSE;
05bf16f6 1130 while ( (len = MIN(DELIVER_IN_BUFFER_SIZE, size)) > 0
59932f7d 1131 && (len = read(deliver_datafile, deliver_in_buffer, len)) > 0)
059ec3d9 1132 {
42055a33 1133 if (!write_chunk(tctx, deliver_in_buffer, len))
59932f7d 1134 return FALSE;
e027f545 1135 size -= len;
059ec3d9
PH
1136 }
1137
059ec3d9
PH
1138 /* A read error on the body will have left len == -1 and errno set. */
1139
1140 if (len != 0) return FALSE;
c0940526 1141 }
059ec3d9 1142
f64e8b5f 1143/* Finished with the check string, and spool-format consideration */
059ec3d9 1144
c0940526 1145nl_check_length = nl_escape_length = 0;
8768d548 1146f.spool_file_wireformat = FALSE;
c0940526
PP
1147
1148/* If requested, add a terminating "." line (SMTP output). */
1149
42055a33 1150if (tctx->options & topt_end_dot && !write_chunk(tctx, US".\n", 2))
c0940526 1151 return FALSE;
059ec3d9
PH
1152
1153/* Write out any remaining data in the buffer before returning. */
1154
1155return (len = chunk_ptr - deliver_out_buffer) <= 0 ||
42055a33 1156 transport_write_block(tctx, deliver_out_buffer, len, FALSE);
f7572e5a 1157}
80a47a2c 1158
f7572e5a
TK
1159
1160
328c5688 1161
059ec3d9
PH
1162/*************************************************
1163* External interface to write the message *
1164*************************************************/
1165
1166/* If there is no filtering required, call the internal function above to do
1167the real work, passing over all the arguments from this function. Otherwise,
1168set up a filtering process, fork another process to call the internal function
1169to write to the filter, and in this process just suck from the filter and write
42055a33
JH
1170down the fd in the transport context. At the end, tidy up the pipes and the
1171processes.
059ec3d9
PH
1172
1173Arguments: as for internal_transport_write_message() above
1174
1175Returns: TRUE on success; FALSE (with errno) for any failure
1176 transport_count is incremented by the number of bytes written
1177*/
1178
1179BOOL
42055a33 1180transport_write_message(transport_ctx * tctx, int size_limit)
059ec3d9 1181{
059ec3d9 1182BOOL last_filter_was_NL = TRUE;
8768d548 1183BOOL save_spool_file_wireformat = f.spool_file_wireformat;
059ec3d9 1184int rc, len, yield, fd_read, fd_write, save_errno;
806c3df9 1185int pfd[2] = {-1, -1};
059ec3d9 1186pid_t filter_pid, write_pid;
6b46ecc6 1187
8768d548 1188f.transport_filter_timed_out = FALSE;
2e2a30b4 1189
059ec3d9
PH
1190/* If there is no filter command set up, call the internal function that does
1191the actual work, passing it the incoming fd, and return its result. */
1192
6ff55e50
JH
1193if ( !transport_filter_argv
1194 || !*transport_filter_argv
1195 || !**transport_filter_argv
1196 )
42055a33 1197 return internal_transport_write_message(tctx, size_limit);
059ec3d9
PH
1198
1199/* Otherwise the message must be written to a filter process and read back
1200before being written to the incoming fd. First set up the special processing to
1201be done during the copying. */
1202
059ec3d9
PH
1203nl_partial_match = -1;
1204
6b46ecc6 1205if (tctx->check_string && tctx->escape_string)
059ec3d9 1206 {
6b46ecc6 1207 nl_check = tctx->check_string;
059ec3d9 1208 nl_check_length = Ustrlen(nl_check);
6b46ecc6 1209 nl_escape = tctx->escape_string;
059ec3d9
PH
1210 nl_escape_length = Ustrlen(nl_escape);
1211 }
1212else nl_check_length = nl_escape_length = 0;
1213
1214/* Start up a subprocess to run the command. Ensure that our main fd will
1215be closed when the subprocess execs, but remove the flag afterwards.
1216(Otherwise, if this is a TCP/IP socket, it can't get passed on to another
1217process to deliver another message.) We get back stdin/stdout file descriptors.
1218If the process creation failed, give an error return. */
1219
1220fd_read = -1;
1221fd_write = -1;
1222save_errno = 0;
1223yield = FALSE;
1224write_pid = (pid_t)(-1);
1225
92b0827a 1226 {
42055a33
JH
1227 int bits = fcntl(tctx->u.fd, F_GETFD);
1228 (void)fcntl(tctx->u.fd, F_SETFD, bits | FD_CLOEXEC);
92b0827a
JH
1229 filter_pid = child_open(USS transport_filter_argv, NULL, 077,
1230 &fd_write, &fd_read, FALSE);
42055a33 1231 (void)fcntl(tctx->u.fd, F_SETFD, bits & ~FD_CLOEXEC);
92b0827a 1232 }
059ec3d9
PH
1233if (filter_pid < 0) goto TIDY_UP; /* errno set */
1234
1235DEBUG(D_transport)
fb6833e0 1236 debug_printf("process %d running as transport filter: fd_write=%d fd_read=%d\n",
059ec3d9
PH
1237 (int)filter_pid, fd_write, fd_read);
1238
1239/* Fork subprocess to write the message to the filter, and return the result
1240via a(nother) pipe. While writing to the filter, we do not do the CRLF,
1241smtp dots, or check string processing. */
1242
1243if (pipe(pfd) != 0) goto TIDY_UP; /* errno set */
1244if ((write_pid = fork()) == 0)
1245 {
1246 BOOL rc;
f1e894f3
PH
1247 (void)close(fd_read);
1248 (void)close(pfd[pipe_read]);
059ec3d9 1249 nl_check_length = nl_escape_length = 0;
6b46ecc6 1250
42055a33 1251 tctx->u.fd = fd_write;
fb6833e0 1252 tctx->check_string = tctx->escape_string = NULL;
65de12cc 1253 tctx->options &= ~(topt_use_crlf | topt_end_dot | topt_use_bdat);
6b46ecc6 1254
42055a33 1255 rc = internal_transport_write_message(tctx, size_limit);
6b46ecc6 1256
059ec3d9 1257 save_errno = errno;
847a015a
JH
1258 if ( write(pfd[pipe_write], (void *)&rc, sizeof(BOOL))
1259 != sizeof(BOOL)
1260 || write(pfd[pipe_write], (void *)&save_errno, sizeof(int))
1261 != sizeof(int)
1262 || write(pfd[pipe_write], (void *)&tctx->addr->more_errno, sizeof(int))
1263 != sizeof(int)
a55697ac
JH
1264 || write(pfd[pipe_write], (void *)&tctx->addr->delivery_time, sizeof(struct timeval))
1265 != sizeof(struct timeval)
847a015a
JH
1266 )
1267 rc = FALSE; /* compiler quietening */
f3ebb786 1268 exim_underbar_exit(0);
059ec3d9
PH
1269 }
1270save_errno = errno;
1271
1272/* Parent process: close our copy of the writing subprocess' pipes. */
1273
f1e894f3
PH
1274(void)close(pfd[pipe_write]);
1275(void)close(fd_write);
059ec3d9
PH
1276fd_write = -1;
1277
1278/* Writing process creation failed */
1279
1280if (write_pid < 0)
1281 {
1282 errno = save_errno; /* restore */
1283 goto TIDY_UP;
1284 }
1285
1286/* When testing, let the subprocess get going */
1287
9f01e50d 1288testharness_pause_ms(250);
059ec3d9
PH
1289
1290DEBUG(D_transport)
1291 debug_printf("process %d writing to transport filter\n", (int)write_pid);
1292
1293/* Copy the message from the filter to the output fd. A read error leaves len
1294== -1 and errno set. We need to apply a timeout to the read, to cope with
1295the case when the filter gets stuck, but it can be quite a long one. The
1296default is 5m, but this is now configurable. */
1297
1298DEBUG(D_transport) debug_printf("copying from the filter\n");
1299
1300/* Copy the output of the filter, remembering if the last character was NL. If
1301no data is returned, that counts as "ended with NL" (default setting of the
328c5688
JH
1302variable is TRUE). The output should always be unix-format as we converted
1303any wireformat source on writing input to the filter. */
059ec3d9 1304
8768d548 1305f.spool_file_wireformat = FALSE;
059ec3d9
PH
1306chunk_ptr = deliver_out_buffer;
1307
1308for (;;)
1309 {
1310 sigalrm_seen = FALSE;
c2a1bba0 1311 ALARM(transport_filter_timeout);
059ec3d9 1312 len = read(fd_read, deliver_in_buffer, DELIVER_IN_BUFFER_SIZE);
c2a1bba0 1313 ALARM_CLR(0);
059ec3d9
PH
1314 if (sigalrm_seen)
1315 {
1316 errno = ETIMEDOUT;
8768d548 1317 f.transport_filter_timed_out = TRUE;
059ec3d9
PH
1318 goto TIDY_UP;
1319 }
1320
1321 /* If the read was successful, write the block down the original fd,
1322 remembering whether it ends in \n or not. */
1323
1324 if (len > 0)
1325 {
42055a33 1326 if (!write_chunk(tctx, deliver_in_buffer, len)) goto TIDY_UP;
059ec3d9
PH
1327 last_filter_was_NL = (deliver_in_buffer[len-1] == '\n');
1328 }
1329
1330 /* Otherwise, break the loop. If we have hit EOF, set yield = TRUE. */
1331
1332 else
1333 {
1334 if (len == 0) yield = TRUE;
1335 break;
1336 }
1337 }
1338
1339/* Tidying up code. If yield = FALSE there has been an error and errno is set
1340to something. Ensure the pipes are all closed and the processes are removed. If
1341there has been an error, kill the processes before waiting for them, just to be
1342sure. Also apply a paranoia timeout. */
1343
1344TIDY_UP:
8768d548 1345f.spool_file_wireformat = save_spool_file_wireformat;
059ec3d9
PH
1346save_errno = errno;
1347
f1e894f3
PH
1348(void)close(fd_read);
1349if (fd_write > 0) (void)close(fd_write);
059ec3d9
PH
1350
1351if (!yield)
1352 {
1353 if (filter_pid > 0) kill(filter_pid, SIGKILL);
1354 if (write_pid > 0) kill(write_pid, SIGKILL);
1355 }
1356
1357/* Wait for the filter process to complete. */
1358
1359DEBUG(D_transport) debug_printf("waiting for filter process\n");
1360if (filter_pid > 0 && (rc = child_close(filter_pid, 30)) != 0 && yield)
1361 {
1362 yield = FALSE;
1363 save_errno = ERRNO_FILTER_FAIL;
6b46ecc6 1364 tctx->addr->more_errno = rc;
059ec3d9
PH
1365 DEBUG(D_transport) debug_printf("filter process returned %d\n", rc);
1366 }
1367
1368/* Wait for the writing process to complete. If it ends successfully,
8e669ac1 1369read the results from its pipe, provided we haven't already had a filter
35af9f61 1370process failure. */
059ec3d9
PH
1371
1372DEBUG(D_transport) debug_printf("waiting for writing process\n");
1373if (write_pid > 0)
1374 {
35af9f61
PH
1375 rc = child_close(write_pid, 30);
1376 if (yield)
8e669ac1 1377 if (rc == 0)
35af9f61
PH
1378 {
1379 BOOL ok;
847a015a 1380 if (read(pfd[pipe_read], (void *)&ok, sizeof(BOOL)) != sizeof(BOOL))
4dc2379a
JH
1381 {
1382 DEBUG(D_transport)
1383 debug_printf("pipe read from writing process: %s\n", strerror(errno));
1384 save_errno = ERRNO_FILTER_FAIL;
1385 yield = FALSE;
1386 }
1387 else if (!ok)
35af9f61 1388 {
847a015a
JH
1389 int dummy = read(pfd[pipe_read], (void *)&save_errno, sizeof(int));
1390 dummy = read(pfd[pipe_read], (void *)&tctx->addr->more_errno, sizeof(int));
a55697ac 1391 dummy = read(pfd[pipe_read], (void *)&tctx->addr->delivery_time, sizeof(struct timeval));
cab0c277 1392 dummy = dummy; /* compiler quietening */
35af9f61
PH
1393 yield = FALSE;
1394 }
1395 }
1396 else
059ec3d9 1397 {
059ec3d9 1398 yield = FALSE;
35af9f61 1399 save_errno = ERRNO_FILTER_FAIL;
6b46ecc6 1400 tctx->addr->more_errno = rc;
35af9f61 1401 DEBUG(D_transport) debug_printf("writing process returned %d\n", rc);
059ec3d9 1402 }
059ec3d9 1403 }
f1e894f3 1404(void)close(pfd[pipe_read]);
059ec3d9
PH
1405
1406/* If there have been no problems we can now add the terminating "." if this is
1407SMTP output, turning off escaping beforehand. If the last character from the
1408filter was not NL, insert a NL to make the SMTP protocol work. */
1409
1410if (yield)
1411 {
1412 nl_check_length = nl_escape_length = 0;
8768d548 1413 f.spool_file_wireformat = FALSE;
6b46ecc6 1414 if ( tctx->options & topt_end_dot
ff5aac2b 1415 && ( last_filter_was_NL
42055a33
JH
1416 ? !write_chunk(tctx, US".\n", 2)
1417 : !write_chunk(tctx, US"\n.\n", 3)
ff5aac2b 1418 ) )
059ec3d9 1419 yield = FALSE;
059ec3d9
PH
1420
1421 /* Write out any remaining data in the buffer. */
1422
1423 else
ff5aac2b 1424 yield = (len = chunk_ptr - deliver_out_buffer) <= 0
42055a33 1425 || transport_write_block(tctx, deliver_out_buffer, len, FALSE);
059ec3d9 1426 }
ff5aac2b
JH
1427else
1428 errno = save_errno; /* From some earlier error */
059ec3d9
PH
1429
1430DEBUG(D_transport)
1431 {
1432 debug_printf("end of filtering transport writing: yield=%d\n", yield);
1433 if (!yield)
6b46ecc6 1434 debug_printf("errno=%d more_errno=%d\n", errno, tctx->addr->more_errno);
059ec3d9
PH
1435 }
1436
1437return yield;
1438}
1439
1440
1441
1442
1443
1444/*************************************************
1445* Update waiting database *
1446*************************************************/
1447
1448/* This is called when an address is deferred by remote transports that are
1449capable of sending more than one message over one connection. A database is
1450maintained for each transport, keeping track of which messages are waiting for
1451which hosts. The transport can then consult this when eventually a successful
1452delivery happens, and if it finds that another message is waiting for the same
1453host, it can fire up a new process to deal with it using the same connection.
1454
1455The database records are keyed by host name. They can get full if there are
1456lots of messages waiting, and so there is a continuation mechanism for them.
1457
1458Each record contains a list of message ids, packed end to end without any
1459zeros. Each one is MESSAGE_ID_LENGTH bytes long. The count field says how many
1460in this record, and the sequence field says if there are any other records for
1461this host. If the sequence field is 0, there are none. If it is 1, then another
1462record with the name <hostname>:0 exists; if it is 2, then two other records
1463with sequence numbers 0 and 1 exist, and so on.
1464
1465Currently, an exhaustive search of all continuation records has to be done to
1466determine whether to add a message id to a given record. This shouldn't be
1467too bad except in extreme cases. I can't figure out a *simple* way of doing
1468better.
1469
1470Old records should eventually get swept up by the exim_tidydb utility.
1471
1472Arguments:
f6c332bd 1473 hostlist list of hosts that this message could be sent to
059ec3d9
PH
1474 tpname name of the transport
1475
1476Returns: nothing
1477*/
1478
1479void
1480transport_update_waiting(host_item *hostlist, uschar *tpname)
1481{
55414b25 1482const uschar *prevname = US"";
059ec3d9
PH
1483open_db dbblock;
1484open_db *dbm_file;
1485
7a0743eb
PH
1486DEBUG(D_transport) debug_printf("updating wait-%s database\n", tpname);
1487
059ec3d9
PH
1488/* Open the database for this transport */
1489
36d295f1 1490if (!(dbm_file = dbfn_open(string_sprintf("wait-%.200s", tpname),
b10c87b3 1491 O_RDWR, &dbblock, TRUE, TRUE)))
36d295f1 1492 return;
059ec3d9
PH
1493
1494/* Scan the list of hosts for which this message is waiting, and ensure
f6c332bd 1495that the message id is in each host record. */
059ec3d9 1496
d7978c0f 1497for (host_item * host = hostlist; host; host = host->next)
059ec3d9
PH
1498 {
1499 BOOL already = FALSE;
1500 dbdata_wait *host_record;
d7978c0f 1501 int host_length;
36d295f1 1502 uschar buffer[256];
059ec3d9 1503
059ec3d9
PH
1504 /* Skip if this is the same host as we just processed; otherwise remember
1505 the name for next time. */
1506
1507 if (Ustrcmp(prevname, host->name) == 0) continue;
1508 prevname = host->name;
1509
1510 /* Look up the host record; if there isn't one, make an empty one. */
1511
36d295f1 1512 if (!(host_record = dbfn_read(dbm_file, host->name)))
059ec3d9 1513 {
f3ebb786 1514 host_record = store_get(sizeof(dbdata_wait) + MESSAGE_ID_LENGTH, FALSE);
059ec3d9
PH
1515 host_record->count = host_record->sequence = 0;
1516 }
1517
1518 /* Compute the current length */
1519
1520 host_length = host_record->count * MESSAGE_ID_LENGTH;
1521
1522 /* Search the record to see if the current message is already in it. */
1523
d7978c0f 1524 for (uschar * s = host_record->text; s < host_record->text + host_length;
059ec3d9 1525 s += MESSAGE_ID_LENGTH)
059ec3d9
PH
1526 if (Ustrncmp(s, message_id, MESSAGE_ID_LENGTH) == 0)
1527 { already = TRUE; break; }
059ec3d9
PH
1528
1529 /* If we haven't found this message in the main record, search any
1530 continuation records that exist. */
1531
d7978c0f 1532 for (int i = host_record->sequence - 1; i >= 0 && !already; i--)
059ec3d9
PH
1533 {
1534 dbdata_wait *cont;
1535 sprintf(CS buffer, "%.200s:%d", host->name, i);
36d295f1 1536 if ((cont = dbfn_read(dbm_file, buffer)))
059ec3d9
PH
1537 {
1538 int clen = cont->count * MESSAGE_ID_LENGTH;
d7978c0f 1539 for (uschar * s = cont->text; s < cont->text + clen; s += MESSAGE_ID_LENGTH)
059ec3d9
PH
1540 if (Ustrncmp(s, message_id, MESSAGE_ID_LENGTH) == 0)
1541 { already = TRUE; break; }
059ec3d9
PH
1542 }
1543 }
1544
1545 /* If this message is already in a record, no need to update. */
1546
7a0743eb
PH
1547 if (already)
1548 {
1549 DEBUG(D_transport) debug_printf("already listed for %s\n", host->name);
1550 continue;
1551 }
059ec3d9
PH
1552
1553
1554 /* If this record is full, write it out with a new name constructed
1555 from the sequence number, increase the sequence number, and empty
1556 the record. */
1557
1558 if (host_record->count >= WAIT_NAME_MAX)
1559 {
1560 sprintf(CS buffer, "%.200s:%d", host->name, host_record->sequence);
1561 dbfn_write(dbm_file, buffer, host_record, sizeof(dbdata_wait) + host_length);
1562 host_record->sequence++;
1563 host_record->count = 0;
1564 host_length = 0;
1565 }
1566
1567 /* If this record is not full, increase the size of the record to
1568 allow for one new message id. */
1569
1570 else
1571 {
1572 dbdata_wait *newr =
f3ebb786 1573 store_get(sizeof(dbdata_wait) + host_length + MESSAGE_ID_LENGTH, FALSE);
059ec3d9
PH
1574 memcpy(newr, host_record, sizeof(dbdata_wait) + host_length);
1575 host_record = newr;
1576 }
1577
1578 /* Now add the new name on the end */
1579
1580 memcpy(host_record->text + host_length, message_id, MESSAGE_ID_LENGTH);
1581 host_record->count++;
1582 host_length += MESSAGE_ID_LENGTH;
1583
1584 /* Update the database */
1585
1586 dbfn_write(dbm_file, host->name, host_record, sizeof(dbdata_wait) + host_length);
7a0743eb 1587 DEBUG(D_transport) debug_printf("added to list for %s\n", host->name);
059ec3d9
PH
1588 }
1589
1590/* All now done */
1591
1592dbfn_close(dbm_file);
1593}
1594
1595
1596
1597
1598/*************************************************
1599* Test for waiting messages *
1600*************************************************/
1601
1602/* This function is called by a remote transport which uses the previous
1603function to remember which messages are waiting for which remote hosts. It's
1604called after a successful delivery and its job is to check whether there is
1605another message waiting for the same host. However, it doesn't do this if the
1606current continue sequence is greater than the maximum supplied as an argument,
1607or greater than the global connection_max_messages, which, if set, overrides.
1608
1609Arguments:
1610 transport_name name of the transport
1611 hostname name of the host
1612 local_message_max maximum number of messages down one connection
1613 as set by the caller transport
1614 new_message_id set to the message id of a waiting message
1615 more set TRUE if there are yet more messages waiting
a39bd74d
JB
1616 oicf_func function to call to validate if it is ok to send
1617 to this message_id from the current instance.
1618 oicf_data opaque data for oicf_func
059ec3d9
PH
1619
1620Returns: TRUE if new_message_id set; FALSE otherwise
1621*/
1622
a39bd74d
JB
1623typedef struct msgq_s
1624{
1625 uschar message_id [MESSAGE_ID_LENGTH + 1];
1626 BOOL bKeep;
1627} msgq_t;
1628
059ec3d9 1629BOOL
55414b25 1630transport_check_waiting(const uschar *transport_name, const uschar *hostname,
a39bd74d 1631 int local_message_max, uschar *new_message_id, BOOL *more, oicf oicf_func, void *oicf_data)
059ec3d9
PH
1632{
1633dbdata_wait *host_record;
0539a19d 1634int host_length;
059ec3d9
PH
1635open_db dbblock;
1636open_db *dbm_file;
059ec3d9 1637
a39bd74d 1638int i;
a39bd74d 1639struct stat statbuf;
a39bd74d 1640
059ec3d9
PH
1641*more = FALSE;
1642
1643DEBUG(D_transport)
1644 {
1645 debug_printf("transport_check_waiting entered\n");
1646 debug_printf(" sequence=%d local_max=%d global_max=%d\n",
1647 continue_sequence, local_message_max, connection_max_messages);
1648 }
1649
1650/* Do nothing if we have hit the maximum number that can be send down one
1651connection. */
1652
1653if (connection_max_messages >= 0) local_message_max = connection_max_messages;
1654if (local_message_max > 0 && continue_sequence >= local_message_max)
1655 {
1656 DEBUG(D_transport)
1657 debug_printf("max messages for one connection reached: returning\n");
1658 return FALSE;
1659 }
1660
1661/* Open the waiting information database. */
1662
36d295f1 1663if (!(dbm_file = dbfn_open(string_sprintf("wait-%.200s", transport_name),
b10c87b3 1664 O_RDWR, &dbblock, TRUE, TRUE)))
36d295f1 1665 return FALSE;
059ec3d9
PH
1666
1667/* See if there is a record for this host; if not, there's nothing to do. */
1668
789f8a4f 1669if (!(host_record = dbfn_read(dbm_file, hostname)))
059ec3d9
PH
1670 {
1671 dbfn_close(dbm_file);
1672 DEBUG(D_transport) debug_printf("no messages waiting for %s\n", hostname);
1673 return FALSE;
1674 }
1675
1676/* If the data in the record looks corrupt, just log something and
1677don't try to use it. */
1678
1679if (host_record->count > WAIT_NAME_MAX)
1680 {
1681 dbfn_close(dbm_file);
1682 log_write(0, LOG_MAIN|LOG_PANIC, "smtp-wait database entry for %s has bad "
1683 "count=%d (max=%d)", hostname, host_record->count, WAIT_NAME_MAX);
1684 return FALSE;
1685 }
1686
1687/* Scan the message ids in the record from the end towards the beginning,
1688until one is found for which a spool file actually exists. If the record gets
1689emptied, delete it and continue with any continuation records that may exist.
1690*/
1691
a39bd74d
JB
1692/* For Bug 1141, I refactored this major portion of the routine, it is risky
1693but the 1 off will remain without it. This code now allows me to SKIP over
1694a message I do not want to send out on this run. */
059ec3d9 1695
a39bd74d
JB
1696host_length = host_record->count * MESSAGE_ID_LENGTH;
1697
1698while (1)
059ec3d9 1699 {
789f8a4f
JH
1700 msgq_t *msgq;
1701 int msgq_count = 0;
1702 int msgq_actual = 0;
1703 BOOL bFound = FALSE;
1704 BOOL bContinuation = FALSE;
1705
a39bd74d 1706 /* create an array to read entire message queue into memory for processing */
059ec3d9 1707
f3ebb786 1708 msgq = store_get(sizeof(msgq_t) * host_record->count, FALSE);
a39bd74d
JB
1709 msgq_count = host_record->count;
1710 msgq_actual = msgq_count;
059ec3d9 1711
a39bd74d 1712 for (i = 0; i < host_record->count; ++i)
059ec3d9 1713 {
a39bd74d
JB
1714 msgq[i].bKeep = TRUE;
1715
f3ebb786 1716 Ustrncpy_nt(msgq[i].message_id, host_record->text + (i * MESSAGE_ID_LENGTH),
059ec3d9 1717 MESSAGE_ID_LENGTH);
a39bd74d
JB
1718 msgq[i].message_id[MESSAGE_ID_LENGTH] = 0;
1719 }
1720
1721 /* first thing remove current message id if it exists */
059ec3d9 1722
a39bd74d
JB
1723 for (i = 0; i < msgq_count; ++i)
1724 if (Ustrcmp(msgq[i].message_id, message_id) == 0)
1725 {
1726 msgq[i].bKeep = FALSE;
1727 break;
1728 }
1729
1730 /* now find the next acceptable message_id */
1731
a39bd74d
JB
1732 for (i = msgq_count - 1; i >= 0; --i) if (msgq[i].bKeep)
1733 {
41313d92 1734 uschar subdir[2];
59a93276 1735 uschar * mid = msgq[i].message_id;
41313d92 1736
59a93276
JH
1737 set_subdir_str(subdir, mid, 0);
1738 if (Ustat(spool_fname(US"input", subdir, mid, US"-D"), &statbuf) != 0)
a39bd74d 1739 msgq[i].bKeep = FALSE;
59a93276 1740 else if (!oicf_func || oicf_func(mid, oicf_data))
059ec3d9 1741 {
59a93276 1742 Ustrcpy_nt(new_message_id, mid);
a39bd74d
JB
1743 msgq[i].bKeep = FALSE;
1744 bFound = TRUE;
059ec3d9
PH
1745 break;
1746 }
1747 }
1748
a39bd74d
JB
1749 /* re-count */
1750 for (msgq_actual = 0, i = 0; i < msgq_count; ++i)
1751 if (msgq[i].bKeep)
1752 msgq_actual++;
1753
1754 /* reassemble the host record, based on removed message ids, from in
789f8a4f 1755 memory queue */
a39bd74d
JB
1756
1757 if (msgq_actual <= 0)
1758 {
1759 host_length = 0;
1760 host_record->count = 0;
1761 }
1762 else
1763 {
1764 host_length = msgq_actual * MESSAGE_ID_LENGTH;
1765 host_record->count = msgq_actual;
1766
1767 if (msgq_actual < msgq_count)
1768 {
1769 int new_count;
1770 for (new_count = 0, i = 0; i < msgq_count; ++i)
1771 if (msgq[i].bKeep)
1772 Ustrncpy(&host_record->text[new_count++ * MESSAGE_ID_LENGTH],
1773 msgq[i].message_id, MESSAGE_ID_LENGTH);
1774
1775 host_record->text[new_count * MESSAGE_ID_LENGTH] = 0;
1776 }
1777 }
1778
36d295f1 1779 /* Check for a continuation record. */
a39bd74d 1780
059ec3d9
PH
1781 while (host_length <= 0)
1782 {
a39bd74d 1783 dbdata_wait * newr = NULL;
36d295f1 1784 uschar buffer[256];
059ec3d9
PH
1785
1786 /* Search for a continuation */
1787
d7978c0f 1788 for (int i = host_record->sequence - 1; i >= 0 && !newr; i--)
059ec3d9
PH
1789 {
1790 sprintf(CS buffer, "%.200s:%d", hostname, i);
1791 newr = dbfn_read(dbm_file, buffer);
1792 }
1793
1794 /* If no continuation, delete the current and break the loop */
1795
a39bd74d 1796 if (!newr)
059ec3d9
PH
1797 {
1798 dbfn_delete(dbm_file, hostname);
1799 break;
1800 }
1801
1802 /* Else replace the current with the continuation */
1803
1804 dbfn_delete(dbm_file, buffer);
1805 host_record = newr;
1806 host_length = host_record->count * MESSAGE_ID_LENGTH;
059ec3d9 1807
a39bd74d
JB
1808 bContinuation = TRUE;
1809 }
059ec3d9 1810
789f8a4f 1811 if (bFound) /* Usual exit from main loop */
a39bd74d 1812 break;
059ec3d9
PH
1813
1814 /* If host_length <= 0 we have emptied a record and not found a good message,
1815 and there are no continuation records. Otherwise there is a continuation
1816 record to process. */
1817
1818 if (host_length <= 0)
1819 {
1820 dbfn_close(dbm_file);
1821 DEBUG(D_transport) debug_printf("waiting messages already delivered\n");
1822 return FALSE;
1823 }
a39bd74d
JB
1824
1825 /* we were not able to find an acceptable message, nor was there a
1826 * continuation record. So bug out, outer logic will clean this up.
1827 */
1828
1829 if (!bContinuation)
1830 {
789f8a4f 1831 Ustrcpy(new_message_id, message_id);
a39bd74d
JB
1832 dbfn_close(dbm_file);
1833 return FALSE;
1834 }
789f8a4f 1835 } /* we need to process a continuation record */
059ec3d9
PH
1836
1837/* Control gets here when an existing message has been encountered; its
1838id is in new_message_id, and host_length is the revised length of the
1839host record. If it is zero, the record has been removed. Update the
1840record if required, close the database, and return TRUE. */
1841
1842if (host_length > 0)
1843 {
1844 host_record->count = host_length/MESSAGE_ID_LENGTH;
a39bd74d 1845
059ec3d9
PH
1846 dbfn_write(dbm_file, hostname, host_record, (int)sizeof(dbdata_wait) + host_length);
1847 *more = TRUE;
1848 }
1849
1850dbfn_close(dbm_file);
1851return TRUE;
1852}
1853
059ec3d9
PH
1854/*************************************************
1855* Deliver waiting message down same socket *
1856*************************************************/
1857
57cc2785
JH
1858/* Just the regain-root-privilege exec portion */
1859void
1860transport_do_pass_socket(const uschar *transport_name, const uschar *hostname,
1861 const uschar *hostaddress, uschar *id, int socket_fd)
1862{
57cc2785
JH
1863int i = 20;
1864const uschar **argv;
1865
1866/* Set up the calling arguments; use the standard function for the basics,
1867but we have a number of extras that may be added. */
1868
1869argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, &i, FALSE, 0);
1870
8768d548 1871if (f.smtp_authenticated) argv[i++] = US"-MCA";
14de8063
JH
1872if (smtp_peer_options & OPTION_CHUNKING) argv[i++] = US"-MCK";
1873if (smtp_peer_options & OPTION_DSN) argv[i++] = US"-MCD";
1874if (smtp_peer_options & OPTION_PIPE) argv[i++] = US"-MCP";
1875if (smtp_peer_options & OPTION_SIZE) argv[i++] = US"-MCS";
01603eec 1876#ifndef DISABLE_TLS
14de8063 1877if (smtp_peer_options & OPTION_TLS)
74f1a423 1878 if (tls_out.active.sock >= 0 || continue_proxy_cipher)
57cc2785
JH
1879 {
1880 argv[i++] = US"-MCt";
1881 argv[i++] = sending_ip_address;
1882 argv[i++] = string_sprintf("%d", sending_port);
74f1a423 1883 argv[i++] = tls_out.active.sock >= 0 ? tls_out.cipher : continue_proxy_cipher;
57cc2785
JH
1884 }
1885 else
1886 argv[i++] = US"-MCT";
1887#endif
1888
1889if (queue_run_pid != (pid_t)0)
1890 {
1891 argv[i++] = US"-MCQ";
1892 argv[i++] = string_sprintf("%d", queue_run_pid);
1893 argv[i++] = string_sprintf("%d", queue_run_pipe);
1894 }
1895
1896argv[i++] = US"-MC";
1897argv[i++] = US transport_name;
1898argv[i++] = US hostname;
1899argv[i++] = US hostaddress;
1900argv[i++] = string_sprintf("%d", continue_sequence + 1);
1901argv[i++] = id;
1902argv[i++] = NULL;
1903
1904/* Arrange for the channel to be on stdin. */
1905
1906if (socket_fd != 0)
1907 {
1908 (void)dup2(socket_fd, 0);
1909 (void)close(socket_fd);
1910 }
1911
1912DEBUG(D_exec) debug_print_argv(argv);
1913exim_nullstd(); /* Ensure std{out,err} exist */
1914execv(CS argv[0], (char *const *)argv);
1915
1916DEBUG(D_any) debug_printf("execv failed: %s\n", strerror(errno));
1917_exit(errno); /* Note: must be _exit(), NOT exit() */
1918}
1919
1920
1921
059ec3d9
PH
1922/* Fork a new exim process to deliver the message, and do a re-exec, both to
1923get a clean delivery process, and to regain root privilege in cases where it
1924has been given away.
1925
1926Arguments:
1927 transport_name to pass to the new process
1928 hostname ditto
1929 hostaddress ditto
1930 id the new message to process
1931 socket_fd the connected socket
1932
1933Returns: FALSE if fork fails; TRUE otherwise
1934*/
1935
1936BOOL
55414b25
JH
1937transport_pass_socket(const uschar *transport_name, const uschar *hostname,
1938 const uschar *hostaddress, uschar *id, int socket_fd)
059ec3d9
PH
1939{
1940pid_t pid;
1941int status;
1942
1943DEBUG(D_transport) debug_printf("transport_pass_socket entered\n");
1944
1945if ((pid = fork()) == 0)
1946 {
059ec3d9
PH
1947 /* Disconnect entirely from the parent process. If we are running in the
1948 test harness, wait for a bit to allow the previous process time to finish,
1949 write the log, etc., so that the output is always in the same order for
1950 automatic comparison. */
1951
b7d3afcf
JH
1952 if ((pid = fork()) != 0)
1953 {
1954 DEBUG(D_transport) debug_printf("transport_pass_socket succeeded (final-pid %d)\n", pid);
1955 _exit(EXIT_SUCCESS);
1956 }
9f01e50d 1957 testharness_pause_ms(1000);
059ec3d9 1958
57cc2785
JH
1959 transport_do_pass_socket(transport_name, hostname, hostaddress,
1960 id, socket_fd);
059ec3d9
PH
1961 }
1962
1963/* If the process creation succeeded, wait for the first-level child, which
1964immediately exits, leaving the second level process entirely disconnected from
1965this one. */
1966
1967if (pid > 0)
1968 {
1969 int rc;
1970 while ((rc = wait(&status)) != pid && (rc >= 0 || errno != ECHILD));
b7d3afcf 1971 DEBUG(D_transport) debug_printf("transport_pass_socket succeeded (inter-pid %d)\n", pid);
059ec3d9
PH
1972 return TRUE;
1973 }
1974else
1975 {
1976 DEBUG(D_transport) debug_printf("transport_pass_socket failed to fork: %s\n",
1977 strerror(errno));
1978 return FALSE;
1979 }
1980}
1981
1982
1983
1984/*************************************************
1985* Set up direct (non-shell) command *
1986*************************************************/
1987
1988/* This function is called when a command line is to be parsed and executed
1989directly, without the use of /bin/sh. It is called by the pipe transport,
1990the queryprogram router, and also from the main delivery code when setting up a
1991transport filter process. The code for ETRN also makes use of this; in that
1992case, no addresses are passed.
1993
1994Arguments:
1995 argvptr pointer to anchor for argv vector
55414b25 1996 cmd points to the command string (modified IN PLACE)
059ec3d9
PH
1997 expand_arguments true if expansion is to occur
1998 expand_failed error value to set if expansion fails; not relevant if
1999 addr == NULL
2000 addr chain of addresses, or NULL
2001 etext text for use in error messages
2002 errptr where to put error message if addr is NULL;
2003 otherwise it is put in the first address
2004
2005Returns: TRUE if all went well; otherwise an error will be
2006 set in the first address and FALSE returned
2007*/
2008
2009BOOL
55414b25
JH
2010transport_set_up_command(const uschar ***argvptr, uschar *cmd,
2011 BOOL expand_arguments, int expand_failed, address_item *addr,
2012 uschar *etext, uschar **errptr)
059ec3d9 2013{
55414b25 2014const uschar **argv;
059ec3d9
PH
2015uschar *s, *ss;
2016int address_count = 0;
2017int argcount = 0;
d7978c0f 2018int max_args;
059ec3d9
PH
2019
2020/* Get store in which to build an argument list. Count the number of addresses
2021supplied, and allow for that many arguments, plus an additional 60, which
2022should be enough for anybody. Multiple addresses happen only when the local
2023delivery batch option is set. */
2024
d7978c0f 2025for (address_item * ad = addr; ad; ad = ad->next) address_count++;
059ec3d9 2026max_args = address_count + 60;
f3ebb786 2027*argvptr = argv = store_get((max_args+1)*sizeof(uschar *), FALSE);
059ec3d9
PH
2028
2029/* Split the command up into arguments terminated by white space. Lose
2030trailing space at the start and end. Double-quoted arguments can contain \\ and
2031\" escapes and so can be handled by the standard function; single-quoted
2032arguments are verbatim. Copy each argument into a new string. */
2033
2034s = cmd;
2035while (isspace(*s)) s++;
2036
f3ebb786 2037for (; *s != 0 && argcount < max_args; argcount++)
059ec3d9
PH
2038 {
2039 if (*s == '\'')
2040 {
2041 ss = s + 1;
2042 while (*ss != 0 && *ss != '\'') ss++;
f3ebb786 2043 argv[argcount] = ss = store_get(ss - s++, is_tainted(cmd));
059ec3d9
PH
2044 while (*s != 0 && *s != '\'') *ss++ = *s++;
2045 if (*s != 0) s++;
2046 *ss++ = 0;
2047 }
f3ebb786
JH
2048 else
2049 argv[argcount] = string_dequote(CUSS &s);
059ec3d9
PH
2050 while (isspace(*s)) s++;
2051 }
2052
5903c6ff 2053argv[argcount] = US 0;
059ec3d9
PH
2054
2055/* If *s != 0 we have run out of argument slots. */
2056
2057if (*s != 0)
2058 {
2059 uschar *msg = string_sprintf("Too many arguments in command \"%s\" in "
2060 "%s", cmd, etext);
2061 if (addr != NULL)
2062 {
2063 addr->transport_return = FAIL;
2064 addr->message = msg;
2065 }
2066 else *errptr = msg;
2067 return FALSE;
2068 }
2069
2070/* Expand each individual argument if required. Expansion happens for pipes set
2071up in filter files and with directly-supplied commands. It does not happen if
2072the pipe comes from a traditional .forward file. A failing expansion is a big
2073disaster if the command came from Exim's configuration; if it came from a user
2074it is just a normal failure. The expand_failed value is used as the error value
2075to cater for these two cases.
2076
2077An argument consisting just of the text "$pipe_addresses" is treated specially.
2078It is not passed to the general expansion function. Instead, it is replaced by
2079a number of arguments, one for each address. This avoids problems with shell
2080metacharacters and spaces in addresses.
2081
2082If the parent of the top address has an original part of "system-filter", this
2083pipe was set up by the system filter, and we can permit the expansion of
2084$recipients. */
2085
2086DEBUG(D_transport)
2087 {
2088 debug_printf("direct command:\n");
f3ebb786
JH
2089 for (int i = 0; argv[i]; i++)
2090 debug_printf(" argv[%d] = '%s'\n", i, string_printing(argv[i]));
059ec3d9
PH
2091 }
2092
2093if (expand_arguments)
2094 {
2095 BOOL allow_dollar_recipients = addr != NULL &&
2096 addr->parent != NULL &&
2097 Ustrcmp(addr->parent->address, "system-filter") == 0;
2098
d7978c0f 2099 for (int i = 0; argv[i] != US 0; i++)
059ec3d9
PH
2100 {
2101
2102 /* Handle special fudge for passing an address list */
2103
2104 if (addr != NULL &&
2105 (Ustrcmp(argv[i], "$pipe_addresses") == 0 ||
2106 Ustrcmp(argv[i], "${pipe_addresses}") == 0))
2107 {
2108 int additional;
2109
2110 if (argcount + address_count - 1 > max_args)
2111 {
2112 addr->transport_return = FAIL;
2113 addr->message = string_sprintf("Too many arguments to command \"%s\" "
2114 "in %s", cmd, etext);
2115 return FALSE;
2116 }
2117
2118 additional = address_count - 1;
2119 if (additional > 0)
2120 memmove(argv + i + 1 + additional, argv + i + 1,
2121 (argcount - i)*sizeof(uschar *));
2122
d7978c0f
JH
2123 for (address_item * ad = addr; ad; ad = ad->next)
2124 {
2125 argv[i++] = ad->address;
2126 argcount++;
2127 }
09792322 2128
700d22f3
PP
2129 /* Subtract one since we replace $pipe_addresses */
2130 argcount--;
2131 i--;
09792322
NK
2132 }
2133
2134 /* Handle special case of $address_pipe when af_force_command is set */
2135
2136 else if (addr != NULL && testflag(addr,af_force_command) &&
2137 (Ustrcmp(argv[i], "$address_pipe") == 0 ||
2138 Ustrcmp(argv[i], "${address_pipe}") == 0))
2139 {
09792322
NK
2140 int address_pipe_argcount = 0;
2141 int address_pipe_max_args;
2142 uschar **address_pipe_argv;
f3ebb786 2143 BOOL tainted;
09792322
NK
2144
2145 /* We can never have more then the argv we will be loading into */
2146 address_pipe_max_args = max_args - argcount + 1;
2147
2148 DEBUG(D_transport)
700d22f3 2149 debug_printf("address_pipe_max_args=%d\n", address_pipe_max_args);
09792322
NK
2150
2151 /* We allocate an additional for (uschar *)0 */
f3ebb786 2152 address_pipe_argv = store_get((address_pipe_max_args+1)*sizeof(uschar *), FALSE);
09792322
NK
2153
2154 /* +1 because addr->local_part[0] == '|' since af_force_command is set */
2155 s = expand_string(addr->local_part + 1);
f3ebb786 2156 tainted = is_tainted(s);
09792322 2157
700d22f3
PP
2158 if (s == NULL || *s == '\0')
2159 {
2160 addr->transport_return = FAIL;
2161 addr->message = string_sprintf("Expansion of \"%s\" "
2162 "from command \"%s\" in %s failed: %s",
2163 (addr->local_part + 1), cmd, etext, expand_string_message);
09792322 2164 return FALSE;
700d22f3 2165 }
09792322
NK
2166
2167 while (isspace(*s)) s++; /* strip leading space */
2168
2169 while (*s != 0 && address_pipe_argcount < address_pipe_max_args)
2170 {
2171 if (*s == '\'')
2172 {
2173 ss = s + 1;
2174 while (*ss != 0 && *ss != '\'') ss++;
f3ebb786 2175 address_pipe_argv[address_pipe_argcount++] = ss = store_get(ss - s++, tainted);
09792322
NK
2176 while (*s != 0 && *s != '\'') *ss++ = *s++;
2177 if (*s != 0) s++;
2178 *ss++ = 0;
2179 }
55414b25
JH
2180 else address_pipe_argv[address_pipe_argcount++] =
2181 string_copy(string_dequote(CUSS &s));
09792322
NK
2182 while (isspace(*s)) s++; /* strip space after arg */
2183 }
2184
5903c6ff 2185 address_pipe_argv[address_pipe_argcount] = US 0;
09792322
NK
2186
2187 /* If *s != 0 we have run out of argument slots. */
2188 if (*s != 0)
2189 {
2190 uschar *msg = string_sprintf("Too many arguments in $address_pipe "
2191 "\"%s\" in %s", addr->local_part + 1, etext);
2192 if (addr != NULL)
2193 {
2194 addr->transport_return = FAIL;
2195 addr->message = msg;
2196 }
2197 else *errptr = msg;
2198 return FALSE;
2199 }
2200
700d22f3
PP
2201 /* address_pipe_argcount - 1
2202 * because we are replacing $address_pipe in the argument list
2203 * with the first thing it expands to */
09792322
NK
2204 if (argcount + address_pipe_argcount - 1 > max_args)
2205 {
2206 addr->transport_return = FAIL;
2207 addr->message = string_sprintf("Too many arguments to command "
2208 "\"%s\" after expanding $address_pipe in %s", cmd, etext);
2209 return FALSE;
2210 }
2211
2212 /* If we are not just able to replace the slot that contained
2213 * $address_pipe (address_pipe_argcount == 1)
700d22f3 2214 * We have to move the existing argv by address_pipe_argcount - 1
09792322
NK
2215 * Visually if address_pipe_argcount == 2:
2216 * [argv 0][argv 1][argv 2($address_pipe)][argv 3][0]
700d22f3 2217 * [argv 0][argv 1][ap_arg0][ap_arg1][old argv 3][0]
09792322
NK
2218 */
2219 if (address_pipe_argcount > 1)
2220 memmove(
4c04137d 2221 /* current position + additional args */
09792322
NK
2222 argv + i + address_pipe_argcount,
2223 /* current position + 1 (for the (uschar *)0 at the end) */
2224 argv + i + 1,
2225 /* -1 for the (uschar *)0 at the end)*/
2226 (argcount - i)*sizeof(uschar *)
2227 );
2228
2229 /* Now we fill in the slots we just moved argv out of
2230 * [argv 0][argv 1][argv 2=pipeargv[0]][argv 3=pipeargv[1]][old argv 3][0]
2231 */
d7978c0f 2232 for (int address_pipe_i = 0;
5903c6ff 2233 address_pipe_argv[address_pipe_i] != US 0;
700d22f3
PP
2234 address_pipe_i++)
2235 {
2236 argv[i++] = address_pipe_argv[address_pipe_i];
2237 argcount++;
09792322
NK
2238 }
2239
700d22f3
PP
2240 /* Subtract one since we replace $address_pipe */
2241 argcount--;
2242 i--;
059ec3d9
PH
2243 }
2244
2245 /* Handle normal expansion string */
2246
2247 else
2248 {
55414b25 2249 const uschar *expanded_arg;
8768d548 2250 f.enable_dollar_recipients = allow_dollar_recipients;
55414b25 2251 expanded_arg = expand_cstring(argv[i]);
8768d548 2252 f.enable_dollar_recipients = FALSE;
059ec3d9 2253
f3ebb786 2254 if (!expanded_arg)
059ec3d9
PH
2255 {
2256 uschar *msg = string_sprintf("Expansion of \"%s\" "
2257 "from command \"%s\" in %s failed: %s",
2258 argv[i], cmd, etext, expand_string_message);
f3ebb786 2259 if (addr)
059ec3d9
PH
2260 {
2261 addr->transport_return = expand_failed;
2262 addr->message = msg;
2263 }
2264 else *errptr = msg;
2265 return FALSE;
2266 }
2267 argv[i] = expanded_arg;
2268 }
2269 }
2270
2271 DEBUG(D_transport)
2272 {
2273 debug_printf("direct command after expansion:\n");
d7978c0f 2274 for (int i = 0; argv[i] != US 0; i++)
059ec3d9
PH
2275 debug_printf(" argv[%d] = %s\n", i, string_printing(argv[i]));
2276 }
2277 }
2278
2279return TRUE;
2280}
2281
d185889f 2282#endif /*!MACRO_PREDEF*/
511a6c14
JH
2283/* vi: aw ai sw=2
2284*/
059ec3d9 2285/* End of transport.c */