From: Amery Hung <ameryhung@gmail.com>
To: bpf@vger.kernel.org
Cc: daniel@iogearbox.net, andrii@kernel.org,
alexei.starovoitov@gmail.com, martin.lau@kernel.org,
ameryhung@gmail.com, kernel-team@meta.com
Subject: [RFC PATCH 1/4] bpf: Allow creating dynptr from uptr
Date: Thu, 20 Mar 2025 14:40:55 -0700 [thread overview]
Message-ID: <20250320214058.2946857-2-ameryhung@gmail.com> (raw)
In-Reply-To: <20250320214058.2946857-1-ameryhung@gmail.com>
Currently, bpf_dynptr_from_mem() only allows creating dynptr from local
memory of reg type PTR_TO_MAP_VALUE, specifically ringbuf. This patch
futher supports PTR_TO_MEM as a valid source of data.
For a reg to be PTR_TO_MEM in the verifier:
- read map value with special field BPF_UPTR
- ld_imm64 kfunc (MEM_RDONLY)
- ld_imm64 other non-struct ksyms (MEM_RDONLY)
- return from helper with RET_PTR_TO_MEM: ringbuf_reserve (MEM_RINGBUF)
and dynptr_from_data
- return from helper with RET_PTR_TO_MEM_OR_BTF_ID: this_cpu_ptr,
per_cpu_ptr and the return type is not struct (both MEM_RDONLY)
- return from special kfunc: dynptr_slice (MEM_RDONLY), dynptr_slice_rdwr
- return from non-special kfunc that returns non-struct pointer:
hid_bpf_get_data
Since this patch only allows PTR_TO_MEM without any flags, so only uptr,
global subprog argument, non-special kfunc that returns non-struct ptr,
return of bpf_dynptr_slice_rdwr() and bpf_dynptr_data() will be allowed
additionally.
The last two will allow creating dynptr from dynptr data. Will they create
any problem?
Signed-off-by: Amery Hung <ameryhung@gmail.com>
---
include/uapi/linux/bpf.h | 4 +++-
kernel/bpf/verifier.c | 3 ++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h
index beac5cdf2d2c..2b1335fa1173 100644
--- a/include/uapi/linux/bpf.h
+++ b/include/uapi/linux/bpf.h
@@ -5562,7 +5562,9 @@ union bpf_attr {
* Description
* Get a dynptr to local memory *data*.
*
- * *data* must be a ptr to a map value.
+ * *data* must be a ptr to valid local memory such as a map value, a uptr,
+ * a null-checked non-void pointer pass to a global subprogram, and allocated
+ * memory returned by a kfunc such as hid_bpf_get_data(),
* The maximum *size* supported is DYNPTR_MAX_SIZE.
* *flags* is currently unused.
* Return
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index 22c4edc8695c..d22310d1642c 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -11307,7 +11307,8 @@ static int check_helper_call(struct bpf_verifier_env *env, struct bpf_insn *insn
}
break;
case BPF_FUNC_dynptr_from_mem:
- if (regs[BPF_REG_1].type != PTR_TO_MAP_VALUE) {
+ if (regs[BPF_REG_1].type != PTR_TO_MAP_VALUE &&
+ regs[BPF_REG_1].type != PTR_TO_MEM) {
verbose(env, "Unsupported reg type %s for bpf_dynptr_from_mem data\n",
reg_type_str(env, regs[BPF_REG_1].type));
return -EACCES;
--
2.47.1
next prev parent reply other threads:[~2025-03-20 21:41 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-20 21:40 [RFC PATCH 0/4] uptr KV store Amery Hung
2025-03-20 21:40 ` Amery Hung [this message]
2025-03-20 22:45 ` [RFC PATCH 1/4] bpf: Allow creating dynptr from uptr Andrii Nakryiko
2025-03-20 23:20 ` Amery Hung
2025-03-28 18:59 ` Andrii Nakryiko
2025-03-20 21:40 ` [RFC PATCH 2/4] selftests/bpf: Implement basic uptr KV store Amery Hung
2025-03-20 21:40 ` [RFC PATCH 3/4] selftests/bpf: Test basic uptr KV store operations from user space and bpf Amery Hung
2025-03-20 21:40 ` [RFC PATCH 4/4] selftests/bpf: Test changing KV store value layout Amery Hung
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=20250320214058.2946857-2-ameryhung@gmail.com \
--to=ameryhung@gmail.com \
--cc=alexei.starovoitov@gmail.com \
--cc=andrii@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=kernel-team@meta.com \
--cc=martin.lau@kernel.org \
/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