Renamed "internal.h" to the more sensible "busybox.h".
[oweals/busybox.git] / nslookup.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini nslookup implementation for busybox
4  *
5  * Copyright (C) 2000 by Lineo, inc.
6  * Written by John Beppu <beppu@lineo.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "busybox.h"
25 #include <ctype.h>
26 #include <errno.h>
27 #include <stdio.h>
28 #include <string.h>
29
30 #include <netdb.h>
31 #include <sys/socket.h>
32 #include <sys/types.h>
33 #include <netinet/in.h>
34
35 /*
36  |  I'm only implementing non-interactive mode;
37  |  I totally forgot nslookup even had an interactive mode.
38  |
39  |  [ TODO ]
40  |  + find out how to use non-default name servers
41  |  + find out how the real nslookup gets the default name server
42  */
43
44 /* I have to see how the real nslookup does this.
45  * I could dig through /etc/resolv.conf, but is there a
46  * better (programatic) way?
47  */
48 static void server_fprint(FILE * dst)
49 {
50         fprintf(dst, "Server:     %s\n", "default");
51         fprintf(dst, "Address:    %s\n\n", "default");
52 }
53
54 /* only works for IPv4 */
55 static int addr_fprint(char *addr, FILE * dst)
56 {
57         u_int8_t split[4];
58         u_int32_t ip;
59         u_int32_t *x = (u_int32_t *) addr;
60
61         ip = ntohl(*x);
62         split[0] = (ip & 0xff000000) >> 24;
63         split[1] = (ip & 0x00ff0000) >> 16;
64         split[2] = (ip & 0x0000ff00) >> 8;
65         split[3] = (ip & 0x000000ff);
66         fprintf(dst, "%d.%d.%d.%d", split[0], split[1], split[2], split[3]
67                 );
68         return 0;
69 }
70
71 /* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
72  * into a u_int32_t
73  */
74 static u_int32_t str_to_addr(const char *addr)
75 {
76         u_int32_t split[4];
77         u_int32_t ip;
78
79         sscanf(addr, "%d.%d.%d.%d",
80                    &split[0], &split[1], &split[2], &split[3]);
81
82         /* assuming sscanf worked */
83         ip = (split[0] << 24) |
84                 (split[1] << 16) | (split[2] << 8) | (split[3]);
85
86         return htonl(ip);
87 }
88
89 /* takes the NULL-terminated array h_addr_list, and
90  * prints its contents appropriately
91  */
92 static int addr_list_fprint(char **h_addr_list, FILE * dst)
93 {
94         int i, j;
95         char *addr_string = (h_addr_list[1])
96                 ? "Addresses: " : "Address:   ";
97
98         fprintf(dst, "%s ", addr_string);
99         for (i = 0, j = 0; h_addr_list[i]; i++, j++) {
100                 addr_fprint(h_addr_list[i], dst);
101
102                 /* real nslookup does this */
103                 if (j == 4) {
104                         if (h_addr_list[i + 1]) {
105                                 fprintf(dst, "\n          ");
106                         }
107                         j = 0;
108                 } else {
109                         if (h_addr_list[i + 1]) {
110                                 fprintf(dst, ", ");
111                         }
112                 }
113
114         }
115         fprintf(dst, "\n");
116         return 0;
117 }
118
119 /* gethostbyaddr wrapper */
120 static struct hostent *gethostbyaddr_wrapper(const char *address)
121 {
122         struct in_addr addr;
123
124         addr.s_addr = str_to_addr(address);
125         return gethostbyaddr((char *) &addr, 4, AF_INET);       /* IPv4 only for now */
126 }
127
128 /* print the results as nslookup would */
129 static struct hostent *hostent_fprint(struct hostent *host, FILE * dst)
130 {
131         if (host) {
132                 fprintf(dst, "Name:       %s\n", host->h_name);
133                 addr_list_fprint(host->h_addr_list, dst);
134         } else {
135                 fprintf(dst, "*** Unknown host\n");
136         }
137         return host;
138 }
139
140
141 /* naive function to check whether char *s is an ip address */
142 static int is_ip_address(const char *s)
143 {
144         while (*s) {
145                 if ((isdigit(*s)) || (*s == '.')) {
146                         s++;
147                         continue;
148                 }
149                 return 0;
150         }
151         return 1;
152 }
153
154 /* ________________________________________________________________________ */
155 int nslookup_main(int argc, char **argv)
156 {
157         struct hostent *host;
158
159         if (argc < 2 || *argv[1]=='-') {
160                 usage(nslookup_usage);
161         }
162
163         server_fprint(stdout);
164         if (is_ip_address(argv[1])) {
165                 host = gethostbyaddr_wrapper(argv[1]);
166         } else {
167                 host = gethostbyname(argv[1]);
168         }
169         hostent_fprint(host, stdout);
170         return( TRUE);
171 }
172
173 /* $Id: nslookup.c,v 1.12 2000/09/25 21:45:58 andersen Exp $ */