add comment for prev change
[platform/upstream/coreutils.git] / src / who.c
1 /* GNU's who.
2    Copyright (C) 1992-2002 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by jla; revised by djm; revised again by mstone */
19
20 /* Output format:
21    name [state] line time [activity] [pid] [comment] [exit]
22    state: -T
23    name, line, time: not -q
24    idle: -u
25 */
26
27 #include <config.h>
28 #include <getopt.h>
29 #include <stdio.h>
30
31 #include <sys/types.h>
32 #include "system.h"
33
34 #include "readutmp.h"
35 #include "error.h"
36 #include "closeout.h"
37
38 /* The official name of this program (e.g., no `g' prefix).  */
39 #define PROGRAM_NAME "who"
40
41 #define AUTHORS N_ ("Joseph Arceneaux, David MacKenzie, and Michael Stone")
42
43 #ifndef MAXHOSTNAMELEN
44 # define MAXHOSTNAMELEN 64
45 #endif
46
47 #ifndef S_IWGRP
48 # define S_IWGRP 020
49 #endif
50
51 #ifndef USER_PROCESS
52 # define USER_PROCESS INT_MAX
53 #endif
54
55 #ifndef RUN_LVL
56 # define RUN_LVL INT_MAX
57 #endif
58
59 #ifndef INIT_PROCESS
60 # define INIT_PROCESS INT_MAX
61 #endif
62
63 #ifndef LOGIN_PROCESS
64 # define LOGIN_PROCESS INT_MAX
65 #endif
66
67 #ifndef DEAD_PROCESS
68 # define DEAD_PROCESS INT_MAX
69 #endif
70
71 #ifndef BOOT_TIME
72 # define BOOT_TIME 0
73 #endif
74
75 #ifndef NEW_TIME
76 # define NEW_TIME 0
77 #endif
78
79 #define IDLESTR_LEN 6
80
81 #if HAVE_STRUCT_XTMP_UT_PID
82 # define UT_PID(U) ((U)->ut_pid)
83 # define PIDSTR_DECL_AND_INIT(Var, Utmp_ent) \
84   char Var[INT_STRLEN_BOUND (Utmp_ent->ut_pid) + 1]; \
85   sprintf (Var, "%d", (int) (Utmp_ent->ut_pid))
86 #else
87 # define UT_PID(U) 0
88 # define PIDSTR_DECL_AND_INIT(Var, Utmp_ent) \
89   const char *Var = ""
90 #endif
91
92 #if HAVE_STRUCT_XTMP_UT_ID
93 # define UT_ID(U) ((U)->ut_id)
94 #else
95   /* Of course, sizeof "whatever" is the size of a pointer (often 4),
96      but that's ok, since the actual string has a length of only 2.  */
97 # define UT_ID(U) "??"
98 #endif
99
100 #if HAVE_STRUCT_XTMP_UT_EXIT
101 # define UT_EXIT_E_TERMINATION(U) ((U)->ut_exit.e_termination)
102 # define UT_EXIT_E_EXIT(U) ((U)->ut_exit.e_exit)
103 #else
104 # define UT_EXIT_E_TERMINATION(U) 0
105 # define UT_EXIT_E_EXIT(U) 0
106 #endif
107
108 #define UT_TYPE_UNDEF 255
109
110 #if HAVE_STRUCT_XTMP_UT_TYPE
111 # define UT_TYPE(U) ((U)->ut_type)
112 #else
113 # define UT_TYPE(U) UT_TYPE_UNDEF
114 #endif
115
116 #define IS_USER_PROCESS(U)                      \
117   (UT_USER (utmp_buf)[0]                        \
118    && (UT_TYPE (utmp_buf) == USER_PROCESS       \
119        || (UT_TYPE (utmp_buf) == UT_TYPE_UNDEF  \
120            && UT_TIME_MEMBER (utmp_buf) != 0)))
121
122 int gethostname ();
123 char *ttyname ();
124 char *canon_host ();
125
126 /* The name this program was run with. */
127 char *program_name;
128
129 /* If nonzero, attempt to canonicalize hostnames via a DNS lookup. */
130 static int do_lookup;
131
132 /* If nonzero, display only a list of usernames and count of
133    the users logged on.
134    Ignored for `who am i'. */
135 static int short_list;
136
137 /* If nonzero, display only name, line, and time fields */
138 static int short_output;
139
140 /* If nonzero, display the hours:minutes since each user has touched
141    the keyboard, or "." if within the last minute, or "old" if
142    not within the last day. */
143 static int include_idle;
144
145 /* If nonzero, display a line at the top describing each field. */
146 static int include_heading;
147
148 /* If nonzero, display a `+' for each user if mesg y, a `-' if mesg n,
149    or a `?' if their tty cannot be statted. */
150 static int include_mesg;
151
152 /* If nonzero, display process termination & exit status */
153 static int include_exit;
154
155 /* If nonzero, display the last boot time */
156 static int need_boottime;
157
158 /* If nonzero, display dead processes */
159 static int need_deadprocs;
160
161 /* If nonzero, display processes waiting for user login */
162 static int need_login;
163
164 /* If nonzero, display processes started by init */
165 static int need_initspawn;
166
167 /* If nonzero, display the last clock change */
168 static int need_clockchange;
169
170 /* If nonzero, display the current runlevel */
171 static int need_runlevel;
172
173 /* If nonzero, display user processes */
174 static int need_users;
175
176 /* If nonzero, display info only for the controlling tty */
177 static int my_line_only;
178
179 /* for long options with no corresponding short option, use enum */
180 enum
181 {
182   LOOKUP_OPTION = CHAR_MAX + 1,
183   LOGIN_OPTION
184 };
185
186 static struct option const longopts[] = {
187   {"all", no_argument, NULL, 'a'},
188   {"boot", no_argument, NULL, 'b'},
189   {"count", no_argument, NULL, 'q'},
190   {"dead", no_argument, NULL, 'd'},
191   {"heading", no_argument, NULL, 'H'},
192   {"idle", no_argument, NULL, 'i'},
193   {"login", no_argument, NULL, LOGIN_OPTION},
194   {"lookup", no_argument, NULL, LOOKUP_OPTION},
195   {"message", no_argument, NULL, 'T'},
196   {"mesg", no_argument, NULL, 'T'},
197   {"process", no_argument, NULL, 'p'},
198   {"runlevel", no_argument, NULL, 'r'},
199   {"short", no_argument, NULL, 's'},
200   {"time", no_argument, NULL, 't'},
201   {"users", no_argument, NULL, 'u'},
202   {"writable", no_argument, NULL, 'T'},
203   {GETOPT_HELP_OPTION_DECL},
204   {GETOPT_VERSION_OPTION_DECL},
205   {NULL, 0, NULL, 0}
206 };
207
208 /* Return a string representing the time between WHEN and the time
209    that this function is first run.
210    FIXME: locale? */
211 static const char *
212 idle_string (time_t when)
213 {
214   static time_t now = 0;
215   static char idle_hhmm[IDLESTR_LEN];
216   time_t seconds_idle;
217
218   if (now == 0)
219     time (&now);
220
221   seconds_idle = now - when;
222   if (seconds_idle < 60)        /* One minute. */
223     return "  .  ";
224   if (seconds_idle < (24 * 60 * 60))    /* One day. */
225     {
226       sprintf (idle_hhmm, "%02d:%02d",
227                (int) (seconds_idle / (60 * 60)),
228                (int) ((seconds_idle % (60 * 60)) / 60));
229       return (const char *) idle_hhmm;
230     }
231   return _(" old ");
232 }
233
234 /* Return a standard time string, "mon dd hh:mm"
235    FIXME: handle localization */
236 static const char *
237 time_string (const STRUCT_UTMP *utmp_ent)
238 {
239   /* Don't take the address of UT_TIME_MEMBER directly.
240      Ulrich Drepper wrote:
241      ``... GNU libc (and perhaps other libcs as well) have extended
242      utmp file formats which do not use a simple time_t ut_time field.
243      In glibc, ut_time is a macro which selects for backward compatibility
244      the tv_sec member of a struct timeval value.''  */
245   time_t tm = UT_TIME_MEMBER (utmp_ent);
246
247   char *ptr = ctime (&tm) + 4;
248   ptr[12] = '\0';
249   return ptr;
250 }
251
252 /* Print formatted output line. Uses mostly arbitrary field sizes, probably
253    will need tweaking if any of the localization stuff is done, or for 64 bit
254    pids, etc. */
255 static void
256 print_line (const char *user, const char state, const char *line,
257             const char *time_str, const char *idle, const char *pid,
258             const char *comment, const char *exitstr)
259 {
260   printf ("%-8.8s", user ? user : "   .");
261   if (include_mesg)
262     printf (" %c", state);
263   printf (" %-12s", line);
264   printf (" %-12s", time_str);
265   if (include_idle && !short_output)
266     printf (" %-6s", idle);
267   if (!short_output)
268     printf (" %10s", pid);
269   /* FIXME: it's not really clear whether the following should be in short_output.
270      a strict reading of SUSv2 would suggest not, but I haven't seen any
271      implementations that actually work that way... */
272   printf (" %-8s", comment);
273   if (include_exit && exitstr && *exitstr)
274     printf (" %-12s", exitstr);
275   putchar ('\n');
276 }
277
278 /* Send properly parsed USER_PROCESS info to print_line */
279 static void
280 print_user (const STRUCT_UTMP *utmp_ent)
281 {
282   struct stat stats;
283   time_t last_change;
284   char mesg;
285   char idlestr[IDLESTR_LEN];
286   static char *hoststr;
287   static int hostlen;
288
289 #define DEV_DIR_WITH_TRAILING_SLASH "/dev/"
290 #define DEV_DIR_LEN (sizeof (DEV_DIR_WITH_TRAILING_SLASH) - 1)
291
292   char line[sizeof (utmp_ent->ut_line) + DEV_DIR_LEN + 1];
293   PIDSTR_DECL_AND_INIT (pidstr, utmp_ent);
294
295   /* Copy ut_line into LINE, prepending `/dev/' if ut_line is not
296      already an absolute pathname.  Some system may put the full,
297      absolute pathname in ut_line.  */
298   if (utmp_ent->ut_line[0] == '/')
299     {
300       strncpy (line, utmp_ent->ut_line, sizeof (utmp_ent->ut_line));
301       line[sizeof (utmp_ent->ut_line)] = '\0';
302     }
303   else
304     {
305       strcpy (line, DEV_DIR_WITH_TRAILING_SLASH);
306       strncpy (line + DEV_DIR_LEN, utmp_ent->ut_line,
307                sizeof (utmp_ent->ut_line));
308       line[DEV_DIR_LEN + sizeof (utmp_ent->ut_line)] = '\0';
309     }
310
311   if (stat (line, &stats) == 0)
312     {
313       mesg = (stats.st_mode & S_IWGRP) ? '+' : '-';
314       last_change = stats.st_atime;
315     }
316   else
317     {
318       mesg = '?';
319       last_change = 0;
320     }
321
322   if (last_change)
323     sprintf (idlestr, "%.6s", idle_string (last_change));
324   else
325     sprintf (idlestr, "  ?");
326
327 #if HAVE_UT_HOST
328   if (utmp_ent->ut_host[0])
329     {
330       char ut_host[sizeof (utmp_ent->ut_host) + 1];
331       char *host = 0, *display = 0;
332
333       /* Copy the host name into UT_HOST, and ensure it's nul terminated. */
334       strncpy (ut_host, utmp_ent->ut_host, (int) sizeof (utmp_ent->ut_host));
335       ut_host[sizeof (utmp_ent->ut_host)] = '\0';
336
337       /* Look for an X display.  */
338       display = strrchr (ut_host, ':');
339       if (display)
340         *display++ = '\0';
341
342       if (*ut_host && do_lookup)
343         {
344           /* See if we can canonicalize it.  */
345           host = canon_host (ut_host);
346         }
347
348       if (! host)
349         host = ut_host;
350
351       if (display)
352         {
353           if (hostlen < strlen (host) + strlen (display) + 4)
354             {
355               hostlen = strlen (host) + strlen (display) + 4;
356               hoststr = (char *) realloc (hoststr, hostlen);
357             }
358           sprintf (hoststr, "(%s:%s)", host, display);
359         }
360       else
361         {
362           if (hostlen < strlen (host) + 3)
363             {
364               hostlen = strlen (host) + 3;
365               hoststr = (char *) realloc (hoststr, hostlen);
366             }
367           sprintf (hoststr, "(%s)", host);
368         }
369     }
370   else
371     {
372       if (hostlen < 1)
373         {
374           hostlen = 1;
375           hoststr = (char *) realloc (hoststr, hostlen);
376         }
377       stpcpy (hoststr, "");
378     }
379 #endif
380
381   print_line (UT_USER (utmp_ent), mesg, utmp_ent->ut_line,
382               time_string (utmp_ent), idlestr, pidstr,
383               hoststr ? hoststr : "", "");
384 }
385
386 static void
387 print_boottime (const STRUCT_UTMP *utmp_ent)
388 {
389   print_line ("", ' ', "system boot", time_string (utmp_ent), "", "", "", "");
390 }
391
392 static char *
393 make_id_equals_comment (STRUCT_UTMP const *utmp_ent)
394 {
395   char *comment = xmalloc (sizeof (_("id=")) + sizeof UT_ID (utmp_ent) + 1);
396
397   /* Cast field width argument to `int' to avoid warning from gcc.  */
398   sprintf (comment, "%s%.*s", _("id="), (int) sizeof UT_ID (utmp_ent),
399            UT_ID (utmp_ent));
400   return comment;
401 }
402
403 static void
404 print_deadprocs (const STRUCT_UTMP *utmp_ent)
405 {
406   static char *exitstr;
407   char *comment = make_id_equals_comment (utmp_ent);
408   PIDSTR_DECL_AND_INIT (pidstr, utmp_ent);
409
410   /* FIXME: ut_exit works with GNU/Linux but is probably not portable.  */
411   if (!exitstr)
412     exitstr = xmalloc (sizeof (_("term="))
413                        + INT_STRLEN_BOUND (UT_EXIT_E_TERMINATION (utmp_ent)) + 1
414                        + sizeof (_("exit="))
415                        + INT_STRLEN_BOUND (UT_EXIT_E_EXIT (utmp_ent))
416                        + 1);
417   sprintf (exitstr, "%s%d %s%d", _("term="), UT_EXIT_E_TERMINATION (utmp_ent),
418            _("exit="), UT_EXIT_E_EXIT (utmp_ent));
419
420   /* FIXME: add idle time? */
421
422   print_line ("", ' ', utmp_ent->ut_line,
423               time_string (utmp_ent), "", pidstr, comment, exitstr);
424   free (comment);
425 }
426
427 static void
428 print_login (const STRUCT_UTMP *utmp_ent)
429 {
430   char *comment = make_id_equals_comment (utmp_ent);
431   PIDSTR_DECL_AND_INIT (pidstr, utmp_ent);
432
433   /* FIXME: add idle time? */
434
435   print_line ("LOGIN", ' ', utmp_ent->ut_line,
436               time_string (utmp_ent), "", pidstr, comment, "");
437   free (comment);
438 }
439
440 static void
441 print_initspawn (const STRUCT_UTMP *utmp_ent)
442 {
443   char *comment = make_id_equals_comment (utmp_ent);
444   PIDSTR_DECL_AND_INIT (pidstr, utmp_ent);
445
446   print_line ("", ' ', utmp_ent->ut_line,
447               time_string (utmp_ent), "", pidstr, comment, "");
448   free (comment);
449 }
450
451 static void
452 print_clockchange (const STRUCT_UTMP *utmp_ent)
453 {
454   /* FIXME: handle NEW_TIME & OLD_TIME both */
455   print_line ("", ' ', _("clock change"),
456               time_string (utmp_ent), "", "", "", "");
457 }
458
459 static void
460 print_runlevel (const STRUCT_UTMP *utmp_ent)
461 {
462   static char *runlevline, *comment;
463   int last = UT_PID (utmp_ent) / 256;
464   int curr = UT_PID (utmp_ent) % 256;
465
466   if (!runlevline)
467     runlevline = xmalloc (sizeof (_("run-level")) + 3);
468   sprintf (runlevline, "%s %c", _("run-level"), curr);
469
470   if (!comment)
471     comment = xmalloc (sizeof (_("last=")) + 2);
472   sprintf (comment, "%s%c", _("last="), (last == 'N') ? 'S' : last);
473
474   print_line ("", ' ', runlevline, time_string (utmp_ent),
475               "", "", comment, "");
476
477   return;
478 }
479
480 /* Print the username of each valid entry and the number of valid entries
481    in UTMP_BUF, which should have N elements. */
482 static void
483 list_entries_who (int n, const STRUCT_UTMP *utmp_buf)
484 {
485   int entries = 0;
486
487   while (n--)
488     {
489       if (UT_USER (utmp_buf)[0] && UT_TYPE (utmp_buf) == USER_PROCESS)
490         {
491           char *trimmed_name;
492
493           trimmed_name = extract_trimmed_name (utmp_buf);
494
495           printf ("%s ", trimmed_name);
496           free (trimmed_name);
497           entries++;
498         }
499       utmp_buf++;
500     }
501   printf (_("\n# users=%u\n"), entries);
502 }
503
504 static void
505 print_heading (void)
506 {
507   print_line (_("NAME"), ' ', _("LINE"), _("TIME"), _("IDLE"), _("PID"),
508               _("COMMENT"), _("EXIT"));
509 }
510
511 /* Display UTMP_BUF, which should have N entries. */
512 static void
513 scan_entries (int n, const STRUCT_UTMP *utmp_buf)
514 {
515   char *ttyname_b IF_LINT ( = NULL);
516
517   if (include_heading)
518     print_heading ();
519
520   if (my_line_only)
521     {
522       ttyname_b = ttyname (0);
523       if (!ttyname_b)
524         return;
525       if (strncmp (ttyname_b, DEV_DIR_WITH_TRAILING_SLASH, DEV_DIR_LEN) == 0)
526         ttyname_b += DEV_DIR_LEN;       /* Discard /dev/ prefix.  */
527     }
528
529   while (n--)
530     {
531       if (!my_line_only ||
532           strncmp (ttyname_b, utmp_buf->ut_line,
533                    sizeof (utmp_buf->ut_line)) == 0)
534         {
535           if (need_users && IS_USER_PROCESS (utmp_buf))
536             print_user (utmp_buf);
537           else if (need_runlevel && UT_TYPE (utmp_buf) == RUN_LVL)
538             print_runlevel (utmp_buf);
539           else if (need_boottime && UT_TYPE (utmp_buf) == BOOT_TIME)
540             print_boottime (utmp_buf);
541           /* I've never seen one of these, so I don't know what it should
542              look like :^)
543              FIXME: handle OLD_TIME also, perhaps show the delta? */
544           else if (need_clockchange && UT_TYPE (utmp_buf) == NEW_TIME)
545             print_clockchange (utmp_buf);
546           else if (need_initspawn && UT_TYPE (utmp_buf) == INIT_PROCESS)
547             print_initspawn (utmp_buf);
548           else if (need_login && UT_TYPE (utmp_buf) == LOGIN_PROCESS)
549             print_login (utmp_buf);
550           else if (need_deadprocs && UT_TYPE (utmp_buf) == DEAD_PROCESS)
551             print_deadprocs (utmp_buf);
552         }
553
554       utmp_buf++;
555     }
556 }
557
558 /* Display a list of who is on the system, according to utmp file filename. */
559 static void
560 who (const char *filename)
561 {
562   int n_users;
563   STRUCT_UTMP *utmp_buf;
564   int fail = read_utmp (filename, &n_users, &utmp_buf);
565
566   if (fail)
567     error (1, errno, "%s", filename);
568
569   if (short_list)
570     list_entries_who (n_users, utmp_buf);
571   else
572     scan_entries (n_users, utmp_buf);
573 }
574
575 void
576 usage (int status)
577 {
578   if (status != 0)
579     fprintf (stderr, _("Try `%s --help' for more information.\n"),
580              program_name);
581   else
582     {
583       printf (_("Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n"), program_name);
584       fputs (_("\
585 \n\
586   -a, --all         same as -b -d --login -p -r -t -T -u\n\
587   -b, --boot        time of last system boot\n\
588   -d, --dead        print dead processes\n\
589   -H, --heading     print line of column headings\n\
590 "), stdout);
591       fputs (_("\
592   -i, --idle        add idle time as HOURS:MINUTES, . or old\n\
593                     (deprecated, use -u)\n\
594       --login       print system login processes\n\
595                     (equivalent to SUS -l)\n\
596 "), stdout);
597       fputs (_("\
598   -l, --lookup      attempt to canonicalize hostnames via DNS\n\
599                     (-l is deprecated, use --lookup)\n\
600   -m                only hostname and user associated with stdin\n\
601   -p, --process     print active processes spawned by init\n\
602 "), stdout);
603       fputs (_("\
604   -q, --count       all login names and number of users logged on\n\
605   -r, --runlevel    print current runlevel\n\
606   -s, --short       print only name, line, and time (default)\n\
607   -t, --time        print last system clock change\n\
608 "), stdout);
609       fputs (_("\
610   -T, -w, --mesg    add user's message status as +, - or ?\n\
611   -u, --users       lists users logged in\n\
612       --message     same as -T\n\
613       --writable    same as -T\n\
614 "), stdout);
615       fputs (HELP_OPTION_DESCRIPTION, stdout);
616       fputs (VERSION_OPTION_DESCRIPTION, stdout);
617       printf (_("\
618 \n\
619 If FILE is not specified, use %s.  %s as FILE is common.\n\
620 If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n\
621 "), UTMP_FILE, WTMP_FILE);
622       puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
623     }
624   exit (status);
625 }
626
627 int
628 main (int argc, char **argv)
629 {
630   int optc, longind;
631   int assumptions = 1;
632
633   program_name = argv[0];
634   setlocale (LC_ALL, "");
635   bindtextdomain (PACKAGE, LOCALEDIR);
636   textdomain (PACKAGE);
637
638   atexit (close_stdout);
639
640   while ((optc = getopt_long (argc, argv, "abdilmpqrstuwHT", longopts,
641                               &longind)) != -1)
642     {
643       switch (optc)
644         {
645         case 0:
646           break;
647
648         case 'a':
649           need_boottime = 1;
650           need_deadprocs = 1;
651           need_login = 1;
652           need_initspawn = 1;
653           need_runlevel = 1;
654           need_clockchange = 1;
655           need_users = 1;
656           include_mesg = 1;
657           include_idle = 1;
658           include_exit = 1;
659           assumptions = 0;
660           break;
661
662         case 'b':
663           need_boottime = 1;
664           assumptions = 0;
665           break;
666
667         case 'd':
668           need_deadprocs = 1;
669           include_idle = 1;
670           include_exit = 1;
671           assumptions = 0;
672           break;
673
674         case 'H':
675           include_heading = 1;
676           break;
677
678           /* FIXME: This should be -l in a future version */
679         case LOGIN_OPTION:
680           need_login = 1;
681           include_idle = 1;
682           assumptions = 0;
683           break;
684
685         case 'm':
686           my_line_only = 1;
687           break;
688
689         case 'p':
690           need_initspawn = 1;
691           assumptions = 0;
692           break;
693
694         case 'q':
695           short_list = 1;
696           break;
697
698         case 'r':
699           need_runlevel = 1;
700           include_idle = 1;
701           assumptions = 0;
702           break;
703
704         case 's':
705           short_output = 1;
706           break;
707
708         case 't':
709           need_clockchange = 1;
710           assumptions = 0;
711           break;
712
713         case 'T':
714         case 'w':
715           include_mesg = 1;
716           break;
717
718         case 'i':
719           error (0, 0,
720                  _("Warning: -i will be removed in a future release; \
721   use -u instead"));
722           /* Fall through.  */
723         case 'u':
724           need_users = 1;
725           include_idle = 1;
726           assumptions = 0;
727           break;
728
729         case 'l':
730           error (0, 0,
731                  _("Warning: the meaning of '-l' will change in a future\
732  release to conform to POSIX"));
733         case LOOKUP_OPTION:
734           do_lookup = 1;
735           break;
736
737           case_GETOPT_HELP_CHAR;
738
739           case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
740
741         default:
742           usage (1);
743         }
744     }
745
746   if (assumptions)
747     {
748       need_users = 1;
749       short_output = 1;
750     }
751
752   if (include_exit)
753     {
754       short_output = 0;
755     }
756
757   switch (argc - optind)
758     {
759     case 0:                     /* who */
760       who (UTMP_FILE);
761       break;
762
763     case 1:                     /* who <utmp file> */
764       who (argv[optind]);
765       break;
766
767     case 2:                     /* who <blurf> <glop> */
768       my_line_only = 1;
769       who (UTMP_FILE);
770       break;
771
772     default:                    /* lose */
773       error (0, 0, _("too many arguments"));
774       usage (1);
775     }
776
777   exit (0);
778 }