Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini nslookup implementation for busybox |
| 4 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 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 | |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 24 | #include <ctype.h> |
| 25 | #include <errno.h> |
| 26 | #include <stdio.h> |
| 27 | #include <string.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 29 | |
| 30 | #include <netdb.h> |
| 31 | #include <sys/socket.h> |
| 32 | #include <sys/types.h> |
| 33 | #include <netinet/in.h> |
Eric Andersen | dab3d46 | 2001-06-12 22:21:24 +0000 | [diff] [blame] | 34 | #include <resolv.h> |
| 35 | #include <arpa/inet.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 36 | #include "busybox.h" |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 37 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 38 | /* |
| 39 | | I'm only implementing non-interactive mode; |
| 40 | | I totally forgot nslookup even had an interactive mode. |
| 41 | | |
| 42 | | [ TODO ] |
| 43 | | + find out how to use non-default name servers |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 44 | */ |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 45 | |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 46 | /* only works for IPv4 */ |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 47 | static int addr_fprint(char *addr) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 48 | { |
Erik Andersen | e272915 | 2000-02-18 21:34:17 +0000 | [diff] [blame] | 49 | u_int8_t split[4]; |
| 50 | u_int32_t ip; |
| 51 | u_int32_t *x = (u_int32_t *) addr; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 52 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 53 | 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 Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 58 | printf("%d.%d.%d.%d", split[0], split[1], split[2], split[3]); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 59 | return 0; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 60 | } |
| 61 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 62 | /* takes the NULL-terminated array h_addr_list, and |
| 63 | * prints its contents appropriately |
| 64 | */ |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 65 | static int addr_list_fprint(char **h_addr_list) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 66 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 67 | int i, j; |
| 68 | char *addr_string = (h_addr_list[1]) |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 69 | ? "Addresses: " : "Address: "; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 70 | |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 71 | printf("%s ", addr_string); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 72 | for (i = 0, j = 0; h_addr_list[i]; i++, j++) { |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 73 | addr_fprint(h_addr_list[i]); |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 74 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 75 | /* real nslookup does this */ |
| 76 | if (j == 4) { |
| 77 | if (h_addr_list[i + 1]) { |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 78 | printf("\n "); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 79 | } |
| 80 | j = 0; |
| 81 | } else { |
| 82 | if (h_addr_list[i + 1]) { |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 83 | printf(", "); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 87 | } |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 88 | printf("\n"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 89 | return 0; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 90 | } |
| 91 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 92 | /* print the results as nslookup would */ |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 93 | static struct hostent *hostent_fprint(struct hostent *host) |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 94 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 95 | if (host) { |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 96 | printf("Name: %s\n", host->h_name); |
| 97 | addr_list_fprint(host->h_addr_list); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 98 | } else { |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 99 | printf("*** Unknown host\n"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 100 | } |
| 101 | return host; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Eric Andersen | dab3d46 | 2001-06-12 22:21:24 +0000 | [diff] [blame] | 104 | /* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+ |
| 105 | * into a u_int32_t |
| 106 | */ |
| 107 | static 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 */ |
| 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 | |
Eric Andersen | 77b68e6 | 2001-07-06 17:51:29 +0000 | [diff] [blame] | 131 | #ifdef __UCLIBC__ |
| 132 | #warning FIXME after fixing uClibc to define struct _res |
| 133 | static inline void server_print(void) |
| 134 | { |
| 135 | printf("Server: %s\n", "default"); |
| 136 | printf("Address: %s\n\n", "default"); |
| 137 | } |
| 138 | #else |
Eric Andersen | dab3d46 | 2001-06-12 22:21:24 +0000 | [diff] [blame] | 139 | /* lookup the default nameserver and display it */ |
| 140 | static inline void server_print(void) |
| 141 | { |
| 142 | struct sockaddr_in def = _res.nsaddr_list[0]; |
| 143 | char *ip = inet_ntoa(def.sin_addr); |
| 144 | |
| 145 | hostent_fprint(gethostbyaddr_wrapper(ip)); |
| 146 | printf("\n"); |
| 147 | } |
Eric Andersen | 77b68e6 | 2001-07-06 17:51:29 +0000 | [diff] [blame] | 148 | #endif |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 149 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 150 | /* naive function to check whether char *s is an ip address */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 151 | static int is_ip_address(const char *s) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 152 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 153 | while (*s) { |
| 154 | if ((isdigit(*s)) || (*s == '.')) { |
| 155 | s++; |
| 156 | continue; |
| 157 | } |
| 158 | return 0; |
| 159 | } |
| 160 | return 1; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* ________________________________________________________________________ */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 164 | int nslookup_main(int argc, char **argv) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 165 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 166 | struct hostent *host; |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 167 | |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 168 | if (argc < 2 || *argv[1]=='-') { |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 169 | show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 170 | } |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 171 | |
Eric Andersen | dab3d46 | 2001-06-12 22:21:24 +0000 | [diff] [blame] | 172 | res_init(); |
Eric Andersen | fe9888a | 2001-01-20 21:51:21 +0000 | [diff] [blame] | 173 | server_print(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 174 | if (is_ip_address(argv[1])) { |
| 175 | host = gethostbyaddr_wrapper(argv[1]); |
| 176 | } else { |
| 177 | host = gethostbyname(argv[1]); |
| 178 | } |
Eric Andersen | 5f825ee | 2001-01-20 16:22:58 +0000 | [diff] [blame] | 179 | hostent_fprint(host); |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 180 | return EXIT_SUCCESS; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Eric Andersen | 77b68e6 | 2001-07-06 17:51:29 +0000 | [diff] [blame] | 183 | /* $Id: nslookup.c,v 1.24 2001/07/06 17:51:29 andersen Exp $ */ |