ftrace.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*
  2. * Dynamic function tracer architecture backend.
  3. *
  4. * Copyright IBM Corp. 2009
  5. *
  6. * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>,
  7. * Martin Schwidefsky <schwidefsky@de.ibm.com>
  8. */
  9. #include <linux/hardirq.h>
  10. #include <linux/uaccess.h>
  11. #include <linux/ftrace.h>
  12. #include <linux/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/kprobes.h>
  15. #include <trace/syscall.h>
  16. #include <asm/asm-offsets.h>
  17. #ifdef CONFIG_DYNAMIC_FTRACE
  18. void ftrace_disable_code(void);
  19. void ftrace_enable_insn(void);
  20. #ifdef CONFIG_64BIT
  21. /*
  22. * The 64-bit mcount code looks like this:
  23. * stg %r14,8(%r15) # offset 0
  24. * > larl %r1,<&counter> # offset 6
  25. * > brasl %r14,_mcount # offset 12
  26. * lg %r14,8(%r15) # offset 18
  27. * Total length is 24 bytes. The middle two instructions of the mcount
  28. * block get overwritten by ftrace_make_nop / ftrace_make_call.
  29. * The 64-bit enabled ftrace code block looks like this:
  30. * stg %r14,8(%r15) # offset 0
  31. * > lg %r1,__LC_FTRACE_FUNC # offset 6
  32. * > lgr %r0,%r0 # offset 12
  33. * > basr %r14,%r1 # offset 16
  34. * lg %r14,8(%15) # offset 18
  35. * The return points of the mcount/ftrace function have the same offset 18.
  36. * The 64-bit disable ftrace code block looks like this:
  37. * stg %r14,8(%r15) # offset 0
  38. * > jg .+18 # offset 6
  39. * > lgr %r0,%r0 # offset 12
  40. * > basr %r14,%r1 # offset 16
  41. * lg %r14,8(%15) # offset 18
  42. * The jg instruction branches to offset 24 to skip as many instructions
  43. * as possible.
  44. */
  45. asm(
  46. " .align 4\n"
  47. "ftrace_disable_code:\n"
  48. " jg 0f\n"
  49. " lgr %r0,%r0\n"
  50. " basr %r14,%r1\n"
  51. "0:\n"
  52. " .align 4\n"
  53. "ftrace_enable_insn:\n"
  54. " lg %r1,"__stringify(__LC_FTRACE_FUNC)"\n");
  55. #define FTRACE_INSN_SIZE 6
  56. #else /* CONFIG_64BIT */
  57. /*
  58. * The 31-bit mcount code looks like this:
  59. * st %r14,4(%r15) # offset 0
  60. * > bras %r1,0f # offset 4
  61. * > .long _mcount # offset 8
  62. * > .long <&counter> # offset 12
  63. * > 0: l %r14,0(%r1) # offset 16
  64. * > l %r1,4(%r1) # offset 20
  65. * basr %r14,%r14 # offset 24
  66. * l %r14,4(%r15) # offset 26
  67. * Total length is 30 bytes. The twenty bytes starting from offset 4
  68. * to offset 24 get overwritten by ftrace_make_nop / ftrace_make_call.
  69. * The 31-bit enabled ftrace code block looks like this:
  70. * st %r14,4(%r15) # offset 0
  71. * > l %r14,__LC_FTRACE_FUNC # offset 4
  72. * > j 0f # offset 8
  73. * > .fill 12,1,0x07 # offset 12
  74. * 0: basr %r14,%r14 # offset 24
  75. * l %r14,4(%r14) # offset 26
  76. * The return points of the mcount/ftrace function have the same offset 26.
  77. * The 31-bit disabled ftrace code block looks like this:
  78. * st %r14,4(%r15) # offset 0
  79. * > j .+26 # offset 4
  80. * > j 0f # offset 8
  81. * > .fill 12,1,0x07 # offset 12
  82. * 0: basr %r14,%r14 # offset 24
  83. * l %r14,4(%r14) # offset 26
  84. * The j instruction branches to offset 30 to skip as many instructions
  85. * as possible.
  86. */
  87. asm(
  88. " .align 4\n"
  89. "ftrace_disable_code:\n"
  90. " j 1f\n"
  91. " j 0f\n"
  92. " .fill 12,1,0x07\n"
  93. "0: basr %r14,%r14\n"
  94. "1:\n"
  95. " .align 4\n"
  96. "ftrace_enable_insn:\n"
  97. " l %r14,"__stringify(__LC_FTRACE_FUNC)"\n");
  98. #define FTRACE_INSN_SIZE 4
  99. #endif /* CONFIG_64BIT */
  100. int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec,
  101. unsigned long addr)
  102. {
  103. if (probe_kernel_write((void *) rec->ip, ftrace_disable_code,
  104. MCOUNT_INSN_SIZE))
  105. return -EPERM;
  106. return 0;
  107. }
  108. int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
  109. {
  110. if (probe_kernel_write((void *) rec->ip, ftrace_enable_insn,
  111. FTRACE_INSN_SIZE))
  112. return -EPERM;
  113. return 0;
  114. }
  115. int ftrace_update_ftrace_func(ftrace_func_t func)
  116. {
  117. return 0;
  118. }
  119. int __init ftrace_dyn_arch_init(void *data)
  120. {
  121. *(unsigned long *) data = 0;
  122. return 0;
  123. }
  124. #endif /* CONFIG_DYNAMIC_FTRACE */
  125. #ifdef CONFIG_FUNCTION_GRAPH_TRACER
  126. /*
  127. * Hook the return address and push it in the stack of return addresses
  128. * in current thread info.
  129. */
  130. unsigned long __kprobes prepare_ftrace_return(unsigned long parent,
  131. unsigned long ip)
  132. {
  133. struct ftrace_graph_ent trace;
  134. if (unlikely(atomic_read(&current->tracing_graph_pause)))
  135. goto out;
  136. ip = (ip & PSW_ADDR_INSN) - MCOUNT_INSN_SIZE;
  137. if (ftrace_push_return_trace(parent, ip, &trace.depth, 0) == -EBUSY)
  138. goto out;
  139. trace.func = ip;
  140. /* Only trace if the calling function expects to. */
  141. if (!ftrace_graph_entry(&trace)) {
  142. current->curr_ret_stack--;
  143. goto out;
  144. }
  145. parent = (unsigned long) return_to_handler;
  146. out:
  147. return parent;
  148. }
  149. #ifdef CONFIG_DYNAMIC_FTRACE
  150. /*
  151. * Patch the kernel code at ftrace_graph_caller location. The instruction
  152. * there is branch relative and save to prepare_ftrace_return. To disable
  153. * the call to prepare_ftrace_return we patch the bras offset to point
  154. * directly after the instructions. To enable the call we calculate
  155. * the original offset to prepare_ftrace_return and put it back.
  156. */
  157. int ftrace_enable_ftrace_graph_caller(void)
  158. {
  159. unsigned short offset;
  160. offset = ((void *) prepare_ftrace_return -
  161. (void *) ftrace_graph_caller) / 2;
  162. return probe_kernel_write(ftrace_graph_caller + 2,
  163. &offset, sizeof(offset));
  164. }
  165. int ftrace_disable_ftrace_graph_caller(void)
  166. {
  167. static unsigned short offset = 0x0002;
  168. return probe_kernel_write(ftrace_graph_caller + 2,
  169. &offset, sizeof(offset));
  170. }
  171. #endif /* CONFIG_DYNAMIC_FTRACE */
  172. #endif /* CONFIG_FUNCTION_GRAPH_TRACER */