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