libbpf: Remove any use of reallocarray() in libbpf
Re-implement glibc's reallocarray() for libbpf internal-only use. reallocarray(), unfortunately, is not available in all versions of glibc, so requires extra feature detection and using reallocarray() stub from <tools/libc_compat.h> and COMPAT_NEED_REALLOCARRAY. All this complicates build of libbpf unnecessarily and is just a maintenance burden. Instead, it's trivial to implement libbpf-specific internal version and use it throughout libbpf. Which is what this patch does, along with converting some realloc() uses that should really have been reallocarray() in the first place. Signed-off-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20200819013607.3607269-2-andriin@fb.com
This commit is contained in:

committed by
Alexei Starovoitov

parent
00b2e95325
commit
029258d7b2
@@ -323,8 +323,7 @@ static int btf_dump_add_emit_queue_id(struct btf_dump *d, __u32 id)
|
||||
|
||||
if (d->emit_queue_cnt >= d->emit_queue_cap) {
|
||||
new_cap = max(16, d->emit_queue_cap * 3 / 2);
|
||||
new_queue = realloc(d->emit_queue,
|
||||
new_cap * sizeof(new_queue[0]));
|
||||
new_queue = libbpf_reallocarray(d->emit_queue, new_cap, sizeof(new_queue[0]));
|
||||
if (!new_queue)
|
||||
return -ENOMEM;
|
||||
d->emit_queue = new_queue;
|
||||
@@ -1003,8 +1002,7 @@ static int btf_dump_push_decl_stack_id(struct btf_dump *d, __u32 id)
|
||||
|
||||
if (d->decl_stack_cnt >= d->decl_stack_cap) {
|
||||
new_cap = max(16, d->decl_stack_cap * 3 / 2);
|
||||
new_stack = realloc(d->decl_stack,
|
||||
new_cap * sizeof(new_stack[0]));
|
||||
new_stack = libbpf_reallocarray(d->decl_stack, new_cap, sizeof(new_stack[0]));
|
||||
if (!new_stack)
|
||||
return -ENOMEM;
|
||||
d->decl_stack = new_stack;
|
||||
|
Reference in New Issue
Block a user