1 /* Copyright (c) 2015 PLUMgrid, http://plumgrid.com
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
14 #include <linux/bpf.h>
23 static __u64
time_get_ns(void)
27 clock_gettime(CLOCK_MONOTONIC
, &ts
);
28 return ts
.tv_sec
* 1000000000ull + ts
.tv_nsec
;
31 static void print_old_objects(int fd
)
33 long long val
= time_get_ns();
37 key
= write(1, "\e[1;1H\e[2J", 12); /* clear screen */
40 while (bpf_get_next_key(map_fd
[0], &key
, &next_key
) == 0) {
41 bpf_lookup_elem(map_fd
[0], &next_key
, &v
);
43 if (val
- v
.val
< 1000000000ll)
44 /* object was allocated more then 1 sec ago */
46 printf("obj 0x%llx is %2lldsec old was allocated at ip %llx\n",
47 next_key
, (val
- v
.val
) / 1000000000ll, v
.ip
);
51 int main(int ac
, char **argv
)
56 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
58 if (load_bpf_file(filename
)) {
59 printf("%s", bpf_log_buf
);
64 print_old_objects(map_fd
[1]);