blob: ac6c86c63525ce358e15d2b837c5c5aff94c2bc0 [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
10#include <sys/types.h>
11#include <fcntl.h>
12#include <unistd.h>
13#include <stdlib.h>
14#include <utmp.h>
15#include <sys/stat.h>
16#include <errno.h>
17#include <string.h>
18#include <time.h>
19#include "busybox.h"
20
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
29#if (UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256)
30#error struct utmp member char[] size(s) have changed!
31#endif
32
Rob Landleydfba7412006-03-06 20:47:33 +000033int last_main(int argc, char **argv)
Eric Andersen2e9c2572003-08-08 22:26:06 +000034{
35 struct utmp ut;
36 int n, file = STDIN_FILENO;
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000037 time_t t_tmp;
Eric Andersen2e9c2572003-08-08 22:26:06 +000038
39 if (argc > 1) {
40 bb_show_usage();
41 }
42 file = bb_xopen(_PATH_WTMP, O_RDONLY);
43
44 printf("%-10s %-14s %-18s %-12.12s %s\n", "USER", "TTY", "HOST", "LOGIN", "TIME");
45 while ((n = safe_read(file, (void*)&ut, sizeof(struct utmp))) != 0) {
46
47 if (n != sizeof(struct utmp)) {
48 bb_perror_msg_and_die("short read");
49 }
50
51 if (strncmp(ut.ut_line, "~", 1) == 0) {
52 if (strncmp(ut.ut_user, "shutdown", 8) == 0)
53 ut.ut_type = SHUTDOWN_TIME;
54 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
55 ut.ut_type = BOOT_TIME;
56 else if (strncmp(ut.ut_user, "runlevel", 7) == 0)
57 ut.ut_type = RUN_LVL;
58 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000059 if (!ut.ut_name[0] || strcmp(ut.ut_name, "LOGIN") == 0 ||
Eric Andersen2e9c2572003-08-08 22:26:06 +000060 ut.ut_name[0] == 0)
61 {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000062 /* Don't bother. This means we can't find how long
Eric Andersen2e9c2572003-08-08 22:26:06 +000063 * someone was logged in for. Oh well. */
64 continue;
65 }
66 if (ut.ut_type != DEAD_PROCESS &&
67 ut.ut_name[0] && ut.ut_line[0])
68 {
69 ut.ut_type = USER_PROCESS;
70 }
71 if (strcmp(ut.ut_name, "date") == 0) {
72 if (ut.ut_line[0] == '|') ut.ut_type = OLD_TIME;
73 if (ut.ut_line[0] == '{') ut.ut_type = NEW_TIME;
74 }
75 }
76
77 if (ut.ut_type!=USER_PROCESS) {
78 switch (ut.ut_type) {
79 case OLD_TIME:
80 case NEW_TIME:
81 case RUN_LVL:
82 case SHUTDOWN_TIME:
83 continue;
84 case BOOT_TIME:
85 strcpy(ut.ut_line, "system boot");
86 break;
87 }
88 }
"Vladimir N. Oleynik"dd14ca02006-01-31 09:35:45 +000089 t_tmp = (time_t)ut.ut_tv.tv_sec;
Eric Andersen2e9c2572003-08-08 22:26:06 +000090 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 +000091 ctime(&t_tmp) + 4);
Eric Andersen2e9c2572003-08-08 22:26:06 +000092 }
93
94 bb_fflush_stdout_and_exit(EXIT_SUCCESS);
95}