BPF List
 help / color / mirror / Atom feed
* [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT
@ 2022-07-12  2:57 Hengqi Chen
  2022-07-12  7:58 ` Jiri Olsa
  2022-07-13 19:10 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Hengqi Chen @ 2022-07-12  2:57 UTC (permalink / raw)
  To: bpf, andrii; +Cc: hengqi.chen

binary_path is a required non-null parameter for bpf_program__attach_usdt
and bpf_program__attach_uprobe_opts. Check it against NULL to prevent
coredump on strchr.

Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
---
 tools/lib/bpf/libbpf.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
index cb49408eb298..72548798126b 100644
--- a/tools/lib/bpf/libbpf.c
+++ b/tools/lib/bpf/libbpf.c
@@ -10545,7 +10545,10 @@ bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
 	ref_ctr_off = OPTS_GET(opts, ref_ctr_offset, 0);
 	pe_opts.bpf_cookie = OPTS_GET(opts, bpf_cookie, 0);

-	if (binary_path && !strchr(binary_path, '/')) {
+	if (!binary_path)
+		return libbpf_err_ptr(-EINVAL);
+
+	if (!strchr(binary_path, '/')) {
 		err = resolve_full_path(binary_path, full_binary_path,
 					sizeof(full_binary_path));
 		if (err) {
@@ -10559,11 +10562,6 @@ bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
 	if (func_name) {
 		long sym_off;

-		if (!binary_path) {
-			pr_warn("prog '%s': name-based attach requires binary_path\n",
-				prog->name);
-			return libbpf_err_ptr(-EINVAL);
-		}
 		sym_off = elf_find_func_offset(binary_path, func_name);
 		if (sym_off < 0)
 			return libbpf_err_ptr(sym_off);
@@ -10711,6 +10709,9 @@ struct bpf_link *bpf_program__attach_usdt(const struct bpf_program *prog,
 		return libbpf_err_ptr(-EINVAL);
 	}

+	if (!binary_path)
+		return libbpf_err_ptr(-EINVAL);
+
 	if (!strchr(binary_path, '/')) {
 		err = resolve_full_path(binary_path, resolved_path, sizeof(resolved_path));
 		if (err) {
--
2.30.2

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

* Re: [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT
  2022-07-12  2:57 [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT Hengqi Chen
@ 2022-07-12  7:58 ` Jiri Olsa
  2022-07-13 18:59   ` Andrii Nakryiko
  2022-07-13 19:10 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 4+ messages in thread
From: Jiri Olsa @ 2022-07-12  7:58 UTC (permalink / raw)
  To: Hengqi Chen; +Cc: bpf, andrii, Alan Maguire

On Tue, Jul 12, 2022 at 10:57:45AM +0800, Hengqi Chen wrote:
> binary_path is a required non-null parameter for bpf_program__attach_usdt
> and bpf_program__attach_uprobe_opts. Check it against NULL to prevent
> coredump on strchr.

binary_path seems to be mandatory so LGTM, cc-ing Alan to be sure ;-)

thanks,
jirka

> 
> Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
> ---
>  tools/lib/bpf/libbpf.c | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
> index cb49408eb298..72548798126b 100644
> --- a/tools/lib/bpf/libbpf.c
> +++ b/tools/lib/bpf/libbpf.c
> @@ -10545,7 +10545,10 @@ bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
>  	ref_ctr_off = OPTS_GET(opts, ref_ctr_offset, 0);
>  	pe_opts.bpf_cookie = OPTS_GET(opts, bpf_cookie, 0);
> 
> -	if (binary_path && !strchr(binary_path, '/')) {
> +	if (!binary_path)
> +		return libbpf_err_ptr(-EINVAL);
> +
> +	if (!strchr(binary_path, '/')) {
>  		err = resolve_full_path(binary_path, full_binary_path,
>  					sizeof(full_binary_path));
>  		if (err) {
> @@ -10559,11 +10562,6 @@ bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
>  	if (func_name) {
>  		long sym_off;
> 
> -		if (!binary_path) {
> -			pr_warn("prog '%s': name-based attach requires binary_path\n",
> -				prog->name);
> -			return libbpf_err_ptr(-EINVAL);
> -		}
>  		sym_off = elf_find_func_offset(binary_path, func_name);
>  		if (sym_off < 0)
>  			return libbpf_err_ptr(sym_off);
> @@ -10711,6 +10709,9 @@ struct bpf_link *bpf_program__attach_usdt(const struct bpf_program *prog,
>  		return libbpf_err_ptr(-EINVAL);
>  	}
> 
> +	if (!binary_path)
> +		return libbpf_err_ptr(-EINVAL);
> +
>  	if (!strchr(binary_path, '/')) {
>  		err = resolve_full_path(binary_path, resolved_path, sizeof(resolved_path));
>  		if (err) {
> --
> 2.30.2

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

* Re: [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT
  2022-07-12  7:58 ` Jiri Olsa
@ 2022-07-13 18:59   ` Andrii Nakryiko
  0 siblings, 0 replies; 4+ messages in thread
From: Andrii Nakryiko @ 2022-07-13 18:59 UTC (permalink / raw)
  To: Jiri Olsa; +Cc: Hengqi Chen, bpf, Andrii Nakryiko, Alan Maguire

On Tue, Jul 12, 2022 at 12:58 AM Jiri Olsa <olsajiri@gmail.com> wrote:
>
> On Tue, Jul 12, 2022 at 10:57:45AM +0800, Hengqi Chen wrote:
> > binary_path is a required non-null parameter for bpf_program__attach_usdt
> > and bpf_program__attach_uprobe_opts. Check it against NULL to prevent
> > coredump on strchr.
>
> binary_path seems to be mandatory so LGTM, cc-ing Alan to be sure ;-)
>

Right, what will happen for attach_uprobe with NULL binary_path is
that it will be passed as zero to perf_event_create() and kernel will
reject it with -EINVAL. So this looks all correct to me, applying to
bpf-next.

Thanks for the fix!

> thanks,
> jirka
>
> >
> > Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
> > ---
> >  tools/lib/bpf/libbpf.c | 13 +++++++------
> >  1 file changed, 7 insertions(+), 6 deletions(-)
> >
> > diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
> > index cb49408eb298..72548798126b 100644
> > --- a/tools/lib/bpf/libbpf.c
> > +++ b/tools/lib/bpf/libbpf.c
> > @@ -10545,7 +10545,10 @@ bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
> >       ref_ctr_off = OPTS_GET(opts, ref_ctr_offset, 0);
> >       pe_opts.bpf_cookie = OPTS_GET(opts, bpf_cookie, 0);
> >
> > -     if (binary_path && !strchr(binary_path, '/')) {
> > +     if (!binary_path)
> > +             return libbpf_err_ptr(-EINVAL);
> > +
> > +     if (!strchr(binary_path, '/')) {
> >               err = resolve_full_path(binary_path, full_binary_path,
> >                                       sizeof(full_binary_path));
> >               if (err) {
> > @@ -10559,11 +10562,6 @@ bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
> >       if (func_name) {
> >               long sym_off;
> >
> > -             if (!binary_path) {
> > -                     pr_warn("prog '%s': name-based attach requires binary_path\n",
> > -                             prog->name);
> > -                     return libbpf_err_ptr(-EINVAL);
> > -             }
> >               sym_off = elf_find_func_offset(binary_path, func_name);
> >               if (sym_off < 0)
> >                       return libbpf_err_ptr(sym_off);
> > @@ -10711,6 +10709,9 @@ struct bpf_link *bpf_program__attach_usdt(const struct bpf_program *prog,
> >               return libbpf_err_ptr(-EINVAL);
> >       }
> >
> > +     if (!binary_path)
> > +             return libbpf_err_ptr(-EINVAL);
> > +
> >       if (!strchr(binary_path, '/')) {
> >               err = resolve_full_path(binary_path, resolved_path, sizeof(resolved_path));
> >               if (err) {
> > --
> > 2.30.2

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

* Re: [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT
  2022-07-12  2:57 [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT Hengqi Chen
  2022-07-12  7:58 ` Jiri Olsa
@ 2022-07-13 19:10 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-07-13 19:10 UTC (permalink / raw)
  To: Hengqi Chen; +Cc: bpf, andrii

Hello:

This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko <andrii@kernel.org>:

On Tue, 12 Jul 2022 10:57:45 +0800 you wrote:
> binary_path is a required non-null parameter for bpf_program__attach_usdt
> and bpf_program__attach_uprobe_opts. Check it against NULL to prevent
> coredump on strchr.
> 
> Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
> ---
>  tools/lib/bpf/libbpf.c | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> [...]

Here is the summary with links:
  - [bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT
    https://git.kernel.org/bpf/bpf-next/c/8ed2f5a6f385

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2022-07-13 19:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-12  2:57 [PATCH bpf-next] libbpf: Error out when binary_path is NULL for uprobe and USDT Hengqi Chen
2022-07-12  7:58 ` Jiri Olsa
2022-07-13 18:59   ` Andrii Nakryiko
2022-07-13 19:10 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox