blob: fd1033bf7c493a651ad54a0afb3343e63491c5ea [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
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +000010#include "busybox.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
17/* Grr... utmp char[] members do not have to be nul-terminated.
18 * 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
Rob Landleydfba7412006-03-06 20:47:33 +000029int last_main(int argc, char **argv)
Eric Andersen2e9c2572003-08-08 22:26:06 +000030{
31 struct utmp ut;
32 int n, file = STDIN_FILENO;
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000033 time_t t_tmp;
Eric Andersen2e9c2572003-08-08 22:26:06 +000034
35 if (argc > 1) {
36 bb_show_usage();
37 }
Rob Landleyd921b2e2006-08-03 15:41:12 +000038 file = xopen(bb_path_wtmp_file, O_RDONLY);
Eric Andersen2e9c2572003-08-08 22:26:06 +000039
40 printf("%-10s %-14s %-18s %-12.12s %s\n", "USER", "TTY", "HOST", "LOGIN", "TIME");
41 while ((n = safe_read(file, (void*)&ut, sizeof(struct utmp))) != 0) {
42
43 if (n != sizeof(struct utmp)) {
44 bb_perror_msg_and_die("short read");
45 }
46
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +000047 if (ut.ut_line[0] == '~') {
Eric Andersen2e9c2572003-08-08 22:26:06 +000048 if (strncmp(ut.ut_user, "shutdown", 8) == 0)
49 ut.ut_type = SHUTDOWN_TIME;
50 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
51 ut.ut_type = BOOT_TIME;
52 else if (strncmp(ut.ut_user, "runlevel", 7) == 0)
53 ut.ut_type = RUN_LVL;
54 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000055 if (!ut.ut_name[0] || strcmp(ut.ut_name, "LOGIN") == 0 ||
Eric Andersen2e9c2572003-08-08 22:26:06 +000056 ut.ut_name[0] == 0)
57 {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000058 /* Don't bother. This means we can't find how long
Eric Andersen2e9c2572003-08-08 22:26:06 +000059 * someone was logged in for. Oh well. */
60 continue;
61 }
62 if (ut.ut_type != DEAD_PROCESS &&
63 ut.ut_name[0] && ut.ut_line[0])
64 {
65 ut.ut_type = USER_PROCESS;
66 }
67 if (strcmp(ut.ut_name, "date") == 0) {
68 if (ut.ut_line[0] == '|') ut.ut_type = OLD_TIME;
69 if (ut.ut_line[0] == '{') ut.ut_type = NEW_TIME;
70 }
71 }
72
73 if (ut.ut_type!=USER_PROCESS) {
74 switch (ut.ut_type) {
75 case OLD_TIME:
76 case NEW_TIME:
77 case RUN_LVL:
78 case SHUTDOWN_TIME:
79 continue;
80 case BOOT_TIME:
81 strcpy(ut.ut_line, "system boot");
82 break;
83 }
84 }
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000085 t_tmp = (time_t)ut.ut_tv.tv_sec;
Eric Andersen2e9c2572003-08-08 22:26:06 +000086 printf("%-10s %-14s %-18s %-12.12s\n", ut.ut_user, ut.ut_line, ut.ut_host,
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000087 ctime(&t_tmp) + 4);
Eric Andersen2e9c2572003-08-08 22:26:06 +000088 }
89
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000090 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersen2e9c2572003-08-08 22:26:06 +000091}