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 | * |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 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 "internal.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 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 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 | */ |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 43 | |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 44 | static const char nslookup_usage[] = "nslookup [HOST]\n\nQueries the nameserver for the IP address of the given HOST\n"; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 45 | |
| 46 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 47 | /* I have to see how the real nslookup does this. |
| 48 | * I could dig through /etc/resolv.conf, but is there a |
| 49 | * better (programatic) way? |
| 50 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 51 | static void server_fprint(FILE * dst) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 52 | { |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 53 | fprintf(dst, "Server: %s\n", "default"); |
| 54 | fprintf(dst, "Address: %s\n\n", "default"); |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /* only works for IPv4 */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 58 | static int addr_fprint(char *addr, FILE * dst) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 59 | { |
Erik Andersen | e272915 | 2000-02-18 21:34:17 +0000 | [diff] [blame] | 60 | u_int8_t split[4]; |
| 61 | u_int32_t ip; |
| 62 | u_int32_t *x = (u_int32_t *) addr; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 63 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 64 | ip = ntohl(*x); |
| 65 | split[0] = (ip & 0xff000000) >> 24; |
| 66 | split[1] = (ip & 0x00ff0000) >> 16; |
| 67 | split[2] = (ip & 0x0000ff00) >> 8; |
| 68 | split[3] = (ip & 0x000000ff); |
| 69 | fprintf(dst, "%d.%d.%d.%d", split[0], split[1], split[2], split[3] |
| 70 | ); |
| 71 | return 0; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 72 | } |
| 73 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 74 | /* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+ |
Erik Andersen | e272915 | 2000-02-18 21:34:17 +0000 | [diff] [blame] | 75 | * into a u_int32_t |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 76 | */ |
Erik Andersen | e272915 | 2000-02-18 21:34:17 +0000 | [diff] [blame] | 77 | static u_int32_t str_to_addr(const char *addr) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 78 | { |
Erik Andersen | e272915 | 2000-02-18 21:34:17 +0000 | [diff] [blame] | 79 | u_int32_t split[4]; |
| 80 | u_int32_t ip; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 81 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 82 | sscanf(addr, "%d.%d.%d.%d", |
| 83 | &split[0], &split[1], &split[2], &split[3]); |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 84 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 85 | /* assuming sscanf worked */ |
| 86 | ip = (split[0] << 24) | |
| 87 | (split[1] << 16) | (split[2] << 8) | (split[3]); |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 88 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 89 | return htonl(ip); |
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 | /* takes the NULL-terminated array h_addr_list, and |
| 93 | * prints its contents appropriately |
| 94 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 95 | static int addr_list_fprint(char **h_addr_list, FILE * dst) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 96 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 97 | int i, j; |
| 98 | char *addr_string = (h_addr_list[1]) |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 99 | ? "Addresses: " : "Address: "; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 100 | |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 101 | fprintf(dst, "%s ", addr_string); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 102 | for (i = 0, j = 0; h_addr_list[i]; i++, j++) { |
| 103 | addr_fprint(h_addr_list[i], dst); |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 104 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 105 | /* real nslookup does this */ |
| 106 | if (j == 4) { |
| 107 | if (h_addr_list[i + 1]) { |
| 108 | fprintf(dst, "\n "); |
| 109 | } |
| 110 | j = 0; |
| 111 | } else { |
| 112 | if (h_addr_list[i + 1]) { |
| 113 | fprintf(dst, ", "); |
| 114 | } |
| 115 | } |
| 116 | |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 117 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 118 | fprintf(dst, "\n"); |
| 119 | return 0; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 120 | } |
| 121 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 122 | /* gethostbyaddr wrapper */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 123 | static struct hostent *gethostbyaddr_wrapper(const char *address) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 124 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 125 | struct in_addr addr; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 126 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 127 | addr.s_addr = str_to_addr(address); |
| 128 | return gethostbyaddr((char *) &addr, 4, AF_INET); /* IPv4 only for now */ |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* print the results as nslookup would */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 132 | static struct hostent *hostent_fprint(struct hostent *host, FILE * dst) |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 133 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 134 | if (host) { |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 135 | fprintf(dst, "Name: %s\n", host->h_name); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 136 | addr_list_fprint(host->h_addr_list, dst); |
| 137 | } else { |
| 138 | fprintf(dst, "*** %s\n", hstrerror(h_errno)); |
| 139 | } |
| 140 | return host; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 141 | } |
| 142 | |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 143 | |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 144 | /* naive function to check whether char *s is an ip address */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 145 | static int is_ip_address(const char *s) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 146 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 147 | while (*s) { |
| 148 | if ((isdigit(*s)) || (*s == '.')) { |
| 149 | s++; |
| 150 | continue; |
| 151 | } |
| 152 | return 0; |
| 153 | } |
| 154 | return 1; |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | /* ________________________________________________________________________ */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 158 | int nslookup_main(int argc, char **argv) |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 159 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 160 | struct hostent *host; |
John Beppu | 50bc101 | 2000-01-30 09:47:16 +0000 | [diff] [blame] | 161 | |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 162 | if (argc < 2 || *argv[1]=='-') { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 163 | usage(nslookup_usage); |
| 164 | } |
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 | server_fprint(stdout); |
| 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, stdout); |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 173 | exit( TRUE); |
John Beppu | b332e77 | 2000-01-29 12:59:01 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Erik Andersen | 5e1189e | 2000-04-15 16:34:54 +0000 | [diff] [blame] | 176 | /* $Id: nslookup.c,v 1.7 2000/04/15 16:34:54 erik Exp $ */ |