]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
bpf: Add support for uprobe multi session context
authorJiri Olsa <jolsa@kernel.org>
Fri, 8 Nov 2024 13:45:35 +0000 (14:45 +0100)
committerAndrii Nakryiko <andrii@kernel.org>
Mon, 11 Nov 2024 16:18:04 +0000 (08:18 -0800)
Placing bpf_session_run_ctx layer in between bpf_run_ctx and
bpf_uprobe_multi_run_ctx, so the session data can be retrieved
from uprobe_multi link.

Plus granting session kfuncs access to uprobe session programs.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241108134544.480660-5-jolsa@kernel.org
kernel/trace/bpf_trace.c

index 9c04b1364de2c506edab5d7c96c829ee40601598..949a3870946c381820e8fa7194851b84593d17d9 100644 (file)
@@ -3120,7 +3120,7 @@ struct bpf_uprobe_multi_link {
 };
 
 struct bpf_uprobe_multi_run_ctx {
-       struct bpf_run_ctx run_ctx;
+       struct bpf_session_run_ctx session_ctx;
        unsigned long entry_ip;
        struct bpf_uprobe *uprobe;
 };
@@ -3231,16 +3231,22 @@ static const struct bpf_link_ops bpf_uprobe_multi_link_lops = {
 
 static int uprobe_prog_run(struct bpf_uprobe *uprobe,
                           unsigned long entry_ip,
-                          struct pt_regs *regs)
+                          struct pt_regs *regs,
+                          bool is_return, void *data)
 {
        struct bpf_uprobe_multi_link *link = uprobe->link;
        struct bpf_uprobe_multi_run_ctx run_ctx = {
+               .session_ctx = {
+                       .is_return = is_return,
+                       .data = data,
+               },
                .entry_ip = entry_ip,
                .uprobe = uprobe,
        };
        struct bpf_prog *prog = link->link.prog;
        bool sleepable = prog->sleepable;
        struct bpf_run_ctx *old_run_ctx;
+       int err;
 
        if (link->task && !same_thread_group(current, link->task))
                return 0;
@@ -3252,8 +3258,8 @@ static int uprobe_prog_run(struct bpf_uprobe *uprobe,
 
        migrate_disable();
 
-       old_run_ctx = bpf_set_run_ctx(&run_ctx.run_ctx);
-       bpf_prog_run(link->link.prog, regs);
+       old_run_ctx = bpf_set_run_ctx(&run_ctx.session_ctx.run_ctx);
+       err = bpf_prog_run(link->link.prog, regs);
        bpf_reset_run_ctx(old_run_ctx);
 
        migrate_enable();
@@ -3262,7 +3268,7 @@ static int uprobe_prog_run(struct bpf_uprobe *uprobe,
                rcu_read_unlock_trace();
        else
                rcu_read_unlock();
-       return 0;
+       return err;
 }
 
 static bool
@@ -3282,7 +3288,7 @@ uprobe_multi_link_handler(struct uprobe_consumer *con, struct pt_regs *regs,
        int ret;
 
        uprobe = container_of(con, struct bpf_uprobe, consumer);
-       ret = uprobe_prog_run(uprobe, instruction_pointer(regs), regs);
+       ret = uprobe_prog_run(uprobe, instruction_pointer(regs), regs, false, data);
        if (uprobe->session)
                return ret ? UPROBE_HANDLER_IGNORE : 0;
        return 0;
@@ -3295,7 +3301,7 @@ uprobe_multi_link_ret_handler(struct uprobe_consumer *con, unsigned long func, s
        struct bpf_uprobe *uprobe;
 
        uprobe = container_of(con, struct bpf_uprobe, consumer);
-       uprobe_prog_run(uprobe, func, regs);
+       uprobe_prog_run(uprobe, func, regs, true, data);
        return 0;
 }
 
@@ -3303,7 +3309,8 @@ static u64 bpf_uprobe_multi_entry_ip(struct bpf_run_ctx *ctx)
 {
        struct bpf_uprobe_multi_run_ctx *run_ctx;
 
-       run_ctx = container_of(current->bpf_ctx, struct bpf_uprobe_multi_run_ctx, run_ctx);
+       run_ctx = container_of(current->bpf_ctx, struct bpf_uprobe_multi_run_ctx,
+                              session_ctx.run_ctx);
        return run_ctx->entry_ip;
 }
 
@@ -3311,7 +3318,8 @@ static u64 bpf_uprobe_multi_cookie(struct bpf_run_ctx *ctx)
 {
        struct bpf_uprobe_multi_run_ctx *run_ctx;
 
-       run_ctx = container_of(current->bpf_ctx, struct bpf_uprobe_multi_run_ctx, run_ctx);
+       run_ctx = container_of(current->bpf_ctx, struct bpf_uprobe_multi_run_ctx,
+                              session_ctx.run_ctx);
        return run_ctx->uprobe->cookie;
 }
 
@@ -3505,7 +3513,7 @@ static int bpf_kprobe_multi_filter(const struct bpf_prog *prog, u32 kfunc_id)
        if (!btf_id_set8_contains(&kprobe_multi_kfunc_set_ids, kfunc_id))
                return 0;
 
-       if (!is_kprobe_session(prog))
+       if (!is_kprobe_session(prog) && !is_uprobe_session(prog))
                return -EACCES;
 
        return 0;