Unbreak build: crypto hdrs not in system includes
[exim.git] / src / src / verify.c
CommitLineData
059ec3d9
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
80fea873 5/* Copyright (c) University of Cambridge 1995 - 2016 */
059ec3d9
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* Functions concerned with verifying things. The original code for callout
9caching was contributed by Kevin Fleming (but I hacked it around a bit). */
10
11
12#include "exim.h"
817d9f57 13#include "transports/smtp.h"
059ec3d9 14
e4bdf652
JH
15#define CUTTHROUGH_CMD_TIMEOUT 30 /* timeout for cutthrough-routing calls */
16#define CUTTHROUGH_DATA_TIMEOUT 60 /* timeout for cutthrough-routing calls */
817d9f57
JH
17static smtp_outblock ctblock;
18uschar ctbuffer[8192];
19
059ec3d9
PH
20
21/* Structure for caching DNSBL lookups */
22
23typedef struct dnsbl_cache_block {
14b3c5bc 24 time_t expiry;
059ec3d9
PH
25 dns_address *rhs;
26 uschar *text;
27 int rc;
28 BOOL text_set;
29} dnsbl_cache_block;
30
31
32/* Anchor for DNSBL cache */
33
34static tree_node *dnsbl_cache = NULL;
35
36
431b7361
PH
37/* Bits for match_type in one_check_dnsbl() */
38
39#define MT_NOT 1
40#define MT_ALL 2
41
5032d1cf 42static uschar cutthrough_response(char, uschar **);
431b7361 43
8d330698
JH
44static int off = 0; /* for use by setsockopt */
45
059ec3d9
PH
46
47/*************************************************
48* Retrieve a callout cache record *
49*************************************************/
50
51/* If a record exists, check whether it has expired.
52
53Arguments:
54 dbm_file an open hints file
55 key the record key
56 type "address" or "domain"
57 positive_expire expire time for positive records
58 negative_expire expire time for negative records
59
60Returns: the cache record if a non-expired one exists, else NULL
61*/
62
63static dbdata_callout_cache *
55414b25 64get_callout_cache_record(open_db *dbm_file, const uschar *key, uschar *type,
059ec3d9
PH
65 int positive_expire, int negative_expire)
66{
67BOOL negative;
68int length, expire;
69time_t now;
70dbdata_callout_cache *cache_record;
71
72cache_record = dbfn_read_with_length(dbm_file, key, &length);
73
74if (cache_record == NULL)
75 {
6f4d5ad3 76 HDEBUG(D_verify) debug_printf("callout cache: no %s record found for %s\n", type, key);
059ec3d9
PH
77 return NULL;
78 }
79
80/* We treat a record as "negative" if its result field is not positive, or if
81it is a domain record and the postmaster field is negative. */
82
83negative = cache_record->result != ccache_accept ||
84 (type[0] == 'd' && cache_record->postmaster_result == ccache_reject);
85expire = negative? negative_expire : positive_expire;
86now = time(NULL);
87
88if (now - cache_record->time_stamp > expire)
89 {
6f4d5ad3 90 HDEBUG(D_verify) debug_printf("callout cache: %s record expired for %s\n", type, key);
059ec3d9
PH
91 return NULL;
92 }
93
94/* If this is a non-reject domain record, check for the obsolete format version
95that doesn't have the postmaster and random timestamps, by looking at the
96length. If so, copy it to a new-style block, replicating the record's
97timestamp. Then check the additional timestamps. (There's no point wasting
98effort if connections are rejected.) */
99
100if (type[0] == 'd' && cache_record->result != ccache_reject)
101 {
102 if (length == sizeof(dbdata_callout_cache_obs))
103 {
104 dbdata_callout_cache *new = store_get(sizeof(dbdata_callout_cache));
105 memcpy(new, cache_record, length);
106 new->postmaster_stamp = new->random_stamp = new->time_stamp;
107 cache_record = new;
108 }
109
110 if (now - cache_record->postmaster_stamp > expire)
111 cache_record->postmaster_result = ccache_unknown;
112
113 if (now - cache_record->random_stamp > expire)
114 cache_record->random_result = ccache_unknown;
115 }
116
6f4d5ad3 117HDEBUG(D_verify) debug_printf("callout cache: found %s record for %s\n", type, key);
059ec3d9
PH
118return cache_record;
119}
120
121
122
123/*************************************************
124* Do callout verification for an address *
125*************************************************/
126
127/* This function is called from verify_address() when the address has routed to
128a host list, and a callout has been requested. Callouts are expensive; that is
129why a cache is used to improve the efficiency.
130
131Arguments:
132 addr the address that's been routed
133 host_list the list of hosts to try
134 tf the transport feedback block
135
136 ifstring "interface" option from transport, or NULL
137 portstring "port" option from transport, or NULL
138 protocolstring "protocol" option from transport, or NULL
139 callout the per-command callout timeout
4deaf07d
PH
140 callout_overall the overall callout timeout (if < 0 use 4*callout)
141 callout_connect the callout connection timeout (if < 0 use callout)
059ec3d9
PH
142 options the verification options - these bits are used:
143 vopt_is_recipient => this is a recipient address
144 vopt_callout_no_cache => don't use callout cache
2a4be8f9 145 vopt_callout_fullpm => if postmaster check, do full one
059ec3d9
PH
146 vopt_callout_random => do the "random" thing
147 vopt_callout_recipsender => use real sender for recipient
148 vopt_callout_recippmaster => use postmaster for recipient
149 se_mailfrom MAIL FROM address for sender verify; NULL => ""
150 pm_mailfrom if non-NULL, do the postmaster check with this sender
151
152Returns: OK/FAIL/DEFER
153*/
154
155static int
156do_callout(address_item *addr, host_item *host_list, transport_feedback *tf,
8e669ac1 157 int callout, int callout_overall, int callout_connect, int options,
4deaf07d 158 uschar *se_mailfrom, uschar *pm_mailfrom)
059ec3d9 159{
059ec3d9 160int yield = OK;
2b1c6e3a 161int old_domain_cache_result = ccache_accept;
059ec3d9
PH
162BOOL done = FALSE;
163uschar *address_key;
164uschar *from_address;
165uschar *random_local_part = NULL;
55414b25 166const uschar *save_deliver_domain = deliver_domain;
8b9476ba
JH
167uschar **failure_ptr = options & vopt_is_recipient
168 ? &recipient_verify_failure : &sender_verify_failure;
059ec3d9
PH
169open_db dbblock;
170open_db *dbm_file = NULL;
171dbdata_callout_cache new_domain_record;
172dbdata_callout_cache_address new_address_record;
173host_item *host;
174time_t callout_start_time;
9094b84b 175uschar peer_offered = 0;
059ec3d9
PH
176
177new_domain_record.result = ccache_unknown;
178new_domain_record.postmaster_result = ccache_unknown;
179new_domain_record.random_result = ccache_unknown;
180
181memset(&new_address_record, 0, sizeof(new_address_record));
182
183/* For a recipient callout, the key used for the address cache record must
184include the sender address if we are using the real sender in the callout,
185because that may influence the result of the callout. */
186
187address_key = addr->address;
188from_address = US"";
189
8b9476ba 190if (options & vopt_is_recipient)
059ec3d9 191 {
5032d1cf 192 if (options & vopt_callout_recipsender)
059ec3d9
PH
193 {
194 address_key = string_sprintf("%s/<%s>", addr->address, sender_address);
195 from_address = sender_address;
8b9476ba 196 if (cutthrough.delivery) options |= vopt_callout_no_cache;
059ec3d9 197 }
5032d1cf 198 else if (options & vopt_callout_recippmaster)
059ec3d9
PH
199 {
200 address_key = string_sprintf("%s/<postmaster@%s>", addr->address,
201 qualify_domain_sender);
202 from_address = string_sprintf("postmaster@%s", qualify_domain_sender);
203 }
204 }
205
206/* For a sender callout, we must adjust the key if the mailfrom address is not
207empty. */
208
209else
210 {
211 from_address = (se_mailfrom == NULL)? US"" : se_mailfrom;
212 if (from_address[0] != 0)
213 address_key = string_sprintf("%s/<%s>", addr->address, from_address);
214 }
215
216/* Open the callout cache database, it it exists, for reading only at this
217stage, unless caching has been disabled. */
218
8b9476ba 219if (options & vopt_callout_no_cache)
059ec3d9
PH
220 {
221 HDEBUG(D_verify) debug_printf("callout cache: disabled by no_cache\n");
222 }
223else if ((dbm_file = dbfn_open(US"callout", O_RDWR, &dbblock, FALSE)) == NULL)
224 {
225 HDEBUG(D_verify) debug_printf("callout cache: not available\n");
226 }
227
228/* If a cache database is available see if we can avoid the need to do an
229actual callout by making use of previously-obtained data. */
230
ff5929e3 231if (dbm_file)
059ec3d9
PH
232 {
233 dbdata_callout_cache_address *cache_address_record;
234 dbdata_callout_cache *cache_record = get_callout_cache_record(dbm_file,
235 addr->domain, US"domain",
236 callout_cache_domain_positive_expire,
237 callout_cache_domain_negative_expire);
238
239 /* If an unexpired cache record was found for this domain, see if the callout
240 process can be short-circuited. */
241
ff5929e3 242 if (cache_record)
059ec3d9 243 {
2b1c6e3a
PH
244 /* In most cases, if an early command (up to and including MAIL FROM:<>)
245 was rejected, there is no point carrying on. The callout fails. However, if
246 we are doing a recipient verification with use_sender or use_postmaster
247 set, a previous failure of MAIL FROM:<> doesn't count, because this time we
248 will be using a non-empty sender. We have to remember this situation so as
249 not to disturb the cached domain value if this whole verification succeeds
250 (we don't want it turning into "accept"). */
251
252 old_domain_cache_result = cache_record->result;
253
254 if (cache_record->result == ccache_reject ||
255 (*from_address == 0 && cache_record->result == ccache_reject_mfnull))
059ec3d9
PH
256 {
257 setflag(addr, af_verify_nsfail);
258 HDEBUG(D_verify)
259 debug_printf("callout cache: domain gave initial rejection, or "
260 "does not accept HELO or MAIL FROM:<>\n");
261 setflag(addr, af_verify_nsfail);
262 addr->user_message = US"(result of an earlier callout reused).";
263 yield = FAIL;
8e669ac1 264 *failure_ptr = US"mail";
059ec3d9
PH
265 goto END_CALLOUT;
266 }
267
268 /* If a previous check on a "random" local part was accepted, we assume
269 that the server does not do any checking on local parts. There is therefore
270 no point in doing the callout, because it will always be successful. If a
271 random check previously failed, arrange not to do it again, but preserve
272 the data in the new record. If a random check is required but hasn't been
273 done, skip the remaining cache processing. */
274
8b9476ba 275 if (options & vopt_callout_random) switch(cache_record->random_result)
059ec3d9
PH
276 {
277 case ccache_accept:
8b9476ba
JH
278 HDEBUG(D_verify)
279 debug_printf("callout cache: domain accepts random addresses\n");
280 goto END_CALLOUT; /* Default yield is OK */
059ec3d9
PH
281
282 case ccache_reject:
8b9476ba
JH
283 HDEBUG(D_verify)
284 debug_printf("callout cache: domain rejects random addresses\n");
285 options &= ~vopt_callout_random;
286 new_domain_record.random_result = ccache_reject;
287 new_domain_record.random_stamp = cache_record->random_stamp;
288 break;
059ec3d9
PH
289
290 default:
8b9476ba
JH
291 HDEBUG(D_verify)
292 debug_printf("callout cache: need to check random address handling "
293 "(not cached or cache expired)\n");
294 goto END_CACHE;
059ec3d9
PH
295 }
296
297 /* If a postmaster check is requested, but there was a previous failure,
298 there is again no point in carrying on. If a postmaster check is required,
299 but has not been done before, we are going to have to do a callout, so skip
300 remaining cache processing. */
301
ff5929e3 302 if (pm_mailfrom)
059ec3d9
PH
303 {
304 if (cache_record->postmaster_result == ccache_reject)
305 {
306 setflag(addr, af_verify_pmfail);
307 HDEBUG(D_verify)
308 debug_printf("callout cache: domain does not accept "
309 "RCPT TO:<postmaster@domain>\n");
310 yield = FAIL;
8e669ac1 311 *failure_ptr = US"postmaster";
059ec3d9
PH
312 setflag(addr, af_verify_pmfail);
313 addr->user_message = US"(result of earlier verification reused).";
314 goto END_CALLOUT;
315 }
316 if (cache_record->postmaster_result == ccache_unknown)
317 {
318 HDEBUG(D_verify)
319 debug_printf("callout cache: need to check RCPT "
320 "TO:<postmaster@domain> (not cached or cache expired)\n");
321 goto END_CACHE;
322 }
323
324 /* If cache says OK, set pm_mailfrom NULL to prevent a redundant
325 postmaster check if the address itself has to be checked. Also ensure
326 that the value in the cache record is preserved (with its old timestamp).
327 */
328
329 HDEBUG(D_verify) debug_printf("callout cache: domain accepts RCPT "
330 "TO:<postmaster@domain>\n");
331 pm_mailfrom = NULL;
332 new_domain_record.postmaster_result = ccache_accept;
333 new_domain_record.postmaster_stamp = cache_record->postmaster_stamp;
334 }
335 }
336
337 /* We can't give a result based on information about the domain. See if there
338 is an unexpired cache record for this specific address (combined with the
339 sender address if we are doing a recipient callout with a non-empty sender).
340 */
341
342 cache_address_record = (dbdata_callout_cache_address *)
343 get_callout_cache_record(dbm_file,
344 address_key, US"address",
345 callout_cache_positive_expire,
346 callout_cache_negative_expire);
347
ff5929e3 348 if (cache_address_record)
059ec3d9
PH
349 {
350 if (cache_address_record->result == ccache_accept)
351 {
352 HDEBUG(D_verify)
353 debug_printf("callout cache: address record is positive\n");
354 }
355 else
356 {
357 HDEBUG(D_verify)
358 debug_printf("callout cache: address record is negative\n");
359 addr->user_message = US"Previous (cached) callout verification failure";
8e669ac1 360 *failure_ptr = US"recipient";
059ec3d9
PH
361 yield = FAIL;
362 }
363 goto END_CALLOUT;
364 }
365
366 /* Close the cache database while we actually do the callout for real. */
367
368 END_CACHE:
369 dbfn_close(dbm_file);
370 dbm_file = NULL;
371 }
372
193e3acd 373if (!addr->transport)
059ec3d9 374 {
193e3acd 375 HDEBUG(D_verify) debug_printf("cannot callout via null transport\n");
059ec3d9 376 }
6681531a
HSHR
377else if (Ustrcmp(addr->transport->driver_name, "smtp") != 0)
378 log_write(0, LOG_MAIN|LOG_PANIC|LOG_CONFIG_FOR, "callout transport '%s': %s is non-smtp",
379 addr->transport->name, addr->transport->driver_name);
193e3acd
JH
380else
381 {
382 smtp_transport_options_block *ob =
9d9c3746 383 (smtp_transport_options_block *)addr->transport->options_block;
059ec3d9 384
193e3acd
JH
385 /* The information wasn't available in the cache, so we have to do a real
386 callout and save the result in the cache for next time, unless no_cache is set,
387 or unless we have a previously cached negative random result. If we are to test
388 with a random local part, ensure that such a local part is available. If not,
389 log the fact, but carry on without randomming. */
059ec3d9 390
8b9476ba 391 if (options & vopt_callout_random && callout_random_local_part != NULL)
65f1c92a 392 if (!(random_local_part = expand_string(callout_random_local_part)))
193e3acd
JH
393 log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand "
394 "callout_random_local_part: %s", expand_string_message);
059ec3d9 395
193e3acd
JH
396 /* Default the connect and overall callout timeouts if not set, and record the
397 time we are starting so that we can enforce it. */
4c590bd1 398
193e3acd
JH
399 if (callout_overall < 0) callout_overall = 4 * callout;
400 if (callout_connect < 0) callout_connect = callout;
401 callout_start_time = time(NULL);
4c590bd1 402
193e3acd
JH
403 /* Before doing a real callout, if this is an SMTP connection, flush the SMTP
404 output because a callout might take some time. When PIPELINING is active and
405 there are many recipients, the total time for doing lots of callouts can add up
406 and cause the client to time out. So in this case we forgo the PIPELINING
407 optimization. */
817d9f57 408
ff5929e3 409 if (smtp_out && !disable_callout_flush) mac_smtp_fflush();
059ec3d9 410
5032d1cf
JH
411/* cutthrough-multi: if a nonfirst rcpt has the same routing as the first,
412and we are holding a cutthrough conn open, we can just append the rcpt to
413that conn for verification purposes (and later delivery also). Simplest
414coding means skipping this whole loop and doing the append separately.
415
416We will need to remember it has been appended so that rcpt-acl tail code
417can do it there for the non-rcpt-verify case. For this we keep an addresscount.
418*/
419
420 /* Can we re-use an open cutthrough connection? */
421 if ( cutthrough.fd >= 0
422 && (options & (vopt_callout_recipsender | vopt_callout_recippmaster))
423 == vopt_callout_recipsender
424 && !random_local_part
425 && !pm_mailfrom
426 )
427 {
428 if (addr->transport == cutthrough.addr.transport)
429 for (host = host_list; host; host = host->next)
430 if (Ustrcmp(host->address, cutthrough.host.address) == 0)
431 {
432 int host_af;
433 uschar *interface = NULL; /* Outgoing interface to use; NULL => any */
434 int port = 25;
435
436 deliver_host = host->name;
437 deliver_host_address = host->address;
438 deliver_host_port = host->port;
439 deliver_domain = addr->domain;
440 transport_name = addr->transport->name;
441
442 host_af = (Ustrchr(host->address, ':') == NULL)? AF_INET:AF_INET6;
443
6f6dedcc 444 if (!smtp_get_interface(tf->interface, host_af, addr, &interface,
5032d1cf
JH
445 US"callout") ||
446 !smtp_get_port(tf->port, addr, &port, US"callout"))
447 log_write(0, LOG_MAIN|LOG_PANIC, "<%s>: %s", addr->address,
448 addr->message);
449
450 if ( ( interface == cutthrough.interface
451 || ( interface
452 && cutthrough.interface
453 && Ustrcmp(interface, cutthrough.interface) == 0
454 ) )
455 && port == cutthrough.host.port
456 )
457 {
806c3df9 458 uschar * resp = NULL;
5032d1cf
JH
459
460 /* Match! Send the RCPT TO, append the addr, set done */
461 done =
462 smtp_write_command(&ctblock, FALSE, "RCPT TO:<%.1000s>\r\n",
463 transport_rcpt_address(addr,
464 (addr->transport == NULL)? FALSE :
465 addr->transport->rcpt_include_affixes)) >= 0 &&
466 cutthrough_response('2', &resp) == '2';
467
468 /* This would go horribly wrong if a callout fail was ignored by ACL.
469 We punt by abandoning cutthrough on a reject, like the
470 first-rcpt does. */
471
472 if (done)
473 {
474 address_item * na = store_get(sizeof(address_item));
475 *na = cutthrough.addr;
476 cutthrough.addr = *addr;
477 cutthrough.addr.host_used = &cutthrough.host;
478 cutthrough.addr.next = na;
479
480 cutthrough.nrcpt++;
481 }
482 else
483 {
484 cancel_cutthrough_connection("recipient rejected");
806c3df9 485 if (!resp || errno == ETIMEDOUT)
5032d1cf
JH
486 {
487 HDEBUG(D_verify) debug_printf("SMTP timeout\n");
488 }
489 else if (errno == 0)
490 {
491 if (*resp == 0)
492 Ustrcpy(resp, US"connection dropped");
493
494 addr->message =
495 string_sprintf("response to \"%s\" from %s [%s] was: %s",
496 big_buffer, host->name, host->address,
497 string_printing(resp));
498
499 addr->user_message =
500 string_sprintf("Callout verification failed:\n%s", resp);
501
502 /* Hard rejection ends the process */
503
504 if (resp[0] == '5') /* Address rejected */
505 {
506 yield = FAIL;
507 done = TRUE;
508 }
509 }
510 }
511 }
512 break;
513 }
514 if (!done)
515 cancel_cutthrough_connection("incompatible connection");
516 }
517
193e3acd
JH
518 /* Now make connections to the hosts and do real callouts. The list of hosts
519 is passed in as an argument. */
059ec3d9 520
ff5929e3 521 for (host = host_list; host && !done; host = host->next)
059ec3d9 522 {
193e3acd
JH
523 smtp_inblock inblock;
524 smtp_outblock outblock;
525 int host_af;
526 int port = 25;
527 BOOL send_quit = TRUE;
528 uschar *active_hostname = smtp_active_hostname;
529 BOOL lmtp;
530 BOOL smtps;
531 BOOL esmtp;
532 BOOL suppress_tls = FALSE;
533 uschar *interface = NULL; /* Outgoing interface to use; NULL => any */
0e66b3b6
JH
534#if defined(SUPPORT_TLS) && defined(EXPERIMENTAL_DANE)
535 BOOL dane = FALSE;
6ebd79ec 536 BOOL dane_required;
0e66b3b6
JH
537 dns_answer tlsa_dnsa;
538#endif
193e3acd
JH
539 uschar inbuffer[4096];
540 uschar outbuffer[1024];
541 uschar responsebuffer[4096];
9094b84b 542 uschar * size_str;
193e3acd
JH
543
544 clearflag(addr, af_verify_pmfail); /* postmaster callout flag */
545 clearflag(addr, af_verify_nsfail); /* null sender callout flag */
546
547 /* Skip this host if we don't have an IP address for it. */
548
ff5929e3 549 if (!host->address)
193e3acd
JH
550 {
551 DEBUG(D_verify) debug_printf("no IP address for host name %s: skipping\n",
552 host->name);
553 continue;
554 }
059ec3d9 555
193e3acd 556 /* Check the overall callout timeout */
059ec3d9 557
193e3acd
JH
558 if (time(NULL) - callout_start_time >= callout_overall)
559 {
560 HDEBUG(D_verify) debug_printf("overall timeout for callout exceeded\n");
561 break;
562 }
059ec3d9 563
193e3acd 564 /* Set IPv4 or IPv6 */
059ec3d9 565
ff5929e3 566 host_af = Ustrchr(host->address, ':') == NULL ? AF_INET : AF_INET6;
de3a88fb 567
193e3acd
JH
568 /* Expand and interpret the interface and port strings. The latter will not
569 be used if there is a host-specific port (e.g. from a manualroute router).
570 This has to be delayed till now, because they may expand differently for
571 different hosts. If there's a failure, log it, but carry on with the
572 defaults. */
de3a88fb 573
193e3acd
JH
574 deliver_host = host->name;
575 deliver_host_address = host->address;
a7538db1 576 deliver_host_port = host->port;
193e3acd 577 deliver_domain = addr->domain;
aec45841 578 transport_name = addr->transport->name;
059ec3d9 579
6f6dedcc 580 if ( !smtp_get_interface(tf->interface, host_af, addr, &interface,
bf7aabb4
JH
581 US"callout")
582 || !smtp_get_port(tf->port, addr, &port, US"callout")
583 )
193e3acd
JH
584 log_write(0, LOG_MAIN|LOG_PANIC, "<%s>: %s", addr->address,
585 addr->message);
059ec3d9 586
193e3acd
JH
587 /* Set HELO string according to the protocol */
588 lmtp= Ustrcmp(tf->protocol, "lmtp") == 0;
589 smtps= Ustrcmp(tf->protocol, "smtps") == 0;
059ec3d9 590
059ec3d9 591
193e3acd 592 HDEBUG(D_verify) debug_printf("interface=%s port=%d\n", interface, port);
059ec3d9 593
193e3acd 594 /* Set up the buffer for reading SMTP response packets. */
059ec3d9 595
193e3acd
JH
596 inblock.buffer = inbuffer;
597 inblock.buffersize = sizeof(inbuffer);
598 inblock.ptr = inbuffer;
599 inblock.ptrend = inbuffer;
059ec3d9 600
193e3acd 601 /* Set up the buffer for holding SMTP commands while pipelining */
817d9f57 602
193e3acd
JH
603 outblock.buffer = outbuffer;
604 outblock.buffersize = sizeof(outbuffer);
605 outblock.ptr = outbuffer;
606 outblock.cmd_count = 0;
607 outblock.authenticating = FALSE;
059ec3d9 608
193e3acd
JH
609 /* Connect to the host; on failure, just loop for the next one, but we
610 set the error for the last one. Use the callout_connect timeout. */
059ec3d9 611
193e3acd 612 tls_retry_connection:
41c7c167 613
65f1c92a
JH
614 /* Reset the parameters of a TLS session */
615 tls_out.cipher = tls_out.peerdn = tls_out.peercert = NULL;
616
193e3acd 617 inblock.sock = outblock.sock =
7eb6c37c
JH
618 smtp_connect(host, host_af, port, interface, callout_connect,
619 addr->transport);
193e3acd
JH
620 if (inblock.sock < 0)
621 {
ae5afa61 622 HDEBUG(D_verify) debug_printf("connect: %s\n", strerror(errno));
193e3acd
JH
623 addr->message = string_sprintf("could not connect to %s [%s]: %s",
624 host->name, host->address, strerror(errno));
aec45841 625 transport_name = NULL;
193e3acd
JH
626 deliver_host = deliver_host_address = NULL;
627 deliver_domain = save_deliver_domain;
628 continue;
629 }
41c7c167 630
bf7aabb4
JH
631#if defined(SUPPORT_TLS) && defined(EXPERIMENTAL_DANE)
632 {
633 int rc;
634
635 tls_out.dane_verified = FALSE;
636 tls_out.tlsa_usage = 0;
637
638 dane_required =
639 verify_check_given_host(&ob->hosts_require_dane, host) == OK;
640
641 if (host->dnssec == DS_YES)
642 {
4b0fe319
JH
643 if( dane_required
644 || verify_check_given_host(&ob->hosts_try_dane, host) == OK
bf7aabb4 645 )
4b0fe319
JH
646 {
647 if ((rc = tlsa_lookup(host, &tlsa_dnsa, dane_required)) != OK)
648 return rc;
649 dane = TRUE;
650 }
bf7aabb4
JH
651 }
652 else if (dane_required)
653 {
654 log_write(0, LOG_MAIN, "DANE error: %s lookup not DNSSEC", host->name);
655 return FAIL;
656 }
657
658 if (dane)
659 ob->tls_tempfail_tryclear = FALSE;
660 }
661#endif /*DANE*/
662
193e3acd 663 /* Expand the helo_data string to find the host name to use. */
41c7c167 664
ff5929e3 665 if (tf->helo_data)
193e3acd 666 {
ff5929e3
JH
667 uschar * s = expand_string(tf->helo_data);
668 if (!s)
193e3acd
JH
669 log_write(0, LOG_MAIN|LOG_PANIC, "<%s>: failed to expand transport's "
670 "helo_data value for callout: %s", addr->address,
671 expand_string_message);
672 else active_hostname = s;
673 }
059ec3d9 674
193e3acd
JH
675 /* Wait for initial response, and send HELO. The smtp_write_command()
676 function leaves its command in big_buffer. This is used in error responses.
677 Initialize it in case the connection is rejected. */
817d9f57 678
193e3acd 679 Ustrcpy(big_buffer, "initial connection");
817d9f57 680
193e3acd
JH
681 /* Unless ssl-on-connect, wait for the initial greeting */
682 smtps_redo_greeting:
817d9f57 683
a7538db1 684#ifdef SUPPORT_TLS
193e3acd 685 if (!smtps || (smtps && tls_out.active >= 0))
a7538db1
JH
686#endif
687 {
8d330698
JH
688#ifdef TCP_QUICKACK
689 (void) setsockopt(inblock.sock, IPPROTO_TCP, TCP_QUICKACK, US &off, sizeof(off));
690#endif
193e3acd
JH
691 if (!(done= smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer), '2', callout)))
692 goto RESPONSE_FAILED;
770747fd 693
0cbf2b82 694#ifndef DISABLE_EVENT
aaedd1b5
JH
695 lookup_dnssec_authenticated = host->dnssec==DS_YES ? US"yes"
696 : host->dnssec==DS_NO ? US"no" : NULL;
774ef2d7 697 if (event_raise(addr->transport->event_action,
b30275b8 698 US"smtp:connect", responsebuffer))
a7538db1 699 {
aaedd1b5 700 lookup_dnssec_authenticated = NULL;
a7538db1
JH
701 /* Logging? Debug? */
702 goto RESPONSE_FAILED;
703 }
aaedd1b5 704 lookup_dnssec_authenticated = NULL;
a7538db1
JH
705#endif
706 }
707
193e3acd 708 /* Not worth checking greeting line for ESMTP support */
55414b25 709 if (!(esmtp = verify_check_given_host(&ob->hosts_avoid_esmtp, host) != OK))
193e3acd
JH
710 DEBUG(D_transport)
711 debug_printf("not sending EHLO (host matches hosts_avoid_esmtp)\n");
817d9f57 712
193e3acd 713 tls_redo_helo:
817d9f57 714
a7538db1 715#ifdef SUPPORT_TLS
193e3acd 716 if (smtps && tls_out.active < 0) /* ssl-on-connect, first pass */
817d9f57 717 {
9094b84b 718 peer_offered &= ~PEER_OFFERED_TLS;
193e3acd 719 ob->tls_tempfail_tryclear = FALSE;
817d9f57 720 }
a7538db1
JH
721 else /* all other cases */
722#endif
817d9f57 723
193e3acd 724 { esmtp_retry:
817d9f57 725
193e3acd
JH
726 if (!(done= smtp_write_command(&outblock, FALSE, "%s %s\r\n",
727 !esmtp? "HELO" : lmtp? "LHLO" : "EHLO", active_hostname) >= 0))
728 goto SEND_FAILED;
729 if (!smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer), '2', callout))
730 {
4ed8d31a
JH
731 if (errno != 0 || responsebuffer[0] == 0 || lmtp || !esmtp || tls_out.active >= 0)
732 {
733 done= FALSE;
734 goto RESPONSE_FAILED;
735 }
a7538db1 736#ifdef SUPPORT_TLS
9094b84b 737 peer_offered &= ~PEER_OFFERED_TLS;
a7538db1 738#endif
193e3acd
JH
739 esmtp = FALSE;
740 goto esmtp_retry; /* fallback to HELO */
741 }
742
743 /* Set tls_offered if the response to EHLO specifies support for STARTTLS. */
4ed8d31a 744
9094b84b
JH
745 peer_offered = esmtp
746 ? ehlo_response(responsebuffer, sizeof(responsebuffer),
747 (!suppress_tls && tls_out.active < 0 ? PEER_OFFERED_TLS : 0)
748 | 0 /* no IGNQ */
749 | 0 /* no PRDR */
750#ifdef SUPPORT_I18N
751 | (addr->prop.utf8_msg && !addr->prop.utf8_downcvt
752 ? PEER_OFFERED_UTF8 : 0)
a7538db1 753#endif
9094b84b
JH
754 | 0 /* no DSN */
755 | 0 /* no PIPE */
756
757 /* only care about SIZE if we have size from inbound */
758 | (message_size > 0 && ob->size_addition >= 0
759 ? PEER_OFFERED_SIZE : 0)
760 )
761 : 0;
817d9f57
JH
762 }
763
91d08eb3 764 size_str = options & vopt_is_recipient && peer_offered & PEER_OFFERED_SIZE
9094b84b
JH
765 ? string_sprintf(" SIZE=%d", message_size + ob->size_addition) : US"";
766
767#ifdef SUPPORT_TLS
2d14f397 768 smtp_peer_options |= peer_offered & PEER_OFFERED_TLS;
9094b84b
JH
769#endif
770
193e3acd
JH
771 /* If TLS is available on this connection attempt to
772 start up a TLS session, unless the host is in hosts_avoid_tls. If successful,
773 send another EHLO - the server may give a different answer in secure mode. We
774 use a separate buffer for reading the response to STARTTLS so that if it is
775 negative, the original EHLO data is available for subsequent analysis, should
776 the client not be required to use TLS. If the response is bad, copy the buffer
777 for error analysis. */
778
a7538db1 779#ifdef SUPPORT_TLS
9094b84b 780 if ( peer_offered & PEER_OFFERED_TLS
5130845b
JH
781 && verify_check_given_host(&ob->hosts_avoid_tls, host) != OK
782 && verify_check_given_host(&ob->hosts_verify_avoid_tls, host) != OK
99400968 783 )
817d9f57 784 {
193e3acd
JH
785 uschar buffer2[4096];
786 if ( !smtps
787 && !(done= smtp_write_command(&outblock, FALSE, "STARTTLS\r\n") >= 0))
788 goto SEND_FAILED;
789
790 /* If there is an I/O error, transmission of this message is deferred. If
791 there is a temporary rejection of STARRTLS and tls_tempfail_tryclear is
792 false, we also defer. However, if there is a temporary rejection of STARTTLS
793 and tls_tempfail_tryclear is true, or if there is an outright rejection of
794 STARTTLS, we carry on. This means we will try to send the message in clear,
795 unless the host is in hosts_require_tls (tested below). */
796
797 if (!smtps && !smtp_read_response(&inblock, buffer2, sizeof(buffer2), '2',
798 ob->command_timeout))
817d9f57 799 {
4b0fe319
JH
800 if ( errno != 0
801 || buffer2[0] == 0
802 || buffer2[0] == '4' && !ob->tls_tempfail_tryclear
803 )
a7538db1
JH
804 {
805 Ustrncpy(responsebuffer, buffer2, sizeof(responsebuffer));
806 done= FALSE;
807 goto RESPONSE_FAILED;
808 }
193e3acd 809 }
817d9f57 810
193e3acd
JH
811 /* STARTTLS accepted or ssl-on-connect: try to negotiate a TLS session. */
812 else
813 {
65867078
JH
814 int oldtimeout = ob->command_timeout;
815 int rc;
816
817 ob->command_timeout = callout;
0e66b3b6 818 rc = tls_client_start(inblock.sock, host, addr, addr->transport
5032d1cf 819# ifdef EXPERIMENTAL_DANE
0e66b3b6 820 , dane ? &tlsa_dnsa : NULL
5032d1cf 821# endif
0e66b3b6 822 );
65867078 823 ob->command_timeout = oldtimeout;
193e3acd 824
6ebd79ec
JH
825 /* TLS negotiation failed; give an error. Try in clear on a new
826 connection, if the options permit it for this host. */
193e3acd 827 if (rc != OK)
83b27293 828 {
ae5afa61
JH
829 HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP(close)>>\n");
830 (void)close(inblock.sock);
0cbf2b82 831# ifndef DISABLE_EVENT
ae5afa61
JH
832 (void) event_raise(addr->transport->event_action,
833 US"tcp:close", NULL);
5032d1cf 834# endif
ae5afa61
JH
835 if ( ob->tls_tempfail_tryclear
836 && !smtps
837 && verify_check_given_host(&ob->hosts_require_tls, host) != OK
838 )
839 {
840 log_write(0, LOG_MAIN, "TLS session failure:"
841 " callout unencrypted to %s [%s] (not in hosts_require_tls)",
842 host->name, host->address);
843 suppress_tls = TRUE;
844 goto tls_retry_connection;
a7538db1 845 }
6ebd79ec 846
a7538db1
JH
847 /*save_errno = ERRNO_TLSFAILURE;*/
848 /*message = US"failure while setting up TLS session";*/
849 send_quit = FALSE;
850 done= FALSE;
851 goto TLS_FAILED;
852 }
193e3acd
JH
853
854 /* TLS session is set up. Copy info for logging. */
855 addr->cipher = tls_out.cipher;
856 addr->peerdn = tls_out.peerdn;
857
858 /* For SMTPS we need to wait for the initial OK response, then do HELO. */
859 if (smtps)
a7538db1 860 goto smtps_redo_greeting;
193e3acd
JH
861
862 /* For STARTTLS we need to redo EHLO */
863 goto tls_redo_helo;
864 }
817d9f57
JH
865 }
866
193e3acd
JH
867 /* If the host is required to use a secure channel, ensure that we have one. */
868 if (tls_out.active < 0)
0e66b3b6 869 if (
5032d1cf 870# ifdef EXPERIMENTAL_DANE
0e66b3b6 871 dane ||
5032d1cf 872# endif
5130845b 873 verify_check_given_host(&ob->hosts_require_tls, host) == OK
7a31d643 874 )
193e3acd
JH
875 {
876 /*save_errno = ERRNO_TLSREQUIRED;*/
c562fd30
JH
877 log_write(0, LOG_MAIN,
878 "H=%s [%s]: a TLS session is required for this host, but %s",
193e3acd 879 host->name, host->address,
9094b84b
JH
880 peer_offered & PEER_OFFERED_TLS
881 ? "an attempt to start TLS failed"
882 : "the server did not offer TLS support");
193e3acd
JH
883 done= FALSE;
884 goto TLS_FAILED;
885 }
817d9f57 886
5032d1cf 887#endif /*SUPPORT_TLS*/
817d9f57 888
193e3acd 889 done = TRUE; /* so far so good; have response to HELO */
817d9f57 890
d6e96b36 891 /* For now, transport_filter by cutthrough-delivery is not supported */
193e3acd 892 /* Need proper integration with the proper transport mechanism. */
5032d1cf 893 if (cutthrough.delivery)
d6e96b36 894 {
07eeb4df 895#ifndef DISABLE_DKIM
ae8386f0 896 uschar * s;
07eeb4df 897#endif
6e62c454
JH
898 if (addr->transport->filter_command)
899 {
5032d1cf 900 cutthrough.delivery = FALSE;
6e62c454
JH
901 HDEBUG(D_acl|D_v) debug_printf("Cutthrough cancelled by presence of transport filter\n");
902 }
a7538db1 903#ifndef DISABLE_DKIM
ff5aac2b 904 else if ((s = ob->dkim.dkim_domain) && (s = expand_string(s)) && *s)
6e62c454 905 {
5032d1cf 906 cutthrough.delivery = FALSE;
6e62c454
JH
907 HDEBUG(D_acl|D_v) debug_printf("Cutthrough cancelled by presence of DKIM signing\n");
908 }
a7538db1 909#endif
d6e96b36 910 }
817d9f57 911
193e3acd
JH
912 SEND_FAILED:
913 RESPONSE_FAILED:
914 TLS_FAILED:
915 ;
916 /* Clear down of the TLS, SMTP and TCP layers on error is handled below. */
059ec3d9 917
193e3acd
JH
918 /* Failure to accept HELO is cached; this blocks the whole domain for all
919 senders. I/O errors and defer responses are not cached. */
920
921 if (!done)
2b1c6e3a 922 {
193e3acd
JH
923 *failure_ptr = US"mail"; /* At or before MAIL */
924 if (errno == 0 && responsebuffer[0] == '5')
925 {
926 setflag(addr, af_verify_nsfail);
927 new_domain_record.result = ccache_reject;
928 }
2b1c6e3a 929 }
2b1c6e3a 930
8c5d388a 931#ifdef SUPPORT_I18N
3c8b3577
JH
932 else if ( addr->prop.utf8_msg
933 && !addr->prop.utf8_downcvt
9094b84b
JH
934 && !(peer_offered & PEER_OFFERED_UTF8)
935 )
9bfc60eb
JH
936 {
937 HDEBUG(D_acl|D_v) debug_printf("utf8 required but not offered\n");
938 errno = ERRNO_UTF8_FWD;
939 setflag(addr, af_verify_nsfail);
940 done = FALSE;
941 }
3c8b3577 942 else if ( addr->prop.utf8_msg
9094b84b 943 && (addr->prop.utf8_downcvt || !(peer_offered & PEER_OFFERED_UTF8))
921dfc11
JH
944 && (setflag(addr, af_utf8_downcvt),
945 from_address = string_address_utf8_to_alabel(from_address,
946 &addr->message),
947 addr->message
948 ) )
3c8b3577
JH
949 {
950 errno = ERRNO_EXPANDFAIL;
951 setflag(addr, af_verify_nsfail);
952 done = FALSE;
953 }
9bfc60eb
JH
954#endif
955
d6e96b36 956 /* If we haven't authenticated, but are required to, give up. */
fcc8e047
JH
957 /* Try to AUTH */
958
959 else done = smtp_auth(responsebuffer, sizeof(responsebuffer),
960 addr, host, ob, esmtp, &inblock, &outblock) == OK &&
961
b4a2b536
JH
962 /* Copy AUTH info for logging */
963 ( (addr->authenticator = client_authenticator),
964 (addr->auth_id = client_authenticated_id),
965
fcc8e047 966 /* Build a mail-AUTH string (re-using responsebuffer for convenience */
b4a2b536
JH
967 !smtp_mail_auth_str(responsebuffer, sizeof(responsebuffer), addr, ob)
968 ) &&
969
970 ( (addr->auth_sndr = client_authenticated_sender),
fcc8e047 971
193e3acd 972 /* Send the MAIL command */
9bfc60eb 973 (smtp_write_command(&outblock, FALSE,
8c5d388a 974#ifdef SUPPORT_I18N
921dfc11 975 addr->prop.utf8_msg && !addr->prop.utf8_downcvt
9094b84b 976 ? "MAIL FROM:<%s>%s%s SMTPUTF8\r\n"
9bfc60eb
JH
977 :
978#endif
9094b84b
JH
979 "MAIL FROM:<%s>%s%s\r\n",
980 from_address, responsebuffer, size_str) >= 0)
b4a2b536 981 ) &&
2b1c6e3a 982
193e3acd
JH
983 smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer),
984 '2', callout);
059ec3d9 985
00bff6f6
JH
986 deliver_host = deliver_host_address = NULL;
987 deliver_domain = save_deliver_domain;
988
193e3acd
JH
989 /* If the host does not accept MAIL FROM:<>, arrange to cache this
990 information, but again, don't record anything for an I/O error or a defer. Do
991 not cache rejections of MAIL when a non-empty sender has been used, because
992 that blocks the whole domain for all senders. */
059ec3d9 993
193e3acd 994 if (!done)
059ec3d9 995 {
193e3acd
JH
996 *failure_ptr = US"mail"; /* At or before MAIL */
997 if (errno == 0 && responsebuffer[0] == '5')
998 {
999 setflag(addr, af_verify_nsfail);
1000 if (from_address[0] == 0)
1001 new_domain_record.result = ccache_reject_mfnull;
1002 }
059ec3d9 1003 }
059ec3d9 1004
193e3acd
JH
1005 /* Otherwise, proceed to check a "random" address (if required), then the
1006 given address, and the postmaster address (if required). Between each check,
1007 issue RSET, because some servers accept only one recipient after MAIL
1008 FROM:<>.
2b1c6e3a 1009
193e3acd
JH
1010 Before doing this, set the result in the domain cache record to "accept",
1011 unless its previous value was ccache_reject_mfnull. In that case, the domain
1012 rejects MAIL FROM:<> and we want to continue to remember that. When that is
1013 the case, we have got here only in the case of a recipient verification with
1014 a non-null sender. */
059ec3d9 1015
193e3acd 1016 else
059ec3d9 1017 {
921dfc11
JH
1018 const uschar * rcpt_domain = addr->domain;
1019
8c5d388a 1020#ifdef SUPPORT_I18N
921dfc11
JH
1021 uschar * errstr = NULL;
1022 if ( testflag(addr, af_utf8_downcvt)
1023 && (rcpt_domain = string_domain_utf8_to_alabel(rcpt_domain,
1024 &errstr), errstr)
1025 )
1026 {
1027 addr->message = errstr;
1028 errno = ERRNO_EXPANDFAIL;
1029 setflag(addr, af_verify_nsfail);
1030 done = FALSE;
1031 rcpt_domain = US""; /*XXX errorhandling! */
1032 }
1033#endif
1034
193e3acd
JH
1035 new_domain_record.result =
1036 (old_domain_cache_result == ccache_reject_mfnull)?
1037 ccache_reject_mfnull: ccache_accept;
059ec3d9 1038
193e3acd 1039 /* Do the random local part check first */
059ec3d9 1040
193e3acd 1041 if (random_local_part != NULL)
059ec3d9 1042 {
193e3acd
JH
1043 uschar randombuffer[1024];
1044 BOOL random_ok =
1045 smtp_write_command(&outblock, FALSE,
1046 "RCPT TO:<%.1000s@%.1000s>\r\n", random_local_part,
921dfc11 1047 rcpt_domain) >= 0 &&
193e3acd
JH
1048 smtp_read_response(&inblock, randombuffer,
1049 sizeof(randombuffer), '2', callout);
059ec3d9 1050
193e3acd 1051 /* Remember when we last did a random test */
059ec3d9 1052
193e3acd 1053 new_domain_record.random_stamp = time(NULL);
059ec3d9 1054
193e3acd 1055 /* If accepted, we aren't going to do any further tests below. */
059ec3d9 1056
193e3acd 1057 if (random_ok)
193e3acd 1058 new_domain_record.random_result = ccache_accept;
059ec3d9 1059
193e3acd
JH
1060 /* Otherwise, cache a real negative response, and get back to the right
1061 state to send RCPT. Unless there's some problem such as a dropped
65f1c92a
JH
1062 connection, we expect to succeed, because the commands succeeded above.
1063 However, some servers drop the connection after responding to an
1064 invalid recipient, so on (any) error we drop and remake the connection.
1065 */
059ec3d9 1066
193e3acd
JH
1067 else if (errno == 0)
1068 {
65f1c92a
JH
1069 /* This would be ok for 1st rcpt a cutthrough, but no way to
1070 handle a subsequent. So refuse to support any */
5032d1cf
JH
1071 cancel_cutthrough_connection("random-recipient");
1072
193e3acd
JH
1073 if (randombuffer[0] == '5')
1074 new_domain_record.random_result = ccache_reject;
1075
1076 done =
1077 smtp_write_command(&outblock, FALSE, "RSET\r\n") >= 0 &&
1078 smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer),
1079 '2', callout) &&
1080
9bfc60eb 1081 smtp_write_command(&outblock, FALSE,
8c5d388a 1082#ifdef SUPPORT_I18N
921dfc11 1083 addr->prop.utf8_msg && !addr->prop.utf8_downcvt
9bfc60eb
JH
1084 ? "MAIL FROM:<%s> SMTPUTF8\r\n"
1085 :
1086#endif
1087 "MAIL FROM:<%s>\r\n",
193e3acd
JH
1088 from_address) >= 0 &&
1089 smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer),
1090 '2', callout);
65f1c92a
JH
1091
1092 if (!done)
1093 {
1094 HDEBUG(D_acl|D_v)
1095 debug_printf("problem after random/rset/mfrom; reopen conn\n");
1096 random_local_part = NULL;
1097#ifdef SUPPORT_TLS
1098 tls_close(FALSE, TRUE);
1099#endif
ae5afa61 1100 HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP(close)>>\n");
65f1c92a 1101 (void)close(inblock.sock);
0cbf2b82 1102#ifndef DISABLE_EVENT
65f1c92a
JH
1103 (void) event_raise(addr->transport->event_action,
1104 US"tcp:close", NULL);
1105#endif
1106 goto tls_retry_connection;
1107 }
193e3acd
JH
1108 }
1109 else done = FALSE; /* Some timeout/connection problem */
1110 } /* Random check */
059ec3d9 1111
193e3acd
JH
1112 /* If the host is accepting all local parts, as determined by the "random"
1113 check, we don't need to waste time doing any further checking. */
059ec3d9 1114
193e3acd 1115 if (new_domain_record.random_result != ccache_accept && done)
059ec3d9 1116 {
193e3acd
JH
1117 /* Get the rcpt_include_affixes flag from the transport if there is one,
1118 but assume FALSE if there is not. */
e4bdf652 1119
921dfc11
JH
1120 uschar * rcpt = transport_rcpt_address(addr,
1121 addr->transport ? addr->transport->rcpt_include_affixes : FALSE);
1122
8c5d388a 1123#ifdef SUPPORT_I18N
921dfc11
JH
1124 /*XXX should the conversion be moved into transport_rcpt_address() ? */
1125 uschar * dummy_errstr = NULL;
1126 if ( testflag(addr, af_utf8_downcvt)
1127 && (rcpt = string_address_utf8_to_alabel(rcpt, &dummy_errstr),
1128 dummy_errstr
1129 ) )
1130 {
1131 errno = ERRNO_EXPANDFAIL;
1132 *failure_ptr = US"recipient";
1133 done = FALSE;
1134 }
1135 else
1136#endif
1137
059ec3d9 1138 done =
193e3acd 1139 smtp_write_command(&outblock, FALSE, "RCPT TO:<%.1000s>\r\n",
921dfc11 1140 rcpt) >= 0 &&
193e3acd
JH
1141 smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer),
1142 '2', callout);
059ec3d9 1143
193e3acd
JH
1144 if (done)
1145 new_address_record.result = ccache_accept;
1146 else if (errno == 0 && responsebuffer[0] == '5')
1147 {
1148 *failure_ptr = US"recipient";
1149 new_address_record.result = ccache_reject;
1150 }
059ec3d9 1151
193e3acd
JH
1152 /* Do postmaster check if requested; if a full check is required, we
1153 check for RCPT TO:<postmaster> (no domain) in accordance with RFC 821. */
2a4be8f9 1154
193e3acd
JH
1155 if (done && pm_mailfrom != NULL)
1156 {
65f1c92a
JH
1157 /* Could possibly shift before main verify, just above, and be ok
1158 for cutthrough. But no way to handle a subsequent rcpt, so just
1159 refuse any */
5032d1cf 1160 cancel_cutthrough_connection("postmaster verify");
193e3acd
JH
1161 HDEBUG(D_acl|D_v) debug_printf("Cutthrough cancelled by presence of postmaster verify\n");
1162
1163 done =
1164 smtp_write_command(&outblock, FALSE, "RSET\r\n") >= 0 &&
1165 smtp_read_response(&inblock, responsebuffer,
1166 sizeof(responsebuffer), '2', callout) &&
1167
1168 smtp_write_command(&outblock, FALSE,
1169 "MAIL FROM:<%s>\r\n", pm_mailfrom) >= 0 &&
1170 smtp_read_response(&inblock, responsebuffer,
1171 sizeof(responsebuffer), '2', callout) &&
1172
1173 /* First try using the current domain */
1174
1175 ((
1176 smtp_write_command(&outblock, FALSE,
921dfc11 1177 "RCPT TO:<postmaster@%.1000s>\r\n", rcpt_domain) >= 0 &&
193e3acd
JH
1178 smtp_read_response(&inblock, responsebuffer,
1179 sizeof(responsebuffer), '2', callout)
1180 )
1181
1182 ||
1183
1184 /* If that doesn't work, and a full check is requested,
1185 try without the domain. */
1186
1187 (
1188 (options & vopt_callout_fullpm) != 0 &&
1189 smtp_write_command(&outblock, FALSE,
1190 "RCPT TO:<postmaster>\r\n") >= 0 &&
1191 smtp_read_response(&inblock, responsebuffer,
1192 sizeof(responsebuffer), '2', callout)
1193 ));
1194
1195 /* Sort out the cache record */
1196
1197 new_domain_record.postmaster_stamp = time(NULL);
1198
1199 if (done)
1200 new_domain_record.postmaster_result = ccache_accept;
1201 else if (errno == 0 && responsebuffer[0] == '5')
1202 {
1203 *failure_ptr = US"postmaster";
1204 setflag(addr, af_verify_pmfail);
1205 new_domain_record.postmaster_result = ccache_reject;
1206 }
1207 }
1208 } /* Random not accepted */
1209 } /* MAIL FROM: accepted */
2a4be8f9 1210
193e3acd
JH
1211 /* For any failure of the main check, other than a negative response, we just
1212 close the connection and carry on. We can identify a negative response by the
1213 fact that errno is zero. For I/O errors it will be non-zero
2a4be8f9 1214
193e3acd
JH
1215 Set up different error texts for logging and for sending back to the caller
1216 as an SMTP response. Log in all cases, using a one-line format. For sender
1217 callouts, give a full response to the caller, but for recipient callouts,
1218 don't give the IP address because this may be an internal host whose identity
1219 is not to be widely broadcast. */
2a4be8f9 1220
193e3acd
JH
1221 if (!done)
1222 {
1223 if (errno == ETIMEDOUT)
1224 {
1225 HDEBUG(D_verify) debug_printf("SMTP timeout\n");
1226 send_quit = FALSE;
1227 }
8c5d388a 1228#ifdef SUPPORT_I18N
9bfc60eb
JH
1229 else if (errno == ERRNO_UTF8_FWD)
1230 {
1231 extern int acl_where; /* src/acl.c */
1232 errno = 0;
1233 addr->message = string_sprintf(
1234 "response to \"%s\" from %s [%s] did not include SMTPUTF8",
1235 big_buffer, host->name, host->address);
1236 addr->user_message = acl_where == ACL_WHERE_RCPT
1237 ? US"533 mailbox name not allowed"
1238 : US"550 mailbox unavailable";
1239 yield = FAIL;
1240 done = TRUE;
1241 }
1242#endif
193e3acd
JH
1243 else if (errno == 0)
1244 {
1245 if (*responsebuffer == 0) Ustrcpy(responsebuffer, US"connection dropped");
2a4be8f9 1246
193e3acd
JH
1247 addr->message =
1248 string_sprintf("response to \"%s\" from %s [%s] was: %s",
1249 big_buffer, host->name, host->address,
1250 string_printing(responsebuffer));
059ec3d9 1251
8b9476ba
JH
1252 addr->user_message = options & vopt_is_recipient
1253 ? string_sprintf("Callout verification failed:\n%s", responsebuffer)
1254 : string_sprintf("Called: %s\nSent: %s\nResponse: %s",
193e3acd 1255 host->address, big_buffer, responsebuffer);
059ec3d9 1256
193e3acd
JH
1257 /* Hard rejection ends the process */
1258
1259 if (responsebuffer[0] == '5') /* Address rejected */
059ec3d9 1260 {
193e3acd
JH
1261 yield = FAIL;
1262 done = TRUE;
059ec3d9
PH
1263 }
1264 }
193e3acd 1265 }
059ec3d9 1266
193e3acd
JH
1267 /* End the SMTP conversation and close the connection. */
1268
5032d1cf
JH
1269 /* Cutthrough - on a successfull connect and recipient-verify with
1270 use-sender and we are 1st rcpt and have no cutthrough conn so far
193e3acd 1271 here is where we want to leave the conn open */
5032d1cf
JH
1272 if ( cutthrough.delivery
1273 && rcpt_count == 1
193e3acd
JH
1274 && done
1275 && yield == OK
98c82a3d
JH
1276 && (options & (vopt_callout_recipsender|vopt_callout_recippmaster|vopt_success_on_redirect))
1277 == vopt_callout_recipsender
193e3acd
JH
1278 && !random_local_part
1279 && !pm_mailfrom
5032d1cf 1280 && cutthrough.fd < 0
66ba1a69 1281 && !lmtp
193e3acd 1282 )
059ec3d9 1283 {
8b9476ba
JH
1284 HDEBUG(D_acl|D_v) debug_printf("holding verify callout open for cutthrough delivery\n");
1285
5032d1cf
JH
1286 cutthrough.fd = outblock.sock; /* We assume no buffer in use in the outblock */
1287 cutthrough.nrcpt = 1;
1288 cutthrough.interface = interface;
1289 cutthrough.host = *host;
1290 cutthrough.addr = *addr; /* Save the address_item for later logging */
1291 cutthrough.addr.next = NULL;
1292 cutthrough.addr.host_used = &cutthrough.host;
193e3acd 1293 if (addr->parent)
5032d1cf
JH
1294 *(cutthrough.addr.parent = store_get(sizeof(address_item))) =
1295 *addr->parent;
193e3acd
JH
1296 ctblock.buffer = ctbuffer;
1297 ctblock.buffersize = sizeof(ctbuffer);
1298 ctblock.ptr = ctbuffer;
1299 /* ctblock.cmd_count = 0; ctblock.authenticating = FALSE; */
5032d1cf 1300 ctblock.sock = cutthrough.fd;
059ec3d9 1301 }
193e3acd 1302 else
059ec3d9 1303 {
2e5b33cd 1304 /* Ensure no cutthrough on multiple address verifies */
193e3acd 1305 if (options & vopt_callout_recipsender)
ff5929e3
JH
1306 cancel_cutthrough_connection("not usable for cutthrough");
1307 if (send_quit)
1308 (void) smtp_write_command(&outblock, FALSE, "QUIT\r\n");
059ec3d9 1309
a7538db1 1310#ifdef SUPPORT_TLS
193e3acd 1311 tls_close(FALSE, TRUE);
a7538db1 1312#endif
ae5afa61 1313 HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP(close)>>\n");
193e3acd 1314 (void)close(inblock.sock);
0cbf2b82 1315#ifndef DISABLE_EVENT
08f3b11b 1316 (void) event_raise(addr->transport->event_action, US"tcp:close", NULL);
a7538db1 1317#endif
059ec3d9 1318 }
059ec3d9 1319
193e3acd
JH
1320 } /* Loop through all hosts, while !done */
1321 }
059ec3d9
PH
1322
1323/* If we get here with done == TRUE, a successful callout happened, and yield
1324will be set OK or FAIL according to the response to the RCPT command.
1325Otherwise, we looped through the hosts but couldn't complete the business.
1326However, there may be domain-specific information to cache in both cases.
1327
1328The value of the result field in the new_domain record is ccache_unknown if
90e9ce59 1329there was an error before or with MAIL FROM:, and errno was not zero,
059ec3d9 1330implying some kind of I/O error. We don't want to write the cache in that case.
2b1c6e3a 1331Otherwise the value is ccache_accept, ccache_reject, or ccache_reject_mfnull. */
059ec3d9 1332
8b9476ba
JH
1333if ( !(options & vopt_callout_no_cache)
1334 && new_domain_record.result != ccache_unknown)
059ec3d9
PH
1335 {
1336 if ((dbm_file = dbfn_open(US"callout", O_RDWR|O_CREAT, &dbblock, FALSE))
1337 == NULL)
1338 {
1339 HDEBUG(D_verify) debug_printf("callout cache: not available\n");
1340 }
1341 else
1342 {
1343 (void)dbfn_write(dbm_file, addr->domain, &new_domain_record,
1344 (int)sizeof(dbdata_callout_cache));
8b9476ba 1345 HDEBUG(D_verify) debug_printf("wrote callout cache domain record for %s:\n"
059ec3d9 1346 " result=%d postmaster=%d random=%d\n",
8b9476ba 1347 addr->domain,
059ec3d9
PH
1348 new_domain_record.result,
1349 new_domain_record.postmaster_result,
1350 new_domain_record.random_result);
1351 }
1352 }
1353
1354/* If a definite result was obtained for the callout, cache it unless caching
1355is disabled. */
1356
1357if (done)
1358 {
8b9476ba
JH
1359 if ( !(options & vopt_callout_no_cache)
1360 && new_address_record.result != ccache_unknown)
059ec3d9 1361 {
ff5929e3 1362 if (!dbm_file)
059ec3d9 1363 dbm_file = dbfn_open(US"callout", O_RDWR|O_CREAT, &dbblock, FALSE);
ff5929e3 1364 if (!dbm_file)
059ec3d9
PH
1365 {
1366 HDEBUG(D_verify) debug_printf("no callout cache available\n");
1367 }
1368 else
1369 {
1370 (void)dbfn_write(dbm_file, address_key, &new_address_record,
1371 (int)sizeof(dbdata_callout_cache_address));
8b9476ba
JH
1372 HDEBUG(D_verify) debug_printf("wrote %s callout cache address record for %s\n",
1373 new_address_record.result == ccache_accept ? "positive" : "negative",
1374 address_key);
059ec3d9
PH
1375 }
1376 }
1377 } /* done */
1378
1379/* Failure to connect to any host, or any response other than 2xx or 5xx is a
1380temporary error. If there was only one host, and a response was received, leave
1381it alone if supplying details. Otherwise, give a generic response. */
1382
1383else /* !done */
1384 {
ff5929e3 1385 uschar * dullmsg = string_sprintf("Could not complete %s verify callout",
8b9476ba 1386 options & vopt_is_recipient ? "recipient" : "sender");
059ec3d9
PH
1387 yield = DEFER;
1388
ff5929e3
JH
1389 if (host_list->next || !addr->message)
1390 addr->message = dullmsg;
059ec3d9 1391
ff5929e3
JH
1392 addr->user_message = smtp_return_error_details
1393 ? string_sprintf("%s for <%s>.\n"
059ec3d9
PH
1394 "The mail server(s) for the domain may be temporarily unreachable, or\n"
1395 "they may be permanently unreachable from this server. In the latter case,\n%s",
1396 dullmsg, addr->address,
8b9476ba 1397 options & vopt_is_recipient
ff5929e3 1398 ? "the address will never be accepted."
8b9476ba
JH
1399 : "you need to change the address or create an MX record for its domain\n"
1400 "if it is supposed to be generally accessible from the Internet.\n"
ff5929e3
JH
1401 "Talk to your mail administrator for details.")
1402 : dullmsg;
059ec3d9
PH
1403
1404 /* Force a specific error code */
1405
1406 addr->basic_errno = ERRNO_CALLOUTDEFER;
1407 }
1408
1409/* Come here from within the cache-reading code on fast-track exit. */
1410
1411END_CALLOUT:
ff5929e3 1412if (dbm_file) dbfn_close(dbm_file);
059ec3d9
PH
1413return yield;
1414}
1415
1416
1417
817d9f57
JH
1418/* Called after recipient-acl to get a cutthrough connection open when
1419 one was requested and a recipient-verify wasn't subsequently done.
1420*/
f9334a28 1421int
e4bdf652
JH
1422open_cutthrough_connection( address_item * addr )
1423{
1424address_item addr2;
f9334a28 1425int rc;
e4bdf652
JH
1426
1427/* Use a recipient-verify-callout to set up the cutthrough connection. */
1428/* We must use a copy of the address for verification, because it might
1429get rewritten. */
1430
1431addr2 = *addr;
5032d1cf
JH
1432HDEBUG(D_acl) debug_printf("----------- %s cutthrough setup ------------\n",
1433 rcpt_count > 1 ? "more" : "start");
ff5929e3 1434rc = verify_address(&addr2, NULL,
e4bdf652
JH
1435 vopt_is_recipient | vopt_callout_recipsender | vopt_callout_no_cache,
1436 CUTTHROUGH_CMD_TIMEOUT, -1, -1,
1437 NULL, NULL, NULL);
ff5929e3
JH
1438addr->message = addr2.message;
1439addr->user_message = addr2.user_message;
e4bdf652 1440HDEBUG(D_acl) debug_printf("----------- end cutthrough setup ------------\n");
f9334a28 1441return rc;
e4bdf652
JH
1442}
1443
1444
e4bdf652 1445
817d9f57
JH
1446/* Send given number of bytes from the buffer */
1447static BOOL
1448cutthrough_send(int n)
e4bdf652 1449{
5032d1cf 1450if(cutthrough.fd < 0)
817d9f57 1451 return TRUE;
e4bdf652 1452
817d9f57
JH
1453if(
1454#ifdef SUPPORT_TLS
5032d1cf 1455 (tls_out.active == cutthrough.fd) ? tls_write(FALSE, ctblock.buffer, n) :
817d9f57 1456#endif
5032d1cf 1457 send(cutthrough.fd, ctblock.buffer, n, 0) > 0
817d9f57
JH
1458 )
1459{
1460 transport_count += n;
1461 ctblock.ptr= ctblock.buffer;
1462 return TRUE;
1463}
e4bdf652 1464
817d9f57
JH
1465HDEBUG(D_transport|D_acl) debug_printf("cutthrough_send failed: %s\n", strerror(errno));
1466return FALSE;
e4bdf652
JH
1467}
1468
1469
1470
817d9f57
JH
1471static BOOL
1472_cutthrough_puts(uschar * cp, int n)
1473{
1474while(n--)
1475 {
1476 if(ctblock.ptr >= ctblock.buffer+ctblock.buffersize)
1477 if(!cutthrough_send(ctblock.buffersize))
1478 return FALSE;
1479
1480 *ctblock.ptr++ = *cp++;
1481 }
1482return TRUE;
1483}
1484
1485/* Buffered output of counted data block. Return boolean success */
e4bdf652
JH
1486BOOL
1487cutthrough_puts(uschar * cp, int n)
1488{
5032d1cf 1489if (cutthrough.fd < 0) return TRUE;
817d9f57 1490if (_cutthrough_puts(cp, n)) return TRUE;
2e5b33cd 1491cancel_cutthrough_connection("transmit failed");
817d9f57
JH
1492return FALSE;
1493}
e4bdf652 1494
e4bdf652 1495
817d9f57 1496static BOOL
5032d1cf 1497_cutthrough_flush_send(void)
817d9f57
JH
1498{
1499int n= ctblock.ptr-ctblock.buffer;
e4bdf652 1500
817d9f57
JH
1501if(n>0)
1502 if(!cutthrough_send(n))
1503 return FALSE;
1504return TRUE;
e4bdf652
JH
1505}
1506
817d9f57
JH
1507
1508/* Send out any bufferred output. Return boolean success. */
e4bdf652 1509BOOL
5032d1cf 1510cutthrough_flush_send(void)
e4bdf652 1511{
817d9f57 1512if (_cutthrough_flush_send()) return TRUE;
2e5b33cd 1513cancel_cutthrough_connection("transmit failed");
e4bdf652
JH
1514return FALSE;
1515}
1516
1517
1518BOOL
5032d1cf 1519cutthrough_put_nl(void)
e4bdf652
JH
1520{
1521return cutthrough_puts(US"\r\n", 2);
1522}
1523
1524
1525/* Get and check response from cutthrough target */
1526static uschar
1527cutthrough_response(char expect, uschar ** copy)
1528{
1529smtp_inblock inblock;
1530uschar inbuffer[4096];
1531uschar responsebuffer[4096];
1532
1533inblock.buffer = inbuffer;
1534inblock.buffersize = sizeof(inbuffer);
1535inblock.ptr = inbuffer;
1536inblock.ptrend = inbuffer;
5032d1cf 1537inblock.sock = cutthrough.fd;
817d9f57 1538/* this relies on (inblock.sock == tls_out.active) */
e4bdf652 1539if(!smtp_read_response(&inblock, responsebuffer, sizeof(responsebuffer), expect, CUTTHROUGH_DATA_TIMEOUT))
2e5b33cd 1540 cancel_cutthrough_connection("target timeout on read");
e4bdf652
JH
1541
1542if(copy != NULL)
1543 {
1544 uschar * cp;
5032d1cf 1545 *copy = cp = string_copy(responsebuffer);
e4bdf652
JH
1546 /* Trim the trailing end of line */
1547 cp += Ustrlen(responsebuffer);
1548 if(cp > *copy && cp[-1] == '\n') *--cp = '\0';
1549 if(cp > *copy && cp[-1] == '\r') *--cp = '\0';
1550 }
1551
1552return responsebuffer[0];
1553}
1554
1555
1556/* Negotiate dataphase with the cutthrough target, returning success boolean */
1557BOOL
5032d1cf 1558cutthrough_predata(void)
e4bdf652 1559{
5032d1cf 1560if(cutthrough.fd < 0)
e4bdf652
JH
1561 return FALSE;
1562
1563HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP>> DATA\n");
817d9f57
JH
1564cutthrough_puts(US"DATA\r\n", 6);
1565cutthrough_flush_send();
e4bdf652
JH
1566
1567/* Assume nothing buffered. If it was it gets ignored. */
1568return cutthrough_response('3', NULL) == '3';
1569}
1570
1571
6d5c916c 1572/* fd and tctx args only to match write_chunk() */
511a6c14 1573static BOOL
6d5c916c 1574cutthrough_write_chunk(int fd, transport_ctx * tctx, uschar * s, int len)
511a6c14
JH
1575{
1576uschar * s2;
1577while(s && (s2 = Ustrchr(s, '\n')))
1578 {
1579 if(!cutthrough_puts(s, s2-s) || !cutthrough_put_nl())
1580 return FALSE;
1581 s = s2+1;
1582 }
1583return TRUE;
1584}
1585
1586
e4bdf652 1587/* Buffered send of headers. Return success boolean. */
817d9f57 1588/* Expands newlines to wire format (CR,NL). */
e4bdf652 1589/* Also sends header-terminating blank line. */
e4bdf652 1590BOOL
5032d1cf 1591cutthrough_headers_send(void)
e4bdf652 1592{
6d5c916c
JH
1593transport_ctx tctx;
1594
5032d1cf 1595if(cutthrough.fd < 0)
e4bdf652
JH
1596 return FALSE;
1597
511a6c14
JH
1598/* We share a routine with the mainline transport to handle header add/remove/rewrites,
1599 but having a separate buffered-output function (for now)
1600*/
1601HDEBUG(D_acl) debug_printf("----------- start cutthrough headers send -----------\n");
e4bdf652 1602
6d5c916c
JH
1603tctx.tblock = cutthrough.addr.transport;
1604tctx.addr = &cutthrough.addr;
1605tctx.check_string = US".";
1606tctx.escape_string = US"..";
1607tctx.options = topt_use_crlf;
1608
1609if (!transport_headers_send(cutthrough.fd, &tctx, &cutthrough_write_chunk))
511a6c14
JH
1610 return FALSE;
1611
1612HDEBUG(D_acl) debug_printf("----------- done cutthrough headers send ------------\n");
1613return TRUE;
817d9f57
JH
1614}
1615
1616
1617static void
5032d1cf 1618close_cutthrough_connection(const char * why)
817d9f57 1619{
5032d1cf 1620if(cutthrough.fd >= 0)
817d9f57
JH
1621 {
1622 /* We could be sending this after a bunch of data, but that is ok as
1623 the only way to cancel the transfer in dataphase is to drop the tcp
1624 conn before the final dot.
1625 */
1626 ctblock.ptr = ctbuffer;
1627 HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP>> QUIT\n");
1628 _cutthrough_puts(US"QUIT\r\n", 6); /* avoid recursion */
1629 _cutthrough_flush_send();
1630 /* No wait for response */
1631
1632 #ifdef SUPPORT_TLS
1633 tls_close(FALSE, TRUE);
1634 #endif
ae5afa61 1635 HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP(close)>>\n");
5032d1cf
JH
1636 (void)close(cutthrough.fd);
1637 cutthrough.fd = -1;
2e5b33cd 1638 HDEBUG(D_acl) debug_printf("----------- cutthrough shutdown (%s) ------------\n", why);
817d9f57
JH
1639 }
1640ctblock.ptr = ctbuffer;
e4bdf652
JH
1641}
1642
817d9f57 1643void
5032d1cf 1644cancel_cutthrough_connection(const char * why)
817d9f57 1645{
2e5b33cd 1646close_cutthrough_connection(why);
5032d1cf 1647cutthrough.delivery = FALSE;
817d9f57
JH
1648}
1649
1650
1651
e4bdf652
JH
1652
1653/* Have senders final-dot. Send one to cutthrough target, and grab the response.
1654 Log an OK response as a transmission.
817d9f57 1655 Close the connection.
e4bdf652 1656 Return smtp response-class digit.
e4bdf652
JH
1657*/
1658uschar *
5032d1cf 1659cutthrough_finaldot(void)
e4bdf652 1660{
5032d1cf
JH
1661uschar res;
1662address_item * addr;
e4bdf652
JH
1663HDEBUG(D_transport|D_acl|D_v) debug_printf(" SMTP>> .\n");
1664
1665/* Assume data finshed with new-line */
5032d1cf
JH
1666if( !cutthrough_puts(US".", 1)
1667 || !cutthrough_put_nl()
1668 || !cutthrough_flush_send()
1669 )
1670 return cutthrough.addr.message;
e4bdf652 1671
5032d1cf
JH
1672res = cutthrough_response('2', &cutthrough.addr.message);
1673for (addr = &cutthrough.addr; addr; addr = addr->next)
817d9f57 1674 {
5032d1cf
JH
1675 addr->message = cutthrough.addr.message;
1676 switch(res)
1677 {
1678 case '2':
1679 delivery_log(LOG_MAIN, addr, (int)'>', NULL);
1680 close_cutthrough_connection("delivered");
1681 break;
817d9f57 1682
5032d1cf
JH
1683 case '4':
1684 delivery_log(LOG_MAIN, addr, 0,
1685 US"tmp-reject from cutthrough after DATA:");
1686 break;
e4bdf652 1687
5032d1cf
JH
1688 case '5':
1689 delivery_log(LOG_MAIN|LOG_REJECT, addr, 0,
1690 US"rejected after DATA:");
1691 break;
e4bdf652 1692
5032d1cf
JH
1693 default:
1694 break;
1695 }
817d9f57 1696 }
5032d1cf 1697return cutthrough.addr.message;
e4bdf652
JH
1698}
1699
1700
817d9f57 1701
059ec3d9
PH
1702/*************************************************
1703* Copy error to toplevel address *
1704*************************************************/
1705
1706/* This function is used when a verify fails or defers, to ensure that the
1707failure or defer information is in the original toplevel address. This applies
1708when an address is redirected to a single new address, and the failure or
1709deferral happens to the child address.
1710
1711Arguments:
1712 vaddr the verify address item
1713 addr the final address item
1714 yield FAIL or DEFER
1715
1716Returns: the value of YIELD
1717*/
1718
1719static int
1720copy_error(address_item *vaddr, address_item *addr, int yield)
1721{
1722if (addr != vaddr)
1723 {
1724 vaddr->message = addr->message;
1725 vaddr->user_message = addr->user_message;
1726 vaddr->basic_errno = addr->basic_errno;
1727 vaddr->more_errno = addr->more_errno;
d43cbe25 1728 vaddr->prop.address_data = addr->prop.address_data;
42855d71 1729 copyflag(vaddr, addr, af_pass_message);
059ec3d9
PH
1730 }
1731return yield;
1732}
1733
1734
1735
1736
ce552449
NM
1737/**************************************************
1738* printf that automatically handles TLS if needed *
1739***************************************************/
1740
1741/* This function is used by verify_address() as a substitute for all fprintf()
1742calls; a direct fprintf() will not produce output in a TLS SMTP session, such
1743as a response to an EXPN command. smtp_in.c makes smtp_printf available but
1744that assumes that we always use the smtp_out FILE* when not using TLS or the
1745ssl buffer when we are. Instead we take a FILE* parameter and check to see if
1746that is smtp_out; if so, smtp_printf() with TLS support, otherwise regular
1747fprintf().
1748
1749Arguments:
1750 f the candidate FILE* to write to
1751 format format string
1752 ... optional arguments
1753
1754Returns:
1755 nothing
1756*/
1757
1758static void PRINTF_FUNCTION(2,3)
1ba28e2b 1759respond_printf(FILE *f, const char *format, ...)
ce552449
NM
1760{
1761va_list ap;
1762
1763va_start(ap, format);
1764if (smtp_out && (f == smtp_out))
1765 smtp_vprintf(format, ap);
1766else
513afc6a 1767 vfprintf(f, format, ap);
ce552449
NM
1768va_end(ap);
1769}
1770
1771
1772
059ec3d9
PH
1773/*************************************************
1774* Verify an email address *
1775*************************************************/
1776
1777/* This function is used both for verification (-bv and at other times) and
1778address testing (-bt), which is indicated by address_test_mode being set.
1779
1780Arguments:
1781 vaddr contains the address to verify; the next field in this block
1782 must be NULL
1783 f if not NULL, write the result to this file
1784 options various option bits:
1785 vopt_fake_sender => this sender verify is not for the real
1786 sender (it was verify=sender=xxxx or an address from a
1787 header line) - rewriting must not change sender_address
1788 vopt_is_recipient => this is a recipient address, otherwise
1789 it's a sender address - this affects qualification and
1790 rewriting and messages from callouts
1791 vopt_qualify => qualify an unqualified address; else error
1792 vopt_expn => called from SMTP EXPN command
eafd343b
TK
1793 vopt_success_on_redirect => when a new address is generated
1794 the verification instantly succeeds
059ec3d9
PH
1795
1796 These ones are used by do_callout() -- the options variable
1797 is passed to it.
1798
2a4be8f9 1799 vopt_callout_fullpm => if postmaster check, do full one
059ec3d9
PH
1800 vopt_callout_no_cache => don't use callout cache
1801 vopt_callout_random => do the "random" thing
1802 vopt_callout_recipsender => use real sender for recipient
1803 vopt_callout_recippmaster => use postmaster for recipient
1804
1805 callout if > 0, specifies that callout is required, and gives timeout
4deaf07d 1806 for individual commands
059ec3d9
PH
1807 callout_overall if > 0, gives overall timeout for the callout function;
1808 if < 0, a default is used (see do_callout())
8e669ac1 1809 callout_connect the connection timeout for callouts
059ec3d9
PH
1810 se_mailfrom when callout is requested to verify a sender, use this
1811 in MAIL FROM; NULL => ""
1812 pm_mailfrom when callout is requested, if non-NULL, do the postmaster
1813 thing and use this as the sender address (may be "")
1814
1815 routed if not NULL, set TRUE if routing succeeded, so we can
1816 distinguish between routing failed and callout failed
1817
1818Returns: OK address verified
1819 FAIL address failed to verify
1820 DEFER can't tell at present
1821*/
1822
1823int
1824verify_address(address_item *vaddr, FILE *f, int options, int callout,
8e669ac1 1825 int callout_overall, int callout_connect, uschar *se_mailfrom,
4deaf07d 1826 uschar *pm_mailfrom, BOOL *routed)
059ec3d9
PH
1827{
1828BOOL allok = TRUE;
1829BOOL full_info = (f == NULL)? FALSE : (debug_selector != 0);
059ec3d9 1830BOOL expn = (options & vopt_expn) != 0;
eafd343b 1831BOOL success_on_redirect = (options & vopt_success_on_redirect) != 0;
059ec3d9
PH
1832int i;
1833int yield = OK;
1834int verify_type = expn? v_expn :
1835 address_test_mode? v_none :
8b9476ba 1836 options & vopt_is_recipient? v_recipient : v_sender;
059ec3d9
PH
1837address_item *addr_list;
1838address_item *addr_new = NULL;
1839address_item *addr_remote = NULL;
1840address_item *addr_local = NULL;
1841address_item *addr_succeed = NULL;
8b9476ba
JH
1842uschar **failure_ptr = options & vopt_is_recipient
1843 ? &recipient_verify_failure : &sender_verify_failure;
059ec3d9
PH
1844uschar *ko_prefix, *cr;
1845uschar *address = vaddr->address;
1846uschar *save_sender;
1847uschar null_sender[] = { 0 }; /* Ensure writeable memory */
1848
2c7db3f5
PH
1849/* Clear, just in case */
1850
1851*failure_ptr = NULL;
1852
059ec3d9
PH
1853/* Set up a prefix and suffix for error message which allow us to use the same
1854output statements both in EXPN mode (where an SMTP response is needed) and when
1855debugging with an output file. */
1856
1857if (expn)
1858 {
1859 ko_prefix = US"553 ";
1860 cr = US"\r";
1861 }
1862else ko_prefix = cr = US"";
1863
1864/* Add qualify domain if permitted; otherwise an unqualified address fails. */
1865
1866if (parse_find_at(address) == NULL)
1867 {
1868 if ((options & vopt_qualify) == 0)
1869 {
1870 if (f != NULL)
ce552449
NM
1871 respond_printf(f, "%sA domain is required for \"%s\"%s\n",
1872 ko_prefix, address, cr);
8e669ac1 1873 *failure_ptr = US"qualify";
059ec3d9
PH
1874 return FAIL;
1875 }
8b9476ba 1876 address = rewrite_address_qualify(address, options & vopt_is_recipient);
059ec3d9
PH
1877 }
1878
1879DEBUG(D_verify)
1880 {
1881 debug_printf(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
1882 debug_printf("%s %s\n", address_test_mode? "Testing" : "Verifying", address);
1883 }
1884
1885/* Rewrite and report on it. Clear the domain and local part caches - these
1886may have been set by domains and local part tests during an ACL. */
1887
1888if (global_rewrite_rules != NULL)
1889 {
1890 uschar *old = address;
8b9476ba 1891 address = rewrite_address(address, options & vopt_is_recipient, FALSE,
059ec3d9
PH
1892 global_rewrite_rules, rewrite_existflags);
1893 if (address != old)
1894 {
1895 for (i = 0; i < (MAX_NAMED_LIST * 2)/32; i++) vaddr->localpart_cache[i] = 0;
1896 for (i = 0; i < (MAX_NAMED_LIST * 2)/32; i++) vaddr->domain_cache[i] = 0;
1897 if (f != NULL && !expn) fprintf(f, "Address rewritten as: %s\n", address);
1898 }
1899 }
1900
1901/* If this is the real sender address, we must update sender_address at
1902this point, because it may be referred to in the routers. */
1903
1904if ((options & (vopt_fake_sender|vopt_is_recipient)) == 0)
1905 sender_address = address;
1906
1907/* If the address was rewritten to <> no verification can be done, and we have
1908to return OK. This rewriting is permitted only for sender addresses; for other
1909addresses, such rewriting fails. */
1910
1911if (address[0] == 0) return OK;
1912
d9b2312b
JH
1913/* Flip the legacy TLS-related variables over to the outbound set in case
1914they're used in the context of a transport used by verification. Reset them
ea90b718 1915at exit from this routine (so no returns allowed from here on). */
d9b2312b 1916
35aba663 1917tls_modify_variables(&tls_out);
d9b2312b 1918
059ec3d9
PH
1919/* Save a copy of the sender address for re-instating if we change it to <>
1920while verifying a sender address (a nice bit of self-reference there). */
1921
1922save_sender = sender_address;
1923
ea90b718
JH
1924/* Observability variable for router/transport use */
1925
8b9476ba 1926verify_mode = options & vopt_is_recipient ? US"R" : US"S";
ea90b718 1927
059ec3d9
PH
1928/* Update the address structure with the possibly qualified and rewritten
1929address. Set it up as the starting address on the chain of new addresses. */
1930
1931vaddr->address = address;
1932addr_new = vaddr;
1933
1934/* We need a loop, because an address can generate new addresses. We must also
1935cope with generated pipes and files at the top level. (See also the code and
1936comment in deliver.c.) However, it is usually the case that the router for
1937user's .forward files has its verify flag turned off.
1938
1939If an address generates more than one child, the loop is used only when
1940full_info is set, and this can only be set locally. Remote enquiries just get
1941information about the top level address, not anything that it generated. */
1942
ea90b718 1943while (addr_new)
059ec3d9
PH
1944 {
1945 int rc;
1946 address_item *addr = addr_new;
1947
1948 addr_new = addr->next;
1949 addr->next = NULL;
1950
1951 DEBUG(D_verify)
1952 {
1953 debug_printf(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
1954 debug_printf("Considering %s\n", addr->address);
1955 }
1956
1957 /* Handle generated pipe, file or reply addresses. We don't get these
1958 when handling EXPN, as it does only one level of expansion. */
1959
1960 if (testflag(addr, af_pfr))
1961 {
1962 allok = FALSE;
1963 if (f != NULL)
1964 {
1965 BOOL allow;
1966
1967 if (addr->address[0] == '>')
1968 {
1969 allow = testflag(addr, af_allow_reply);
1970 fprintf(f, "%s -> mail %s", addr->parent->address, addr->address + 1);
1971 }
1972 else
1973 {
1974 allow = (addr->address[0] == '|')?
1975 testflag(addr, af_allow_pipe) : testflag(addr, af_allow_file);
1976 fprintf(f, "%s -> %s", addr->parent->address, addr->address);
1977 }
1978
1979 if (addr->basic_errno == ERRNO_BADTRANSPORT)
1980 fprintf(f, "\n*** Error in setting up pipe, file, or autoreply:\n"
1981 "%s\n", addr->message);
1982 else if (allow)
1983 fprintf(f, "\n transport = %s\n", addr->transport->name);
1984 else
1985 fprintf(f, " *** forbidden ***\n");
1986 }
1987 continue;
1988 }
1989
1990 /* Just in case some router parameter refers to it. */
1991
2f682e45
JH
1992 return_path = addr->prop.errors_address
1993 ? addr->prop.errors_address : sender_address;
059ec3d9
PH
1994
1995 /* Split the address into domain and local part, handling the %-hack if
1996 necessary, and then route it. While routing a sender address, set
1997 $sender_address to <> because that is what it will be if we were trying to
1998 send a bounce to the sender. */
1999
2f682e45 2000 if (routed) *routed = FALSE;
059ec3d9
PH
2001 if ((rc = deliver_split_address(addr)) == OK)
2002 {
8b9476ba 2003 if (!(options & vopt_is_recipient)) sender_address = null_sender;
059ec3d9
PH
2004 rc = route_address(addr, &addr_local, &addr_remote, &addr_new,
2005 &addr_succeed, verify_type);
2006 sender_address = save_sender; /* Put back the real sender */
2007 }
2008
2009 /* If routing an address succeeded, set the flag that remembers, for use when
2010 an ACL cached a sender verify (in case a callout fails). Then if routing set
2011 up a list of hosts or the transport has a host list, and the callout option
2012 is set, and we aren't in a host checking run, do the callout verification,
2013 and set another flag that notes that a callout happened. */
2014
2015 if (rc == OK)
2016 {
2f682e45 2017 if (routed) *routed = TRUE;
059ec3d9
PH
2018 if (callout > 0)
2019 {
08f3b11b 2020 transport_instance * tp;
2f682e45 2021 host_item * host_list = addr->host_list;
059ec3d9 2022
26da7e20
PH
2023 /* Make up some data for use in the case where there is no remote
2024 transport. */
2025
2026 transport_feedback tf = {
2027 NULL, /* interface (=> any) */
2028 US"smtp", /* port */
2029 US"smtp", /* protocol */
2030 NULL, /* hosts */
2031 US"$smtp_active_hostname", /* helo_data */
2032 FALSE, /* hosts_override */
2033 FALSE, /* hosts_randomize */
2034 FALSE, /* gethostbyname */
2035 TRUE, /* qualify_single */
2036 FALSE /* search_parents */
2037 };
059ec3d9
PH
2038
2039 /* If verification yielded a remote transport, we want to use that
2040 transport's options, so as to mimic what would happen if we were really
2041 sending a message to this address. */
2042
08f3b11b 2043 if ((tp = addr->transport) && !tp->info->local)
059ec3d9 2044 {
08f3b11b 2045 (void)(tp->setup)(tp, addr, &tf, 0, 0, NULL);
059ec3d9
PH
2046
2047 /* If the transport has hosts and the router does not, or if the
2048 transport is configured to override the router's hosts, we must build a
2049 host list of the transport's hosts, and find the IP addresses */
2050
2f682e45 2051 if (tf.hosts && (!host_list || tf.hosts_override))
059ec3d9
PH
2052 {
2053 uschar *s;
55414b25 2054 const uschar *save_deliver_domain = deliver_domain;
750af86e 2055 uschar *save_deliver_localpart = deliver_localpart;
059ec3d9
PH
2056
2057 host_list = NULL; /* Ignore the router's hosts */
2058
2059 deliver_domain = addr->domain;
2060 deliver_localpart = addr->local_part;
2061 s = expand_string(tf.hosts);
750af86e
PH
2062 deliver_domain = save_deliver_domain;
2063 deliver_localpart = save_deliver_localpart;
059ec3d9 2064
2f682e45 2065 if (!s)
059ec3d9
PH
2066 {
2067 log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand list of hosts "
2068 "\"%s\" in %s transport for callout: %s", tf.hosts,
08f3b11b 2069 tp->name, expand_string_message);
059ec3d9
PH
2070 }
2071 else
2072 {
322050c2 2073 int flags;
d8ef3577 2074 host_item *host, *nexthost;
059ec3d9
PH
2075 host_build_hostlist(&host_list, s, tf.hosts_randomize);
2076
2077 /* Just ignore failures to find a host address. If we don't manage
8e669ac1
PH
2078 to find any addresses, the callout will defer. Note that more than
2079 one address may be found for a single host, which will result in
2080 additional host items being inserted into the chain. Hence we must
d8ef3577 2081 save the next host first. */
059ec3d9 2082
322050c2
PH
2083 flags = HOST_FIND_BY_A;
2084 if (tf.qualify_single) flags |= HOST_FIND_QUALIFY_SINGLE;
2085 if (tf.search_parents) flags |= HOST_FIND_SEARCH_PARENTS;
2086
2f682e45 2087 for (host = host_list; host; host = nexthost)
059ec3d9 2088 {
d8ef3577 2089 nexthost = host->next;
8e669ac1 2090 if (tf.gethostbyname ||
7e66e54d 2091 string_is_ip_address(host->name, NULL) != 0)
55414b25 2092 (void)host_find_byname(host, NULL, flags, NULL, TRUE);
059ec3d9 2093 else
9d9c3746 2094 {
7cd171b7 2095 dnssec_domains * dnssec_domains = NULL;
08f3b11b 2096 if (Ustrcmp(tp->driver_name, "smtp") == 0)
9d9c3746
JH
2097 {
2098 smtp_transport_options_block * ob =
08f3b11b 2099 (smtp_transport_options_block *) tp->options_block;
7cd171b7 2100 dnssec_domains = &ob->dnssec;
9d9c3746
JH
2101 }
2102
059ec3d9 2103 (void)host_find_bydns(host, NULL, flags, NULL, NULL, NULL,
7cd171b7 2104 dnssec_domains, NULL, NULL);
9d9c3746 2105 }
059ec3d9
PH
2106 }
2107 }
2108 }
2109 }
2110
8e669ac1 2111 /* Can only do a callout if we have at least one host! If the callout
2c7db3f5 2112 fails, it will have set ${sender,recipient}_verify_failure. */
059ec3d9 2113
2f682e45 2114 if (host_list)
059ec3d9
PH
2115 {
2116 HDEBUG(D_verify) debug_printf("Attempting full verification using callout\n");
2117 if (host_checking && !host_checking_callout)
2118 {
2119 HDEBUG(D_verify)
2120 debug_printf("... callout omitted by default when host testing\n"
2121 "(Use -bhc if you want the callouts to happen.)\n");
2122 }
2123 else
2124 {
4ed8d31a
JH
2125#ifdef SUPPORT_TLS
2126 deliver_set_expansions(addr);
2127#endif
059ec3d9 2128 rc = do_callout(addr, host_list, &tf, callout, callout_overall,
4deaf07d 2129 callout_connect, options, se_mailfrom, pm_mailfrom);
059ec3d9
PH
2130 }
2131 }
2132 else
2133 {
2134 HDEBUG(D_verify) debug_printf("Cannot do callout: neither router nor "
2135 "transport provided a host list\n");
2136 }
2137 }
2138 }
8e669ac1 2139
2c7db3f5 2140 /* Otherwise, any failure is a routing failure */
8e669ac1
PH
2141
2142 else *failure_ptr = US"route";
059ec3d9
PH
2143
2144 /* A router may return REROUTED if it has set up a child address as a result
2145 of a change of domain name (typically from widening). In this case we always
2146 want to continue to verify the new child. */
2147
2148 if (rc == REROUTED) continue;
8e669ac1 2149
059ec3d9
PH
2150 /* Handle hard failures */
2151
2152 if (rc == FAIL)
2153 {
2154 allok = FALSE;
2f682e45 2155 if (f)
059ec3d9 2156 {
e6f6568e
PH
2157 address_item *p = addr->parent;
2158
ce552449 2159 respond_printf(f, "%s%s %s", ko_prefix,
2f682e45
JH
2160 full_info ? addr->address : address,
2161 address_test_mode ? "is undeliverable" : "failed to verify");
059ec3d9
PH
2162 if (!expn && admin_user)
2163 {
2164 if (addr->basic_errno > 0)
ce552449 2165 respond_printf(f, ": %s", strerror(addr->basic_errno));
2f682e45 2166 if (addr->message)
ce552449 2167 respond_printf(f, ": %s", addr->message);
e6f6568e
PH
2168 }
2169
2170 /* Show parents iff doing full info */
2171
2f682e45 2172 if (full_info) while (p)
e6f6568e 2173 {
ce552449 2174 respond_printf(f, "%s\n <-- %s", cr, p->address);
e6f6568e 2175 p = p->parent;
059ec3d9 2176 }
ce552449 2177 respond_printf(f, "%s\n", cr);
059ec3d9 2178 }
2e5b33cd 2179 cancel_cutthrough_connection("routing hard fail");
059ec3d9 2180
d9b2312b 2181 if (!full_info)
2f682e45 2182 {
d9b2312b
JH
2183 yield = copy_error(vaddr, addr, FAIL);
2184 goto out;
2f682e45
JH
2185 }
2186 yield = FAIL;
059ec3d9
PH
2187 }
2188
2189 /* Soft failure */
2190
2191 else if (rc == DEFER)
2192 {
2193 allok = FALSE;
2f682e45 2194 if (f)
059ec3d9 2195 {
e6f6568e 2196 address_item *p = addr->parent;
ce552449 2197 respond_printf(f, "%s%s cannot be resolved at this time", ko_prefix,
322050c2 2198 full_info? addr->address : address);
059ec3d9
PH
2199 if (!expn && admin_user)
2200 {
2201 if (addr->basic_errno > 0)
ce552449 2202 respond_printf(f, ": %s", strerror(addr->basic_errno));
2f682e45 2203 if (addr->message)
ce552449 2204 respond_printf(f, ": %s", addr->message);
059ec3d9 2205 else if (addr->basic_errno <= 0)
ce552449 2206 respond_printf(f, ": unknown error");
059ec3d9
PH
2207 }
2208
e6f6568e
PH
2209 /* Show parents iff doing full info */
2210
2f682e45 2211 if (full_info) while (p)
e6f6568e 2212 {
ce552449 2213 respond_printf(f, "%s\n <-- %s", cr, p->address);
e6f6568e
PH
2214 p = p->parent;
2215 }
ce552449 2216 respond_printf(f, "%s\n", cr);
059ec3d9 2217 }
2e5b33cd 2218 cancel_cutthrough_connection("routing soft fail");
e4bdf652 2219
d9b2312b
JH
2220 if (!full_info)
2221 {
2222 yield = copy_error(vaddr, addr, DEFER);
2223 goto out;
2224 }
2f682e45 2225 if (yield == OK) yield = DEFER;
059ec3d9
PH
2226 }
2227
2228 /* If we are handling EXPN, we do not want to continue to route beyond
e6f6568e 2229 the top level (whose address is in "address"). */
059ec3d9
PH
2230
2231 else if (expn)
2232 {
2233 uschar *ok_prefix = US"250-";
2f682e45
JH
2234
2235 if (!addr_new)
2236 if (!addr_local && !addr_remote)
ce552449 2237 respond_printf(f, "250 mail to <%s> is discarded\r\n", address);
059ec3d9 2238 else
ce552449 2239 respond_printf(f, "250 <%s>\r\n", address);
2f682e45
JH
2240
2241 else do
059ec3d9
PH
2242 {
2243 address_item *addr2 = addr_new;
2244 addr_new = addr2->next;
2f682e45 2245 if (!addr_new) ok_prefix = US"250 ";
ce552449 2246 respond_printf(f, "%s<%s>\r\n", ok_prefix, addr2->address);
2f682e45 2247 } while (addr_new);
d9b2312b
JH
2248 yield = OK;
2249 goto out;
059ec3d9
PH
2250 }
2251
2252 /* Successful routing other than EXPN. */
2253
2254 else
2255 {
2256 /* Handle successful routing when short info wanted. Otherwise continue for
2257 other (generated) addresses. Short info is the operational case. Full info
2258 can be requested only when debug_selector != 0 and a file is supplied.
2259
2260 There is a conflict between the use of aliasing as an alternate email
2261 address, and as a sort of mailing list. If an alias turns the incoming
2262 address into just one address (e.g. J.Caesar->jc44) you may well want to
2263 carry on verifying the generated address to ensure it is valid when
2264 checking incoming mail. If aliasing generates multiple addresses, you
2265 probably don't want to do this. Exim therefore treats the generation of
2266 just a single new address as a special case, and continues on to verify the
2267 generated address. */
2268
2f682e45
JH
2269 if ( !full_info /* Stop if short info wanted AND */
2270 && ( ( !addr_new /* No new address OR */
2271 || addr_new->next /* More than one new address OR */
2272 || testflag(addr_new, af_pfr) /* New address is pfr */
2273 )
2274 || /* OR */
2275 ( addr_new /* At least one new address AND */
2276 && success_on_redirect /* success_on_redirect is set */
2277 ) )
2278 )
059ec3d9 2279 {
2f682e45
JH
2280 if (f) fprintf(f, "%s %s\n",
2281 address, address_test_mode ? "is deliverable" : "verified");
059ec3d9
PH
2282
2283 /* If we have carried on to verify a child address, we want the value
2284 of $address_data to be that of the child */
2285
d43cbe25 2286 vaddr->prop.address_data = addr->prop.address_data;
98c82a3d
JH
2287
2288 /* If stopped because more than one new address, cannot cutthrough */
2289
2290 if (addr_new && addr_new->next)
2291 cancel_cutthrough_connection("multiple addresses from routing");
2292
d9b2312b
JH
2293 yield = OK;
2294 goto out;
059ec3d9
PH
2295 }
2296 }
2297 } /* Loop for generated addresses */
2298
2299/* Display the full results of the successful routing, including any generated
2300addresses. Control gets here only when full_info is set, which requires f not
2301to be NULL, and this occurs only when a top-level verify is called with the
2302debugging switch on.
2303
2304If there are no local and no remote addresses, and there were no pipes, files,
2305or autoreplies, and there were no errors or deferments, the message is to be
2306discarded, usually because of the use of :blackhole: in an alias file. */
2307
2f682e45 2308if (allok && !addr_local && !addr_remote)
dbcef0ea 2309 {
059ec3d9 2310 fprintf(f, "mail to %s is discarded\n", address);
d9b2312b 2311 goto out;
dbcef0ea 2312 }
059ec3d9 2313
dbcef0ea 2314for (addr_list = addr_local, i = 0; i < 2; addr_list = addr_remote, i++)
08f3b11b 2315 while (addr_list)
059ec3d9
PH
2316 {
2317 address_item *addr = addr_list;
2318 address_item *p = addr->parent;
08f3b11b
JH
2319 transport_instance * tp = addr->transport;
2320
059ec3d9
PH
2321 addr_list = addr->next;
2322
2323 fprintf(f, "%s", CS addr->address);
384152a6 2324#ifdef EXPERIMENTAL_SRS
d43cbe25
JH
2325 if(addr->prop.srs_sender)
2326 fprintf(f, " [srs = %s]", addr->prop.srs_sender);
384152a6 2327#endif
dbcef0ea
PH
2328
2329 /* If the address is a duplicate, show something about it. */
2330
2331 if (!testflag(addr, af_pfr))
2332 {
2333 tree_node *tnode;
08f3b11b 2334 if ((tnode = tree_search(tree_duplicates, addr->unique)))
dbcef0ea
PH
2335 fprintf(f, " [duplicate, would not be delivered]");
2336 else tree_add_duplicate(addr->unique, addr);
2337 }
2338
2339 /* Now show its parents */
2340
08f3b11b 2341 for (p = addr->parent; p; p = p->parent)
059ec3d9 2342 fprintf(f, "\n <-- %s", p->address);
059ec3d9
PH
2343 fprintf(f, "\n ");
2344
2345 /* Show router, and transport */
2346
08f3b11b
JH
2347 fprintf(f, "router = %s, transport = %s\n",
2348 addr->router->name, tp ? tp->name : US"unset");
059ec3d9
PH
2349
2350 /* Show any hosts that are set up by a router unless the transport
2351 is going to override them; fiddle a bit to get a nice format. */
2352
08f3b11b 2353 if (addr->host_list && tp && !tp->overrides_hosts)
059ec3d9
PH
2354 {
2355 host_item *h;
2356 int maxlen = 0;
2357 int maxaddlen = 0;
08f3b11b
JH
2358 for (h = addr->host_list; h; h = h->next)
2359 { /* get max lengths of host names, addrs */
059ec3d9
PH
2360 int len = Ustrlen(h->name);
2361 if (len > maxlen) maxlen = len;
08f3b11b 2362 len = h->address ? Ustrlen(h->address) : 7;
059ec3d9
PH
2363 if (len > maxaddlen) maxaddlen = len;
2364 }
08f3b11b
JH
2365 for (h = addr->host_list; h; h = h->next)
2366 {
2367 fprintf(f, " host %-*s ", maxlen, h->name);
2368
2369 if (h->address)
2370 fprintf(f, "[%s%-*c", h->address, maxaddlen+1 - Ustrlen(h->address), ']');
2371 else if (tp->info->local)
2372 fprintf(f, " %-*s ", maxaddlen, ""); /* Omit [unknown] for local */
2373 else
2374 fprintf(f, "[%s%-*c", "unknown", maxaddlen+1 - 7, ']');
2375
2376 if (h->mx >= 0) fprintf(f, " MX=%d", h->mx);
059ec3d9 2377 if (h->port != PORT_NONE) fprintf(f, " port=%d", h->port);
08f3b11b
JH
2378 if (running_in_test_harness && h->dnssec == DS_YES) fputs(" AD", f);
2379 if (h->status == hstatus_unusable) fputs(" ** unusable **", f);
2380 fputc('\n', f);
059ec3d9
PH
2381 }
2382 }
2383 }
059ec3d9 2384
d9b2312b 2385/* Yield will be DEFER or FAIL if any one address has, only for full_info (which is
2c7db3f5
PH
2386the -bv or -bt case). */
2387
d9b2312b 2388out:
ea90b718 2389verify_mode = NULL;
35aba663 2390tls_modify_variables(&tls_in);
d9b2312b 2391
8e669ac1 2392return yield;
059ec3d9
PH
2393}
2394
2395
2396
2397
2398/*************************************************
2399* Check headers for syntax errors *
2400*************************************************/
2401
2402/* This function checks those header lines that contain addresses, and verifies
2403that all the addresses therein are syntactially correct.
2404
2405Arguments:
2406 msgptr where to put an error message
2407
2408Returns: OK
2409 FAIL
2410*/
2411
2412int
2413verify_check_headers(uschar **msgptr)
2414{
2415header_line *h;
2416uschar *colon, *s;
1eccaa59 2417int yield = OK;
059ec3d9 2418
1eccaa59 2419for (h = header_list; h != NULL && yield == OK; h = h->next)
059ec3d9
PH
2420 {
2421 if (h->type != htype_from &&
2422 h->type != htype_reply_to &&
2423 h->type != htype_sender &&
2424 h->type != htype_to &&
2425 h->type != htype_cc &&
2426 h->type != htype_bcc)
2427 continue;
2428
2429 colon = Ustrchr(h->text, ':');
2430 s = colon + 1;
2431 while (isspace(*s)) s++;
2432
1eccaa59
PH
2433 /* Loop for multiple addresses in the header, enabling group syntax. Note
2434 that we have to reset this after the header has been scanned. */
059ec3d9 2435
1eccaa59 2436 parse_allow_group = TRUE;
059ec3d9
PH
2437
2438 while (*s != 0)
2439 {
2440 uschar *ss = parse_find_address_end(s, FALSE);
2441 uschar *recipient, *errmess;
2442 int terminator = *ss;
2443 int start, end, domain;
2444
2445 /* Temporarily terminate the string at this point, and extract the
1eccaa59 2446 operative address within, allowing group syntax. */
059ec3d9
PH
2447
2448 *ss = 0;
2449 recipient = parse_extract_address(s,&errmess,&start,&end,&domain,FALSE);
2450 *ss = terminator;
2451
2452 /* Permit an unqualified address only if the message is local, or if the
2453 sending host is configured to be permitted to send them. */
2454
2455 if (recipient != NULL && domain == 0)
2456 {
2457 if (h->type == htype_from || h->type == htype_sender)
2458 {
2459 if (!allow_unqualified_sender) recipient = NULL;
2460 }
2461 else
2462 {
2463 if (!allow_unqualified_recipient) recipient = NULL;
2464 }
2465 if (recipient == NULL) errmess = US"unqualified address not permitted";
2466 }
2467
2468 /* It's an error if no address could be extracted, except for the special
2469 case of an empty address. */
2470
2471 if (recipient == NULL && Ustrcmp(errmess, "empty address") != 0)
2472 {
2473 uschar *verb = US"is";
2474 uschar *t = ss;
1ab95fa6 2475 uschar *tt = colon;
059ec3d9
PH
2476 int len;
2477
2478 /* Arrange not to include any white space at the end in the
1ab95fa6 2479 error message or the header name. */
059ec3d9
PH
2480
2481 while (t > s && isspace(t[-1])) t--;
1ab95fa6 2482 while (tt > h->text && isspace(tt[-1])) tt--;
059ec3d9 2483
1ab95fa6 2484 /* Add the address that failed to the error message, since in a
059ec3d9
PH
2485 header with very many addresses it is sometimes hard to spot
2486 which one is at fault. However, limit the amount of address to
2487 quote - cases have been seen where, for example, a missing double
2488 quote in a humungous To: header creates an "address" that is longer
2489 than string_sprintf can handle. */
2490
2491 len = t - s;
2492 if (len > 1024)
2493 {
2494 len = 1024;
2495 verb = US"begins";
2496 }
2497
55414b25
JH
2498 /* deconst cast ok as we're passing a non-const to string_printing() */
2499 *msgptr = US string_printing(
1ab95fa6
PH
2500 string_sprintf("%s: failing address in \"%.*s:\" header %s: %.*s",
2501 errmess, tt - h->text, h->text, verb, len, s));
059ec3d9 2502
1eccaa59
PH
2503 yield = FAIL;
2504 break; /* Out of address loop */
059ec3d9
PH
2505 }
2506
2507 /* Advance to the next address */
2508
2509 s = ss + (terminator? 1:0);
2510 while (isspace(*s)) s++;
2511 } /* Next address */
059ec3d9 2512
1eccaa59
PH
2513 parse_allow_group = FALSE;
2514 parse_found_group = FALSE;
2515 } /* Next header unless yield has been set FALSE */
2516
2517return yield;
059ec3d9
PH
2518}
2519
2520
770747fd
MFM
2521/*************************************************
2522* Check header names for 8-bit characters *
2523*************************************************/
2524
2525/* This function checks for invalid charcters in header names. See
2526RFC 5322, 2.2. and RFC 6532, 3.
2527
2528Arguments:
2529 msgptr where to put an error message
2530
2531Returns: OK
2532 FAIL
2533*/
2534
2535int
2536verify_check_header_names_ascii(uschar **msgptr)
2537{
2538header_line *h;
2539uschar *colon, *s;
2540
2541for (h = header_list; h != NULL; h = h->next)
2542 {
2543 colon = Ustrchr(h->text, ':');
2544 for(s = h->text; s < colon; s++)
2545 {
2546 if ((*s < 33) || (*s > 126))
2547 {
2548 *msgptr = string_sprintf("Invalid character in header \"%.*s\" found",
2549 colon - h->text, h->text);
2550 return FAIL;
2551 }
2552 }
2553 }
2554return OK;
2555}
059ec3d9 2556
1c41c9cc
PH
2557/*************************************************
2558* Check for blind recipients *
2559*************************************************/
2560
2561/* This function checks that every (envelope) recipient is mentioned in either
2562the To: or Cc: header lines, thus detecting blind carbon copies.
2563
2564There are two ways of scanning that could be used: either scan the header lines
2565and tick off the recipients, or scan the recipients and check the header lines.
2566The original proposed patch did the former, but I have chosen to do the latter,
2567because (a) it requires no memory and (b) will use fewer resources when there
2568are many addresses in To: and/or Cc: and only one or two envelope recipients.
2569
2570Arguments: none
2571Returns: OK if there are no blind recipients
2572 FAIL if there is at least one blind recipient
2573*/
2574
2575int
2576verify_check_notblind(void)
2577{
2578int i;
2579for (i = 0; i < recipients_count; i++)
2580 {
2581 header_line *h;
2582 BOOL found = FALSE;
2583 uschar *address = recipients_list[i].address;
2584
2585 for (h = header_list; !found && h != NULL; h = h->next)
2586 {
2587 uschar *colon, *s;
2588
2589 if (h->type != htype_to && h->type != htype_cc) continue;
2590
2591 colon = Ustrchr(h->text, ':');
2592 s = colon + 1;
2593 while (isspace(*s)) s++;
2594
1eccaa59
PH
2595 /* Loop for multiple addresses in the header, enabling group syntax. Note
2596 that we have to reset this after the header has been scanned. */
1c41c9cc 2597
1eccaa59 2598 parse_allow_group = TRUE;
1c41c9cc
PH
2599
2600 while (*s != 0)
2601 {
2602 uschar *ss = parse_find_address_end(s, FALSE);
2603 uschar *recipient,*errmess;
2604 int terminator = *ss;
2605 int start, end, domain;
2606
2607 /* Temporarily terminate the string at this point, and extract the
1eccaa59 2608 operative address within, allowing group syntax. */
1c41c9cc
PH
2609
2610 *ss = 0;
2611 recipient = parse_extract_address(s,&errmess,&start,&end,&domain,FALSE);
2612 *ss = terminator;
2613
2614 /* If we found a valid recipient that has a domain, compare it with the
2615 envelope recipient. Local parts are compared case-sensitively, domains
2616 case-insensitively. By comparing from the start with length "domain", we
2617 include the "@" at the end, which ensures that we are comparing the whole
2618 local part of each address. */
2619
2620 if (recipient != NULL && domain != 0)
2621 {
2622 found = Ustrncmp(recipient, address, domain) == 0 &&
2623 strcmpic(recipient + domain, address + domain) == 0;
2624 if (found) break;
2625 }
2626
2627 /* Advance to the next address */
2628
2629 s = ss + (terminator? 1:0);
2630 while (isspace(*s)) s++;
2631 } /* Next address */
1eccaa59
PH
2632
2633 parse_allow_group = FALSE;
2634 parse_found_group = FALSE;
1c41c9cc
PH
2635 } /* Next header (if found is false) */
2636
2637 if (!found) return FAIL;
2638 } /* Next recipient */
2639
2640return OK;
2641}
2642
2643
059ec3d9
PH
2644
2645/*************************************************
2646* Find if verified sender *
2647*************************************************/
2648
2649/* Usually, just a single address is verified as the sender of the message.
2650However, Exim can be made to verify other addresses as well (often related in
2651some way), and this is useful in some environments. There may therefore be a
2652chain of such addresses that have previously been tested. This function finds
2653whether a given address is on the chain.
2654
2655Arguments: the address to be verified
2656Returns: pointer to an address item, or NULL
2657*/
2658
2659address_item *
2660verify_checked_sender(uschar *sender)
2661{
2662address_item *addr;
2663for (addr = sender_verified_list; addr != NULL; addr = addr->next)
2664 if (Ustrcmp(sender, addr->address) == 0) break;
2665return addr;
2666}
2667
2668
2669
2670
2671
2672/*************************************************
2673* Get valid header address *
2674*************************************************/
2675
2676/* Scan the originator headers of the message, looking for an address that
2677verifies successfully. RFC 822 says:
2678
2679 o The "Sender" field mailbox should be sent notices of
2680 any problems in transport or delivery of the original
2681 messages. If there is no "Sender" field, then the
2682 "From" field mailbox should be used.
2683
2684 o If the "Reply-To" field exists, then the reply should
2685 go to the addresses indicated in that field and not to
2686 the address(es) indicated in the "From" field.
2687
2688So we check a Sender field if there is one, else a Reply_to field, else a From
2689field. As some strange messages may have more than one of these fields,
2690especially if they are resent- fields, check all of them if there is more than
2691one.
2692
2693Arguments:
2694 user_msgptr points to where to put a user error message
2695 log_msgptr points to where to put a log error message
2696 callout timeout for callout check (passed to verify_address())
2697 callout_overall overall callout timeout (ditto)
8e669ac1 2698 callout_connect connect callout timeout (ditto)
059ec3d9
PH
2699 se_mailfrom mailfrom for verify; NULL => ""
2700 pm_mailfrom sender for pm callout check (passed to verify_address())
2701 options callout options (passed to verify_address())
8e669ac1 2702 verrno where to put the address basic_errno
059ec3d9
PH
2703
2704If log_msgptr is set to something without setting user_msgptr, the caller
2705normally uses log_msgptr for both things.
2706
2707Returns: result of the verification attempt: OK, FAIL, or DEFER;
2708 FAIL is given if no appropriate headers are found
2709*/
2710
2711int
2712verify_check_header_address(uschar **user_msgptr, uschar **log_msgptr,
8e669ac1 2713 int callout, int callout_overall, int callout_connect, uschar *se_mailfrom,
fe5b5d0b 2714 uschar *pm_mailfrom, int options, int *verrno)
059ec3d9
PH
2715{
2716static int header_types[] = { htype_sender, htype_reply_to, htype_from };
1eccaa59 2717BOOL done = FALSE;
059ec3d9
PH
2718int yield = FAIL;
2719int i;
2720
1eccaa59 2721for (i = 0; i < 3 && !done; i++)
059ec3d9
PH
2722 {
2723 header_line *h;
1eccaa59 2724 for (h = header_list; h != NULL && !done; h = h->next)
059ec3d9
PH
2725 {
2726 int terminator, new_ok;
2727 uschar *s, *ss, *endname;
2728
2729 if (h->type != header_types[i]) continue;
2730 s = endname = Ustrchr(h->text, ':') + 1;
2731
1eccaa59
PH
2732 /* Scan the addresses in the header, enabling group syntax. Note that we
2733 have to reset this after the header has been scanned. */
2734
2735 parse_allow_group = TRUE;
2736
059ec3d9
PH
2737 while (*s != 0)
2738 {
2739 address_item *vaddr;
2740
2741 while (isspace(*s) || *s == ',') s++;
2742 if (*s == 0) break; /* End of header */
2743
2744 ss = parse_find_address_end(s, FALSE);
2745
2746 /* The terminator is a comma or end of header, but there may be white
2747 space preceding it (including newline for the last address). Move back
2748 past any white space so we can check against any cached envelope sender
2749 address verifications. */
2750
2751 while (isspace(ss[-1])) ss--;
2752 terminator = *ss;
2753 *ss = 0;
2754
2755 HDEBUG(D_verify) debug_printf("verifying %.*s header address %s\n",
2756 (int)(endname - h->text), h->text, s);
2757
2758 /* See if we have already verified this address as an envelope sender,
2759 and if so, use the previous answer. */
2760
2761 vaddr = verify_checked_sender(s);
2762
2763 if (vaddr != NULL && /* Previously checked */
2764 (callout <= 0 || /* No callout needed; OR */
2765 vaddr->special_action > 256)) /* Callout was done */
2766 {
2767 new_ok = vaddr->special_action & 255;
2768 HDEBUG(D_verify) debug_printf("previously checked as envelope sender\n");
2769 *ss = terminator; /* Restore shortened string */
2770 }
2771
2772 /* Otherwise we run the verification now. We must restore the shortened
2773 string before running the verification, so the headers are correct, in
2774 case there is any rewriting. */
2775
2776 else
2777 {
2778 int start, end, domain;
1eccaa59
PH
2779 uschar *address = parse_extract_address(s, log_msgptr, &start, &end,
2780 &domain, FALSE);
059ec3d9
PH
2781
2782 *ss = terminator;
2783
1eccaa59
PH
2784 /* If we found an empty address, just carry on with the next one, but
2785 kill the message. */
2786
2787 if (address == NULL && Ustrcmp(*log_msgptr, "empty address") == 0)
2788 {
2789 *log_msgptr = NULL;
2790 s = ss;
2791 continue;
2792 }
2793
059ec3d9
PH
2794 /* If verification failed because of a syntax error, fail this
2795 function, and ensure that the failing address gets added to the error
2796 message. */
2797
2798 if (address == NULL)
2799 {
2800 new_ok = FAIL;
1eccaa59
PH
2801 while (ss > s && isspace(ss[-1])) ss--;
2802 *log_msgptr = string_sprintf("syntax error in '%.*s' header when "
2803 "scanning for sender: %s in \"%.*s\"",
2804 endname - h->text, h->text, *log_msgptr, ss - s, s);
2805 yield = FAIL;
2806 done = TRUE;
2807 break;
059ec3d9
PH
2808 }
2809
2f6603e1 2810 /* Else go ahead with the sender verification. But it isn't *the*
059ec3d9
PH
2811 sender of the message, so set vopt_fake_sender to stop sender_address
2812 being replaced after rewriting or qualification. */
2813
2814 else
2815 {
2816 vaddr = deliver_make_addr(address, FALSE);
2817 new_ok = verify_address(vaddr, NULL, options | vopt_fake_sender,
8e669ac1 2818 callout, callout_overall, callout_connect, se_mailfrom,
4deaf07d 2819 pm_mailfrom, NULL);
059ec3d9
PH
2820 }
2821 }
2822
2823 /* We now have the result, either newly found, or cached. If we are
2824 giving out error details, set a specific user error. This means that the
2825 last of these will be returned to the user if all three fail. We do not
2826 set a log message - the generic one below will be used. */
2827
fe5b5d0b 2828 if (new_ok != OK)
059ec3d9 2829 {
8e669ac1 2830 *verrno = vaddr->basic_errno;
fe5b5d0b
PH
2831 if (smtp_return_error_details)
2832 {
2833 *user_msgptr = string_sprintf("Rejected after DATA: "
2834 "could not verify \"%.*s\" header address\n%s: %s",
2835 endname - h->text, h->text, vaddr->address, vaddr->message);
2836 }
8e669ac1 2837 }
059ec3d9
PH
2838
2839 /* Success or defer */
2840
1eccaa59
PH
2841 if (new_ok == OK)
2842 {
2843 yield = OK;
2844 done = TRUE;
2845 break;
2846 }
2847
059ec3d9
PH
2848 if (new_ok == DEFER) yield = DEFER;
2849
2850 /* Move on to any more addresses in the header */
2851
2852 s = ss;
1eccaa59
PH
2853 } /* Next address */
2854
2855 parse_allow_group = FALSE;
2856 parse_found_group = FALSE;
2857 } /* Next header, unless done */
2858 } /* Next header type unless done */
059ec3d9
PH
2859
2860if (yield == FAIL && *log_msgptr == NULL)
2861 *log_msgptr = US"there is no valid sender in any header line";
2862
2863if (yield == DEFER && *log_msgptr == NULL)
2864 *log_msgptr = US"all attempts to verify a sender in a header line deferred";
2865
2866return yield;
2867}
2868
2869
2870
2871
2872/*************************************************
2873* Get RFC 1413 identification *
2874*************************************************/
2875
2876/* Attempt to get an id from the sending machine via the RFC 1413 protocol. If
2877the timeout is set to zero, then the query is not done. There may also be lists
2878of hosts and nets which are exempt. To guard against malefactors sending
2879non-printing characters which could, for example, disrupt a message's headers,
2880make sure the string consists of printing characters only.
2881
2882Argument:
2883 port the port to connect to; usually this is IDENT_PORT (113), but when
2884 running in the test harness with -bh a different value is used.
2885
2886Returns: nothing
2887
2888Side effect: any received ident value is put in sender_ident (NULL otherwise)
2889*/
2890
2891void
2892verify_get_ident(int port)
2893{
2894int sock, host_af, qlen;
2895int received_sender_port, received_interface_port, n;
2896uschar *p;
2897uschar buffer[2048];
2898
2899/* Default is no ident. Check whether we want to do an ident check for this
2900host. */
2901
2902sender_ident = NULL;
2903if (rfc1413_query_timeout <= 0 || verify_check_host(&rfc1413_hosts) != OK)
2904 return;
2905
2906DEBUG(D_ident) debug_printf("doing ident callback\n");
2907
2908/* Set up a connection to the ident port of the remote host. Bind the local end
2909to the incoming interface address. If the sender host address is an IPv6
2910address, the incoming interface address will also be IPv6. */
2911
2912host_af = (Ustrchr(sender_host_address, ':') == NULL)? AF_INET : AF_INET6;
2913sock = ip_socket(SOCK_STREAM, host_af);
2914if (sock < 0) return;
2915
2916if (ip_bind(sock, host_af, interface_address, 0) < 0)
2917 {
2918 DEBUG(D_ident) debug_printf("bind socket for ident failed: %s\n",
2919 strerror(errno));
2920 goto END_OFF;
2921 }
2922
2923if (ip_connect(sock, host_af, sender_host_address, port, rfc1413_query_timeout)
2924 < 0)
2925 {
6c6d6e48 2926 if (errno == ETIMEDOUT && LOGGING(ident_timeout))
059ec3d9
PH
2927 {
2928 log_write(0, LOG_MAIN, "ident connection to %s timed out",
2929 sender_host_address);
2930 }
2931 else
2932 {
2933 DEBUG(D_ident) debug_printf("ident connection to %s failed: %s\n",
2934 sender_host_address, strerror(errno));
2935 }
2936 goto END_OFF;
2937 }
2938
2939/* Construct and send the query. */
2940
2941sprintf(CS buffer, "%d , %d\r\n", sender_host_port, interface_port);
2942qlen = Ustrlen(buffer);
2943if (send(sock, buffer, qlen, 0) < 0)
2944 {
2945 DEBUG(D_ident) debug_printf("ident send failed: %s\n", strerror(errno));
2946 goto END_OFF;
2947 }
2948
2949/* Read a response line. We put it into the rest of the buffer, using several
2950recv() calls if necessary. */
2951
2952p = buffer + qlen;
2953
2954for (;;)
2955 {
2956 uschar *pp;
2957 int count;
2958 int size = sizeof(buffer) - (p - buffer);
2959
2960 if (size <= 0) goto END_OFF; /* Buffer filled without seeing \n. */
2961 count = ip_recv(sock, p, size, rfc1413_query_timeout);
2962 if (count <= 0) goto END_OFF; /* Read error or EOF */
2963
2964 /* Scan what we just read, to see if we have reached the terminating \r\n. Be
2965 generous, and accept a plain \n terminator as well. The only illegal
2966 character is 0. */
2967
2968 for (pp = p; pp < p + count; pp++)
2969 {
2970 if (*pp == 0) goto END_OFF; /* Zero octet not allowed */
2971 if (*pp == '\n')
2972 {
2973 if (pp[-1] == '\r') pp--;
2974 *pp = 0;
2975 goto GOT_DATA; /* Break out of both loops */
2976 }
2977 }
2978
2979 /* Reached the end of the data without finding \n. Let the loop continue to
2980 read some more, if there is room. */
2981
2982 p = pp;
2983 }
2984
2985GOT_DATA:
2986
2987/* We have received a line of data. Check it carefully. It must start with the
2988same two port numbers that we sent, followed by data as defined by the RFC. For
2989example,
2990
2991 12345 , 25 : USERID : UNIX :root
2992
2993However, the amount of white space may be different to what we sent. In the
2994"osname" field there may be several sub-fields, comma separated. The data we
2995actually want to save follows the third colon. Some systems put leading spaces
2996in it - we discard those. */
2997
2998if (sscanf(CS buffer + qlen, "%d , %d%n", &received_sender_port,
2999 &received_interface_port, &n) != 2 ||
3000 received_sender_port != sender_host_port ||
3001 received_interface_port != interface_port)
3002 goto END_OFF;
3003
3004p = buffer + qlen + n;
3005while(isspace(*p)) p++;
3006if (*p++ != ':') goto END_OFF;
3007while(isspace(*p)) p++;
3008if (Ustrncmp(p, "USERID", 6) != 0) goto END_OFF;
3009p += 6;
3010while(isspace(*p)) p++;
3011if (*p++ != ':') goto END_OFF;
3012while (*p != 0 && *p != ':') p++;
3013if (*p++ == 0) goto END_OFF;
3014while(isspace(*p)) p++;
3015if (*p == 0) goto END_OFF;
3016
3017/* The rest of the line is the data we want. We turn it into printing
3018characters when we save it, so that it cannot mess up the format of any logging
3019or Received: lines into which it gets inserted. We keep a maximum of 127
55414b25 3020characters. The deconst cast is ok as we fed a nonconst to string_printing() */
059ec3d9 3021
55414b25 3022sender_ident = US string_printing(string_copyn(p, 127));
059ec3d9
PH
3023DEBUG(D_ident) debug_printf("sender_ident = %s\n", sender_ident);
3024
3025END_OFF:
f1e894f3 3026(void)close(sock);
059ec3d9
PH
3027return;
3028}
3029
3030
3031
3032
3033/*************************************************
3034* Match host to a single host-list item *
3035*************************************************/
3036
3037/* This function compares a host (name or address) against a single item
3038from a host list. The host name gets looked up if it is needed and is not
3039already known. The function is called from verify_check_this_host() via
3040match_check_list(), which is why most of its arguments are in a single block.
3041
3042Arguments:
3043 arg the argument block (see below)
3044 ss the host-list item
3045 valueptr where to pass back looked up data, or NULL
3046 error for error message when returning ERROR
3047
3048The block contains:
32d668a5
PH
3049 host_name (a) the host name, or
3050 (b) NULL, implying use sender_host_name and
3051 sender_host_aliases, looking them up if required, or
3052 (c) the empty string, meaning that only IP address matches
3053 are permitted
059ec3d9
PH
3054 host_address the host address
3055 host_ipv4 the IPv4 address taken from an IPv6 one
3056
3057Returns: OK matched
3058 FAIL did not match
3059 DEFER lookup deferred
32d668a5
PH
3060 ERROR (a) failed to find the host name or IP address, or
3061 (b) unknown lookup type specified, or
3062 (c) host name encountered when only IP addresses are
3063 being matched
059ec3d9
PH
3064*/
3065
32d668a5 3066int
55414b25 3067check_host(void *arg, const uschar *ss, const uschar **valueptr, uschar **error)
059ec3d9
PH
3068{
3069check_host_block *cb = (check_host_block *)arg;
32d668a5 3070int mlen = -1;
059ec3d9 3071int maskoffset;
32d668a5 3072BOOL iplookup = FALSE;
059ec3d9 3073BOOL isquery = FALSE;
32d668a5 3074BOOL isiponly = cb->host_name != NULL && cb->host_name[0] == 0;
55414b25 3075const uschar *t;
32d668a5 3076uschar *semicolon;
059ec3d9
PH
3077uschar **aliases;
3078
3079/* Optimize for the special case when the pattern is "*". */
3080
3081if (*ss == '*' && ss[1] == 0) return OK;
3082
3083/* If the pattern is empty, it matches only in the case when there is no host -
3084this can occur in ACL checking for SMTP input using the -bs option. In this
3085situation, the host address is the empty string. */
3086
3087if (cb->host_address[0] == 0) return (*ss == 0)? OK : FAIL;
3088if (*ss == 0) return FAIL;
3089
32d668a5
PH
3090/* If the pattern is precisely "@" then match against the primary host name,
3091provided that host name matching is permitted; if it's "@[]" match against the
3092local host's IP addresses. */
059ec3d9
PH
3093
3094if (*ss == '@')
3095 {
32d668a5
PH
3096 if (ss[1] == 0)
3097 {
3098 if (isiponly) return ERROR;
3099 ss = primary_hostname;
3100 }
059ec3d9
PH
3101 else if (Ustrcmp(ss, "@[]") == 0)
3102 {
3103 ip_address_item *ip;
3104 for (ip = host_find_interfaces(); ip != NULL; ip = ip->next)
3105 if (Ustrcmp(ip->address, cb->host_address) == 0) return OK;
3106 return FAIL;
3107 }
3108 }
3109
3110/* If the pattern is an IP address, optionally followed by a bitmask count, do
3111a (possibly masked) comparision with the current IP address. */
3112
7e66e54d 3113if (string_is_ip_address(ss, &maskoffset) != 0)
059ec3d9
PH
3114 return (host_is_in_net(cb->host_address, ss, maskoffset)? OK : FAIL);
3115
1688f43b
PH
3116/* The pattern is not an IP address. A common error that people make is to omit
3117one component of an IPv4 address, either by accident, or believing that, for
3118example, 1.2.3/24 is the same as 1.2.3.0/24, or 1.2.3 is the same as 1.2.3.0,
3119which it isn't. (Those applications that do accept 1.2.3 as an IP address
3120interpret it as 1.2.0.3 because the final component becomes 16-bit - this is an
3121ancient specification.) To aid in debugging these cases, we give a specific
3122error if the pattern contains only digits and dots or contains a slash preceded
3123only by digits and dots (a slash at the start indicates a file name and of
3124course slashes may be present in lookups, but not preceded only by digits and
3125dots). */
3126
3127for (t = ss; isdigit(*t) || *t == '.'; t++);
3128if (*t == 0 || (*t == '/' && t != ss))
3129 {
3130 *error = US"malformed IPv4 address or address mask";
3131 return ERROR;
3132 }
3133
32d668a5 3134/* See if there is a semicolon in the pattern */
059ec3d9 3135
32d668a5
PH
3136semicolon = Ustrchr(ss, ';');
3137
3138/* If we are doing an IP address only match, then all lookups must be IP
df199fec 3139address lookups, even if there is no "net-". */
32d668a5
PH
3140
3141if (isiponly)
059ec3d9 3142 {
32d668a5
PH
3143 iplookup = semicolon != NULL;
3144 }
059ec3d9 3145
32d668a5 3146/* Otherwise, if the item is of the form net[n]-lookup;<file|query> then it is
df199fec
PH
3147a lookup on a masked IP network, in textual form. We obey this code even if we
3148have already set iplookup, so as to skip over the "net-" prefix and to set the
3149mask length. The net- stuff really only applies to single-key lookups where the
3150key is implicit. For query-style lookups the key is specified in the query.
3151From release 4.30, the use of net- for query style is no longer needed, but we
3152retain it for backward compatibility. */
3153
3154if (Ustrncmp(ss, "net", 3) == 0 && semicolon != NULL)
32d668a5
PH
3155 {
3156 mlen = 0;
3157 for (t = ss + 3; isdigit(*t); t++) mlen = mlen * 10 + *t - '0';
3158 if (mlen == 0 && t == ss+3) mlen = -1; /* No mask supplied */
3159 iplookup = (*t++ == '-');
3160 }
1688f43b 3161else t = ss;
059ec3d9 3162
32d668a5 3163/* Do the IP address lookup if that is indeed what we have */
059ec3d9 3164
32d668a5
PH
3165if (iplookup)
3166 {
3167 int insize;
3168 int search_type;
3169 int incoming[4];
3170 void *handle;
3171 uschar *filename, *key, *result;
3172 uschar buffer[64];
059ec3d9 3173
32d668a5 3174 /* Find the search type */
059ec3d9 3175
32d668a5 3176 search_type = search_findtype(t, semicolon - t);
059ec3d9 3177
32d668a5
PH
3178 if (search_type < 0) log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s",
3179 search_error_message);
059ec3d9 3180
13b685f9
PH
3181 /* Adjust parameters for the type of lookup. For a query-style lookup, there
3182 is no file name, and the "key" is just the query. For query-style with a file
3183 name, we have to fish the file off the start of the query. For a single-key
3184 lookup, the key is the current IP address, masked appropriately, and
3185 reconverted to text form, with the mask appended. For IPv6 addresses, specify
6a3bceb1
PH
3186 dot separators instead of colons, except when the lookup type is "iplsearch".
3187 */
059ec3d9 3188
13b685f9
PH
3189 if (mac_islookup(search_type, lookup_absfilequery))
3190 {
3191 filename = semicolon + 1;
3192 key = filename;
3193 while (*key != 0 && !isspace(*key)) key++;
3194 filename = string_copyn(filename, key - filename);
3195 while (isspace(*key)) key++;
3196 }
3197 else if (mac_islookup(search_type, lookup_querystyle))
32d668a5
PH
3198 {
3199 filename = NULL;
3200 key = semicolon + 1;
3201 }
6a3bceb1 3202 else /* Single-key style */
32d668a5 3203 {
e6d225ae 3204 int sep = (Ustrcmp(lookup_list[search_type]->name, "iplsearch") == 0)?
6a3bceb1 3205 ':' : '.';
32d668a5
PH
3206 insize = host_aton(cb->host_address, incoming);
3207 host_mask(insize, incoming, mlen);
6a3bceb1 3208 (void)host_nmtoa(insize, incoming, mlen, buffer, sep);
32d668a5
PH
3209 key = buffer;
3210 filename = semicolon + 1;
059ec3d9 3211 }
32d668a5
PH
3212
3213 /* Now do the actual lookup; note that there is no search_close() because
3214 of the caching arrangements. */
3215
d4ff61d1
JH
3216 if (!(handle = search_open(filename, search_type, 0, NULL, NULL)))
3217 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s", search_error_message);
3218
32d668a5
PH
3219 result = search_find(handle, filename, key, -1, NULL, 0, 0, NULL);
3220 if (valueptr != NULL) *valueptr = result;
3221 return (result != NULL)? OK : search_find_defer? DEFER: FAIL;
059ec3d9
PH
3222 }
3223
3224/* The pattern is not an IP address or network reference of any kind. That is,
32d668a5
PH
3225it is a host name pattern. If this is an IP only match, there's an error in the
3226host list. */
3227
3228if (isiponly)
3229 {
3230 *error = US"cannot match host name in match_ip list";
3231 return ERROR;
3232 }
3233
3234/* Check the characters of the pattern to see if they comprise only letters,
3235digits, full stops, and hyphens (the constituents of domain names). Allow
3236underscores, as they are all too commonly found. Sigh. Also, if
3237allow_utf8_domains is set, allow top-bit characters. */
059ec3d9
PH
3238
3239for (t = ss; *t != 0; t++)
3240 if (!isalnum(*t) && *t != '.' && *t != '-' && *t != '_' &&
3241 (!allow_utf8_domains || *t < 128)) break;
3242
3243/* If the pattern is a complete domain name, with no fancy characters, look up
3244its IP address and match against that. Note that a multi-homed host will add
3245items to the chain. */
3246
3247if (*t == 0)
3248 {
3249 int rc;
3250 host_item h;
3251 h.next = NULL;
3252 h.name = ss;
3253 h.address = NULL;
3254 h.mx = MX_NONE;
9b8fadde 3255
1f155f8e
JH
3256 /* Using byname rather than bydns here means we cannot determine dnssec
3257 status. On the other hand it is unclear how that could be either
3258 propagated up or enforced. */
3259
322050c2 3260 rc = host_find_byname(&h, NULL, HOST_FIND_QUALIFY_SINGLE, NULL, FALSE);
059ec3d9
PH
3261 if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3262 {
3263 host_item *hh;
3264 for (hh = &h; hh != NULL; hh = hh->next)
3265 {
96776534 3266 if (host_is_in_net(hh->address, cb->host_address, 0)) return OK;
059ec3d9
PH
3267 }
3268 return FAIL;
3269 }
3270 if (rc == HOST_FIND_AGAIN) return DEFER;
3271 *error = string_sprintf("failed to find IP address for %s", ss);
3272 return ERROR;
3273 }
3274
3275/* Almost all subsequent comparisons require the host name, and can be done
3276using the general string matching function. When this function is called for
3277outgoing hosts, the name is always given explicitly. If it is NULL, it means we
3278must use sender_host_name and its aliases, looking them up if necessary. */
3279
3280if (cb->host_name != NULL) /* Explicit host name given */
3281 return match_check_string(cb->host_name, ss, -1, TRUE, TRUE, TRUE,
3282 valueptr);
3283
3284/* Host name not given; in principle we need the sender host name and its
3285aliases. However, for query-style lookups, we do not need the name if the
3286query does not contain $sender_host_name. From release 4.23, a reference to
3287$sender_host_name causes it to be looked up, so we don't need to do the lookup
3288on spec. */
3289
3290if ((semicolon = Ustrchr(ss, ';')) != NULL)
3291 {
55414b25 3292 const uschar *affix;
059ec3d9
PH
3293 int partial, affixlen, starflags, id;
3294
3295 *semicolon = 0;
3296 id = search_findtype_partial(ss, &partial, &affix, &affixlen, &starflags);
3297 *semicolon=';';
3298
3299 if (id < 0) /* Unknown lookup type */
3300 {
3301 log_write(0, LOG_MAIN|LOG_PANIC, "%s in host list item \"%s\"",
3302 search_error_message, ss);
3303 return DEFER;
3304 }
13b685f9 3305 isquery = mac_islookup(id, lookup_querystyle|lookup_absfilequery);
059ec3d9
PH
3306 }
3307
3308if (isquery)
3309 {
3310 switch(match_check_string(US"", ss, -1, TRUE, TRUE, TRUE, valueptr))
3311 {
3312 case OK: return OK;
3313 case DEFER: return DEFER;
3314 default: return FAIL;
3315 }
3316 }
3317
3318/* Not a query-style lookup; must ensure the host name is present, and then we
3319do a check on the name and all its aliases. */
3320
3321if (sender_host_name == NULL)
3322 {
3323 HDEBUG(D_host_lookup)
3324 debug_printf("sender host name required, to match against %s\n", ss);
3325 if (host_lookup_failed || host_name_lookup() != OK)
3326 {
3327 *error = string_sprintf("failed to find host name for %s",
3328 sender_host_address);;
3329 return ERROR;
3330 }
3331 host_build_sender_fullhost();
3332 }
3333
3334/* Match on the sender host name, using the general matching function */
3335
3336switch(match_check_string(sender_host_name, ss, -1, TRUE, TRUE, TRUE,
3337 valueptr))
3338 {
3339 case OK: return OK;
3340 case DEFER: return DEFER;
3341 }
3342
3343/* If there are aliases, try matching on them. */
3344
3345aliases = sender_host_aliases;
3346while (*aliases != NULL)
3347 {
3348 switch(match_check_string(*aliases++, ss, -1, TRUE, TRUE, TRUE, valueptr))
3349 {
3350 case OK: return OK;
3351 case DEFER: return DEFER;
3352 }
3353 }
3354return FAIL;
3355}
3356
3357
3358
3359
3360/*************************************************
3361* Check a specific host matches a host list *
3362*************************************************/
3363
3364/* This function is passed a host list containing items in a number of
3365different formats and the identity of a host. Its job is to determine whether
3366the given host is in the set of hosts defined by the list. The host name is
3367passed as a pointer so that it can be looked up if needed and not already
3368known. This is commonly the case when called from verify_check_host() to check
3369an incoming connection. When called from elsewhere the host name should usually
3370be set.
3371
3372This function is now just a front end to match_check_list(), which runs common
3373code for scanning a list. We pass it the check_host() function to perform a
3374single test.
3375
3376Arguments:
3377 listptr pointer to the host list
3378 cache_bits pointer to cache for named lists, or NULL
3379 host_name the host name or NULL, implying use sender_host_name and
3380 sender_host_aliases, looking them up if required
3381 host_address the IP address
3382 valueptr if not NULL, data from a lookup is passed back here
3383
3384Returns: OK if the host is in the defined set
3385 FAIL if the host is not in the defined set,
3386 DEFER if a data lookup deferred (not a host lookup)
3387
3388If the host name was needed in order to make a comparison, and could not be
3389determined from the IP address, the result is FAIL unless the item
3390"+allow_unknown" was met earlier in the list, in which case OK is returned. */
3391
3392int
55414b25
JH
3393verify_check_this_host(const uschar **listptr, unsigned int *cache_bits,
3394 const uschar *host_name, const uschar *host_address, const uschar **valueptr)
059ec3d9 3395{
d4eb88df 3396int rc;
059ec3d9 3397unsigned int *local_cache_bits = cache_bits;
55414b25 3398const uschar *save_host_address = deliver_host_address;
059ec3d9
PH
3399check_host_block cb;
3400cb.host_name = host_name;
3401cb.host_address = host_address;
3402
3403if (valueptr != NULL) *valueptr = NULL;
3404
3405/* If the host address starts off ::ffff: it is an IPv6 address in
3406IPv4-compatible mode. Find the IPv4 part for checking against IPv4
3407addresses. */
3408
3409cb.host_ipv4 = (Ustrncmp(host_address, "::ffff:", 7) == 0)?
3410 host_address + 7 : host_address;
3411
8e669ac1
PH
3412/* During the running of the check, put the IP address into $host_address. In
3413the case of calls from the smtp transport, it will already be there. However,
3414in other calls (e.g. when testing ignore_target_hosts), it won't. Just to be on
d4eb88df
PH
3415the safe side, any existing setting is preserved, though as I write this
3416(November 2004) I can't see any cases where it is actually needed. */
3417
3418deliver_host_address = host_address;
3419rc = match_check_list(
3420 listptr, /* the list */
3421 0, /* separator character */
3422 &hostlist_anchor, /* anchor pointer */
3423 &local_cache_bits, /* cache pointer */
3424 check_host, /* function for testing */
3425 &cb, /* argument for function */
3426 MCL_HOST, /* type of check */
8e669ac1 3427 (host_address == sender_host_address)?
d4eb88df
PH
3428 US"host" : host_address, /* text for debugging */
3429 valueptr); /* where to pass back data */
3430deliver_host_address = save_host_address;
8e669ac1 3431return rc;
059ec3d9
PH
3432}
3433
3434
3435
3436
5130845b
JH
3437/*************************************************
3438* Check the given host item matches a list *
3439*************************************************/
3440int
3441verify_check_given_host(uschar **listptr, host_item *host)
3442{
55414b25 3443return verify_check_this_host(CUSS listptr, NULL, host->name, host->address, NULL);
5130845b
JH
3444}
3445
059ec3d9
PH
3446/*************************************************
3447* Check the remote host matches a list *
3448*************************************************/
3449
3450/* This is a front end to verify_check_this_host(), created because checking
3451the remote host is a common occurrence. With luck, a good compiler will spot
3452the tail recursion and optimize it. If there's no host address, this is
3453command-line SMTP input - check against an empty string for the address.
3454
3455Arguments:
3456 listptr pointer to the host list
3457
3458Returns: the yield of verify_check_this_host(),
3459 i.e. OK, FAIL, or DEFER
3460*/
3461
3462int
3463verify_check_host(uschar **listptr)
3464{
55414b25 3465return verify_check_this_host(CUSS listptr, sender_host_cache, NULL,
059ec3d9
PH
3466 (sender_host_address == NULL)? US"" : sender_host_address, NULL);
3467}
3468
3469
3470
3471
3472
3473/*************************************************
83e029d5 3474* Invert an IP address *
059ec3d9
PH
3475*************************************************/
3476
83e029d5
PP
3477/* Originally just used for DNS xBL lists, now also used for the
3478reverse_ip expansion operator.
3479
059ec3d9
PH
3480Arguments:
3481 buffer where to put the answer
3482 address the address to invert
3483*/
3484
83e029d5 3485void
059ec3d9
PH
3486invert_address(uschar *buffer, uschar *address)
3487{
3488int bin[4];
3489uschar *bptr = buffer;
3490
3491/* If this is an IPv4 address mapped into IPv6 format, adjust the pointer
3492to the IPv4 part only. */
3493
3494if (Ustrncmp(address, "::ffff:", 7) == 0) address += 7;
3495
3496/* Handle IPv4 address: when HAVE_IPV6 is false, the result of host_aton() is
3497always 1. */
3498
3499if (host_aton(address, bin) == 1)
3500 {
3501 int i;
3502 int x = bin[0];
3503 for (i = 0; i < 4; i++)
3504 {
3505 sprintf(CS bptr, "%d.", x & 255);
3506 while (*bptr) bptr++;
3507 x >>= 8;
3508 }
3509 }
3510
3511/* Handle IPv6 address. Actually, as far as I know, there are no IPv6 addresses
3512in any DNS black lists, and the format in which they will be looked up is
3513unknown. This is just a guess. */
3514
3515#if HAVE_IPV6
3516else
3517 {
3518 int i, j;
3519 for (j = 3; j >= 0; j--)
3520 {
3521 int x = bin[j];
3522 for (i = 0; i < 8; i++)
3523 {
3524 sprintf(CS bptr, "%x.", x & 15);
3525 while (*bptr) bptr++;
3526 x >>= 4;
3527 }
3528 }
3529 }
3530#endif
d6f6e0dc
PH
3531
3532/* Remove trailing period -- this is needed so that both arbitrary
3533dnsbl keydomains and inverted addresses may be combined with the
3534same format string, "%s.%s" */
3535
3536*(--bptr) = 0;
059ec3d9
PH
3537}
3538
3539
3540
0bcb2a0e
PH
3541/*************************************************
3542* Perform a single dnsbl lookup *
3543*************************************************/
3544
d6f6e0dc
PH
3545/* This function is called from verify_check_dnsbl() below. It is also called
3546recursively from within itself when domain and domain_txt are different
3547pointers, in order to get the TXT record from the alternate domain.
0bcb2a0e
PH
3548
3549Arguments:
d6f6e0dc
PH
3550 domain the outer dnsbl domain
3551 domain_txt alternate domain to lookup TXT record on success; when the
3552 same domain is to be used, domain_txt == domain (that is,
3553 the pointers must be identical, not just the text)
8e669ac1 3554 keydomain the current keydomain (for debug message)
d6f6e0dc
PH
3555 prepend subdomain to lookup (like keydomain, but
3556 reversed if IP address)
3557 iplist the list of matching IP addresses, or NULL for "any"
8e669ac1 3558 bitmask true if bitmask matching is wanted
431b7361
PH
3559 match_type condition for 'succeed' result
3560 0 => Any RR in iplist (=)
3561 1 => No RR in iplist (!=)
3562 2 => All RRs in iplist (==)
3563 3 => Some RRs not in iplist (!==)
3564 the two bits are defined as MT_NOT and MT_ALL
8e669ac1 3565 defer_return what to return for a defer
0bcb2a0e
PH
3566
3567Returns: OK if lookup succeeded
3568 FAIL if not
3569*/
3570
3571static int
d6f6e0dc 3572one_check_dnsbl(uschar *domain, uschar *domain_txt, uschar *keydomain,
431b7361 3573 uschar *prepend, uschar *iplist, BOOL bitmask, int match_type,
d6f6e0dc 3574 int defer_return)
8e669ac1 3575{
0bcb2a0e
PH
3576dns_answer dnsa;
3577dns_scan dnss;
3578tree_node *t;
3579dnsbl_cache_block *cb;
3580int old_pool = store_pool;
d6f6e0dc
PH
3581uschar query[256]; /* DNS domain max length */
3582
3583/* Construct the specific query domainname */
3584
3585if (!string_format(query, sizeof(query), "%s.%s", prepend, domain))
3586 {
3587 log_write(0, LOG_MAIN|LOG_PANIC, "dnslist query is too long "
3588 "(ignored): %s...", query);
3589 return FAIL;
3590 }
0bcb2a0e
PH
3591
3592/* Look for this query in the cache. */
3593
14b3c5bc
JH
3594if ( (t = tree_search(dnsbl_cache, query))
3595 && (cb = t->data.ptr)->expiry > time(NULL)
3596 )
3597
3598/* Previous lookup was cached */
3599
3600 {
3601 HDEBUG(D_dnsbl) debug_printf("using result of previous DNS lookup\n");
3602 }
0bcb2a0e
PH
3603
3604/* If not cached from a previous lookup, we must do a DNS lookup, and
3605cache the result in permanent memory. */
3606
14b3c5bc 3607else
0bcb2a0e 3608 {
e162fc97 3609 uint ttl = 3600;
14b3c5bc 3610
0bcb2a0e
PH
3611 store_pool = POOL_PERM;
3612
14b3c5bc
JH
3613 if (t)
3614 {
3615 HDEBUG(D_dnsbl) debug_printf("cached data found but past valid time; ");
3616 }
0bcb2a0e 3617
14b3c5bc
JH
3618 else
3619 { /* Set up a tree entry to cache the lookup */
3620 t = store_get(sizeof(tree_node) + Ustrlen(query));
3621 Ustrcpy(t->name, query);
3622 t->data.ptr = cb = store_get(sizeof(dnsbl_cache_block));
3623 (void)tree_insertnode(&dnsbl_cache, t);
3624 }
0bcb2a0e
PH
3625
3626 /* Do the DNS loopup . */
3627
3628 HDEBUG(D_dnsbl) debug_printf("new DNS lookup for %s\n", query);
3629 cb->rc = dns_basic_lookup(&dnsa, query, T_A);
3630 cb->text_set = FALSE;
3631 cb->text = NULL;
3632 cb->rhs = NULL;
3633
3634 /* If the lookup succeeded, cache the RHS address. The code allows for
3635 more than one address - this was for complete generality and the possible
3636 use of A6 records. However, A6 records have been reduced to experimental
3637 status (August 2001) and may die out. So they may never get used at all,
3638 let alone in dnsbl records. However, leave the code here, just in case.
3639
3640 Quite apart from one A6 RR generating multiple addresses, there are DNS
3641 lists that return more than one A record, so we must handle multiple
e162fc97
JH
3642 addresses generated in that way as well.
3643
3644 Mark the cache entry with the "now" plus the minimum of the address TTLs,
3645 or some suitably far-future time if none were found. */
0bcb2a0e
PH
3646
3647 if (cb->rc == DNS_SUCCEED)
3648 {
3649 dns_record *rr;
3650 dns_address **addrp = &(cb->rhs);
3651 for (rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
e1a3f32f 3652 rr;
0bcb2a0e
PH
3653 rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT))
3654 {
3655 if (rr->type == T_A)
3656 {
3657 dns_address *da = dns_address_from_rr(&dnsa, rr);
e1a3f32f 3658 if (da)
0bcb2a0e
PH
3659 {
3660 *addrp = da;
3661 while (da->next != NULL) da = da->next;
3662 addrp = &(da->next);
14b3c5bc 3663 if (ttl > rr->ttl) ttl = rr->ttl;
0bcb2a0e
PH
3664 }
3665 }
3666 }
3667
3668 /* If we didn't find any A records, change the return code. This can
3669 happen when there is a CNAME record but there are no A records for what
3670 it points to. */
3671
3672 if (cb->rhs == NULL) cb->rc = DNS_NODATA;
3673 }
3674
14b3c5bc 3675 cb->expiry = time(NULL)+ttl;
0bcb2a0e
PH
3676 store_pool = old_pool;
3677 }
3678
0bcb2a0e
PH
3679/* We now have the result of the DNS lookup, either newly done, or cached
3680from a previous call. If the lookup succeeded, check against the address
3681list if there is one. This may be a positive equality list (introduced by
3682"="), a negative equality list (introduced by "!="), a positive bitmask
3683list (introduced by "&"), or a negative bitmask list (introduced by "!&").*/
3684
3685if (cb->rc == DNS_SUCCEED)
3686 {
3687 dns_address *da = NULL;
3688 uschar *addlist = cb->rhs->address;
3689
3690 /* For A and AAAA records, there may be multiple addresses from multiple
3691 records. For A6 records (currently not expected to be used) there may be
3692 multiple addresses from a single record. */
3693
3694 for (da = cb->rhs->next; da != NULL; da = da->next)
3695 addlist = string_sprintf("%s, %s", addlist, da->address);
3696
3697 HDEBUG(D_dnsbl) debug_printf("DNS lookup for %s succeeded (yielding %s)\n",
3698 query, addlist);
3699
3700 /* Address list check; this can be either for equality, or via a bitmask.
3701 In the latter case, all the bits must match. */
3702
3703 if (iplist != NULL)
3704 {
431b7361 3705 for (da = cb->rhs; da != NULL; da = da->next)
0bcb2a0e 3706 {
431b7361
PH
3707 int ipsep = ',';
3708 uschar ip[46];
55414b25 3709 const uschar *ptr = iplist;
431b7361
PH
3710 uschar *res;
3711
0bcb2a0e 3712 /* Handle exact matching */
431b7361 3713
0bcb2a0e
PH
3714 if (!bitmask)
3715 {
431b7361 3716 while ((res = string_nextinlist(&ptr, &ipsep, ip, sizeof(ip))) != NULL)
0bcb2a0e
PH
3717 {
3718 if (Ustrcmp(CS da->address, ip) == 0) break;
3719 }
3720 }
431b7361 3721
0bcb2a0e 3722 /* Handle bitmask matching */
431b7361 3723
0bcb2a0e
PH
3724 else
3725 {
3726 int address[4];
3727 int mask = 0;
3728
3729 /* At present, all known DNS blocking lists use A records, with
3730 IPv4 addresses on the RHS encoding the information they return. I
3731 wonder if this will linger on as the last vestige of IPv4 when IPv6
3732 is ubiquitous? Anyway, for now we use paranoia code to completely
3733 ignore IPv6 addresses. The default mask is 0, which always matches.
3734 We change this only for IPv4 addresses in the list. */
3735
431b7361 3736 if (host_aton(da->address, address) == 1) mask = address[0];
0bcb2a0e
PH
3737
3738 /* Scan the returned addresses, skipping any that are IPv6 */
3739
431b7361 3740 while ((res = string_nextinlist(&ptr, &ipsep, ip, sizeof(ip))) != NULL)
0bcb2a0e 3741 {
431b7361
PH
3742 if (host_aton(ip, address) != 1) continue;
3743 if ((address[0] & mask) == address[0]) break;
0bcb2a0e
PH
3744 }
3745 }
3746
431b7361
PH
3747 /* If either
3748
3749 (a) An IP address in an any ('=') list matched, or
3750 (b) No IP address in an all ('==') list matched
0bcb2a0e 3751
431b7361
PH
3752 then we're done searching. */
3753
3754 if (((match_type & MT_ALL) != 0) == (res == NULL)) break;
0bcb2a0e
PH
3755 }
3756
431b7361 3757 /* If da == NULL, either
0bcb2a0e 3758
431b7361
PH
3759 (a) No IP address in an any ('=') list matched, or
3760 (b) An IP address in an all ('==') list didn't match
0bcb2a0e 3761
431b7361
PH
3762 so behave as if the DNSBL lookup had not succeeded, i.e. the host is not on
3763 the list. */
0bcb2a0e 3764
431b7361 3765 if ((match_type == MT_NOT || match_type == MT_ALL) != (da == NULL))
0bcb2a0e
PH
3766 {
3767 HDEBUG(D_dnsbl)
3768 {
431b7361
PH
3769 uschar *res = NULL;
3770 switch(match_type)
3771 {
3772 case 0:
3773 res = US"was no match";
3774 break;
3775 case MT_NOT:
3776 res = US"was an exclude match";
3777 break;
3778 case MT_ALL:
3779 res = US"was an IP address that did not match";
3780 break;
3781 case MT_NOT|MT_ALL:
3782 res = US"were no IP addresses that did not match";
3783 break;
3784 }
0bcb2a0e 3785 debug_printf("=> but we are not accepting this block class because\n");
431b7361
PH
3786 debug_printf("=> there %s for %s%c%s\n",
3787 res,
3788 ((match_type & MT_ALL) == 0)? "" : "=",
3789 bitmask? '&' : '=', iplist);
0bcb2a0e 3790 }
8e669ac1 3791 return FAIL;
0bcb2a0e
PH
3792 }
3793 }
3794
d6f6e0dc
PH
3795 /* Either there was no IP list, or the record matched, implying that the
3796 domain is on the list. We now want to find a corresponding TXT record. If an
3797 alternate domain is specified for the TXT record, call this function
3798 recursively to look that up; this has the side effect of re-checking that
3799 there is indeed an A record at the alternate domain. */
3800
3801 if (domain_txt != domain)
3802 return one_check_dnsbl(domain_txt, domain_txt, keydomain, prepend, NULL,
431b7361 3803 FALSE, match_type, defer_return);
d6f6e0dc
PH
3804
3805 /* If there is no alternate domain, look up a TXT record in the main domain
3806 if it has not previously been cached. */
0bcb2a0e
PH
3807
3808 if (!cb->text_set)
3809 {
3810 cb->text_set = TRUE;
3811 if (dns_basic_lookup(&dnsa, query, T_TXT) == DNS_SUCCEED)
3812 {
3813 dns_record *rr;
3814 for (rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
3815 rr != NULL;
3816 rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT))
3817 if (rr->type == T_TXT) break;
3818 if (rr != NULL)
3819 {
3820 int len = (rr->data)[0];
3821 if (len > 511) len = 127;
3822 store_pool = POOL_PERM;
3823 cb->text = string_sprintf("%.*s", len, (const uschar *)(rr->data+1));
3824 store_pool = old_pool;
3825 }
3826 }
3827 }
3828
3829 dnslist_value = addlist;
3830 dnslist_text = cb->text;
3831 return OK;
3832 }
3833
3834/* There was a problem with the DNS lookup */
3835
3836if (cb->rc != DNS_NOMATCH && cb->rc != DNS_NODATA)
3837 {
3838 log_write(L_dnslist_defer, LOG_MAIN,
3839 "DNS list lookup defer (probably timeout) for %s: %s", query,
3840 (defer_return == OK)? US"assumed in list" :
3841 (defer_return == FAIL)? US"assumed not in list" :
3842 US"returned DEFER");
3843 return defer_return;
3844 }
3845
3846/* No entry was found in the DNS; continue for next domain */
3847
3848HDEBUG(D_dnsbl)
3849 {
3850 debug_printf("DNS lookup for %s failed\n", query);
3851 debug_printf("=> that means %s is not listed at %s\n",
3852 keydomain, domain);
3853 }
3854
3855return FAIL;
3856}
3857
3858
3859
3860
059ec3d9
PH
3861/*************************************************
3862* Check host against DNS black lists *
3863*************************************************/
3864
3865/* This function runs checks against a list of DNS black lists, until one
3866matches. Each item on the list can be of the form
3867
3868 domain=ip-address/key
3869
3870The domain is the right-most domain that is used for the query, for example,
3871blackholes.mail-abuse.org. If the IP address is present, there is a match only
3872if the DNS lookup returns a matching IP address. Several addresses may be
3873given, comma-separated, for example: x.y.z=127.0.0.1,127.0.0.2.
3874
3875If no key is given, what is looked up in the domain is the inverted IP address
3876of the current client host. If a key is given, it is used to construct the
d6f6e0dc 3877domain for the lookup. For example:
059ec3d9
PH
3878
3879 dsn.rfc-ignorant.org/$sender_address_domain
3880
3881After finding a match in the DNS, the domain is placed in $dnslist_domain, and
3882then we check for a TXT record for an error message, and if found, save its
3883value in $dnslist_text. We also cache everything in a tree, to optimize
3884multiple lookups.
3885
d6f6e0dc
PH
3886The TXT record is normally looked up in the same domain as the A record, but
3887when many lists are combined in a single DNS domain, this will not be a very
3888specific message. It is possible to specify a different domain for looking up
3889TXT records; this is given before the main domain, comma-separated. For
3890example:
3891
3892 dnslists = http.dnsbl.sorbs.net,dnsbl.sorbs.net=127.0.0.2 : \
3893 socks.dnsbl.sorbs.net,dnsbl.sorbs.net=127.0.0.3
3894
3895The caching ensures that only one lookup in dnsbl.sorbs.net is done.
3896
059ec3d9
PH
3897Note: an address for testing RBL is 192.203.178.39
3898Note: an address for testing DUL is 192.203.178.4
3899Note: a domain for testing RFCI is example.tld.dsn.rfc-ignorant.org
3900
3901Arguments:
379ba7d0 3902 where the acl type
059ec3d9 3903 listptr the domain/address/data list
379ba7d0 3904 log_msgptr log message on error
059ec3d9
PH
3905
3906Returns: OK successful lookup (i.e. the address is on the list), or
3907 lookup deferred after +include_unknown
3908 FAIL name not found, or no data found for the given type, or
3909 lookup deferred after +exclude_unknown (default)
3910 DEFER lookup failure, if +defer_unknown was set
3911*/
3912
3913int
379ba7d0 3914verify_check_dnsbl(int where, const uschar ** listptr, uschar ** log_msgptr)
059ec3d9
PH
3915{
3916int sep = 0;
3917int defer_return = FAIL;
55414b25 3918const uschar *list = *listptr;
059ec3d9
PH
3919uschar *domain;
3920uschar *s;
3921uschar buffer[1024];
059ec3d9
PH
3922uschar revadd[128]; /* Long enough for IPv6 address */
3923
3924/* Indicate that the inverted IP address is not yet set up */
3925
3926revadd[0] = 0;
3927
0bcb2a0e
PH
3928/* In case this is the first time the DNS resolver is being used. */
3929
8c51eead 3930dns_init(FALSE, FALSE, FALSE); /*XXX dnssec? */
0bcb2a0e 3931
059ec3d9
PH
3932/* Loop through all the domains supplied, until something matches */
3933
3934while ((domain = string_nextinlist(&list, &sep, buffer, sizeof(buffer))) != NULL)
3935 {
0bcb2a0e 3936 int rc;
059ec3d9 3937 BOOL bitmask = FALSE;
431b7361 3938 int match_type = 0;
d6f6e0dc
PH
3939 uschar *domain_txt;
3940 uschar *comma;
059ec3d9
PH
3941 uschar *iplist;
3942 uschar *key;
059ec3d9
PH
3943
3944 HDEBUG(D_dnsbl) debug_printf("DNS list check: %s\n", domain);
3945
3946 /* Deal with special values that change the behaviour on defer */
3947
3948 if (domain[0] == '+')
3949 {
3950 if (strcmpic(domain, US"+include_unknown") == 0) defer_return = OK;
3951 else if (strcmpic(domain, US"+exclude_unknown") == 0) defer_return = FAIL;
3952 else if (strcmpic(domain, US"+defer_unknown") == 0) defer_return = DEFER;
3953 else
3954 log_write(0, LOG_MAIN|LOG_PANIC, "unknown item in dnslist (ignored): %s",
3955 domain);
3956 continue;
3957 }
3958
3959 /* See if there's explicit data to be looked up */
3960
379ba7d0 3961 if ((key = Ustrchr(domain, '/'))) *key++ = 0;
059ec3d9
PH
3962
3963 /* See if there's a list of addresses supplied after the domain name. This is
431b7361
PH
3964 introduced by an = or a & character; if preceded by = we require all matches
3965 and if preceded by ! we invert the result. */
059ec3d9 3966
379ba7d0 3967 if (!(iplist = Ustrchr(domain, '=')))
059ec3d9
PH
3968 {
3969 bitmask = TRUE;
3970 iplist = Ustrchr(domain, '&');
3971 }
3972
379ba7d0 3973 if (iplist) /* Found either = or & */
059ec3d9 3974 {
431b7361 3975 if (iplist > domain && iplist[-1] == '!') /* Handle preceding ! */
059ec3d9 3976 {
431b7361 3977 match_type |= MT_NOT;
059ec3d9
PH
3978 iplist[-1] = 0;
3979 }
431b7361
PH
3980
3981 *iplist++ = 0; /* Terminate domain, move on */
3982
3983 /* If we found = (bitmask == FALSE), check for == or =& */
3984
3985 if (!bitmask && (*iplist == '=' || *iplist == '&'))
3986 {
3987 bitmask = *iplist++ == '&';
3988 match_type |= MT_ALL;
3989 }
059ec3d9
PH
3990 }
3991
379ba7d0 3992
d6f6e0dc
PH
3993 /* If there is a comma in the domain, it indicates that a second domain for
3994 looking up TXT records is provided, before the main domain. Otherwise we must
3995 set domain_txt == domain. */
3996
3997 domain_txt = domain;
3998 comma = Ustrchr(domain, ',');
3999 if (comma != NULL)
4000 {
4001 *comma++ = 0;
4002 domain = comma;
4003 }
4004
059ec3d9
PH
4005 /* Check that what we have left is a sensible domain name. There is no reason
4006 why these domains should in fact use the same syntax as hosts and email
4007 domains, but in practice they seem to. However, there is little point in
4008 actually causing an error here, because that would no doubt hold up incoming
4009 mail. Instead, I'll just log it. */
4010
4011 for (s = domain; *s != 0; s++)
4012 {
09dcaba9 4013 if (!isalnum(*s) && *s != '-' && *s != '.' && *s != '_')
059ec3d9
PH
4014 {
4015 log_write(0, LOG_MAIN, "dnslists domain \"%s\" contains "
4016 "strange characters - is this right?", domain);
4017 break;
4018 }
4019 }
4020
d6f6e0dc
PH
4021 /* Check the alternate domain if present */
4022
4023 if (domain_txt != domain) for (s = domain_txt; *s != 0; s++)
4024 {
09dcaba9 4025 if (!isalnum(*s) && *s != '-' && *s != '.' && *s != '_')
d6f6e0dc
PH
4026 {
4027 log_write(0, LOG_MAIN, "dnslists domain \"%s\" contains "
4028 "strange characters - is this right?", domain_txt);
4029 break;
4030 }
4031 }
4032
8e669ac1 4033 /* If there is no key string, construct the query by adding the domain name
0bcb2a0e 4034 onto the inverted host address, and perform a single DNS lookup. */
8e669ac1 4035
059ec3d9
PH
4036 if (key == NULL)
4037 {
379ba7d0
JH
4038 if (where == ACL_WHERE_NOTSMTP_START || where == ACL_WHERE_NOTSMTP)
4039 {
4040 *log_msgptr = string_sprintf
4041 ("cannot test auto-keyed dnslists condition in %s ACL",
4042 acl_wherenames[where]);
4043 return ERROR;
4044 }
059ec3d9
PH
4045 if (sender_host_address == NULL) return FAIL; /* can never match */
4046 if (revadd[0] == 0) invert_address(revadd, sender_host_address);
d6f6e0dc 4047 rc = one_check_dnsbl(domain, domain_txt, sender_host_address, revadd,
431b7361 4048 iplist, bitmask, match_type, defer_return);
0bcb2a0e
PH
4049 if (rc == OK)
4050 {
d6f6e0dc 4051 dnslist_domain = string_copy(domain_txt);
93655c46 4052 dnslist_matched = string_copy(sender_host_address);
8e669ac1 4053 HDEBUG(D_dnsbl) debug_printf("=> that means %s is listed at %s\n",
d6f6e0dc 4054 sender_host_address, dnslist_domain);
0bcb2a0e 4055 }
0bcb2a0e 4056 if (rc != FAIL) return rc; /* OK or DEFER */
059ec3d9 4057 }
8e669ac1
PH
4058
4059 /* If there is a key string, it can be a list of domains or IP addresses to
0bcb2a0e 4060 be concatenated with the main domain. */
8e669ac1 4061
059ec3d9
PH
4062 else
4063 {
0bcb2a0e 4064 int keysep = 0;
8e669ac1
PH
4065 BOOL defer = FALSE;
4066 uschar *keydomain;
0bcb2a0e 4067 uschar keybuffer[256];
d6f6e0dc 4068 uschar keyrevadd[128];
8e669ac1 4069
55414b25 4070 while ((keydomain = string_nextinlist(CUSS &key, &keysep, keybuffer,
0bcb2a0e 4071 sizeof(keybuffer))) != NULL)
8e669ac1 4072 {
d6f6e0dc
PH
4073 uschar *prepend = keydomain;
4074
7e66e54d 4075 if (string_is_ip_address(keydomain, NULL) != 0)
059ec3d9 4076 {
0bcb2a0e 4077 invert_address(keyrevadd, keydomain);
d6f6e0dc 4078 prepend = keyrevadd;
059ec3d9 4079 }
8e669ac1 4080
d6f6e0dc 4081 rc = one_check_dnsbl(domain, domain_txt, keydomain, prepend, iplist,
431b7361 4082 bitmask, match_type, defer_return);
8e669ac1 4083
0bcb2a0e 4084 if (rc == OK)
059ec3d9 4085 {
d6f6e0dc 4086 dnslist_domain = string_copy(domain_txt);
93655c46 4087 dnslist_matched = string_copy(keydomain);
8e669ac1 4088 HDEBUG(D_dnsbl) debug_printf("=> that means %s is listed at %s\n",
d6f6e0dc 4089 keydomain, dnslist_domain);
8e669ac1 4090 return OK;
059ec3d9 4091 }
8e669ac1 4092
c38d6da9
PH
4093 /* If the lookup deferred, remember this fact. We keep trying the rest
4094 of the list to see if we get a useful result, and if we don't, we return
4095 DEFER at the end. */
059ec3d9 4096
c38d6da9 4097 if (rc == DEFER) defer = TRUE;
0bcb2a0e 4098 } /* continue with next keystring domain/address */
c38d6da9
PH
4099
4100 if (defer) return DEFER;
8e669ac1 4101 }
0bcb2a0e 4102 } /* continue with next dnsdb outer domain */
059ec3d9
PH
4103
4104return FAIL;
4105}
4106
511a6c14
JH
4107/* vi: aw ai sw=2
4108*/
059ec3d9 4109/* End of verify.c */