1 /*- 2 * Copyright (c) 1980, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #ifndef lint 31 static const char copyright[] = 32 "@(#) Copyright (c) 1980, 1993\n\ 33 The Regents of the University of California. All rights reserved.\n"; 34 #endif /* not lint */ 35 36 #if 0 37 #ifndef lint 38 static char sccsid[] = "@(#)whois.c 8.1 (Berkeley) 6/6/93"; 39 #endif /* not lint */ 40 #endif 41 42 #include <sys/cdefs.h> 43 __FBSDID("$FreeBSD$"); 44 45 #include <sys/types.h> 46 #include <sys/socket.h> 47 #include <sys/poll.h> 48 #include <netinet/in.h> 49 #include <arpa/inet.h> 50 #include <ctype.h> 51 #include <err.h> 52 #include <netdb.h> 53 #include <stdarg.h> 54 #include <stdio.h> 55 #include <stdlib.h> 56 #include <string.h> 57 #include <sysexits.h> 58 #include <unistd.h> 59 #include <fcntl.h> 60 #include <errno.h> 61 62 #define ABUSEHOST "whois.abuse.net" 63 #define ANICHOST "whois.arin.net" 64 #define DENICHOST "whois.denic.de" 65 #define DKNICHOST "whois.dk-hostmaster.dk" 66 #define FNICHOST "whois.afrinic.net" 67 #define GNICHOST "whois.nic.gov" 68 #define IANAHOST "whois.iana.org" 69 #define INICHOST "whois.internic.net" 70 #define KNICHOST "whois.krnic.net" 71 #define LNICHOST "whois.lacnic.net" 72 #define MNICHOST "whois.ra.net" 73 #define PDBHOST "whois.peeringdb.com" 74 #define PNICHOST "whois.apnic.net" 75 #define QNICHOST_TAIL ".whois-servers.net" 76 #define RNICHOST "whois.ripe.net" 77 #define VNICHOST "whois.verisign-grs.com" 78 79 #define DEFAULT_PORT "whois" 80 81 #define WHOIS_RECURSE 0x01 82 #define WHOIS_QUICK 0x02 83 #define WHOIS_SPAM_ME 0x04 84 85 #define CHOPSPAM ">>> Last update of WHOIS database:" 86 87 #define ishost(h) (isalnum((unsigned char)h) || h == '.' || h == '-') 88 89 #define SCAN(p, end, check) \ 90 while ((p) < (end)) \ 91 if (check) ++(p); \ 92 else break 93 94 static struct { 95 const char *suffix, *server; 96 } whoiswhere[] = { 97 /* Various handles */ 98 { "-ARIN", ANICHOST }, 99 { "-NICAT", "at" QNICHOST_TAIL }, 100 { "-NORID", "no" QNICHOST_TAIL }, 101 { "-RIPE", RNICHOST }, 102 /* Nominet's whois server doesn't return referrals to JANET */ 103 { ".ac.uk", "ac.uk" QNICHOST_TAIL }, 104 { "", IANAHOST }, /* default */ 105 { NULL, NULL } /* safety belt */ 106 }; 107 108 #define WHOIS_REFERRAL(s) { s, sizeof(s) - 1 } 109 static struct { 110 const char *prefix; 111 size_t len; 112 } whois_referral[] = { 113 WHOIS_REFERRAL("whois:"), /* IANA */ 114 WHOIS_REFERRAL("Whois Server:"), 115 WHOIS_REFERRAL("Registrar WHOIS Server:"), /* corporatedomains.com */ 116 WHOIS_REFERRAL("ReferralServer: whois://"), /* ARIN */ 117 WHOIS_REFERRAL("descr: region. Please query"), /* AfriNIC */ 118 { NULL, 0 } 119 }; 120 121 static const char *actually_arin[] = { 122 "netname: ERX-NETBLOCK\n", /* APNIC */ 123 "netname: NON-RIPE-NCC-MANAGED-ADDRESS-BLOCK\n", 124 NULL 125 }; 126 127 static const char *port = DEFAULT_PORT; 128 129 static const char *choose_server(char *); 130 static struct addrinfo *gethostinfo(char const *host, int exitnoname); 131 static void s_asprintf(char **ret, const char *format, ...) __printflike(2, 3); 132 static void usage(void); 133 static void whois(const char *, const char *, int); 134 135 int 136 main(int argc, char *argv[]) 137 { 138 const char *country, *host; 139 int ch, flags; 140 141 #ifdef SOCKS 142 SOCKSinit(argv[0]); 143 #endif 144 145 country = host = NULL; 146 flags = 0; 147 while ((ch = getopt(argc, argv, "aAbc:fgh:iIklmp:PQrRS")) != -1) { 148 switch (ch) { 149 case 'a': 150 host = ANICHOST; 151 break; 152 case 'A': 153 host = PNICHOST; 154 break; 155 case 'b': 156 host = ABUSEHOST; 157 break; 158 case 'c': 159 country = optarg; 160 break; 161 case 'f': 162 host = FNICHOST; 163 break; 164 case 'g': 165 host = GNICHOST; 166 break; 167 case 'h': 168 host = optarg; 169 break; 170 case 'i': 171 host = INICHOST; 172 break; 173 case 'I': 174 host = IANAHOST; 175 break; 176 case 'k': 177 host = KNICHOST; 178 break; 179 case 'l': 180 host = LNICHOST; 181 break; 182 case 'm': 183 host = MNICHOST; 184 break; 185 case 'p': 186 port = optarg; 187 break; 188 case 'P': 189 host = PDBHOST; 190 break; 191 case 'Q': 192 flags |= WHOIS_QUICK; 193 break; 194 case 'r': 195 host = RNICHOST; 196 break; 197 case 'R': 198 flags |= WHOIS_RECURSE; 199 break; 200 case 'S': 201 flags |= WHOIS_SPAM_ME; 202 break; 203 case '?': 204 default: 205 usage(); 206 /* NOTREACHED */ 207 } 208 } 209 argc -= optind; 210 argv += optind; 211 212 if (!argc || (country != NULL && host != NULL)) 213 usage(); 214 215 /* 216 * If no host or country is specified, rely on referrals from IANA. 217 */ 218 if (host == NULL && country == NULL) { 219 if ((host = getenv("WHOIS_SERVER")) == NULL && 220 (host = getenv("RA_SERVER")) == NULL) { 221 if (!(flags & WHOIS_QUICK)) 222 flags |= WHOIS_RECURSE; 223 } 224 } 225 while (argc-- > 0) { 226 if (country != NULL) { 227 char *qnichost; 228 s_asprintf(&qnichost, "%s%s", country, QNICHOST_TAIL); 229 whois(*argv, qnichost, flags); 230 free(qnichost); 231 } else 232 whois(*argv, host != NULL ? host : 233 choose_server(*argv), flags); 234 argv++; 235 } 236 exit(0); 237 } 238 239 static const char * 240 choose_server(char *domain) 241 { 242 size_t len = strlen(domain); 243 int i; 244 245 for (i = 0; whoiswhere[i].suffix != NULL; i++) { 246 size_t suffix_len = strlen(whoiswhere[i].suffix); 247 if (len > suffix_len && 248 strcasecmp(domain + len - suffix_len, 249 whoiswhere[i].suffix) == 0) 250 return (whoiswhere[i].server); 251 } 252 errx(EX_SOFTWARE, "no default whois server"); 253 } 254 255 static struct addrinfo * 256 gethostinfo(char const *host, int exit_on_noname) 257 { 258 struct addrinfo hints, *res; 259 int error; 260 261 memset(&hints, 0, sizeof(hints)); 262 hints.ai_flags = AI_CANONNAME; 263 hints.ai_family = AF_UNSPEC; 264 hints.ai_socktype = SOCK_STREAM; 265 res = NULL; 266 error = getaddrinfo(host, port, &hints, &res); 267 if (error && (exit_on_noname || error != EAI_NONAME)) 268 err(EX_NOHOST, "%s: %s", host, gai_strerror(error)); 269 return (res); 270 } 271 272 /* 273 * Wrapper for asprintf(3) that exits on error. 274 */ 275 static void 276 s_asprintf(char **ret, const char *format, ...) 277 { 278 va_list ap; 279 280 va_start(ap, format); 281 if (vasprintf(ret, format, ap) == -1) { 282 va_end(ap); 283 err(EX_OSERR, "vasprintf()"); 284 } 285 va_end(ap); 286 } 287 288 static void 289 whois(const char *query, const char *hostname, int flags) 290 { 291 FILE *fp; 292 struct addrinfo *hostres, *res; 293 char *buf, *host, *nhost, *p; 294 int s = -1, f; 295 nfds_t i, j; 296 size_t len, count; 297 struct pollfd *fds; 298 int timeout = 180; 299 300 hostres = gethostinfo(hostname, 1); 301 for (res = hostres, count = 0; res; res = res->ai_next) 302 count++; 303 fds = calloc(count, sizeof(*fds)); 304 if (fds == NULL) 305 err(EX_OSERR, "calloc()"); 306 307 /* 308 * Traverse the result list elements and make non-block 309 * connection attempts. 310 */ 311 count = i = 0; 312 for (res = hostres; res != NULL; res = res->ai_next) { 313 s = socket(res->ai_family, res->ai_socktype | SOCK_NONBLOCK, 314 res->ai_protocol); 315 if (s < 0) 316 continue; 317 if (connect(s, res->ai_addr, res->ai_addrlen) < 0) { 318 if (errno == EINPROGRESS) { 319 /* Add the socket to poll list */ 320 fds[i].fd = s; 321 fds[i].events = POLLERR | POLLHUP | 322 POLLIN | POLLOUT; 323 count++; 324 i++; 325 } else { 326 close(s); 327 s = -1; 328 329 /* 330 * Poll only if we have something to poll, 331 * otherwise just go ahead and try next 332 * address 333 */ 334 if (count == 0) 335 continue; 336 } 337 } else 338 goto done; 339 340 /* 341 * If we are at the last address, poll until a connection is 342 * established or we failed all connection attempts. 343 */ 344 if (res->ai_next == NULL) 345 timeout = INFTIM; 346 347 /* 348 * Poll the watched descriptors for successful connections: 349 * if we still have more untried resolved addresses, poll only 350 * once; otherwise, poll until all descriptors have errors, 351 * which will be considered as ETIMEDOUT later. 352 */ 353 do { 354 int n; 355 356 n = poll(fds, i, timeout); 357 if (n == 0) { 358 /* 359 * No event reported in time. Try with a 360 * smaller timeout (but cap at 2-3ms) 361 * after a new host have been added. 362 */ 363 if (timeout >= 3) 364 timeout <<= 1; 365 366 break; 367 } else if (n < 0) { 368 /* 369 * errno here can only be EINTR which we would 370 * want to clean up and bail out. 371 */ 372 s = -1; 373 goto done; 374 } 375 376 /* 377 * Check for the event(s) we have seen. 378 */ 379 for (j = 0; j < i; j++) { 380 if (fds[j].fd == -1 || fds[j].events == 0 || 381 fds[j].revents == 0) 382 continue; 383 if (fds[j].revents & ~(POLLIN | POLLOUT)) { 384 close(s); 385 fds[j].fd = -1; 386 fds[j].events = 0; 387 count--; 388 continue; 389 } else if (fds[j].revents & (POLLIN | POLLOUT)) { 390 /* Connect succeeded. */ 391 s = fds[j].fd; 392 393 goto done; 394 } 395 396 } 397 } while (timeout == INFTIM && count != 0); 398 } 399 400 /* All attempts were failed */ 401 s = -1; 402 if (count == 0) 403 errno = ETIMEDOUT; 404 done: 405 if (s == -1) 406 err(EX_OSERR, "connect()"); 407 408 /* Close all watched fds except the succeeded one */ 409 for (j = 0; j < i; j++) 410 if (fds[j].fd != s && fds[j].fd != -1) 411 close(fds[j].fd); 412 free(fds); 413 414 /* Restore default blocking behavior. */ 415 if ((f = fcntl(s, F_GETFL)) == -1) 416 err(EX_OSERR, "fcntl()"); 417 f &= ~O_NONBLOCK; 418 if (fcntl(s, F_SETFL, f) == -1) 419 err(EX_OSERR, "fcntl()"); 420 421 fp = fdopen(s, "r+"); 422 if (fp == NULL) 423 err(EX_OSERR, "fdopen()"); 424 425 if (!(flags & WHOIS_SPAM_ME) && 426 (strcasecmp(hostname, DENICHOST) == 0 || 427 strcasecmp(hostname, "de" QNICHOST_TAIL) == 0)) { 428 const char *q; 429 int idn = 0; 430 for (q = query; *q != '\0'; q++) 431 if (!isascii(*q)) 432 idn = 1; 433 fprintf(fp, "-T dn%s %s\r\n", idn ? "" : ",ace", query); 434 } else if (!(flags & WHOIS_SPAM_ME) && 435 (strcasecmp(hostname, DKNICHOST) == 0 || 436 strcasecmp(hostname, "dk" QNICHOST_TAIL) == 0)) 437 fprintf(fp, "--show-handles %s\r\n", query); 438 else if ((flags & WHOIS_SPAM_ME) || 439 strchr(query, ' ') != NULL) 440 fprintf(fp, "%s\r\n", query); 441 else if (strcasecmp(hostname, ANICHOST) == 0) { 442 if (strncasecmp(query, "AS", 2) == 0 && 443 strspn(query+2, "0123456789") == strlen(query+2)) 444 fprintf(fp, "+ a %s\r\n", query+2); 445 else 446 fprintf(fp, "+ %s\r\n", query); 447 } else if (strcasecmp(hostres->ai_canonname, VNICHOST) == 0) 448 fprintf(fp, "domain %s\r\n", query); 449 else 450 fprintf(fp, "%s\r\n", query); 451 fflush(fp); 452 453 nhost = NULL; 454 while ((buf = fgetln(fp, &len)) != NULL) { 455 /* Nominet */ 456 if (!(flags & WHOIS_SPAM_ME) && 457 len == 5 && strncmp(buf, "-- \r\n", 5) == 0) 458 break; 459 460 printf("%.*s", (int)len, buf); 461 462 if ((flags & WHOIS_RECURSE) && nhost == NULL) { 463 for (i = 0; whois_referral[i].prefix != NULL; i++) { 464 p = buf; 465 SCAN(p, buf+len, *p == ' '); 466 if (strncasecmp(p, whois_referral[i].prefix, 467 whois_referral[i].len) != 0) 468 continue; 469 p += whois_referral[i].len; 470 SCAN(p, buf+len, *p == ' '); 471 host = p; 472 SCAN(p, buf+len, ishost(*p)); 473 /* avoid loops */ 474 if (strncmp(hostname, host, p - host) != 0) 475 s_asprintf(&nhost, "%.*s", 476 (int)(p - host), host); 477 break; 478 } 479 for (i = 0; actually_arin[i] != NULL; i++) { 480 if (strncmp(buf, actually_arin[i], len) == 0) { 481 s_asprintf(&nhost, "%s", ANICHOST); 482 break; 483 } 484 } 485 } 486 /* Verisign etc. */ 487 if (!(flags & WHOIS_SPAM_ME) && 488 len >= sizeof(CHOPSPAM)-1 && 489 (strncasecmp(buf, CHOPSPAM, sizeof(CHOPSPAM)-1) == 0 || 490 strncasecmp(buf, CHOPSPAM+4, sizeof(CHOPSPAM)-5) == 0)) { 491 printf("\n"); 492 break; 493 } 494 } 495 fclose(fp); 496 freeaddrinfo(hostres); 497 if (nhost != NULL) { 498 whois(query, nhost, flags); 499 free(nhost); 500 } 501 } 502 503 static void 504 usage(void) 505 { 506 fprintf(stderr, 507 "usage: whois [-aAbfgiIklmPQrRS] [-c country-code | -h hostname] " 508 "[-p port] name ...\n"); 509 exit(EX_USAGE); 510 } 511