From: Jose E. Marchesi Date: Mon, 29 Jan 2024 16:47:00 +0000 (+0100) Subject: bpf: emit empty epilogues in naked functions X-Git-Tag: basepoints/gcc-15~1635 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1959aeee1e0e0b5eca12178444ba2f28c0ae558f;p=thirdparty%2Fgcc.git bpf: emit empty epilogues in naked functions This patch fixes the BPF backend to not generate `exit' (return) instructions in epilogues of functions that are declared as naked via the corresponding compiler attribute. Having extra exit instructions upsets the kernel BPF verifier. Tested in bpf-unknown-none target in x86_64-linux-gnu host. gcc/ChangeLog * config/bpf/bpf.cc (bpf_expand_epilogue): Do not emit a return instruction in naked function epilogues. gcc/testsuite/ChangeLog * gcc.target/bpf/naked-1.c: Update test to not expect an exit instruction in naked function. * gcc.target/bpf/naked-2.c: New test. --- diff --git a/gcc/config/bpf/bpf.cc b/gcc/config/bpf/bpf.cc index 9af1728d8520..d6ca47eeecbe 100644 --- a/gcc/config/bpf/bpf.cc +++ b/gcc/config/bpf/bpf.cc @@ -420,9 +420,8 @@ bpf_expand_epilogue (void) /* See note in bpf_expand_prologue for an explanation on why we are not restoring callee-saved registers in BPF. */ - /* If we ever need to do anything else than just generating a return - instruction here, please mind the `naked' function attribute. */ - + if (lookup_attribute ("naked", DECL_ATTRIBUTES (cfun->decl)) != NULL_TREE) + return; emit_jump_insn (gen_exit ()); } diff --git a/gcc/testsuite/gcc.target/bpf/naked-1.c b/gcc/testsuite/gcc.target/bpf/naked-1.c index cbbc4c516976..dc8ac2619ccb 100644 --- a/gcc/testsuite/gcc.target/bpf/naked-1.c +++ b/gcc/testsuite/gcc.target/bpf/naked-1.c @@ -9,4 +9,3 @@ int __attribute__((naked)) foo() __asm__ volatile ("@ naked"); } /* { dg-final { scan-assembler "\t@ naked" } } */ -/* { dg-final { scan-assembler "\texit\n" } } */ diff --git a/gcc/testsuite/gcc.target/bpf/naked-2.c b/gcc/testsuite/gcc.target/bpf/naked-2.c new file mode 100644 index 000000000000..25aebf84755b --- /dev/null +++ b/gcc/testsuite/gcc.target/bpf/naked-2.c @@ -0,0 +1,10 @@ +/* Verify that __attribute__((naked)) produces functions without implicit + `exit' instructions in the epilogue. */ +/* { dg-do compile } */ +/* { dg-options "-O0" } */ + +int __attribute__((naked)) foo() +{ + __asm__ volatile ("exit"); +} +/* { dg-final { scan-assembler-times "\texit" 1 } } */