diff options
author | Tze-nan Wu <[email protected]> | 2024-08-05 13:59:22 +0800 |
---|---|---|
committer | Steven Rostedt (Google) <[email protected]> | 2024-08-07 20:23:12 -0400 |
commit | bcf86c01ca4676316557dd482c8416ece8c2e143 (patch) | |
tree | 6c30a42b0ec0aad2c5140015c3dcc47fffa2f960 /tools/testing/selftests/bpf/prog_tests/autoload.c | |
parent | 604b72b32522d548f855ed82842d2e49bf384edb (diff) |
tracing: Fix overflow in get_free_elt()
"tracing_map->next_elt" in get_free_elt() is at risk of overflowing.
Once it overflows, new elements can still be inserted into the tracing_map
even though the maximum number of elements (`max_elts`) has been reached.
Continuing to insert elements after the overflow could result in the
tracing_map containing "tracing_map->max_size" elements, leaving no empty
entries.
If any attempt is made to insert an element into a full tracing_map using
`__tracing_map_insert()`, it will cause an infinite loop with preemption
disabled, leading to a CPU hang problem.
Fix this by preventing any further increments to "tracing_map->next_elt"
once it reaches "tracing_map->max_elt".
Cc: [email protected]
Cc: Masami Hiramatsu <[email protected]>
Fixes: 08d43a5fa063e ("tracing: Add lock-free tracing_map")
Co-developed-by: Cheng-Jui Wang <[email protected]>
Link: https://lore.kernel.org/[email protected]
Signed-off-by: Cheng-Jui Wang <[email protected]>
Signed-off-by: Tze-nan Wu <[email protected]>
Signed-off-by: Steven Rostedt (Google) <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/autoload.c')
0 files changed, 0 insertions, 0 deletions