tools: bpf_jit_disasm: fix segfault on disabled debugging log output
authorDaniel Borkmann <daniel@iogearbox.net>
Mon, 25 May 2015 12:08:03 +0000 (14:08 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 27 May 2015 04:24:10 +0000 (00:24 -0400)
With recent debugging, I noticed that bpf_jit_disasm segfaults when
there's no debugging output from the JIT compiler to the kernel log.

Reason is that when regexec(3) doesn't match on anything, start/end
offsets are not being filled out and contain some uninitialized garbage
from stack. Thus, we need zero out offsets first.

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/net/bpf_jit_disasm.c

index c5baf9c..618c2bc 100644 (file)
@@ -123,6 +123,8 @@ static int get_last_jit_image(char *haystack, size_t hlen,
        assert(ret == 0);
 
        ptr = haystack;
+       memset(pmatch, 0, sizeof(pmatch));
+
        while (1) {
                ret = regexec(&regex, ptr, 1, pmatch, 0);
                if (ret == 0) {