Warn about apps that will be going away in release 0.50
[platform/upstream/busybox.git] / networking / 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 #warning This applet has moved to netkit-tiny.  After BusyBox 0.49, this
25 #warning applet will be removed from BusyBox.  All maintainence efforts
26 #warning should be done in the netkit-tiny source tree.
27
28 #include "busybox.h"
29 #include <ctype.h>
30 #include <errno.h>
31 #include <stdio.h>
32 #include <string.h>
33
34 #include <netdb.h>
35 #include <sys/socket.h>
36 #include <sys/types.h>
37 #include <netinet/in.h>
38
39 /*
40  |  I'm only implementing non-interactive mode;
41  |  I totally forgot nslookup even had an interactive mode.
42  |
43  |  [ TODO ]
44  |  + find out how to use non-default name servers
45  |  + find out how the real nslookup gets the default name server
46  */
47
48 /* I have to see how the real nslookup does this.
49  * I could dig through /etc/resolv.conf, but is there a
50  * better (programatic) way?
51  */
52 static inline void server_print(void)
53 {
54         printf("Server:     %s\n", "default");
55         printf("Address:    %s\n\n", "default");
56 }
57
58 /* only works for IPv4 */
59 static int addr_fprint(char *addr)
60 {
61         u_int8_t split[4];
62         u_int32_t ip;
63         u_int32_t *x = (u_int32_t *) addr;
64
65         ip = ntohl(*x);
66         split[0] = (ip & 0xff000000) >> 24;
67         split[1] = (ip & 0x00ff0000) >> 16;
68         split[2] = (ip & 0x0000ff00) >> 8;
69         split[3] = (ip & 0x000000ff);
70         printf("%d.%d.%d.%d", split[0], split[1], split[2], split[3]);
71         return 0;
72 }
73
74 /* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
75  * into a u_int32_t
76  */
77 static u_int32_t str_to_addr(const char *addr)
78 {
79         u_int32_t split[4];
80         u_int32_t ip;
81
82         sscanf(addr, "%d.%d.%d.%d",
83                    &split[0], &split[1], &split[2], &split[3]);
84
85         /* assuming sscanf worked */
86         ip = (split[0] << 24) |
87                 (split[1] << 16) | (split[2] << 8) | (split[3]);
88
89         return htonl(ip);
90 }
91
92 /* takes the NULL-terminated array h_addr_list, and
93  * prints its contents appropriately
94  */
95 static int addr_list_fprint(char **h_addr_list)
96 {
97         int i, j;
98         char *addr_string = (h_addr_list[1])
99                 ? "Addresses: " : "Address:   ";
100
101         printf("%s ", addr_string);
102         for (i = 0, j = 0; h_addr_list[i]; i++, j++) {
103                 addr_fprint(h_addr_list[i]);
104
105                 /* real nslookup does this */
106                 if (j == 4) {
107                         if (h_addr_list[i + 1]) {
108                                 printf("\n          ");
109                         }
110                         j = 0;
111                 } else {
112                         if (h_addr_list[i + 1]) {
113                                 printf(", ");
114                         }
115                 }
116
117         }
118         printf("\n");
119         return 0;
120 }
121
122 /* gethostbyaddr wrapper */
123 static 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 /* print the results as nslookup would */
132 static struct hostent *hostent_fprint(struct hostent *host)
133 {
134         if (host) {
135                 printf("Name:       %s\n", host->h_name);
136                 addr_list_fprint(host->h_addr_list);
137         } else {
138                 printf("*** Unknown host\n");
139         }
140         return host;
141 }
142
143
144 /* naive function to check whether char *s is an ip address */
145 static int is_ip_address(const char *s)
146 {
147         while (*s) {
148                 if ((isdigit(*s)) || (*s == '.')) {
149                         s++;
150                         continue;
151                 }
152                 return 0;
153         }
154         return 1;
155 }
156
157 /* ________________________________________________________________________ */
158 int nslookup_main(int argc, char **argv)
159 {
160         struct hostent *host;
161
162         if (argc < 2 || *argv[1]=='-') {
163                 usage(nslookup_usage);
164         }
165
166         server_print();
167         if (is_ip_address(argv[1])) {
168                 host = gethostbyaddr_wrapper(argv[1]);
169         } else {
170                 host = gethostbyname(argv[1]);
171         }
172         hostent_fprint(host);
173         return EXIT_SUCCESS;
174 }
175
176 /* $Id: nslookup.c,v 1.16 2001/01/22 22:48:42 andersen Exp $ */