Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /*---------------------------------------------------------------------- |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3 | * Mini who is used to display user name, login time, |
Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 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 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 13 | * Copyright (c) 2002 AYR Networks, Inc. |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 14 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 15 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 16 | * |
Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 17 | *---------------------------------------------------------------------- |
| 18 | */ |
Denys Vlasenko | 37f5bef | 2010-04-05 03:18:40 +0200 | [diff] [blame] | 19 | /* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ |
Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 20 | |
Tito Ragusa | 7926b98 | 2011-08-09 04:37:50 +0200 | [diff] [blame] | 21 | //config:config WHO |
| 22 | //config: bool "who" |
| 23 | //config: default y |
| 24 | //config: depends on FEATURE_UTMP |
| 25 | //config: help |
| 26 | //config: who is used to show who is logged on. |
| 27 | |
| 28 | //config:config USERS |
| 29 | //config: bool "users" |
| 30 | //config: default y |
| 31 | //config: depends on FEATURE_UTMP |
| 32 | //config: help |
| 33 | //config: Print users currently logged on. |
| 34 | |
| 35 | //applet:IF_USERS(APPLET_ODDNAME(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users)) |
| 36 | //applet:IF_WHO( APPLET( who, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 37 | |
| 38 | //kbuild:lib-$(CONFIG_USERS) += who.o |
| 39 | //kbuild:lib-$(CONFIG_WHO) += who.o |
| 40 | |
| 41 | //usage:#define users_trivial_usage |
| 42 | //usage: "" |
| 43 | //usage:#define users_full_usage "\n\n" |
| 44 | //usage: "Print the users currently logged on" |
| 45 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 46 | //usage:#define who_trivial_usage |
| 47 | //usage: "[-a]" |
| 48 | //usage:#define who_full_usage "\n\n" |
| 49 | //usage: "Show who is logged on\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 50 | //usage: "\n -a Show all" |
Denys Vlasenko | b110e1f | 2012-04-18 14:38:15 +0200 | [diff] [blame] | 51 | //usage: "\n -H Print column headers" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 52 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 53 | #include "libbb.h" |
Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 54 | |
Denis Vlasenko | 41cca2b | 2007-03-07 00:07:42 +0000 | [diff] [blame] | 55 | static void idle_string(char *str6, time_t t) |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 56 | { |
Denis Vlasenko | 41cca2b | 2007-03-07 00:07:42 +0000 | [diff] [blame] | 57 | t = time(NULL) - t; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | 41cca2b | 2007-03-07 00:07:42 +0000 | [diff] [blame] | 59 | /*if (t < 60) { |
| 60 | str6[0] = '.'; |
| 61 | str6[1] = '\0'; |
| 62 | return; |
| 63 | }*/ |
| 64 | if (t >= 0 && t < (24 * 60 * 60)) { |
| 65 | sprintf(str6, "%02d:%02d", |
| 66 | (int) (t / (60 * 60)), |
| 67 | (int) ((t % (60 * 60)) / 60)); |
| 68 | return; |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 69 | } |
Denis Vlasenko | 41cca2b | 2007-03-07 00:07:42 +0000 | [diff] [blame] | 70 | strcpy(str6, "old"); |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 73 | int who_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 74 | int who_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 75 | { |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 76 | struct utmp *ut; |
Denis Vlasenko | 01cd957 | 2007-11-16 05:24:43 +0000 | [diff] [blame] | 77 | unsigned opt; |
Tito Ragusa | 7926b98 | 2011-08-09 04:37:50 +0200 | [diff] [blame] | 78 | int do_users = (ENABLE_USERS && (!ENABLE_WHO || applet_name[0] == 'u')); |
| 79 | const char *fmt = "%s"; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 80 | |
Denis Vlasenko | 01cd957 | 2007-11-16 05:24:43 +0000 | [diff] [blame] | 81 | opt_complementary = "=0"; |
Tito Ragusa | 7926b98 | 2011-08-09 04:37:50 +0200 | [diff] [blame] | 82 | opt = getopt32(argv, do_users ? "" : "aH"); |
Denys Vlasenko | 4c72104 | 2010-04-04 23:45:09 +0200 | [diff] [blame] | 83 | if (opt & 2) // -H |
| 84 | printf("USER\t\tTTY\t\tIDLE\tTIME\t\t HOST\n"); |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 85 | |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 86 | setutent(); |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 87 | while ((ut = getutent()) != NULL) { |
Denys Vlasenko | 4c72104 | 2010-04-04 23:45:09 +0200 | [diff] [blame] | 88 | if (ut->ut_user[0] |
| 89 | && ((opt & 1) || ut->ut_type == USER_PROCESS) |
| 90 | ) { |
Tito Ragusa | 7926b98 | 2011-08-09 04:37:50 +0200 | [diff] [blame] | 91 | if (!do_users) { |
| 92 | char str6[6]; |
| 93 | char name[sizeof("/dev/") + sizeof(ut->ut_line) + 1]; |
| 94 | struct stat st; |
| 95 | time_t seconds; |
Denys Vlasenko | 4c72104 | 2010-04-04 23:45:09 +0200 | [diff] [blame] | 96 | |
Tito Ragusa | 7926b98 | 2011-08-09 04:37:50 +0200 | [diff] [blame] | 97 | str6[0] = '?'; |
| 98 | str6[1] = '\0'; |
| 99 | strcpy(name, "/dev/"); |
| 100 | safe_strncpy(ut->ut_line[0] == '/' ? name : name + sizeof("/dev/")-1, |
| 101 | ut->ut_line, |
| 102 | sizeof(ut->ut_line)+1 |
| 103 | ); |
| 104 | if (stat(name, &st) == 0) |
| 105 | idle_string(str6, st.st_atime); |
| 106 | /* manpages say ut_tv.tv_sec *is* time_t, |
| 107 | * but some systems have it wrong */ |
| 108 | seconds = ut->ut_tv.tv_sec; |
| 109 | /* How wide time field can be? |
| 110 | * "Nov 10 19:33:20": 15 chars |
| 111 | * "2010-11-10 19:33": 16 chars |
| 112 | */ |
| 113 | printf("%-15.*s %-15.*s %-7s %-16.16s %.*s\n", |
| 114 | (int)sizeof(ut->ut_user), ut->ut_user, |
| 115 | (int)sizeof(ut->ut_line), ut->ut_line, |
| 116 | str6, |
| 117 | ctime(&seconds) + 4, |
| 118 | (int)sizeof(ut->ut_host), ut->ut_host |
| 119 | ); |
| 120 | } else { |
| 121 | printf(fmt, ut->ut_user); |
| 122 | fmt = " %s"; |
| 123 | } |
Rob Landley | e01d746 | 2006-03-12 19:26:01 +0000 | [diff] [blame] | 124 | } |
| 125 | } |
Tito Ragusa | 7926b98 | 2011-08-09 04:37:50 +0200 | [diff] [blame] | 126 | if (do_users) |
| 127 | bb_putchar('\n'); |
Denis Vlasenko | 41cca2b | 2007-03-07 00:07:42 +0000 | [diff] [blame] | 128 | if (ENABLE_FEATURE_CLEAN_UP) |
| 129 | endutent(); |
Bernhard Reutner-Fischer | e897988 | 2007-11-16 11:52:42 +0000 | [diff] [blame] | 130 | return EXIT_SUCCESS; |
Eric Andersen | 00a6a75 | 2002-04-26 23:53:10 +0000 | [diff] [blame] | 131 | } |