* [PATCH bpf-next v4] bpftool: Dump map id instead of value for map_of_maps types
@ 2023-04-27 12:03 Xueming Feng
2023-04-27 14:43 ` Yonghong Song
2023-04-27 21:28 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Xueming Feng @ 2023-04-27 12:03 UTC (permalink / raw)
To: Quentin Monnet
Cc: Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Song Liu, Yonghong Song, John Fastabend,
KP Singh, Stanislav Fomichev, Hao Luo, Jiri Olsa, bpf,
linux-kernel, Xueming Feng
When using `bpftool map dump` with map_of_maps, it is usually
more convenient to show the inner map id instead of raw value.
We are changing the plain print behavior to show inner_map_id
instead of hex value, this would help with quick look up of
inner map with `bpftool map dump id <inner_map_id>`.
To avoid disrupting scripted behavior, we will add a new
`inner_map_id` field to json output instead of replacing value.
plain print:
```
$ bpftool map dump id 138
Without Patch:
key:
fc 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05
27 16 06 00
value:
8b 00 00 00
Found 1 element
With Patch:
key:
fc 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05
27 16 06 00
inner_map_id:
139
Found 1 element
```
json print:
```
$ bpftool -p map dump id 567
Without Patch:
[{
"key": ["0xc0","0x00","0x02","0x05","0x27","0x16","0x06","0x00"
],
"value": ["0x38","0x02","0x00","0x00"
]
}
]
With Patch:
[{
"key": ["0xc0","0x00","0x02","0x05","0x27","0x16","0x06","0x00"
],
"value": ["0x38","0x02","0x00","0x00"
],
"inner_map_id": 568
}
]
```
Signed-off-by: Xueming Feng <kuro@kuroa.me>
---
Changes in v4:
- Remove unnecessary parenthesis ('{}').
Changes in v3:
- In plain print, use printf() directly since inner map id is always a 32bit int.
- Remove unused print_uint() function.
- Rename `id` to `inner_map_id` in plain print output for clearness.
- Add a new `inner_map_id` field to json output.
- Add example output to commit message.
Changes in v2:
- Fix commit message grammar.
- Change `print_uint` to only print to stdout, make `arg` const,
and rename `n` to `arg_size`.
- Make `print_uint` able to take any size of argument up to `unsigned long`,
and print it as unsigned decimal.
tools/bpf/bpftool/map.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/tools/bpf/bpftool/map.c b/tools/bpf/bpftool/map.c
index aaeb8939e137..ae9e822aa3fe 100644
--- a/tools/bpf/bpftool/map.c
+++ b/tools/bpf/bpftool/map.c
@@ -139,6 +139,9 @@ static void print_entry_json(struct bpf_map_info *info, unsigned char *key,
print_hex_data_json(key, info->key_size);
jsonw_name(json_wtr, "value");
print_hex_data_json(value, info->value_size);
+ if (map_is_map_of_maps(info->type))
+ jsonw_uint_field(json_wtr, "inner_map_id",
+ *(unsigned int *)value);
if (btf) {
struct btf_dumper d = {
.btf = btf,
@@ -259,8 +262,13 @@ static void print_entry_plain(struct bpf_map_info *info, unsigned char *key,
}
if (info->value_size) {
- printf("value:%c", break_names ? '\n' : ' ');
- fprint_hex(stdout, value, info->value_size, " ");
+ if (map_is_map_of_maps(info->type)) {
+ printf("inner_map_id:%c", break_names ? '\n' : ' ');
+ printf("%u ", *(unsigned int *)value);
+ } else {
+ printf("value:%c", break_names ? '\n' : ' ');
+ fprint_hex(stdout, value, info->value_size, " ");
+ }
}
printf("\n");
--
2.37.1 (Apple Git-137.1)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH bpf-next v4] bpftool: Dump map id instead of value for map_of_maps types
2023-04-27 12:03 [PATCH bpf-next v4] bpftool: Dump map id instead of value for map_of_maps types Xueming Feng
@ 2023-04-27 14:43 ` Yonghong Song
2023-04-27 21:28 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Yonghong Song @ 2023-04-27 14:43 UTC (permalink / raw)
To: Xueming Feng, Quentin Monnet
Cc: Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Song Liu, Yonghong Song, John Fastabend,
KP Singh, Stanislav Fomichev, Hao Luo, Jiri Olsa, bpf,
linux-kernel
On 4/27/23 5:03 AM, Xueming Feng wrote:
> When using `bpftool map dump` with map_of_maps, it is usually
> more convenient to show the inner map id instead of raw value.
>
> We are changing the plain print behavior to show inner_map_id
> instead of hex value, this would help with quick look up of
> inner map with `bpftool map dump id <inner_map_id>`.
> To avoid disrupting scripted behavior, we will add a new
> `inner_map_id` field to json output instead of replacing value.
>
> plain print:
> ```
> $ bpftool map dump id 138
>
> Without Patch:
> key:
> fc 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05
> 27 16 06 00
> value:
> 8b 00 00 00
> Found 1 element
>
> With Patch:
> key:
> fc 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05
> 27 16 06 00
> inner_map_id:
> 139
> Found 1 element
> ```
>
> json print:
> ```
> $ bpftool -p map dump id 567
>
> Without Patch:
> [{
> "key": ["0xc0","0x00","0x02","0x05","0x27","0x16","0x06","0x00"
> ],
> "value": ["0x38","0x02","0x00","0x00"
> ]
> }
> ]
>
> With Patch:
> [{
> "key": ["0xc0","0x00","0x02","0x05","0x27","0x16","0x06","0x00"
> ],
> "value": ["0x38","0x02","0x00","0x00"
> ],
> "inner_map_id": 568
> }
> ]
> ```
>
> Signed-off-by: Xueming Feng <kuro@kuroa.me>
You can carry my Ack from v3 since there is no big changes.
Anyway, Ack again.
Acked-by: Yonghong Song <yhs@fb.com>
> ---
>
> Changes in v4:
> - Remove unnecessary parenthesis ('{}').
>
> Changes in v3:
> - In plain print, use printf() directly since inner map id is always a 32bit int.
> - Remove unused print_uint() function.
> - Rename `id` to `inner_map_id` in plain print output for clearness.
> - Add a new `inner_map_id` field to json output.
> - Add example output to commit message.
>
> Changes in v2:
> - Fix commit message grammar.
> - Change `print_uint` to only print to stdout, make `arg` const,
> and rename `n` to `arg_size`.
> - Make `print_uint` able to take any size of argument up to `unsigned long`,
> and print it as unsigned decimal.
>
> tools/bpf/bpftool/map.c | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/tools/bpf/bpftool/map.c b/tools/bpf/bpftool/map.c
> index aaeb8939e137..ae9e822aa3fe 100644
> --- a/tools/bpf/bpftool/map.c
> +++ b/tools/bpf/bpftool/map.c
> @@ -139,6 +139,9 @@ static void print_entry_json(struct bpf_map_info *info, unsigned char *key,
> print_hex_data_json(key, info->key_size);
> jsonw_name(json_wtr, "value");
> print_hex_data_json(value, info->value_size);
> + if (map_is_map_of_maps(info->type))
> + jsonw_uint_field(json_wtr, "inner_map_id",
> + *(unsigned int *)value);
> if (btf) {
> struct btf_dumper d = {
> .btf = btf,
> @@ -259,8 +262,13 @@ static void print_entry_plain(struct bpf_map_info *info, unsigned char *key,
> }
>
> if (info->value_size) {
> - printf("value:%c", break_names ? '\n' : ' ');
> - fprint_hex(stdout, value, info->value_size, " ");
> + if (map_is_map_of_maps(info->type)) {
> + printf("inner_map_id:%c", break_names ? '\n' : ' ');
> + printf("%u ", *(unsigned int *)value);
> + } else {
> + printf("value:%c", break_names ? '\n' : ' ');
> + fprint_hex(stdout, value, info->value_size, " ");
> + }
> }
>
> printf("\n");
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH bpf-next v4] bpftool: Dump map id instead of value for map_of_maps types
2023-04-27 12:03 [PATCH bpf-next v4] bpftool: Dump map id instead of value for map_of_maps types Xueming Feng
2023-04-27 14:43 ` Yonghong Song
@ 2023-04-27 21:28 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-04-27 21:28 UTC (permalink / raw)
To: Xueming Feng
Cc: quentin, ast, daniel, andrii, martin.lau, song, yhs,
john.fastabend, kpsingh, sdf, haoluo, jolsa, bpf, linux-kernel
Hello:
This patch was applied to bpf/bpf-next.git (master)
by Martin KaFai Lau <martin.lau@kernel.org>:
On Thu, 27 Apr 2023 20:03:13 +0800 you wrote:
> When using `bpftool map dump` with map_of_maps, it is usually
> more convenient to show the inner map id instead of raw value.
>
> We are changing the plain print behavior to show inner_map_id
> instead of hex value, this would help with quick look up of
> inner map with `bpftool map dump id <inner_map_id>`.
> To avoid disrupting scripted behavior, we will add a new
> `inner_map_id` field to json output instead of replacing value.
>
> [...]
Here is the summary with links:
- [bpf-next,v4] bpftool: Dump map id instead of value for map_of_maps types
https://git.kernel.org/bpf/bpf-next/c/bf06c9393493
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] 3+ messages in thread
end of thread, other threads:[~2023-04-27 21:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-27 12:03 [PATCH bpf-next v4] bpftool: Dump map id instead of value for map_of_maps types Xueming Feng
2023-04-27 14:43 ` Yonghong Song
2023-04-27 21:28 ` 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