linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall
@ 2025-05-13  3:58 Jiayuan Chen
  2025-05-13 21:19 ` Alexei Starovoitov
  0 siblings, 1 reply; 6+ messages in thread
From: Jiayuan Chen @ 2025-05-13  3:58 UTC (permalink / raw)
  To: bpf
  Cc: Jiayuan Chen, Quentin Monnet, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
	Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
	Hao Luo, Jiri Olsa, linux-kernel

This patch exposes the btf_custom_path feature to bpftool, allowing users
to specify a custom BTF file when loading BPF programs using prog load or
prog loadall commands. This feature is already supported by libbpf, and
this patch makes it accessible through the bpftool command-line interface.

Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
---
 tools/bpf/bpftool/prog.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
index f010295350be..63f84e765b34 100644
--- a/tools/bpf/bpftool/prog.c
+++ b/tools/bpf/bpftool/prog.c
@@ -1681,8 +1681,17 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
 		} else if (is_prefix(*argv, "autoattach")) {
 			auto_attach = true;
 			NEXT_ARG();
+		} else if (is_prefix(*argv, "custom_btf")) {
+			NEXT_ARG();
+
+			if (!REQ_ARGS(1))
+				goto err_free_reuse_maps;
+
+			open_opts.btf_custom_path = GET_ARG();
 		} else {
-			p_err("expected no more arguments, 'type', 'map' or 'dev', got: '%s'?",
+			p_err("expected no more arguments, "
+			      "'type', 'map', 'dev', 'offload_dev', 'xdpmeta_dev', 'pinmaps', "
+			      "'autoattach', or 'custom_btf', got: '%s'?",
 			      *argv);
 			goto err_free_reuse_maps;
 		}
-- 
2.47.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall
  2025-05-13  3:58 [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall Jiayuan Chen
@ 2025-05-13 21:19 ` Alexei Starovoitov
  2025-05-14  1:51   ` Jiayuan Chen
  0 siblings, 1 reply; 6+ messages in thread
From: Alexei Starovoitov @ 2025-05-13 21:19 UTC (permalink / raw)
  To: Jiayuan Chen
  Cc: bpf, Quentin Monnet, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
	Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
	Hao Luo, Jiri Olsa, LKML

On Mon, May 12, 2025 at 8:59 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
>
> This patch exposes the btf_custom_path feature to bpftool, allowing users
> to specify a custom BTF file when loading BPF programs using prog load or
> prog loadall commands. This feature is already supported by libbpf, and
> this patch makes it accessible through the bpftool command-line interface.
>
> Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> ---
>  tools/bpf/bpftool/prog.c | 11 ++++++++++-
>  1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
> index f010295350be..63f84e765b34 100644
> --- a/tools/bpf/bpftool/prog.c
> +++ b/tools/bpf/bpftool/prog.c
> @@ -1681,8 +1681,17 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
>                 } else if (is_prefix(*argv, "autoattach")) {
>                         auto_attach = true;
>                         NEXT_ARG();
> +               } else if (is_prefix(*argv, "custom_btf")) {
> +                       NEXT_ARG();
> +
> +                       if (!REQ_ARGS(1))
> +                               goto err_free_reuse_maps;
> +
> +                       open_opts.btf_custom_path = GET_ARG();

I don't see a use case yet.
What exactly is the scenario where it's useful ?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall
  2025-05-13 21:19 ` Alexei Starovoitov
@ 2025-05-14  1:51   ` Jiayuan Chen
  2025-05-14 16:39     ` Andrii Nakryiko
  0 siblings, 1 reply; 6+ messages in thread
From: Jiayuan Chen @ 2025-05-14  1:51 UTC (permalink / raw)
  To: Alexei Starovoitov
  Cc: bpf, Quentin Monnet, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
	Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
	Hao Luo, Jiri Olsa, LKML

2025/5/14 05:19, "Alexei Starovoitov" <alexei.starovoitov@gmail.com> wrote:

> 
> On Mon, May 12, 2025 at 8:59 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
> 
> > 
> > This patch exposes the btf_custom_path feature to bpftool, allowing users
> > 
> >  to specify a custom BTF file when loading BPF programs using prog load or
> > 
> >  prog loadall commands. This feature is already supported by libbpf, and
> > 
> >  this patch makes it accessible through the bpftool command-line interface.
> > 
> >  Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> > 
> >  ---
> > 
> >  tools/bpf/bpftool/prog.c | 11 ++++++++++-
> > 
> >  1 file changed, 10 insertions(+), 1 deletion(-)
> > 
> >  diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
> > 
> >  index f010295350be..63f84e765b34 100644
> > 
> >  --- a/tools/bpf/bpftool/prog.c
> > 
> >  +++ b/tools/bpf/bpftool/prog.c
> > 
> >  @@ -1681,8 +1681,17 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
> > 
> >  } else if (is_prefix(*argv, "autoattach")) {
> > 
> >  auto_attach = true;
> > 
> >  NEXT_ARG();
> > 
> >  + } else if (is_prefix(*argv, "custom_btf")) {
> > 
> >  + NEXT_ARG();
> > 
> >  +
> > 
> >  + if (!REQ_ARGS(1))
> > 
> >  + goto err_free_reuse_maps;
> > 
> >  +
> > 
> >  + open_opts.btf_custom_path = GET_ARG();
> > 
> 
> I don't see a use case yet.
> 
> What exactly is the scenario where it's useful ?
>

This patch just exposes the btf_custom_path feature of libbpf to bpftool.
The argument 'btf_custom_path' in libbpf is used for those kernes that
don't have CONFIG_DEBUG_INFO_BTF enabled but still want to perform CO-RE
relocations. Specifically for older kernels, separate BTF files are already
provided: https://github.com/aquasecurity/btfhub-archive/.
If we want load prog using bpftool on those systems, we have to hack
btf__load_vmlinux_btf() before or write custom loader with libbpf and specify
'btf_custom_path'.

I also found a the similar topic:
https://lore.kernel.org/bpf/20220215225856.671072-1-mauricio@kinvolk.io/

Additionally, pwru supports "--kernel-btf" which serves the same purpose as
this patch.

Therefore, using an external BTF file is a common practice.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall
  2025-05-14  1:51   ` Jiayuan Chen
@ 2025-05-14 16:39     ` Andrii Nakryiko
  2025-05-14 16:52       ` Quentin Monnet
  0 siblings, 1 reply; 6+ messages in thread
From: Andrii Nakryiko @ 2025-05-14 16:39 UTC (permalink / raw)
  To: Jiayuan Chen
  Cc: Alexei Starovoitov, bpf, Quentin Monnet, Alexei Starovoitov,
	Daniel Borkmann, Andrii Nakryiko, Martin KaFai Lau,
	Eduard Zingerman, Song Liu, Yonghong Song, John Fastabend,
	KP Singh, Stanislav Fomichev, Hao Luo, Jiri Olsa, LKML

On Tue, May 13, 2025 at 6:51 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
>
> 2025/5/14 05:19, "Alexei Starovoitov" <alexei.starovoitov@gmail.com> wrote:
>
> >
> > On Mon, May 12, 2025 at 8:59 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
> >
> > >
> > > This patch exposes the btf_custom_path feature to bpftool, allowing users
> > >
> > >  to specify a custom BTF file when loading BPF programs using prog load or
> > >
> > >  prog loadall commands. This feature is already supported by libbpf, and
> > >
> > >  this patch makes it accessible through the bpftool command-line interface.
> > >
> > >  Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> > >
> > >  ---
> > >
> > >  tools/bpf/bpftool/prog.c | 11 ++++++++++-
> > >
> > >  1 file changed, 10 insertions(+), 1 deletion(-)
> > >
> > >  diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
> > >
> > >  index f010295350be..63f84e765b34 100644
> > >
> > >  --- a/tools/bpf/bpftool/prog.c
> > >
> > >  +++ b/tools/bpf/bpftool/prog.c
> > >
> > >  @@ -1681,8 +1681,17 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
> > >
> > >  } else if (is_prefix(*argv, "autoattach")) {
> > >
> > >  auto_attach = true;
> > >
> > >  NEXT_ARG();
> > >
> > >  + } else if (is_prefix(*argv, "custom_btf")) {
> > >
> > >  + NEXT_ARG();
> > >
> > >  +
> > >
> > >  + if (!REQ_ARGS(1))
> > >
> > >  + goto err_free_reuse_maps;
> > >
> > >  +
> > >
> > >  + open_opts.btf_custom_path = GET_ARG();
> > >
> >
> > I don't see a use case yet.
> >
> > What exactly is the scenario where it's useful ?
> >
>
> This patch just exposes the btf_custom_path feature of libbpf to bpftool.
> The argument 'btf_custom_path' in libbpf is used for those kernes that
> don't have CONFIG_DEBUG_INFO_BTF enabled but still want to perform CO-RE
> relocations. Specifically for older kernels, separate BTF files are already
> provided: https://github.com/aquasecurity/btfhub-archive/.
> If we want load prog using bpftool on those systems, we have to hack
> btf__load_vmlinux_btf() before or write custom loader with libbpf and specify
> 'btf_custom_path'.
>
> I also found a the similar topic:
> https://lore.kernel.org/bpf/20220215225856.671072-1-mauricio@kinvolk.io/
>
> Additionally, pwru supports "--kernel-btf" which serves the same purpose as
> this patch.
>
> Therefore, using an external BTF file is a common practice.

I think it's fine to expose this to bpftool. But maybe call the option
"kernel_btf" to make it more obvious that this is BTF representing
kernel types, as opposed to program BTF itself.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall
  2025-05-14 16:39     ` Andrii Nakryiko
@ 2025-05-14 16:52       ` Quentin Monnet
  2025-05-15  1:11         ` Jiayuan Chen
  0 siblings, 1 reply; 6+ messages in thread
From: Quentin Monnet @ 2025-05-14 16:52 UTC (permalink / raw)
  To: Andrii Nakryiko, Jiayuan Chen
  Cc: Alexei Starovoitov, bpf, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
	Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
	Hao Luo, Jiri Olsa, LKML

2025-05-14 09:39 UTC-0700 ~ Andrii Nakryiko <andrii.nakryiko@gmail.com>
> On Tue, May 13, 2025 at 6:51 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
>>
>> 2025/5/14 05:19, "Alexei Starovoitov" <alexei.starovoitov@gmail.com> wrote:
>>
>>>
>>> On Mon, May 12, 2025 at 8:59 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
>>>
>>>>
>>>> This patch exposes the btf_custom_path feature to bpftool, allowing users
>>>>
>>>>  to specify a custom BTF file when loading BPF programs using prog load or
>>>>
>>>>  prog loadall commands. This feature is already supported by libbpf, and
>>>>
>>>>  this patch makes it accessible through the bpftool command-line interface.
>>>>
>>>>  Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
>>>>
>>>>  ---
>>>>
>>>>  tools/bpf/bpftool/prog.c | 11 ++++++++++-
>>>>
>>>>  1 file changed, 10 insertions(+), 1 deletion(-)
>>>>
>>>>  diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
>>>>
>>>>  index f010295350be..63f84e765b34 100644
>>>>
>>>>  --- a/tools/bpf/bpftool/prog.c
>>>>
>>>>  +++ b/tools/bpf/bpftool/prog.c
>>>>
>>>>  @@ -1681,8 +1681,17 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
>>>>
>>>>  } else if (is_prefix(*argv, "autoattach")) {
>>>>
>>>>  auto_attach = true;
>>>>
>>>>  NEXT_ARG();
>>>>
>>>>  + } else if (is_prefix(*argv, "custom_btf")) {
>>>>
>>>>  + NEXT_ARG();
>>>>
>>>>  +
>>>>
>>>>  + if (!REQ_ARGS(1))
>>>>
>>>>  + goto err_free_reuse_maps;
>>>>
>>>>  +
>>>>
>>>>  + open_opts.btf_custom_path = GET_ARG();
>>>>
>>>
>>> I don't see a use case yet.
>>>
>>> What exactly is the scenario where it's useful ?
>>>
>>
>> This patch just exposes the btf_custom_path feature of libbpf to bpftool.
>> The argument 'btf_custom_path' in libbpf is used for those kernes that
>> don't have CONFIG_DEBUG_INFO_BTF enabled but still want to perform CO-RE
>> relocations. Specifically for older kernels, separate BTF files are already
>> provided: https://github.com/aquasecurity/btfhub-archive/.
>> If we want load prog using bpftool on those systems, we have to hack
>> btf__load_vmlinux_btf() before or write custom loader with libbpf and specify
>> 'btf_custom_path'.
>>
>> I also found a the similar topic:
>> https://lore.kernel.org/bpf/20220215225856.671072-1-mauricio@kinvolk.io/
>>
>> Additionally, pwru supports "--kernel-btf" which serves the same purpose as
>> this patch.
>>
>> Therefore, using an external BTF file is a common practice.
> 
> I think it's fine to expose this to bpftool. But maybe call the option
> "kernel_btf" to make it more obvious that this is BTF representing
> kernel types, as opposed to program BTF itself.


Hi Jiayuan, we'll also need to update the documentation (the man page,
in the summary at the top and in the subcommand description), the
interactive help message at the bottom of bpftool's prog.c, and the bash
completion (I can help with it if necessary), please.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall
  2025-05-14 16:52       ` Quentin Monnet
@ 2025-05-15  1:11         ` Jiayuan Chen
  0 siblings, 0 replies; 6+ messages in thread
From: Jiayuan Chen @ 2025-05-15  1:11 UTC (permalink / raw)
  To: Quentin Monnet, Andrii Nakryiko
  Cc: Alexei Starovoitov, bpf, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
	Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
	Hao Luo, Jiri Olsa, LKML

2025/5/15 24:52, "Quentin Monnet" <qmo@kernel.org> wrote:

> 
> 2025-05-14 09:39 UTC-0700 ~ Andrii Nakryiko <andrii.nakryiko@gmail.com>
> 
> > 
> > On Tue, May 13, 2025 at 6:51 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
> > 
> > > 
> > > 2025/5/14 05:19, "Alexei Starovoitov" <alexei.starovoitov@gmail.com> wrote:
> > > 
> > 
> >  On Mon, May 12, 2025 at 8:59 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
> > 
> >  This patch exposes the btf_custom_path feature to bpftool, allowing users
> > 
> >  to specify a custom BTF file when loading BPF programs using prog load or
> > 
> >  prog loadall commands. This feature is already supported by libbpf, and
> > 
> >  this patch makes it accessible through the bpftool command-line interface.
> > 
> >  Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> > 
> >  ---
> > 
> >  tools/bpf/bpftool/prog.c | 11 ++++++++++-
> > 
> >  1 file changed, 10 insertions(+), 1 deletion(-)
> > 
> >  diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
> > 
> >  index f010295350be..63f84e765b34 100644
> > 
> >  --- a/tools/bpf/bpftool/prog.c
> > 
> >  +++ b/tools/bpf/bpftool/prog.c
> > 
> >  @@ -1681,8 +1681,17 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
> > 
> >  } else if (is_prefix(*argv, "autoattach")) {
> > 
> >  auto_attach = true;
> > 
> >  NEXT_ARG();
> > 
> >  + } else if (is_prefix(*argv, "custom_btf")) {
> > 
> >  + NEXT_ARG();
> > 
> >  +
> > 
> >  + if (!REQ_ARGS(1))
> > 
> >  + goto err_free_reuse_maps;
> > 
> >  +
> > 
> >  + open_opts.btf_custom_path = GET_ARG();
> > 
> >  I don't see a use case yet.
> > 
> >  What exactly is the scenario where it's useful ?
> > 
> > > 
> > > This patch just exposes the btf_custom_path feature of libbpf to bpftool.
> > > 
> > >  The argument 'btf_custom_path' in libbpf is used for those kernes that
> > > 
> > >  don't have CONFIG_DEBUG_INFO_BTF enabled but still want to perform CO-RE
> > > 
> > >  relocations. Specifically for older kernels, separate BTF files are already
> > > 
> > >  provided: https://github.com/aquasecurity/btfhub-archive/.
> > > 
> > >  If we want load prog using bpftool on those systems, we have to hack
> > > 
> > >  btf__load_vmlinux_btf() before or write custom loader with libbpf and specify
> > > 
> > >  'btf_custom_path'.
> > > 
> > >  I also found a the similar topic:
> > > 
> > >  https://lore.kernel.org/bpf/20220215225856.671072-1-mauricio@kinvolk.io/
> > > 
> > >  Additionally, pwru supports "--kernel-btf" which serves the same purpose as
> > > 
> > >  this patch.
> > > 
> > >  Therefore, using an external BTF file is a common practice.
> > > 
> > 
> >  
> > 
> >  I think it's fine to expose this to bpftool. But maybe call the option
> > 
> >  "kernel_btf" to make it more obvious that this is BTF representing
> > 
> >  kernel types, as opposed to program BTF itself.
> > 
> 

"kernel_btf" is better, thanks.

> Hi Jiayuan, we'll also need to update the documentation (the man page,
> 
> in the summary at the top and in the subcommand description), the
> 
> interactive help message at the bottom of bpftool's prog.c, and the bash
> 
> completion (I can help with it if necessary), please.
> 
> Thanks,
> 
> Quentin
>

Thank you for pointing that out. I did miss those parts, and I also
noticed that others had overlooked similar issues. I will address all
the subcommands of "load prog" in this update.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-05-15  1:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-13  3:58 [PATCH bpf-next v1] bpftool: Add support for custom BTF path in prog load/loadall Jiayuan Chen
2025-05-13 21:19 ` Alexei Starovoitov
2025-05-14  1:51   ` Jiayuan Chen
2025-05-14 16:39     ` Andrii Nakryiko
2025-05-14 16:52       ` Quentin Monnet
2025-05-15  1:11         ` Jiayuan Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).