libbpf: fix crash in XDP socket part with new larger BPF_LOG_BUF_SIZE
authorMagnus Karlsson <[email protected]>
Wed, 10 Apr 2019 06:54:16 +0000 (08:54 +0200)
committerDaniel Borkmann <[email protected]>
Wed, 10 Apr 2019 07:51:50 +0000 (09:51 +0200)
commit50bd645b3a21a374dbd0fa8273a5f4e98001fb05
tree3f3d8e6de145a43ce2a9da19fa6fe250b566ffb2
parent69a0f9ecef22131982ba328e6b74ebb082bc0992
libbpf: fix crash in XDP socket part with new larger BPF_LOG_BUF_SIZE

In commit da11b417583e ("libbpf: teach libbpf about log_level bit 2"),
the BPF_LOG_BUF_SIZE was increased to 16M. The XDP socket part of
libbpf allocated the log_buf on the stack, but for the new 16M buffer
size this is not going to work. Change the code so it uses a 16K buffer
instead.

Fixes: da11b417583e ("libbpf: teach libbpf about log_level bit 2")
Signed-off-by: Magnus Karlsson <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
tools/lib/bpf/xsk.c