]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
bpf/verifier: Optimize ID mapping reset in states_equal
authorQiliang Yuan <realwujing@gmail.com>
Tue, 20 Jan 2026 02:32:34 +0000 (10:32 +0800)
committerAndrii Nakryiko <andrii@kernel.org>
Tue, 20 Jan 2026 19:32:28 +0000 (11:32 -0800)
Currently, reset_idmap_scratch() performs a 4.7KB memset() in every
states_equal() call. Optimize this by using a counter to track used
ID mappings, replacing the O(N) memset() with an O(1) reset and
bounding the search loop in check_ids().

Signed-off-by: Qiliang Yuan <realwujing@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Eduard Zingerman <eddyz87@gmail.com>
Link: https://lore.kernel.org/bpf/20260120023234.77673-1-realwujing@gmail.com
include/linux/bpf_verifier.h
kernel/bpf/verifier.c

index 130bcbd66f6060f6b7225c8974667ce8fe525671..8355b585cd18753e536dd5d602358e1f4354f09e 100644 (file)
@@ -692,6 +692,7 @@ struct bpf_id_pair {
 
 struct bpf_idmap {
        u32 tmp_id_gen;
+       u32 cnt;
        struct bpf_id_pair map[BPF_ID_MAP_SIZE];
 };
 
index 76e02e13890f56f71f948cb8893dca20e8810e1b..b67d8981b058778933af4084d8b958833ff8bff7 100644 (file)
@@ -19000,18 +19000,21 @@ static bool check_ids(u32 old_id, u32 cur_id, struct bpf_idmap *idmap)
        if (old_id == 0) /* cur_id == 0 as well */
                return true;
 
-       for (i = 0; i < BPF_ID_MAP_SIZE; i++) {
-               if (!map[i].old) {
-                       /* Reached an empty slot; haven't seen this id before */
-                       map[i].old = old_id;
-                       map[i].cur = cur_id;
-                       return true;
-               }
+       for (i = 0; i < idmap->cnt; i++) {
                if (map[i].old == old_id)
                        return map[i].cur == cur_id;
                if (map[i].cur == cur_id)
                        return false;
        }
+
+       /* Reached the end of known mappings; haven't seen this id before */
+       if (idmap->cnt < BPF_ID_MAP_SIZE) {
+               map[idmap->cnt].old = old_id;
+               map[idmap->cnt].cur = cur_id;
+               idmap->cnt++;
+               return true;
+       }
+
        /* We ran out of idmap slots, which should be impossible */
        WARN_ON_ONCE(1);
        return false;
@@ -19520,8 +19523,10 @@ static bool func_states_equal(struct bpf_verifier_env *env, struct bpf_func_stat
 
 static void reset_idmap_scratch(struct bpf_verifier_env *env)
 {
-       env->idmap_scratch.tmp_id_gen = env->id_gen;
-       memset(&env->idmap_scratch.map, 0, sizeof(env->idmap_scratch.map));
+       struct bpf_idmap *idmap = &env->idmap_scratch;
+
+       idmap->tmp_id_gen = env->id_gen;
+       idmap->cnt = 0;
 }
 
 static bool states_equal(struct bpf_verifier_env *env,