Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
cked-by: Toke Høiland-Jørgensen [off-list ref]
v1 -> v2: Remove requirement for attach type hint in API
v2 -> v3: Moved common warning to __find_vmlinux_btf_id, requested by Andrii
Updated the xdp_bpf2bpf test to use this new API
v4 -> v4: Split up patch, update libbpf.map version
Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
tools/lib/bpf/libbpf.c | 34 ++++++++++++++++++++++++++++++----
tools/lib/bpf/libbpf.h | 4 ++++
tools/lib/bpf/libbpf.map | 2 ++
3 files changed, 36 insertions(+), 4 deletions(-)
@@ -6583,6 +6583,9 @@ static inline int __find_vmlinux_btf_id(struct btf *btf, const char *name,elseerr=btf__find_by_name_kind(btf,name,BTF_KIND_FUNC);+if(err<=0)+pr_warn("%s is not found in vmlinux BTF\n",name);+returnerr;}
@@ -6655,8 +6658,6 @@ static int libbpf_find_attach_btf_id(struct bpf_program *prog)err=__find_vmlinux_btf_id(prog->obj->btf_vmlinux,name+section_defs[i].len,attach_type);-if(err<=0)-pr_warn("%s is not found in vmlinux BTF\n",name);returnerr;}pr_warn("failed to identify btf_id based on ELF section name '%s'\n",name);
Use the new bpf_program__set_attach_target() API in the xdp_bpf2bpf
selftest so it can be referenced as an example on how to use it.
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
.../testing/selftests/bpf/prog_tests/xdp_bpf2bpf.c | 16 +++++++++++++---
.../testing/selftests/bpf/progs/test_xdp_bpf2bpf.c | 4 ++--
2 files changed, 15 insertions(+), 5 deletions(-)
@@ -14,7 +14,7 @@ void test_xdp_bpf2bpf(void)structtest_xdp*pkt_skel=NULL;structtest_xdp_bpf2bpf*ftrace_skel=NULL;structvipkey4={.protocol=6,.family=AF_INET};-DECLARE_LIBBPF_OPTS(bpf_object_open_opts,opts);+structbpf_program*prog;/* Load XDP program to introspect */pkt_skel=test_xdp__open_and_load();
@@ -27,11 +27,21 @@ void test_xdp_bpf2bpf(void)bpf_map_update_elem(map_fd,&key4,&value4,0);/* Load trace program */-opts.attach_prog_fd=pkt_fd,-ftrace_skel=test_xdp_bpf2bpf__open_opts(&opts);+ftrace_skel=test_xdp_bpf2bpf__open();if(CHECK(!ftrace_skel,"__open","ftrace skeleton failed\n"))gotoout;+/* Demonstrate the bpf_program__set_attach_target() API rather than+*theloadwithoptions,i.e.opts.attach_prog_fd.+*/+prog=*ftrace_skel->skeleton->progs[0].prog;+bpf_program__set_expected_attach_type(prog,BPF_TRACE_FENTRY);+bpf_program__set_attach_target(prog,pkt_fd,"_xdp_tx_iptunnel");++prog=*ftrace_skel->skeleton->progs[1].prog;+bpf_program__set_expected_attach_type(prog,BPF_TRACE_FEXIT);+bpf_program__set_attach_target(prog,pkt_fd,"_xdp_tx_iptunnel");+err=test_xdp_bpf2bpf__load(ftrace_skel);if(CHECK(err,"__load","ftrace skeleton failed\n"))gotoout;
From: Jakub Sitnicki <jakub@cloudflare.com> Date: 2020-02-18 16:34:14
Hey Eelco,
On Mon, Feb 17, 2020 at 12:43 PM GMT, Eelco Chaudron wrote:
quoted hunk
Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
tools/lib/bpf/libbpf.c | 34 ++++++++++++++++++++++++++++++----
tools/lib/bpf/libbpf.h | 4 ++++
tools/lib/bpf/libbpf.map | 2 ++
3 files changed, 36 insertions(+), 4 deletions(-)
@@ -14,7 +14,7 @@ void test_xdp_bpf2bpf(void)structtest_xdp*pkt_skel=NULL;structtest_xdp_bpf2bpf*ftrace_skel=NULL;structvipkey4={.protocol=6,.family=AF_INET};-DECLARE_LIBBPF_OPTS(bpf_object_open_opts,opts);+structbpf_program*prog;/* Load XDP program to introspect */pkt_skel=test_xdp__open_and_load();
@@ -27,11 +27,21 @@ void test_xdp_bpf2bpf(void)bpf_map_update_elem(map_fd,&key4,&value4,0);/* Load trace program */-opts.attach_prog_fd=pkt_fd,-ftrace_skel=test_xdp_bpf2bpf__open_opts(&opts);+ftrace_skel=test_xdp_bpf2bpf__open();if(CHECK(!ftrace_skel,"__open","ftrace skeleton failed\n"))gotoout;+/* Demonstrate the bpf_program__set_attach_target() API rather than+*theloadwithoptions,i.e.opts.attach_prog_fd.+*/+prog=*ftrace_skel->skeleton->progs[0].prog;
it took me a while to understand what's going on here... :) You are
not supposed to peek into ftrace_skel->skeleton, it's an "internal"
object that's passed into libbpf.
It's better to write it as a nice and short:
prog = ftrace_skel->progs.trace_on_entry;
On Tue, Feb 18, 2020 at 8:34 AM Jakub Sitnicki [off-list ref] wrote:
Hey Eelco,
On Mon, Feb 17, 2020 at 12:43 PM GMT, Eelco Chaudron wrote:
quoted
Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
tools/lib/bpf/libbpf.c | 34 ++++++++++++++++++++++++++++++----
tools/lib/bpf/libbpf.h | 4 ++++
tools/lib/bpf/libbpf.map | 2 ++
3 files changed, 36 insertions(+), 4 deletions(-)
@@ -8132,6 +8133,31 @@ void bpf_program__bpil_offs_to_addr(struct bpf_prog_info_linear *info_linear) } }+int bpf_program__set_attach_target(struct bpf_program *prog,+ int attach_prog_fd,+ const char *attach_func_name)+{+ int btf_id;++ if (!prog || attach_prog_fd < 0 || !attach_func_name)+ return -EINVAL;++ if (attach_prog_fd)+ btf_id = libbpf_find_prog_btf_id(attach_func_name,+ attach_prog_fd);+ else+ btf_id = __find_vmlinux_btf_id(prog->obj->btf_vmlinux,+ attach_func_name,+ prog->expected_attach_type);++ if (btf_id <= 0)+ return btf_id;
Looks like we can get 0 as return value on both error and success
(below)? Is that intentional?
Neither libbpf_find_prog_btf_id nor __find_vmlinux_btf_id are going to
return 0 on failure. But I do agree that if (btf_id < 0) check would
be better here.
With that minor nit:
Acked-by: Andrii Nakryiko <redacted>
quoted
+
+ prog->attach_btf_id = btf_id;
+ prog->attach_prog_fd = attach_prog_fd;
+ return 0;
+}
+
int parse_cpu_mask_str(const char *s, bool **mask, int *mask_sz)
{
int err = 0, n, len, start, end = -1;
On Mon, Feb 17, 2020 at 5:03 AM Eelco Chaudron [off-list ref] wrote:
quoted
Use the new bpf_program__set_attach_target() API in the xdp_bpf2bpf
selftest so it can be referenced as an example on how to use it.
nit: extra empty line?
ACK <SNIP>
quoted
+ prog = *ftrace_skel->skeleton->progs[0].prog;
it took me a while to understand what's going on here... :) You are
not supposed to peek into ftrace_skel->skeleton, it's an "internal"
object that's passed into libbpf.
It's better to write it as a nice and short:
prog = ftrace_skel->progs.trace_on_entry;
On Tue, Feb 18, 2020 at 8:34 AM Jakub Sitnicki [off-list ref]
wrote:
quoted
Hey Eelco,
On Mon, Feb 17, 2020 at 12:43 PM GMT, Eelco Chaudron wrote:
quoted
Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
tools/lib/bpf/libbpf.c | 34 ++++++++++++++++++++++++++++++----
tools/lib/bpf/libbpf.h | 4 ++++
tools/lib/bpf/libbpf.map | 2 ++
3 files changed, 36 insertions(+), 4 deletions(-)
Looks like we can get 0 as return value on both error and success
(below)? Is that intentional?
Neither libbpf_find_prog_btf_id nor __find_vmlinux_btf_id are going to
return 0 on failure. But I do agree that if (btf_id < 0) check would
be better here.
Is see in theory btf__find_by_name_kind() could return 0:
if (kind == BTF_KIND_UNKN || !strcmp(type_name, "void"))
return 0;
But for our case, this will not happen and is invalid, so what about
just to make sure its future proof?:
if (btf_id <= 0)
return btf_id ? btf_id : -ENOENT;
With that minor nit:
Acked-by: Andrii Nakryiko <redacted>
quoted
quoted
+
+ prog->attach_btf_id = btf_id;
+ prog->attach_prog_fd = attach_prog_fd;
+ return 0;
+}
+
int parse_cpu_mask_str(const char *s, bool **mask, int *mask_sz)
{
int err = 0, n, len, start, end = -1;
On Wed, Feb 19, 2020 at 3:06 AM Eelco Chaudron [off-list ref] wrote:
On 18 Feb 2020, at 22:24, Andrii Nakryiko wrote:
quoted
On Tue, Feb 18, 2020 at 8:34 AM Jakub Sitnicki [off-list ref]
wrote:
quoted
Hey Eelco,
On Mon, Feb 17, 2020 at 12:43 PM GMT, Eelco Chaudron wrote:
quoted
Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
tools/lib/bpf/libbpf.c | 34 ++++++++++++++++++++++++++++++----
tools/lib/bpf/libbpf.h | 4 ++++
tools/lib/bpf/libbpf.map | 2 ++
3 files changed, 36 insertions(+), 4 deletions(-)
Looks like we can get 0 as return value on both error and success
(below)? Is that intentional?
Neither libbpf_find_prog_btf_id nor __find_vmlinux_btf_id are going to
return 0 on failure. But I do agree that if (btf_id < 0) check would
be better here.
Is see in theory btf__find_by_name_kind() could return 0:
if (kind == BTF_KIND_UNKN || !strcmp(type_name, "void"))
return 0;
But for our case, this will not happen and is invalid, so what about
just to make sure its future proof?:
if (btf_id <= 0)
return btf_id ? btf_id : -ENOENT;
I don't see how void can be the right attach type, so I'd keep it
simple: if (btf_id < 0) return btf_id.
If it so happens that 0 is returned, it will fail at attach time anyways.
quoted
With that minor nit:
Acked-by: Andrii Nakryiko <redacted>
quoted
quoted
+
+ prog->attach_btf_id = btf_id;
+ prog->attach_prog_fd = attach_prog_fd;
+ return 0;
+}
+
int parse_cpu_mask_str(const char *s, bool **mask, int *mask_sz)
{
int err = 0, n, len, start, end = -1;
On Wed, Feb 19, 2020 at 3:06 AM Eelco Chaudron [off-list ref] wrote:
quoted
On 18 Feb 2020, at 22:24, Andrii Nakryiko wrote:
quoted
On Tue, Feb 18, 2020 at 8:34 AM Jakub Sitnicki [off-list ref]
wrote:
quoted
Hey Eelco,
On Mon, Feb 17, 2020 at 12:43 PM GMT, Eelco Chaudron wrote:
quoted
Currently when you want to attach a trace program to a bpf program
the section name needs to match the tracepoint/function semantics.
However the addition of the bpf_program__set_attach_target() API
allows you to specify the tracepoint/function dynamically.
The call flow would look something like this:
xdp_fd = bpf_prog_get_fd_by_id(id);
trace_obj = bpf_object__open_file("func.o", NULL);
prog = bpf_object__find_program_by_title(trace_obj,
"fentry/myfunc");
bpf_program__set_expected_attach_type(prog, BPF_TRACE_FENTRY);
bpf_program__set_attach_target(prog, xdp_fd,
"xdpfilt_blk_all");
bpf_object__load(trace_obj)
Acked-by: Toke Høiland-Jørgensen <redacted>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
---
tools/lib/bpf/libbpf.c | 34 ++++++++++++++++++++++++++++++----
tools/lib/bpf/libbpf.h | 4 ++++
tools/lib/bpf/libbpf.map | 2 ++
3 files changed, 36 insertions(+), 4 deletions(-)
Looks like we can get 0 as return value on both error and success
(below)? Is that intentional?
Neither libbpf_find_prog_btf_id nor __find_vmlinux_btf_id are going to
return 0 on failure. But I do agree that if (btf_id < 0) check would
be better here.
Is see in theory btf__find_by_name_kind() could return 0:
if (kind == BTF_KIND_UNKN || !strcmp(type_name, "void"))
return 0;
But for our case, this will not happen and is invalid, so what about
just to make sure its future proof?:
if (btf_id <= 0)
return btf_id ? btf_id : -ENOENT;
I don't see how void can be the right attach type, so I'd keep it
simple: if (btf_id < 0) return btf_id.
If it so happens that 0 is returned, it will fail at attach time anyways.
Ok, will send out a v5 later today…
quoted
quoted
With that minor nit:
Acked-by: Andrii Nakryiko <redacted>
quoted
quoted
+
+ prog->attach_btf_id = btf_id;
+ prog->attach_prog_fd = attach_prog_fd;
+ return 0;
+}
+
int parse_cpu_mask_str(const char *s, bool **mask, int *mask_sz)
{
int err = 0, n, len, start, end = -1;