Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * last implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 9 | //config:config LAST |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 10 | //config: bool "last (6.1 kb)" |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 11 | //config: default y |
| 12 | //config: depends on FEATURE_WTMP |
| 13 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 14 | //config: 'last' displays a list of the last users that logged into the system. |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 15 | //config: |
| 16 | //config:config FEATURE_LAST_FANCY |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 17 | //config: bool "Output extra information" |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 18 | //config: default y |
| 19 | //config: depends on LAST |
| 20 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 21 | //config: 'last' displays detailed information about the last users that |
| 22 | //config: logged into the system (mimics sysvinit last). +900 bytes. |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 23 | |
Denys Vlasenko | f88e3bf | 2016-11-22 23:54:17 +0100 | [diff] [blame] | 24 | //applet:IF_LAST(APPLET(last, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 25 | |
| 26 | //kbuild:ifeq ($(CONFIG_FEATURE_LAST_FANCY),y) |
| 27 | //kbuild:lib-$(CONFIG_FEATURE_LAST_FANCY) += last_fancy.o |
| 28 | //kbuild:else |
| 29 | //kbuild:lib-$(CONFIG_LAST) += last.o |
| 30 | //kbuild:endif |
| 31 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 32 | //usage:#define last_trivial_usage |
| 33 | //usage: ""IF_FEATURE_LAST_FANCY("[-HW] [-f FILE]") |
| 34 | //usage:#define last_full_usage "\n\n" |
| 35 | //usage: "Show listing of the last users that logged into the system" |
| 36 | //usage: IF_FEATURE_LAST_FANCY( "\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 37 | /* //usage: "\n -H Show header line" */ |
| 38 | //usage: "\n -W Display with no host column truncation" |
| 39 | //usage: "\n -f FILE Read from FILE instead of /var/log/wtmp" |
| 40 | //usage: ) |
| 41 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 42 | #include "libbb.h" |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 43 | |
Denis Vlasenko | cd2663f | 2008-06-01 22:36:39 +0000 | [diff] [blame] | 44 | /* NB: ut_name and ut_user are the same field, use only one name (ut_user) |
| 45 | * to reduce confusion */ |
| 46 | |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 47 | #ifndef SHUTDOWN_TIME |
| 48 | # define SHUTDOWN_TIME 254 |
| 49 | #endif |
| 50 | |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 51 | /* Grr... utmp char[] members do not have to be nul-terminated. |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 52 | * Do what we can while still keeping this reasonably small. |
| 53 | * Note: We are assuming the ut_id[] size is fixed at 4. */ |
| 54 | |
Bernhard Reutner-Fischer | 781e42d | 2006-05-26 14:41:40 +0000 | [diff] [blame] | 55 | #if defined UT_LINESIZE \ |
| 56 | && ((UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256)) |
Bernhard Reutner-Fischer | 86a7f18 | 2015-04-02 23:03:46 +0200 | [diff] [blame] | 57 | #error struct utmpx member char[] size(s) have changed! |
Bernhard Reutner-Fischer | 781e42d | 2006-05-26 14:41:40 +0000 | [diff] [blame] | 58 | #elif defined __UT_LINESIZE \ |
Denys Vlasenko | 9323026 | 2015-10-11 16:58:18 +0200 | [diff] [blame] | 59 | && ((__UT_LINESIZE != 32) || (__UT_NAMESIZE != 32) || (__UT_HOSTSIZE != 256)) |
| 60 | /* __UT_NAMESIZE was checked with 64 above, but glibc-2.11 definitely uses 32! */ |
Bernhard Reutner-Fischer | 86a7f18 | 2015-04-02 23:03:46 +0200 | [diff] [blame] | 61 | #error struct utmpx member char[] size(s) have changed! |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 62 | #endif |
| 63 | |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 64 | #if EMPTY != 0 || RUN_LVL != 1 || BOOT_TIME != 2 || NEW_TIME != 3 || \ |
| 65 | OLD_TIME != 4 |
Bernhard Reutner-Fischer | 86a7f18 | 2015-04-02 23:03:46 +0200 | [diff] [blame] | 66 | #error Values for the ut_type field of struct utmpx changed |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 67 | #endif |
| 68 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 69 | int last_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 70 | int last_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 71 | { |
Bernhard Reutner-Fischer | 86a7f18 | 2015-04-02 23:03:46 +0200 | [diff] [blame] | 72 | struct utmpx ut; |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 73 | int n, file = STDIN_FILENO; |
"Vladimir N. Oleynik" | dd14ca0 | 2006-01-31 09:35:45 +0000 | [diff] [blame] | 74 | time_t t_tmp; |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 75 | off_t pos; |
| 76 | static const char _ut_usr[] ALIGN1 = |
| 77 | "runlevel\0" "reboot\0" "shutdown\0"; |
| 78 | static const char _ut_lin[] ALIGN1 = |
| 79 | "~\0" "{\0" "|\0" /* "LOGIN\0" "date\0" */; |
| 80 | enum { |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 81 | TYPE_RUN_LVL = RUN_LVL, /* 1 */ |
| 82 | TYPE_BOOT_TIME = BOOT_TIME, /* 2 */ |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 83 | TYPE_SHUTDOWN_TIME = SHUTDOWN_TIME |
| 84 | }; |
| 85 | enum { |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 86 | _TILDE = EMPTY, /* 0 */ |
| 87 | TYPE_NEW_TIME, /* NEW_TIME, 3 */ |
| 88 | TYPE_OLD_TIME /* OLD_TIME, 4 */ |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 89 | }; |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 90 | |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 91 | if (argv[1]) { |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 92 | bb_show_usage(); |
| 93 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 94 | file = xopen(bb_path_wtmp_file, O_RDONLY); |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 95 | |
Denis Vlasenko | d04e1fc | 2008-05-17 23:50:14 +0000 | [diff] [blame] | 96 | printf("%-10s %-14s %-18s %-12.12s %s\n", |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 97 | "USER", "TTY", "HOST", "LOGIN", "TIME"); |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 98 | /* yikes. We reverse over the file and that is a not too elegant way */ |
| 99 | pos = xlseek(file, 0, SEEK_END); |
| 100 | pos = lseek(file, pos - sizeof(ut), SEEK_SET); |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 101 | while ((n = full_read(file, &ut, sizeof(ut))) > 0) { |
| 102 | if (n != sizeof(ut)) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 103 | bb_simple_perror_msg_and_die("short read"); |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 104 | } |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 105 | n = index_in_strings(_ut_lin, ut.ut_line); |
| 106 | if (n == _TILDE) { /* '~' */ |
| 107 | #if 1 |
| 108 | /* do we really need to be cautious here? */ |
| 109 | n = index_in_strings(_ut_usr, ut.ut_user); |
| 110 | if (++n > 0) |
Bernhard Reutner-Fischer | 61082ec | 2008-05-22 22:05:55 +0000 | [diff] [blame] | 111 | ut.ut_type = n != 3 ? n : SHUTDOWN_TIME; |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 112 | #else |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 113 | if (is_prefixed_with(ut.ut_user, "shutdown")) |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 114 | ut.ut_type = SHUTDOWN_TIME; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 115 | else if (is_prefixed_with(ut.ut_user, "reboot")) |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 116 | ut.ut_type = BOOT_TIME; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 117 | else if (is_prefixed_with(ut.ut_user, "runlevel")) |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 118 | ut.ut_type = RUN_LVL; |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 119 | #endif |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 120 | } else { |
Bernhard Reutner-Fischer | 62d8503 | 2008-06-01 10:10:22 +0000 | [diff] [blame] | 121 | if (ut.ut_user[0] == '\0' || strcmp(ut.ut_user, "LOGIN") == 0) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 122 | /* Don't bother. This means we can't find how long |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 123 | * someone was logged in for. Oh well. */ |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 124 | goto next; |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 125 | } |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 126 | if (ut.ut_type != DEAD_PROCESS |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 127 | && ut.ut_user[0] |
| 128 | && ut.ut_line[0] |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 129 | ) { |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 130 | ut.ut_type = USER_PROCESS; |
| 131 | } |
Bernhard Reutner-Fischer | 62d8503 | 2008-06-01 10:10:22 +0000 | [diff] [blame] | 132 | if (strcmp(ut.ut_user, "date") == 0) { |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 133 | if (n == TYPE_OLD_TIME) { /* '|' */ |
Denis Vlasenko | d04e1fc | 2008-05-17 23:50:14 +0000 | [diff] [blame] | 134 | ut.ut_type = OLD_TIME; |
| 135 | } |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 136 | if (n == TYPE_NEW_TIME) { /* '{' */ |
Denis Vlasenko | d04e1fc | 2008-05-17 23:50:14 +0000 | [diff] [blame] | 137 | ut.ut_type = NEW_TIME; |
| 138 | } |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 142 | if (ut.ut_type != USER_PROCESS) { |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 143 | switch (ut.ut_type) { |
| 144 | case OLD_TIME: |
| 145 | case NEW_TIME: |
| 146 | case RUN_LVL: |
| 147 | case SHUTDOWN_TIME: |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 148 | goto next; |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 149 | case BOOT_TIME: |
| 150 | strcpy(ut.ut_line, "system boot"); |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 151 | } |
| 152 | } |
Denis Vlasenko | 0e52541 | 2008-07-11 13:57:08 +0000 | [diff] [blame] | 153 | /* manpages say ut_tv.tv_sec *is* time_t, |
| 154 | * but some systems have it wrong */ |
"Vladimir N. Oleynik" | dd14ca0 | 2006-01-31 09:35:45 +0000 | [diff] [blame] | 155 | t_tmp = (time_t)ut.ut_tv.tv_sec; |
Denis Vlasenko | d04e1fc | 2008-05-17 23:50:14 +0000 | [diff] [blame] | 156 | printf("%-10s %-14s %-18s %-12.12s\n", |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 157 | ut.ut_user, ut.ut_line, ut.ut_host, ctime(&t_tmp) + 4); |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 158 | next: |
Denis Vlasenko | 30f892a | 2008-05-25 01:14:14 +0000 | [diff] [blame] | 159 | pos -= sizeof(ut); |
| 160 | if (pos <= 0) |
Denis Vlasenko | dfd8282 | 2008-05-22 17:35:22 +0000 | [diff] [blame] | 161 | break; /* done. */ |
Denis Vlasenko | 30f892a | 2008-05-25 01:14:14 +0000 | [diff] [blame] | 162 | xlseek(file, pos, SEEK_SET); |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Denys Vlasenko | 31f45c1 | 2022-01-04 23:31:58 +0100 | [diff] [blame] | 165 | fflush_stdout_and_exit_SUCCESS(); |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 166 | } |