Initial public busybox upstream commit
[busybox4maemo] / 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  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
16  *
17  *----------------------------------------------------------------------
18  */
19 /* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -H, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'.  */
20
21 #include "libbb.h"
22 #include <utmp.h>
23 #include <time.h>
24
25 static void idle_string(char *str6, time_t t)
26 {
27         t = time(NULL) - t;
28
29         /*if (t < 60) {
30                 str6[0] = '.';
31                 str6[1] = '\0';
32                 return;
33         }*/
34         if (t >= 0 && t < (24 * 60 * 60)) {
35                 sprintf(str6, "%02d:%02d",
36                                 (int) (t / (60 * 60)),
37                                 (int) ((t % (60 * 60)) / 60));
38                 return;
39         }
40         strcpy(str6, "old");
41 }
42
43 int who_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
44 int who_main(int argc ATTRIBUTE_UNUSED, char **argv)
45 {
46         char str6[6];
47         struct utmp *ut;
48         struct stat st;
49         char *name;
50         unsigned opt;
51
52         opt_complementary = "=0";
53         opt = getopt32(argv, "a");
54
55         setutent();
56         printf("USER       TTY      IDLE      TIME            HOST\n");
57         while ((ut = getutent()) != NULL) {
58                 if (ut->ut_user[0] && (opt || ut->ut_type == USER_PROCESS)) {
59                         /* ut->ut_line is device name of tty - "/dev/" */
60                         name = concat_path_file("/dev", ut->ut_line);
61                         str6[0] = '?';
62                         str6[1] = '\0';
63                         if (stat(name, &st) == 0)
64                                 idle_string(str6, st.st_atime);
65                         /* 15 chars for time:   Nov 10 19:33:20 */
66                         printf("%-10s %-8s %-9s %-15.15s %s\n",
67                                         ut->ut_user, ut->ut_line, str6,
68                                         ctime(&(ut->ut_tv.tv_sec)) + 4, ut->ut_host);
69                         if (ENABLE_FEATURE_CLEAN_UP)
70                                 free(name);
71                 }
72         }
73         if (ENABLE_FEATURE_CLEAN_UP)
74                 endutent();
75         return EXIT_SUCCESS;
76 }