blob: 271518f2207625ed6c73e3f6adc21e561e2387d6 [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 Andersen3570a342000-09-25 21:45:58 +000024#include "busybox.h"
John Beppub332e772000-01-29 12:59:01 +000025#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
John Beppu50bc1012000-01-30 09:47:16 +000035/*
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 */
John Beppub332e772000-01-29 12:59:01 +000043
John Beppu50bc1012000-01-30 09:47:16 +000044/* 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 */
Eric Andersenfe9888a2001-01-20 21:51:21 +000048static inline void server_print(void)
John Beppub332e772000-01-29 12:59:01 +000049{
Eric Andersen5f825ee2001-01-20 16:22:58 +000050 printf("Server: %s\n", "default");
51 printf("Address: %s\n\n", "default");
John Beppub332e772000-01-29 12:59:01 +000052}
53
54/* only works for IPv4 */
Eric Andersen5f825ee2001-01-20 16:22:58 +000055static int addr_fprint(char *addr)
John Beppub332e772000-01-29 12:59:01 +000056{
Erik Andersene2729152000-02-18 21:34:17 +000057 u_int8_t split[4];
58 u_int32_t ip;
59 u_int32_t *x = (u_int32_t *) addr;
John Beppub332e772000-01-29 12:59:01 +000060
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 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);
Eric Andersen5f825ee2001-01-20 16:22:58 +000066 printf("%d.%d.%d.%d", split[0], split[1], split[2], split[3]);
Erik Andersene49d5ec2000-02-08 19:58:47 +000067 return 0;
John Beppub332e772000-01-29 12:59:01 +000068}
69
John Beppu50bc1012000-01-30 09:47:16 +000070/* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
Erik Andersene2729152000-02-18 21:34:17 +000071 * into a u_int32_t
John Beppu50bc1012000-01-30 09:47:16 +000072 */
Erik Andersene2729152000-02-18 21:34:17 +000073static u_int32_t str_to_addr(const char *addr)
John Beppub332e772000-01-29 12:59:01 +000074{
Erik Andersene2729152000-02-18 21:34:17 +000075 u_int32_t split[4];
76 u_int32_t ip;
John Beppub332e772000-01-29 12:59:01 +000077
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 sscanf(addr, "%d.%d.%d.%d",
79 &split[0], &split[1], &split[2], &split[3]);
John Beppub332e772000-01-29 12:59:01 +000080
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 /* assuming sscanf worked */
82 ip = (split[0] << 24) |
83 (split[1] << 16) | (split[2] << 8) | (split[3]);
John Beppub332e772000-01-29 12:59:01 +000084
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 return htonl(ip);
John Beppub332e772000-01-29 12:59:01 +000086}
87
John Beppu50bc1012000-01-30 09:47:16 +000088/* takes the NULL-terminated array h_addr_list, and
89 * prints its contents appropriately
90 */
Eric Andersen5f825ee2001-01-20 16:22:58 +000091static int addr_list_fprint(char **h_addr_list)
John Beppub332e772000-01-29 12:59:01 +000092{
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 int i, j;
94 char *addr_string = (h_addr_list[1])
Erik Andersen5e1189e2000-04-15 16:34:54 +000095 ? "Addresses: " : "Address: ";
John Beppub332e772000-01-29 12:59:01 +000096
Eric Andersen5f825ee2001-01-20 16:22:58 +000097 printf("%s ", addr_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 for (i = 0, j = 0; h_addr_list[i]; i++, j++) {
Eric Andersen5f825ee2001-01-20 16:22:58 +000099 addr_fprint(h_addr_list[i]);
John Beppu50bc1012000-01-30 09:47:16 +0000100
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 /* real nslookup does this */
102 if (j == 4) {
103 if (h_addr_list[i + 1]) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000104 printf("\n ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 }
106 j = 0;
107 } else {
108 if (h_addr_list[i + 1]) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000109 printf(", ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000110 }
111 }
112
John Beppub332e772000-01-29 12:59:01 +0000113 }
Eric Andersen5f825ee2001-01-20 16:22:58 +0000114 printf("\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 return 0;
John Beppub332e772000-01-29 12:59:01 +0000116}
117
John Beppu50bc1012000-01-30 09:47:16 +0000118/* gethostbyaddr wrapper */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119static struct hostent *gethostbyaddr_wrapper(const char *address)
John Beppub332e772000-01-29 12:59:01 +0000120{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121 struct in_addr addr;
John Beppub332e772000-01-29 12:59:01 +0000122
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123 addr.s_addr = str_to_addr(address);
124 return gethostbyaddr((char *) &addr, 4, AF_INET); /* IPv4 only for now */
John Beppu50bc1012000-01-30 09:47:16 +0000125}
126
127/* print the results as nslookup would */
Eric Andersen5f825ee2001-01-20 16:22:58 +0000128static struct hostent *hostent_fprint(struct hostent *host)
John Beppu50bc1012000-01-30 09:47:16 +0000129{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 if (host) {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000131 printf("Name: %s\n", host->h_name);
132 addr_list_fprint(host->h_addr_list);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 } else {
Eric Andersen5f825ee2001-01-20 16:22:58 +0000134 printf("*** Unknown host\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 }
136 return host;
John Beppub332e772000-01-29 12:59:01 +0000137}
138
John Beppub332e772000-01-29 12:59:01 +0000139
John Beppu50bc1012000-01-30 09:47:16 +0000140/* naive function to check whether char *s is an ip address */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000141static int is_ip_address(const char *s)
John Beppub332e772000-01-29 12:59:01 +0000142{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 while (*s) {
144 if ((isdigit(*s)) || (*s == '.')) {
145 s++;
146 continue;
147 }
148 return 0;
149 }
150 return 1;
John Beppub332e772000-01-29 12:59:01 +0000151}
152
153/* ________________________________________________________________________ */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154int nslookup_main(int argc, char **argv)
John Beppub332e772000-01-29 12:59:01 +0000155{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 struct hostent *host;
John Beppu50bc1012000-01-30 09:47:16 +0000157
Erik Andersen5e1189e2000-04-15 16:34:54 +0000158 if (argc < 2 || *argv[1]=='-') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 usage(nslookup_usage);
160 }
John Beppub332e772000-01-29 12:59:01 +0000161
Eric Andersenfe9888a2001-01-20 21:51:21 +0000162 server_print();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 if (is_ip_address(argv[1])) {
164 host = gethostbyaddr_wrapper(argv[1]);
165 } else {
166 host = gethostbyname(argv[1]);
167 }
Eric Andersen5f825ee2001-01-20 16:22:58 +0000168 hostent_fprint(host);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000169 return EXIT_SUCCESS;
John Beppub332e772000-01-29 12:59:01 +0000170}
171
Eric Andersenf6c6d9a2001-01-24 18:44:54 +0000172/* $Id: nslookup.c,v 1.18 2001/01/24 18:44:54 andersen Exp $ */