]> git.baikalelectronics.ru Git - kernel.git/commit
bpf, xdp, samples: Fix null pointer dereference in *_user code
authorGaurav Singh <gaurav1086@gmail.com>
Fri, 12 Jun 2020 18:53:27 +0000 (14:53 -0400)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 16 Jun 2020 12:55:35 +0000 (14:55 +0200)
commit48d4d8840c9b37e1f4bec15caea7fe8a9fe08f57
tree45ae1c002cf32dd421cb5dce9223d9d3b495086c
parent7929266bfb0978d87ca25b270be8cebe1ad352e7
bpf, xdp, samples: Fix null pointer dereference in *_user code

Memset on the pointer right after malloc can cause a NULL pointer
deference if it failed to allocate memory. A simple fix is to
replace malloc()/memset() pair with a simple call to calloc().

Fixes: bd694ea01a71 ("samples/bpf: program demonstrating access to xdp_rxq_info")
Signed-off-by: Gaurav Singh <gaurav1086@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Acked-by: John Fastabend <john.fastabend@gmail.com>
samples/bpf/xdp_monitor_user.c
samples/bpf/xdp_redirect_cpu_user.c
samples/bpf/xdp_rxq_info_user.c