* [PATCH bpf] bpftool: Use libbpf error code for flow dissector query
@ 2026-06-02 17:03 Woojin Ji
2026-06-02 19:43 ` Yonghong Song
0 siblings, 1 reply; 9+ messages in thread
From: Woojin Ji @ 2026-06-02 17:03 UTC (permalink / raw)
To: Quentin Monnet, bpf
Cc: Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Song Liu, Yonghong Song, Jiri Olsa, Stanislav Fomichev,
Jakub Kicinski, linux-kernel, Woojin Ji
bpf_prog_query() returns a negative errno on failure. query_flow_dissector()
currently closes the namespace fd and then reads errno to decide whether
-EINVAL means that the running kernel does not support flow dissector queries.
That errno check controls behavior, not just diagnostics: -EINVAL is handled
as a non-fatal old-kernel case, while any other error makes bpftool net fail.
Reading errno after close() is fragile, because close() can overwrite errno
before the check. Use the libbpf-returned error code instead so the
compatibility branch is based on the BPF_PROG_QUERY result itself.
Keep the existing errno reset in the non-fatal path to preserve batch mode
behavior. The success path is unchanged.
Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
Assisted-by: ChatGPT:gpt-5.5
Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
---
tools/bpf/bpftool/net.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/bpf/bpftool/net.c b/tools/bpf/bpftool/net.c
index 974189da8a91..dba28755d284 100644
--- a/tools/bpf/bpftool/net.c
+++ b/tools/bpf/bpftool/net.c
@@ -603,14 +603,14 @@ static int query_flow_dissector(struct bpf_attach_info *attach_info)
&attach_flags, prog_ids, &prog_cnt);
close(fd);
if (err) {
- if (errno == EINVAL) {
+ if (err == -EINVAL) {
/* Older kernel's don't support querying
* flow dissector programs.
*/
errno = 0;
return 0;
}
- p_err("can't query prog: %s", strerror(errno));
+ p_err("can't query prog: %s", strerror(-err));
return -1;
}
--
2.54.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH bpf] bpftool: Use libbpf error code for flow dissector query
2026-06-02 17:03 [PATCH bpf] bpftool: Use libbpf error code for flow dissector query Woojin Ji
@ 2026-06-02 19:43 ` Yonghong Song
2026-06-02 19:49 ` Yonghong Song
0 siblings, 1 reply; 9+ messages in thread
From: Yonghong Song @ 2026-06-02 19:43 UTC (permalink / raw)
To: Woojin Ji, Quentin Monnet, bpf
Cc: Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Song Liu, Jiri Olsa, Stanislav Fomichev, Jakub Kicinski,
linux-kernel
On 6/2/26 10:03 AM, Woojin Ji wrote:
> bpf_prog_query() returns a negative errno on failure. query_flow_dissector()
> currently closes the namespace fd and then reads errno to decide whether
> -EINVAL means that the running kernel does not support flow dissector queries.
>
> That errno check controls behavior, not just diagnostics: -EINVAL is handled
> as a non-fatal old-kernel case, while any other error makes bpftool net fail.
> Reading errno after close() is fragile, because close() can overwrite errno
> before the check. Use the libbpf-returned error code instead so the
Do you have evidence that close() is fragile?
> compatibility branch is based on the BPF_PROG_QUERY result itself.
>
> Keep the existing errno reset in the non-fatal path to preserve batch mode
> behavior. The success path is unchanged.
>
> Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
> Assisted-by: ChatGPT:gpt-5.5
> Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
> ---
> tools/bpf/bpftool/net.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/bpf/bpftool/net.c b/tools/bpf/bpftool/net.c
> index 974189da8a91..dba28755d284 100644
> --- a/tools/bpf/bpftool/net.c
> +++ b/tools/bpf/bpftool/net.c
> @@ -603,14 +603,14 @@ static int query_flow_dissector(struct bpf_attach_info *attach_info)
> &attach_flags, prog_ids, &prog_cnt);
> close(fd);
> if (err) {
> - if (errno == EINVAL) {
> + if (err == -EINVAL) {
> /* Older kernel's don't support querying
> * flow dissector programs.
> */
> errno = 0;
> return 0;
> }
> - p_err("can't query prog: %s", strerror(errno));
> + p_err("can't query prog: %s", strerror(-err));
> return -1;
> }
>
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH bpf] bpftool: Use libbpf error code for flow dissector query
2026-06-02 19:43 ` Yonghong Song
@ 2026-06-02 19:49 ` Yonghong Song
2026-06-03 0:15 ` Woojin Ji
2026-06-03 0:33 ` [PATCH bpf v2] " Woojin Ji
0 siblings, 2 replies; 9+ messages in thread
From: Yonghong Song @ 2026-06-02 19:49 UTC (permalink / raw)
To: Woojin Ji, Quentin Monnet, bpf
Cc: Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Song Liu, Jiri Olsa, Stanislav Fomichev, Jakub Kicinski,
linux-kernel
On 6/2/26 12:43 PM, Yonghong Song wrote:
>
>
> On 6/2/26 10:03 AM, Woojin Ji wrote:
>> bpf_prog_query() returns a negative errno on failure.
>> query_flow_dissector()
>> currently closes the namespace fd and then reads errno to decide whether
>> -EINVAL means that the running kernel does not support flow dissector
>> queries.
>>
>> That errno check controls behavior, not just diagnostics: -EINVAL is
>> handled
>> as a non-fatal old-kernel case, while any other error makes bpftool
>> net fail.
>> Reading errno after close() is fragile, because close() can overwrite
>> errno
>> before the check. Use the libbpf-returned error code instead so the
>
> Do you have evidence that close() is fragile?
The patch itself looks good to me. But it would be great in commit message
to answer why. Note that fd is readonly: fd = open("/proc/self/ns/net", O_RDONLY).
>
>> compatibility branch is based on the BPF_PROG_QUERY result itself.
>>
>> Keep the existing errno reset in the non-fatal path to preserve batch
>> mode
>> behavior. The success path is unchanged.
>>
>> Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
>> Assisted-by: ChatGPT:gpt-5.5
>> Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
>> ---
>> tools/bpf/bpftool/net.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/tools/bpf/bpftool/net.c b/tools/bpf/bpftool/net.c
>> index 974189da8a91..dba28755d284 100644
>> --- a/tools/bpf/bpftool/net.c
>> +++ b/tools/bpf/bpftool/net.c
>> @@ -603,14 +603,14 @@ static int query_flow_dissector(struct
>> bpf_attach_info *attach_info)
>> &attach_flags, prog_ids, &prog_cnt);
>> close(fd);
>> if (err) {
>> - if (errno == EINVAL) {
>> + if (err == -EINVAL) {
>> /* Older kernel's don't support querying
>> * flow dissector programs.
>> */
>> errno = 0;
>> return 0;
>> }
>> - p_err("can't query prog: %s", strerror(errno));
>> + p_err("can't query prog: %s", strerror(-err));
>> return -1;
>> }
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH bpf] bpftool: Use libbpf error code for flow dissector query
2026-06-02 19:49 ` Yonghong Song
@ 2026-06-03 0:15 ` Woojin Ji
2026-06-03 0:33 ` [PATCH bpf v2] " Woojin Ji
1 sibling, 0 replies; 9+ messages in thread
From: Woojin Ji @ 2026-06-03 0:15 UTC (permalink / raw)
To: yonghong.song
Cc: andrii, ast, bpf, daniel, eddyz87, jolsa, kuba, linux-kernel,
martin.lau, memxor, qmo, random6.xyz, sdf, song
Thanks for taking a look.
Yes, the fd is opened read-only, so I do not mean to claim that close() on
/proc/self/ns/net commonly fails in normal use, or that delayed writeback
errors are expected here.
The fragile part is that the BPF_PROG_QUERY error is consumed only after an
intervening close(), even though bpf_prog_query() has already returned the
negative errno in err. If close() changes errno, the old-kernel -EINVAL
compatibility case can be missed.
I reproduced this with an LD_PRELOAD fault injector that forced
BPF_PROG_QUERY for BPF_FLOW_DISSECTOR to fail with EINVAL, and then forced
close() on the netns fd to fail with EIO. The unpatched bpftool reported:
Error: can't query prog: Input/output error
With this patch, the same injected failure is handled as the intended
non-fatal EINVAL compatibility case.
I'll send a v2 with the commit message updated to make this clearer. The code
change itself is unchanged.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH bpf v2] bpftool: Use libbpf error code for flow dissector query
2026-06-02 19:49 ` Yonghong Song
2026-06-03 0:15 ` Woojin Ji
@ 2026-06-03 0:33 ` Woojin Ji
2026-06-03 1:45 ` Leon Hwang
` (2 more replies)
1 sibling, 3 replies; 9+ messages in thread
From: Woojin Ji @ 2026-06-03 0:33 UTC (permalink / raw)
To: yonghong.song
Cc: andrii, ast, bpf, daniel, eddyz87, jolsa, kuba, linux-kernel,
martin.lau, memxor, qmo, random6.xyz, sdf, song
bpf_prog_query() returns a negative errno on failure.
query_flow_dissector() currently closes the namespace fd and then reads
errno to decide whether -EINVAL means that the running kernel does not
support flow dissector queries.
That errno check controls behavior, not just diagnostics: -EINVAL is
handled as a non-fatal old-kernel case, while any other error makes bpftool
net fail.
The namespace fd is opened read-only, so close() is not expected to
commonly fail in normal use. Still, the BPF_PROG_QUERY error is already
available in err, and reading errno after an intervening close() is
fragile. If close() does change errno, the compatibility branch may be
based on close()'s error instead of the BPF_PROG_QUERY result.
This was reproduced with an LD_PRELOAD fault injector that forced
BPF_PROG_QUERY for BPF_FLOW_DISSECTOR to fail with EINVAL and then
forced close() on the netns fd to fail with EIO. The unpatched bpftool
reported "can't query prog: Input/output error". With this change, the
same injected failure is handled as the intended non-fatal EINVAL
compatibility case.
Use the libbpf-returned error code instead. Keep the existing errno reset
in the non-fatal path to preserve batch mode behavior. The success path
is unchanged.
Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
Assisted-by: ChatGPT:gpt-5.5
Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
---
v2:
- Expand the commit message to explain why relying on errno after close() is
fragile for this error path.
- Mention that the netns fd is read-only and that close() failure is not
expected to be common in normal use.
- Add the LD_PRELOAD reproduction result.
- No code changes.
tools/bpf/bpftool/net.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/bpf/bpftool/net.c b/tools/bpf/bpftool/net.c
index 974189da8a91..dba28755d284 100644
--- a/tools/bpf/bpftool/net.c
+++ b/tools/bpf/bpftool/net.c
@@ -603,14 +603,14 @@ static int query_flow_dissector(struct bpf_attach_info *attach_info)
&attach_flags, prog_ids, &prog_cnt);
close(fd);
if (err) {
- if (errno == EINVAL) {
+ if (err == -EINVAL) {
/* Older kernel's don't support querying
* flow dissector programs.
*/
errno = 0;
return 0;
}
- p_err("can't query prog: %s", strerror(errno));
+ p_err("can't query prog: %s", strerror(-err));
return -1;
}
--
2.54.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH bpf v2] bpftool: Use libbpf error code for flow dissector query
2026-06-03 0:33 ` [PATCH bpf v2] " Woojin Ji
@ 2026-06-03 1:45 ` Leon Hwang
2026-06-03 3:01 ` Yonghong Song
2026-06-03 22:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 9+ messages in thread
From: Leon Hwang @ 2026-06-03 1:45 UTC (permalink / raw)
To: Woojin Ji, yonghong.song
Cc: andrii, ast, bpf, daniel, eddyz87, jolsa, kuba, linux-kernel,
martin.lau, memxor, qmo, sdf, song
On 3/6/26 08:33, Woojin Ji wrote:
> bpf_prog_query() returns a negative errno on failure.
> query_flow_dissector() currently closes the namespace fd and then reads
> errno to decide whether -EINVAL means that the running kernel does not
> support flow dissector queries.
>
> That errno check controls behavior, not just diagnostics: -EINVAL is
> handled as a non-fatal old-kernel case, while any other error makes bpftool
> net fail.
>
> The namespace fd is opened read-only, so close() is not expected to
> commonly fail in normal use. Still, the BPF_PROG_QUERY error is already
> available in err, and reading errno after an intervening close() is
> fragile. If close() does change errno, the compatibility branch may be
> based on close()'s error instead of the BPF_PROG_QUERY result.
>
> This was reproduced with an LD_PRELOAD fault injector that forced
> BPF_PROG_QUERY for BPF_FLOW_DISSECTOR to fail with EINVAL and then
> forced close() on the netns fd to fail with EIO. The unpatched bpftool
> reported "can't query prog: Input/output error". With this change, the
> same injected failure is handled as the intended non-fatal EINVAL
> compatibility case.
>
> Use the libbpf-returned error code instead. Keep the existing errno reset
> in the non-fatal path to preserve batch mode behavior. The success path
> is unchanged.
>
> Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
> Assisted-by: ChatGPT:gpt-5.5
> Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
> ---
The commit message seems verbose.
Other than that:
Acked-by: Leon Hwang <leon.hwang@linux.dev>
[...]
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH bpf v2] bpftool: Use libbpf error code for flow dissector query
2026-06-03 0:33 ` [PATCH bpf v2] " Woojin Ji
2026-06-03 1:45 ` Leon Hwang
@ 2026-06-03 3:01 ` Yonghong Song
2026-06-03 9:28 ` Quentin Monnet
2026-06-03 22:40 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 9+ messages in thread
From: Yonghong Song @ 2026-06-03 3:01 UTC (permalink / raw)
To: Woojin Ji
Cc: andrii, ast, bpf, daniel, eddyz87, jolsa, kuba, linux-kernel,
martin.lau, memxor, qmo, sdf, song
On 6/2/26 5:33 PM, Woojin Ji wrote:
> bpf_prog_query() returns a negative errno on failure.
> query_flow_dissector() currently closes the namespace fd and then reads
> errno to decide whether -EINVAL means that the running kernel does not
> support flow dissector queries.
>
> That errno check controls behavior, not just diagnostics: -EINVAL is
> handled as a non-fatal old-kernel case, while any other error makes bpftool
> net fail.
>
> The namespace fd is opened read-only, so close() is not expected to
> commonly fail in normal use. Still, the BPF_PROG_QUERY error is already
> available in err, and reading errno after an intervening close() is
> fragile. If close() does change errno, the compatibility branch may be
> based on close()'s error instead of the BPF_PROG_QUERY result.
>
> This was reproduced with an LD_PRELOAD fault injector that forced
> BPF_PROG_QUERY for BPF_FLOW_DISSECTOR to fail with EINVAL and then
> forced close() on the netns fd to fail with EIO. The unpatched bpftool
> reported "can't query prog: Input/output error". With this change, the
> same injected failure is handled as the intended non-fatal EINVAL
> compatibility case.
>
> Use the libbpf-returned error code instead. Keep the existing errno reset
> in the non-fatal path to preserve batch mode behavior. The success path
> is unchanged.
>
> Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
> Assisted-by: ChatGPT:gpt-5.5
> Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH bpf v2] bpftool: Use libbpf error code for flow dissector query
2026-06-03 3:01 ` Yonghong Song
@ 2026-06-03 9:28 ` Quentin Monnet
0 siblings, 0 replies; 9+ messages in thread
From: Quentin Monnet @ 2026-06-03 9:28 UTC (permalink / raw)
To: Yonghong Song, Woojin Ji
Cc: andrii, ast, bpf, daniel, eddyz87, jolsa, kuba, linux-kernel,
martin.lau, memxor, sdf, song
2026-06-02 20:01 UTC-0700 ~ Yonghong Song <yonghong.song@linux.dev>
>
>
> On 6/2/26 5:33 PM, Woojin Ji wrote:
>> bpf_prog_query() returns a negative errno on failure.
>> query_flow_dissector() currently closes the namespace fd and then reads
>> errno to decide whether -EINVAL means that the running kernel does not
>> support flow dissector queries.
>>
>> That errno check controls behavior, not just diagnostics: -EINVAL is
>> handled as a non-fatal old-kernel case, while any other error makes
>> bpftool
>> net fail.
>>
>> The namespace fd is opened read-only, so close() is not expected to
>> commonly fail in normal use. Still, the BPF_PROG_QUERY error is already
>> available in err, and reading errno after an intervening close() is
>> fragile. If close() does change errno, the compatibility branch may be
>> based on close()'s error instead of the BPF_PROG_QUERY result.
>>
>> This was reproduced with an LD_PRELOAD fault injector that forced
>> BPF_PROG_QUERY for BPF_FLOW_DISSECTOR to fail with EINVAL and then
>> forced close() on the netns fd to fail with EIO. The unpatched bpftool
>> reported "can't query prog: Input/output error". With this change, the
>> same injected failure is handled as the intended non-fatal EINVAL
>> compatibility case.
>>
>> Use the libbpf-returned error code instead. Keep the existing errno reset
>> in the non-fatal path to preserve batch mode behavior. The success path
>> is unchanged.
>>
>> Fixes: 7f0c57fec80f ("bpftool: show flow_dissector attachment status")
>> Assisted-by: ChatGPT:gpt-5.5
>> Signed-off-by: Woojin Ji <random6.xyz@gmail.com>
>
> Acked-by: Yonghong Song <yonghong.song@linux.dev>
>
Acked-by: Quentin Monnet <qmo@kernel.org>
Thanks for the fix
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH bpf v2] bpftool: Use libbpf error code for flow dissector query
2026-06-03 0:33 ` [PATCH bpf v2] " Woojin Ji
2026-06-03 1:45 ` Leon Hwang
2026-06-03 3:01 ` Yonghong Song
@ 2026-06-03 22:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 9+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-06-03 22:40 UTC (permalink / raw)
To: Woojin Ji
Cc: yonghong.song, andrii, ast, bpf, daniel, eddyz87, jolsa, kuba,
linux-kernel, martin.lau, memxor, qmo, sdf, song
Hello:
This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko <andrii@kernel.org>:
On Wed, 3 Jun 2026 09:33:39 +0900 you wrote:
> bpf_prog_query() returns a negative errno on failure.
> query_flow_dissector() currently closes the namespace fd and then reads
> errno to decide whether -EINVAL means that the running kernel does not
> support flow dissector queries.
>
> That errno check controls behavior, not just diagnostics: -EINVAL is
> handled as a non-fatal old-kernel case, while any other error makes bpftool
> net fail.
>
> [...]
Here is the summary with links:
- [bpf,v2] bpftool: Use libbpf error code for flow dissector query
https://git.kernel.org/bpf/bpf-next/c/8a7f2bff2165
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] 9+ messages in thread
end of thread, other threads:[~2026-06-03 22:40 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-02 17:03 [PATCH bpf] bpftool: Use libbpf error code for flow dissector query Woojin Ji
2026-06-02 19:43 ` Yonghong Song
2026-06-02 19:49 ` Yonghong Song
2026-06-03 0:15 ` Woojin Ji
2026-06-03 0:33 ` [PATCH bpf v2] " Woojin Ji
2026-06-03 1:45 ` Leon Hwang
2026-06-03 3:01 ` Yonghong Song
2026-06-03 9:28 ` Quentin Monnet
2026-06-03 22:40 ` 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