From: patchwork-bot+netdevbpf@kernel.org
To: Ihor Solodrai <ihor.solodrai@linux.dev>
Cc: ast@kernel.org, andrii@kernel.org, daniel@iogearbox.net,
eddyz87@gmail.com, olsajiri@gmail.com, yatsenko@meta.com,
alexis.lothore@bootlin.com, ameryhung@gmail.com,
bpf@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-team@meta.com
Subject: Re: [PATCH bpf v4 00/20] selftests/bpf: Fixes for userspace ASAN
Date: Tue, 24 Feb 2026 03:00:31 +0000 [thread overview]
Message-ID: <177190203179.3291650.5550860539555741440.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260223190736.649171-1-ihor.solodrai@linux.dev>
Hello:
This series was applied to bpf/bpf.git (master)
by Alexei Starovoitov <ast@kernel.org>:
On Mon, 23 Feb 2026 11:07:16 -0800 you wrote:
> This series includes various fixes aiming to enable test_progs run
> with userspace address sanitizer on BPF CI.
>
> The first five patches add a simplified implementation of strscpy() to
> selftests/bpf and then replace strcpy/strncpy usages across the tests
> with it. See relevant discussions [1][2].
>
> [...]
Here is the summary with links:
- [bpf,v4,01/20] selftests/bpf: Add simple strscpy() implementation
https://git.kernel.org/bpf/bpf/c/63c49efc987a
- [bpf,v4,02/20] selftests/bpf: Replace strcpy() calls with strscpy()
https://git.kernel.org/bpf/bpf/c/6a087ac23f5b
- [bpf,v4,03/20] selftests/bpf: Replace strncpy() with strscpy()
https://git.kernel.org/bpf/bpf/c/05849ec34f3d
- [bpf,v4,04/20] selftests/bpf: Use strscpy in bpftool_helpers.c
https://git.kernel.org/bpf/bpf/c/f074d8941c29
- [bpf,v4,05/20] selftests/bpf: Use memcpy() for bounded non-NULL-terminated copies
https://git.kernel.org/bpf/bpf/c/6fcf7925e334
- [bpf,v4,06/20] selftests/bpf: Pass through build flags to bpftool and resolve_btfids
https://git.kernel.org/bpf/bpf/c/b1dc4f39b541
- [bpf,v4,07/20] resolve_btfids: Fix memory leaks reported by ASAN
https://git.kernel.org/bpf/bpf/c/08a4ab51771f
- [bpf,v4,08/20] selftests/bpf: Add DENYLIST.asan
https://git.kernel.org/bpf/bpf/c/7661538bb7d2
- [bpf,v4,09/20] selftests/bpf: Refactor bpf_get_ksyms() trace helper
https://git.kernel.org/bpf/bpf/c/536abce60307
- [bpf,v4,10/20] selftests/bpf: Fix memory leaks in tests
https://git.kernel.org/bpf/bpf/c/f8e7eccf33d3
- [bpf,v4,11/20] selftests/bpf: Fix cleanup in check_fd_array_cnt__fd_array_too_big()
https://git.kernel.org/bpf/bpf/c/e4093ebf3db1
- [bpf,v4,12/20] veristat: Fix a memory leak for preset ENUMERATOR
https://git.kernel.org/bpf/bpf/c/10d19e708d3b
- [bpf,v4,13/20] selftests/bpf: Fix use-after-free in xdp_metadata test
https://git.kernel.org/bpf/bpf/c/4650dd3ea4ac
- [bpf,v4,14/20] selftests/bpf: Fix double thread join in uprobe_multi_test
https://git.kernel.org/bpf/bpf/c/a9b15811ef10
- [bpf,v4,15/20] selftests/bpf: Fix resource leaks caused by missing cleanups
https://git.kernel.org/bpf/bpf/c/547a83e93a48
- [bpf,v4,16/20] selftests/bpf: Free bpf_object in test_sysctl
https://git.kernel.org/bpf/bpf/c/1907d7a6ca0f
- [bpf,v4,17/20] selftests/bpf: Fix array bounds warning in jit_disasm_helpers
https://git.kernel.org/bpf/bpf/c/68da3afd0bf0
- [bpf,v4,18/20] selftests/bpf: Fix out-of-bounds array access bugs reported by ASAN
https://git.kernel.org/bpf/bpf/c/a3f40c2890e9
- [bpf,v4,19/20] selftests/bpf: Check BPFTOOL env var in detect_bpftool_path()
https://git.kernel.org/bpf/bpf/c/fe9f7aa74767
- [bpf,v4,20/20] selftests/bpf: Don't override SIGSEGV handler with ASAN
https://git.kernel.org/bpf/bpf/c/db7337948c7b
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2026-02-24 3:00 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-23 19:07 [PATCH bpf v4 00/20] selftests/bpf: Fixes for userspace ASAN Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 01/20] selftests/bpf: Add simple strscpy() implementation Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 02/20] selftests/bpf: Replace strcpy() calls with strscpy() Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 03/20] selftests/bpf: Replace strncpy() " Ihor Solodrai
2026-02-23 22:28 ` Eduard Zingerman
2026-02-23 22:32 ` Ihor Solodrai
2026-02-23 22:59 ` Eduard Zingerman
2026-02-23 19:07 ` [PATCH bpf v4 04/20] selftests/bpf: Use strscpy in bpftool_helpers.c Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 05/20] selftests/bpf: Use memcpy() for bounded non-NULL-terminated copies Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 06/20] selftests/bpf: Pass through build flags to bpftool and resolve_btfids Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 07/20] resolve_btfids: Fix memory leaks reported by ASAN Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 08/20] selftests/bpf: Add DENYLIST.asan Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 09/20] selftests/bpf: Refactor bpf_get_ksyms() trace helper Ihor Solodrai
2026-02-23 23:23 ` Eduard Zingerman
2026-02-23 19:07 ` [PATCH bpf v4 10/20] selftests/bpf: Fix memory leaks in tests Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 11/20] selftests/bpf: Fix cleanup in check_fd_array_cnt__fd_array_too_big() Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 12/20] veristat: Fix a memory leak for preset ENUMERATOR Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 13/20] selftests/bpf: Fix use-after-free in xdp_metadata test Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 14/20] selftests/bpf: Fix double thread join in uprobe_multi_test Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 15/20] selftests/bpf: Fix resource leaks caused by missing cleanups Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 16/20] selftests/bpf: Free bpf_object in test_sysctl Ihor Solodrai
2026-02-23 19:07 ` [PATCH bpf v4 17/20] selftests/bpf: Fix array bounds warning in jit_disasm_helpers Ihor Solodrai
2026-02-23 19:11 ` [PATCH bpf v4 18/20] selftests/bpf: Fix out-of-bounds array access bugs reported by ASAN Ihor Solodrai
2026-02-23 19:11 ` [PATCH bpf v4 19/20] selftests/bpf: Check BPFTOOL env var in detect_bpftool_path() Ihor Solodrai
2026-02-23 19:11 ` [PATCH bpf v4 20/20] selftests/bpf: Don't override SIGSEGV handler with ASAN Ihor Solodrai
2026-02-24 3:00 ` patchwork-bot+netdevbpf [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=177190203179.3291650.5550860539555741440.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=alexis.lothore@bootlin.com \
--cc=ameryhung@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=ihor.solodrai@linux.dev \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=olsajiri@gmail.com \
--cc=yatsenko@meta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.