Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
Daniel Borkmann says: ==================== pull-request: bpf 2021-12-16 We've added 15 non-merge commits during the last 7 day(s) which contain a total of 12 files changed, 434 insertions(+), 30 deletions(-). The main changes are: 1) Fix incorrect verifier state pruning behavior for <8B register spill/fill, from Paul Chaignon. 2) Fix x86-64 JIT's extable handling for fentry/fexit when return pointer is an ERR_PTR(), from Alexei Starovoitov. 3) Fix 3 different possibilities that BPF verifier missed where unprivileged could leak kernel addresses, from Daniel Borkmann. 4) Fix xsk's poll behavior under need_wakeup flag, from Magnus Karlsson. 5) Fix an oob-write in test_verifier due to a missed MAX_NR_MAPS bump, from Kumar Kartikeya Dwivedi. 6) Fix a race in test_btf_skc_cls_ingress selftest, from Martin KaFai Lau. * https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf: bpf, selftests: Fix racing issue in btf_skc_cls_ingress test selftest/bpf: Add a test that reads various addresses. bpf: Fix extable address check. bpf: Fix extable fixup offset. bpf, selftests: Add test case trying to taint map value pointer bpf: Make 32->64 bounds propagation slightly more robust bpf: Fix signed bounds propagation after mov32 bpf, selftests: Update test case for atomic cmpxchg on r0 with pointer bpf: Fix kernel address leakage in atomic cmpxchg's r0 aux reg bpf, selftests: Add test case for atomic fetch on spilled pointer bpf: Fix kernel address leakage in atomic fetch selftests/bpf: Fix OOB write in test_verifier xsk: Do not sleep in poll() when need_wakeup set selftests/bpf: Tests for state pruning with u32 spill/fill bpf: Fix incorrect state pruning for <8B spill/fill ==================== Link: https://lore.kernel.org/r/20211216210005.13815-1-daniel@iogearbox.net Signed-off-by:Jakub Kicinski <kuba@kernel.org>
No related branches found
No related tags found
Showing
- arch/x86/net/bpf_jit_comp.c 43 additions, 8 deletionsarch/x86/net/bpf_jit_comp.c
- kernel/bpf/verifier.c 36 additions, 17 deletionskernel/bpf/verifier.c
- net/xdp/xsk.c 2 additions, 2 deletionsnet/xdp/xsk.c
- tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c 20 additions, 0 deletionstools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c
- tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c 14 additions, 2 deletionstools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c
- tools/testing/selftests/bpf/progs/test_module_attach.c 12 additions, 0 deletionstools/testing/selftests/bpf/progs/test_module_attach.c
- tools/testing/selftests/bpf/test_verifier.c 1 addition, 1 deletiontools/testing/selftests/bpf/test_verifier.c
- tools/testing/selftests/bpf/verifier/atomic_cmpxchg.c 86 additions, 0 deletionstools/testing/selftests/bpf/verifier/atomic_cmpxchg.c
- tools/testing/selftests/bpf/verifier/atomic_fetch.c 94 additions, 0 deletionstools/testing/selftests/bpf/verifier/atomic_fetch.c
- tools/testing/selftests/bpf/verifier/search_pruning.c 71 additions, 0 deletionstools/testing/selftests/bpf/verifier/search_pruning.c
- tools/testing/selftests/bpf/verifier/spill_fill.c 32 additions, 0 deletionstools/testing/selftests/bpf/verifier/spill_fill.c
- tools/testing/selftests/bpf/verifier/value_ptr_arith.c 23 additions, 0 deletionstools/testing/selftests/bpf/verifier/value_ptr_arith.c
Loading
Please register or sign in to comment