mbox series

pull-request: bpf 2021-07-09

Message ID 20210709221649.30124-1-daniel@iogearbox.net (mailing list archive)
State Accepted
Delegated to: Netdev Maintainers
Headers show
Series pull-request: bpf 2021-07-09 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Message

Daniel Borkmann July 9, 2021, 10:16 p.m. UTC
Hi David, hi Jakub,

The following pull-request contains BPF updates for your *net* tree.

We've added 9 non-merge commits during the last 9 day(s) which contain
a total of 13 files changed, 118 insertions(+), 62 deletions(-).

The main changes are:

1) Fix runqslower task->state access from BPF, from SanjayKumar Jeyakumar.

2) Fix subprog poke descriptor tracking use-after-free, from John Fastabend.

3) Fix sparse complaint from prior devmap RCU conversion, from Toke Høiland-Jørgensen.

4) Fix missing va_end in bpftool JIT json dump's error path, from Gu Shengxian.

5) Fix tools/bpf install target from missing runqslower install, from Wei Li.

6) Fix xdpsock BPF sample to unload program on shared umem option, from Wang Hai.

Please consider pulling these changes from:

  git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git

Thanks a lot!

Also thanks to reporters, reviewers and testers of commits in this pull-request:

kernel test robot, Magnus Karlsson, Martin KaFai Lau, Paul E. McKenney, 
Yonghong Song

----------------------------------------------------------------

The following changes since commit dbe69e43372212527abf48609aba7fc39a6daa27:

  Merge tag 'net-next-5.14' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next (2021-06-30 15:51:09 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git 

for you to fetch changes up to 1fb5ba29ad0835c5cbfc69a27f9c2733cb65726e:

  bpf: Selftest to verify mixing bpf2bpf calls and tailcalls with insn patch (2021-07-09 12:08:40 +0200)

----------------------------------------------------------------
Gu Shengxian (1):
      bpftool: Properly close va_list 'ap' by va_end() on error

John Fastabend (2):
      bpf: Track subprog poke descriptors correctly and fix use-after-free
      bpf: Selftest to verify mixing bpf2bpf calls and tailcalls with insn patch

SanjayKumar Jeyakumar (1):
      tools/runqslower: Use __state instead of state

Toke Høiland-Jørgensen (3):
      bpf, devmap: Convert remaining READ_ONCE() to rcu_dereference_check()
      bpf, samples: Add -fno-asynchronous-unwind-tables to BPF Clang invocation
      libbpf: Restore errno return for functions that were already returning it

Wang Hai (1):
      bpf, samples: Fix xdpsock with '-M' parameter missing unload process

Wei Li (1):
      tools: bpf: Fix error in 'make -C tools/ bpf_install'

 arch/x86/net/bpf_jit_comp.c                        |  3 ++
 include/linux/bpf.h                                |  1 +
 kernel/bpf/core.c                                  |  8 ++-
 kernel/bpf/devmap.c                                |  6 ++-
 kernel/bpf/verifier.c                              | 60 ++++++++--------------
 samples/bpf/Makefile                               |  1 +
 samples/bpf/xdpsock_user.c                         | 28 ++++++++++
 tools/bpf/Makefile                                 |  7 +--
 tools/bpf/bpftool/jit_disasm.c                     |  6 ++-
 tools/bpf/runqslower/runqslower.bpf.c              |  2 +-
 tools/lib/bpf/libbpf.c                             |  4 +-
 tools/testing/selftests/bpf/prog_tests/tailcalls.c | 36 +++++++++----
 .../selftests/bpf/progs/tailcall_bpf2bpf4.c        | 18 +++++++
 13 files changed, 118 insertions(+), 62 deletions(-)