]> git.baikalelectronics.ru Git - kernel.git/commit
libbpf: Handle GCC noreturn-turned-volatile quirk
authorAndrii Nakryiko <andriin@fb.com>
Wed, 10 Jun 2020 05:23:35 +0000 (22:23 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 10 Jun 2020 11:37:02 +0000 (13:37 +0200)
commit8a5df261c0519e96e59a4d9d424991e2556313a5
tree1afdc5598b61e41a8114a4fe5c733e3ae8cb6ae6
parentc1058ee28d49067b641211041811840cebd36097
libbpf: Handle GCC noreturn-turned-volatile quirk

Handle a GCC quirk of emitting extra volatile modifier in DWARF (and
subsequently preserved in BTF by pahole) for function pointers marked as
__attribute__((noreturn)). This was the way to mark such functions before GCC
2.5 added noreturn attribute. Drop such func_proto modifiers, similarly to how
it's done for array (also to handle GCC quirk/bug).

Such volatile attribute is emitted by GCC only, so existing selftests can't
express such test. Simple repro is like this (compiled with GCC + BTF
generated by pahole):

  struct my_struct {
      void __attribute__((noreturn)) (*fn)(int);
  };
  struct my_struct a;

Without this fix, output will be:

struct my_struct {
    voidvolatile  (*fn)(int);
};

With the fix:

struct my_struct {
    void (*fn)(int);
};

Fixes: d9ea0b1a0110 ("libbpf: add btf_dump API for BTF-to-C conversion")
Reported-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Tested-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
Link: https://lore.kernel.org/bpf/20200610052335.8d39b6e-1-andriin@fb.com
tools/lib/bpf/btf_dump.c