blob: caa71ac5125a61d0929fb8897549cf6f226523d9 [file] [log] [blame]
Pere Orga251962f2011-02-27 23:38:52 +01001/* vi: set sw=4 ts=4: */
2/*
3 * whois - tiny client for the whois directory service
4 *
5 * Copyright (c) 2011 Pere Orga <gotrunks@gmail.com>
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */
8/* TODO
9 * Add ipv6 support
10 * Add proxy support
11 */
Pere Orga251962f2011-02-27 23:38:52 +010012//config:config WHOIS
Denys Vlasenkob097a842018-12-28 03:20:17 +010013//config: bool "whois (6.3 kb)"
Pere Orga251962f2011-02-27 23:38:52 +010014//config: default y
15//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020016//config: whois is a client for the whois directory service
Pere Orga251962f2011-02-27 23:38:52 +010017
18//applet:IF_WHOIS(APPLET(whois, BB_DIR_USR_BIN, BB_SUID_DROP))
19
20//kbuild:lib-$(CONFIG_WHOIS) += whois.o
21
22//usage:#define whois_trivial_usage
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020023//usage: "[-i] [-h SERVER] [-p PORT] NAME..."
Pere Orga251962f2011-02-27 23:38:52 +010024//usage:#define whois_full_usage "\n\n"
25//usage: "Query WHOIS info about NAME\n"
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020026//usage: "\n -i Show redirect results too"
Pere Orga251962f2011-02-27 23:38:52 +010027//usage: "\n -h,-p Server to query"
28
29#include "libbb.h"
30
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020031enum {
32 OPT_i = (1 << 0),
33};
34
Denys Vlasenko1035c922016-07-06 15:45:41 +020035static char *query(const char *host, int port, const char *domain)
Pere Orga251962f2011-02-27 23:38:52 +010036{
Denys Vlasenko1035c922016-07-06 15:45:41 +020037 int fd;
Pere Orga251962f2011-02-27 23:38:52 +010038 FILE *fp;
Denys Vlasenko1035c922016-07-06 15:45:41 +020039 bool success;
40 char *redir = NULL;
41 const char *pfx = "";
Denys Vlasenko3d6f95e2018-09-04 14:48:00 +020042 /* some .io domains reported to have very long strings in whois
43 * responses, 1k was not enough:
44 */
45 char linebuf[2 * 1024];
Denys Vlasenko1035c922016-07-06 15:45:41 +020046 char *buf = NULL;
47 unsigned bufpos = 0;
Pere Orga251962f2011-02-27 23:38:52 +010048
Denys Vlasenko1035c922016-07-06 15:45:41 +020049 again:
50 printf("[Querying %s:%d '%s%s']\n", host, port, pfx, domain);
51 fd = create_and_connect_stream_or_die(host, port);
Denys Vlasenko1035c922016-07-06 15:45:41 +020052 fdprintf(fd, "%s%s\r\n", pfx, domain);
Pere Orga251962f2011-02-27 23:38:52 +010053 fp = xfdopen_for_read(fd);
Denys Vlasenko1035c922016-07-06 15:45:41 +020054
Denys Vlasenko3d6f95e2018-09-04 14:48:00 +020055 success = 0;
Denys Vlasenko9ec836c2019-12-03 14:52:17 +010056 while (bufpos < 32*1024 /* paranoia */
57 && fgets(linebuf, sizeof(linebuf)-1, fp)
58 ) {
Denys Vlasenko3d6f95e2018-09-04 14:48:00 +020059 unsigned len;
60
61 len = strcspn(linebuf, "\r\n");
Denys Vlasenko1035c922016-07-06 15:45:41 +020062 linebuf[len++] = '\n';
Denys Vlasenko3d6f95e2018-09-04 14:48:00 +020063 linebuf[len] = '\0';
Denys Vlasenko1035c922016-07-06 15:45:41 +020064
65 buf = xrealloc(buf, bufpos + len + 1);
66 memcpy(buf + bufpos, linebuf, len);
67 bufpos += len;
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020068 buf[bufpos] = '\0';
Denys Vlasenko1035c922016-07-06 15:45:41 +020069
70 if (!redir || !success) {
71 trim(linebuf);
72 str_tolower(linebuf);
73 if (!success) {
74 success = is_prefixed_with(linebuf, "domain:")
75 || is_prefixed_with(linebuf, "domain name:");
76 }
77 else if (!redir) {
78 char *p = is_prefixed_with(linebuf, "whois server:");
79 if (!p)
80 p = is_prefixed_with(linebuf, "whois:");
81 if (p)
82 redir = xstrdup(skip_whitespace(p));
83 }
84 }
85 }
86 fclose(fp); /* closes fd too */
87 if (!success && !pfx[0]) {
88 /*
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020089 * Looking at /etc/jwhois.conf, some whois servers use
Denys Vlasenko1035c922016-07-06 15:45:41 +020090 * "domain = DOMAIN", "DOMAIN ID <DOMAIN>"
91 * and "domain=DOMAIN_WITHOUT_LAST_COMPONENT"
92 * formats, but those are rare.
93 * (There are a few even more contrived ones.)
94 * We are trying only "domain DOMAIN", the typical one.
95 */
96 pfx = "domain ";
97 bufpos = 0;
98 goto again;
Pere Orga251962f2011-02-27 23:38:52 +010099 }
100
Denys Vlasenko1035c922016-07-06 15:45:41 +0200101 /* Success */
102 if (redir && strcmp(redir, host) == 0) {
103 /* Redirect to self does not count */
104 free(redir);
105 redir = NULL;
106 }
Denys Vlasenko0844b5a2016-07-06 17:16:27 +0200107 if (!redir || (option_mask32 & OPT_i)) {
Denys Vlasenko1035c922016-07-06 15:45:41 +0200108 /* Output saved text */
Denys Vlasenko0844b5a2016-07-06 17:16:27 +0200109 printf("[%s]\n%s", host, buf ? buf : "");
Denys Vlasenko1035c922016-07-06 15:45:41 +0200110 }
111 free(buf);
112 return redir;
Pere Orga251962f2011-02-27 23:38:52 +0100113}
114
Denys Vlasenko1035c922016-07-06 15:45:41 +0200115static void recursive_query(const char *host, int port, const char *domain)
116{
117 char *free_me = NULL;
118 char *redir;
119 again:
120 redir = query(host, port, domain);
121 free(free_me);
122 if (redir) {
123 printf("[Redirected to %s]\n", redir);
124 host = free_me = redir;
125 port = 43;
126 goto again;
127 }
128}
129
130/* One of "big" whois implementations has these options:
131 *
132 * $ whois --help
133 * jwhois version 4.0, Copyright (C) 1999-2007 Free Software Foundation, Inc.
134 * -v, --verbose verbose debug output
135 * -c FILE, --config=FILE use FILE as configuration file
136 * -h HOST, --host=HOST explicitly query HOST
137 * -n, --no-redirect disable content redirection
138 * -s, --no-whoisservers disable whois-servers.net service support
139 * -a, --raw disable reformatting of the query
140 * -i, --display-redirections display all redirects instead of hiding them
141 * -p PORT, --port=PORT use port number PORT (in conjunction with HOST)
142 * -r, --rwhois force an rwhois query to be made
143 * --rwhois-display=DISPLAY sets the display option in rwhois queries
144 * --rwhois-limit=LIMIT sets the maximum number of matches to return
145 *
146 * Example of its output:
147 * $ whois cnn.com
148 * [Querying whois.verisign-grs.com]
149 * [Redirected to whois.corporatedomains.com]
150 * [Querying whois.corporatedomains.com]
151 * [whois.corporatedomains.com]
152 * ...text of the reply...
153 *
154 * With -i, reply from each server is printed, after all redirects are done:
155 * [Querying whois.verisign-grs.com]
156 * [Redirected to whois.corporatedomains.com]
157 * [Querying whois.corporatedomains.com]
158 * [whois.verisign-grs.com]
159 * ...text of the reply...
160 * [whois.corporatedomains.com]
161 * ...text of the reply...
162 *
163 * With -a, no "DOMAIN" -> "domain DOMAIN" transformation is attempted.
164
165 * With -n, the first reply is shown, redirects are not followed:
166 * [Querying whois.verisign-grs.com]
167 * [whois.verisign-grs.com]
168 * ...text of the reply...
169 */
170
Pere Orga251962f2011-02-27 23:38:52 +0100171int whois_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
172int whois_main(int argc UNUSED_PARAM, char **argv)
173{
174 int port = 43;
Denys Vlasenko1035c922016-07-06 15:45:41 +0200175 const char *host = "whois.iana.org";
Pere Orga251962f2011-02-27 23:38:52 +0100176
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200177 getopt32(argv, "^" "ih:p:+" "\0" "-1", &host, &port);
Pere Orga251962f2011-02-27 23:38:52 +0100178 argv += optind;
Denys Vlasenko1035c922016-07-06 15:45:41 +0200179
Pere Orga251962f2011-02-27 23:38:52 +0100180 do {
Denys Vlasenko1035c922016-07-06 15:45:41 +0200181 recursive_query(host, port, *argv);
Pere Orga251962f2011-02-27 23:38:52 +0100182 }
183 while (*++argv);
184
185 return EXIT_SUCCESS;
186}