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