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)
28 #include <sys/types.h>
31 #define CMD_ACTION_SIZE_BUFFER 10
32 #define CMD_ACTION_READ_ALL 3
34 static void get_exec_path(char *tpath, size_t size)
39 snprintf(tpath, size, "/proc/%d/exe", (int) getpid());
45 len = readlink(path, tpath, size);
51 static void get_asm_insns(uint8_t *image, size_t len, int opcodes)
55 struct disassemble_info info;
56 disassembler_ftype disassemble;
59 memset(tpath, 0, sizeof(tpath));
60 get_exec_path(tpath, sizeof(tpath));
62 bfdf = bfd_openr(tpath, NULL);
64 assert(bfd_check_format(bfdf, bfd_object));
66 init_disassemble_info(&info, stdout, (fprintf_ftype) fprintf);
67 info.arch = bfd_get_arch(bfdf);
68 info.mach = bfd_get_mach(bfdf);
70 info.buffer_length = len;
72 disassemble_init_for_target(&info);
74 disassemble = disassembler(bfdf);
80 count = disassemble(pc, &info);
84 for (i = 0; i < count; ++i)
85 printf("%02x ", (uint8_t) image[pc + i]);
90 } while(count > 0 && pc < len);
95 static char *get_klog_buff(unsigned int *klen)
100 len = klogctl(CMD_ACTION_SIZE_BUFFER, NULL, 0);
105 ret = klogctl(CMD_ACTION_READ_ALL, buff, len);
115 static char *get_flog_buff(const char *file, unsigned int *klen)
121 fd = open(file, O_RDONLY);
125 ret = fstat(fd, &fi);
126 if (ret < 0 || !S_ISREG(fi.st_mode))
129 len = fi.st_size + 1;
134 memset(buff, 0, len);
135 ret = read(fd, buff, len - 1);
149 static char *get_log_buff(const char *file, unsigned int *klen)
151 return file ? get_flog_buff(file, klen) : get_klog_buff(klen);
154 static void put_log_buff(char *buff)
159 static unsigned int get_last_jit_image(char *haystack, size_t hlen,
160 uint8_t *image, size_t ilen)
162 char *ptr, *pptr, *tmp;
164 int ret, flen, proglen, pass, ulen = 0;
165 regmatch_t pmatch[1];
172 ret = regcomp(®ex, "flen=[[:alnum:]]+ proglen=[[:digit:]]+ "
173 "pass=[[:digit:]]+ image=[[:xdigit:]]+", REG_EXTENDED);
177 memset(pmatch, 0, sizeof(pmatch));
180 ret = regexec(®ex, ptr, 1, pmatch, 0);
182 ptr += pmatch[0].rm_eo;
183 off += pmatch[0].rm_eo;
189 ptr = haystack + off - (pmatch[0].rm_eo - pmatch[0].rm_so);
190 ret = sscanf(ptr, "flen=%d proglen=%d pass=%d image=%lx",
191 &flen, &proglen, &pass, &base);
197 tmp = ptr = haystack + off;
198 while ((ptr = strtok(tmp, "\n")) != NULL && ulen < ilen) {
200 if (!strstr(ptr, "JIT code"))
203 while ((ptr = strstr(pptr, ":")))
207 image[ulen++] = (uint8_t) strtoul(pptr, &pptr, 16);
208 if (ptr == pptr || ulen >= ilen) {
216 assert(ulen == proglen);
217 printf("%d bytes emitted from JIT compiler (pass:%d, flen:%d)\n",
218 proglen, pass, flen);
219 printf("%lx + <x>:\n", base);
225 static void usage(void)
227 printf("Usage: bpf_jit_disasm [...]\n");
228 printf(" -o Also display related opcodes (default: off).\n");
229 printf(" -f <file> Read last image dump from file or stdin (default: klog).\n");
230 printf(" -h Display this help.\n");
233 int main(int argc, char **argv)
235 unsigned int len, klen, opt, opcodes = 0;
236 static uint8_t image[32768];
237 char *kbuff, *file = NULL;
239 while ((opt = getopt(argc, argv, "of:")) != -1) {
254 memset(image, 0, sizeof(image));
256 kbuff = get_log_buff(file, &klen);
258 fprintf(stderr, "Could not retrieve log buffer!\n");
262 len = get_last_jit_image(kbuff, klen, image, sizeof(image));
264 get_asm_insns(image, len, opcodes);
266 fprintf(stderr, "No JIT image found!\n");