1 /* $Cambridge: exim/test/src/fakens.c,v 1.2 2006/02/16 10:05:34 ph10 Exp $ */
3 /*************************************************
4 * fakens - A Fake Nameserver Program *
5 *************************************************/
7 /* This program exists to support the testing of DNS handling code in Exim. It
8 avoids the need to install special zones in a real nameserver. When Exim is
9 running in its (new) test harness, DNS lookups are first passed to this program
10 instead of to the real resolver. (With a few exceptions - see the discussion in
11 the test suite's README file.) The program is also passed the name of the Exim
12 spool directory; it expects to find its "zone files" in ../dnszones relative to
13 that directory. Note that there is little checking in this program. The fake
14 zone files are assumed to be syntactically valid.
16 The zones that are handled are found by scanning the dnszones directory. A file
17 whose name is of the form db.ip4.x is a zone file for .x.in-addr.arpa; a file
18 whose name is of the form db.ip6.x is a zone file for .x.ip6.arpa; a file of
19 the form db.anything.else is a zone file for .anything.else. A file of the form
20 qualify.x.y specifies the domain that is used to qualify single-component
21 names, except for the name "dontqualify".
23 The arguments to the program are:
25 the name of the Exim spool directory
26 the domain name that is being sought
27 the DNS record type that is being sought
29 The output from the program is written to stdout. It is supposed to be in
30 exactly the same format as a traditional namserver response (see RFC 1035) so
31 that Exim can process it as normal. At present, no compression is used.
32 Error messages are written to stderr.
34 The return codes from the program are zero for success, and otherwise the
35 values that are set in h_errno after a failing call to the normal resolver:
37 1 HOST_NOT_FOUND host not found (authoritative)
38 2 TRY_AGAIN server failure
39 3 NO_RECOVERY non-recoverable error
40 4 NO_DATA valid name, no data of requested type
42 In a real nameserver, TRY_AGAIN is also used for a non-authoritative not found,
43 but it is not used for that here. There is also one extra return code:
45 5 PASS_ON requests Exim to call res_search()
47 This is used for zones that fakens does not recognize. It is also used if a
48 line in the zone file contains exactly this:
52 and the domain is not found. It converts the the result to PASS_ON instead of
61 #include <arpa/nameser.h>
62 #include <sys/types.h>
70 typedef unsigned char uschar;
73 #define CCS (const char *)
74 #define US (unsigned char *)
76 #define Ustrcat(s,t) strcat(CS(s),CCS(t))
77 #define Ustrchr(s,n) US strchr(CCS(s),n)
78 #define Ustrcmp(s,t) strcmp(CCS(s),CCS(t))
79 #define Ustrcpy(s,t) strcpy(CS(s),CCS(t))
80 #define Ustrlen(s) (int)strlen(CCS(s))
81 #define Ustrncmp(s,t,n) strncmp(CCS(s),CCS(t),n)
82 #define Ustrncpy(s,t,n) strncpy(CS(s),CCS(t),n)
84 typedef struct zoneitem {
89 typedef struct tlist {
94 /* On some (older?) operating systems, the standard ns_t_xxx definitions are
95 not available, and only the older T_xxx ones exist in nameser.h. If ns_t_a is
96 not defined, assume we are in this state. A really old system might not even
97 know about AAAA and SRV at all. */
102 #define ns_t_cname T_CNAME
103 #define ns_t_soa T_SOA
104 #define ns_t_ptr T_PTR
106 #define ns_t_txt T_TXT
107 #define ns_t_aaaa T_AAAA
108 #define ns_t_srv T_SRV
117 static tlist type_list[] = {
120 { US"CNAME", ns_t_cname },
121 /* { US"SOA", ns_t_soa }, Not currently in use */
122 { US"PTR", ns_t_ptr },
124 { US"TXT", ns_t_txt },
125 { US"AAAA", ns_t_aaaa },
126 { US"SRV", ns_t_srv },
132 /*************************************************
133 * Get memory and sprintf into it *
134 *************************************************/
136 /* This is used when building a table of zones and their files.
139 format a format string
142 Returns: pointer to formatted string
146 fcopystring(uschar *format, ...)
151 va_start(ap, format);
152 vsprintf(buffer, format, ap);
154 yield = (uschar *)malloc(Ustrlen(buffer) + 1);
155 Ustrcpy(yield, buffer);
160 /*************************************************
161 * Pack name into memory *
162 *************************************************/
164 /* This function packs a domain name into memory according to DNS rules. At
165 present, it doesn't do any compression.
171 Returns: the updated value of pk
175 packname(uschar *name, uschar *pk)
180 while (*p != 0 && *p != '.') p++;
182 memmove(pk, name, p - name);
184 name = (*p == 0)? p : p + 1;
192 /*************************************************
193 * Scan file for RRs *
194 *************************************************/
196 /* This function scans an open "zone file" for appropriate records, and adds
197 any that are found to the output buffer.
201 zone the current zone name
202 domain the domain we are looking for
203 qtype the type of RR we want
204 qtypelen the length of qtype
205 pkptr points to the output buffer pointer; this is updated
206 countptr points to the record count; this is updated
208 Returns: 0 on success, else HOST_NOT_FOUND or NO_DATA or NO_RECOVERY or
209 PASS_ON - the latter if a "PASS ON NOT FOUND" line is seen
213 find_records(FILE *f, uschar *zone, uschar *domain, uschar *qtype,
214 int qtypelen, uschar **pkptr, int *countptr)
216 int yield = HOST_NOT_FOUND;
217 int domainlen = Ustrlen(domain);
218 BOOL pass_on_not_found = FALSE;
222 uschar rrdomain[256];
223 uschar RRdomain[256];
225 /* Decode the required type */
227 for (typeptr = type_list; typeptr->name != NULL; typeptr++)
228 { if (Ustrcmp(typeptr->name, qtype) == 0) break; }
229 if (typeptr->name == NULL)
231 fprintf(stderr, "fakens: unknown record type %s\n", qtype);
235 rrdomain[0] = 0; /* No previous domain */
236 (void)fseek(f, 0, SEEK_SET); /* Start again at the beginning */
240 while (fgets(CS buffer, sizeof(buffer), f) != NULL)
244 BOOL found_cname = FALSE;
246 int tvalue = typeptr->value;
247 int qtlen = qtypelen;
250 while (isspace(*p)) p++;
251 if (*p == 0 || *p == ';') continue;
253 if (Ustrncmp(p, "PASS ON NOT FOUND", 17) == 0)
255 pass_on_not_found = TRUE;
259 ep = buffer + Ustrlen(buffer);
260 while (isspace(ep[-1])) ep--;
266 uschar *pp = rrdomain;
267 uschar *PP = RRdomain;
285 /* Compare domain names; first check for a wildcard */
287 if (rrdomain[0] == '*')
289 int restlen = Ustrlen(rrdomain) - 1;
290 if (domainlen > restlen &&
291 Ustrcmp(domain + domainlen - restlen, rrdomain + 1) != 0) continue;
294 /* Not a wildcard RR */
296 else if (Ustrcmp(domain, rrdomain) != 0) continue;
298 /* The domain matches */
300 if (yield == HOST_NOT_FOUND) yield = NO_DATA;
302 /* Compare RR types; a CNAME record is always returned */
304 while (isspace(*p)) p++;
306 if (Ustrncmp(p, "CNAME", 5) == 0)
312 else if (Ustrncmp(p, qtype, qtypelen) != 0 || !isspace(p[qtypelen])) continue;
314 /* Found a relevant record */
317 *countptr = *countptr + 1;
320 while (isspace(*p)) p++;
322 /* For a wildcard record, use the search name; otherwise use the record's
323 name in its original case because it might contain upper case letters. */
325 pk = packname((rrdomain[0] == '*')? domain : RRdomain, pk);
326 *pk++ = (tvalue >> 8) & 255;
327 *pk++ = (tvalue) & 255;
329 *pk++ = 1; /* class = IN */
331 pk += 4; /* TTL field; don't care */
333 rdlptr = pk; /* remember rdlength field */
336 /* The rest of the data depends on the type */
340 case ns_t_soa: /* Not currently used */
344 for (i = 0; i < 4; i++)
347 while (isdigit(*p)) value = value*10 + *p++ - '0';
353 /* The only occurrence of a double colon is for ::1 */
355 if (Ustrcmp(p, "::1") == 0)
361 else for (i = 0; i < 8; i++)
366 value = value * 16 + toupper(*p) - (isdigit(*p)? '0' : '7');
369 *pk++ = (value >> 8) & 255;
377 while (isdigit(*p)) value = value*10 + *p++ - '0';
378 while (isspace(*p)) p++;
379 *pk++ = (value >> 8) & 255;
381 if (ep[-1] != '.') sprintf(ep, "%s.", zone);
382 pk = packname(p, pk);
388 if (*p == '"') p++; /* Should always be the case */
389 while (*p != 0 && *p != '"') *pk++ = *p++;
394 for (i = 0; i < 3; i++)
397 while (isdigit(*p)) value = value*10 + *p++ - '0';
398 while (isspace(*p)) p++;
399 *pk++ = (value >> 8) & 255;
408 if (ep[-1] != '.') sprintf(ep, "%s.", zone);
409 pk = packname(p, pk);
414 /* Fill in the length, and we are done with this RR */
416 rdlptr[0] = ((pk - rdlptr - 2) >> 8) & 255;
417 rdlptr[1] = (pk -rdlptr - 2) & 255;
419 /* If we have just yielded a CNAME, we must change the domain name to the
420 new domain, and re-start the scan from the beginning. */
424 domain = fcopystring("%s", p);
425 domainlen = Ustrlen(domain);
426 domain[domainlen - 1] = 0; /* Removed trailing dot */
427 rrdomain[0] = 0; /* No previous domain */
428 (void)fseek(f, 0, SEEK_SET); /* Start again at the beginning */
433 return (yield == HOST_NOT_FOUND && pass_on_not_found)? PASS_ON : yield;
438 /*************************************************
439 * Entry point and main program *
440 *************************************************/
443 main(int argc, char **argv)
447 int domlen, qtypelen;
453 uschar *qualify = NULL;
455 uschar *zonefile = NULL;
464 fprintf(stderr, "fakens: expected 3 arguments, received %d\n", argc-1);
470 (void)sprintf(buffer, "%s/../dnszones", argv[1]);
472 d = opendir(CCS buffer);
475 fprintf(stderr, "fakens: failed to opendir %s: %s\n", buffer,
480 while ((de = readdir(d)) != NULL)
482 uschar *name = de->d_name;
483 if (Ustrncmp(name, "qualify.", 8) == 0)
485 qualify = fcopystring("%s", name + 7);
488 if (Ustrncmp(name, "db.", 3) != 0) continue;
489 if (Ustrncmp(name + 3, "ip4.", 4) == 0)
490 zones[zonecount].zone = fcopystring("%s.in-addr.arpa", name + 6);
491 else if (Ustrncmp(name + 3, "ip6.", 4) == 0)
492 zones[zonecount].zone = fcopystring("%s.ip6.arpa", name + 6);
494 zones[zonecount].zone = fcopystring("%s", name + 2);
495 zones[zonecount++].zonefile = fcopystring("%s", name);
499 /* Get the RR type and upper case it, and check that we recognize it. */
501 Ustrncpy(qtype, argv[3], sizeof(qtype));
502 qtypelen = Ustrlen(qtype);
503 for (p = qtype; *p != 0; p++) *p = toupper(*p);
505 /* Find the domain, lower case it, check that it is in a zone that we handle,
506 and set up the zone file name. The zone names in the table all start with a
509 domlen = Ustrlen(argv[2]);
510 if (argv[2][domlen-1] == '.') domlen--;
511 Ustrncpy(domain, argv[2], domlen);
513 for (i = 0; i < domlen; i++) domain[i] = tolower(domain[i]);
515 if (Ustrchr(domain, '.') == NULL && qualify != NULL &&
516 Ustrcmp(domain, "dontqualify") != 0)
518 Ustrcat(domain, qualify);
519 domlen += Ustrlen(qualify);
522 for (i = 0; i < zonecount; i++)
525 zone = zones[i].zone;
526 zlen = Ustrlen(zone);
527 if (Ustrcmp(domain, zone+1) == 0 || (domlen >= zlen &&
528 Ustrcmp(domain + domlen - zlen, zone) == 0))
530 zonefile = zones[i].zonefile;
535 if (zonefile == NULL)
537 fprintf(stderr, "fakens: query not in faked zone: domain is: %s\n", domain);
541 (void)sprintf(buffer, "%s/../dnszones/%s", argv[1], zonefile);
543 /* Initialize the start of the response packet. We don't have to fake up
544 everything, because we know that Exim will look only at the answer and
545 additional section parts. */
547 memset(packet, 0, 12);
550 /* Open the zone file. */
552 f = fopen(buffer, "r");
555 fprintf(stderr, "fakens: failed to open %s: %s\n", buffer, strerror(errno));
559 /* Find the records we want, and add them to the result. */
562 yield = find_records(f, zone, domain, qtype, qtypelen, &pk, &count);
563 if (yield == NO_RECOVERY) goto END_OFF;
565 packet[6] = (count >> 8) & 255;
566 packet[7] = count & 255;
568 /* There is no need to return any additional records because Exim no longer
569 (from release 4.61) makes any use of them. */
574 /* Close the zone file, write the result, and return. */
578 (void)fwrite(packet, 1, pk - packet, stdout);
582 /* End of fakens.c */