2018-01-13 01:55:03 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
2021-12-04 21:43:41 +08:00
|
|
|
#include <linux/linkage.h>
|
2018-01-13 01:55:03 +08:00
|
|
|
#include <linux/error-injection.h>
|
|
|
|
#include <linux/kprobes.h>
|
2022-03-08 23:30:40 +08:00
|
|
|
#include <linux/objtool.h>
|
2018-01-13 01:55:03 +08:00
|
|
|
|
|
|
|
asmlinkage void just_return_func(void);
|
|
|
|
|
|
|
|
asm(
|
2019-03-30 08:47:35 +08:00
|
|
|
".text\n"
|
2018-01-13 01:55:03 +08:00
|
|
|
".type just_return_func, @function\n"
|
2018-02-02 22:56:19 +08:00
|
|
|
".globl just_return_func\n"
|
2018-01-13 01:55:03 +08:00
|
|
|
"just_return_func:\n"
|
2022-03-08 23:30:40 +08:00
|
|
|
ANNOTATE_NOENDBR
|
2021-12-04 21:43:41 +08:00
|
|
|
ASM_RET
|
2018-01-13 01:55:03 +08:00
|
|
|
".size just_return_func, .-just_return_func\n"
|
|
|
|
);
|
|
|
|
|
|
|
|
void override_function_with_return(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
regs->ip = (unsigned long)&just_return_func;
|
|
|
|
}
|
|
|
|
NOKPROBE_SYMBOL(override_function_with_return);
|