1 /* vi: set sw=4 ts=4: */
3 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
11 static inline uint64_t hton64(uint64_t v)
13 return (((uint64_t)htonl(v)) << 32) | htonl(v >> 32);
18 #define ntoh64(v) hton64(v)
21 int dumpleases_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
22 int dumpleases_main(int argc UNUSED_PARAM, char **argv)
27 int64_t written_at, curr, expires_abs;
28 const char *file = LEASES_FILE;
29 struct dyn_lease lease;
38 static const char dumpleases_longopts[] ALIGN1 =
39 "absolute\0" No_argument "a"
40 "remaining\0" No_argument "r"
41 "file\0" Required_argument "f"
44 applet_long_options = dumpleases_longopts;
46 check_unicode_in_env();
48 opt_complementary = "=0:a--r:r--a";
49 opt = getopt32(argv, "arf:", &file);
51 fd = xopen(file, O_RDONLY);
53 printf("Mac Address IP Address Host Name Expires %s\n", (opt & OPT_a) ? "at" : "in");
54 /* "00:00:00:00:00:00 255.255.255.255 ABCDEFGHIJKLMNOPQRS Wed Jun 30 21:49:08 1993" */
55 /* "123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 */
57 if (full_read(fd, &written_at, sizeof(written_at)) != sizeof(written_at))
59 written_at = ntoh64(written_at);
61 if (curr < written_at)
62 written_at = curr; /* lease file from future! :) */
64 while (full_read(fd, &lease, sizeof(lease)) == sizeof(lease)) {
65 const char *fmt = ":%02x" + 1;
66 for (i = 0; i < 6; i++) {
67 printf(fmt, lease.lease_mac[i]);
70 addr.s_addr = lease.lease_nip;
71 /* actually, 15+1 and 19+1, +1 is a space between columns */
72 /* lease.hostname is char[20] and is always NUL terminated */
73 #if ENABLE_FEATURE_ASSUME_UNICODE
74 printf(" %-16s%s%*s", inet_ntoa(addr), lease.hostname,
75 20 - (int)bb_mbstrlen(lease.hostname), "");
77 printf(" %-16s%-20s", inet_ntoa(addr), lease.hostname);
79 expires_abs = ntohl(lease.expires) + written_at;
80 if (expires_abs <= curr) {
84 if (!(opt & OPT_a)) { /* no -a */
86 unsigned expires = expires_abs - curr;
87 d = expires / (24*60*60); expires %= (24*60*60);
88 h = expires / (60*60); expires %= (60*60);
89 m = expires / 60; expires %= 60;
91 printf("%u days ", d);
92 printf("%02u:%02u:%02u\n", h, m, (unsigned)expires);
94 time_t t = expires_abs;
95 fputs(ctime(&t), stdout);