mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
bpftool: Introduce btf c dump sorting
Sort bpftool c dump output; aiming to simplify vmlinux.h diffing and forcing more natural type definitions ordering. Definitions are sorted first by their BTF kind ranks, then by their base type name and by their own name. Type ranks Assign ranks to btf kinds (defined in function btf_type_rank) to set next order: 1. Anonymous enums/enums64 2. Named enums/enums64 3. Trivial types typedefs (ints, then floats) 4. Structs/Unions 5. Function prototypes 6. Forward declarations Type rank is set to maximum for unnamed reference types, structs and unions to avoid emitting those types early. They will be emitted as part of the type chain starting with named type. Lexicographical ordering Each type is assigned a sort_name and own_name. sort_name is the resolved name of the final base type for reference types (typedef, pointer, array etc). Sorting by sort_name allows to group typedefs of the same base type. sort_name for non-reference type is the same as own_name. own_name is a direct name of particular type, is used as final sorting step. Signed-off-by: Mykyta Yatsenko <yatsenko@meta.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Tested-by: Andrii Nakryiko <andrii@kernel.org> Reviewed-by: Quentin Monnet <qmo@kernel.org> Acked-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20240514131221.20585-1-yatsenko@meta.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
parent
4b377b4868
commit
94133cf24b
3 changed files with 141 additions and 8 deletions
|
@ -28,7 +28,7 @@ BTF COMMANDS
|
|||
| **bpftool** **btf help**
|
||||
|
|
||||
| *BTF_SRC* := { **id** *BTF_ID* | **prog** *PROG* | **map** *MAP* [{**key** | **value** | **kv** | **all**}] | **file** *FILE* }
|
||||
| *FORMAT* := { **raw** | **c** }
|
||||
| *FORMAT* := { **raw** | **c** [**unsorted**] }
|
||||
| *MAP* := { **id** *MAP_ID* | **pinned** *FILE* }
|
||||
| *PROG* := { **id** *PROG_ID* | **pinned** *FILE* | **tag** *PROG_TAG* | **name** *PROG_NAME* }
|
||||
|
||||
|
@ -63,7 +63,9 @@ bpftool btf dump *BTF_SRC*
|
|||
pahole.
|
||||
|
||||
**format** option can be used to override default (raw) output format. Raw
|
||||
(**raw**) or C-syntax (**c**) output formats are supported.
|
||||
(**raw**) or C-syntax (**c**) output formats are supported. With C-style
|
||||
formatting, the output is sorted by default. Use the **unsorted** option
|
||||
to avoid sorting the output.
|
||||
|
||||
bpftool btf help
|
||||
Print short help message.
|
||||
|
|
|
@ -930,6 +930,9 @@ _bpftool()
|
|||
format)
|
||||
COMPREPLY=( $( compgen -W "c raw" -- "$cur" ) )
|
||||
;;
|
||||
c)
|
||||
COMPREPLY=( $( compgen -W "unsorted" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
# emit extra options
|
||||
case ${words[3]} in
|
||||
|
|
|
@ -43,6 +43,13 @@ static const char * const btf_kind_str[NR_BTF_KINDS] = {
|
|||
[BTF_KIND_ENUM64] = "ENUM64",
|
||||
};
|
||||
|
||||
struct sort_datum {
|
||||
int index;
|
||||
int type_rank;
|
||||
const char *sort_name;
|
||||
const char *own_name;
|
||||
};
|
||||
|
||||
static const char *btf_int_enc_str(__u8 encoding)
|
||||
{
|
||||
switch (encoding) {
|
||||
|
@ -460,9 +467,122 @@ static void __printf(2, 0) btf_dump_printf(void *ctx,
|
|||
vfprintf(stdout, fmt, args);
|
||||
}
|
||||
|
||||
static int dump_btf_c(const struct btf *btf,
|
||||
__u32 *root_type_ids, int root_type_cnt)
|
||||
static int btf_type_rank(const struct btf *btf, __u32 index, bool has_name)
|
||||
{
|
||||
const struct btf_type *t = btf__type_by_id(btf, index);
|
||||
const int kind = btf_kind(t);
|
||||
const int max_rank = 10;
|
||||
|
||||
if (t->name_off)
|
||||
has_name = true;
|
||||
|
||||
switch (kind) {
|
||||
case BTF_KIND_ENUM:
|
||||
case BTF_KIND_ENUM64:
|
||||
return has_name ? 1 : 0;
|
||||
case BTF_KIND_INT:
|
||||
case BTF_KIND_FLOAT:
|
||||
return 2;
|
||||
case BTF_KIND_STRUCT:
|
||||
case BTF_KIND_UNION:
|
||||
return has_name ? 3 : max_rank;
|
||||
case BTF_KIND_FUNC_PROTO:
|
||||
return has_name ? 4 : max_rank;
|
||||
case BTF_KIND_ARRAY:
|
||||
if (has_name)
|
||||
return btf_type_rank(btf, btf_array(t)->type, has_name);
|
||||
return max_rank;
|
||||
case BTF_KIND_TYPE_TAG:
|
||||
case BTF_KIND_CONST:
|
||||
case BTF_KIND_PTR:
|
||||
case BTF_KIND_VOLATILE:
|
||||
case BTF_KIND_RESTRICT:
|
||||
case BTF_KIND_TYPEDEF:
|
||||
case BTF_KIND_DECL_TAG:
|
||||
if (has_name)
|
||||
return btf_type_rank(btf, t->type, has_name);
|
||||
return max_rank;
|
||||
default:
|
||||
return max_rank;
|
||||
}
|
||||
}
|
||||
|
||||
static const char *btf_type_sort_name(const struct btf *btf, __u32 index, bool from_ref)
|
||||
{
|
||||
const struct btf_type *t = btf__type_by_id(btf, index);
|
||||
|
||||
switch (btf_kind(t)) {
|
||||
case BTF_KIND_ENUM:
|
||||
case BTF_KIND_ENUM64: {
|
||||
int name_off = t->name_off;
|
||||
|
||||
/* Use name of the first element for anonymous enums if allowed */
|
||||
if (!from_ref && !t->name_off && btf_vlen(t))
|
||||
name_off = btf_enum(t)->name_off;
|
||||
|
||||
return btf__name_by_offset(btf, name_off);
|
||||
}
|
||||
case BTF_KIND_ARRAY:
|
||||
return btf_type_sort_name(btf, btf_array(t)->type, true);
|
||||
case BTF_KIND_TYPE_TAG:
|
||||
case BTF_KIND_CONST:
|
||||
case BTF_KIND_PTR:
|
||||
case BTF_KIND_VOLATILE:
|
||||
case BTF_KIND_RESTRICT:
|
||||
case BTF_KIND_TYPEDEF:
|
||||
case BTF_KIND_DECL_TAG:
|
||||
return btf_type_sort_name(btf, t->type, true);
|
||||
default:
|
||||
return btf__name_by_offset(btf, t->name_off);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int btf_type_compare(const void *left, const void *right)
|
||||
{
|
||||
const struct sort_datum *d1 = (const struct sort_datum *)left;
|
||||
const struct sort_datum *d2 = (const struct sort_datum *)right;
|
||||
int r;
|
||||
|
||||
if (d1->type_rank != d2->type_rank)
|
||||
return d1->type_rank < d2->type_rank ? -1 : 1;
|
||||
|
||||
r = strcmp(d1->sort_name, d2->sort_name);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
return strcmp(d1->own_name, d2->own_name);
|
||||
}
|
||||
|
||||
static struct sort_datum *sort_btf_c(const struct btf *btf)
|
||||
{
|
||||
struct sort_datum *datums;
|
||||
int n;
|
||||
|
||||
n = btf__type_cnt(btf);
|
||||
datums = malloc(sizeof(struct sort_datum) * n);
|
||||
if (!datums)
|
||||
return NULL;
|
||||
|
||||
for (int i = 0; i < n; ++i) {
|
||||
struct sort_datum *d = datums + i;
|
||||
const struct btf_type *t = btf__type_by_id(btf, i);
|
||||
|
||||
d->index = i;
|
||||
d->type_rank = btf_type_rank(btf, i, false);
|
||||
d->sort_name = btf_type_sort_name(btf, i, false);
|
||||
d->own_name = btf__name_by_offset(btf, t->name_off);
|
||||
}
|
||||
|
||||
qsort(datums, n, sizeof(struct sort_datum), btf_type_compare);
|
||||
|
||||
return datums;
|
||||
}
|
||||
|
||||
static int dump_btf_c(const struct btf *btf,
|
||||
__u32 *root_type_ids, int root_type_cnt, bool sort_dump)
|
||||
{
|
||||
struct sort_datum *datums = NULL;
|
||||
struct btf_dump *d;
|
||||
int err = 0, i;
|
||||
|
||||
|
@ -486,8 +606,12 @@ static int dump_btf_c(const struct btf *btf,
|
|||
} else {
|
||||
int cnt = btf__type_cnt(btf);
|
||||
|
||||
if (sort_dump)
|
||||
datums = sort_btf_c(btf);
|
||||
for (i = 1; i < cnt; i++) {
|
||||
err = btf_dump__dump_type(d, i);
|
||||
int idx = datums ? datums[i].index : i;
|
||||
|
||||
err = btf_dump__dump_type(d, idx);
|
||||
if (err)
|
||||
goto done;
|
||||
}
|
||||
|
@ -500,6 +624,7 @@ static int dump_btf_c(const struct btf *btf,
|
|||
printf("#endif /* __VMLINUX_H__ */\n");
|
||||
|
||||
done:
|
||||
free(datums);
|
||||
btf_dump__free(d);
|
||||
return err;
|
||||
}
|
||||
|
@ -549,10 +674,10 @@ static bool btf_is_kernel_module(__u32 btf_id)
|
|||
|
||||
static int do_dump(int argc, char **argv)
|
||||
{
|
||||
bool dump_c = false, sort_dump_c = true;
|
||||
struct btf *btf = NULL, *base = NULL;
|
||||
__u32 root_type_ids[2];
|
||||
int root_type_cnt = 0;
|
||||
bool dump_c = false;
|
||||
__u32 btf_id = -1;
|
||||
const char *src;
|
||||
int fd = -1;
|
||||
|
@ -663,6 +788,9 @@ static int do_dump(int argc, char **argv)
|
|||
goto done;
|
||||
}
|
||||
NEXT_ARG();
|
||||
} else if (is_prefix(*argv, "unsorted")) {
|
||||
sort_dump_c = false;
|
||||
NEXT_ARG();
|
||||
} else {
|
||||
p_err("unrecognized option: '%s'", *argv);
|
||||
err = -EINVAL;
|
||||
|
@ -691,7 +819,7 @@ static int do_dump(int argc, char **argv)
|
|||
err = -ENOTSUP;
|
||||
goto done;
|
||||
}
|
||||
err = dump_btf_c(btf, root_type_ids, root_type_cnt);
|
||||
err = dump_btf_c(btf, root_type_ids, root_type_cnt, sort_dump_c);
|
||||
} else {
|
||||
err = dump_btf_raw(btf, root_type_ids, root_type_cnt);
|
||||
}
|
||||
|
@ -1063,7 +1191,7 @@ static int do_help(int argc, char **argv)
|
|||
" %1$s %2$s help\n"
|
||||
"\n"
|
||||
" BTF_SRC := { id BTF_ID | prog PROG | map MAP [{key | value | kv | all}] | file FILE }\n"
|
||||
" FORMAT := { raw | c }\n"
|
||||
" FORMAT := { raw | c [unsorted] }\n"
|
||||
" " HELP_SPEC_MAP "\n"
|
||||
" " HELP_SPEC_PROGRAM "\n"
|
||||
" " HELP_SPEC_OPTIONS " |\n"
|
||||
|
|
Loading…
Reference in a new issue