]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/bind9/bin/dig/nslookup.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / bind9 / bin / dig / nslookup.c
1 /*
2  * Copyright (C) 2004-2011  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2000-2003  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: nslookup.c,v 1.127.38.2 2011-02-28 01:19:58 tbox Exp $ */
19
20 #include <config.h>
21
22 #include <stdlib.h>
23
24 #include <isc/app.h>
25 #include <isc/buffer.h>
26 #include <isc/commandline.h>
27 #include <isc/event.h>
28 #include <isc/parseint.h>
29 #include <isc/print.h>
30 #include <isc/string.h>
31 #include <isc/timer.h>
32 #include <isc/util.h>
33 #include <isc/task.h>
34 #include <isc/netaddr.h>
35
36 #include <dns/message.h>
37 #include <dns/name.h>
38 #include <dns/fixedname.h>
39 #include <dns/rdata.h>
40 #include <dns/rdataclass.h>
41 #include <dns/rdataset.h>
42 #include <dns/rdatastruct.h>
43 #include <dns/rdatatype.h>
44 #include <dns/byaddr.h>
45
46 #include <dig/dig.h>
47
48 static isc_boolean_t short_form = ISC_TRUE,
49         tcpmode = ISC_FALSE,
50         identify = ISC_FALSE, stats = ISC_TRUE,
51         comments = ISC_TRUE, section_question = ISC_TRUE,
52         section_answer = ISC_TRUE, section_authority = ISC_TRUE,
53         section_additional = ISC_TRUE, recurse = ISC_TRUE,
54         aaonly = ISC_FALSE, nofail = ISC_TRUE;
55
56 static isc_boolean_t in_use = ISC_FALSE;
57 static char defclass[MXRD] = "IN";
58 static char deftype[MXRD] = "A";
59 static isc_event_t *global_event = NULL;
60
61 static char domainopt[DNS_NAME_MAXTEXT];
62
63 static const char *rcodetext[] = {
64         "NOERROR",
65         "FORMERR",
66         "SERVFAIL",
67         "NXDOMAIN",
68         "NOTIMP",
69         "REFUSED",
70         "YXDOMAIN",
71         "YXRRSET",
72         "NXRRSET",
73         "NOTAUTH",
74         "NOTZONE",
75         "RESERVED11",
76         "RESERVED12",
77         "RESERVED13",
78         "RESERVED14",
79         "RESERVED15",
80         "BADVERS"
81 };
82
83 static const char *rtypetext[] = {
84         "rtype_0 = ",                   /* 0 */
85         "internet address = ",          /* 1 */
86         "nameserver = ",                /* 2 */
87         "md = ",                        /* 3 */
88         "mf = ",                        /* 4 */
89         "canonical name = ",            /* 5 */
90         "soa = ",                       /* 6 */
91         "mb = ",                        /* 7 */
92         "mg = ",                        /* 8 */
93         "mr = ",                        /* 9 */
94         "rtype_10 = ",                  /* 10 */
95         "protocol = ",                  /* 11 */
96         "name = ",                      /* 12 */
97         "hinfo = ",                     /* 13 */
98         "minfo = ",                     /* 14 */
99         "mail exchanger = ",            /* 15 */
100         "text = ",                      /* 16 */
101         "rp = ",                        /* 17 */
102         "afsdb = ",                     /* 18 */
103         "x25 address = ",               /* 19 */
104         "isdn address = ",              /* 20 */
105         "rt = ",                        /* 21 */
106         "nsap = ",                      /* 22 */
107         "nsap_ptr = ",                  /* 23 */
108         "signature = ",                 /* 24 */
109         "key = ",                       /* 25 */
110         "px = ",                        /* 26 */
111         "gpos = ",                      /* 27 */
112         "has AAAA address ",            /* 28 */
113         "loc = ",                       /* 29 */
114         "next = ",                      /* 30 */
115         "rtype_31 = ",                  /* 31 */
116         "rtype_32 = ",                  /* 32 */
117         "service = ",                   /* 33 */
118         "rtype_34 = ",                  /* 34 */
119         "naptr = ",                     /* 35 */
120         "kx = ",                        /* 36 */
121         "cert = ",                      /* 37 */
122         "v6 address = ",                /* 38 */
123         "dname = ",                     /* 39 */
124         "rtype_40 = ",                  /* 40 */
125         "optional = "                   /* 41 */
126 };
127
128 #define N_KNOWN_RRTYPES (sizeof(rtypetext) / sizeof(rtypetext[0]))
129
130 static void flush_lookup_list(void);
131 static void getinput(isc_task_t *task, isc_event_t *event);
132
133 static char *
134 rcode_totext(dns_rcode_t rcode)
135 {
136         static char buf[sizeof("?65535")];
137         union {
138                 const char *consttext;
139                 char *deconsttext;
140         } totext;
141
142         if (rcode >= (sizeof(rcodetext)/sizeof(rcodetext[0]))) {
143                 snprintf(buf, sizeof(buf), "?%u", rcode);
144                 totext.deconsttext = buf;
145         } else
146                 totext.consttext = rcodetext[rcode];
147         return totext.deconsttext;
148 }
149
150 void
151 dighost_shutdown(void) {
152         isc_event_t *event = global_event;
153
154         flush_lookup_list();
155         debug("dighost_shutdown()");
156
157         if (!in_use) {
158                 isc_app_shutdown();
159                 return;
160         }
161
162         isc_task_send(global_task, &event);
163 }
164
165 static void
166 printsoa(dns_rdata_t *rdata) {
167         dns_rdata_soa_t soa;
168         isc_result_t result;
169         char namebuf[DNS_NAME_FORMATSIZE];
170
171         result = dns_rdata_tostruct(rdata, &soa, NULL);
172         check_result(result, "dns_rdata_tostruct");
173
174         dns_name_format(&soa.origin, namebuf, sizeof(namebuf));
175         printf("\torigin = %s\n", namebuf);
176         dns_name_format(&soa.contact, namebuf, sizeof(namebuf));
177         printf("\tmail addr = %s\n", namebuf);
178         printf("\tserial = %u\n", soa.serial);
179         printf("\trefresh = %u\n", soa.refresh);
180         printf("\tretry = %u\n", soa.retry);
181         printf("\texpire = %u\n", soa.expire);
182         printf("\tminimum = %u\n", soa.minimum);
183         dns_rdata_freestruct(&soa);
184 }
185
186 static void
187 printa(dns_rdata_t *rdata) {
188         isc_result_t result;
189         char text[sizeof("255.255.255.255")];
190         isc_buffer_t b;
191
192         isc_buffer_init(&b, text, sizeof(text));
193         result = dns_rdata_totext(rdata, NULL, &b);
194         check_result(result, "dns_rdata_totext");
195         printf("Address: %.*s\n", (int)isc_buffer_usedlength(&b),
196                (char *)isc_buffer_base(&b));
197 }
198 #ifdef DIG_SIGCHASE
199 /* Just for compatibility : not use in host program */
200 isc_result_t
201 printrdataset(dns_name_t *owner_name, dns_rdataset_t *rdataset,
202               isc_buffer_t *target)
203 {
204         UNUSED(owner_name);
205         UNUSED(rdataset);
206         UNUSED(target);
207         return(ISC_FALSE);
208 }
209 #endif
210 static void
211 printrdata(dns_rdata_t *rdata) {
212         isc_result_t result;
213         isc_buffer_t *b = NULL;
214         unsigned int size = 1024;
215         isc_boolean_t done = ISC_FALSE;
216
217         if (rdata->type < N_KNOWN_RRTYPES)
218                 printf("%s", rtypetext[rdata->type]);
219         else
220                 printf("rdata_%d = ", rdata->type);
221
222         while (!done) {
223                 result = isc_buffer_allocate(mctx, &b, size);
224                 if (result != ISC_R_SUCCESS)
225                         check_result(result, "isc_buffer_allocate");
226                 result = dns_rdata_totext(rdata, NULL, b);
227                 if (result == ISC_R_SUCCESS) {
228                         printf("%.*s\n", (int)isc_buffer_usedlength(b),
229                                (char *)isc_buffer_base(b));
230                         done = ISC_TRUE;
231                 } else if (result != ISC_R_NOSPACE)
232                         check_result(result, "dns_rdata_totext");
233                 isc_buffer_free(&b);
234                 size *= 2;
235         }
236 }
237
238 static isc_result_t
239 printsection(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers,
240              dns_section_t section) {
241         isc_result_t result, loopresult;
242         dns_name_t *name;
243         dns_rdataset_t *rdataset = NULL;
244         dns_rdata_t rdata = DNS_RDATA_INIT;
245         char namebuf[DNS_NAME_FORMATSIZE];
246
247         UNUSED(query);
248         UNUSED(headers);
249
250         debug("printsection()");
251
252         result = dns_message_firstname(msg, section);
253         if (result == ISC_R_NOMORE)
254                 return (ISC_R_SUCCESS);
255         else if (result != ISC_R_SUCCESS)
256                 return (result);
257         for (;;) {
258                 name = NULL;
259                 dns_message_currentname(msg, section,
260                                         &name);
261                 for (rdataset = ISC_LIST_HEAD(name->list);
262                      rdataset != NULL;
263                      rdataset = ISC_LIST_NEXT(rdataset, link)) {
264                         loopresult = dns_rdataset_first(rdataset);
265                         while (loopresult == ISC_R_SUCCESS) {
266                                 dns_rdataset_current(rdataset, &rdata);
267                                 switch (rdata.type) {
268                                 case dns_rdatatype_a:
269                                         if (section != DNS_SECTION_ANSWER)
270                                                 goto def_short_section;
271                                         dns_name_format(name, namebuf,
272                                                         sizeof(namebuf));
273                                         printf("Name:\t%s\n", namebuf);
274                                         printa(&rdata);
275                                         break;
276                                 case dns_rdatatype_soa:
277                                         dns_name_format(name, namebuf,
278                                                         sizeof(namebuf));
279                                         printf("%s\n", namebuf);
280                                         printsoa(&rdata);
281                                         break;
282                                 default:
283                                 def_short_section:
284                                         dns_name_format(name, namebuf,
285                                                         sizeof(namebuf));
286                                         printf("%s\t", namebuf);
287                                         printrdata(&rdata);
288                                         break;
289                                 }
290                                 dns_rdata_reset(&rdata);
291                                 loopresult = dns_rdataset_next(rdataset);
292                         }
293                 }
294                 result = dns_message_nextname(msg, section);
295                 if (result == ISC_R_NOMORE)
296                         break;
297                 else if (result != ISC_R_SUCCESS) {
298                         return (result);
299                 }
300         }
301         return (ISC_R_SUCCESS);
302 }
303
304 static isc_result_t
305 detailsection(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers,
306              dns_section_t section) {
307         isc_result_t result, loopresult;
308         dns_name_t *name;
309         dns_rdataset_t *rdataset = NULL;
310         dns_rdata_t rdata = DNS_RDATA_INIT;
311         char namebuf[DNS_NAME_FORMATSIZE];
312
313         UNUSED(query);
314
315         debug("detailsection()");
316
317         if (headers) {
318                 switch (section) {
319                 case DNS_SECTION_QUESTION:
320                         puts("    QUESTIONS:");
321                         break;
322                 case DNS_SECTION_ANSWER:
323                         puts("    ANSWERS:");
324                         break;
325                 case DNS_SECTION_AUTHORITY:
326                         puts("    AUTHORITY RECORDS:");
327                         break;
328                 case DNS_SECTION_ADDITIONAL:
329                         puts("    ADDITIONAL RECORDS:");
330                         break;
331                 }
332         }
333
334         result = dns_message_firstname(msg, section);
335         if (result == ISC_R_NOMORE)
336                 return (ISC_R_SUCCESS);
337         else if (result != ISC_R_SUCCESS)
338                 return (result);
339         for (;;) {
340                 name = NULL;
341                 dns_message_currentname(msg, section,
342                                         &name);
343                 for (rdataset = ISC_LIST_HEAD(name->list);
344                      rdataset != NULL;
345                      rdataset = ISC_LIST_NEXT(rdataset, link)) {
346                         if (section == DNS_SECTION_QUESTION) {
347                                 dns_name_format(name, namebuf,
348                                                 sizeof(namebuf));
349                                 printf("\t%s, ", namebuf);
350                                 dns_rdatatype_format(rdataset->type,
351                                                      namebuf,
352                                                      sizeof(namebuf));
353                                 printf("type = %s, ", namebuf);
354                                 dns_rdataclass_format(rdataset->rdclass,
355                                                       namebuf,
356                                                       sizeof(namebuf));
357                                 printf("class = %s\n", namebuf);
358                         }
359                         loopresult = dns_rdataset_first(rdataset);
360                         while (loopresult == ISC_R_SUCCESS) {
361                                 dns_rdataset_current(rdataset, &rdata);
362
363                                 dns_name_format(name, namebuf,
364                                                 sizeof(namebuf));
365                                 printf("    ->  %s\n", namebuf);
366
367                                 switch (rdata.type) {
368                                 case dns_rdatatype_soa:
369                                         printsoa(&rdata);
370                                         break;
371                                 default:
372                                         printf("\t");
373                                         printrdata(&rdata);
374                                 }
375                                 dns_rdata_reset(&rdata);
376                                 printf("\tttl = %u\n", rdataset->ttl);
377                                 loopresult = dns_rdataset_next(rdataset);
378                         }
379                 }
380                 result = dns_message_nextname(msg, section);
381                 if (result == ISC_R_NOMORE)
382                         break;
383                 else if (result != ISC_R_SUCCESS) {
384                         return (result);
385                 }
386         }
387         return (ISC_R_SUCCESS);
388 }
389
390 void
391 received(int bytes, isc_sockaddr_t *from, dig_query_t *query)
392 {
393         UNUSED(bytes);
394         UNUSED(from);
395         UNUSED(query);
396 }
397
398 void
399 trying(char *frm, dig_lookup_t *lookup) {
400         UNUSED(frm);
401         UNUSED(lookup);
402
403 }
404
405 isc_result_t
406 printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) {
407         char servtext[ISC_SOCKADDR_FORMATSIZE];
408
409         debug("printmessage()");
410
411         isc_sockaddr_format(&query->sockaddr, servtext, sizeof(servtext));
412         printf("Server:\t\t%s\n", query->userarg);
413         printf("Address:\t%s\n", servtext);
414
415         puts("");
416
417         if (!short_form) {
418                 isc_boolean_t headers = ISC_TRUE;
419                 puts("------------");
420                 /*              detailheader(query, msg);*/
421                 detailsection(query, msg, headers, DNS_SECTION_QUESTION);
422                 detailsection(query, msg, headers, DNS_SECTION_ANSWER);
423                 detailsection(query, msg, headers, DNS_SECTION_AUTHORITY);
424                 detailsection(query, msg, headers, DNS_SECTION_ADDITIONAL);
425                 puts("------------");
426         }
427
428         if (msg->rcode != 0) {
429                 char nametext[DNS_NAME_FORMATSIZE];
430                 dns_name_format(query->lookup->name,
431                                 nametext, sizeof(nametext));
432                 printf("** server can't find %s: %s\n",
433                        (msg->rcode != dns_rcode_nxdomain) ? nametext :
434                        query->lookup->textname, rcode_totext(msg->rcode));
435                 debug("returning with rcode == 0");
436                 return (ISC_R_SUCCESS);
437         }
438
439         if ((msg->flags & DNS_MESSAGEFLAG_AA) == 0)
440                 puts("Non-authoritative answer:");
441         if (!ISC_LIST_EMPTY(msg->sections[DNS_SECTION_ANSWER]))
442                 printsection(query, msg, headers, DNS_SECTION_ANSWER);
443         else
444                 printf("*** Can't find %s: No answer\n",
445                        query->lookup->textname);
446
447         if (((msg->flags & DNS_MESSAGEFLAG_AA) == 0) &&
448             (query->lookup->rdtype != dns_rdatatype_a)) {
449                 puts("\nAuthoritative answers can be found from:");
450                 printsection(query, msg, headers,
451                              DNS_SECTION_AUTHORITY);
452                 printsection(query, msg, headers,
453                              DNS_SECTION_ADDITIONAL);
454         }
455         return (ISC_R_SUCCESS);
456 }
457
458 static void
459 show_settings(isc_boolean_t full, isc_boolean_t serv_only) {
460         dig_server_t *srv;
461         isc_sockaddr_t sockaddr;
462         dig_searchlist_t *listent;
463         isc_result_t result;
464
465         srv = ISC_LIST_HEAD(server_list);
466
467         while (srv != NULL) {
468                 char sockstr[ISC_SOCKADDR_FORMATSIZE];
469
470                 result = get_address(srv->servername, port, &sockaddr);
471                 check_result(result, "get_address");
472
473                 isc_sockaddr_format(&sockaddr, sockstr, sizeof(sockstr));
474                 printf("Default server: %s\nAddress: %s\n",
475                         srv->userarg, sockstr);
476                 if (!full)
477                         return;
478                 srv = ISC_LIST_NEXT(srv, link);
479         }
480         if (serv_only)
481                 return;
482         printf("\nSet options:\n");
483         printf("  %s\t\t\t%s\t\t%s\n",
484                tcpmode ? "vc" : "novc",
485                short_form ? "nodebug" : "debug",
486                debugging ? "d2" : "nod2");
487         printf("  %s\t\t%s\n",
488                usesearch ? "search" : "nosearch",
489                recurse ? "recurse" : "norecurse");
490         printf("  timeout = %d\t\tretry = %d\tport = %d\n",
491                timeout, tries, port);
492         printf("  querytype = %-8s\tclass = %s\n", deftype, defclass);
493         printf("  srchlist = ");
494         for (listent = ISC_LIST_HEAD(search_list);
495              listent != NULL;
496              listent = ISC_LIST_NEXT(listent, link)) {
497                      printf("%s", listent->origin);
498                      if (ISC_LIST_NEXT(listent, link) != NULL)
499                              printf("/");
500         }
501         printf("\n");
502 }
503
504 static isc_boolean_t
505 testtype(char *typetext) {
506         isc_result_t result;
507         isc_textregion_t tr;
508         dns_rdatatype_t rdtype;
509
510         tr.base = typetext;
511         tr.length = strlen(typetext);
512         result = dns_rdatatype_fromtext(&rdtype, &tr);
513         if (result == ISC_R_SUCCESS)
514                 return (ISC_TRUE);
515         else {
516                 printf("unknown query type: %s\n", typetext);
517                 return (ISC_FALSE);
518         }
519 }
520
521 static isc_boolean_t
522 testclass(char *typetext) {
523         isc_result_t result;
524         isc_textregion_t tr;
525         dns_rdataclass_t rdclass;
526
527         tr.base = typetext;
528         tr.length = strlen(typetext);
529         result = dns_rdataclass_fromtext(&rdclass, &tr);
530         if (result == ISC_R_SUCCESS)
531                 return (ISC_TRUE);
532         else {
533                 printf("unknown query class: %s\n", typetext);
534                 return (ISC_FALSE);
535         }
536 }
537
538 static void
539 set_port(const char *value) {
540         isc_uint32_t n;
541         isc_result_t result = parse_uint(&n, value, 65535, "port");
542         if (result == ISC_R_SUCCESS)
543                 port = (isc_uint16_t) n;
544 }
545
546 static void
547 set_timeout(const char *value) {
548         isc_uint32_t n;
549         isc_result_t result = parse_uint(&n, value, UINT_MAX, "timeout");
550         if (result == ISC_R_SUCCESS)
551                 timeout = n;
552 }
553
554 static void
555 set_tries(const char *value) {
556         isc_uint32_t n;
557         isc_result_t result = parse_uint(&n, value, INT_MAX, "tries");
558         if (result == ISC_R_SUCCESS)
559                 tries = n;
560 }
561
562 static void
563 setoption(char *opt) {
564         if (strncasecmp(opt, "all", 4) == 0) {
565                 show_settings(ISC_TRUE, ISC_FALSE);
566         } else if (strncasecmp(opt, "class=", 6) == 0) {
567                 if (testclass(&opt[6]))
568                         strlcpy(defclass, &opt[6], sizeof(defclass));
569         } else if (strncasecmp(opt, "cl=", 3) == 0) {
570                 if (testclass(&opt[3]))
571                         strlcpy(defclass, &opt[3], sizeof(defclass));
572         } else if (strncasecmp(opt, "type=", 5) == 0) {
573                 if (testtype(&opt[5]))
574                         strlcpy(deftype, &opt[5], sizeof(deftype));
575         } else if (strncasecmp(opt, "ty=", 3) == 0) {
576                 if (testtype(&opt[3]))
577                         strlcpy(deftype, &opt[3], sizeof(deftype));
578         } else if (strncasecmp(opt, "querytype=", 10) == 0) {
579                 if (testtype(&opt[10]))
580                         strlcpy(deftype, &opt[10], sizeof(deftype));
581         } else if (strncasecmp(opt, "query=", 6) == 0) {
582                 if (testtype(&opt[6]))
583                         strlcpy(deftype, &opt[6], sizeof(deftype));
584         } else if (strncasecmp(opt, "qu=", 3) == 0) {
585                 if (testtype(&opt[3]))
586                         strlcpy(deftype, &opt[3], sizeof(deftype));
587         } else if (strncasecmp(opt, "q=", 2) == 0) {
588                 if (testtype(&opt[2]))
589                         strlcpy(deftype, &opt[2], sizeof(deftype));
590         } else if (strncasecmp(opt, "domain=", 7) == 0) {
591                 strlcpy(domainopt, &opt[7], sizeof(domainopt));
592                 set_search_domain(domainopt);
593                 usesearch = ISC_TRUE;
594         } else if (strncasecmp(opt, "do=", 3) == 0) {
595                 strlcpy(domainopt, &opt[3], sizeof(domainopt));
596                 set_search_domain(domainopt);
597                 usesearch = ISC_TRUE;
598         } else if (strncasecmp(opt, "port=", 5) == 0) {
599                 set_port(&opt[5]);
600         } else if (strncasecmp(opt, "po=", 3) == 0) {
601                 set_port(&opt[3]);
602         } else if (strncasecmp(opt, "timeout=", 8) == 0) {
603                 set_timeout(&opt[8]);
604         } else if (strncasecmp(opt, "t=", 2) == 0) {
605                 set_timeout(&opt[2]);
606         } else if (strncasecmp(opt, "rec", 3) == 0) {
607                 recurse = ISC_TRUE;
608         } else if (strncasecmp(opt, "norec", 5) == 0) {
609                 recurse = ISC_FALSE;
610         } else if (strncasecmp(opt, "retry=", 6) == 0) {
611                 set_tries(&opt[6]);
612         } else if (strncasecmp(opt, "ret=", 4) == 0) {
613                 set_tries(&opt[4]);
614         } else if (strncasecmp(opt, "def", 3) == 0) {
615                 usesearch = ISC_TRUE;
616         } else if (strncasecmp(opt, "nodef", 5) == 0) {
617                 usesearch = ISC_FALSE;
618         } else if (strncasecmp(opt, "vc", 3) == 0) {
619                 tcpmode = ISC_TRUE;
620         } else if (strncasecmp(opt, "novc", 5) == 0) {
621                 tcpmode = ISC_FALSE;
622         } else if (strncasecmp(opt, "deb", 3) == 0) {
623                 short_form = ISC_FALSE;
624                 showsearch = ISC_TRUE;
625         } else if (strncasecmp(opt, "nodeb", 5) == 0) {
626                 short_form = ISC_TRUE;
627                 showsearch = ISC_FALSE;
628         } else if (strncasecmp(opt, "d2", 2) == 0) {
629                 debugging = ISC_TRUE;
630         } else if (strncasecmp(opt, "nod2", 4) == 0) {
631                 debugging = ISC_FALSE;
632         } else if (strncasecmp(opt, "search", 3) == 0) {
633                 usesearch = ISC_TRUE;
634         } else if (strncasecmp(opt, "nosearch", 5) == 0) {
635                 usesearch = ISC_FALSE;
636         } else if (strncasecmp(opt, "sil", 3) == 0) {
637                 /* deprecation_msg = ISC_FALSE; */
638         } else if (strncasecmp(opt, "fail", 3) == 0) {
639                 nofail=ISC_FALSE;
640         } else if (strncasecmp(opt, "nofail", 3) == 0) {
641                 nofail=ISC_TRUE;
642         } else {
643                 printf("*** Invalid option: %s\n", opt);
644         }
645 }
646
647 static void
648 addlookup(char *opt) {
649         dig_lookup_t *lookup;
650         isc_result_t result;
651         isc_textregion_t tr;
652         dns_rdatatype_t rdtype;
653         dns_rdataclass_t rdclass;
654         char store[MXNAME];
655
656         debug("addlookup()");
657         tr.base = deftype;
658         tr.length = strlen(deftype);
659         result = dns_rdatatype_fromtext(&rdtype, &tr);
660         if (result != ISC_R_SUCCESS) {
661                 printf("unknown query type: %s\n", deftype);
662                 rdclass = dns_rdatatype_a;
663         }
664         tr.base = defclass;
665         tr.length = strlen(defclass);
666         result = dns_rdataclass_fromtext(&rdclass, &tr);
667         if (result != ISC_R_SUCCESS) {
668                 printf("unknown query class: %s\n", defclass);
669                 rdclass = dns_rdataclass_in;
670         }
671         lookup = make_empty_lookup();
672         if (get_reverse(store, sizeof(store), opt, lookup->ip6_int, ISC_TRUE)
673             == ISC_R_SUCCESS) {
674                 strlcpy(lookup->textname, store, sizeof(lookup->textname));
675                 lookup->rdtype = dns_rdatatype_ptr;
676                 lookup->rdtypeset = ISC_TRUE;
677         } else {
678                 strlcpy(lookup->textname, opt, sizeof(lookup->textname));
679                 lookup->rdtype = rdtype;
680                 lookup->rdtypeset = ISC_TRUE;
681         }
682         lookup->rdclass = rdclass;
683         lookup->rdclassset = ISC_TRUE;
684         lookup->trace = ISC_FALSE;
685         lookup->trace_root = lookup->trace;
686         lookup->ns_search_only = ISC_FALSE;
687         lookup->identify = identify;
688         lookup->recurse = recurse;
689         lookup->aaonly = aaonly;
690         lookup->retries = tries;
691         lookup->udpsize = 0;
692         lookup->comments = comments;
693         lookup->tcp_mode = tcpmode;
694         lookup->stats = stats;
695         lookup->section_question = section_question;
696         lookup->section_answer = section_answer;
697         lookup->section_authority = section_authority;
698         lookup->section_additional = section_additional;
699         lookup->new_search = ISC_TRUE;
700         if (nofail)
701                 lookup->servfail_stops = ISC_FALSE;
702         ISC_LIST_INIT(lookup->q);
703         ISC_LINK_INIT(lookup, link);
704         ISC_LIST_APPEND(lookup_list, lookup, link);
705         lookup->origin = NULL;
706         ISC_LIST_INIT(lookup->my_server_list);
707         debug("looking up %s", lookup->textname);
708 }
709
710 static void
711 get_next_command(void) {
712         char *buf;
713         char *ptr, *arg;
714         char *input;
715
716         fflush(stdout);
717         buf = isc_mem_allocate(mctx, COMMSIZE);
718         if (buf == NULL)
719                 fatal("memory allocation failure");
720         fputs("> ", stderr);
721         fflush(stderr);
722         isc_app_block();
723         ptr = fgets(buf, COMMSIZE, stdin);
724         isc_app_unblock();
725         if (ptr == NULL) {
726                 in_use = ISC_FALSE;
727                 goto cleanup;
728         }
729         input = buf;
730         ptr = next_token(&input, " \t\r\n");
731         if (ptr == NULL)
732                 goto cleanup;
733         arg = next_token(&input, " \t\r\n");
734         if ((strcasecmp(ptr, "set") == 0) &&
735             (arg != NULL))
736                 setoption(arg);
737         else if ((strcasecmp(ptr, "server") == 0) ||
738                  (strcasecmp(ptr, "lserver") == 0)) {
739                 isc_app_block();
740                 set_nameserver(arg);
741                 check_ra = ISC_FALSE;
742                 isc_app_unblock();
743                 show_settings(ISC_TRUE, ISC_TRUE);
744         } else if (strcasecmp(ptr, "exit") == 0) {
745                 in_use = ISC_FALSE;
746                 goto cleanup;
747         } else if (strcasecmp(ptr, "help") == 0 ||
748                    strcasecmp(ptr, "?") == 0) {
749                 printf("The '%s' command is not yet implemented.\n", ptr);
750                 goto cleanup;
751         } else if (strcasecmp(ptr, "finger") == 0 ||
752                    strcasecmp(ptr, "root") == 0 ||
753                    strcasecmp(ptr, "ls") == 0 ||
754                    strcasecmp(ptr, "view") == 0) {
755                 printf("The '%s' command is not implemented.\n", ptr);
756                 goto cleanup;
757         } else
758                 addlookup(ptr);
759  cleanup:
760         isc_mem_free(mctx, buf);
761 }
762
763 static void
764 parse_args(int argc, char **argv) {
765         isc_boolean_t have_lookup = ISC_FALSE;
766
767         usesearch = ISC_TRUE;
768         for (argc--, argv++; argc > 0; argc--, argv++) {
769                 debug("main parsing %s", argv[0]);
770                 if (argv[0][0] == '-') {
771                         if (argv[0][1] != 0)
772                                 setoption(&argv[0][1]);
773                         else
774                                 have_lookup = ISC_TRUE;
775                 } else {
776                         if (!have_lookup) {
777                                 have_lookup = ISC_TRUE;
778                                 in_use = ISC_TRUE;
779                                 addlookup(argv[0]);
780                         } else {
781                                 set_nameserver(argv[0]);
782                                 check_ra = ISC_FALSE;
783                         }
784                 }
785         }
786 }
787
788 static void
789 flush_lookup_list(void) {
790         dig_lookup_t *l, *lp;
791         dig_query_t *q, *qp;
792         dig_server_t *s, *sp;
793
794         lookup_counter = 0;
795         l = ISC_LIST_HEAD(lookup_list);
796         while (l != NULL) {
797                 q = ISC_LIST_HEAD(l->q);
798                 while (q != NULL) {
799                         if (q->sock != NULL) {
800                                 isc_socket_cancel(q->sock, NULL,
801                                                   ISC_SOCKCANCEL_ALL);
802                                 isc_socket_detach(&q->sock);
803                         }
804                         if (ISC_LINK_LINKED(&q->recvbuf, link))
805                                 ISC_LIST_DEQUEUE(q->recvlist, &q->recvbuf,
806                                                  link);
807                         if (ISC_LINK_LINKED(&q->lengthbuf, link))
808                                 ISC_LIST_DEQUEUE(q->lengthlist, &q->lengthbuf,
809                                                  link);
810                         isc_buffer_invalidate(&q->recvbuf);
811                         isc_buffer_invalidate(&q->lengthbuf);
812                         qp = q;
813                         q = ISC_LIST_NEXT(q, link);
814                         ISC_LIST_DEQUEUE(l->q, qp, link);
815                         isc_mem_free(mctx, qp);
816                 }
817                 s = ISC_LIST_HEAD(l->my_server_list);
818                 while (s != NULL) {
819                         sp = s;
820                         s = ISC_LIST_NEXT(s, link);
821                         ISC_LIST_DEQUEUE(l->my_server_list, sp, link);
822                         isc_mem_free(mctx, sp);
823
824                 }
825                 if (l->sendmsg != NULL)
826                         dns_message_destroy(&l->sendmsg);
827                 if (l->timer != NULL)
828                         isc_timer_detach(&l->timer);
829                 lp = l;
830                 l = ISC_LIST_NEXT(l, link);
831                 ISC_LIST_DEQUEUE(lookup_list, lp, link);
832                 isc_mem_free(mctx, lp);
833         }
834 }
835
836 static void
837 getinput(isc_task_t *task, isc_event_t *event) {
838         UNUSED(task);
839         if (global_event == NULL)
840                 global_event = event;
841         while (in_use) {
842                 get_next_command();
843                 if (ISC_LIST_HEAD(lookup_list) != NULL) {
844                         start_lookup();
845                         return;
846                 }
847         }
848         isc_app_shutdown();
849 }
850
851 int
852 main(int argc, char **argv) {
853         isc_result_t result;
854
855         ISC_LIST_INIT(lookup_list);
856         ISC_LIST_INIT(server_list);
857         ISC_LIST_INIT(search_list);
858
859         check_ra = ISC_TRUE;
860
861         result = isc_app_start();
862         check_result(result, "isc_app_start");
863
864         setup_libs();
865         progname = argv[0];
866
867         parse_args(argc, argv);
868
869         setup_system();
870         if (domainopt[0] != '\0')
871                 set_search_domain(domainopt);
872         if (in_use)
873                 result = isc_app_onrun(mctx, global_task, onrun_callback,
874                                        NULL);
875         else
876                 result = isc_app_onrun(mctx, global_task, getinput, NULL);
877         check_result(result, "isc_app_onrun");
878         in_use = ISC_TF(!in_use);
879
880         (void)isc_app_run();
881
882         puts("");
883         debug("done, and starting to shut down");
884         if (global_event != NULL)
885                 isc_event_free(&global_event);
886         cancel_all();
887         destroy_libs();
888         isc_app_finish();
889
890         return (0);
891 }