Track tainted data and refuse to expand it
[exim.git] / src / src / host.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Functions for finding hosts, either by gethostbyname(), gethostbyaddr(), or
9 directly via the DNS. When IPv6 is supported, getipnodebyname() and
10 getipnodebyaddr() may be used instead of gethostbyname() and gethostbyaddr(),
11 if the newer functions are available. This module also contains various other
12 functions concerned with hosts and addresses, and a random number function,
13 used for randomizing hosts with equal MXs but available for use in other parts
14 of Exim. */
15
16
17 #include "exim.h"
18
19
20 /* Static variable for preserving the list of interface addresses in case it is
21 used more than once. */
22
23 static ip_address_item *local_interface_data = NULL;
24
25
26 #ifdef USE_INET_NTOA_FIX
27 /*************************************************
28 *         Replacement for broken inet_ntoa()     *
29 *************************************************/
30
31 /* On IRIX systems, gcc uses a different structure passing convention to the
32 native libraries. This causes inet_ntoa() to always yield 0.0.0.0 or
33 255.255.255.255. To get round this, we provide a private version of the
34 function here. It is used only if USE_INET_NTOA_FIX is set, which should happen
35 only when gcc is in use on an IRIX system. Code send to me by J.T. Breitner,
36 with these comments:
37
38   code by Stuart Levy
39   as seen in comp.sys.sgi.admin
40
41 August 2005: Apparently this is also needed for AIX systems; USE_INET_NTOA_FIX
42 should now be set for them as well.
43
44 Arguments:  sa  an in_addr structure
45 Returns:        pointer to static text string
46 */
47
48 char *
49 inet_ntoa(struct in_addr sa)
50 {
51 static uschar addr[20];
52 sprintf(addr, "%d.%d.%d.%d",
53         (US &sa.s_addr)[0],
54         (US &sa.s_addr)[1],
55         (US &sa.s_addr)[2],
56         (US &sa.s_addr)[3]);
57   return addr;
58 }
59 #endif
60
61
62
63 /*************************************************
64 *              Random number generator           *
65 *************************************************/
66
67 /* This is a simple pseudo-random number generator. It does not have to be
68 very good for the uses to which it is put. When running the regression tests,
69 start with a fixed seed.
70
71 If you need better, see vaguely_random_number() which is potentially stronger,
72 if a crypto library is available, but might end up just calling this instead.
73
74 Arguments:
75   limit:    one more than the largest number required
76
77 Returns:    a pseudo-random number in the range 0 to limit-1
78 */
79
80 int
81 random_number(int limit)
82 {
83 if (limit < 1)
84   return 0;
85 if (random_seed == 0)
86   {
87   if (f.running_in_test_harness) random_seed = 42; else
88     {
89     int p = (int)getpid();
90     random_seed = (int)time(NULL) ^ ((p << 16) | p);
91     }
92   }
93 random_seed = 1103515245 * random_seed + 12345;
94 return (unsigned int)(random_seed >> 16) % limit;
95 }
96
97 /*************************************************
98 *      Wrappers for logging lookup times         *
99 *************************************************/
100
101 /* When the 'slow_lookup_log' variable is enabled, these wrappers will
102 write to the log file all (potential) dns lookups that take more than
103 slow_lookup_log milliseconds
104 */
105
106 static void
107 log_long_lookup(const uschar * type, const uschar * data, unsigned long msec)
108 {
109 log_write(0, LOG_MAIN, "Long %s lookup for '%s': %lu msec",
110   type, data, msec);
111 }
112
113
114 /* returns the current system epoch time in milliseconds. */
115 static unsigned long
116 get_time_in_ms()
117 {
118 struct timeval tmp_time;
119 unsigned long seconds, microseconds;
120
121 gettimeofday(&tmp_time, NULL);
122 seconds = (unsigned long) tmp_time.tv_sec;
123 microseconds = (unsigned long) tmp_time.tv_usec;
124 return seconds*1000 + microseconds/1000;
125 }
126
127
128 static int
129 dns_lookup_timerwrap(dns_answer *dnsa, const uschar *name, int type,
130   const uschar **fully_qualified_name)
131 {
132 int retval;
133 unsigned long time_msec;
134
135 if (!slow_lookup_log)
136   return dns_lookup(dnsa, name, type, fully_qualified_name);
137
138 time_msec = get_time_in_ms();
139 retval = dns_lookup(dnsa, name, type, fully_qualified_name);
140 if ((time_msec = get_time_in_ms() - time_msec) > slow_lookup_log)
141   log_long_lookup(US"name", name, time_msec);
142 return retval;
143 }
144
145
146 /*************************************************
147 *       Replace gethostbyname() when testing     *
148 *************************************************/
149
150 /* This function is called instead of gethostbyname(), gethostbyname2(), or
151 getipnodebyname() when running in the test harness. . It also
152 recognizes an unqualified "localhost" and forces it to the appropriate loopback
153 address. IP addresses are treated as literals. For other names, it uses the DNS
154 to find the host name. In the test harness, this means it will access only the
155 fake DNS resolver.
156
157 Arguments:
158   name          the host name or a textual IP address
159   af            AF_INET or AF_INET6
160   error_num     where to put an error code:
161                 HOST_NOT_FOUND/TRY_AGAIN/NO_RECOVERY/NO_DATA
162
163 Returns:        a hostent structure or NULL for an error
164 */
165
166 static struct hostent *
167 host_fake_gethostbyname(const uschar *name, int af, int *error_num)
168 {
169 #if HAVE_IPV6
170 int alen = (af == AF_INET)? sizeof(struct in_addr):sizeof(struct in6_addr);
171 #else
172 int alen = sizeof(struct in_addr);
173 #endif
174
175 int ipa;
176 const uschar *lname = name;
177 uschar *adds;
178 uschar **alist;
179 struct hostent *yield;
180 dns_answer dnsa;
181 dns_scan dnss;
182
183 DEBUG(D_host_lookup)
184   debug_printf("using host_fake_gethostbyname for %s (%s)\n", name,
185     (af == AF_INET)? "IPv4" : "IPv6");
186
187 /* Handle unqualified "localhost" */
188
189 if (Ustrcmp(name, "localhost") == 0)
190   lname = (af == AF_INET)? US"127.0.0.1" : US"::1";
191
192 /* Handle a literal IP address */
193
194 if ((ipa = string_is_ip_address(lname, NULL)) != 0)
195   {
196   if ((ipa == 4 && af == AF_INET) ||
197       (ipa == 6 && af == AF_INET6))
198     {
199     int x[4];
200     yield = store_get(sizeof(struct hostent), FALSE);
201     alist = store_get(2 * sizeof(char *), FALSE);
202     adds  = store_get(alen, FALSE);
203     yield->h_name = CS name;
204     yield->h_aliases = NULL;
205     yield->h_addrtype = af;
206     yield->h_length = alen;
207     yield->h_addr_list = CSS alist;
208     *alist++ = adds;
209     for (int n = host_aton(lname, x), i = 0; i < n; i++)
210       {
211       int y = x[i];
212       *adds++ = (y >> 24) & 255;
213       *adds++ = (y >> 16) & 255;
214       *adds++ = (y >> 8) & 255;
215       *adds++ = y & 255;
216       }
217     *alist = NULL;
218     }
219
220   /* Wrong kind of literal address */
221
222   else
223     {
224     *error_num = HOST_NOT_FOUND;
225     return NULL;
226     }
227   }
228
229 /* Handle a host name */
230
231 else
232   {
233   int type = (af == AF_INET)? T_A:T_AAAA;
234   int rc = dns_lookup_timerwrap(&dnsa, lname, type, NULL);
235   int count = 0;
236
237   lookup_dnssec_authenticated = NULL;
238
239   switch(rc)
240     {
241     case DNS_SUCCEED: break;
242     case DNS_NOMATCH: *error_num = HOST_NOT_FOUND; return NULL;
243     case DNS_NODATA:  *error_num = NO_DATA; return NULL;
244     case DNS_AGAIN:   *error_num = TRY_AGAIN; return NULL;
245     default:
246     case DNS_FAIL:    *error_num = NO_RECOVERY; return NULL;
247     }
248
249   for (dns_record * rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
250        rr;
251        rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT)) if (rr->type == type)
252     count++;
253
254   yield = store_get(sizeof(struct hostent), FALSE);
255   alist = store_get((count + 1) * sizeof(char *), FALSE);
256   adds  = store_get(count *alen, FALSE);
257
258   yield->h_name = CS name;
259   yield->h_aliases = NULL;
260   yield->h_addrtype = af;
261   yield->h_length = alen;
262   yield->h_addr_list = CSS alist;
263
264   for (dns_record * rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
265        rr;
266        rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT)) if (rr->type == type)
267     {
268     int x[4];
269     dns_address *da;
270     if (!(da = dns_address_from_rr(&dnsa, rr))) break;
271     *alist++ = adds;
272     for (int n = host_aton(da->address, x), i = 0; i < n; i++)
273       {
274       int y = x[i];
275       *adds++ = (y >> 24) & 255;
276       *adds++ = (y >> 16) & 255;
277       *adds++ = (y >> 8) & 255;
278       *adds++ = y & 255;
279       }
280     }
281   *alist = NULL;
282   }
283
284 return yield;
285 }
286
287
288
289 /*************************************************
290 *       Build chain of host items from list      *
291 *************************************************/
292
293 /* This function builds a chain of host items from a textual list of host
294 names. It does not do any lookups. If randomize is true, the chain is build in
295 a randomized order. There may be multiple groups of independently randomized
296 hosts; they are delimited by a host name consisting of just "+".
297
298 Arguments:
299   anchor      anchor for the chain
300   list        text list
301   randomize   TRUE for randomizing
302
303 Returns:      nothing
304 */
305
306 void
307 host_build_hostlist(host_item **anchor, const uschar *list, BOOL randomize)
308 {
309 int sep = 0;
310 int fake_mx = MX_NONE;          /* This value is actually -1 */
311 uschar *name;
312
313 if (!list) return;
314 if (randomize) fake_mx--;       /* Start at -2 for randomizing */
315
316 *anchor = NULL;
317
318 while ((name = string_nextinlist(&list, &sep, NULL, 0)))
319   {
320   host_item *h;
321
322   if (name[0] == '+' && name[1] == 0)   /* "+" delimits a randomized group */
323     {                                   /* ignore if not randomizing */
324     if (randomize) fake_mx--;
325     continue;
326     }
327
328   h = store_get(sizeof(host_item), FALSE);
329   h->name = name;
330   h->address = NULL;
331   h->port = PORT_NONE;
332   h->mx = fake_mx;
333   h->sort_key = randomize? (-fake_mx)*1000 + random_number(1000) : 0;
334   h->status = hstatus_unknown;
335   h->why = hwhy_unknown;
336   h->last_try = 0;
337
338   if (!*anchor)
339     {
340     h->next = NULL;
341     *anchor = h;
342     }
343   else
344     {
345     host_item *hh = *anchor;
346     if (h->sort_key < hh->sort_key)
347       {
348       h->next = hh;
349       *anchor = h;
350       }
351     else
352       {
353       while (hh->next && h->sort_key >= hh->next->sort_key)
354         hh = hh->next;
355       h->next = hh->next;
356       hh->next = h;
357       }
358     }
359   }
360 }
361
362
363
364
365
366 /*************************************************
367 *        Extract port from address string        *
368 *************************************************/
369
370 /* In the spool file, and in the -oMa and -oMi options, a host plus port is
371 given as an IP address followed by a dot and a port number. This function
372 decodes this.
373
374 An alternative format for the -oMa and -oMi options is [ip address]:port which
375 is what Exim 4 uses for output, because it seems to becoming commonly used,
376 whereas the dot form confuses some programs/people. So we recognize that form
377 too.
378
379 Argument:
380   address    points to the string; if there is a port, the '.' in the string
381              is overwritten with zero to terminate the address; if the string
382              is in the [xxx]:ppp format, the address is shifted left and the
383              brackets are removed
384
385 Returns:     0 if there is no port, else the port number. If there's a syntax
386              error, leave the incoming address alone, and return 0.
387 */
388
389 int
390 host_address_extract_port(uschar *address)
391 {
392 int port = 0;
393 uschar *endptr;
394
395 /* Handle the "bracketed with colon on the end" format */
396
397 if (*address == '[')
398   {
399   uschar *rb = address + 1;
400   while (*rb != 0 && *rb != ']') rb++;
401   if (*rb++ == 0) return 0;        /* Missing ]; leave invalid address */
402   if (*rb == ':')
403     {
404     port = Ustrtol(rb + 1, &endptr, 10);
405     if (*endptr != 0) return 0;    /* Invalid port; leave invalid address */
406     }
407   else if (*rb != 0) return 0;     /* Bad syntax; leave invalid address */
408   memmove(address, address + 1, rb - address - 2);
409   rb[-2] = 0;
410   }
411
412 /* Handle the "dot on the end" format */
413
414 else
415   {
416   int skip = -3;                   /* Skip 3 dots in IPv4 addresses */
417   address--;
418   while (*(++address) != 0)
419     {
420     int ch = *address;
421     if (ch == ':') skip = 0;       /* Skip 0 dots in IPv6 addresses */
422       else if (ch == '.' && skip++ >= 0) break;
423     }
424   if (*address == 0) return 0;
425   port = Ustrtol(address + 1, &endptr, 10);
426   if (*endptr != 0) return 0;      /* Invalid port; leave invalid address */
427   *address = 0;
428   }
429
430 return port;
431 }
432
433
434 /*************************************************
435 *         Get port from a host item's name       *
436 *************************************************/
437
438 /* This function is called when finding the IP address for a host that is in a
439 list of hosts explicitly configured, such as in the manualroute router, or in a
440 fallback hosts list. We see if there is a port specification at the end of the
441 host name, and if so, remove it. A minimum length of 3 is required for the
442 original name; nothing shorter is recognized as having a port.
443
444 We test for a name ending with a sequence of digits; if preceded by colon we
445 have a port if the character before the colon is ] and the name starts with [
446 or if there are no other colons in the name (i.e. it's not an IPv6 address).
447
448 Arguments:  pointer to the host item
449 Returns:    a port number or PORT_NONE
450 */
451
452 int
453 host_item_get_port(host_item *h)
454 {
455 const uschar *p;
456 int port, x;
457 int len = Ustrlen(h->name);
458
459 if (len < 3 || (p = h->name + len - 1, !isdigit(*p))) return PORT_NONE;
460
461 /* Extract potential port number */
462
463 port = *p-- - '0';
464 x = 10;
465
466 while (p > h->name + 1 && isdigit(*p))
467   {
468   port += (*p-- - '0') * x;
469   x *= 10;
470   }
471
472 /* The smallest value of p at this point is h->name + 1. */
473
474 if (*p != ':') return PORT_NONE;
475
476 if (p[-1] == ']' && h->name[0] == '[')
477   h->name = string_copyn(h->name + 1, p - h->name - 2);
478 else if (Ustrchr(h->name, ':') == p)
479   h->name = string_copyn(h->name, p - h->name);
480 else return PORT_NONE;
481
482 DEBUG(D_route|D_host_lookup) debug_printf("host=%s port=%d\n", h->name, port);
483 return port;
484 }
485
486
487
488 #ifndef STAND_ALONE    /* Omit when standalone testing */
489
490 /*************************************************
491 *     Build sender_fullhost and sender_rcvhost   *
492 *************************************************/
493
494 /* This function is called when sender_host_name and/or sender_helo_name
495 have been set. Or might have been set - for a local message read off the spool
496 they won't be. In that case, do nothing. Otherwise, set up the fullhost string
497 as follows:
498
499 (a) No sender_host_name or sender_helo_name: "[ip address]"
500 (b) Just sender_host_name: "host_name [ip address]"
501 (c) Just sender_helo_name: "(helo_name) [ip address]" unless helo is IP
502             in which case: "[ip address}"
503 (d) The two are identical: "host_name [ip address]" includes helo = IP
504 (e) The two are different: "host_name (helo_name) [ip address]"
505
506 If log_incoming_port is set, the sending host's port number is added to the IP
507 address.
508
509 This function also builds sender_rcvhost for use in Received: lines, whose
510 syntax is a bit different. This value also includes the RFC 1413 identity.
511 There wouldn't be two different variables if I had got all this right in the
512 first place.
513
514 Because this data may survive over more than one incoming SMTP message, it has
515 to be in permanent store.  However, STARTTLS has to be forgotten and redone
516 on a multi-message conn, so this will be called once per message then.  Hence
517 we use malloc, so we can free.
518
519 Arguments:  none
520 Returns:    nothing
521 */
522
523 void
524 host_build_sender_fullhost(void)
525 {
526 BOOL show_helo = TRUE;
527 uschar * address, * fullhost, * rcvhost;
528 rmark reset_point;
529 int len;
530
531 if (!sender_host_address) return;
532
533 reset_point = store_mark();
534
535 /* Set up address, with or without the port. After discussion, it seems that
536 the only format that doesn't cause trouble is [aaaa]:pppp. However, we can't
537 use this directly as the first item for Received: because it ain't an RFC 2822
538 domain. Sigh. */
539
540 address = string_sprintf("[%s]:%d", sender_host_address, sender_host_port);
541 if (!LOGGING(incoming_port) || sender_host_port <= 0)
542   *(Ustrrchr(address, ':')) = 0;
543
544 /* If there's no EHLO/HELO data, we can't show it. */
545
546 if (!sender_helo_name) show_helo = FALSE;
547
548 /* If HELO/EHLO was followed by an IP literal, it's messy because of two
549 features of IPv6. Firstly, there's the "IPv6:" prefix (Exim is liberal and
550 doesn't require this, for historical reasons). Secondly, IPv6 addresses may not
551 be given in canonical form, so we have to canonicalize them before comparing. As
552 it happens, the code works for both IPv4 and IPv6. */
553
554 else if (sender_helo_name[0] == '[' &&
555          sender_helo_name[(len=Ustrlen(sender_helo_name))-1] == ']')
556   {
557   int offset = 1;
558   uschar *helo_ip;
559
560   if (strncmpic(sender_helo_name + 1, US"IPv6:", 5) == 0) offset += 5;
561   if (strncmpic(sender_helo_name + 1, US"IPv4:", 5) == 0) offset += 5;
562
563   helo_ip = string_copyn(sender_helo_name + offset, len - offset - 1);
564
565   if (string_is_ip_address(helo_ip, NULL) != 0)
566     {
567     int x[4], y[4];
568     int sizex, sizey;
569     uschar ipx[48], ipy[48];    /* large enough for full IPv6 */
570
571     sizex = host_aton(helo_ip, x);
572     sizey = host_aton(sender_host_address, y);
573
574     (void)host_nmtoa(sizex, x, -1, ipx, ':');
575     (void)host_nmtoa(sizey, y, -1, ipy, ':');
576
577     if (strcmpic(ipx, ipy) == 0) show_helo = FALSE;
578     }
579   }
580
581 /* Host name is not verified */
582
583 if (!sender_host_name)
584   {
585   uschar *portptr = Ustrstr(address, "]:");
586   gstring * g;
587   int adlen;    /* Sun compiler doesn't like ++ in initializers */
588
589   adlen = portptr ? (++portptr - address) : Ustrlen(address);
590   fullhost = sender_helo_name
591     ? string_sprintf("(%s) %s", sender_helo_name, address)
592     : address;
593
594   g = string_catn(NULL, address, adlen);
595
596   if (sender_ident || show_helo || portptr)
597     {
598     int firstptr;
599     g = string_catn(g, US" (", 2);
600     firstptr = g->ptr;
601
602     if (portptr)
603       g = string_append(g, 2, US"port=", portptr + 1);
604
605     if (show_helo)
606       g = string_append(g, 2,
607         firstptr == g->ptr ? US"helo=" : US" helo=", sender_helo_name);
608
609     if (sender_ident)
610       g = string_append(g, 2,
611         firstptr == g->ptr ? US"ident=" : US" ident=", sender_ident);
612
613     g = string_catn(g, US")", 1);
614     }
615
616   rcvhost = string_from_gstring(g);
617   }
618
619 /* Host name is known and verified. Unless we've already found that the HELO
620 data matches the IP address, compare it with the name. */
621
622 else
623   {
624   if (show_helo && strcmpic(sender_host_name, sender_helo_name) == 0)
625     show_helo = FALSE;
626
627   if (show_helo)
628     {
629     fullhost = string_sprintf("%s (%s) %s", sender_host_name,
630       sender_helo_name, address);
631     rcvhost = sender_ident
632       ?  string_sprintf("%s\n\t(%s helo=%s ident=%s)", sender_host_name,
633         address, sender_helo_name, sender_ident)
634       : string_sprintf("%s (%s helo=%s)", sender_host_name,
635         address, sender_helo_name);
636     }
637   else
638     {
639     fullhost = string_sprintf("%s %s", sender_host_name, address);
640     rcvhost = sender_ident
641       ?  string_sprintf("%s (%s ident=%s)", sender_host_name, address,
642         sender_ident)
643       : string_sprintf("%s (%s)", sender_host_name, address);
644     }
645   }
646
647 sender_fullhost = string_copy_perm(fullhost, TRUE);
648 sender_rcvhost = string_copy_perm(rcvhost, TRUE);
649
650 store_reset(reset_point);
651
652 DEBUG(D_host_lookup) debug_printf("sender_fullhost = %s\n", sender_fullhost);
653 DEBUG(D_host_lookup) debug_printf("sender_rcvhost = %s\n", sender_rcvhost);
654 }
655
656
657
658 /*************************************************
659 *          Build host+ident message              *
660 *************************************************/
661
662 /* Used when logging rejections and various ACL and SMTP incidents. The text
663 return depends on whether sender_fullhost and sender_ident are set or not:
664
665   no ident, no host   => U=unknown
666   no ident, host set  => H=sender_fullhost
667   ident set, no host  => U=ident
668   ident set, host set => H=sender_fullhost U=ident
669
670 Use taint-unchecked routines on the assumption we'll never expand the results.
671
672 Arguments:
673   useflag   TRUE if first item to be flagged (H= or U=); if there are two
674               items, the second is always flagged
675
676 Returns:    pointer to a string in big_buffer
677 */
678
679 uschar *
680 host_and_ident(BOOL useflag)
681 {
682 if (!sender_fullhost)
683   string_format_nt(big_buffer, big_buffer_size, "%s%s", useflag ? "U=" : "",
684      sender_ident ? sender_ident : US"unknown");
685 else
686   {
687   uschar * flag = useflag ? US"H=" : US"";
688   uschar * iface = US"";
689   if (LOGGING(incoming_interface) && interface_address)
690     iface = string_sprintf(" I=[%s]:%d", interface_address, interface_port);
691   if (sender_ident)
692     string_format_nt(big_buffer, big_buffer_size, "%s%s%s U=%s",
693       flag, sender_fullhost, iface, sender_ident);
694   else
695     string_format_nt(big_buffer, big_buffer_size, "%s%s%s",
696       flag, sender_fullhost, iface);
697   }
698 return big_buffer;
699 }
700
701 #endif   /* STAND_ALONE */
702
703
704
705
706 /*************************************************
707 *         Build list of local interfaces         *
708 *************************************************/
709
710 /* This function interprets the contents of the local_interfaces or
711 extra_local_interfaces options, and creates an ip_address_item block for each
712 item on the list. There is no special interpretation of any IP addresses; in
713 particular, 0.0.0.0 and ::0 are returned without modification. If any address
714 includes a port, it is set in the block. Otherwise the port value is set to
715 zero.
716
717 Arguments:
718   list        the list
719   name        the name of the option being expanded
720
721 Returns:      a chain of ip_address_items, each containing to a textual
722               version of an IP address, and a port number (host order) or
723               zero if no port was given with the address
724 */
725
726 ip_address_item *
727 host_build_ifacelist(const uschar *list, uschar *name)
728 {
729 int sep = 0;
730 uschar *s;
731 ip_address_item * yield = NULL, * last = NULL, * next;
732
733 while ((s = string_nextinlist(&list, &sep, NULL, 0)))
734   {
735   int ipv;
736   int port = host_address_extract_port(s);            /* Leaves just the IP address */
737
738   if (!(ipv = string_is_ip_address(s, NULL)))
739     log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Malformed IP address \"%s\" in %s",
740       s, name);
741
742   /* Skip IPv6 addresses if IPv6 is disabled. */
743
744   if (disable_ipv6 && ipv == 6) continue;
745
746   /* This use of strcpy() is OK because we have checked that s is a valid IP
747   address above. The field in the ip_address_item is large enough to hold an
748   IPv6 address. */
749
750   next = store_get(sizeof(ip_address_item), FALSE);
751   next->next = NULL;
752   Ustrcpy(next->address, s);
753   next->port = port;
754   next->v6_include_v4 = FALSE;
755   next->log = NULL;
756
757   if (!yield)
758     yield = last = next;
759   else
760     {
761     last->next = next;
762     last = next;
763     }
764   }
765
766 return yield;
767 }
768
769
770
771
772
773 /*************************************************
774 *         Find addresses on local interfaces     *
775 *************************************************/
776
777 /* This function finds the addresses of local IP interfaces. These are used
778 when testing for routing to the local host. As the function may be called more
779 than once, the list is preserved in permanent store, pointed to by a static
780 variable, to save doing the work more than once per process.
781
782 The generic list of interfaces is obtained by calling host_build_ifacelist()
783 for local_interfaces and extra_local_interfaces. This list scanned to remove
784 duplicates (which may exist with different ports - not relevant here). If
785 either of the wildcard IP addresses (0.0.0.0 and ::0) are encountered, they are
786 replaced by the appropriate (IPv4 or IPv6) list of actual local interfaces,
787 obtained from os_find_running_interfaces().
788
789 Arguments:    none
790 Returns:      a chain of ip_address_items, each containing to a textual
791               version of an IP address; the port numbers are not relevant
792 */
793
794
795 /* First, a local subfunction to add an interface to a list in permanent store,
796 but only if there isn't a previous copy of that address on the list. */
797
798 static ip_address_item *
799 add_unique_interface(ip_address_item *list, ip_address_item *ipa)
800 {
801 ip_address_item *ipa2;
802 for (ipa2 = list; ipa2; ipa2 = ipa2->next)
803   if (Ustrcmp(ipa2->address, ipa->address) == 0) return list;
804 ipa2 = store_get_perm(sizeof(ip_address_item), FALSE);
805 *ipa2 = *ipa;
806 ipa2->next = list;
807 return ipa2;
808 }
809
810
811 /* This is the globally visible function */
812
813 ip_address_item *
814 host_find_interfaces(void)
815 {
816 ip_address_item *running_interfaces = NULL;
817
818 if (local_interface_data == NULL)
819   {
820   void *reset_item = store_mark();
821   ip_address_item *dlist = host_build_ifacelist(CUS local_interfaces,
822     US"local_interfaces");
823   ip_address_item *xlist = host_build_ifacelist(CUS extra_local_interfaces,
824     US"extra_local_interfaces");
825   ip_address_item *ipa;
826
827   if (!dlist) dlist = xlist;
828   else
829     {
830     for (ipa = dlist; ipa->next; ipa = ipa->next) ;
831     ipa->next = xlist;
832     }
833
834   for (ipa = dlist; ipa; ipa = ipa->next)
835     {
836     if (Ustrcmp(ipa->address, "0.0.0.0") == 0 ||
837         Ustrcmp(ipa->address, "::0") == 0)
838       {
839       BOOL ipv6 = ipa->address[0] == ':';
840       if (!running_interfaces)
841         running_interfaces = os_find_running_interfaces();
842       for (ip_address_item * ipa2 = running_interfaces; ipa2; ipa2 = ipa2->next)
843         if ((Ustrchr(ipa2->address, ':') != NULL) == ipv6)
844           local_interface_data = add_unique_interface(local_interface_data,
845                                                       ipa2);
846       }
847     else
848       {
849       local_interface_data = add_unique_interface(local_interface_data, ipa);
850       DEBUG(D_interface)
851         {
852         debug_printf("Configured local interface: address=%s", ipa->address);
853         if (ipa->port != 0) debug_printf(" port=%d", ipa->port);
854         debug_printf("\n");
855         }
856       }
857     }
858   store_reset(reset_item);
859   }
860
861 return local_interface_data;
862 }
863
864
865
866
867
868 /*************************************************
869 *        Convert network IP address to text      *
870 *************************************************/
871
872 /* Given an IPv4 or IPv6 address in binary, convert it to a text
873 string and return the result in a piece of new store. The address can
874 either be given directly, or passed over in a sockaddr structure. Note
875 that this isn't the converse of host_aton() because of byte ordering
876 differences. See host_nmtoa() below.
877
878 Arguments:
879   type       if < 0 then arg points to a sockaddr, else
880              either AF_INET or AF_INET6
881   arg        points to a sockaddr if type is < 0, or
882              points to an IPv4 address (32 bits), or
883              points to an IPv6 address (128 bits),
884              in both cases, in network byte order
885   buffer     if NULL, the result is returned in gotten store;
886              else points to a buffer to hold the answer
887   portptr    points to where to put the port number, if non NULL; only
888              used when type < 0
889
890 Returns:     pointer to character string
891 */
892
893 uschar *
894 host_ntoa(int type, const void *arg, uschar *buffer, int *portptr)
895 {
896 uschar *yield;
897
898 /* The new world. It is annoying that we have to fish out the address from
899 different places in the block, depending on what kind of address it is. It
900 is also a pain that inet_ntop() returns a const uschar *, whereas the IPv4
901 function inet_ntoa() returns just uschar *, and some picky compilers insist
902 on warning if one assigns a const uschar * to a uschar *. Hence the casts. */
903
904 #if HAVE_IPV6
905 uschar addr_buffer[46];
906 if (type < 0)
907   {
908   int family = ((struct sockaddr *)arg)->sa_family;
909   if (family == AF_INET6)
910     {
911     struct sockaddr_in6 *sk = (struct sockaddr_in6 *)arg;
912     yield = US inet_ntop(family, &(sk->sin6_addr), CS addr_buffer,
913       sizeof(addr_buffer));
914     if (portptr != NULL) *portptr = ntohs(sk->sin6_port);
915     }
916   else
917     {
918     struct sockaddr_in *sk = (struct sockaddr_in *)arg;
919     yield = US inet_ntop(family, &(sk->sin_addr), CS addr_buffer,
920       sizeof(addr_buffer));
921     if (portptr != NULL) *portptr = ntohs(sk->sin_port);
922     }
923   }
924 else
925   {
926   yield = US inet_ntop(type, arg, CS addr_buffer, sizeof(addr_buffer));
927   }
928
929 /* If the result is a mapped IPv4 address, show it in V4 format. */
930
931 if (Ustrncmp(yield, "::ffff:", 7) == 0) yield += 7;
932
933 #else  /* HAVE_IPV6 */
934
935 /* The old world */
936
937 if (type < 0)
938   {
939   yield = US inet_ntoa(((struct sockaddr_in *)arg)->sin_addr);
940   if (portptr != NULL) *portptr = ntohs(((struct sockaddr_in *)arg)->sin_port);
941   }
942 else
943   yield = US inet_ntoa(*((struct in_addr *)arg));
944 #endif
945
946 /* If there is no buffer, put the string into some new store. */
947
948 if (buffer == NULL) return string_copy(yield);
949
950 /* Callers of this function with a non-NULL buffer must ensure that it is
951 large enough to hold an IPv6 address, namely, at least 46 bytes. That's what
952 makes this use of strcpy() OK. */
953
954 Ustrcpy(buffer, yield);
955 return buffer;
956 }
957
958
959
960
961 /*************************************************
962 *         Convert address text to binary         *
963 *************************************************/
964
965 /* Given the textual form of an IP address, convert it to binary in an
966 array of ints. IPv4 addresses occupy one int; IPv6 addresses occupy 4 ints.
967 The result has the first byte in the most significant byte of the first int. In
968 other words, the result is not in network byte order, but in host byte order.
969 As a result, this is not the converse of host_ntoa(), which expects network
970 byte order. See host_nmtoa() below.
971
972 Arguments:
973   address    points to the textual address, checked for syntax
974   bin        points to an array of 4 ints
975
976 Returns:     the number of ints used
977 */
978
979 int
980 host_aton(const uschar *address, int *bin)
981 {
982 int x[4];
983 int v4offset = 0;
984
985 /* Handle IPv6 address, which may end with an IPv4 address. It may also end
986 with a "scope", introduced by a percent sign. This code is NOT enclosed in #if
987 HAVE_IPV6 in order that IPv6 addresses are recognized even if IPv6 is not
988 supported. */
989
990 if (Ustrchr(address, ':') != NULL)
991   {
992   const uschar *p = address;
993   const uschar *component[8];
994   BOOL ipv4_ends = FALSE;
995   int ci = 0;
996   int nulloffset = 0;
997   int v6count = 8;
998   int i;
999
1000   /* If the address starts with a colon, it will start with two colons.
1001   Just lose the first one, which will leave a null first component. */
1002
1003   if (*p == ':') p++;
1004
1005   /* Split the address into components separated by colons. The input address
1006   is supposed to be checked for syntax. There was a case where this was
1007   overlooked; to guard against that happening again, check here and crash if
1008   there are too many components. */
1009
1010   while (*p != 0 && *p != '%')
1011     {
1012     int len = Ustrcspn(p, ":%");
1013     if (len == 0) nulloffset = ci;
1014     if (ci > 7) log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1015       "Internal error: invalid IPv6 address \"%s\" passed to host_aton()",
1016       address);
1017     component[ci++] = p;
1018     p += len;
1019     if (*p == ':') p++;
1020     }
1021
1022   /* If the final component contains a dot, it is a trailing v4 address.
1023   As the syntax is known to be checked, just set up for a trailing
1024   v4 address and restrict the v6 part to 6 components. */
1025
1026   if (Ustrchr(component[ci-1], '.') != NULL)
1027     {
1028     address = component[--ci];
1029     ipv4_ends = TRUE;
1030     v4offset = 3;
1031     v6count = 6;
1032     }
1033
1034   /* If there are fewer than 6 or 8 components, we have to insert some
1035   more empty ones in the middle. */
1036
1037   if (ci < v6count)
1038     {
1039     int insert_count = v6count - ci;
1040     for (i = v6count-1; i > nulloffset + insert_count; i--)
1041       component[i] = component[i - insert_count];
1042     while (i > nulloffset) component[i--] = US"";
1043     }
1044
1045   /* Now turn the components into binary in pairs and bung them
1046   into the vector of ints. */
1047
1048   for (i = 0; i < v6count; i += 2)
1049     bin[i/2] = (Ustrtol(component[i], NULL, 16) << 16) +
1050       Ustrtol(component[i+1], NULL, 16);
1051
1052   /* If there was no terminating v4 component, we are done. */
1053
1054   if (!ipv4_ends) return 4;
1055   }
1056
1057 /* Handle IPv4 address */
1058
1059 (void)sscanf(CS address, "%d.%d.%d.%d", x, x+1, x+2, x+3);
1060 bin[v4offset] = ((uint)x[0] << 24) + (x[1] << 16) + (x[2] << 8) + x[3];
1061 return v4offset+1;
1062 }
1063
1064
1065 /*************************************************
1066 *           Apply mask to an IP address          *
1067 *************************************************/
1068
1069 /* Mask an address held in 1 or 4 ints, with the ms bit in the ms bit of the
1070 first int, etc.
1071
1072 Arguments:
1073   count        the number of ints
1074   binary       points to the ints to be masked
1075   mask         the count of ms bits to leave, or -1 if no masking
1076
1077 Returns:       nothing
1078 */
1079
1080 void
1081 host_mask(int count, int *binary, int mask)
1082 {
1083 if (mask < 0) mask = 99999;
1084 for (int i = 0; i < count; i++)
1085   {
1086   int wordmask;
1087   if (mask == 0) wordmask = 0;
1088   else if (mask < 32)
1089     {
1090     wordmask = (uint)(-1) << (32 - mask);
1091     mask = 0;
1092     }
1093   else
1094     {
1095     wordmask = -1;
1096     mask -= 32;
1097     }
1098   binary[i] &= wordmask;
1099   }
1100 }
1101
1102
1103
1104
1105 /*************************************************
1106 *     Convert masked IP address in ints to text  *
1107 *************************************************/
1108
1109 /* We can't use host_ntoa() because it assumes the binary values are in network
1110 byte order, and these are the result of host_aton(), which puts them in ints in
1111 host byte order. Also, we really want IPv6 addresses to be in a canonical
1112 format, so we output them with no abbreviation. In a number of cases we can't
1113 use the normal colon separator in them because it terminates keys in lsearch
1114 files, so we want to use dot instead. There's an argument that specifies what
1115 to use for IPv6 addresses.
1116
1117 Arguments:
1118   count       1 or 4 (number of ints)
1119   binary      points to the ints
1120   mask        mask value; if < 0 don't add to result
1121   buffer      big enough to hold the result
1122   sep         component separator character for IPv6 addresses
1123
1124 Returns:      the number of characters placed in buffer, not counting
1125               the final nul.
1126 */
1127
1128 int
1129 host_nmtoa(int count, int *binary, int mask, uschar *buffer, int sep)
1130 {
1131 int j;
1132 uschar *tt = buffer;
1133
1134 if (count == 1)
1135   {
1136   j = binary[0];
1137   for (int i = 24; i >= 0; i -= 8)
1138     tt += sprintf(CS tt, "%d.", (j >> i) & 255);
1139   }
1140 else
1141   for (int i = 0; i < 4; i++)
1142     {
1143     j = binary[i];
1144     tt += sprintf(CS tt, "%04x%c%04x%c", (j >> 16) & 0xffff, sep, j & 0xffff, sep);
1145     }
1146
1147 tt--;   /* lose final separator */
1148
1149 if (mask < 0)
1150   *tt = 0;
1151 else
1152   tt += sprintf(CS tt, "/%d", mask);
1153
1154 return tt - buffer;
1155 }
1156
1157
1158 /* Like host_nmtoa() but: ipv6-only, canonical output, no mask
1159
1160 Arguments:
1161   binary      points to the ints
1162   buffer      big enough to hold the result
1163
1164 Returns:      the number of characters placed in buffer, not counting
1165               the final nul.
1166 */
1167
1168 int
1169 ipv6_nmtoa(int * binary, uschar * buffer)
1170 {
1171 int i, j, k;
1172 uschar * c = buffer;
1173 uschar * d = NULL;      /* shut insufficiently "clever" compiler up */
1174
1175 for (i = 0; i < 4; i++)
1176   {                     /* expand to text */
1177   j = binary[i];
1178   c += sprintf(CS c, "%x:%x:", (j >> 16) & 0xffff, j & 0xffff);
1179   }
1180
1181 for (c = buffer, k = -1, i = 0; i < 8; i++)
1182   {                     /* find longest 0-group sequence */
1183   if (*c == '0')        /* must be "0:" */
1184     {
1185     uschar * s = c;
1186     j = i;
1187     while (c[2] == '0') i++, c += 2;
1188     if (i-j > k)
1189       {
1190       k = i-j;          /* length of sequence */
1191       d = s;            /* start of sequence */
1192       }
1193     }
1194   while (*++c != ':') ;
1195   c++;
1196   }
1197
1198 c[-1] = '\0';   /* drop trailing colon */
1199
1200 /* debug_printf("%s: D k %d <%s> <%s>\n", __FUNCTION__, k, d, d + 2*(k+1)); */
1201 if (k >= 0)
1202   {                     /* collapse */
1203   c = d + 2*(k+1);
1204   if (d == buffer) c--; /* need extra colon */
1205   *d++ = ':';   /* 1st 0 */
1206   while ((*d++ = *c++)) ;
1207   }
1208 else
1209   d = c;
1210
1211 return d - buffer;
1212 }
1213
1214
1215
1216 /*************************************************
1217 *        Check port for tls_on_connect           *
1218 *************************************************/
1219
1220 /* This function checks whether a given incoming port is configured for tls-
1221 on-connect. It is called from the daemon and from inetd handling. If the global
1222 option tls_on_connect is already set, all ports operate this way. Otherwise, we
1223 check the tls_on_connect_ports option for a list of ports.
1224
1225 Argument:  a port number
1226 Returns:   TRUE or FALSE
1227 */
1228
1229 BOOL
1230 host_is_tls_on_connect_port(int port)
1231 {
1232 int sep = 0;
1233 uschar buffer[32];
1234 const uschar *list = tls_in.on_connect_ports;
1235 uschar *s;
1236 uschar *end;
1237
1238 if (tls_in.on_connect) return TRUE;
1239
1240 while ((s = string_nextinlist(&list, &sep, buffer, sizeof(buffer))))
1241   if (Ustrtol(s, &end, 10) == port)
1242     return TRUE;
1243
1244 return FALSE;
1245 }
1246
1247
1248
1249 /*************************************************
1250 *        Check whether host is in a network      *
1251 *************************************************/
1252
1253 /* This function checks whether a given IP address matches a pattern that
1254 represents either a single host, or a network (using CIDR notation). The caller
1255 of this function must check the syntax of the arguments before calling it.
1256
1257 Arguments:
1258   host        string representation of the ip-address to check
1259   net         string representation of the network, with optional CIDR mask
1260   maskoffset  offset to the / that introduces the mask in the key
1261               zero if there is no mask
1262
1263 Returns:
1264   TRUE   the host is inside the network
1265   FALSE  the host is NOT inside the network
1266 */
1267
1268 BOOL
1269 host_is_in_net(const uschar *host, const uschar *net, int maskoffset)
1270 {
1271 int address[4];
1272 int incoming[4];
1273 int mlen;
1274 int size = host_aton(net, address);
1275 int insize;
1276
1277 /* No mask => all bits to be checked */
1278
1279 if (maskoffset == 0) mlen = 99999;    /* Big number */
1280   else mlen = Uatoi(net + maskoffset + 1);
1281
1282 /* Convert the incoming address to binary. */
1283
1284 insize = host_aton(host, incoming);
1285
1286 /* Convert IPv4 addresses given in IPv6 compatible mode, which represent
1287    connections from IPv4 hosts to IPv6 hosts, that is, addresses of the form
1288    ::ffff:<v4address>, to IPv4 format. */
1289
1290 if (insize == 4 && incoming[0] == 0 && incoming[1] == 0 &&
1291     incoming[2] == 0xffff)
1292   {
1293   insize = 1;
1294   incoming[0] = incoming[3];
1295   }
1296
1297 /* No match if the sizes don't agree. */
1298
1299 if (insize != size) return FALSE;
1300
1301 /* Else do the masked comparison. */
1302
1303 for (int i = 0; i < size; i++)
1304   {
1305   int mask;
1306   if (mlen == 0) mask = 0;
1307   else if (mlen < 32)
1308     {
1309     mask = (uint)(-1) << (32 - mlen);
1310     mlen = 0;
1311     }
1312   else
1313     {
1314     mask = -1;
1315     mlen -= 32;
1316     }
1317   if ((incoming[i] & mask) != (address[i] & mask)) return FALSE;
1318   }
1319
1320 return TRUE;
1321 }
1322
1323
1324
1325 /*************************************************
1326 *       Scan host list for local hosts           *
1327 *************************************************/
1328
1329 /* Scan through a chain of addresses and check whether any of them is the
1330 address of an interface on the local machine. If so, remove that address and
1331 any previous ones with the same MX value, and all subsequent ones (which will
1332 have greater or equal MX values) from the chain. Note: marking them as unusable
1333 is NOT the right thing to do because it causes the hosts not to be used for
1334 other domains, for which they may well be correct.
1335
1336 The hosts may be part of a longer chain; we only process those between the
1337 initial pointer and the "last" pointer.
1338
1339 There is also a list of "pseudo-local" host names which are checked against the
1340 host names. Any match causes that host item to be treated the same as one which
1341 matches a local IP address.
1342
1343 If the very first host is a local host, then all MX records had a precedence
1344 greater than or equal to that of the local host. Either there's a problem in
1345 the DNS, or an apparently remote name turned out to be an abbreviation for the
1346 local host. Give a specific return code, and let the caller decide what to do.
1347 Otherwise, give a success code if at least one host address has been found.
1348
1349 Arguments:
1350   host        pointer to the first host in the chain
1351   lastptr     pointer to pointer to the last host in the chain (may be updated)
1352   removed     if not NULL, set TRUE if some local addresses were removed
1353                 from the list
1354
1355 Returns:
1356   HOST_FOUND       if there is at least one host with an IP address on the chain
1357                      and an MX value less than any MX value associated with the
1358                      local host
1359   HOST_FOUND_LOCAL if a local host is among the lowest-numbered MX hosts; when
1360                      the host addresses were obtained from A records or
1361                      gethostbyname(), the MX values are set to -1.
1362   HOST_FIND_FAILED if no valid hosts with set IP addresses were found
1363 */
1364
1365 int
1366 host_scan_for_local_hosts(host_item *host, host_item **lastptr, BOOL *removed)
1367 {
1368 int yield = HOST_FIND_FAILED;
1369 host_item *last = *lastptr;
1370 host_item *prev = NULL;
1371 host_item *h;
1372
1373 if (removed != NULL) *removed = FALSE;
1374
1375 if (local_interface_data == NULL) local_interface_data = host_find_interfaces();
1376
1377 for (h = host; h != last->next; h = h->next)
1378   {
1379   #ifndef STAND_ALONE
1380   if (hosts_treat_as_local != NULL)
1381     {
1382     int rc;
1383     const uschar *save = deliver_domain;
1384     deliver_domain = h->name;   /* set $domain */
1385     rc = match_isinlist(string_copylc(h->name), CUSS &hosts_treat_as_local, 0,
1386       &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL);
1387     deliver_domain = save;
1388     if (rc == OK) goto FOUND_LOCAL;
1389     }
1390   #endif
1391
1392   /* It seems that on many operating systems, 0.0.0.0 is treated as a synonym
1393   for 127.0.0.1 and refers to the local host. We therefore force it always to
1394   be treated as local. */
1395
1396   if (h->address != NULL)
1397     {
1398     if (Ustrcmp(h->address, "0.0.0.0") == 0) goto FOUND_LOCAL;
1399     for (ip_address_item * ip = local_interface_data; ip; ip = ip->next)
1400       if (Ustrcmp(h->address, ip->address) == 0) goto FOUND_LOCAL;
1401     yield = HOST_FOUND;  /* At least one remote address has been found */
1402     }
1403
1404   /* Update prev to point to the last host item before any that have
1405   the same MX value as the one we have just considered. */
1406
1407   if (h->next == NULL || h->next->mx != h->mx) prev = h;
1408   }
1409
1410 return yield;  /* No local hosts found: return HOST_FOUND or HOST_FIND_FAILED */
1411
1412 /* A host whose IP address matches a local IP address, or whose name matches
1413 something in hosts_treat_as_local has been found. */
1414
1415 FOUND_LOCAL:
1416
1417 if (prev == NULL)
1418   {
1419   HDEBUG(D_host_lookup) debug_printf((h->mx >= 0)?
1420     "local host has lowest MX\n" :
1421     "local host found for non-MX address\n");
1422   return HOST_FOUND_LOCAL;
1423   }
1424
1425 HDEBUG(D_host_lookup)
1426   {
1427   debug_printf("local host in host list - removed hosts:\n");
1428   for (h = prev->next; h != last->next; h = h->next)
1429     debug_printf("  %s %s %d\n", h->name, h->address, h->mx);
1430   }
1431
1432 if (removed != NULL) *removed = TRUE;
1433 prev->next = last->next;
1434 *lastptr = prev;
1435 return yield;
1436 }
1437
1438
1439
1440
1441 /*************************************************
1442 *        Remove duplicate IPs in host list       *
1443 *************************************************/
1444
1445 /* You would think that administrators could set up their DNS records so that
1446 one ended up with a list of unique IP addresses after looking up A or MX
1447 records, but apparently duplication is common. So we scan such lists and
1448 remove the later duplicates. Note that we may get lists in which some host
1449 addresses are not set.
1450
1451 Arguments:
1452   host        pointer to the first host in the chain
1453   lastptr     pointer to pointer to the last host in the chain (may be updated)
1454
1455 Returns:      nothing
1456 */
1457
1458 static void
1459 host_remove_duplicates(host_item *host, host_item **lastptr)
1460 {
1461 while (host != *lastptr)
1462   {
1463   if (host->address != NULL)
1464     {
1465     host_item *h = host;
1466     while (h != *lastptr)
1467       {
1468       if (h->next->address != NULL &&
1469           Ustrcmp(h->next->address, host->address) == 0)
1470         {
1471         DEBUG(D_host_lookup) debug_printf("duplicate IP address %s (MX=%d) "
1472           "removed\n", host->address, h->next->mx);
1473         if (h->next == *lastptr) *lastptr = h;
1474         h->next = h->next->next;
1475         }
1476       else h = h->next;
1477       }
1478     }
1479   /* If the last item was removed, host may have become == *lastptr */
1480   if (host != *lastptr) host = host->next;
1481   }
1482 }
1483
1484
1485
1486
1487 /*************************************************
1488 *    Find sender host name by gethostbyaddr()    *
1489 *************************************************/
1490
1491 /* This used to be the only way it was done, but it turns out that not all
1492 systems give aliases for calls to gethostbyaddr() - or one of the modern
1493 equivalents like getipnodebyaddr(). Fortunately, multiple PTR records are rare,
1494 but they can still exist. This function is now used only when a DNS lookup of
1495 the IP address fails, in order to give access to /etc/hosts.
1496
1497 Arguments:   none
1498 Returns:     OK, DEFER, FAIL
1499 */
1500
1501 static int
1502 host_name_lookup_byaddr(void)
1503 {
1504 int len;
1505 uschar *s, *t;
1506 struct hostent *hosts;
1507 struct in_addr addr;
1508 unsigned long time_msec = 0;    /* init to quieten dumb static analysis */
1509
1510 if (slow_lookup_log) time_msec = get_time_in_ms();
1511
1512 /* Lookup on IPv6 system */
1513
1514 #if HAVE_IPV6
1515 if (Ustrchr(sender_host_address, ':') != NULL)
1516   {
1517   struct in6_addr addr6;
1518   if (inet_pton(AF_INET6, CS sender_host_address, &addr6) != 1)
1519     log_write(0, LOG_MAIN|LOG_PANIC_DIE, "unable to parse \"%s\" as an "
1520       "IPv6 address", sender_host_address);
1521   #if HAVE_GETIPNODEBYADDR
1522   hosts = getipnodebyaddr(CS &addr6, sizeof(addr6), AF_INET6, &h_errno);
1523   #else
1524   hosts = gethostbyaddr(CS &addr6, sizeof(addr6), AF_INET6);
1525   #endif
1526   }
1527 else
1528   {
1529   if (inet_pton(AF_INET, CS sender_host_address, &addr) != 1)
1530     log_write(0, LOG_MAIN|LOG_PANIC_DIE, "unable to parse \"%s\" as an "
1531       "IPv4 address", sender_host_address);
1532   #if HAVE_GETIPNODEBYADDR
1533   hosts = getipnodebyaddr(CS &addr, sizeof(addr), AF_INET, &h_errno);
1534   #else
1535   hosts = gethostbyaddr(CS &addr, sizeof(addr), AF_INET);
1536   #endif
1537   }
1538
1539 /* Do lookup on IPv4 system */
1540
1541 #else
1542 addr.s_addr = (S_ADDR_TYPE)inet_addr(CS sender_host_address);
1543 hosts = gethostbyaddr(CS(&addr), sizeof(addr), AF_INET);
1544 #endif
1545
1546 if (  slow_lookup_log
1547    && (time_msec = get_time_in_ms() - time_msec) > slow_lookup_log
1548    )
1549   log_long_lookup(US"name", sender_host_address, time_msec);
1550
1551 /* Failed to look up the host. */
1552
1553 if (!hosts)
1554   {
1555   HDEBUG(D_host_lookup) debug_printf("IP address lookup failed: h_errno=%d\n",
1556     h_errno);
1557   return (h_errno == TRY_AGAIN || h_errno == NO_RECOVERY) ? DEFER : FAIL;
1558   }
1559
1560 /* It seems there are some records in the DNS that yield an empty name. We
1561 treat this as non-existent. In some operating systems, this is returned as an
1562 empty string; in others as a single dot. */
1563
1564 if (!hosts->h_name || !hosts->h_name[0] || hosts->h_name[0] == '.')
1565   {
1566   HDEBUG(D_host_lookup) debug_printf("IP address lookup yielded an empty name: "
1567     "treated as non-existent host name\n");
1568   return FAIL;
1569   }
1570
1571 /* Copy and lowercase the name, which is in static storage in many systems.
1572 Put it in permanent memory. */
1573
1574   {
1575   int old_pool = store_pool;
1576   store_pool = POOL_TAINT_PERM;         /* names are tainted */
1577
1578   sender_host_name = string_copylc(US hosts->h_name);
1579
1580   /* If the host has aliases, build a copy of the alias list */
1581
1582   if (hosts->h_aliases)
1583     {
1584     int count = 1;
1585     uschar **ptr;
1586
1587     for (uschar ** aliases = USS hosts->h_aliases; *aliases; aliases++) count++;
1588     store_pool = POOL_PERM;
1589     ptr = sender_host_aliases = store_get(count * sizeof(uschar *), FALSE);
1590     store_pool = POOL_TAINT_PERM;
1591
1592     for (uschar ** aliases = USS hosts->h_aliases; *aliases; aliases++)
1593       *ptr++ = string_copylc(*aliases);
1594     *ptr = NULL;
1595     }
1596   store_pool = old_pool;
1597   }
1598
1599 return OK;
1600 }
1601
1602
1603
1604 /*************************************************
1605 *        Find host name for incoming call        *
1606 *************************************************/
1607
1608 /* Put the name in permanent store, pointed to by sender_host_name. We also set
1609 up a list of alias names, pointed to by sender_host_alias. The list is
1610 NULL-terminated. The incoming address is in sender_host_address, either in
1611 dotted-quad form for IPv4 or in colon-separated form for IPv6.
1612
1613 This function does a thorough check that the names it finds point back to the
1614 incoming IP address. Any that do not are discarded. Note that this is relied on
1615 by the ACL reverse_host_lookup check.
1616
1617 On some systems, get{host,ipnode}byaddr() appears to do this internally, but
1618 this it not universally true. Also, for release 4.30, this function was changed
1619 to do a direct DNS lookup first, by default[1], because it turns out that that
1620 is the only guaranteed way to find all the aliases on some systems. My
1621 experiments indicate that Solaris gethostbyaddr() gives the aliases for but
1622 Linux does not.
1623
1624 [1] The actual order is controlled by the host_lookup_order option.
1625
1626 Arguments:    none
1627 Returns:      OK on success, the answer being placed in the global variable
1628                 sender_host_name, with any aliases in a list hung off
1629                 sender_host_aliases
1630               FAIL if no host name can be found
1631               DEFER if a temporary error was encountered
1632
1633 The variable host_lookup_msg is set to an empty string on success, or to a
1634 reason for the failure otherwise, in a form suitable for tagging onto an error
1635 message, and also host_lookup_failed is set TRUE if the lookup failed. If there
1636 was a defer, host_lookup_deferred is set TRUE.
1637
1638 Any dynamically constructed string for host_lookup_msg must be in permanent
1639 store, because it might be used for several incoming messages on the same SMTP
1640 connection. */
1641
1642 int
1643 host_name_lookup(void)
1644 {
1645 int old_pool, rc;
1646 int sep = 0;
1647 uschar *save_hostname;
1648 uschar **aliases;
1649 uschar buffer[256];
1650 uschar *ordername;
1651 const uschar *list = host_lookup_order;
1652 dns_answer dnsa;
1653 dns_scan dnss;
1654
1655 sender_host_dnssec = host_lookup_deferred = host_lookup_failed = FALSE;
1656
1657 HDEBUG(D_host_lookup)
1658   debug_printf("looking up host name for %s\n", sender_host_address);
1659
1660 /* For testing the case when a lookup does not complete, we have a special
1661 reserved IP address. */
1662
1663 if (f.running_in_test_harness &&
1664     Ustrcmp(sender_host_address, "99.99.99.99") == 0)
1665   {
1666   HDEBUG(D_host_lookup)
1667     debug_printf("Test harness: host name lookup returns DEFER\n");
1668   host_lookup_deferred = TRUE;
1669   return DEFER;
1670   }
1671
1672 /* Do lookups directly in the DNS or via gethostbyaddr() (or equivalent), in
1673 the order specified by the host_lookup_order option. */
1674
1675 while ((ordername = string_nextinlist(&list, &sep, buffer, sizeof(buffer))))
1676   {
1677   if (strcmpic(ordername, US"bydns") == 0)
1678     {
1679     dns_init(FALSE, FALSE, FALSE);    /* dnssec ctrl by dns_dnssec_ok glbl */
1680     dns_build_reverse(sender_host_address, buffer);
1681     rc = dns_lookup_timerwrap(&dnsa, buffer, T_PTR, NULL);
1682
1683     /* The first record we come across is used for the name; others are
1684     considered to be aliases. We have to scan twice, in order to find out the
1685     number of aliases. However, if all the names are empty, we will behave as
1686     if failure. (PTR records that yield empty names have been encountered in
1687     the DNS.) */
1688
1689     if (rc == DNS_SUCCEED)
1690       {
1691       uschar **aptr = NULL;
1692       int ssize = 264;
1693       int count = 0;
1694       int old_pool = store_pool;
1695
1696       sender_host_dnssec = dns_is_secure(&dnsa);
1697       DEBUG(D_dns)
1698         debug_printf("Reverse DNS security status: %s\n",
1699             sender_host_dnssec ? "DNSSEC verified (AD)" : "unverified");
1700
1701       store_pool = POOL_PERM;        /* Save names in permanent storage */
1702
1703       for (dns_record * rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
1704            rr;
1705            rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT)) if (rr->type == T_PTR)
1706         count++;
1707
1708       /* Get store for the list of aliases. For compatibility with
1709       gethostbyaddr, we make an empty list if there are none. */
1710
1711       aptr = sender_host_aliases = store_get(count * sizeof(uschar *), FALSE);
1712
1713       /* Re-scan and extract the names */
1714
1715       for (dns_record * rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
1716            rr;
1717            rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT)) if (rr->type == T_PTR)
1718         {
1719         uschar * s = store_get(ssize, TRUE);    /* names are tainted */
1720
1721         /* If an overlong response was received, the data will have been
1722         truncated and dn_expand may fail. */
1723
1724         if (dn_expand(dnsa.answer, dnsa.answer + dnsa.answerlen,
1725              US (rr->data), (DN_EXPAND_ARG4_TYPE)(s), ssize) < 0)
1726           {
1727           log_write(0, LOG_MAIN, "host name alias list truncated for %s",
1728             sender_host_address);
1729           break;
1730           }
1731
1732         store_release_above(s + Ustrlen(s) + 1);
1733         if (!s[0])
1734           {
1735           HDEBUG(D_host_lookup) debug_printf("IP address lookup yielded an "
1736             "empty name: treated as non-existent host name\n");
1737           continue;
1738           }
1739         if (!sender_host_name) sender_host_name = s;
1740         else *aptr++ = s;
1741         while (*s) { *s = tolower(*s); s++; }
1742         }
1743
1744       *aptr = NULL;            /* End of alias list */
1745       store_pool = old_pool;   /* Reset store pool */
1746
1747       /* If we've found a name, break out of the "order" loop */
1748
1749       if (sender_host_name) break;
1750       }
1751
1752     /* If the DNS lookup deferred, we must also defer. */
1753
1754     if (rc == DNS_AGAIN)
1755       {
1756       HDEBUG(D_host_lookup)
1757         debug_printf("IP address PTR lookup gave temporary error\n");
1758       host_lookup_deferred = TRUE;
1759       return DEFER;
1760       }
1761     }
1762
1763   /* Do a lookup using gethostbyaddr() - or equivalent */
1764
1765   else if (strcmpic(ordername, US"byaddr") == 0)
1766     {
1767     HDEBUG(D_host_lookup)
1768       debug_printf("IP address lookup using gethostbyaddr()\n");
1769     rc = host_name_lookup_byaddr();
1770     if (rc == DEFER)
1771       {
1772       host_lookup_deferred = TRUE;
1773       return rc;                       /* Can't carry on */
1774       }
1775     if (rc == OK) break;               /* Found a name */
1776     }
1777   }      /* Loop for bydns/byaddr scanning */
1778
1779 /* If we have failed to find a name, return FAIL and log when required.
1780 NB host_lookup_msg must be in permanent store.  */
1781
1782 if (!sender_host_name)
1783   {
1784   if (host_checking || !f.log_testing_mode)
1785     log_write(L_host_lookup_failed, LOG_MAIN, "no host name found for IP "
1786       "address %s", sender_host_address);
1787   host_lookup_msg = US" (failed to find host name from IP address)";
1788   host_lookup_failed = TRUE;
1789   return FAIL;
1790   }
1791
1792 HDEBUG(D_host_lookup)
1793   {
1794   uschar **aliases = sender_host_aliases;
1795   debug_printf("IP address lookup yielded \"%s\"\n", sender_host_name);
1796   while (*aliases != NULL) debug_printf("  alias \"%s\"\n", *aliases++);
1797   }
1798
1799 /* We need to verify that a forward lookup on the name we found does indeed
1800 correspond to the address. This is for security: in principle a malefactor who
1801 happened to own a reverse zone could set it to point to any names at all.
1802
1803 This code was present in versions of Exim before 3.20. At that point I took it
1804 out because I thought that gethostbyaddr() did the check anyway. It turns out
1805 that this isn't always the case, so it's coming back in at 4.01. This version
1806 is actually better, because it also checks aliases.
1807
1808 The code was made more robust at release 4.21. Prior to that, it accepted all
1809 the names if any of them had the correct IP address. Now the code checks all
1810 the names, and accepts only those that have the correct IP address. */
1811
1812 save_hostname = sender_host_name;   /* Save for error messages */
1813 aliases = sender_host_aliases;
1814 for (uschar * hname = sender_host_name; hname; hname = *aliases++)
1815   {
1816   int rc;
1817   BOOL ok = FALSE;
1818   host_item h = { .next = NULL, .name = hname, .mx = MX_NONE, .address = NULL };
1819   dnssec_domains d =
1820     { .request = sender_host_dnssec ? US"*" : NULL, .require = NULL };
1821
1822   if (  (rc = host_find_bydns(&h, NULL, HOST_FIND_BY_A | HOST_FIND_BY_AAAA,
1823           NULL, NULL, NULL, &d, NULL, NULL)) == HOST_FOUND
1824      || rc == HOST_FOUND_LOCAL
1825      )
1826     {
1827     HDEBUG(D_host_lookup) debug_printf("checking addresses for %s\n", hname);
1828
1829     /* If the forward lookup was not secure we cancel the is-secure variable */
1830
1831     DEBUG(D_dns) debug_printf("Forward DNS security status: %s\n",
1832           h.dnssec == DS_YES ? "DNSSEC verified (AD)" : "unverified");
1833     if (h.dnssec != DS_YES) sender_host_dnssec = FALSE;
1834
1835     for (host_item * hh = &h; hh; hh = hh->next)
1836       if (host_is_in_net(hh->address, sender_host_address, 0))
1837         {
1838         HDEBUG(D_host_lookup) debug_printf("  %s OK\n", hh->address);
1839         ok = TRUE;
1840         break;
1841         }
1842       else
1843         HDEBUG(D_host_lookup) debug_printf("  %s\n", hh->address);
1844
1845     if (!ok) HDEBUG(D_host_lookup)
1846       debug_printf("no IP address for %s matched %s\n", hname,
1847         sender_host_address);
1848     }
1849   else if (rc == HOST_FIND_AGAIN)
1850     {
1851     HDEBUG(D_host_lookup) debug_printf("temporary error for host name lookup\n");
1852     host_lookup_deferred = TRUE;
1853     sender_host_name = NULL;
1854     return DEFER;
1855     }
1856   else
1857     HDEBUG(D_host_lookup) debug_printf("no IP addresses found for %s\n", hname);
1858
1859   /* If this name is no good, and it's the sender name, set it null pro tem;
1860   if it's an alias, just remove it from the list. */
1861
1862   if (!ok)
1863     {
1864     if (hname == sender_host_name) sender_host_name = NULL; else
1865       {
1866       uschar **a;                              /* Don't amalgamate - some */
1867       a = --aliases;                           /* compilers grumble */
1868       while (*a != NULL) { *a = a[1]; a++; }
1869       }
1870     }
1871   }
1872
1873 /* If sender_host_name == NULL, it means we didn't like the name. Replace
1874 it with the first alias, if there is one. */
1875
1876 if (sender_host_name == NULL && *sender_host_aliases != NULL)
1877   sender_host_name = *sender_host_aliases++;
1878
1879 /* If we now have a main name, all is well. */
1880
1881 if (sender_host_name != NULL) return OK;
1882
1883 /* We have failed to find an address that matches. */
1884
1885 HDEBUG(D_host_lookup)
1886   debug_printf("%s does not match any IP address for %s\n",
1887     sender_host_address, save_hostname);
1888
1889 /* This message must be in permanent store */
1890
1891 old_pool = store_pool;
1892 store_pool = POOL_PERM;
1893 host_lookup_msg = string_sprintf(" (%s does not match any IP address for %s)",
1894   sender_host_address, save_hostname);
1895 store_pool = old_pool;
1896 host_lookup_failed = TRUE;
1897 return FAIL;
1898 }
1899
1900
1901
1902
1903 /*************************************************
1904 *    Find IP address(es) for host by name        *
1905 *************************************************/
1906
1907 /* The input is a host_item structure with the name filled in and the address
1908 field set to NULL. We use gethostbyname() or getipnodebyname() or
1909 gethostbyname2(), as appropriate. Of course, these functions may use the DNS,
1910 but they do not do MX processing. It appears, however, that in some systems the
1911 current setting of resolver options is used when one of these functions calls
1912 the resolver. For this reason, we call dns_init() at the start, with arguments
1913 influenced by bits in "flags", just as we do for host_find_bydns().
1914
1915 The second argument provides a host list (usually an IP list) of hosts to
1916 ignore. This makes it possible to ignore IPv6 link-local addresses or loopback
1917 addresses in unreasonable places.
1918
1919 The lookup may result in a change of name. For compatibility with the dns
1920 lookup, return this via fully_qualified_name as well as updating the host item.
1921 The lookup may also yield more than one IP address, in which case chain on
1922 subsequent host_item structures.
1923
1924 Arguments:
1925   host                   a host item with the name and MX filled in;
1926                            the address is to be filled in;
1927                            multiple IP addresses cause other host items to be
1928                              chained on.
1929   ignore_target_hosts    a list of hosts to ignore
1930   flags                  HOST_FIND_QUALIFY_SINGLE   ) passed to
1931                          HOST_FIND_SEARCH_PARENTS   )   dns_init()
1932   fully_qualified_name   if not NULL, set to point to host name for
1933                          compatibility with host_find_bydns
1934   local_host_check       TRUE if a check for the local host is wanted
1935
1936 Returns:                 HOST_FIND_FAILED  Failed to find the host or domain
1937                          HOST_FIND_AGAIN   Try again later
1938                          HOST_FOUND        Host found - data filled in
1939                          HOST_FOUND_LOCAL  Host found and is the local host
1940 */
1941
1942 int
1943 host_find_byname(host_item *host, const uschar *ignore_target_hosts, int flags,
1944   const uschar **fully_qualified_name, BOOL local_host_check)
1945 {
1946 int yield, times;
1947 host_item *last = NULL;
1948 BOOL temp_error = FALSE;
1949 #if HAVE_IPV6
1950 int af;
1951 #endif
1952
1953 /* Make sure DNS options are set as required. This appears to be necessary in
1954 some circumstances when the get..byname() function actually calls the DNS. */
1955
1956 dns_init((flags & HOST_FIND_QUALIFY_SINGLE) != 0,
1957          (flags & HOST_FIND_SEARCH_PARENTS) != 0,
1958          FALSE);                /* Cannot retrieve dnssec status so do not request */
1959
1960 /* In an IPv6 world, unless IPv6 has been disabled, we need to scan for both
1961 kinds of address, so go round the loop twice. Note that we have ensured that
1962 AF_INET6 is defined even in an IPv4 world, which makes for slightly tidier
1963 code. However, if dns_ipv4_lookup matches the domain, we also just do IPv4
1964 lookups here (except when testing standalone). */
1965
1966 #if HAVE_IPV6
1967   #ifdef STAND_ALONE
1968   if (disable_ipv6)
1969   #else
1970   if (disable_ipv6 ||
1971     (dns_ipv4_lookup != NULL &&
1972         match_isinlist(host->name, CUSS &dns_ipv4_lookup, 0, NULL, NULL,
1973           MCL_DOMAIN, TRUE, NULL) == OK))
1974   #endif
1975
1976     { af = AF_INET; times = 1; }
1977   else
1978     { af = AF_INET6; times = 2; }
1979
1980 /* No IPv6 support */
1981
1982 #else   /* HAVE_IPV6 */
1983   times = 1;
1984 #endif  /* HAVE_IPV6 */
1985
1986 /* Initialize the flag that gets set for DNS syntax check errors, so that the
1987 interface to this function can be similar to host_find_bydns. */
1988
1989 f.host_find_failed_syntax = FALSE;
1990
1991 /* Loop to look up both kinds of address in an IPv6 world */
1992
1993 for (int i = 1; i <= times;
1994      #if HAVE_IPV6
1995        af = AF_INET,     /* If 2 passes, IPv4 on the second */
1996      #endif
1997      i++)
1998   {
1999   BOOL ipv4_addr;
2000   int error_num = 0;
2001   struct hostent *hostdata;
2002   unsigned long time_msec = 0;  /* compiler quietening */
2003
2004   #ifdef STAND_ALONE
2005   printf("Looking up: %s\n", host->name);
2006   #endif
2007
2008   if (slow_lookup_log) time_msec = get_time_in_ms();
2009
2010   #if HAVE_IPV6
2011   if (f.running_in_test_harness)
2012     hostdata = host_fake_gethostbyname(host->name, af, &error_num);
2013   else
2014     {
2015     #if HAVE_GETIPNODEBYNAME
2016     hostdata = getipnodebyname(CS host->name, af, 0, &error_num);
2017     #else
2018     hostdata = gethostbyname2(CS host->name, af);
2019     error_num = h_errno;
2020     #endif
2021     }
2022
2023   #else    /* not HAVE_IPV6 */
2024   if (f.running_in_test_harness)
2025     hostdata = host_fake_gethostbyname(host->name, AF_INET, &error_num);
2026   else
2027     {
2028     hostdata = gethostbyname(CS host->name);
2029     error_num = h_errno;
2030     }
2031   #endif   /* HAVE_IPV6 */
2032
2033   if (   slow_lookup_log
2034       && (time_msec = get_time_in_ms() - time_msec) > slow_lookup_log)
2035     log_long_lookup(US"name", host->name, time_msec);
2036
2037   if (hostdata == NULL)
2038     {
2039     uschar *error;
2040     switch (error_num)
2041       {
2042       case HOST_NOT_FOUND: error = US"HOST_NOT_FOUND"; break;
2043       case TRY_AGAIN:      error = US"TRY_AGAIN"; break;
2044       case NO_RECOVERY:    error = US"NO_RECOVERY"; break;
2045       case NO_DATA:        error = US"NO_DATA"; break;
2046       #if NO_DATA != NO_ADDRESS
2047       case NO_ADDRESS:     error = US"NO_ADDRESS"; break;
2048       #endif
2049       default: error = US"?"; break;
2050       }
2051
2052     DEBUG(D_host_lookup) debug_printf("%s returned %d (%s)\n",
2053       #if HAVE_IPV6
2054         #if HAVE_GETIPNODEBYNAME
2055         (af == AF_INET6)? "getipnodebyname(af=inet6)" : "getipnodebyname(af=inet)",
2056         #else
2057         (af == AF_INET6)? "gethostbyname2(af=inet6)" : "gethostbyname2(af=inet)",
2058         #endif
2059       #else
2060       "gethostbyname",
2061       #endif
2062       error_num, error);
2063
2064     if (error_num == TRY_AGAIN || error_num == NO_RECOVERY) temp_error = TRUE;
2065     continue;
2066     }
2067   if ((hostdata->h_addr_list)[0] == NULL) continue;
2068
2069   /* Replace the name with the fully qualified one if necessary, and fill in
2070   the fully_qualified_name pointer. */
2071
2072   if (hostdata->h_name[0] != 0 &&
2073       Ustrcmp(host->name, hostdata->h_name) != 0)
2074     host->name = string_copy_dnsdomain(US hostdata->h_name);
2075   if (fully_qualified_name != NULL) *fully_qualified_name = host->name;
2076
2077   /* Get the list of addresses. IPv4 and IPv6 addresses can be distinguished
2078   by their different lengths. Scan the list, ignoring any that are to be
2079   ignored, and build a chain from the rest. */
2080
2081   ipv4_addr = hostdata->h_length == sizeof(struct in_addr);
2082
2083   for (uschar ** addrlist = USS hostdata->h_addr_list; *addrlist; addrlist++)
2084     {
2085     uschar *text_address =
2086       host_ntoa(ipv4_addr? AF_INET:AF_INET6, *addrlist, NULL, NULL);
2087
2088     #ifndef STAND_ALONE
2089     if (ignore_target_hosts != NULL &&
2090         verify_check_this_host(&ignore_target_hosts, NULL, host->name,
2091           text_address, NULL) == OK)
2092       {
2093       DEBUG(D_host_lookup)
2094         debug_printf("ignored host %s [%s]\n", host->name, text_address);
2095       continue;
2096       }
2097     #endif
2098
2099     /* If this is the first address, last == NULL and we put the data in the
2100     original block. */
2101
2102     if (last == NULL)
2103       {
2104       host->address = text_address;
2105       host->port = PORT_NONE;
2106       host->status = hstatus_unknown;
2107       host->why = hwhy_unknown;
2108       host->dnssec = DS_UNK;
2109       last = host;
2110       }
2111
2112     /* Else add further host item blocks for any other addresses, keeping
2113     the order. */
2114
2115     else
2116       {
2117       host_item *next = store_get(sizeof(host_item), FALSE);
2118       next->name = host->name;
2119       next->mx = host->mx;
2120       next->address = text_address;
2121       next->port = PORT_NONE;
2122       next->status = hstatus_unknown;
2123       next->why = hwhy_unknown;
2124       next->dnssec = DS_UNK;
2125       next->last_try = 0;
2126       next->next = last->next;
2127       last->next = next;
2128       last = next;
2129       }
2130     }
2131   }
2132
2133 /* If no hosts were found, the address field in the original host block will be
2134 NULL. If temp_error is set, at least one of the lookups gave a temporary error,
2135 so we pass that back. */
2136
2137 if (host->address == NULL)
2138   {
2139   uschar *msg =
2140     #ifndef STAND_ALONE
2141     (message_id[0] == 0 && smtp_in != NULL)?
2142       string_sprintf("no IP address found for host %s (during %s)", host->name,
2143           smtp_get_connection_info()) :
2144     #endif
2145     string_sprintf("no IP address found for host %s", host->name);
2146
2147   HDEBUG(D_host_lookup) debug_printf("%s\n", msg);
2148   if (temp_error) goto RETURN_AGAIN;
2149   if (host_checking || !f.log_testing_mode)
2150     log_write(L_host_lookup_failed, LOG_MAIN, "%s", msg);
2151   return HOST_FIND_FAILED;
2152   }
2153
2154 /* Remove any duplicate IP addresses, then check to see if this is the local
2155 host if required. */
2156
2157 host_remove_duplicates(host, &last);
2158 yield = local_host_check?
2159   host_scan_for_local_hosts(host, &last, NULL) : HOST_FOUND;
2160
2161 HDEBUG(D_host_lookup)
2162   {
2163   if (fully_qualified_name)
2164     debug_printf("fully qualified name = %s\n", *fully_qualified_name);
2165   debug_printf("%s looked up these IP addresses:\n",
2166     #if HAVE_IPV6
2167       #if HAVE_GETIPNODEBYNAME
2168       "getipnodebyname"
2169       #else
2170       "gethostbyname2"
2171       #endif
2172     #else
2173     "gethostbyname"
2174     #endif
2175     );
2176   for (const host_item * h = host; h != last->next; h = h->next)
2177     debug_printf("  name=%s address=%s\n", h->name,
2178       h->address ? h->address : US"<null>");
2179   }
2180
2181 /* Return the found status. */
2182
2183 return yield;
2184
2185 /* Handle the case when there is a temporary error. If the name matches
2186 dns_again_means_nonexist, return permanent rather than temporary failure. */
2187
2188 RETURN_AGAIN:
2189   {
2190   #ifndef STAND_ALONE
2191   int rc;
2192   const uschar *save = deliver_domain;
2193   deliver_domain = host->name;  /* set $domain */
2194   rc = match_isinlist(host->name, CUSS &dns_again_means_nonexist, 0, NULL, NULL,
2195     MCL_DOMAIN, TRUE, NULL);
2196   deliver_domain = save;
2197   if (rc == OK)
2198     {
2199     DEBUG(D_host_lookup) debug_printf("%s is in dns_again_means_nonexist: "
2200       "returning HOST_FIND_FAILED\n", host->name);
2201     return HOST_FIND_FAILED;
2202     }
2203   #endif
2204   return HOST_FIND_AGAIN;
2205   }
2206 }
2207
2208
2209
2210 /*************************************************
2211 *        Fill in a host address from the DNS     *
2212 *************************************************/
2213
2214 /* Given a host item, with its name, port and mx fields set, and its address
2215 field set to NULL, fill in its IP address from the DNS. If it is multi-homed,
2216 create additional host items for the additional addresses, copying all the
2217 other fields, and randomizing the order.
2218
2219 On IPv6 systems, AAAA records are sought first, then A records.
2220
2221 The host name may be changed if the DNS returns a different name - e.g. fully
2222 qualified or changed via CNAME. If fully_qualified_name is not NULL, dns_lookup
2223 ensures that it points to the fully qualified name. However, this is the fully
2224 qualified version of the original name; if a CNAME is involved, the actual
2225 canonical host name may be different again, and so we get it directly from the
2226 relevant RR. Note that we do NOT change the mx field of the host item in this
2227 function as it may be called to set the addresses of hosts taken from MX
2228 records.
2229
2230 Arguments:
2231   host                  points to the host item we're filling in
2232   lastptr               points to pointer to last host item in a chain of
2233                           host items (may be updated if host is last and gets
2234                           extended because multihomed)
2235   ignore_target_hosts   list of hosts to ignore
2236   allow_ip              if TRUE, recognize an IP address and return it
2237   fully_qualified_name  if not NULL, return fully qualified name here if
2238                           the contents are different (i.e. it must be preset
2239                           to something)
2240   dnssec_request        if TRUE request the AD bit
2241   dnssec_require        if TRUE require the AD bit
2242   whichrrs              select ipv4, ipv6 results
2243
2244 Returns:       HOST_FIND_FAILED     couldn't find A record
2245                HOST_FIND_AGAIN      try again later
2246                HOST_FIND_SECURITY   dnssec required but not acheived
2247                HOST_FOUND           found AAAA and/or A record(s)
2248                HOST_IGNORED         found, but all IPs ignored
2249 */
2250
2251 static int
2252 set_address_from_dns(host_item *host, host_item **lastptr,
2253   const uschar *ignore_target_hosts, BOOL allow_ip,
2254   const uschar **fully_qualified_name,
2255   BOOL dnssec_request, BOOL dnssec_require, int whichrrs)
2256 {
2257 host_item *thishostlast = NULL;    /* Indicates not yet filled in anything */
2258 BOOL v6_find_again = FALSE;
2259 BOOL dnssec_fail = FALSE;
2260 int i;
2261
2262 /* If allow_ip is set, a name which is an IP address returns that value
2263 as its address. This is used for MX records when allow_mx_to_ip is set, for
2264 those sites that feel they have to flaunt the RFC rules. */
2265
2266 if (allow_ip && string_is_ip_address(host->name, NULL) != 0)
2267   {
2268   #ifndef STAND_ALONE
2269   if (  ignore_target_hosts
2270      && verify_check_this_host(&ignore_target_hosts, NULL, host->name,
2271         host->name, NULL) == OK)
2272     return HOST_IGNORED;
2273   #endif
2274
2275   host->address = host->name;
2276   return HOST_FOUND;
2277   }
2278
2279 /* On an IPv6 system, unless IPv6 is disabled, go round the loop up to twice,
2280 looking for AAAA records the first time. However, unless doing standalone
2281 testing, we force an IPv4 lookup if the domain matches dns_ipv4_lookup global.
2282 On an IPv4 system, go round the loop once only, looking only for A records. */
2283
2284 #if HAVE_IPV6
2285   #ifndef STAND_ALONE
2286     if (  disable_ipv6
2287        || !(whichrrs & HOST_FIND_BY_AAAA)
2288        || (dns_ipv4_lookup
2289           && match_isinlist(host->name, CUSS &dns_ipv4_lookup, 0, NULL, NULL,
2290               MCL_DOMAIN, TRUE, NULL) == OK)
2291        )
2292       i = 0;    /* look up A records only */
2293     else
2294   #endif        /* STAND_ALONE */
2295
2296   i = 1;        /* look up AAAA and A records */
2297
2298 /* The IPv4 world */
2299
2300 #else           /* HAVE_IPV6 */
2301   i = 0;        /* look up A records only */
2302 #endif          /* HAVE_IPV6 */
2303
2304 for (; i >= 0; i--)
2305   {
2306   static int types[] = { T_A, T_AAAA };
2307   int type = types[i];
2308   int randoffset = i == (whichrrs & HOST_FIND_IPV4_FIRST ? 1 : 0)
2309     ? 500 : 0;  /* Ensures v6/4 sort order */
2310   dns_answer dnsa;
2311   dns_scan dnss;
2312
2313   int rc = dns_lookup_timerwrap(&dnsa, host->name, type, fully_qualified_name);
2314   lookup_dnssec_authenticated = !dnssec_request ? NULL
2315     : dns_is_secure(&dnsa) ? US"yes" : US"no";
2316
2317   DEBUG(D_dns)
2318     if (  (dnssec_request || dnssec_require)
2319        && !dns_is_secure(&dnsa)
2320        && dns_is_aa(&dnsa)
2321        )
2322       debug_printf("DNS lookup of %.256s (A/AAAA) requested AD, but got AA\n", host->name);
2323
2324   /* We want to return HOST_FIND_AGAIN if one of the A or AAAA lookups
2325   fails or times out, but not if another one succeeds. (In the early
2326   IPv6 days there are name servers that always fail on AAAA, but are happy
2327   to give out an A record. We want to proceed with that A record.) */
2328
2329   if (rc != DNS_SUCCEED)
2330     {
2331     if (i == 0)  /* Just tried for an A record, i.e. end of loop */
2332       {
2333       if (host->address != NULL) return HOST_FOUND;  /* AAAA was found */
2334       if (rc == DNS_AGAIN || rc == DNS_FAIL || v6_find_again)
2335         return HOST_FIND_AGAIN;
2336       return HOST_FIND_FAILED;    /* DNS_NOMATCH or DNS_NODATA */
2337       }
2338
2339     /* Tried for an AAAA record: remember if this was a temporary
2340     error, and look for the next record type. */
2341
2342     if (rc != DNS_NOMATCH && rc != DNS_NODATA) v6_find_again = TRUE;
2343     continue;
2344     }
2345
2346   if (dnssec_request)
2347     {
2348     if (dns_is_secure(&dnsa))
2349       {
2350       DEBUG(D_host_lookup) debug_printf("%s A DNSSEC\n", host->name);
2351       if (host->dnssec == DS_UNK) /* set in host_find_bydns() */
2352         host->dnssec = DS_YES;
2353       }
2354     else
2355       {
2356       if (dnssec_require)
2357         {
2358         dnssec_fail = TRUE;
2359         DEBUG(D_host_lookup) debug_printf("dnssec fail on %s for %.256s",
2360                 i>0 ? "AAAA" : "A", host->name);
2361         continue;
2362         }
2363       if (host->dnssec == DS_YES) /* set in host_find_bydns() */
2364         {
2365         DEBUG(D_host_lookup) debug_printf("%s A cancel DNSSEC\n", host->name);
2366         host->dnssec = DS_NO;
2367         lookup_dnssec_authenticated = US"no";
2368         }
2369       }
2370     }
2371
2372   /* Lookup succeeded: fill in the given host item with the first non-ignored
2373   address found; create additional items for any others. A single A6 record
2374   may generate more than one address.  The lookup had a chance to update the
2375   fqdn; we do not want any later times round the loop to do so. */
2376
2377   fully_qualified_name = NULL;
2378
2379   for (dns_record * rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
2380        rr;
2381        rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT)) if (rr->type == type)
2382     {
2383     dns_address * da = dns_address_from_rr(&dnsa, rr);
2384
2385     DEBUG(D_host_lookup)
2386       if (!da) debug_printf("no addresses extracted from A6 RR for %s\n",
2387           host->name);
2388
2389     /* This loop runs only once for A and AAAA records, but may run
2390     several times for an A6 record that generated multiple addresses. */
2391
2392     for (; da; da = da->next)
2393       {
2394       #ifndef STAND_ALONE
2395       if (ignore_target_hosts != NULL &&
2396             verify_check_this_host(&ignore_target_hosts, NULL,
2397               host->name, da->address, NULL) == OK)
2398         {
2399         DEBUG(D_host_lookup)
2400           debug_printf("ignored host %s [%s]\n", host->name, da->address);
2401         continue;
2402         }
2403       #endif
2404
2405       /* If this is the first address, stick it in the given host block,
2406       and change the name if the returned RR has a different name. */
2407
2408       if (thishostlast == NULL)
2409         {
2410         if (strcmpic(host->name, rr->name) != 0)
2411           host->name = string_copy_dnsdomain(rr->name);
2412         host->address = da->address;
2413         host->sort_key = host->mx * 1000 + random_number(500) + randoffset;
2414         host->status = hstatus_unknown;
2415         host->why = hwhy_unknown;
2416         thishostlast = host;
2417         }
2418
2419       /* Not the first address. Check for, and ignore, duplicates. Then
2420       insert in the chain at a random point. */
2421
2422       else
2423         {
2424         int new_sort_key;
2425         host_item *next;
2426
2427         /* End of our local chain is specified by "thishostlast". */
2428
2429         for (next = host;; next = next->next)
2430           {
2431           if (Ustrcmp(CS da->address, next->address) == 0) break;
2432           if (next == thishostlast) { next = NULL; break; }
2433           }
2434         if (next != NULL) continue;  /* With loop for next address */
2435
2436         /* Not a duplicate */
2437
2438         new_sort_key = host->mx * 1000 + random_number(500) + randoffset;
2439         next = store_get(sizeof(host_item), FALSE);
2440
2441         /* New address goes first: insert the new block after the first one
2442         (so as not to disturb the original pointer) but put the new address
2443         in the original block. */
2444
2445         if (new_sort_key < host->sort_key)
2446           {
2447           *next = *host;                                  /* Copies port */
2448           host->next = next;
2449           host->address = da->address;
2450           host->sort_key = new_sort_key;
2451           if (thishostlast == host) thishostlast = next;  /* Local last */
2452           if (*lastptr == host) *lastptr = next;          /* Global last */
2453           }
2454
2455         /* Otherwise scan down the addresses for this host to find the
2456         one to insert after. */
2457
2458         else
2459           {
2460           host_item *h = host;
2461           while (h != thishostlast)
2462             {
2463             if (new_sort_key < h->next->sort_key) break;
2464             h = h->next;
2465             }
2466           *next = *h;                                 /* Copies port */
2467           h->next = next;
2468           next->address = da->address;
2469           next->sort_key = new_sort_key;
2470           if (h == thishostlast) thishostlast = next; /* Local last */
2471           if (h == *lastptr) *lastptr = next;         /* Global last */
2472           }
2473         }
2474       }
2475     }
2476   }
2477
2478 /* Control gets here only if the second lookup (the A record) succeeded.
2479 However, the address may not be filled in if it was ignored. */
2480
2481 return host->address
2482   ? HOST_FOUND
2483   : dnssec_fail
2484   ? HOST_FIND_SECURITY
2485   : HOST_IGNORED;
2486 }
2487
2488
2489
2490
2491 /*************************************************
2492 *    Find IP addresses and host names via DNS    *
2493 *************************************************/
2494
2495 /* The input is a host_item structure with the name field filled in and the
2496 address field set to NULL. This may be in a chain of other host items. The
2497 lookup may result in more than one IP address, in which case we must created
2498 new host blocks for the additional addresses, and insert them into the chain.
2499 The original name may not be fully qualified. Use the fully_qualified_name
2500 argument to return the official name, as returned by the resolver.
2501
2502 Arguments:
2503   host                  point to initial host item
2504   ignore_target_hosts   a list of hosts to ignore
2505   whichrrs              flags indicating which RRs to look for:
2506                           HOST_FIND_BY_SRV  => look for SRV
2507                           HOST_FIND_BY_MX   => look for MX
2508                           HOST_FIND_BY_A    => look for A
2509                           HOST_FIND_BY_AAAA => look for AAAA
2510                         also flags indicating how the lookup is done
2511                           HOST_FIND_QUALIFY_SINGLE   ) passed to the
2512                           HOST_FIND_SEARCH_PARENTS   )   resolver
2513                           HOST_FIND_IPV4_FIRST => reverse usual result ordering
2514                           HOST_FIND_IPV4_ONLY  => MX results elide ipv6
2515   srv_service           when SRV used, the service name
2516   srv_fail_domains      DNS errors for these domains => assume nonexist
2517   mx_fail_domains       DNS errors for these domains => assume nonexist
2518   dnssec_d.request =>   make dnssec request: domainlist
2519   dnssec_d.require =>   ditto and nonexist failures
2520   fully_qualified_name  if not NULL, return fully-qualified name
2521   removed               set TRUE if local host was removed from the list
2522
2523 Returns:                HOST_FIND_FAILED  Failed to find the host or domain;
2524                                           if there was a syntax error,
2525                                           host_find_failed_syntax is set.
2526                         HOST_FIND_AGAIN   Could not resolve at this time
2527                         HOST_FIND_SECURITY dnsssec required but not acheived
2528                         HOST_FOUND        Host found
2529                         HOST_FOUND_LOCAL  The lowest MX record points to this
2530                                           machine, if MX records were found, or
2531                                           an A record that was found contains
2532                                           an address of the local host
2533 */
2534
2535 int
2536 host_find_bydns(host_item *host, const uschar *ignore_target_hosts, int whichrrs,
2537   uschar *srv_service, uschar *srv_fail_domains, uschar *mx_fail_domains,
2538   const dnssec_domains *dnssec_d,
2539   const uschar **fully_qualified_name, BOOL *removed)
2540 {
2541 host_item *h, *last;
2542 int rc = DNS_FAIL;
2543 int ind_type = 0;
2544 int yield;
2545 dns_answer dnsa;
2546 dns_scan dnss;
2547 BOOL dnssec_require = dnssec_d
2548                     && match_isinlist(host->name, CUSS &dnssec_d->require,
2549                                     0, NULL, NULL, MCL_DOMAIN, TRUE, NULL) == OK;
2550 BOOL dnssec_request = dnssec_require
2551                     || (  dnssec_d
2552                        && match_isinlist(host->name, CUSS &dnssec_d->request,
2553                                     0, NULL, NULL, MCL_DOMAIN, TRUE, NULL) == OK);
2554 dnssec_status_t dnssec;
2555
2556 /* Set the default fully qualified name to the incoming name, initialize the
2557 resolver if necessary, set up the relevant options, and initialize the flag
2558 that gets set for DNS syntax check errors. */
2559
2560 if (fully_qualified_name != NULL) *fully_qualified_name = host->name;
2561 dns_init((whichrrs & HOST_FIND_QUALIFY_SINGLE) != 0,
2562          (whichrrs & HOST_FIND_SEARCH_PARENTS) != 0,
2563          dnssec_request);
2564 f.host_find_failed_syntax = FALSE;
2565
2566 /* First, if requested, look for SRV records. The service name is given; we
2567 assume TCP protocol. DNS domain names are constrained to a maximum of 256
2568 characters, so the code below should be safe. */
2569
2570 if (whichrrs & HOST_FIND_BY_SRV)
2571   {
2572   gstring * g;
2573   uschar * temp_fully_qualified_name;
2574   int prefix_length;
2575
2576   g = string_fmt_append(NULL, "_%s._tcp.%n%.256s",
2577         srv_service, &prefix_length, host->name);
2578   temp_fully_qualified_name = string_from_gstring(g);
2579   ind_type = T_SRV;
2580
2581   /* Search for SRV records. If the fully qualified name is different to
2582   the input name, pass back the new original domain, without the prepended
2583   magic. */
2584
2585   dnssec = DS_UNK;
2586   lookup_dnssec_authenticated = NULL;
2587   rc = dns_lookup_timerwrap(&dnsa, temp_fully_qualified_name, ind_type,
2588         CUSS &temp_fully_qualified_name);
2589
2590   DEBUG(D_dns)
2591     if ((dnssec_request || dnssec_require)
2592         && !dns_is_secure(&dnsa)
2593         && dns_is_aa(&dnsa))
2594       debug_printf("DNS lookup of %.256s (SRV) requested AD, but got AA\n", host->name);
2595
2596   if (dnssec_request)
2597     {
2598     if (dns_is_secure(&dnsa))
2599       { dnssec = DS_YES; lookup_dnssec_authenticated = US"yes"; }
2600     else
2601       { dnssec = DS_NO; lookup_dnssec_authenticated = US"no"; }
2602     }
2603
2604   if (temp_fully_qualified_name != g->s && fully_qualified_name != NULL)
2605     *fully_qualified_name = temp_fully_qualified_name + prefix_length;
2606
2607   /* On DNS failures, we give the "try again" error unless the domain is
2608   listed as one for which we continue. */
2609
2610   if (rc == DNS_SUCCEED && dnssec_require && !dns_is_secure(&dnsa))
2611     {
2612     log_write(L_host_lookup_failed, LOG_MAIN,
2613                 "dnssec fail on SRV for %.256s", host->name);
2614     rc = DNS_FAIL;
2615     }
2616   if (rc == DNS_FAIL || rc == DNS_AGAIN)
2617     {
2618     #ifndef STAND_ALONE
2619     if (match_isinlist(host->name, CUSS &srv_fail_domains, 0, NULL, NULL,
2620         MCL_DOMAIN, TRUE, NULL) != OK)
2621     #endif
2622       { yield = HOST_FIND_AGAIN; goto out; }
2623     DEBUG(D_host_lookup) debug_printf("DNS_%s treated as DNS_NODATA "
2624       "(domain in srv_fail_domains)\n", (rc == DNS_FAIL)? "FAIL":"AGAIN");
2625     }
2626   }
2627
2628 /* If we did not find any SRV records, search the DNS for MX records, if
2629 requested to do so. If the result is DNS_NOMATCH, it means there is no such
2630 domain, and there's no point in going on to look for address records with the
2631 same domain. The result will be DNS_NODATA if the domain exists but has no MX
2632 records. On DNS failures, we give the "try again" error unless the domain is
2633 listed as one for which we continue. */
2634
2635 if (rc != DNS_SUCCEED  &&  whichrrs & HOST_FIND_BY_MX)
2636   {
2637   ind_type = T_MX;
2638   dnssec = DS_UNK;
2639   lookup_dnssec_authenticated = NULL;
2640   rc = dns_lookup_timerwrap(&dnsa, host->name, ind_type, fully_qualified_name);
2641
2642   DEBUG(D_dns)
2643     if (  (dnssec_request || dnssec_require)
2644        && !dns_is_secure(&dnsa)
2645        && dns_is_aa(&dnsa))
2646       debug_printf("DNS lookup of %.256s (MX) requested AD, but got AA\n", host->name);
2647
2648   if (dnssec_request)
2649     if (dns_is_secure(&dnsa))
2650       {
2651       DEBUG(D_host_lookup) debug_printf("%s MX DNSSEC\n", host->name);
2652       dnssec = DS_YES; lookup_dnssec_authenticated = US"yes";
2653       }
2654     else
2655       {
2656       dnssec = DS_NO; lookup_dnssec_authenticated = US"no";
2657       }
2658
2659   switch (rc)
2660     {
2661     case DNS_NOMATCH:
2662       yield = HOST_FIND_FAILED; goto out;
2663
2664     case DNS_SUCCEED:
2665       if (!dnssec_require || dns_is_secure(&dnsa))
2666         break;
2667       DEBUG(D_host_lookup)
2668         debug_printf("dnssec fail on MX for %.256s", host->name);
2669 #ifndef STAND_ALONE
2670       if (match_isinlist(host->name, CUSS &mx_fail_domains, 0, NULL, NULL,
2671           MCL_DOMAIN, TRUE, NULL) != OK)
2672         { yield = HOST_FIND_SECURITY; goto out; }
2673 #endif
2674       rc = DNS_FAIL;
2675       /*FALLTHROUGH*/
2676
2677     case DNS_FAIL:
2678     case DNS_AGAIN:
2679 #ifndef STAND_ALONE
2680       if (match_isinlist(host->name, CUSS &mx_fail_domains, 0, NULL, NULL,
2681           MCL_DOMAIN, TRUE, NULL) != OK)
2682 #endif
2683         { yield = HOST_FIND_AGAIN; goto out; }
2684       DEBUG(D_host_lookup) debug_printf("DNS_%s treated as DNS_NODATA "
2685         "(domain in mx_fail_domains)\n", (rc == DNS_FAIL)? "FAIL":"AGAIN");
2686       break;
2687     }
2688   }
2689
2690 /* If we haven't found anything yet, and we are requested to do so, try for an
2691 A or AAAA record. If we find it (or them) check to see that it isn't the local
2692 host. */
2693
2694 if (rc != DNS_SUCCEED)
2695   {
2696   if (!(whichrrs & (HOST_FIND_BY_A | HOST_FIND_BY_AAAA)))
2697     {
2698     DEBUG(D_host_lookup) debug_printf("Address records are not being sought\n");
2699     yield = HOST_FIND_FAILED;
2700     goto out;
2701     }
2702
2703   last = host;        /* End of local chainlet */
2704   host->mx = MX_NONE;
2705   host->port = PORT_NONE;
2706   host->dnssec = DS_UNK;
2707   lookup_dnssec_authenticated = NULL;
2708   rc = set_address_from_dns(host, &last, ignore_target_hosts, FALSE,
2709     fully_qualified_name, dnssec_request, dnssec_require, whichrrs);
2710
2711   /* If one or more address records have been found, check that none of them
2712   are local. Since we know the host items all have their IP addresses
2713   inserted, host_scan_for_local_hosts() can only return HOST_FOUND or
2714   HOST_FOUND_LOCAL. We do not need to scan for duplicate IP addresses here,
2715   because set_address_from_dns() removes them. */
2716
2717   if (rc == HOST_FOUND)
2718     rc = host_scan_for_local_hosts(host, &last, removed);
2719   else
2720     if (rc == HOST_IGNORED) rc = HOST_FIND_FAILED;  /* No special action */
2721
2722   DEBUG(D_host_lookup)
2723     if (host->address)
2724       {
2725       if (fully_qualified_name)
2726         debug_printf("fully qualified name = %s\n", *fully_qualified_name);
2727       for (host_item * h = host; h != last->next; h = h->next)
2728         debug_printf("%s %s mx=%d sort=%d %s\n", h->name,
2729           h->address ? h->address : US"<null>", h->mx, h->sort_key,
2730           h->status >= hstatus_unusable ? US"*" : US"");
2731       }
2732
2733   yield = rc;
2734   goto out;
2735   }
2736
2737 /* We have found one or more MX or SRV records. Sort them according to
2738 precedence. Put the data for the first one into the existing host block, and
2739 insert new host_item blocks into the chain for the remainder. For equal
2740 precedences one is supposed to randomize the order. To make this happen, the
2741 sorting is actually done on the MX value * 1000 + a random number. This is put
2742 into a host field called sort_key.
2743
2744 In the case of hosts with both IPv6 and IPv4 addresses, we want to choose the
2745 IPv6 address in preference. At this stage, we don't know what kind of address
2746 the host has. We choose a random number < 500; if later we find an A record
2747 first, we add 500 to the random number. Then for any other address records, we
2748 use random numbers in the range 0-499 for AAAA records and 500-999 for A
2749 records.
2750
2751 At this point we remove any duplicates that point to the same host, retaining
2752 only the one with the lowest precedence. We cannot yet check for precedence
2753 greater than that of the local host, because that test cannot be properly done
2754 until the addresses have been found - an MX record may point to a name for this
2755 host which is not the primary hostname. */
2756
2757 last = NULL;    /* Indicates that not even the first item is filled yet */
2758
2759 for (dns_record * rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
2760      rr;
2761      rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT)) if (rr->type == ind_type)
2762   {
2763   int precedence, weight;
2764   int port = PORT_NONE;
2765   const uschar * s = rr->data;  /* MUST be unsigned for GETSHORT */
2766   uschar data[256];
2767
2768   GETSHORT(precedence, s);      /* Pointer s is advanced */
2769
2770   /* For MX records, we use a random "weight" which causes multiple records of
2771   the same precedence to sort randomly. */
2772
2773   if (ind_type == T_MX)
2774     weight = random_number(500);
2775   else
2776     {
2777     /* SRV records are specified with a port and a weight. The weight is used
2778     in a special algorithm. However, to start with, we just use it to order the
2779     records of equal priority (precedence). */
2780     GETSHORT(weight, s);
2781     GETSHORT(port, s);
2782     }
2783
2784   /* Get the name of the host pointed to. */
2785
2786   (void)dn_expand(dnsa.answer, dnsa.answer + dnsa.answerlen, s,
2787     (DN_EXPAND_ARG4_TYPE)data, sizeof(data));
2788
2789   /* Check that we haven't already got this host on the chain; if we have,
2790   keep only the lower precedence. This situation shouldn't occur, but you
2791   never know what junk might get into the DNS (and this case has been seen on
2792   more than one occasion). */
2793
2794   if (last)       /* This is not the first record */
2795     {
2796     host_item *prev = NULL;
2797
2798     for (h = host; h != last->next; prev = h, h = h->next)
2799       if (strcmpic(h->name, data) == 0)
2800         {
2801         DEBUG(D_host_lookup)
2802           debug_printf("discarded duplicate host %s (MX=%d)\n", data,
2803             precedence > h->mx ? precedence : h->mx);
2804         if (precedence >= h->mx) goto NEXT_MX_RR; /* Skip greater precedence */
2805         if (h == host)                            /* Override first item */
2806           {
2807           h->mx = precedence;
2808           host->sort_key = precedence * 1000 + weight;
2809           goto NEXT_MX_RR;
2810           }
2811
2812         /* Unwanted host item is not the first in the chain, so we can get
2813         get rid of it by cutting it out. */
2814
2815         prev->next = h->next;
2816         if (h == last) last = prev;
2817         break;
2818         }
2819     }
2820
2821   /* If this is the first MX or SRV record, put the data into the existing host
2822   block. Otherwise, add a new block in the correct place; if it has to be
2823   before the first block, copy the first block's data to a new second block. */
2824
2825   if (!last)
2826     {
2827     host->name = string_copy_dnsdomain(data);
2828     host->address = NULL;
2829     host->port = port;
2830     host->mx = precedence;
2831     host->sort_key = precedence * 1000 + weight;
2832     host->status = hstatus_unknown;
2833     host->why = hwhy_unknown;
2834     host->dnssec = dnssec;
2835     last = host;
2836     }
2837   else
2838
2839   /* Make a new host item and seek the correct insertion place */
2840     {
2841     int sort_key = precedence * 1000 + weight;
2842     host_item *next = store_get(sizeof(host_item), FALSE);
2843     next->name = string_copy_dnsdomain(data);
2844     next->address = NULL;
2845     next->port = port;
2846     next->mx = precedence;
2847     next->sort_key = sort_key;
2848     next->status = hstatus_unknown;
2849     next->why = hwhy_unknown;
2850     next->dnssec = dnssec;
2851     next->last_try = 0;
2852
2853     /* Handle the case when we have to insert before the first item. */
2854
2855     if (sort_key < host->sort_key)
2856       {
2857       host_item htemp;
2858       htemp = *host;
2859       *host = *next;
2860       *next = htemp;
2861       host->next = next;
2862       if (last == host) last = next;
2863       }
2864     else
2865
2866     /* Else scan down the items we have inserted as part of this exercise;
2867     don't go further. */
2868       {
2869       for (h = host; h != last; h = h->next)
2870         if (sort_key < h->next->sort_key)
2871           {
2872           next->next = h->next;
2873           h->next = next;
2874           break;
2875           }
2876
2877       /* Join on after the last host item that's part of this
2878       processing if we haven't stopped sooner. */
2879
2880       if (h == last)
2881         {
2882         next->next = last->next;
2883         last->next = next;
2884         last = next;
2885         }
2886       }
2887     }
2888
2889   NEXT_MX_RR: continue;
2890   }
2891
2892 if (!last)      /* No rr of correct type; give up */
2893   {
2894   yield = HOST_FIND_FAILED;
2895   goto out;
2896   }
2897
2898 /* If the list of hosts was obtained from SRV records, there are two things to
2899 do. First, if there is only one host, and it's name is ".", it means there is
2900 no SMTP service at this domain. Otherwise, we have to sort the hosts of equal
2901 priority according to their weights, using an algorithm that is defined in RFC
2902 2782. The hosts are currently sorted by priority and weight. For each priority
2903 group we have to pick off one host and put it first, and then repeat for any
2904 remaining in the same priority group. */
2905
2906 if (ind_type == T_SRV)
2907   {
2908   host_item ** pptr;
2909
2910   if (host == last && host->name[0] == 0)
2911     {
2912     DEBUG(D_host_lookup) debug_printf("the single SRV record is \".\"\n");
2913     yield = HOST_FIND_FAILED;
2914     goto out;
2915     }
2916
2917   DEBUG(D_host_lookup)
2918     {
2919     debug_printf("original ordering of hosts from SRV records:\n");
2920     for (h = host; h != last->next; h = h->next)
2921       debug_printf("  %s P=%d W=%d\n", h->name, h->mx, h->sort_key % 1000);
2922     }
2923
2924   for (pptr = &host, h = host; h != last; pptr = &h->next, h = h->next)
2925     {
2926     int sum = 0;
2927     host_item *hh;
2928
2929     /* Find the last following host that has the same precedence. At the same
2930     time, compute the sum of the weights and the running totals. These can be
2931     stored in the sort_key field. */
2932
2933     for (hh = h; hh != last; hh = hh->next)
2934       {
2935       int weight = hh->sort_key % 1000;   /* was precedence * 1000 + weight */
2936       sum += weight;
2937       hh->sort_key = sum;
2938       if (hh->mx != hh->next->mx) break;
2939       }
2940
2941     /* If there's more than one host at this precedence (priority), we need to
2942     pick one to go first. */
2943
2944     if (hh != h)
2945       {
2946       host_item *hhh;
2947       host_item **ppptr;
2948       int randomizer = random_number(sum + 1);
2949
2950       for (ppptr = pptr, hhh = h;
2951            hhh != hh;
2952            ppptr = &hhh->next, hhh = hhh->next)
2953         if (hhh->sort_key >= randomizer)
2954           break;
2955
2956       /* hhh now points to the host that should go first; ppptr points to the
2957       place that points to it. Unfortunately, if the start of the minilist is
2958       the start of the entire list, we can't just swap the items over, because
2959       we must not change the value of host, since it is passed in from outside.
2960       One day, this could perhaps be changed.
2961
2962       The special case is fudged by putting the new item *second* in the chain,
2963       and then transferring the data between the first and second items. We
2964       can't just swap the first and the chosen item, because that would mean
2965       that an item with zero weight might no longer be first. */
2966
2967       if (hhh != h)
2968         {
2969         *ppptr = hhh->next;          /* Cuts it out of the chain */
2970
2971         if (h == host)
2972           {
2973           host_item temp = *h;
2974           *h = *hhh;
2975           *hhh = temp;
2976           hhh->next = temp.next;
2977           h->next = hhh;
2978           }
2979         else
2980           {
2981           hhh->next = h;               /* The rest of the chain follows it */
2982           *pptr = hhh;                 /* It takes the place of h */
2983           h = hhh;                     /* It's now the start of this minilist */
2984           }
2985         }
2986       }
2987
2988     /* A host has been chosen to be first at this priority and h now points
2989     to this host. There may be others at the same priority, or others at a
2990     different priority. Before we leave this host, we need to put back a sort
2991     key of the traditional MX kind, in case this host is multihomed, because
2992     the sort key is used for ordering the multiple IP addresses. We do not need
2993     to ensure that these new sort keys actually reflect the order of the hosts,
2994     however. */
2995
2996     h->sort_key = h->mx * 1000 + random_number(500);
2997     }   /* Move on to the next host */
2998   }
2999
3000 /* Now we have to find IP addresses for all the hosts. We have ensured above
3001 that the names in all the host items are unique. Before release 4.61 we used to
3002 process records from the additional section in the DNS packet that returned the
3003 MX or SRV records. However, a DNS name server is free to drop any resource
3004 records from the additional section. In theory, this has always been a
3005 potential problem, but it is exacerbated by the advent of IPv6. If a host had
3006 several IPv4 addresses and some were not in the additional section, at least
3007 Exim would try the others. However, if a host had both IPv4 and IPv6 addresses
3008 and all the IPv4 (say) addresses were absent, Exim would try only for a IPv6
3009 connection, and never try an IPv4 address. When there was only IPv4
3010 connectivity, this was a disaster that did in practice occur.
3011
3012 So, from release 4.61 onwards, we always search for A and AAAA records
3013 explicitly. The names shouldn't point to CNAMES, but we use the general lookup
3014 function that handles them, just in case. If any lookup gives a soft error,
3015 change the default yield.
3016
3017 For these DNS lookups, we must disable qualify_single and search_parents;
3018 otherwise invalid host names obtained from MX or SRV records can cause trouble
3019 if they happen to match something local. */
3020
3021 yield = HOST_FIND_FAILED;    /* Default yield */
3022 dns_init(FALSE, FALSE,       /* Disable qualify_single and search_parents */
3023          dnssec_request || dnssec_require);
3024
3025 for (h = host; h != last->next; h = h->next)
3026   {
3027   if (h->address) continue;  /* Inserted by a multihomed host */
3028
3029   rc = set_address_from_dns(h, &last, ignore_target_hosts, allow_mx_to_ip,
3030     NULL, dnssec_request, dnssec_require,
3031     whichrrs & HOST_FIND_IPV4_ONLY
3032     ?  HOST_FIND_BY_A  :  HOST_FIND_BY_A | HOST_FIND_BY_AAAA);
3033   if (rc != HOST_FOUND)
3034     {
3035     h->status = hstatus_unusable;
3036     switch (rc)
3037       {
3038       case HOST_FIND_AGAIN:     yield = rc; h->why = hwhy_deferred; break;
3039       case HOST_FIND_SECURITY:  yield = rc; h->why = hwhy_insecure; break;
3040       case HOST_IGNORED:        h->why = hwhy_ignored; break;
3041       default:                  h->why = hwhy_failed; break;
3042       }
3043     }
3044   }
3045
3046 /* Scan the list for any hosts that are marked unusable because they have
3047 been explicitly ignored, and remove them from the list, as if they did not
3048 exist. If we end up with just a single, ignored host, flatten its fields as if
3049 nothing was found. */
3050
3051 if (ignore_target_hosts)
3052   {
3053   host_item *prev = NULL;
3054   for (h = host; h != last->next; h = h->next)
3055     {
3056     REDO:
3057     if (h->why != hwhy_ignored)        /* Non ignored host, just continue */
3058       prev = h;
3059     else if (prev == NULL)             /* First host is ignored */
3060       {
3061       if (h != last)                   /* First is not last */
3062         {
3063         if (h->next == last) last = h; /* Overwrite it with next */
3064         *h = *(h->next);               /* and reprocess it. */
3065         goto REDO;                     /* C should have redo, like Perl */
3066         }
3067       }
3068     else                               /* Ignored host is not first - */
3069       {                                /*   cut it out */
3070       prev->next = h->next;
3071       if (h == last) last = prev;
3072       }
3073     }
3074
3075   if (host->why == hwhy_ignored) host->address = NULL;
3076   }
3077
3078 /* There is still one complication in the case of IPv6. Although the code above
3079 arranges that IPv6 addresses take precedence over IPv4 addresses for multihomed
3080 hosts, it doesn't do this for addresses that apply to different hosts with the
3081 same MX precedence, because the sorting on MX precedence happens first. So we
3082 have to make another pass to check for this case. We ensure that, within a
3083 single MX preference value, IPv6 addresses come first. This can separate the
3084 addresses of a multihomed host, but that should not matter. */
3085
3086 #if HAVE_IPV6
3087 if (h != last && !disable_ipv6) for (h = host; h != last; h = h->next)
3088   {
3089   host_item temp;
3090   host_item *next = h->next;
3091
3092   if (  h->mx != next->mx                       /* If next is different MX */
3093      || !h->address                             /* OR this one is unset */
3094      )
3095     continue;                                   /* move on to next */
3096
3097   if (  whichrrs & HOST_FIND_IPV4_FIRST
3098      ?     !Ustrchr(h->address, ':')            /* OR this one is IPv4 */
3099         || next->address
3100            && Ustrchr(next->address, ':')       /* OR next is IPv6 */
3101
3102      :     Ustrchr(h->address, ':')             /* OR this one is IPv6 */
3103         || next->address
3104            && !Ustrchr(next->address, ':')      /* OR next is IPv4 */
3105      )
3106     continue;                                /* move on to next */
3107
3108   temp = *h;                                 /* otherwise, swap */
3109   temp.next = next->next;
3110   *h = *next;
3111   h->next = next;
3112   *next = temp;
3113   }
3114 #endif
3115
3116 /* Remove any duplicate IP addresses and then scan the list of hosts for any
3117 whose IP addresses are on the local host. If any are found, all hosts with the
3118 same or higher MX values are removed. However, if the local host has the lowest
3119 numbered MX, then HOST_FOUND_LOCAL is returned. Otherwise, if at least one host
3120 with an IP address is on the list, HOST_FOUND is returned. Otherwise,
3121 HOST_FIND_FAILED is returned, but in this case do not update the yield, as it
3122 might have been set to HOST_FIND_AGAIN just above here. If not, it will already
3123 be HOST_FIND_FAILED. */
3124
3125 host_remove_duplicates(host, &last);
3126 rc = host_scan_for_local_hosts(host, &last, removed);
3127 if (rc != HOST_FIND_FAILED) yield = rc;
3128
3129 DEBUG(D_host_lookup)
3130   {
3131   if (fully_qualified_name)
3132     debug_printf("fully qualified name = %s\n", *fully_qualified_name);
3133   debug_printf("host_find_bydns yield = %s (%d); returned hosts:\n",
3134     yield == HOST_FOUND         ? "HOST_FOUND" :
3135     yield == HOST_FOUND_LOCAL   ? "HOST_FOUND_LOCAL" :
3136     yield == HOST_FIND_SECURITY ? "HOST_FIND_SECURITY" :
3137     yield == HOST_FIND_AGAIN    ? "HOST_FIND_AGAIN" :
3138     yield == HOST_FIND_FAILED   ? "HOST_FIND_FAILED" : "?",
3139     yield);
3140   for (h = host; h != last->next; h = h->next)
3141     {
3142     debug_printf("  %s %s MX=%d %s", h->name,
3143       !h->address ? US"<null>" : h->address, h->mx,
3144       h->dnssec == DS_YES ? US"DNSSEC " : US"");
3145     if (h->port != PORT_NONE) debug_printf("port=%d ", h->port);
3146     if (h->status >= hstatus_unusable) debug_printf("*");
3147     debug_printf("\n");
3148     }
3149   }
3150
3151 out:
3152
3153 dns_init(FALSE, FALSE, FALSE);  /* clear the dnssec bit for getaddrbyname */
3154 return yield;
3155 }
3156
3157 /*************************************************
3158 **************************************************
3159 *             Stand-alone test program           *
3160 **************************************************
3161 *************************************************/
3162
3163 #ifdef STAND_ALONE
3164
3165 int main(int argc, char **cargv)
3166 {
3167 host_item h;
3168 int whichrrs = HOST_FIND_BY_MX | HOST_FIND_BY_A | HOST_FIND_BY_AAAA;
3169 BOOL byname = FALSE;
3170 BOOL qualify_single = TRUE;
3171 BOOL search_parents = FALSE;
3172 BOOL request_dnssec = FALSE;
3173 BOOL require_dnssec = FALSE;
3174 uschar **argv = USS cargv;
3175 uschar buffer[256];
3176
3177 disable_ipv6 = FALSE;
3178 primary_hostname = US"";
3179 store_pool = POOL_MAIN;
3180 debug_selector = D_host_lookup|D_interface;
3181 debug_file = stdout;
3182 debug_fd = fileno(debug_file);
3183
3184 printf("Exim stand-alone host functions test\n");
3185
3186 host_find_interfaces();
3187 debug_selector = D_host_lookup | D_dns;
3188
3189 if (argc > 1) primary_hostname = argv[1];
3190
3191 /* So that debug level changes can be done first */
3192
3193 dns_init(qualify_single, search_parents, FALSE);
3194
3195 printf("Testing host lookup\n");
3196 printf("> ");
3197 while (Ufgets(buffer, 256, stdin) != NULL)
3198   {
3199   int rc;
3200   int len = Ustrlen(buffer);
3201   uschar *fully_qualified_name;
3202
3203   while (len > 0 && isspace(buffer[len-1])) len--;
3204   buffer[len] = 0;
3205
3206   if (Ustrcmp(buffer, "q") == 0) break;
3207
3208   if (Ustrcmp(buffer, "byname") == 0) byname = TRUE;
3209   else if (Ustrcmp(buffer, "no_byname") == 0) byname = FALSE;
3210   else if (Ustrcmp(buffer, "a_only") == 0) whichrrs = HOST_FIND_BY_A | HOST_FIND_BY_AAAA;
3211   else if (Ustrcmp(buffer, "mx_only") == 0) whichrrs = HOST_FIND_BY_MX;
3212   else if (Ustrcmp(buffer, "srv_only") == 0) whichrrs = HOST_FIND_BY_SRV;
3213   else if (Ustrcmp(buffer, "srv+a") == 0)
3214     whichrrs = HOST_FIND_BY_SRV | HOST_FIND_BY_A | HOST_FIND_BY_AAAA;
3215   else if (Ustrcmp(buffer, "srv+mx") == 0)
3216     whichrrs = HOST_FIND_BY_SRV | HOST_FIND_BY_MX;
3217   else if (Ustrcmp(buffer, "srv+mx+a") == 0)
3218     whichrrs = HOST_FIND_BY_SRV | HOST_FIND_BY_MX | HOST_FIND_BY_A | HOST_FIND_BY_AAAA;
3219   else if (Ustrcmp(buffer, "qualify_single")    == 0) qualify_single = TRUE;
3220   else if (Ustrcmp(buffer, "no_qualify_single") == 0) qualify_single = FALSE;
3221   else if (Ustrcmp(buffer, "search_parents")    == 0) search_parents = TRUE;
3222   else if (Ustrcmp(buffer, "no_search_parents") == 0) search_parents = FALSE;
3223   else if (Ustrcmp(buffer, "request_dnssec")    == 0) request_dnssec = TRUE;
3224   else if (Ustrcmp(buffer, "no_request_dnssec") == 0) request_dnssec = FALSE;
3225   else if (Ustrcmp(buffer, "require_dnssec")    == 0) require_dnssec = TRUE;
3226   else if (Ustrcmp(buffer, "no_require_dnssec") == 0) require_dnssec = FALSE;
3227   else if (Ustrcmp(buffer, "test_harness") == 0)
3228     f.running_in_test_harness = !f.running_in_test_harness;
3229   else if (Ustrcmp(buffer, "ipv6") == 0) disable_ipv6 = !disable_ipv6;
3230   else if (Ustrcmp(buffer, "res_debug") == 0)
3231     {
3232     _res.options ^= RES_DEBUG;
3233     }
3234   else if (Ustrncmp(buffer, "retrans", 7) == 0)
3235     {
3236     (void)sscanf(CS(buffer+8), "%d", &dns_retrans);
3237     _res.retrans = dns_retrans;
3238     }
3239   else if (Ustrncmp(buffer, "retry", 5) == 0)
3240     {
3241     (void)sscanf(CS(buffer+6), "%d", &dns_retry);
3242     _res.retry = dns_retry;
3243     }
3244   else
3245     {
3246     int flags = whichrrs;
3247     dnssec_domains d;
3248
3249     h.name = buffer;
3250     h.next = NULL;
3251     h.mx = MX_NONE;
3252     h.port = PORT_NONE;
3253     h.status = hstatus_unknown;
3254     h.why = hwhy_unknown;
3255     h.address = NULL;
3256
3257     if (qualify_single) flags |= HOST_FIND_QUALIFY_SINGLE;
3258     if (search_parents) flags |= HOST_FIND_SEARCH_PARENTS;
3259
3260     d.request = request_dnssec ? &h.name : NULL;
3261     d.require = require_dnssec ? &h.name : NULL;
3262
3263     rc = byname
3264       ? host_find_byname(&h, NULL, flags, &fully_qualified_name, TRUE)
3265       : host_find_bydns(&h, NULL, flags, US"smtp", NULL, NULL,
3266                         &d, &fully_qualified_name, NULL);
3267
3268     switch (rc)
3269       {
3270       case HOST_FIND_FAILED:    printf("Failed\n");     break;
3271       case HOST_FIND_AGAIN:     printf("Again\n");      break;
3272       case HOST_FIND_SECURITY:  printf("Security\n");   break;
3273       case HOST_FOUND_LOCAL:    printf("Local\n");      break;
3274       }
3275     }
3276
3277   printf("\n> ");
3278   }
3279
3280 printf("Testing host_aton\n");
3281 printf("> ");
3282 while (Ufgets(buffer, 256, stdin) != NULL)
3283   {
3284   int x[4];
3285   int len = Ustrlen(buffer);
3286
3287   while (len > 0 && isspace(buffer[len-1])) len--;
3288   buffer[len] = 0;
3289
3290   if (Ustrcmp(buffer, "q") == 0) break;
3291
3292   len = host_aton(buffer, x);
3293   printf("length = %d ", len);
3294   for (int i = 0; i < len; i++)
3295     {
3296     printf("%04x ", (x[i] >> 16) & 0xffff);
3297     printf("%04x ", x[i] & 0xffff);
3298     }
3299   printf("\n> ");
3300   }
3301
3302 printf("\n");
3303
3304 printf("Testing host_name_lookup\n");
3305 printf("> ");
3306 while (Ufgets(buffer, 256, stdin) != NULL)
3307   {
3308   int len = Ustrlen(buffer);
3309   while (len > 0 && isspace(buffer[len-1])) len--;
3310   buffer[len] = 0;
3311   if (Ustrcmp(buffer, "q") == 0) break;
3312   sender_host_address = buffer;
3313   sender_host_name = NULL;
3314   sender_host_aliases = NULL;
3315   host_lookup_msg = US"";
3316   host_lookup_failed = FALSE;
3317   if (host_name_lookup() == FAIL)  /* Debug causes printing */
3318     printf("Lookup failed:%s\n", host_lookup_msg);
3319   printf("\n> ");
3320   }
3321
3322 printf("\n");
3323
3324 return 0;
3325 }
3326 #endif  /* STAND_ALONE */
3327
3328 /* vi: aw ai sw=2
3329 */
3330 /* End of host.c */