blob: 73ccb0dddbd68777d0d0859f6da1dc35588ab9fe [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppub332e772000-01-29 12:59:01 +00002/*
3 * Mini nslookup implementation for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and John Beppu
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
John Beppub332e772000-01-29 12:59:01 +00007 *
Eric Andersen39cdf4e2004-01-30 22:40:05 +00008 * Correct default name server display and explicit name server option
Robert Griebl31a2e202002-07-24 00:56:56 +00009 * added by Ben Zeckel <bzeckel@hmc.edu> June 2001
10 *
"Robert P. J. Day"2819f752006-07-11 11:32:31 +000011 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
John Beppub332e772000-01-29 12:59:01 +000012 */
13
Eric Andersendab3d462001-06-12 22:21:24 +000014#include <resolv.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
John Beppub332e772000-01-29 12:59:01 +000016
John Beppu50bc1012000-01-30 09:47:16 +000017/*
Denis Vlasenko391ffa12008-11-04 21:44:28 +000018 * I'm only implementing non-interactive mode;
19 * I totally forgot nslookup even had an interactive mode.
20 *
21 * This applet is the only user of res_init(). Without it,
22 * you may avoid pulling in _res global from libc.
John Beppu50bc1012000-01-30 09:47:16 +000023 */
John Beppub332e772000-01-29 12:59:01 +000024
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000025/* Examples of 'standard' nslookup output
26 * $ nslookup yahoo.com
27 * Server: 128.193.0.10
28 * Address: 128.193.0.10#53
Denis Vlasenkof7996f32007-01-11 17:20:00 +000029 *
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000030 * Non-authoritative answer:
31 * Name: yahoo.com
32 * Address: 216.109.112.135
33 * Name: yahoo.com
34 * Address: 66.94.234.13
35 *
36 * $ nslookup 204.152.191.37
37 * Server: 128.193.4.20
38 * Address: 128.193.4.20#53
Denis Vlasenkof7996f32007-01-11 17:20:00 +000039 *
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000040 * Non-authoritative answer:
41 * 37.191.152.204.in-addr.arpa canonical name = 37.32-27.191.152.204.in-addr.arpa.
42 * 37.32-27.191.152.204.in-addr.arpa name = zeus-pub2.kernel.org.
Denis Vlasenkof7996f32007-01-11 17:20:00 +000043 *
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000044 * Authoritative answers can be found from:
45 * 32-27.191.152.204.in-addr.arpa nameserver = ns1.kernel.org.
46 * 32-27.191.152.204.in-addr.arpa nameserver = ns2.kernel.org.
47 * 32-27.191.152.204.in-addr.arpa nameserver = ns3.kernel.org.
48 * ns1.kernel.org internet address = 140.211.167.34
49 * ns2.kernel.org internet address = 204.152.191.4
50 * ns3.kernel.org internet address = 204.152.191.36
51 */
John Beppub332e772000-01-29 12:59:01 +000052
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000053static int print_host(const char *hostname, const char *header)
John Beppub332e772000-01-29 12:59:01 +000054{
Denis Vlasenko42823d52007-02-04 02:39:08 +000055 /* We can't use xhost2sockaddr() - we want to get ALL addresses,
Denis Vlasenko448f0242007-01-22 22:43:05 +000056 * not just one */
Denis Vlasenko448f0242007-01-22 22:43:05 +000057 struct addrinfo *result = NULL;
58 int rc;
59 struct addrinfo hint;
60
61 memset(&hint, 0 , sizeof(hint));
62 /* hint.ai_family = AF_UNSPEC; - zero anyway */
63 /* Needed. Or else we will get each address thrice (or more)
64 * for each possible socket type (tcp,udp,raw...): */
65 hint.ai_socktype = SOCK_STREAM;
66 // hint.ai_flags = AI_CANONNAME;
67 rc = getaddrinfo(hostname, NULL /*service*/, &hint, &result);
68
69 if (!rc) {
70 struct addrinfo *cur = result;
71 unsigned cnt = 0;
72
73 printf("%-10s %s\n", header, hostname);
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +000074 // puts(cur->ai_canonname); ?
Denis Vlasenko448f0242007-01-22 22:43:05 +000075 while (cur) {
76 char *dotted, *revhost;
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +000077 dotted = xmalloc_sockaddr2dotted_noport(cur->ai_addr);
78 revhost = xmalloc_sockaddr2hostonly_noport(cur->ai_addr);
Denis Vlasenko448f0242007-01-22 22:43:05 +000079
80 printf("Address %u: %s%c", ++cnt, dotted, revhost ? ' ' : '\n');
81 if (revhost) {
82 puts(revhost);
83 if (ENABLE_FEATURE_CLEAN_UP)
84 free(revhost);
85 }
86 if (ENABLE_FEATURE_CLEAN_UP)
87 free(dotted);
88 cur = cur->ai_next;
89 }
90 } else {
91#if ENABLE_VERBOSE_RESOLUTION_ERRORS
Denis Vlasenko5de9e9c2007-01-22 22:46:04 +000092 bb_error_msg("can't resolve '%s': %s", hostname, gai_strerror(rc));
Denis Vlasenko448f0242007-01-22 22:43:05 +000093#else
94 bb_error_msg("can't resolve '%s'", hostname);
95#endif
96 }
97 if (ENABLE_FEATURE_CLEAN_UP)
98 freeaddrinfo(result);
99 return (rc != 0);
Denis Vlasenko448f0242007-01-22 22:43:05 +0000100}
101
Denis Vlasenko448f0242007-01-22 22:43:05 +0000102/* lookup the default nameserver and display it */
103static void server_print(void)
104{
105 char *server;
106
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000107 server = xmalloc_sockaddr2dotted_noport((struct sockaddr*)&_res.nsaddr_list[0]);
Denis Vlasenko448f0242007-01-22 22:43:05 +0000108 /* I honestly don't know what to do if DNS server has _IPv6 address_.
109 * Probably it is listed in
110 * _res._u._ext_.nsaddrs[MAXNS] (of type "struct sockaddr_in6*" each)
111 * but how to find out whether resolver uses
112 * _res.nsaddr_list[] or _res._u._ext_.nsaddrs[], or both?
113 * Looks like classic design from hell, BIND-grade. Hard to surpass. */
114 print_host(server, "Server:");
115 if (ENABLE_FEATURE_CLEAN_UP)
116 free(server);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000117 bb_putchar('\n');
John Beppub332e772000-01-29 12:59:01 +0000118}
119
Robert Griebl31a2e202002-07-24 00:56:56 +0000120/* alter the global _res nameserver structure to use
Denis Vlasenko391ffa12008-11-04 21:44:28 +0000121 an explicit dns server instead of what is in /etc/resolv.conf */
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000122static void set_default_dns(char *server)
Robert Griebl31a2e202002-07-24 00:56:56 +0000123{
124 struct in_addr server_in_addr;
125
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000126 if (inet_pton(AF_INET, server, &server_in_addr) > 0) {
Robert Griebl31a2e202002-07-24 00:56:56 +0000127 _res.nscount = 1;
128 _res.nsaddr_list[0].sin_addr = server_in_addr;
129 }
Eric Andersen39cdf4e2004-01-30 22:40:05 +0000130}
Robert Griebl31a2e202002-07-24 00:56:56 +0000131
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000132int nslookup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133int nslookup_main(int argc, char **argv)
John Beppub332e772000-01-29 12:59:01 +0000134{
Denis Vlasenko448f0242007-01-22 22:43:05 +0000135 /* We allow 1 or 2 arguments.
136 * The first is the name to be looked up and the second is an
137 * optional DNS server with which to do the lookup.
138 * More than 3 arguments is an error to follow the pattern of the
139 * standard nslookup */
Denis Vlasenko391ffa12008-11-04 21:44:28 +0000140 if (!argv[1] || argv[1][0] == '-' || argc > 3)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000141 bb_show_usage();
Denis Vlasenko448f0242007-01-22 22:43:05 +0000142
143 /* initialize DNS structure _res used in printing the default
144 * name server and in the explicit name server option feature. */
145 res_init();
146 /* rfc2133 says this enables IPv6 lookups */
Denis Vlasenko391ffa12008-11-04 21:44:28 +0000147 /* (but it also says "may be enabled in /etc/resolv.conf") */
Denis Vlasenko448f0242007-01-22 22:43:05 +0000148 /*_res.options |= RES_USE_INET6;*/
149
Denis Vlasenko391ffa12008-11-04 21:44:28 +0000150 if (argv[2])
Robert Griebl31a2e202002-07-24 00:56:56 +0000151 set_default_dns(argv[2]);
152
Eric Andersenfe9888a2001-01-20 21:51:21 +0000153 server_print();
Denis Vlasenko448f0242007-01-22 22:43:05 +0000154 return print_host(argv[1], "Name:");
John Beppub332e772000-01-29 12:59:01 +0000155}