2 * Copyright (c) 1998-2003 Sendmail, Inc. and its suppliers.
4 * Copyright (c) 1986, 1995-1997 Eric P. Allman. All rights reserved.
5 * Copyright (c) 1988, 1993
6 * The Regents of the University of California. All rights reserved.
8 * By using this file, you agree to the terms and conditions set
9 * forth in the LICENSE file which can be found at the top level of
10 * the sendmail distribution.
17 SM_RCSID("@(#)$Id: domain.c,v 8.181.2.9 2003/08/11 23:23:40 gshapiro Exp $ (with name server)")
18 #else /* NAMED_BIND */
19 SM_RCSID("@(#)$Id: domain.c,v 8.181.2.9 2003/08/11 23:23:40 gshapiro Exp $ (without name server)")
20 #endif /* NAMED_BIND */
24 # include <arpa/inet.h>
28 ** The standard udp packet size PACKETSZ (512) is not sufficient for some
29 ** nameserver answers containing very many resource records. The resolver
30 ** may switch to tcp and retry if it detects udp packet overflow.
31 ** Also note that the resolver routines res_query and res_search return
32 ** the size of the *un*truncated answer in case the supplied answer buffer
33 ** it not big enough to accommodate the entire answer.
37 # define MAXPACKET 8192 /* max packet size used internally by BIND */
38 # endif /* ! MAXPACKET */
43 unsigned char qb2[MAXPACKET];
46 # ifndef MXHOSTBUFSIZE
47 # define MXHOSTBUFSIZE (128 * MAXMXHOSTS)
48 # endif /* ! MXHOSTBUFSIZE */
50 static char MXHostBuf[MXHOSTBUFSIZE];
51 #if (MXHOSTBUFSIZE < 2) || (MXHOSTBUFSIZE >= INT_MAX/2)
52 ERROR: _MXHOSTBUFSIZE is out of range
53 #endif /* (MXHOSTBUFSIZE < 2) || (MXHOSTBUFSIZE >= INT_MAX/2) */
56 # define MAXDNSRCH 6 /* number of possible domains to search */
57 # endif /* ! MAXDNSRCH */
59 # ifndef RES_DNSRCH_VARIABLE
60 # define RES_DNSRCH_VARIABLE _res.dnsrch
61 # endif /* ! RES_DNSRCH_VARIABLE */
64 # define NO_DATA NO_ADDRESS
65 # endif /* ! NO_DATA */
68 # define HFIXEDSZ 12 /* sizeof(HEADER) */
69 # endif /* ! HFIXEDSZ */
71 # define MAXCNAMEDEPTH 10 /* maximum depth of CNAME recursion */
73 # if defined(__RES) && (__RES >= 19940415)
74 # define RES_UNC_T char *
75 # else /* defined(__RES) && (__RES >= 19940415) */
76 # define RES_UNC_T unsigned char *
77 # endif /* defined(__RES) && (__RES >= 19940415) */
79 static char *gethostalias __P((char *));
80 static int mxrand __P((char *));
81 static int fallbackmxrr __P((int, unsigned short *, char **));
84 ** GETFALLBACKMXRR -- get MX resource records for fallback MX host.
86 ** We have to initialize this once before doing anything else.
87 ** Moreover, we have to repeat this from time to time to avoid
88 ** stale data, e.g., in persistent queue runners.
89 ** This should be done in a parent process so the child
90 ** processes have the right data.
93 ** host -- the name of the fallback MX host.
96 ** number of MX records.
99 ** Populates NumFallBackMXHosts and fbhosts.
100 ** Sets renewal time (based on TTL).
103 int NumFallBackMXHosts = 0; /* Number of fallback MX hosts (after MX expansion) */
104 static char *fbhosts[MAXMXHOSTS + 1];
107 getfallbackmxrr(host)
112 static time_t renew = 0;
115 /* This is currently done before this function is called. */
116 if (host == NULL || *host == '\0')
119 if (NumFallBackMXHosts > 0 && renew > curtime())
120 return NumFallBackMXHosts;
124 NumFallBackMXHosts = 1;
129 for (i = 0; i < NumFallBackMXHosts; i++)
133 NumFallBackMXHosts = getmxrr(host, fbhosts, NULL, false,
134 &rcode, false, &ttl);
135 renew = curtime() + ttl;
136 for (i = 0; i < NumFallBackMXHosts; i++)
137 fbhosts[i] = newstr(fbhosts[i]);
139 return NumFallBackMXHosts;
143 ** FALLBACKMXRR -- add MX resource records for fallback MX host to list.
146 ** nmx -- current number of MX records.
147 ** prefs -- array of preferences.
148 ** mxhosts -- array of MX hosts (maximum size: MAXMXHOSTS)
151 ** new number of MX records.
154 ** If FallBackMX was set, it appends the MX records for
155 ** that host to mxhosts (and modifies prefs accordingly).
159 fallbackmxrr(nmx, prefs, mxhosts)
161 unsigned short *prefs;
166 for (i = 0; i < NumFallBackMXHosts && nmx < MAXMXHOSTS; i++)
169 prefs[nmx] = prefs[nmx - 1] + 1;
172 mxhosts[nmx++] = fbhosts[i];
178 ** GETMXRR -- get MX resource records for a domain
181 ** host -- the name of the host to MX.
182 ** mxhosts -- a pointer to a return buffer of MX records.
183 ** mxprefs -- a pointer to a return buffer of MX preferences.
184 ** If NULL, don't try to populate.
185 ** droplocalhost -- If true, all MX records less preferred
186 ** than the local host (as determined by $=w) will
188 ** rcode -- a pointer to an EX_ status code.
189 ** tryfallback -- add also fallback MX host?
190 ** pttl -- pointer to return TTL (can be NULL).
193 ** The number of MX records found.
194 ** -1 if there is an internal failure.
195 ** If no MX records are found, mxhosts[0] is set to host
196 ** and 1 is returned.
199 ** The entries made for mxhosts point to a static array
200 ** MXHostBuf[MXHOSTBUFSIZE], so the data needs to be copied,
201 ** if it must be preserved across calls to this function.
205 getmxrr(host, mxhosts, mxprefs, droplocalhost, rcode, tryfallback, pttl)
208 unsigned short *mxprefs;
214 register unsigned char *eom, *cp;
215 register int i, j, n;
220 int ancount, qdcount, buflen;
221 bool seenlocal = false;
222 unsigned short pref, type;
223 unsigned short localpref = 256;
224 char *fallbackMX = FallBackMX;
225 bool trycanon = false;
226 unsigned short *prefs;
228 unsigned short prefer[MAXMXHOSTS];
229 int weight[MAXMXHOSTS];
231 extern int res_query(), res_search();
234 sm_dprintf("getmxrr(%s, droplocalhost=%d)\n",
235 host, droplocalhost);
239 if ((fallbackMX != NULL && droplocalhost &&
240 wordinclass(fallbackMX, 'w')) || !tryfallback)
242 /* don't use fallback for this pass */
253 /* efficiency hack -- numeric or non-MX lookups */
258 ** If we don't have MX records in our host switch, don't
259 ** try for MX records. Note that this really isn't "right",
260 ** since we might be set up to try NIS first and then DNS;
261 ** if the host is found in NIS we really shouldn't be doing
262 ** MX lookups. However, that should be a degenerate case.
267 if (HasWildcardMX && ConfigLevel >= 6)
270 resfunc = res_search;
273 n = (*resfunc)(host, C_IN, T_MX, (unsigned char *) &answer,
278 sm_dprintf("getmxrr: res_search(%s) failed (errno=%d, h_errno=%d)\n",
279 host == NULL ? "<NULL>" : host, errno, h_errno);
287 /* no MX data on this host */
291 # if BROKEN_RES_SEARCH
292 case 0: /* Ultrix resolver retns failure w/ h_errno=0 */
293 # endif /* BROKEN_RES_SEARCH */
294 /* host doesn't exist in DNS; might be in /etc/hosts */
301 /* couldn't connect to the name server */
302 if (fallbackMX != NULL)
304 /* name server is hosed -- push to fallback */
305 return fallbackmxrr(nmx, prefs, mxhosts);
307 /* it might come up later; better queue it up */
308 *rcode = EX_TEMPFAIL;
312 syserr("getmxrr: res_search (%s) failed with impossible h_errno (%d)",
318 /* irreconcilable differences */
322 /* avoid problems after truncation in tcp packets */
323 if (n > sizeof(answer))
326 /* find first satisfactory answer */
327 hp = (HEADER *)&answer;
328 cp = (unsigned char *)&answer + HFIXEDSZ;
329 eom = (unsigned char *)&answer + n;
330 for (qdcount = ntohs((unsigned short) hp->qdcount);
334 if ((n = dn_skipname(cp, eom)) < 0)
338 /* NOTE: see definition of MXHostBuf! */
339 buflen = sizeof(MXHostBuf) - 1;
340 SM_ASSERT(buflen > 0);
342 ancount = ntohs((unsigned short) hp->ancount);
344 /* See RFC 1035 for layout of RRs. */
345 /* XXX leave room for FallBackMX ? */
346 while (--ancount >= 0 && cp < eom && nmx < MAXMXHOSTS - 1)
348 if ((n = dn_expand((unsigned char *)&answer, eom, cp,
349 (RES_UNC_T) bp, buflen)) < 0)
353 cp += INT16SZ; /* skip over class */
355 GETSHORT(n, cp); /* rdlength */
358 if (tTd(8, 8) || _res.options & RES_DEBUG)
359 sm_dprintf("unexpected answer type %d, size %d\n",
365 if ((n = dn_expand((unsigned char *)&answer, eom, cp,
366 (RES_UNC_T) bp, buflen)) < 0)
371 /* Can this happen? */
375 sm_syslog(LOG_ERR, NOQID,
376 "MX records for %s contain empty string",
381 if (wordinclass(bp, 'w'))
384 sm_dprintf("found localhost (%s) in MX list, pref=%d\n",
388 if (!seenlocal || pref < localpref)
396 weight[nmx] = mxrand(bp);
408 /* don't want to wrap buflen */
414 /* return only one TTL entry, that should be sufficient */
415 if (ttl > 0 && pttl != NULL)
418 /* sort the records */
419 for (i = 0; i < nmx; i++)
421 for (j = i + 1; j < nmx; j++)
423 if (prefs[i] > prefs[j] ||
424 (prefs[i] == prefs[j] && weight[i] > weight[j]))
427 register char *temp1;
433 mxhosts[i] = mxhosts[j];
436 weight[i] = weight[j];
440 if (seenlocal && prefs[i] >= localpref)
442 /* truncate higher preference part of list */
447 /* delete duplicates from list (yes, some bozos have duplicates) */
448 for (i = 0; i < nmx - 1; )
450 if (sm_strcasecmp(mxhosts[i], mxhosts[i + 1]) != 0)
454 /* compress out duplicate */
455 for (j = i + 1; j < nmx; j++)
457 mxhosts[j] = mxhosts[j + 1];
458 prefs[j] = prefs[j + 1];
469 struct hostent *h = NULL;
472 ** If we have deleted all MX entries, this is
473 ** an error -- we should NEVER send to a host that
474 ** has an MX, and this should have been caught
475 ** earlier in the config file.
477 ** Some sites prefer to go ahead and try the
478 ** A record anyway; that case is handled by
479 ** setting TryNullMXList. I believe this is a
480 ** bad idea, but it's up to you....
487 h = sm_gethostbyname(host, AF_INET);
490 if (errno == ETIMEDOUT ||
491 h_errno == TRY_AGAIN ||
492 (errno == ECONNREFUSED &&
495 *rcode = EX_TEMPFAIL;
501 h = sm_gethostbyname(host, AF_INET6);
503 (errno == ETIMEDOUT ||
504 h_errno == TRY_AGAIN ||
505 (errno == ECONNREFUSED &&
508 *rcode = EX_TEMPFAIL;
511 # endif /* NETINET6 */
518 syserr("MX list for %s points back to %s",
525 # endif /* NETINET6 */
527 if (strlen(host) >= sizeof MXHostBuf)
530 syserr("Host name %s too long",
531 shortenstring(host, MAXSHORTSTR));
534 (void) sm_strlcpy(MXHostBuf, host, sizeof MXHostBuf);
535 mxhosts[0] = MXHostBuf;
541 struct sockaddr_in6 tmp6;
542 # endif /* NETINET6 */
544 /* this may be an MX suppression-style address */
545 p = strchr(MXHostBuf, ']');
550 if (inet_addr(&MXHostBuf[1]) != INADDR_NONE)
556 else if (anynet_pton(AF_INET6, &MXHostBuf[1],
557 &tmp6.sin6_addr) == 1)
562 # endif /* NETINET6 */
571 getcanonname(mxhosts[0], sizeof MXHostBuf - 2, false, pttl))
573 /* XXX MXHostBuf == "" ? is that possible? */
574 bp = &MXHostBuf[strlen(MXHostBuf)];
584 /* if we have a default lowest preference, include that */
585 if (fallbackMX != NULL && !seenlocal)
587 nmx = fallbackmxrr(nmx, prefs, mxhosts);
592 ** MXRAND -- create a randomizer for equal MX preferences
594 ** If two MX hosts have equal preferences we want to randomize
595 ** the selection. But in order for signatures to be the same,
596 ** we need to randomize the same way each time. This function
597 ** computes a pseudo-random hash function from the host name.
600 ** host -- the name of the host.
603 ** A random but repeatable value based on the host name.
611 static unsigned int seed;
615 seed = (int) curtime() & 0xffff;
621 sm_dprintf("mxrand(%s)", host);
624 while (*host != '\0')
628 if (isascii(c) && isupper(c))
630 hfunc = ((hfunc << 1) ^ c) % 2003;
637 sm_dprintf(" = %d\n", hfunc);
641 ** BESTMX -- find the best MX for a name
643 ** This is really a hack, but I don't see any obvious way
644 ** to generalize it at the moment.
649 bestmx_map_lookup(map, name, av, statp)
656 int saveopts = _res.options;
660 char *mxhosts[MAXMXHOSTS + 1];
661 #if _FFR_BESTMX_BETTER_TRUNCATION
663 #else /* _FFR_BESTMX_BETTER_TRUNCATION */
665 char buf[PSBUFSIZE / 2];
666 #endif /* _FFR_BESTMX_BETTER_TRUNCATION */
668 _res.options &= ~(RES_DNSRCH|RES_DEFNAMES);
669 nmx = getmxrr(name, mxhosts, NULL, false, statp, false, NULL);
670 _res.options = saveopts;
673 if (bitset(MF_MATCHONLY, map->map_mflags))
674 return map_rewrite(map, name, strlen(name), NULL);
675 if ((map->map_coldelim == '\0') || (nmx == 1))
676 return map_rewrite(map, mxhosts[0], strlen(mxhosts[0]), av);
679 ** We were given a -z flag (return all MXs) and there are multiple
680 ** ones. We need to build them all into a list.
683 #if _FFR_BESTMX_BETTER_TRUNCATION
684 for (i = 0; i < nmx; i++)
686 if (strchr(mxhosts[i], map->map_coldelim) != NULL)
688 syserr("bestmx_map_lookup: MX host %.64s includes map delimiter character 0x%02X",
689 mxhosts[i], map->map_coldelim);
692 len += strlen(mxhosts[i]) + 1;
695 len -= strlen(mxhosts[i]) + 1;
699 buf = (char *) sm_malloc(len);
702 *statp = EX_UNAVAILABLE;
706 for (i = 0; i < nmx; i++)
710 end = sm_strlcat(buf, mxhosts[i], len);
711 if (i != nmx && end + 1 < len)
713 buf[end] = map->map_coldelim;
718 /* Cleanly truncate for rulesets */
719 truncate_at_delim(buf, PSBUFSIZE / 2, map->map_coldelim);
720 #else /* _FFR_BESTMX_BETTER_TRUNCATION */
722 for (i = 0; i < nmx; i++)
726 if (strchr(mxhosts[i], map->map_coldelim) != NULL)
728 syserr("bestmx_map_lookup: MX host %.64s includes map delimiter character 0x%02X",
729 mxhosts[i], map->map_coldelim);
732 slen = strlen(mxhosts[i]);
733 if (len + slen + 2 > sizeof buf)
737 *p++ = map->map_coldelim;
740 (void) sm_strlcpy(p, mxhosts[i], sizeof buf - len);
744 #endif /* _FFR_BESTMX_BETTER_TRUNCATION */
746 result = map_rewrite(map, buf, len, av);
747 #if _FFR_BESTMX_BETTER_TRUNCATION
749 #endif /* _FFR_BESTMX_BETTER_TRUNCATION */
753 ** DNS_GETCANONNAME -- get the canonical name for named host using DNS
755 ** This algorithm tries to be smart about wildcard MX records.
756 ** This is hard to do because DNS doesn't tell is if we matched
757 ** against a wildcard or a specific MX.
759 ** We always prefer A & CNAME records, since these are presumed
762 ** If we match an MX in one pass and lose it in the next, we use
763 ** the old one. For example, consider an MX matching *.FOO.BAR.COM.
764 ** A hostname bletch.foo.bar.com will match against this MX, but
765 ** will stop matching when we try bletch.bar.com -- so we know
766 ** that bletch.foo.bar.com must have been right. This fails if
767 ** there was also an MX record matching *.BAR.COM, but there are
768 ** some things that just can't be fixed.
771 ** host -- a buffer containing the name of the host.
772 ** This is a value-result parameter.
773 ** hbsize -- the size of the host buffer.
774 ** trymx -- if set, try MX records as well as A and CNAME.
775 ** statp -- pointer to place to store status.
776 ** pttl -- pointer to return TTL (can be NULL).
779 ** true -- if the host matched.
780 ** false -- otherwise.
784 dns_getcanonname(host, hbsize, trymx, statp, pttl)
791 register unsigned char *eom, *ap;
796 int ancount, qdcount;
809 char nbuf[SM_MAX(MAXPACKET, MAXDNAME*2+2)];
810 char *searchlist[MAXDNSRCH + 2];
813 sm_dprintf("dns_getcanonname(%s, trymx=%d)\n", host, trymx);
815 if ((_res.options & RES_INIT) == 0 && res_init() == -1)
817 *statp = EX_UNAVAILABLE;
824 ** Initialize domain search list. If there is at least one
825 ** dot in the name, search the unmodified name first so we
826 ** find "vse.CS" in Czechoslovakia instead of in the local
827 ** domain (e.g., vse.CS.Berkeley.EDU). Note that there is no
828 ** longer a country named Czechoslovakia but this type of problem
831 ** Older versions of the resolver could create this
832 ** list by tearing apart the host name.
837 /* Check for dots in the name */
838 for (cp = host, n = 0; *cp != '\0'; cp++)
843 ** If this is a simple name, determine whether it matches an
844 ** alias in the file defined by the environment variable HOSTALIASES.
847 if (n == 0 && (xp = gethostalias(host)) != NULL)
849 if (loopcnt++ > MAXCNAMEDEPTH)
851 syserr("loop in ${HOSTALIASES} file");
855 (void) sm_strlcpy(host, xp, hbsize);
861 ** Build the search list.
862 ** If there is at least one dot in name, start with a null
863 ** domain to search the unmodified name first.
864 ** If name does not end with a dot and search up local domain
865 ** tree desired, append each local domain component to the
866 ** search list; if name contains no dots and default domain
867 ** name is desired, append default domain name to search list;
868 ** else if name ends in a dot, remove that dot.
874 if (n >= 0 && *--cp != '.' && bitset(RES_DNSRCH, _res.options))
876 /* make sure there are less than MAXDNSRCH domains */
877 for (domain = RES_DNSRCH_VARIABLE, ret = 0;
878 *domain != NULL && ret < MAXDNSRCH;
882 else if (n == 0 && bitset(RES_DEFNAMES, _res.options))
884 *dp++ = _res.defdname;
893 ** Now loop through the search list, appending each domain in turn
894 ** name and searching for a match.
900 if (InetMode == AF_INET6)
902 # endif /* NETINET6 */
905 for (dp = searchlist; *dp != NULL; )
907 if (qtype == initial)
910 sm_dprintf("dns_getcanonname: trying %s.%s (%s)\n",
913 qtype == T_AAAA ? "AAAA" :
914 # endif /* NETINET6 */
916 qtype == T_MX ? "MX" :
919 ret = res_querydomain(host, *dp, C_IN, qtype,
920 answer.qb2, sizeof(answer.qb2));
923 int save_errno = errno;
926 sm_dprintf("\tNO: errno=%d, h_errno=%d\n",
927 save_errno, h_errno);
929 if (save_errno == ECONNREFUSED || h_errno == TRY_AGAIN)
932 ** the name server seems to be down or broken.
935 SM_SET_H_ERRNO(TRY_AGAIN);
936 # if _FFR_DONT_STOP_LOOKING
940 *statp = EX_TEMPFAIL;
943 # endif /* _FFR_DONT_STOP_LOOKING */
944 *statp = EX_TEMPFAIL;
946 if (WorkAroundBrokenAAAA)
949 ** Only return if not TRY_AGAIN as an
950 ** attempt with a different qtype may
951 ** succeed (res_querydomain() calls
952 ** res_query() calls res_send() which
953 ** sets errno to ETIMEDOUT if the
954 ** nameservers could be contacted but
955 ** didn't give an answer).
958 if (save_errno != ETIMEDOUT)
965 # if _FFR_DONT_STOP_LOOKING
967 # endif /* _FFR_DONT_STOP_LOOKING */
968 if (h_errno != HOST_NOT_FOUND)
970 /* might have another type of interest */
978 # endif /* NETINET6 */
979 if (qtype == T_A && !gotmx &&
980 (trymx || **dp == '\0'))
987 /* definite no -- try the next domain */
993 sm_dprintf("\tYES\n");
995 /* avoid problems after truncation in tcp packets */
996 if (ret > sizeof(answer))
997 ret = sizeof(answer);
1000 *statp = EX_SOFTWARE;
1005 ** Appear to have a match. Confirm it by searching for A or
1006 ** CNAME records. If we don't have a local domain
1007 ** wild card MX record, we will accept MX as well.
1010 hp = (HEADER *) &answer;
1011 ap = (unsigned char *) &answer + HFIXEDSZ;
1012 eom = (unsigned char *) &answer + ret;
1014 /* skip question part of response -- we know what we asked */
1015 for (qdcount = ntohs((unsigned short) hp->qdcount);
1017 ap += ret + QFIXEDSZ)
1019 if ((ret = dn_skipname(ap, eom)) < 0)
1022 sm_dprintf("qdcount failure (%d)\n",
1023 ntohs((unsigned short) hp->qdcount));
1024 *statp = EX_SOFTWARE;
1025 return false; /* ???XXX??? */
1030 for (ancount = ntohs((unsigned short) hp->ancount);
1031 --ancount >= 0 && ap < eom;
1034 n = dn_expand((unsigned char *) &answer, eom, ap,
1035 (RES_UNC_T) nbuf, sizeof nbuf);
1040 ap += INT16SZ; /* skip over class */
1042 GETSHORT(n, ap); /* rdlength */
1047 if (**dp != '\0' && HasWildcardMX)
1050 ** If we are using MX matches and have
1051 ** not yet gotten one, save this one
1052 ** but keep searching for an A or
1056 if (trymx && mxmatch == NULL)
1062 ** If we did not append a domain name, this
1063 ** must have been a canonical name to start
1064 ** with. Even if we did append a domain name,
1065 ** in the absence of a wildcard MX this must
1066 ** still be a real MX match.
1067 ** Such MX matches are as good as an A match,
1074 # endif /* NETINET6 */
1076 /* Flag that a good match was found */
1079 /* continue in case a CNAME also exists */
1083 if (DontExpandCnames)
1085 /* got CNAME -- guaranteed canonical */
1090 if (loopcnt++ > MAXCNAMEDEPTH)
1092 /*XXX should notify postmaster XXX*/
1093 message("DNS failure: CNAME loop for %s",
1095 if (CurEnv->e_message == NULL)
1099 (void) sm_snprintf(ebuf,
1101 "Deferred: DNS failure: CNAME loop for %.100s",
1105 CurEnv->e_rpool, ebuf);
1107 SM_SET_H_ERRNO(NO_RECOVERY);
1112 /* value points at name */
1113 if ((ret = dn_expand((unsigned char *)&answer,
1114 eom, ap, (RES_UNC_T) nbuf,
1117 (void) sm_strlcpy(host, nbuf, hbsize);
1120 ** RFC 1034 section 3.6 specifies that CNAME
1121 ** should point at the canonical name -- but
1122 ** urges software to try again anyway.
1128 /* not a record of interest */
1136 ** Got a good match -- either an A, CNAME, or an
1137 ** exact MX record. Save it and get out of here.
1145 ** Nothing definitive yet.
1146 ** If this was a T_A query and we haven't yet found a MX
1147 ** match, try T_MX if allowed to do so.
1148 ** Otherwise, try the next domain.
1152 if (qtype == T_AAAA)
1155 # endif /* NETINET6 */
1156 if (qtype == T_A && !gotmx && (trymx || **dp == '\0'))
1165 /* if nothing was found, we are done */
1166 if (mxmatch == NULL)
1168 if (*statp == EX_OK)
1174 ** Create canonical name and return.
1175 ** If saved domain name is null, name was already canonical.
1176 ** Otherwise append the saved domain name.
1179 (void) sm_snprintf(nbuf, sizeof nbuf, "%.*s%s%.*s", MAXDNAME, host,
1180 *mxmatch == '\0' ? "" : ".",
1182 (void) sm_strlcpy(host, nbuf, hbsize);
1184 sm_dprintf("dns_getcanonname: %s\n", host);
1187 /* return only one TTL entry, that should be sufficient */
1188 if (ttl > 0 && pttl != NULL)
1199 register char *p = NULL;
1200 long sff = SFF_REGONLY;
1202 static char hbuf[MAXDNAME];
1206 if (DontLockReadFiles)
1208 fname = getenv("HOSTALIASES");
1209 if (fname == NULL ||
1210 (fp = safefopen(fname, O_RDONLY, 0, sff)) == NULL)
1212 while (sm_io_fgets(fp, SM_TIME_DEFAULT, buf, sizeof buf) != NULL)
1214 for (p = buf; p != '\0' && !(isascii(*p) && isspace(*p)); p++)
1222 if (sm_strcasecmp(buf, host) == 0)
1229 (void) sm_io_close(fp, SM_TIME_DEFAULT);
1232 (void) sm_io_close(fp, SM_TIME_DEFAULT);
1234 /* got a match; extract the equivalent name */
1235 while (*p != '\0' && isascii(*p) && isspace(*p))
1238 while (*p != '\0' && !(isascii(*p) && isspace(*p)))
1241 (void) sm_strlcpy(hbuf, host, sizeof hbuf);
1244 #endif /* NAMED_BIND */