2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-12-10 21:13:08 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
2001-12-10 21:13:08 +00:00
|
|
|
static char sccsid[] = "@(#)net.c 8.4 (Berkeley) 4/28/95";
|
2001-02-06 20:13:48 +00:00
|
|
|
#endif
|
2001-12-10 21:13:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1998-06-09 04:31:02 +00:00
|
|
|
#include <sys/param.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <sys/socket.h>
|
2001-02-06 20:13:48 +00:00
|
|
|
#include <sys/uio.h>
|
2016-01-18 20:47:04 +00:00
|
|
|
#include <wctype.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <db.h>
|
1997-07-02 06:34:51 +00:00
|
|
|
#include <err.h>
|
2001-02-06 20:13:48 +00:00
|
|
|
#include <netdb.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
2001-06-24 19:50:42 +00:00
|
|
|
#include <stdlib.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <string.h>
|
2001-02-06 20:13:48 +00:00
|
|
|
#include <unistd.h>
|
2010-01-13 17:50:58 +00:00
|
|
|
#include <utmpx.h>
|
2016-01-18 20:47:04 +00:00
|
|
|
#include <wchar.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "finger.h"
|
|
|
|
|
2004-05-16 22:08:17 +00:00
|
|
|
static void cleanup(int sig);
|
2000-09-22 01:06:40 +00:00
|
|
|
static int do_protocol(const char *name, const struct addrinfo *ai);
|
|
|
|
static void trying(const struct addrinfo *ai);
|
1999-05-08 00:46:06 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
void
|
2002-09-04 23:29:10 +00:00
|
|
|
netfinger(char *name)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2000-09-22 01:06:40 +00:00
|
|
|
int error, multi;
|
|
|
|
char *host;
|
|
|
|
struct addrinfo *ai, *ai0;
|
|
|
|
static struct addrinfo hint;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2000-09-22 01:06:40 +00:00
|
|
|
host = strrchr(name, '@');
|
2016-04-18 14:44:01 +00:00
|
|
|
if (host == NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
return;
|
1997-07-02 06:34:51 +00:00
|
|
|
*host++ = '\0';
|
1999-05-08 00:46:06 +00:00
|
|
|
signal(SIGALRM, cleanup);
|
2000-09-22 01:06:40 +00:00
|
|
|
alarm(TIME_LIMIT);
|
|
|
|
|
|
|
|
hint.ai_flags = AI_CANONNAME;
|
2002-07-22 17:19:54 +00:00
|
|
|
hint.ai_family = family;
|
2000-09-22 01:06:40 +00:00
|
|
|
hint.ai_socktype = SOCK_STREAM;
|
|
|
|
|
|
|
|
error = getaddrinfo(host, "finger", &hint, &ai0);
|
|
|
|
if (error) {
|
|
|
|
warnx("%s: %s", host, gai_strerror(error));
|
1994-05-27 12:33:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2000-09-22 01:06:40 +00:00
|
|
|
|
|
|
|
multi = (ai0->ai_next) != 0;
|
2000-09-24 01:54:49 +00:00
|
|
|
|
|
|
|
/* ai_canonname may not be filled in if the user specified an IP. */
|
|
|
|
if (ai0->ai_canonname == 0)
|
|
|
|
printf("[%s]\n", host);
|
|
|
|
else
|
|
|
|
printf("[%s]\n", ai0->ai_canonname);
|
2000-09-22 01:06:40 +00:00
|
|
|
|
2016-04-18 14:44:01 +00:00
|
|
|
for (ai = ai0; ai != NULL; ai = ai->ai_next) {
|
2000-09-22 01:06:40 +00:00
|
|
|
if (multi)
|
|
|
|
trying(ai);
|
|
|
|
|
|
|
|
error = do_protocol(name, ai);
|
|
|
|
if (!error)
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2000-09-22 01:06:40 +00:00
|
|
|
alarm(0);
|
|
|
|
freeaddrinfo(ai0);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2000-09-22 01:06:40 +00:00
|
|
|
static int
|
|
|
|
do_protocol(const char *name, const struct addrinfo *ai)
|
|
|
|
{
|
2000-10-23 12:18:34 +00:00
|
|
|
int cnt, line_len, s;
|
2001-12-02 20:13:42 +00:00
|
|
|
FILE *fp;
|
2016-01-18 20:47:04 +00:00
|
|
|
wint_t c, lastc;
|
2000-09-22 01:06:40 +00:00
|
|
|
struct iovec iov[3];
|
|
|
|
struct msghdr msg;
|
2001-12-02 20:13:42 +00:00
|
|
|
static char slash_w[] = "/W ";
|
2002-12-02 20:38:12 +00:00
|
|
|
static char neteol[] = "\r\n";
|
1995-12-17 21:04:36 +00:00
|
|
|
|
2000-09-22 01:06:40 +00:00
|
|
|
s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
|
|
|
|
if (s < 0) {
|
|
|
|
warn("socket(%d, %d, %d)", ai->ai_family, ai->ai_socktype,
|
|
|
|
ai->ai_protocol);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg.msg_name = (void *)ai->ai_addr;
|
|
|
|
msg.msg_namelen = ai->ai_addrlen;
|
1995-12-17 21:04:36 +00:00
|
|
|
msg.msg_iov = iov;
|
|
|
|
msg.msg_iovlen = 0;
|
|
|
|
msg.msg_control = 0;
|
|
|
|
msg.msg_controllen = 0;
|
1997-08-01 20:10:44 +00:00
|
|
|
msg.msg_flags = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/* -l flag for remote fingerd */
|
1995-12-17 21:04:36 +00:00
|
|
|
if (lflag) {
|
2001-12-02 20:13:42 +00:00
|
|
|
iov[msg.msg_iovlen].iov_base = slash_w;
|
1995-12-17 21:04:36 +00:00
|
|
|
iov[msg.msg_iovlen++].iov_len = 3;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
/* send the name followed by <CR><LF> */
|
2001-12-02 20:13:42 +00:00
|
|
|
iov[msg.msg_iovlen].iov_base = strdup(name);
|
1995-12-17 21:04:36 +00:00
|
|
|
iov[msg.msg_iovlen++].iov_len = strlen(name);
|
2001-12-02 20:13:42 +00:00
|
|
|
iov[msg.msg_iovlen].iov_base = neteol;
|
1995-12-17 21:04:36 +00:00
|
|
|
iov[msg.msg_iovlen++].iov_len = 2;
|
|
|
|
|
2007-04-11 19:11:54 +00:00
|
|
|
if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) {
|
2000-09-22 01:06:40 +00:00
|
|
|
warn("connect");
|
|
|
|
close(s);
|
|
|
|
return -1;
|
1996-03-15 16:41:49 +00:00
|
|
|
}
|
|
|
|
|
1997-08-01 20:10:44 +00:00
|
|
|
if (sendmsg(s, &msg, 0) < 0) {
|
2000-09-22 01:06:40 +00:00
|
|
|
warn("sendmsg");
|
1995-12-17 21:04:36 +00:00
|
|
|
close(s);
|
2000-09-22 01:06:40 +00:00
|
|
|
return -1;
|
1995-12-17 21:04:36 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read from the remote system; once we're connected, we assume some
|
|
|
|
* data. If none arrives, we hang until the user interrupts.
|
|
|
|
*
|
|
|
|
* If we see a <CR> or a <CR> with the high bit set, treat it as
|
|
|
|
* a newline; if followed by a newline character, only output one
|
|
|
|
* newline.
|
|
|
|
*
|
|
|
|
* Otherwise, all high bits are stripped; if it isn't printable and
|
|
|
|
* it isn't a space, we can simply set the 7th bit. Every ASCII
|
|
|
|
* character with bit 7 set is printable.
|
1995-05-30 06:41:30 +00:00
|
|
|
*/
|
1997-03-11 13:43:33 +00:00
|
|
|
lastc = 0;
|
|
|
|
if ((fp = fdopen(s, "r")) != NULL) {
|
1999-05-08 00:46:06 +00:00
|
|
|
cnt = 0;
|
|
|
|
line_len = 0;
|
2016-01-18 20:47:04 +00:00
|
|
|
while ((c = getwc(fp)) != EOF) {
|
1999-05-08 00:46:06 +00:00
|
|
|
if (++cnt > OUTPUT_MAX) {
|
|
|
|
printf("\n\n Output truncated at %d bytes...\n",
|
|
|
|
cnt - 1);
|
|
|
|
break;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
if (c == 0x0d) {
|
|
|
|
if (lastc == '\r') /* ^M^M - skip dupes */
|
|
|
|
continue;
|
|
|
|
c = '\n';
|
|
|
|
lastc = '\r';
|
|
|
|
} else {
|
2016-01-18 20:47:04 +00:00
|
|
|
if (!iswprint(c) && !iswspace(c)) {
|
1996-03-10 23:33:48 +00:00
|
|
|
c &= 0x7f;
|
1994-05-27 12:33:43 +00:00
|
|
|
c |= 0x40;
|
1996-03-10 23:33:48 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
if (lastc != '\r' || c != '\n')
|
|
|
|
lastc = c;
|
|
|
|
else {
|
|
|
|
lastc = '\n';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2016-01-18 20:47:04 +00:00
|
|
|
putwchar(c);
|
1999-05-08 00:46:06 +00:00
|
|
|
if (c != '\n' && ++line_len > _POSIX2_LINE_MAX) {
|
|
|
|
putchar('\\');
|
|
|
|
putchar('\n');
|
|
|
|
lastc = '\r';
|
|
|
|
}
|
|
|
|
if (lastc == '\n' || lastc == '\r')
|
|
|
|
line_len = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
1995-12-17 21:04:36 +00:00
|
|
|
if (ferror(fp)) {
|
|
|
|
/*
|
|
|
|
* Assume that whatever it was set errno...
|
|
|
|
*/
|
2000-09-22 01:06:40 +00:00
|
|
|
warn("reading from network");
|
1995-12-17 21:04:36 +00:00
|
|
|
}
|
2016-01-18 20:47:04 +00:00
|
|
|
if (lastc != L'\n')
|
2000-09-22 01:06:40 +00:00
|
|
|
putchar('\n');
|
|
|
|
|
|
|
|
fclose(fp);
|
1995-12-17 21:04:36 +00:00
|
|
|
}
|
2000-09-22 01:06:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
trying(const struct addrinfo *ai)
|
|
|
|
{
|
|
|
|
char buf[NI_MAXHOST];
|
|
|
|
|
|
|
|
if (getnameinfo(ai->ai_addr, ai->ai_addrlen, buf, sizeof buf,
|
|
|
|
(char *)0, 0, NI_NUMERICHOST) != 0)
|
|
|
|
return; /* XXX can't happen */
|
|
|
|
|
|
|
|
printf("Trying %s...\n", buf);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2000-09-22 01:06:40 +00:00
|
|
|
|
2011-06-21 20:33:55 +00:00
|
|
|
static void
|
2001-12-02 20:13:42 +00:00
|
|
|
cleanup(int sig __unused)
|
2000-09-22 01:06:40 +00:00
|
|
|
{
|
|
|
|
#define ERRSTR "Timed out.\n"
|
|
|
|
write(STDERR_FILENO, ERRSTR, sizeof ERRSTR);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|