blob: f0ec86301a900852343e35ca69c478ddcdefa788 [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 Vlasenko4eed2c62017-07-18 22:01:24 +020013//config: bool "whois (6.6 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 = "";
42 char linebuf[1024];
43 char *buf = NULL;
44 unsigned bufpos = 0;
Pere Orga251962f2011-02-27 23:38:52 +010045
Denys Vlasenko1035c922016-07-06 15:45:41 +020046 again:
47 printf("[Querying %s:%d '%s%s']\n", host, port, pfx, domain);
48 fd = create_and_connect_stream_or_die(host, port);
49 success = 0;
50 fdprintf(fd, "%s%s\r\n", pfx, domain);
Pere Orga251962f2011-02-27 23:38:52 +010051 fp = xfdopen_for_read(fd);
Denys Vlasenko1035c922016-07-06 15:45:41 +020052
53 while (fgets(linebuf, sizeof(linebuf), fp)) {
54 unsigned len = strcspn(linebuf, "\r\n");
55 linebuf[len++] = '\n';
56
57 buf = xrealloc(buf, bufpos + len + 1);
58 memcpy(buf + bufpos, linebuf, len);
59 bufpos += len;
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020060 buf[bufpos] = '\0';
Denys Vlasenko1035c922016-07-06 15:45:41 +020061
62 if (!redir || !success) {
63 trim(linebuf);
64 str_tolower(linebuf);
65 if (!success) {
66 success = is_prefixed_with(linebuf, "domain:")
67 || is_prefixed_with(linebuf, "domain name:");
68 }
69 else if (!redir) {
70 char *p = is_prefixed_with(linebuf, "whois server:");
71 if (!p)
72 p = is_prefixed_with(linebuf, "whois:");
73 if (p)
74 redir = xstrdup(skip_whitespace(p));
75 }
76 }
77 }
78 fclose(fp); /* closes fd too */
79 if (!success && !pfx[0]) {
80 /*
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020081 * Looking at /etc/jwhois.conf, some whois servers use
Denys Vlasenko1035c922016-07-06 15:45:41 +020082 * "domain = DOMAIN", "DOMAIN ID <DOMAIN>"
83 * and "domain=DOMAIN_WITHOUT_LAST_COMPONENT"
84 * formats, but those are rare.
85 * (There are a few even more contrived ones.)
86 * We are trying only "domain DOMAIN", the typical one.
87 */
88 pfx = "domain ";
89 bufpos = 0;
90 goto again;
Pere Orga251962f2011-02-27 23:38:52 +010091 }
92
Denys Vlasenko1035c922016-07-06 15:45:41 +020093 /* Success */
94 if (redir && strcmp(redir, host) == 0) {
95 /* Redirect to self does not count */
96 free(redir);
97 redir = NULL;
98 }
Denys Vlasenko0844b5a2016-07-06 17:16:27 +020099 if (!redir || (option_mask32 & OPT_i)) {
Denys Vlasenko1035c922016-07-06 15:45:41 +0200100 /* Output saved text */
Denys Vlasenko0844b5a2016-07-06 17:16:27 +0200101 printf("[%s]\n%s", host, buf ? buf : "");
Denys Vlasenko1035c922016-07-06 15:45:41 +0200102 }
103 free(buf);
104 return redir;
Pere Orga251962f2011-02-27 23:38:52 +0100105}
106
Denys Vlasenko1035c922016-07-06 15:45:41 +0200107static void recursive_query(const char *host, int port, const char *domain)
108{
109 char *free_me = NULL;
110 char *redir;
111 again:
112 redir = query(host, port, domain);
113 free(free_me);
114 if (redir) {
115 printf("[Redirected to %s]\n", redir);
116 host = free_me = redir;
117 port = 43;
118 goto again;
119 }
120}
121
122/* One of "big" whois implementations has these options:
123 *
124 * $ whois --help
125 * jwhois version 4.0, Copyright (C) 1999-2007 Free Software Foundation, Inc.
126 * -v, --verbose verbose debug output
127 * -c FILE, --config=FILE use FILE as configuration file
128 * -h HOST, --host=HOST explicitly query HOST
129 * -n, --no-redirect disable content redirection
130 * -s, --no-whoisservers disable whois-servers.net service support
131 * -a, --raw disable reformatting of the query
132 * -i, --display-redirections display all redirects instead of hiding them
133 * -p PORT, --port=PORT use port number PORT (in conjunction with HOST)
134 * -r, --rwhois force an rwhois query to be made
135 * --rwhois-display=DISPLAY sets the display option in rwhois queries
136 * --rwhois-limit=LIMIT sets the maximum number of matches to return
137 *
138 * Example of its output:
139 * $ whois cnn.com
140 * [Querying whois.verisign-grs.com]
141 * [Redirected to whois.corporatedomains.com]
142 * [Querying whois.corporatedomains.com]
143 * [whois.corporatedomains.com]
144 * ...text of the reply...
145 *
146 * With -i, reply from each server is printed, after all redirects are done:
147 * [Querying whois.verisign-grs.com]
148 * [Redirected to whois.corporatedomains.com]
149 * [Querying whois.corporatedomains.com]
150 * [whois.verisign-grs.com]
151 * ...text of the reply...
152 * [whois.corporatedomains.com]
153 * ...text of the reply...
154 *
155 * With -a, no "DOMAIN" -> "domain DOMAIN" transformation is attempted.
156
157 * With -n, the first reply is shown, redirects are not followed:
158 * [Querying whois.verisign-grs.com]
159 * [whois.verisign-grs.com]
160 * ...text of the reply...
161 */
162
Pere Orga251962f2011-02-27 23:38:52 +0100163int whois_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
164int whois_main(int argc UNUSED_PARAM, char **argv)
165{
166 int port = 43;
Denys Vlasenko1035c922016-07-06 15:45:41 +0200167 const char *host = "whois.iana.org";
Pere Orga251962f2011-02-27 23:38:52 +0100168
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200169 getopt32(argv, "^" "ih:p:+" "\0" "-1", &host, &port);
Pere Orga251962f2011-02-27 23:38:52 +0100170 argv += optind;
Denys Vlasenko1035c922016-07-06 15:45:41 +0200171
Pere Orga251962f2011-02-27 23:38:52 +0100172 do {
Denys Vlasenko1035c922016-07-06 15:45:41 +0200173 recursive_query(host, port, *argv);
Pere Orga251962f2011-02-27 23:38:52 +0100174 }
175 while (*++argv);
176
177 return EXIT_SUCCESS;
178}