Remove some unused code pointed out by Tito, plus a slightly more graceful
[oweals/busybox.git] / miscutils / last.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * last implementation for busybox
4  *
5  * Copyright (C) 2003-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
8  */
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
33 int last_main(int argc, char **argv)
34 {
35         struct utmp ut;
36         int n, file = STDIN_FILENO;
37         time_t t_tmp;
38
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 {
59                         if (!ut.ut_name[0] || strcmp(ut.ut_name, "LOGIN") == 0 ||
60                                         ut.ut_name[0] == 0)
61                         {
62                                 /* Don't bother.  This means we can't find how long
63                                  * 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                 }
89                 t_tmp = (time_t)ut.ut_tv.tv_sec;
90                 printf("%-10s %-14s %-18s %-12.12s\n", ut.ut_user, ut.ut_line, ut.ut_host,
91                                 ctime(&t_tmp) + 4);
92         }
93
94         bb_fflush_stdout_and_exit(EXIT_SUCCESS);
95 }