3
0

last.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 GPLv2, see file LICENSE in this source tree.
  8. */
  9. //usage:#define last_trivial_usage
  10. //usage: ""IF_FEATURE_LAST_FANCY("[-HW] [-f FILE]")
  11. //usage:#define last_full_usage "\n\n"
  12. //usage: "Show listing of the last users that logged into the system"
  13. //usage: IF_FEATURE_LAST_FANCY( "\n"
  14. /* //usage: "\n -H Show header line" */
  15. //usage: "\n -W Display with no host column truncation"
  16. //usage: "\n -f FILE Read from FILE instead of /var/log/wtmp"
  17. //usage: )
  18. #include "libbb.h"
  19. /* NB: ut_name and ut_user are the same field, use only one name (ut_user)
  20. * to reduce confusion */
  21. #ifndef SHUTDOWN_TIME
  22. # define SHUTDOWN_TIME 254
  23. #endif
  24. /* Grr... utmp char[] members do not have to be nul-terminated.
  25. * Do what we can while still keeping this reasonably small.
  26. * Note: We are assuming the ut_id[] size is fixed at 4. */
  27. #if defined UT_LINESIZE \
  28. && ((UT_LINESIZE != 32) || (UT_NAMESIZE != 32) || (UT_HOSTSIZE != 256))
  29. #error struct utmp member char[] size(s) have changed!
  30. #elif defined __UT_LINESIZE \
  31. && ((__UT_LINESIZE != 32) || (__UT_NAMESIZE != 64) || (__UT_HOSTSIZE != 256))
  32. #error struct utmp member char[] size(s) have changed!
  33. #endif
  34. #if EMPTY != 0 || RUN_LVL != 1 || BOOT_TIME != 2 || NEW_TIME != 3 || \
  35. OLD_TIME != 4
  36. #error Values for the ut_type field of struct utmp changed
  37. #endif
  38. int last_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  39. int last_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
  40. {
  41. struct utmp ut;
  42. int n, file = STDIN_FILENO;
  43. time_t t_tmp;
  44. off_t pos;
  45. static const char _ut_usr[] ALIGN1 =
  46. "runlevel\0" "reboot\0" "shutdown\0";
  47. static const char _ut_lin[] ALIGN1 =
  48. "~\0" "{\0" "|\0" /* "LOGIN\0" "date\0" */;
  49. enum {
  50. TYPE_RUN_LVL = RUN_LVL, /* 1 */
  51. TYPE_BOOT_TIME = BOOT_TIME, /* 2 */
  52. TYPE_SHUTDOWN_TIME = SHUTDOWN_TIME
  53. };
  54. enum {
  55. _TILDE = EMPTY, /* 0 */
  56. TYPE_NEW_TIME, /* NEW_TIME, 3 */
  57. TYPE_OLD_TIME /* OLD_TIME, 4 */
  58. };
  59. if (argv[1]) {
  60. bb_show_usage();
  61. }
  62. file = xopen(bb_path_wtmp_file, O_RDONLY);
  63. printf("%-10s %-14s %-18s %-12.12s %s\n",
  64. "USER", "TTY", "HOST", "LOGIN", "TIME");
  65. /* yikes. We reverse over the file and that is a not too elegant way */
  66. pos = xlseek(file, 0, SEEK_END);
  67. pos = lseek(file, pos - sizeof(ut), SEEK_SET);
  68. while ((n = full_read(file, &ut, sizeof(ut))) > 0) {
  69. if (n != sizeof(ut)) {
  70. bb_perror_msg_and_die("short read");
  71. }
  72. n = index_in_strings(_ut_lin, ut.ut_line);
  73. if (n == _TILDE) { /* '~' */
  74. #if 1
  75. /* do we really need to be cautious here? */
  76. n = index_in_strings(_ut_usr, ut.ut_user);
  77. if (++n > 0)
  78. ut.ut_type = n != 3 ? n : SHUTDOWN_TIME;
  79. #else
  80. if (strncmp(ut.ut_user, "shutdown", 8) == 0)
  81. ut.ut_type = SHUTDOWN_TIME;
  82. else if (strncmp(ut.ut_user, "reboot", 6) == 0)
  83. ut.ut_type = BOOT_TIME;
  84. else if (strncmp(ut.ut_user, "runlevel", 8) == 0)
  85. ut.ut_type = RUN_LVL;
  86. #endif
  87. } else {
  88. if (ut.ut_user[0] == '\0' || strcmp(ut.ut_user, "LOGIN") == 0) {
  89. /* Don't bother. This means we can't find how long
  90. * someone was logged in for. Oh well. */
  91. goto next;
  92. }
  93. if (ut.ut_type != DEAD_PROCESS
  94. && ut.ut_user[0]
  95. && ut.ut_line[0]
  96. ) {
  97. ut.ut_type = USER_PROCESS;
  98. }
  99. if (strcmp(ut.ut_user, "date") == 0) {
  100. if (n == TYPE_OLD_TIME) { /* '|' */
  101. ut.ut_type = OLD_TIME;
  102. }
  103. if (n == TYPE_NEW_TIME) { /* '{' */
  104. ut.ut_type = NEW_TIME;
  105. }
  106. }
  107. }
  108. if (ut.ut_type != USER_PROCESS) {
  109. switch (ut.ut_type) {
  110. case OLD_TIME:
  111. case NEW_TIME:
  112. case RUN_LVL:
  113. case SHUTDOWN_TIME:
  114. goto next;
  115. case BOOT_TIME:
  116. strcpy(ut.ut_line, "system boot");
  117. }
  118. }
  119. /* manpages say ut_tv.tv_sec *is* time_t,
  120. * but some systems have it wrong */
  121. t_tmp = (time_t)ut.ut_tv.tv_sec;
  122. printf("%-10s %-14s %-18s %-12.12s\n",
  123. ut.ut_user, ut.ut_line, ut.ut_host, ctime(&t_tmp) + 4);
  124. next:
  125. pos -= sizeof(ut);
  126. if (pos <= 0)
  127. break; /* done. */
  128. xlseek(file, pos, SEEK_SET);
  129. }
  130. fflush_stdout_and_exit(EXIT_SUCCESS);
  131. }