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