blob: 24f6e1c7820ed49b8280a4b01826162cff275654 [file] [log] [blame]
Eric Andersen2e9c2572003-08-08 22:26:06 +00001/* vi: set sw=4 ts=4: */
2/*
3 * last implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 2003-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen2e9c2572003-08-08 22:26:06 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersen2e9c2572003-08-08 22:26:06 +00008 */
9
Pere Orga5bc8c002011-04-11 03:29:49 +020010//usage:#define last_trivial_usage
11//usage: ""IF_FEATURE_LAST_FANCY("[-HW] [-f FILE]")
12//usage:#define last_full_usage "\n\n"
13//usage: "Show listing of the last users that logged into the system"
14//usage: IF_FEATURE_LAST_FANCY( "\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020015/* //usage: "\n -H Show header line" */
16//usage: "\n -W Display with no host column truncation"
17//usage: "\n -f FILE Read from FILE instead of /var/log/wtmp"
18//usage: )
19
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000020#include "libbb.h"
Eric Andersen2e9c2572003-08-08 22:26:06 +000021
Denis Vlasenkocd2663f2008-06-01 22:36:39 +000022/* NB: ut_name and ut_user are the same field, use only one name (ut_user)
23 * to reduce confusion */
24
Eric Andersen2e9c2572003-08-08 22:26:06 +000025#ifndef SHUTDOWN_TIME
26# define SHUTDOWN_TIME 254
27#endif
28
Denis Vlasenkob44c7902008-03-17 09:29:43 +000029/* Grr... utmp char[] members do not have to be nul-terminated.
Eric Andersen2e9c2572003-08-08 22:26:06 +000030 * Do what we can while still keeping this reasonably small.
31 * Note: We are assuming the ut_id[] size is fixed at 4. */
32
Bernhard Reutner-Fischer781e42d2006-05-26 14:41:40 +000033#if defined UT_LINESIZE \
34 && ((UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256))
35#error struct utmp member char[] size(s) have changed!
36#elif defined __UT_LINESIZE \
37 && ((__UT_LINESIZE != 32) || (__UT_NAMESIZE != 64) || (__UT_HOSTSIZE != 256))
Eric Andersen2e9c2572003-08-08 22:26:06 +000038#error struct utmp member char[] size(s) have changed!
39#endif
40
Denis Vlasenkodfd82822008-05-22 17:35:22 +000041#if EMPTY != 0 || RUN_LVL != 1 || BOOT_TIME != 2 || NEW_TIME != 3 || \
42 OLD_TIME != 4
43#error Values for the ut_type field of struct utmp changed
44#endif
45
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000046int last_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010047int last_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersen2e9c2572003-08-08 22:26:06 +000048{
49 struct utmp ut;
50 int n, file = STDIN_FILENO;
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000051 time_t t_tmp;
Denis Vlasenkodfd82822008-05-22 17:35:22 +000052 off_t pos;
53 static const char _ut_usr[] ALIGN1 =
54 "runlevel\0" "reboot\0" "shutdown\0";
55 static const char _ut_lin[] ALIGN1 =
56 "~\0" "{\0" "|\0" /* "LOGIN\0" "date\0" */;
57 enum {
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020058 TYPE_RUN_LVL = RUN_LVL, /* 1 */
59 TYPE_BOOT_TIME = BOOT_TIME, /* 2 */
Denis Vlasenkodfd82822008-05-22 17:35:22 +000060 TYPE_SHUTDOWN_TIME = SHUTDOWN_TIME
61 };
62 enum {
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020063 _TILDE = EMPTY, /* 0 */
64 TYPE_NEW_TIME, /* NEW_TIME, 3 */
65 TYPE_OLD_TIME /* OLD_TIME, 4 */
Denis Vlasenkodfd82822008-05-22 17:35:22 +000066 };
Eric Andersen2e9c2572003-08-08 22:26:06 +000067
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010068 if (argv[1]) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000069 bb_show_usage();
70 }
Rob Landleyd921b2e2006-08-03 15:41:12 +000071 file = xopen(bb_path_wtmp_file, O_RDONLY);
Eric Andersen2e9c2572003-08-08 22:26:06 +000072
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +000073 printf("%-10s %-14s %-18s %-12.12s %s\n",
Denys Vlasenko69675782013-01-14 01:34:48 +010074 "USER", "TTY", "HOST", "LOGIN", "TIME");
Denis Vlasenkodfd82822008-05-22 17:35:22 +000075 /* yikes. We reverse over the file and that is a not too elegant way */
76 pos = xlseek(file, 0, SEEK_END);
77 pos = lseek(file, pos - sizeof(ut), SEEK_SET);
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000078 while ((n = full_read(file, &ut, sizeof(ut))) > 0) {
79 if (n != sizeof(ut)) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000080 bb_perror_msg_and_die("short read");
81 }
Denis Vlasenkodfd82822008-05-22 17:35:22 +000082 n = index_in_strings(_ut_lin, ut.ut_line);
83 if (n == _TILDE) { /* '~' */
84#if 1
85/* do we really need to be cautious here? */
86 n = index_in_strings(_ut_usr, ut.ut_user);
87 if (++n > 0)
Bernhard Reutner-Fischer61082ec2008-05-22 22:05:55 +000088 ut.ut_type = n != 3 ? n : SHUTDOWN_TIME;
Denis Vlasenkodfd82822008-05-22 17:35:22 +000089#else
Eric Andersen2e9c2572003-08-08 22:26:06 +000090 if (strncmp(ut.ut_user, "shutdown", 8) == 0)
91 ut.ut_type = SHUTDOWN_TIME;
92 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
93 ut.ut_type = BOOT_TIME;
Bernhard Reutner-Fischerc8f7a972008-05-05 14:45:32 +000094 else if (strncmp(ut.ut_user, "runlevel", 8) == 0)
Eric Andersen2e9c2572003-08-08 22:26:06 +000095 ut.ut_type = RUN_LVL;
Denis Vlasenkodfd82822008-05-22 17:35:22 +000096#endif
Eric Andersen2e9c2572003-08-08 22:26:06 +000097 } else {
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000098 if (ut.ut_user[0] == '\0' || strcmp(ut.ut_user, "LOGIN") == 0) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000099 /* Don't bother. This means we can't find how long
Eric Andersen2e9c2572003-08-08 22:26:06 +0000100 * someone was logged in for. Oh well. */
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000101 goto next;
Eric Andersen2e9c2572003-08-08 22:26:06 +0000102 }
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000103 if (ut.ut_type != DEAD_PROCESS
Denys Vlasenko3a416112010-04-05 22:10:38 +0200104 && ut.ut_user[0]
105 && ut.ut_line[0]
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000106 ) {
Eric Andersen2e9c2572003-08-08 22:26:06 +0000107 ut.ut_type = USER_PROCESS;
108 }
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +0000109 if (strcmp(ut.ut_user, "date") == 0) {
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000110 if (n == TYPE_OLD_TIME) { /* '|' */
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +0000111 ut.ut_type = OLD_TIME;
112 }
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000113 if (n == TYPE_NEW_TIME) { /* '{' */
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +0000114 ut.ut_type = NEW_TIME;
115 }
Eric Andersen2e9c2572003-08-08 22:26:06 +0000116 }
117 }
118
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000119 if (ut.ut_type != USER_PROCESS) {
Eric Andersen2e9c2572003-08-08 22:26:06 +0000120 switch (ut.ut_type) {
121 case OLD_TIME:
122 case NEW_TIME:
123 case RUN_LVL:
124 case SHUTDOWN_TIME:
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000125 goto next;
Eric Andersen2e9c2572003-08-08 22:26:06 +0000126 case BOOT_TIME:
127 strcpy(ut.ut_line, "system boot");
Eric Andersen2e9c2572003-08-08 22:26:06 +0000128 }
129 }
Denis Vlasenko0e525412008-07-11 13:57:08 +0000130 /* manpages say ut_tv.tv_sec *is* time_t,
131 * but some systems have it wrong */
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +0000132 t_tmp = (time_t)ut.ut_tv.tv_sec;
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +0000133 printf("%-10s %-14s %-18s %-12.12s\n",
Denys Vlasenko69675782013-01-14 01:34:48 +0100134 ut.ut_user, ut.ut_line, ut.ut_host, ctime(&t_tmp) + 4);
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000135 next:
Denis Vlasenko30f892a2008-05-25 01:14:14 +0000136 pos -= sizeof(ut);
137 if (pos <= 0)
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000138 break; /* done. */
Denis Vlasenko30f892a2008-05-25 01:14:14 +0000139 xlseek(file, pos, SEEK_SET);
Eric Andersen2e9c2572003-08-08 22:26:06 +0000140 }
141
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000142 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersen2e9c2572003-08-08 22:26:06 +0000143}