blob: 16162b5403abaa9612887f9c7477dcb2abf666ed [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 *
John Beppub332e772000-01-29 12:59:01 +00005 * 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
Eric Andersen67059862001-01-22 22:48:42 +000024#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
Eric Andersen3570a342000-09-25 21:45:58 +000028#include "busybox.h"
John Beppub332e772000-01-29 12:59:01 +000029#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
John Beppu50bc1012000-01-30 09:47:16 +000039/*
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 */
John Beppub332e772000-01-29 12:59:01 +000047
John Beppu50bc1012000-01-30 09:47:16 +000048/* 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 */
Eric Andersenfe9888a2001-01-20 21:51:21 +000052static inline void server_print(void)
John Beppub332e772000-01-29 12:59:01 +000053{
Eric Andersen5f825ee2001-01-20 16:22:58 +000054 printf("Server: %s\n", "default");
55 printf("Address: %s\n\n", "default");
John Beppub332e772000-01-29 12:59:01 +000056}
57
58/* only works for IPv4 */
Eric Andersen5f825ee2001-01-20 16:22:58 +000059static int addr_fprint(char *addr)
John Beppub332e772000-01-29 12:59:01 +000060{
Erik Andersene2729152000-02-18 21:34:17 +000061 u_int8_t split[4];
62 u_int32_t ip;
63 u_int32_t *x = (u_int32_t *) addr;
John Beppub332e772000-01-29 12:59:01 +000064
Erik Andersene49d5ec2000-02-08 19:58:47 +000065 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);
Eric Andersen5f825ee2001-01-20 16:22:58 +000070 printf("%d.%d.%d.%d", split[0], split[1], split[2], split[3]);
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 return 0;
John Beppub332e772000-01-29 12:59:01 +000072}
73
John Beppu50bc1012000-01-30 09:47:16 +000074/* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
Erik Andersene2729152000-02-18 21:34:17 +000075 * into a u_int32_t
John Beppu50bc1012000-01-30 09:47:16 +000076 */
Erik Andersene2729152000-02-18 21:34:17 +000077static u_int32_t str_to_addr(const char *addr)
John Beppub332e772000-01-29 12:59:01 +000078{
Erik Andersene2729152000-02-18 21:34:17 +000079 u_int32_t split[4];
80 u_int32_t ip;
John Beppub332e772000-01-29 12:59:01 +000081
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 sscanf(addr, "%d.%d.%d.%d",
83 &split[0], &split[1], &split[2], &split[3]);
John Beppub332e772000-01-29 12:59:01 +000084
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 /* assuming sscanf worked */
86 ip = (split[0] << 24) |
87 (split[1] << 16) | (split[2] << 8) | (split[3]);
John Beppub332e772000-01-29 12:59:01 +000088
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 return htonl(ip);
John Beppub332e772000-01-29 12:59:01 +000090}
91
John Beppu50bc1012000-01-30 09:47:16 +000092/* takes the NULL-terminated array h_addr_list, and
93 * prints its contents appropriately
94 */
Eric Andersen5f825ee2001-01-20 16:22:58 +000095static int addr_list_fprint(char **h_addr_list)
John Beppub332e772000-01-29 12:59:01 +000096{
Erik Andersene49d5ec2000-02-08 19:58:47 +000097 int i, j;
98 char *addr_string = (h_addr_list[1])
Erik Andersen5e1189e2000-04-15 16:34:54 +000099 ? "Addresses: " : "Address: ";
John Beppub332e772000-01-29 12:59:01 +0000100
Eric Andersen5f825ee2001-01-20 16:22:58 +0000101 printf("%s ", addr_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000102 for (i = 0, j = 0; h_addr_list[i]; i++, j++) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000103 addr_fprint(h_addr_list[i]);
John Beppu50bc1012000-01-30 09:47:16 +0000104
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 /* real nslookup does this */
106 if (j == 4) {
107 if (h_addr_list[i + 1]) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000108 printf("\n ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 }
110 j = 0;
111 } else {
112 if (h_addr_list[i + 1]) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000113 printf(", ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114 }
115 }
116
John Beppub332e772000-01-29 12:59:01 +0000117 }
Eric Andersen5f825ee2001-01-20 16:22:58 +0000118 printf("\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119 return 0;
John Beppub332e772000-01-29 12:59:01 +0000120}
121
John Beppu50bc1012000-01-30 09:47:16 +0000122/* gethostbyaddr wrapper */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123static struct hostent *gethostbyaddr_wrapper(const char *address)
John Beppub332e772000-01-29 12:59:01 +0000124{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 struct in_addr addr;
John Beppub332e772000-01-29 12:59:01 +0000126
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 addr.s_addr = str_to_addr(address);
128 return gethostbyaddr((char *) &addr, 4, AF_INET); /* IPv4 only for now */
John Beppu50bc1012000-01-30 09:47:16 +0000129}
130
131/* print the results as nslookup would */
Eric Andersen5f825ee2001-01-20 16:22:58 +0000132static struct hostent *hostent_fprint(struct hostent *host)
John Beppu50bc1012000-01-30 09:47:16 +0000133{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 if (host) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000135 printf("Name: %s\n", host->h_name);
136 addr_list_fprint(host->h_addr_list);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137 } else {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000138 printf("*** Unknown host\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139 }
140 return host;
John Beppub332e772000-01-29 12:59:01 +0000141}
142
John Beppub332e772000-01-29 12:59:01 +0000143
John Beppu50bc1012000-01-30 09:47:16 +0000144/* naive function to check whether char *s is an ip address */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145static int is_ip_address(const char *s)
John Beppub332e772000-01-29 12:59:01 +0000146{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147 while (*s) {
148 if ((isdigit(*s)) || (*s == '.')) {
149 s++;
150 continue;
151 }
152 return 0;
153 }
154 return 1;
John Beppub332e772000-01-29 12:59:01 +0000155}
156
157/* ________________________________________________________________________ */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000158int nslookup_main(int argc, char **argv)
John Beppub332e772000-01-29 12:59:01 +0000159{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 struct hostent *host;
John Beppu50bc1012000-01-30 09:47:16 +0000161
Erik Andersen5e1189e2000-04-15 16:34:54 +0000162 if (argc < 2 || *argv[1]=='-') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 usage(nslookup_usage);
164 }
John Beppub332e772000-01-29 12:59:01 +0000165
Eric Andersenfe9888a2001-01-20 21:51:21 +0000166 server_print();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000167 if (is_ip_address(argv[1])) {
168 host = gethostbyaddr_wrapper(argv[1]);
169 } else {
170 host = gethostbyname(argv[1]);
171 }
Eric Andersen5f825ee2001-01-20 16:22:58 +0000172 hostent_fprint(host);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000173 return EXIT_SUCCESS;
John Beppub332e772000-01-29 12:59:01 +0000174}
175
Eric Andersen67059862001-01-22 22:48:42 +0000176/* $Id: nslookup.c,v 1.16 2001/01/22 22:48:42 andersen Exp $ */