blob: 47c18ffa0c8435ca46451e32b3247d8a799a2469 [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 *
Mike Frysingerf284c762006-04-16 20:38:26 +00007 * Licensed under the GPL v2 or later, 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 <sys/types.h>
12#include <fcntl.h>
13#include <unistd.h>
14#include <stdlib.h>
15#include <utmp.h>
16#include <sys/stat.h>
17#include <errno.h>
18#include <string.h>
19#include <time.h>
Eric Andersen2e9c2572003-08-08 22:26:06 +000020
21#ifndef SHUTDOWN_TIME
22# define SHUTDOWN_TIME 254
23#endif
24
25/* Grr... utmp char[] members do not have to be nul-terminated.
26 * Do what we can while still keeping this reasonably small.
27 * Note: We are assuming the ut_id[] size is fixed at 4. */
28
Bernhard Reutner-Fischer781e42d2006-05-26 14:41:40 +000029#if defined UT_LINESIZE \
30 && ((UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256))
31#error struct utmp member char[] size(s) have changed!
32#elif defined __UT_LINESIZE \
33 && ((__UT_LINESIZE != 32) || (__UT_NAMESIZE != 64) || (__UT_HOSTSIZE != 256))
Eric Andersen2e9c2572003-08-08 22:26:06 +000034#error struct utmp member char[] size(s) have changed!
35#endif
36
Rob Landleydfba7412006-03-06 20:47:33 +000037int last_main(int argc, char **argv)
Eric Andersen2e9c2572003-08-08 22:26:06 +000038{
39 struct utmp ut;
40 int n, file = STDIN_FILENO;
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000041 time_t t_tmp;
Eric Andersen2e9c2572003-08-08 22:26:06 +000042
43 if (argc > 1) {
44 bb_show_usage();
45 }
Bernhard Reutner-Fischer781e42d2006-05-26 14:41:40 +000046 file = bb_xopen(bb_path_wtmp_file, O_RDONLY);
Eric Andersen2e9c2572003-08-08 22:26:06 +000047
48 printf("%-10s %-14s %-18s %-12.12s %s\n", "USER", "TTY", "HOST", "LOGIN", "TIME");
49 while ((n = safe_read(file, (void*)&ut, sizeof(struct utmp))) != 0) {
50
51 if (n != sizeof(struct utmp)) {
52 bb_perror_msg_and_die("short read");
53 }
54
55 if (strncmp(ut.ut_line, "~", 1) == 0) {
56 if (strncmp(ut.ut_user, "shutdown", 8) == 0)
57 ut.ut_type = SHUTDOWN_TIME;
58 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
59 ut.ut_type = BOOT_TIME;
60 else if (strncmp(ut.ut_user, "runlevel", 7) == 0)
61 ut.ut_type = RUN_LVL;
62 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000063 if (!ut.ut_name[0] || strcmp(ut.ut_name, "LOGIN") == 0 ||
Eric Andersen2e9c2572003-08-08 22:26:06 +000064 ut.ut_name[0] == 0)
65 {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000066 /* Don't bother. This means we can't find how long
Eric Andersen2e9c2572003-08-08 22:26:06 +000067 * someone was logged in for. Oh well. */
68 continue;
69 }
70 if (ut.ut_type != DEAD_PROCESS &&
71 ut.ut_name[0] && ut.ut_line[0])
72 {
73 ut.ut_type = USER_PROCESS;
74 }
75 if (strcmp(ut.ut_name, "date") == 0) {
76 if (ut.ut_line[0] == '|') ut.ut_type = OLD_TIME;
77 if (ut.ut_line[0] == '{') ut.ut_type = NEW_TIME;
78 }
79 }
80
81 if (ut.ut_type!=USER_PROCESS) {
82 switch (ut.ut_type) {
83 case OLD_TIME:
84 case NEW_TIME:
85 case RUN_LVL:
86 case SHUTDOWN_TIME:
87 continue;
88 case BOOT_TIME:
89 strcpy(ut.ut_line, "system boot");
90 break;
91 }
92 }
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000093 t_tmp = (time_t)ut.ut_tv.tv_sec;
Eric Andersen2e9c2572003-08-08 22:26:06 +000094 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 +000095 ctime(&t_tmp) + 4);
Eric Andersen2e9c2572003-08-08 22:26:06 +000096 }
97
98 bb_fflush_stdout_and_exit(EXIT_SUCCESS);
99}