blob: 4beecc63b1e1497f5fe86025091ecf86ae2addef [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 Vlasenkoebe578a2006-10-26 17:17:59 +000050static int sockaddr_to_dotted(struct sockaddr *saddr, char *buf, int buflen)
51{
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}
64
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000065static int print_host(const char *hostname, const char *header)
John Beppub332e772000-01-29 12:59:01 +000066{
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000067 char str[128]; /* IPv6 address will fit, hostnames hopefully too */
68 struct addrinfo *result = NULL;
69 int rc;
70 struct addrinfo hint;
John Beppub332e772000-01-29 12:59:01 +000071
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000072 memset(&hint, 0 , sizeof(hint));
73 /* hint.ai_family = AF_UNSPEC; - zero anyway */
74 /* Needed. Or else we will get each address thrice (or more)
75 * for each possible socket type (tcp,udp,raw...): */
76 hint.ai_socktype = SOCK_STREAM;
77 // hint.ai_flags = AI_CANONNAME;
78 rc = getaddrinfo(hostname, NULL /*service*/, &hint, &result);
79 if (!rc) {
80 struct addrinfo *cur = result;
81 // printf("%s\n", cur->ai_canonname); ?
82 while (cur) {
83 sockaddr_to_dotted(cur->ai_addr, str, sizeof(str));
84 printf("%s %s\nAddress: %s", header, hostname, str);
Denis Vlasenko067e3f02006-11-10 23:25:53 +000085 str[0] = ' ';
Denis Vlasenko85281512006-11-07 19:05:43 +000086 if (getnameinfo(cur->ai_addr, cur->ai_addrlen, str+1, sizeof(str)-1, NULL, 0, NI_NAMEREQD))
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000087 str[0] = '\0';
Denis Vlasenko85281512006-11-07 19:05:43 +000088 puts(str);
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000089 cur = cur->ai_next;
Erik Andersene49d5ec2000-02-08 19:58:47 +000090 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 } else {
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000092 bb_error_msg("getaddrinfo('%s') failed: %s", hostname, gai_strerror(rc));
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 }
Denis Vlasenkoebe578a2006-10-26 17:17:59 +000094 freeaddrinfo(result);
95 return (rc != 0);
John Beppub332e772000-01-29 12:59:01 +000096}
97
John Beppub332e772000-01-29 12:59:01 +000098
Robert Griebl31a2e202002-07-24 00:56:56 +000099/* alter the global _res nameserver structure to use
100 an explicit dns server instead of what is in /etc/resolv.h */
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000101static void set_default_dns(char *server)
Robert Griebl31a2e202002-07-24 00:56:56 +0000102{
103 struct in_addr server_in_addr;
104
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000105 if (inet_pton(AF_INET, server, &server_in_addr) > 0) {
Robert Griebl31a2e202002-07-24 00:56:56 +0000106 _res.nscount = 1;
107 _res.nsaddr_list[0].sin_addr = server_in_addr;
108 }
Eric Andersen39cdf4e2004-01-30 22:40:05 +0000109}
Robert Griebl31a2e202002-07-24 00:56:56 +0000110
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000111
112/* lookup the default nameserver and display it */
113static void server_print(void)
John Beppub332e772000-01-29 12:59:01 +0000114{
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000115 char str[INET6_ADDRSTRLEN];
116
117 sockaddr_to_dotted((struct sockaddr*)&_res.nsaddr_list[0], str, sizeof(str));
118 print_host(str, "Server:");
119 puts("");
John Beppub332e772000-01-29 12:59:01 +0000120}
121
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000122
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123int nslookup_main(int argc, char **argv)
John Beppub332e772000-01-29 12:59:01 +0000124{
Robert Griebl31a2e202002-07-24 00:56:56 +0000125 /*
126 * initialize DNS structure _res used in printing the default
127 * name server and in the explicit name server option feature.
128 */
Eric Andersen39cdf4e2004-01-30 22:40:05 +0000129
Eric Andersendab3d462001-06-12 22:21:24 +0000130 res_init();
Robert Griebl31a2e202002-07-24 00:56:56 +0000131
132 /*
Eric Andersen39cdf4e2004-01-30 22:40:05 +0000133 * We allow 1 or 2 arguments.
134 * The first is the name to be looked up and the second is an
135 * optional DNS server with which to do the lookup.
Robert Griebl31a2e202002-07-24 00:56:56 +0000136 * More than 3 arguments is an error to follow the pattern of the
137 * standard nslookup
138 */
139
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000140 if (argc < 2 || *argv[1] == '-' || argc > 3)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000141 bb_show_usage();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000142 else if(argc == 3)
Robert Griebl31a2e202002-07-24 00:56:56 +0000143 set_default_dns(argv[2]);
144
Eric Andersenfe9888a2001-01-20 21:51:21 +0000145 server_print();
Denis Vlasenkoebe578a2006-10-26 17:17:59 +0000146 return print_host(argv[1], "Name: ");
John Beppub332e772000-01-29 12:59:01 +0000147}
148
Eric Andersen9789bf12004-10-13 07:25:01 +0000149/* $Id: nslookup.c,v 1.33 2004/10/13 07:25:01 andersen Exp $ */