From: KP Singh <kpsingh@kernel.org>
To: bpf@vger.kernel.org
Cc: KP Singh <kpsingh@kernel.org>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Benjamin Tissoires <benjamin.tissoires@redhat.com>,
Yosry Ahmed <yosryahmed@google.com>
Subject: [PATCH v2 bpf-next 4/5] bpf: Add a bpf_getxattr kfunc
Date: Tue, 21 Jun 2022 01:28:10 +0000 [thread overview]
Message-ID: <20220621012811.2683313-5-kpsingh@kernel.org> (raw)
In-Reply-To: <20220621012811.2683313-1-kpsingh@kernel.org>
LSMs like SELinux store security state in xattrs. bpf_getxattr enables
BPF LSM to implement similar functionality. In combination with
bpf_local_storage, xattrs can be used to develop more complex security
policies.
This kfunc wraps around __vfs_getxattr which can sleep and is,
therefore, limited to sleepable programs using the newly added
sleepable_set for kfuncs.
Signed-off-by: KP Singh <kpsingh@kernel.org>
---
kernel/trace/bpf_trace.c | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/kernel/trace/bpf_trace.c b/kernel/trace/bpf_trace.c
index 4be976cf7d63..b5682d55ebde 100644
--- a/kernel/trace/bpf_trace.c
+++ b/kernel/trace/bpf_trace.c
@@ -20,6 +20,7 @@
#include <linux/fprobe.h>
#include <linux/bsearch.h>
#include <linux/sort.h>
+#include <linux/xattr.h>
#include <net/bpf_sk_storage.h>
@@ -1181,6 +1182,41 @@ static const struct bpf_func_proto bpf_get_func_arg_cnt_proto = {
.arg1_type = ARG_PTR_TO_CTX,
};
+noinline __weak ssize_t bpf_getxattr(struct dentry *dentry, struct inode *inode,
+ const char *name, void *value, int size)
+{
+ return __vfs_getxattr(dentry, inode, name, value, size);
+}
+
+BTF_SET_START(bpf_trace_kfunc_ids)
+BTF_ID(func, bpf_getxattr)
+BTF_SET_END(bpf_trace_kfunc_ids)
+
+BTF_SET_START(bpf_trace_sleepable_kfunc_ids)
+BTF_ID(func, bpf_getxattr)
+BTF_SET_END(bpf_trace_sleepable_kfunc_ids)
+
+static const struct btf_kfunc_id_set bpf_trace_kfunc_set = {
+ .owner = THIS_MODULE,
+ .check_set = &bpf_trace_kfunc_ids,
+ .sleepable_set = &bpf_trace_sleepable_kfunc_ids,
+};
+
+static int __init bpf_trace_kfunc_init(void)
+{
+ int ret;
+
+ ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_TRACING,
+ &bpf_trace_kfunc_set);
+ if (!ret)
+ return ret;
+
+ return register_btf_kfunc_id_set(BPF_PROG_TYPE_LSM,
+ &bpf_trace_kfunc_set);
+
+}
+late_initcall(bpf_trace_kfunc_init);
+
static const struct bpf_func_proto *
bpf_tracing_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
{
--
2.37.0.rc0.104.g0611611a94-goog
next prev parent reply other threads:[~2022-06-21 1:28 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-21 1:28 [PATCH v2 bpf-next 0/5] Add bpf_getxattr KP Singh
2022-06-21 1:28 ` [PATCH v2 bpf-next 1/5] btf: Add a new kfunc set which allows to mark a function to be sleepable KP Singh
2022-06-21 1:28 ` [PATCH v2 bpf-next 2/5] bpf: kfunc support for ARG_PTR_TO_CONST_STR KP Singh
2022-06-21 12:50 ` Kumar Kartikeya Dwivedi
2022-06-21 16:15 ` KP Singh
2022-06-21 18:04 ` Joanne Koong
2022-06-21 20:19 ` KP Singh
2022-06-22 16:27 ` KP Singh
2022-06-21 1:28 ` [PATCH v2 bpf-next 3/5] bpf: Allow kfuncs to be used in LSM programs KP Singh
2022-06-21 12:36 ` Kumar Kartikeya Dwivedi
2022-06-21 16:00 ` Alexei Starovoitov
2022-06-21 16:15 ` KP Singh
2022-06-21 17:35 ` Kumar Kartikeya Dwivedi
2022-06-21 20:11 ` Alexei Starovoitov
2022-06-21 20:25 ` KP Singh
2022-06-22 1:17 ` Kumar Kartikeya Dwivedi
2022-06-21 1:28 ` KP Singh [this message]
2022-06-21 2:38 ` [PATCH v2 bpf-next 4/5] bpf: Add a bpf_getxattr kfunc kernel test robot
2022-06-21 3:20 ` kernel test robot
2022-06-21 7:18 ` KP Singh
2022-06-21 12:41 ` Kumar Kartikeya Dwivedi
2022-06-21 16:06 ` KP Singh
2022-06-21 1:28 ` [PATCH v2 bpf-next 5/5] bpf/selftests: Add a selftest for bpf_getxattr KP Singh
2022-06-21 12:46 ` [PATCH v2 bpf-next 0/5] Add bpf_getxattr Benjamin Tissoires
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=20220621012811.2683313-5-kpsingh@kernel.org \
--to=kpsingh@kernel.org \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=benjamin.tissoires@redhat.com \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=yosryahmed@google.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox