Both tolower and toupper are built in c functions, we should not redefine them as this can result in a build error. Fixes the following errors: progs/bpf_iter_ksym.c:10:20: error: conflicting types for built-in function 'tolower'; expected 'int(int)' [-Werror=builtin-declaration-mismatch] 10 | static inline char tolower(char c) | ^~~~~~~ progs/bpf_iter_ksym.c:5:1: note: 'tolower' is declared in header '<ctype.h>' 4 | #include <bpf/bpf_helpers.h> +++ |+#include <ctype.h> 5 | progs/bpf_iter_ksym.c:17:20: error: conflicting types for built-in function 'toupper'; expected 'int(int)' [-Werror=builtin-declaration-mismatch] 17 | static inline char toupper(char c) | ^~~~~~~ progs/bpf_iter_ksym.c:17:20: note: 'toupper' is declared in header '<ctype.h>' See background on this sort of issue: https://stackoverflow.com/a/20582607 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=12213 (C99, 7.1.3p1) "All identifiers with external linkage in any of the following subclauses (including the future library directions) are always reserved for use as identifiers with external linkage." This is documented behavior in GCC: https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html#index-std-2 Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Acked-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/r/20221203010847.2191265-1-james.hilliard1@gmail.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
74 lines
1.8 KiB
C
74 lines
1.8 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright (c) 2022, Oracle and/or its affiliates. */
|
|
#include "bpf_iter.h"
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
char _license[] SEC("license") = "GPL";
|
|
|
|
unsigned long last_sym_value = 0;
|
|
|
|
static inline char to_lower(char c)
|
|
{
|
|
if (c >= 'A' && c <= 'Z')
|
|
c += ('a' - 'A');
|
|
return c;
|
|
}
|
|
|
|
static inline char to_upper(char c)
|
|
{
|
|
if (c >= 'a' && c <= 'z')
|
|
c -= ('a' - 'A');
|
|
return c;
|
|
}
|
|
|
|
/* Dump symbols with max size; the latter is calculated by caching symbol N value
|
|
* and when iterating on symbol N+1, we can print max size of symbol N via
|
|
* address of N+1 - address of N.
|
|
*/
|
|
SEC("iter/ksym")
|
|
int dump_ksym(struct bpf_iter__ksym *ctx)
|
|
{
|
|
struct seq_file *seq = ctx->meta->seq;
|
|
struct kallsym_iter *iter = ctx->ksym;
|
|
__u32 seq_num = ctx->meta->seq_num;
|
|
unsigned long value;
|
|
char type;
|
|
int ret;
|
|
|
|
if (!iter)
|
|
return 0;
|
|
|
|
if (seq_num == 0) {
|
|
BPF_SEQ_PRINTF(seq, "ADDR TYPE NAME MODULE_NAME KIND MAX_SIZE\n");
|
|
return 0;
|
|
}
|
|
if (last_sym_value)
|
|
BPF_SEQ_PRINTF(seq, "0x%x\n", iter->value - last_sym_value);
|
|
else
|
|
BPF_SEQ_PRINTF(seq, "\n");
|
|
|
|
value = iter->show_value ? iter->value : 0;
|
|
|
|
last_sym_value = value;
|
|
|
|
type = iter->type;
|
|
|
|
if (iter->module_name[0]) {
|
|
type = iter->exported ? to_upper(type) : to_lower(type);
|
|
BPF_SEQ_PRINTF(seq, "0x%llx %c %s [ %s ] ",
|
|
value, type, iter->name, iter->module_name);
|
|
} else {
|
|
BPF_SEQ_PRINTF(seq, "0x%llx %c %s ", value, type, iter->name);
|
|
}
|
|
if (!iter->pos_arch_end || iter->pos_arch_end > iter->pos)
|
|
BPF_SEQ_PRINTF(seq, "CORE ");
|
|
else if (!iter->pos_mod_end || iter->pos_mod_end > iter->pos)
|
|
BPF_SEQ_PRINTF(seq, "MOD ");
|
|
else if (!iter->pos_ftrace_mod_end || iter->pos_ftrace_mod_end > iter->pos)
|
|
BPF_SEQ_PRINTF(seq, "FTRACE_MOD ");
|
|
else if (!iter->pos_bpf_end || iter->pos_bpf_end > iter->pos)
|
|
BPF_SEQ_PRINTF(seq, "BPF ");
|
|
else
|
|
BPF_SEQ_PRINTF(seq, "KPROBE ");
|
|
return 0;
|
|
}
|