blob: 7f3dfdbc3657e6705b6a797c6e1dfa565fa3bff9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Wu Zhangjin538f1952009-11-20 20:34:32 +08002/*
3 * Code for replacing ftrace calls with jumps.
4 *
5 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
Wu Zhangjine4240542010-05-14 19:08:32 +08006 * Copyright (C) 2009, 2010 DSLab, Lanzhou University, China
Wu Zhangjinf7a904d2010-01-04 17:16:51 +08007 * Author: Wu Zhangjin <wuzhangjin@gmail.com>
Wu Zhangjin538f1952009-11-20 20:34:32 +08008 *
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 Baechle19e2e172012-07-13 23:38:17 +020015#include <linux/syscalls.h>
Wu Zhangjin538f1952009-11-20 20:34:32 +080016
Wu Zhangjin29c5d342009-11-20 20:34:34 +080017#include <asm/asm.h>
18#include <asm/asm-offsets.h>
Wu Zhangjine4240542010-05-14 19:08:32 +080019#include <asm/cacheflush.h>
Ralf Baechle19e2e172012-07-13 23:38:17 +020020#include <asm/syscall.h>
Wu Zhangjine4240542010-05-14 19:08:32 +080021#include <asm/uasm.h>
Ralf Baechle19e2e172012-07-13 23:38:17 +020022#include <asm/unistd.h>
Wu Zhangjin538f1952009-11-20 20:34:32 +080023
Wu Zhangjind9cdb2f2011-01-20 03:28:29 +080024#include <asm-generic/sections.h>
Wu Zhangjinc9f84872010-05-14 19:08:34 +080025
Thomas Gleixner49de8302011-07-23 12:41:23 +000026#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 Chandrascb2f9932013-06-10 10:35:26 +000032#ifdef CONFIG_DYNAMIC_FTRACE
33
Al Cooper58b69402013-01-16 22:43:28 +000034/* Arch override because MIPS doesn't need to run this from stop_machine() */
35void arch_ftrace_update_code(int command)
36{
37 ftrace_modify_all_code(command);
38}
39
Markos Chandrascb2f9932013-06-10 10:35:26 +000040#endif
41
Wu Zhangjin538f1952009-11-20 20:34:32 +080042#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 Daneyc54794d2010-12-28 13:21:37 -080046#define JUMP_RANGE_MASK ((1UL << 28) - 1)
Wu Zhangjin538f1952009-11-20 20:34:32 +080047
Wu Zhangjin4d6829f2010-05-14 19:08:31 +080048#define INSN_NOP 0x00000000 /* nop */
Wu Zhangjine4240542010-05-14 19:08:32 +080049#define INSN_JAL(addr) \
50 ((unsigned int)(JAL | (((addr) >> 2) & ADDR_MASK)))
51
52static unsigned int insn_jal_ftrace_caller __read_mostly;
Petri Gyntherdce0e7d2014-07-23 22:55:02 -070053static unsigned int insn_la_mcount[2] __read_mostly;
Wu Zhangjine4240542010-05-14 19:08:32 +080054static unsigned int insn_j_ftrace_graph_caller __maybe_unused __read_mostly;
55
56static inline void ftrace_dyn_arch_init_insns(void)
57{
58 u32 *buf;
59 unsigned int v1;
60
Petri Gyntherdce0e7d2014-07-23 22:55:02 -070061 /* la v1, _mcount */
Wu Zhangjine4240542010-05-14 19:08:32 +080062 v1 = 3;
Petri Gyntherdce0e7d2014-07-23 22:55:02 -070063 buf = (u32 *)&insn_la_mcount[0];
64 UASM_i_LA(&buf, v1, MCOUNT_ADDR);
Wu Zhangjine4240542010-05-14 19:08:32 +080065
66 /* jal (ftrace_caller + 8), jump over the first two instruction */
67 buf = (u32 *)&insn_jal_ftrace_caller;
David Daneyc54794d2010-12-28 13:21:37 -080068 uasm_i_jal(&buf, (FTRACE_ADDR + 8) & JUMP_RANGE_MASK);
Wu Zhangjine4240542010-05-14 19:08:32 +080069
70#ifdef CONFIG_FUNCTION_GRAPH_TRACER
71 /* j ftrace_graph_caller */
72 buf = (u32 *)&insn_j_ftrace_graph_caller;
David Daneyc54794d2010-12-28 13:21:37 -080073 uasm_i_j(&buf, (unsigned long)ftrace_graph_caller & JUMP_RANGE_MASK);
Wu Zhangjine4240542010-05-14 19:08:32 +080074#endif
75}
Wu Zhangjin538f1952009-11-20 20:34:32 +080076
77static int ftrace_modify_code(unsigned long ip, unsigned int new_code)
78{
Wu Zhangjin046199c2009-11-20 20:34:36 +080079 int faulted;
Leonid Yegoshin6ebda442013-12-16 12:06:55 +000080 mm_segment_t old_fs;
Wu Zhangjin046199c2009-11-20 20:34:36 +080081
82 /* *(unsigned int *)ip = new_code; */
83 safe_store_code(new_code, ip, faulted);
84
85 if (unlikely(faulted))
86 return -EFAULT;
Wu Zhangjin538f1952009-11-20 20:34:32 +080087
Leonid Yegoshin6ebda442013-12-16 12:06:55 +000088 old_fs = get_fs();
89 set_fs(get_ds());
Wu Zhangjin538f1952009-11-20 20:34:32 +080090 flush_icache_range(ip, ip + 8);
Leonid Yegoshin6ebda442013-12-16 12:06:55 +000091 set_fs(old_fs);
Wu Zhangjin538f1952009-11-20 20:34:32 +080092
93 return 0;
94}
95
Al Cooper58b69402013-01-16 22:43:28 +000096#ifndef CONFIG_64BIT
97static int ftrace_modify_code_2(unsigned long ip, unsigned int new_code1,
98 unsigned int new_code2)
99{
100 int faulted;
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700101 mm_segment_t old_fs;
Al Cooper58b69402013-01-16 22:43:28 +0000102
103 safe_store_code(new_code1, ip, faulted);
104 if (unlikely(faulted))
105 return -EFAULT;
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700106
107 ip += 4;
108 safe_store_code(new_code2, ip, faulted);
Al Cooper58b69402013-01-16 22:43:28 +0000109 if (unlikely(faulted))
110 return -EFAULT;
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700111
112 ip -= 4;
113 old_fs = get_fs();
114 set_fs(get_ds());
Viller Hsiaoa4671092014-02-22 15:46:49 +0800115 flush_icache_range(ip, ip + 8);
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700116 set_fs(old_fs);
117
118 return 0;
119}
120
121static 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 Cooper58b69402013-01-16 22:43:28 +0000142 return 0;
143}
144#endif
145
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800146/*
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 Gyntherdce0e7d2014-07-23 22:55:02 -0700153 * sub sp, sp, 8 --> nop (CONFIG_32BIT)
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800154 *
155 * 2. For modules:
156 *
157 * 2.1 For KBUILD_MCOUNT_RA_ADDRESS and CONFIG_32BIT
158 *
Ralf Baechle70342282013-01-22 12:59:30 +0100159 * lui v1, hi_16bit_of_mcount --> b 1f (0x10000005)
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700160 * addiu v1, v1, low_16bit_of_mcount --> nop (CONFIG_32BIT)
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800161 * move at, ra
162 * move $12, ra_address
163 * jalr v1
164 * sub sp, sp, 8
Ralf Baechle70342282013-01-22 12:59:30 +0100165 * 1: offset = 5 instructions
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800166 * 2.2 For the Other situations
167 *
Ralf Baechle70342282013-01-22 12:59:30 +0100168 * lui v1, hi_16bit_of_mcount --> b 1f (0x10000004)
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700169 * addiu v1, v1, low_16bit_of_mcount --> nop (CONFIG_32BIT)
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800170 * move at, ra
171 * jalr v1
172 * nop | move $12, ra_address | sub sp, sp, 8
Ralf Baechle70342282013-01-22 12:59:30 +0100173 * 1: offset = 4 instructions
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800174 */
175
Wu Zhangjin7f21a602011-01-20 03:28:31 +0800176#define INSN_B_1F (0x10000000 | MCOUNT_OFFSET_INSNS)
177
Wu Zhangjin538f1952009-11-20 20:34:32 +0800178int 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 Zhangjine4240542010-05-14 19:08:32 +0800184 /*
Wu Zhangjind9cdb2f2011-01-20 03:28:29 +0800185 * If ip is in kernel space, no long call, otherwise, long call is
186 * needed.
Wu Zhangjine4240542010-05-14 19:08:32 +0800187 */
Marcin Nowakowski87051ec2017-05-23 12:56:43 +0200188 new = core_kernel_text(ip) ? INSN_NOP : INSN_B_1F;
Al Cooper58b69402013-01-16 22:43:28 +0000189#ifdef CONFIG_64BIT
Wu Zhangjin538f1952009-11-20 20:34:32 +0800190 return ftrace_modify_code(ip, new);
Al Cooper58b69402013-01-16 22:43:28 +0000191#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 Zhangjin538f1952009-11-20 20:34:32 +0800201}
202
Wu Zhangjin538f1952009-11-20 20:34:32 +0800203int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
204{
205 unsigned int new;
206 unsigned long ip = rec->ip;
207
Marcin Nowakowski87051ec2017-05-23 12:56:43 +0200208 new = core_kernel_text(ip) ? insn_jal_ftrace_caller : insn_la_mcount[0];
Wu Zhangjin538f1952009-11-20 20:34:32 +0800209
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700210#ifdef CONFIG_64BIT
Wu Zhangjin538f1952009-11-20 20:34:32 +0800211 return ftrace_modify_code(ip, new);
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700212#else
Marcin Nowakowski87051ec2017-05-23 12:56:43 +0200213 return ftrace_modify_code_2r(ip, new, core_kernel_text(ip) ?
Petri Gyntherdce0e7d2014-07-23 22:55:02 -0700214 INSN_NOP : insn_la_mcount[1]);
215#endif
Wu Zhangjin538f1952009-11-20 20:34:32 +0800216}
217
218#define FTRACE_CALL_IP ((unsigned long)(&ftrace_call))
219
220int ftrace_update_ftrace_func(ftrace_func_t func)
221{
222 unsigned int new;
223
Wu Zhangjin4d6829f2010-05-14 19:08:31 +0800224 new = INSN_JAL((unsigned long)func);
Wu Zhangjin538f1952009-11-20 20:34:32 +0800225
226 return ftrace_modify_code(FTRACE_CALL_IP, new);
227}
228
Jiri Slaby3a36cb12014-02-24 19:59:59 +0100229int __init ftrace_dyn_arch_init(void)
Wu Zhangjin538f1952009-11-20 20:34:32 +0800230{
Wu Zhangjine4240542010-05-14 19:08:32 +0800231 /* 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 Zhangjin538f1952009-11-20 20:34:32 +0800237 return 0;
238}
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800239#endif /* CONFIG_DYNAMIC_FTRACE */
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800240
241#ifdef CONFIG_FUNCTION_GRAPH_TRACER
242
Wu Zhangjine17ff5f2009-11-20 20:34:35 +0800243#ifdef CONFIG_DYNAMIC_FTRACE
244
245extern void ftrace_graph_call(void);
Wu Zhangjine17ff5f2009-11-20 20:34:35 +0800246#define FTRACE_GRAPH_CALL_IP ((unsigned long)(&ftrace_graph_call))
247
248int ftrace_enable_ftrace_graph_caller(void)
249{
250 return ftrace_modify_code(FTRACE_GRAPH_CALL_IP,
Wu Zhangjine4240542010-05-14 19:08:32 +0800251 insn_j_ftrace_graph_caller);
Wu Zhangjine17ff5f2009-11-20 20:34:35 +0800252}
253
254int ftrace_disable_ftrace_graph_caller(void)
255{
Wu Zhangjin4d6829f2010-05-14 19:08:31 +0800256 return ftrace_modify_code(FTRACE_GRAPH_CALL_IP, INSN_NOP);
Wu Zhangjine17ff5f2009-11-20 20:34:35 +0800257}
258
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800259#endif /* CONFIG_DYNAMIC_FTRACE */
Wu Zhangjine17ff5f2009-11-20 20:34:35 +0800260
Wu Zhangjin7326c4e2009-11-20 20:34:38 +0800261#ifndef KBUILD_MCOUNT_RA_ADDRESS
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800262
Ralf Baechle70342282013-01-22 12:59:30 +0100263#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 Zhangjin29c5d342009-11-20 20:34:34 +0800265#define OFFSET_MASK 0xffff /* stack offset range: 0 ~ PT_SIZE */
266
Wu Zhangjin2816e322011-01-20 03:28:30 +0800267unsigned 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 Zhangjin29c5d342009-11-20 20:34:34 +0800269{
Wu Zhangjin2816e322011-01-20 03:28:30 +0800270 unsigned long sp, ip, tmp;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800271 unsigned int code;
Wu Zhangjin046199c2009-11-20 20:34:36 +0800272 int faulted;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800273
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800274 /*
Wu Zhangjin2816e322011-01-20 03:28:30 +0800275 * For module, move the ip from the return address after the
Wu Zhangjin9a620a52011-01-20 03:28:27 +0800276 * 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 Zhangjin68ccf752010-05-14 19:08:33 +0800278 */
Marcin Nowakowski87051ec2017-05-23 12:56:43 +0200279 ip = self_ra - (core_kernel_text(self_ra) ? 16 : 24);
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800280
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800281 /*
282 * search the text until finding the non-store instruction or "s{d,w}
283 * ra, offset(sp)" instruction
284 */
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800285 do {
Wu Zhangjin046199c2009-11-20 20:34:36 +0800286 /* 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 Zhangjin68ccf752010-05-14 19:08:33 +0800291 /*
292 * If we hit the non-store instruction before finding where the
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800293 * ra is stored, then this is a leaf function and it does not
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800294 * store the ra on the stack
295 */
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800296 if ((code & S_R_SP) != S_R_SP)
Wu Zhangjin2816e322011-01-20 03:28:30 +0800297 return parent_ra_addr;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800298
Wu Zhangjin9a620a52011-01-20 03:28:27 +0800299 /* Move to the next instruction */
300 ip -= 4;
301 } while ((code & S_RA_SP) != S_RA_SP);
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800302
303 sp = fp + (code & OFFSET_MASK);
Wu Zhangjin046199c2009-11-20 20:34:36 +0800304
Wu Zhangjin2816e322011-01-20 03:28:30 +0800305 /* tmp = *(unsigned long *)sp; */
306 safe_load_stack(tmp, sp, faulted);
Wu Zhangjin046199c2009-11-20 20:34:36 +0800307 if (unlikely(faulted))
308 return 0;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800309
Wu Zhangjin2816e322011-01-20 03:28:30 +0800310 if (tmp == old_parent_ra)
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800311 return sp;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800312 return 0;
313}
314
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800315#endif /* !KBUILD_MCOUNT_RA_ADDRESS */
Wu Zhangjin7326c4e2009-11-20 20:34:38 +0800316
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800317/*
318 * Hook the return address and push it in the stack of return addrs
319 * in current thread info.
320 */
Wu Zhangjin2816e322011-01-20 03:28:30 +0800321void prepare_ftrace_return(unsigned long *parent_ra_addr, unsigned long self_ra,
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800322 unsigned long fp)
323{
Wu Zhangjin2816e322011-01-20 03:28:30 +0800324 unsigned long old_parent_ra;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800325 struct ftrace_graph_ent trace;
326 unsigned long return_hooker = (unsigned long)
327 &return_to_handler;
Wu Zhangjinb9f07eb2011-01-22 02:01:53 +0800328 int faulted, insns;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800329
Steven Rostedt (Red Hat)6a8a5052014-06-25 09:53:21 -0400330 if (unlikely(ftrace_graph_is_dead()))
331 return;
332
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800333 if (unlikely(atomic_read(&current->tracing_graph_pause)))
334 return;
335
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800336 /*
Wu Zhangjin2816e322011-01-20 03:28:30 +0800337 * "parent_ra_addr" is the stack address saved the return address of
338 * the caller of _mcount.
Wu Zhangjin7326c4e2009-11-20 20:34:38 +0800339 *
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 Zhangjin29c5d342009-11-20 20:34:34 +0800345 * ftrace_get_parent_addr() does it!
Wu Zhangjin7326c4e2009-11-20 20:34:38 +0800346 *
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 Zhangjin29c5d342009-11-20 20:34:34 +0800351 */
352
Wu Zhangjin2816e322011-01-20 03:28:30 +0800353 /* old_parent_ra = *parent_ra_addr; */
354 safe_load_stack(old_parent_ra, parent_ra_addr, faulted);
Wu Zhangjin046199c2009-11-20 20:34:36 +0800355 if (unlikely(faulted))
356 goto out;
Wu Zhangjin7326c4e2009-11-20 20:34:38 +0800357#ifndef KBUILD_MCOUNT_RA_ADDRESS
Wu Zhangjin2816e322011-01-20 03:28:30 +0800358 parent_ra_addr = (unsigned long *)ftrace_get_parent_ra_addr(self_ra,
359 old_parent_ra, (unsigned long)parent_ra_addr, fp);
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800360 /*
361 * If fails when getting the stack address of the non-leaf function's
362 * ra, stop function graph tracer and return
363 */
Mathieu Malaterre83aa53e2018-01-17 12:31:57 +0100364 if (parent_ra_addr == NULL)
Wu Zhangjin046199c2009-11-20 20:34:36 +0800365 goto out;
Wu Zhangjin7326c4e2009-11-20 20:34:38 +0800366#endif
Wu Zhangjin2816e322011-01-20 03:28:30 +0800367 /* *parent_ra_addr = return_hooker; */
368 safe_store_stack(return_hooker, parent_ra_addr, faulted);
Wu Zhangjin046199c2009-11-20 20:34:36 +0800369 if (unlikely(faulted))
370 goto out;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800371
Josh Poimboeuf9a7c3482016-08-19 06:52:57 -0500372 if (ftrace_push_return_trace(old_parent_ra, self_ra, &trace.depth, fp,
373 NULL) == -EBUSY) {
Wu Zhangjin2816e322011-01-20 03:28:30 +0800374 *parent_ra_addr = old_parent_ra;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800375 return;
376 }
377
Wu Zhangjinb9f07eb2011-01-22 02:01:53 +0800378 /*
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 Nowakowski87051ec2017-05-23 12:56:43 +0200384 insns = core_kernel_text(self_ra) ? 2 : MCOUNT_OFFSET_INSNS + 1;
Wu Zhangjinb9f07eb2011-01-22 02:01:53 +0800385 trace.func = self_ra - (MCOUNT_INSN_SIZE * insns);
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800386
387 /* Only trace if the calling function expects to */
388 if (!ftrace_graph_entry(&trace)) {
389 current->curr_ret_stack--;
Wu Zhangjin2816e322011-01-20 03:28:30 +0800390 *parent_ra_addr = old_parent_ra;
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800391 }
Wu Zhangjin046199c2009-11-20 20:34:36 +0800392 return;
393out:
394 ftrace_graph_stop();
395 WARN_ON(1);
Wu Zhangjin29c5d342009-11-20 20:34:34 +0800396}
Wu Zhangjin68ccf752010-05-14 19:08:33 +0800397#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Ralf Baechle19e2e172012-07-13 23:38:17 +0200398
399#ifdef CONFIG_FTRACE_SYSCALLS
400
401#ifdef CONFIG_32BIT
402unsigned 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
410unsigned 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 Baechle46e12c02012-07-14 09:22:05 +0200414 return (unsigned long)sysn32_call_table[nr - __NR_N32_Linux];
Ralf Baechle19e2e172012-07-13 23:38:17 +0200415#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 */