2019-11-08 13:12:33 -05:00
// SPDX-License-Identifier: GPL-2.0-only
# include <linux/module.h>
# include <linux/sched.h> /* for wake_up_process() */
# include <linux/ftrace.h>
2023-04-27 16:07:00 +02:00
# ifndef CONFIG_ARM64
2021-10-12 15:38:02 +02:00
# include <asm/asm-offsets.h>
2023-04-27 16:07:00 +02:00
# endif
2019-11-08 13:12:33 -05:00
2021-12-19 14:53:17 +01:00
extern void my_direct_func ( struct task_struct * p ) ;
2019-11-08 13:12:33 -05:00
void my_direct_func ( struct task_struct * p )
{
2019-11-15 08:59:38 +00:00
trace_printk ( " waking up %s-%d \n " , p - > comm , p - > pid ) ;
2019-11-08 13:12:33 -05:00
}
extern void my_tramp ( void * ) ;
2023-11-30 13:15:31 +01:00
# ifdef CONFIG_RISCV
# include <asm/asm.h>
asm (
" .pushsection .text, \" ax \" , @progbits \n "
" .type my_tramp, @function \n "
" .globl my_tramp \n "
" my_tramp: \n "
" addi sp,sp,-3* " SZREG " \n "
" " REG_S " a0,0* " SZREG " (sp) \n "
" " REG_S " t0,1* " SZREG " (sp) \n "
" " REG_S " ra,2* " SZREG " (sp) \n "
" call my_direct_func \n "
" " REG_L " a0,0* " SZREG " (sp) \n "
" " REG_L " t0,1* " SZREG " (sp) \n "
" " REG_L " ra,2* " SZREG " (sp) \n "
" addi sp,sp,3* " SZREG " \n "
" jr t0 \n "
" .size my_tramp, .-my_tramp \n "
" .popsection \n "
) ;
# endif /* CONFIG_RISCV */
2021-10-12 15:38:02 +02:00
# ifdef CONFIG_X86_64
2022-03-08 16:30:34 +01:00
# include <asm/ibt.h>
2023-01-30 16:59:54 +08:00
# include <asm/nospec-branch.h>
2022-03-08 16:30:34 +01:00
2019-11-08 13:12:33 -05:00
asm (
" .pushsection .text, \" ax \" , @progbits \n "
2020-04-24 15:40:43 -05:00
" .type my_tramp, @function \n "
2020-11-13 10:34:14 -08:00
" .globl my_tramp \n "
2019-11-08 13:12:33 -05:00
" my_tramp: "
2022-03-08 16:30:34 +01:00
ASM_ENDBR
2019-11-08 13:12:33 -05:00
" pushq %rbp \n "
" movq %rsp, %rbp \n "
2022-09-15 13:11:37 +02:00
CALL_DEPTH_ACCOUNT
2019-11-08 13:12:33 -05:00
" pushq %rdi \n "
" call my_direct_func \n "
" popq %rdi \n "
" leave \n "
2021-12-04 14:43:41 +01:00
ASM_RET
2020-04-24 15:40:43 -05:00
" .size my_tramp, .-my_tramp \n "
2019-11-08 13:12:33 -05:00
" .popsection \n "
) ;
2021-10-12 15:38:02 +02:00
# endif /* CONFIG_X86_64 */
# ifdef CONFIG_S390
asm (
" .pushsection .text, \" ax \" , @progbits \n "
" .type my_tramp, @function \n "
" .globl my_tramp \n "
" my_tramp: "
" lgr %r1,%r15 \n "
" stmg %r0,%r5, " __stringify ( __SF_GPRS ) " (%r15) \n "
" stg %r14, " __stringify ( __SF_GPRS + 8 * 8 ) " (%r15) \n "
" aghi %r15, " __stringify ( - STACK_FRAME_OVERHEAD ) " \n "
" stg %r1, " __stringify ( __SF_BACKCHAIN ) " (%r15) \n "
" brasl %r14,my_direct_func \n "
" aghi %r15, " __stringify ( STACK_FRAME_OVERHEAD ) " \n "
" lmg %r0,%r5, " __stringify ( __SF_GPRS ) " (%r15) \n "
" lg %r14, " __stringify ( __SF_GPRS + 8 * 8 ) " (%r15) \n "
" lgr %r1,%r0 \n "
" br %r1 \n "
" .size my_tramp, .-my_tramp \n "
" .popsection \n "
) ;
# endif /* CONFIG_S390 */
2019-11-08 13:12:33 -05:00
2023-04-27 16:07:00 +02:00
# ifdef CONFIG_ARM64
asm (
" .pushsection .text, \" ax \" , @progbits \n "
" .type my_tramp, @function \n "
" .globl my_tramp \n "
" my_tramp: "
2023-08-20 19:15:09 +08:00
" hint 34 \n " // bti c
2023-04-27 16:07:00 +02:00
" sub sp, sp, #32 \n "
" stp x9, x30, [sp] \n "
" str x0, [sp, #16] \n "
" bl my_direct_func \n "
" ldp x30, x9, [sp] \n "
" ldr x0, [sp, #16] \n "
" add sp, sp, #32 \n "
" ret x9 \n "
" .size my_tramp, .-my_tramp \n "
" .popsection \n "
) ;
# endif /* CONFIG_ARM64 */
2023-05-01 17:19:53 +08:00
# ifdef CONFIG_LOONGARCH
asm (
" .pushsection .text, \" ax \" , @progbits \n "
" .type my_tramp, @function \n "
" .globl my_tramp \n "
" my_tramp: \n "
" addi.d $sp, $sp, -32 \n "
" st.d $a0, $sp, 0 \n "
" st.d $t0, $sp, 8 \n "
" st.d $ra, $sp, 16 \n "
" bl my_direct_func \n "
" ld.d $a0, $sp, 0 \n "
" ld.d $t0, $sp, 8 \n "
" ld.d $ra, $sp, 16 \n "
" addi.d $sp, $sp, 32 \n "
" jr $t0 \n "
" .size my_tramp, .-my_tramp \n "
" .popsection \n "
) ;
# endif /* CONFIG_LOONGARCH */
2023-03-21 15:04:19 +01:00
static struct ftrace_ops direct ;
2019-11-08 13:12:33 -05:00
static int __init ftrace_direct_init ( void )
{
2023-03-21 15:04:19 +01:00
ftrace_set_filter_ip ( & direct , ( unsigned long ) wake_up_process , 0 , 0 ) ;
2023-03-21 15:04:21 +01:00
return register_ftrace_direct ( & direct , ( unsigned long ) my_tramp ) ;
2019-11-08 13:12:33 -05:00
}
static void __exit ftrace_direct_exit ( void )
{
2023-03-21 15:04:21 +01:00
unregister_ftrace_direct ( & direct , ( unsigned long ) my_tramp , true ) ;
2019-11-08 13:12:33 -05:00
}
module_init ( ftrace_direct_init ) ;
module_exit ( ftrace_direct_exit ) ;
MODULE_AUTHOR ( " Steven Rostedt " ) ;
2023-03-21 15:04:21 +01:00
MODULE_DESCRIPTION ( " Example use case of using register_ftrace_direct() " ) ;
2019-11-08 13:12:33 -05:00
MODULE_LICENSE ( " GPL " ) ;