* [PATCH RESEND bpf-next v2] selftests/bpf: veristat: Minimize map size during verification
@ 2026-07-07 16:20 Emil Tsalapatis
2026-07-07 16:39 ` sashiko-bot
0 siblings, 1 reply; 2+ messages in thread
From: Emil Tsalapatis @ 2026-07-07 16:20 UTC (permalink / raw)
To: bpf; +Cc: ast, andrii, memxor, daniel, eddyz87, Emil Tsalapatis
The veristat tool verifies that BPF objects along with their
maps pass verification for a given kernel version. To do so,
veristat loads the objects and maps into the kernel in order
to pass them through the verifier.
Currently, veristat sizes the maps according to the max_entries
field provided by the program author. Depending on the map type
this field may be irrelevant to the verification process. However,
loading a large map can fail because of -ENOMEM errors.
This is a problem when the map is supposed to run on large machines,
but veristat tests it machines with significantly less RAM (e.g.,
CI). In that case veristat fails even if the program verifies.
Expand veristat to resize maps whose max_entries are not relevant
to verification. Set the max_entries value as low as possible to
avoid -ENOMEM errors.
CHANGELOG
=========
v1->v2
- Removed unnecessary ARENA, LPM_TRIE, and RHASH handling (Sashiko)
Suggested-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Emil Tsalapatis <emil@etsalapatis.com>
---
Resending because the changelog's formatting was messing with the
patch's actual formatting.
tools/testing/selftests/bpf/veristat.c | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/tools/testing/selftests/bpf/veristat.c b/tools/testing/selftests/bpf/veristat.c
index a7db6f04f7e1..a2a724c3893d 100644
--- a/tools/testing/selftests/bpf/veristat.c
+++ b/tools/testing/selftests/bpf/veristat.c
@@ -1248,6 +1248,30 @@ static void fixup_obj_maps(struct bpf_object *obj)
/* fix up map size, if necessary */
switch (bpf_map__type(map)) {
+ /*
+ * if the verifier doesn't use max_entries
+ * then set to 1 to avoid -ENOMEM
+ */
+ case BPF_MAP_TYPE_HASH:
+ case BPF_MAP_TYPE_PERCPU_HASH:
+ case BPF_MAP_TYPE_LRU_HASH:
+ case BPF_MAP_TYPE_LRU_PERCPU_HASH:
+ case BPF_MAP_TYPE_HASH_OF_MAPS:
+ case BPF_MAP_TYPE_SOCKHASH:
+ case BPF_MAP_TYPE_DEVMAP_HASH:
+ case BPF_MAP_TYPE_QUEUE:
+ case BPF_MAP_TYPE_STACK:
+ case BPF_MAP_TYPE_BLOOM_FILTER:
+ case BPF_MAP_TYPE_STACK_TRACE:
+ bpf_map__set_max_entries(map, 1);
+ break;
+
+ /* ringbufs must be page-aligned */
+ case BPF_MAP_TYPE_RINGBUF:
+ case BPF_MAP_TYPE_USER_RINGBUF:
+ bpf_map__set_max_entries(map, sysconf(_SC_PAGESIZE));
+ break;
+
case BPF_MAP_TYPE_SK_STORAGE:
case BPF_MAP_TYPE_TASK_STORAGE:
case BPF_MAP_TYPE_INODE_STORAGE:
--
2.54.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH RESEND bpf-next v2] selftests/bpf: veristat: Minimize map size during verification
2026-07-07 16:20 [PATCH RESEND bpf-next v2] selftests/bpf: veristat: Minimize map size during verification Emil Tsalapatis
@ 2026-07-07 16:39 ` sashiko-bot
0 siblings, 0 replies; 2+ messages in thread
From: sashiko-bot @ 2026-07-07 16:39 UTC (permalink / raw)
To: Emil Tsalapatis; +Cc: bpf
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] veristat overrides BPF_MAP_TYPE_HASH_OF_MAPS max_entries to 1, causing map preparation to fail for declaratively initialized maps
--
--- Patch [1]: [PATCH RESEND bpf-next v2] selftests/bpf: veristat: Minimize map size during verification ---
commit be52ac6965be2ec63632786bb06d60b4e6152bc6
Author: Emil Tsalapatis <emil@etsalapatis.com>
selftests/bpf: veristat: Minimize map size during verification
This commit updates veristat to resize BPF maps where max_entries is
irrelevant to the verification process. By shrinking these maps to the
minimum size, it avoids -ENOMEM errors on memory-constrained systems.
> diff --git a/tools/testing/selftests/bpf/veristat.c b/tools/testing/selftests/bpf/veristat.c
> --- a/tools/testing/selftests/bpf/veristat.c
> +++ b/tools/testing/selftests/bpf/veristat.c
> @@ -1248,6 +1248,30 @@ static void fixup_obj_maps(struct bpf_object *obj)
>
> /* fix up map size, if necessary */
> switch (bpf_map__type(map)) {
> + /*
> + * if the verifier doesn't use max_entries
> + * then set to 1 to avoid -ENOMEM
> + */
> + case BPF_MAP_TYPE_HASH:
> + case BPF_MAP_TYPE_PERCPU_HASH:
> + case BPF_MAP_TYPE_LRU_HASH:
> + case BPF_MAP_TYPE_LRU_PERCPU_HASH:
> + case BPF_MAP_TYPE_HASH_OF_MAPS:
[Severity: Medium]
Will this cause map preparation to fail with -E2BIG if there are multiple
inner maps declaratively initialized?
In fixup_obj_maps(), if the outer map's max_entries is forcibly overridden to 1,
when libbpf later attempts to populate the slots via bpf_map_update_elem()
during bpf_object__prepare(), the first insertion succeeds, but subsequent
insertions fail because the hash map's capacity is constrained to 1.
Does this mean tests that declaratively initialize multiple inner maps
(such as test_btf_map_in_map.bpf.o) will fail to load with invalid map FDs,
subsequently causing the verifier to reject the programs?
> + case BPF_MAP_TYPE_SOCKHASH:
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260707162012.8063-1-emil@etsalapatis.com?part=1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-07 16:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-07 16:20 [PATCH RESEND bpf-next v2] selftests/bpf: veristat: Minimize map size during verification Emil Tsalapatis
2026-07-07 16:39 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox