Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Dynamic function tracing support. |
| 3 | * |
| 4 | * Copyright (C) 2008 Abhishek Sagar <sagar.abhishek@gmail.com> |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 5 | * Copyright (C) 2010 Rabin Vincent <rabin@rab.in> |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 6 | * |
| 7 | * For licencing details, see COPYING. |
| 8 | * |
| 9 | * Defines low-level handling of mcount calls when the kernel |
| 10 | * is compiled with the -pg flag. When using dynamic ftrace, the |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 11 | * mcount call-sites get patched with NOP till they are enabled. |
| 12 | * All code mutation routines here are called under stop_machine(). |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/ftrace.h> |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 16 | #include <linux/uaccess.h> |
Rabin Vincent | a672917 | 2014-04-03 18:46:45 +0100 | [diff] [blame] | 17 | #include <linux/module.h> |
Kees Cook | 80d6b0c | 2014-04-03 13:29:50 -0700 | [diff] [blame] | 18 | #include <linux/stop_machine.h> |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 19 | |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 20 | #include <asm/cacheflush.h> |
Rabin Vincent | 4394e28 | 2012-02-18 17:47:03 +0100 | [diff] [blame] | 21 | #include <asm/opcodes.h> |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 22 | #include <asm/ftrace.h> |
Wang Nan | 0dc016d | 2015-01-09 14:37:36 +0800 | [diff] [blame] | 23 | #include <asm/insn.h> |
Laura Abbott | 74d86a7 | 2017-05-08 15:58:02 -0700 | [diff] [blame] | 24 | #include <asm/set_memory.h> |
Peter Zijlstra | 5a73558 | 2019-10-15 21:07:35 +0200 | [diff] [blame] | 25 | #include <asm/patch.h> |
Rabin Vincent | d82227c | 2012-02-18 17:50:06 +0100 | [diff] [blame] | 26 | |
Rabin Vincent | 72dc43a | 2010-08-10 19:52:35 +0100 | [diff] [blame] | 27 | #ifdef CONFIG_THUMB2_KERNEL |
Rabin Vincent | 4394e28 | 2012-02-18 17:47:03 +0100 | [diff] [blame] | 28 | #define NOP 0xf85deb04 /* pop.w {lr} */ |
Rabin Vincent | 72dc43a | 2010-08-10 19:52:35 +0100 | [diff] [blame] | 29 | #else |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 30 | #define NOP 0xe8bd4000 /* pop {lr} */ |
Rabin Vincent | 72dc43a | 2010-08-10 19:52:35 +0100 | [diff] [blame] | 31 | #endif |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 32 | |
Tim Bird | 376cfa8 | 2010-10-09 22:24:38 +0530 | [diff] [blame] | 33 | #ifdef CONFIG_DYNAMIC_FTRACE |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 34 | |
Kees Cook | 80d6b0c | 2014-04-03 13:29:50 -0700 | [diff] [blame] | 35 | static int __ftrace_modify_code(void *data) |
| 36 | { |
| 37 | int *command = data; |
| 38 | |
Kees Cook | 80d6b0c | 2014-04-03 13:29:50 -0700 | [diff] [blame] | 39 | ftrace_modify_all_code(*command); |
Kees Cook | 80d6b0c | 2014-04-03 13:29:50 -0700 | [diff] [blame] | 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | void arch_ftrace_update_code(int command) |
| 45 | { |
| 46 | stop_machine(__ftrace_modify_code, &command, NULL); |
| 47 | } |
| 48 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 49 | static unsigned long ftrace_nop_replace(struct dyn_ftrace *rec) |
| 50 | { |
| 51 | return NOP; |
| 52 | } |
| 53 | |
| 54 | static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr) |
| 55 | { |
| 56 | return addr; |
| 57 | } |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 58 | |
Rabin Vincent | a672917 | 2014-04-03 18:46:45 +0100 | [diff] [blame] | 59 | int ftrace_arch_code_modify_prepare(void) |
| 60 | { |
Rabin Vincent | a672917 | 2014-04-03 18:46:45 +0100 | [diff] [blame] | 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | int ftrace_arch_code_modify_post_process(void) |
| 65 | { |
Kees Cook | 80d6b0c | 2014-04-03 13:29:50 -0700 | [diff] [blame] | 66 | /* Make sure any TLB misses during machine stop are cleared. */ |
| 67 | flush_tlb_all(); |
Rabin Vincent | a672917 | 2014-04-03 18:46:45 +0100 | [diff] [blame] | 68 | return 0; |
| 69 | } |
| 70 | |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 71 | static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) |
| 72 | { |
Rabin Vincent | d82227c | 2012-02-18 17:50:06 +0100 | [diff] [blame] | 73 | return arm_gen_branch_link(pc, addr); |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 74 | } |
| 75 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 76 | static int ftrace_modify_code(unsigned long pc, unsigned long old, |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 77 | unsigned long new, bool validate) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 78 | { |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 79 | unsigned long replaced; |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 80 | |
Rabin Vincent | 4394e28 | 2012-02-18 17:47:03 +0100 | [diff] [blame] | 81 | if (IS_ENABLED(CONFIG_THUMB2_KERNEL)) { |
| 82 | old = __opcode_to_mem_thumb32(old); |
| 83 | new = __opcode_to_mem_thumb32(new); |
| 84 | } else { |
| 85 | old = __opcode_to_mem_arm(old); |
| 86 | new = __opcode_to_mem_arm(new); |
| 87 | } |
| 88 | |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 89 | if (validate) { |
| 90 | if (probe_kernel_read(&replaced, (void *)pc, MCOUNT_INSN_SIZE)) |
| 91 | return -EFAULT; |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 92 | |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 93 | if (replaced != old) |
| 94 | return -EINVAL; |
| 95 | } |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 96 | |
Peter Zijlstra | 5a73558 | 2019-10-15 21:07:35 +0200 | [diff] [blame] | 97 | __patch_text((void *)pc, new); |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 98 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 99 | return 0; |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | int ftrace_update_ftrace_func(ftrace_func_t func) |
| 103 | { |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 104 | unsigned long pc; |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 105 | unsigned long new; |
| 106 | int ret; |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 107 | |
| 108 | pc = (unsigned long)&ftrace_call; |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 109 | new = ftrace_call_replace(pc, (unsigned long)func); |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 110 | |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 111 | ret = ftrace_modify_code(pc, 0, new, false); |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 112 | |
Abel Vesa | 620176f | 2017-05-26 21:49:47 +0100 | [diff] [blame] | 113 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| 114 | if (!ret) { |
| 115 | pc = (unsigned long)&ftrace_regs_call; |
| 116 | new = ftrace_call_replace(pc, (unsigned long)func); |
| 117 | |
| 118 | ret = ftrace_modify_code(pc, 0, new, false); |
| 119 | } |
| 120 | #endif |
| 121 | |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 122 | return ret; |
| 123 | } |
| 124 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 125 | int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) |
| 126 | { |
| 127 | unsigned long new, old; |
| 128 | unsigned long ip = rec->ip; |
| 129 | |
| 130 | old = ftrace_nop_replace(rec); |
Abel Vesa | 620176f | 2017-05-26 21:49:47 +0100 | [diff] [blame] | 131 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 132 | new = ftrace_call_replace(ip, adjust_address(rec, addr)); |
| 133 | |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 134 | return ftrace_modify_code(rec->ip, old, new, true); |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 135 | } |
| 136 | |
Abel Vesa | 620176f | 2017-05-26 21:49:47 +0100 | [diff] [blame] | 137 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| 138 | |
| 139 | int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr, |
| 140 | unsigned long addr) |
| 141 | { |
| 142 | unsigned long new, old; |
| 143 | unsigned long ip = rec->ip; |
| 144 | |
| 145 | old = ftrace_call_replace(ip, adjust_address(rec, old_addr)); |
| 146 | |
| 147 | new = ftrace_call_replace(ip, adjust_address(rec, addr)); |
| 148 | |
| 149 | return ftrace_modify_code(rec->ip, old, new, true); |
| 150 | } |
| 151 | |
| 152 | #endif |
| 153 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 154 | int ftrace_make_nop(struct module *mod, |
| 155 | struct dyn_ftrace *rec, unsigned long addr) |
| 156 | { |
| 157 | unsigned long ip = rec->ip; |
| 158 | unsigned long old; |
| 159 | unsigned long new; |
| 160 | int ret; |
| 161 | |
| 162 | old = ftrace_call_replace(ip, adjust_address(rec, addr)); |
| 163 | new = ftrace_nop_replace(rec); |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 164 | ret = ftrace_modify_code(ip, old, new, true); |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 165 | |
Rabin Vincent | 3b6c223 | 2010-08-10 19:43:28 +0100 | [diff] [blame] | 166 | return ret; |
| 167 | } |
| 168 | |
Jiri Slaby | 3a36cb1 | 2014-02-24 19:59:59 +0100 | [diff] [blame] | 169 | int __init ftrace_dyn_arch_init(void) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 170 | { |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 171 | return 0; |
| 172 | } |
Tim Bird | 376cfa8 | 2010-10-09 22:24:38 +0530 | [diff] [blame] | 173 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
| 174 | |
| 175 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 176 | void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr, |
| 177 | unsigned long frame_pointer) |
| 178 | { |
| 179 | unsigned long return_hooker = (unsigned long) &return_to_handler; |
Tim Bird | 376cfa8 | 2010-10-09 22:24:38 +0530 | [diff] [blame] | 180 | unsigned long old; |
Tim Bird | 376cfa8 | 2010-10-09 22:24:38 +0530 | [diff] [blame] | 181 | |
| 182 | if (unlikely(atomic_read(¤t->tracing_graph_pause))) |
| 183 | return; |
| 184 | |
| 185 | old = *parent; |
| 186 | *parent = return_hooker; |
| 187 | |
Steven Rostedt (VMware) | f1f5b14 | 2018-11-18 17:19:26 -0500 | [diff] [blame] | 188 | if (function_graph_enter(old, self_addr, frame_pointer, NULL)) |
Colin Cross | 4c36595 | 2012-07-18 19:15:25 +0100 | [diff] [blame] | 189 | *parent = old; |
Tim Bird | 376cfa8 | 2010-10-09 22:24:38 +0530 | [diff] [blame] | 190 | } |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 191 | |
| 192 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 193 | extern unsigned long ftrace_graph_call; |
| 194 | extern unsigned long ftrace_graph_call_old; |
| 195 | extern void ftrace_graph_caller_old(void); |
Abel Vesa | 620176f | 2017-05-26 21:49:47 +0100 | [diff] [blame] | 196 | extern unsigned long ftrace_graph_regs_call; |
| 197 | extern void ftrace_graph_regs_caller(void); |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 198 | |
| 199 | static int __ftrace_modify_caller(unsigned long *callsite, |
| 200 | void (*func) (void), bool enable) |
| 201 | { |
| 202 | unsigned long caller_fn = (unsigned long) func; |
| 203 | unsigned long pc = (unsigned long) callsite; |
Rabin Vincent | d82227c | 2012-02-18 17:50:06 +0100 | [diff] [blame] | 204 | unsigned long branch = arm_gen_branch(pc, caller_fn); |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 205 | unsigned long nop = 0xe1a00000; /* mov r0, r0 */ |
| 206 | unsigned long old = enable ? nop : branch; |
| 207 | unsigned long new = enable ? branch : nop; |
| 208 | |
Rabin Vincent | dc283d70 | 2012-02-29 15:59:07 +0100 | [diff] [blame] | 209 | return ftrace_modify_code(pc, old, new, true); |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | static int ftrace_modify_graph_caller(bool enable) |
| 213 | { |
| 214 | int ret; |
| 215 | |
| 216 | ret = __ftrace_modify_caller(&ftrace_graph_call, |
| 217 | ftrace_graph_caller, |
| 218 | enable); |
| 219 | |
Abel Vesa | 620176f | 2017-05-26 21:49:47 +0100 | [diff] [blame] | 220 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| 221 | if (!ret) |
| 222 | ret = __ftrace_modify_caller(&ftrace_graph_regs_call, |
| 223 | ftrace_graph_regs_caller, |
| 224 | enable); |
| 225 | #endif |
| 226 | |
| 227 | |
Rabin Vincent | dd686eb | 2010-11-06 23:03:21 +0530 | [diff] [blame] | 228 | return ret; |
| 229 | } |
| 230 | |
| 231 | int ftrace_enable_ftrace_graph_caller(void) |
| 232 | { |
| 233 | return ftrace_modify_graph_caller(true); |
| 234 | } |
| 235 | |
| 236 | int ftrace_disable_ftrace_graph_caller(void) |
| 237 | { |
| 238 | return ftrace_modify_graph_caller(false); |
| 239 | } |
| 240 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
Tim Bird | 376cfa8 | 2010-10-09 22:24:38 +0530 | [diff] [blame] | 241 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |