[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <B63E92E2-8F9F-4754-B76E-BF60E6FFF58F@meta.com>
Date: Sat, 21 Jun 2025 03:50:04 +0000
From: Song Liu <songliubraving@...a.com>
To: Tejun Heo <tj@...nel.org>
CC: Song Liu <song@...nel.org>, "bpf@...r.kernel.org" <bpf@...r.kernel.org>,
"linux-fsdevel@...r.kernel.org" <linux-fsdevel@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-security-module@...r.kernel.org"
<linux-security-module@...r.kernel.org>,
Kernel Team <kernel-team@...a.com>,
"andrii@...nel.org" <andrii@...nel.org>,
"eddyz87@...il.com"
<eddyz87@...il.com>,
"ast@...nel.org" <ast@...nel.org>,
"daniel@...earbox.net" <daniel@...earbox.net>,
"martin.lau@...ux.dev"
<martin.lau@...ux.dev>,
"viro@...iv.linux.org.uk" <viro@...iv.linux.org.uk>,
"brauner@...nel.org" <brauner@...nel.org>,
"jack@...e.cz" <jack@...e.cz>,
"kpsingh@...nel.org" <kpsingh@...nel.org>,
"mattbobrowski@...gle.com"
<mattbobrowski@...gle.com>,
"amir73il@...il.com" <amir73il@...il.com>,
"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
"daan.j.demeyer@...il.com" <daan.j.demeyer@...il.com>
Subject: Re: [PATCH v2 bpf-next 2/5] bpf: Introduce bpf_cgroup_read_xattr to
read xattr of cgroup's node
> On Jun 20, 2025, at 7:44 PM, Tejun Heo <tj@...nel.org> wrote:
>
> On Thu, Jun 19, 2025 at 03:01:11PM -0700, Song Liu wrote:
>> BPF programs, such as LSM and sched_ext, would benefit from tags on
>> cgroups. One common practice to apply such tags is to set xattrs on
>> cgroupfs folders.
>>
>> Introduce kfunc bpf_cgroup_read_xattr, which allows reading cgroup's
>> xattr.
>>
>> Note that, we already have bpf_get_[file|dentry]_xattr. However, these
>> two APIs are not ideal for reading cgroupfs xattrs, because:
>>
>> 1) These two APIs only works in sleepable contexts;
>> 2) There is no kfunc that matches current cgroup to cgroupfs dentry.
>>
>> Signed-off-by: Song Liu <song@...nel.org>
> ...
>> +__bpf_kfunc int bpf_cgroup_read_xattr(struct cgroup *cgroup, const char *name__str,
>> + struct bpf_dynptr *value_p)
>> +{
>> + struct bpf_dynptr_kern *value_ptr = (struct bpf_dynptr_kern *)value_p;
>> + u32 value_len;
>> + void *value;
>> +
>> + /* Only allow reading "user.*" xattrs */
>> + if (strncmp(name__str, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
>> + return -EPERM;
>
> Just out of curiosity, what security holes are there if we allow BPF
> programs to read other xattrs? Given how priviledged BPF programs already
> are, does this make meaningful difference?
There are some xatters that we shouldn’t read, for example, other
security.* xattrs (security.selinux etc.).
We can probably allow BPF LSM programs to read security.bpf.* xattrs,
on cgroup nodes, just like bpf_get_[file|dentry]_xattr. But that
requires some extra logic.
Thanks,
Song
Powered by blists - more mailing lists