Move certificate name checking to mainline, default enabled
[exim.git] / src / src / transports / smtp.c
CommitLineData
0756eb3c
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5a66c31b 5/* Copyright (c) University of Cambridge 1995 - 2014 */
0756eb3c
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8#include "../exim.h"
9#include "smtp.h"
10
11#define PENDING 256
12#define PENDING_DEFER (PENDING + DEFER)
13#define PENDING_OK (PENDING + OK)
14
15
16/* Options specific to the smtp transport. This transport also supports LMTP
17over TCP/IP. The options must be in alphabetic order (note that "_" comes
18before the lower case letters). Some live in the transport_instance block so as
19to be publicly visible; these are flagged with opt_public. */
20
21optionlist smtp_transport_options[] = {
506900af
JH
22 { "*expand_multi_domain", opt_stringptr | opt_hidden | opt_public,
23 (void *)offsetof(transport_instance, expand_multi_domain) },
9c695f6d
JH
24 { "*expand_retry_include_ip_address", opt_stringptr | opt_hidden,
25 (void *)(offsetof(smtp_transport_options_block, expand_retry_include_ip_address)) },
26
48c7f9e2
PH
27 { "address_retry_include_sender", opt_bool,
28 (void *)offsetof(smtp_transport_options_block, address_retry_include_sender) },
0756eb3c
PH
29 { "allow_localhost", opt_bool,
30 (void *)offsetof(smtp_transport_options_block, allow_localhost) },
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) },
41 { "data_timeout", opt_time,
42 (void *)offsetof(smtp_transport_options_block, data_timeout) },
43 { "delay_after_cutoff", opt_bool,
44 (void *)offsetof(smtp_transport_options_block, delay_after_cutoff) },
80a47a2c 45#ifndef DISABLE_DKIM
f7572e5a
TK
46 { "dkim_canon", opt_stringptr,
47 (void *)offsetof(smtp_transport_options_block, dkim_canon) },
48 { "dkim_domain", opt_stringptr,
49 (void *)offsetof(smtp_transport_options_block, dkim_domain) },
50 { "dkim_private_key", opt_stringptr,
51 (void *)offsetof(smtp_transport_options_block, dkim_private_key) },
52 { "dkim_selector", opt_stringptr,
53 (void *)offsetof(smtp_transport_options_block, dkim_selector) },
54 { "dkim_sign_headers", opt_stringptr,
55 (void *)offsetof(smtp_transport_options_block, dkim_sign_headers) },
56 { "dkim_strict", opt_stringptr,
57 (void *)offsetof(smtp_transport_options_block, dkim_strict) },
80a47a2c 58#endif
0756eb3c
PH
59 { "dns_qualify_single", opt_bool,
60 (void *)offsetof(smtp_transport_options_block, dns_qualify_single) },
61 { "dns_search_parents", opt_bool,
62 (void *)offsetof(smtp_transport_options_block, dns_search_parents) },
578897ea
JH
63 { "dnssec_request_domains", opt_stringptr,
64 (void *)offsetof(smtp_transport_options_block, dnssec_request_domains) },
65 { "dnssec_require_domains", opt_stringptr,
66 (void *)offsetof(smtp_transport_options_block, dnssec_require_domains) },
9e4f5962
PP
67 { "dscp", opt_stringptr,
68 (void *)offsetof(smtp_transport_options_block, dscp) },
0756eb3c
PH
69 { "fallback_hosts", opt_stringptr,
70 (void *)offsetof(smtp_transport_options_block, fallback_hosts) },
71 { "final_timeout", opt_time,
72 (void *)offsetof(smtp_transport_options_block, final_timeout) },
73 { "gethostbyname", opt_bool,
74 (void *)offsetof(smtp_transport_options_block, gethostbyname) },
80a47a2c 75#ifdef SUPPORT_TLS
b1770b6e 76 /* These are no longer honoured, as of Exim 4.80; for now, we silently
2d571266 77 ignore; 4.83 will warn, and a later-still release will remove
17c76198 78 these options, so that using them becomes an error. */
83da1223
PH
79 { "gnutls_require_kx", opt_stringptr,
80 (void *)offsetof(smtp_transport_options_block, gnutls_require_kx) },
81 { "gnutls_require_mac", opt_stringptr,
82 (void *)offsetof(smtp_transport_options_block, gnutls_require_mac) },
83 { "gnutls_require_protocols", opt_stringptr,
84 (void *)offsetof(smtp_transport_options_block, gnutls_require_proto) },
80a47a2c 85#endif
0756eb3c
PH
86 { "helo_data", opt_stringptr,
87 (void *)offsetof(smtp_transport_options_block, helo_data) },
88 { "hosts", opt_stringptr,
89 (void *)offsetof(smtp_transport_options_block, hosts) },
90 { "hosts_avoid_esmtp", opt_stringptr,
91 (void *)offsetof(smtp_transport_options_block, hosts_avoid_esmtp) },
c51b8e75
PH
92 { "hosts_avoid_pipelining", opt_stringptr,
93 (void *)offsetof(smtp_transport_options_block, hosts_avoid_pipelining) },
80a47a2c 94#ifdef SUPPORT_TLS
0756eb3c
PH
95 { "hosts_avoid_tls", opt_stringptr,
96 (void *)offsetof(smtp_transport_options_block, hosts_avoid_tls) },
80a47a2c 97#endif
0756eb3c
PH
98 { "hosts_max_try", opt_int,
99 (void *)offsetof(smtp_transport_options_block, hosts_max_try) },
533244af
PH
100 { "hosts_max_try_hardlimit", opt_int,
101 (void *)offsetof(smtp_transport_options_block, hosts_max_try_hardlimit) },
80a47a2c 102#ifdef SUPPORT_TLS
0756eb3c
PH
103 { "hosts_nopass_tls", opt_stringptr,
104 (void *)offsetof(smtp_transport_options_block, hosts_nopass_tls) },
80a47a2c 105#endif
0756eb3c
PH
106 { "hosts_override", opt_bool,
107 (void *)offsetof(smtp_transport_options_block, hosts_override) },
108 { "hosts_randomize", opt_bool,
109 (void *)offsetof(smtp_transport_options_block, hosts_randomize) },
f2de3a33 110#if defined(SUPPORT_TLS) && !defined(DISABLE_OCSP)
44662487
JH
111 { "hosts_request_ocsp", opt_stringptr,
112 (void *)offsetof(smtp_transport_options_block, hosts_request_ocsp) },
113#endif
0756eb3c
PH
114 { "hosts_require_auth", opt_stringptr,
115 (void *)offsetof(smtp_transport_options_block, hosts_require_auth) },
80a47a2c 116#ifdef SUPPORT_TLS
7a31d643
JH
117# ifdef EXPERIMENTAL_DANE
118 { "hosts_require_dane", opt_stringptr,
119 (void *)offsetof(smtp_transport_options_block, hosts_require_dane) },
120# endif
f2de3a33 121# ifndef DISABLE_OCSP
f5d78688
JH
122 { "hosts_require_ocsp", opt_stringptr,
123 (void *)offsetof(smtp_transport_options_block, hosts_require_ocsp) },
124# endif
0756eb3c
PH
125 { "hosts_require_tls", opt_stringptr,
126 (void *)offsetof(smtp_transport_options_block, hosts_require_tls) },
80a47a2c 127#endif
0756eb3c
PH
128 { "hosts_try_auth", opt_stringptr,
129 (void *)offsetof(smtp_transport_options_block, hosts_try_auth) },
7a31d643 130#if defined(SUPPORT_TLS) && defined(EXPERIMENTAL_DANE)
96e47838
TL
131 { "hosts_try_dane", opt_stringptr,
132 (void *)offsetof(smtp_transport_options_block, hosts_try_dane) },
133#endif
8ccd00b1 134#ifndef DISABLE_PRDR
fd98a5c6
JH
135 { "hosts_try_prdr", opt_stringptr,
136 (void *)offsetof(smtp_transport_options_block, hosts_try_prdr) },
137#endif
99400968
JH
138#ifdef SUPPORT_TLS
139 { "hosts_verify_avoid_tls", opt_stringptr,
140 (void *)offsetof(smtp_transport_options_block, hosts_verify_avoid_tls) },
141#endif
0756eb3c
PH
142 { "interface", opt_stringptr,
143 (void *)offsetof(smtp_transport_options_block, interface) },
144 { "keepalive", opt_bool,
145 (void *)offsetof(smtp_transport_options_block, keepalive) },
f1513293
PH
146 { "lmtp_ignore_quota", opt_bool,
147 (void *)offsetof(smtp_transport_options_block, lmtp_ignore_quota) },
0756eb3c
PH
148 { "max_rcpt", opt_int | opt_public,
149 (void *)offsetof(transport_instance, max_addresses) },
506900af 150 { "multi_domain", opt_expand_bool | opt_public,
0756eb3c
PH
151 (void *)offsetof(transport_instance, multi_domain) },
152 { "port", opt_stringptr,
153 (void *)offsetof(smtp_transport_options_block, port) },
154 { "protocol", opt_stringptr,
155 (void *)offsetof(smtp_transport_options_block, protocol) },
9c695f6d 156 { "retry_include_ip_address", opt_expand_bool,
0756eb3c
PH
157 (void *)offsetof(smtp_transport_options_block, retry_include_ip_address) },
158 { "serialize_hosts", opt_stringptr,
159 (void *)offsetof(smtp_transport_options_block, serialize_hosts) },
160 { "size_addition", opt_int,
161 (void *)offsetof(smtp_transport_options_block, size_addition) }
80a47a2c 162#ifdef SUPPORT_TLS
0756eb3c
PH
163 ,{ "tls_certificate", opt_stringptr,
164 (void *)offsetof(smtp_transport_options_block, tls_certificate) },
165 { "tls_crl", opt_stringptr,
166 (void *)offsetof(smtp_transport_options_block, tls_crl) },
54c90be1
PP
167 { "tls_dh_min_bits", opt_int,
168 (void *)offsetof(smtp_transport_options_block, tls_dh_min_bits) },
0756eb3c
PH
169 { "tls_privatekey", opt_stringptr,
170 (void *)offsetof(smtp_transport_options_block, tls_privatekey) },
3f0945ff 171 { "tls_require_ciphers", opt_stringptr,
0756eb3c 172 (void *)offsetof(smtp_transport_options_block, tls_require_ciphers) },
3f0945ff
PP
173 { "tls_sni", opt_stringptr,
174 (void *)offsetof(smtp_transport_options_block, tls_sni) },
0756eb3c
PH
175 { "tls_tempfail_tryclear", opt_bool,
176 (void *)offsetof(smtp_transport_options_block, tls_tempfail_tryclear) },
a63be306
WB
177 { "tls_try_verify_hosts", opt_stringptr,
178 (void *)offsetof(smtp_transport_options_block, tls_try_verify_hosts) },
e51c7be2
JH
179 { "tls_verify_cert_hostnames", opt_stringptr,
180 (void *)offsetof(smtp_transport_options_block,tls_verify_cert_hostnames)},
0756eb3c 181 { "tls_verify_certificates", opt_stringptr,
a63be306
WB
182 (void *)offsetof(smtp_transport_options_block, tls_verify_certificates) },
183 { "tls_verify_hosts", opt_stringptr,
184 (void *)offsetof(smtp_transport_options_block, tls_verify_hosts) }
80a47a2c 185#endif
0756eb3c
PH
186};
187
188/* Size of the options list. An extern variable has to be used so that its
189address can appear in the tables drtables.c. */
190
191int smtp_transport_options_count =
192 sizeof(smtp_transport_options)/sizeof(optionlist);
193
194/* Default private options block for the smtp transport. */
195
196smtp_transport_options_block smtp_transport_option_defaults = {
197 NULL, /* hosts */
198 NULL, /* fallback_hosts */
199 NULL, /* hostlist */
200 NULL, /* fallback_hostlist */
201 NULL, /* authenticated_sender */
202 US"$primary_hostname", /* helo_data */
203 NULL, /* interface */
204 NULL, /* port */
205 US"smtp", /* protocol */
9e4f5962 206 NULL, /* DSCP */
0756eb3c
PH
207 NULL, /* serialize_hosts */
208 NULL, /* hosts_try_auth */
209 NULL, /* hosts_require_auth */
96e47838
TL
210#ifdef EXPERIMENTAL_DANE
211 NULL, /* hosts_try_dane */
7a31d643 212 NULL, /* hosts_require_dane */
96e47838 213#endif
8ccd00b1 214#ifndef DISABLE_PRDR
ad07e9ad 215 US"*", /* hosts_try_prdr */
f5d78688 216#endif
f2de3a33 217#ifndef DISABLE_OCSP
0e66b3b6 218 US"*", /* hosts_request_ocsp (except under DANE; tls_client_start()) */
f5d78688 219 NULL, /* hosts_require_ocsp */
fd98a5c6 220#endif
0756eb3c
PH
221 NULL, /* hosts_require_tls */
222 NULL, /* hosts_avoid_tls */
99400968 223 US"*", /* hosts_verify_avoid_tls */
c51b8e75 224 NULL, /* hosts_avoid_pipelining */
0756eb3c
PH
225 NULL, /* hosts_avoid_esmtp */
226 NULL, /* hosts_nopass_tls */
227 5*60, /* command_timeout */
228 5*60, /* connect_timeout; shorter system default overrides */
229 5*60, /* data timeout */
230 10*60, /* final timeout */
231 1024, /* size_addition */
232 5, /* hosts_max_try */
8e669ac1 233 50, /* hosts_max_try_hardlimit */
48c7f9e2 234 TRUE, /* address_retry_include_sender */
0756eb3c 235 FALSE, /* allow_localhost */
382afc6b 236 FALSE, /* authenticated_sender_force */
0756eb3c
PH
237 FALSE, /* gethostbyname */
238 TRUE, /* dns_qualify_single */
239 FALSE, /* dns_search_parents */
578897ea
JH
240 NULL, /* dnssec_request_domains */
241 NULL, /* dnssec_require_domains */
0756eb3c
PH
242 TRUE, /* delay_after_cutoff */
243 FALSE, /* hosts_override */
244 FALSE, /* hosts_randomize */
245 TRUE, /* keepalive */
f1513293 246 FALSE, /* lmtp_ignore_quota */
9c695f6d 247 NULL, /* expand_retry_include_ip_address */
0756eb3c 248 TRUE /* retry_include_ip_address */
80a47a2c 249#ifdef SUPPORT_TLS
0756eb3c
PH
250 ,NULL, /* tls_certificate */
251 NULL, /* tls_crl */
252 NULL, /* tls_privatekey */
253 NULL, /* tls_require_ciphers */
83da1223
PH
254 NULL, /* gnutls_require_kx */
255 NULL, /* gnutls_require_mac */
256 NULL, /* gnutls_require_proto */
54c90be1 257 NULL, /* tls_sni */
0756eb3c 258 NULL, /* tls_verify_certificates */
54c90be1
PP
259 EXIM_CLIENT_DH_DEFAULT_MIN_BITS,
260 /* tls_dh_min_bits */
a63be306
WB
261 TRUE, /* tls_tempfail_tryclear */
262 NULL, /* tls_verify_hosts */
01a4a5c5
JH
263 NULL, /* tls_try_verify_hosts */
264 US"*" /* tls_verify_cert_hostnames */
80a47a2c
TK
265#endif
266#ifndef DISABLE_DKIM
f7572e5a
TK
267 ,NULL, /* dkim_canon */
268 NULL, /* dkim_domain */
269 NULL, /* dkim_private_key */
270 NULL, /* dkim_selector */
271 NULL, /* dkim_sign_headers */
272 NULL /* dkim_strict */
80a47a2c 273#endif
0756eb3c
PH
274};
275
6c1c3d1d
WB
276#ifdef EXPERIMENTAL_DSN
277/* some DSN flags for use later */
278
279static int rf_list[] = {rf_notify_never, rf_notify_success,
280 rf_notify_failure, rf_notify_delay };
281
45500060 282static uschar *rf_names[] = { US"NEVER", US"SUCCESS", US"FAILURE", US"DELAY" };
6c1c3d1d
WB
283#endif
284
285
0756eb3c
PH
286
287/* Local statics */
288
289static uschar *smtp_command; /* Points to last cmd for error messages */
290static uschar *mail_command; /* Points to MAIL cmd for error messages */
f6c332bd 291static BOOL update_waiting; /* TRUE to update the "wait" database */
0756eb3c
PH
292
293
294/*************************************************
295* Setup entry point *
296*************************************************/
297
298/* This function is called when the transport is about to be used,
299but before running it in a sub-process. It is used for two things:
300
301 (1) To set the fallback host list in addresses, when delivering.
26da7e20
PH
302 (2) To pass back the interface, port, protocol, and other options, for use
303 during callout verification.
0756eb3c
PH
304
305Arguments:
306 tblock pointer to the transport instance block
307 addrlist list of addresses about to be transported
308 tf if not NULL, pointer to block in which to return options
929ba01c
PH
309 uid the uid that will be set (not used)
310 gid the gid that will be set (not used)
0756eb3c
PH
311 errmsg place for error message (not used)
312
313Returns: OK always (FAIL, DEFER not used)
314*/
315
316static int
317smtp_transport_setup(transport_instance *tblock, address_item *addrlist,
929ba01c 318 transport_feedback *tf, uid_t uid, gid_t gid, uschar **errmsg)
0756eb3c
PH
319{
320smtp_transport_options_block *ob =
321 (smtp_transport_options_block *)(tblock->options_block);
322
323errmsg = errmsg; /* Keep picky compilers happy */
929ba01c
PH
324uid = uid;
325gid = gid;
0756eb3c
PH
326
327/* Pass back options if required. This interface is getting very messy. */
328
329if (tf != NULL)
330 {
331 tf->interface = ob->interface;
332 tf->port = ob->port;
333 tf->protocol = ob->protocol;
334 tf->hosts = ob->hosts;
335 tf->hosts_override = ob->hosts_override;
336 tf->hosts_randomize = ob->hosts_randomize;
337 tf->gethostbyname = ob->gethostbyname;
338 tf->qualify_single = ob->dns_qualify_single;
339 tf->search_parents = ob->dns_search_parents;
26da7e20 340 tf->helo_data = ob->helo_data;
0756eb3c
PH
341 }
342
343/* Set the fallback host list for all the addresses that don't have fallback
344host lists, provided that the local host wasn't present in the original host
345list. */
346
347if (!testflag(addrlist, af_local_host_removed))
348 {
349 for (; addrlist != NULL; addrlist = addrlist->next)
350 if (addrlist->fallback_hosts == NULL)
351 addrlist->fallback_hosts = ob->fallback_hostlist;
352 }
353
354return OK;
355}
356
357
358
359/*************************************************
360* Initialization entry point *
361*************************************************/
362
363/* Called for each instance, after its options have been read, to
364enable consistency checks to be done, or anything else that needs
365to be set up.
366
367Argument: pointer to the transport instance block
368Returns: nothing
369*/
370
371void
372smtp_transport_init(transport_instance *tblock)
373{
374smtp_transport_options_block *ob =
375 (smtp_transport_options_block *)(tblock->options_block);
376
377/* Retry_use_local_part defaults FALSE if unset */
378
379if (tblock->retry_use_local_part == TRUE_UNSET)
380 tblock->retry_use_local_part = FALSE;
381
382/* Set the default port according to the protocol */
383
384if (ob->port == NULL)
061b7ebd
PP
385 ob->port = (strcmpic(ob->protocol, US"lmtp") == 0)? US"lmtp" :
386 (strcmpic(ob->protocol, US"smtps") == 0)? US"smtps" : US"smtp";
0756eb3c
PH
387
388/* Set up the setup entry point, to be called before subprocesses for this
389transport. */
390
391tblock->setup = smtp_transport_setup;
392
393/* Complain if any of the timeouts are zero. */
394
395if (ob->command_timeout <= 0 || ob->data_timeout <= 0 ||
396 ob->final_timeout <= 0)
397 log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
398 "command, data, or final timeout value is zero for %s transport",
399 tblock->name);
400
401/* If hosts_override is set and there are local hosts, set the global
402flag that stops verify from showing router hosts. */
403
404if (ob->hosts_override && ob->hosts != NULL) tblock->overrides_hosts = TRUE;
405
406/* If there are any fallback hosts listed, build a chain of host items
407for them, but do not do any lookups at this time. */
408
409host_build_hostlist(&(ob->fallback_hostlist), ob->fallback_hosts, FALSE);
2d571266 410
32d07012 411#ifdef SUPPORT_TLS
2d571266
JH
412if ( ob->gnutls_require_kx
413 || ob->gnutls_require_mac
414 || ob->gnutls_require_proto)
415 log_write(0, LOG_MAIN, "WARNING: smtp transport options"
416 " gnutls_require_kx, gnutls_require_mac and gnutls_require_protocols"
417 " are obsolete\n");
32d07012 418#endif
0756eb3c
PH
419}
420
421
422
423
424
425/*************************************************
426* Set delivery info into all active addresses *
427*************************************************/
428
429/* Only addresses whose status is >= PENDING are relevant. A lesser
430status means that an address is not currently being processed.
431
432Arguments:
447d236c
PH
433 addrlist points to a chain of addresses
434 errno_value to put in each address's errno field
435 msg to put in each address's message field
436 rc to put in each address's transport_return field
437 pass_message if TRUE, set the "pass message" flag in the address
c562fd30 438 host if set, mark addrs as having used this host
0756eb3c
PH
439
440If errno_value has the special value ERRNO_CONNECTTIMEOUT, ETIMEDOUT is put in
441the errno field, and RTEF_CTOUT is ORed into the more_errno field, to indicate
442this particular type of timeout.
443
444Returns: nothing
445*/
446
7cd1141b
PH
447static void
448set_errno(address_item *addrlist, int errno_value, uschar *msg, int rc,
c562fd30 449 BOOL pass_message, host_item * host)
0756eb3c
PH
450{
451address_item *addr;
452int orvalue = 0;
453if (errno_value == ERRNO_CONNECTTIMEOUT)
454 {
455 errno_value = ETIMEDOUT;
456 orvalue = RTEF_CTOUT;
457 }
458for (addr = addrlist; addr != NULL; addr = addr->next)
459 {
460 if (addr->transport_return < PENDING) continue;
461 addr->basic_errno = errno_value;
462 addr->more_errno |= orvalue;
447d236c
PH
463 if (msg != NULL)
464 {
465 addr->message = msg;
466 if (pass_message) setflag(addr, af_pass_message);
467 }
0756eb3c 468 addr->transport_return = rc;
c562fd30
JH
469 if (host)
470 addr->host_used = host;
0756eb3c
PH
471 }
472}
473
474
475
476/*************************************************
477* Check an SMTP response *
478*************************************************/
479
480/* This function is given an errno code and the SMTP response buffer
481to analyse, together with the host identification for generating messages. It
482sets an appropriate message and puts the first digit of the response code into
483the yield variable. If no response was actually read, a suitable digit is
484chosen.
485
486Arguments:
447d236c
PH
487 host the current host, to get its name for messages
488 errno_value pointer to the errno value
489 more_errno from the top address for use with ERRNO_FILTER_FAIL
490 buffer the SMTP response buffer
491 yield where to put a one-digit SMTP response code
492 message where to put an errror message
493 pass_message set TRUE if message is an SMTP response
494
495Returns: TRUE if an SMTP "QUIT" command should be sent, else FALSE
0756eb3c
PH
496*/
497
a7538db1
JH
498static BOOL
499check_response(host_item *host, int *errno_value, int more_errno,
447d236c 500 uschar *buffer, int *yield, uschar **message, BOOL *pass_message)
0756eb3c
PH
501{
502uschar *pl = US"";
503
504if (smtp_use_pipelining &&
505 (Ustrcmp(smtp_command, "MAIL") == 0 ||
506 Ustrcmp(smtp_command, "RCPT") == 0 ||
507 Ustrcmp(smtp_command, "DATA") == 0))
508 pl = US"pipelined ";
509
510*yield = '4'; /* Default setting is to give a temporary error */
511
512/* Handle response timeout */
513
514if (*errno_value == ETIMEDOUT)
515 {
c562fd30
JH
516 *message = US string_sprintf("SMTP timeout after %s%s",
517 pl, smtp_command);
0756eb3c
PH
518 if (transport_count > 0)
519 *message = US string_sprintf("%s (%d bytes written)", *message,
520 transport_count);
521 return FALSE;
522 }
523
524/* Handle malformed SMTP response */
525
526if (*errno_value == ERRNO_SMTPFORMAT)
527 {
528 uschar *malfresp = string_printing(buffer);
529 while (isspace(*malfresp)) malfresp++;
c562fd30
JH
530 *message = *malfresp == 0
531 ? string_sprintf("Malformed SMTP reply (an empty line) "
532 "in response to %s%s", pl, smtp_command)
533 : string_sprintf("Malformed SMTP reply in response to %s%s: %s",
534 pl, smtp_command, malfresp);
0756eb3c
PH
535 return FALSE;
536 }
537
538/* Handle a failed filter process error; can't send QUIT as we mustn't
539end the DATA. */
540
541if (*errno_value == ERRNO_FILTER_FAIL)
542 {
35af9f61 543 *message = US string_sprintf("transport filter process failed (%d)%s",
8e669ac1 544 more_errno,
35af9f61 545 (more_errno == EX_EXECFAILED)? ": unable to execute command" : "");
0756eb3c
PH
546 return FALSE;
547 }
548
549/* Handle a failed add_headers expansion; can't send QUIT as we mustn't
550end the DATA. */
551
552if (*errno_value == ERRNO_CHHEADER_FAIL)
553 {
554 *message =
555 US string_sprintf("failed to expand headers_add or headers_remove: %s",
556 expand_string_message);
557 return FALSE;
558 }
559
560/* Handle failure to write a complete data block */
561
562if (*errno_value == ERRNO_WRITEINCOMPLETE)
563 {
564 *message = US string_sprintf("failed to write a data block");
565 return FALSE;
566 }
567
568/* Handle error responses from the remote mailer. */
569
570if (buffer[0] != 0)
571 {
572 uschar *s = string_printing(buffer);
447d236c 573 *message = US string_sprintf("SMTP error from remote mail server after %s%s: "
c562fd30 574 "%s", pl, smtp_command, s);
447d236c 575 *pass_message = TRUE;
0756eb3c
PH
576 *yield = buffer[0];
577 return TRUE;
578 }
579
580/* No data was read. If there is no errno, this must be the EOF (i.e.
19b9dc85
PH
581connection closed) case, which causes deferral. An explicit connection reset
582error has the same effect. Otherwise, put the host's identity in the message,
583leaving the errno value to be interpreted as well. In all cases, we have to
584assume the connection is now dead. */
0756eb3c 585
19b9dc85 586if (*errno_value == 0 || *errno_value == ECONNRESET)
0756eb3c
PH
587 {
588 *errno_value = ERRNO_SMTPCLOSED;
c562fd30
JH
589 *message = US string_sprintf("Remote host closed connection "
590 "in response to %s%s", pl, smtp_command);
0756eb3c
PH
591 }
592else *message = US string_sprintf("%s [%s]", host->name, host->address);
593
594return FALSE;
595}
596
597
598
599/*************************************************
600* Write error message to logs *
601*************************************************/
602
603/* This writes to the main log and to the message log.
604
605Arguments:
606 addr the address item containing error information
607 host the current host
608
609Returns: nothing
610*/
611
612static void
613write_logs(address_item *addr, host_item *host)
614{
c562fd30
JH
615uschar * message = string_sprintf("H=%s [%s]", host->name, host->address);
616
617if (addr->message)
0756eb3c 618 {
c562fd30 619 message = string_sprintf("%s: %s", message, addr->message);
0756eb3c
PH
620 if (addr->basic_errno > 0)
621 message = string_sprintf("%s: %s", message, strerror(addr->basic_errno));
622 log_write(0, LOG_MAIN, "%s", message);
623 deliver_msglog("%s %s\n", tod_stamp(tod_log), message);
624 }
625else
626 {
c562fd30
JH
627 if (log_extra_selector & LX_outgoing_port)
628 message = string_sprintf("%s:%d", message,
629 host->port == PORT_NONE ? 25 : host->port);
630 log_write(0, LOG_MAIN, "%s %s", message, strerror(addr->basic_errno));
631 deliver_msglog("%s %s %s\n", tod_stamp(tod_log), message,
632 strerror(addr->basic_errno));
0756eb3c
PH
633 }
634}
635
c562fd30
JH
636static void
637msglog_line(host_item * host, uschar * message)
638{
639 deliver_msglog("%s H=%s [%s] %s\n", tod_stamp(tod_log),
640 host->name, host->address, message);
641}
642
0756eb3c
PH
643
644
774ef2d7 645#ifdef EXPERIMENTAL_EVENT
d68218c7
JH
646/*************************************************
647* Post-defer action *
648*************************************************/
649
650/* This expands an arbitrary per-transport string.
651 It might, for example, be used to write to the database log.
652
653Arguments:
d68218c7
JH
654 addr the address item containing error information
655 host the current host
656
657Returns: nothing
658*/
659
660static void
774ef2d7 661deferred_event_raise(address_item *addr, host_item *host)
d68218c7 662{
774ef2d7 663uschar * action = addr->transport->event_action;
a7538db1
JH
664uschar * save_domain;
665uschar * save_local;
666
d68218c7 667if (!action)
a7538db1 668 return;
d68218c7 669
a7538db1
JH
670save_domain = deliver_domain;
671save_local = deliver_localpart;
672
673/*XXX would ip & port already be set up? */
674deliver_host_address = string_copy(host->address);
774ef2d7
JH
675deliver_host_port = host->port == PORT_NONE ? 25 : host->port;
676event_defer_errno = addr->basic_errno;
d68218c7
JH
677
678router_name = addr->router->name;
679transport_name = addr->transport->name;
a7538db1
JH
680deliver_domain = addr->domain;
681deliver_localpart = addr->local_part;
682
774ef2d7 683(void) event_raise(action, US"msg:host:defer",
a7538db1
JH
684 addr->message
685 ? addr->basic_errno > 0
686 ? string_sprintf("%s: %s", addr->message, strerror(addr->basic_errno))
687 : string_copy(addr->message)
688 : addr->basic_errno > 0
689 ? string_copy(US strerror(addr->basic_errno))
690 : NULL);
691
692deliver_localpart = save_local;
693deliver_domain = save_domain;
d68218c7
JH
694router_name = transport_name = NULL;
695}
696#endif
697
698
699
0756eb3c
PH
700/*************************************************
701* Synchronize SMTP responses *
702*************************************************/
703
704/* This function is called from smtp_deliver() to receive SMTP responses from
705the server, and match them up with the commands to which they relate. When
706PIPELINING is not in use, this function is called after every command, and is
707therefore somewhat over-engineered, but it is simpler to use a single scheme
708that works both with and without PIPELINING instead of having two separate sets
709of code.
710
711The set of commands that are buffered up with pipelining may start with MAIL
712and may end with DATA; in between are RCPT commands that correspond to the
713addresses whose status is PENDING_DEFER. All other commands (STARTTLS, AUTH,
714etc.) are never buffered.
715
716Errors after MAIL or DATA abort the whole process leaving the response in the
717buffer. After MAIL, pending responses are flushed, and the original command is
718re-instated in big_buffer for error messages. For RCPT commands, the remote is
719permitted to reject some recipient addresses while accepting others. However
720certain errors clearly abort the whole process. Set the value in
721transport_return to PENDING_OK if the address is accepted. If there is a
722subsequent general error, it will get reset accordingly. If not, it will get
723converted to OK at the end.
724
725Arguments:
48c7f9e2
PH
726 addrlist the complete address list
727 include_affixes TRUE if affixes include in RCPT
728 sync_addr ptr to the ptr of the one to start scanning at (updated)
729 host the host we are connected to
730 count the number of responses to read
731 address_retry_
732 include_sender true if 4xx retry is to include the sender it its key
733 pending_MAIL true if the first response is for MAIL
734 pending_DATA 0 if last command sent was not DATA
735 +1 if previously had a good recipient
736 -1 if not previously had a good recipient
737 inblock incoming SMTP block
738 timeout timeout value
739 buffer buffer for reading response
740 buffsize size of buffer
0756eb3c
PH
741
742Returns: 3 if at least one address had 2xx and one had 5xx
743 2 if at least one address had 5xx but none had 2xx
744 1 if at least one host had a 2xx response, but none had 5xx
745 0 no address had 2xx or 5xx but no errors (all 4xx, or just DATA)
746 -1 timeout while reading RCPT response
747 -2 I/O or other non-response error for RCPT
748 -3 DATA or MAIL failed - errno and buffer set
749*/
750
751static int
752sync_responses(address_item *addrlist, BOOL include_affixes,
48c7f9e2
PH
753 address_item **sync_addr, host_item *host, int count,
754 BOOL address_retry_include_sender, BOOL pending_MAIL,
0756eb3c
PH
755 int pending_DATA, smtp_inblock *inblock, int timeout, uschar *buffer,
756 int buffsize)
757{
758address_item *addr = *sync_addr;
759int yield = 0;
760
761/* Handle the response for a MAIL command. On error, reinstate the original
762command in big_buffer for error message use, and flush any further pending
763responses before returning, except after I/O errors and timeouts. */
764
765if (pending_MAIL)
766 {
767 count--;
768 if (!smtp_read_response(inblock, buffer, buffsize, '2', timeout))
769 {
770 Ustrcpy(big_buffer, mail_command); /* Fits, because it came from there! */
771 if (errno == 0 && buffer[0] != 0)
772 {
773 uschar flushbuffer[4096];
e97957bc
PH
774 int save_errno = 0;
775 if (buffer[0] == '4')
776 {
777 save_errno = ERRNO_MAIL4XX;
778 addr->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
779 }
0756eb3c
PH
780 while (count-- > 0)
781 {
782 if (!smtp_read_response(inblock, flushbuffer, sizeof(flushbuffer),
783 '2', timeout)
784 && (errno != 0 || flushbuffer[0] == 0))
785 break;
786 }
e97957bc 787 errno = save_errno;
0756eb3c 788 }
c562fd30
JH
789
790 if (pending_DATA) count--; /* Number of RCPT responses to come */
791 while (count-- > 0) /* Mark any pending addrs with the host used */
792 {
793 while (addr->transport_return != PENDING_DEFER) addr = addr->next;
794 addr->host_used = host;
795 addr = addr->next;
796 }
0756eb3c
PH
797 return -3;
798 }
799 }
800
801if (pending_DATA) count--; /* Number of RCPT responses to come */
802
803/* Read and handle the required number of RCPT responses, matching each one up
804with an address by scanning for the next address whose status is PENDING_DEFER.
805*/
806
807while (count-- > 0)
808 {
809 while (addr->transport_return != PENDING_DEFER) addr = addr->next;
810
811 /* The address was accepted */
c562fd30 812 addr->host_used = host;
0756eb3c
PH
813
814 if (smtp_read_response(inblock, buffer, buffsize, '2', timeout))
815 {
816 yield |= 1;
817 addr->transport_return = PENDING_OK;
818
819 /* If af_dr_retry_exists is set, there was a routing delay on this address;
09945f1e
PH
820 ensure that any address-specific retry record is expunged. We do this both
821 for the basic key and for the version that also includes the sender. */
0756eb3c
PH
822
823 if (testflag(addr, af_dr_retry_exists))
09945f1e
PH
824 {
825 uschar *altkey = string_sprintf("%s:<%s>", addr->address_retry_key,
826 sender_address);
827 retry_add_item(addr, altkey, rf_delete);
0756eb3c 828 retry_add_item(addr, addr->address_retry_key, rf_delete);
09945f1e 829 }
0756eb3c
PH
830 }
831
832 /* Timeout while reading the response */
833
834 else if (errno == ETIMEDOUT)
835 {
836 int save_errno = errno;
c562fd30
JH
837 uschar *message = string_sprintf("SMTP timeout after RCPT TO:<%s>",
838 transport_rcpt_address(addr, include_affixes));
839 set_errno(addrlist, save_errno, message, DEFER, FALSE, NULL);
0756eb3c 840 retry_add_item(addr, addr->address_retry_key, 0);
f6c332bd 841 update_waiting = FALSE;
0756eb3c
PH
842 return -1;
843 }
844
845 /* Handle other errors in obtaining an SMTP response by returning -1. This
846 will cause all the addresses to be deferred. Restore the SMTP command in
847 big_buffer for which we are checking the response, so the error message
848 makes sense. */
849
850 else if (errno != 0 || buffer[0] == 0)
851 {
852 string_format(big_buffer, big_buffer_size, "RCPT TO:<%s>",
853 transport_rcpt_address(addr, include_affixes));
854 return -2;
855 }
856
857 /* Handle SMTP permanent and temporary response codes. */
858
859 else
860 {
861 addr->message =
447d236c 862 string_sprintf("SMTP error from remote mail server after RCPT TO:<%s>: "
c562fd30
JH
863 "%s", transport_rcpt_address(addr, include_affixes),
864 string_printing(buffer));
447d236c 865 setflag(addr, af_pass_message);
c562fd30 866 msglog_line(host, addr->message);
0756eb3c
PH
867
868 /* The response was 5xx */
869
870 if (buffer[0] == '5')
871 {
872 addr->transport_return = FAIL;
873 yield |= 2;
874 }
875
876 /* The response was 4xx */
877
878 else
879 {
0756eb3c
PH
880 addr->transport_return = DEFER;
881 addr->basic_errno = ERRNO_RCPT4XX;
e97957bc 882 addr->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
0756eb3c 883
c562fd30
JH
884 /* Log temporary errors if there are more hosts to be tried.
885 If not, log this last one in the == line. */
0756eb3c 886
c562fd30
JH
887 if (host->next)
888 log_write(0, LOG_MAIN, "H=%s [%s]: %s", host->name, host->address, addr->message);
0756eb3c 889
f6c332bd
PH
890 /* Do not put this message on the list of those waiting for specific
891 hosts, as otherwise it is likely to be tried too often. */
0756eb3c 892
f6c332bd 893 update_waiting = FALSE;
0756eb3c 894
48c7f9e2
PH
895 /* Add a retry item for the address so that it doesn't get tried again
896 too soon. If address_retry_include_sender is true, add the sender address
897 to the retry key. */
0756eb3c 898
48c7f9e2
PH
899 if (address_retry_include_sender)
900 {
901 uschar *altkey = string_sprintf("%s:<%s>", addr->address_retry_key,
902 sender_address);
903 retry_add_item(addr, altkey, 0);
904 }
905 else retry_add_item(addr, addr->address_retry_key, 0);
0756eb3c
PH
906 }
907 }
908 } /* Loop for next RCPT response */
909
910/* Update where to start at for the next block of responses, unless we
911have already handled all the addresses. */
912
913if (addr != NULL) *sync_addr = addr->next;
914
915/* Handle a response to DATA. If we have not had any good recipients, either
916previously or in this block, the response is ignored. */
917
918if (pending_DATA != 0 &&
919 !smtp_read_response(inblock, buffer, buffsize, '3', timeout))
920 {
921 int code;
922 uschar *msg;
447d236c 923 BOOL pass_message;
e97957bc
PH
924 if (pending_DATA > 0 || (yield & 1) != 0)
925 {
926 if (errno == 0 && buffer[0] == '4')
927 {
928 errno = ERRNO_DATA4XX;
929 addrlist->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
930 }
931 return -3;
932 }
447d236c 933 (void)check_response(host, &errno, 0, buffer, &code, &msg, &pass_message);
0756eb3c
PH
934 DEBUG(D_transport) debug_printf("%s\nerror for DATA ignored: pipelining "
935 "is in use and there were no good recipients\n", msg);
936 }
937
938/* All responses read and handled; MAIL (if present) received 2xx and DATA (if
939present) received 3xx. If any RCPTs were handled and yielded anything other
940than 4xx, yield will be set non-zero. */
941
942return yield;
943}
944
945
946
fcc8e047
JH
947/* Do the client side of smtp-level authentication */
948/*
949Arguments:
950 buffer EHLO response from server (gets overwritten)
951 addrlist chain of potential addresses to deliver
952 host host to deliver to
953 ob transport options
954 ibp, obp comms channel control blocks
955
956Returns:
957 OK Success, or failed (but not required): global "smtp_authenticated" set
958 DEFER Failed authentication (and was required)
959 ERROR Internal problem
960
961 FAIL_SEND Failed communications - transmit
962 FAIL - response
963*/
964
965int
966smtp_auth(uschar *buffer, unsigned bufsize, address_item *addrlist, host_item *host,
967 smtp_transport_options_block *ob, BOOL is_esmtp,
968 smtp_inblock *ibp, smtp_outblock *obp)
969{
a7538db1
JH
970int require_auth;
971uschar *fail_reason = US"server did not advertise AUTH support";
fcc8e047 972
a7538db1
JH
973smtp_authenticated = FALSE;
974client_authenticator = client_authenticated_id = client_authenticated_sender = NULL;
5130845b 975require_auth = verify_check_given_host(&ob->hosts_require_auth, host);
fcc8e047 976
a7538db1
JH
977if (is_esmtp && !regex_AUTH) regex_AUTH =
978 regex_must_compile(US"\\n250[\\s\\-]AUTH\\s+([\\-\\w\\s]+)(?:\\n|$)",
979 FALSE, TRUE);
fcc8e047 980
a7538db1
JH
981if (is_esmtp && regex_match_and_setup(regex_AUTH, buffer, 0, -1))
982 {
983 uschar *names = string_copyn(expand_nstring[1], expand_nlength[1]);
984 expand_nmax = -1; /* reset */
fcc8e047 985
a7538db1
JH
986 /* Must not do this check until after we have saved the result of the
987 regex match above. */
fcc8e047 988
a7538db1 989 if (require_auth == OK ||
5130845b 990 verify_check_given_host(&ob->hosts_try_auth, host) == OK)
a7538db1
JH
991 {
992 auth_instance *au;
993 fail_reason = US"no common mechanisms were found";
fcc8e047 994
a7538db1 995 DEBUG(D_transport) debug_printf("scanning authentication mechanisms\n");
fcc8e047 996
a7538db1
JH
997 /* Scan the configured authenticators looking for one which is configured
998 for use as a client, which is not suppressed by client_condition, and
999 whose name matches an authentication mechanism supported by the server.
1000 If one is found, attempt to authenticate by calling its client function.
1001 */
fcc8e047 1002
a7538db1
JH
1003 for (au = auths; !smtp_authenticated && au != NULL; au = au->next)
1004 {
1005 uschar *p = names;
1006 if (!au->client ||
1007 (au->client_condition != NULL &&
1008 !expand_check_condition(au->client_condition, au->name,
1009 US"client authenticator")))
1010 {
1011 DEBUG(D_transport) debug_printf("skipping %s authenticator: %s\n",
1012 au->name,
1013 (au->client)? "client_condition is false" :
1014 "not configured as a client");
1015 continue;
1016 }
fcc8e047 1017
a7538db1 1018 /* Loop to scan supported server mechanisms */
fcc8e047 1019
a7538db1
JH
1020 while (*p != 0)
1021 {
1022 int rc;
1023 int len = Ustrlen(au->public_name);
1024 while (isspace(*p)) p++;
fcc8e047 1025
a7538db1
JH
1026 if (strncmpic(au->public_name, p, len) != 0 ||
1027 (p[len] != 0 && !isspace(p[len])))
1028 {
1029 while (*p != 0 && !isspace(*p)) p++;
1030 continue;
1031 }
fcc8e047 1032
a7538db1
JH
1033 /* Found data for a listed mechanism. Call its client entry. Set
1034 a flag in the outblock so that data is overwritten after sending so
1035 that reflections don't show it. */
fcc8e047 1036
a7538db1
JH
1037 fail_reason = US"authentication attempt(s) failed";
1038 obp->authenticating = TRUE;
1039 rc = (au->info->clientcode)(au, ibp, obp,
1040 ob->command_timeout, buffer, bufsize);
1041 obp->authenticating = FALSE;
1042 DEBUG(D_transport) debug_printf("%s authenticator yielded %d\n",
1043 au->name, rc);
fcc8e047 1044
a7538db1
JH
1045 /* A temporary authentication failure must hold up delivery to
1046 this host. After a permanent authentication failure, we carry on
1047 to try other authentication methods. If all fail hard, try to
1048 deliver the message unauthenticated unless require_auth was set. */
fcc8e047 1049
a7538db1
JH
1050 switch(rc)
1051 {
1052 case OK:
1053 smtp_authenticated = TRUE; /* stops the outer loop */
1054 client_authenticator = au->name;
1055 if (au->set_client_id != NULL)
1056 client_authenticated_id = expand_string(au->set_client_id);
1057 break;
1058
1059 /* Failure after writing a command */
1060
1061 case FAIL_SEND:
1062 return FAIL_SEND;
1063
1064 /* Failure after reading a response */
1065
1066 case FAIL:
1067 if (errno != 0 || buffer[0] != '5') return FAIL;
1068 log_write(0, LOG_MAIN, "%s authenticator failed H=%s [%s] %s",
1069 au->name, host->name, host->address, buffer);
1070 break;
1071
1072 /* Failure by some other means. In effect, the authenticator
1073 decided it wasn't prepared to handle this case. Typically this
1074 is the result of "fail" in an expansion string. Do we need to
1075 log anything here? Feb 2006: a message is now put in the buffer
1076 if logging is required. */
1077
1078 case CANCELLED:
1079 if (*buffer != 0)
1080 log_write(0, LOG_MAIN, "%s authenticator cancelled "
1081 "authentication H=%s [%s] %s", au->name, host->name,
1082 host->address, buffer);
1083 break;
1084
1085 /* Internal problem, message in buffer. */
1086
1087 case ERROR:
c562fd30 1088 set_errno(addrlist, 0, string_copy(buffer), DEFER, FALSE, NULL);
a7538db1
JH
1089 return ERROR;
1090 }
fcc8e047 1091
a7538db1
JH
1092 break; /* If not authenticated, try next authenticator */
1093 } /* Loop for scanning supported server mechanisms */
1094 } /* Loop for further authenticators */
fcc8e047 1095 }
a7538db1 1096 }
fcc8e047 1097
a7538db1 1098/* If we haven't authenticated, but are required to, give up. */
fcc8e047 1099
a7538db1
JH
1100if (require_auth == OK && !smtp_authenticated)
1101 {
1102 set_errno(addrlist, ERRNO_AUTHFAIL,
1103 string_sprintf("authentication required but %s", fail_reason), DEFER,
c562fd30 1104 FALSE, NULL);
a7538db1
JH
1105 return DEFER;
1106 }
4d8d62b9 1107
a7538db1 1108return OK;
fcc8e047
JH
1109}
1110
1111
1112/* Construct AUTH appendix string for MAIL TO */
1113/*
1114Arguments
1115 buffer to build string
1116 addrlist chain of potential addresses to deliver
1117 ob transport options
1118
1119Globals smtp_authenticated
1120 client_authenticated_sender
1121Return True on error, otherwise buffer has (possibly empty) terminated string
1122*/
1123
1124BOOL
1125smtp_mail_auth_str(uschar *buffer, unsigned bufsize, address_item *addrlist,
1126 smtp_transport_options_block *ob)
1127{
1128uschar *local_authenticated_sender = authenticated_sender;
1129
1130#ifdef notdef
1131 debug_printf("smtp_mail_auth_str: as<%s> os<%s> SA<%s>\n", authenticated_sender, ob->authenticated_sender, smtp_authenticated?"Y":"N");
1132#endif
1133
1134if (ob->authenticated_sender != NULL)
1135 {
1136 uschar *new = expand_string(ob->authenticated_sender);
1137 if (new == NULL)
1138 {
1139 if (!expand_string_forcedfail)
1140 {
1141 uschar *message = string_sprintf("failed to expand "
1142 "authenticated_sender: %s", expand_string_message);
c562fd30 1143 set_errno(addrlist, 0, message, DEFER, FALSE, NULL);
fcc8e047
JH
1144 return TRUE;
1145 }
1146 }
1147 else if (new[0] != 0) local_authenticated_sender = new;
1148 }
1149
1150/* Add the authenticated sender address if present */
1151
1152if ((smtp_authenticated || ob->authenticated_sender_force) &&
1153 local_authenticated_sender != NULL)
1154 {
1155 string_format(buffer, bufsize, " AUTH=%s",
1156 auth_xtextencode(local_authenticated_sender,
1157 Ustrlen(local_authenticated_sender)));
1158 client_authenticated_sender = string_copy(local_authenticated_sender);
1159 }
1160else
1161 *buffer= 0;
1162
1163return FALSE;
1164}
1165
1166
1167
0e66b3b6
JH
1168#ifdef EXPERIMENTAL_DANE
1169int
b8b1b5cb 1170tlsa_lookup(const host_item * host, dns_answer * dnsa,
0e66b3b6
JH
1171 BOOL dane_required, BOOL * dane)
1172{
1173/* move this out to host.c given the similarity to dns_lookup() ? */
1174uschar buffer[300];
1175uschar * fullname = buffer;
1176
1177/* TLSA lookup string */
1178(void)sprintf(CS buffer, "_%d._tcp.%.256s", host->port, host->name);
1179
1180switch (dns_lookup(dnsa, buffer, T_TLSA, &fullname))
1181 {
1182 case DNS_AGAIN:
1183 return DEFER; /* just defer this TLS'd conn */
1184
1185 default:
1186 case DNS_FAIL:
1187 if (dane_required)
1188 {
1189 log_write(0, LOG_MAIN, "DANE error: TLSA lookup failed");
1190 return FAIL;
1191 }
1192 break;
1193
1194 case DNS_SUCCEED:
1195 if (!dns_is_secure(dnsa))
1196 {
1197 log_write(0, LOG_MAIN, "DANE error: TLSA lookup not DNSSEC");
1198 return DEFER;
1199 }
1200 *dane = TRUE;
1201 break;
1202 }
1203return OK;
1204}
1205#endif
1206
1207
0756eb3c
PH
1208/*************************************************
1209* Deliver address list to given host *
1210*************************************************/
1211
1212/* If continue_hostname is not null, we get here only when continuing to
1213deliver down an existing channel. The channel was passed as the standard
6c512171
PH
1214input. TLS is never active on a passed channel; the previous process always
1215closes it down before passing the connection on.
0756eb3c
PH
1216
1217Otherwise, we have to make a connection to the remote host, and do the
1218initial protocol exchange.
1219
1220When running as an MUA wrapper, if the sender or any recipient is rejected,
1221temporarily or permanently, we force failure for all recipients.
1222
1223Arguments:
1224 addrlist chain of potential addresses to deliver; only those whose
1225 transport_return field is set to PENDING_DEFER are currently
1226 being processed; others should be skipped - they have either
1227 been delivered to an earlier host or IP address, or been
1228 failed by one of them.
1229 host host to deliver to
1230 host_af AF_INET or AF_INET6
2d280592 1231 port default TCP/IP port to use, in host byte order
0756eb3c
PH
1232 interface interface to bind to, or NULL
1233 tblock transport instance block
0756eb3c
PH
1234 message_defer set TRUE if yield is OK, but all addresses were deferred
1235 because of a non-recipient, non-host failure, that is, a
1236 4xx response to MAIL FROM, DATA, or ".". This is a defer
1237 that is specific to the message.
1238 suppress_tls if TRUE, don't attempt a TLS connection - this is set for
1239 a second attempt after TLS initialization fails
1240
1241Returns: OK - the connection was made and the delivery attempted;
1242 the result for each address is in its data block.
1243 DEFER - the connection could not be made, or something failed
1244 while setting up the SMTP session, or there was a
1245 non-message-specific error, such as a timeout.
1246 ERROR - a filter command is specified for this transport,
1247 and there was a problem setting it up; OR helo_data
1248 or add_headers or authenticated_sender is specified
1249 for this transport, and the string failed to expand
1250*/
1251
1252static int
1253smtp_deliver(address_item *addrlist, host_item *host, int host_af, int port,
d427a7f9 1254 uschar *interface, transport_instance *tblock,
0756eb3c
PH
1255 BOOL *message_defer, BOOL suppress_tls)
1256{
1257address_item *addr;
1258address_item *sync_addr;
1259address_item *first_addr = addrlist;
1260int yield = OK;
1261int address_count;
1262int save_errno;
1263int rc;
1264time_t start_delivery_time = time(NULL);
1265smtp_transport_options_block *ob =
1266 (smtp_transport_options_block *)(tblock->options_block);
1267BOOL lmtp = strcmpic(ob->protocol, US"lmtp") == 0;
061b7ebd 1268BOOL smtps = strcmpic(ob->protocol, US"smtps") == 0;
0756eb3c
PH
1269BOOL ok = FALSE;
1270BOOL send_rset = TRUE;
1271BOOL send_quit = TRUE;
1272BOOL setting_up = TRUE;
1273BOOL completed_address = FALSE;
1274BOOL esmtp = TRUE;
1275BOOL pending_MAIL;
447d236c 1276BOOL pass_message = FALSE;
8ccd00b1 1277#ifndef DISABLE_PRDR
fd98a5c6
JH
1278BOOL prdr_offered = FALSE;
1279BOOL prdr_active;
1280#endif
6c1c3d1d
WB
1281#ifdef EXPERIMENTAL_DSN
1282BOOL dsn_all_lasthop = TRUE;
1283#endif
0e66b3b6
JH
1284#if defined(SUPPORT_TLS) && defined(EXPERIMENTAL_DANE)
1285BOOL dane = FALSE;
1286dns_answer tlsa_dnsa;
1287#endif
0756eb3c
PH
1288smtp_inblock inblock;
1289smtp_outblock outblock;
1290int max_rcpt = tblock->max_addresses;
f1513293 1291uschar *igquotstr = US"";
41c7c167 1292uschar *helo_data = NULL;
0756eb3c
PH
1293uschar *message = NULL;
1294uschar new_message_id[MESSAGE_ID_LENGTH + 1];
1295uschar *p;
1296uschar buffer[4096];
1297uschar inbuffer[4096];
98470202 1298uschar outbuffer[4096];
0756eb3c
PH
1299
1300suppress_tls = suppress_tls; /* stop compiler warning when no TLS support */
1301
1302*message_defer = FALSE;
1303smtp_command = US"initial connection";
1304if (max_rcpt == 0) max_rcpt = 999999;
1305
1306/* Set up the buffer for reading SMTP response packets. */
1307
1308inblock.buffer = inbuffer;
1309inblock.buffersize = sizeof(inbuffer);
1310inblock.ptr = inbuffer;
1311inblock.ptrend = inbuffer;
1312
1313/* Set up the buffer for holding SMTP commands while pipelining */
1314
1315outblock.buffer = outbuffer;
1316outblock.buffersize = sizeof(outbuffer);
1317outblock.ptr = outbuffer;
1318outblock.cmd_count = 0;
1319outblock.authenticating = FALSE;
1320
6c512171
PH
1321/* Reset the parameters of a TLS session. */
1322
817d9f57
JH
1323tls_out.bits = 0;
1324tls_out.cipher = NULL; /* the one we may use for this transport */
9d1c15ef
JH
1325tls_out.ourcert = NULL;
1326tls_out.peercert = NULL;
817d9f57
JH
1327tls_out.peerdn = NULL;
1328#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
1329tls_out.sni = NULL;
5b456975 1330#endif
018058b2 1331tls_out.ocsp = OCSP_NOT_REQ;
6c512171 1332
35aba663
JH
1333/* Flip the legacy TLS-related variables over to the outbound set in case
1334they're used in the context of the transport. Don't bother resetting
1335afterward as we're in a subprocess. */
1336
1337tls_modify_variables(&tls_out);
1338
061b7ebd
PP
1339#ifndef SUPPORT_TLS
1340if (smtps)
1341 {
c562fd30 1342 set_errno(addrlist, 0, US"TLS support not available", DEFER, FALSE, NULL);
018058b2 1343 return ERROR;
061b7ebd
PP
1344 }
1345#endif
1346
0756eb3c
PH
1347/* Make a connection to the host if this isn't a continued delivery, and handle
1348the initial interaction and HELO/EHLO/LHLO. Connect timeout errors are handled
1349specially so they can be identified for retries. */
1350
1351if (continue_hostname == NULL)
1352 {
a7538db1 1353 /* This puts port into host->port */
0756eb3c
PH
1354 inblock.sock = outblock.sock =
1355 smtp_connect(host, host_af, port, interface, ob->connect_timeout,
a7538db1 1356 ob->keepalive, ob->dscp
774ef2d7
JH
1357#ifdef EXPERIMENTAL_EVENT
1358 , tblock->event_action
a7538db1
JH
1359#endif
1360 );
4311097e 1361
0756eb3c
PH
1362 if (inblock.sock < 0)
1363 {
1364 set_errno(addrlist, (errno == ETIMEDOUT)? ERRNO_CONNECTTIMEOUT : errno,
c562fd30 1365 NULL, DEFER, FALSE, NULL);
0756eb3c
PH
1366 return DEFER;
1367 }
1368
0e66b3b6
JH
1369#if defined(SUPPORT_TLS) && defined(EXPERIMENTAL_DANE)
1370 {
1371 BOOL dane_required;
1372
1373 tls_out.dane_verified = FALSE;
1374 tls_out.tlsa_usage = 0;
1375
5130845b 1376 dane_required = verify_check_given_host(&ob->hosts_require_dane, host) == OK;
0e66b3b6
JH
1377
1378 if (host->dnssec == DS_YES)
1379 {
1380 if( dane_required
5130845b 1381 || verify_check_given_host(&ob->hosts_try_dane, host) == OK
0e66b3b6
JH
1382 )
1383 if ((rc = tlsa_lookup(host, &tlsa_dnsa, dane_required, &dane)) != OK)
1384 return rc;
1385 }
1386 else if (dane_required)
1387 {
1388 log_write(0, LOG_MAIN, "DANE error: %s lookup not DNSSEC", host->name);
1389 return FAIL;
1390 }
1391
1392 if (dane)
1393 ob->tls_tempfail_tryclear = FALSE;
1394 }
1395#endif /*DANE*/
1396
41c7c167
PH
1397 /* Expand the greeting message while waiting for the initial response. (Makes
1398 sense if helo_data contains ${lookup dnsdb ...} stuff). The expansion is
1399 delayed till here so that $sending_interface and $sending_port are set. */
1400
1401 helo_data = expand_string(ob->helo_data);
1402
0756eb3c
PH
1403 /* The first thing is to wait for an initial OK response. The dreaded "goto"
1404 is nevertheless a reasonably clean way of programming this kind of logic,
1405 where you want to escape on any error. */
1406
061b7ebd
PP
1407 if (!smtps)
1408 {
1409 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
1410 ob->command_timeout)) goto RESPONSE_FAILED;
0756eb3c 1411
774ef2d7 1412#ifdef EXPERIMENTAL_EVENT
b30275b8 1413 {
805c9d53
JH
1414 uschar * s;
1415 lookup_dnssec_authenticated = host->dnssec==DS_YES ? US"yes"
1416 : host->dnssec==DS_NO ? US"no" : NULL;
1417 s = event_raise(tblock->event_action, US"smtp:connect", buffer);
b30275b8 1418 if (s)
a7538db1 1419 {
b30275b8
JH
1420 set_errno(addrlist, 0,
1421 string_sprintf("deferred by smtp:connect event expansion: %s", s),
1422 DEFER, FALSE, NULL);
a7538db1
JH
1423 yield = DEFER;
1424 goto SEND_QUIT;
1425 }
b30275b8 1426 }
a7538db1
JH
1427#endif
1428
061b7ebd
PP
1429 /* Now check if the helo_data expansion went well, and sign off cleanly if
1430 it didn't. */
41c7c167 1431
061b7ebd
PP
1432 if (helo_data == NULL)
1433 {
1434 uschar *message = string_sprintf("failed to expand helo_data: %s",
1435 expand_string_message);
c562fd30 1436 set_errno(addrlist, 0, message, DEFER, FALSE, NULL);
061b7ebd
PP
1437 yield = DEFER;
1438 goto SEND_QUIT;
1439 }
41c7c167
PH
1440 }
1441
0756eb3c
PH
1442/** Debugging without sending a message
1443addrlist->transport_return = DEFER;
1444goto SEND_QUIT;
1445**/
1446
1447 /* Errors that occur after this point follow an SMTP command, which is
1448 left in big_buffer by smtp_write_command() for use in error messages. */
1449
1450 smtp_command = big_buffer;
1451
1452 /* Tell the remote who we are...
1453
1454 February 1998: A convention has evolved that ESMTP-speaking MTAs include the
1455 string "ESMTP" in their greeting lines, so make Exim send EHLO if the
1456 greeting is of this form. The assumption was that the far end supports it
1457 properly... but experience shows that there are some that give 5xx responses,
1458 even though the banner includes "ESMTP" (there's a bloody-minded one that
1459 says "ESMTP not spoken here"). Cope with that case.
1460
1461 September 2000: Time has passed, and it seems reasonable now to always send
1462 EHLO at the start. It is also convenient to make the change while installing
1463 the TLS stuff.
1464
1465 July 2003: Joachim Wieland met a broken server that advertises "PIPELINING"
1466 but times out after sending MAIL FROM, RCPT TO and DATA all together. There
1467 would be no way to send out the mails, so there is now a host list
1468 "hosts_avoid_esmtp" that disables ESMTP for special hosts and solves the
1469 PIPELINING problem as well. Maybe it can also be useful to cure other
1470 problems with broken servers.
1471
1472 Exim originally sent "Helo" at this point and ran for nearly a year that way.
1473 Then somebody tried it with a Microsoft mailer... It seems that all other
1474 mailers use upper case for some reason (the RFC is quite clear about case
1475 independence) so, for peace of mind, I gave in. */
1476
5130845b 1477 esmtp = verify_check_given_host(&ob->hosts_avoid_esmtp, host) != OK;
0756eb3c 1478
061b7ebd
PP
1479 /* Alas; be careful, since this goto is not an error-out, so conceivably
1480 we might set data between here and the target which we assume to exist
1481 and be usable. I can see this coming back to bite us. */
a7538db1 1482#ifdef SUPPORT_TLS
061b7ebd
PP
1483 if (smtps)
1484 {
1485 tls_offered = TRUE;
1486 suppress_tls = FALSE;
1487 ob->tls_tempfail_tryclear = FALSE;
1488 smtp_command = US"SSL-on-connect";
1489 goto TLS_NEGOTIATE;
1490 }
a7538db1 1491#endif
061b7ebd 1492
0756eb3c
PH
1493 if (esmtp)
1494 {
1495 if (smtp_write_command(&outblock, FALSE, "%s %s\r\n",
1496 lmtp? "LHLO" : "EHLO", helo_data) < 0)
1497 goto SEND_FAILED;
1498 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
1499 ob->command_timeout))
1500 {
1501 if (errno != 0 || buffer[0] == 0 || lmtp) goto RESPONSE_FAILED;
1502 esmtp = FALSE;
1503 }
1504 }
1505 else
1506 {
1507 DEBUG(D_transport)
1508 debug_printf("not sending EHLO (host matches hosts_avoid_esmtp)\n");
1509 }
1510
1511 if (!esmtp)
1512 {
1513 if (smtp_write_command(&outblock, FALSE, "HELO %s\r\n", helo_data) < 0)
1514 goto SEND_FAILED;
1515 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
1516 ob->command_timeout)) goto RESPONSE_FAILED;
1517 }
1518
f1513293
PH
1519 /* Set IGNOREQUOTA if the response to LHLO specifies support and the
1520 lmtp_ignore_quota option was set. */
1521
1522 igquotstr = (lmtp && ob->lmtp_ignore_quota &&
1523 pcre_exec(regex_IGNOREQUOTA, NULL, CS buffer, Ustrlen(CS buffer), 0,
1524 PCRE_EOPT, NULL, 0) >= 0)? US" IGNOREQUOTA" : US"";
1525
0756eb3c
PH
1526 /* Set tls_offered if the response to EHLO specifies support for STARTTLS. */
1527
a7538db1 1528#ifdef SUPPORT_TLS
0756eb3c
PH
1529 tls_offered = esmtp &&
1530 pcre_exec(regex_STARTTLS, NULL, CS buffer, Ustrlen(buffer), 0,
1531 PCRE_EOPT, NULL, 0) >= 0;
a7538db1 1532#endif
fd98a5c6 1533
a7538db1 1534#ifndef DISABLE_PRDR
5130845b
JH
1535 prdr_offered = esmtp
1536 && pcre_exec(regex_PRDR, NULL, CS buffer, Ustrlen(buffer), 0,
1537 PCRE_EOPT, NULL, 0) >= 0
1538 && verify_check_given_host(&ob->hosts_try_prdr, host) == OK;
fd98a5c6
JH
1539
1540 if (prdr_offered)
1541 {DEBUG(D_transport) debug_printf("PRDR usable\n");}
a7538db1 1542#endif
0756eb3c
PH
1543 }
1544
1545/* For continuing deliveries down the same channel, the socket is the standard
1546input, and we don't need to redo EHLO here (but may need to do so for TLS - see
1547below). Set up the pointer to where subsequent commands will be left, for
1548error messages. Note that smtp_use_size and smtp_use_pipelining will have been
1549set from the command line if they were set in the process that passed the
1550connection on. */
1551
1552else
1553 {
1554 inblock.sock = outblock.sock = fileno(stdin);
1555 smtp_command = big_buffer;
4311097e 1556 host->port = port; /* Record the port that was used */
0756eb3c
PH
1557 }
1558
1559/* If TLS is available on this connection, whether continued or not, attempt to
1560start up a TLS session, unless the host is in hosts_avoid_tls. If successful,
1561send another EHLO - the server may give a different answer in secure mode. We
1562use a separate buffer for reading the response to STARTTLS so that if it is
1563negative, the original EHLO data is available for subsequent analysis, should
1564the client not be required to use TLS. If the response is bad, copy the buffer
1565for error analysis. */
1566
1567#ifdef SUPPORT_TLS
5130845b
JH
1568if ( tls_offered
1569 && !suppress_tls
1570 && verify_check_given_host(&ob->hosts_avoid_tls, host) != OK)
0756eb3c
PH
1571 {
1572 uschar buffer2[4096];
1573 if (smtp_write_command(&outblock, FALSE, "STARTTLS\r\n") < 0)
1574 goto SEND_FAILED;
1575
1576 /* If there is an I/O error, transmission of this message is deferred. If
1577 there is a temporary rejection of STARRTLS and tls_tempfail_tryclear is
1578 false, we also defer. However, if there is a temporary rejection of STARTTLS
1579 and tls_tempfail_tryclear is true, or if there is an outright rejection of
1580 STARTTLS, we carry on. This means we will try to send the message in clear,
1581 unless the host is in hosts_require_tls (tested below). */
1582
1583 if (!smtp_read_response(&inblock, buffer2, sizeof(buffer2), '2',
1584 ob->command_timeout))
1585 {
0756eb3c
PH
1586 if (errno != 0 || buffer2[0] == 0 ||
1587 (buffer2[0] == '4' && !ob->tls_tempfail_tryclear))
0dda4340
TK
1588 {
1589 Ustrncpy(buffer, buffer2, sizeof(buffer));
0756eb3c 1590 goto RESPONSE_FAILED;
0dda4340 1591 }
0756eb3c
PH
1592 }
1593
1594 /* STARTTLS accepted: try to negotiate a TLS session. */
1595
1596 else
061b7ebd 1597 TLS_NEGOTIATE:
0756eb3c 1598 {
0e66b3b6
JH
1599 int rc = tls_client_start(inblock.sock, host, addrlist, tblock
1600# ifdef EXPERIMENTAL_DANE
1601 , dane ? &tlsa_dnsa : NULL
1602# endif
1603 );
0756eb3c
PH
1604
1605 /* TLS negotiation failed; give an error. From outside, this function may
1606 be called again to try in clear on a new connection, if the options permit
1607 it for this host. */
1608
1609 if (rc != OK)
1610 {
1611 save_errno = ERRNO_TLSFAILURE;
1612 message = US"failure while setting up TLS session";
1613 send_quit = FALSE;
1614 goto TLS_FAILED;
1615 }
1616
1617 /* TLS session is set up */
1618
1619 for (addr = addrlist; addr != NULL; addr = addr->next)
5ca2a9a1
PH
1620 if (addr->transport_return == PENDING_DEFER)
1621 {
817d9f57 1622 addr->cipher = tls_out.cipher;
9d1c15ef
JH
1623 addr->ourcert = tls_out.ourcert;
1624 addr->peercert = tls_out.peercert;
817d9f57 1625 addr->peerdn = tls_out.peerdn;
018058b2 1626 addr->ocsp = tls_out.ocsp;
5ca2a9a1 1627 }
0756eb3c
PH
1628 }
1629 }
1630
061b7ebd
PP
1631/* if smtps, we'll have smtp_command set to something else; always safe to
1632reset it here. */
1633smtp_command = big_buffer;
1634
41c7c167
PH
1635/* If we started TLS, redo the EHLO/LHLO exchange over the secure channel. If
1636helo_data is null, we are dealing with a connection that was passed from
1637another process, and so we won't have expanded helo_data above. We have to
1638expand it here. $sending_ip_address and $sending_port are set up right at the
1639start of the Exim process (in exim.c). */
0756eb3c 1640
817d9f57 1641if (tls_out.active >= 0)
0756eb3c 1642 {
061b7ebd 1643 char *greeting_cmd;
41c7c167
PH
1644 if (helo_data == NULL)
1645 {
1646 helo_data = expand_string(ob->helo_data);
1647 if (helo_data == NULL)
1648 {
1649 uschar *message = string_sprintf("failed to expand helo_data: %s",
1650 expand_string_message);
c562fd30 1651 set_errno(addrlist, 0, message, DEFER, FALSE, NULL);
41c7c167
PH
1652 yield = DEFER;
1653 goto SEND_QUIT;
1654 }
1655 }
1656
0d0e4455 1657 /* For SMTPS we need to wait for the initial OK response. */
061b7ebd
PP
1658 if (smtps)
1659 {
1660 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
1661 ob->command_timeout)) goto RESPONSE_FAILED;
0d0e4455
PP
1662 }
1663
1664 if (esmtp)
1665 greeting_cmd = "EHLO";
1666 else
1667 {
1668 greeting_cmd = "HELO";
1669 DEBUG(D_transport)
1670 debug_printf("not sending EHLO (host matches hosts_avoid_esmtp)\n");
061b7ebd
PP
1671 }
1672
1673 if (smtp_write_command(&outblock, FALSE, "%s %s\r\n",
1674 lmtp? "LHLO" : greeting_cmd, helo_data) < 0)
0756eb3c
PH
1675 goto SEND_FAILED;
1676 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
1677 ob->command_timeout))
1678 goto RESPONSE_FAILED;
1679 }
1680
1681/* If the host is required to use a secure channel, ensure that we
1682have one. */
1683
0e66b3b6
JH
1684else if (
1685# ifdef EXPERIMENTAL_DANE
1686 dane ||
1687# endif
5130845b 1688 verify_check_given_host(&ob->hosts_require_tls, host) == OK
7a31d643 1689 )
0756eb3c
PH
1690 {
1691 save_errno = ERRNO_TLSREQUIRED;
c562fd30 1692 message = string_sprintf("a TLS session is required, but %s",
0756eb3c
PH
1693 tls_offered? "an attempt to start TLS failed" :
1694 "the server did not offer TLS support");
1695 goto TLS_FAILED;
1696 }
0e66b3b6 1697#endif /*SUPPORT_TLS*/
0756eb3c
PH
1698
1699/* If TLS is active, we have just started it up and re-done the EHLO command,
1700so its response needs to be analyzed. If TLS is not active and this is a
1701continued session down a previously-used socket, we haven't just done EHLO, so
1702we skip this. */
1703
1704if (continue_hostname == NULL
a7538db1 1705#ifdef SUPPORT_TLS
817d9f57 1706 || tls_out.active >= 0
a7538db1 1707#endif
0756eb3c
PH
1708 )
1709 {
f1513293
PH
1710 /* Set for IGNOREQUOTA if the response to LHLO specifies support and the
1711 lmtp_ignore_quota option was set. */
1712
1713 igquotstr = (lmtp && ob->lmtp_ignore_quota &&
1714 pcre_exec(regex_IGNOREQUOTA, NULL, CS buffer, Ustrlen(CS buffer), 0,
1715 PCRE_EOPT, NULL, 0) >= 0)? US" IGNOREQUOTA" : US"";
1716
0756eb3c
PH
1717 /* If the response to EHLO specified support for the SIZE parameter, note
1718 this, provided size_addition is non-negative. */
1719
1720 smtp_use_size = esmtp && ob->size_addition >= 0 &&
1721 pcre_exec(regex_SIZE, NULL, CS buffer, Ustrlen(CS buffer), 0,
1722 PCRE_EOPT, NULL, 0) >= 0;
1723
1724 /* Note whether the server supports PIPELINING. If hosts_avoid_esmtp matched
c51b8e75
PH
1725 the current host, esmtp will be false, so PIPELINING can never be used. If
1726 the current host matches hosts_avoid_pipelining, don't do it. */
0756eb3c 1727
5130845b
JH
1728 smtp_use_pipelining = esmtp
1729 && verify_check_given_host(&ob->hosts_avoid_pipelining, host) != OK
1730 && pcre_exec(regex_PIPELINING, NULL, CS buffer, Ustrlen(CS buffer), 0,
1731 PCRE_EOPT, NULL, 0) >= 0;
0756eb3c
PH
1732
1733 DEBUG(D_transport) debug_printf("%susing PIPELINING\n",
1734 smtp_use_pipelining? "" : "not ");
1735
8ccd00b1 1736#ifndef DISABLE_PRDR
5130845b
JH
1737 prdr_offered = esmtp
1738 && pcre_exec(regex_PRDR, NULL, CS buffer, Ustrlen(CS buffer), 0,
1739 PCRE_EOPT, NULL, 0) >= 0
1740 && verify_check_given_host(&ob->hosts_try_prdr, host) == OK;
fd98a5c6
JH
1741
1742 if (prdr_offered)
1743 {DEBUG(D_transport) debug_printf("PRDR usable\n");}
1744#endif
1745
6c1c3d1d
WB
1746#ifdef EXPERIMENTAL_DSN
1747 /* Note if the server supports DSN */
1748 smtp_use_dsn = esmtp && pcre_exec(regex_DSN, NULL, CS buffer, (int)Ustrlen(CS buffer), 0,
1749 PCRE_EOPT, NULL, 0) >= 0;
1750 DEBUG(D_transport) debug_printf("use_dsn=%d\n", smtp_use_dsn);
1751#endif
1752
0756eb3c
PH
1753 /* Note if the response to EHLO specifies support for the AUTH extension.
1754 If it has, check that this host is one we want to authenticate to, and do
1755 the business. The host name and address must be available when the
1756 authenticator's client driver is running. */
1757
fcc8e047
JH
1758 switch (yield = smtp_auth(buffer, sizeof(buffer), addrlist, host,
1759 ob, esmtp, &inblock, &outblock))
0756eb3c 1760 {
fcc8e047
JH
1761 default: goto SEND_QUIT;
1762 case OK: break;
1763 case FAIL_SEND: goto SEND_FAILED;
1764 case FAIL: goto RESPONSE_FAILED;
0756eb3c
PH
1765 }
1766 }
1767
1768/* The setting up of the SMTP call is now complete. Any subsequent errors are
1769message-specific. */
1770
1771setting_up = FALSE;
1772
1773/* If there is a filter command specified for this transport, we can now
1774set it up. This cannot be done until the identify of the host is known. */
1775
1776if (tblock->filter_command != NULL)
1777 {
1778 BOOL rc;
1779 uschar buffer[64];
1780 sprintf(CS buffer, "%.50s transport", tblock->name);
1781 rc = transport_set_up_command(&transport_filter_argv, tblock->filter_command,
1782 TRUE, DEFER, addrlist, buffer, NULL);
9b989985 1783 transport_filter_timeout = tblock->filter_timeout;
0756eb3c
PH
1784
1785 /* On failure, copy the error to all addresses, abandon the SMTP call, and
1786 yield ERROR. */
1787
1788 if (!rc)
1789 {
447d236c 1790 set_errno(addrlist->next, addrlist->basic_errno, addrlist->message, DEFER,
c562fd30 1791 FALSE, NULL);
0756eb3c
PH
1792 yield = ERROR;
1793 goto SEND_QUIT;
1794 }
1795 }
1796
1797
1798/* For messages that have more than the maximum number of envelope recipients,
1799we want to send several transactions down the same SMTP connection. (See
1800comments in deliver.c as to how this reconciles, heuristically, with
1801remote_max_parallel.) This optimization was added to Exim after the following
1802code was already working. The simplest way to put it in without disturbing the
1803code was to use a goto to jump back to this point when there is another
1804transaction to handle. */
1805
1806SEND_MESSAGE:
1807sync_addr = first_addr;
1808address_count = 0;
1809ok = FALSE;
1810send_rset = TRUE;
1811completed_address = FALSE;
1812
1813
1814/* Initiate a message transfer. If we know the receiving MTA supports the SIZE
1815qualification, send it, adding something to the message size to allow for
1816imprecision and things that get added en route. Exim keeps the number of lines
1817in a message, so we can give an accurate value for the original message, but we
1818need some additional to handle added headers. (Double "." characters don't get
1819included in the count.) */
1820
1821p = buffer;
1822*p = 0;
1823
1824if (smtp_use_size)
1825 {
1826 sprintf(CS p, " SIZE=%d", message_size+message_linecount+ob->size_addition);
1827 while (*p) p++;
1828 }
1829
8ccd00b1 1830#ifndef DISABLE_PRDR
fd98a5c6
JH
1831prdr_active = FALSE;
1832if (prdr_offered)
1833 {
1834 for (addr = first_addr; addr; addr = addr->next)
1835 if (addr->transport_return == PENDING_DEFER)
1836 {
1837 for (addr = addr->next; addr; addr = addr->next)
1838 if (addr->transport_return == PENDING_DEFER)
1839 { /* at least two recipients to send */
1840 prdr_active = TRUE;
1841 sprintf(CS p, " PRDR"); p += 5;
a7538db1 1842 break;
fd98a5c6
JH
1843 }
1844 break;
1845 }
1846 }
fd98a5c6
JH
1847#endif
1848
6c1c3d1d
WB
1849#ifdef EXPERIMENTAL_DSN
1850/* check if all addresses have lasthop flag */
1851/* do not send RET and ENVID if true */
1852dsn_all_lasthop = TRUE;
1853for (addr = first_addr;
1854 address_count < max_rcpt && addr != NULL;
1855 addr = addr->next)
1856 if ((addr->dsn_flags & rf_dsnlasthop) != 1)
1857 dsn_all_lasthop = FALSE;
1858
1859/* Add any DSN flags to the mail command */
1860
1861if ((smtp_use_dsn) && (dsn_all_lasthop == FALSE))
1862 {
1863 if (dsn_ret == dsn_ret_hdrs)
1864 {
45500060 1865 Ustrcpy(p, " RET=HDRS");
6c1c3d1d
WB
1866 while (*p) p++;
1867 }
1868 else if (dsn_ret == dsn_ret_full)
1869 {
45500060 1870 Ustrcpy(p, " RET=FULL");
6c1c3d1d
WB
1871 while (*p) p++;
1872 }
1873 if (dsn_envid != NULL)
1874 {
1875 string_format(p, sizeof(buffer) - (p-buffer), " ENVID=%s", dsn_envid);
1876 while (*p) p++;
1877 }
1878 }
1879#endif
1880
6b62e899
JH
1881/* If an authenticated_sender override has been specified for this transport
1882instance, expand it. If the expansion is forced to fail, and there was already
1883an authenticated_sender for this message, the original value will be used.
1884Other expansion failures are serious. An empty result is ignored, but there is
1885otherwise no check - this feature is expected to be used with LMTP and other
1886cases where non-standard addresses (e.g. without domains) might be required. */
1887
fcc8e047 1888if (smtp_mail_auth_str(p, sizeof(buffer) - (p-buffer), addrlist, ob))
a7538db1
JH
1889 {
1890 yield = ERROR;
1891 goto SEND_QUIT;
1892 }
0756eb3c
PH
1893
1894/* From here until we send the DATA command, we can make use of PIPELINING
1895if the server host supports it. The code has to be able to check the responses
1896at any point, for when the buffer fills up, so we write it totally generally.
1897When PIPELINING is off, each command written reports that it has flushed the
1898buffer. */
1899
1900pending_MAIL = TRUE; /* The block starts with MAIL */
1901
1902rc = smtp_write_command(&outblock, smtp_use_pipelining,
1903 "MAIL FROM:<%s>%s\r\n", return_path, buffer);
1904mail_command = string_copy(big_buffer); /* Save for later error message */
1905
1906switch(rc)
1907 {
1908 case -1: /* Transmission error */
1909 goto SEND_FAILED;
1910
1911 case +1: /* Block was sent */
1912 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
e97957bc
PH
1913 ob->command_timeout))
1914 {
1915 if (errno == 0 && buffer[0] == '4')
1916 {
1917 errno = ERRNO_MAIL4XX;
1918 addrlist->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
1919 }
1920 goto RESPONSE_FAILED;
1921 }
0756eb3c
PH
1922 pending_MAIL = FALSE;
1923 break;
1924 }
1925
1926/* Pass over all the relevant recipient addresses for this host, which are the
1927ones that have status PENDING_DEFER. If we are using PIPELINING, we can send
1928several before we have to read the responses for those seen so far. This
1929checking is done by a subroutine because it also needs to be done at the end.
1930Send only up to max_rcpt addresses at a time, leaving first_addr pointing to
1931the next one if not all are sent.
1932
1933In the MUA wrapper situation, we want to flush the PIPELINING buffer for the
1934last address because we want to abort if any recipients have any kind of
1935problem, temporary or permanent. We know that all recipient addresses will have
1936the PENDING_DEFER status, because only one attempt is ever made, and we know
1937that max_rcpt will be large, so all addresses will be done at once. */
1938
1939for (addr = first_addr;
1940 address_count < max_rcpt && addr != NULL;
1941 addr = addr->next)
1942 {
1943 int count;
1944 BOOL no_flush;
1945
a7538db1
JH
1946#ifdef EXPERIMENTAL_DSN
1947 addr->dsn_aware = smtp_use_dsn ? dsn_support_yes : dsn_support_no;
1948#endif
6c1c3d1d 1949
0756eb3c
PH
1950 if (addr->transport_return != PENDING_DEFER) continue;
1951
1952 address_count++;
1953 no_flush = smtp_use_pipelining && (!mua_wrapper || addr->next != NULL);
1954
a7538db1 1955#ifdef EXPERIMENTAL_DSN
6c1c3d1d
WB
1956 /* Add any DSN flags to the rcpt command and add to the sent string */
1957
1958 p = buffer;
1959 *p = 0;
1960
a7538db1 1961 if (smtp_use_dsn && (addr->dsn_flags & rf_dsnlasthop) != 1)
6c1c3d1d
WB
1962 {
1963 if ((addr->dsn_flags & rf_dsnflags) != 0)
1964 {
1965 int i;
1966 BOOL first = TRUE;
45500060 1967 Ustrcpy(p, " NOTIFY=");
6c1c3d1d
WB
1968 while (*p) p++;
1969 for (i = 0; i < 4; i++)
6c1c3d1d
WB
1970 if ((addr->dsn_flags & rf_list[i]) != 0)
1971 {
1972 if (!first) *p++ = ',';
1973 first = FALSE;
45500060 1974 Ustrcpy(p, rf_names[i]);
6c1c3d1d
WB
1975 while (*p) p++;
1976 }
6c1c3d1d
WB
1977 }
1978
a7538db1
JH
1979 if (addr->dsn_orcpt != NULL)
1980 {
6c1c3d1d
WB
1981 string_format(p, sizeof(buffer) - (p-buffer), " ORCPT=%s",
1982 addr->dsn_orcpt);
1983 while (*p) p++;
1984 }
1985 }
a7538db1 1986#endif
6c1c3d1d
WB
1987
1988
0756eb3c
PH
1989 /* Now send the RCPT command, and process outstanding responses when
1990 necessary. After a timeout on RCPT, we just end the function, leaving the
1991 yield as OK, because this error can often mean that there is a problem with
1992 just one address, so we don't want to delay the host. */
1993
a7538db1 1994#ifdef EXPERIMENTAL_DSN
6c1c3d1d
WB
1995 count = smtp_write_command(&outblock, no_flush, "RCPT TO:<%s>%s%s\r\n",
1996 transport_rcpt_address(addr, tblock->rcpt_include_affixes), igquotstr, buffer);
a7538db1 1997#else
f1513293
PH
1998 count = smtp_write_command(&outblock, no_flush, "RCPT TO:<%s>%s\r\n",
1999 transport_rcpt_address(addr, tblock->rcpt_include_affixes), igquotstr);
a7538db1 2000#endif
6c1c3d1d 2001
0756eb3c
PH
2002 if (count < 0) goto SEND_FAILED;
2003 if (count > 0)
2004 {
2005 switch(sync_responses(first_addr, tblock->rcpt_include_affixes,
48c7f9e2
PH
2006 &sync_addr, host, count, ob->address_retry_include_sender,
2007 pending_MAIL, 0, &inblock, ob->command_timeout, buffer,
2008 sizeof(buffer)))
0756eb3c
PH
2009 {
2010 case 3: ok = TRUE; /* 2xx & 5xx => OK & progress made */
2011 case 2: completed_address = TRUE; /* 5xx (only) => progress made */
2012 break;
2013
2014 case 1: ok = TRUE; /* 2xx (only) => OK, but if LMTP, */
2015 if (!lmtp) completed_address = TRUE; /* can't tell about progress yet */
2016 case 0: /* No 2xx or 5xx, but no probs */
2017 break;
2018
2019 case -1: goto END_OFF; /* Timeout on RCPT */
2020 default: goto RESPONSE_FAILED; /* I/O error, or any MAIL error */
2021 }
2022 pending_MAIL = FALSE; /* Dealt with MAIL */
2023 }
2024 } /* Loop for next address */
2025
2026/* If we are an MUA wrapper, abort if any RCPTs were rejected, either
2027permanently or temporarily. We should have flushed and synced after the last
2028RCPT. */
2029
2030if (mua_wrapper)
2031 {
2032 address_item *badaddr;
2033 for (badaddr = first_addr; badaddr != NULL; badaddr = badaddr->next)
2034 {
2035 if (badaddr->transport_return != PENDING_OK) break;
2036 }
2037 if (badaddr != NULL)
2038 {
447d236c 2039 set_errno(addrlist, 0, badaddr->message, FAIL,
c562fd30 2040 testflag(badaddr, af_pass_message), NULL);
0756eb3c
PH
2041 ok = FALSE;
2042 }
2043 }
2044
2045/* If ok is TRUE, we know we have got at least one good recipient, and must now
2046send DATA, but if it is FALSE (in the normal, non-wrapper case), we may still
2047have a good recipient buffered up if we are pipelining. We don't want to waste
2048time sending DATA needlessly, so we only send it if either ok is TRUE or if we
2049are pipelining. The responses are all handled by sync_responses(). */
2050
2051if (ok || (smtp_use_pipelining && !mua_wrapper))
2052 {
2053 int count = smtp_write_command(&outblock, FALSE, "DATA\r\n");
2054 if (count < 0) goto SEND_FAILED;
2055 switch(sync_responses(first_addr, tblock->rcpt_include_affixes, &sync_addr,
48c7f9e2
PH
2056 host, count, ob->address_retry_include_sender, pending_MAIL,
2057 ok? +1 : -1, &inblock, ob->command_timeout, buffer, sizeof(buffer)))
0756eb3c
PH
2058 {
2059 case 3: ok = TRUE; /* 2xx & 5xx => OK & progress made */
2060 case 2: completed_address = TRUE; /* 5xx (only) => progress made */
2061 break;
2062
2063 case 1: ok = TRUE; /* 2xx (only) => OK, but if LMTP, */
2064 if (!lmtp) completed_address = TRUE; /* can't tell about progress yet */
2065 case 0: break; /* No 2xx or 5xx, but no probs */
2066
2067 case -1: goto END_OFF; /* Timeout on RCPT */
2068 default: goto RESPONSE_FAILED; /* I/O error, or any MAIL/DATA error */
2069 }
2070 }
2071
2072/* Save the first address of the next batch. */
2073
2074first_addr = addr;
2075
2076/* If there were no good recipients (but otherwise there have been no
2077problems), just set ok TRUE, since we have handled address-specific errors
2078already. Otherwise, it's OK to send the message. Use the check/escape mechanism
2079for handling the SMTP dot-handling protocol, flagging to apply to headers as
2080well as body. Set the appropriate timeout value to be used for each chunk.
2081(Haven't been able to make it work using select() for writing yet.) */
2082
2083if (!ok) ok = TRUE; else
2084 {
2085 sigalrm_seen = FALSE;
2086 transport_write_timeout = ob->data_timeout;
2087 smtp_command = US"sending data block"; /* For error messages */
2088 DEBUG(D_transport|D_v)
2089 debug_printf(" SMTP>> writing message and terminating \".\"\n");
2090 transport_count = 0;
a7538db1 2091
80a47a2c 2092#ifndef DISABLE_DKIM
4cd12fe9
TK
2093 ok = dkim_transport_write_message(addrlist, inblock.sock,
2094 topt_use_crlf | topt_end_dot | topt_escape_headers |
2095 (tblock->body_only? topt_no_headers : 0) |
2096 (tblock->headers_only? topt_no_body : 0) |
2097 (tblock->return_path_add? topt_add_return_path : 0) |
2098 (tblock->delivery_date_add? topt_add_delivery_date : 0) |
2099 (tblock->envelope_to_add? topt_add_envelope_to : 0),
2100 0, /* No size limit */
2101 tblock->add_headers, tblock->remove_headers,
2102 US".", US"..", /* Escaping strings */
2103 tblock->rewrite_rules, tblock->rewrite_existflags,
2104 ob->dkim_private_key, ob->dkim_domain, ob->dkim_selector,
80a47a2c 2105 ob->dkim_canon, ob->dkim_strict, ob->dkim_sign_headers
4cd12fe9
TK
2106 );
2107#else
0756eb3c
PH
2108 ok = transport_write_message(addrlist, inblock.sock,
2109 topt_use_crlf | topt_end_dot | topt_escape_headers |
2110 (tblock->body_only? topt_no_headers : 0) |
2111 (tblock->headers_only? topt_no_body : 0) |
2112 (tblock->return_path_add? topt_add_return_path : 0) |
2113 (tblock->delivery_date_add? topt_add_delivery_date : 0) |
2114 (tblock->envelope_to_add? topt_add_envelope_to : 0),
2115 0, /* No size limit */
2116 tblock->add_headers, tblock->remove_headers,
2117 US".", US"..", /* Escaping strings */
2118 tblock->rewrite_rules, tblock->rewrite_existflags);
4cd12fe9 2119#endif
0756eb3c
PH
2120
2121 /* transport_write_message() uses write() because it is called from other
2122 places to write to non-sockets. This means that under some OS (e.g. Solaris)
2123 it can exit with "Broken pipe" as its error. This really means that the
2124 socket got closed at the far end. */
2125
2126 transport_write_timeout = 0; /* for subsequent transports */
2127
2128 /* Failure can either be some kind of I/O disaster (including timeout),
2129 or the failure of a transport filter or the expansion of added headers. */
2130
2131 if (!ok)
2132 {
2133 buffer[0] = 0; /* There hasn't been a response */
2134 goto RESPONSE_FAILED;
2135 }
2136
2137 /* We used to send the terminating "." explicitly here, but because of
2138 buffering effects at both ends of TCP/IP connections, you don't gain
2139 anything by keeping it separate, so it might as well go in the final
2140 data buffer for efficiency. This is now done by setting the topt_end_dot
2141 flag above. */
2142
2143 smtp_command = US"end of data";
2144
8ccd00b1 2145#ifndef DISABLE_PRDR
fd98a5c6
JH
2146 /* For PRDR we optionally get a partial-responses warning
2147 * followed by the individual responses, before going on with
2148 * the overall response. If we don't get the warning then deal
2149 * with per non-PRDR. */
2150 if(prdr_active)
2151 {
2152 ok = smtp_read_response(&inblock, buffer, sizeof(buffer), '3',
2153 ob->final_timeout);
2154 if (!ok && errno == 0)
2155 switch(buffer[0])
2156 {
2157 case '2': prdr_active = FALSE;
2158 ok = TRUE;
2159 break;
2160 case '4': errno = ERRNO_DATA4XX;
2161 addrlist->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
2162 break;
2163 }
2164 }
2165 else
2166#endif
2167
2168 /* For non-PRDR SMTP, we now read a single response that applies to the
2169 whole message. If it is OK, then all the addresses have been delivered. */
0756eb3c 2170
e97957bc
PH
2171 if (!lmtp)
2172 {
2173 ok = smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
2174 ob->final_timeout);
2175 if (!ok && errno == 0 && buffer[0] == '4')
2176 {
2177 errno = ERRNO_DATA4XX;
2178 addrlist->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
2179 }
2180 }
0756eb3c
PH
2181
2182 /* For LMTP, we get back a response for every RCPT command that we sent;
2183 some may be accepted and some rejected. For those that get a response, their
2184 status is fixed; any that are accepted have been handed over, even if later
2185 responses crash - at least, that's how I read RFC 2033.
2186
2187 If all went well, mark the recipient addresses as completed, record which
2188 host/IPaddress they were delivered to, and cut out RSET when sending another
2189 message down the same channel. Write the completed addresses to the journal
2190 now so that they are recorded in case there is a crash of hardware or
2191 software before the spool gets updated. Also record the final SMTP
2192 confirmation if needed (for SMTP only). */
2193
2194 if (ok)
2195 {
2196 int flag = '=';
2197 int delivery_time = (int)(time(NULL) - start_delivery_time);
2198 int len;
0756eb3c
PH
2199 uschar *conf = NULL;
2200 send_rset = FALSE;
2201
0756eb3c
PH
2202 /* Set up confirmation if needed - applies only to SMTP */
2203
d68218c7 2204 if (
774ef2d7 2205#ifndef EXPERIMENTAL_EVENT
d68218c7 2206 (log_extra_selector & LX_smtp_confirmation) != 0 &&
a7538db1 2207#endif
d68218c7
JH
2208 !lmtp
2209 )
0756eb3c
PH
2210 {
2211 uschar *s = string_printing(buffer);
2212 conf = (s == buffer)? (uschar *)string_copy(s) : s;
2213 }
2214
fd98a5c6 2215 /* Process all transported addresses - for LMTP or PRDR, read a status for
0756eb3c
PH
2216 each one. */
2217
2218 for (addr = addrlist; addr != first_addr; addr = addr->next)
2219 {
2220 if (addr->transport_return != PENDING_OK) continue;
2221
2222 /* LMTP - if the response fails badly (e.g. timeout), use it for all the
2223 remaining addresses. Otherwise, it's a return code for just the one
75def545
PH
2224 address. For temporary errors, add a retry item for the address so that
2225 it doesn't get tried again too soon. */
0756eb3c 2226
8ccd00b1 2227#ifndef DISABLE_PRDR
fd98a5c6
JH
2228 if (lmtp || prdr_active)
2229#else
0756eb3c 2230 if (lmtp)
fd98a5c6 2231#endif
0756eb3c
PH
2232 {
2233 if (!smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
2234 ob->final_timeout))
2235 {
2236 if (errno != 0 || buffer[0] == 0) goto RESPONSE_FAILED;
fd98a5c6 2237 addr->message = string_sprintf(
8ccd00b1 2238#ifndef DISABLE_PRDR
fd98a5c6
JH
2239 "%s error after %s: %s", prdr_active ? "PRDR":"LMTP",
2240#else
2241 "LMTP error after %s: %s",
2242#endif
0756eb3c 2243 big_buffer, string_printing(buffer));
75def545
PH
2244 setflag(addr, af_pass_message); /* Allow message to go to user */
2245 if (buffer[0] == '5')
2246 addr->transport_return = FAIL;
2247 else
2248 {
e97957bc
PH
2249 errno = ERRNO_DATA4XX;
2250 addr->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
75def545 2251 addr->transport_return = DEFER;
8ccd00b1 2252#ifndef DISABLE_PRDR
fd98a5c6
JH
2253 if (!prdr_active)
2254#endif
2255 retry_add_item(addr, addr->address_retry_key, 0);
75def545 2256 }
0756eb3c
PH
2257 continue;
2258 }
2259 completed_address = TRUE; /* NOW we can set this flag */
c0ea85ab
TF
2260 if ((log_extra_selector & LX_smtp_confirmation) != 0)
2261 {
2262 uschar *s = string_printing(buffer);
2263 conf = (s == buffer)? (uschar *)string_copy(s) : s;
2264 }
0756eb3c
PH
2265 }
2266
2267 /* SMTP, or success return from LMTP for this address. Pass back the
2d280592 2268 actual host that was used. */
0756eb3c
PH
2269
2270 addr->transport_return = OK;
2271 addr->more_errno = delivery_time;
d427a7f9 2272 addr->host_used = host;
0756eb3c
PH
2273 addr->special_action = flag;
2274 addr->message = conf;
8ccd00b1 2275#ifndef DISABLE_PRDR
fd98a5c6
JH
2276 if (prdr_active) addr->flags |= af_prdr_used;
2277#endif
0756eb3c
PH
2278 flag = '-';
2279
8ccd00b1 2280#ifndef DISABLE_PRDR
fd98a5c6
JH
2281 if (!prdr_active)
2282#endif
2283 {
2284 /* Update the journal. For homonymic addresses, use the base address plus
2285 the transport name. See lots of comments in deliver.c about the reasons
2286 for the complications when homonyms are involved. Just carry on after
2287 write error, as it may prove possible to update the spool file later. */
4d8d62b9 2288
fd98a5c6
JH
2289 if (testflag(addr, af_homonym))
2290 sprintf(CS buffer, "%.500s/%s\n", addr->unique + 3, tblock->name);
2291 else
2292 sprintf(CS buffer, "%.500s\n", addr->unique);
4d8d62b9 2293
fd98a5c6
JH
2294 DEBUG(D_deliver) debug_printf("journalling %s", buffer);
2295 len = Ustrlen(CS buffer);
2296 if (write(journal_fd, buffer, len) != len)
2297 log_write(0, LOG_MAIN|LOG_PANIC, "failed to write journal for "
2298 "%s: %s", buffer, strerror(errno));
2299 }
0756eb3c
PH
2300 }
2301
8ccd00b1 2302#ifndef DISABLE_PRDR
fd98a5c6
JH
2303 if (prdr_active)
2304 {
2305 /* PRDR - get the final, overall response. For any non-success
2306 upgrade all the address statuses. */
2307 ok = smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
2308 ob->final_timeout);
2309 if (!ok)
2310 {
2311 if(errno == 0 && buffer[0] == '4')
2312 {
2313 errno = ERRNO_DATA4XX;
2314 addrlist->more_errno |= ((buffer[1] - '0')*10 + buffer[2] - '0') << 8;
2315 }
2316 for (addr = addrlist; addr != first_addr; addr = addr->next)
2317 if (buffer[0] == '5' || addr->transport_return == OK)
2318 addr->transport_return = PENDING_OK; /* allow set_errno action */
2319 goto RESPONSE_FAILED;
2320 }
2321
2322 /* Update the journal, or setup retry. */
2323 for (addr = addrlist; addr != first_addr; addr = addr->next)
2324 if (addr->transport_return == OK)
2325 {
2326 if (testflag(addr, af_homonym))
2327 sprintf(CS buffer, "%.500s/%s\n", addr->unique + 3, tblock->name);
2328 else
2329 sprintf(CS buffer, "%.500s\n", addr->unique);
4d8d62b9 2330
fd98a5c6
JH
2331 DEBUG(D_deliver) debug_printf("journalling(PRDR) %s", buffer);
2332 len = Ustrlen(CS buffer);
2333 if (write(journal_fd, buffer, len) != len)
2334 log_write(0, LOG_MAIN|LOG_PANIC, "failed to write journal for "
2335 "%s: %s", buffer, strerror(errno));
2336 }
2337 else if (addr->transport_return == DEFER)
2338 retry_add_item(addr, addr->address_retry_key, -2);
2339 }
2340#endif
2341
0756eb3c
PH
2342 /* Ensure the journal file is pushed out to disk. */
2343
54fc8428 2344 if (EXIMfsync(journal_fd) < 0)
0756eb3c
PH
2345 log_write(0, LOG_MAIN|LOG_PANIC, "failed to fsync journal: %s",
2346 strerror(errno));
2347 }
2348 }
2349
2350
2351/* Handle general (not specific to one address) failures here. The value of ok
2352is used to skip over this code on the falling through case. A timeout causes a
2353deferral. Other errors may defer or fail according to the response code, and
2354may set up a special errno value, e.g. after connection chopped, which is
2355assumed if errno == 0 and there is no text in the buffer. If control reaches
2356here during the setting up phase (i.e. before MAIL FROM) then always defer, as
2357the problem is not related to this specific message. */
2358
2359if (!ok)
2360 {
2361 int code;
2362
2363 RESPONSE_FAILED:
2364 save_errno = errno;
2365 message = NULL;
2366 send_quit = check_response(host, &save_errno, addrlist->more_errno,
447d236c 2367 buffer, &code, &message, &pass_message);
0756eb3c
PH
2368 goto FAILED;
2369
2370 SEND_FAILED:
2371 save_errno = errno;
2372 code = '4';
2373 message = US string_sprintf("send() to %s [%s] failed: %s",
2374 host->name, host->address, strerror(save_errno));
2375 send_quit = FALSE;
2376 goto FAILED;
2377
2378 /* This label is jumped to directly when a TLS negotiation has failed,
2379 or was not done for a host for which it is required. Values will be set
2380 in message and save_errno, and setting_up will always be true. Treat as
2381 a temporary error. */
2382
a7538db1 2383#ifdef SUPPORT_TLS
0756eb3c
PH
2384 TLS_FAILED:
2385 code = '4';
a7538db1 2386#endif
0756eb3c
PH
2387
2388 /* If the failure happened while setting up the call, see if the failure was
2389 a 5xx response (this will either be on connection, or following HELO - a 5xx
2390 after EHLO causes it to try HELO). If so, fail all addresses, as this host is
2391 never going to accept them. For other errors during setting up (timeouts or
2392 whatever), defer all addresses, and yield DEFER, so that the host is not
2393 tried again for a while. */
2394
2395 FAILED:
2396 ok = FALSE; /* For when reached by GOTO */
2397
2398 if (setting_up)
2399 {
2400 if (code == '5')
c562fd30 2401 set_errno(addrlist, save_errno, message, FAIL, pass_message, host);
0756eb3c
PH
2402 else
2403 {
c562fd30 2404 set_errno(addrlist, save_errno, message, DEFER, pass_message, host);
0756eb3c
PH
2405 yield = DEFER;
2406 }
2407 }
2408
e97957bc 2409 /* We want to handle timeouts after MAIL or "." and loss of connection after
0756eb3c 2410 "." specially. They can indicate a problem with the sender address or with
e97957bc
PH
2411 the contents of the message rather than a real error on the connection. These
2412 cases are treated in the same way as a 4xx response. This next bit of code
2413 does the classification. */
0756eb3c 2414
e97957bc 2415 else
0756eb3c 2416 {
e97957bc 2417 BOOL message_error;
0756eb3c 2418
e97957bc
PH
2419 switch(save_errno)
2420 {
2421 case 0:
2422 case ERRNO_MAIL4XX:
2423 case ERRNO_DATA4XX:
2424 message_error = TRUE;
2425 break;
0756eb3c 2426
e97957bc
PH
2427 case ETIMEDOUT:
2428 message_error = Ustrncmp(smtp_command,"MAIL",4) == 0 ||
2429 Ustrncmp(smtp_command,"end ",4) == 0;
2430 break;
2431
2432 case ERRNO_SMTPCLOSED:
2433 message_error = Ustrncmp(smtp_command,"end ",4) == 0;
2434 break;
2435
2436 default:
2437 message_error = FALSE;
2438 break;
2439 }
0756eb3c 2440
e97957bc 2441 /* Handle the cases that are treated as message errors. These are:
0756eb3c 2442
e97957bc
PH
2443 (a) negative response or timeout after MAIL
2444 (b) negative response after DATA
2445 (c) negative response or timeout or dropped connection after "."
0756eb3c 2446
e97957bc
PH
2447 It won't be a negative response or timeout after RCPT, as that is dealt
2448 with separately above. The action in all cases is to set an appropriate
2449 error code for all the addresses, but to leave yield set to OK because the
2450 host itself has not failed. Of course, it might in practice have failed
2451 when we've had a timeout, but if so, we'll discover that at the next
2452 delivery attempt. For a temporary error, set the message_defer flag, and
2453 write to the logs for information if this is not the last host. The error
2454 for the last host will be logged as part of the address's log line. */
2455
2456 if (message_error)
0756eb3c 2457 {
e97957bc
PH
2458 if (mua_wrapper) code = '5'; /* Force hard failure in wrapper mode */
2459 set_errno(addrlist, save_errno, message, (code == '5')? FAIL : DEFER,
c562fd30 2460 pass_message, host);
e97957bc
PH
2461
2462 /* If there's an errno, the message contains just the identity of
2463 the host. */
2464
2465 if (code != '5') /* Anything other than 5 is treated as temporary */
2466 {
2467 if (save_errno > 0)
2468 message = US string_sprintf("%s: %s", message, strerror(save_errno));
2469 if (host->next != NULL) log_write(0, LOG_MAIN, "%s", message);
c562fd30 2470 msglog_line(host, message);
e97957bc
PH
2471 *message_defer = TRUE;
2472 }
2473 }
2474
2475 /* Otherwise, we have an I/O error or a timeout other than after MAIL or
2476 ".", or some other transportation error. We defer all addresses and yield
2477 DEFER, except for the case of failed add_headers expansion, or a transport
2478 filter failure, when the yield should be ERROR, to stop it trying other
2479 hosts. */
2480
2481 else
2482 {
2483 yield = (save_errno == ERRNO_CHHEADER_FAIL ||
2484 save_errno == ERRNO_FILTER_FAIL)? ERROR : DEFER;
c562fd30 2485 set_errno(addrlist, save_errno, message, DEFER, pass_message, host);
0756eb3c
PH
2486 }
2487 }
2488 }
2489
2490
2491/* If all has gone well, send_quit will be set TRUE, implying we can end the
2492SMTP session tidily. However, if there were too many addresses to send in one
2493message (indicated by first_addr being non-NULL) we want to carry on with the
2494rest of them. Also, it is desirable to send more than one message down the SMTP
2495connection if there are several waiting, provided we haven't already sent so
2496many as to hit the configured limit. The function transport_check_waiting looks
2497for a waiting message and returns its id. Then transport_pass_socket tries to
2498set up a continued delivery by passing the socket on to another process. The
2499variable send_rset is FALSE if a message has just been successfully transfered.
2500
2501If we are already sending down a continued channel, there may be further
2502addresses not yet delivered that are aimed at the same host, but which have not
2503been passed in this run of the transport. In this case, continue_more will be
2504true, and all we should do is send RSET if necessary, and return, leaving the
2505channel open.
2506
2507However, if no address was disposed of, i.e. all addresses got 4xx errors, we
2508do not want to continue with other messages down the same channel, because that
2509can lead to looping between two or more messages, all with the same,
2510temporarily failing address(es). [The retry information isn't updated yet, so
2511new processes keep on trying.] We probably also don't want to try more of this
2512message's addresses either.
2513
2514If we have started a TLS session, we have to end it before passing the
2515connection to a new process. However, not all servers can handle this (Exim
2516can), so we do not pass such a connection on if the host matches
2517hosts_nopass_tls. */
2518
2519DEBUG(D_transport)
2520 debug_printf("ok=%d send_quit=%d send_rset=%d continue_more=%d "
2521 "yield=%d first_address is %sNULL\n", ok, send_quit, send_rset,
2522 continue_more, yield, (first_addr == NULL)? "":"not ");
2523
2524if (completed_address && ok && send_quit)
2525 {
2526 BOOL more;
5130845b
JH
2527 if ( first_addr != NULL
2528 || continue_more
2529 || ( ( tls_out.active < 0
2530 || verify_check_given_host(&ob->hosts_nopass_tls, host) != OK
2531 )
0756eb3c
PH
2532 &&
2533 transport_check_waiting(tblock->name, host->name,
2534 tblock->connection_max_messages, new_message_id, &more)
5130845b 2535 ) )
0756eb3c
PH
2536 {
2537 uschar *msg;
447d236c 2538 BOOL pass_message;
0756eb3c
PH
2539
2540 if (send_rset)
2541 {
2542 if (! (ok = smtp_write_command(&outblock, FALSE, "RSET\r\n") >= 0))
2543 {
2544 msg = US string_sprintf("send() to %s [%s] failed: %s", host->name,
2545 host->address, strerror(save_errno));
2546 send_quit = FALSE;
2547 }
2548 else if (! (ok = smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
2549 ob->command_timeout)))
2550 {
2551 int code;
447d236c
PH
2552 send_quit = check_response(host, &errno, 0, buffer, &code, &msg,
2553 &pass_message);
0756eb3c
PH
2554 if (!send_quit)
2555 {
c562fd30
JH
2556 DEBUG(D_transport) debug_printf("H=%s [%s] %s\n",
2557 host->name, host->address, msg);
0756eb3c
PH
2558 }
2559 }
2560 }
2561
2562 /* Either RSET was not needed, or it succeeded */
2563
2564 if (ok)
2565 {
2566 if (first_addr != NULL) /* More addresses still to be sent */
2567 { /* in this run of the transport */
2568 continue_sequence++; /* Causes * in logging */
2569 goto SEND_MESSAGE;
2570 }
2571 if (continue_more) return yield; /* More addresses for another run */
2572
2573 /* Pass the socket to a new Exim process. Before doing so, we must shut
2574 down TLS. Not all MTAs allow for the continuation of the SMTP session
2575 when TLS is shut down. We test for this by sending a new EHLO. If we
2576 don't get a good response, we don't attempt to pass the socket on. */
2577
a7538db1 2578#ifdef SUPPORT_TLS
817d9f57 2579 if (tls_out.active >= 0)
0756eb3c 2580 {
817d9f57 2581 tls_close(FALSE, TRUE);
061b7ebd
PP
2582 if (smtps)
2583 ok = FALSE;
2584 else
2585 ok = smtp_write_command(&outblock,FALSE,"EHLO %s\r\n",helo_data) >= 0 &&
2586 smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
2587 ob->command_timeout);
0756eb3c 2588 }
a7538db1 2589#endif
0756eb3c
PH
2590
2591 /* If the socket is successfully passed, we musn't send QUIT (or
2592 indeed anything!) from here. */
2593
2594 if (ok && transport_pass_socket(tblock->name, host->name, host->address,
2595 new_message_id, inblock.sock))
2596 {
2597 send_quit = FALSE;
2598 }
2599 }
2600
2601 /* If RSET failed and there are addresses left, they get deferred. */
2602
c562fd30 2603 else set_errno(first_addr, errno, msg, DEFER, FALSE, host);
0756eb3c
PH
2604 }
2605 }
2606
2607/* End off tidily with QUIT unless the connection has died or the socket has
2608been passed to another process. There has been discussion on the net about what
2609to do after sending QUIT. The wording of the RFC suggests that it is necessary
2610to wait for a response, but on the other hand, there isn't anything one can do
2611with an error response, other than log it. Exim used to do that. However,
2612further discussion suggested that it is positively advantageous not to wait for
2613the response, but to close the session immediately. This is supposed to move
2614the TCP/IP TIME_WAIT state from the server to the client, thereby removing some
2615load from the server. (Hosts that are both servers and clients may not see much
2616difference, of course.) Further discussion indicated that this was safe to do
2617on Unix systems which have decent implementations of TCP/IP that leave the
2618connection around for a while (TIME_WAIT) after the application has gone away.
2619This enables the response sent by the server to be properly ACKed rather than
2620timed out, as can happen on broken TCP/IP implementations on other OS.
2621
2622This change is being made on 31-Jul-98. After over a year of trouble-free
2623operation, the old commented-out code was removed on 17-Sep-99. */
2624
2625SEND_QUIT:
2626if (send_quit) (void)smtp_write_command(&outblock, FALSE, "QUIT\r\n");
2627
2628END_OFF:
2629
2630#ifdef SUPPORT_TLS
817d9f57 2631tls_close(FALSE, TRUE);
0756eb3c
PH
2632#endif
2633
2634/* Close the socket, and return the appropriate value, first setting
0756eb3c
PH
2635works because the NULL setting is passed back to the calling process, and
2636remote_max_parallel is forced to 1 when delivering over an existing connection,
2637
2638If all went well and continue_more is set, we shouldn't actually get here if
2639there are further addresses, as the return above will be taken. However,
2640writing RSET might have failed, or there may be other addresses whose hosts are
2641specified in the transports, and therefore not visible at top level, in which
2642case continue_more won't get set. */
2643
f1e894f3 2644(void)close(inblock.sock);
a7538db1 2645
774ef2d7
JH
2646#ifdef EXPERIMENTAL_EVENT
2647(void) event_raise(tblock->event_action, US"tcp:close", NULL);
a7538db1
JH
2648#endif
2649
0756eb3c
PH
2650continue_transport = NULL;
2651continue_hostname = NULL;
2652return yield;
2653}
2654
2655
2656
2657
2658/*************************************************
2659* Closedown entry point *
2660*************************************************/
2661
2662/* This function is called when exim is passed an open smtp channel
2663from another incarnation, but the message which it has been asked
2664to deliver no longer exists. The channel is on stdin.
2665
2666We might do fancy things like looking for another message to send down
2667the channel, but if the one we sought has gone, it has probably been
2668delivered by some other process that itself will seek further messages,
2669so just close down our connection.
2670
2671Argument: pointer to the transport instance block
2672Returns: nothing
2673*/
2674
2675void
2676smtp_transport_closedown(transport_instance *tblock)
2677{
2678smtp_transport_options_block *ob =
2679 (smtp_transport_options_block *)(tblock->options_block);
2680smtp_inblock inblock;
2681smtp_outblock outblock;
2682uschar buffer[256];
2683uschar inbuffer[4096];
2684uschar outbuffer[16];
2685
2686inblock.sock = fileno(stdin);
2687inblock.buffer = inbuffer;
2688inblock.buffersize = sizeof(inbuffer);
2689inblock.ptr = inbuffer;
2690inblock.ptrend = inbuffer;
2691
2692outblock.sock = inblock.sock;
2693outblock.buffersize = sizeof(outbuffer);
2694outblock.buffer = outbuffer;
2695outblock.ptr = outbuffer;
2696outblock.cmd_count = 0;
2697outblock.authenticating = FALSE;
2698
2699(void)smtp_write_command(&outblock, FALSE, "QUIT\r\n");
2700(void)smtp_read_response(&inblock, buffer, sizeof(buffer), '2',
2701 ob->command_timeout);
f1e894f3 2702(void)close(inblock.sock);
0756eb3c
PH
2703}
2704
2705
2706
2707/*************************************************
2708* Prepare addresses for delivery *
2709*************************************************/
2710
2711/* This function is called to flush out error settings from previous delivery
2712attempts to other hosts. It also records whether we got here via an MX record
2713or not in the more_errno field of the address. We are interested only in
2714addresses that are still marked DEFER - others may have got delivered to a
2715previously considered IP address. Set their status to PENDING_DEFER to indicate
2716which ones are relevant this time.
2717
2718Arguments:
2719 addrlist the list of addresses
2720 host the host we are delivering to
2721
2722Returns: the first address for this delivery
2723*/
2724
2725static address_item *
2726prepare_addresses(address_item *addrlist, host_item *host)
2727{
2728address_item *first_addr = NULL;
2729address_item *addr;
2730for (addr = addrlist; addr != NULL; addr = addr->next)
2731 {
2732 if (addr->transport_return != DEFER) continue;
2733 if (first_addr == NULL) first_addr = addr;
2734 addr->transport_return = PENDING_DEFER;
2735 addr->basic_errno = 0;
2736 addr->more_errno = (host->mx >= 0)? 'M' : 'A';
2737 addr->message = NULL;
a7538db1 2738#ifdef SUPPORT_TLS
0756eb3c 2739 addr->cipher = NULL;
9d1c15ef
JH
2740 addr->ourcert = NULL;
2741 addr->peercert = NULL;
0756eb3c 2742 addr->peerdn = NULL;
018058b2 2743 addr->ocsp = OCSP_NOT_REQ;
a7538db1 2744#endif
0756eb3c
PH
2745 }
2746return first_addr;
2747}
2748
2749
2750
2751/*************************************************
2752* Main entry point *
2753*************************************************/
2754
2755/* See local README for interface details. As this is a remote transport, it is
2756given a chain of addresses to be delivered in one connection, if possible. It
2757always returns TRUE, indicating that each address has its own independent
2758status set, except if there is a setting up problem, in which case it returns
2759FALSE. */
2760
2761BOOL
2762smtp_transport_entry(
2763 transport_instance *tblock, /* data for this instantiation */
2764 address_item *addrlist) /* addresses we are working on */
2765{
2766int cutoff_retry;
2767int port;
2768int hosts_defer = 0;
2769int hosts_fail = 0;
2770int hosts_looked_up = 0;
2771int hosts_retry = 0;
2772int hosts_serial = 0;
2773int hosts_total = 0;
8e669ac1 2774int total_hosts_tried = 0;
0756eb3c
PH
2775address_item *addr;
2776BOOL expired = TRUE;
2777BOOL continuing = continue_hostname != NULL;
2778uschar *expanded_hosts = NULL;
2779uschar *pistring;
2780uschar *tid = string_sprintf("%s transport", tblock->name);
2781smtp_transport_options_block *ob =
2782 (smtp_transport_options_block *)(tblock->options_block);
2783host_item *hostlist = addrlist->host_list;
2784host_item *host = NULL;
2785
2786DEBUG(D_transport)
2787 {
2788 debug_printf("%s transport entered\n", tblock->name);
2789 for (addr = addrlist; addr != NULL; addr = addr->next)
2790 debug_printf(" %s\n", addr->address);
2791 if (continuing) debug_printf("already connected to %s [%s]\n",
2792 continue_hostname, continue_host_address);
2793 }
2794
f6c332bd
PH
2795/* Set the flag requesting that these hosts be added to the waiting
2796database if the delivery fails temporarily or if we are running with
2797queue_smtp or a 2-stage queue run. This gets unset for certain
2798kinds of error, typically those that are specific to the message. */
2799
2800update_waiting = TRUE;
2801
0756eb3c
PH
2802/* If a host list is not defined for the addresses - they must all have the
2803same one in order to be passed to a single transport - or if the transport has
2804a host list with hosts_override set, use the host list supplied with the
2805transport. It is an error for this not to exist. */
2806
2807if (hostlist == NULL || (ob->hosts_override && ob->hosts != NULL))
2808 {
2809 if (ob->hosts == NULL)
2810 {
2811 addrlist->message = string_sprintf("%s transport called with no hosts set",
2812 tblock->name);
2813 addrlist->transport_return = PANIC;
2814 return FALSE; /* Only top address has status */
2815 }
2816
2817 DEBUG(D_transport) debug_printf("using the transport's hosts: %s\n",
2818 ob->hosts);
2819
2820 /* If the transport's host list contains no '$' characters, and we are not
2821 randomizing, it is fixed and therefore a chain of hosts can be built once
2822 and for all, and remembered for subsequent use by other calls to this
2823 transport. If, on the other hand, the host list does contain '$', or we are
2824 randomizing its order, we have to rebuild it each time. In the fixed case,
2825 as the hosts string will never be used again, it doesn't matter that we
2826 replace all the : characters with zeros. */
2827
2828 if (ob->hostlist == NULL)
2829 {
2830 uschar *s = ob->hosts;
2831
2832 if (Ustrchr(s, '$') != NULL)
2833 {
d427a7f9 2834 if (!(expanded_hosts = expand_string(s)))
0756eb3c
PH
2835 {
2836 addrlist->message = string_sprintf("failed to expand list of hosts "
2837 "\"%s\" in %s transport: %s", s, tblock->name, expand_string_message);
2838 addrlist->transport_return = search_find_defer? DEFER : PANIC;
2839 return FALSE; /* Only top address has status */
2840 }
2841 DEBUG(D_transport) debug_printf("expanded list of hosts \"%s\" to "
2842 "\"%s\"\n", s, expanded_hosts);
2843 s = expanded_hosts;
2844 }
2845 else
2846 if (ob->hosts_randomize) s = expanded_hosts = string_copy(s);
2847
2848 host_build_hostlist(&hostlist, s, ob->hosts_randomize);
2849
e276e04b
TF
2850 /* Check that the expansion yielded something useful. */
2851 if (hostlist == NULL)
2852 {
2853 addrlist->message =
2854 string_sprintf("%s transport has empty hosts setting", tblock->name);
2855 addrlist->transport_return = PANIC;
2856 return FALSE; /* Only top address has status */
2857 }
2858
0756eb3c
PH
2859 /* If there was no expansion of hosts, save the host list for
2860 next time. */
2861
d427a7f9 2862 if (!expanded_hosts) ob->hostlist = hostlist;
0756eb3c
PH
2863 }
2864
2865 /* This is not the first time this transport has been run in this delivery;
2866 the host list was built previously. */
2867
2868 else hostlist = ob->hostlist;
2869 }
2870
2871/* The host list was supplied with the address. If hosts_randomize is set, we
2872must sort it into a random order if it did not come from MX records and has not
2873already been randomized (but don't bother if continuing down an existing
2874connection). */
2875
2876else if (ob->hosts_randomize && hostlist->mx == MX_NONE && !continuing)
2877 {
2878 host_item *newlist = NULL;
2879 while (hostlist != NULL)
2880 {
2881 host_item *h = hostlist;
2882 hostlist = hostlist->next;
2883
2884 h->sort_key = random_number(100);
2885
2886 if (newlist == NULL)
2887 {
2888 h->next = NULL;
2889 newlist = h;
2890 }
2891 else if (h->sort_key < newlist->sort_key)
2892 {
2893 h->next = newlist;
2894 newlist = h;
2895 }
2896 else
2897 {
2898 host_item *hh = newlist;
2899 while (hh->next != NULL)
2900 {
2901 if (h->sort_key < hh->next->sort_key) break;
2902 hh = hh->next;
2903 }
2904 h->next = hh->next;
2905 hh->next = h;
2906 }
2907 }
2908
2909 hostlist = addrlist->host_list = newlist;
2910 }
2911
2912
2d280592 2913/* Sort out the default port. */
0756eb3c
PH
2914
2915if (!smtp_get_port(ob->port, addrlist, &port, tid)) return FALSE;
0756eb3c
PH
2916
2917
2918/* For each host-plus-IP-address on the list:
2919
2920. If this is a continued delivery and the host isn't the one with the
2921 current connection, skip.
2922
2923. If the status is unusable (i.e. previously failed or retry checked), skip.
2924
2925. If no IP address set, get the address, either by turning the name into
2926 an address, calling gethostbyname if gethostbyname is on, or by calling
2927 the DNS. The DNS may yield multiple addresses, in which case insert the
2928 extra ones into the list.
2929
2930. Get the retry data if not previously obtained for this address and set the
2931 field which remembers the state of this address. Skip if the retry time is
2932 not reached. If not, remember whether retry data was found. The retry string
2933 contains both the name and the IP address.
2934
2935. Scan the list of addresses and mark those whose status is DEFER as
2936 PENDING_DEFER. These are the only ones that will be processed in this cycle
2937 of the hosts loop.
2938
2939. Make a delivery attempt - addresses marked PENDING_DEFER will be tried.
2940 Some addresses may be successfully delivered, others may fail, and yet
2941 others may get temporary errors and so get marked DEFER.
2942
2943. The return from the delivery attempt is OK if a connection was made and a
2944 valid SMTP dialogue was completed. Otherwise it is DEFER.
2945
2946. If OK, add a "remove" retry item for this host/IPaddress, if any.
2947
2948. If fail to connect, or other defer state, add a retry item.
2949
2950. If there are any addresses whose status is still DEFER, carry on to the
2951 next host/IPaddress, unless we have tried the number of hosts given
533244af 2952 by hosts_max_try or hosts_max_try_hardlimit; otherwise return. Note that
8e669ac1
PH
2953 there is some fancy logic for hosts_max_try that means its limit can be
2954 overstepped in some circumstances.
0756eb3c
PH
2955
2956If we get to the end of the list, all hosts have deferred at least one address,
2957or not reached their retry times. If delay_after_cutoff is unset, it requests a
2958delivery attempt to those hosts whose last try was before the arrival time of
2959the current message. To cope with this, we have to go round the loop a second
2960time. After that, set the status and error data for any addresses that haven't
2961had it set already. */
2962
2963for (cutoff_retry = 0; expired &&
2964 cutoff_retry < ((ob->delay_after_cutoff)? 1 : 2);
2965 cutoff_retry++)
2966 {
2967 host_item *nexthost = NULL;
2968 int unexpired_hosts_tried = 0;
2969
2970 for (host = hostlist;
8e669ac1 2971 host != NULL &&
533244af
PH
2972 unexpired_hosts_tried < ob->hosts_max_try &&
2973 total_hosts_tried < ob->hosts_max_try_hardlimit;
0756eb3c
PH
2974 host = nexthost)
2975 {
2976 int rc;
2977 int host_af;
2978 uschar *rs;
2979 BOOL serialized = FALSE;
2980 BOOL host_is_expired = FALSE;
2981 BOOL message_defer = FALSE;
2982 BOOL ifchanges = FALSE;
2983 BOOL some_deferred = FALSE;
2984 address_item *first_addr = NULL;
2985 uschar *interface = NULL;
2986 uschar *retry_host_key = NULL;
2987 uschar *retry_message_key = NULL;
2988 uschar *serialize_key = NULL;
2989
9c4e8f60
PH
2990 /* Default next host is next host. :-) But this can vary if the
2991 hosts_max_try limit is hit (see below). It may also be reset if a host
2992 address is looked up here (in case the host was multihomed). */
2993
2994 nexthost = host->next;
2995
0756eb3c
PH
2996 /* If the address hasn't yet been obtained from the host name, look it up
2997 now, unless the host is already marked as unusable. If it is marked as
2998 unusable, it means that the router was unable to find its IP address (in
2999 the DNS or wherever) OR we are in the 2nd time round the cutoff loop, and
3000 the lookup failed last time. We don't get this far if *all* MX records
3001 point to non-existent hosts; that is treated as a hard error.
3002
3003 We can just skip this host entirely. When the hosts came from the router,
3004 the address will timeout based on the other host(s); when the address is
3005 looked up below, there is an explicit retry record added.
3006
3007 Note that we mustn't skip unusable hosts if the address is not unset; they
3008 may be needed as expired hosts on the 2nd time round the cutoff loop. */
3009
3010 if (host->address == NULL)
3011 {
322050c2 3012 int new_port, flags;
7cd1141b 3013 host_item *hh;
0756eb3c
PH
3014 uschar *canonical_name;
3015
3016 if (host->status >= hstatus_unusable)
3017 {
3018 DEBUG(D_transport) debug_printf("%s has no address and is unusable - skipping\n",
3019 host->name);
3020 continue;
3021 }
3022
3023 DEBUG(D_transport) debug_printf("getting address for %s\n", host->name);
3024
7cd1141b
PH
3025 /* The host name is permitted to have an attached port. Find it, and
3026 strip it from the name. Just remember it for now. */
3027
3028 new_port = host_item_get_port(host);
3029
3030 /* Count hosts looked up */
3031
0756eb3c
PH
3032 hosts_looked_up++;
3033
3034 /* Find by name if so configured, or if it's an IP address. We don't
3035 just copy the IP address, because we need the test-for-local to happen. */
3036
322050c2
PH
3037 flags = HOST_FIND_BY_A;
3038 if (ob->dns_qualify_single) flags |= HOST_FIND_QUALIFY_SINGLE;
3039 if (ob->dns_search_parents) flags |= HOST_FIND_SEARCH_PARENTS;
3040
7e66e54d 3041 if (ob->gethostbyname || string_is_ip_address(host->name, NULL) != 0)
322050c2 3042 rc = host_find_byname(host, NULL, flags, &canonical_name, TRUE);
0756eb3c 3043 else
0756eb3c 3044 rc = host_find_bydns(host, NULL, flags, NULL, NULL, NULL,
578897ea 3045 ob->dnssec_request_domains, ob->dnssec_require_domains,
0756eb3c 3046 &canonical_name, NULL);
0756eb3c 3047
7cd1141b
PH
3048 /* Update the host (and any additional blocks, resulting from
3049 multihoming) with a host-specific port, if any. */
3050
3051 for (hh = host; hh != nexthost; hh = hh->next) hh->port = new_port;
3052
0756eb3c
PH
3053 /* Failure to find the host at this time (usually DNS temporary failure)
3054 is really a kind of routing failure rather than a transport failure.
3055 Therefore we add a retry item of the routing kind, not to stop us trying
3056 to look this name up here again, but to ensure the address gets timed
3057 out if the failures go on long enough. A complete failure at this point
3058 commonly points to a configuration error, but the best action is still
3059 to carry on for the next host. */
3060
3061 if (rc == HOST_FIND_AGAIN || rc == HOST_FIND_FAILED)
3062 {
3063 retry_add_item(addrlist, string_sprintf("R:%s", host->name), 0);
3064 expired = FALSE;
3065 if (rc == HOST_FIND_AGAIN) hosts_defer++; else hosts_fail++;
3066 DEBUG(D_transport) debug_printf("rc = %s for %s\n", (rc == HOST_FIND_AGAIN)?
3067 "HOST_FIND_AGAIN" : "HOST_FIND_FAILED", host->name);
3068 host->status = hstatus_unusable;
3069
3070 for (addr = addrlist; addr != NULL; addr = addr->next)
3071 {
3072 if (addr->transport_return != DEFER) continue;
3073 addr->basic_errno = ERRNO_UNKNOWNHOST;
3074 addr->message =
3075 string_sprintf("failed to lookup IP address for %s", host->name);
3076 }
3077 continue;
3078 }
3079
3080 /* If the host is actually the local host, we may have a problem, or
3081 there may be some cunning configuration going on. In the problem case,
3082 log things and give up. The default transport status is already DEFER. */
3083
3084 if (rc == HOST_FOUND_LOCAL && !ob->allow_localhost)
3085 {
3086 for (addr = addrlist; addr != NULL; addr = addr->next)
3087 {
3088 addr->basic_errno = 0;
3089 addr->message = string_sprintf("%s transport found host %s to be "
3090 "local", tblock->name, host->name);
3091 }
3092 goto END_TRANSPORT;
3093 }
3094 } /* End of block for IP address lookup */
3095
3096 /* If this is a continued delivery, we are interested only in the host
3097 which matches the name of the existing open channel. The check is put
3098 here after the local host lookup, in case the name gets expanded as a
3099 result of the lookup. Set expired FALSE, to save the outer loop executing
3100 twice. */
3101
3102 if (continuing && (Ustrcmp(continue_hostname, host->name) != 0 ||
3103 Ustrcmp(continue_host_address, host->address) != 0))
3104 {
3105 expired = FALSE;
3106 continue; /* With next host */
3107 }
3108
9c4e8f60
PH
3109 /* Reset the default next host in case a multihomed host whose addresses
3110 are not looked up till just above added to the host list. */
83364d30
PH
3111
3112 nexthost = host->next;
3113
0756eb3c
PH
3114 /* If queue_smtp is set (-odqs or the first part of a 2-stage run), or the
3115 domain is in queue_smtp_domains, we don't actually want to attempt any
3116 deliveries. When doing a queue run, queue_smtp_domains is always unset. If
3117 there is a lookup defer in queue_smtp_domains, proceed as if the domain
3118 were not in it. We don't want to hold up all SMTP deliveries! Except when
3119 doing a two-stage queue run, don't do this if forcing. */
3120
3121 if ((!deliver_force || queue_2stage) && (queue_smtp ||
cf39cf57
PH
3122 match_isinlist(addrlist->domain, &queue_smtp_domains, 0,
3123 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL) == OK))
0756eb3c
PH
3124 {
3125 expired = FALSE;
3126 for (addr = addrlist; addr != NULL; addr = addr->next)
3127 {
3128 if (addr->transport_return != DEFER) continue;
3129 addr->message = US"domain matches queue_smtp_domains, or -odqs set";
3130 }
3131 continue; /* With next host */
3132 }
3133
3134 /* Count hosts being considered - purely for an intelligent comment
3135 if none are usable. */
3136
3137 hosts_total++;
3138
3139 /* Set $host and $host address now in case they are needed for the
3140 interface expansion or the serialize_hosts check; they remain set if an
3141 actual delivery happens. */
3142
3143 deliver_host = host->name;
3144 deliver_host_address = host->address;
783b385f
JH
3145 lookup_dnssec_authenticated = host->dnssec == DS_YES ? US"yes"
3146 : host->dnssec == DS_NO ? US"no"
3147 : US"";
0756eb3c 3148
7cd1141b
PH
3149 /* Set up a string for adding to the retry key if the port number is not
3150 the standard SMTP port. A host may have its own port setting that overrides
3151 the default. */
3152
3153 pistring = string_sprintf(":%d", (host->port == PORT_NONE)?
3154 port : host->port);
3155 if (Ustrcmp(pistring, ":25") == 0) pistring = US"";
3156
0756eb3c
PH
3157 /* Select IPv4 or IPv6, and choose an outgoing interface. If the interface
3158 string changes upon expansion, we must add it to the key that is used for
3159 retries, because connections to the same host from a different interface
3160 should be treated separately. */
3161
3162 host_af = (Ustrchr(host->address, ':') == NULL)? AF_INET : AF_INET6;
3163 if (!smtp_get_interface(ob->interface, host_af, addrlist, &ifchanges,
3164 &interface, tid))
3165 return FALSE;
3166 if (ifchanges) pistring = string_sprintf("%s/%s", pistring, interface);
3167
3168 /* The first time round the outer loop, check the status of the host by
3169 inspecting the retry data. The second time round, we are interested only
3170 in expired hosts that haven't been tried since this message arrived. */
3171
3172 if (cutoff_retry == 0)
3173 {
9c695f6d 3174 BOOL incl_ip;
0756eb3c 3175 /* Ensure the status of the address is set by checking retry data if
9c695f6d 3176 necessary. There may be host-specific retry data (applicable to all
0756eb3c
PH
3177 messages) and also data for retries of a specific message at this host.
3178 If either of these retry records are actually read, the keys used are
3179 returned to save recomputing them later. */
3180
9c695f6d
JH
3181 if (exp_bool(addrlist, US"transport", tblock->name, D_transport,
3182 US"retry_include_ip_address", ob->retry_include_ip_address,
3183 ob->expand_retry_include_ip_address, &incl_ip) != OK)
3184 continue; /* with next host */
3185
0756eb3c 3186 host_is_expired = retry_check_address(addrlist->domain, host, pistring,
9c695f6d 3187 incl_ip, &retry_host_key, &retry_message_key);
0756eb3c
PH
3188
3189 DEBUG(D_transport) debug_printf("%s [%s]%s status = %s\n", host->name,
3190 (host->address == NULL)? US"" : host->address, pistring,
3191 (host->status == hstatus_usable)? "usable" :
3192 (host->status == hstatus_unusable)? "unusable" :
3193 (host->status == hstatus_unusable_expired)? "unusable (expired)" : "?");
3194
3195 /* Skip this address if not usable at this time, noting if it wasn't
3196 actually expired, both locally and in the address. */
3197
3198 switch (host->status)
3199 {
3200 case hstatus_unusable:
3201 expired = FALSE;
3202 setflag(addrlist, af_retry_skipped);
3203 /* Fall through */
3204
3205 case hstatus_unusable_expired:
3206 switch (host->why)
3207 {
3208 case hwhy_retry: hosts_retry++; break;
3209 case hwhy_failed: hosts_fail++; break;
3210 case hwhy_deferred: hosts_defer++; break;
3211 }
3212
3213 /* If there was a retry message key, implying that previously there
3214 was a message-specific defer, we don't want to update the list of
f6c332bd 3215 messages waiting for these hosts. */
0756eb3c 3216
f6c332bd 3217 if (retry_message_key != NULL) update_waiting = FALSE;
0756eb3c
PH
3218 continue; /* With the next host or IP address */
3219 }
3220 }
3221
3222 /* Second time round the loop: if the address is set but expired, and
3223 the message is newer than the last try, let it through. */
3224
3225 else
3226 {
3227 if (host->address == NULL ||
3228 host->status != hstatus_unusable_expired ||
3229 host->last_try > received_time)
3230 continue;
3231 DEBUG(D_transport)
3232 debug_printf("trying expired host %s [%s]%s\n",
3233 host->name, host->address, pistring);
3234 host_is_expired = TRUE;
3235 }
3236
3237 /* Setting "expired=FALSE" doesn't actually mean not all hosts are expired;
3238 it remains TRUE only if all hosts are expired and none are actually tried.
3239 */
3240
3241 expired = FALSE;
3242
3243 /* If this host is listed as one to which access must be serialized,
3244 see if another Exim process has a connection to it, and if so, skip
3245 this host. If not, update the database to record our connection to it
3246 and remember this for later deletion. Do not do any of this if we are
3247 sending the message down a pre-existing connection. */
3248
3249 if (!continuing &&
5130845b 3250 verify_check_given_host(&ob->serialize_hosts, host) == OK)
0756eb3c
PH
3251 {
3252 serialize_key = string_sprintf("host-serialize-%s", host->name);
3253 if (!enq_start(serialize_key))
3254 {
3255 DEBUG(D_transport)
3256 debug_printf("skipping host %s because another Exim process "
3257 "is connected to it\n", host->name);
3258 hosts_serial++;
3259 continue;
3260 }
3261 serialized = TRUE;
3262 }
3263
3264 /* OK, we have an IP address that is not waiting for its retry time to
3265 arrive (it might be expired) OR (second time round the loop) we have an
3266 expired host that hasn't been tried since the message arrived. Have a go
3267 at delivering the message to it. First prepare the addresses by flushing
3268 out the result of previous attempts, and finding the first address that
3269 is still to be delivered. */
3270
3271 first_addr = prepare_addresses(addrlist, host);
3272
3273 DEBUG(D_transport) debug_printf("delivering %s to %s [%s] (%s%s)\n",
3274 message_id, host->name, host->address, addrlist->address,
3275 (addrlist->next == NULL)? "" : ", ...");
3276
3277 set_process_info("delivering %s to %s [%s] (%s%s)",
3278 message_id, host->name, host->address, addrlist->address,
3279 (addrlist->next == NULL)? "" : ", ...");
3280
3281 /* This is not for real; don't do the delivery. If there are
3282 any remaining hosts, list them. */
3283
3284 if (dont_deliver)
3285 {
3286 host_item *host2;
c562fd30 3287 set_errno(addrlist, 0, NULL, OK, FALSE, NULL);
0756eb3c
PH
3288 for (addr = addrlist; addr != NULL; addr = addr->next)
3289 {
3290 addr->host_used = host;
3291 addr->special_action = '*';
3292 addr->message = US"delivery bypassed by -N option";
3293 }
3294 DEBUG(D_transport)
3295 {
3296 debug_printf("*** delivery by %s transport bypassed by -N option\n"
3297 "*** host and remaining hosts:\n", tblock->name);
3298 for (host2 = host; host2 != NULL; host2 = host2->next)
3299 debug_printf(" %s [%s]\n", host2->name,
3300 (host2->address == NULL)? US"unset" : host2->address);
3301 }
3302 rc = OK;
3303 }
3304
3305 /* This is for real. If the host is expired, we don't count it for
3306 hosts_max_retry. This ensures that all hosts must expire before an address
8e669ac1 3307 is timed out, unless hosts_max_try_hardlimit (which protects against
533244af 3308 lunatic DNS configurations) is reached.
8e669ac1 3309
533244af
PH
3310 If the host is not expired and we are about to hit the hosts_max_retry
3311 limit, check to see if there is a subsequent hosts with a different MX
3312 value. If so, make that the next host, and don't count this one. This is a
3313 heuristic to make sure that different MXs do get tried. With a normal kind
3314 of retry rule, they would get tried anyway when the earlier hosts were
3315 delayed, but if the domain has a "retry every time" type of rule - as is
3316 often used for the the very large ISPs, that won't happen. */
0756eb3c
PH
3317
3318 else
3319 {
d427a7f9
JH
3320 host_item * thost;
3321 /* Make a copy of the host if it is local to this invocation
3322 of the transport. */
3323
3324 if (expanded_hosts)
3325 {
3326 thost = store_get(sizeof(host_item));
3327 *thost = *host;
3328 thost->name = string_copy(host->name);
3329 thost->address = string_copy(host->address);
3330 }
3331 else
3332 thost = host;
3333
0756eb3c
PH
3334 if (!host_is_expired && ++unexpired_hosts_tried >= ob->hosts_max_try)
3335 {
3336 host_item *h;
3337 DEBUG(D_transport)
3338 debug_printf("hosts_max_try limit reached with this host\n");
3339 for (h = host; h != NULL; h = h->next)
3340 if (h->mx != host->mx) break;
3341 if (h != NULL)
3342 {
3343 nexthost = h;
3344 unexpired_hosts_tried--;
3345 DEBUG(D_transport) debug_printf("however, a higher MX host exists "
3346 "and will be tried\n");
3347 }
3348 }
3349
3350 /* Attempt the delivery. */
3351
533244af 3352 total_hosts_tried++;
d427a7f9
JH
3353 rc = smtp_deliver(addrlist, thost, host_af, port, interface, tblock,
3354 &message_defer, FALSE);
0756eb3c
PH
3355
3356 /* Yield is one of:
3357 OK => connection made, each address contains its result;
3358 message_defer is set for message-specific defers (when all
3359 recipients are marked defer)
3360 DEFER => there was a non-message-specific delivery problem;
3361 ERROR => there was a problem setting up the arguments for a filter,
3362 or there was a problem with expanding added headers
3363 */
3364
3365 /* If the result is not OK, there was a non-message-specific problem.
3366 If the result is DEFER, we need to write to the logs saying what happened
3367 for this particular host, except in the case of authentication and TLS
3368 failures, where the log has already been written. If all hosts defer a
3369 general message is written at the end. */
3370
3371 if (rc == DEFER && first_addr->basic_errno != ERRNO_AUTHFAIL &&
3372 first_addr->basic_errno != ERRNO_TLSFAILURE)
3373 write_logs(first_addr, host);
3374
774ef2d7 3375#ifdef EXPERIMENTAL_EVENT
d68218c7 3376 if (rc == DEFER)
774ef2d7 3377 deferred_event_raise(first_addr, host);
a7538db1 3378#endif
d68218c7 3379
0756eb3c
PH
3380 /* If STARTTLS was accepted, but there was a failure in setting up the
3381 TLS session (usually a certificate screwup), and the host is not in
3382 hosts_require_tls, and tls_tempfail_tryclear is true, try again, with
3383 TLS forcibly turned off. We have to start from scratch with a new SMTP
3384 connection. That's why the retry is done from here, not from within
3385 smtp_deliver(). [Rejections of STARTTLS itself don't screw up the
3386 session, so the in-clear transmission after those errors, if permitted,
3387 happens inside smtp_deliver().] */
3388
a7538db1 3389#ifdef SUPPORT_TLS
7a31d643
JH
3390 if ( rc == DEFER
3391 && first_addr->basic_errno == ERRNO_TLSFAILURE
3392 && ob->tls_tempfail_tryclear
5130845b 3393 && verify_check_given_host(&ob->hosts_require_tls, host) != OK
7a31d643 3394 )
0756eb3c
PH
3395 {
3396 log_write(0, LOG_MAIN, "TLS session failure: delivering unencrypted "
3397 "to %s [%s] (not in hosts_require_tls)", host->name, host->address);
3398 first_addr = prepare_addresses(addrlist, host);
d427a7f9
JH
3399 rc = smtp_deliver(addrlist, thost, host_af, port, interface, tblock,
3400 &message_defer, TRUE);
0756eb3c
PH
3401 if (rc == DEFER && first_addr->basic_errno != ERRNO_AUTHFAIL)
3402 write_logs(first_addr, host);
774ef2d7 3403# ifdef EXPERIMENTAL_EVENT
d68218c7 3404 if (rc == DEFER)
774ef2d7 3405 deferred_event_raise(first_addr, host);
a7538db1 3406# endif
0756eb3c 3407 }
a1bccd48 3408#endif /*SUPPORT_TLS*/
0756eb3c
PH
3409 }
3410
3411 /* Delivery attempt finished */
3412
3413 rs = (rc == OK)? US"OK" : (rc == DEFER)? US"DEFER" : (rc == ERROR)?
3414 US"ERROR" : US"?";
3415
3416 set_process_info("delivering %s: just tried %s [%s] for %s%s: result %s",
3417 message_id, host->name, host->address, addrlist->address,
3418 (addrlist->next == NULL)? "" : " (& others)", rs);
3419
3420 /* Release serialization if set up */
3421
3422 if (serialized) enq_end(serialize_key);
3423
3424 /* If the result is DEFER, or if a host retry record is known to exist, we
3425 need to add an item to the retry chain for updating the retry database
3426 at the end of delivery. We only need to add the item to the top address,
3427 of course. Also, if DEFER, we mark the IP address unusable so as to skip it
3428 for any other delivery attempts using the same address. (It is copied into
3429 the unusable tree at the outer level, so even if different address blocks
3430 contain the same address, it still won't get tried again.) */
3431
3432 if (rc == DEFER || retry_host_key != NULL)
3433 {
3434 int delete_flag = (rc != DEFER)? rf_delete : 0;
3435 if (retry_host_key == NULL)
3436 {
9c695f6d
JH
3437 BOOL incl_ip;
3438 if (exp_bool(addrlist, US"transport", tblock->name, D_transport,
3439 US"retry_include_ip_address", ob->retry_include_ip_address,
3440 ob->expand_retry_include_ip_address, &incl_ip) != OK)
3441 incl_ip = TRUE; /* error; use most-specific retry record */
3442
3443 retry_host_key = incl_ip ?
0756eb3c
PH
3444 string_sprintf("T:%S:%s%s", host->name, host->address, pistring) :
3445 string_sprintf("T:%S%s", host->name, pistring);
3446 }
3447
3448 /* If a delivery of another message over an existing SMTP connection
3449 yields DEFER, we do NOT set up retry data for the host. This covers the
3450 case when there are delays in routing the addresses in the second message
3451 that are so long that the server times out. This is alleviated by not
3452 routing addresses that previously had routing defers when handling an
3453 existing connection, but even so, this case may occur (e.g. if a
3454 previously happily routed address starts giving routing defers). If the
3455 host is genuinely down, another non-continued message delivery will
3456 notice it soon enough. */
3457
3458 if (delete_flag != 0 || !continuing)
3459 retry_add_item(first_addr, retry_host_key, rf_host | delete_flag);
3460
3461 /* We may have tried an expired host, if its retry time has come; ensure
3462 the status reflects the expiry for the benefit of any other addresses. */
3463
3464 if (rc == DEFER)
3465 {
3466 host->status = (host_is_expired)?
3467 hstatus_unusable_expired : hstatus_unusable;
3468 host->why = hwhy_deferred;
3469 }
3470 }
3471
3472 /* If message_defer is set (host was OK, but every recipient got deferred
3473 because of some message-specific problem), or if that had happened
3474 previously so that a message retry key exists, add an appropriate item
3475 to the retry chain. Note that if there was a message defer but now there is
3476 a host defer, the message defer record gets deleted. That seems perfectly
3477 reasonable. Also, stop the message from being remembered as waiting
f6c332bd 3478 for specific hosts. */
0756eb3c
PH
3479
3480 if (message_defer || retry_message_key != NULL)
3481 {
3482 int delete_flag = message_defer? 0 : rf_delete;
3483 if (retry_message_key == NULL)
3484 {
9c695f6d
JH
3485 BOOL incl_ip;
3486 if (exp_bool(addrlist, US"transport", tblock->name, D_transport,
3487 US"retry_include_ip_address", ob->retry_include_ip_address,
3488 ob->expand_retry_include_ip_address, &incl_ip) != OK)
3489 incl_ip = TRUE; /* error; use most-specific retry record */
3490
3491 retry_message_key = incl_ip ?
0756eb3c
PH
3492 string_sprintf("T:%S:%s%s:%s", host->name, host->address, pistring,
3493 message_id) :
3494 string_sprintf("T:%S%s:%s", host->name, pistring, message_id);
3495 }
3496 retry_add_item(addrlist, retry_message_key,
3497 rf_message | rf_host | delete_flag);
f6c332bd 3498 update_waiting = FALSE;
0756eb3c
PH
3499 }
3500
3501 /* Any return other than DEFER (that is, OK or ERROR) means that the
3502 addresses have got their final statuses filled in for this host. In the OK
3503 case, see if any of them are deferred. */
3504
3505 if (rc == OK)
3506 {
3507 for (addr = addrlist; addr != NULL; addr = addr->next)
3508 {
3509 if (addr->transport_return == DEFER)
3510 {
3511 some_deferred = TRUE;
3512 break;
3513 }
3514 }
3515 }
3516
3517 /* If no addresses deferred or the result was ERROR, return. We do this for
3518 ERROR because a failing filter set-up or add_headers expansion is likely to
3519 fail for any host we try. */
3520
3521 if (rc == ERROR || (rc == OK && !some_deferred))
3522 {
3523 DEBUG(D_transport) debug_printf("Leaving %s transport\n", tblock->name);
3524 return TRUE; /* Each address has its status */
3525 }
3526
3527 /* If the result was DEFER or some individual addresses deferred, let
3528 the loop run to try other hosts with the deferred addresses, except for the
3529 case when we were trying to deliver down an existing channel and failed.
3530 Don't try any other hosts in this case. */
3531
3532 if (continuing) break;
3533
3534 /* If the whole delivery, or some individual addresses, were deferred and
3535 there are more hosts that could be tried, do not count this host towards
3536 the hosts_max_try limit if the age of the message is greater than the
3537 maximum retry time for this host. This means we may try try all hosts,
3538 ignoring the limit, when messages have been around for some time. This is
3539 important because if we don't try all hosts, the address will never time
533244af 3540 out. NOTE: this does not apply to hosts_max_try_hardlimit. */
0756eb3c
PH
3541
3542 if ((rc == DEFER || some_deferred) && nexthost != NULL)
3543 {
3544 BOOL timedout;
3545 retry_config *retry = retry_find_config(host->name, NULL, 0, 0);
3546
3547 if (retry != NULL && retry->rules != NULL)
3548 {
3549 retry_rule *last_rule;
3550 for (last_rule = retry->rules;
3551 last_rule->next != NULL;
3552 last_rule = last_rule->next);
3553 timedout = time(NULL) - received_time > last_rule->timeout;
3554 }
3555 else timedout = TRUE; /* No rule => timed out */
3556
3557 if (timedout)
3558 {
3559 unexpired_hosts_tried--;
3560 DEBUG(D_transport) debug_printf("temporary delivery error(s) override "
3561 "hosts_max_try (message older than host's retry time)\n");
3562 }
3563 }
3564 } /* End of loop for trying multiple hosts. */
3565
3566 /* This is the end of the loop that repeats iff expired is TRUE and
3567 ob->delay_after_cutoff is FALSE. The second time round we will
3568 try those hosts that haven't been tried since the message arrived. */
3569
3570 DEBUG(D_transport)
3571 {
3572 debug_printf("all IP addresses skipped or deferred at least one address\n");
3573 if (expired && !ob->delay_after_cutoff && cutoff_retry == 0)
3574 debug_printf("retrying IP addresses not tried since message arrived\n");
3575 }
3576 }
3577
3578
3579/* Get here if all IP addresses are skipped or defer at least one address. In
3580MUA wrapper mode, this will happen only for connection or other non-message-
3581specific failures. Force the delivery status for all addresses to FAIL. */
3582
3583if (mua_wrapper)
3584 {
3585 for (addr = addrlist; addr != NULL; addr = addr->next)
3586 addr->transport_return = FAIL;
3587 goto END_TRANSPORT;
3588 }
3589
3590/* In the normal, non-wrapper case, add a standard message to each deferred
3591address if there hasn't been an error, that is, if it hasn't actually been
3592tried this time. The variable "expired" will be FALSE if any deliveries were
3593actually tried, or if there was at least one host that was not expired. That
3594is, it is TRUE only if no deliveries were tried and all hosts were expired. If
3595a delivery has been tried, an error code will be set, and the failing of the
3596message is handled by the retry code later.
3597
3598If queue_smtp is set, or this transport was called to send a subsequent message
3599down an existing TCP/IP connection, and something caused the host not to be
3600found, we end up here, but can detect these cases and handle them specially. */
3601
3602for (addr = addrlist; addr != NULL; addr = addr->next)
3603 {
3604 /* If host is not NULL, it means that we stopped processing the host list
533244af
PH
3605 because of hosts_max_try or hosts_max_try_hardlimit. In the former case, this
3606 means we need to behave as if some hosts were skipped because their retry
3607 time had not come. Specifically, this prevents the address from timing out.
8e669ac1 3608 However, if we have hit hosts_max_try_hardlimit, we want to behave as if all
533244af 3609 hosts were tried. */
0756eb3c
PH
3610
3611 if (host != NULL)
3612 {
533244af
PH
3613 if (total_hosts_tried >= ob->hosts_max_try_hardlimit)
3614 {
3615 DEBUG(D_transport)
3616 debug_printf("hosts_max_try_hardlimit reached: behave as if all "
3617 "hosts were tried\n");
3618 }
3619 else
8e669ac1 3620 {
533244af
PH
3621 DEBUG(D_transport)
3622 debug_printf("hosts_max_try limit caused some hosts to be skipped\n");
3623 setflag(addr, af_retry_skipped);
8e669ac1 3624 }
0756eb3c
PH
3625 }
3626
3627 if (queue_smtp) /* no deliveries attempted */
3628 {
3629 addr->transport_return = DEFER;
3630 addr->basic_errno = 0;
3631 addr->message = US"SMTP delivery explicitly queued";
3632 }
3633
3634 else if (addr->transport_return == DEFER &&
3635 (addr->basic_errno == ERRNO_UNKNOWNERROR || addr->basic_errno == 0) &&
3636 addr->message == NULL)
3637 {
3638 addr->basic_errno = ERRNO_HRETRY;
3639 if (continue_hostname != NULL)
3640 {
3641 addr->message = US"no host found for existing SMTP connection";
3642 }
3643 else if (expired)
3644 {
fffffe4c 3645 setflag(addr, af_pass_message); /* This is not a security risk */
0756eb3c
PH
3646 addr->message = (ob->delay_after_cutoff)?
3647 US"retry time not reached for any host after a long failure period" :
3648 US"all hosts have been failing for a long time and were last tried "
3649 "after this message arrived";
3650
3651 /* If we are already using fallback hosts, or there are no fallback hosts
3652 defined, convert the result to FAIL to cause a bounce. */
3653
3654 if (addr->host_list == addr->fallback_hosts ||
3655 addr->fallback_hosts == NULL)
3656 addr->transport_return = FAIL;
3657 }
3658 else
3659 {
3660 if (hosts_retry == hosts_total)
3661 addr->message = US"retry time not reached for any host";
3662 else if (hosts_fail == hosts_total)
3663 addr->message = US"all host address lookups failed permanently";
3664 else if (hosts_defer == hosts_total)
3665 addr->message = US"all host address lookups failed temporarily";
3666 else if (hosts_serial == hosts_total)
3667 addr->message = US"connection limit reached for all hosts";
3668 else if (hosts_fail+hosts_defer == hosts_total)
3669 addr->message = US"all host address lookups failed";
3670 else addr->message = US"some host address lookups failed and retry time "
3671 "not reached for other hosts or connection limit reached";
3672 }
3673 }
3674 }
3675
3676/* Update the database which keeps information about which messages are waiting
f6c332bd
PH
3677for which hosts to become available. For some message-specific errors, the
3678update_waiting flag is turned off because we don't want follow-on deliveries in
ea722490 3679those cases. If this transport instance is explicitly limited to one message
8b260705
PP
3680per connection then follow-on deliveries are not possible and there's no need
3681to create/update the per-transport wait-<transport_name> database. */
0756eb3c 3682
ea722490
JH
3683if (update_waiting && tblock->connection_max_messages != 1)
3684 transport_update_waiting(hostlist, tblock->name);
0756eb3c
PH
3685
3686END_TRANSPORT:
3687
3688DEBUG(D_transport) debug_printf("Leaving %s transport\n", tblock->name);
3689
3690return TRUE; /* Each address has its status */
3691}
3692
578897ea
JH
3693/* vi: aw ai sw=2
3694*/
0756eb3c 3695/* End of transport/smtp.c */