powerpc/ftrace: Enable HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
[linux-2.6-block.git] / arch / powerpc / kernel / trace / ftrace.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
4e491d14
SR
2/*
3 * Code for replacing ftrace calls with jumps.
4 *
5 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
6 *
7 * Thanks goes out to P.A. Semi, Inc for supplying me with a PPC64 box.
8 *
6794c782
SR
9 * Added function graph tracer code, taken from x86 that was written
10 * by Frederic Weisbecker, and ported to PPC by Steven Rostedt.
11 *
4e491d14
SR
12 */
13
072c4c01
ME
14#define pr_fmt(fmt) "ftrace-powerpc: " fmt
15
4e491d14
SR
16#include <linux/spinlock.h>
17#include <linux/hardirq.h>
e4486fe3 18#include <linux/uaccess.h>
f48cb8b4 19#include <linux/module.h>
4e491d14
SR
20#include <linux/ftrace.h>
21#include <linux/percpu.h>
22#include <linux/init.h>
23#include <linux/list.h>
24
b3a7864c 25#include <asm/asm-prototypes.h>
4e491d14 26#include <asm/cacheflush.h>
f48cb8b4 27#include <asm/code-patching.h>
395a59d0 28#include <asm/ftrace.h>
02424d89 29#include <asm/syscall.h>
4e491d14 30
4e491d14 31
6794c782 32#ifdef CONFIG_DYNAMIC_FTRACE
67361cf8
NR
33
34/*
35 * We generally only have a single long_branch tramp and at most 2 or 3 plt
36 * tramps generated. But, we don't use the plt tramps currently. We also allot
37 * 2 tramps after .text and .init.text. So, we only end up with around 3 usable
38 * tramps in total. Set aside 8 just to be sure.
39 */
40#define NUM_FTRACE_TRAMPS 8
41static unsigned long ftrace_tramps[NUM_FTRACE_TRAMPS];
42
b54dcfe1 43static unsigned int
46542888 44ftrace_call_replace(unsigned long ip, unsigned long addr, int link)
4e491d14 45{
b54dcfe1 46 unsigned int op;
4e491d14 47
4a9e3f8e 48 addr = ppc_function_entry((void *)addr);
4e491d14 49
46542888 50 /* if (link) set op to 'bl' else 'b' */
bb9b9035 51 op = create_branch((unsigned int *)ip, addr, link ? 1 : 0);
4e491d14 52
b54dcfe1 53 return op;
4e491d14
SR
54}
55
8fd6e5a8 56static int
b54dcfe1 57ftrace_modify_code(unsigned long ip, unsigned int old, unsigned int new)
4e491d14 58{
b54dcfe1 59 unsigned int replaced;
4e491d14 60
4e491d14 61 /*
c02e0349
L
62 * Note:
63 * We are paranoid about modifying text, as if a bug was to happen, it
64 * could cause us to read or write to someplace that could cause harm.
65 * Carefully read and modify the code with probe_kernel_*(), and make
66 * sure what we read is what we expected it to be before modifying it.
4e491d14 67 */
e4486fe3
SR
68
69 /* read the text we want to modify */
b54dcfe1 70 if (probe_kernel_read(&replaced, (void *)ip, MCOUNT_INSN_SIZE))
e4486fe3
SR
71 return -EFAULT;
72
73 /* Make sure it is what we expect it to be */
15308664
TD
74 if (replaced != old) {
75 pr_err("%p: replaced (%#x) != old (%#x)",
76 (void *)ip, replaced, old);
e4486fe3 77 return -EINVAL;
15308664 78 }
e4486fe3
SR
79
80 /* replace the text with the new text */
65b8c722 81 if (patch_instruction((unsigned int *)ip, new))
e4486fe3
SR
82 return -EPERM;
83
e4486fe3 84 return 0;
4e491d14
SR
85}
86
f48cb8b4
SR
87/*
88 * Helper functions that are the same for both PPC64 and PPC32.
89 */
8fd6e5a8
SR
90static int test_24bit_addr(unsigned long ip, unsigned long addr)
91{
a95fc585 92 addr = ppc_function_entry((void *)addr);
8fd6e5a8 93
0029ff87
SR
94 /* use the create_branch to verify that this offset can be branched */
95 return create_branch((unsigned int *)ip, addr, 0);
8fd6e5a8
SR
96}
97
f48cb8b4
SR
98static int is_bl_op(unsigned int op)
99{
100 return (op & 0xfc000003) == 0x48000001;
101}
102
67361cf8
NR
103static int is_b_op(unsigned int op)
104{
105 return (op & 0xfc000003) == 0x48000000;
106}
107
f48cb8b4
SR
108static unsigned long find_bl_target(unsigned long ip, unsigned int op)
109{
d64cf54e 110 int offset;
f48cb8b4
SR
111
112 offset = (op & 0x03fffffc);
113 /* make it signed */
114 if (offset & 0x02000000)
115 offset |= 0xfe000000;
116
117 return ip + (long)offset;
118}
119
67361cf8 120#ifdef CONFIG_MODULES
f48cb8b4
SR
121#ifdef CONFIG_PPC64
122static int
123__ftrace_make_nop(struct module *mod,
124 struct dyn_ftrace *rec, unsigned long addr)
125{
f17c4e01 126 unsigned long entry, ptr, tramp;
f48cb8b4 127 unsigned long ip = rec->ip;
15308664 128 unsigned int op, pop;
f48cb8b4
SR
129
130 /* read where this goes */
15308664
TD
131 if (probe_kernel_read(&op, (void *)ip, sizeof(int))) {
132 pr_err("Fetching opcode failed.\n");
f48cb8b4 133 return -EFAULT;
15308664 134 }
f48cb8b4
SR
135
136 /* Make sure that that this is still a 24bit jump */
d9af12b7 137 if (!is_bl_op(op)) {
072c4c01 138 pr_err("Not expected bl: opcode is %x\n", op);
f48cb8b4
SR
139 return -EINVAL;
140 }
141
142 /* lets find where the pointer goes */
f17c4e01 143 tramp = find_bl_target(ip, op);
f48cb8b4 144
f17c4e01 145 pr_devel("ip:%lx jumps to %lx", ip, tramp);
f48cb8b4 146
62c9da6a 147 if (module_trampoline_target(mod, tramp, &ptr)) {
072c4c01 148 pr_err("Failed to get trampoline target\n");
f48cb8b4
SR
149 return -EFAULT;
150 }
151
62c9da6a 152 pr_devel("trampoline target %lx", ptr);
f48cb8b4 153
d84e0d69 154 entry = ppc_global_function_entry((void *)addr);
f48cb8b4 155 /* This should match what was called */
d84e0d69 156 if (ptr != entry) {
072c4c01 157 pr_err("addr %lx does not match expected %lx\n", ptr, entry);
f48cb8b4
SR
158 return -EINVAL;
159 }
160
abba7597 161#ifdef CONFIG_MPROFILE_KERNEL
9d636109
ME
162 /* When using -mkernel_profile there is no load to jump over */
163 pop = PPC_INST_NOP;
164
165 if (probe_kernel_read(&op, (void *)(ip - 4), 4)) {
166 pr_err("Fetching instruction at %lx failed.\n", ip - 4);
167 return -EFAULT;
168 }
169
170 /* We expect either a mflr r0, or a std r0, LRSAVE(r1) */
171 if (op != PPC_INST_MFLR && op != PPC_INST_STD_LR) {
172 pr_err("Unexpected instruction %08x around bl _mcount\n", op);
173 return -EINVAL;
174 }
175#else
f48cb8b4 176 /*
62c9da6a
AB
177 * Our original call site looks like:
178 *
179 * bl <tramp>
180 * ld r2,XX(r1)
181 *
182 * Milton Miller pointed out that we can not simply nop the branch.
183 * If a task was preempted when calling a trace function, the nops
184 * will remove the way to restore the TOC in r2 and the r2 TOC will
185 * get corrupted.
186 *
187 * Use a b +8 to jump over the load.
f48cb8b4 188 */
f48cb8b4 189
15308664
TD
190 pop = PPC_INST_BRANCH | 8; /* b +8 */
191
192 /*
193 * Check what is in the next instruction. We can see ld r2,40(r1), but
194 * on first pass after boot we will see mflr r0.
195 */
196 if (probe_kernel_read(&op, (void *)(ip+4), MCOUNT_INSN_SIZE)) {
197 pr_err("Fetching op failed.\n");
198 return -EFAULT;
199 }
200
201 if (op != PPC_INST_LD_TOC) {
9d636109
ME
202 pr_err("Expected %08x found %08x\n", PPC_INST_LD_TOC, op);
203 return -EINVAL;
15308664 204 }
abba7597 205#endif /* CONFIG_MPROFILE_KERNEL */
15308664
TD
206
207 if (patch_instruction((unsigned int *)ip, pop)) {
208 pr_err("Patching NOP failed.\n");
f48cb8b4 209 return -EPERM;
15308664 210 }
f48cb8b4
SR
211
212 return 0;
213}
214
215#else /* !PPC64 */
216static int
217__ftrace_make_nop(struct module *mod,
218 struct dyn_ftrace *rec, unsigned long addr)
219{
d9af12b7
SR
220 unsigned int op;
221 unsigned int jmp[4];
7cc45e64
SR
222 unsigned long ip = rec->ip;
223 unsigned long tramp;
7cc45e64 224
d9af12b7 225 if (probe_kernel_read(&op, (void *)ip, MCOUNT_INSN_SIZE))
7cc45e64
SR
226 return -EFAULT;
227
228 /* Make sure that that this is still a 24bit jump */
d9af12b7 229 if (!is_bl_op(op)) {
072c4c01 230 pr_err("Not expected bl: opcode is %x\n", op);
7cc45e64
SR
231 return -EINVAL;
232 }
233
234 /* lets find where the pointer goes */
d9af12b7 235 tramp = find_bl_target(ip, op);
7cc45e64
SR
236
237 /*
238 * On PPC32 the trampoline looks like:
fd5a4298 239 * 0x3d, 0x80, 0x00, 0x00 lis r12,sym@ha
240 * 0x39, 0x8c, 0x00, 0x00 addi r12,r12,sym@l
241 * 0x7d, 0x89, 0x03, 0xa6 mtctr r12
d9af12b7 242 * 0x4e, 0x80, 0x04, 0x20 bctr
7cc45e64
SR
243 */
244
021376a3 245 pr_devel("ip:%lx jumps to %lx", ip, tramp);
7cc45e64
SR
246
247 /* Find where the trampoline jumps to */
d9af12b7 248 if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) {
072c4c01 249 pr_err("Failed to read %lx\n", tramp);
7cc45e64
SR
250 return -EFAULT;
251 }
252
021376a3 253 pr_devel(" %08x %08x ", jmp[0], jmp[1]);
d9af12b7
SR
254
255 /* verify that this is what we expect it to be */
fd5a4298 256 if (((jmp[0] & 0xffff0000) != 0x3d800000) ||
257 ((jmp[1] & 0xffff0000) != 0x398c0000) ||
258 (jmp[2] != 0x7d8903a6) ||
d9af12b7 259 (jmp[3] != 0x4e800420)) {
072c4c01 260 pr_err("Not a trampoline\n");
d9af12b7
SR
261 return -EINVAL;
262 }
7cc45e64 263
d9af12b7
SR
264 tramp = (jmp[1] & 0xffff) |
265 ((jmp[0] & 0xffff) << 16);
7cc45e64
SR
266 if (tramp & 0x8000)
267 tramp -= 0x10000;
268
021376a3 269 pr_devel(" %lx ", tramp);
7cc45e64
SR
270
271 if (tramp != addr) {
072c4c01 272 pr_err("Trampoline location %08lx does not match addr\n",
7cc45e64
SR
273 tramp);
274 return -EINVAL;
275 }
276
16c57b36 277 op = PPC_INST_NOP;
7cc45e64 278
65b8c722 279 if (patch_instruction((unsigned int *)ip, op))
7cc45e64
SR
280 return -EPERM;
281
f48cb8b4
SR
282 return 0;
283}
284#endif /* PPC64 */
17be5b3d 285#endif /* CONFIG_MODULES */
f48cb8b4 286
67361cf8
NR
287static unsigned long find_ftrace_tramp(unsigned long ip)
288{
289 int i;
290
291 /*
292 * We have the compiler generated long_branch tramps at the end
293 * and we prefer those
294 */
295 for (i = NUM_FTRACE_TRAMPS - 1; i >= 0; i--)
296 if (!ftrace_tramps[i])
297 continue;
298 else if (create_branch((void *)ip, ftrace_tramps[i], 0))
299 return ftrace_tramps[i];
300
301 return 0;
302}
303
304static int add_ftrace_tramp(unsigned long tramp)
305{
306 int i;
307
308 for (i = 0; i < NUM_FTRACE_TRAMPS; i++)
309 if (!ftrace_tramps[i]) {
310 ftrace_tramps[i] = tramp;
311 return 0;
312 }
313
314 return -1;
315}
316
317/*
318 * If this is a compiler generated long_branch trampoline (essentially, a
319 * trampoline that has a branch to _mcount()), we re-write the branch to
320 * instead go to ftrace_[regs_]caller() and note down the location of this
321 * trampoline.
322 */
323static int setup_mcount_compiler_tramp(unsigned long tramp)
324{
325 int i, op;
326 unsigned long ptr;
327 static unsigned long ftrace_plt_tramps[NUM_FTRACE_TRAMPS];
328
329 /* Is this a known long jump tramp? */
330 for (i = 0; i < NUM_FTRACE_TRAMPS; i++)
331 if (!ftrace_tramps[i])
332 break;
333 else if (ftrace_tramps[i] == tramp)
334 return 0;
335
336 /* Is this a known plt tramp? */
337 for (i = 0; i < NUM_FTRACE_TRAMPS; i++)
338 if (!ftrace_plt_tramps[i])
339 break;
340 else if (ftrace_plt_tramps[i] == tramp)
341 return -1;
342
343 /* New trampoline -- read where this goes */
344 if (probe_kernel_read(&op, (void *)tramp, sizeof(int))) {
345 pr_debug("Fetching opcode failed.\n");
346 return -1;
347 }
348
349 /* Is this a 24 bit branch? */
350 if (!is_b_op(op)) {
351 pr_debug("Trampoline is not a long branch tramp.\n");
352 return -1;
353 }
354
355 /* lets find where the pointer goes */
356 ptr = find_bl_target(tramp, op);
357
358 if (ptr != ppc_global_function_entry((void *)_mcount)) {
359 pr_debug("Trampoline target %p is not _mcount\n", (void *)ptr);
360 return -1;
361 }
362
363 /* Let's re-write the tramp to go to ftrace_[regs_]caller */
364#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
365 ptr = ppc_global_function_entry((void *)ftrace_regs_caller);
366#else
367 ptr = ppc_global_function_entry((void *)ftrace_caller);
368#endif
369 if (!create_branch((void *)tramp, ptr, 0)) {
370 pr_debug("%ps is not reachable from existing mcount tramp\n",
371 (void *)ptr);
372 return -1;
373 }
374
375 if (patch_branch((unsigned int *)tramp, ptr, 0)) {
376 pr_debug("REL24 out of range!\n");
377 return -1;
378 }
379
380 if (add_ftrace_tramp(tramp)) {
381 pr_debug("No tramp locations left\n");
382 return -1;
383 }
384
385 return 0;
386}
387
388static int __ftrace_make_nop_kernel(struct dyn_ftrace *rec, unsigned long addr)
389{
390 unsigned long tramp, ip = rec->ip;
391 unsigned int op;
392
393 /* Read where this goes */
394 if (probe_kernel_read(&op, (void *)ip, sizeof(int))) {
395 pr_err("Fetching opcode failed.\n");
396 return -EFAULT;
397 }
398
399 /* Make sure that that this is still a 24bit jump */
400 if (!is_bl_op(op)) {
401 pr_err("Not expected bl: opcode is %x\n", op);
402 return -EINVAL;
403 }
404
405 /* Let's find where the pointer goes */
406 tramp = find_bl_target(ip, op);
407
408 pr_devel("ip:%lx jumps to %lx", ip, tramp);
409
410 if (setup_mcount_compiler_tramp(tramp)) {
411 /* Are other trampolines reachable? */
412 if (!find_ftrace_tramp(ip)) {
413 pr_err("No ftrace trampolines reachable from %ps\n",
414 (void *)ip);
415 return -EINVAL;
416 }
417 }
418
419 if (patch_instruction((unsigned int *)ip, PPC_INST_NOP)) {
420 pr_err("Patching NOP failed.\n");
421 return -EPERM;
422 }
423
424 return 0;
425}
426
8fd6e5a8
SR
427int ftrace_make_nop(struct module *mod,
428 struct dyn_ftrace *rec, unsigned long addr)
429{
f48cb8b4 430 unsigned long ip = rec->ip;
b54dcfe1 431 unsigned int old, new;
8fd6e5a8
SR
432
433 /*
434 * If the calling address is more that 24 bits away,
435 * then we had to use a trampoline to make the call.
436 * Otherwise just update the call site.
437 */
f48cb8b4 438 if (test_24bit_addr(ip, addr)) {
8fd6e5a8 439 /* within range */
46542888 440 old = ftrace_call_replace(ip, addr, 1);
92e02a51 441 new = PPC_INST_NOP;
f48cb8b4 442 return ftrace_modify_code(ip, old, new);
67361cf8
NR
443 } else if (core_kernel_text(ip))
444 return __ftrace_make_nop_kernel(rec, addr);
f48cb8b4 445
17be5b3d 446#ifdef CONFIG_MODULES
f48cb8b4
SR
447 /*
448 * Out of range jumps are called from modules.
449 * We should either already have a pointer to the module
450 * or it has been passed in.
451 */
452 if (!rec->arch.mod) {
453 if (!mod) {
072c4c01 454 pr_err("No module loaded addr=%lx\n", addr);
f48cb8b4
SR
455 return -EFAULT;
456 }
457 rec->arch.mod = mod;
458 } else if (mod) {
459 if (mod != rec->arch.mod) {
072c4c01 460 pr_err("Record mod %p not equal to passed in mod %p\n",
f48cb8b4
SR
461 rec->arch.mod, mod);
462 return -EINVAL;
463 }
464 /* nothing to do if mod == rec->arch.mod */
465 } else
466 mod = rec->arch.mod;
f48cb8b4
SR
467
468 return __ftrace_make_nop(mod, rec, addr);
17be5b3d
SR
469#else
470 /* We should not get here without modules */
471 return -EINVAL;
472#endif /* CONFIG_MODULES */
f48cb8b4
SR
473}
474
17be5b3d 475#ifdef CONFIG_MODULES
f48cb8b4 476#ifdef CONFIG_PPC64
15308664
TD
477/*
478 * Examine the existing instructions for __ftrace_make_call.
479 * They should effectively be a NOP, and follow formal constraints,
480 * depending on the ABI. Return false if they don't.
481 */
abba7597 482#ifndef CONFIG_MPROFILE_KERNEL
f48cb8b4 483static int
15308664 484expected_nop_sequence(void *ip, unsigned int op0, unsigned int op1)
f48cb8b4 485{
f48cb8b4 486 /*
24a1bdc3
AB
487 * We expect to see:
488 *
489 * b +8
490 * ld r2,XX(r1)
491 *
492 * The load offset is different depending on the ABI. For simplicity
493 * just mask it out when doing the compare.
f48cb8b4 494 */
15308664
TD
495 if ((op0 != 0x48000008) || ((op1 & 0xffff0000) != 0xe8410000))
496 return 0;
497 return 1;
498}
499#else
500static int
501expected_nop_sequence(void *ip, unsigned int op0, unsigned int op1)
502{
503 /* look for patched "NOP" on ppc64 with -mprofile-kernel */
504 if (op0 != PPC_INST_NOP)
505 return 0;
506 return 1;
507}
508#endif
509
510static int
511__ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
512{
513 unsigned int op[2];
514 void *ip = (void *)rec->ip;
ae30cc05
NR
515 unsigned long entry, ptr, tramp;
516 struct module *mod = rec->arch.mod;
15308664
TD
517
518 /* read where this goes */
519 if (probe_kernel_read(op, ip, sizeof(op)))
520 return -EFAULT;
521
522 if (!expected_nop_sequence(ip, op[0], op[1])) {
523 pr_err("Unexpected call sequence at %p: %x %x\n",
524 ip, op[0], op[1]);
f48cb8b4
SR
525 return -EINVAL;
526 }
527
ae30cc05
NR
528 /* If we never set up ftrace trampoline(s), then bail */
529#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
530 if (!mod->arch.tramp || !mod->arch.tramp_regs) {
531#else
532 if (!mod->arch.tramp) {
533#endif
072c4c01 534 pr_err("No ftrace trampoline\n");
f48cb8b4
SR
535 return -EINVAL;
536 }
537
ae30cc05
NR
538#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
539 if (rec->flags & FTRACE_FL_REGS)
540 tramp = mod->arch.tramp_regs;
541 else
542#endif
543 tramp = mod->arch.tramp;
544
545 if (module_trampoline_target(mod, tramp, &ptr)) {
546 pr_err("Failed to get trampoline target\n");
547 return -EFAULT;
548 }
549
550 pr_devel("trampoline target %lx", ptr);
551
552 entry = ppc_global_function_entry((void *)addr);
553 /* This should match what was called */
554 if (ptr != entry) {
555 pr_err("addr %lx does not match expected %lx\n", ptr, entry);
556 return -EINVAL;
557 }
558
24a1bdc3 559 /* Ensure branch is within 24 bits */
ae30cc05 560 if (!create_branch(ip, tramp, BRANCH_SET_LINK)) {
072c4c01 561 pr_err("Branch out of range\n");
f48cb8b4 562 return -EINVAL;
8fd6e5a8
SR
563 }
564
ae30cc05 565 if (patch_branch(ip, tramp, BRANCH_SET_LINK)) {
072c4c01 566 pr_err("REL24 out of range!\n");
24a1bdc3
AB
567 return -EINVAL;
568 }
ec682cef 569
8fd6e5a8
SR
570 return 0;
571}
15308664 572
15308664 573#else /* !CONFIG_PPC64: */
f48cb8b4
SR
574static int
575__ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
576{
d9af12b7 577 unsigned int op;
7cc45e64 578 unsigned long ip = rec->ip;
7cc45e64
SR
579
580 /* read where this goes */
d9af12b7 581 if (probe_kernel_read(&op, (void *)ip, MCOUNT_INSN_SIZE))
7cc45e64
SR
582 return -EFAULT;
583
584 /* It should be pointing to a nop */
16c57b36 585 if (op != PPC_INST_NOP) {
072c4c01 586 pr_err("Expected NOP but have %x\n", op);
7cc45e64
SR
587 return -EINVAL;
588 }
589
590 /* If we never set up a trampoline to ftrace_caller, then bail */
591 if (!rec->arch.mod->arch.tramp) {
072c4c01 592 pr_err("No ftrace trampoline\n");
7cc45e64
SR
593 return -EINVAL;
594 }
595
0029ff87
SR
596 /* create the branch to the trampoline */
597 op = create_branch((unsigned int *)ip,
598 rec->arch.mod->arch.tramp, BRANCH_SET_LINK);
599 if (!op) {
072c4c01 600 pr_err("REL24 out of range!\n");
7cc45e64
SR
601 return -EINVAL;
602 }
603
021376a3 604 pr_devel("write to %lx\n", rec->ip);
7cc45e64 605
65b8c722 606 if (patch_instruction((unsigned int *)ip, op))
7cc45e64
SR
607 return -EPERM;
608
f48cb8b4
SR
609 return 0;
610}
611#endif /* CONFIG_PPC64 */
17be5b3d 612#endif /* CONFIG_MODULES */
8fd6e5a8 613
67361cf8
NR
614static int __ftrace_make_call_kernel(struct dyn_ftrace *rec, unsigned long addr)
615{
616 unsigned int op;
617 void *ip = (void *)rec->ip;
618 unsigned long tramp, entry, ptr;
619
620 /* Make sure we're being asked to patch branch to a known ftrace addr */
621 entry = ppc_global_function_entry((void *)ftrace_caller);
622 ptr = ppc_global_function_entry((void *)addr);
623
624 if (ptr != entry) {
625#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
626 entry = ppc_global_function_entry((void *)ftrace_regs_caller);
627 if (ptr != entry) {
628#endif
629 pr_err("Unknown ftrace addr to patch: %ps\n", (void *)ptr);
630 return -EINVAL;
631#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
632 }
633#endif
634 }
635
636 /* Make sure we have a nop */
637 if (probe_kernel_read(&op, ip, sizeof(op))) {
638 pr_err("Unable to read ftrace location %p\n", ip);
639 return -EFAULT;
640 }
641
642 if (op != PPC_INST_NOP) {
643 pr_err("Unexpected call sequence at %p: %x\n", ip, op);
644 return -EINVAL;
645 }
646
647 tramp = find_ftrace_tramp((unsigned long)ip);
648 if (!tramp) {
649 pr_err("No ftrace trampolines reachable from %ps\n", ip);
650 return -EINVAL;
651 }
652
653 if (patch_branch(ip, tramp, BRANCH_SET_LINK)) {
654 pr_err("Error patching branch to ftrace tramp!\n");
655 return -EINVAL;
656 }
657
658 return 0;
659}
660
8fd6e5a8
SR
661int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
662{
f48cb8b4 663 unsigned long ip = rec->ip;
b54dcfe1 664 unsigned int old, new;
8fd6e5a8
SR
665
666 /*
667 * If the calling address is more that 24 bits away,
668 * then we had to use a trampoline to make the call.
669 * Otherwise just update the call site.
670 */
f48cb8b4 671 if (test_24bit_addr(ip, addr)) {
8fd6e5a8 672 /* within range */
92e02a51 673 old = PPC_INST_NOP;
46542888 674 new = ftrace_call_replace(ip, addr, 1);
f48cb8b4 675 return ftrace_modify_code(ip, old, new);
67361cf8
NR
676 } else if (core_kernel_text(ip))
677 return __ftrace_make_call_kernel(rec, addr);
8fd6e5a8 678
17be5b3d 679#ifdef CONFIG_MODULES
f48cb8b4
SR
680 /*
681 * Out of range jumps are called from modules.
682 * Being that we are converting from nop, it had better
683 * already have a module defined.
684 */
685 if (!rec->arch.mod) {
072c4c01 686 pr_err("No module loaded\n");
f48cb8b4
SR
687 return -EINVAL;
688 }
f48cb8b4
SR
689
690 return __ftrace_make_call(rec, addr);
17be5b3d
SR
691#else
692 /* We should not get here without modules */
693 return -EINVAL;
694#endif /* CONFIG_MODULES */
8fd6e5a8
SR
695}
696
ae30cc05
NR
697#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
698#ifdef CONFIG_MODULES
699static int
700__ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
701 unsigned long addr)
702{
703 unsigned int op;
704 unsigned long ip = rec->ip;
705 unsigned long entry, ptr, tramp;
706 struct module *mod = rec->arch.mod;
707
708 /* If we never set up ftrace trampolines, then bail */
709 if (!mod->arch.tramp || !mod->arch.tramp_regs) {
710 pr_err("No ftrace trampoline\n");
711 return -EINVAL;
712 }
713
714 /* read where this goes */
715 if (probe_kernel_read(&op, (void *)ip, sizeof(int))) {
716 pr_err("Fetching opcode failed.\n");
717 return -EFAULT;
718 }
719
720 /* Make sure that that this is still a 24bit jump */
721 if (!is_bl_op(op)) {
722 pr_err("Not expected bl: opcode is %x\n", op);
723 return -EINVAL;
724 }
725
726 /* lets find where the pointer goes */
727 tramp = find_bl_target(ip, op);
728 entry = ppc_global_function_entry((void *)old_addr);
729
730 pr_devel("ip:%lx jumps to %lx", ip, tramp);
731
732 if (tramp != entry) {
733 /* old_addr is not within range, so we must have used a trampoline */
734 if (module_trampoline_target(mod, tramp, &ptr)) {
735 pr_err("Failed to get trampoline target\n");
736 return -EFAULT;
737 }
738
739 pr_devel("trampoline target %lx", ptr);
740
741 /* This should match what was called */
742 if (ptr != entry) {
743 pr_err("addr %lx does not match expected %lx\n", ptr, entry);
744 return -EINVAL;
745 }
746 }
747
748 /* The new target may be within range */
749 if (test_24bit_addr(ip, addr)) {
750 /* within range */
751 if (patch_branch((unsigned int *)ip, addr, BRANCH_SET_LINK)) {
752 pr_err("REL24 out of range!\n");
753 return -EINVAL;
754 }
755
756 return 0;
757 }
758
759 if (rec->flags & FTRACE_FL_REGS)
760 tramp = mod->arch.tramp_regs;
761 else
762 tramp = mod->arch.tramp;
763
764 if (module_trampoline_target(mod, tramp, &ptr)) {
765 pr_err("Failed to get trampoline target\n");
766 return -EFAULT;
767 }
768
769 pr_devel("trampoline target %lx", ptr);
770
771 entry = ppc_global_function_entry((void *)addr);
772 /* This should match what was called */
773 if (ptr != entry) {
774 pr_err("addr %lx does not match expected %lx\n", ptr, entry);
775 return -EINVAL;
776 }
777
778 /* Ensure branch is within 24 bits */
779 if (!create_branch((unsigned int *)ip, tramp, BRANCH_SET_LINK)) {
780 pr_err("Branch out of range\n");
781 return -EINVAL;
782 }
783
784 if (patch_branch((unsigned int *)ip, tramp, BRANCH_SET_LINK)) {
785 pr_err("REL24 out of range!\n");
786 return -EINVAL;
787 }
788
789 return 0;
790}
791#endif
792
793int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
794 unsigned long addr)
795{
796 unsigned long ip = rec->ip;
797 unsigned int old, new;
798
799 /*
800 * If the calling address is more that 24 bits away,
801 * then we had to use a trampoline to make the call.
802 * Otherwise just update the call site.
803 */
804 if (test_24bit_addr(ip, addr) && test_24bit_addr(ip, old_addr)) {
805 /* within range */
806 old = ftrace_call_replace(ip, old_addr, 1);
807 new = ftrace_call_replace(ip, addr, 1);
808 return ftrace_modify_code(ip, old, new);
67361cf8
NR
809 } else if (core_kernel_text(ip)) {
810 /*
811 * We always patch out of range locations to go to the regs
812 * variant, so there is nothing to do here
813 */
814 return 0;
ae30cc05
NR
815 }
816
817#ifdef CONFIG_MODULES
818 /*
819 * Out of range jumps are called from modules.
820 */
821 if (!rec->arch.mod) {
822 pr_err("No module loaded\n");
823 return -EINVAL;
824 }
825
826 return __ftrace_modify_call(rec, old_addr, addr);
827#else
828 /* We should not get here without modules */
829 return -EINVAL;
830#endif /* CONFIG_MODULES */
831}
832#endif
833
15adc048 834int ftrace_update_ftrace_func(ftrace_func_t func)
4e491d14
SR
835{
836 unsigned long ip = (unsigned long)(&ftrace_call);
b54dcfe1 837 unsigned int old, new;
4e491d14
SR
838 int ret;
839
b54dcfe1 840 old = *(unsigned int *)&ftrace_call;
46542888 841 new = ftrace_call_replace(ip, (unsigned long)func, 1);
4e491d14
SR
842 ret = ftrace_modify_code(ip, old, new);
843
ae30cc05
NR
844#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
845 /* Also update the regs callback function */
846 if (!ret) {
847 ip = (unsigned long)(&ftrace_regs_call);
848 old = *(unsigned int *)&ftrace_regs_call;
849 new = ftrace_call_replace(ip, (unsigned long)func, 1);
850 ret = ftrace_modify_code(ip, old, new);
851 }
852#endif
853
4e491d14
SR
854 return ret;
855}
856
c96f8385
TD
857/*
858 * Use the default ftrace_modify_all_code, but without
859 * stop_machine().
860 */
ee456bb3
SR
861void arch_ftrace_update_code(int command)
862{
c96f8385 863 ftrace_modify_all_code(command);
ee456bb3
SR
864}
865
67361cf8
NR
866#ifdef CONFIG_PPC64
867#define PACATOC offsetof(struct paca_struct, kernel_toc)
868
67361cf8
NR
869extern unsigned int ftrace_tramp_text[], ftrace_tramp_init[];
870
871int __init ftrace_dyn_arch_init(void)
872{
873 int i;
874 unsigned int *tramp[] = { ftrace_tramp_text, ftrace_tramp_init };
875 u32 stub_insns[] = {
876 0xe98d0000 | PACATOC, /* ld r12,PACATOC(r13) */
877 0x3d8c0000, /* addis r12,r12,<high> */
878 0x398c0000, /* addi r12,r12,<low> */
879 0x7d8903a6, /* mtctr r12 */
880 0x4e800420, /* bctr */
881 };
882#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
883 unsigned long addr = ppc_global_function_entry((void *)ftrace_regs_caller);
884#else
885 unsigned long addr = ppc_global_function_entry((void *)ftrace_caller);
886#endif
887 long reladdr = addr - kernel_toc_addr();
888
889 if (reladdr > 0x7FFFFFFF || reladdr < -(0x80000000L)) {
890 pr_err("Address of %ps out of range of kernel_toc.\n",
891 (void *)addr);
892 return -1;
893 }
894
895 for (i = 0; i < 2; i++) {
896 memcpy(tramp[i], stub_insns, sizeof(stub_insns));
897 tramp[i][1] |= PPC_HA(reladdr);
898 tramp[i][2] |= PPC_LO(reladdr);
899 add_ftrace_tramp((unsigned long)tramp[i]);
900 }
901
902 return 0;
903}
904#else
3a36cb11 905int __init ftrace_dyn_arch_init(void)
4e491d14 906{
4e491d14
SR
907 return 0;
908}
67361cf8 909#endif
6794c782
SR
910#endif /* CONFIG_DYNAMIC_FTRACE */
911
912#ifdef CONFIG_FUNCTION_GRAPH_TRACER
913
46542888
SR
914extern void ftrace_graph_call(void);
915extern void ftrace_graph_stub(void);
916
917int ftrace_enable_ftrace_graph_caller(void)
918{
919 unsigned long ip = (unsigned long)(&ftrace_graph_call);
920 unsigned long addr = (unsigned long)(&ftrace_graph_caller);
921 unsigned long stub = (unsigned long)(&ftrace_graph_stub);
b54dcfe1 922 unsigned int old, new;
46542888 923
b54dcfe1 924 old = ftrace_call_replace(ip, stub, 0);
46542888
SR
925 new = ftrace_call_replace(ip, addr, 0);
926
927 return ftrace_modify_code(ip, old, new);
928}
929
930int ftrace_disable_ftrace_graph_caller(void)
931{
932 unsigned long ip = (unsigned long)(&ftrace_graph_call);
933 unsigned long addr = (unsigned long)(&ftrace_graph_caller);
934 unsigned long stub = (unsigned long)(&ftrace_graph_stub);
b54dcfe1 935 unsigned int old, new;
46542888 936
b54dcfe1 937 old = ftrace_call_replace(ip, addr, 0);
46542888
SR
938 new = ftrace_call_replace(ip, stub, 0);
939
940 return ftrace_modify_code(ip, old, new);
941}
46542888 942
6794c782
SR
943/*
944 * Hook the return address and push it in the stack of return addrs
b3c18725 945 * in current thread info. Return the address we want to divert to.
6794c782 946 */
370011a2
NR
947unsigned long prepare_ftrace_return(unsigned long parent, unsigned long ip,
948 unsigned long sp)
6794c782 949{
7d56c65a 950 unsigned long return_hooker;
6794c782 951
96d4f43e 952 if (unlikely(ftrace_graph_is_dead()))
b3c18725 953 goto out;
96d4f43e 954
6794c782 955 if (unlikely(atomic_read(&current->tracing_graph_pause)))
b3c18725 956 goto out;
6794c782 957
7d56c65a 958 return_hooker = ppc_function_entry(return_to_handler);
6794c782 959
370011a2 960 if (!function_graph_enter(parent, ip, 0, (unsigned long *)sp))
fe60522e 961 parent = return_hooker;
b3c18725
AB
962out:
963 return parent;
6794c782
SR
964}
965#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
02424d89 966
f55d9665 967#ifdef PPC64_ELF_ABI_v1
7132e2d6
TJB
968char *arch_ftrace_match_adjust(char *str, const char *search)
969{
970 if (str[0] == '.' && search[0] != '.')
971 return str + 1;
972 else
973 return str;
974}
f55d9665 975#endif /* PPC64_ELF_ABI_v1 */