Sami Tolvanen
983df5f269
samples/ftrace: Mark my_tramp[12]? global
...
my_tramp[12]? are declared as global functions in C, but they are not
marked global in the inline assembly definition. This mismatch confuses
Clang's Control-Flow Integrity checking. Fix the definitions by adding
.globl.
Link: https://lkml.kernel.org/r/20201113183414.1446671-1-samitolvanen@google.com
Fixes: 9d907f1ae8
("ftrace/samples: Add a sample module that implements modify_ftrace_direct()")
Reviewed-by: Kees Cook <keescook@chromium.org >
Signed-off-by: Sami Tolvanen <samitolvanen@google.com >
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org >
2020-11-30 21:42:48 -05:00
Josh Poimboeuf
9d907f1ae8
samples/ftrace: Fix asm function ELF annotations
...
Enable objtool coverage for the sample ftrace modules by adding ELF
annotations to the asm trampoline functions.
samples/ftrace/ftrace-direct.o: warning: objtool: .text+0x0: unreachable instruction
samples/ftrace/ftrace-direct-modify.o: warning: objtool: .text+0x0: unreachable instruction
samples/ftrace/ftrace-direct-too.o: warning: objtool: .text+0x0: unreachable instruction
Reported-by: Randy Dunlap <rdunlap@infradead.org >
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com >
2020-05-20 08:30:43 -05:00
Steven Rostedt (VMware)
ae0cc3b7e7
ftrace/samples: Add a sample module that implements modify_ftrace_direct()
...
Add a sample module that tests modify_ftrace_direct(), and this can be used
by the selftests as well.
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org >
2019-11-14 22:45:47 -05:00