Skip to content

Commit 632b5ee

Browse files
frankQAQ-wangNobody
authored andcommitted
libbpf: Support repeated legacy kprobes on same function
If repeated legacy kprobes on same function in one process, libbpf will register using the same probe name and got -EBUSY error. So append index to the probe name format to fix this problem. Co-developed-by: Chengming Zhou <[email protected]> Signed-off-by: Qiang Wang <[email protected]> Signed-off-by: Chengming Zhou <[email protected]>
1 parent 99bdf1e commit 632b5ee

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/lib/bpf/libbpf.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9916,7 +9916,10 @@ static int append_to_file(const char *file, const char *fmt, ...)
99169916
static void gen_kprobe_legacy_event_name(char *buf, size_t buf_sz,
99179917
const char *kfunc_name, size_t offset)
99189918
{
9919-
snprintf(buf, buf_sz, "libbpf_%u_%s_0x%zx", getpid(), kfunc_name, offset);
9919+
static int index = 0;
9920+
9921+
snprintf(buf, buf_sz, "libbpf_%u_%s_0x%zx_%d", getpid(), kfunc_name, offset,
9922+
__sync_fetch_and_add(&index, 1));
99209923
}
99219924

99229925
static int add_kprobe_event_legacy(const char *probe_name, bool retprobe,

0 commit comments

Comments
 (0)