blob: 749862c358fe170b555c88e89a0fb47d687d625a [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
13#ifndef SHUTDOWN_TIME
14# define SHUTDOWN_TIME 254
15#endif
16
Denis Vlasenkob44c7902008-03-17 09:29:43 +000017/* Grr... utmp char[] members do not have to be nul-terminated.
Eric Andersen2e9c2572003-08-08 22:26:06 +000018 * Do what we can while still keeping this reasonably small.
19 * Note: We are assuming the ut_id[] size is fixed at 4. */
20
Bernhard Reutner-Fischer781e42d2006-05-26 14:41:40 +000021#if defined UT_LINESIZE \
22 && ((UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256))
23#error struct utmp member char[] size(s) have changed!
24#elif defined __UT_LINESIZE \
25 && ((__UT_LINESIZE != 32) || (__UT_NAMESIZE != 64) || (__UT_HOSTSIZE != 256))
Eric Andersen2e9c2572003-08-08 22:26:06 +000026#error struct utmp member char[] size(s) have changed!
27#endif
28
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000029int last_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +000030int last_main(int argc, char **argv ATTRIBUTE_UNUSED)
Eric Andersen2e9c2572003-08-08 22:26:06 +000031{
32 struct utmp ut;
33 int n, file = STDIN_FILENO;
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000034 time_t t_tmp;
Eric Andersen2e9c2572003-08-08 22:26:06 +000035
36 if (argc > 1) {
37 bb_show_usage();
38 }
Rob Landleyd921b2e2006-08-03 15:41:12 +000039 file = xopen(bb_path_wtmp_file, O_RDONLY);
Eric Andersen2e9c2572003-08-08 22:26:06 +000040
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +000041 printf("%-10s %-14s %-18s %-12.12s %s\n",
42 "USER", "TTY", "HOST", "LOGIN", "TIME");
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000043 while ((n = full_read(file, &ut, sizeof(ut))) > 0) {
44 if (n != sizeof(ut)) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000045 bb_perror_msg_and_die("short read");
46 }
47
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +000048 if (ut.ut_line[0] == '~') {
Eric Andersen2e9c2572003-08-08 22:26:06 +000049 if (strncmp(ut.ut_user, "shutdown", 8) == 0)
50 ut.ut_type = SHUTDOWN_TIME;
51 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
52 ut.ut_type = BOOT_TIME;
Bernhard Reutner-Fischerc8f7a972008-05-05 14:45:32 +000053 else if (strncmp(ut.ut_user, "runlevel", 8) == 0)
Eric Andersen2e9c2572003-08-08 22:26:06 +000054 ut.ut_type = RUN_LVL;
55 } else {
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000056 if (ut.ut_name[0] == '\0' || strcmp(ut.ut_name, "LOGIN") == 0) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000057 /* Don't bother. This means we can't find how long
Eric Andersen2e9c2572003-08-08 22:26:06 +000058 * someone was logged in for. Oh well. */
59 continue;
60 }
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000061 if (ut.ut_type != DEAD_PROCESS
62 && ut.ut_name[0] && ut.ut_line[0]
63 ) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000064 ut.ut_type = USER_PROCESS;
65 }
66 if (strcmp(ut.ut_name, "date") == 0) {
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +000067 if (ut.ut_line[0] == '|') {
68 ut.ut_type = OLD_TIME;
69 }
70 if (ut.ut_line[0] == '{') {
71 ut.ut_type = NEW_TIME;
72 }
Eric Andersen2e9c2572003-08-08 22:26:06 +000073 }
74 }
75
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000076 if (ut.ut_type != USER_PROCESS) {
Eric Andersen2e9c2572003-08-08 22:26:06 +000077 switch (ut.ut_type) {
78 case OLD_TIME:
79 case NEW_TIME:
80 case RUN_LVL:
81 case SHUTDOWN_TIME:
82 continue;
83 case BOOT_TIME:
84 strcpy(ut.ut_line, "system boot");
85 break;
86 }
87 }
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000088 t_tmp = (time_t)ut.ut_tv.tv_sec;
Denis Vlasenkod04e1fc2008-05-17 23:50:14 +000089 printf("%-10s %-14s %-18s %-12.12s\n",
90 ut.ut_user, ut.ut_line, ut.ut_host, ctime(&t_tmp) + 4);
Eric Andersen2e9c2572003-08-08 22:26:06 +000091 }
92
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000093 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersen2e9c2572003-08-08 22:26:06 +000094}