blob: f8c301395de14cd961fc22ce330a71f06697e0eb [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 *
Rob Landleye9a7a622006-09-22 02:52:41 +00007 * Licensed under the GPL version 2, see the file LICENSE in this tarball.
Eric Andersen2e9c2572003-08-08 22:26:06 +00008 */
9
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Eric Andersen2e9c2572003-08-08 22:26:06 +000011#include <utmp.h>
Eric Andersen2e9c2572003-08-08 22:26:06 +000012
Denis Vlasenkocd2663f2008-06-01 22:36:39 +000013/* NB: ut_name and ut_user are the same field, use only one name (ut_user)
14 * to reduce confusion */
15
Eric Andersen2e9c2572003-08-08 22:26:06 +000016#ifndef SHUTDOWN_TIME
17# define SHUTDOWN_TIME 254
18#endif
19
Denis Vlasenkob44c7902008-03-17 09:29:43 +000020/* Grr... utmp char[] members do not have to be nul-terminated.
Eric Andersen2e9c2572003-08-08 22:26:06 +000021 * Do what we can while still keeping this reasonably small.
22 * Note: We are assuming the ut_id[] size is fixed at 4. */
23
Bernhard Reutner-Fischer781e42d2006-05-26 14:41:40 +000024#if defined UT_LINESIZE \
25 && ((UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256))
26#error struct utmp member char[] size(s) have changed!
27#elif defined __UT_LINESIZE \
28 && ((__UT_LINESIZE != 32) || (__UT_NAMESIZE != 64) || (__UT_HOSTSIZE != 256))
Eric Andersen2e9c2572003-08-08 22:26:06 +000029#error struct utmp member char[] size(s) have changed!
30#endif
31
Denis Vlasenkodfd82822008-05-22 17:35:22 +000032#if EMPTY != 0 || RUN_LVL != 1 || BOOT_TIME != 2 || NEW_TIME != 3 || \
33 OLD_TIME != 4
34#error Values for the ut_type field of struct utmp changed
35#endif
36
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000037int last_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000038int last_main(int argc, char **argv UNUSED_PARAM)
Eric Andersen2e9c2572003-08-08 22:26:06 +000039{
40 struct utmp ut;
41 int n, file = STDIN_FILENO;
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000042 time_t t_tmp;
Denis Vlasenkodfd82822008-05-22 17:35:22 +000043 off_t pos;
44 static const char _ut_usr[] ALIGN1 =
45 "runlevel\0" "reboot\0" "shutdown\0";
46 static const char _ut_lin[] ALIGN1 =
47 "~\0" "{\0" "|\0" /* "LOGIN\0" "date\0" */;
48 enum {
49 TYPE_RUN_LVL = RUN_LVL, /* 1 */
50 TYPE_BOOT_TIME = BOOT_TIME, /* 2 */
51 TYPE_SHUTDOWN_TIME = SHUTDOWN_TIME
52 };
53 enum {
54 _TILDE = EMPTY, /* 0 */
55 TYPE_NEW_TIME, /* NEW_TIME, 3 */
56 TYPE_OLD_TIME /* OLD_TIME, 4 */
57 };
Eric Andersen2e9c2572003-08-08 22:26:06 +000058
59 if (argc > 1) {
60 bb_show_usage();
61 }
Rob Landleyd921b2e2006-08-03 15:41:12 +000062 file = xopen(bb_path_wtmp_file, O_RDONLY);
Eric Andersen2e9c2572003-08-08 22:26:06 +000063
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +000064 printf("%-10s %-14s %-18s %-12.12s %s\n",
65 "USER", "TTY", "HOST", "LOGIN", "TIME");
Denis Vlasenkodfd82822008-05-22 17:35:22 +000066 /* yikes. We reverse over the file and that is a not too elegant way */
67 pos = xlseek(file, 0, SEEK_END);
68 pos = lseek(file, pos - sizeof(ut), SEEK_SET);
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000069 while ((n = full_read(file, &ut, sizeof(ut))) > 0) {
70 if (n != sizeof(ut)) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000071 bb_perror_msg_and_die("short read");
72 }
Denis Vlasenkodfd82822008-05-22 17:35:22 +000073 n = index_in_strings(_ut_lin, ut.ut_line);
74 if (n == _TILDE) { /* '~' */
75#if 1
76/* do we really need to be cautious here? */
77 n = index_in_strings(_ut_usr, ut.ut_user);
78 if (++n > 0)
Bernhard Reutner-Fischer61082ec2008-05-22 22:05:55 +000079 ut.ut_type = n != 3 ? n : SHUTDOWN_TIME;
Denis Vlasenkodfd82822008-05-22 17:35:22 +000080#else
Eric Andersen2e9c2572003-08-08 22:26:06 +000081 if (strncmp(ut.ut_user, "shutdown", 8) == 0)
82 ut.ut_type = SHUTDOWN_TIME;
83 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
84 ut.ut_type = BOOT_TIME;
Bernhard Reutner-Fischerc8f7a972008-05-05 14:45:32 +000085 else if (strncmp(ut.ut_user, "runlevel", 8) == 0)
Eric Andersen2e9c2572003-08-08 22:26:06 +000086 ut.ut_type = RUN_LVL;
Denis Vlasenkodfd82822008-05-22 17:35:22 +000087#endif
Eric Andersen2e9c2572003-08-08 22:26:06 +000088 } else {
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000089 if (ut.ut_user[0] == '\0' || strcmp(ut.ut_user, "LOGIN") == 0) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000090 /* Don't bother. This means we can't find how long
Eric Andersen2e9c2572003-08-08 22:26:06 +000091 * someone was logged in for. Oh well. */
Denis Vlasenkodfd82822008-05-22 17:35:22 +000092 goto next;
Eric Andersen2e9c2572003-08-08 22:26:06 +000093 }
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000094 if (ut.ut_type != DEAD_PROCESS
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000095 && ut.ut_user[0] && ut.ut_line[0]
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000096 ) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000097 ut.ut_type = USER_PROCESS;
98 }
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000099 if (strcmp(ut.ut_user, "date") == 0) {
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000100 if (n == TYPE_OLD_TIME) { /* '|' */
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +0000101 ut.ut_type = OLD_TIME;
102 }
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000103 if (n == TYPE_NEW_TIME) { /* '{' */
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +0000104 ut.ut_type = NEW_TIME;
105 }
Eric Andersen2e9c2572003-08-08 22:26:06 +0000106 }
107 }
108
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000109 if (ut.ut_type != USER_PROCESS) {
Eric Andersen2e9c2572003-08-08 22:26:06 +0000110 switch (ut.ut_type) {
111 case OLD_TIME:
112 case NEW_TIME:
113 case RUN_LVL:
114 case SHUTDOWN_TIME:
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000115 goto next;
Eric Andersen2e9c2572003-08-08 22:26:06 +0000116 case BOOT_TIME:
117 strcpy(ut.ut_line, "system boot");
Eric Andersen2e9c2572003-08-08 22:26:06 +0000118 }
119 }
Denis Vlasenko0e525412008-07-11 13:57:08 +0000120 /* manpages say ut_tv.tv_sec *is* time_t,
121 * but some systems have it wrong */
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +0000122 t_tmp = (time_t)ut.ut_tv.tv_sec;
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +0000123 printf("%-10s %-14s %-18s %-12.12s\n",
124 ut.ut_user, ut.ut_line, ut.ut_host, ctime(&t_tmp) + 4);
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000125 next:
Denis Vlasenko30f892a2008-05-25 01:14:14 +0000126 pos -= sizeof(ut);
127 if (pos <= 0)
Denis Vlasenkodfd82822008-05-22 17:35:22 +0000128 break; /* done. */
Denis Vlasenko30f892a2008-05-25 01:14:14 +0000129 xlseek(file, pos, SEEK_SET);
Eric Andersen2e9c2572003-08-08 22:26:06 +0000130 }
131
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000132 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersen2e9c2572003-08-08 22:26:06 +0000133}