(print_entry): Correct do_lookup test so that who
[platform/upstream/coreutils.git] / src / who.c
1 /* GNU's who.
2    Copyright (C) 1992-1999 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 */
19
20 /* Output format:
21    name [state] line time [idle] host
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 "error.h"
32 #include "readutmp.h"
33 #include "system.h"
34
35 /* The official name of this program (e.g., no `g' prefix).  */
36 #define PROGRAM_NAME "who"
37
38 #define AUTHORS "Joseph Arceneaux and David MacKenzie"
39
40 #ifndef MAXHOSTNAMELEN
41 # define MAXHOSTNAMELEN 64
42 #endif
43
44 #ifndef S_IWGRP
45 # define S_IWGRP 020
46 #endif
47
48 int gethostname ();
49 char *ttyname ();
50 char *canon_host ();
51
52 /* The name this program was run with. */
53 char *program_name;
54
55 /* If nonzero, attempt to canonicalize hostnames via a DNS lookup. */
56 static int do_lookup;
57
58 /* If nonzero, display only a list of usernames and count of
59    the users logged on.
60    Ignored for `who am i'. */
61 static int short_list;
62
63 /* If nonzero, display the hours:minutes since each user has touched
64    the keyboard, or "." if within the last minute, or "old" if
65    not within the last day. */
66 static int include_idle;
67
68 /* If nonzero, display a line at the top describing each field. */
69 static int include_heading;
70
71 /* If nonzero, display a `+' for each user if mesg y, a `-' if mesg n,
72    or a `?' if their tty cannot be statted. */
73 static int include_mesg;
74
75 static struct option const longopts[] =
76 {
77   {"count", no_argument, NULL, 'q'},
78   {"idle", no_argument, NULL, 'u'},
79   {"heading", no_argument, NULL, 'H'},
80   {"lookup", no_argument, NULL, 'l'},
81   {"message", no_argument, NULL, 'T'},
82   {"mesg", no_argument, NULL, 'T'},
83   {"writable", no_argument, NULL, 'T'},
84   {GETOPT_HELP_OPTION_DECL},
85   {GETOPT_VERSION_OPTION_DECL},
86   {NULL, 0, NULL, 0}
87 };
88
89 /* Return a string representing the time between WHEN and the time
90    that this function is first run. */
91
92 static const char *
93 idle_string (time_t when)
94 {
95   static time_t now = 0;
96   static char idle_hhmm[10];
97   time_t seconds_idle;
98
99   if (now == 0)
100     time (&now);
101
102   seconds_idle = now - when;
103   if (seconds_idle < 60)        /* One minute. */
104     return "  .  ";
105   if (seconds_idle < (24 * 60 * 60)) /* One day. */
106     {
107       sprintf (idle_hhmm, "%02d:%02d",
108                (int) (seconds_idle / (60 * 60)),
109                (int) ((seconds_idle % (60 * 60)) / 60));
110       return (const char *) idle_hhmm;
111     }
112   return _(" old ");
113 }
114
115 /* Display a line of information about UTMP_ENT. */
116
117 static void
118 print_entry (const STRUCT_UTMP *utmp_ent)
119 {
120   struct stat stats;
121   time_t last_change;
122   char mesg;
123
124 #define DEV_DIR_WITH_TRAILING_SLASH "/dev/"
125 #define DEV_DIR_LEN (sizeof (DEV_DIR_WITH_TRAILING_SLASH) - 1)
126
127   char line[sizeof (utmp_ent->ut_line) + DEV_DIR_LEN + 1];
128   time_t tm;
129
130   /* Copy ut_line into LINE, prepending `/dev/' if ut_line is not
131      already an absolute pathname.  Some system may put the full,
132      absolute pathname in ut_line.  */
133   if (utmp_ent->ut_line[0] == '/')
134     {
135       strncpy (line, utmp_ent->ut_line, sizeof (utmp_ent->ut_line));
136       line[sizeof (utmp_ent->ut_line)] = '\0';
137     }
138   else
139     {
140       strcpy (line, DEV_DIR_WITH_TRAILING_SLASH);
141       strncpy (line + DEV_DIR_LEN, utmp_ent->ut_line, sizeof (utmp_ent->ut_line));
142       line[DEV_DIR_LEN + sizeof (utmp_ent->ut_line)] = '\0';
143     }
144
145   if (stat (line, &stats) == 0)
146     {
147       mesg = (stats.st_mode & S_IWGRP) ? '+' : '-';
148       last_change = stats.st_atime;
149     }
150   else
151     {
152       mesg = '?';
153       last_change = 0;
154     }
155
156   printf ("%-8.*s", (int) sizeof (utmp_ent->ut_name), utmp_ent->ut_name);
157   if (include_mesg)
158     printf ("  %c  ", mesg);
159   printf (" %-8.*s", (int) sizeof (utmp_ent->ut_line), utmp_ent->ut_line);
160
161   /* Don't take the address of UT_TIME_MEMBER directly.
162      Ulrich Drepper wrote:
163      ``... GNU libc (and perhaps other libcs as well) have extended
164      utmp file formats which do not use a simple time_t ut_time field.
165      In glibc, ut_time is a macro which selects for backward compatibility
166      the tv_sec member of a struct timeval value.''  */
167   tm = UT_TIME_MEMBER (utmp_ent);
168   printf (" %-12.12s", ctime (&tm) + 4);
169
170   if (include_idle)
171     {
172       if (last_change)
173         printf (" %s", idle_string (last_change));
174       else
175         printf ("   .  ");
176     }
177 #if HAVE_UT_HOST
178   if (utmp_ent->ut_host[0])
179     {
180       char ut_host[sizeof (utmp_ent->ut_host) + 1];
181       char *host = 0, *display = 0;
182
183       /* Copy the host name into UT_HOST, and ensure it's nul terminated. */
184       strncpy (ut_host, utmp_ent->ut_host, (int) sizeof (utmp_ent->ut_host));
185       ut_host[sizeof (utmp_ent->ut_host)] = '\0';
186
187       /* Look for an X display.  */
188       display = strrchr (ut_host, ':');
189       if (display)
190         *display++ = '\0';
191
192       if (*ut_host && do_lookup)
193         {
194           /* See if we can canonicalize it.  */
195           host = canon_host (ut_host);
196         }
197
198       if (! host)
199         host = ut_host;
200
201       if (display)
202         printf (" (%s:%s)", host, display);
203       else
204         printf (" (%s)", host);
205     }
206 #endif
207
208   putchar ('\n');
209 }
210
211 /* Print the username of each valid entry and the number of valid entries
212    in UTMP_BUF, which should have N elements. */
213
214 static void
215 list_entries_who (int n, const STRUCT_UTMP *utmp_buf)
216 {
217   int entries;
218
219   entries = 0;
220   while (n--)
221     {
222       if (utmp_buf->ut_name[0]
223 #ifdef USER_PROCESS
224           && utmp_buf->ut_type == USER_PROCESS
225 #endif
226          )
227         {
228           char *trimmed_name;
229
230           trimmed_name = extract_trimmed_name (utmp_buf);
231
232           printf ("%s ", trimmed_name);
233           free (trimmed_name);
234           entries++;
235         }
236       utmp_buf++;
237     }
238   printf (_("\n# users=%u\n"), entries);
239 }
240
241 static void
242 print_heading (void)
243 {
244   printf ("%-8s ", _("USER"));
245   if (include_mesg)
246     printf (_("MESG "));
247   printf ("%-8s ", _("LINE"));
248   printf (_("LOGIN-TIME   "));
249   if (include_idle)
250     printf (_("IDLE  "));
251   printf (_("FROM\n"));
252 }
253
254 /* Display UTMP_BUF, which should have N entries. */
255
256 static void
257 scan_entries (int n, const STRUCT_UTMP *utmp_buf)
258 {
259   if (include_heading)
260     print_heading ();
261
262   while (n--)
263     {
264       if (utmp_buf->ut_name[0]
265 #ifdef USER_PROCESS
266           && utmp_buf->ut_type == USER_PROCESS
267 #endif
268          )
269         print_entry (utmp_buf);
270       utmp_buf++;
271     }
272 }
273
274 /* Display a list of who is on the system, according to utmp file FILENAME. */
275
276 static void
277 who (const char *filename)
278 {
279   int n_users;
280   STRUCT_UTMP *utmp_buf;
281   int fail = read_utmp (filename, &n_users, &utmp_buf);
282
283   if (fail)
284     error (1, errno, "%s", filename);
285
286   if (short_list)
287     list_entries_who (n_users, utmp_buf);
288   else
289     scan_entries (n_users, utmp_buf);
290 }
291
292 /* Search UTMP_CONTENTS, which should have N entries, for
293    an entry with a `ut_line' field identical to LINE.
294    Return the first matching entry found, or NULL if there
295    is no matching entry. */
296
297 static const STRUCT_UTMP *
298 search_entries (int n, const STRUCT_UTMP *utmp_buf, const char *line)
299 {
300   while (n--)
301     {
302       if (utmp_buf->ut_name[0]
303 #ifdef USER_PROCESS
304           && utmp_buf->ut_type == USER_PROCESS
305 #endif
306           && !strncmp (line, utmp_buf->ut_line, sizeof (utmp_buf->ut_line)))
307         return utmp_buf;
308       utmp_buf++;
309     }
310   return NULL;
311 }
312
313 /* Display the entry in utmp file FILENAME for this tty on standard input,
314    or nothing if there is no entry for it. */
315
316 static void
317 who_am_i (const char *filename)
318 {
319   const STRUCT_UTMP *utmp_entry;
320   STRUCT_UTMP *utmp_buf;
321   char hostname[MAXHOSTNAMELEN + 1];
322   char *tty;
323   int fail;
324   int n_users;
325
326   if (gethostname (hostname, MAXHOSTNAMELEN + 1))
327     *hostname = 0;
328
329   if (include_heading)
330     {
331       printf ("%*s ", (int) strlen (hostname), " ");
332       print_heading ();
333     }
334
335   tty = ttyname (0);
336   if (tty == NULL)
337     return;
338   tty += 5;                     /* Remove "/dev/".  */
339
340   fail = read_utmp (filename, &n_users, &utmp_buf);
341
342   if (fail)
343     error (1, errno, "%s", filename);
344
345   utmp_entry = search_entries (n_users, utmp_buf, tty);
346   if (utmp_entry == NULL)
347     return;
348
349   printf ("%s!", hostname);
350   print_entry (utmp_entry);
351 }
352
353 void
354 usage (int status)
355 {
356   if (status != 0)
357     fprintf (stderr, _("Try `%s --help' for more information.\n"),
358              program_name);
359   else
360     {
361       printf (_("Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n"), program_name);
362       printf (_("\
363 \n\
364   -H, --heading     print line of column headings\n\
365   -i, -u, --idle    add user idle time as HOURS:MINUTES, . or old\n\
366   -l, --lookup      attempt to canonicalize hostnames via DNS\n\
367   -m                only hostname and user associated with stdin\n\
368   -q, --count       all login names and number of users logged on\n\
369   -s                (ignored)\n\
370   -T, -w, --mesg    add user's message status as +, - or ?\n\
371       --message     same as -T\n\
372       --writable    same as -T\n\
373       --help        display this help and exit\n\
374       --version     output version information and exit\n\
375 \n\
376 If FILE is not specified, use %s.  %s as FILE is common.\n\
377 If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n\
378 "), UTMP_FILE, WTMP_FILE);
379       puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
380     }
381   exit (status);
382 }
383
384 int
385 main (int argc, char **argv)
386 {
387   int optc, longind;
388   int my_line_only = 0;
389
390   program_name = argv[0];
391   setlocale (LC_ALL, "");
392   bindtextdomain (PACKAGE, LOCALEDIR);
393   textdomain (PACKAGE);
394
395   while ((optc = getopt_long (argc, argv, "ilmqsuwHT", longopts, &longind))
396          != -1)
397     {
398       switch (optc)
399         {
400         case 0:
401           break;
402
403         case 'm':
404           my_line_only = 1;
405           break;
406
407         case 'l':
408           do_lookup = 1;
409           break;
410
411         case 'q':
412           short_list = 1;
413           break;
414
415         case 's':
416           break;
417
418         case 'i':
419         case 'u':
420           include_idle = 1;
421           break;
422
423         case 'H':
424           include_heading = 1;
425           break;
426
427         case 'w':
428         case 'T':
429           include_mesg = 1;
430           break;
431
432         case_GETOPT_HELP_CHAR;
433
434         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
435
436         default:
437           usage (1);
438         }
439     }
440
441   switch (argc - optind)
442     {
443     case 0:                     /* who */
444       if (my_line_only)
445         who_am_i (UTMP_FILE);
446       else
447         who (UTMP_FILE);
448       break;
449
450     case 1:                     /* who <utmp file> */
451       if (my_line_only)
452         who_am_i (argv[optind]);
453       else
454         who (argv[optind]);
455       break;
456
457     case 2:                     /* who <blurf> <glop> */
458       who_am_i (UTMP_FILE);
459       break;
460
461     default:                    /* lose */
462       error (0, 0, _("too many arguments"));
463       usage (1);
464     }
465
466   exit (0);
467 }