From: sashiko-bot@kernel.org
To: "Steven Rostedt" <rostedt@goodmis.org>
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH v5] tracing/eprobes: Allow use of BTF names to dereference pointers
Date: Tue, 19 May 2026 17:48:47 +0000 [thread overview]
Message-ID: <20260519174848.176A6C2BCB3@smtp.kernel.org> (raw)
In-Reply-To: <20260519130144.40e71a00@fedora>
Thank you for your contribution! Sashiko AI review found 5 potential issue(s) to consider:
- [High] Using `(STRUCT)` typecasts for non-eprobes leaves the base fetch instruction uninitialized (`FETCH_OP_NOP`), silently breaking the probe.
- [High] Prematurely clearing `TPARG_FL_TYPECAST` causes cross-BTF type confusion and breaks string fetches.
- [Medium] Erroneous caching of `struct_btf` restricts a single trace probe to using typecasts from only one BTF object, preventing cross-module lookups.
- [Medium] Cross-BTF string table access in `parse_btf_arg()` causes invalid string comparisons.
- [Low] `clear_btf_context()` fails to clear `ctx->struct_btf` after dropping its reference.
--
commit de4b6287a7069fde24b0e0f679a545a06fb9ae6c
Author: Steven Rostedt <rostedt@goodmis.org>
tracing/eprobes: Allow use of BTF names to dereference pointers
Add syntax to the parsing of eprobes to be able to typecast a trace event
field that is a pointer to a structure.
> diff --git a/kernel/trace/trace_probe.c b/kernel/trace/trace_probe.c
> index e1c73065dae51..2bc9f4ca8aa7e 100644
> --- a/kernel/trace/trace_probe.c
> +++ b/kernel/trace/trace_probe.c
> @@ -464,6 +470,27 @@ static const char *fetch_type_from_btf_type(struct btf *btf,
> return NULL;
> }
>
> +static int query_btf_struct(const char *sname, struct traceprobe_parse_context *ctx)
> +{
> + int id;
> +
> + if (!ctx->struct_btf) {
> + struct btf *btf;
> +
> + id = bpf_find_btf_id(sname, BTF_KIND_STRUCT, &btf);
> + if (id < 0)
> + return id;
> + ctx->struct_btf = btf;
> + } else {
> + id = btf_find_by_name_kind(ctx->struct_btf, sname, BTF_KIND_STRUCT);
[Severity: Medium]
Does caching struct_btf here restrict a single trace probe event to using
typecasts from only one BTF object?
If a probe attempts to typecast structures from two different kernel
modules, wouldn't the lookup for the second module's struct fail because
it only searches the cached BTF object of the first module (or vmlinux)?
> + if (id < 0)
> + return id;
> + }
> +
> + ctx->last_struct = btf_type_by_id(ctx->struct_btf, id);
> + return 0;
> +}
[ ... ]
> @@ -515,6 +542,10 @@ static void clear_btf_context(struct traceprobe_parse_context *ctx)
> ctx->params = NULL;
> ctx->nr_params = 0;
> }
> + if (ctx->struct_btf) {
> + btf_put(ctx->struct_btf);
> + ctx->last_struct = NULL;
[Severity: Low]
Should ctx->struct_btf be explicitly set to NULL after btf_put() drops
the reference?
While the traceprobe_parse_context might be destroyed shortly after
parsing completes, leaving a dangling pointer could potentially lead to a
use-after-free and double-free if any future refactoring reuses the
parsing context across multiple trace events.
> + }
> }
[ ... ]
> @@ -672,7 +739,7 @@ static int parse_btf_arg(char *varname,
> return 0;
> }
>
> - if (!ctx->btf) {
> + if (!btf) {
> ret = query_btf_context(ctx);
> if (ret < 0 || ctx->nr_params == 0) {
> trace_probe_log_err(ctx->offset, NO_BTF_ENTRY);
> @@ -682,7 +749,7 @@ static int parse_btf_arg(char *varname,
> params = ctx->params;
>
> for (i = 0; i < ctx->nr_params; i++) {
> - const char *name = btf_name_by_offset(ctx->btf, params[i].name_off);
> + const char *name = btf_name_by_offset(btf, params[i].name_off);
[Severity: Medium]
When parsing a typecast argument, btf evaluates to ctx->struct_btf. The
parameter matching loop then calls btf_name_by_offset() using that btf.
Since params[i].name_off originates from the function's BTF (ctx->btf,
populated by previous non-typecast arguments), could this lead to reading
from the wrong string table if ctx->struct_btf is a different kernel
module?
This might result in invalid string comparisons or returning
(invalid-name-offset) if it reads out of bounds.
>
> if (name && !strcmp(name, varname)) {
> if (tparg_is_function_entry(ctx->flags)) {
[ ... ]
> @@ -1231,6 +1301,30 @@ parse_probe_arg(char *arg, const struct fetch_type *type,
> code->op = FETCH_OP_IMM;
> }
> break;
> + case '(':
> + tmp = strchr(arg, ')');
> + if (!tmp) {
> + trace_probe_log_err(ctx->offset + strlen(arg),
> + DEREF_OPEN_BRACE);
> + return -EINVAL;
> + }
> + *tmp = '\0';
> + ret = query_btf_struct(arg + 1, ctx);
> + *tmp = ')';
> +
> + if (ret < 0) {
> + trace_probe_log_err(ctx->offset + 1, NO_PTR_STRCT);
> + return -EINVAL;
> + }
> +
> + ctx->flags |= TPARG_FL_TYPECAST;
> + tmp++;
> +
> + ctx->offset += tmp - arg;
> + ret = parse_btf_arg(tmp, pcode, end, ctx);
[Severity: High]
When parse_probe_arg() evaluates the (STRUCT) syntax for kprobes or
fprobes, it sets TPARG_FL_TYPECAST and calls parse_btf_arg(). Inside
parse_btf_arg(), ctx_btf() evaluates to ctx->struct_btf, so it bypasses
query_btf_context() and jumps to found_type.
However, it doesn't seem to initialize code->op with a valid base fetch
instruction like FETCH_OP_ARG or FETCH_OP_REG.
Could this leave the base instruction as FETCH_OP_NOP (0)? If so, it
seems the base address would be 0, causing subsequent field dereferences
to safely fail on 0 + offset due to copy_from_kernel_nofault(). This might
allow unsupported syntax like (sk_buff)%di->dev to parse but silently
fetch nothing.
> + ctx->flags &= ~TPARG_FL_TYPECAST;
[Severity: High]
The TPARG_FL_TYPECAST flag is cleared here, but ctx->last_type still
points to a type originating from ctx->struct_btf.
Later in traceprobe_parse_probe_arg_body(),
check_prepare_btf_string_fetch() is called. Since the flag is cleared,
ctx_btf() will incorrectly return ctx->btf (vmlinux for kprobes, or
NULL for eprobes).
Does this cause check_prepare_btf_string_fetch() to return 0 for eprobes
and skip adding the necessary dummy FETCH_OP_DEREF for string fetches?
Without this dummy dereference, string fetches on character pointers
in eprobes might fail by reading the raw pointer value itself as a string.
Also, for kprobes, could this cause type confusion if
btf_type_skip_modifiers() looks up a module's type ID inside the vmlinux
BTF?
> + ctx->last_struct = NULL;
> + break;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260519130144.40e71a00@fedora?part=1
next prev parent reply other threads:[~2026-05-19 17:48 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-19 17:01 [PATCH v5] tracing/eprobes: Allow use of BTF names to dereference pointers Steven Rostedt
2026-05-19 17:28 ` Steven Rostedt
2026-05-19 17:37 ` Steven Rostedt
2026-05-19 17:48 ` sashiko-bot [this message]
2026-05-19 18:17 ` Steven Rostedt
2026-05-20 6:20 ` Masami Hiramatsu
2026-05-20 16:48 ` Steven Rostedt
2026-05-21 1:58 ` Masami Hiramatsu
2026-05-21 2:55 ` Steven Rostedt
2026-05-19 21:09 ` kernel test robot
2026-05-19 22:03 ` kernel test robot
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=20260519174848.176A6C2BCB3@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=sashiko-reviews@lists.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 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.