2022-12-21 20:05:47

by Ricardo Ribalda

[permalink] [raw]
Subject: [PATCH] bpf: Remove unused field initialization

Maxlen is used by standard proc_handlers such as proc_dointvec(), but in this
case we have our own proc_handler. Remove the initialization.

Signed-off-by: Ricardo Ribalda <[email protected]>
---
bpf: Trivial remove of unitialised field.

I have inspired myself in your code and heritaded this bug :). Fixing this
here so none else makes the same mistake.

To: Alexei Starovoitov <[email protected]>
To: Daniel Borkmann <[email protected]>
To: John Fastabend <[email protected]>
To: Andrii Nakryiko <[email protected]>
To: Martin KaFai Lau <[email protected]>
To: Song Liu <[email protected]>
To: Yonghong Song <[email protected]>
To: KP Singh <[email protected]>
To: Stanislav Fomichev <[email protected]>
To: Hao Luo <[email protected]>
To: Jiri Olsa <[email protected]>
Cc: [email protected]
Cc: [email protected]
---
kernel/bpf/syscall.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
index 35972afb6850..8e55456bd648 100644
--- a/kernel/bpf/syscall.c
+++ b/kernel/bpf/syscall.c
@@ -5319,7 +5319,6 @@ static struct ctl_table bpf_syscall_table[] = {
{
.procname = "bpf_stats_enabled",
.data = &bpf_stats_enabled_key.key,
- .maxlen = sizeof(bpf_stats_enabled_key),
.mode = 0644,
.proc_handler = bpf_stats_handler,
},

---
base-commit: b6bb9676f2165d518b35ba3bea5f1fcfc0d969bf
change-id: 20221221-bpf-syscall-58d1ac3f817a

Best regards,
--
Ricardo Ribalda <[email protected]>


2022-12-21 20:22:52

by Stanislav Fomichev

[permalink] [raw]
Subject: Re: [PATCH] bpf: Remove unused field initialization

On Wed, Dec 21, 2022 at 11:55 AM Ricardo Ribalda <[email protected]> wrote:
>
> Maxlen is used by standard proc_handlers such as proc_dointvec(), but in this
> case we have our own proc_handler. Remove the initialization.

Are you sure?

bpf_stats_handler
proc_dointvec_minmax
do_proc_dointvec
__do_proc_dointvec
vleft = table->maxlen / sizeof(*i);

Maybe we should really do the following instead?

.maxlen: sizeof(int)

?

> Signed-off-by: Ricardo Ribalda <[email protected]>
> ---
> bpf: Trivial remove of unitialised field.
>
> I have inspired myself in your code and heritaded this bug :). Fixing this
> here so none else makes the same mistake.
>
> To: Alexei Starovoitov <[email protected]>
> To: Daniel Borkmann <[email protected]>
> To: John Fastabend <[email protected]>
> To: Andrii Nakryiko <[email protected]>
> To: Martin KaFai Lau <[email protected]>
> To: Song Liu <[email protected]>
> To: Yonghong Song <[email protected]>
> To: KP Singh <[email protected]>
> To: Stanislav Fomichev <[email protected]>
> To: Hao Luo <[email protected]>
> To: Jiri Olsa <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> ---
> kernel/bpf/syscall.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
> index 35972afb6850..8e55456bd648 100644
> --- a/kernel/bpf/syscall.c
> +++ b/kernel/bpf/syscall.c
> @@ -5319,7 +5319,6 @@ static struct ctl_table bpf_syscall_table[] = {
> {
> .procname = "bpf_stats_enabled",
> .data = &bpf_stats_enabled_key.key,
> - .maxlen = sizeof(bpf_stats_enabled_key),
> .mode = 0644,
> .proc_handler = bpf_stats_handler,
> },
>
> ---
> base-commit: b6bb9676f2165d518b35ba3bea5f1fcfc0d969bf
> change-id: 20221221-bpf-syscall-58d1ac3f817a
>
> Best regards,
> --
> Ricardo Ribalda <[email protected]>

2022-12-21 20:24:44

by Stanislav Fomichev

[permalink] [raw]
Subject: Re: [PATCH] bpf: Remove unused field initialization

On Wed, Dec 21, 2022 at 12:13 PM Ricardo Ribalda <[email protected]> wrote:
>
> Hi Stanislav
>
> On Wed, 21 Dec 2022 at 21:10, Stanislav Fomichev <[email protected]> wrote:
> >
> > On Wed, Dec 21, 2022 at 11:55 AM Ricardo Ribalda <[email protected]> wrote:
> > >
> > > Maxlen is used by standard proc_handlers such as proc_dointvec(), but in this
> > > case we have our own proc_handler. Remove the initialization.
> >
> > Are you sure?
> >
> > bpf_stats_handler
> > proc_dointvec_minmax
> > do_proc_dointvec
> > __do_proc_dointvec
> > vleft = table->maxlen / sizeof(*i);
>
> I believe do_proc_dointvec is using the value from:
>
> struct ctl_table tmp = {
> .maxlen=sixeof(val);
> }

Oh, you're right, I've missed that!

Acked-by: Stanislav Fomichev <[email protected]>

> >
> > Maybe we should really do the following instead?
> >
> > .maxlen: sizeof(int)
> >
> > ?
> >
> > > Signed-off-by: Ricardo Ribalda <[email protected]>
> > > ---
> > > bpf: Trivial remove of unitialised field.
> > >
> > > I have inspired myself in your code and heritaded this bug :). Fixing this
> > > here so none else makes the same mistake.
> > >
> > > To: Alexei Starovoitov <[email protected]>
> > > To: Daniel Borkmann <[email protected]>
> > > To: John Fastabend <[email protected]>
> > > To: Andrii Nakryiko <[email protected]>
> > > To: Martin KaFai Lau <[email protected]>
> > > To: Song Liu <[email protected]>
> > > To: Yonghong Song <[email protected]>
> > > To: KP Singh <[email protected]>
> > > To: Stanislav Fomichev <[email protected]>
> > > To: Hao Luo <[email protected]>
> > > To: Jiri Olsa <[email protected]>
> > > Cc: [email protected]
> > > Cc: [email protected]
> > > ---
> > > kernel/bpf/syscall.c | 1 -
> > > 1 file changed, 1 deletion(-)
> > >
> > > diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
> > > index 35972afb6850..8e55456bd648 100644
> > > --- a/kernel/bpf/syscall.c
> > > +++ b/kernel/bpf/syscall.c
> > > @@ -5319,7 +5319,6 @@ static struct ctl_table bpf_syscall_table[] = {
> > > {
> > > .procname = "bpf_stats_enabled",
> > > .data = &bpf_stats_enabled_key.key,
> > > - .maxlen = sizeof(bpf_stats_enabled_key),
> > > .mode = 0644,
> > > .proc_handler = bpf_stats_handler,
> > > },
> > >
> > > ---
> > > base-commit: b6bb9676f2165d518b35ba3bea5f1fcfc0d969bf
> > > change-id: 20221221-bpf-syscall-58d1ac3f817a
> > >
> > > Best regards,
> > > --
> > > Ricardo Ribalda <[email protected]>
>
>
>
> --
> Ricardo Ribalda

2022-12-21 20:42:37

by Ricardo Ribalda

[permalink] [raw]
Subject: Re: [PATCH] bpf: Remove unused field initialization

Hi Stanislav

On Wed, 21 Dec 2022 at 21:10, Stanislav Fomichev <[email protected]> wrote:
>
> On Wed, Dec 21, 2022 at 11:55 AM Ricardo Ribalda <[email protected]> wrote:
> >
> > Maxlen is used by standard proc_handlers such as proc_dointvec(), but in this
> > case we have our own proc_handler. Remove the initialization.
>
> Are you sure?
>
> bpf_stats_handler
> proc_dointvec_minmax
> do_proc_dointvec
> __do_proc_dointvec
> vleft = table->maxlen / sizeof(*i);

I believe do_proc_dointvec is using the value from:

struct ctl_table tmp = {
.maxlen=sixeof(val);
}

>
> Maybe we should really do the following instead?
>
> .maxlen: sizeof(int)
>
> ?
>
> > Signed-off-by: Ricardo Ribalda <[email protected]>
> > ---
> > bpf: Trivial remove of unitialised field.
> >
> > I have inspired myself in your code and heritaded this bug :). Fixing this
> > here so none else makes the same mistake.
> >
> > To: Alexei Starovoitov <[email protected]>
> > To: Daniel Borkmann <[email protected]>
> > To: John Fastabend <[email protected]>
> > To: Andrii Nakryiko <[email protected]>
> > To: Martin KaFai Lau <[email protected]>
> > To: Song Liu <[email protected]>
> > To: Yonghong Song <[email protected]>
> > To: KP Singh <[email protected]>
> > To: Stanislav Fomichev <[email protected]>
> > To: Hao Luo <[email protected]>
> > To: Jiri Olsa <[email protected]>
> > Cc: [email protected]
> > Cc: [email protected]
> > ---
> > kernel/bpf/syscall.c | 1 -
> > 1 file changed, 1 deletion(-)
> >
> > diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
> > index 35972afb6850..8e55456bd648 100644
> > --- a/kernel/bpf/syscall.c
> > +++ b/kernel/bpf/syscall.c
> > @@ -5319,7 +5319,6 @@ static struct ctl_table bpf_syscall_table[] = {
> > {
> > .procname = "bpf_stats_enabled",
> > .data = &bpf_stats_enabled_key.key,
> > - .maxlen = sizeof(bpf_stats_enabled_key),
> > .mode = 0644,
> > .proc_handler = bpf_stats_handler,
> > },
> >
> > ---
> > base-commit: b6bb9676f2165d518b35ba3bea5f1fcfc0d969bf
> > change-id: 20221221-bpf-syscall-58d1ac3f817a
> >
> > Best regards,
> > --
> > Ricardo Ribalda <[email protected]>



--
Ricardo Ribalda

2022-12-22 15:16:36

by patchwork-bot+netdevbpf

[permalink] [raw]
Subject: Re: [PATCH] bpf: Remove unused field initialization

Hello:

This patch was applied to bpf/bpf-next.git (master)
by Daniel Borkmann <[email protected]>:

On Wed, 21 Dec 2022 20:55:29 +0100 you wrote:
> Maxlen is used by standard proc_handlers such as proc_dointvec(), but in this
> case we have our own proc_handler. Remove the initialization.
>
> Signed-off-by: Ricardo Ribalda <[email protected]>
> ---
> bpf: Trivial remove of unitialised field.
>
> [...]

Here is the summary with links:
- bpf: Remove unused field initialization
https://git.kernel.org/bpf/bpf-next/c/cfca00767feb

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