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