blob: 0f3102e30b3906660b05d8354d8e4460d716ac12 [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 *
Robert Griebl31a2e202002-07-24 00:56:56 +00008 * Correct default name server display and explicit name server option
9 * added by Ben Zeckel <bzeckel@hmc.edu> June 2001
10 *
John Beppub332e772000-01-29 12:59:01 +000011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 */
26
John Beppub332e772000-01-29 12:59:01 +000027#include <ctype.h>
28#include <errno.h>
29#include <stdio.h>
30#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000031#include <stdlib.h>
John Beppub332e772000-01-29 12:59:01 +000032
33#include <netdb.h>
34#include <sys/socket.h>
35#include <sys/types.h>
36#include <netinet/in.h>
Eric Andersendab3d462001-06-12 22:21:24 +000037#include <resolv.h>
38#include <arpa/inet.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000039#include "busybox.h"
John Beppub332e772000-01-29 12:59:01 +000040
John Beppu50bc1012000-01-30 09:47:16 +000041/*
42 | I'm only implementing non-interactive mode;
43 | I totally forgot nslookup even had an interactive mode.
John Beppu50bc1012000-01-30 09:47:16 +000044 */
John Beppub332e772000-01-29 12:59:01 +000045
John Beppub332e772000-01-29 12:59:01 +000046/* only works for IPv4 */
Eric Andersen5f825ee2001-01-20 16:22:58 +000047static int addr_fprint(char *addr)
John Beppub332e772000-01-29 12:59:01 +000048{
Erik Andersene2729152000-02-18 21:34:17 +000049 u_int8_t split[4];
50 u_int32_t ip;
51 u_int32_t *x = (u_int32_t *) addr;
John Beppub332e772000-01-29 12:59:01 +000052
Erik Andersene49d5ec2000-02-08 19:58:47 +000053 ip = ntohl(*x);
54 split[0] = (ip & 0xff000000) >> 24;
55 split[1] = (ip & 0x00ff0000) >> 16;
56 split[2] = (ip & 0x0000ff00) >> 8;
57 split[3] = (ip & 0x000000ff);
Eric Andersen5f825ee2001-01-20 16:22:58 +000058 printf("%d.%d.%d.%d", split[0], split[1], split[2], split[3]);
Erik Andersene49d5ec2000-02-08 19:58:47 +000059 return 0;
John Beppub332e772000-01-29 12:59:01 +000060}
61
John Beppu50bc1012000-01-30 09:47:16 +000062/* takes the NULL-terminated array h_addr_list, and
63 * prints its contents appropriately
64 */
Eric Andersen5f825ee2001-01-20 16:22:58 +000065static int addr_list_fprint(char **h_addr_list)
John Beppub332e772000-01-29 12:59:01 +000066{
Erik Andersene49d5ec2000-02-08 19:58:47 +000067 int i, j;
68 char *addr_string = (h_addr_list[1])
Erik Andersen5e1189e2000-04-15 16:34:54 +000069 ? "Addresses: " : "Address: ";
John Beppub332e772000-01-29 12:59:01 +000070
Eric Andersen5f825ee2001-01-20 16:22:58 +000071 printf("%s ", addr_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +000072 for (i = 0, j = 0; h_addr_list[i]; i++, j++) {
Eric Andersen5f825ee2001-01-20 16:22:58 +000073 addr_fprint(h_addr_list[i]);
John Beppu50bc1012000-01-30 09:47:16 +000074
Erik Andersene49d5ec2000-02-08 19:58:47 +000075 /* real nslookup does this */
76 if (j == 4) {
77 if (h_addr_list[i + 1]) {
Eric Andersen5f825ee2001-01-20 16:22:58 +000078 printf("\n ");
Erik Andersene49d5ec2000-02-08 19:58:47 +000079 }
80 j = 0;
81 } else {
82 if (h_addr_list[i + 1]) {
Eric Andersen5f825ee2001-01-20 16:22:58 +000083 printf(", ");
Erik Andersene49d5ec2000-02-08 19:58:47 +000084 }
85 }
86
John Beppub332e772000-01-29 12:59:01 +000087 }
Eric Andersen5f825ee2001-01-20 16:22:58 +000088 printf("\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 return 0;
John Beppub332e772000-01-29 12:59:01 +000090}
91
John Beppu50bc1012000-01-30 09:47:16 +000092/* print the results as nslookup would */
Eric Andersencd8c4362001-11-10 11:22:46 +000093static struct hostent *hostent_fprint(struct hostent *host, const char *server_host)
John Beppu50bc1012000-01-30 09:47:16 +000094{
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 if (host) {
Eric Andersencd8c4362001-11-10 11:22:46 +000096 printf("%s %s\n", server_host, host->h_name);
Eric Andersen5f825ee2001-01-20 16:22:58 +000097 addr_list_fprint(host->h_addr_list);
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 } else {
Eric Andersen5f825ee2001-01-20 16:22:58 +000099 printf("*** Unknown host\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100 }
101 return host;
John Beppub332e772000-01-29 12:59:01 +0000102}
103
Eric Andersendab3d462001-06-12 22:21:24 +0000104/* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
105 * into a u_int32_t
106 */
107static u_int32_t str_to_addr(const char *addr)
108{
109 u_int32_t split[4];
110 u_int32_t ip;
111
112 sscanf(addr, "%d.%d.%d.%d",
113 &split[0], &split[1], &split[2], &split[3]);
114
115 /* assuming sscanf worked */
116 ip = (split[0] << 24) |
117 (split[1] << 16) | (split[2] << 8) | (split[3]);
118
119 return htonl(ip);
120}
121
122/* gethostbyaddr wrapper */
123static struct hostent *gethostbyaddr_wrapper(const char *address)
124{
125 struct in_addr addr;
126
127 addr.s_addr = str_to_addr(address);
128 return gethostbyaddr((char *) &addr, 4, AF_INET); /* IPv4 only for now */
129}
130
131/* lookup the default nameserver and display it */
132static inline void server_print(void)
133{
134 struct sockaddr_in def = _res.nsaddr_list[0];
135 char *ip = inet_ntoa(def.sin_addr);
136
Eric Andersencd8c4362001-11-10 11:22:46 +0000137 hostent_fprint(gethostbyaddr_wrapper(ip), "Server:");
Eric Andersendab3d462001-06-12 22:21:24 +0000138 printf("\n");
139}
John Beppub332e772000-01-29 12:59:01 +0000140
Robert Griebl31a2e202002-07-24 00:56:56 +0000141/* alter the global _res nameserver structure to use
142 an explicit dns server instead of what is in /etc/resolv.h */
143static inline void set_default_dns(char *server)
144{
145 struct in_addr server_in_addr;
146
147 if(inet_aton(server,&server_in_addr))
148 {
149 _res.nscount = 1;
150 _res.nsaddr_list[0].sin_addr = server_in_addr;
151 }
152}
153
John Beppu50bc1012000-01-30 09:47:16 +0000154/* naive function to check whether char *s is an ip address */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155static int is_ip_address(const char *s)
John Beppub332e772000-01-29 12:59:01 +0000156{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 while (*s) {
158 if ((isdigit(*s)) || (*s == '.')) {
159 s++;
160 continue;
161 }
162 return 0;
163 }
164 return 1;
John Beppub332e772000-01-29 12:59:01 +0000165}
166
167/* ________________________________________________________________________ */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168int nslookup_main(int argc, char **argv)
John Beppub332e772000-01-29 12:59:01 +0000169{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170 struct hostent *host;
John Beppu50bc1012000-01-30 09:47:16 +0000171
Robert Griebl31a2e202002-07-24 00:56:56 +0000172 /*
173 * initialize DNS structure _res used in printing the default
174 * name server and in the explicit name server option feature.
175 */
176
Eric Andersendab3d462001-06-12 22:21:24 +0000177 res_init();
Robert Griebl31a2e202002-07-24 00:56:56 +0000178
179 /*
180 * We allow 1 or 2 arguments.
181 * The first is the name to be looked up and the second is an
182 * optional DNS server with which to do the lookup.
183 * More than 3 arguments is an error to follow the pattern of the
184 * standard nslookup
185 */
186
187 if (argc < 2 || *argv[1]=='-' || argc > 3)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 bb_show_usage();
Robert Griebl31a2e202002-07-24 00:56:56 +0000189 else if(argc == 3)
190 set_default_dns(argv[2]);
191
Eric Andersenfe9888a2001-01-20 21:51:21 +0000192 server_print();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000193 if (is_ip_address(argv[1])) {
194 host = gethostbyaddr_wrapper(argv[1]);
195 } else {
Matt Kraai524fcb92001-10-01 17:50:25 +0000196 host = xgethostbyname(argv[1]);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197 }
Eric Andersencd8c4362001-11-10 11:22:46 +0000198 hostent_fprint(host, "Name: ");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000199 return EXIT_SUCCESS;
John Beppub332e772000-01-29 12:59:01 +0000200}
201
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202/* $Id: nslookup.c,v 1.30 2003/03/19 09:12:38 mjn3 Exp $ */