2 * Minimal BPF JIT image disassembler
4 * Disassembles BPF JIT compiler emitted opcodes back to asm insn's for
5 * debugging or verification purposes.
7 * To get the disassembly of the JIT code, do the following:
9 * 1) `echo 2 > /proc/sys/net/core/bpf_jit_enable`
10 * 2) Load a BPF filter (e.g. `tcpdump -p -n -s 0 -i eth1 host 192.168.20.0/24`)
11 * 3) Run e.g. `bpf_jit_disasm -o` to read out the last JIT code
14 * Licensed under the GNU General Public License, version 2.0 (GPLv2)
26 #include <sys/types.h>
29 static void get_exec_path(char *tpath, size_t size)
34 snprintf(tpath, size, "/proc/%d/exe", (int) getpid());
40 len = readlink(path, tpath, size);
46 static void get_asm_insns(uint8_t *image, size_t len, unsigned long base,
51 struct disassemble_info info;
52 disassembler_ftype disassemble;
55 memset(tpath, 0, sizeof(tpath));
56 get_exec_path(tpath, sizeof(tpath));
58 bfdf = bfd_openr(tpath, NULL);
60 assert(bfd_check_format(bfdf, bfd_object));
62 init_disassemble_info(&info, stdout, (fprintf_ftype) fprintf);
63 info.arch = bfd_get_arch(bfdf);
64 info.mach = bfd_get_mach(bfdf);
66 info.buffer_length = len;
68 disassemble_init_for_target(&info);
70 disassemble = disassembler(bfdf);
76 count = disassemble(pc, &info);
80 for (i = 0; i < count; ++i)
81 printf("%02x ", (uint8_t) image[pc + i]);
86 } while(count > 0 && pc < len);
91 static char *get_klog_buff(int *klen)
93 int ret, len = klogctl(10, NULL, 0);
94 char *buff = malloc(len);
97 ret = klogctl(3, buff, len);
104 static void put_klog_buff(char *buff)
109 static int get_last_jit_image(char *haystack, size_t hlen,
110 uint8_t *image, size_t ilen,
113 char *ptr, *pptr, *tmp;
115 int ret, flen, proglen, pass, ulen = 0;
116 regmatch_t pmatch[1];
122 ret = regcomp(®ex, "flen=[[:alnum:]]+ proglen=[[:digit:]]+ "
123 "pass=[[:digit:]]+ image=[[:xdigit:]]+", REG_EXTENDED);
128 ret = regexec(®ex, ptr, 1, pmatch, 0);
130 ptr += pmatch[0].rm_eo;
131 off += pmatch[0].rm_eo;
137 ptr = haystack + off - (pmatch[0].rm_eo - pmatch[0].rm_so);
138 ret = sscanf(ptr, "flen=%d proglen=%d pass=%d image=%lx",
139 &flen, &proglen, &pass, base);
143 tmp = ptr = haystack + off;
144 while ((ptr = strtok(tmp, "\n")) != NULL && ulen < ilen) {
146 if (!strstr(ptr, "JIT code"))
149 while ((ptr = strstr(pptr, ":")))
153 image[ulen++] = (uint8_t) strtoul(pptr, &pptr, 16);
154 if (ptr == pptr || ulen >= ilen) {
162 assert(ulen == proglen);
163 printf("%d bytes emitted from JIT compiler (pass:%d, flen:%d)\n",
164 proglen, pass, flen);
165 printf("%lx + <x>:\n", *base);
171 int main(int argc, char **argv)
173 int len, klen, opcodes = 0;
179 if (!strncmp("-o", argv[argc - 1], 2)) {
182 printf("usage: bpf_jit_disasm [-o: show opcodes]\n");
188 memset(image, 0, sizeof(image));
190 kbuff = get_klog_buff(&klen);
192 len = get_last_jit_image(kbuff, klen, image, sizeof(image), &base);
193 if (len > 0 && base > 0)
194 get_asm_insns(image, len, base, opcodes);
196 put_klog_buff(kbuff);