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 * There is no Makefile. Compile with
9 * `gcc -Wall -O2 bpf_jit_disasm.c -o bpf_jit_disasm -lopcodes -lbfd -ldl`
13 * To get the disassembly of the JIT code, do the following:
15 * 1) `echo 2 > /proc/sys/net/core/bpf_jit_enable`
16 * 2) Load a BPF filter (e.g. `tcpdump -p -n -s 0 -i eth1 host 192.168.20.0/24`)
17 * 3) Run e.g. `bpf_jit_disasm -o` to read out the last JIT code
19 * Copyright 2013 Daniel Borkmann <borkmann@redhat.com>
20 * Licensed under the GNU General Public License, version 2.0 (GPLv2)
22 * Note: this is part of the Linux kernel and can be found under tools/net/.
34 #include <sys/types.h>
37 static void get_exec_path(char *tpath
, size_t size
)
42 snprintf(tpath
, size
, "/proc/%d/exe", (int) getpid());
48 len
= readlink(path
, tpath
, size
);
54 static void get_asm_insns(uint8_t *image
, size_t len
, unsigned long base
,
59 struct disassemble_info info
;
60 disassembler_ftype disassemble
;
63 memset(tpath
, 0, sizeof(tpath
));
64 get_exec_path(tpath
, sizeof(tpath
));
66 bfdf
= bfd_openr(tpath
, NULL
);
68 assert(bfd_check_format(bfdf
, bfd_object
));
70 init_disassemble_info(&info
, stdout
, (fprintf_ftype
) fprintf
);
71 info
.arch
= bfd_get_arch(bfdf
);
72 info
.mach
= bfd_get_mach(bfdf
);
74 info
.buffer_length
= len
;
76 disassemble_init_for_target(&info
);
78 disassemble
= disassembler(bfdf
);
84 count
= disassemble(pc
, &info
);
88 for (i
= 0; i
< count
; ++i
)
89 printf("%02x ", (uint8_t) image
[pc
+ i
]);
94 } while(count
> 0 && pc
< len
);
99 static char *get_klog_buff(int *klen
)
101 int ret
, len
= klogctl(10, NULL
, 0);
102 char *buff
= malloc(len
);
104 assert(buff
&& klen
);
105 ret
= klogctl(3, buff
, len
);
112 static void put_klog_buff(char *buff
)
117 static int get_last_jit_image(char *haystack
, size_t hlen
,
118 uint8_t *image
, size_t ilen
,
121 char *ptr
, *pptr
, *tmp
;
123 int ret
, flen
, proglen
, pass
, ulen
= 0;
124 regmatch_t pmatch
[1];
130 ret
= regcomp(®ex
, "flen=[[:alnum:]]+ proglen=[[:digit:]]+ "
131 "pass=[[:digit:]]+ image=[[:xdigit:]]+", REG_EXTENDED
);
136 ret
= regexec(®ex
, ptr
, 1, pmatch
, 0);
138 ptr
+= pmatch
[0].rm_eo
;
139 off
+= pmatch
[0].rm_eo
;
145 ptr
= haystack
+ off
- (pmatch
[0].rm_eo
- pmatch
[0].rm_so
);
146 ret
= sscanf(ptr
, "flen=%d proglen=%d pass=%d image=%lx",
147 &flen
, &proglen
, &pass
, base
);
151 tmp
= ptr
= haystack
+ off
;
152 while ((ptr
= strtok(tmp
, "\n")) != NULL
&& ulen
< ilen
) {
154 if (!strstr(ptr
, "JIT code"))
157 while ((ptr
= strstr(pptr
, ":")))
161 image
[ulen
++] = (uint8_t) strtoul(pptr
, &pptr
, 16);
162 if (ptr
== pptr
|| ulen
>= ilen
) {
170 assert(ulen
== proglen
);
171 printf("%d bytes emitted from JIT compiler (pass:%d, flen:%d)\n",
172 proglen
, pass
, flen
);
173 printf("%lx + <x>:\n", *base
);
179 int main(int argc
, char **argv
)
181 int len
, klen
, opcodes
= 0;
187 if (!strncmp("-o", argv
[argc
- 1], 2)) {
190 printf("usage: bpf_jit_disasm [-o: show opcodes]\n");
196 memset(image
, 0, sizeof(image
));
198 kbuff
= get_klog_buff(&klen
);
200 len
= get_last_jit_image(kbuff
, klen
, image
, sizeof(image
), &base
);
201 if (len
> 0 && base
> 0)
202 get_asm_insns(image
, len
, base
, opcodes
);
204 put_klog_buff(kbuff
);