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 /* 38 * Luke Mewburn <lm@rmit.edu.au> added the following on 940622: 39 * - mail status ("No Mail", "Mail read:...", or "New Mail ..., 40 * Unread since ...".) 41 * - 4 digit phone extensions (3210 is printed as x3210.) 42 * - host/office toggling in short format with -h & -o. 43 * - short day names (`Tue' printed instead of `Jun 21' if the 44 * login time is < 6 days. 45 */ 46 47 #ifndef lint 48 static const char copyright[] = 49 "@(#) Copyright (c) 1989, 1993\n\ 50 The Regents of the University of California. All rights reserved.\n"; 51 #endif /* not lint */ 52 53 #if 0 54 #ifndef lint 55 static char sccsid[] = "@(#)finger.c 8.5 (Berkeley) 5/4/95"; 56 #endif 57 #endif 58 59 #include <sys/cdefs.h> 60 __FBSDID("$FreeBSD$"); 61 62 /* 63 * Finger prints out information about users. It is not portable since 64 * certain fields (e.g. the full user name, office, and phone numbers) are 65 * extracted from the gecos field of the passwd file which other UNIXes 66 * may not have or may use for other things. 67 * 68 * There are currently two output formats; the short format is one line 69 * per user and displays login name, tty, login time, real name, idle time, 70 * and either remote host information (default) or office location/phone 71 * number, depending on if -h or -o is used respectively. 72 * The long format gives the same information (in a more legible format) as 73 * well as home directory, shell, mail info, and .plan/.project files. 74 */ 75 76 #include <db.h> 77 #include <err.h> 78 #include <pwd.h> 79 #include <stdio.h> 80 #include <stdlib.h> 81 #include <string.h> 82 #include <time.h> 83 #include <unistd.h> 84 #include <utmp.h> 85 #include <locale.h> 86 87 #include "finger.h" 88 #include "pathnames.h" 89 90 DB *db; 91 time_t now; 92 int entries, gflag, lflag, mflag, pplan, sflag, oflag, Tflag; 93 int d_first = -1; 94 char tbuf[1024]; 95 96 static void loginlist(void); 97 static int option(int, char **); 98 static void usage(void); 99 static void userlist(int, char **); 100 101 static int 102 option(argc, argv) 103 int argc; 104 char **argv; 105 { 106 int ch; 107 108 optind = 1; /* reset getopt */ 109 110 while ((ch = getopt(argc, argv, "glmpshoT")) != -1) 111 switch(ch) { 112 case 'g': 113 gflag = 1; 114 break; 115 case 'l': 116 lflag = 1; /* long format */ 117 break; 118 case 'm': 119 mflag = 1; /* force exact match of names */ 120 break; 121 case 'p': 122 pplan = 1; /* don't show .plan/.project */ 123 break; 124 case 's': 125 sflag = 1; /* short format */ 126 break; 127 case 'h': 128 oflag = 0; /* remote host info */ 129 break; 130 case 'o': 131 oflag = 1; /* office info */ 132 break; 133 case 'T': 134 Tflag = 1; /* disable T/TCP */ 135 break; 136 case '?': 137 default: 138 usage(); 139 } 140 141 return optind; 142 } 143 144 static void 145 usage() 146 { 147 (void)fprintf(stderr, "usage: finger [-lmpshoT] [login ...]\n"); 148 exit(1); 149 } 150 151 int 152 main(argc, argv) 153 int argc; 154 char **argv; 155 { 156 int envargc, argcnt; 157 char *envargv[3]; 158 struct passwd *pw; 159 static char myname[] = "finger"; 160 161 if (getuid() == 0 || geteuid() == 0) { 162 if ((pw = getpwnam(UNPRIV_NAME)) && pw->pw_uid > 0) { 163 setgid(pw->pw_gid); 164 setuid(pw->pw_uid); 165 } else { 166 setgid(UNPRIV_UGID); 167 setuid(UNPRIV_UGID); 168 } 169 } 170 171 (void) setlocale(LC_ALL, ""); 172 173 /* remove this line to get remote host */ 174 oflag = 1; /* default to old "office" behavior */ 175 176 /* 177 * Process environment variables followed by command line arguments. 178 */ 179 if ((envargv[1] = getenv("FINGER"))) { 180 envargc = 2; 181 envargv[0] = myname; 182 envargv[2] = NULL; 183 (void) option(envargc, envargv); 184 } 185 186 argcnt = option(argc, argv); 187 argc -= argcnt; 188 argv += argcnt; 189 190 (void)time(&now); 191 setpassent(1); 192 if (!*argv) { 193 /* 194 * Assign explicit "small" format if no names given and -l 195 * not selected. Force the -s BEFORE we get names so proper 196 * screening will be done. 197 */ 198 if (!lflag) 199 sflag = 1; /* if -l not explicit, force -s */ 200 loginlist(); 201 if (entries == 0) 202 (void)printf("No one logged on.\n"); 203 } else { 204 userlist(argc, argv); 205 /* 206 * Assign explicit "large" format if names given and -s not 207 * explicitly stated. Force the -l AFTER we get names so any 208 * remote finger attempts specified won't be mishandled. 209 */ 210 if (!sflag) 211 lflag = 1; /* if -s not explicit, force -l */ 212 } 213 if (entries) { 214 if (lflag) 215 lflag_print(); 216 else 217 sflag_print(); 218 } 219 return (0); 220 } 221 222 static void 223 loginlist() 224 { 225 PERSON *pn; 226 DBT data, key; 227 struct passwd *pw; 228 struct utmp user; 229 int r, sflag1; 230 char name[UT_NAMESIZE + 1]; 231 232 if (!freopen(_PATH_UTMP, "r", stdin)) 233 err(1, "%s", _PATH_UTMP); 234 name[UT_NAMESIZE] = '\0'; 235 while (fread((char *)&user, sizeof(user), 1, stdin) == 1) { 236 if (!user.ut_name[0]) 237 continue; 238 if ((pn = find_person(user.ut_name)) == NULL) { 239 bcopy(user.ut_name, name, UT_NAMESIZE); 240 if ((pw = getpwnam(name)) == NULL) 241 continue; 242 if (hide(pw)) 243 continue; 244 pn = enter_person(pw); 245 } 246 enter_where(&user, pn); 247 } 248 if (db && lflag) 249 for (sflag1 = R_FIRST;; sflag1 = R_NEXT) { 250 PERSON *tmp; 251 252 r = (*db->seq)(db, &key, &data, sflag1); 253 if (r == -1) 254 err(1, "db seq"); 255 if (r == 1) 256 break; 257 memmove(&tmp, data.data, sizeof tmp); 258 enter_lastlog(tmp); 259 } 260 } 261 262 static void 263 userlist(argc, argv) 264 int argc; 265 char **argv; 266 { 267 PERSON *pn; 268 DBT data, key; 269 struct utmp user; 270 struct passwd *pw; 271 int r, sflag1, *used, *ip; 272 char **ap, **nargv, **np, **p; 273 FILE *conf_fp; 274 char conf_alias[LINE_MAX]; 275 char *conf_realname; 276 int conf_length; 277 278 if ((nargv = malloc((argc+1) * sizeof(char *))) == NULL || 279 (used = calloc(argc, sizeof(int))) == NULL) 280 err(1, NULL); 281 282 /* Pull out all network requests. */ 283 for (ap = p = argv, np = nargv; *p; ++p) 284 if (index(*p, '@')) 285 *np++ = *p; 286 else 287 *ap++ = *p; 288 289 *np++ = NULL; 290 *ap++ = NULL; 291 292 if (!*argv) 293 goto net; 294 295 /* 296 * Mark any arguments beginning with '/' as invalid so that we 297 * don't accidently confuse them with expansions from finger.conf 298 */ 299 for (p = argv, ip = used; *p; ++p, ++ip) 300 if (**p == '/') { 301 *ip = 1; 302 warnx("%s: no such user", *p); 303 } 304 305 /* 306 * Traverse the finger alias configuration file of the form 307 * alias:(user|alias), ignoring comment lines beginning '#'. 308 */ 309 if ((conf_fp = fopen(_PATH_FINGERCONF, "r")) != NULL) { 310 while(fgets(conf_alias, sizeof(conf_alias), conf_fp) != NULL) { 311 conf_length = strlen(conf_alias); 312 if (*conf_alias == '#' || conf_alias[--conf_length] != '\n') 313 continue; 314 conf_alias[conf_length] = '\0'; /* Remove trailing LF */ 315 if ((conf_realname = strchr(conf_alias, ':')) == NULL) 316 continue; 317 *conf_realname = '\0'; /* Replace : with NUL */ 318 for (p = argv; *p; ++p) { 319 if (strcmp(*p, conf_alias) == NULL) { 320 if ((*p = strdup(conf_realname+1)) == NULL) { 321 err(1, NULL); 322 } 323 } 324 } 325 } 326 (void)fclose(conf_fp); 327 } 328 329 /* 330 * Traverse the list of possible login names and check the login name 331 * and real name against the name specified by the user. If the name 332 * begins with a '/', try to read the file of that name instead of 333 * gathering the traditional finger information. 334 */ 335 if (mflag) 336 for (p = argv, ip = used; *p; ++p, ++ip) { 337 if (**p != '/' || *ip == 1 || !show_text("", *p, "")) { 338 if (((pw = getpwnam(*p)) != NULL) && !hide(pw)) 339 enter_person(pw); 340 else if (!*ip) 341 warnx("%s: no such user", *p); 342 } 343 } 344 else { 345 while ((pw = getpwent()) != NULL) { 346 for (p = argv, ip = used; *p; ++p, ++ip) 347 if (**p == '/' && *ip != 1 348 && show_text("", *p, "")) 349 *ip = 1; 350 else if (match(pw, *p) && !hide(pw)) { 351 enter_person(pw); 352 *ip = 1; 353 } 354 } 355 for (p = argv, ip = used; *p; ++p, ++ip) 356 if (!*ip) 357 warnx("%s: no such user", *p); 358 } 359 360 /* Handle network requests. */ 361 net: for (p = nargv; *p;) { 362 netfinger(*p++); 363 if (*p || entries) 364 printf("\n"); 365 } 366 367 if (entries == 0) 368 return; 369 370 /* 371 * Scan thru the list of users currently logged in, saving 372 * appropriate data whenever a match occurs. 373 */ 374 if (!freopen(_PATH_UTMP, "r", stdin)) 375 err(1, "%s", _PATH_UTMP); 376 while (fread((char *)&user, sizeof(user), 1, stdin) == 1) { 377 if (!user.ut_name[0]) 378 continue; 379 if ((pn = find_person(user.ut_name)) == NULL) 380 continue; 381 enter_where(&user, pn); 382 } 383 if (db) 384 for (sflag1 = R_FIRST;; sflag1 = R_NEXT) { 385 PERSON *tmp; 386 387 r = (*db->seq)(db, &key, &data, sflag1); 388 if (r == -1) 389 err(1, "db seq"); 390 if (r == 1) 391 break; 392 memmove(&tmp, data.data, sizeof tmp); 393 enter_lastlog(tmp); 394 } 395 } 396