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>
32 #define CMD_ACTION_SIZE_BUFFER 10
33 #define CMD_ACTION_READ_ALL 3
35 static void get_exec_path(char *tpath, size_t size)
40 snprintf(tpath, size, "/proc/%d/exe", (int) getpid());
46 len = readlink(path, tpath, size);
52 static void get_asm_insns(uint8_t *image, size_t len, int opcodes)
56 struct disassemble_info info;
57 disassembler_ftype disassemble;
60 memset(tpath, 0, sizeof(tpath));
61 get_exec_path(tpath, sizeof(tpath));
63 bfdf = bfd_openr(tpath, NULL);
65 assert(bfd_check_format(bfdf, bfd_object));
67 init_disassemble_info(&info, stdout, (fprintf_ftype) fprintf);
68 info.arch = bfd_get_arch(bfdf);
69 info.mach = bfd_get_mach(bfdf);
71 info.buffer_length = len;
73 disassemble_init_for_target(&info);
75 disassemble = disassembler(bfdf);
81 count = disassemble(pc, &info);
85 for (i = 0; i < count; ++i)
86 printf("%02x ", (uint8_t) image[pc + i]);
91 } while(count > 0 && pc < len);
96 static char *get_klog_buff(unsigned int *klen)
101 len = klogctl(CMD_ACTION_SIZE_BUFFER, NULL, 0);
109 ret = klogctl(CMD_ACTION_READ_ALL, buff, len);
119 static char *get_flog_buff(const char *file, unsigned int *klen)
125 fd = open(file, O_RDONLY);
129 ret = fstat(fd, &fi);
130 if (ret < 0 || !S_ISREG(fi.st_mode))
133 len = fi.st_size + 1;
138 memset(buff, 0, len);
139 ret = read(fd, buff, len - 1);
153 static char *get_log_buff(const char *file, unsigned int *klen)
155 return file ? get_flog_buff(file, klen) : get_klog_buff(klen);
158 static void put_log_buff(char *buff)
163 static uint8_t *get_last_jit_image(char *haystack, size_t hlen,
166 char *ptr, *pptr, *tmp;
168 int ret, flen, proglen, pass, ulen = 0;
169 regmatch_t pmatch[1];
177 ret = regcomp(®ex, "flen=[[:alnum:]]+ proglen=[[:digit:]]+ "
178 "pass=[[:digit:]]+ image=[[:xdigit:]]+", REG_EXTENDED);
182 memset(pmatch, 0, sizeof(pmatch));
185 ret = regexec(®ex, ptr, 1, pmatch, 0);
187 ptr += pmatch[0].rm_eo;
188 off += pmatch[0].rm_eo;
194 ptr = haystack + off - (pmatch[0].rm_eo - pmatch[0].rm_so);
195 ret = sscanf(ptr, "flen=%d proglen=%d pass=%d image=%lx",
196 &flen, &proglen, &pass, &base);
201 if (proglen > 1000000) {
202 printf("proglen of %d too big, stopping\n", proglen);
206 image = malloc(proglen);
208 printf("Out of memory\n");
211 memset(image, 0, proglen);
213 tmp = ptr = haystack + off;
214 while ((ptr = strtok(tmp, "\n")) != NULL && ulen < proglen) {
216 if (!strstr(ptr, "JIT code"))
219 while ((ptr = strstr(pptr, ":")))
223 image[ulen++] = (uint8_t) strtoul(pptr, &pptr, 16);
234 assert(ulen == proglen);
235 printf("%d bytes emitted from JIT compiler (pass:%d, flen:%d)\n",
236 proglen, pass, flen);
237 printf("%lx + <x>:\n", base);
244 static void usage(void)
246 printf("Usage: bpf_jit_disasm [...]\n");
247 printf(" -o Also display related opcodes (default: off).\n");
248 printf(" -O <file> Write binary image of code to file, don't disassemble to stdout.\n");
249 printf(" -f <file> Read last image dump from file or stdin (default: klog).\n");
250 printf(" -h Display this help.\n");
253 int main(int argc, char **argv)
255 unsigned int len, klen, opt, opcodes = 0;
256 char *kbuff, *file = NULL;
261 uint8_t *image = NULL;
263 while ((opt = getopt(argc, argv, "of:O:")) != -1) {
282 kbuff = get_log_buff(file, &klen);
284 fprintf(stderr, "Could not retrieve log buffer!\n");
288 image = get_last_jit_image(kbuff, klen, &len);
290 fprintf(stderr, "No JIT image found!\n");
294 get_asm_insns(image, len, opcodes);
298 ofd = open(ofile, O_WRONLY | O_CREAT | O_TRUNC, DEFFILEMODE);
300 fprintf(stderr, "Could not open file %s for writing: ", ofile);
306 nr = write(ofd, pos, len);
308 fprintf(stderr, "Could not write data to %s: ", ofile);