xref: /freebsd/usr.bin/finger/net.c (revision 5e3934b15a2741b2de6b217e77dc9d798d740804)
1*8a16b7a1SPedro F. Giffuni /*-
2*8a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*8a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1989, 1993
59b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
69b50d902SRodney W. Grimes  *
79b50d902SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
89b50d902SRodney W. Grimes  * Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
99b50d902SRodney W. Grimes  *
109b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
119b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
129b50d902SRodney W. Grimes  * are met:
139b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
149b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
159b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
169b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
179b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
199b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
209b50d902SRodney W. Grimes  *    without specific prior written permission.
219b50d902SRodney W. Grimes  *
229b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
239b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
249b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
259b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
269b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
279b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
289b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
299b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
309b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
319b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
329b50d902SRodney W. Grimes  * SUCH DAMAGE.
339b50d902SRodney W. Grimes  */
349b50d902SRodney W. Grimes 
35a716ad66SWarner Losh #include <sys/param.h>
369b50d902SRodney W. Grimes #include <sys/socket.h>
374c86f3adSPhilippe Charnier #include <sys/uio.h>
38410df9fdSBaptiste Daroussin #include <wctype.h>
399b50d902SRodney W. Grimes #include <db.h>
40b14d8277SPhilippe Charnier #include <err.h>
414c86f3adSPhilippe Charnier #include <netdb.h>
429b50d902SRodney W. Grimes #include <pwd.h>
439b50d902SRodney W. Grimes #include <stdio.h>
447a19d1bbSDima Dorfman #include <stdlib.h>
459b50d902SRodney W. Grimes #include <string.h>
464c86f3adSPhilippe Charnier #include <unistd.h>
47550dcc59SEd Schouten #include <utmpx.h>
48410df9fdSBaptiste Daroussin #include <wchar.h>
499b50d902SRodney W. Grimes #include "finger.h"
509b50d902SRodney W. Grimes 
51a7526044SStefan Farfeleder static void cleanup(int sig);
52e45ccde7SGarrett Wollman static int do_protocol(const char *name, const struct addrinfo *ai);
53e45ccde7SGarrett Wollman static void trying(const struct addrinfo *ai);
54dd5288f3SDavid E. O'Brien 
55dd5288f3SDavid E. O'Brien void
netfinger(char * name)56f4ac32deSDavid Malone netfinger(char *name)
579b50d902SRodney W. Grimes {
58e45ccde7SGarrett Wollman 	int error, multi;
59e45ccde7SGarrett Wollman 	char *host;
60e45ccde7SGarrett Wollman 	struct addrinfo *ai, *ai0;
61e45ccde7SGarrett Wollman 	static struct addrinfo hint;
629b50d902SRodney W. Grimes 
63e45ccde7SGarrett Wollman 	host = strrchr(name, '@');
647a4b1114SMarcelo Araujo 	if (host == NULL)
659b50d902SRodney W. Grimes 		return;
66b14d8277SPhilippe Charnier 	*host++ = '\0';
67dd5288f3SDavid E. O'Brien 	signal(SIGALRM, cleanup);
68e45ccde7SGarrett Wollman 	alarm(TIME_LIMIT);
69e45ccde7SGarrett Wollman 
70e45ccde7SGarrett Wollman 	hint.ai_flags = AI_CANONNAME;
713daa8471SHajimu UMEMOTO 	hint.ai_family = family;
72e45ccde7SGarrett Wollman 	hint.ai_socktype = SOCK_STREAM;
73e45ccde7SGarrett Wollman 
74e45ccde7SGarrett Wollman 	error = getaddrinfo(host, "finger", &hint, &ai0);
75e45ccde7SGarrett Wollman 	if (error) {
76e45ccde7SGarrett Wollman 		warnx("%s: %s", host, gai_strerror(error));
779b50d902SRodney W. Grimes 		return;
789b50d902SRodney W. Grimes 	}
799b50d902SRodney W. Grimes 
80e45ccde7SGarrett Wollman 	multi = (ai0->ai_next) != 0;
812804330fSGarrett Wollman 
822804330fSGarrett Wollman 	/* ai_canonname may not be filled in if the user specified an IP. */
832804330fSGarrett Wollman 	if (ai0->ai_canonname == 0)
842804330fSGarrett Wollman 		printf("[%s]\n", host);
852804330fSGarrett Wollman 	else
86e45ccde7SGarrett Wollman 		printf("[%s]\n", ai0->ai_canonname);
871e474c62SGarrett Wollman 
887a4b1114SMarcelo Araujo 	for (ai = ai0; ai != NULL; ai = ai->ai_next) {
89e45ccde7SGarrett Wollman 		if (multi)
90e45ccde7SGarrett Wollman 			trying(ai);
91e45ccde7SGarrett Wollman 
92e45ccde7SGarrett Wollman 		error = do_protocol(name, ai);
93e45ccde7SGarrett Wollman 		if (!error)
94e45ccde7SGarrett Wollman 			break;
95e45ccde7SGarrett Wollman 	}
96e45ccde7SGarrett Wollman 	alarm(0);
97e45ccde7SGarrett Wollman 	freeaddrinfo(ai0);
98e45ccde7SGarrett Wollman }
99e45ccde7SGarrett Wollman 
100e45ccde7SGarrett Wollman static int
do_protocol(const char * name,const struct addrinfo * ai)101e45ccde7SGarrett Wollman do_protocol(const char *name, const struct addrinfo *ai)
102e45ccde7SGarrett Wollman {
1031e832bf8SRuslan Ermilov 	int cnt, line_len, s;
1044e030ba6SMark Murray 	FILE *fp;
105410df9fdSBaptiste Daroussin 	wint_t c, lastc;
106e45ccde7SGarrett Wollman 	struct iovec iov[3];
107e45ccde7SGarrett Wollman 	struct msghdr msg;
1084e030ba6SMark Murray 	static char slash_w[] = "/W ";
1098c9589bdSPeter Pentchev 	static char neteol[] = "\r\n";
110e45ccde7SGarrett Wollman 
111e45ccde7SGarrett Wollman 	s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
112e45ccde7SGarrett Wollman 	if (s < 0) {
113e45ccde7SGarrett Wollman 		warn("socket(%d, %d, %d)", ai->ai_family, ai->ai_socktype,
114e45ccde7SGarrett Wollman 		     ai->ai_protocol);
115e45ccde7SGarrett Wollman 		return -1;
116e45ccde7SGarrett Wollman 	}
117e45ccde7SGarrett Wollman 
118e45ccde7SGarrett Wollman 	msg.msg_name = (void *)ai->ai_addr;
119e45ccde7SGarrett Wollman 	msg.msg_namelen = ai->ai_addrlen;
1201e474c62SGarrett Wollman 	msg.msg_iov = iov;
1211e474c62SGarrett Wollman 	msg.msg_iovlen = 0;
1221e474c62SGarrett Wollman 	msg.msg_control = 0;
1231e474c62SGarrett Wollman 	msg.msg_controllen = 0;
124a32cbefaSGarrett Wollman 	msg.msg_flags = 0;
1259b50d902SRodney W. Grimes 
1269b50d902SRodney W. Grimes 	/* -l flag for remote fingerd  */
1271e474c62SGarrett Wollman 	if (lflag) {
1284e030ba6SMark Murray 		iov[msg.msg_iovlen].iov_base = slash_w;
1291e474c62SGarrett Wollman 		iov[msg.msg_iovlen++].iov_len = 3;
1301e474c62SGarrett Wollman 	}
1319b50d902SRodney W. Grimes 	/* send the name followed by <CR><LF> */
1324e030ba6SMark Murray 	iov[msg.msg_iovlen].iov_base = strdup(name);
1331e474c62SGarrett Wollman 	iov[msg.msg_iovlen++].iov_len = strlen(name);
1344e030ba6SMark Murray 	iov[msg.msg_iovlen].iov_base = neteol;
1351e474c62SGarrett Wollman 	iov[msg.msg_iovlen++].iov_len = 2;
1361e474c62SGarrett Wollman 
137f8871cc8SDag-Erling Smørgrav 	if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) {
138e45ccde7SGarrett Wollman 		warn("connect");
139e45ccde7SGarrett Wollman 		close(s);
140e45ccde7SGarrett Wollman 		return -1;
14103801815SAndras Olah 	}
14203801815SAndras Olah 
143a32cbefaSGarrett Wollman 	if (sendmsg(s, &msg, 0) < 0) {
144e45ccde7SGarrett Wollman 		warn("sendmsg");
1451e474c62SGarrett Wollman 		close(s);
146e45ccde7SGarrett Wollman 		return -1;
1471e474c62SGarrett Wollman 	}
1489b50d902SRodney W. Grimes 
1499b50d902SRodney W. Grimes 	/*
1509b50d902SRodney W. Grimes 	 * Read from the remote system; once we're connected, we assume some
1519b50d902SRodney W. Grimes 	 * data.  If none arrives, we hang until the user interrupts.
1529b50d902SRodney W. Grimes 	 *
1539b50d902SRodney W. Grimes 	 * If we see a <CR> or a <CR> with the high bit set, treat it as
1549b50d902SRodney W. Grimes 	 * a newline; if followed by a newline character, only output one
1559b50d902SRodney W. Grimes 	 * newline.
1569b50d902SRodney W. Grimes 	 *
1579b50d902SRodney W. Grimes 	 * Otherwise, all high bits are stripped; if it isn't printable and
1589b50d902SRodney W. Grimes 	 * it isn't a space, we can simply set the 7th bit.  Every ASCII
1599b50d902SRodney W. Grimes 	 * character with bit 7 set is printable.
1609b50d902SRodney W. Grimes 	 */
161df3f5d9dSPeter Wemm 	lastc = 0;
162df3f5d9dSPeter Wemm 	if ((fp = fdopen(s, "r")) != NULL) {
163dd5288f3SDavid E. O'Brien 		cnt = 0;
164dd5288f3SDavid E. O'Brien 		line_len = 0;
165410df9fdSBaptiste Daroussin 		while ((c = getwc(fp)) != EOF) {
166dd5288f3SDavid E. O'Brien 			if (++cnt > OUTPUT_MAX) {
167dd5288f3SDavid E. O'Brien 				printf("\n\n Output truncated at %d bytes...\n",
168dd5288f3SDavid E. O'Brien 					cnt - 1);
169dd5288f3SDavid E. O'Brien 				break;
170dd5288f3SDavid E. O'Brien 			}
1719b50d902SRodney W. Grimes 			if (c == 0x0d) {
1729b50d902SRodney W. Grimes 				if (lastc == '\r')	/* ^M^M - skip dupes */
1739b50d902SRodney W. Grimes 					continue;
1749b50d902SRodney W. Grimes 				c = '\n';
1759b50d902SRodney W. Grimes 				lastc = '\r';
1769b50d902SRodney W. Grimes 			} else {
177410df9fdSBaptiste Daroussin 				if (!iswprint(c) && !iswspace(c)) {
178a0a47889SAndrey A. Chernov 					c &= 0x7f;
1799b50d902SRodney W. Grimes 					c |= 0x40;
180a0a47889SAndrey A. Chernov 				}
1819b50d902SRodney W. Grimes 				if (lastc != '\r' || c != '\n')
1829b50d902SRodney W. Grimes 					lastc = c;
1839b50d902SRodney W. Grimes 				else {
1849b50d902SRodney W. Grimes 					lastc = '\n';
1859b50d902SRodney W. Grimes 					continue;
1869b50d902SRodney W. Grimes 				}
1879b50d902SRodney W. Grimes 			}
188410df9fdSBaptiste Daroussin 			putwchar(c);
189dd5288f3SDavid E. O'Brien 			if (c != '\n' && ++line_len > _POSIX2_LINE_MAX) {
190dd5288f3SDavid E. O'Brien 				putchar('\\');
191dd5288f3SDavid E. O'Brien 				putchar('\n');
192dd5288f3SDavid E. O'Brien 				lastc = '\r';
193dd5288f3SDavid E. O'Brien 			}
194dd5288f3SDavid E. O'Brien 			if (lastc == '\n' || lastc == '\r')
195dd5288f3SDavid E. O'Brien 				line_len = 0;
1969b50d902SRodney W. Grimes 		}
1971e474c62SGarrett Wollman 		if (ferror(fp)) {
1981e474c62SGarrett Wollman 			/*
1991e474c62SGarrett Wollman 			 * Assume that whatever it was set errno...
2001e474c62SGarrett Wollman 			 */
201e45ccde7SGarrett Wollman 			warn("reading from network");
2021e474c62SGarrett Wollman 		}
203410df9fdSBaptiste Daroussin 		if (lastc != L'\n')
204e45ccde7SGarrett Wollman 			putchar('\n');
205e45ccde7SGarrett Wollman 
206e45ccde7SGarrett Wollman 		fclose(fp);
2079b50d902SRodney W. Grimes 	}
208e45ccde7SGarrett Wollman 	return 0;
2091e474c62SGarrett Wollman }
210e45ccde7SGarrett Wollman 
211e45ccde7SGarrett Wollman static void
trying(const struct addrinfo * ai)212e45ccde7SGarrett Wollman trying(const struct addrinfo *ai)
213e45ccde7SGarrett Wollman {
214e45ccde7SGarrett Wollman 	char buf[NI_MAXHOST];
215e45ccde7SGarrett Wollman 
216e45ccde7SGarrett Wollman 	if (getnameinfo(ai->ai_addr, ai->ai_addrlen, buf, sizeof buf,
217e45ccde7SGarrett Wollman 			(char *)0, 0, NI_NUMERICHOST) != 0)
218e45ccde7SGarrett Wollman 		return;		/* XXX can't happen */
219e45ccde7SGarrett Wollman 
220e45ccde7SGarrett Wollman 	printf("Trying %s...\n", buf);
221e45ccde7SGarrett Wollman }
222e45ccde7SGarrett Wollman 
223cde9717bSXin LI static void
cleanup(int sig __unused)2244e030ba6SMark Murray cleanup(int sig __unused)
225e45ccde7SGarrett Wollman {
226e45ccde7SGarrett Wollman #define	ERRSTR	"Timed out.\n"
227e45ccde7SGarrett Wollman 	write(STDERR_FILENO, ERRSTR, sizeof ERRSTR);
228e45ccde7SGarrett Wollman 	exit(1);
229e45ccde7SGarrett Wollman }
230e45ccde7SGarrett Wollman 
231