blob: af0816215e95e54cd1ec3ba9411fddc51db3aca1 [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>
Eric Andersencbe31da2001-02-20 06:14:08 +000015#include "busybox.h"
John Beppub332e772000-01-29 12:59:01 +000016
John Beppu50bc1012000-01-30 09:47:16 +000017/*
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000018 * I'm only implementing non-interactive mode;
19 * I totally forgot nslookup even had an interactive mode.
John Beppu50bc1012000-01-30 09:47:16 +000020 */
John Beppub332e772000-01-29 12:59:01 +000021
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000022/* Examples of 'standard' nslookup output
23 * $ nslookup yahoo.com
24 * Server: 128.193.0.10
25 * Address: 128.193.0.10#53
Denis Vlasenkof7996f32007-01-11 17:20:00 +000026 *
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000027 * Non-authoritative answer:
28 * Name: yahoo.com
29 * Address: 216.109.112.135
30 * Name: yahoo.com
31 * Address: 66.94.234.13
32 *
33 * $ nslookup 204.152.191.37
34 * Server: 128.193.4.20
35 * Address: 128.193.4.20#53
Denis Vlasenkof7996f32007-01-11 17:20:00 +000036 *
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000037 * Non-authoritative answer:
38 * 37.191.152.204.in-addr.arpa canonical name = 37.32-27.191.152.204.in-addr.arpa.
39 * 37.32-27.191.152.204.in-addr.arpa name = zeus-pub2.kernel.org.
Denis Vlasenkof7996f32007-01-11 17:20:00 +000040 *
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000041 * Authoritative answers can be found from:
42 * 32-27.191.152.204.in-addr.arpa nameserver = ns1.kernel.org.
43 * 32-27.191.152.204.in-addr.arpa nameserver = ns2.kernel.org.
44 * 32-27.191.152.204.in-addr.arpa nameserver = ns3.kernel.org.
45 * ns1.kernel.org internet address = 140.211.167.34
46 * ns2.kernel.org internet address = 204.152.191.4
47 * ns3.kernel.org internet address = 204.152.191.36
48 */
John Beppub332e772000-01-29 12:59:01 +000049
Denis Vlasenko448f0242007-01-22 22:43:05 +000050/*static int sockaddr_to_dotted(struct sockaddr *saddr, char *buf, int buflen)
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000051{
52 if (buflen <= 0) return -1;
53 buf[0] = '\0';
54 if (saddr->sa_family == AF_INET) {
55 inet_ntop(AF_INET, &((struct sockaddr_in*)saddr)->sin_addr, buf, buflen);
56 return 0;
57 }
58 if (saddr->sa_family == AF_INET6) {
59 inet_ntop(AF_INET6, &((struct sockaddr_in6*)saddr)->sin6_addr, buf, buflen);
60 return 0;
61 }
62 return -1;
John Beppub332e772000-01-29 12:59:01 +000063}
Denis Vlasenko448f0242007-01-22 22:43:05 +000064*/
John Beppub332e772000-01-29 12:59:01 +000065
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000066static int print_host(const char *hostname, const char *header)
John Beppub332e772000-01-29 12:59:01 +000067{
Denis Vlasenko448f0242007-01-22 22:43:05 +000068#if 0
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000069 char str[128]; /* IPv6 address will fit, hostnames hopefully too */
70 struct addrinfo *result = NULL;
71 int rc;
72 struct addrinfo hint;
John Beppub332e772000-01-29 12:59:01 +000073
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000074 memset(&hint, 0 , sizeof(hint));
75 /* hint.ai_family = AF_UNSPEC; - zero anyway */
76 /* Needed. Or else we will get each address thrice (or more)
77 * for each possible socket type (tcp,udp,raw...): */
78 hint.ai_socktype = SOCK_STREAM;
79 // hint.ai_flags = AI_CANONNAME;
80 rc = getaddrinfo(hostname, NULL /*service*/, &hint, &result);
Denis Vlasenko448f0242007-01-22 22:43:05 +000081
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000082 if (!rc) {
83 struct addrinfo *cur = result;
84 // printf("%s\n", cur->ai_canonname); ?
85 while (cur) {
86 sockaddr_to_dotted(cur->ai_addr, str, sizeof(str));
87 printf("%s %s\nAddress: %s", header, hostname, str);
Denis Vlasenko067e3f02006-11-10 23:25:53 +000088 str[0] = ' ';
Denis Vlasenko85281512006-11-07 19:05:43 +000089 if (getnameinfo(cur->ai_addr, cur->ai_addrlen, str+1, sizeof(str)-1, NULL, 0, NI_NAMEREQD))
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000090 str[0] = '\0';
Denis Vlasenko85281512006-11-07 19:05:43 +000091 puts(str);
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000092 cur = cur->ai_next;
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000094 } else {
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000095 bb_error_msg("getaddrinfo('%s') failed: %s", hostname, gai_strerror(rc));
Erik Andersene49d5ec2000-02-08 19:58:47 +000096 }
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000097 freeaddrinfo(result);
98 return (rc != 0);
Denis Vlasenko448f0242007-01-22 22:43:05 +000099
100#else
101 /* We can't use host2sockaddr() - we want to get ALL addresses,
102 * not just one */
103
104 struct addrinfo *result = NULL;
105 int rc;
106 struct addrinfo hint;
107
108 memset(&hint, 0 , sizeof(hint));
109 /* hint.ai_family = AF_UNSPEC; - zero anyway */
110 /* Needed. Or else we will get each address thrice (or more)
111 * for each possible socket type (tcp,udp,raw...): */
112 hint.ai_socktype = SOCK_STREAM;
113 // hint.ai_flags = AI_CANONNAME;
114 rc = getaddrinfo(hostname, NULL /*service*/, &hint, &result);
115
116 if (!rc) {
117 struct addrinfo *cur = result;
118 unsigned cnt = 0;
119
120 printf("%-10s %s\n", header, hostname);
121 // printf("%s\n", cur->ai_canonname); ?
122 while (cur) {
123 char *dotted, *revhost;
124 dotted = xmalloc_sockaddr2dotted_noport(cur->ai_addr, cur->ai_addrlen);
125 revhost = xmalloc_sockaddr2hostonly_noport(cur->ai_addr, cur->ai_addrlen);
126
127 printf("Address %u: %s%c", ++cnt, dotted, revhost ? ' ' : '\n');
128 if (revhost) {
129 puts(revhost);
130 if (ENABLE_FEATURE_CLEAN_UP)
131 free(revhost);
132 }
133 if (ENABLE_FEATURE_CLEAN_UP)
134 free(dotted);
135 cur = cur->ai_next;
136 }
137 } else {
138#if ENABLE_VERBOSE_RESOLUTION_ERRORS
139 bb_error_msg("getaddrinfo('%s') failed: %s", hostname, gai_strerror(rc));
140#else
141 bb_error_msg("can't resolve '%s'", hostname);
142#endif
143 }
144 if (ENABLE_FEATURE_CLEAN_UP)
145 freeaddrinfo(result);
146 return (rc != 0);
147#endif
148}
149
150
151/* lookup the default nameserver and display it */
152static void server_print(void)
153{
154 char *server;
155
156 server = xmalloc_sockaddr2dotted_noport((struct sockaddr*)&_res.nsaddr_list[0],
157 sizeof(struct sockaddr_in));
158 /* I honestly don't know what to do if DNS server has _IPv6 address_.
159 * Probably it is listed in
160 * _res._u._ext_.nsaddrs[MAXNS] (of type "struct sockaddr_in6*" each)
161 * but how to find out whether resolver uses
162 * _res.nsaddr_list[] or _res._u._ext_.nsaddrs[], or both?
163 * Looks like classic design from hell, BIND-grade. Hard to surpass. */
164 print_host(server, "Server:");
165 if (ENABLE_FEATURE_CLEAN_UP)
166 free(server);
167 puts("");
John Beppub332e772000-01-29 12:59:01 +0000168}
169
John Beppub332e772000-01-29 12:59:01 +0000170
Robert Griebl31a2e202002-07-24 00:56:56 +0000171/* alter the global _res nameserver structure to use
172 an explicit dns server instead of what is in /etc/resolv.h */
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000173static void set_default_dns(char *server)
Robert Griebl31a2e202002-07-24 00:56:56 +0000174{
175 struct in_addr server_in_addr;
176
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000177 if (inet_pton(AF_INET, server, &server_in_addr) > 0) {
Robert Griebl31a2e202002-07-24 00:56:56 +0000178 _res.nscount = 1;
179 _res.nsaddr_list[0].sin_addr = server_in_addr;
180 }
Eric Andersen39cdf4e2004-01-30 22:40:05 +0000181}
Robert Griebl31a2e202002-07-24 00:56:56 +0000182
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000183
Erik Andersene49d5ec2000-02-08 19:58:47 +0000184int nslookup_main(int argc, char **argv)
John Beppub332e772000-01-29 12:59:01 +0000185{
Denis Vlasenko448f0242007-01-22 22:43:05 +0000186 /* We allow 1 or 2 arguments.
187 * The first is the name to be looked up and the second is an
188 * optional DNS server with which to do the lookup.
189 * More than 3 arguments is an error to follow the pattern of the
190 * standard nslookup */
Robert Griebl31a2e202002-07-24 00:56:56 +0000191
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000192 if (argc < 2 || *argv[1] == '-' || argc > 3)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000193 bb_show_usage();
Denis Vlasenko448f0242007-01-22 22:43:05 +0000194
195 /* initialize DNS structure _res used in printing the default
196 * name server and in the explicit name server option feature. */
197 res_init();
198 /* rfc2133 says this enables IPv6 lookups */
199 /* (but it also says "may be enabled in /etc/resolv.conf|) */
200 /*_res.options |= RES_USE_INET6;*/
201
202 if(argc == 3)
Robert Griebl31a2e202002-07-24 00:56:56 +0000203 set_default_dns(argv[2]);
204
Eric Andersenfe9888a2001-01-20 21:51:21 +0000205 server_print();
Denis Vlasenko448f0242007-01-22 22:43:05 +0000206 return print_host(argv[1], "Name:");
John Beppub332e772000-01-29 12:59:01 +0000207}