1 /* 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Tony Nardo of the Johns Hopkins University/Applied Physics Lab. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by the University of 19 * California, Berkeley and its contributors. 20 * 4. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37 #if 0 38 #ifndef lint 39 static char sccsid[] = "@(#)net.c 8.4 (Berkeley) 4/28/95"; 40 #endif 41 #endif 42 43 #include <sys/cdefs.h> 44 __FBSDID("$FreeBSD$"); 45 46 #include <sys/param.h> 47 #include <sys/socket.h> 48 #include <sys/uio.h> 49 #include <ctype.h> 50 #include <db.h> 51 #include <err.h> 52 #include <netdb.h> 53 #include <pwd.h> 54 #include <stdio.h> 55 #include <stdlib.h> 56 #include <string.h> 57 #include <unistd.h> 58 #include <utmp.h> 59 #include "finger.h" 60 61 static void cleanup(int sig); 62 static int do_protocol(const char *name, const struct addrinfo *ai); 63 static void trying(const struct addrinfo *ai); 64 65 void 66 netfinger(char *name) 67 { 68 int error, multi; 69 char *host; 70 struct addrinfo *ai, *ai0; 71 static struct addrinfo hint; 72 73 host = strrchr(name, '@'); 74 if (host == 0) 75 return; 76 *host++ = '\0'; 77 signal(SIGALRM, cleanup); 78 alarm(TIME_LIMIT); 79 80 hint.ai_flags = AI_CANONNAME; 81 hint.ai_family = family; 82 hint.ai_socktype = SOCK_STREAM; 83 84 error = getaddrinfo(host, "finger", &hint, &ai0); 85 if (error) { 86 warnx("%s: %s", host, gai_strerror(error)); 87 return; 88 } 89 90 multi = (ai0->ai_next) != 0; 91 92 /* ai_canonname may not be filled in if the user specified an IP. */ 93 if (ai0->ai_canonname == 0) 94 printf("[%s]\n", host); 95 else 96 printf("[%s]\n", ai0->ai_canonname); 97 98 for (ai = ai0; ai != 0; ai = ai->ai_next) { 99 if (multi) 100 trying(ai); 101 102 error = do_protocol(name, ai); 103 if (!error) 104 break; 105 } 106 alarm(0); 107 freeaddrinfo(ai0); 108 } 109 110 static int 111 do_protocol(const char *name, const struct addrinfo *ai) 112 { 113 int cnt, line_len, s; 114 FILE *fp; 115 int c, lastc; 116 struct iovec iov[3]; 117 struct msghdr msg; 118 static char slash_w[] = "/W "; 119 static char neteol[] = "\r\n"; 120 121 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); 122 if (s < 0) { 123 warn("socket(%d, %d, %d)", ai->ai_family, ai->ai_socktype, 124 ai->ai_protocol); 125 return -1; 126 } 127 128 msg.msg_name = (void *)ai->ai_addr; 129 msg.msg_namelen = ai->ai_addrlen; 130 msg.msg_iov = iov; 131 msg.msg_iovlen = 0; 132 msg.msg_control = 0; 133 msg.msg_controllen = 0; 134 msg.msg_flags = 0; 135 136 /* -l flag for remote fingerd */ 137 if (lflag) { 138 iov[msg.msg_iovlen].iov_base = slash_w; 139 iov[msg.msg_iovlen++].iov_len = 3; 140 } 141 /* send the name followed by <CR><LF> */ 142 iov[msg.msg_iovlen].iov_base = strdup(name); 143 iov[msg.msg_iovlen++].iov_len = strlen(name); 144 iov[msg.msg_iovlen].iov_base = neteol; 145 iov[msg.msg_iovlen++].iov_len = 2; 146 147 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) { 148 warn("connect"); 149 close(s); 150 return -1; 151 } 152 153 if (sendmsg(s, &msg, 0) < 0) { 154 warn("sendmsg"); 155 close(s); 156 return -1; 157 } 158 159 /* 160 * Read from the remote system; once we're connected, we assume some 161 * data. If none arrives, we hang until the user interrupts. 162 * 163 * If we see a <CR> or a <CR> with the high bit set, treat it as 164 * a newline; if followed by a newline character, only output one 165 * newline. 166 * 167 * Otherwise, all high bits are stripped; if it isn't printable and 168 * it isn't a space, we can simply set the 7th bit. Every ASCII 169 * character with bit 7 set is printable. 170 */ 171 lastc = 0; 172 if ((fp = fdopen(s, "r")) != NULL) { 173 cnt = 0; 174 line_len = 0; 175 while ((c = getc(fp)) != EOF) { 176 if (++cnt > OUTPUT_MAX) { 177 printf("\n\n Output truncated at %d bytes...\n", 178 cnt - 1); 179 break; 180 } 181 if (c == 0x0d) { 182 if (lastc == '\r') /* ^M^M - skip dupes */ 183 continue; 184 c = '\n'; 185 lastc = '\r'; 186 } else { 187 if (!isprint(c) && !isspace(c)) { 188 c &= 0x7f; 189 c |= 0x40; 190 } 191 if (lastc != '\r' || c != '\n') 192 lastc = c; 193 else { 194 lastc = '\n'; 195 continue; 196 } 197 } 198 putchar(c); 199 if (c != '\n' && ++line_len > _POSIX2_LINE_MAX) { 200 putchar('\\'); 201 putchar('\n'); 202 lastc = '\r'; 203 } 204 if (lastc == '\n' || lastc == '\r') 205 line_len = 0; 206 } 207 if (ferror(fp)) { 208 /* 209 * Assume that whatever it was set errno... 210 */ 211 warn("reading from network"); 212 } 213 if (lastc != '\n') 214 putchar('\n'); 215 216 fclose(fp); 217 } 218 return 0; 219 } 220 221 static void 222 trying(const struct addrinfo *ai) 223 { 224 char buf[NI_MAXHOST]; 225 226 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, buf, sizeof buf, 227 (char *)0, 0, NI_NUMERICHOST) != 0) 228 return; /* XXX can't happen */ 229 230 printf("Trying %s...\n", buf); 231 } 232 233 void 234 cleanup(int sig __unused) 235 { 236 #define ERRSTR "Timed out.\n" 237 write(STDERR_FILENO, ERRSTR, sizeof ERRSTR); 238 exit(1); 239 } 240 241