Convert a chunk of usage.h to USE_ and SKIP_ (more to do there), and fix a
[oweals/busybox.git] / coreutils / who.c
1 /* vi: set sw=4 ts=4: */
2 /*----------------------------------------------------------------------
3  * Mini who is used to display user name, login time,
4  * idle time and host name.
5  *
6  * Author: Da Chen  <dchen@ayrnetworks.com>
7  *
8  * This is a free document; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation:
11  *    http://www.gnu.org/copyleft/gpl.html
12  *
13  * Copyright (c) 2002 AYR Networks, Inc.
14  *----------------------------------------------------------------------
15  */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <utmp.h>
20 #include <sys/stat.h>
21 #include <time.h>
22 #include "busybox.h"
23
24 static const char * idle_string (time_t t)
25 {
26         static char str[6];
27         
28         time_t s = time(NULL) - t;
29
30         if (s < 60)
31                 return ".";
32         if (s < (24 * 60 * 60)) {
33                 sprintf (str, "%02d:%02d",
34                                 (int) (s / (60 * 60)),
35                                 (int) ((s % (60 * 60)) / 60));
36                 return (const char *) str;
37         }
38         return "old";
39 }
40
41 int who_main(int argc, char **argv)
42 {
43         struct utmp *ut;
44         struct stat st;
45         char *name;
46         
47         if (argc > 1) {
48                 bb_show_usage();
49         }
50         
51         setutent();
52         printf("USER       TTY      IDLE      TIME           HOST\n");
53         while ((ut = getutent()) != NULL) {
54                 if (ut->ut_user[0] && ut->ut_type == USER_PROCESS) {
55                         /* ut->ut_line is device name of tty - "/dev/" */
56                         name = concat_path_file("/dev", ut->ut_line);
57                         printf("%-10s %-8s %-8s  %-12.12s   %s\n", ut->ut_user, ut->ut_line,
58                                                                         (stat(name, &st)) ?  "?" : idle_string(st.st_atime),
59                                                                         ctime((time_t*)&(ut->ut_tv.tv_sec)) + 4, ut->ut_host);
60                         free(name);
61                 }
62         }
63         endutent();
64         return 0;
65 }