Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Code for replacing ftrace calls with jumps. |
| 4 | * |
| 5 | * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com> |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 6 | * Copyright (C) 2009, 2010 DSLab, Lanzhou University, China |
Wu Zhangjin | f7a904d | 2010-01-04 17:16:51 +0800 | [diff] [blame] | 7 | * Author: Wu Zhangjin <wuzhangjin@gmail.com> |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 8 | * |
| 9 | * Thanks goes to Steven Rostedt for writing the original x86 version. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/uaccess.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/ftrace.h> |
Ralf Baechle | 19e2e17 | 2012-07-13 23:38:17 +0200 | [diff] [blame] | 15 | #include <linux/syscalls.h> |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 16 | |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 17 | #include <asm/asm.h> |
| 18 | #include <asm/asm-offsets.h> |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 19 | #include <asm/cacheflush.h> |
Ralf Baechle | 19e2e17 | 2012-07-13 23:38:17 +0200 | [diff] [blame] | 20 | #include <asm/syscall.h> |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 21 | #include <asm/uasm.h> |
Ralf Baechle | 19e2e17 | 2012-07-13 23:38:17 +0200 | [diff] [blame] | 22 | #include <asm/unistd.h> |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 23 | |
Wu Zhangjin | d9cdb2f | 2011-01-20 03:28:29 +0800 | [diff] [blame] | 24 | #include <asm-generic/sections.h> |
Wu Zhangjin | c9f8487 | 2010-05-14 19:08:34 +0800 | [diff] [blame] | 25 | |
Thomas Gleixner | 49de830 | 2011-07-23 12:41:23 +0000 | [diff] [blame] | 26 | #if defined(KBUILD_MCOUNT_RA_ADDRESS) && defined(CONFIG_32BIT) |
| 27 | #define MCOUNT_OFFSET_INSNS 5 |
| 28 | #else |
| 29 | #define MCOUNT_OFFSET_INSNS 4 |
| 30 | #endif |
| 31 | |
Markos Chandras | cb2f993 | 2013-06-10 10:35:26 +0000 | [diff] [blame] | 32 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 33 | |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 34 | /* Arch override because MIPS doesn't need to run this from stop_machine() */ |
| 35 | void arch_ftrace_update_code(int command) |
| 36 | { |
| 37 | ftrace_modify_all_code(command); |
| 38 | } |
| 39 | |
Markos Chandras | cb2f993 | 2013-06-10 10:35:26 +0000 | [diff] [blame] | 40 | #endif |
| 41 | |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 42 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 43 | |
| 44 | #define JAL 0x0c000000 /* jump & link: ip --> ra, jump to target */ |
| 45 | #define ADDR_MASK 0x03ffffff /* op_code|addr : 31...26|25 ....0 */ |
David Daney | c54794d | 2010-12-28 13:21:37 -0800 | [diff] [blame] | 46 | #define JUMP_RANGE_MASK ((1UL << 28) - 1) |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 47 | |
Wu Zhangjin | 4d6829f | 2010-05-14 19:08:31 +0800 | [diff] [blame] | 48 | #define INSN_NOP 0x00000000 /* nop */ |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 49 | #define INSN_JAL(addr) \ |
| 50 | ((unsigned int)(JAL | (((addr) >> 2) & ADDR_MASK))) |
| 51 | |
| 52 | static unsigned int insn_jal_ftrace_caller __read_mostly; |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 53 | static unsigned int insn_la_mcount[2] __read_mostly; |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 54 | static unsigned int insn_j_ftrace_graph_caller __maybe_unused __read_mostly; |
| 55 | |
| 56 | static inline void ftrace_dyn_arch_init_insns(void) |
| 57 | { |
| 58 | u32 *buf; |
| 59 | unsigned int v1; |
| 60 | |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 61 | /* la v1, _mcount */ |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 62 | v1 = 3; |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 63 | buf = (u32 *)&insn_la_mcount[0]; |
| 64 | UASM_i_LA(&buf, v1, MCOUNT_ADDR); |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 65 | |
| 66 | /* jal (ftrace_caller + 8), jump over the first two instruction */ |
| 67 | buf = (u32 *)&insn_jal_ftrace_caller; |
David Daney | c54794d | 2010-12-28 13:21:37 -0800 | [diff] [blame] | 68 | uasm_i_jal(&buf, (FTRACE_ADDR + 8) & JUMP_RANGE_MASK); |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 69 | |
| 70 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 71 | /* j ftrace_graph_caller */ |
| 72 | buf = (u32 *)&insn_j_ftrace_graph_caller; |
David Daney | c54794d | 2010-12-28 13:21:37 -0800 | [diff] [blame] | 73 | uasm_i_j(&buf, (unsigned long)ftrace_graph_caller & JUMP_RANGE_MASK); |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 74 | #endif |
| 75 | } |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 76 | |
| 77 | static int ftrace_modify_code(unsigned long ip, unsigned int new_code) |
| 78 | { |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 79 | int faulted; |
Leonid Yegoshin | 6ebda44 | 2013-12-16 12:06:55 +0000 | [diff] [blame] | 80 | mm_segment_t old_fs; |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 81 | |
| 82 | /* *(unsigned int *)ip = new_code; */ |
| 83 | safe_store_code(new_code, ip, faulted); |
| 84 | |
| 85 | if (unlikely(faulted)) |
| 86 | return -EFAULT; |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 87 | |
Leonid Yegoshin | 6ebda44 | 2013-12-16 12:06:55 +0000 | [diff] [blame] | 88 | old_fs = get_fs(); |
| 89 | set_fs(get_ds()); |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 90 | flush_icache_range(ip, ip + 8); |
Leonid Yegoshin | 6ebda44 | 2013-12-16 12:06:55 +0000 | [diff] [blame] | 91 | set_fs(old_fs); |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 96 | #ifndef CONFIG_64BIT |
| 97 | static int ftrace_modify_code_2(unsigned long ip, unsigned int new_code1, |
| 98 | unsigned int new_code2) |
| 99 | { |
| 100 | int faulted; |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 101 | mm_segment_t old_fs; |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 102 | |
| 103 | safe_store_code(new_code1, ip, faulted); |
| 104 | if (unlikely(faulted)) |
| 105 | return -EFAULT; |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 106 | |
| 107 | ip += 4; |
| 108 | safe_store_code(new_code2, ip, faulted); |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 109 | if (unlikely(faulted)) |
| 110 | return -EFAULT; |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 111 | |
| 112 | ip -= 4; |
| 113 | old_fs = get_fs(); |
| 114 | set_fs(get_ds()); |
Viller Hsiao | a467109 | 2014-02-22 15:46:49 +0800 | [diff] [blame] | 115 | flush_icache_range(ip, ip + 8); |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 116 | set_fs(old_fs); |
| 117 | |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static int ftrace_modify_code_2r(unsigned long ip, unsigned int new_code1, |
| 122 | unsigned int new_code2) |
| 123 | { |
| 124 | int faulted; |
| 125 | mm_segment_t old_fs; |
| 126 | |
| 127 | ip += 4; |
| 128 | safe_store_code(new_code2, ip, faulted); |
| 129 | if (unlikely(faulted)) |
| 130 | return -EFAULT; |
| 131 | |
| 132 | ip -= 4; |
| 133 | safe_store_code(new_code1, ip, faulted); |
| 134 | if (unlikely(faulted)) |
| 135 | return -EFAULT; |
| 136 | |
| 137 | old_fs = get_fs(); |
| 138 | set_fs(get_ds()); |
| 139 | flush_icache_range(ip, ip + 8); |
| 140 | set_fs(old_fs); |
| 141 | |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 142 | return 0; |
| 143 | } |
| 144 | #endif |
| 145 | |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 146 | /* |
| 147 | * The details about the calling site of mcount on MIPS |
| 148 | * |
| 149 | * 1. For kernel: |
| 150 | * |
| 151 | * move at, ra |
| 152 | * jal _mcount --> nop |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 153 | * sub sp, sp, 8 --> nop (CONFIG_32BIT) |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 154 | * |
| 155 | * 2. For modules: |
| 156 | * |
| 157 | * 2.1 For KBUILD_MCOUNT_RA_ADDRESS and CONFIG_32BIT |
| 158 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 159 | * lui v1, hi_16bit_of_mcount --> b 1f (0x10000005) |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 160 | * addiu v1, v1, low_16bit_of_mcount --> nop (CONFIG_32BIT) |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 161 | * move at, ra |
| 162 | * move $12, ra_address |
| 163 | * jalr v1 |
| 164 | * sub sp, sp, 8 |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 165 | * 1: offset = 5 instructions |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 166 | * 2.2 For the Other situations |
| 167 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 168 | * lui v1, hi_16bit_of_mcount --> b 1f (0x10000004) |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 169 | * addiu v1, v1, low_16bit_of_mcount --> nop (CONFIG_32BIT) |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 170 | * move at, ra |
| 171 | * jalr v1 |
| 172 | * nop | move $12, ra_address | sub sp, sp, 8 |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 173 | * 1: offset = 4 instructions |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 174 | */ |
| 175 | |
Wu Zhangjin | 7f21a60 | 2011-01-20 03:28:31 +0800 | [diff] [blame] | 176 | #define INSN_B_1F (0x10000000 | MCOUNT_OFFSET_INSNS) |
| 177 | |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 178 | int ftrace_make_nop(struct module *mod, |
| 179 | struct dyn_ftrace *rec, unsigned long addr) |
| 180 | { |
| 181 | unsigned int new; |
| 182 | unsigned long ip = rec->ip; |
| 183 | |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 184 | /* |
Wu Zhangjin | d9cdb2f | 2011-01-20 03:28:29 +0800 | [diff] [blame] | 185 | * If ip is in kernel space, no long call, otherwise, long call is |
| 186 | * needed. |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 187 | */ |
Marcin Nowakowski | 87051ec | 2017-05-23 12:56:43 +0200 | [diff] [blame] | 188 | new = core_kernel_text(ip) ? INSN_NOP : INSN_B_1F; |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 189 | #ifdef CONFIG_64BIT |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 190 | return ftrace_modify_code(ip, new); |
Al Cooper | 58b6940 | 2013-01-16 22:43:28 +0000 | [diff] [blame] | 191 | #else |
| 192 | /* |
| 193 | * On 32 bit MIPS platforms, gcc adds a stack adjust |
| 194 | * instruction in the delay slot after the branch to |
| 195 | * mcount and expects mcount to restore the sp on return. |
| 196 | * This is based on a legacy API and does nothing but |
| 197 | * waste instructions so it's being removed at runtime. |
| 198 | */ |
| 199 | return ftrace_modify_code_2(ip, new, INSN_NOP); |
| 200 | #endif |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 201 | } |
| 202 | |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 203 | int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) |
| 204 | { |
| 205 | unsigned int new; |
| 206 | unsigned long ip = rec->ip; |
| 207 | |
Marcin Nowakowski | 87051ec | 2017-05-23 12:56:43 +0200 | [diff] [blame] | 208 | new = core_kernel_text(ip) ? insn_jal_ftrace_caller : insn_la_mcount[0]; |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 209 | |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 210 | #ifdef CONFIG_64BIT |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 211 | return ftrace_modify_code(ip, new); |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 212 | #else |
Marcin Nowakowski | 87051ec | 2017-05-23 12:56:43 +0200 | [diff] [blame] | 213 | return ftrace_modify_code_2r(ip, new, core_kernel_text(ip) ? |
Petri Gynther | dce0e7d | 2014-07-23 22:55:02 -0700 | [diff] [blame] | 214 | INSN_NOP : insn_la_mcount[1]); |
| 215 | #endif |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | #define FTRACE_CALL_IP ((unsigned long)(&ftrace_call)) |
| 219 | |
| 220 | int ftrace_update_ftrace_func(ftrace_func_t func) |
| 221 | { |
| 222 | unsigned int new; |
| 223 | |
Wu Zhangjin | 4d6829f | 2010-05-14 19:08:31 +0800 | [diff] [blame] | 224 | new = INSN_JAL((unsigned long)func); |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 225 | |
| 226 | return ftrace_modify_code(FTRACE_CALL_IP, new); |
| 227 | } |
| 228 | |
Jiri Slaby | 3a36cb1 | 2014-02-24 19:59:59 +0100 | [diff] [blame] | 229 | int __init ftrace_dyn_arch_init(void) |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 230 | { |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 231 | /* Encode the instructions when booting */ |
| 232 | ftrace_dyn_arch_init_insns(); |
| 233 | |
| 234 | /* Remove "b ftrace_stub" to ensure ftrace_caller() is executed */ |
| 235 | ftrace_modify_code(MCOUNT_ADDR, INSN_NOP); |
| 236 | |
Wu Zhangjin | 538f195 | 2009-11-20 20:34:32 +0800 | [diff] [blame] | 237 | return 0; |
| 238 | } |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 239 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 240 | |
| 241 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 242 | |
Wu Zhangjin | e17ff5f | 2009-11-20 20:34:35 +0800 | [diff] [blame] | 243 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 244 | |
| 245 | extern void ftrace_graph_call(void); |
Wu Zhangjin | e17ff5f | 2009-11-20 20:34:35 +0800 | [diff] [blame] | 246 | #define FTRACE_GRAPH_CALL_IP ((unsigned long)(&ftrace_graph_call)) |
| 247 | |
| 248 | int ftrace_enable_ftrace_graph_caller(void) |
| 249 | { |
| 250 | return ftrace_modify_code(FTRACE_GRAPH_CALL_IP, |
Wu Zhangjin | e424054 | 2010-05-14 19:08:32 +0800 | [diff] [blame] | 251 | insn_j_ftrace_graph_caller); |
Wu Zhangjin | e17ff5f | 2009-11-20 20:34:35 +0800 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | int ftrace_disable_ftrace_graph_caller(void) |
| 255 | { |
Wu Zhangjin | 4d6829f | 2010-05-14 19:08:31 +0800 | [diff] [blame] | 256 | return ftrace_modify_code(FTRACE_GRAPH_CALL_IP, INSN_NOP); |
Wu Zhangjin | e17ff5f | 2009-11-20 20:34:35 +0800 | [diff] [blame] | 257 | } |
| 258 | |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 259 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
Wu Zhangjin | e17ff5f | 2009-11-20 20:34:35 +0800 | [diff] [blame] | 260 | |
Wu Zhangjin | 7326c4e | 2009-11-20 20:34:38 +0800 | [diff] [blame] | 261 | #ifndef KBUILD_MCOUNT_RA_ADDRESS |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 262 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 263 | #define S_RA_SP (0xafbf << 16) /* s{d,w} ra, offset(sp) */ |
| 264 | #define S_R_SP (0xafb0 << 16) /* s{d,w} R, offset(sp) */ |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 265 | #define OFFSET_MASK 0xffff /* stack offset range: 0 ~ PT_SIZE */ |
| 266 | |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 267 | unsigned long ftrace_get_parent_ra_addr(unsigned long self_ra, unsigned long |
| 268 | old_parent_ra, unsigned long parent_ra_addr, unsigned long fp) |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 269 | { |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 270 | unsigned long sp, ip, tmp; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 271 | unsigned int code; |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 272 | int faulted; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 273 | |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 274 | /* |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 275 | * For module, move the ip from the return address after the |
Wu Zhangjin | 9a620a5 | 2011-01-20 03:28:27 +0800 | [diff] [blame] | 276 | * instruction "lui v1, hi_16bit_of_mcount"(offset is 24), but for |
| 277 | * kernel, move after the instruction "move ra, at"(offset is 16) |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 278 | */ |
Marcin Nowakowski | 87051ec | 2017-05-23 12:56:43 +0200 | [diff] [blame] | 279 | ip = self_ra - (core_kernel_text(self_ra) ? 16 : 24); |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 280 | |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 281 | /* |
| 282 | * search the text until finding the non-store instruction or "s{d,w} |
| 283 | * ra, offset(sp)" instruction |
| 284 | */ |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 285 | do { |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 286 | /* get the code at "ip": code = *(unsigned int *)ip; */ |
| 287 | safe_load_code(code, ip, faulted); |
| 288 | |
| 289 | if (unlikely(faulted)) |
| 290 | return 0; |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 291 | /* |
| 292 | * If we hit the non-store instruction before finding where the |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 293 | * ra is stored, then this is a leaf function and it does not |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 294 | * store the ra on the stack |
| 295 | */ |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 296 | if ((code & S_R_SP) != S_R_SP) |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 297 | return parent_ra_addr; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 298 | |
Wu Zhangjin | 9a620a5 | 2011-01-20 03:28:27 +0800 | [diff] [blame] | 299 | /* Move to the next instruction */ |
| 300 | ip -= 4; |
| 301 | } while ((code & S_RA_SP) != S_RA_SP); |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 302 | |
| 303 | sp = fp + (code & OFFSET_MASK); |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 304 | |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 305 | /* tmp = *(unsigned long *)sp; */ |
| 306 | safe_load_stack(tmp, sp, faulted); |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 307 | if (unlikely(faulted)) |
| 308 | return 0; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 309 | |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 310 | if (tmp == old_parent_ra) |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 311 | return sp; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 312 | return 0; |
| 313 | } |
| 314 | |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 315 | #endif /* !KBUILD_MCOUNT_RA_ADDRESS */ |
Wu Zhangjin | 7326c4e | 2009-11-20 20:34:38 +0800 | [diff] [blame] | 316 | |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 317 | /* |
| 318 | * Hook the return address and push it in the stack of return addrs |
| 319 | * in current thread info. |
| 320 | */ |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 321 | void prepare_ftrace_return(unsigned long *parent_ra_addr, unsigned long self_ra, |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 322 | unsigned long fp) |
| 323 | { |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 324 | unsigned long old_parent_ra; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 325 | struct ftrace_graph_ent trace; |
| 326 | unsigned long return_hooker = (unsigned long) |
| 327 | &return_to_handler; |
Wu Zhangjin | b9f07eb | 2011-01-22 02:01:53 +0800 | [diff] [blame] | 328 | int faulted, insns; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 329 | |
Steven Rostedt (Red Hat) | 6a8a505 | 2014-06-25 09:53:21 -0400 | [diff] [blame] | 330 | if (unlikely(ftrace_graph_is_dead())) |
| 331 | return; |
| 332 | |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 333 | if (unlikely(atomic_read(¤t->tracing_graph_pause))) |
| 334 | return; |
| 335 | |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 336 | /* |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 337 | * "parent_ra_addr" is the stack address saved the return address of |
| 338 | * the caller of _mcount. |
Wu Zhangjin | 7326c4e | 2009-11-20 20:34:38 +0800 | [diff] [blame] | 339 | * |
| 340 | * if the gcc < 4.5, a leaf function does not save the return address |
| 341 | * in the stack address, so, we "emulate" one in _mcount's stack space, |
| 342 | * and hijack it directly, but for a non-leaf function, it save the |
| 343 | * return address to the its own stack space, we can not hijack it |
| 344 | * directly, but need to find the real stack address, |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 345 | * ftrace_get_parent_addr() does it! |
Wu Zhangjin | 7326c4e | 2009-11-20 20:34:38 +0800 | [diff] [blame] | 346 | * |
| 347 | * if gcc>= 4.5, with the new -mmcount-ra-address option, for a |
| 348 | * non-leaf function, the location of the return address will be saved |
| 349 | * to $12 for us, and for a leaf function, only put a zero into $12. we |
| 350 | * do it in ftrace_graph_caller of mcount.S. |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 351 | */ |
| 352 | |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 353 | /* old_parent_ra = *parent_ra_addr; */ |
| 354 | safe_load_stack(old_parent_ra, parent_ra_addr, faulted); |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 355 | if (unlikely(faulted)) |
| 356 | goto out; |
Wu Zhangjin | 7326c4e | 2009-11-20 20:34:38 +0800 | [diff] [blame] | 357 | #ifndef KBUILD_MCOUNT_RA_ADDRESS |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 358 | parent_ra_addr = (unsigned long *)ftrace_get_parent_ra_addr(self_ra, |
| 359 | old_parent_ra, (unsigned long)parent_ra_addr, fp); |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 360 | /* |
| 361 | * If fails when getting the stack address of the non-leaf function's |
| 362 | * ra, stop function graph tracer and return |
| 363 | */ |
Mathieu Malaterre | 83aa53e | 2018-01-17 12:31:57 +0100 | [diff] [blame] | 364 | if (parent_ra_addr == NULL) |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 365 | goto out; |
Wu Zhangjin | 7326c4e | 2009-11-20 20:34:38 +0800 | [diff] [blame] | 366 | #endif |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 367 | /* *parent_ra_addr = return_hooker; */ |
| 368 | safe_store_stack(return_hooker, parent_ra_addr, faulted); |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 369 | if (unlikely(faulted)) |
| 370 | goto out; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 371 | |
Josh Poimboeuf | 9a7c348 | 2016-08-19 06:52:57 -0500 | [diff] [blame] | 372 | if (ftrace_push_return_trace(old_parent_ra, self_ra, &trace.depth, fp, |
| 373 | NULL) == -EBUSY) { |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 374 | *parent_ra_addr = old_parent_ra; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 375 | return; |
| 376 | } |
| 377 | |
Wu Zhangjin | b9f07eb | 2011-01-22 02:01:53 +0800 | [diff] [blame] | 378 | /* |
| 379 | * Get the recorded ip of the current mcount calling site in the |
| 380 | * __mcount_loc section, which will be used to filter the function |
| 381 | * entries configured through the tracing/set_graph_function interface. |
| 382 | */ |
| 383 | |
Marcin Nowakowski | 87051ec | 2017-05-23 12:56:43 +0200 | [diff] [blame] | 384 | insns = core_kernel_text(self_ra) ? 2 : MCOUNT_OFFSET_INSNS + 1; |
Wu Zhangjin | b9f07eb | 2011-01-22 02:01:53 +0800 | [diff] [blame] | 385 | trace.func = self_ra - (MCOUNT_INSN_SIZE * insns); |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 386 | |
| 387 | /* Only trace if the calling function expects to */ |
| 388 | if (!ftrace_graph_entry(&trace)) { |
| 389 | current->curr_ret_stack--; |
Wu Zhangjin | 2816e32 | 2011-01-20 03:28:30 +0800 | [diff] [blame] | 390 | *parent_ra_addr = old_parent_ra; |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 391 | } |
Wu Zhangjin | 046199c | 2009-11-20 20:34:36 +0800 | [diff] [blame] | 392 | return; |
| 393 | out: |
| 394 | ftrace_graph_stop(); |
| 395 | WARN_ON(1); |
Wu Zhangjin | 29c5d34 | 2009-11-20 20:34:34 +0800 | [diff] [blame] | 396 | } |
Wu Zhangjin | 68ccf75 | 2010-05-14 19:08:33 +0800 | [diff] [blame] | 397 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
Ralf Baechle | 19e2e17 | 2012-07-13 23:38:17 +0200 | [diff] [blame] | 398 | |
| 399 | #ifdef CONFIG_FTRACE_SYSCALLS |
| 400 | |
| 401 | #ifdef CONFIG_32BIT |
| 402 | unsigned long __init arch_syscall_addr(int nr) |
| 403 | { |
| 404 | return (unsigned long)sys_call_table[nr - __NR_O32_Linux]; |
| 405 | } |
| 406 | #endif |
| 407 | |
| 408 | #ifdef CONFIG_64BIT |
| 409 | |
| 410 | unsigned long __init arch_syscall_addr(int nr) |
| 411 | { |
| 412 | #ifdef CONFIG_MIPS32_N32 |
| 413 | if (nr >= __NR_N32_Linux && nr <= __NR_N32_Linux + __NR_N32_Linux_syscalls) |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 414 | return (unsigned long)sysn32_call_table[nr - __NR_N32_Linux]; |
Ralf Baechle | 19e2e17 | 2012-07-13 23:38:17 +0200 | [diff] [blame] | 415 | #endif |
| 416 | if (nr >= __NR_64_Linux && nr <= __NR_64_Linux + __NR_64_Linux_syscalls) |
| 417 | return (unsigned long)sys_call_table[nr - __NR_64_Linux]; |
| 418 | #ifdef CONFIG_MIPS32_O32 |
| 419 | if (nr >= __NR_O32_Linux && nr <= __NR_O32_Linux + __NR_O32_Linux_syscalls) |
| 420 | return (unsigned long)sys32_call_table[nr - __NR_O32_Linux]; |
| 421 | #endif |
| 422 | |
| 423 | return (unsigned long) &sys_ni_syscall; |
| 424 | } |
| 425 | #endif |
| 426 | |
| 427 | #endif /* CONFIG_FTRACE_SYSCALLS */ |