blob: 1db0e121a3e70f1c5039db96d76e53b80720c1b5 [file] [log] [blame]
Steven Rostedt3d083392008-05-12 21:20:42 +02001/*
2 * Code for replacing ftrace calls with jumps.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 *
6 * Thanks goes to Ingo Molnar, for suggesting the idea.
7 * Mathieu Desnoyers, for suggesting postponing the modifications.
8 * Arjan van de Ven, for keeping me straight, and explaining to me
9 * the dangers of modifying code on the run.
10 */
11
12#include <linux/spinlock.h>
13#include <linux/hardirq.h>
Steven Rostedt6f93fc02008-08-20 12:55:07 -040014#include <linux/uaccess.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020015#include <linux/ftrace.h>
16#include <linux/percpu.h>
Ingo Molnar19b3e962008-11-11 11:57:02 +010017#include <linux/sched.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020018#include <linux/init.h>
19#include <linux/list.h>
20
Abhishek Sagar395a59d2008-06-21 23:47:27 +053021#include <asm/ftrace.h>
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010022#include <linux/ftrace.h>
Steven Rostedt732f3ca2008-08-14 18:05:05 -040023#include <asm/nops.h>
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010024#include <asm/nmi.h>
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020025
Steven Rostedt3d083392008-05-12 21:20:42 +020026
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010027
28#ifdef CONFIG_FUNCTION_RET_TRACER
29
30/*
31 * These functions are picked from those used on
32 * this page for dynamic ftrace. They have been
33 * simplified to ignore all traces in NMI context.
34 */
35static atomic_t in_nmi;
36
37void ftrace_nmi_enter(void)
38{
39 atomic_inc(&in_nmi);
40}
41
42void ftrace_nmi_exit(void)
43{
44 atomic_dec(&in_nmi);
45}
46
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010047/* Add a function return address to the trace stack on thread info.*/
48static int push_return_trace(unsigned long ret, unsigned long long time,
49 unsigned long func)
50{
51 int index;
Frederic Weisbecker62d59d12008-11-12 22:47:54 +010052 struct thread_info *ti = current_thread_info();
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010053
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010054 /* The return trace stack is full */
Frederic Weisbecker62d59d12008-11-12 22:47:54 +010055 if (ti->curr_ret_stack == FTRACE_RET_STACK_SIZE - 1)
56 return -EBUSY;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010057
58 index = ++ti->curr_ret_stack;
59 ti->ret_stack[index].ret = ret;
60 ti->ret_stack[index].func = func;
61 ti->ret_stack[index].calltime = time;
62
Frederic Weisbecker62d59d12008-11-12 22:47:54 +010063 return 0;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010064}
65
66/* Retrieve a function return address to the trace stack on thread info.*/
67static void pop_return_trace(unsigned long *ret, unsigned long long *time,
68 unsigned long *func)
69{
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010070 int index;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010071
Frederic Weisbecker62d59d12008-11-12 22:47:54 +010072 struct thread_info *ti = current_thread_info();
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010073 index = ti->curr_ret_stack;
74 *ret = ti->ret_stack[index].ret;
75 *func = ti->ret_stack[index].func;
76 *time = ti->ret_stack[index].calltime;
77 ti->curr_ret_stack--;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +010078}
79
80/*
81 * Send the trace to the ring-buffer.
82 * @return the original return address.
83 */
84unsigned long ftrace_return_to_handler(void)
85{
86 struct ftrace_retfunc trace;
87 pop_return_trace(&trace.ret, &trace.calltime, &trace.func);
88 trace.rettime = cpu_clock(raw_smp_processor_id());
89 ftrace_function_return(&trace);
90
91 return trace.ret;
92}
93
94/*
95 * Hook the return address and push it in the stack of return addrs
96 * in current thread info.
97 */
98asmlinkage
99void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr)
100{
101 unsigned long old;
102 unsigned long long calltime;
103 int faulted;
104 unsigned long return_hooker = (unsigned long)
105 &return_to_handler;
106
107 /* Nmi's are currently unsupported */
108 if (atomic_read(&in_nmi))
109 return;
110
111 /*
112 * Protect against fault, even if it shouldn't
113 * happen. This tool is too much intrusive to
114 * ignore such a protection.
115 */
116 asm volatile(
117 "1: movl (%[parent_old]), %[old]\n"
118 "2: movl %[return_hooker], (%[parent_replaced])\n"
119 " movl $0, %[faulted]\n"
120
121 ".section .fixup, \"ax\"\n"
122 "3: movl $1, %[faulted]\n"
123 ".previous\n"
124
125 ".section __ex_table, \"a\"\n"
126 " .long 1b, 3b\n"
127 " .long 2b, 3b\n"
128 ".previous\n"
129
Ingo Molnar867f7fb2008-11-11 11:18:14 +0100130 : [parent_replaced] "=r" (parent), [old] "=r" (old),
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100131 [faulted] "=r" (faulted)
132 : [parent_old] "0" (parent), [return_hooker] "r" (return_hooker)
133 : "memory"
134 );
135
136 if (WARN_ON(faulted)) {
137 unregister_ftrace_return();
138 return;
139 }
140
141 if (WARN_ON(!__kernel_text_address(old))) {
142 unregister_ftrace_return();
143 *parent = old;
144 return;
145 }
146
147 calltime = cpu_clock(raw_smp_processor_id());
148
149 if (push_return_trace(old, calltime, self_addr) == -EBUSY)
150 *parent = old;
151}
152
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100153#endif
154
155#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt3d083392008-05-12 21:20:42 +0200156
Steven Rostedt3d083392008-05-12 21:20:42 +0200157union ftrace_code_union {
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530158 char code[MCOUNT_INSN_SIZE];
Steven Rostedt3d083392008-05-12 21:20:42 +0200159 struct {
160 char e8;
161 int offset;
162 } __attribute__((packed));
163};
164
Steven Rostedt15adc042008-10-23 09:33:08 -0400165static int ftrace_calc_offset(long ip, long addr)
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200166{
167 return (int)(addr - ip);
168}
169
Steven Rostedt15adc042008-10-23 09:33:08 -0400170unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr)
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200171{
172 static union ftrace_code_union calc;
173
174 calc.e8 = 0xe8;
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530175 calc.offset = ftrace_calc_offset(ip + MCOUNT_INSN_SIZE, addr);
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200176
177 /*
178 * No locking needed, this must be called via kstop_machine
179 * which in essence is like running on a uniprocessor machine.
180 */
181 return calc.code;
182}
183
Steven Rostedt17666f02008-10-30 16:08:32 -0400184/*
185 * Modifying code must take extra care. On an SMP machine, if
186 * the code being modified is also being executed on another CPU
187 * that CPU will have undefined results and possibly take a GPF.
188 * We use kstop_machine to stop other CPUS from exectuing code.
189 * But this does not stop NMIs from happening. We still need
190 * to protect against that. We separate out the modification of
191 * the code to take care of this.
192 *
193 * Two buffers are added: An IP buffer and a "code" buffer.
194 *
Steven Rostedta26a2a22008-10-31 00:03:22 -0400195 * 1) Put the instruction pointer into the IP buffer
Steven Rostedt17666f02008-10-30 16:08:32 -0400196 * and the new code into the "code" buffer.
197 * 2) Set a flag that says we are modifying code
198 * 3) Wait for any running NMIs to finish.
199 * 4) Write the code
200 * 5) clear the flag.
201 * 6) Wait for any running NMIs to finish.
202 *
203 * If an NMI is executed, the first thing it does is to call
204 * "ftrace_nmi_enter". This will check if the flag is set to write
205 * and if it is, it will write what is in the IP and "code" buffers.
206 *
207 * The trick is, it does not matter if everyone is writing the same
208 * content to the code location. Also, if a CPU is executing code
209 * it is OK to write to that code location if the contents being written
210 * are the same as what exists.
211 */
212
Steven Rostedta26a2a22008-10-31 00:03:22 -0400213static atomic_t in_nmi = ATOMIC_INIT(0);
214static int mod_code_status; /* holds return value of text write */
215static int mod_code_write; /* set when NMI should do the write */
216static void *mod_code_ip; /* holds the IP to write to */
217static void *mod_code_newcode; /* holds the text to write to the IP */
Steven Rostedt17666f02008-10-30 16:08:32 -0400218
Steven Rostedta26a2a22008-10-31 00:03:22 -0400219static unsigned nmi_wait_count;
220static atomic_t nmi_update_count = ATOMIC_INIT(0);
Steven Rostedtb807c3d2008-10-30 16:08:33 -0400221
222int ftrace_arch_read_dyn_info(char *buf, int size)
223{
224 int r;
225
226 r = snprintf(buf, size, "%u %u",
227 nmi_wait_count,
228 atomic_read(&nmi_update_count));
229 return r;
230}
231
Steven Rostedt17666f02008-10-30 16:08:32 -0400232static void ftrace_mod_code(void)
233{
234 /*
235 * Yes, more than one CPU process can be writing to mod_code_status.
236 * (and the code itself)
237 * But if one were to fail, then they all should, and if one were
238 * to succeed, then they all should.
239 */
240 mod_code_status = probe_kernel_write(mod_code_ip, mod_code_newcode,
241 MCOUNT_INSN_SIZE);
242
243}
244
245void ftrace_nmi_enter(void)
246{
247 atomic_inc(&in_nmi);
248 /* Must have in_nmi seen before reading write flag */
249 smp_mb();
Steven Rostedtb807c3d2008-10-30 16:08:33 -0400250 if (mod_code_write) {
Steven Rostedt17666f02008-10-30 16:08:32 -0400251 ftrace_mod_code();
Steven Rostedtb807c3d2008-10-30 16:08:33 -0400252 atomic_inc(&nmi_update_count);
253 }
Steven Rostedt17666f02008-10-30 16:08:32 -0400254}
255
256void ftrace_nmi_exit(void)
257{
258 /* Finish all executions before clearing in_nmi */
259 smp_wmb();
260 atomic_dec(&in_nmi);
261}
262
263static void wait_for_nmi(void)
264{
Steven Rostedtb807c3d2008-10-30 16:08:33 -0400265 int waited = 0;
266
267 while (atomic_read(&in_nmi)) {
268 waited = 1;
Steven Rostedt17666f02008-10-30 16:08:32 -0400269 cpu_relax();
Steven Rostedtb807c3d2008-10-30 16:08:33 -0400270 }
271
272 if (waited)
273 nmi_wait_count++;
Steven Rostedt17666f02008-10-30 16:08:32 -0400274}
275
276static int
277do_ftrace_mod_code(unsigned long ip, void *new_code)
278{
279 mod_code_ip = (void *)ip;
280 mod_code_newcode = new_code;
281
282 /* The buffers need to be visible before we let NMIs write them */
283 smp_wmb();
284
285 mod_code_write = 1;
286
287 /* Make sure write bit is visible before we wait on NMIs */
288 smp_mb();
289
290 wait_for_nmi();
291
292 /* Make sure all running NMIs have finished before we write the code */
293 smp_mb();
294
295 ftrace_mod_code();
296
297 /* Make sure the write happens before clearing the bit */
298 smp_wmb();
299
300 mod_code_write = 0;
301
302 /* make sure NMIs see the cleared bit */
303 smp_mb();
304
305 wait_for_nmi();
306
307 return mod_code_status;
308}
309
310
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100311
312
313static unsigned char ftrace_nop[MCOUNT_INSN_SIZE];
314
315unsigned char *ftrace_nop_replace(void)
316{
317 return ftrace_nop;
318}
319
Steven Rostedt15adc042008-10-23 09:33:08 -0400320int
Steven Rostedt3d083392008-05-12 21:20:42 +0200321ftrace_modify_code(unsigned long ip, unsigned char *old_code,
322 unsigned char *new_code)
323{
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400324 unsigned char replaced[MCOUNT_INSN_SIZE];
Steven Rostedt3d083392008-05-12 21:20:42 +0200325
326 /*
327 * Note: Due to modules and __init, code can
328 * disappear and change, we need to protect against faulting
Steven Rostedt76aefee2008-10-23 09:33:00 -0400329 * as well as code changing. We do this by using the
Steven Rostedtab9a0912008-10-23 09:33:01 -0400330 * probe_kernel_* functions.
Steven Rostedt3d083392008-05-12 21:20:42 +0200331 *
332 * No real locking needed, this code is run through
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400333 * kstop_machine, or before SMP starts.
Steven Rostedt3d083392008-05-12 21:20:42 +0200334 */
Steven Rostedt76aefee2008-10-23 09:33:00 -0400335
336 /* read the text we want to modify */
Steven Rostedtab9a0912008-10-23 09:33:01 -0400337 if (probe_kernel_read(replaced, (void *)ip, MCOUNT_INSN_SIZE))
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400338 return -EFAULT;
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400339
Steven Rostedt76aefee2008-10-23 09:33:00 -0400340 /* Make sure it is what we expect it to be */
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400341 if (memcmp(replaced, old_code, MCOUNT_INSN_SIZE) != 0)
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400342 return -EINVAL;
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400343
Steven Rostedt76aefee2008-10-23 09:33:00 -0400344 /* replace the text with the new text */
Steven Rostedt17666f02008-10-30 16:08:32 -0400345 if (do_ftrace_mod_code(ip, new_code))
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400346 return -EPERM;
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400347
Steven Rostedt3d083392008-05-12 21:20:42 +0200348 sync_core();
349
Steven Rostedt6f93fc02008-08-20 12:55:07 -0400350 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200351}
352
Steven Rostedt15adc042008-10-23 09:33:08 -0400353int ftrace_update_ftrace_func(ftrace_func_t func)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200354{
355 unsigned long ip = (unsigned long)(&ftrace_call);
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530356 unsigned char old[MCOUNT_INSN_SIZE], *new;
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200357 int ret;
358
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530359 memcpy(old, &ftrace_call, MCOUNT_INSN_SIZE);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200360 new = ftrace_call_replace(ip, (unsigned long)func);
361 ret = ftrace_modify_code(ip, old, new);
362
363 return ret;
364}
365
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200366int __init ftrace_dyn_arch_init(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +0200367{
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400368 extern const unsigned char ftrace_test_p6nop[];
369 extern const unsigned char ftrace_test_nop5[];
370 extern const unsigned char ftrace_test_jmp[];
371 int faulted = 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200372
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400373 /*
374 * There is no good nop for all x86 archs.
375 * We will default to using the P6_NOP5, but first we
376 * will test to make sure that the nop will actually
377 * work on this CPU. If it faults, we will then
378 * go to a lesser efficient 5 byte nop. If that fails
379 * we then just use a jmp as our nop. This isn't the most
380 * efficient nop, but we can not use a multi part nop
381 * since we would then risk being preempted in the middle
382 * of that nop, and if we enabled tracing then, it might
383 * cause a system crash.
384 *
385 * TODO: check the cpuid to determine the best nop.
386 */
387 asm volatile (
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400388 "ftrace_test_jmp:"
389 "jmp ftrace_test_p6nop\n"
Anders Kaseorg8b273862008-10-09 22:19:08 -0400390 "nop\n"
391 "nop\n"
392 "nop\n" /* 2 byte jmp + 3 bytes */
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400393 "ftrace_test_p6nop:"
394 P6_NOP5
395 "jmp 1f\n"
396 "ftrace_test_nop5:"
397 ".byte 0x66,0x66,0x66,0x66,0x90\n"
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400398 "1:"
399 ".section .fixup, \"ax\"\n"
400 "2: movl $1, %0\n"
401 " jmp ftrace_test_nop5\n"
402 "3: movl $2, %0\n"
403 " jmp 1b\n"
404 ".previous\n"
405 _ASM_EXTABLE(ftrace_test_p6nop, 2b)
406 _ASM_EXTABLE(ftrace_test_nop5, 3b)
407 : "=r"(faulted) : "0" (faulted));
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200408
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400409 switch (faulted) {
410 case 0:
411 pr_info("ftrace: converting mcount calls to 0f 1f 44 00 00\n");
Steven Rostedt8115f3f2008-10-24 09:12:17 -0400412 memcpy(ftrace_nop, ftrace_test_p6nop, MCOUNT_INSN_SIZE);
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400413 break;
414 case 1:
415 pr_info("ftrace: converting mcount calls to 66 66 66 66 90\n");
Steven Rostedt8115f3f2008-10-24 09:12:17 -0400416 memcpy(ftrace_nop, ftrace_test_nop5, MCOUNT_INSN_SIZE);
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400417 break;
418 case 2:
Anders Kaseorg8b273862008-10-09 22:19:08 -0400419 pr_info("ftrace: converting mcount calls to jmp . + 5\n");
Steven Rostedt8115f3f2008-10-24 09:12:17 -0400420 memcpy(ftrace_nop, ftrace_test_jmp, MCOUNT_INSN_SIZE);
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400421 break;
422 }
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200423
Steven Rostedt732f3ca2008-08-14 18:05:05 -0400424 /* The return code is retured via data */
425 *(unsigned long *)data = 0;
Steven Rostedtdfa60ab2008-05-12 21:20:43 +0200426
Steven Rostedt3d083392008-05-12 21:20:42 +0200427 return 0;
428}
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100429#endif