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