dumpleases.c 3.3 KB

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