2dfb5b73af4ad31e9f192db1d82d648207f70100
[exim.git] / src / src / transports / smtp.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 #include "../exim.h"
9 #include "smtp.h"
10
11
12 /* Options specific to the smtp transport. This transport also supports LMTP
13 over TCP/IP. The options must be in alphabetic order (note that "_" comes
14 before the lower case letters). Some live in the transport_instance block so as
15 to be publicly visible; these are flagged with opt_public. */
16
17 optionlist smtp_transport_options[] = {
18   { "*expand_multi_domain",             opt_stringptr | opt_hidden | opt_public,
19       (void *)offsetof(transport_instance, expand_multi_domain) },
20   { "*expand_retry_include_ip_address", opt_stringptr | opt_hidden,
21        (void *)(offsetof(smtp_transport_options_block, expand_retry_include_ip_address)) },
22
23   { "address_retry_include_sender", opt_bool,
24       (void *)offsetof(smtp_transport_options_block, address_retry_include_sender) },
25   { "allow_localhost",      opt_bool,
26       (void *)offsetof(smtp_transport_options_block, allow_localhost) },
27 #ifdef EXPERIMENTAL_ARC
28   { "arc_sign", opt_stringptr,
29       (void *)offsetof(smtp_transport_options_block, arc_sign) },
30 #endif
31   { "authenticated_sender", opt_stringptr,
32       (void *)offsetof(smtp_transport_options_block, authenticated_sender) },
33   { "authenticated_sender_force", opt_bool,
34       (void *)offsetof(smtp_transport_options_block, authenticated_sender_force) },
35   { "command_timeout",      opt_time,
36       (void *)offsetof(smtp_transport_options_block, command_timeout) },
37   { "connect_timeout",      opt_time,
38       (void *)offsetof(smtp_transport_options_block, connect_timeout) },
39   { "connection_max_messages", opt_int | opt_public,
40       (void *)offsetof(transport_instance, connection_max_messages) },
41 # ifdef SUPPORT_DANE
42   { "dane_require_tls_ciphers", opt_stringptr,
43       (void *)offsetof(smtp_transport_options_block, dane_require_tls_ciphers) },
44 # endif
45   { "data_timeout",         opt_time,
46       (void *)offsetof(smtp_transport_options_block, data_timeout) },
47   { "delay_after_cutoff", opt_bool,
48       (void *)offsetof(smtp_transport_options_block, delay_after_cutoff) },
49 #ifndef DISABLE_DKIM
50   { "dkim_canon", opt_stringptr,
51       (void *)offsetof(smtp_transport_options_block, dkim.dkim_canon) },
52   { "dkim_domain", opt_stringptr,
53       (void *)offsetof(smtp_transport_options_block, dkim.dkim_domain) },
54   { "dkim_hash", opt_stringptr,
55       (void *)offsetof(smtp_transport_options_block, dkim.dkim_hash) },
56   { "dkim_identity", opt_stringptr,
57       (void *)offsetof(smtp_transport_options_block, dkim.dkim_identity) },
58   { "dkim_private_key", opt_stringptr,
59       (void *)offsetof(smtp_transport_options_block, dkim.dkim_private_key) },
60   { "dkim_selector", opt_stringptr,
61       (void *)offsetof(smtp_transport_options_block, dkim.dkim_selector) },
62   { "dkim_sign_headers", opt_stringptr,
63       (void *)offsetof(smtp_transport_options_block, dkim.dkim_sign_headers) },
64   { "dkim_strict", opt_stringptr,
65       (void *)offsetof(smtp_transport_options_block, dkim.dkim_strict) },
66 #endif
67   { "dns_qualify_single",   opt_bool,
68       (void *)offsetof(smtp_transport_options_block, dns_qualify_single) },
69   { "dns_search_parents",   opt_bool,
70       (void *)offsetof(smtp_transport_options_block, dns_search_parents) },
71   { "dnssec_request_domains", opt_stringptr,
72       (void *)offsetof(smtp_transport_options_block, dnssec.request) },
73   { "dnssec_require_domains", opt_stringptr,
74       (void *)offsetof(smtp_transport_options_block, dnssec.require) },
75   { "dscp",                 opt_stringptr,
76       (void *)offsetof(smtp_transport_options_block, dscp) },
77   { "fallback_hosts",       opt_stringptr,
78       (void *)offsetof(smtp_transport_options_block, fallback_hosts) },
79   { "final_timeout",        opt_time,
80       (void *)offsetof(smtp_transport_options_block, final_timeout) },
81   { "gethostbyname",        opt_bool,
82       (void *)offsetof(smtp_transport_options_block, gethostbyname) },
83   { "helo_data",            opt_stringptr,
84       (void *)offsetof(smtp_transport_options_block, helo_data) },
85   { "hosts",                opt_stringptr,
86       (void *)offsetof(smtp_transport_options_block, hosts) },
87   { "hosts_avoid_esmtp",    opt_stringptr,
88       (void *)offsetof(smtp_transport_options_block, hosts_avoid_esmtp) },
89   { "hosts_avoid_pipelining", opt_stringptr,
90       (void *)offsetof(smtp_transport_options_block, hosts_avoid_pipelining) },
91 #ifdef SUPPORT_TLS
92   { "hosts_avoid_tls",      opt_stringptr,
93       (void *)offsetof(smtp_transport_options_block, hosts_avoid_tls) },
94 #endif
95   { "hosts_max_try",        opt_int,
96       (void *)offsetof(smtp_transport_options_block, hosts_max_try) },
97   { "hosts_max_try_hardlimit", opt_int,
98       (void *)offsetof(smtp_transport_options_block, hosts_max_try_hardlimit) },
99 #ifdef SUPPORT_TLS
100   { "hosts_nopass_tls",     opt_stringptr,
101       (void *)offsetof(smtp_transport_options_block, hosts_nopass_tls) },
102   { "hosts_noproxy_tls",    opt_stringptr,
103       (void *)offsetof(smtp_transport_options_block, hosts_noproxy_tls) },
104 #endif
105   { "hosts_override",       opt_bool,
106       (void *)offsetof(smtp_transport_options_block, hosts_override) },
107   { "hosts_randomize",      opt_bool,
108       (void *)offsetof(smtp_transport_options_block, hosts_randomize) },
109 #if defined(SUPPORT_TLS) && !defined(DISABLE_OCSP)
110   { "hosts_request_ocsp",   opt_stringptr,
111       (void *)offsetof(smtp_transport_options_block, hosts_request_ocsp) },
112 #endif
113   { "hosts_require_auth",   opt_stringptr,
114       (void *)offsetof(smtp_transport_options_block, hosts_require_auth) },
115 #ifdef SUPPORT_TLS
116 # ifdef SUPPORT_DANE
117   { "hosts_require_dane",   opt_stringptr,
118       (void *)offsetof(smtp_transport_options_block, hosts_require_dane) },
119 # endif
120 # ifndef DISABLE_OCSP
121   { "hosts_require_ocsp",   opt_stringptr,
122       (void *)offsetof(smtp_transport_options_block, hosts_require_ocsp) },
123 # endif
124   { "hosts_require_tls",    opt_stringptr,
125       (void *)offsetof(smtp_transport_options_block, hosts_require_tls) },
126 #endif
127   { "hosts_try_auth",       opt_stringptr,
128       (void *)offsetof(smtp_transport_options_block, hosts_try_auth) },
129   { "hosts_try_chunking",   opt_stringptr,
130       (void *)offsetof(smtp_transport_options_block, hosts_try_chunking) },
131 #if defined(SUPPORT_TLS) && defined(SUPPORT_DANE)
132   { "hosts_try_dane",       opt_stringptr,
133       (void *)offsetof(smtp_transport_options_block, hosts_try_dane) },
134 #endif
135   { "hosts_try_fastopen",   opt_stringptr,
136       (void *)offsetof(smtp_transport_options_block, hosts_try_fastopen) },
137 #ifndef DISABLE_PRDR
138   { "hosts_try_prdr",       opt_stringptr,
139       (void *)offsetof(smtp_transport_options_block, hosts_try_prdr) },
140 #endif
141 #ifdef SUPPORT_TLS
142   { "hosts_verify_avoid_tls", opt_stringptr,
143       (void *)offsetof(smtp_transport_options_block, hosts_verify_avoid_tls) },
144 #endif
145   { "interface",            opt_stringptr,
146       (void *)offsetof(smtp_transport_options_block, interface) },
147   { "keepalive",            opt_bool,
148       (void *)offsetof(smtp_transport_options_block, keepalive) },
149   { "lmtp_ignore_quota",    opt_bool,
150       (void *)offsetof(smtp_transport_options_block, lmtp_ignore_quota) },
151   { "max_rcpt",             opt_int | opt_public,
152       (void *)offsetof(transport_instance, max_addresses) },
153   { "multi_domain",         opt_expand_bool | opt_public,
154       (void *)offsetof(transport_instance, multi_domain) },
155   { "port",                 opt_stringptr,
156       (void *)offsetof(smtp_transport_options_block, port) },
157   { "protocol",             opt_stringptr,
158       (void *)offsetof(smtp_transport_options_block, protocol) },
159   { "retry_include_ip_address", opt_expand_bool,
160       (void *)offsetof(smtp_transport_options_block, retry_include_ip_address) },
161   { "serialize_hosts",      opt_stringptr,
162       (void *)offsetof(smtp_transport_options_block, serialize_hosts) },
163   { "size_addition",        opt_int,
164       (void *)offsetof(smtp_transport_options_block, size_addition) }
165 #ifdef SUPPORT_SOCKS
166  ,{ "socks_proxy",          opt_stringptr,
167       (void *)offsetof(smtp_transport_options_block, socks_proxy) }
168 #endif
169 #ifdef SUPPORT_TLS
170  ,{ "tls_certificate",      opt_stringptr,
171       (void *)offsetof(smtp_transport_options_block, tls_certificate) },
172   { "tls_crl",              opt_stringptr,
173       (void *)offsetof(smtp_transport_options_block, tls_crl) },
174   { "tls_dh_min_bits",      opt_int,
175       (void *)offsetof(smtp_transport_options_block, tls_dh_min_bits) },
176   { "tls_privatekey",       opt_stringptr,
177       (void *)offsetof(smtp_transport_options_block, tls_privatekey) },
178   { "tls_require_ciphers",  opt_stringptr,
179       (void *)offsetof(smtp_transport_options_block, tls_require_ciphers) },
180   { "tls_sni",              opt_stringptr,
181       (void *)offsetof(smtp_transport_options_block, tls_sni) },
182   { "tls_tempfail_tryclear", opt_bool,
183       (void *)offsetof(smtp_transport_options_block, tls_tempfail_tryclear) },
184   { "tls_try_verify_hosts", opt_stringptr,
185       (void *)offsetof(smtp_transport_options_block, tls_try_verify_hosts) },
186   { "tls_verify_cert_hostnames", opt_stringptr,
187       (void *)offsetof(smtp_transport_options_block,tls_verify_cert_hostnames)},
188   { "tls_verify_certificates", opt_stringptr,
189       (void *)offsetof(smtp_transport_options_block, tls_verify_certificates) },
190   { "tls_verify_hosts",     opt_stringptr,
191       (void *)offsetof(smtp_transport_options_block, tls_verify_hosts) }
192 #endif
193 };
194
195 /* Size of the options list. An extern variable has to be used so that its
196 address can appear in the tables drtables.c. */
197
198 int smtp_transport_options_count =
199   sizeof(smtp_transport_options)/sizeof(optionlist);
200
201
202 #ifdef MACRO_PREDEF
203
204 /* Dummy values */
205 smtp_transport_options_block smtp_transport_option_defaults = {0};
206 void smtp_transport_init(transport_instance *tblock) {}
207 BOOL smtp_transport_entry(transport_instance *tblock, address_item *addr) {return FALSE;}
208 void smtp_transport_closedown(transport_instance *tblock) {}
209
210 #else   /*!MACRO_PREDEF*/
211
212
213 /* Default private options block for the smtp transport. */
214
215 smtp_transport_options_block smtp_transport_option_defaults = {
216   .hosts =                      NULL,
217   .fallback_hosts =             NULL,
218   .hostlist =                   NULL,
219   .fallback_hostlist =          NULL,
220   .helo_data =                  US"$primary_hostname",
221   .interface =                  NULL,
222   .port =                       NULL,
223   .protocol =                   US"smtp",
224   .dscp =                       NULL,
225   .serialize_hosts =            NULL,
226   .hosts_try_auth =             NULL,
227   .hosts_require_auth =         NULL,
228   .hosts_try_chunking =         US"*",
229 #ifdef SUPPORT_DANE
230   .hosts_try_dane =             NULL,
231   .hosts_require_dane =         NULL,
232   .dane_require_tls_ciphers =   NULL,
233 #endif
234   .hosts_try_fastopen =         NULL,
235 #ifndef DISABLE_PRDR
236   .hosts_try_prdr =             US"*",
237 #endif
238 #ifndef DISABLE_OCSP
239   .hosts_request_ocsp =         US"*",               /* hosts_request_ocsp (except under DANE; tls_client_start()) */
240   .hosts_require_ocsp =         NULL,
241 #endif
242   .hosts_require_tls =          NULL,
243   .hosts_avoid_tls =            NULL,
244   .hosts_verify_avoid_tls =     NULL,
245   .hosts_avoid_pipelining =     NULL,
246   .hosts_avoid_esmtp =          NULL,
247 #ifdef SUPPORT_TLS
248   .hosts_nopass_tls =           NULL,
249   .hosts_noproxy_tls =          US"*",
250 #endif
251   .command_timeout =            5*60,
252   .connect_timeout =            5*60,
253   .data_timeout =               5*60,
254   .final_timeout =              10*60,
255   .size_addition =              1024,
256   .hosts_max_try =              5,
257   .hosts_max_try_hardlimit =    50,
258   .address_retry_include_sender = TRUE,
259   .allow_localhost =            FALSE,
260   .authenticated_sender_force = FALSE,
261   .gethostbyname =              FALSE,
262   .dns_qualify_single =         TRUE,
263   .dns_search_parents =         FALSE,
264   .dnssec = { .request=NULL, .require=NULL },
265   .delay_after_cutoff =         TRUE,
266   .hosts_override =             FALSE,
267   .hosts_randomize =            FALSE,
268   .keepalive =                  TRUE,
269   .lmtp_ignore_quota =          FALSE,
270   .expand_retry_include_ip_address =    NULL,
271   .retry_include_ip_address =   TRUE,
272 #ifdef SUPPORT_SOCKS
273   .socks_proxy =                NULL,
274 #endif
275 #ifdef SUPPORT_TLS
276   .tls_certificate =            NULL,
277   .tls_crl =                    NULL,
278   .tls_privatekey =             NULL,
279   .tls_require_ciphers =        NULL,
280   .tls_sni =                    NULL,
281   .tls_verify_certificates =    US"system",
282   .tls_dh_min_bits =            EXIM_CLIENT_DH_DEFAULT_MIN_BITS,
283   .tls_tempfail_tryclear =      TRUE,
284   .tls_verify_hosts =           NULL,
285   .tls_try_verify_hosts =       US"*",
286   .tls_verify_cert_hostnames =  US"*",
287 #endif
288 #ifndef DISABLE_DKIM
289  .dkim =
290    {.dkim_domain =              NULL,
291     .dkim_identity =            NULL,
292     .dkim_private_key =         NULL,
293     .dkim_selector =            NULL,
294     .dkim_canon =               NULL,
295     .dkim_sign_headers =        NULL,
296     .dkim_strict =              NULL,
297     .dkim_hash =                US"sha256",
298     .dot_stuffed =              FALSE,
299     .force_bodyhash =           FALSE,
300 # ifdef EXPERIMENTAL_ARC
301     .arc_signspec =             NULL,
302 # endif
303     },
304 # ifdef EXPERIMENTAL_ARC
305   .arc_sign =                   NULL,
306 # endif
307 #endif
308 };
309
310 /* some DSN flags for use later */
311
312 static int     rf_list[] = {rf_notify_never, rf_notify_success,
313                             rf_notify_failure, rf_notify_delay };
314
315 static uschar *rf_names[] = { US"NEVER", US"SUCCESS", US"FAILURE", US"DELAY" };
316
317
318
319 /* Local statics */
320
321 static uschar *smtp_command;            /* Points to last cmd for error messages */
322 static uschar *mail_command;            /* Points to MAIL cmd for error messages */
323 static uschar *data_command = US"";     /* Points to DATA cmd for error messages */
324 static BOOL    update_waiting;          /* TRUE to update the "wait" database */
325
326 /*XXX move to smtp_context */
327 static BOOL    pipelining_active;       /* current transaction is in pipe mode */
328
329
330 /*************************************************
331 *             Setup entry point                  *
332 *************************************************/
333
334 /* This function is called when the transport is about to be used,
335 but before running it in a sub-process. It is used for two things:
336
337   (1) To set the fallback host list in addresses, when delivering.
338   (2) To pass back the interface, port, protocol, and other options, for use
339       during callout verification.
340
341 Arguments:
342   tblock    pointer to the transport instance block
343   addrlist  list of addresses about to be transported
344   tf        if not NULL, pointer to block in which to return options
345   uid       the uid that will be set (not used)
346   gid       the gid that will be set (not used)
347   errmsg    place for error message (not used)
348
349 Returns:  OK always (FAIL, DEFER not used)
350 */
351
352 static int
353 smtp_transport_setup(transport_instance *tblock, address_item *addrlist,
354   transport_feedback *tf, uid_t uid, gid_t gid, uschar **errmsg)
355 {
356 smtp_transport_options_block *ob =
357   (smtp_transport_options_block *)(tblock->options_block);
358
359 errmsg = errmsg;    /* Keep picky compilers happy */
360 uid = uid;
361 gid = gid;
362
363 /* Pass back options if required. This interface is getting very messy. */
364
365 if (tf)
366   {
367   tf->interface = ob->interface;
368   tf->port = ob->port;
369   tf->protocol = ob->protocol;
370   tf->hosts = ob->hosts;
371   tf->hosts_override = ob->hosts_override;
372   tf->hosts_randomize = ob->hosts_randomize;
373   tf->gethostbyname = ob->gethostbyname;
374   tf->qualify_single = ob->dns_qualify_single;
375   tf->search_parents = ob->dns_search_parents;
376   tf->helo_data = ob->helo_data;
377   }
378
379 /* Set the fallback host list for all the addresses that don't have fallback
380 host lists, provided that the local host wasn't present in the original host
381 list. */
382
383 if (!testflag(addrlist, af_local_host_removed))
384   for (; addrlist; addrlist = addrlist->next)
385     if (!addrlist->fallback_hosts) addrlist->fallback_hosts = ob->fallback_hostlist;
386
387 return OK;
388 }
389
390
391
392 /*************************************************
393 *          Initialization entry point            *
394 *************************************************/
395
396 /* Called for each instance, after its options have been read, to
397 enable consistency checks to be done, or anything else that needs
398 to be set up.
399
400 Argument:   pointer to the transport instance block
401 Returns:    nothing
402 */
403
404 void
405 smtp_transport_init(transport_instance *tblock)
406 {
407 smtp_transport_options_block *ob =
408   (smtp_transport_options_block *)(tblock->options_block);
409
410 /* Retry_use_local_part defaults FALSE if unset */
411
412 if (tblock->retry_use_local_part == TRUE_UNSET)
413   tblock->retry_use_local_part = FALSE;
414
415 /* Set the default port according to the protocol */
416
417 if (ob->port == NULL)
418   ob->port = (strcmpic(ob->protocol, US"lmtp") == 0)? US"lmtp" :
419     (strcmpic(ob->protocol, US"smtps") == 0)? US"smtps" : US"smtp";
420
421 /* Set up the setup entry point, to be called before subprocesses for this
422 transport. */
423
424 tblock->setup = smtp_transport_setup;
425
426 /* Complain if any of the timeouts are zero. */
427
428 if (ob->command_timeout <= 0 || ob->data_timeout <= 0 ||
429     ob->final_timeout <= 0)
430   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
431     "command, data, or final timeout value is zero for %s transport",
432       tblock->name);
433
434 /* If hosts_override is set and there are local hosts, set the global
435 flag that stops verify from showing router hosts. */
436
437 if (ob->hosts_override && ob->hosts != NULL) tblock->overrides_hosts = TRUE;
438
439 /* If there are any fallback hosts listed, build a chain of host items
440 for them, but do not do any lookups at this time. */
441
442 host_build_hostlist(&(ob->fallback_hostlist), ob->fallback_hosts, FALSE);
443 }
444
445
446
447
448
449 /*************************************************
450 *   Set delivery info into all active addresses  *
451 *************************************************/
452
453 /* Only addresses whose status is >= PENDING are relevant. A lesser
454 status means that an address is not currently being processed.
455
456 Arguments:
457   addrlist       points to a chain of addresses
458   errno_value    to put in each address's errno field
459   msg            to put in each address's message field
460   rc             to put in each address's transport_return field
461   pass_message   if TRUE, set the "pass message" flag in the address
462   host           if set, mark addrs as having used this host
463   smtp_greeting  from peer
464   helo_response  from peer
465
466 If errno_value has the special value ERRNO_CONNECTTIMEOUT, ETIMEDOUT is put in
467 the errno field, and RTEF_CTOUT is ORed into the more_errno field, to indicate
468 this particular type of timeout.
469
470 Returns:       nothing
471 */
472
473 static void
474 set_errno(address_item *addrlist, int errno_value, uschar *msg, int rc,
475   BOOL pass_message, host_item * host
476 #ifdef EXPERIMENTAL_DSN_INFO
477   , const uschar * smtp_greeting, const uschar * helo_response
478 #endif
479   )
480 {
481 address_item *addr;
482 int orvalue = 0;
483 if (errno_value == ERRNO_CONNECTTIMEOUT)
484   {
485   errno_value = ETIMEDOUT;
486   orvalue = RTEF_CTOUT;
487   }
488 for (addr = addrlist; addr; addr = addr->next)
489   if (addr->transport_return >= PENDING)
490     {
491     addr->basic_errno = errno_value;
492     addr->more_errno |= orvalue;
493     if (msg)
494       {
495       addr->message = msg;
496       if (pass_message) setflag(addr, af_pass_message);
497       }
498     addr->transport_return = rc;
499     if (host)
500       {
501       addr->host_used = host;
502 #ifdef EXPERIMENTAL_DSN_INFO
503       if (smtp_greeting)
504         {uschar * s = Ustrchr(smtp_greeting, '\n'); if (s) *s = '\0';}
505       addr->smtp_greeting = smtp_greeting;
506
507       if (helo_response)
508         {uschar * s = Ustrchr(helo_response, '\n'); if (s) *s = '\0';}
509       addr->helo_response = helo_response;
510 #endif
511       }
512     }
513 }
514
515 static void
516 set_errno_nohost(address_item *addrlist, int errno_value, uschar *msg, int rc,
517   BOOL pass_message)
518 {
519 set_errno(addrlist, errno_value, msg, rc, pass_message, NULL
520 #ifdef EXPERIMENTAL_DSN_INFO
521           , NULL, NULL
522 #endif
523           );
524 }
525
526
527 /*************************************************
528 *          Check an SMTP response                *
529 *************************************************/
530
531 /* This function is given an errno code and the SMTP response buffer
532 to analyse, together with the host identification for generating messages. It
533 sets an appropriate message and puts the first digit of the response code into
534 the yield variable. If no response was actually read, a suitable digit is
535 chosen.
536
537 Arguments:
538   host           the current host, to get its name for messages
539   errno_value    pointer to the errno value
540   more_errno     from the top address for use with ERRNO_FILTER_FAIL
541   buffer         the SMTP response buffer
542   yield          where to put a one-digit SMTP response code
543   message        where to put an error message
544   pass_message   set TRUE if message is an SMTP response
545
546 Returns:         TRUE if an SMTP "QUIT" command should be sent, else FALSE
547 */
548
549 static BOOL
550 check_response(host_item *host, int *errno_value, int more_errno,
551   uschar *buffer, int *yield, uschar **message, BOOL *pass_message)
552 {
553 uschar * pl = pipelining_active ? US"pipelined " : US"";
554 const uschar * s;
555
556 *yield = '4';    /* Default setting is to give a temporary error */
557
558 switch(*errno_value)
559   {
560   case ETIMEDOUT:               /* Handle response timeout */
561     *message = US string_sprintf("SMTP timeout after %s%s",
562         pl, smtp_command);
563     if (transport_count > 0)
564       *message = US string_sprintf("%s (%d bytes written)", *message,
565         transport_count);
566     return FALSE;
567
568   case ERRNO_SMTPFORMAT:        /* Handle malformed SMTP response */
569     s = string_printing(buffer);
570     while (isspace(*s)) s++;
571     *message = *s == 0
572       ? string_sprintf("Malformed SMTP reply (an empty line) "
573           "in response to %s%s", pl, smtp_command)
574       : string_sprintf("Malformed SMTP reply in response to %s%s: %s",
575           pl, smtp_command, s);
576     return FALSE;
577
578   case ERRNO_FILTER_FAIL:       /* Handle a failed filter process error;
579                           can't send QUIT as we mustn't end the DATA. */
580     *message = string_sprintf("transport filter process failed (%d)%s",
581       more_errno,
582       more_errno == EX_EXECFAILED ? ": unable to execute command" : "");
583     return FALSE;
584
585   case ERRNO_CHHEADER_FAIL:     /* Handle a failed add_headers expansion;
586                             can't send QUIT as we mustn't end the DATA. */
587     *message =
588       string_sprintf("failed to expand headers_add or headers_remove: %s",
589         expand_string_message);
590     return FALSE;
591
592   case ERRNO_WRITEINCOMPLETE:   /* failure to write a complete data block */
593     *message = string_sprintf("failed to write a data block");
594     return FALSE;
595
596 #ifdef SUPPORT_I18N
597   case ERRNO_UTF8_FWD: /* no advertised SMTPUTF8, for international message */
598     *message = US"utf8 support required but not offered for forwarding";
599     DEBUG(D_deliver|D_transport) debug_printf("%s\n", *message);
600     return TRUE;
601 #endif
602   }
603
604 /* Handle error responses from the remote mailer. */
605
606 if (buffer[0] != 0)
607   {
608   *message = string_sprintf("SMTP error from remote mail server after %s%s: "
609     "%s", pl, smtp_command, s = string_printing(buffer));
610   *pass_message = TRUE;
611   *yield = buffer[0];
612   return TRUE;
613   }
614
615 /* No data was read. If there is no errno, this must be the EOF (i.e.
616 connection closed) case, which causes deferral. An explicit connection reset
617 error has the same effect. Otherwise, put the host's identity in the message,
618 leaving the errno value to be interpreted as well. In all cases, we have to
619 assume the connection is now dead. */
620
621 if (*errno_value == 0 || *errno_value == ECONNRESET)
622   {
623   *errno_value = ERRNO_SMTPCLOSED;
624   *message = US string_sprintf("Remote host closed connection "
625     "in response to %s%s", pl, smtp_command);
626   }
627 else
628   *message = US string_sprintf("%s [%s]", host->name, host->address);
629
630 return FALSE;
631 }
632
633
634
635 /*************************************************
636 *          Write error message to logs           *
637 *************************************************/
638
639 /* This writes to the main log and to the message log.
640
641 Arguments:
642   host     the current host
643   detail  the current message (addr_item->message)
644   basic_errno the errno (addr_item->basic_errno)
645
646 Returns:   nothing
647 */
648
649 static void
650 write_logs(const host_item *host, const uschar *suffix, int basic_errno)
651 {
652
653
654 uschar *message = LOGGING(outgoing_port)
655   ? string_sprintf("H=%s [%s]:%d", host->name, host->address,
656                     host->port == PORT_NONE ? 25 : host->port)
657   : string_sprintf("H=%s [%s]", host->name, host->address);
658
659 if (suffix)
660   {
661   message = string_sprintf("%s: %s", message, suffix);
662   if (basic_errno > 0)
663     message = string_sprintf("%s: %s", message, strerror(basic_errno));
664   }
665 else
666   message = string_sprintf("%s %s", message, exim_errstr(basic_errno));
667
668 log_write(0, LOG_MAIN, "%s", message);
669 deliver_msglog("%s %s\n", tod_stamp(tod_log), message);
670 }
671
672 static void
673 msglog_line(host_item * host, uschar * message)
674 {
675 deliver_msglog("%s H=%s [%s] %s\n", tod_stamp(tod_log),
676   host->name, host->address, message);
677 }
678
679
680
681 #ifndef DISABLE_EVENT
682 /*************************************************
683 *   Post-defer action                            *
684 *************************************************/
685
686 /* This expands an arbitrary per-transport string.
687    It might, for example, be used to write to the database log.
688
689 Arguments:
690   addr                  the address item containing error information
691   host                  the current host
692
693 Returns:   nothing
694 */
695
696 static void
697 deferred_event_raise(address_item *addr, host_item *host)
698 {
699 uschar * action = addr->transport->event_action;
700 const uschar * save_domain;
701 uschar * save_local;
702
703 if (!action)
704   return;
705
706 save_domain = deliver_domain;
707 save_local = deliver_localpart;
708
709 /*XXX would ip & port already be set up? */
710 deliver_host_address = string_copy(host->address);
711 deliver_host_port =    host->port == PORT_NONE ? 25 : host->port;
712 event_defer_errno =    addr->basic_errno;
713
714 router_name =    addr->router->name;
715 transport_name = addr->transport->name;
716 deliver_domain = addr->domain;
717 deliver_localpart = addr->local_part;
718
719 (void) event_raise(action, US"msg:host:defer",
720     addr->message
721       ? addr->basic_errno > 0
722         ? string_sprintf("%s: %s", addr->message, strerror(addr->basic_errno))
723         : string_copy(addr->message)
724       : addr->basic_errno > 0
725         ? string_copy(US strerror(addr->basic_errno))
726         : NULL);
727
728 deliver_localpart = save_local;
729 deliver_domain =    save_domain;
730 router_name = transport_name = NULL;
731 }
732 #endif
733
734 /*************************************************
735 *           Synchronize SMTP responses           *
736 *************************************************/
737
738 /* This function is called from smtp_deliver() to receive SMTP responses from
739 the server, and match them up with the commands to which they relate. When
740 PIPELINING is not in use, this function is called after every command, and is
741 therefore somewhat over-engineered, but it is simpler to use a single scheme
742 that works both with and without PIPELINING instead of having two separate sets
743 of code.
744
745 The set of commands that are buffered up with pipelining may start with MAIL
746 and may end with DATA; in between are RCPT commands that correspond to the
747 addresses whose status is PENDING_DEFER. All other commands (STARTTLS, AUTH,
748 etc.) are never buffered.
749
750 Errors after MAIL or DATA abort the whole process leaving the response in the
751 buffer. After MAIL, pending responses are flushed, and the original command is
752 re-instated in big_buffer for error messages. For RCPT commands, the remote is
753 permitted to reject some recipient addresses while accepting others. However
754 certain errors clearly abort the whole process. Set the value in
755 transport_return to PENDING_OK if the address is accepted. If there is a
756 subsequent general error, it will get reset accordingly. If not, it will get
757 converted to OK at the end.
758
759 Arguments:
760   sx                smtp connection context
761   count             the number of responses to read
762   pending_DATA      0 if last command sent was not DATA
763                    +1 if previously had a good recipient
764                    -1 if not previously had a good recipient
765
766 Returns:      3 if at least one address had 2xx and one had 5xx
767               2 if at least one address had 5xx but none had 2xx
768               1 if at least one host had a 2xx response, but none had 5xx
769               0 no address had 2xx or 5xx but no errors (all 4xx, or just DATA)
770              -1 timeout while reading RCPT response
771              -2 I/O or other non-response error for RCPT
772              -3 DATA or MAIL failed - errno and buffer set
773 */
774
775 static int
776 sync_responses(smtp_context * sx, int count, int pending_DATA)
777 {
778 address_item *addr = sx->sync_addr;
779 smtp_transport_options_block *ob =
780   (smtp_transport_options_block *)sx->tblock->options_block;
781 int yield = 0;
782
783 /* Handle the response for a MAIL command. On error, reinstate the original
784 command in big_buffer for error message use, and flush any further pending
785 responses before returning, except after I/O errors and timeouts. */
786
787 if (sx->pending_MAIL)
788   {
789   count--;
790   if (!smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer),
791                           '2', ob->command_timeout))
792     {
793     DEBUG(D_transport) debug_printf("bad response for MAIL\n");
794     Ustrcpy(big_buffer, mail_command);  /* Fits, because it came from there! */
795     if (errno == 0 && sx->buffer[0] != 0)
796       {
797       uschar flushbuffer[4096];
798       int save_errno = 0;
799       if (sx->buffer[0] == '4')
800         {
801         save_errno = ERRNO_MAIL4XX;
802         addr->more_errno |= ((sx->buffer[1] - '0')*10 + sx->buffer[2] - '0') << 8;
803         }
804       while (count-- > 0)
805         {
806         if (!smtp_read_response(&sx->inblock, flushbuffer, sizeof(flushbuffer),
807                    '2', ob->command_timeout)
808             && (errno != 0 || flushbuffer[0] == 0))
809           break;
810         }
811       errno = save_errno;
812       }
813
814     if (pending_DATA) count--;  /* Number of RCPT responses to come */
815     while (count-- > 0)         /* Mark any pending addrs with the host used */
816       {
817       while (addr->transport_return != PENDING_DEFER) addr = addr->next;
818       addr->host_used = sx->host;
819       addr = addr->next;
820       }
821     return -3;
822     }
823   }
824
825 if (pending_DATA) count--;  /* Number of RCPT responses to come */
826
827 /* Read and handle the required number of RCPT responses, matching each one up
828 with an address by scanning for the next address whose status is PENDING_DEFER.
829 */
830
831 while (count-- > 0)
832   {
833   while (addr->transport_return != PENDING_DEFER)
834     if (!(addr = addr->next))
835       return -2;
836
837   /* The address was accepted */
838   addr->host_used = sx->host;
839
840   if (smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer),
841                           '2', ob->command_timeout))
842     {
843     yield |= 1;
844     addr->transport_return = PENDING_OK;
845
846     /* If af_dr_retry_exists is set, there was a routing delay on this address;
847     ensure that any address-specific retry record is expunged. We do this both
848     for the basic key and for the version that also includes the sender. */
849
850     if (testflag(addr, af_dr_retry_exists))
851       {
852       uschar *altkey = string_sprintf("%s:<%s>", addr->address_retry_key,
853         sender_address);
854       retry_add_item(addr, altkey, rf_delete);
855       retry_add_item(addr, addr->address_retry_key, rf_delete);
856       }
857     }
858
859   /* Timeout while reading the response */
860
861   else if (errno == ETIMEDOUT)
862     {
863     uschar *message = string_sprintf("SMTP timeout after RCPT TO:<%s>",
864                 transport_rcpt_address(addr, sx->tblock->rcpt_include_affixes));
865     set_errno_nohost(sx->first_addr, ETIMEDOUT, message, DEFER, FALSE);
866     retry_add_item(addr, addr->address_retry_key, 0);
867     update_waiting = FALSE;
868     return -1;
869     }
870
871   /* Handle other errors in obtaining an SMTP response by returning -1. This
872   will cause all the addresses to be deferred. Restore the SMTP command in
873   big_buffer for which we are checking the response, so the error message
874   makes sense. */
875
876   else if (errno != 0 || sx->buffer[0] == 0)
877     {
878     string_format(big_buffer, big_buffer_size, "RCPT TO:<%s>",
879       transport_rcpt_address(addr, sx->tblock->rcpt_include_affixes));
880     return -2;
881     }
882
883   /* Handle SMTP permanent and temporary response codes. */
884
885   else
886     {
887     addr->message =
888       string_sprintf("SMTP error from remote mail server after RCPT TO:<%s>: "
889         "%s", transport_rcpt_address(addr, sx->tblock->rcpt_include_affixes),
890         string_printing(sx->buffer));
891     setflag(addr, af_pass_message);
892     if (!sx->verify)
893       msglog_line(sx->host, addr->message);
894
895     /* The response was 5xx */
896
897     if (sx->buffer[0] == '5')
898       {
899       addr->transport_return = FAIL;
900       yield |= 2;
901       }
902
903     /* The response was 4xx */
904
905     else
906       {
907       addr->transport_return = DEFER;
908       addr->basic_errno = ERRNO_RCPT4XX;
909       addr->more_errno |= ((sx->buffer[1] - '0')*10 + sx->buffer[2] - '0') << 8;
910
911       if (!sx->verify)
912         {
913 #ifndef DISABLE_EVENT
914         event_defer_errno = addr->more_errno;
915         msg_event_raise(US"msg:rcpt:host:defer", addr);
916 #endif
917
918         /* Log temporary errors if there are more hosts to be tried.
919         If not, log this last one in the == line. */
920
921         if (sx->host->next)
922           log_write(0, LOG_MAIN, "H=%s [%s]: %s",
923             sx->host->name, sx->host->address, addr->message);
924
925 #ifndef DISABLE_EVENT
926         else
927           msg_event_raise(US"msg:rcpt:defer", addr);
928 #endif
929
930         /* Do not put this message on the list of those waiting for specific
931         hosts, as otherwise it is likely to be tried too often. */
932
933         update_waiting = FALSE;
934
935         /* Add a retry item for the address so that it doesn't get tried again
936         too soon. If address_retry_include_sender is true, add the sender address
937         to the retry key. */
938
939         retry_add_item(addr,
940           ob->address_retry_include_sender
941             ? string_sprintf("%s:<%s>", addr->address_retry_key, sender_address)
942             : addr->address_retry_key,
943           0);
944         }
945       }
946     }
947   }       /* Loop for next RCPT response */
948
949 /* Update where to start at for the next block of responses, unless we
950 have already handled all the addresses. */
951
952 if (addr) sx->sync_addr = addr->next;
953
954 /* Handle a response to DATA. If we have not had any good recipients, either
955 previously or in this block, the response is ignored. */
956
957 if (pending_DATA != 0 &&
958     !smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer),
959                         '3', ob->command_timeout))
960   {
961   int code;
962   uschar *msg;
963   BOOL pass_message;
964   if (pending_DATA > 0 || (yield & 1) != 0)
965     {
966     if (errno == 0 && sx->buffer[0] == '4')
967       {
968       errno = ERRNO_DATA4XX;
969       sx->first_addr->more_errno |= ((sx->buffer[1] - '0')*10 + sx->buffer[2] - '0') << 8;
970       }
971     return -3;
972     }
973   (void)check_response(sx->host, &errno, 0, sx->buffer, &code, &msg, &pass_message);
974   DEBUG(D_transport) debug_printf("%s\nerror for DATA ignored: pipelining "
975     "is in use and there were no good recipients\n", msg);
976   }
977
978 /* All responses read and handled; MAIL (if present) received 2xx and DATA (if
979 present) received 3xx. If any RCPTs were handled and yielded anything other
980 than 4xx, yield will be set non-zero. */
981
982 return yield;
983 }
984
985
986
987 /* Do the client side of smtp-level authentication */
988 /*
989 Arguments:
990   buffer        EHLO response from server (gets overwritten)
991   addrlist      chain of potential addresses to deliver
992   host          host to deliver to
993   ob            transport options
994   ibp, obp      comms channel control blocks
995
996 Returns:
997   OK                    Success, or failed (but not required): global "smtp_authenticated" set
998   DEFER                 Failed authentication (and was required)
999   ERROR                 Internal problem
1000
1001   FAIL_SEND             Failed communications - transmit
1002   FAIL                  - response
1003 */
1004
1005 int
1006 smtp_auth(uschar *buffer, unsigned bufsize, address_item *addrlist, host_item *host,
1007     smtp_transport_options_block *ob, BOOL is_esmtp,
1008     smtp_inblock *ibp, smtp_outblock *obp)
1009 {
1010 int require_auth;
1011 uschar *fail_reason = US"server did not advertise AUTH support";
1012
1013 smtp_authenticated = FALSE;
1014 client_authenticator = client_authenticated_id = client_authenticated_sender = NULL;
1015 require_auth = verify_check_given_host(&ob->hosts_require_auth, host);
1016
1017 if (is_esmtp && !regex_AUTH) regex_AUTH =
1018     regex_must_compile(US"\\n250[\\s\\-]AUTH\\s+([\\-\\w\\s]+)(?:\\n|$)",
1019           FALSE, TRUE);
1020
1021 if (is_esmtp && regex_match_and_setup(regex_AUTH, buffer, 0, -1))
1022   {
1023   uschar *names = string_copyn(expand_nstring[1], expand_nlength[1]);
1024   expand_nmax = -1;                          /* reset */
1025
1026   /* Must not do this check until after we have saved the result of the
1027   regex match above. */
1028
1029   if (require_auth == OK ||
1030       verify_check_given_host(&ob->hosts_try_auth, host) == OK)
1031     {
1032     auth_instance *au;
1033     fail_reason = US"no common mechanisms were found";
1034
1035     DEBUG(D_transport) debug_printf("scanning authentication mechanisms\n");
1036
1037     /* Scan the configured authenticators looking for one which is configured
1038     for use as a client, which is not suppressed by client_condition, and
1039     whose name matches an authentication mechanism supported by the server.
1040     If one is found, attempt to authenticate by calling its client function.
1041     */
1042
1043     for (au = auths; !smtp_authenticated && au; au = au->next)
1044       {
1045       uschar *p = names;
1046       if (!au->client ||
1047           (au->client_condition != NULL &&
1048            !expand_check_condition(au->client_condition, au->name,
1049              US"client authenticator")))
1050         {
1051         DEBUG(D_transport) debug_printf("skipping %s authenticator: %s\n",
1052           au->name,
1053           (au->client)? "client_condition is false" :
1054                         "not configured as a client");
1055         continue;
1056         }
1057
1058       /* Loop to scan supported server mechanisms */
1059
1060       while (*p)
1061         {
1062         int rc;
1063         int len = Ustrlen(au->public_name);
1064         while (isspace(*p)) p++;
1065
1066         if (strncmpic(au->public_name, p, len) != 0 ||
1067             (p[len] != 0 && !isspace(p[len])))
1068           {
1069           while (*p != 0 && !isspace(*p)) p++;
1070           continue;
1071           }
1072
1073         /* Found data for a listed mechanism. Call its client entry. Set
1074         a flag in the outblock so that data is overwritten after sending so
1075         that reflections don't show it. */
1076
1077         fail_reason = US"authentication attempt(s) failed";
1078         obp->authenticating = TRUE;
1079         rc = (au->info->clientcode)(au, ibp, obp,
1080           ob->command_timeout, buffer, bufsize);
1081         obp->authenticating = FALSE;
1082         DEBUG(D_transport) debug_printf("%s authenticator yielded %d\n",
1083           au->name, rc);
1084
1085         /* A temporary authentication failure must hold up delivery to
1086         this host. After a permanent authentication failure, we carry on
1087         to try other authentication methods. If all fail hard, try to
1088         deliver the message unauthenticated unless require_auth was set. */
1089
1090         switch(rc)
1091           {
1092           case OK:
1093           smtp_authenticated = TRUE;   /* stops the outer loop */
1094           client_authenticator = au->name;
1095           if (au->set_client_id != NULL)
1096             client_authenticated_id = expand_string(au->set_client_id);
1097           break;
1098
1099           /* Failure after writing a command */
1100
1101           case FAIL_SEND:
1102           return FAIL_SEND;
1103
1104           /* Failure after reading a response */
1105
1106           case FAIL:
1107           if (errno != 0 || buffer[0] != '5') return FAIL;
1108           log_write(0, LOG_MAIN, "%s authenticator failed H=%s [%s] %s",
1109             au->name, host->name, host->address, buffer);
1110           break;
1111
1112           /* Failure by some other means. In effect, the authenticator
1113           decided it wasn't prepared to handle this case. Typically this
1114           is the result of "fail" in an expansion string. Do we need to
1115           log anything here? Feb 2006: a message is now put in the buffer
1116           if logging is required. */
1117
1118           case CANCELLED:
1119           if (*buffer != 0)
1120             log_write(0, LOG_MAIN, "%s authenticator cancelled "
1121               "authentication H=%s [%s] %s", au->name, host->name,
1122               host->address, buffer);
1123           break;
1124
1125           /* Internal problem, message in buffer. */
1126
1127           case ERROR:
1128           set_errno_nohost(addrlist, ERRNO_AUTHPROB, string_copy(buffer),
1129                     DEFER, FALSE);
1130           return ERROR;
1131           }
1132
1133         break;  /* If not authenticated, try next authenticator */
1134         }       /* Loop for scanning supported server mechanisms */
1135       }         /* Loop for further authenticators */
1136     }
1137   }
1138
1139 /* If we haven't authenticated, but are required to, give up. */
1140
1141 if (require_auth == OK && !smtp_authenticated)
1142   {
1143   set_errno_nohost(addrlist, ERRNO_AUTHFAIL,
1144     string_sprintf("authentication required but %s", fail_reason), DEFER,
1145     FALSE);
1146   return DEFER;
1147   }
1148
1149 return OK;
1150 }
1151
1152
1153 /* Construct AUTH appendix string for MAIL TO */
1154 /*
1155 Arguments
1156   buffer        to build string
1157   addrlist      chain of potential addresses to deliver
1158   ob            transport options
1159
1160 Globals         smtp_authenticated
1161                 client_authenticated_sender
1162 Return  True on error, otherwise buffer has (possibly empty) terminated string
1163 */
1164
1165 BOOL
1166 smtp_mail_auth_str(uschar *buffer, unsigned bufsize, address_item *addrlist,
1167                     smtp_transport_options_block *ob)
1168 {
1169 uschar *local_authenticated_sender = authenticated_sender;
1170
1171 #ifdef notdef
1172   debug_printf("smtp_mail_auth_str: as<%s> os<%s> SA<%s>\n", authenticated_sender, ob->authenticated_sender, smtp_authenticated?"Y":"N");
1173 #endif
1174
1175 if (ob->authenticated_sender != NULL)
1176   {
1177   uschar *new = expand_string(ob->authenticated_sender);
1178   if (new == NULL)
1179     {
1180     if (!expand_string_forcedfail)
1181       {
1182       uschar *message = string_sprintf("failed to expand "
1183         "authenticated_sender: %s", expand_string_message);
1184       set_errno_nohost(addrlist, ERRNO_EXPANDFAIL, message, DEFER, FALSE);
1185       return TRUE;
1186       }
1187     }
1188   else if (new[0] != 0) local_authenticated_sender = new;
1189   }
1190
1191 /* Add the authenticated sender address if present */
1192
1193 if ((smtp_authenticated || ob->authenticated_sender_force) &&
1194     local_authenticated_sender != NULL)
1195   {
1196   string_format(buffer, bufsize, " AUTH=%s",
1197     auth_xtextencode(local_authenticated_sender,
1198     Ustrlen(local_authenticated_sender)));
1199   client_authenticated_sender = string_copy(local_authenticated_sender);
1200   }
1201 else
1202   *buffer= 0;
1203
1204 return FALSE;
1205 }
1206
1207
1208
1209 #ifdef SUPPORT_DANE
1210 /* Lookup TLSA record for host/port.
1211 Return:  OK             success with dnssec; DANE mode
1212          DEFER          Do not use this host now, may retry later
1213          FAIL_FORCED    No TLSA record; DANE not usable
1214          FAIL           Do not use this connection
1215 */
1216
1217 int
1218 tlsa_lookup(const host_item * host, dns_answer * dnsa, BOOL dane_required)
1219 {
1220 /* move this out to host.c given the similarity to dns_lookup() ? */
1221 uschar buffer[300];
1222 const uschar * fullname = buffer;
1223 int rc;
1224 BOOL sec;
1225
1226 /* TLSA lookup string */
1227 (void)sprintf(CS buffer, "_%d._tcp.%.256s", host->port, host->name);
1228
1229 rc = dns_lookup(dnsa, buffer, T_TLSA, &fullname);
1230 sec = dns_is_secure(dnsa);
1231 DEBUG(D_transport)
1232   debug_printf("TLSA lookup ret %d %sDNSSEC\n", rc, sec ? "" : "not ");
1233
1234 switch (rc)
1235   {
1236   case DNS_AGAIN:
1237     return DEFER; /* just defer this TLS'd conn */
1238
1239   case DNS_SUCCEED:
1240     if (sec) return OK;
1241     log_write(0, LOG_MAIN,
1242       "DANE error: TLSA lookup for %s not DNSSEC", host->name);
1243     /*FALLTRHOUGH*/
1244
1245   case DNS_NODATA:      /* no TLSA RR for this lookup */
1246   case DNS_NOMATCH:     /* no records at all for this lookup */
1247     return dane_required ? FAIL : FAIL_FORCED;
1248
1249   default:
1250   case DNS_FAIL:
1251     return dane_required ? FAIL : DEFER;
1252   }
1253 }
1254 #endif
1255
1256
1257
1258 typedef struct smtp_compare_s
1259 {
1260     uschar                          *current_sender_address;
1261     struct transport_instance       *tblock;
1262 } smtp_compare_t;
1263
1264
1265 /* Create a unique string that identifies this message, it is based on
1266 sender_address, helo_data and tls_certificate if enabled.
1267 */
1268
1269 static uschar *
1270 smtp_local_identity(uschar * sender, struct transport_instance * tblock)
1271 {
1272 address_item * addr1;
1273 uschar * if1 = US"";
1274 uschar * helo1 = US"";
1275 #ifdef SUPPORT_TLS
1276 uschar * tlsc1 = US"";
1277 #endif
1278 uschar * save_sender_address = sender_address;
1279 uschar * local_identity = NULL;
1280 smtp_transport_options_block * ob =
1281   (smtp_transport_options_block *)tblock->options_block;
1282
1283 sender_address = sender;
1284
1285 addr1 = deliver_make_addr (sender, TRUE);
1286 deliver_set_expansions(addr1);
1287
1288 if (ob->interface)
1289   if1 = expand_string(ob->interface);
1290
1291 if (ob->helo_data)
1292   helo1 = expand_string(ob->helo_data);
1293
1294 #ifdef SUPPORT_TLS
1295 if (ob->tls_certificate)
1296   tlsc1 = expand_string(ob->tls_certificate);
1297 local_identity = string_sprintf ("%s^%s^%s", if1, helo1, tlsc1);
1298 #else
1299 local_identity = string_sprintf ("%s^%s", if1, helo1);
1300 #endif
1301
1302 deliver_set_expansions(NULL);
1303 sender_address = save_sender_address;
1304
1305 return local_identity;
1306 }
1307
1308
1309
1310 /* This routine is a callback that is called from transport_check_waiting.
1311 This function will evaluate the incoming message versus the previous
1312 message.  If the incoming message is using a different local identity then
1313 we will veto this new message.  */
1314
1315 static BOOL
1316 smtp_are_same_identities(uschar * message_id, smtp_compare_t * s_compare)
1317 {
1318 uschar * message_local_identity,
1319        * current_local_identity,
1320        * new_sender_address;
1321
1322 current_local_identity =
1323   smtp_local_identity(s_compare->current_sender_address, s_compare->tblock);
1324
1325 if (!(new_sender_address = deliver_get_sender_address(message_id)))
1326     return 0;
1327
1328 message_local_identity =
1329   smtp_local_identity(new_sender_address, s_compare->tblock);
1330
1331 return Ustrcmp(current_local_identity, message_local_identity) == 0;
1332 }
1333
1334
1335
1336 static uschar
1337 ehlo_response(uschar * buf, uschar checks)
1338 {
1339 size_t bsize = Ustrlen(buf);
1340
1341 #ifdef SUPPORT_TLS
1342 if (  checks & OPTION_TLS
1343    && pcre_exec(regex_STARTTLS, NULL, CS buf, bsize, 0, PCRE_EOPT, NULL, 0) < 0)
1344   checks &= ~OPTION_TLS;
1345 #endif
1346
1347 if (  checks & OPTION_IGNQ
1348    && pcre_exec(regex_IGNOREQUOTA, NULL, CS buf, bsize, 0,
1349                 PCRE_EOPT, NULL, 0) < 0)
1350   checks &= ~OPTION_IGNQ;
1351
1352 if (  checks & OPTION_CHUNKING
1353    && pcre_exec(regex_CHUNKING, NULL, CS buf, bsize, 0, PCRE_EOPT, NULL, 0) < 0)
1354   checks &= ~OPTION_CHUNKING;
1355
1356 #ifndef DISABLE_PRDR
1357 if (  checks & OPTION_PRDR
1358    && pcre_exec(regex_PRDR, NULL, CS buf, bsize, 0, PCRE_EOPT, NULL, 0) < 0)
1359   checks &= ~OPTION_PRDR;
1360 #endif
1361
1362 #ifdef SUPPORT_I18N
1363 if (  checks & OPTION_UTF8
1364    && pcre_exec(regex_UTF8, NULL, CS buf, bsize, 0, PCRE_EOPT, NULL, 0) < 0)
1365   checks &= ~OPTION_UTF8;
1366 #endif
1367
1368 if (  checks & OPTION_DSN
1369    && pcre_exec(regex_DSN, NULL, CS buf, bsize, 0, PCRE_EOPT, NULL, 0) < 0)
1370   checks &= ~OPTION_DSN;
1371
1372 if (  checks & OPTION_PIPE
1373    && pcre_exec(regex_PIPELINING, NULL, CS buf, bsize, 0,
1374                 PCRE_EOPT, NULL, 0) < 0)
1375   checks &= ~OPTION_PIPE;
1376
1377 if (  checks & OPTION_SIZE
1378    && pcre_exec(regex_SIZE, NULL, CS buf, bsize, 0, PCRE_EOPT, NULL, 0) < 0)
1379   checks &= ~OPTION_SIZE;
1380
1381 return checks;
1382 }
1383
1384
1385
1386 /* Callback for emitting a BDAT data chunk header.
1387
1388 If given a nonzero size, first flush any buffered SMTP commands
1389 then emit the command.
1390
1391 Reap previous SMTP command responses if requested, and always reap
1392 the response from a previous BDAT command.
1393
1394 Args:
1395  tctx           transport context
1396  chunk_size     value for SMTP BDAT command
1397  flags
1398    tc_chunk_last        add LAST option to SMTP BDAT command
1399    tc_reap_prev         reap response to previous SMTP commands
1400
1401 Returns:        OK or ERROR
1402 */
1403
1404 static int
1405 smtp_chunk_cmd_callback(transport_ctx * tctx, unsigned chunk_size,
1406   unsigned flags)
1407 {
1408 smtp_transport_options_block * ob =
1409   (smtp_transport_options_block *)(tctx->tblock->options_block);
1410 smtp_context * sx = tctx->smtp_context;
1411 int cmd_count = 0;
1412 int prev_cmd_count;
1413
1414 /* Write SMTP chunk header command.  If not reaping responses, note that
1415 there may be more writes (like, the chunk data) done soon. */
1416
1417 if (chunk_size > 0)
1418   {
1419   if((cmd_count = smtp_write_command(&sx->outblock,
1420               flags & tc_reap_prev ? SCMD_FLUSH : SCMD_MORE,
1421               "BDAT %u%s\r\n", chunk_size, flags & tc_chunk_last ? " LAST" : "")
1422      ) < 0) return ERROR;
1423   if (flags & tc_chunk_last)
1424     data_command = string_copy(big_buffer);  /* Save for later error message */
1425   }
1426
1427 prev_cmd_count = cmd_count += sx->cmd_count;
1428
1429 /* Reap responses for any previous, but not one we just emitted */
1430
1431 if (chunk_size > 0)
1432   prev_cmd_count--;
1433 if (sx->pending_BDAT)
1434   prev_cmd_count--;
1435
1436 if (flags & tc_reap_prev  &&  prev_cmd_count > 0)
1437   {
1438   DEBUG(D_transport) debug_printf("look for %d responses"
1439     " for previous pipelined cmds\n", prev_cmd_count);
1440
1441   switch(sync_responses(sx, prev_cmd_count, 0))
1442     {
1443     case 1:                             /* 2xx (only) => OK */
1444     case 3: sx->good_RCPT = TRUE;       /* 2xx & 5xx => OK & progress made */
1445     case 2: sx->completed_addr = TRUE;  /* 5xx (only) => progress made */
1446     case 0: break;                      /* No 2xx or 5xx, but no probs */
1447
1448     case -1:                            /* Timeout on RCPT */
1449     default: return ERROR;              /* I/O error, or any MAIL/DATA error */
1450     }
1451   cmd_count = 1;
1452   if (!sx->pending_BDAT)
1453     pipelining_active = FALSE;
1454   }
1455
1456 /* Reap response for an outstanding BDAT */
1457
1458 if (sx->pending_BDAT)
1459   {
1460   DEBUG(D_transport) debug_printf("look for one response for BDAT\n");
1461
1462   if (!smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer), '2',
1463        ob->command_timeout))
1464     {
1465     if (errno == 0 && sx->buffer[0] == '4')
1466       {
1467       errno = ERRNO_DATA4XX;    /*XXX does this actually get used? */
1468       sx->addrlist->more_errno |=
1469         ((sx->buffer[1] - '0')*10 + sx->buffer[2] - '0') << 8;
1470       }
1471     return ERROR;
1472     }
1473   cmd_count--;
1474   sx->pending_BDAT = FALSE;
1475   pipelining_active = FALSE;
1476   }
1477 else if (chunk_size > 0)
1478   sx->pending_BDAT = TRUE;
1479
1480
1481 sx->cmd_count = cmd_count;
1482 return OK;
1483 }
1484
1485
1486
1487 /*************************************************
1488 *       Make connection for given message        *
1489 *************************************************/
1490
1491 /*
1492 Arguments:
1493   ctx             connection context
1494   suppress_tls    if TRUE, don't attempt a TLS connection - this is set for
1495                     a second attempt after TLS initialization fails
1496
1497 Returns:          OK    - the connection was made and the delivery attempted;
1498                           fd is set in the conn context, tls_out set up.
1499                   DEFER - the connection could not be made, or something failed
1500                           while setting up the SMTP session, or there was a
1501                           non-message-specific error, such as a timeout.
1502                   ERROR - helo_data or add_headers or authenticated_sender is
1503                           specified for this transport, and the string failed
1504                           to expand
1505 */
1506 int
1507 smtp_setup_conn(smtp_context * sx, BOOL suppress_tls)
1508 {
1509 #if defined(SUPPORT_TLS) && defined(SUPPORT_DANE)
1510 dns_answer tlsa_dnsa;
1511 #endif
1512 BOOL pass_message = FALSE;
1513 uschar * message = NULL;
1514 int yield = OK;
1515 int rc;
1516
1517 sx->ob = (smtp_transport_options_block *) sx->tblock->options_block;
1518
1519 sx->lmtp = strcmpic(sx->ob->protocol, US"lmtp") == 0;
1520 sx->smtps = strcmpic(sx->ob->protocol, US"smtps") == 0;
1521 sx->ok = FALSE;
1522 sx->send_rset = TRUE;
1523 sx->send_quit = TRUE;
1524 sx->setting_up = TRUE;
1525 sx->esmtp = TRUE;
1526 sx->esmtp_sent = FALSE;
1527 #ifdef SUPPORT_I18N
1528 sx->utf8_needed = FALSE;
1529 #endif
1530 sx->dsn_all_lasthop = TRUE;
1531 #if defined(SUPPORT_TLS) && defined(SUPPORT_DANE)
1532 sx->dane = FALSE;
1533 sx->dane_required = verify_check_given_host(&sx->ob->hosts_require_dane, sx->host) == OK;
1534 #endif
1535
1536 if ((sx->max_rcpt = sx->tblock->max_addresses) == 0) sx->max_rcpt = 999999;
1537 sx->peer_offered = 0;
1538 sx->avoid_option = 0;
1539 sx->igquotstr = US"";
1540 if (!sx->helo_data) sx->helo_data = sx->ob->helo_data;
1541 #ifdef EXPERIMENTAL_DSN_INFO
1542 sx->smtp_greeting = NULL;
1543 sx->helo_response = NULL;
1544 #endif
1545
1546 smtp_command = US"initial connection";
1547 sx->buffer[0] = '\0';
1548
1549 /* Set up the buffer for reading SMTP response packets. */
1550
1551 sx->inblock.buffer = sx->inbuffer;
1552 sx->inblock.buffersize = sizeof(sx->inbuffer);
1553 sx->inblock.ptr = sx->inbuffer;
1554 sx->inblock.ptrend = sx->inbuffer;
1555
1556 /* Set up the buffer for holding SMTP commands while pipelining */
1557
1558 sx->outblock.buffer = sx->outbuffer;
1559 sx->outblock.buffersize = sizeof(sx->outbuffer);
1560 sx->outblock.ptr = sx->outbuffer;
1561 sx->outblock.cmd_count = 0;
1562 sx->outblock.authenticating = FALSE;
1563
1564 /* Reset the parameters of a TLS session. */
1565
1566 tls_out.bits = 0;
1567 tls_out.cipher = NULL;  /* the one we may use for this transport */
1568 tls_out.ourcert = NULL;
1569 tls_out.peercert = NULL;
1570 tls_out.peerdn = NULL;
1571 #if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
1572 tls_out.sni = NULL;
1573 #endif
1574 tls_out.ocsp = OCSP_NOT_REQ;
1575
1576 /* Flip the legacy TLS-related variables over to the outbound set in case
1577 they're used in the context of the transport.  Don't bother resetting
1578 afterward (when being used by a transport) as we're in a subprocess.
1579 For verify, unflipped once the callout is dealt with */
1580
1581 tls_modify_variables(&tls_out);
1582
1583 #ifndef SUPPORT_TLS
1584 if (sx->smtps)
1585   {
1586   set_errno_nohost(sx->addrlist, ERRNO_TLSFAILURE, US"TLS support not available",
1587             DEFER, FALSE);
1588   return ERROR;
1589   }
1590 #endif
1591
1592 /* Make a connection to the host if this isn't a continued delivery, and handle
1593 the initial interaction and HELO/EHLO/LHLO. Connect timeout errors are handled
1594 specially so they can be identified for retries. */
1595
1596 if (!continue_hostname)
1597   {
1598   if (sx->verify)
1599     HDEBUG(D_verify) debug_printf("interface=%s port=%d\n", sx->interface, sx->port);
1600
1601   /* Get the actual port the connection will use, into sx->host */
1602
1603   smtp_port_for_connect(sx->host, sx->port);
1604
1605 #if defined(SUPPORT_TLS) && defined(SUPPORT_DANE)
1606     /* Do TLSA lookup for DANE */
1607     {
1608     tls_out.dane_verified = FALSE;
1609     tls_out.tlsa_usage = 0;
1610
1611     if (sx->host->dnssec == DS_YES)
1612       {
1613       if(  sx->dane_required
1614         || verify_check_given_host(&sx->ob->hosts_try_dane, sx->host) == OK
1615         )
1616         switch (rc = tlsa_lookup(sx->host, &tlsa_dnsa, sx->dane_required))
1617           {
1618           case OK:              sx->dane = TRUE;
1619                                 sx->ob->tls_tempfail_tryclear = FALSE;
1620                                 break;
1621           case FAIL_FORCED:     break;
1622           default:              set_errno_nohost(sx->addrlist, ERRNO_DNSDEFER,
1623                                   string_sprintf("DANE error: tlsa lookup %s",
1624                                     rc == DEFER ? "DEFER" : "FAIL"),
1625                                   rc, FALSE);
1626                                 (void) event_raise(sx->tblock->event_action,
1627                                   US"dane:fail", sx->dane_required
1628                                     ?  US"dane-required" : US"dnssec-invalid");
1629                                 return rc;
1630           }
1631       }
1632     else if (sx->dane_required)
1633       {
1634       set_errno_nohost(sx->addrlist, ERRNO_DNSDEFER,
1635         string_sprintf("DANE error: %s lookup not DNSSEC", sx->host->name),
1636         FAIL, FALSE);
1637       (void) event_raise(sx->tblock->event_action,
1638         US"dane:fail", US"dane-required");
1639       return FAIL;
1640       }
1641     }
1642 #endif  /*DANE*/
1643
1644   /* Make the TCP connection */
1645
1646   sx->inblock.sock = sx->outblock.sock =
1647     smtp_connect(sx->host, sx->host_af, sx->interface,
1648                   sx->ob->connect_timeout, sx->tblock);
1649
1650   if (sx->inblock.sock < 0)
1651     {
1652     uschar * msg = NULL;
1653     if (sx->verify)
1654       {
1655       msg = US strerror(errno);
1656       HDEBUG(D_verify) debug_printf("connect: %s\n", msg);
1657       }
1658     set_errno_nohost(sx->addrlist,
1659       errno == ETIMEDOUT ? ERRNO_CONNECTTIMEOUT : errno,
1660       sx->verify ? string_sprintf("could not connect: %s", msg)
1661              : NULL,
1662       DEFER, FALSE);
1663     sx->send_quit = FALSE;
1664     return DEFER;
1665     }
1666
1667   /* Expand the greeting message while waiting for the initial response. (Makes
1668   sense if helo_data contains ${lookup dnsdb ...} stuff). The expansion is
1669   delayed till here so that $sending_interface and $sending_port are set. */
1670
1671   if (sx->helo_data)
1672     if (!(sx->helo_data = expand_string(sx->helo_data)))
1673       if (sx->verify)
1674         log_write(0, LOG_MAIN|LOG_PANIC,
1675           "<%s>: failed to expand transport's helo_data value for callout: %s",
1676           sx->addrlist->address, expand_string_message);
1677
1678 #ifdef SUPPORT_I18N
1679   if (sx->helo_data)
1680     {
1681     expand_string_message = NULL;
1682     if ((sx->helo_data = string_domain_utf8_to_alabel(sx->helo_data,
1683                                               &expand_string_message)),
1684         expand_string_message)
1685       if (sx->verify)
1686         log_write(0, LOG_MAIN|LOG_PANIC,
1687           "<%s>: failed to expand transport's helo_data value for callout: %s",
1688           sx->addrlist->address, expand_string_message);
1689       else
1690         sx->helo_data = NULL;
1691     }
1692 #endif
1693
1694   /* The first thing is to wait for an initial OK response. The dreaded "goto"
1695   is nevertheless a reasonably clean way of programming this kind of logic,
1696   where you want to escape on any error. */
1697
1698   if (!sx->smtps)
1699     {
1700     BOOL good_response;
1701
1702 #ifdef TCP_QUICKACK
1703     (void) setsockopt(sx->inblock.sock, IPPROTO_TCP, TCP_QUICKACK, US &off, sizeof(off));
1704 #endif
1705     good_response = smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer),
1706       '2', sx->ob->command_timeout);
1707 #ifdef EXPERIMENTAL_DSN_INFO
1708     sx->smtp_greeting = string_copy(sx->buffer);
1709 #endif
1710     if (!good_response) goto RESPONSE_FAILED;
1711
1712 #ifndef DISABLE_EVENT
1713       {
1714       uschar * s;
1715       lookup_dnssec_authenticated = sx->host->dnssec==DS_YES ? US"yes"
1716         : sx->host->dnssec==DS_NO ? US"no" : NULL;
1717       s = event_raise(sx->tblock->event_action, US"smtp:connect", sx->buffer);
1718       if (s)
1719         {
1720         set_errno_nohost(sx->addrlist, ERRNO_EXPANDFAIL,
1721           string_sprintf("deferred by smtp:connect event expansion: %s", s),
1722           DEFER, FALSE);
1723         yield = DEFER;
1724         goto SEND_QUIT;
1725         }
1726       }
1727 #endif
1728
1729     /* Now check if the helo_data expansion went well, and sign off cleanly if
1730     it didn't. */
1731
1732     if (!sx->helo_data)
1733       {
1734       message = string_sprintf("failed to expand helo_data: %s",
1735         expand_string_message);
1736       set_errno_nohost(sx->addrlist, ERRNO_EXPANDFAIL, message, DEFER, FALSE);
1737       yield = DEFER;
1738       goto SEND_QUIT;
1739       }
1740     }
1741
1742 /** Debugging without sending a message
1743 sx->addrlist->transport_return = DEFER;
1744 goto SEND_QUIT;
1745 **/
1746
1747   /* Errors that occur after this point follow an SMTP command, which is
1748   left in big_buffer by smtp_write_command() for use in error messages. */
1749
1750   smtp_command = big_buffer;
1751
1752   /* Tell the remote who we are...
1753
1754   February 1998: A convention has evolved that ESMTP-speaking MTAs include the
1755   string "ESMTP" in their greeting lines, so make Exim send EHLO if the
1756   greeting is of this form. The assumption was that the far end supports it
1757   properly... but experience shows that there are some that give 5xx responses,
1758   even though the banner includes "ESMTP" (there's a bloody-minded one that
1759   says "ESMTP not spoken here"). Cope with that case.
1760
1761   September 2000: Time has passed, and it seems reasonable now to always send
1762   EHLO at the start. It is also convenient to make the change while installing
1763   the TLS stuff.
1764
1765   July 2003: Joachim Wieland met a broken server that advertises "PIPELINING"
1766   but times out after sending MAIL FROM, RCPT TO and DATA all together. There
1767   would be no way to send out the mails, so there is now a host list
1768   "hosts_avoid_esmtp" that disables ESMTP for special hosts and solves the
1769   PIPELINING problem as well. Maybe it can also be useful to cure other
1770   problems with broken servers.
1771
1772   Exim originally sent "Helo" at this point and ran for nearly a year that way.
1773   Then somebody tried it with a Microsoft mailer... It seems that all other
1774   mailers use upper case for some reason (the RFC is quite clear about case
1775   independence) so, for peace of mind, I gave in. */
1776
1777   sx->esmtp = verify_check_given_host(&sx->ob->hosts_avoid_esmtp, sx->host) != OK;
1778
1779   /* Alas; be careful, since this goto is not an error-out, so conceivably
1780   we might set data between here and the target which we assume to exist
1781   and be usable.  I can see this coming back to bite us. */
1782 #ifdef SUPPORT_TLS
1783   if (sx->smtps)
1784     {
1785     smtp_peer_options |= OPTION_TLS;
1786     suppress_tls = FALSE;
1787     sx->ob->tls_tempfail_tryclear = FALSE;
1788     smtp_command = US"SSL-on-connect";
1789     goto TLS_NEGOTIATE;
1790     }
1791 #endif
1792
1793   if (sx->esmtp)
1794     {
1795     if (smtp_write_command(&sx->outblock, SCMD_FLUSH, "%s %s\r\n",
1796          sx->lmtp ? "LHLO" : "EHLO", sx->helo_data) < 0)
1797       goto SEND_FAILED;
1798     sx->esmtp_sent = TRUE;
1799     if (!smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer), '2',
1800            sx->ob->command_timeout))
1801       {
1802       if (errno != 0 || sx->buffer[0] == 0 || sx->lmtp)
1803         {
1804 #ifdef EXPERIMENTAL_DSN_INFO
1805         sx->helo_response = string_copy(sx->buffer);
1806 #endif
1807         goto RESPONSE_FAILED;
1808         }
1809       sx->esmtp = FALSE;
1810       }
1811 #ifdef EXPERIMENTAL_DSN_INFO
1812     sx->helo_response = string_copy(sx->buffer);
1813 #endif
1814     }
1815   else
1816     DEBUG(D_transport)
1817       debug_printf("not sending EHLO (host matches hosts_avoid_esmtp)\n");
1818
1819   if (!sx->esmtp)
1820     {
1821     BOOL good_response;
1822     int n = sizeof(sx->buffer);
1823     uschar * rsp = sx->buffer;
1824
1825     if (sx->esmtp_sent && (n = Ustrlen(sx->buffer)) < sizeof(sx->buffer)/2)
1826       { rsp = sx->buffer + n + 1; n = sizeof(sx->buffer) - n; }
1827
1828     if (smtp_write_command(&sx->outblock, SCMD_FLUSH, "HELO %s\r\n", sx->helo_data) < 0)
1829       goto SEND_FAILED;
1830     good_response = smtp_read_response(&sx->inblock, rsp, n,
1831       '2', sx->ob->command_timeout);
1832 #ifdef EXPERIMENTAL_DSN_INFO
1833     sx->helo_response = string_copy(rsp);
1834 #endif
1835     if (!good_response)
1836       {
1837       /* Handle special logging for a closed connection after HELO
1838       when had previously sent EHLO */
1839
1840       if (rsp != sx->buffer && rsp[0] == 0 && (errno == 0 || errno == ECONNRESET))
1841         {
1842         errno = ERRNO_SMTPCLOSED;
1843         goto EHLOHELO_FAILED;
1844         }
1845       memmove(sx->buffer, rsp, Ustrlen(rsp));
1846       goto RESPONSE_FAILED;
1847       }
1848     }
1849
1850   sx->avoid_option = sx->peer_offered = smtp_peer_options = 0;
1851
1852   if (sx->esmtp || sx->lmtp)
1853     {
1854     sx->peer_offered = ehlo_response(sx->buffer,
1855       OPTION_TLS        /* others checked later */
1856       );
1857
1858   /* Set tls_offered if the response to EHLO specifies support for STARTTLS. */
1859
1860 #ifdef SUPPORT_TLS
1861     smtp_peer_options |= sx->peer_offered & OPTION_TLS;
1862 #endif
1863     }
1864   }
1865
1866 /* For continuing deliveries down the same channel, having re-exec'd  the socket
1867 is the standard input; for a socket held open from verify it is recorded
1868 in the cutthrough context block.  Either way we don't need to redo EHLO here
1869 (but may need to do so for TLS - see below).
1870 Set up the pointer to where subsequent commands will be left, for
1871 error messages. Note that smtp_peer_options will have been
1872 set from the command line if they were set in the process that passed the
1873 connection on. */
1874
1875 /*XXX continue case needs to propagate DSN_INFO, prob. in deliver.c
1876 as the continue goes via transport_pass_socket() and doublefork and exec.
1877 It does not wait.  Unclear how we keep separate host's responses
1878 separate - we could match up by host ip+port as a bodge. */
1879
1880 else
1881   {
1882   if (cutthrough.fd >= 0 && cutthrough.callout_hold_only)
1883     {
1884     sx->inblock.sock = sx->outblock.sock = cutthrough.fd;
1885     sx->host->port = sx->port = cutthrough.host.port;
1886     }
1887   else
1888     {
1889     sx->inblock.sock = sx->outblock.sock = 0;   /* stdin */
1890     smtp_port_for_connect(sx->host, sx->port);  /* Record the port that was used */
1891     }
1892   smtp_command = big_buffer;
1893   sx->helo_data = NULL;         /* ensure we re-expand ob->helo_data */
1894
1895   /* For a continued connection with TLS being proxied for us, or a
1896   held-open verify connection with TLS, nothing more to do. */
1897
1898   if (  continue_proxy_cipher
1899      || (cutthrough.fd >= 0 && cutthrough.callout_hold_only && cutthrough.is_tls)
1900      )
1901     {
1902     sx->peer_offered = smtp_peer_options;
1903     pipelining_active = !!(smtp_peer_options & OPTION_PIPE);
1904     HDEBUG(D_transport) debug_printf("continued connection, %s TLS\n",
1905       continue_proxy_cipher ? "proxied" : "verify conn with");
1906     return OK;
1907     }
1908   HDEBUG(D_transport) debug_printf("continued connection, no TLS\n");
1909   }
1910
1911 /* If TLS is available on this connection, whether continued or not, attempt to
1912 start up a TLS session, unless the host is in hosts_avoid_tls. If successful,
1913 send another EHLO - the server may give a different answer in secure mode. We
1914 use a separate buffer for reading the response to STARTTLS so that if it is
1915 negative, the original EHLO data is available for subsequent analysis, should
1916 the client not be required to use TLS. If the response is bad, copy the buffer
1917 for error analysis. */
1918
1919 #ifdef SUPPORT_TLS
1920 if (  smtp_peer_options & OPTION_TLS
1921    && !suppress_tls
1922    && verify_check_given_host(&sx->ob->hosts_avoid_tls, sx->host) != OK
1923    && (  !sx->verify
1924       || verify_check_given_host(&sx->ob->hosts_verify_avoid_tls, sx->host) != OK
1925    )  )
1926   {
1927   uschar buffer2[4096];
1928   if (smtp_write_command(&sx->outblock, SCMD_FLUSH, "STARTTLS\r\n") < 0)
1929     goto SEND_FAILED;
1930
1931   /* If there is an I/O error, transmission of this message is deferred. If
1932   there is a temporary rejection of STARRTLS and tls_tempfail_tryclear is
1933   false, we also defer. However, if there is a temporary rejection of STARTTLS
1934   and tls_tempfail_tryclear is true, or if there is an outright rejection of
1935   STARTTLS, we carry on. This means we will try to send the message in clear,
1936   unless the host is in hosts_require_tls (tested below). */
1937
1938   if (!smtp_read_response(&sx->inblock, buffer2, sizeof(buffer2), '2',
1939       sx->ob->command_timeout))
1940     {
1941     if (  errno != 0
1942        || buffer2[0] == 0
1943        || (buffer2[0] == '4' && !sx->ob->tls_tempfail_tryclear)
1944        )
1945       {
1946       Ustrncpy(sx->buffer, buffer2, sizeof(sx->buffer));
1947       sx->buffer[sizeof(sx->buffer)-1] = '\0';
1948       goto RESPONSE_FAILED;
1949       }
1950     }
1951
1952   /* STARTTLS accepted: try to negotiate a TLS session. */
1953
1954   else
1955   TLS_NEGOTIATE:
1956     {
1957     address_item * addr;
1958     uschar * errstr;
1959     int rc = tls_client_start(sx->inblock.sock, sx->host, sx->addrlist, sx->tblock,
1960 # ifdef SUPPORT_DANE
1961                              sx->dane ? &tlsa_dnsa : NULL,
1962 # endif
1963                              &errstr);
1964
1965     /* TLS negotiation failed; give an error. From outside, this function may
1966     be called again to try in clear on a new connection, if the options permit
1967     it for this host. */
1968
1969     if (rc != OK)
1970       {
1971 # ifdef SUPPORT_DANE
1972       if (sx->dane)
1973         {
1974         log_write(0, LOG_MAIN,
1975           "DANE attempt failed; TLS connection to %s [%s]: %s",
1976           sx->host->name, sx->host->address, errstr);
1977         (void) event_raise(sx->tblock->event_action,
1978           US"dane:fail", US"validation-failure");       /* could do with better detail */
1979         }
1980 # endif
1981
1982       errno = ERRNO_TLSFAILURE;
1983       message = string_sprintf("TLS session: %s", errstr);
1984       sx->send_quit = FALSE;
1985       goto TLS_FAILED;
1986       }
1987
1988     /* TLS session is set up */
1989
1990     smtp_peer_options_wrap = smtp_peer_options;
1991     for (addr = sx->addrlist; addr; addr = addr->next)
1992       if (addr->transport_return == PENDING_DEFER)
1993         {
1994         addr->cipher = tls_out.cipher;
1995         addr->ourcert = tls_out.ourcert;
1996         addr->peercert = tls_out.peercert;
1997         addr->peerdn = tls_out.peerdn;
1998         addr->ocsp = tls_out.ocsp;
1999         }
2000     }
2001   }
2002
2003 /* if smtps, we'll have smtp_command set to something else; always safe to
2004 reset it here. */
2005 smtp_command = big_buffer;
2006
2007 /* If we started TLS, redo the EHLO/LHLO exchange over the secure channel. If
2008 helo_data is null, we are dealing with a connection that was passed from
2009 another process, and so we won't have expanded helo_data above. We have to
2010 expand it here. $sending_ip_address and $sending_port are set up right at the
2011 start of the Exim process (in exim.c). */
2012
2013 if (tls_out.active >= 0)
2014   {
2015   char *greeting_cmd;
2016   BOOL good_response;
2017
2018   if (!sx->helo_data && !(sx->helo_data = expand_string(sx->ob->helo_data)))
2019     {
2020     uschar *message = string_sprintf("failed to expand helo_data: %s",
2021       expand_string_message);
2022     set_errno_nohost(sx->addrlist, ERRNO_EXPANDFAIL, message, DEFER, FALSE);
2023     yield = DEFER;
2024     goto SEND_QUIT;
2025     }
2026
2027   /* For SMTPS we need to wait for the initial OK response. */
2028   if (sx->smtps)
2029     {
2030     good_response = smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer),
2031       '2', sx->ob->command_timeout);
2032 #ifdef EXPERIMENTAL_DSN_INFO
2033     sx->smtp_greeting = string_copy(sx->buffer);
2034 #endif
2035     if (!good_response) goto RESPONSE_FAILED;
2036     }
2037
2038   if (sx->esmtp)
2039     greeting_cmd = "EHLO";
2040   else
2041     {
2042     greeting_cmd = "HELO";
2043     DEBUG(D_transport)
2044       debug_printf("not sending EHLO (host matches hosts_avoid_esmtp)\n");
2045     }
2046
2047   if (smtp_write_command(&sx->outblock, SCMD_FLUSH, "%s %s\r\n",
2048         sx->lmtp ? "LHLO" : greeting_cmd, sx->helo_data) < 0)
2049     goto SEND_FAILED;
2050   good_response = smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer),
2051     '2', sx->ob->command_timeout);
2052 #ifdef EXPERIMENTAL_DSN_INFO
2053   sx->helo_response = string_copy(sx->buffer);
2054 #endif
2055   if (!good_response) goto RESPONSE_FAILED;
2056   smtp_peer_options = 0;
2057   }
2058
2059 /* If the host is required to use a secure channel, ensure that we
2060 have one. */
2061
2062 else if (  sx->smtps
2063 # ifdef SUPPORT_DANE
2064         || sx->dane
2065 # endif
2066         || verify_check_given_host(&sx->ob->hosts_require_tls, sx->host) == OK
2067         )
2068   {
2069   errno = ERRNO_TLSREQUIRED;
2070   message = string_sprintf("a TLS session is required, but %s",
2071     smtp_peer_options & OPTION_TLS
2072     ? "an attempt to start TLS failed" : "the server did not offer TLS support");
2073 # ifdef SUPPORT_DANE
2074   if (sx->dane)
2075     (void) event_raise(sx->tblock->event_action, US"dane:fail",
2076       smtp_peer_options & OPTION_TLS
2077       ? US"validation-failure"          /* could do with better detail */
2078       : US"starttls-not-supported");
2079 # endif
2080   goto TLS_FAILED;
2081   }
2082 #endif  /*SUPPORT_TLS*/
2083
2084 /* If TLS is active, we have just started it up and re-done the EHLO command,
2085 so its response needs to be analyzed. If TLS is not active and this is a
2086 continued session down a previously-used socket, we haven't just done EHLO, so
2087 we skip this. */
2088
2089 if (continue_hostname == NULL
2090 #ifdef SUPPORT_TLS
2091     || tls_out.active >= 0
2092 #endif
2093     )
2094   {
2095   if (sx->esmtp || sx->lmtp)
2096     {
2097     sx->peer_offered = ehlo_response(sx->buffer,
2098         0 /* no TLS */
2099         | (sx->lmtp && sx->ob->lmtp_ignore_quota ? OPTION_IGNQ : 0)
2100         | OPTION_CHUNKING
2101         | OPTION_PRDR
2102 #ifdef SUPPORT_I18N
2103         | (sx->addrlist->prop.utf8_msg ? OPTION_UTF8 : 0)
2104           /*XXX if we hand peercaps on to continued-conn processes,
2105                 must not depend on this addr */
2106 #endif
2107         | OPTION_DSN
2108         | OPTION_PIPE
2109         | (sx->ob->size_addition >= 0 ? OPTION_SIZE : 0)
2110       );
2111
2112     /* Set for IGNOREQUOTA if the response to LHLO specifies support and the
2113     lmtp_ignore_quota option was set. */
2114
2115     sx->igquotstr = sx->peer_offered & OPTION_IGNQ ? US" IGNOREQUOTA" : US"";
2116
2117     /* If the response to EHLO specified support for the SIZE parameter, note
2118     this, provided size_addition is non-negative. */
2119
2120     smtp_peer_options |= sx->peer_offered & OPTION_SIZE;
2121
2122     /* Note whether the server supports PIPELINING. If hosts_avoid_esmtp matched
2123     the current host, esmtp will be false, so PIPELINING can never be used. If
2124     the current host matches hosts_avoid_pipelining, don't do it. */
2125
2126     if (  sx->peer_offered & OPTION_PIPE
2127        && verify_check_given_host(&sx->ob->hosts_avoid_pipelining, sx->host) != OK)
2128       smtp_peer_options |= OPTION_PIPE;
2129
2130     DEBUG(D_transport) debug_printf("%susing PIPELINING\n",
2131       smtp_peer_options & OPTION_PIPE ? "" : "not ");
2132
2133     if (  sx->peer_offered & OPTION_CHUNKING
2134        && verify_check_given_host(&sx->ob->hosts_try_chunking, sx->host) != OK)
2135       sx->peer_offered &= ~OPTION_CHUNKING;
2136
2137     if (sx->peer_offered & OPTION_CHUNKING)
2138       {DEBUG(D_transport) debug_printf("CHUNKING usable\n");}
2139
2140 #ifndef DISABLE_PRDR
2141     if (  sx->peer_offered & OPTION_PRDR
2142        && verify_check_given_host(&sx->ob->hosts_try_prdr, sx->host) != OK)
2143       sx->peer_offered &= ~OPTION_PRDR;
2144
2145     if (sx->peer_offered & OPTION_PRDR)
2146       {DEBUG(D_transport) debug_printf("PRDR usable\n");}
2147 #endif
2148
2149     /* Note if the server supports DSN */
2150     smtp_peer_options |= sx->peer_offered & OPTION_DSN;
2151     DEBUG(D_transport) debug_printf("%susing DSN\n",
2152                         sx->peer_offered & OPTION_DSN ? "" : "not ");
2153
2154     /* Note if the response to EHLO specifies support for the AUTH extension.
2155     If it has, check that this host is one we want to authenticate to, and do
2156     the business. The host name and address must be available when the
2157     authenticator's client driver is running. */
2158
2159     switch (yield = smtp_auth(sx->buffer, sizeof(sx->buffer), sx->addrlist, sx->host,
2160                               sx->ob, sx->esmtp, &sx->inblock, &sx->outblock))
2161       {
2162       default:          goto SEND_QUIT;
2163       case OK:          break;
2164       case FAIL_SEND:   goto SEND_FAILED;
2165       case FAIL:        goto RESPONSE_FAILED;
2166       }
2167     }
2168   }
2169 pipelining_active = !!(smtp_peer_options & OPTION_PIPE);
2170
2171 /* The setting up of the SMTP call is now complete. Any subsequent errors are
2172 message-specific. */
2173
2174 sx->setting_up = FALSE;
2175
2176 #ifdef SUPPORT_I18N
2177 if (sx->addrlist->prop.utf8_msg)
2178   {
2179   sx->utf8_needed = !sx->addrlist->prop.utf8_downcvt
2180                     && !sx->addrlist->prop.utf8_downcvt_maybe;
2181   DEBUG(D_transport) if (!sx->utf8_needed)
2182     debug_printf("utf8: %s downconvert\n",
2183       sx->addrlist->prop.utf8_downcvt ? "mandatory" : "optional");
2184   }
2185
2186 /* If this is an international message we need the host to speak SMTPUTF8 */
2187 if (sx->utf8_needed && !(sx->peer_offered & OPTION_UTF8))
2188   {
2189   errno = ERRNO_UTF8_FWD;
2190   goto RESPONSE_FAILED;
2191   }
2192 #endif
2193
2194 return OK;
2195
2196
2197   {
2198   int code;
2199
2200   RESPONSE_FAILED:
2201     message = NULL;
2202     sx->send_quit = check_response(sx->host, &errno, sx->addrlist->more_errno,
2203       sx->buffer, &code, &message, &pass_message);
2204     goto FAILED;
2205
2206   SEND_FAILED:
2207     code = '4';
2208     message = US string_sprintf("send() to %s [%s] failed: %s",
2209       sx->host->name, sx->host->address, strerror(errno));
2210     sx->send_quit = FALSE;
2211     goto FAILED;
2212
2213   EHLOHELO_FAILED:
2214     code = '4';
2215     message = string_sprintf("Remote host closed connection in response to %s"
2216       " (EHLO response was: %s)", smtp_command, sx->buffer);
2217     sx->send_quit = FALSE;
2218     goto FAILED;
2219
2220   /* This label is jumped to directly when a TLS negotiation has failed,
2221   or was not done for a host for which it is required. Values will be set
2222   in message and errno, and setting_up will always be true. Treat as
2223   a temporary error. */
2224
2225 #ifdef SUPPORT_TLS
2226   TLS_FAILED:
2227     code = '4';
2228     goto FAILED;
2229 #endif
2230
2231   /* The failure happened while setting up the call; see if the failure was
2232   a 5xx response (this will either be on connection, or following HELO - a 5xx
2233   after EHLO causes it to try HELO). If so, and there are no more hosts to try,
2234   fail all addresses, as this host is never going to accept them. For other
2235   errors during setting up (timeouts or whatever), defer all addresses, and
2236   yield DEFER, so that the host is not tried again for a while.
2237
2238   XXX This peeking for another host feels like a layering violation. We want
2239   to note the host as unusable, but down here we shouldn't know if this was
2240   the last host to try for the addr(list).  Perhaps the upper layer should be
2241   the one to do set_errno() ?  The problem is that currently the addr is where
2242   errno etc. are stashed, but until we run out of hosts to try the errors are
2243   host-specific.  Maybe we should enhance the host_item definition? */
2244
2245 FAILED:
2246   sx->ok = FALSE;                /* For when reached by GOTO */
2247   set_errno(sx->addrlist, errno, message,
2248             sx->host->next
2249             ? DEFER
2250             : code == '5'
2251 #ifdef SUPPORT_I18N
2252                         || errno == ERRNO_UTF8_FWD
2253 #endif
2254             ? FAIL : DEFER,
2255             pass_message, sx->host
2256 #ifdef EXPERIMENTAL_DSN_INFO
2257             , sx->smtp_greeting, sx->helo_response
2258 #endif
2259             );
2260   yield = DEFER;
2261   }
2262
2263
2264 SEND_QUIT:
2265
2266 if (sx->send_quit)
2267   (void)smtp_write_command(&sx->outblock, SCMD_FLUSH, "QUIT\r\n");
2268
2269 #ifdef SUPPORT_TLS
2270 tls_close(FALSE, TLS_SHUTDOWN_NOWAIT);
2271 #endif
2272
2273 /* Close the socket, and return the appropriate value, first setting
2274 works because the NULL setting is passed back to the calling process, and
2275 remote_max_parallel is forced to 1 when delivering over an existing connection,
2276 */
2277
2278 HDEBUG(D_transport|D_acl|D_v) debug_printf_indent("  SMTP(close)>>\n");
2279 if (sx->send_quit)
2280   {
2281   shutdown(sx->outblock.sock, SHUT_WR);
2282   if (fcntl(sx->inblock.sock, F_SETFL, O_NONBLOCK) == 0)
2283     for (rc = 16; read(sx->inblock.sock, sx->inbuffer, sizeof(sx->inbuffer)) > 0 && rc > 0;)
2284       rc--;                             /* drain socket */
2285   sx->send_quit = FALSE;
2286   }
2287 (void)close(sx->inblock.sock);
2288 sx->inblock.sock = sx->outblock.sock = -1;
2289
2290 #ifndef DISABLE_EVENT
2291 (void) event_raise(sx->tblock->event_action, US"tcp:close", NULL);
2292 #endif
2293
2294 continue_transport = NULL;
2295 continue_hostname = NULL;
2296 return yield;
2297 }
2298
2299
2300
2301
2302 /* Create the string of options that will be appended to the MAIL FROM:
2303 in the connection context buffer */
2304
2305 static int
2306 build_mailcmd_options(smtp_context * sx, address_item * addrlist)
2307 {
2308 uschar * p = sx->buffer;
2309 address_item * addr;
2310 int address_count;
2311
2312 *p = 0;
2313
2314 /* If we know the receiving MTA supports the SIZE qualification, and we know it,
2315 send it, adding something to the message size to allow for imprecision
2316 and things that get added en route. Exim keeps the number of lines
2317 in a message, so we can give an accurate value for the original message, but we
2318 need some additional to handle added headers. (Double "." characters don't get
2319 included in the count.) */
2320
2321 if (  message_size > 0
2322    && sx->peer_offered & OPTION_SIZE && !(sx->avoid_option & OPTION_SIZE))
2323   {
2324 /*XXX problem here under spool_files_wireformat?
2325 Or just forget about lines?  Or inflate by a fixed proportion? */
2326
2327   sprintf(CS p, " SIZE=%d", message_size+message_linecount+sx->ob->size_addition);
2328   while (*p) p++;
2329   }
2330
2331 #ifndef DISABLE_PRDR
2332 /* If it supports Per-Recipient Data Reponses, and we have omre than one recipient,
2333 request that */
2334
2335 sx->prdr_active = FALSE;
2336 if (sx->peer_offered & OPTION_PRDR)
2337   for (addr = addrlist; addr; addr = addr->next)
2338     if (addr->transport_return == PENDING_DEFER)
2339       {
2340       for (addr = addr->next; addr; addr = addr->next)
2341         if (addr->transport_return == PENDING_DEFER)
2342           {                     /* at least two recipients to send */
2343           sx->prdr_active = TRUE;
2344           sprintf(CS p, " PRDR"); p += 5;
2345           break;
2346           }
2347       break;
2348       }
2349 #endif
2350
2351 #ifdef SUPPORT_I18N
2352 /* If it supports internationalised messages, and this meesage need that,
2353 request it */
2354
2355 if (  sx->peer_offered & OPTION_UTF8
2356    && addrlist->prop.utf8_msg
2357    && !addrlist->prop.utf8_downcvt
2358    )
2359   Ustrcpy(p, " SMTPUTF8"), p += 9;
2360 #endif
2361
2362 /* check if all addresses have DSN-lasthop flag; do not send RET and ENVID if so */
2363 for (sx->dsn_all_lasthop = TRUE, addr = addrlist, address_count = 0;
2364      addr && address_count < sx->max_rcpt;
2365      addr = addr->next) if (addr->transport_return == PENDING_DEFER)
2366   {
2367   address_count++;
2368   if (!(addr->dsn_flags & rf_dsnlasthop))
2369     {
2370     sx->dsn_all_lasthop = FALSE;
2371     break;
2372     }
2373   }
2374
2375 /* Add any DSN flags to the mail command */
2376
2377 if (sx->peer_offered & OPTION_DSN && !sx->dsn_all_lasthop)
2378   {
2379   if (dsn_ret == dsn_ret_hdrs)
2380     { Ustrcpy(p, " RET=HDRS"); p += 9; }
2381   else if (dsn_ret == dsn_ret_full)
2382     { Ustrcpy(p, " RET=FULL"); p += 9; }
2383
2384   if (dsn_envid)
2385     {
2386     string_format(p, sizeof(sx->buffer) - (p-sx->buffer), " ENVID=%s", dsn_envid);
2387     while (*p) p++;
2388     }
2389   }
2390
2391 /* If an authenticated_sender override has been specified for this transport
2392 instance, expand it. If the expansion is forced to fail, and there was already
2393 an authenticated_sender for this message, the original value will be used.
2394 Other expansion failures are serious. An empty result is ignored, but there is
2395 otherwise no check - this feature is expected to be used with LMTP and other
2396 cases where non-standard addresses (e.g. without domains) might be required. */
2397
2398 if (smtp_mail_auth_str(p, sizeof(sx->buffer) - (p-sx->buffer), addrlist, sx->ob))
2399   return ERROR;
2400
2401 return OK;
2402 }
2403
2404
2405 static void
2406 build_rcptcmd_options(smtp_context * sx, const address_item * addr)
2407 {
2408 uschar * p = sx->buffer;
2409 *p = 0;
2410
2411 /* Add any DSN flags to the rcpt command */
2412
2413 if (sx->peer_offered & OPTION_DSN && !(addr->dsn_flags & rf_dsnlasthop))
2414   {
2415   if (addr->dsn_flags & rf_dsnflags)
2416     {
2417     int i;
2418     BOOL first = TRUE;
2419
2420     Ustrcpy(p, " NOTIFY=");
2421     while (*p) p++;
2422     for (i = 0; i < nelem(rf_list); i++) if (addr->dsn_flags & rf_list[i])
2423       {
2424       if (!first) *p++ = ',';
2425       first = FALSE;
2426       Ustrcpy(p, rf_names[i]);
2427       while (*p) p++;
2428       }
2429     }
2430
2431   if (addr->dsn_orcpt)
2432     {
2433     string_format(p, sizeof(sx->buffer) - (p-sx->buffer), " ORCPT=%s",
2434       addr->dsn_orcpt);
2435     while (*p) p++;
2436     }
2437   }
2438 }
2439
2440
2441
2442 /*
2443 Return:
2444  0      good, rcpt results in addr->transport_return (PENDING_OK, DEFER, FAIL)
2445  -1     MAIL response error
2446  -2     any non-MAIL read i/o error
2447  -3     non-MAIL response timeout
2448  -4     internal error; channel still usable
2449  -5     transmit failed
2450  */
2451
2452 int
2453 smtp_write_mail_and_rcpt_cmds(smtp_context * sx, int * yield)
2454 {
2455 address_item * addr;
2456 int address_count;
2457 int rc;
2458
2459 if (build_mailcmd_options(sx, sx->first_addr) != OK)
2460   {
2461   *yield = ERROR;
2462   return -4;
2463   }
2464
2465 /* From here until we send the DATA command, we can make use of PIPELINING
2466 if the server host supports it. The code has to be able to check the responses
2467 at any point, for when the buffer fills up, so we write it totally generally.
2468 When PIPELINING is off, each command written reports that it has flushed the
2469 buffer. */
2470
2471 sx->pending_MAIL = TRUE;     /* The block starts with MAIL */
2472
2473   {
2474   uschar * s = sx->from_addr;
2475 #ifdef SUPPORT_I18N
2476   uschar * errstr = NULL;
2477
2478   /* If we must downconvert, do the from-address here.  Remember we had to
2479   for the to-addresses (done below), and also (ugly) for re-doing when building
2480   the delivery log line. */
2481
2482   if (  sx->addrlist->prop.utf8_msg
2483      && (sx->addrlist->prop.utf8_downcvt || !(sx->peer_offered & OPTION_UTF8))
2484      )
2485     {
2486     if (s = string_address_utf8_to_alabel(s, &errstr), errstr)
2487       {
2488       set_errno_nohost(sx->addrlist, ERRNO_EXPANDFAIL, errstr, DEFER, FALSE);
2489       *yield = ERROR;
2490       return -4;
2491       }
2492     setflag(sx->addrlist, af_utf8_downcvt);
2493     }
2494 #endif
2495
2496   rc = smtp_write_command(&sx->outblock, pipelining_active ? SCMD_BUFFER : SCMD_FLUSH,
2497           "MAIL FROM:<%s>%s\r\n", s, sx->buffer);
2498   }
2499
2500 mail_command = string_copy(big_buffer);  /* Save for later error message */
2501
2502 switch(rc)
2503   {
2504   case -1:                /* Transmission error */
2505     return -5;
2506
2507   case +1:                /* Cmd was sent */
2508     if (!smtp_read_response(&sx->inblock, sx->buffer, sizeof(sx->buffer), '2',
2509        sx->ob->command_timeout))
2510       {
2511       if (errno == 0 && sx->buffer[0] == '4')
2512         {
2513         errno = ERRNO_MAIL4XX;
2514         sx->addrlist->more_errno |= ((sx->buffer[1] - '0')*10 + sx->buffer[2] - '0') << 8;
2515         }
2516       return -1;
2517       }
2518     sx->pending_MAIL = FALSE;
2519     break;
2520
2521   /* otherwise zero: command queued for pipeline */
2522   }
2523
2524 /* Pass over all the relevant recipient addresses for this host, which are the
2525 ones that have status PENDING_DEFER. If we are using PIPELINING, we can send
2526 several before we have to read the responses for those seen so far. This
2527 checking is done by a subroutine because it also needs to be done at the end.
2528 Send only up to max_rcpt addresses at a time, leaving next_addr pointing to
2529 the next one if not all are sent.
2530
2531 In the MUA wrapper situation, we want to flush the PIPELINING buffer for the
2532 last address because we want to abort if any recipients have any kind of
2533 problem, temporary or permanent. We know that all recipient addresses will have
2534 the PENDING_DEFER status, because only one attempt is ever made, and we know
2535 that max_rcpt will be large, so all addresses will be done at once.
2536
2537 For verify we flush the pipeline after any (the only) rcpt address. */
2538
2539 for (addr = sx->first_addr, address_count = 0;
2540      addr  &&  address_count < sx->max_rcpt;
2541      addr = addr->next) if (addr->transport_return == PENDING_DEFER)
2542   {
2543   int count;
2544   BOOL no_flush;
2545   uschar * rcpt_addr;
2546
2547   if (tcp_out_fastopen && !tcp_out_fastopen_logged)
2548     {
2549     setflag(addr, af_tcp_fastopen_conn);
2550     if (tcp_out_fastopen > 1) setflag(addr, af_tcp_fastopen);
2551     }
2552
2553   addr->dsn_aware = sx->peer_offered & OPTION_DSN
2554     ? dsn_support_yes : dsn_support_no;
2555
2556   address_count++;
2557   no_flush = pipelining_active && !sx->verify
2558           && (!mua_wrapper || addr->next && address_count < sx->max_rcpt);
2559
2560   build_rcptcmd_options(sx, addr);
2561
2562   /* Now send the RCPT command, and process outstanding responses when
2563   necessary. After a timeout on RCPT, we just end the function, leaving the
2564   yield as OK, because this error can often mean that there is a problem with
2565   just one address, so we don't want to delay the host. */
2566
2567   rcpt_addr = transport_rcpt_address(addr, sx->tblock->rcpt_include_affixes);
2568
2569 #ifdef SUPPORT_I18N
2570   if (  testflag(sx->addrlist, af_utf8_downcvt)
2571      && !(rcpt_addr = string_address_utf8_to_alabel(rcpt_addr, NULL))
2572      )
2573     {
2574     /*XXX could we use a per-address errstr here? Not fail the whole send? */
2575     errno = ERRNO_EXPANDFAIL;
2576     return -5;          /*XXX too harsh? */
2577     }
2578 #endif
2579
2580   count = smtp_write_command(&sx->outblock, no_flush ? SCMD_BUFFER : SCMD_FLUSH,
2581     "RCPT TO:<%s>%s%s\r\n", rcpt_addr, sx->igquotstr, sx->buffer);
2582
2583   if (count < 0) return -5;
2584   if (count > 0)
2585     {
2586     switch(sync_responses(sx, count, 0))
2587       {
2588       case 3: sx->ok = TRUE;                    /* 2xx & 5xx => OK & progress made */
2589       case 2: sx->completed_addr = TRUE;        /* 5xx (only) => progress made */
2590               break;
2591
2592       case 1: sx->ok = TRUE;                    /* 2xx (only) => OK, but if LMTP, */
2593               if (!sx->lmtp)                    /*  can't tell about progress yet */
2594                 sx->completed_addr = TRUE;
2595       case 0:                                   /* No 2xx or 5xx, but no probs */
2596               break;
2597
2598       case -1: return -3;                       /* Timeout on RCPT */
2599       case -2: return -2;                       /* non-MAIL read i/o error */
2600       default: return -1;                       /* any MAIL error */
2601       }
2602     sx->pending_MAIL = FALSE;            /* Dealt with MAIL */
2603     }
2604   }      /* Loop for next address */
2605
2606 tcp_out_fastopen_logged = TRUE;
2607 sx->next_addr = addr;
2608 return 0;
2609 }
2610
2611
2612 #ifdef SUPPORT_TLS
2613 /*****************************************************
2614 * Proxy TLS connection for another transport process *
2615 ******************************************************/
2616 /*
2617 Close the unused end of the pipe, fork once more, then use the given buffer
2618 as a staging area, and select on both the given fd and the TLS'd client-fd for
2619 data to read (per the coding in ip_recv() and fd_ready() this is legitimate).
2620 Do blocking full-size writes, and reads under a timeout.  Once both input
2621 channels are closed, exit the process.
2622
2623 Arguments:
2624   buf           space to use for buffering
2625   bufsiz        size of buffer
2626   pfd           pipe filedescriptor array; [0] is comms to proxied process
2627   timeout       per-read timeout, seconds
2628 */
2629
2630 void
2631 smtp_proxy_tls(uschar * buf, size_t bsize, int * pfd, int timeout)
2632 {
2633 fd_set rfds, efds;
2634 int max_fd = MAX(pfd[0], tls_out.active) + 1;
2635 int rc, i, fd_bits, nbytes;
2636
2637 close(pfd[1]);
2638 if ((rc = fork()))
2639   {
2640   DEBUG(D_transport) debug_printf("proxy-proc final-pid %d\n", rc);
2641   _exit(rc < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
2642   }
2643
2644 if (running_in_test_harness) millisleep(100); /* let parent debug out */
2645 set_process_info("proxying TLS connection for continued transport");
2646 FD_ZERO(&rfds);
2647 FD_SET(tls_out.active, &rfds);
2648 FD_SET(pfd[0], &rfds);
2649
2650 for (fd_bits = 3; fd_bits; )
2651   {
2652   time_t time_left = timeout;
2653   time_t time_start = time(NULL);
2654
2655   /* wait for data */
2656   efds = rfds;
2657   do
2658     {
2659     struct timeval tv = { time_left, 0 };
2660
2661     rc = select(max_fd,
2662       (SELECT_ARG2_TYPE *)&rfds, NULL, (SELECT_ARG2_TYPE *)&efds, &tv);
2663
2664     if (rc < 0 && errno == EINTR)
2665       if ((time_left -= time(NULL) - time_start) > 0) continue;
2666
2667     if (rc <= 0)
2668       {
2669       DEBUG(D_transport) if (rc == 0) debug_printf("%s: timed out\n", __FUNCTION__);
2670       goto done;
2671       }
2672
2673     if (FD_ISSET(tls_out.active, &efds) || FD_ISSET(pfd[0], &efds))
2674       {
2675       DEBUG(D_transport) debug_printf("select: exceptional cond on %s fd\n",
2676         FD_ISSET(pfd[0], &efds) ? "proxy" : "tls");
2677       goto done;
2678       }
2679     }
2680   while (rc < 0 || !(FD_ISSET(tls_out.active, &rfds) || FD_ISSET(pfd[0], &rfds)));
2681
2682   /* handle inbound data */
2683   if (FD_ISSET(tls_out.active, &rfds))
2684     if ((rc = tls_read(FALSE, buf, bsize)) <= 0)
2685       {
2686       fd_bits &= ~1;
2687       FD_CLR(tls_out.active, &rfds);
2688       shutdown(pfd[0], SHUT_WR);
2689       timeout = 5;
2690       }
2691     else
2692       {
2693       for (nbytes = 0; rc - nbytes > 0; nbytes += i)
2694         if ((i = write(pfd[0], buf + nbytes, rc - nbytes)) < 0) goto done;
2695       }
2696   else if (fd_bits & 1)
2697     FD_SET(tls_out.active, &rfds);
2698
2699   /* handle outbound data */
2700   if (FD_ISSET(pfd[0], &rfds))
2701     if ((rc = read(pfd[0], buf, bsize)) <= 0)
2702       {
2703       fd_bits = 0;
2704       tls_close(FALSE, TLS_SHUTDOWN_NOWAIT);
2705       }
2706     else
2707       {
2708       for (nbytes = 0; rc - nbytes > 0; nbytes += i)
2709         if ((i = tls_write(FALSE, buf + nbytes, rc - nbytes, FALSE)) < 0)
2710           goto done;
2711       }
2712   else if (fd_bits & 2)
2713     FD_SET(pfd[0], &rfds);
2714   }
2715
2716 done:
2717   if (running_in_test_harness) millisleep(100); /* let logging complete */
2718   exim_exit(0, US"TLS proxy");
2719 }
2720 #endif
2721
2722
2723 /*************************************************
2724 *       Deliver address list to given host       *
2725 *************************************************/
2726
2727 /* If continue_hostname is not null, we get here only when continuing to
2728 deliver down an existing channel. The channel was passed as the standard
2729 input. TLS is never active on a passed channel; the previous process always
2730 closes it down before passing the connection on.
2731
2732 Otherwise, we have to make a connection to the remote host, and do the
2733 initial protocol exchange.
2734
2735 When running as an MUA wrapper, if the sender or any recipient is rejected,
2736 temporarily or permanently, we force failure for all recipients.
2737
2738 Arguments:
2739   addrlist        chain of potential addresses to deliver; only those whose
2740                   transport_return field is set to PENDING_DEFER are currently
2741                   being processed; others should be skipped - they have either
2742                   been delivered to an earlier host or IP address, or been
2743                   failed by one of them.
2744   host            host to deliver to
2745   host_af         AF_INET or AF_INET6
2746   defport         default TCP/IP port to use if host does not specify, in host
2747                   byte order
2748   interface       interface to bind to, or NULL
2749   tblock          transport instance block
2750   message_defer   set TRUE if yield is OK, but all addresses were deferred
2751                     because of a non-recipient, non-host failure, that is, a
2752                     4xx response to MAIL FROM, DATA, or ".". This is a defer
2753                     that is specific to the message.
2754   suppress_tls    if TRUE, don't attempt a TLS connection - this is set for
2755                     a second attempt after TLS initialization fails
2756
2757 Returns:          OK    - the connection was made and the delivery attempted;
2758                           the result for each address is in its data block.
2759                   DEFER - the connection could not be made, or something failed
2760                           while setting up the SMTP session, or there was a
2761                           non-message-specific error, such as a timeout.
2762                   ERROR - a filter command is specified for this transport,
2763                           and there was a problem setting it up; OR helo_data
2764                           or add_headers or authenticated_sender is specified
2765                           for this transport, and the string failed to expand
2766 */
2767
2768 static int
2769 smtp_deliver(address_item *addrlist, host_item *host, int host_af, int defport,
2770   uschar *interface, transport_instance *tblock,
2771   BOOL *message_defer, BOOL suppress_tls)
2772 {
2773 address_item *addr;
2774 int yield = OK;
2775 int save_errno;
2776 int rc;
2777 struct timeval start_delivery_time;
2778
2779 BOOL pass_message = FALSE;
2780 uschar *message = NULL;
2781 uschar new_message_id[MESSAGE_ID_LENGTH + 1];
2782
2783 smtp_context sx;
2784
2785 gettimeofday(&start_delivery_time, NULL);
2786 suppress_tls = suppress_tls;  /* stop compiler warning when no TLS support */
2787 *message_defer = FALSE;
2788
2789 sx.addrlist = addrlist;
2790 sx.host = host;
2791 sx.host_af = host_af,
2792 sx.port = defport;
2793 sx.interface = interface;
2794 sx.helo_data = NULL;
2795 sx.tblock = tblock;
2796 sx.verify = FALSE;
2797
2798 /* Get the channel set up ready for a message (MAIL FROM being the next
2799 SMTP command to send */
2800
2801 if ((rc = smtp_setup_conn(&sx, suppress_tls)) != OK)
2802   return rc;
2803
2804 /* If there is a filter command specified for this transport, we can now
2805 set it up. This cannot be done until the identify of the host is known. */
2806
2807 if (tblock->filter_command)
2808   {
2809   transport_filter_timeout = tblock->filter_timeout;
2810
2811   /* On failure, copy the error to all addresses, abandon the SMTP call, and
2812   yield ERROR. */
2813
2814   if (!transport_set_up_command(&transport_filter_argv,
2815         tblock->filter_command, TRUE, DEFER, addrlist,
2816         string_sprintf("%.50s transport", tblock->name), NULL))
2817     {
2818     set_errno_nohost(addrlist->next, addrlist->basic_errno, addrlist->message, DEFER,
2819       FALSE);
2820     yield = ERROR;
2821     goto SEND_QUIT;
2822     }
2823
2824   if (  transport_filter_argv
2825      && *transport_filter_argv
2826      && **transport_filter_argv
2827      && sx.peer_offered & OPTION_CHUNKING
2828      )
2829     {
2830     sx.peer_offered &= ~OPTION_CHUNKING;
2831     DEBUG(D_transport) debug_printf("CHUNKING not usable due to transport filter\n");
2832     }
2833   }
2834
2835 sx.first_addr = addrlist;
2836
2837 /* For messages that have more than the maximum number of envelope recipients,
2838 we want to send several transactions down the same SMTP connection. (See
2839 comments in deliver.c as to how this reconciles, heuristically, with
2840 remote_max_parallel.) This optimization was added to Exim after the following
2841 code was already working. The simplest way to put it in without disturbing the
2842 code was to use a goto to jump back to this point when there is another
2843 transaction to handle. */
2844
2845 SEND_MESSAGE:
2846 sx.from_addr = return_path;
2847 sx.sync_addr = sx.first_addr;
2848 sx.ok = FALSE;
2849 sx.send_rset = TRUE;
2850 sx.completed_addr = FALSE;
2851
2852
2853 /* If we are a continued-connection-after-verify the MAIL and RCPT
2854 commands were already sent; do not re-send but do mark the addrs as
2855 having been accepted up to RCPT stage.  A traditional cont-conn
2856 always has a sequence number greater than one. */
2857
2858 if (continue_hostname && continue_sequence == 1)
2859   {
2860   address_item * addr;
2861
2862   sx.peer_offered = smtp_peer_options;
2863   sx.pending_MAIL = FALSE;
2864   sx.ok = TRUE;
2865   sx.next_addr = NULL;
2866
2867   for (addr = addrlist; addr; addr = addr->next)
2868     addr->transport_return = PENDING_OK;
2869   }
2870 else
2871   {
2872   /* Initiate a message transfer. */
2873
2874   switch(smtp_write_mail_and_rcpt_cmds(&sx, &yield))
2875     {
2876     case 0:             break;
2877     case -1: case -2:   goto RESPONSE_FAILED;
2878     case -3:            goto END_OFF;
2879     case -4:            goto SEND_QUIT;
2880     default:            goto SEND_FAILED;
2881     }
2882
2883   /* If we are an MUA wrapper, abort if any RCPTs were rejected, either
2884   permanently or temporarily. We should have flushed and synced after the last
2885   RCPT. */
2886
2887   if (mua_wrapper)
2888     {
2889     address_item * a;
2890     unsigned cnt;
2891
2892     for (a = sx.first_addr, cnt = 0; a && cnt < sx.max_rcpt; a = a->next, cnt++)
2893       if (a->transport_return != PENDING_OK)
2894         {
2895         /*XXX could we find a better errno than 0 here? */
2896         set_errno_nohost(addrlist, 0, a->message, FAIL,
2897           testflag(a, af_pass_message));
2898         sx.ok = FALSE;
2899         break;
2900         }
2901     }
2902   }
2903
2904 /* If ok is TRUE, we know we have got at least one good recipient, and must now
2905 send DATA, but if it is FALSE (in the normal, non-wrapper case), we may still
2906 have a good recipient buffered up if we are pipelining. We don't want to waste
2907 time sending DATA needlessly, so we only send it if either ok is TRUE or if we
2908 are pipelining. The responses are all handled by sync_responses().
2909 If using CHUNKING, do not send a BDAT until we know how big a chunk we want
2910 to send is. */
2911
2912 if (  !(sx.peer_offered & OPTION_CHUNKING)
2913    && (sx.ok || (pipelining_active && !mua_wrapper)))
2914   {
2915   int count = smtp_write_command(&sx.outblock, SCMD_FLUSH, "DATA\r\n");
2916
2917   if (count < 0) goto SEND_FAILED;
2918   switch(sync_responses(&sx, count, sx.ok ? +1 : -1))
2919     {
2920     case 3: sx.ok = TRUE;            /* 2xx & 5xx => OK & progress made */
2921     case 2: sx.completed_addr = TRUE;    /* 5xx (only) => progress made */
2922     break;
2923
2924     case 1: sx.ok = TRUE;            /* 2xx (only) => OK, but if LMTP, */
2925     if (!sx.lmtp) sx.completed_addr = TRUE; /* can't tell about progress yet */
2926     case 0: break;                       /* No 2xx or 5xx, but no probs */
2927
2928     case -1: goto END_OFF;               /* Timeout on RCPT */
2929     default: goto RESPONSE_FAILED;       /* I/O error, or any MAIL/DATA error */
2930     }
2931   pipelining_active = FALSE;
2932   data_command = string_copy(big_buffer);  /* Save for later error message */
2933   }
2934
2935 /* If there were no good recipients (but otherwise there have been no
2936 problems), just set ok TRUE, since we have handled address-specific errors
2937 already. Otherwise, it's OK to send the message. Use the check/escape mechanism
2938 for handling the SMTP dot-handling protocol, flagging to apply to headers as
2939 well as body. Set the appropriate timeout value to be used for each chunk.
2940 (Haven't been able to make it work using select() for writing yet.) */
2941
2942 if (!(sx.peer_offered & OPTION_CHUNKING) && !sx.ok)
2943   {
2944   /* Save the first address of the next batch. */
2945   sx.first_addr = sx.next_addr;
2946
2947   sx.ok = TRUE;
2948   }
2949 else
2950   {
2951   transport_ctx tctx = {
2952     {sx.inblock.sock},
2953     tblock,
2954     addrlist,
2955     US".", US"..",    /* Escaping strings */
2956     topt_use_crlf | topt_escape_headers
2957     | (tblock->body_only        ? topt_no_headers : 0)
2958     | (tblock->headers_only     ? topt_no_body : 0)
2959     | (tblock->return_path_add  ? topt_add_return_path : 0)
2960     | (tblock->delivery_date_add ? topt_add_delivery_date : 0)
2961     | (tblock->envelope_to_add  ? topt_add_envelope_to : 0)
2962   };
2963
2964   /* If using CHUNKING we need a callback from the generic transport
2965   support to us, for the sending of BDAT smtp commands and the reaping
2966   of responses.  The callback needs a whole bunch of state so set up
2967   a transport-context structure to be passed around. */
2968
2969   if (sx.peer_offered & OPTION_CHUNKING)
2970     {
2971     tctx.check_string = tctx.escape_string = NULL;
2972     tctx.options |= topt_use_bdat;
2973     tctx.chunk_cb = smtp_chunk_cmd_callback;
2974     sx.pending_BDAT = FALSE;
2975     sx.good_RCPT = sx.ok;
2976     sx.cmd_count = 0;
2977     tctx.smtp_context = &sx;
2978     }
2979   else
2980     tctx.options |= topt_end_dot;
2981
2982   /* Save the first address of the next batch. */
2983   sx.first_addr = sx.next_addr;
2984
2985   /* Responses from CHUNKING commands go in buffer.  Otherwise,
2986   there has not been a response. */
2987
2988   sx.buffer[0] = 0;
2989
2990   sigalrm_seen = FALSE;
2991   transport_write_timeout = sx.ob->data_timeout;
2992   smtp_command = US"sending data block";   /* For error messages */
2993   DEBUG(D_transport|D_v)
2994     if (sx.peer_offered & OPTION_CHUNKING)
2995       debug_printf("         will write message using CHUNKING\n");
2996     else
2997       debug_printf("  SMTP>> writing message and terminating \".\"\n");
2998   transport_count = 0;
2999
3000 #ifndef DISABLE_DKIM
3001   dkim_exim_sign_init();
3002 # ifdef EXPERIMENTAL_ARC
3003     {
3004     uschar * s = sx.ob->arc_sign;
3005     if (s)
3006       {
3007       if (!(sx.ob->dkim.arc_signspec = s = expand_string(s)))
3008         {
3009         if (!expand_string_forcedfail)
3010           {
3011           message = US"failed to expand arc_sign";
3012           sx.ok = FALSE;
3013           goto SEND_FAILED;
3014           }
3015         }
3016       else if (*s)
3017         {
3018         /* Ask dkim code to hash the body for ARC */
3019         (void) arc_ams_setup_sign_bodyhash();
3020         sx.ob->dkim.force_bodyhash = TRUE;
3021         }
3022       }
3023     }
3024 # endif
3025   sx.ok = dkim_transport_write_message(&tctx, &sx.ob->dkim, CUSS &message);
3026 #else
3027   sx.ok = transport_write_message(&tctx, 0);
3028 #endif
3029
3030   /* transport_write_message() uses write() because it is called from other
3031   places to write to non-sockets. This means that under some OS (e.g. Solaris)
3032   it can exit with "Broken pipe" as its error. This really means that the
3033   socket got closed at the far end. */
3034
3035   transport_write_timeout = 0;   /* for subsequent transports */
3036
3037   /* Failure can either be some kind of I/O disaster (including timeout),
3038   or the failure of a transport filter or the expansion of added headers.
3039   Or, when CHUNKING, it can be a protocol-detected failure. */
3040
3041   if (!sx.ok)
3042     if (message) goto SEND_FAILED;
3043     else         goto RESPONSE_FAILED;
3044
3045   /* We used to send the terminating "." explicitly here, but because of
3046   buffering effects at both ends of TCP/IP connections, you don't gain
3047   anything by keeping it separate, so it might as well go in the final
3048   data buffer for efficiency. This is now done by setting the topt_end_dot
3049   flag above. */
3050
3051   smtp_command = US"end of data";
3052
3053   if (sx.peer_offered & OPTION_CHUNKING && sx.cmd_count > 1)
3054     {
3055     /* Reap any outstanding MAIL & RCPT commands, but not a DATA-go-ahead */
3056     switch(sync_responses(&sx, sx.cmd_count-1, 0))
3057       {
3058       case 3: sx.ok = TRUE;            /* 2xx & 5xx => OK & progress made */
3059       case 2: sx.completed_addr = TRUE;    /* 5xx (only) => progress made */
3060       break;
3061
3062       case 1: sx.ok = TRUE;            /* 2xx (only) => OK, but if LMTP, */
3063       if (!sx.lmtp) sx.completed_addr = TRUE; /* can't tell about progress yet */
3064       case 0: break;                       /* No 2xx or 5xx, but no probs */
3065
3066       case -1: goto END_OFF;               /* Timeout on RCPT */
3067       default: goto RESPONSE_FAILED;       /* I/O error, or any MAIL/DATA error */
3068       }
3069     }
3070
3071 #ifndef DISABLE_PRDR
3072   /* For PRDR we optionally get a partial-responses warning
3073    * followed by the individual responses, before going on with
3074    * the overall response.  If we don't get the warning then deal
3075    * with per non-PRDR. */
3076   if(sx.prdr_active)
3077     {
3078     sx.ok = smtp_read_response(&sx.inblock, sx.buffer, sizeof(sx.buffer), '3',
3079       sx.ob->final_timeout);
3080     if (!sx.ok && errno == 0) switch(sx.buffer[0])
3081       {
3082       case '2': sx.prdr_active = FALSE;
3083                 sx.ok = TRUE;
3084                 break;
3085       case '4': errno = ERRNO_DATA4XX;
3086                 addrlist->more_errno |=
3087                   ((sx.buffer[1] - '0')*10 + sx.buffer[2] - '0') << 8;
3088                 break;
3089       }
3090     }
3091   else
3092 #endif
3093
3094   /* For non-PRDR SMTP, we now read a single response that applies to the
3095   whole message.  If it is OK, then all the addresses have been delivered. */
3096
3097   if (!sx.lmtp)
3098     {
3099     sx.ok = smtp_read_response(&sx.inblock, sx.buffer, sizeof(sx.buffer), '2',
3100       sx.ob->final_timeout);
3101     if (!sx.ok && errno == 0 && sx.buffer[0] == '4')
3102       {
3103       errno = ERRNO_DATA4XX;
3104       addrlist->more_errno |= ((sx.buffer[1] - '0')*10 + sx.buffer[2] - '0') << 8;
3105       }
3106     }
3107
3108   /* For LMTP, we get back a response for every RCPT command that we sent;
3109   some may be accepted and some rejected. For those that get a response, their
3110   status is fixed; any that are accepted have been handed over, even if later
3111   responses crash - at least, that's how I read RFC 2033.
3112
3113   If all went well, mark the recipient addresses as completed, record which
3114   host/IPaddress they were delivered to, and cut out RSET when sending another
3115   message down the same channel. Write the completed addresses to the journal
3116   now so that they are recorded in case there is a crash of hardware or
3117   software before the spool gets updated. Also record the final SMTP
3118   confirmation if needed (for SMTP only). */
3119
3120   if (sx.ok)
3121     {
3122     int flag = '=';
3123     struct timeval delivery_time;
3124     int len;
3125     uschar * conf = NULL;
3126
3127     timesince(&delivery_time, &start_delivery_time);
3128     sx.send_rset = FALSE;
3129     pipelining_active = FALSE;
3130
3131     /* Set up confirmation if needed - applies only to SMTP */
3132
3133     if (
3134 #ifdef DISABLE_EVENT
3135           LOGGING(smtp_confirmation) &&
3136 #endif
3137           !sx.lmtp
3138        )
3139       {
3140       const uschar *s = string_printing(sx.buffer);
3141       /* deconst cast ok here as string_printing was checked to have alloc'n'copied */
3142       conf = (s == sx.buffer)? US string_copy(s) : US s;
3143       }
3144
3145     /* Process all transported addresses - for LMTP or PRDR, read a status for
3146     each one. */
3147
3148     for (addr = addrlist; addr != sx.first_addr; addr = addr->next)
3149       {
3150       if (addr->transport_return != PENDING_OK) continue;
3151
3152       /* LMTP - if the response fails badly (e.g. timeout), use it for all the
3153       remaining addresses. Otherwise, it's a return code for just the one
3154       address. For temporary errors, add a retry item for the address so that
3155       it doesn't get tried again too soon. */
3156
3157 #ifndef DISABLE_PRDR
3158       if (sx.lmtp || sx.prdr_active)
3159 #else
3160       if (sx.lmtp)
3161 #endif
3162         {
3163         if (!smtp_read_response(&sx.inblock, sx.buffer, sizeof(sx.buffer), '2',
3164             sx.ob->final_timeout))
3165           {
3166           if (errno != 0 || sx.buffer[0] == 0) goto RESPONSE_FAILED;
3167           addr->message = string_sprintf(
3168 #ifndef DISABLE_PRDR
3169             "%s error after %s: %s", sx.prdr_active ? "PRDR":"LMTP",
3170 #else
3171             "LMTP error after %s: %s",
3172 #endif
3173             data_command, string_printing(sx.buffer));
3174           setflag(addr, af_pass_message);   /* Allow message to go to user */
3175           if (sx.buffer[0] == '5')
3176             addr->transport_return = FAIL;
3177           else
3178             {
3179             errno = ERRNO_DATA4XX;
3180             addr->more_errno |= ((sx.buffer[1] - '0')*10 + sx.buffer[2] - '0') << 8;
3181             addr->transport_return = DEFER;
3182 #ifndef DISABLE_PRDR
3183             if (!sx.prdr_active)
3184 #endif
3185               retry_add_item(addr, addr->address_retry_key, 0);
3186             }
3187           continue;
3188           }
3189         sx.completed_addr = TRUE;   /* NOW we can set this flag */
3190         if (LOGGING(smtp_confirmation))
3191           {
3192           const uschar *s = string_printing(sx.buffer);
3193           /* deconst cast ok here as string_printing was checked to have alloc'n'copied */
3194           conf = (s == sx.buffer) ? US string_copy(s) : US s;
3195           }
3196         }
3197
3198       /* SMTP, or success return from LMTP for this address. Pass back the
3199       actual host that was used. */
3200
3201       addr->transport_return = OK;
3202       addr->more_errno = delivery_time.tv_sec;
3203       addr->delivery_usec = delivery_time.tv_usec;
3204       addr->host_used = host;
3205       addr->special_action = flag;
3206       addr->message = conf;
3207 #ifndef DISABLE_PRDR
3208       if (sx.prdr_active) setflag(addr, af_prdr_used);
3209 #endif
3210       if (sx.peer_offered & OPTION_CHUNKING) setflag(addr, af_chunking_used);
3211       flag = '-';
3212
3213 #ifndef DISABLE_PRDR
3214       if (!sx.prdr_active)
3215 #endif
3216         {
3217         /* Update the journal. For homonymic addresses, use the base address plus
3218         the transport name. See lots of comments in deliver.c about the reasons
3219         for the complications when homonyms are involved. Just carry on after
3220         write error, as it may prove possible to update the spool file later. */
3221
3222         if (testflag(addr, af_homonym))
3223           sprintf(CS sx.buffer, "%.500s/%s\n", addr->unique + 3, tblock->name);
3224         else
3225           sprintf(CS sx.buffer, "%.500s\n", addr->unique);
3226
3227         DEBUG(D_deliver) debug_printf("S:journalling %s\n", sx.buffer);
3228         len = Ustrlen(CS sx.buffer);
3229         if (write(journal_fd, sx.buffer, len) != len)
3230           log_write(0, LOG_MAIN|LOG_PANIC, "failed to write journal for "
3231             "%s: %s", sx.buffer, strerror(errno));
3232         }
3233       }
3234
3235 #ifndef DISABLE_PRDR
3236       if (sx.prdr_active)
3237         {
3238         const uschar * overall_message;
3239
3240         /* PRDR - get the final, overall response.  For any non-success
3241         upgrade all the address statuses. */
3242
3243         sx.ok = smtp_read_response(&sx.inblock, sx.buffer, sizeof(sx.buffer), '2',
3244           sx.ob->final_timeout);
3245         if (!sx.ok)
3246           {
3247           if(errno == 0 && sx.buffer[0] == '4')
3248             {
3249             errno = ERRNO_DATA4XX;
3250             addrlist->more_errno |= ((sx.buffer[1] - '0')*10 + sx.buffer[2] - '0') << 8;
3251             }
3252           for (addr = addrlist; addr != sx.first_addr; addr = addr->next)
3253             if (sx.buffer[0] == '5' || addr->transport_return == OK)
3254               addr->transport_return = PENDING_OK; /* allow set_errno action */
3255           goto RESPONSE_FAILED;
3256           }
3257
3258         /* Append the overall response to the individual PRDR response for logging
3259         and update the journal, or setup retry. */
3260
3261         overall_message = string_printing(sx.buffer);
3262         for (addr = addrlist; addr != sx.first_addr; addr = addr->next)
3263           if (addr->transport_return == OK)
3264             addr->message = string_sprintf("%s\\n%s", addr->message, overall_message);
3265
3266         for (addr = addrlist; addr != sx.first_addr; addr = addr->next)
3267           if (addr->transport_return == OK)
3268             {
3269             if (testflag(addr, af_homonym))
3270               sprintf(CS sx.buffer, "%.500s/%s\n", addr->unique + 3, tblock->name);
3271             else
3272               sprintf(CS sx.buffer, "%.500s\n", addr->unique);
3273
3274             DEBUG(D_deliver) debug_printf("journalling(PRDR) %s\n", sx.buffer);
3275             len = Ustrlen(CS sx.buffer);
3276             if (write(journal_fd, sx.buffer, len) != len)
3277               log_write(0, LOG_MAIN|LOG_PANIC, "failed to write journal for "
3278                 "%s: %s", sx.buffer, strerror(errno));
3279             }
3280           else if (addr->transport_return == DEFER)
3281             retry_add_item(addr, addr->address_retry_key, -2);
3282         }
3283 #endif
3284
3285     /* Ensure the journal file is pushed out to disk. */
3286
3287     if (EXIMfsync(journal_fd) < 0)
3288       log_write(0, LOG_MAIN|LOG_PANIC, "failed to fsync journal: %s",
3289         strerror(errno));
3290     }
3291   }
3292
3293
3294 /* Handle general (not specific to one address) failures here. The value of ok
3295 is used to skip over this code on the falling through case. A timeout causes a
3296 deferral. Other errors may defer or fail according to the response code, and
3297 may set up a special errno value, e.g. after connection chopped, which is
3298 assumed if errno == 0 and there is no text in the buffer. If control reaches
3299 here during the setting up phase (i.e. before MAIL FROM) then always defer, as
3300 the problem is not related to this specific message. */
3301
3302 if (!sx.ok)
3303   {
3304   int code, set_rc;
3305   uschar * set_message;
3306
3307   RESPONSE_FAILED:
3308     {
3309     save_errno = errno;
3310     message = NULL;
3311     sx.send_quit = check_response(host, &save_errno, addrlist->more_errno,
3312       sx.buffer, &code, &message, &pass_message);
3313     goto FAILED;
3314     }
3315
3316   SEND_FAILED:
3317     {
3318     save_errno = errno;
3319     code = '4';
3320     message = string_sprintf("send() to %s [%s] failed: %s",
3321       host->name, host->address, message ? message : US strerror(save_errno));
3322     sx.send_quit = FALSE;
3323     goto FAILED;
3324     }
3325
3326   FAILED:
3327     {
3328     BOOL message_error;
3329
3330     sx.ok = FALSE;                /* For when reached by GOTO */
3331     set_message = message;
3332
3333   /* We want to handle timeouts after MAIL or "." and loss of connection after
3334   "." specially. They can indicate a problem with the sender address or with
3335   the contents of the message rather than a real error on the connection. These
3336   cases are treated in the same way as a 4xx response. This next bit of code
3337   does the classification. */
3338
3339     switch(save_errno)
3340       {
3341       case 0:
3342       case ERRNO_MAIL4XX:
3343       case ERRNO_DATA4XX:
3344         message_error = TRUE;
3345         break;
3346
3347       case ETIMEDOUT:
3348         message_error = Ustrncmp(smtp_command,"MAIL",4) == 0 ||
3349                         Ustrncmp(smtp_command,"end ",4) == 0;
3350         break;
3351
3352       case ERRNO_SMTPCLOSED:
3353         message_error = Ustrncmp(smtp_command,"end ",4) == 0;
3354         break;
3355
3356       default:
3357         message_error = FALSE;
3358         break;
3359       }
3360
3361     /* Handle the cases that are treated as message errors. These are:
3362
3363       (a) negative response or timeout after MAIL
3364       (b) negative response after DATA
3365       (c) negative response or timeout or dropped connection after "."
3366       (d) utf8 support required and not offered
3367
3368     It won't be a negative response or timeout after RCPT, as that is dealt
3369     with separately above. The action in all cases is to set an appropriate
3370     error code for all the addresses, but to leave yield set to OK because the
3371     host itself has not failed. Of course, it might in practice have failed
3372     when we've had a timeout, but if so, we'll discover that at the next
3373     delivery attempt. For a temporary error, set the message_defer flag, and
3374     write to the logs for information if this is not the last host. The error
3375     for the last host will be logged as part of the address's log line. */
3376
3377     if (message_error)
3378       {
3379       if (mua_wrapper) code = '5';  /* Force hard failure in wrapper mode */
3380
3381       /* If there's an errno, the message contains just the identity of
3382       the host. */
3383
3384       if (code == '5')
3385         set_rc = FAIL;
3386       else              /* Anything other than 5 is treated as temporary */
3387         {
3388         set_rc = DEFER;
3389         if (save_errno > 0)
3390           message = US string_sprintf("%s: %s", message, strerror(save_errno));
3391
3392         write_logs(host, message, sx.first_addr ? sx.first_addr->basic_errno : 0);
3393
3394         *message_defer = TRUE;
3395         }
3396       }
3397
3398     /* Otherwise, we have an I/O error or a timeout other than after MAIL or
3399     ".", or some other transportation error. We defer all addresses and yield
3400     DEFER, except for the case of failed add_headers expansion, or a transport
3401     filter failure, when the yield should be ERROR, to stop it trying other
3402     hosts. */
3403
3404     else
3405       {
3406       set_rc = DEFER;
3407       yield = (save_errno == ERRNO_CHHEADER_FAIL ||
3408                save_errno == ERRNO_FILTER_FAIL)? ERROR : DEFER;
3409       }
3410     }
3411
3412   set_errno(addrlist, save_errno, set_message, set_rc, pass_message, host
3413 #ifdef EXPERIMENTAL_DSN_INFO
3414             , sx.smtp_greeting, sx.helo_response
3415 #endif
3416             );
3417   }
3418
3419
3420 /* If all has gone well, send_quit will be set TRUE, implying we can end the
3421 SMTP session tidily. However, if there were too many addresses to send in one
3422 message (indicated by first_addr being non-NULL) we want to carry on with the
3423 rest of them. Also, it is desirable to send more than one message down the SMTP
3424 connection if there are several waiting, provided we haven't already sent so
3425 many as to hit the configured limit. The function transport_check_waiting looks
3426 for a waiting message and returns its id. Then transport_pass_socket tries to
3427 set up a continued delivery by passing the socket on to another process. The
3428 variable send_rset is FALSE if a message has just been successfully transfered.
3429
3430 If we are already sending down a continued channel, there may be further
3431 addresses not yet delivered that are aimed at the same host, but which have not
3432 been passed in this run of the transport. In this case, continue_more will be
3433 true, and all we should do is send RSET if necessary, and return, leaving the
3434 channel open.
3435
3436 However, if no address was disposed of, i.e. all addresses got 4xx errors, we
3437 do not want to continue with other messages down the same channel, because that
3438 can lead to looping between two or more messages, all with the same,
3439 temporarily failing address(es). [The retry information isn't updated yet, so
3440 new processes keep on trying.] We probably also don't want to try more of this
3441 message's addresses either.
3442
3443 If we have started a TLS session, we have to end it before passing the
3444 connection to a new process. However, not all servers can handle this (Exim
3445 can), so we do not pass such a connection on if the host matches
3446 hosts_nopass_tls. */
3447
3448 DEBUG(D_transport)
3449   debug_printf("ok=%d send_quit=%d send_rset=%d continue_more=%d "
3450     "yield=%d first_address is %sNULL\n", sx.ok, sx.send_quit,
3451     sx.send_rset, continue_more, yield, sx.first_addr ? "not " : "");
3452
3453 if (sx.completed_addr && sx.ok && sx.send_quit)
3454   {
3455   BOOL more;
3456   smtp_compare_t t_compare;
3457
3458   t_compare.tblock = tblock;
3459   t_compare.current_sender_address = sender_address;
3460
3461   if (  sx.first_addr != NULL
3462      || continue_more
3463      || (
3464 #ifdef SUPPORT_TLS
3465            (  tls_out.active < 0  &&  !continue_proxy_cipher
3466            || verify_check_given_host(&sx.ob->hosts_nopass_tls, host) != OK
3467            )
3468         &&
3469 #endif
3470            transport_check_waiting(tblock->name, host->name,
3471              tblock->connection_max_messages, new_message_id, &more,
3472              (oicf)smtp_are_same_identities, (void*)&t_compare)
3473      )  )
3474     {
3475     uschar *msg;
3476     BOOL pass_message;
3477
3478     if (sx.send_rset)
3479       if (! (sx.ok = smtp_write_command(&sx.outblock, SCMD_FLUSH, "RSET\r\n") >= 0))
3480         {
3481         msg = US string_sprintf("send() to %s [%s] failed: %s", host->name,
3482           host->address, strerror(errno));
3483         sx.send_quit = FALSE;
3484         }
3485       else if (! (sx.ok = smtp_read_response(&sx.inblock, sx.buffer,
3486                   sizeof(sx.buffer), '2', sx.ob->command_timeout)))
3487         {
3488         int code;
3489         sx.send_quit = check_response(host, &errno, 0, sx.buffer, &code, &msg,
3490           &pass_message);
3491         if (!sx.send_quit)
3492           {
3493           DEBUG(D_transport) debug_printf("H=%s [%s] %s\n",
3494             host->name, host->address, msg);
3495           }
3496         }
3497
3498     /* Either RSET was not needed, or it succeeded */
3499
3500     if (sx.ok)
3501       {
3502       int pfd[2];
3503       int socket_fd = sx.inblock.sock;
3504
3505
3506       if (sx.first_addr != NULL)         /* More addresses still to be sent */
3507         {                                /*   in this run of the transport */
3508         continue_sequence++;             /* Causes * in logging */
3509         goto SEND_MESSAGE;
3510         }
3511
3512       /* Unless caller said it already has more messages listed for this host,
3513       pass the connection on to a new Exim process (below, the call to
3514       transport_pass_socket).  If the caller has more ready, just return with
3515       the connection still open. */
3516
3517 #ifdef SUPPORT_TLS
3518       if (tls_out.active >= 0)
3519         if (  continue_more
3520            || verify_check_given_host(&sx.ob->hosts_noproxy_tls, host) == OK)
3521           {
3522           /* Before passing the socket on, or returning to caller with it still
3523           open, we must shut down TLS.  Not all MTAs allow for the continuation
3524           of the SMTP session when TLS is shut down. We test for this by sending
3525           a new EHLO. If we don't get a good response, we don't attempt to pass
3526           the socket on. */
3527
3528           tls_close(FALSE, TLS_SHUTDOWN_WAIT);
3529           smtp_peer_options = smtp_peer_options_wrap;
3530           sx.ok = !sx.smtps
3531             && smtp_write_command(&sx.outblock, SCMD_FLUSH,
3532                                       "EHLO %s\r\n", sx.helo_data) >= 0
3533             && smtp_read_response(&sx.inblock, sx.buffer, sizeof(sx.buffer),
3534                                       '2', sx.ob->command_timeout);
3535
3536           if (sx.ok && continue_more)
3537             return yield;               /* More addresses for another run */
3538           }
3539         else
3540           {
3541           /* Set up a pipe for proxying TLS for the new transport process */
3542
3543           smtp_peer_options |= OPTION_TLS;
3544           if (sx.ok = (socketpair(AF_UNIX, SOCK_STREAM, 0, pfd) == 0))
3545             socket_fd = pfd[1];
3546           else
3547             set_errno(sx.first_addr, errno, US"internal allocation problem",
3548                     DEFER, FALSE, host
3549 # ifdef EXPERIMENTAL_DSN_INFO
3550                     , sx.smtp_greeting, sx.helo_response
3551 # endif
3552                     );
3553           }
3554       else
3555 #endif
3556         if (continue_more)
3557           return yield;                 /* More addresses for another run */
3558
3559       /* If the socket is successfully passed, we mustn't send QUIT (or
3560       indeed anything!) from here. */
3561
3562 /*XXX DSN_INFO: assume likely to do new HELO; but for greet we'll want to
3563 propagate it from the initial
3564 */
3565       if (sx.ok && transport_pass_socket(tblock->name, host->name,
3566             host->address, new_message_id, socket_fd))
3567         {
3568         sx.send_quit = FALSE;
3569
3570         /* We have passed the client socket to a fresh transport process.
3571         If TLS is still active, we need to proxy it for the transport we
3572         just passed the baton to.  Fork a child to to do it, and return to
3573         get logging done asap.  Which way to place the work makes assumptions
3574         about post-fork prioritisation which may not hold on all platforms. */
3575 #ifdef SUPPORT_TLS
3576         if (tls_out.active >= 0)
3577           {
3578           int pid = fork();
3579           if (pid == 0)         /* child; fork again to disconnect totally */
3580             {
3581             if (running_in_test_harness) millisleep(100); /* let parent debug out */
3582             /* does not return */
3583             smtp_proxy_tls(sx.buffer, sizeof(sx.buffer), pfd,
3584                             sx.ob->command_timeout);
3585             }
3586
3587           if (pid > 0)          /* parent */
3588             {
3589             DEBUG(D_transport) debug_printf("proxy-proc inter-pid %d\n", pid);
3590             close(pfd[0]);
3591             /* tidy the inter-proc to disconn the proxy proc */
3592             waitpid(pid, NULL, 0);
3593             tls_close(FALSE, TLS_NO_SHUTDOWN);
3594             (void)close(sx.inblock.sock);
3595             continue_transport = NULL;
3596             continue_hostname = NULL;
3597             return yield;
3598             }
3599           log_write(0, LOG_PANIC_DIE, "fork failed");
3600           }
3601 #endif
3602         }
3603       }
3604
3605     /* If RSET failed and there are addresses left, they get deferred. */
3606     else
3607       set_errno(sx.first_addr, errno, msg, DEFER, FALSE, host
3608 #ifdef EXPERIMENTAL_DSN_INFO
3609                   , sx.smtp_greeting, sx.helo_response
3610 #endif
3611                   );
3612     }
3613   }
3614
3615 /* End off tidily with QUIT unless the connection has died or the socket has
3616 been passed to another process. There has been discussion on the net about what
3617 to do after sending QUIT. The wording of the RFC suggests that it is necessary
3618 to wait for a response, but on the other hand, there isn't anything one can do
3619 with an error response, other than log it. Exim used to do that. However,
3620 further discussion suggested that it is positively advantageous not to wait for
3621 the response, but to close the session immediately. This is supposed to move
3622 the TCP/IP TIME_WAIT state from the server to the client, thereby removing some
3623 load from the server. (Hosts that are both servers and clients may not see much
3624 difference, of course.) Further discussion indicated that this was safe to do
3625 on Unix systems which have decent implementations of TCP/IP that leave the
3626 connection around for a while (TIME_WAIT) after the application has gone away.
3627 This enables the response sent by the server to be properly ACKed rather than
3628 timed out, as can happen on broken TCP/IP implementations on other OS.
3629
3630 This change is being made on 31-Jul-98. After over a year of trouble-free
3631 operation, the old commented-out code was removed on 17-Sep-99. */
3632
3633 SEND_QUIT:
3634 if (sx.send_quit) (void)smtp_write_command(&sx.outblock, SCMD_FLUSH, "QUIT\r\n");
3635
3636 END_OFF:
3637
3638 #ifdef SUPPORT_TLS
3639 tls_close(FALSE, TLS_SHUTDOWN_NOWAIT);
3640 #endif
3641
3642 /* Close the socket, and return the appropriate value, first setting
3643 works because the NULL setting is passed back to the calling process, and
3644 remote_max_parallel is forced to 1 when delivering over an existing connection,
3645
3646 If all went well and continue_more is set, we shouldn't actually get here if
3647 there are further addresses, as the return above will be taken. However,
3648 writing RSET might have failed, or there may be other addresses whose hosts are
3649 specified in the transports, and therefore not visible at top level, in which
3650 case continue_more won't get set. */
3651
3652 HDEBUG(D_transport|D_acl|D_v) debug_printf_indent("  SMTP(close)>>\n");
3653 if (sx.send_quit)
3654   {
3655   shutdown(sx.outblock.sock, SHUT_WR);
3656   if (fcntl(sx.inblock.sock, F_SETFL, O_NONBLOCK) == 0)
3657     for (rc = 16; read(sx.inblock.sock, sx.inbuffer, sizeof(sx.inbuffer)) > 0 && rc > 0;)
3658       rc--;                             /* drain socket */
3659   }
3660 (void)close(sx.inblock.sock);
3661
3662 #ifndef DISABLE_EVENT
3663 (void) event_raise(tblock->event_action, US"tcp:close", NULL);
3664 #endif
3665
3666 continue_transport = NULL;
3667 continue_hostname = NULL;
3668 return yield;
3669 }
3670
3671
3672
3673
3674 /*************************************************
3675 *              Closedown entry point             *
3676 *************************************************/
3677
3678 /* This function is called when exim is passed an open smtp channel
3679 from another incarnation, but the message which it has been asked
3680 to deliver no longer exists. The channel is on stdin.
3681
3682 We might do fancy things like looking for another message to send down
3683 the channel, but if the one we sought has gone, it has probably been
3684 delivered by some other process that itself will seek further messages,
3685 so just close down our connection.
3686
3687 Argument:   pointer to the transport instance block
3688 Returns:    nothing
3689 */
3690
3691 void
3692 smtp_transport_closedown(transport_instance *tblock)
3693 {
3694 smtp_transport_options_block *ob =
3695   (smtp_transport_options_block *)tblock->options_block;
3696 smtp_inblock inblock;
3697 smtp_outblock outblock;
3698 uschar buffer[256];
3699 uschar inbuffer[4096];
3700 uschar outbuffer[16];
3701
3702 inblock.sock = fileno(stdin);
3703 inblock.buffer = inbuffer;
3704 inblock.buffersize = sizeof(inbuffer);
3705 inblock.ptr = inbuffer;
3706 inblock.ptrend = inbuffer;
3707
3708 outblock.sock = inblock.sock;
3709 outblock.buffersize = sizeof(outbuffer);
3710 outblock.buffer = outbuffer;
3711 outblock.ptr = outbuffer;
3712 outblock.cmd_count = 0;
3713 outblock.authenticating = FALSE;
3714
3715 (void)smtp_write_command(&outblock, SCMD_FLUSH, "QUIT\r\n");
3716 (void)smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
3717   ob->command_timeout);
3718 (void)close(inblock.sock);
3719 }
3720
3721
3722
3723 /*************************************************
3724 *            Prepare addresses for delivery      *
3725 *************************************************/
3726
3727 /* This function is called to flush out error settings from previous delivery
3728 attempts to other hosts. It also records whether we got here via an MX record
3729 or not in the more_errno field of the address. We are interested only in
3730 addresses that are still marked DEFER - others may have got delivered to a
3731 previously considered IP address. Set their status to PENDING_DEFER to indicate
3732 which ones are relevant this time.
3733
3734 Arguments:
3735   addrlist     the list of addresses
3736   host         the host we are delivering to
3737
3738 Returns:       the first address for this delivery
3739 */
3740
3741 static address_item *
3742 prepare_addresses(address_item *addrlist, host_item *host)
3743 {
3744 address_item *first_addr = NULL;
3745 address_item *addr;
3746 for (addr = addrlist; addr; addr = addr->next)
3747   if (addr->transport_return == DEFER)
3748     {
3749     if (!first_addr) first_addr = addr;
3750     addr->transport_return = PENDING_DEFER;
3751     addr->basic_errno = 0;
3752     addr->more_errno = (host->mx >= 0)? 'M' : 'A';
3753     addr->message = NULL;
3754 #ifdef SUPPORT_TLS
3755     addr->cipher = NULL;
3756     addr->ourcert = NULL;
3757     addr->peercert = NULL;
3758     addr->peerdn = NULL;
3759     addr->ocsp = OCSP_NOT_REQ;
3760 #endif
3761 #ifdef EXPERIMENTAL_DSN_INFO
3762     addr->smtp_greeting = NULL;
3763     addr->helo_response = NULL;
3764 #endif
3765     }
3766 return first_addr;
3767 }
3768
3769
3770
3771 /*************************************************
3772 *              Main entry point                  *
3773 *************************************************/
3774
3775 /* See local README for interface details. As this is a remote transport, it is
3776 given a chain of addresses to be delivered in one connection, if possible. It
3777 always returns TRUE, indicating that each address has its own independent
3778 status set, except if there is a setting up problem, in which case it returns
3779 FALSE. */
3780
3781 BOOL
3782 smtp_transport_entry(
3783   transport_instance *tblock,      /* data for this instantiation */
3784   address_item *addrlist)          /* addresses we are working on */
3785 {
3786 int cutoff_retry;
3787 int defport;
3788 int hosts_defer = 0;
3789 int hosts_fail  = 0;
3790 int hosts_looked_up = 0;
3791 int hosts_retry = 0;
3792 int hosts_serial = 0;
3793 int hosts_total = 0;
3794 int total_hosts_tried = 0;
3795 address_item *addr;
3796 BOOL expired = TRUE;
3797 uschar *expanded_hosts = NULL;
3798 uschar *pistring;
3799 uschar *tid = string_sprintf("%s transport", tblock->name);
3800 smtp_transport_options_block *ob =
3801   (smtp_transport_options_block *)(tblock->options_block);
3802 host_item *hostlist = addrlist->host_list;
3803 host_item *host;
3804
3805 DEBUG(D_transport)
3806   {
3807   debug_printf("%s transport entered\n", tblock->name);
3808   for (addr = addrlist; addr; addr = addr->next)
3809     debug_printf("  %s\n", addr->address);
3810   if (hostlist)
3811     {
3812     debug_printf("hostlist:\n");
3813     for (host = hostlist; host; host = host->next)
3814       debug_printf("  '%s' IP %s port %d\n", host->name, host->address, host->port);
3815     }
3816   if (continue_hostname)
3817     debug_printf("already connected to %s [%s] (on fd %d)\n",
3818       continue_hostname, continue_host_address,
3819       cutthrough.fd >= 0 ? cutthrough.fd : 0);
3820   }
3821
3822 /* Set the flag requesting that these hosts be added to the waiting
3823 database if the delivery fails temporarily or if we are running with
3824 queue_smtp or a 2-stage queue run. This gets unset for certain
3825 kinds of error, typically those that are specific to the message. */
3826
3827 update_waiting =  TRUE;
3828
3829 /* If a host list is not defined for the addresses - they must all have the
3830 same one in order to be passed to a single transport - or if the transport has
3831 a host list with hosts_override set, use the host list supplied with the
3832 transport. It is an error for this not to exist. */
3833
3834 if (!hostlist || (ob->hosts_override && ob->hosts))
3835   {
3836   if (!ob->hosts)
3837     {
3838     addrlist->message = string_sprintf("%s transport called with no hosts set",
3839       tblock->name);
3840     addrlist->transport_return = PANIC;
3841     return FALSE;   /* Only top address has status */
3842     }
3843
3844   DEBUG(D_transport) debug_printf("using the transport's hosts: %s\n",
3845     ob->hosts);
3846
3847   /* If the transport's host list contains no '$' characters, and we are not
3848   randomizing, it is fixed and therefore a chain of hosts can be built once
3849   and for all, and remembered for subsequent use by other calls to this
3850   transport. If, on the other hand, the host list does contain '$', or we are
3851   randomizing its order, we have to rebuild it each time. In the fixed case,
3852   as the hosts string will never be used again, it doesn't matter that we
3853   replace all the : characters with zeros. */
3854
3855   if (!ob->hostlist)
3856     {
3857     uschar *s = ob->hosts;
3858
3859     if (Ustrchr(s, '$') != NULL)
3860       {
3861       if (!(expanded_hosts = expand_string(s)))
3862         {
3863         addrlist->message = string_sprintf("failed to expand list of hosts "
3864           "\"%s\" in %s transport: %s", s, tblock->name, expand_string_message);
3865         addrlist->transport_return = search_find_defer ? DEFER : PANIC;
3866         return FALSE;     /* Only top address has status */
3867         }
3868       DEBUG(D_transport) debug_printf("expanded list of hosts \"%s\" to "
3869         "\"%s\"\n", s, expanded_hosts);
3870       s = expanded_hosts;
3871       }
3872     else
3873       if (ob->hosts_randomize) s = expanded_hosts = string_copy(s);
3874
3875     host_build_hostlist(&hostlist, s, ob->hosts_randomize);
3876
3877     /* Check that the expansion yielded something useful. */
3878     if (!hostlist)
3879       {
3880       addrlist->message =
3881         string_sprintf("%s transport has empty hosts setting", tblock->name);
3882       addrlist->transport_return = PANIC;
3883       return FALSE;   /* Only top address has status */
3884       }
3885
3886     /* If there was no expansion of hosts, save the host list for
3887     next time. */
3888
3889     if (!expanded_hosts) ob->hostlist = hostlist;
3890     }
3891
3892   /* This is not the first time this transport has been run in this delivery;
3893   the host list was built previously. */
3894
3895   else
3896     hostlist = ob->hostlist;
3897   }
3898
3899 /* The host list was supplied with the address. If hosts_randomize is set, we
3900 must sort it into a random order if it did not come from MX records and has not
3901 already been randomized (but don't bother if continuing down an existing
3902 connection). */
3903
3904 else if (ob->hosts_randomize && hostlist->mx == MX_NONE && !continue_hostname)
3905   {
3906   host_item *newlist = NULL;
3907   while (hostlist)
3908     {
3909     host_item *h = hostlist;
3910     hostlist = hostlist->next;
3911
3912     h->sort_key = random_number(100);
3913
3914     if (!newlist)
3915       {
3916       h->next = NULL;
3917       newlist = h;
3918       }
3919     else if (h->sort_key < newlist->sort_key)
3920       {
3921       h->next = newlist;
3922       newlist = h;
3923       }
3924     else
3925       {
3926       host_item *hh = newlist;
3927       while (hh->next)
3928         {
3929         if (h->sort_key < hh->next->sort_key) break;
3930         hh = hh->next;
3931         }
3932       h->next = hh->next;
3933       hh->next = h;
3934       }
3935     }
3936
3937   hostlist = addrlist->host_list = newlist;
3938   }
3939
3940 /* Sort out the default port.  */
3941
3942 if (!smtp_get_port(ob->port, addrlist, &defport, tid)) return FALSE;
3943
3944 /* For each host-plus-IP-address on the list:
3945
3946 .  If this is a continued delivery and the host isn't the one with the
3947    current connection, skip.
3948
3949 .  If the status is unusable (i.e. previously failed or retry checked), skip.
3950
3951 .  If no IP address set, get the address, either by turning the name into
3952    an address, calling gethostbyname if gethostbyname is on, or by calling
3953    the DNS. The DNS may yield multiple addresses, in which case insert the
3954    extra ones into the list.
3955
3956 .  Get the retry data if not previously obtained for this address and set the
3957    field which remembers the state of this address. Skip if the retry time is
3958    not reached. If not, remember whether retry data was found. The retry string
3959    contains both the name and the IP address.
3960
3961 .  Scan the list of addresses and mark those whose status is DEFER as
3962    PENDING_DEFER. These are the only ones that will be processed in this cycle
3963    of the hosts loop.
3964
3965 .  Make a delivery attempt - addresses marked PENDING_DEFER will be tried.
3966    Some addresses may be successfully delivered, others may fail, and yet
3967    others may get temporary errors and so get marked DEFER.
3968
3969 .  The return from the delivery attempt is OK if a connection was made and a
3970    valid SMTP dialogue was completed. Otherwise it is DEFER.
3971
3972 .  If OK, add a "remove" retry item for this host/IPaddress, if any.
3973
3974 .  If fail to connect, or other defer state, add a retry item.
3975
3976 .  If there are any addresses whose status is still DEFER, carry on to the
3977    next host/IPaddress, unless we have tried the number of hosts given
3978    by hosts_max_try or hosts_max_try_hardlimit; otherwise return. Note that
3979    there is some fancy logic for hosts_max_try that means its limit can be
3980    overstepped in some circumstances.
3981
3982 If we get to the end of the list, all hosts have deferred at least one address,
3983 or not reached their retry times. If delay_after_cutoff is unset, it requests a
3984 delivery attempt to those hosts whose last try was before the arrival time of
3985 the current message. To cope with this, we have to go round the loop a second
3986 time. After that, set the status and error data for any addresses that haven't
3987 had it set already. */
3988
3989 for (cutoff_retry = 0;
3990      expired && cutoff_retry < (ob->delay_after_cutoff ? 1 : 2);
3991      cutoff_retry++)
3992   {
3993   host_item *nexthost = NULL;
3994   int unexpired_hosts_tried = 0;
3995   BOOL continue_host_tried = FALSE;
3996
3997 retry_non_continued:
3998   for (host = hostlist;
3999           host
4000        && unexpired_hosts_tried < ob->hosts_max_try
4001        && total_hosts_tried < ob->hosts_max_try_hardlimit;
4002        host = nexthost)
4003     {
4004     int rc;
4005     int host_af;
4006     uschar *rs;
4007     BOOL host_is_expired = FALSE;
4008     BOOL message_defer = FALSE;
4009     BOOL some_deferred = FALSE;
4010     address_item *first_addr = NULL;
4011     uschar *interface = NULL;
4012     uschar *retry_host_key = NULL;
4013     uschar *retry_message_key = NULL;
4014     uschar *serialize_key = NULL;
4015
4016     /* Default next host is next host. :-) But this can vary if the
4017     hosts_max_try limit is hit (see below). It may also be reset if a host
4018     address is looked up here (in case the host was multihomed). */
4019
4020     nexthost = host->next;
4021
4022     /* If the address hasn't yet been obtained from the host name, look it up
4023     now, unless the host is already marked as unusable. If it is marked as
4024     unusable, it means that the router was unable to find its IP address (in
4025     the DNS or wherever) OR we are in the 2nd time round the cutoff loop, and
4026     the lookup failed last time. We don't get this far if *all* MX records
4027     point to non-existent hosts; that is treated as a hard error.
4028
4029     We can just skip this host entirely. When the hosts came from the router,
4030     the address will timeout based on the other host(s); when the address is
4031     looked up below, there is an explicit retry record added.
4032
4033     Note that we mustn't skip unusable hosts if the address is not unset; they
4034     may be needed as expired hosts on the 2nd time round the cutoff loop. */
4035
4036     if (!host->address)
4037       {
4038       int new_port, flags;
4039       host_item *hh;
4040
4041       if (host->status >= hstatus_unusable)
4042         {
4043         DEBUG(D_transport) debug_printf("%s has no address and is unusable - skipping\n",
4044           host->name);
4045         continue;
4046         }
4047
4048       DEBUG(D_transport) debug_printf("getting address for %s\n", host->name);
4049
4050       /* The host name is permitted to have an attached port. Find it, and
4051       strip it from the name. Just remember it for now. */
4052
4053       new_port = host_item_get_port(host);
4054
4055       /* Count hosts looked up */
4056
4057       hosts_looked_up++;
4058
4059       /* Find by name if so configured, or if it's an IP address. We don't
4060       just copy the IP address, because we need the test-for-local to happen. */
4061
4062       flags = HOST_FIND_BY_A | HOST_FIND_BY_AAAA;
4063       if (ob->dns_qualify_single) flags |= HOST_FIND_QUALIFY_SINGLE;
4064       if (ob->dns_search_parents) flags |= HOST_FIND_SEARCH_PARENTS;
4065
4066       if (ob->gethostbyname || string_is_ip_address(host->name, NULL) != 0)
4067         rc = host_find_byname(host, NULL, flags, NULL, TRUE);
4068       else
4069         rc = host_find_bydns(host, NULL, flags, NULL, NULL, NULL,
4070           &ob->dnssec,          /* domains for request/require */
4071           NULL, NULL);
4072
4073       /* Update the host (and any additional blocks, resulting from
4074       multihoming) with a host-specific port, if any. */
4075
4076       for (hh = host; hh != nexthost; hh = hh->next) hh->port = new_port;
4077
4078       /* Failure to find the host at this time (usually DNS temporary failure)
4079       is really a kind of routing failure rather than a transport failure.
4080       Therefore we add a retry item of the routing kind, not to stop us trying
4081       to look this name up here again, but to ensure the address gets timed
4082       out if the failures go on long enough. A complete failure at this point
4083       commonly points to a configuration error, but the best action is still
4084       to carry on for the next host. */
4085
4086       if (rc == HOST_FIND_AGAIN || rc == HOST_FIND_SECURITY || rc == HOST_FIND_FAILED)
4087         {
4088         retry_add_item(addrlist, string_sprintf("R:%s", host->name), 0);
4089         expired = FALSE;
4090         if (rc == HOST_FIND_AGAIN) hosts_defer++; else hosts_fail++;
4091         DEBUG(D_transport) debug_printf("rc = %s for %s\n", (rc == HOST_FIND_AGAIN)?
4092           "HOST_FIND_AGAIN" : "HOST_FIND_FAILED", host->name);
4093         host->status = hstatus_unusable;
4094
4095         for (addr = addrlist; addr; addr = addr->next)
4096           {
4097           if (addr->transport_return != DEFER) continue;
4098           addr->basic_errno = ERRNO_UNKNOWNHOST;
4099           addr->message = string_sprintf(
4100             rc == HOST_FIND_SECURITY
4101               ? "lookup of IP address for %s was insecure"
4102               : "failed to lookup IP address for %s",
4103             host->name);
4104           }
4105         continue;
4106         }
4107
4108       /* If the host is actually the local host, we may have a problem, or
4109       there may be some cunning configuration going on. In the problem case,
4110       log things and give up. The default transport status is already DEFER. */
4111
4112       if (rc == HOST_FOUND_LOCAL && !ob->allow_localhost)
4113         {
4114         for (addr = addrlist; addr; addr = addr->next)
4115           {
4116           addr->basic_errno = 0;
4117           addr->message = string_sprintf("%s transport found host %s to be "
4118             "local", tblock->name, host->name);
4119           }
4120         goto END_TRANSPORT;
4121         }
4122       }   /* End of block for IP address lookup */
4123
4124     /* If this is a continued delivery, we are interested only in the host
4125     which matches the name of the existing open channel. The check is put
4126     here after the local host lookup, in case the name gets expanded as a
4127     result of the lookup. Set expired FALSE, to save the outer loop executing
4128     twice. */
4129
4130     if (continue_hostname)
4131       if (  Ustrcmp(continue_hostname, host->name) != 0
4132          || Ustrcmp(continue_host_address, host->address) != 0
4133          )
4134         {
4135         expired = FALSE;
4136         continue;      /* With next host */
4137         }
4138       else
4139         continue_host_tried = TRUE;
4140
4141     /* Reset the default next host in case a multihomed host whose addresses
4142     are not looked up till just above added to the host list. */
4143
4144     nexthost = host->next;
4145
4146     /* If queue_smtp is set (-odqs or the first part of a 2-stage run), or the
4147     domain is in queue_smtp_domains, we don't actually want to attempt any
4148     deliveries. When doing a queue run, queue_smtp_domains is always unset. If
4149     there is a lookup defer in queue_smtp_domains, proceed as if the domain
4150     were not in it. We don't want to hold up all SMTP deliveries! Except when
4151     doing a two-stage queue run, don't do this if forcing. */
4152
4153     if ((!deliver_force || queue_2stage) && (queue_smtp ||
4154         match_isinlist(addrlist->domain,
4155           (const uschar **)&queue_smtp_domains, 0,
4156           &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL) == OK))
4157       {
4158       expired = FALSE;
4159       for (addr = addrlist; addr; addr = addr->next)
4160         if (addr->transport_return == DEFER)
4161           addr->message = US"domain matches queue_smtp_domains, or -odqs set";
4162       continue;      /* With next host */
4163       }
4164
4165     /* Count hosts being considered - purely for an intelligent comment
4166     if none are usable. */
4167
4168     hosts_total++;
4169
4170     /* Set $host and $host address now in case they are needed for the
4171     interface expansion or the serialize_hosts check; they remain set if an
4172     actual delivery happens. */
4173
4174     deliver_host = host->name;
4175     deliver_host_address = host->address;
4176     lookup_dnssec_authenticated = host->dnssec == DS_YES ? US"yes"
4177                                 : host->dnssec == DS_NO ? US"no"
4178                                 : US"";
4179
4180     /* Set up a string for adding to the retry key if the port number is not
4181     the standard SMTP port. A host may have its own port setting that overrides
4182     the default. */
4183
4184     pistring = string_sprintf(":%d", host->port == PORT_NONE
4185       ? defport : host->port);
4186     if (Ustrcmp(pistring, ":25") == 0) pistring = US"";
4187
4188     /* Select IPv4 or IPv6, and choose an outgoing interface. If the interface
4189     string is set, even if constant (as different transports can have different
4190     constant settings), we must add it to the key that is used for retries,
4191     because connections to the same host from a different interface should be
4192     treated separately. */
4193
4194     host_af = Ustrchr(host->address, ':') == NULL ? AF_INET : AF_INET6;
4195     if ((rs = ob->interface) && *rs)
4196       {
4197       if (!smtp_get_interface(rs, host_af, addrlist, &interface, tid))
4198         return FALSE;
4199       pistring = string_sprintf("%s/%s", pistring, interface);
4200       }
4201
4202     /* The first time round the outer loop, check the status of the host by
4203     inspecting the retry data. The second time round, we are interested only
4204     in expired hosts that haven't been tried since this message arrived. */
4205
4206     if (cutoff_retry == 0)
4207       {
4208       BOOL incl_ip;
4209       /* Ensure the status of the address is set by checking retry data if
4210       necessary. There may be host-specific retry data (applicable to all
4211       messages) and also data for retries of a specific message at this host.
4212       If either of these retry records are actually read, the keys used are
4213       returned to save recomputing them later. */
4214
4215       if (exp_bool(addrlist, US"transport", tblock->name, D_transport,
4216                 US"retry_include_ip_address", ob->retry_include_ip_address,
4217                 ob->expand_retry_include_ip_address, &incl_ip) != OK)
4218         continue;       /* with next host */
4219
4220       host_is_expired = retry_check_address(addrlist->domain, host, pistring,
4221         incl_ip, &retry_host_key, &retry_message_key);
4222
4223       DEBUG(D_transport) debug_printf("%s [%s]%s retry-status = %s\n", host->name,
4224         (host->address == NULL)? US"" : host->address, pistring,
4225         (host->status == hstatus_usable)? "usable" :
4226         (host->status == hstatus_unusable)? "unusable" :
4227         (host->status == hstatus_unusable_expired)? "unusable (expired)" : "?");
4228
4229       /* Skip this address if not usable at this time, noting if it wasn't
4230       actually expired, both locally and in the address. */
4231
4232       switch (host->status)
4233         {
4234         case hstatus_unusable:
4235           expired = FALSE;
4236           setflag(addrlist, af_retry_skipped);
4237           /* Fall through */
4238
4239         case hstatus_unusable_expired:
4240           switch (host->why)
4241             {
4242             case hwhy_retry: hosts_retry++; break;
4243             case hwhy_failed:  hosts_fail++; break;
4244             case hwhy_insecure:
4245             case hwhy_deferred: hosts_defer++; break;
4246             }
4247
4248           /* If there was a retry message key, implying that previously there
4249           was a message-specific defer, we don't want to update the list of
4250           messages waiting for these hosts. */
4251
4252           if (retry_message_key) update_waiting = FALSE;
4253           continue;   /* With the next host or IP address */
4254         }
4255       }
4256
4257     /* Second time round the loop: if the address is set but expired, and
4258     the message is newer than the last try, let it through. */
4259
4260     else
4261       {
4262       if (  !host->address
4263          || host->status != hstatus_unusable_expired
4264          || host->last_try > received_time.tv_sec)
4265         continue;
4266       DEBUG(D_transport) debug_printf("trying expired host %s [%s]%s\n",
4267           host->name, host->address, pistring);
4268       host_is_expired = TRUE;
4269       }
4270
4271     /* Setting "expired=FALSE" doesn't actually mean not all hosts are expired;
4272     it remains TRUE only if all hosts are expired and none are actually tried.
4273     */
4274
4275     expired = FALSE;
4276
4277     /* If this host is listed as one to which access must be serialized,
4278     see if another Exim process has a connection to it, and if so, skip
4279     this host. If not, update the database to record our connection to it
4280     and remember this for later deletion. Do not do any of this if we are
4281     sending the message down a pre-existing connection. */
4282
4283     if (  !continue_hostname
4284        && verify_check_given_host(&ob->serialize_hosts, host) == OK)
4285       {
4286       serialize_key = string_sprintf("host-serialize-%s", host->name);
4287       if (!enq_start(serialize_key, 1))
4288         {
4289         DEBUG(D_transport)
4290           debug_printf("skipping host %s because another Exim process "
4291             "is connected to it\n", host->name);
4292         hosts_serial++;
4293         continue;
4294         }
4295       }
4296
4297     /* OK, we have an IP address that is not waiting for its retry time to
4298     arrive (it might be expired) OR (second time round the loop) we have an
4299     expired host that hasn't been tried since the message arrived. Have a go
4300     at delivering the message to it. First prepare the addresses by flushing
4301     out the result of previous attempts, and finding the first address that
4302     is still to be delivered. */
4303
4304     first_addr = prepare_addresses(addrlist, host);
4305
4306     DEBUG(D_transport) debug_printf("delivering %s to %s [%s] (%s%s)\n",
4307       message_id, host->name, host->address, addrlist->address,
4308       addrlist->next ? ", ..." : "");
4309
4310     set_process_info("delivering %s to %s [%s] (%s%s)",
4311       message_id, host->name, host->address, addrlist->address,
4312       addrlist->next ? ", ..." : "");
4313
4314     /* This is not for real; don't do the delivery. If there are
4315     any remaining hosts, list them. */
4316
4317     if (dont_deliver)
4318       {
4319       host_item *host2;
4320       set_errno_nohost(addrlist, 0, NULL, OK, FALSE);
4321       for (addr = addrlist; addr; addr = addr->next)
4322         {
4323         addr->host_used = host;
4324         addr->special_action = '*';
4325         addr->message = US"delivery bypassed by -N option";
4326         }
4327       DEBUG(D_transport)
4328         {
4329         debug_printf("*** delivery by %s transport bypassed by -N option\n"
4330                      "*** host and remaining hosts:\n", tblock->name);
4331         for (host2 = host; host2; host2 = host2->next)
4332           debug_printf("    %s [%s]\n", host2->name,
4333             host2->address ? host2->address : US"unset");
4334         }
4335       rc = OK;
4336       }
4337
4338     /* This is for real. If the host is expired, we don't count it for
4339     hosts_max_retry. This ensures that all hosts must expire before an address
4340     is timed out, unless hosts_max_try_hardlimit (which protects against
4341     lunatic DNS configurations) is reached.
4342
4343     If the host is not expired and we are about to hit the hosts_max_retry
4344     limit, check to see if there is a subsequent hosts with a different MX
4345     value. If so, make that the next host, and don't count this one. This is a
4346     heuristic to make sure that different MXs do get tried. With a normal kind
4347     of retry rule, they would get tried anyway when the earlier hosts were
4348     delayed, but if the domain has a "retry every time" type of rule - as is
4349     often used for the the very large ISPs, that won't happen. */
4350
4351     else
4352       {
4353       host_item * thost;
4354       /* Make a copy of the host if it is local to this invocation
4355        of the transport. */
4356
4357       if (expanded_hosts)
4358         {
4359         thost = store_get(sizeof(host_item));
4360         *thost = *host;
4361         thost->name = string_copy(host->name);
4362         thost->address = string_copy(host->address);
4363         }
4364       else
4365         thost = host;
4366
4367       if (!host_is_expired && ++unexpired_hosts_tried >= ob->hosts_max_try)
4368         {
4369         host_item *h;
4370         DEBUG(D_transport)
4371           debug_printf("hosts_max_try limit reached with this host\n");
4372         for (h = host; h; h = h->next) if (h->mx != host->mx)
4373           {
4374           nexthost = h;
4375           unexpired_hosts_tried--;
4376           DEBUG(D_transport) debug_printf("however, a higher MX host exists "
4377             "and will be tried\n");
4378           break;
4379           }
4380         }
4381
4382       /* Attempt the delivery. */
4383
4384       total_hosts_tried++;
4385       rc = smtp_deliver(addrlist, thost, host_af, defport, interface, tblock,
4386         &message_defer, FALSE);
4387
4388       /* Yield is one of:
4389          OK     => connection made, each address contains its result;
4390                      message_defer is set for message-specific defers (when all
4391                      recipients are marked defer)
4392          DEFER  => there was a non-message-specific delivery problem;
4393          ERROR  => there was a problem setting up the arguments for a filter,
4394                    or there was a problem with expanding added headers
4395       */
4396
4397       /* If the result is not OK, there was a non-message-specific problem.
4398       If the result is DEFER, we need to write to the logs saying what happened
4399       for this particular host, except in the case of authentication and TLS
4400       failures, where the log has already been written. If all hosts defer a
4401       general message is written at the end. */
4402
4403       if (rc == DEFER && first_addr->basic_errno != ERRNO_AUTHFAIL
4404                       && first_addr->basic_errno != ERRNO_TLSFAILURE)
4405         write_logs(host, first_addr->message, first_addr->basic_errno);
4406
4407 #ifndef DISABLE_EVENT
4408       if (rc == DEFER)
4409         deferred_event_raise(first_addr, host);
4410 #endif
4411
4412       /* If STARTTLS was accepted, but there was a failure in setting up the
4413       TLS session (usually a certificate screwup), and the host is not in
4414       hosts_require_tls, and tls_tempfail_tryclear is true, try again, with
4415       TLS forcibly turned off. We have to start from scratch with a new SMTP
4416       connection. That's why the retry is done from here, not from within
4417       smtp_deliver(). [Rejections of STARTTLS itself don't screw up the
4418       session, so the in-clear transmission after those errors, if permitted,
4419       happens inside smtp_deliver().] */
4420
4421 #ifdef SUPPORT_TLS
4422       if (  rc == DEFER
4423          && first_addr->basic_errno == ERRNO_TLSFAILURE
4424          && ob->tls_tempfail_tryclear
4425          && verify_check_given_host(&ob->hosts_require_tls, host) != OK
4426          )
4427         {
4428         log_write(0, LOG_MAIN,
4429           "%s: delivering unencrypted to H=%s [%s] (not in hosts_require_tls)",
4430           first_addr->message, host->name, host->address);
4431         first_addr = prepare_addresses(addrlist, host);
4432         rc = smtp_deliver(addrlist, thost, host_af, defport, interface, tblock,
4433           &message_defer, TRUE);
4434         if (rc == DEFER && first_addr->basic_errno != ERRNO_AUTHFAIL)
4435           write_logs(host, first_addr->message, first_addr->basic_errno);
4436 # ifndef DISABLE_EVENT
4437         if (rc == DEFER)
4438           deferred_event_raise(first_addr, host);
4439 # endif
4440         }
4441 #endif  /*SUPPORT_TLS*/
4442       }
4443
4444     /* Delivery attempt finished */
4445
4446     rs = rc == OK ? US"OK"
4447        : rc == DEFER ? US"DEFER"
4448        : rc == ERROR ? US"ERROR"
4449        : US"?";
4450
4451     set_process_info("delivering %s: just tried %s [%s] for %s%s: result %s",
4452       message_id, host->name, host->address, addrlist->address,
4453       addrlist->next ? " (& others)" : "", rs);
4454
4455     /* Release serialization if set up */
4456
4457     if (serialize_key) enq_end(serialize_key);
4458
4459     /* If the result is DEFER, or if a host retry record is known to exist, we
4460     need to add an item to the retry chain for updating the retry database
4461     at the end of delivery. We only need to add the item to the top address,
4462     of course. Also, if DEFER, we mark the IP address unusable so as to skip it
4463     for any other delivery attempts using the same address. (It is copied into
4464     the unusable tree at the outer level, so even if different address blocks
4465     contain the same address, it still won't get tried again.) */
4466
4467     if (rc == DEFER || retry_host_key)
4468       {
4469       int delete_flag = rc != DEFER ? rf_delete : 0;
4470       if (!retry_host_key)
4471         {
4472         BOOL incl_ip;
4473         if (exp_bool(addrlist, US"transport", tblock->name, D_transport,
4474                   US"retry_include_ip_address", ob->retry_include_ip_address,
4475                   ob->expand_retry_include_ip_address, &incl_ip) != OK)
4476           incl_ip = TRUE;       /* error; use most-specific retry record */
4477
4478         retry_host_key = incl_ip
4479           ? string_sprintf("T:%S:%s%s", host->name, host->address, pistring)
4480           : string_sprintf("T:%S%s", host->name, pistring);
4481         }
4482
4483       /* If a delivery of another message over an existing SMTP connection
4484       yields DEFER, we do NOT set up retry data for the host. This covers the
4485       case when there are delays in routing the addresses in the second message
4486       that are so long that the server times out. This is alleviated by not
4487       routing addresses that previously had routing defers when handling an
4488       existing connection, but even so, this case may occur (e.g. if a
4489       previously happily routed address starts giving routing defers). If the
4490       host is genuinely down, another non-continued message delivery will
4491       notice it soon enough. */
4492
4493       if (delete_flag != 0 || !continue_hostname)
4494         retry_add_item(first_addr, retry_host_key, rf_host | delete_flag);
4495
4496       /* We may have tried an expired host, if its retry time has come; ensure
4497       the status reflects the expiry for the benefit of any other addresses. */
4498
4499       if (rc == DEFER)
4500         {
4501         host->status = host_is_expired
4502           ? hstatus_unusable_expired : hstatus_unusable;
4503         host->why = hwhy_deferred;
4504         }
4505       }
4506
4507     /* If message_defer is set (host was OK, but every recipient got deferred
4508     because of some message-specific problem), or if that had happened
4509     previously so that a message retry key exists, add an appropriate item
4510     to the retry chain. Note that if there was a message defer but now there is
4511     a host defer, the message defer record gets deleted. That seems perfectly
4512     reasonable. Also, stop the message from being remembered as waiting
4513     for specific hosts. */
4514
4515     if (message_defer || retry_message_key)
4516       {
4517       int delete_flag = message_defer ? 0 : rf_delete;
4518       if (!retry_message_key)
4519         {
4520         BOOL incl_ip;
4521         if (exp_bool(addrlist, US"transport", tblock->name, D_transport,
4522                   US"retry_include_ip_address", ob->retry_include_ip_address,
4523                   ob->expand_retry_include_ip_address, &incl_ip) != OK)
4524           incl_ip = TRUE;       /* error; use most-specific retry record */
4525
4526         retry_message_key = incl_ip
4527           ? string_sprintf("T:%S:%s%s:%s", host->name, host->address, pistring,
4528               message_id)
4529           : string_sprintf("T:%S%s:%s", host->name, pistring, message_id);
4530         }
4531       retry_add_item(addrlist, retry_message_key,
4532         rf_message | rf_host | delete_flag);
4533       update_waiting = FALSE;
4534       }
4535
4536     /* Any return other than DEFER (that is, OK or ERROR) means that the
4537     addresses have got their final statuses filled in for this host. In the OK
4538     case, see if any of them are deferred. */
4539
4540     if (rc == OK)
4541       for (addr = addrlist; addr; addr = addr->next)
4542         if (addr->transport_return == DEFER)
4543           {
4544           some_deferred = TRUE;
4545           break;
4546           }
4547
4548     /* If no addresses deferred or the result was ERROR, return. We do this for
4549     ERROR because a failing filter set-up or add_headers expansion is likely to
4550     fail for any host we try. */
4551
4552     if (rc == ERROR || (rc == OK && !some_deferred))
4553       {
4554       DEBUG(D_transport) debug_printf("Leaving %s transport\n", tblock->name);
4555       return TRUE;    /* Each address has its status */
4556       }
4557
4558     /* If the result was DEFER or some individual addresses deferred, let
4559     the loop run to try other hosts with the deferred addresses, except for the
4560     case when we were trying to deliver down an existing channel and failed.
4561     Don't try any other hosts in this case. */
4562
4563     if (continue_hostname) break;
4564
4565     /* If the whole delivery, or some individual addresses, were deferred and
4566     there are more hosts that could be tried, do not count this host towards
4567     the hosts_max_try limit if the age of the message is greater than the
4568     maximum retry time for this host. This means we may try try all hosts,
4569     ignoring the limit, when messages have been around for some time. This is
4570     important because if we don't try all hosts, the address will never time
4571     out. NOTE: this does not apply to hosts_max_try_hardlimit. */
4572
4573     if ((rc == DEFER || some_deferred) && nexthost)
4574       {
4575       BOOL timedout;
4576       retry_config *retry = retry_find_config(host->name, NULL, 0, 0);
4577
4578       if (retry && retry->rules)
4579         {
4580         retry_rule *last_rule;
4581         for (last_rule = retry->rules;
4582              last_rule->next;
4583              last_rule = last_rule->next);
4584         timedout = time(NULL) - received_time.tv_sec > last_rule->timeout;
4585         }
4586       else timedout = TRUE;    /* No rule => timed out */
4587
4588       if (timedout)
4589         {
4590         unexpired_hosts_tried--;
4591         DEBUG(D_transport) debug_printf("temporary delivery error(s) override "
4592           "hosts_max_try (message older than host's retry time)\n");
4593         }
4594       }
4595     }   /* End of loop for trying multiple hosts. */
4596
4597   /* If we failed to find a matching host in the list, for an already-open
4598   connection, just close it and start over with the list.  This can happen
4599   for routing that changes from run to run, or big multi-IP sites with
4600   round-robin DNS. */
4601
4602   if (continue_hostname && !continue_host_tried)
4603     {
4604     int fd = cutthrough.fd >= 0 ? cutthrough.fd : 0;
4605
4606     DEBUG(D_transport) debug_printf("no hosts match already-open connection\n");
4607 #ifdef SUPPORT_TLS
4608     if (tls_out.active == fd)
4609       {
4610       (void) tls_write(FALSE, US"QUIT\r\n", 6, FALSE);
4611       tls_close(FALSE, TLS_SHUTDOWN_NOWAIT);
4612       }
4613     else
4614 #else
4615       (void) write(fd, US"QUIT\r\n", 6);
4616 #endif
4617     (void) close(fd);
4618     cutthrough.fd = -1;
4619     continue_hostname = NULL;
4620     goto retry_non_continued;
4621     }
4622
4623   /* This is the end of the loop that repeats iff expired is TRUE and
4624   ob->delay_after_cutoff is FALSE. The second time round we will
4625   try those hosts that haven't been tried since the message arrived. */
4626
4627   DEBUG(D_transport)
4628     {
4629     debug_printf("all IP addresses skipped or deferred at least one address\n");
4630     if (expired && !ob->delay_after_cutoff && cutoff_retry == 0)
4631       debug_printf("retrying IP addresses not tried since message arrived\n");
4632     }
4633   }
4634
4635
4636 /* Get here if all IP addresses are skipped or defer at least one address. In
4637 MUA wrapper mode, this will happen only for connection or other non-message-
4638 specific failures. Force the delivery status for all addresses to FAIL. */
4639
4640 if (mua_wrapper)
4641   {
4642   for (addr = addrlist; addr; addr = addr->next)
4643     addr->transport_return = FAIL;
4644   goto END_TRANSPORT;
4645   }
4646
4647 /* In the normal, non-wrapper case, add a standard message to each deferred
4648 address if there hasn't been an error, that is, if it hasn't actually been
4649 tried this time. The variable "expired" will be FALSE if any deliveries were
4650 actually tried, or if there was at least one host that was not expired. That
4651 is, it is TRUE only if no deliveries were tried and all hosts were expired. If
4652 a delivery has been tried, an error code will be set, and the failing of the
4653 message is handled by the retry code later.
4654
4655 If queue_smtp is set, or this transport was called to send a subsequent message
4656 down an existing TCP/IP connection, and something caused the host not to be
4657 found, we end up here, but can detect these cases and handle them specially. */
4658
4659 for (addr = addrlist; addr; addr = addr->next)
4660   {
4661   /* If host is not NULL, it means that we stopped processing the host list
4662   because of hosts_max_try or hosts_max_try_hardlimit. In the former case, this
4663   means we need to behave as if some hosts were skipped because their retry
4664   time had not come. Specifically, this prevents the address from timing out.
4665   However, if we have hit hosts_max_try_hardlimit, we want to behave as if all
4666   hosts were tried. */
4667
4668   if (host)
4669     if (total_hosts_tried >= ob->hosts_max_try_hardlimit)
4670       {
4671       DEBUG(D_transport)
4672         debug_printf("hosts_max_try_hardlimit reached: behave as if all "
4673           "hosts were tried\n");
4674       }
4675     else
4676       {
4677       DEBUG(D_transport)
4678         debug_printf("hosts_max_try limit caused some hosts to be skipped\n");
4679       setflag(addr, af_retry_skipped);
4680       }
4681
4682   if (queue_smtp)    /* no deliveries attempted */
4683     {
4684     addr->transport_return = DEFER;
4685     addr->basic_errno = 0;
4686     addr->message = US"SMTP delivery explicitly queued";
4687     }
4688
4689   else if (  addr->transport_return == DEFER
4690           && (addr->basic_errno == ERRNO_UNKNOWNERROR || addr->basic_errno == 0)
4691           && !addr->message
4692           )
4693     {
4694     addr->basic_errno = ERRNO_HRETRY;
4695     if (continue_hostname)
4696       addr->message = US"no host found for existing SMTP connection";
4697     else if (expired)
4698       {
4699       setflag(addr, af_pass_message);   /* This is not a security risk */
4700       addr->message = string_sprintf(
4701         "all hosts%s have been failing for a long time %s",
4702         addr->domain ? string_sprintf(" for '%s'", addr->domain) : US"",
4703         ob->delay_after_cutoff
4704         ? US"(and retry time not reached)"
4705         : US"and were last tried after this message arrived");
4706
4707       /* If we are already using fallback hosts, or there are no fallback hosts
4708       defined, convert the result to FAIL to cause a bounce. */
4709
4710       if (addr->host_list == addr->fallback_hosts || !addr->fallback_hosts)
4711         addr->transport_return = FAIL;
4712       }
4713     else
4714       {
4715       const char * s;
4716       if (hosts_retry == hosts_total)
4717         s = "retry time not reached for any host%s";
4718       else if (hosts_fail == hosts_total)
4719         s = "all host address lookups%s failed permanently";
4720       else if (hosts_defer == hosts_total)
4721         s = "all host address lookups%s failed temporarily";
4722       else if (hosts_serial == hosts_total)
4723         s = "connection limit reached for all hosts%s";
4724       else if (hosts_fail+hosts_defer == hosts_total)
4725         s = "all host address lookups%s failed";
4726       else
4727         s = "some host address lookups failed and retry time "
4728         "not reached for other hosts or connection limit reached%s";
4729
4730       addr->message = string_sprintf(s,
4731         addr->domain ? string_sprintf(" for '%s'", addr->domain) : US"");
4732       }
4733     }
4734   }
4735
4736 /* Update the database which keeps information about which messages are waiting
4737 for which hosts to become available. For some message-specific errors, the
4738 update_waiting flag is turned off because we don't want follow-on deliveries in
4739 those cases.  If this transport instance is explicitly limited to one message
4740 per connection then follow-on deliveries are not possible and there's no need
4741 to create/update the per-transport wait-<transport_name> database. */
4742
4743 if (update_waiting && tblock->connection_max_messages != 1)
4744   transport_update_waiting(hostlist, tblock->name);
4745
4746 END_TRANSPORT:
4747
4748 DEBUG(D_transport) debug_printf("Leaving %s transport\n", tblock->name);
4749
4750 return TRUE;   /* Each address has its status */
4751 }
4752
4753 #endif  /*!MACRO_PREDEF*/
4754 /* vi: aw ai sw=2
4755 */
4756 /* End of transport/smtp.c */