1 /* vi: set sw=4 ts=4: */
3 //config:config NSLOOKUP
4 //config: bool "nslookup (4.5 kb)"
7 //config: nslookup is a tool to query Internet name servers.
9 //config:config FEATURE_NSLOOKUP_BIG
10 //config: bool "Use internal resolver code instead of libc"
11 //config: depends on NSLOOKUP
14 //config:config FEATURE_NSLOOKUP_LONG_OPTIONS
15 //config: bool "Enable long options"
17 //config: depends on FEATURE_NSLOOKUP_BIG && LONG_OPTS
19 //applet:IF_NSLOOKUP(APPLET(nslookup, BB_DIR_USR_BIN, BB_SUID_DROP))
21 //kbuild:lib-$(CONFIG_NSLOOKUP) += nslookup.o
23 //usage:#define nslookup_trivial_usage
24 //usage: IF_FEATURE_NSLOOKUP_BIG("[-type=QUERY_TYPE] [-debug] ") "HOST [DNS_SERVER]"
25 //usage:#define nslookup_full_usage "\n\n"
26 //usage: "Query DNS about HOST"
27 //usage: IF_FEATURE_NSLOOKUP_BIG("\n")
28 //usage: IF_FEATURE_NSLOOKUP_BIG("\nQUERY_TYPE: soa,ns,a,"IF_FEATURE_IPV6("aaaa,")"cname,mx,txt,ptr,any")
29 //usage:#define nslookup_example_usage
30 //usage: "$ nslookup localhost\n"
31 //usage: "Server: default\n"
32 //usage: "Address: default\n"
34 //usage: "Name: debian\n"
35 //usage: "Address: 127.0.0.1\n"
38 #include <net/if.h> /* for IFNAMSIZ */
39 //#include <arpa/inet.h>
42 #include "common_bufsiz.h"
45 #if !ENABLE_FEATURE_NSLOOKUP_BIG
48 * Mini nslookup implementation for busybox
50 * Copyright (C) 1999,2000 by Lineo, inc. and John Beppu
51 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
53 * Correct default name server display and explicit name server option
54 * added by Ben Zeckel <bzeckel@hmc.edu> June 2001
56 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
60 * I'm only implementing non-interactive mode;
61 * I totally forgot nslookup even had an interactive mode.
63 * This applet is the only user of res_init(). Without it,
64 * you may avoid pulling in _res global from libc.
67 /* Examples of 'standard' nslookup output
68 * $ nslookup yahoo.com
69 * Server: 128.193.0.10
70 * Address: 128.193.0.10#53
72 * Non-authoritative answer:
74 * Address: 216.109.112.135
76 * Address: 66.94.234.13
78 * $ nslookup 204.152.191.37
79 * Server: 128.193.4.20
80 * Address: 128.193.4.20#53
82 * Non-authoritative answer:
83 * 37.191.152.204.in-addr.arpa canonical name = 37.32-27.191.152.204.in-addr.arpa.
84 * 37.32-27.191.152.204.in-addr.arpa name = zeus-pub2.kernel.org.
86 * Authoritative answers can be found from:
87 * 32-27.191.152.204.in-addr.arpa nameserver = ns1.kernel.org.
88 * 32-27.191.152.204.in-addr.arpa nameserver = ns2.kernel.org.
89 * 32-27.191.152.204.in-addr.arpa nameserver = ns3.kernel.org.
90 * ns1.kernel.org internet address = 140.211.167.34
91 * ns2.kernel.org internet address = 204.152.191.4
92 * ns3.kernel.org internet address = 204.152.191.36
95 static int print_host(const char *hostname, const char *header)
97 /* We can't use xhost2sockaddr() - we want to get ALL addresses,
99 struct addrinfo *result = NULL;
101 struct addrinfo hint;
103 memset(&hint, 0 , sizeof(hint));
104 /* hint.ai_family = AF_UNSPEC; - zero anyway */
105 /* Needed. Or else we will get each address thrice (or more)
106 * for each possible socket type (tcp,udp,raw...): */
107 hint.ai_socktype = SOCK_STREAM;
108 // hint.ai_flags = AI_CANONNAME;
109 rc = getaddrinfo(hostname, NULL /*service*/, &hint, &result);
112 struct addrinfo *cur = result;
115 printf("%-10s %s\n", header, hostname);
116 // puts(cur->ai_canonname); ?
118 char *dotted, *revhost;
119 dotted = xmalloc_sockaddr2dotted_noport(cur->ai_addr);
120 revhost = xmalloc_sockaddr2hostonly_noport(cur->ai_addr);
122 printf("Address %u: %s%c", ++cnt, dotted, revhost ? ' ' : '\n');
125 if (ENABLE_FEATURE_CLEAN_UP)
128 if (ENABLE_FEATURE_CLEAN_UP)
133 #if ENABLE_VERBOSE_RESOLUTION_ERRORS
134 bb_error_msg("can't resolve '%s': %s", hostname, gai_strerror(rc));
136 bb_error_msg("can't resolve '%s'", hostname);
139 if (ENABLE_FEATURE_CLEAN_UP && result)
140 freeaddrinfo(result);
144 /* lookup the default nameserver and display it */
145 static void server_print(void)
150 #if ENABLE_FEATURE_IPV6
151 sa = (struct sockaddr*)_res._u._ext.nsaddrs[0];
154 sa = (struct sockaddr*)&_res.nsaddr_list[0];
155 server = xmalloc_sockaddr2dotted_noport(sa);
157 print_host(server, "Server:");
158 if (ENABLE_FEATURE_CLEAN_UP)
163 /* alter the global _res nameserver structure to use
164 an explicit dns server instead of what is in /etc/resolv.conf */
165 static void set_default_dns(const char *server)
167 len_and_sockaddr *lsa;
172 /* NB: this works even with, say, "[::1]:5353"! :) */
173 lsa = xhost2sockaddr(server, 53);
175 if (lsa->u.sa.sa_family == AF_INET) {
178 _res.nsaddr_list[0] = lsa->u.sin;
180 #if ENABLE_FEATURE_IPV6
181 /* Hoped libc can cope with IPv4 address there too.
182 * No such luck, glibc 2.4 segfaults even with IPv6,
183 * maybe I misunderstand how to make glibc use IPv6 addr?
184 * (uclibc 0.9.31+ should work) */
185 if (lsa->u.sa.sa_family == AF_INET6) {
186 // glibc neither SEGVs nor sends any dgrams with this
187 // (strace shows no socket ops):
189 _res._u._ext.nscount = 1;
190 /* store a pointer to part of malloc'ed lsa */
191 _res._u._ext.nsaddrs[0] = &lsa->u.sin6;
192 /* must not free(lsa)! */
197 int nslookup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
198 int nslookup_main(int argc, char **argv)
200 /* We allow 1 or 2 arguments.
201 * The first is the name to be looked up and the second is an
202 * optional DNS server with which to do the lookup.
203 * More than 3 arguments is an error to follow the pattern of the
204 * standard nslookup */
205 if (!argv[1] || argv[1][0] == '-' || argc > 3)
208 /* initialize DNS structure _res used in printing the default
209 * name server and in the explicit name server option feature. */
211 /* rfc2133 says this enables IPv6 lookups */
212 /* (but it also says "may be enabled in /etc/resolv.conf") */
213 /*_res.options |= RES_USE_INET6;*/
215 set_default_dns(argv[2]);
219 /* getaddrinfo and friends are free to request a resolver
220 * reinitialization. Just in case, set_default_dns() again
221 * after getaddrinfo (in server_print). This reportedly helps
222 * with bug 675 "nslookup does not properly use second argument"
223 * at least on Debian Wheezy and Openwrt AA (eglibc based).
225 set_default_dns(argv[2]);
227 return print_host(argv[1], "Name:");
231 #else /****** A version from LEDE / OpenWRT ******/
234 * musl compatible nslookup
236 * Copyright (C) 2017 Jo-Philipp Wich <jo@mein.io>
238 * Permission to use, copy, modify, and/or distribute this software for any
239 * purpose with or without fee is hereby granted, provided that the above
240 * copyright notice and this permission notice appear in all copies.
242 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
243 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
244 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
245 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
246 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
247 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
248 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
252 # define dbg(...) fprintf(stderr, __VA_ARGS__)
254 # define dbg(...) ((void)0)
259 len_and_sockaddr *lsa;
269 unsigned char query[512];
270 // unsigned char reply[512];
273 static const struct {
280 #if ENABLE_FEATURE_IPV6
281 { ns_t_aaaa, "AAAA" },
283 { ns_t_cname, "CNAME" },
290 static const char *const rcodes[] = {
302 "11", // 11 not assigned
303 "12", // 12 not assigned
304 "13", // 13 not assigned
305 "14", // 14 not assigned
306 "15", // 15 not assigned
309 #if ENABLE_FEATURE_IPV6
310 static const char v4_mapped[12] = { 0,0,0,0, 0,0,0,0, 0,0,0xff,0xff };
314 unsigned default_port;
315 unsigned default_retry;
316 unsigned default_timeout;
317 unsigned query_count;
322 #define G (*(struct globals*)bb_common_bufsiz1)
323 #define INIT_G() do { \
324 setup_common_bufsiz(); \
325 G.default_port = 53; \
326 G.default_retry = 2; \
327 G.default_timeout = 5; \
331 OPT_debug = (1 << 0),
334 static int parse_reply(const unsigned char *msg, size_t len)
341 const char *format = NULL;
342 char astr[INET6_ADDRSTRLEN], dname[MAXDNAME];
343 const unsigned char *cp;
345 header = (HEADER *)msg;
347 printf("Non-authoritative answer:\n");
349 if (ns_initparse(msg, len, &handle) != 0) {
350 //printf("Unable to parse reply: %s\n", strerror(errno));
354 for (i = 0; i < ns_msg_count(handle, ns_s_an); i++) {
355 if (ns_parserr(&handle, ns_s_an, i, &rr) != 0) {
356 //printf("Unable to parse resource record: %s\n", strerror(errno));
360 rdlen = ns_rr_rdlen(rr);
362 switch (ns_rr_type(rr))
366 dbg("unexpected A record length %d\n", rdlen);
369 inet_ntop(AF_INET, ns_rr_rdata(rr), astr, sizeof(astr));
370 printf("Name:\t%s\nAddress: %s\n", ns_rr_name(rr), astr);
373 #if ENABLE_FEATURE_IPV6
376 dbg("unexpected AAAA record length %d\n", rdlen);
379 inet_ntop(AF_INET6, ns_rr_rdata(rr), astr, sizeof(astr));
380 /* bind-utils-9.11.3 uses the same format for A and AAAA answers */
381 printf("Name:\t%s\nAddress: %s\n", ns_rr_name(rr), astr);
387 format = "%s\tnameserver = %s\n";
392 format = "%s\tcanonical name = %s\n";
397 format = "%s\tname = %s\n";
398 if (ns_name_uncompress(ns_msg_base(handle), ns_msg_end(handle),
399 ns_rr_rdata(rr), dname, sizeof(dname)) < 0
401 //printf("Unable to uncompress domain: %s\n", strerror(errno));
404 printf(format, ns_rr_name(rr), dname);
409 printf("MX record too short\n");
412 n = ns_get16(ns_rr_rdata(rr));
413 if (ns_name_uncompress(ns_msg_base(handle), ns_msg_end(handle),
414 ns_rr_rdata(rr) + 2, dname, sizeof(dname)) < 0
416 //printf("Cannot uncompress MX domain: %s\n", strerror(errno));
419 printf("%s\tmail exchanger = %d %s\n", ns_rr_name(rr), n, dname);
424 //printf("TXT record too short\n");
427 n = *(unsigned char *)ns_rr_rdata(rr);
429 memset(dname, 0, sizeof(dname));
430 memcpy(dname, ns_rr_rdata(rr) + 1, n);
431 printf("%s\ttext = \"%s\"\n", ns_rr_name(rr), dname);
437 dbg("SOA record too short:%d\n", rdlen);
441 printf("%s\n", ns_rr_name(rr));
443 cp = ns_rr_rdata(rr);
444 n = ns_name_uncompress(ns_msg_base(handle), ns_msg_end(handle),
445 cp, dname, sizeof(dname));
447 //printf("Unable to uncompress domain: %s\n", strerror(errno));
451 printf("\torigin = %s\n", dname);
454 n = ns_name_uncompress(ns_msg_base(handle), ns_msg_end(handle),
455 cp, dname, sizeof(dname));
457 //printf("Unable to uncompress domain: %s\n", strerror(errno));
461 printf("\tmail addr = %s\n", dname);
464 printf("\tserial = %lu\n", ns_get32(cp));
467 printf("\trefresh = %lu\n", ns_get32(cp));
470 printf("\tretry = %lu\n", ns_get32(cp));
473 printf("\texpire = %lu\n", ns_get32(cp));
476 printf("\tminimum = %lu\n", ns_get32(cp));
488 * Function logic borrowed & modified from musl libc, res_msend.c
489 * G.query_count is always > 0.
491 static int send_queries(struct ns *ns)
493 unsigned char reply[512];
495 len_and_sockaddr *local_lsa;
497 int servfail_retry = 0;
500 unsigned retry_interval;
501 unsigned timeout = G.default_timeout * 1000;
502 unsigned tstart, tsent, tcur;
505 pfd.fd = xsocket_type(&local_lsa, ns->lsa->u.sa.sa_family, SOCK_DGRAM);
507 * local_lsa has "null" address and port 0 now.
508 * bind() ensures we have a *particular port* selected by kernel
509 * and remembered in fd, thus later recv(fd)
510 * receives only packets sent to this port.
512 xbind(pfd.fd, &local_lsa->u.sa, local_lsa->len);
514 /* Make read/writes know the destination */
515 xconnect(pfd.fd, &ns->lsa->u.sa, ns->lsa->len);
518 retry_interval = timeout / G.default_retry;
519 tstart = tcur = monotonic_ms();
522 while (tcur - tstart < timeout) {
526 if (tcur - tsent >= retry_interval) {
528 for (qn = 0; qn < G.query_count; qn++) {
529 if (G.query[qn].qlen == 0)
530 continue; /* this one was replied already */
532 if (write(pfd.fd, G.query[qn].query, G.query[qn].qlen) < 0) {
533 bb_perror_msg("write to '%s'", ns->name);
534 n_replies = -1; /* "no go, try next server" */
537 dbg("query %u sent\n", qn);
540 servfail_retry = 2 * G.query_count;
543 /* Wait for a response, or until time to retry */
544 if (poll(&pfd, 1, retry_interval - (tcur - tsent)) <= 0)
547 recvlen = read(pfd.fd, reply, sizeof(reply));
549 bb_perror_msg("read");
551 tcur = monotonic_ms();
555 if (ns->replies++ == 0) {
556 printf("Server:\t\t%s\n", ns->name);
557 printf("Address:\t%s\n\n",
558 auto_string(xmalloc_sockaddr2dotted(&ns->lsa->u.sa))
560 /* In "Address", bind-utils-9.11.3 show port after a hash: "1.2.3.4#53" */
561 /* Should we do the same? */
564 /* Non-identifiable packet */
566 dbg("read is too short:%d\n", recvlen);
570 /* Find which query this answer goes with, if any */
574 if (memcmp(reply, G.query[qn].query, 2) == 0) {
575 dbg("response matches query %u\n", qn);
578 if (++qn >= G.query_count) {
579 dbg("response does not match any query\n");
584 if (G.query[qn].qlen == 0) {
585 dbg("dropped duplicate response to query %u\n", qn);
589 rcode = reply[3] & 0x0f;
590 dbg("query %u rcode:%s\n", qn, rcodes[rcode]);
592 /* Retry immediately on SERVFAIL */
595 if (servfail_retry) {
597 write(pfd.fd, G.query[qn].query, G.query[qn].qlen);
598 dbg("query %u resent\n", qn);
604 G.query[qn].qlen = 0; /* flag: "reply received" */
605 tcur = monotonic_ms();
607 if (option_mask32 & OPT_debug) {
608 printf("Query #%d completed in %ums:\n", qn, tcur - tstart);
611 printf("** server can't find %s: %s\n",
612 G.query[qn].name, rcodes[rcode]);
614 if (parse_reply(reply, recvlen) < 0)
615 printf("*** Can't find %s: Parse error\n", G.query[qn].name);
619 if (n_replies >= G.query_count)
622 //used to store replies and process them later
623 G.query[qn].latency = tcur - tstart;
625 if (qn != save_idx) {
626 /* "wrong" receive buffer, move to correct one */
627 memcpy(G.query[qn].reply, G.query[save_idx].reply, recvlen);
630 /* G.query[0..save_idx] have replies, move to next one, if exists */
633 if (save_idx >= G.query_count)
634 goto ret; /* all are full: we have all results */
635 if (!G.query[save_idx].rlen)
636 break; /* this one is empty */
647 static void add_ns(const char *addr)
652 dbg("%s: addr:'%s'\n", __func__, addr);
654 count = G.serv_count++;
656 G.server = xrealloc_vector(G.server, /*8=2^3:*/ 3, count);
657 ns = &G.server[count];
659 ns->lsa = xhost2sockaddr(addr, G.default_port);
660 /*ns->replies = 0; - already is */
661 /*ns->failures = 0; - already is */
664 static void parse_resolvconf(void)
668 resolv = fopen("/etc/resolv.conf", "r");
672 while (fgets(line, sizeof(line), resolv)) {
673 p = strtok(line, " \t\n");
675 if (!p || strcmp(p, "nameserver") != 0)
678 p = strtok(NULL, " \t\n");
690 static void add_query(int type, const char *dname)
696 count = G.query_count++;
698 G.query = xrealloc_vector(G.query, /*2=2^1:*/ 1, count);
699 new_q = &G.query[count];
701 dbg("new query#%u type %u for '%s'\n", count, type, dname);
704 qlen = res_mkquery(QUERY, dname, C_IN, type,
705 /*data:*/ NULL, /*datalen:*/ 0,
707 new_q->query, sizeof(new_q->query)
712 static char *make_ptr(const char *addrstr)
714 unsigned char addr[16];
717 #if ENABLE_FEATURE_IPV6
718 if (inet_pton(AF_INET6, addrstr, addr)) {
719 if (memcmp(addr, v4_mapped, 12) != 0) {
722 for (i = 0; i < 16; i++) {
723 *ptr++ = 0x20 | bb_hexdigits_upcase[(unsigned char)addr[15 - i] & 0xf];
725 *ptr++ = 0x20 | bb_hexdigits_upcase[(unsigned char)addr[15 - i] >> 4];
728 strcpy(ptr, "ip6.arpa");
729 return xstrdup(resbuf);
731 return xasprintf("%u.%u.%u.%u.in-addr.arpa",
732 addr[15], addr[14], addr[13], addr[12]);
736 if (inet_pton(AF_INET, addrstr, addr)) {
737 return xasprintf("%u.%u.%u.%u.in-addr.arpa",
738 addr[3], addr[2], addr[1], addr[0]);
744 int nslookup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
745 int nslookup_main(int argc UNUSED_PARAM, char **argv)
753 /* manpage: "Options can also be specified on the command line
754 * if they precede the arguments and are prefixed with a hyphen."
759 const char *options =
760 // bind-utils-9.11.3 accept these:
762 // type= ty= querytype= query= qu= q=
783 // ver (prints version and exits)
785 "querytype\0" /* 1 */
789 "t\0" /* disambiguate with "type": else -t=2 fails */
798 if (argv[0][0] != '-')
801 /* Separate out "=val" part */
803 val = strchrnul(arg, '=');
807 i = index_in_substrings(options, arg);
808 //bb_error_msg("i:%d arg:'%s' val:'%s'", i, arg, val);
814 if (i == ARRAY_SIZE(qtypes))
815 bb_error_msg_and_die("invalid query type \"%s\"", val);
816 if (strcasecmp(qtypes[i].name, val) == 0)
823 G.default_port = xatou_range(val, 1, 0xffff);
826 G.default_retry = xatou_range(val, 1, INT_MAX);
829 option_mask32 |= OPT_debug;
832 G.default_timeout = xatou_range(val, 1, INT_MAX / 1000);
837 /* No explicit type given, guess query type.
838 * If we can convert the domain argument into a ptr (means that
839 * inet_pton() could read it) we assume a PTR request, else
840 * we issue A+AAAA queries and switch to an output format
841 * mimicking the one of the traditional nslookup applet.
845 ptr = make_ptr(argv[0]);
847 add_query(T_PTR, ptr);
849 add_query(T_A, argv[0]);
850 #if ENABLE_FEATURE_IPV6
851 add_query(T_AAAA, argv[0]);
856 for (c = 0; c < ARRAY_SIZE(qtypes); c++) {
857 if (types & (1 << c))
858 add_query(qtypes[c].type, argv[0]);
862 /* Use given DNS server if present */
869 /* Fall back to localhost if we could not find NS in resolv.conf */
870 if (G.serv_count == 0)
874 for (rc = 0; rc < G.serv_count;) {
877 c = send_queries(&G.server[rc]);
879 /* more than zero replies received */
880 #if 0 /* which version does this? */
881 if (option_mask32 & OPT_debug) {
882 printf("Replies:\t%d\n", G.server[rc].replies);
883 printf("Failures:\t%d\n\n", G.server[rc].failures);
887 //FIXME: we "break" even though some queries may still be not answered, and other servers may know them?
889 /* c = 0: timed out waiting for replies */
890 /* c < 0: error (message already printed) */
892 if (rc >= G.serv_count) {
894 // NB: bind-utils-9.11.3 behavior (all to stdout, not stderr):
896 // $ nslookup gmail.com 8.8.8.8
897 // ;; connection timed out; no servers could be reached
900 // $ nslookup -vc gmail.com 8.8.8.8; echo EXITCODE:$?
902 // ;; Connection to 8.8.8.8#53(8.8.8.8) for gmail.com failed: timed out.
904 // ;; Connection to 8.8.8.8#53(8.8.8.8) for gmail.com failed: timed out.
906 // ;; connection timed out; no servers could be reached
907 // ;; Connection to 8.8.8.8#53(8.8.8.8) for gmail.com failed: timed out.
911 printf(";; connection timed out; no servers could be reached\n\n");
917 for (rc = 0; rc < G.query_count; rc++) {
918 if (G.query[rc].qlen) {
919 printf("*** Can't find %s: No answer\n", G.query[rc].name);
923 if (err) /* should this affect exicode too? */
926 if (ENABLE_FEATURE_CLEAN_UP) {