Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

bpftool: Fix memory leak in do_build_table_cb

strdup() allocates memory for path. We need to release the memory in the
following error path. Add free() to avoid memory leak.

Fixes: 8f184732b60b ("bpftool: Switch to libbpf's hashmap for pinned paths of BPF objects")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20221206071906.806384-1-linmq006@gmail.com

authored by

Miaoqian Lin and committed by
Daniel Borkmann
fa55ef14 b54b6003

+1
+1
tools/bpf/bpftool/common.c
··· 501 501 if (err) { 502 502 p_err("failed to append entry to hashmap for ID %u, path '%s': %s", 503 503 pinned_info.id, path, strerror(errno)); 504 + free(path); 504 505 goto out_close; 505 506 } 506 507