dumpleases.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  4. */
  5. //applet:IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
  6. //kbuild:lib-$(CONFIG_DUMPLEASES) += dumpleases.o
  7. //usage:#define dumpleases_trivial_usage
  8. //usage: "[-r|-a] [-d] [-f LEASEFILE]"
  9. //usage:#define dumpleases_full_usage "\n\n"
  10. //usage: "Display DHCP leases granted by udhcpd\n"
  11. //usage: IF_LONG_OPTS(
  12. //usage: "\n -f,--file FILE Lease file"
  13. //usage: "\n -r,--remaining Show remaining time"
  14. //usage: "\n -a,--absolute Show expiration time"
  15. //usage: "\n -d,--decimal Show time in seconds"
  16. //usage: )
  17. //usage: IF_NOT_LONG_OPTS(
  18. //usage: "\n -f FILE Lease file"
  19. //usage: "\n -r Show remaining time"
  20. //usage: "\n -a Show expiration time"
  21. //usage: "\n -d Show time in seconds"
  22. //usage: )
  23. #include "common.h"
  24. #include "dhcpd.h"
  25. #include "unicode.h"
  26. int dumpleases_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  27. int dumpleases_main(int argc UNUSED_PARAM, char **argv)
  28. {
  29. int fd;
  30. int i;
  31. unsigned opt;
  32. int64_t written_at, curr;
  33. const char *file = LEASES_FILE;
  34. struct dyn_lease lease;
  35. enum {
  36. OPT_a = 0x1, // -a
  37. OPT_r = 0x2, // -r
  38. OPT_f = 0x4, // -f
  39. OPT_d = 0x8, // -d
  40. };
  41. #if ENABLE_LONG_OPTS
  42. static const char dumpleases_longopts[] ALIGN1 =
  43. "absolute\0" No_argument "a"
  44. "remaining\0" No_argument "r"
  45. "file\0" Required_argument "f"
  46. "decimal\0" No_argument "d"
  47. ;
  48. applet_long_options = dumpleases_longopts;
  49. #endif
  50. init_unicode();
  51. opt_complementary = "=0:a--r:r--a";
  52. opt = getopt32(argv, "arf:d", &file);
  53. fd = xopen(file, O_RDONLY);
  54. /* "123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 */
  55. /* "00:00:00:00:00:00 255.255.255.255 ABCDEFGHIJKLMNOPQRS Wed Jun 30 21:49:08 1993" */
  56. printf("Mac %-14s" "IP %-13s" "Host %-15s" "Expires %s\n",
  57. "Address", "Address", "Name",
  58. (opt & OPT_a) ? "at" : "in"
  59. );
  60. xread(fd, &written_at, sizeof(written_at));
  61. written_at = SWAP_BE64(written_at);
  62. curr = time(NULL);
  63. if (curr < written_at)
  64. written_at = curr; /* lease file from future! :) */
  65. while (full_read(fd, &lease, sizeof(lease)) == sizeof(lease)) {
  66. struct in_addr addr;
  67. int64_t expires_abs;
  68. const char *fmt = ":%02x" + 1;
  69. for (i = 0; i < 6; i++) {
  70. printf(fmt, lease.lease_mac[i]);
  71. fmt = ":%02x";
  72. }
  73. addr.s_addr = lease.lease_nip;
  74. #if ENABLE_UNICODE_SUPPORT
  75. {
  76. char *uni_name = unicode_conv_to_printable_fixedwidth(/*NULL,*/ lease.hostname, 19);
  77. printf(" %-16s%s ", inet_ntoa(addr), uni_name);
  78. free(uni_name);
  79. }
  80. #else
  81. /* actually, 15+1 and 19+1, +1 is a space between columns */
  82. /* lease.hostname is char[20] and is always NUL terminated */
  83. printf(" %-16s%-20s", inet_ntoa(addr), lease.hostname);
  84. #endif
  85. expires_abs = ntohl(lease.expires) + written_at;
  86. if (expires_abs <= curr) {
  87. puts("expired");
  88. continue;
  89. }
  90. if (opt & OPT_d) {
  91. /* -d: decimal time */
  92. if (!(opt & OPT_a))
  93. expires_abs -= curr;
  94. printf("%llu\n", (unsigned long long) expires_abs);
  95. continue;
  96. }
  97. if (!(opt & OPT_a)) { /* no -a */
  98. unsigned d, h, m;
  99. unsigned expires = expires_abs - curr;
  100. d = expires / (24*60*60); expires %= (24*60*60);
  101. h = expires / (60*60); expires %= (60*60);
  102. m = expires / 60; expires %= 60;
  103. if (d)
  104. printf("%u days ", d);
  105. printf("%02u:%02u:%02u\n", h, m, (unsigned)expires);
  106. } else { /* -a */
  107. time_t t = expires_abs;
  108. fputs(ctime(&t), stdout);
  109. }
  110. }
  111. /* close(fd); */
  112. return 0;
  113. }