mbox series

[GIT,PULL] bpf for v6.13-rc2

Message ID 20241206224535.279796-1-daniel@iogearbox.net (mailing list archive)
State Not Applicable
Headers show
Series [GIT,PULL] bpf for v6.13-rc2 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git tags/bpf-fixes

Checks

Context Check Description
netdev/tree_selection success Pull request for net
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/build_tools success Errors and warnings before: 0 (+0) this patch: 0 (+0)
netdev/build_clang success Errors and warnings before: 1 this patch: 1
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success Fixes tag looks correct
netdev/build_allmodconfig_warn success Errors and warnings before: 15 this patch: 15
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 20 this patch: 20
netdev/contest success net-next-2024-12-07--00-01 (tests: 764)

Message

Daniel Borkmann Dec. 6, 2024, 10:45 p.m. UTC
Hi Linus,

The following changes since commit 9f16d5e6f220661f73b36a4be1b21575651d8833:

  Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm (2024-11-23 16:00:50 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git tags/bpf-fixes

for you to fetch changes up to 509df676c2d79c985ec2eaa3e3a3bbe557645861:

  Merge branch 'fixes-for-lpm-trie' (2024-12-06 09:14:35 -0800)

----------------------------------------------------------------
BPF fixes:

- Fix several issues for BPF LPM trie map which were found by
  syzbot and during addition of new test cases (Hou Tao)

- Fix a missing process_iter_arg register type check in the
  BPF verifier (Kumar Kartikeya Dwivedi, Tao Lyu)

- Fix several correctness gaps in the BPF verifier when
  interacting with the BPF stack without CAP_PERFMON
  (Kumar Kartikeya Dwivedi, Eduard Zingerman, Tao Lyu)

- Fix OOB BPF map writes when deleting elements for the case of
  xsk map as well as devmap (Maciej Fijalkowski)

- Fix xsk sockets to always clear DMA mapping information when
  unmapping the pool (Larysa Zaremba)

- Fix sk_mem_uncharge logic in tcp_bpf_sendmsg to only uncharge
  after sent bytes have been finalized (Zijian Zhang)

- Fix BPF sockmap with vsocks which was missing a queue check
  in poll and sockmap cleanup on close (Michal Luczaj)

- Fix tools infra to override makefile ARCH variable if defined
  but empty, which addresses cross-building tools. (Björn Töpel)

- Fix two resolve_btfids build warnings on unresolved bpf_lsm
  symbols (Thomas Weißschuh)

- Fix a NULL pointer dereference in bpftool (Amir Mohammadi)

- Fix BPF selftests to check for CONFIG_PREEMPTION instead of
  CONFIG_PREEMPT (Sebastian Andrzej Siewior)

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>

----------------------------------------------------------------
Alexei Starovoitov (5):
      Merge branch 'bpf-vsock-fix-poll-and-close'
      Merge branch 'bpf-fix-oob-accesses-in-map_delete_elem-callbacks'
      Merge branch 'fix-missing-process_iter_arg-type-check'
      Merge branch 'fixes-for-stack-with-allow_ptr_leaks'
      Merge branch 'fixes-for-lpm-trie'

Amir Mohammadi (1):
      bpftool: fix potential NULL pointer dereferencing in prog_dump()

Björn Töpel (1):
      tools: Override makefile ARCH variable if defined, but empty

Eduard Zingerman (2):
      samples/bpf: Remove unnecessary -I flags from libbpf EXTRA_CFLAGS
      selftests/bpf: Introduce __caps_unpriv annotation for tests

Hou Tao (9):
      bpf: Remove unnecessary check when updating LPM trie
      bpf: Remove unnecessary kfree(im_node) in lpm_trie_update_elem
      bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie
      bpf: Handle in-place update for full LPM trie correctly
      bpf: Fix exact match conditions in trie_get_next_key()
      bpf: Switch to bpf mem allocator for LPM trie
      bpf: Use raw_spinlock_t for LPM trie
      selftests/bpf: Move test_lpm_map.c to map_tests
      selftests/bpf: Add more test cases for LPM trie

Kumar Kartikeya Dwivedi (5):
      selftests/bpf: Add tests for iter arg check
      bpf: Zero index arg error string for dynptr and iter
      bpf: Don't mark STACK_INVALID as STACK_MISC in mark_stack_slot_misc
      selftests/bpf: Add test for reading from STACK_INVALID slots
      selftests/bpf: Add test for narrow spill into 64-bit spilled scalar

Larysa Zaremba (1):
      xsk: always clear DMA mapping information when unmapping the pool

Maciej Fijalkowski (2):
      xsk: fix OOB map writes when deleting elements
      bpf: fix OOB devmap writes when deleting elements

Michal Luczaj (4):
      bpf, vsock: Fix poll() missing a queue
      selftest/bpf: Add test for af_vsock poll()
      bpf, vsock: Invoke proto::close on close()
      selftest/bpf: Add test for vsock removal from sockmap on close()

Sebastian Andrzej Siewior (1):
      selftests/bpf: Check for PREEMPTION instead of PREEMPT

Tao Lyu (2):
      bpf: Ensure reg is PTR_TO_STACK in process_iter_arg
      bpf: Fix narrow scalar spill onto 64-bit spilled scalar slots

Thomas Weißschuh (1):
      bpf, lsm: Remove getlsmprop hooks BTF IDs

Zijian Zhang (2):
      tcp_bpf: Fix the sk_mem_uncharge logic in tcp_bpf_sendmsg
      selftests/bpf: Add apply_bytes test to test_txmsg_redir_wait_sndmem in test_sockmap

 kernel/bpf/bpf_lsm.c                               |   2 -
 kernel/bpf/devmap.c                                |   6 +-
 kernel/bpf/lpm_trie.c                              | 133 ++++---
 kernel/bpf/verifier.c                              |  27 +-
 net/ipv4/tcp_bpf.c                                 |  11 +-
 net/vmw_vsock/af_vsock.c                           |  70 ++--
 net/xdp/xsk_buff_pool.c                            |   5 +-
 net/xdp/xskmap.c                                   |   2 +-
 samples/bpf/Makefile                               |  13 +-
 tools/bpf/bpftool/prog.c                           |  17 +-
 tools/scripts/Makefile.arch                        |   4 +-
 tools/testing/selftests/bpf/.gitignore             |   1 -
 tools/testing/selftests/bpf/Makefile               |   2 +-
 .../lpm_trie_map_basic_ops.c}                      | 405 ++++++++++++++++++++-
 .../selftests/bpf/map_tests/task_storage_map.c     |   4 +-
 .../selftests/bpf/prog_tests/sockmap_basic.c       |  77 ++++
 .../selftests/bpf/prog_tests/task_local_storage.c  |   2 +-
 tools/testing/selftests/bpf/prog_tests/verifier.c  |  19 +-
 tools/testing/selftests/bpf/progs/bpf_misc.h       |  12 +
 tools/testing/selftests/bpf/progs/dynptr_fail.c    |  22 +-
 tools/testing/selftests/bpf/progs/iters.c          |  26 ++
 .../selftests/bpf/progs/iters_state_safety.c       |  14 +-
 .../selftests/bpf/progs/iters_testmod_seq.c        |   4 +-
 .../bpf/progs/read_bpf_task_storage_busy.c         |   4 +-
 .../selftests/bpf/progs/task_storage_nodeadlock.c  |   4 +-
 .../selftests/bpf/progs/test_kfunc_dynptr_param.c  |   2 +-
 .../selftests/bpf/progs/verifier_bits_iter.c       |   8 +-
 tools/testing/selftests/bpf/progs/verifier_mtu.c   |   4 +-
 .../selftests/bpf/progs/verifier_spill_fill.c      |  35 ++
 tools/testing/selftests/bpf/test_loader.c          |  46 +++
 tools/testing/selftests/bpf/test_sockmap.c         |   6 +-
 31 files changed, 813 insertions(+), 174 deletions(-)
 rename tools/testing/selftests/bpf/{test_lpm_map.c => map_tests/lpm_trie_map_basic_ops.c} (65%)

Comments

pr-tracker-bot@kernel.org Dec. 6, 2024, 11:11 p.m. UTC | #1
The pull request you sent on Fri,  6 Dec 2024 23:45:34 +0100:

> https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git tags/bpf-fixes

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/b5f217084ab3ddd4bdd03cd437f8e3b7e2d1f5b6

Thank you!