Add retrans/retry options to dnsdb lookup. Bug 1539
[exim.git] / src / src / lookups / dnsdb.c
CommitLineData
0756eb3c
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5a66c31b 5/* Copyright (c) University of Cambridge 1995 - 2014 */
0756eb3c
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8#include "../exim.h"
9#include "lf_functions.h"
0756eb3c
PH
10
11
12
13/* Ancient systems (e.g. SunOS4) don't appear to have T_TXT defined in their
14header files. */
15
16#ifndef T_TXT
17#define T_TXT 16
18#endif
19
eae0036b
PP
20/* Many systems do not have T_SPF. */
21#ifndef T_SPF
22#define T_SPF 99
23#endif
24
1e06383a
TL
25/* New TLSA record for DANE */
26#ifndef T_TLSA
27#define T_TLSA 52
28#endif
29
0756eb3c
PH
30/* Table of recognized DNS record types and their integer values. */
31
1ba28e2b 32static const char *type_names[] = {
0756eb3c
PH
33 "a",
34#if HAVE_IPV6
3a796370 35 "a+",
0756eb3c 36 "aaaa",
0756eb3c
PH
37#endif
38 "cname",
e5a9dba6 39 "csa",
0756eb3c 40 "mx",
ea3bc19b 41 "mxh",
0756eb3c
PH
42 "ns",
43 "ptr",
eae0036b 44 "spf",
0756eb3c 45 "srv",
1e06383a 46 "tlsa",
33397d19 47 "txt",
8e669ac1 48 "zns"
33397d19 49};
0756eb3c
PH
50
51static int type_values[] = {
52 T_A,
53#if HAVE_IPV6
66be95e0 54 T_ADDRESSES, /* Private type for AAAA + A */
0756eb3c 55 T_AAAA,
0756eb3c
PH
56#endif
57 T_CNAME,
e5a9dba6 58 T_CSA, /* Private type for "Client SMTP Authorization". */
0756eb3c 59 T_MX,
ea3bc19b 60 T_MXH, /* Private type for "MX hostnames" */
0756eb3c
PH
61 T_NS,
62 T_PTR,
eae0036b 63 T_SPF,
0756eb3c 64 T_SRV,
1e06383a 65 T_TLSA,
33397d19
PH
66 T_TXT,
67 T_ZNS /* Private type for "zone nameservers" */
68};
0756eb3c
PH
69
70
71/*************************************************
72* Open entry point *
73*************************************************/
74
75/* See local README for interface description. */
76
e6d225ae 77static void *
0756eb3c
PH
78dnsdb_open(uschar *filename, uschar **errmsg)
79{
80filename = filename; /* Keep picky compilers happy */
81errmsg = errmsg; /* Ditto */
82return (void *)(-1); /* Any non-0 value */
83}
84
85
86
87/*************************************************
88* Find entry point for dnsdb *
89*************************************************/
90
7bb56e1f
PH
91/* See local README for interface description. The query in the "keystring" may
92consist of a number of parts.
93
8e669ac1
PH
94(a) If the first significant character is '>' then the next character is the
95separator character that is used when multiple records are found. The default
7bb56e1f
PH
96separator is newline.
97
0d0c6357
NM
98(b) If the next character is ',' then the next character is the separator
99character used for multiple items of text in "TXT" records. Alternatively,
100if the next character is ';' then these multiple items are concatenated with
101no separator. With neither of these options specified, only the first item
8ee4b30e
PP
102is output. Similarly for "SPF" records, but the default for joining multiple
103items in one SPF record is the empty string, for direct concatenation.
0d0c6357 104
fd7f7910
JH
105(c) Options, all comma-terminated, in any order. Any unrecognised option
106terminates option processing. Recognised options are:
107
108- 'defer_FOO': set the defer behaviour to FOO. The possible behaviours are:
109'strict', where any defer causes the whole lookup to defer; 'lax', where a defer
110causes the whole lookup to defer only if none of the DNS queries succeeds; and
111'never', where all defers are as if the lookup failed. The default is 'lax'.
112
113- 'dnssec_FOO', with 'strict', 'lax' and 'never' (default). The meanings are
fd3b6a4a
JH
114require, try and don't-try dnssec respectively.
115
fd7f7910
JH
116- 'retrans_VAL', set the timeout value. VAL is an Exim time specification
117(eg "5s"). The default is set by the main configuration option 'dns_retrans'.
118
119- 'retry_VAL', set the retry count on timeouts. VAL is an integer. The
120default is set by the main configuration option "dns_retry".
121
122(d) If the next sequence of characters is a sequence of letters and digits
8e669ac1 123followed by '=', it is interpreted as the name of the DNS record type. The
ff4dbb19 124default is "TXT".
7bb56e1f 125
fd7f7910 126(e) Then there follows list of domain names. This is a generalized Exim list,
8e669ac1 127which may start with '<' in order to set a specific separator. The default
7bb56e1f 128separator, as always, is colon. */
0756eb3c 129
e6d225ae 130static int
55414b25 131dnsdb_find(void *handle, uschar *filename, const uschar *keystring, int length,
0756eb3c
PH
132 uschar **result, uschar **errmsg, BOOL *do_cache)
133{
134int rc;
135int size = 256;
136int ptr = 0;
7bb56e1f 137int sep = 0;
ff4dbb19 138int defer_mode = PASS;
fd3b6a4a 139int dnssec_mode = OK;
fd7f7910
JH
140int save_retrans = dns_retrans;
141int save_retry = dns_retry;
542bc632 142int type;
c38d6da9 143int failrc = FAIL;
55414b25
JH
144const uschar *outsep = CUS"\n";
145const uschar *outsep2 = NULL;
e5a9dba6 146uschar *equals, *domain, *found;
0756eb3c
PH
147
148/* Because we're the working in the search pool, we try to reclaim as much
149store as possible later, so we preallocate the result here */
150
151uschar *yield = store_get(size);
152
153dns_record *rr;
154dns_answer dnsa;
155dns_scan dnss;
156
157handle = handle; /* Keep picky compilers happy */
158filename = filename;
159length = length;
160do_cache = do_cache;
161
0d0c6357
NM
162/* If the string starts with '>' we change the output separator.
163If it's followed by ';' or ',' we set the TXT output separator. */
0756eb3c 164
7bb56e1f
PH
165while (isspace(*keystring)) keystring++;
166if (*keystring == '>')
0756eb3c 167 {
7bb56e1f 168 outsep = keystring + 1;
8e669ac1 169 keystring += 2;
0d0c6357
NM
170 if (*keystring == ',')
171 {
172 outsep2 = keystring + 1;
173 keystring += 2;
174 }
175 else if (*keystring == ';')
176 {
177 outsep2 = US"";
178 keystring++;
179 }
7bb56e1f 180 while (isspace(*keystring)) keystring++;
8e669ac1 181 }
7bb56e1f 182
fd3b6a4a 183/* Check for a modifier keyword. */
ff4dbb19 184
fd7f7910 185for (;;)
ff4dbb19 186 {
fd3b6a4a 187 if (strncmpic(keystring, US"defer_", 6) == 0)
ff4dbb19 188 {
ff4dbb19 189 keystring += 6;
fd3b6a4a 190 if (strncmpic(keystring, US"strict", 6) == 0)
fd7f7910 191 { defer_mode = DEFER; keystring += 6; }
fd3b6a4a 192 else if (strncmpic(keystring, US"lax", 3) == 0)
fd7f7910 193 { defer_mode = PASS; keystring += 3; }
fd3b6a4a 194 else if (strncmpic(keystring, US"never", 5) == 0)
fd7f7910 195 { defer_mode = OK; keystring += 5; }
fd3b6a4a
JH
196 else
197 {
198 *errmsg = US"unsupported dnsdb defer behaviour";
199 return DEFER;
200 }
ff4dbb19 201 }
fd7f7910 202 else if (strncmpic(keystring, US"dnssec_", 7) == 0)
ff4dbb19 203 {
fd3b6a4a
JH
204 keystring += 7;
205 if (strncmpic(keystring, US"strict", 6) == 0)
fd7f7910 206 { dnssec_mode = DEFER; keystring += 6; }
fd3b6a4a 207 else if (strncmpic(keystring, US"lax", 3) == 0)
fd7f7910
JH
208 { dnssec_mode = PASS; keystring += 3; }
209 else if (strncmpic(keystring, US"never", 5) == 0)
210 { dnssec_mode = OK; keystring += 5; }
211 else
fd3b6a4a 212 {
fd7f7910
JH
213 *errmsg = US"unsupported dnsdb dnssec behaviour";
214 return DEFER;
fd3b6a4a 215 }
fd7f7910
JH
216 }
217 else if (strncmpic(keystring, US"retrans_", 8) == 0)
218 {
219 int timeout_sec;
220 if ((timeout_sec = readconf_readtime(keystring += 8, ',', FALSE)) <= 0)
fd3b6a4a 221 {
fd7f7910
JH
222 *errmsg = US"unsupported dnsdb timeout value";
223 return DEFER;
fd3b6a4a 224 }
fd7f7910
JH
225 dns_retrans = timeout_sec;
226 while (*keystring != ',') keystring++;
227 }
228 else if (strncmpic(keystring, US"retry_", 6) == 0)
229 {
230 int retries;
231 if ((retries = (int)strtol(keystring + 6, CSS &keystring, 0)) < 0)
fd3b6a4a 232 {
fd7f7910 233 *errmsg = US"unsupported dnsdb retry count";
fd3b6a4a
JH
234 return DEFER;
235 }
fd7f7910 236 dns_retry = retries;
ff4dbb19 237 }
fd7f7910
JH
238 else
239 break;
240
ff4dbb19
PH
241 while (isspace(*keystring)) keystring++;
242 if (*keystring++ != ',')
243 {
fd3b6a4a 244 *errmsg = US"dnsdb modifier syntax error";
ff4dbb19
PH
245 return DEFER;
246 }
247 while (isspace(*keystring)) keystring++;
248 }
249
542bc632
PP
250/* Figure out the "type" value if it is not T_TXT.
251If the keystring contains an = this must be preceded by a valid type name. */
7bb56e1f 252
542bc632 253type = T_TXT;
7bb56e1f
PH
254if ((equals = Ustrchr(keystring, '=')) != NULL)
255 {
256 int i, len;
257 uschar *tend = equals;
8e669ac1
PH
258
259 while (tend > keystring && isspace(tend[-1])) tend--;
260 len = tend - keystring;
261
0756eb3c
PH
262 for (i = 0; i < sizeof(type_names)/sizeof(uschar *); i++)
263 {
264 if (len == Ustrlen(type_names[i]) &&
265 strncmpic(keystring, US type_names[i], len) == 0)
266 {
267 type = type_values[i];
268 break;
269 }
270 }
8e669ac1 271
0756eb3c
PH
272 if (i >= sizeof(type_names)/sizeof(uschar *))
273 {
274 *errmsg = US"unsupported DNS record type";
275 return DEFER;
276 }
8e669ac1 277
7bb56e1f
PH
278 keystring = equals + 1;
279 while (isspace(*keystring)) keystring++;
0756eb3c 280 }
8e669ac1 281
7bb56e1f 282/* Initialize the resolver in case this is the first time it has been used. */
0756eb3c 283
fd3b6a4a 284dns_init(FALSE, FALSE, dnssec_mode != OK);
0756eb3c 285
8e669ac1
PH
286/* The remainder of the string must be a list of domains. As long as the lookup
287for at least one of them succeeds, we return success. Failure means that none
288of them were found.
0756eb3c 289
8e669ac1
PH
290The original implementation did not support a list of domains. Adding the list
291feature is compatible, except in one case: when PTR records are being looked up
292for a single IPv6 address. Fortunately, we can hack in a compatibility feature
293here: If the type is PTR and no list separator is specified, and the entire
294remaining string is valid as an IP address, set an impossible separator so that
7bb56e1f 295it is treated as one item. */
33397d19 296
7bb56e1f 297if (type == T_PTR && keystring[0] != '<' &&
7e66e54d 298 string_is_ip_address(keystring, NULL) != 0)
7bb56e1f 299 sep = -1;
0756eb3c 300
542bc632
PP
301/* SPF strings should be concatenated without a separator, thus make
302it the default if not defined (see RFC 4408 section 3.1.3).
303Multiple SPF records are forbidden (section 3.1.2) but are currently
be36e572
JH
304not handled specially, thus they are concatenated with \n by default.
305MX priority and value are space-separated by default.
306SRV and TLSA record parts are space-separated by default. */
542bc632 307
be36e572
JH
308if (!outsep2) switch(type)
309 {
310 case T_SPF: outsep2 = US""; break;
311 case T_SRV: case T_MX: case T_TLSA: outsep2 = US" "; break;
312 }
542bc632 313
7bb56e1f 314/* Now scan the list and do a lookup for each item */
0756eb3c 315
fd7f7910 316while ((domain = string_nextinlist(&keystring, &sep, NULL, 0)))
8e669ac1 317 {
7bb56e1f 318 uschar rbuffer[256];
e5a9dba6
PH
319 int searchtype = (type == T_CSA)? T_SRV : /* record type we want */
320 (type == T_MXH)? T_MX :
321 (type == T_ZNS)? T_NS : type;
322
323 /* If the type is PTR or CSA, we have to construct the relevant magic lookup
324 key if the original is an IP address (some experimental protocols are using
325 PTR records for different purposes where the key string is a host name, and
326 Exim's extended CSA can be keyed by domains or IP addresses). This code for
327 doing the reversal is now in a separate function. */
328
329 if ((type == T_PTR || type == T_CSA) &&
7e66e54d 330 string_is_ip_address(domain, NULL) != 0)
0756eb3c 331 {
7bb56e1f
PH
332 dns_build_reverse(domain, rbuffer);
333 domain = rbuffer;
0756eb3c 334 }
8e669ac1 335
3a796370 336 do
c38d6da9 337 {
3a796370
JH
338 DEBUG(D_lookup) debug_printf("dnsdb key: %s\n", domain);
339
340 /* Do the lookup and sort out the result. There are four special types that
66be95e0 341 are handled specially: T_CSA, T_ZNS, T_ADDRESSES and T_MXH.
3a796370 342 The first two are handled in a special lookup function so that the facility
66be95e0 343 could be used from other parts of the Exim code. T_ADDRESSES is handled by looping
3a796370
JH
344 over the types of A lookup. T_MXH affects only what happens later on in
345 this function, but for tidiness it is handled by the "special". If the
346 lookup fails, continue with the next domain. In the case of DEFER, adjust
347 the final "nothing found" result, but carry on to the next domain. */
348
349 found = domain;
6abc190a 350#if HAVE_IPV6
66be95e0 351 if (type == T_ADDRESSES) /* NB cannot happen unless HAVE_IPV6 */
3a796370 352 {
cc00f4af 353 if (searchtype == T_ADDRESSES) searchtype = T_AAAA;
3a796370 354 else if (searchtype == T_AAAA) searchtype = T_A;
55414b25 355 rc = dns_special_lookup(&dnsa, domain, searchtype, CUSS &found);
3a796370
JH
356 }
357 else
6abc190a 358#endif
55414b25 359 rc = dns_special_lookup(&dnsa, domain, type, CUSS &found);
ea3bc19b 360
4e0983dc
JH
361 lookup_dnssec_authenticated = dnssec_mode==OK ? NULL
362 : dns_is_secure(&dnsa) ? US"yes" : US"no";
363
3a796370 364 if (rc == DNS_NOMATCH || rc == DNS_NODATA) continue;
91f40ccd 365 if ( rc != DNS_SUCCEED
9852336a 366 || (dnssec_mode == DEFER && !dns_is_secure(&dnsa))
91f40ccd 367 )
3a796370 368 {
fd3b6a4a
JH
369 if (defer_mode == DEFER)
370 {
fd7f7910
JH
371 dns_retrans = save_retrans;
372 dns_retry = save_retry;
9d9c3746 373 dns_init(FALSE, FALSE, FALSE); /* clr dnssec bit */
fd3b6a4a
JH
374 return DEFER; /* always defer */
375 }
3a796370
JH
376 if (defer_mode == PASS) failrc = DEFER; /* defer only if all do */
377 continue; /* treat defer as fail */
378 }
fd3b6a4a 379
8e669ac1 380
3a796370 381 /* Search the returned records */
8e669ac1 382
3a796370
JH
383 for (rr = dns_next_rr(&dnsa, &dnss, RESET_ANSWERS);
384 rr != NULL;
385 rr = dns_next_rr(&dnsa, &dnss, RESET_NEXT))
0756eb3c 386 {
3a796370
JH
387 if (rr->type != searchtype) continue;
388
389 /* There may be several addresses from an A6 record. Put the configured
390 separator between them, just as for between several records. However, A6
391 support is not normally configured these days. */
392
cc00f4af 393 if (type == T_A || type == T_AAAA || type == T_ADDRESSES)
7bb56e1f 394 {
3a796370
JH
395 dns_address *da;
396 for (da = dns_address_from_rr(&dnsa, rr); da != NULL; da = da->next)
397 {
398 if (ptr != 0) yield = string_cat(yield, &size, &ptr, outsep, 1);
399 yield = string_cat(yield, &size, &ptr, da->address,
400 Ustrlen(da->address));
401 }
402 continue;
7bb56e1f 403 }
8e669ac1 404
3a796370
JH
405 /* Other kinds of record just have one piece of data each, but there may be
406 several of them, of course. */
8e669ac1 407
3a796370 408 if (ptr != 0) yield = string_cat(yield, &size, &ptr, outsep, 1);
8e669ac1 409
3a796370 410 if (type == T_TXT || type == T_SPF)
80a47a2c 411 {
3a796370 412 if (outsep2 == NULL)
0d0c6357 413 {
3a796370
JH
414 /* output only the first item of data */
415 yield = string_cat(yield, &size, &ptr, (uschar *)(rr->data+1),
416 (rr->data)[0]);
417 }
418 else
419 {
420 /* output all items */
421 int data_offset = 0;
422 while (data_offset < rr->size)
423 {
424 uschar chunk_len = (rr->data)[data_offset++];
425 if (outsep2[0] != '\0' && data_offset != 1)
426 yield = string_cat(yield, &size, &ptr, outsep2, 1);
427 yield = string_cat(yield, &size, &ptr,
0d0c6357 428 (uschar *)((rr->data)+data_offset), chunk_len);
3a796370
JH
429 data_offset += chunk_len;
430 }
0d0c6357 431 }
80a47a2c 432 }
1e06383a
TL
433 else if (type == T_TLSA)
434 {
435 uint8_t usage, selector, matching_type;
436 uint16_t i, payload_length;
437 uschar s[MAX_TLSA_EXPANDED_SIZE];
438 uschar * sp = s;
439 uschar *p = (uschar *)(rr->data);
440
441 usage = *p++;
442 selector = *p++;
443 matching_type = *p++;
444 /* What's left after removing the first 3 bytes above */
445 payload_length = rr->size - 3;
be36e572
JH
446 sp += sprintf(CS s, "%d%c%d%c%d%c", usage, *outsep2,
447 selector, *outsep2, matching_type, *outsep2);
1e06383a
TL
448 /* Now append the cert/identifier, one hex char at a time */
449 for (i=0;
450 i < payload_length && sp-s < (MAX_TLSA_EXPANDED_SIZE - 4);
451 i++)
452 {
453 sp += sprintf(CS sp, "%02x", (unsigned char)p[i]);
454 }
455 yield = string_cat(yield, &size, &ptr, s, Ustrlen(s));
456 }
3a796370 457 else /* T_CNAME, T_CSA, T_MX, T_MXH, T_NS, T_PTR, T_SRV */
e5a9dba6 458 {
3a796370
JH
459 int priority, weight, port;
460 uschar s[264];
461 uschar *p = (uschar *)(rr->data);
e5a9dba6 462
3a796370 463 if (type == T_MXH)
e5a9dba6 464 {
3a796370
JH
465 /* mxh ignores the priority number and includes only the hostnames */
466 GETSHORT(priority, p);
e5a9dba6 467 }
3a796370 468 else if (type == T_MX)
e5a9dba6 469 {
3a796370 470 GETSHORT(priority, p);
be36e572 471 sprintf(CS s, "%d%c", priority, *outsep2);
3a796370
JH
472 yield = string_cat(yield, &size, &ptr, s, Ustrlen(s));
473 }
474 else if (type == T_SRV)
475 {
476 GETSHORT(priority, p);
477 GETSHORT(weight, p);
478 GETSHORT(port, p);
be36e572
JH
479 sprintf(CS s, "%d%c%d%c%d%c", priority, *outsep2,
480 weight, *outsep2, port, *outsep2);
3a796370
JH
481 yield = string_cat(yield, &size, &ptr, s, Ustrlen(s));
482 }
483 else if (type == T_CSA)
484 {
485 /* See acl_verify_csa() for more comments about CSA. */
486
487 GETSHORT(priority, p);
488 GETSHORT(weight, p);
489 GETSHORT(port, p);
490
491 if (priority != 1) continue; /* CSA version must be 1 */
492
493 /* If the CSA record we found is not the one we asked for, analyse
494 the subdomain assertions in the port field, else analyse the direct
495 authorization status in the weight field. */
496
1dc92d5a 497 if (Ustrcmp(found, domain) != 0)
3a796370
JH
498 {
499 if (port & 1) *s = 'X'; /* explicit authorization required */
500 else *s = '?'; /* no subdomain assertions here */
501 }
502 else
503 {
504 if (weight < 2) *s = 'N'; /* not authorized */
505 else if (weight == 2) *s = 'Y'; /* authorized */
506 else if (weight == 3) *s = '?'; /* unauthorizable */
507 else continue; /* invalid */
508 }
509
510 s[1] = ' ';
511 yield = string_cat(yield, &size, &ptr, s, 2);
e5a9dba6
PH
512 }
513
3a796370 514 /* GETSHORT() has advanced the pointer to the target domain. */
8e669ac1 515
3a796370
JH
516 rc = dn_expand(dnsa.answer, dnsa.answer + dnsa.answerlen, p,
517 (DN_EXPAND_ARG4_TYPE)(s), sizeof(s));
8e669ac1 518
3a796370
JH
519 /* If an overlong response was received, the data will have been
520 truncated and dn_expand may fail. */
8e669ac1 521
3a796370
JH
522 if (rc < 0)
523 {
524 log_write(0, LOG_MAIN, "host name alias list truncated: type=%s "
525 "domain=%s", dns_text_type(type), domain);
526 break;
527 }
528 else yield = string_cat(yield, &size, &ptr, s, Ustrlen(s));
7bb56e1f 529 }
3a796370
JH
530 } /* Loop for list of returned records */
531
532 /* Loop for set of A-lookupu types */
66be95e0 533 } while (type == T_ADDRESSES && searchtype != T_A);
3a796370
JH
534
535 } /* Loop for list of domains */
7bb56e1f
PH
536
537/* Reclaim unused memory */
0756eb3c 538
7bb56e1f
PH
539store_reset(yield + ptr + 1);
540
8e669ac1 541/* If ptr == 0 we have not found anything. Otherwise, insert the terminating
7bb56e1f
PH
542zero and return the result. */
543
fd7f7910
JH
544dns_retrans = save_retrans;
545dns_retry = save_retry;
fd3b6a4a
JH
546dns_init(FALSE, FALSE, FALSE); /* clear the dnssec bit for getaddrbyname */
547
c38d6da9 548if (ptr == 0) return failrc;
0756eb3c 549yield[ptr] = 0;
0756eb3c 550*result = yield;
0756eb3c
PH
551return OK;
552}
553
6545de78
PP
554
555
556/*************************************************
557* Version reporting entry point *
558*************************************************/
559
560/* See local README for interface description. */
561
562#include "../version.h"
563
564void
565dnsdb_version_report(FILE *f)
566{
567#ifdef DYNLOOKUP
568fprintf(f, "Library version: DNSDB: Exim version %s\n", EXIM_VERSION_STR);
569#endif
570}
571
572
e6d225ae
DW
573static lookup_info _lookup_info = {
574 US"dnsdb", /* lookup name */
575 lookup_querystyle, /* query style */
576 dnsdb_open, /* open function */
577 NULL, /* check function */
578 dnsdb_find, /* find function */
579 NULL, /* no close function */
580 NULL, /* no tidy function */
6545de78
PP
581 NULL, /* no quoting function */
582 dnsdb_version_report /* version reporting */
e6d225ae
DW
583};
584
585#ifdef DYNLOOKUP
586#define dnsdb_lookup_module_info _lookup_module_info
587#endif
588
589static lookup_info *_lookup_list[] = { &_lookup_info };
590lookup_module_info dnsdb_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };
591
fd3b6a4a
JH
592/* vi: aw ai sw=2
593*/
0756eb3c 594/* End of lookups/dnsdb.c */