blob: 1fb78561096accfff7e60062a4fbc0bddfcfec55 [file] [log] [blame]
Steven Rostedt4e491d12008-05-14 23:49:44 -04001/*
2 * Code for replacing ftrace calls with jumps.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 *
6 * Thanks goes out to P.A. Semi, Inc for supplying me with a PPC64 box.
7 *
Steven Rostedt6794c782009-02-09 21:10:27 -08008 * Added function graph tracer code, taken from x86 that was written
9 * by Frederic Weisbecker, and ported to PPC by Steven Rostedt.
10 *
Steven Rostedt4e491d12008-05-14 23:49:44 -040011 */
12
13#include <linux/spinlock.h>
14#include <linux/hardirq.h>
Steven Rostedte4486fe2008-11-14 16:21:20 -080015#include <linux/uaccess.h>
Steven Rostedtf48cb8b2008-11-14 20:47:03 -080016#include <linux/module.h>
Steven Rostedt4e491d12008-05-14 23:49:44 -040017#include <linux/ftrace.h>
18#include <linux/percpu.h>
19#include <linux/init.h>
20#include <linux/list.h>
21
22#include <asm/cacheflush.h>
Steven Rostedtf48cb8b2008-11-14 20:47:03 -080023#include <asm/code-patching.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053024#include <asm/ftrace.h>
Ian Munsie02424d82011-02-02 17:27:24 +000025#include <asm/syscall.h>
Steven Rostedt4e491d12008-05-14 23:49:44 -040026
Steven Rostedt4e491d12008-05-14 23:49:44 -040027
Steven Rostedt6794c782009-02-09 21:10:27 -080028#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080029static unsigned int
Steven Rostedt46542882009-02-10 22:19:54 -080030ftrace_call_replace(unsigned long ip, unsigned long addr, int link)
Steven Rostedt4e491d12008-05-14 23:49:44 -040031{
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080032 unsigned int op;
Steven Rostedt4e491d12008-05-14 23:49:44 -040033
Michael Ellerman4a9e3f82009-05-28 19:33:34 +000034 addr = ppc_function_entry((void *)addr);
Steven Rostedt4e491d12008-05-14 23:49:44 -040035
Steven Rostedt46542882009-02-10 22:19:54 -080036 /* if (link) set op to 'bl' else 'b' */
Steven Rostedtbb9b9032009-02-13 06:45:27 -080037 op = create_branch((unsigned int *)ip, addr, link ? 1 : 0);
Steven Rostedt4e491d12008-05-14 23:49:44 -040038
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080039 return op;
Steven Rostedt4e491d12008-05-14 23:49:44 -040040}
41
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -080042static int
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080043ftrace_modify_code(unsigned long ip, unsigned int old, unsigned int new)
Steven Rostedt4e491d12008-05-14 23:49:44 -040044{
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080045 unsigned int replaced;
Steven Rostedt4e491d12008-05-14 23:49:44 -040046
Steven Rostedt4e491d12008-05-14 23:49:44 -040047 /*
48 * Note: Due to modules and __init, code can
49 * disappear and change, we need to protect against faulting
Steven Rostedte4486fe2008-11-14 16:21:20 -080050 * as well as code changing. We do this by using the
51 * probe_kernel_* functions.
Steven Rostedt4e491d12008-05-14 23:49:44 -040052 *
53 * No real locking needed, this code is run through
Steven Rostedte4486fe2008-11-14 16:21:20 -080054 * kstop_machine, or before SMP starts.
Steven Rostedt4e491d12008-05-14 23:49:44 -040055 */
Steven Rostedt4e491d12008-05-14 23:49:44 -040056
Steven Rostedte4486fe2008-11-14 16:21:20 -080057 /* read the text we want to modify */
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080058 if (probe_kernel_read(&replaced, (void *)ip, MCOUNT_INSN_SIZE))
Steven Rostedte4486fe2008-11-14 16:21:20 -080059 return -EFAULT;
Steven Rostedt4e491d12008-05-14 23:49:44 -040060
Steven Rostedte4486fe2008-11-14 16:21:20 -080061 /* Make sure it is what we expect it to be */
Steven Rostedtb54dcfe2009-02-13 06:31:39 -080062 if (replaced != old)
Steven Rostedte4486fe2008-11-14 16:21:20 -080063 return -EINVAL;
Steven Rostedt4e491d12008-05-14 23:49:44 -040064
Steven Rostedte4486fe2008-11-14 16:21:20 -080065 /* replace the text with the new text */
Steven Rostedt65b8c722012-04-26 08:31:19 +000066 if (patch_instruction((unsigned int *)ip, new))
Steven Rostedte4486fe2008-11-14 16:21:20 -080067 return -EPERM;
68
Steven Rostedte4486fe2008-11-14 16:21:20 -080069 return 0;
Steven Rostedt4e491d12008-05-14 23:49:44 -040070}
71
Steven Rostedtf48cb8b2008-11-14 20:47:03 -080072/*
73 * Helper functions that are the same for both PPC64 and PPC32.
74 */
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -080075static int test_24bit_addr(unsigned long ip, unsigned long addr)
76{
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -080077
Steven Rostedt0029ff82008-11-25 14:06:19 -080078 /* use the create_branch to verify that this offset can be branched */
79 return create_branch((unsigned int *)ip, addr, 0);
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -080080}
81
Steven Rostedt17be5b32009-02-05 21:33:09 -080082#ifdef CONFIG_MODULES
83
Steven Rostedtf48cb8b2008-11-14 20:47:03 -080084static int is_bl_op(unsigned int op)
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -080085{
Steven Rostedtf48cb8b2008-11-14 20:47:03 -080086 return (op & 0xfc000003) == 0x48000001;
87}
88
Steven Rostedtf48cb8b2008-11-14 20:47:03 -080089static unsigned long find_bl_target(unsigned long ip, unsigned int op)
90{
91 static int offset;
92
93 offset = (op & 0x03fffffc);
94 /* make it signed */
95 if (offset & 0x02000000)
96 offset |= 0xfe000000;
97
98 return ip + (long)offset;
99}
100
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800101#ifdef CONFIG_PPC64
102static int
103__ftrace_make_nop(struct module *mod,
104 struct dyn_ftrace *rec, unsigned long addr)
105{
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800106 unsigned int op;
107 unsigned int jmp[5];
108 unsigned long ptr;
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800109 unsigned long ip = rec->ip;
110 unsigned long tramp;
111 int offset;
112
113 /* read where this goes */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800114 if (probe_kernel_read(&op, (void *)ip, sizeof(int)))
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800115 return -EFAULT;
116
117 /* Make sure that that this is still a 24bit jump */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800118 if (!is_bl_op(op)) {
119 printk(KERN_ERR "Not expected bl: opcode is %x\n", op);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800120 return -EINVAL;
121 }
122
123 /* lets find where the pointer goes */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800124 tramp = find_bl_target(ip, op);
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800125
126 /*
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800127 * On PPC64 the trampoline looks like:
128 * 0x3d, 0x82, 0x00, 0x00, addis r12,r2, <high>
129 * 0x39, 0x8c, 0x00, 0x00, addi r12,r12, <low>
130 * Where the bytes 2,3,6 and 7 make up the 32bit offset
131 * to the TOC that holds the pointer.
132 * to jump to.
133 * 0xf8, 0x41, 0x00, 0x28, std r2,40(r1)
134 * 0xe9, 0x6c, 0x00, 0x20, ld r11,32(r12)
135 * The actually address is 32 bytes from the offset
136 * into the TOC.
137 * 0xe8, 0x4c, 0x00, 0x28, ld r2,40(r12)
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800138 */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800139
Michael Ellerman021376a2009-05-13 20:30:24 +0000140 pr_devel("ip:%lx jumps to %lx r2: %lx", ip, tramp, mod->arch.toc);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800141
142 /* Find where the trampoline jumps to */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800143 if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) {
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800144 printk(KERN_ERR "Failed to read %lx\n", tramp);
145 return -EFAULT;
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800146 }
147
Michael Ellerman021376a2009-05-13 20:30:24 +0000148 pr_devel(" %08x %08x", jmp[0], jmp[1]);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800149
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800150 /* verify that this is what we expect it to be */
151 if (((jmp[0] & 0xffff0000) != 0x3d820000) ||
152 ((jmp[1] & 0xffff0000) != 0x398c0000) ||
153 (jmp[2] != 0xf8410028) ||
154 (jmp[3] != 0xe96c0020) ||
155 (jmp[4] != 0xe84c0028)) {
156 printk(KERN_ERR "Not a trampoline\n");
157 return -EINVAL;
158 }
159
Steven Rostedtf25f9072009-02-07 20:22:40 +0000160 /* The bottom half is signed extended */
161 offset = ((unsigned)((unsigned short)jmp[0]) << 16) +
162 (int)((short)jmp[1]);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800163
Michael Ellerman021376a2009-05-13 20:30:24 +0000164 pr_devel(" %x ", offset);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800165
166 /* get the address this jumps too */
167 tramp = mod->arch.toc + offset + 32;
Michael Ellerman021376a2009-05-13 20:30:24 +0000168 pr_devel("toc: %lx", tramp);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800169
170 if (probe_kernel_read(jmp, (void *)tramp, 8)) {
171 printk(KERN_ERR "Failed to read %lx\n", tramp);
172 return -EFAULT;
173 }
174
Michael Ellerman021376a2009-05-13 20:30:24 +0000175 pr_devel(" %08x %08x\n", jmp[0], jmp[1]);
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800176
177 ptr = ((unsigned long)jmp[0] << 32) + jmp[1];
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800178
179 /* This should match what was called */
Michael Ellerman4a9e3f82009-05-28 19:33:34 +0000180 if (ptr != ppc_function_entry((void *)addr)) {
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800181 printk(KERN_ERR "addr does not match %lx\n", ptr);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800182 return -EINVAL;
183 }
184
185 /*
186 * We want to nop the line, but the next line is
187 * 0xe8, 0x41, 0x00, 0x28 ld r2,40(r1)
188 * This needs to be turned to a nop too.
189 */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800190 if (probe_kernel_read(&op, (void *)(ip+4), MCOUNT_INSN_SIZE))
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800191 return -EFAULT;
192
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800193 if (op != 0xe8410028) {
194 printk(KERN_ERR "Next line is not ld! (%08x)\n", op);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800195 return -EINVAL;
196 }
197
198 /*
199 * Milton Miller pointed out that we can not blindly do nops.
200 * If a task was preempted when calling a trace function,
201 * the nops will remove the way to restore the TOC in r2
202 * and the r2 TOC will get corrupted.
203 */
204
205 /*
206 * Replace:
207 * bl <tramp> <==== will be replaced with "b 1f"
208 * ld r2,40(r1)
209 * 1:
210 */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800211 op = 0x48000008; /* b +8 */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800212
Steven Rostedt65b8c722012-04-26 08:31:19 +0000213 if (patch_instruction((unsigned int *)ip, op))
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800214 return -EPERM;
215
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800216 return 0;
217}
218
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800219#else /* !PPC64 */
220static int
221__ftrace_make_nop(struct module *mod,
222 struct dyn_ftrace *rec, unsigned long addr)
223{
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800224 unsigned int op;
225 unsigned int jmp[4];
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500226 unsigned long ip = rec->ip;
227 unsigned long tramp;
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500228
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800229 if (probe_kernel_read(&op, (void *)ip, MCOUNT_INSN_SIZE))
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500230 return -EFAULT;
231
232 /* Make sure that that this is still a 24bit jump */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800233 if (!is_bl_op(op)) {
234 printk(KERN_ERR "Not expected bl: opcode is %x\n", op);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500235 return -EINVAL;
236 }
237
238 /* lets find where the pointer goes */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800239 tramp = find_bl_target(ip, op);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500240
241 /*
242 * On PPC32 the trampoline looks like:
roger blofeldfd5a4292012-06-21 05:27:14 +0000243 * 0x3d, 0x80, 0x00, 0x00 lis r12,sym@ha
244 * 0x39, 0x8c, 0x00, 0x00 addi r12,r12,sym@l
245 * 0x7d, 0x89, 0x03, 0xa6 mtctr r12
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800246 * 0x4e, 0x80, 0x04, 0x20 bctr
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500247 */
248
Michael Ellerman021376a2009-05-13 20:30:24 +0000249 pr_devel("ip:%lx jumps to %lx", ip, tramp);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500250
251 /* Find where the trampoline jumps to */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800252 if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) {
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500253 printk(KERN_ERR "Failed to read %lx\n", tramp);
254 return -EFAULT;
255 }
256
Michael Ellerman021376a2009-05-13 20:30:24 +0000257 pr_devel(" %08x %08x ", jmp[0], jmp[1]);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500258
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800259 /* verify that this is what we expect it to be */
roger blofeldfd5a4292012-06-21 05:27:14 +0000260 if (((jmp[0] & 0xffff0000) != 0x3d800000) ||
261 ((jmp[1] & 0xffff0000) != 0x398c0000) ||
262 (jmp[2] != 0x7d8903a6) ||
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800263 (jmp[3] != 0x4e800420)) {
264 printk(KERN_ERR "Not a trampoline\n");
265 return -EINVAL;
266 }
267
268 tramp = (jmp[1] & 0xffff) |
269 ((jmp[0] & 0xffff) << 16);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500270 if (tramp & 0x8000)
271 tramp -= 0x10000;
272
Michael Ellerman021376a2009-05-13 20:30:24 +0000273 pr_devel(" %lx ", tramp);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500274
275 if (tramp != addr) {
276 printk(KERN_ERR
277 "Trampoline location %08lx does not match addr\n",
278 tramp);
279 return -EINVAL;
280 }
281
Kumar Gala16c57b32009-02-10 20:10:44 +0000282 op = PPC_INST_NOP;
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500283
Steven Rostedt65b8c722012-04-26 08:31:19 +0000284 if (patch_instruction((unsigned int *)ip, op))
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500285 return -EPERM;
286
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800287 return 0;
288}
289#endif /* PPC64 */
Steven Rostedt17be5b32009-02-05 21:33:09 -0800290#endif /* CONFIG_MODULES */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800291
292int ftrace_make_nop(struct module *mod,
293 struct dyn_ftrace *rec, unsigned long addr)
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800294{
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800295 unsigned long ip = rec->ip;
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800296 unsigned int old, new;
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800297
298 /*
299 * If the calling address is more that 24 bits away,
300 * then we had to use a trampoline to make the call.
301 * Otherwise just update the call site.
302 */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800303 if (test_24bit_addr(ip, addr)) {
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800304 /* within range */
Steven Rostedt46542882009-02-10 22:19:54 -0800305 old = ftrace_call_replace(ip, addr, 1);
Michael Ellerman92e02a52009-05-28 19:33:36 +0000306 new = PPC_INST_NOP;
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800307 return ftrace_modify_code(ip, old, new);
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800308 }
309
Steven Rostedt17be5b32009-02-05 21:33:09 -0800310#ifdef CONFIG_MODULES
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800311 /*
312 * Out of range jumps are called from modules.
313 * We should either already have a pointer to the module
314 * or it has been passed in.
315 */
316 if (!rec->arch.mod) {
317 if (!mod) {
318 printk(KERN_ERR "No module loaded addr=%lx\n",
319 addr);
320 return -EFAULT;
321 }
322 rec->arch.mod = mod;
323 } else if (mod) {
324 if (mod != rec->arch.mod) {
325 printk(KERN_ERR
326 "Record mod %p not equal to passed in mod %p\n",
327 rec->arch.mod, mod);
328 return -EINVAL;
329 }
330 /* nothing to do if mod == rec->arch.mod */
331 } else
332 mod = rec->arch.mod;
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800333
334 return __ftrace_make_nop(mod, rec, addr);
Steven Rostedt17be5b32009-02-05 21:33:09 -0800335#else
336 /* We should not get here without modules */
337 return -EINVAL;
338#endif /* CONFIG_MODULES */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800339}
340
Steven Rostedt17be5b32009-02-05 21:33:09 -0800341#ifdef CONFIG_MODULES
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800342#ifdef CONFIG_PPC64
343static int
344__ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
345{
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800346 unsigned int op[2];
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800347 unsigned long ip = rec->ip;
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800348
349 /* read where this goes */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800350 if (probe_kernel_read(op, (void *)ip, MCOUNT_INSN_SIZE * 2))
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800351 return -EFAULT;
352
353 /*
354 * It should be pointing to two nops or
355 * b +8; ld r2,40(r1)
356 */
357 if (((op[0] != 0x48000008) || (op[1] != 0xe8410028)) &&
Kumar Gala16c57b32009-02-10 20:10:44 +0000358 ((op[0] != PPC_INST_NOP) || (op[1] != PPC_INST_NOP))) {
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800359 printk(KERN_ERR "Expected NOPs but have %x %x\n", op[0], op[1]);
360 return -EINVAL;
361 }
362
363 /* If we never set up a trampoline to ftrace_caller, then bail */
364 if (!rec->arch.mod->arch.tramp) {
365 printk(KERN_ERR "No ftrace trampoline\n");
366 return -EINVAL;
367 }
368
Steven Rostedt0029ff82008-11-25 14:06:19 -0800369 /* create the branch to the trampoline */
370 op[0] = create_branch((unsigned int *)ip,
371 rec->arch.mod->arch.tramp, BRANCH_SET_LINK);
372 if (!op[0]) {
373 printk(KERN_ERR "REL24 out of range!\n");
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800374 return -EINVAL;
375 }
376
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800377 /* ld r2,40(r1) */
378 op[1] = 0xe8410028;
379
Michael Ellerman021376a2009-05-13 20:30:24 +0000380 pr_devel("write to %lx\n", rec->ip);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800381
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800382 if (probe_kernel_write((void *)ip, op, MCOUNT_INSN_SIZE * 2))
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800383 return -EPERM;
384
Steven Rostedtec682ce2008-11-25 10:22:48 -0800385 flush_icache_range(ip, ip + 8);
386
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800387 return 0;
388}
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800389#else
390static int
391__ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
392{
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800393 unsigned int op;
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500394 unsigned long ip = rec->ip;
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500395
396 /* read where this goes */
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800397 if (probe_kernel_read(&op, (void *)ip, MCOUNT_INSN_SIZE))
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500398 return -EFAULT;
399
400 /* It should be pointing to a nop */
Kumar Gala16c57b32009-02-10 20:10:44 +0000401 if (op != PPC_INST_NOP) {
Steven Rostedtd9af12b72008-11-25 06:39:18 -0800402 printk(KERN_ERR "Expected NOP but have %x\n", op);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500403 return -EINVAL;
404 }
405
406 /* If we never set up a trampoline to ftrace_caller, then bail */
407 if (!rec->arch.mod->arch.tramp) {
408 printk(KERN_ERR "No ftrace trampoline\n");
409 return -EINVAL;
410 }
411
Steven Rostedt0029ff82008-11-25 14:06:19 -0800412 /* create the branch to the trampoline */
413 op = create_branch((unsigned int *)ip,
414 rec->arch.mod->arch.tramp, BRANCH_SET_LINK);
415 if (!op) {
416 printk(KERN_ERR "REL24 out of range!\n");
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500417 return -EINVAL;
418 }
419
Michael Ellerman021376a2009-05-13 20:30:24 +0000420 pr_devel("write to %lx\n", rec->ip);
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500421
Steven Rostedt65b8c722012-04-26 08:31:19 +0000422 if (patch_instruction((unsigned int *)ip, op))
Steven Rostedt7cc45e62008-11-15 02:39:05 -0500423 return -EPERM;
424
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800425 return 0;
426}
427#endif /* CONFIG_PPC64 */
Steven Rostedt17be5b32009-02-05 21:33:09 -0800428#endif /* CONFIG_MODULES */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800429
430int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
431{
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800432 unsigned long ip = rec->ip;
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800433 unsigned int old, new;
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800434
435 /*
436 * If the calling address is more that 24 bits away,
437 * then we had to use a trampoline to make the call.
438 * Otherwise just update the call site.
439 */
440 if (test_24bit_addr(ip, addr)) {
441 /* within range */
Michael Ellerman92e02a52009-05-28 19:33:36 +0000442 old = PPC_INST_NOP;
Steven Rostedt46542882009-02-10 22:19:54 -0800443 new = ftrace_call_replace(ip, addr, 1);
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800444 return ftrace_modify_code(ip, old, new);
445 }
446
Steven Rostedt17be5b32009-02-05 21:33:09 -0800447#ifdef CONFIG_MODULES
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800448 /*
449 * Out of range jumps are called from modules.
450 * Being that we are converting from nop, it had better
451 * already have a module defined.
452 */
453 if (!rec->arch.mod) {
454 printk(KERN_ERR "No module loaded\n");
455 return -EINVAL;
456 }
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800457
458 return __ftrace_make_call(rec, addr);
Steven Rostedt17be5b32009-02-05 21:33:09 -0800459#else
460 /* We should not get here without modules */
461 return -EINVAL;
462#endif /* CONFIG_MODULES */
Steven Rostedtf48cb8b2008-11-14 20:47:03 -0800463}
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800464
Steven Rostedt15adc042008-10-23 09:33:08 -0400465int ftrace_update_ftrace_func(ftrace_func_t func)
Steven Rostedt4e491d12008-05-14 23:49:44 -0400466{
467 unsigned long ip = (unsigned long)(&ftrace_call);
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800468 unsigned int old, new;
Steven Rostedt4e491d12008-05-14 23:49:44 -0400469 int ret;
470
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800471 old = *(unsigned int *)&ftrace_call;
Steven Rostedt46542882009-02-10 22:19:54 -0800472 new = ftrace_call_replace(ip, (unsigned long)func, 1);
Steven Rostedt4e491d12008-05-14 23:49:44 -0400473 ret = ftrace_modify_code(ip, old, new);
474
475 return ret;
476}
477
Steven Rostedtee456bb2012-04-26 08:31:17 +0000478static int __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
479{
480 unsigned long ftrace_addr = (unsigned long)FTRACE_ADDR;
481 int ret;
482
483 ret = ftrace_update_record(rec, enable);
484
485 switch (ret) {
486 case FTRACE_UPDATE_IGNORE:
487 return 0;
488 case FTRACE_UPDATE_MAKE_CALL:
489 return ftrace_make_call(rec, ftrace_addr);
490 case FTRACE_UPDATE_MAKE_NOP:
491 return ftrace_make_nop(NULL, rec, ftrace_addr);
492 }
493
494 return 0;
495}
496
497void ftrace_replace_code(int enable)
498{
499 struct ftrace_rec_iter *iter;
500 struct dyn_ftrace *rec;
501 int ret;
502
503 for (iter = ftrace_rec_iter_start(); iter;
504 iter = ftrace_rec_iter_next(iter)) {
505 rec = ftrace_rec_iter_record(iter);
506 ret = __ftrace_replace_code(rec, enable);
507 if (ret) {
508 ftrace_bug(ret, rec->ip);
509 return;
510 }
511 }
512}
513
514void arch_ftrace_update_code(int command)
515{
516 if (command & FTRACE_UPDATE_CALLS)
517 ftrace_replace_code(1);
518 else if (command & FTRACE_DISABLE_CALLS)
519 ftrace_replace_code(0);
520
521 if (command & FTRACE_UPDATE_TRACE_FUNC)
522 ftrace_update_ftrace_func(ftrace_trace_function);
523
524 if (command & FTRACE_START_FUNC_RET)
525 ftrace_enable_ftrace_graph_caller();
526 else if (command & FTRACE_STOP_FUNC_RET)
527 ftrace_disable_ftrace_graph_caller();
528}
529
Steven Rostedt4e491d12008-05-14 23:49:44 -0400530int __init ftrace_dyn_arch_init(void *data)
531{
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800532 /* caller expects data to be zero */
533 unsigned long *p = data;
Steven Rostedt4e491d12008-05-14 23:49:44 -0400534
Steven Rostedt8fd6e5a2008-11-14 16:21:19 -0800535 *p = 0;
Steven Rostedt4e491d12008-05-14 23:49:44 -0400536
537 return 0;
538}
Steven Rostedt6794c782009-02-09 21:10:27 -0800539#endif /* CONFIG_DYNAMIC_FTRACE */
540
541#ifdef CONFIG_FUNCTION_GRAPH_TRACER
542
Steven Rostedt46542882009-02-10 22:19:54 -0800543#ifdef CONFIG_DYNAMIC_FTRACE
544extern void ftrace_graph_call(void);
545extern void ftrace_graph_stub(void);
546
547int ftrace_enable_ftrace_graph_caller(void)
548{
549 unsigned long ip = (unsigned long)(&ftrace_graph_call);
550 unsigned long addr = (unsigned long)(&ftrace_graph_caller);
551 unsigned long stub = (unsigned long)(&ftrace_graph_stub);
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800552 unsigned int old, new;
Steven Rostedt46542882009-02-10 22:19:54 -0800553
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800554 old = ftrace_call_replace(ip, stub, 0);
Steven Rostedt46542882009-02-10 22:19:54 -0800555 new = ftrace_call_replace(ip, addr, 0);
556
557 return ftrace_modify_code(ip, old, new);
558}
559
560int ftrace_disable_ftrace_graph_caller(void)
561{
562 unsigned long ip = (unsigned long)(&ftrace_graph_call);
563 unsigned long addr = (unsigned long)(&ftrace_graph_caller);
564 unsigned long stub = (unsigned long)(&ftrace_graph_stub);
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800565 unsigned int old, new;
Steven Rostedt46542882009-02-10 22:19:54 -0800566
Steven Rostedtb54dcfe2009-02-13 06:31:39 -0800567 old = ftrace_call_replace(ip, addr, 0);
Steven Rostedt46542882009-02-10 22:19:54 -0800568 new = ftrace_call_replace(ip, stub, 0);
569
570 return ftrace_modify_code(ip, old, new);
571}
572#endif /* CONFIG_DYNAMIC_FTRACE */
573
Steven Rostedtbb725342009-02-11 12:45:49 -0800574#ifdef CONFIG_PPC64
575extern void mod_return_to_handler(void);
576#endif
577
Steven Rostedt6794c782009-02-09 21:10:27 -0800578/*
579 * Hook the return address and push it in the stack of return addrs
580 * in current thread info.
581 */
582void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr)
583{
584 unsigned long old;
Steven Rostedt6794c782009-02-09 21:10:27 -0800585 int faulted;
586 struct ftrace_graph_ent trace;
Steven Rostedtbb725342009-02-11 12:45:49 -0800587 unsigned long return_hooker = (unsigned long)&return_to_handler;
Steven Rostedt6794c782009-02-09 21:10:27 -0800588
589 if (unlikely(atomic_read(&current->tracing_graph_pause)))
590 return;
591
Michael Ellermanf4952f62009-04-06 04:40:45 +0000592#ifdef CONFIG_PPC64
Steven Rostedtbb725342009-02-11 12:45:49 -0800593 /* non core kernel code needs to save and restore the TOC */
594 if (REGION_ID(self_addr) != KERNEL_REGION_ID)
595 return_hooker = (unsigned long)&mod_return_to_handler;
596#endif
597
Michael Ellerman4a9e3f82009-05-28 19:33:34 +0000598 return_hooker = ppc_function_entry((void *)return_hooker);
Steven Rostedt6794c782009-02-09 21:10:27 -0800599
600 /*
601 * Protect against fault, even if it shouldn't
602 * happen. This tool is too much intrusive to
603 * ignore such a protection.
604 */
605 asm volatile(
606 "1: " PPC_LL "%[old], 0(%[parent])\n"
607 "2: " PPC_STL "%[return_hooker], 0(%[parent])\n"
608 " li %[faulted], 0\n"
Steven Rostedtfad4f472009-02-11 19:10:57 -0500609 "3:\n"
Steven Rostedt6794c782009-02-09 21:10:27 -0800610
611 ".section .fixup, \"ax\"\n"
612 "4: li %[faulted], 1\n"
613 " b 3b\n"
614 ".previous\n"
615
616 ".section __ex_table,\"a\"\n"
617 PPC_LONG_ALIGN "\n"
618 PPC_LONG "1b,4b\n"
619 PPC_LONG "2b,4b\n"
620 ".previous"
621
Steven Rostedtc3cf8662009-05-15 04:33:54 +0000622 : [old] "=&r" (old), [faulted] "=r" (faulted)
Steven Rostedt6794c782009-02-09 21:10:27 -0800623 : [parent] "r" (parent), [return_hooker] "r" (return_hooker)
624 : "memory"
625 );
626
627 if (unlikely(faulted)) {
628 ftrace_graph_stop();
629 WARN_ON(1);
630 return;
631 }
632
Steven Rostedtbac821a2012-07-18 12:35:28 +0000633 trace.func = self_addr;
634 trace.depth = current->curr_ret_stack + 1;
635
636 /* Only trace if the calling function expects to */
637 if (!ftrace_graph_entry(&trace)) {
Steven Rostedt6794c782009-02-09 21:10:27 -0800638 *parent = old;
639 return;
640 }
641
Steven Rostedtbac821a2012-07-18 12:35:28 +0000642 if (ftrace_push_return_trace(old, self_addr, &trace.depth, 0) == -EBUSY)
Steven Rostedt6794c782009-02-09 21:10:27 -0800643 *parent = old;
Steven Rostedt6794c782009-02-09 21:10:27 -0800644}
645#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Ian Munsie02424d82011-02-02 17:27:24 +0000646
647#if defined(CONFIG_FTRACE_SYSCALLS) && defined(CONFIG_PPC64)
648unsigned long __init arch_syscall_addr(int nr)
649{
650 return sys_call_table[nr*2];
651}
652#endif /* CONFIG_FTRACE_SYSCALLS && CONFIG_PPC64 */