From: Pu Lehui <pulehui@huawei.com>
To: Andrii Nakryiko <andrii.nakryiko@gmail.com>,
Pu Lehui <pulehui@huaweicloud.com>
Cc: <bpf@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
Amery Hung <ameryhung@gmail.com>,
Emil Tsalapatis <emil@etsalapatis.com>,
Mykyta Yatsenko <mykyta.yatsenko5@gmail.com>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Eduard Zingerman <eddyz87@gmail.com>,
Kumar Kartikeya Dwivedi <memxor@gmail.com>,
Martin KaFai Lau <martin.lau@linux.dev>,
Yonghong Song <yonghong.song@linux.dev>,
Song Liu <song@kernel.org>, Jiri Olsa <jolsa@kernel.org>
Subject: Re: [PATCH bpf v6 3/4] bpf: Fix potential UAF when reading bpf link info
Date: Tue, 28 Jul 2026 09:45:38 +0800 [thread overview]
Message-ID: <db71c3a2-43d9-458f-8cbf-e682338a33d8@huawei.com> (raw)
In-Reply-To: <CAEf4BzYFQ6wiDwz=3pyvDpr_UcSAOTygMq9pPVsJ=15CaGbA2Q@mail.gmail.com>
On 2026/7/28 7:15, Andrii Nakryiko wrote:
> On Wed, Jul 22, 2026 at 12:19 AM Pu Lehui <pulehui@huaweicloud.com> wrote:
>>
>> From: Pu Lehui <pulehui@huawei.com>
>>
>> In bpf_link_show_fdinfo and bpf_link_get_info_by_fd, link->prog is
>> accessed without holding any locks. If the prog is concurrently replaced
>> via bpf_link_update, the old prog can be freed, leading to a potential
>> UAF issue.
>>
>> Before dereferencing the prog, both normal RCU and RCU Tasks Trace read
>
> no, either one is enough (and that's why we wait for RCU and RCU Tasks
> Trace grace periods, to make sure that both kinds of accesses work).
> This paragraph is misleading, just drop it.
ok
>
>> locks would normally be required, as BPF_LINK_TYPE_ITER supports both
>> non-sleepable and sleepable progs. However, as commit 57b23c0f612d
>> ("bpf: Retire rcu_trace_implies_rcu_gp()") clarifies, an RCU Tasks Trace
>> grace period implies an RCU grace period, so holding only
>> rcu_read_lock() is already sufficient.
>>
>> Fixes: 0c991ebc8c69 ("bpf: Implement bpf_prog replacement for an active bpf_cgroup_link")
>> Reported-by: Sashiko <sashiko-bot@kernel.org>
>> Reviewed-by: Emil Tsalapatis <emil@etsalapatis.com>
>> Reviewed-by: Amery Hung <ameryhung@gmail.com>
>> Signed-off-by: Pu Lehui <pulehui@huawei.com>
>> ---
>> kernel/bpf/syscall.c | 21 +++++++++++++++++----
>> 1 file changed, 17 insertions(+), 4 deletions(-)
>>
>> diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
>> index 6db306d23b47..cad986807d53 100644
>> --- a/kernel/bpf/syscall.c
>> +++ b/kernel/bpf/syscall.c
>> @@ -3471,9 +3471,10 @@ static const char *bpf_link_type_strs[] = {
>> static void bpf_link_show_fdinfo(struct seq_file *m, struct file *filp)
>> {
>> const struct bpf_link *link = filp->private_data;
>> - const struct bpf_prog *prog = link->prog;
>> + const struct bpf_prog *prog;
>> enum bpf_link_type type = link->type;
>> char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
>> + u32 prog_id;
>
> can be read uninitialized (if link->prog is null), initialize to zero
will send new
>
> pw-bot: cr
>
>
>>
>> if (type < ARRAY_SIZE(bpf_link_type_strs) && bpf_link_type_strs[type]) {
>> if (link->type == BPF_LINK_TYPE_KPROBE_MULTI)
>> @@ -3490,13 +3491,20 @@ static void bpf_link_show_fdinfo(struct seq_file *m, struct file *filp)
>> }
>> seq_printf(m, "link_id:\t%u\n", link->id);
>>
>> + rcu_read_lock();
>> + prog = READ_ONCE(link->prog);
>> if (prog) {
>> bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
>> + prog_id = prog->aux->id;
>> + }
>> + rcu_read_unlock();
>> +
>> + if (prog) {
>> seq_printf(m,
>> "prog_tag:\t%s\n"
>> "prog_id:\t%u\n",
>> prog_tag,
>> - prog->aux->id);
>> + prog_id);
>> }
>> if (link->ops->show_fdinfo)
>> link->ops->show_fdinfo(link, m);
>> @@ -5535,6 +5543,7 @@ static int bpf_link_get_info_by_fd(struct file *file,
>> {
>> struct bpf_link_info __user *uinfo = u64_to_user_ptr(attr->info.info);
>> struct bpf_link_info info;
>> + const struct bpf_prog *prog;
>> u32 info_len = attr->info.info_len;
>> int err;
>>
>> @@ -5549,8 +5558,12 @@ static int bpf_link_get_info_by_fd(struct file *file,
>>
>> info.type = link->type;
>> info.id = link->id;
>> - if (link->prog)
>> - info.prog_id = link->prog->aux->id;
>> +
>> + rcu_read_lock();
>> + prog = READ_ONCE(link->prog);
>> + if (prog)
>> + info.prog_id = prog->aux->id;
>> + rcu_read_unlock();
>>
>> if (link->ops->fill_link_info) {
>> err = link->ops->fill_link_info(link, &info);
>> --
>> 2.34.1
>>
next prev parent reply other threads:[~2026-07-28 1:45 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-22 7:23 [PATCH bpf v6 0/4] Fixes for bpf link update Pu Lehui
2026-07-22 7:23 ` [PATCH bpf v6 1/4] bpf: Fix potential UAF in bpf_netns_link_update_prog Pu Lehui
2026-07-27 23:01 ` Andrii Nakryiko
2026-07-28 1:44 ` Pu Lehui
2026-07-22 7:23 ` [PATCH bpf v6 2/4] bpf: Fix UAF due to missing link type check in mprog Pu Lehui
2026-07-22 16:25 ` Emil Tsalapatis
2026-07-23 3:14 ` Pu Lehui
2026-07-28 1:56 ` Pu Lehui
2026-07-28 5:50 ` Emil Tsalapatis
2026-07-22 7:23 ` [PATCH bpf v6 3/4] bpf: Fix potential UAF when reading bpf link info Pu Lehui
2026-07-27 23:15 ` Andrii Nakryiko
2026-07-28 1:45 ` Pu Lehui [this message]
2026-07-22 7:23 ` [PATCH bpf v6 4/4] bpf, cgroup: Fix storage null-ptr-deref after replacing prog Pu Lehui
2026-07-27 23:17 ` [PATCH bpf v6 0/4] Fixes for bpf link update Andrii Nakryiko
2026-07-28 1:54 ` Pu Lehui
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=db71c3a2-43d9-458f-8cbf-e682338a33d8@huawei.com \
--to=pulehui@huawei.com \
--cc=ameryhung@gmail.com \
--cc=andrii.nakryiko@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=emil@etsalapatis.com \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.lau@linux.dev \
--cc=memxor@gmail.com \
--cc=mykyta.yatsenko5@gmail.com \
--cc=pulehui@huaweicloud.com \
--cc=song@kernel.org \
--cc=yonghong.song@linux.dev \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®