sched/core: Fix an SMP ordering race in try_to_wake_up() vs. schedule()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / trace / trace_functions.c
CommitLineData
1b29b018
SR
1/*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Based on code from the latency_tracer, that is:
8 *
9 * Copyright (C) 2004-2006 Ingo Molnar
6d49e352 10 * Copyright (C) 2004 Nadia Yvette Chambers
1b29b018 11 */
23b4ff3a 12#include <linux/ring_buffer.h>
1b29b018
SR
13#include <linux/debugfs.h>
14#include <linux/uaccess.h>
15#include <linux/ftrace.h>
2e0f5761 16#include <linux/fs.h>
1b29b018
SR
17
18#include "trace.h"
19
a225cdd2
SR
20/* function tracing enabled */
21static int ftrace_function_enabled;
22
53614991
SR
23static struct trace_array *func_trace;
24
a225cdd2
SR
25static void tracing_start_function_trace(void);
26static void tracing_stop_function_trace(void);
27
b6f11df2 28static int function_trace_init(struct trace_array *tr)
1b29b018 29{
bb3c3c95 30 func_trace = tr;
12883efb 31 tr->trace_buffer.cpu = get_cpu();
26bc83f4
SR
32 put_cpu();
33
41bc8144 34 tracing_start_cmdline_record();
1b29b018 35 tracing_start_function_trace();
1c80025a 36 return 0;
1b29b018
SR
37}
38
e309b41d 39static void function_trace_reset(struct trace_array *tr)
1b29b018 40{
b6f11df2
ACM
41 tracing_stop_function_trace();
42 tracing_stop_cmdline_record();
1b29b018
SR
43}
44
9036990d
SR
45static void function_trace_start(struct trace_array *tr)
46{
12883efb 47 tracing_reset_online_cpus(&tr->trace_buffer);
9036990d
SR
48}
49
65f8c95e 50/* Our option */
21f67940
AV
51enum {
52 TRACE_FUNC_OPT_STACK = 0x1,
21f67940
AV
53};
54
55static struct tracer_flags func_flags;
56
bb3c3c95 57static void
2f5f6ad9 58function_trace_call(unsigned long ip, unsigned long parent_ip,
a1e2e31d 59 struct ftrace_ops *op, struct pt_regs *pt_regs)
bb3c3c95
SR
60{
61 struct trace_array *tr = func_trace;
62 struct trace_array_cpu *data;
63 unsigned long flags;
d41032a8 64 int bit;
bb3c3c95
SR
65 int cpu;
66 int pc;
67
68 if (unlikely(!ftrace_function_enabled))
69 return;
70
897f68a4
SR
71 pc = preempt_count();
72 preempt_disable_notrace();
bb3c3c95 73
897f68a4
SR
74 bit = trace_test_and_set_recursion(TRACE_FTRACE_START, TRACE_FTRACE_MAX);
75 if (bit < 0)
76 goto out;
77
78 cpu = smp_processor_id();
12883efb 79 data = per_cpu_ptr(tr->trace_buffer.data, cpu);
897f68a4
SR
80 if (!atomic_read(&data->disabled)) {
81 local_save_flags(flags);
7be42151 82 trace_function(tr, ip, parent_ip, flags, pc);
bb3c3c95 83 }
897f68a4 84 trace_clear_recursion(bit);
bb3c3c95 85
897f68a4
SR
86 out:
87 preempt_enable_notrace();
bb3c3c95
SR
88}
89
53614991 90static void
2f5f6ad9 91function_stack_trace_call(unsigned long ip, unsigned long parent_ip,
a1e2e31d 92 struct ftrace_ops *op, struct pt_regs *pt_regs)
53614991
SR
93{
94 struct trace_array *tr = func_trace;
95 struct trace_array_cpu *data;
96 unsigned long flags;
97 long disabled;
98 int cpu;
99 int pc;
100
101 if (unlikely(!ftrace_function_enabled))
102 return;
103
104 /*
105 * Need to use raw, since this must be called before the
106 * recursive protection is performed.
107 */
108 local_irq_save(flags);
109 cpu = raw_smp_processor_id();
12883efb 110 data = per_cpu_ptr(tr->trace_buffer.data, cpu);
53614991
SR
111 disabled = atomic_inc_return(&data->disabled);
112
113 if (likely(disabled == 1)) {
114 pc = preempt_count();
7be42151 115 trace_function(tr, ip, parent_ip, flags, pc);
53614991
SR
116 /*
117 * skip over 5 funcs:
118 * __ftrace_trace_stack,
119 * __trace_stack,
120 * function_stack_trace_call
121 * ftrace_list_func
122 * ftrace_call
123 */
7be42151 124 __trace_stack(tr, flags, 5, pc);
53614991
SR
125 }
126
127 atomic_dec(&data->disabled);
128 local_irq_restore(flags);
129}
130
bb3c3c95
SR
131
132static struct ftrace_ops trace_ops __read_mostly =
133{
134 .func = function_trace_call,
4740974a 135 .flags = FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_RECURSION_SAFE,
bb3c3c95
SR
136};
137
53614991
SR
138static struct ftrace_ops trace_stack_ops __read_mostly =
139{
140 .func = function_stack_trace_call,
4740974a 141 .flags = FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_RECURSION_SAFE,
53614991
SR
142};
143
53614991
SR
144static struct tracer_opt func_opts[] = {
145#ifdef CONFIG_STACKTRACE
146 { TRACER_OPT(func_stack_trace, TRACE_FUNC_OPT_STACK) },
147#endif
148 { } /* Always set a last empty entry */
149};
150
151static struct tracer_flags func_flags = {
152 .val = 0, /* By default: all flags disabled */
153 .opts = func_opts
154};
155
a225cdd2 156static void tracing_start_function_trace(void)
3eb36aa0
SR
157{
158 ftrace_function_enabled = 0;
159
3eb36aa0
SR
160 if (func_flags.val & TRACE_FUNC_OPT_STACK)
161 register_ftrace_function(&trace_stack_ops);
162 else
163 register_ftrace_function(&trace_ops);
164
165 ftrace_function_enabled = 1;
166}
167
a225cdd2 168static void tracing_stop_function_trace(void)
3eb36aa0
SR
169{
170 ftrace_function_enabled = 0;
c85a17e2
FW
171
172 if (func_flags.val & TRACE_FUNC_OPT_STACK)
173 unregister_ftrace_function(&trace_stack_ops);
174 else
175 unregister_ftrace_function(&trace_ops);
3eb36aa0
SR
176}
177
53614991
SR
178static int func_set_flag(u32 old_flags, u32 bit, int set)
179{
f555f123
AV
180 switch (bit) {
181 case TRACE_FUNC_OPT_STACK:
53614991
SR
182 /* do nothing if already set */
183 if (!!set == !!(func_flags.val & TRACE_FUNC_OPT_STACK))
f555f123 184 break;
53614991 185
3eb36aa0
SR
186 if (set) {
187 unregister_ftrace_function(&trace_ops);
53614991 188 register_ftrace_function(&trace_stack_ops);
3eb36aa0 189 } else {
53614991 190 unregister_ftrace_function(&trace_stack_ops);
3eb36aa0
SR
191 register_ftrace_function(&trace_ops);
192 }
53614991 193
f555f123
AV
194 break;
195 default:
196 return -EINVAL;
53614991
SR
197 }
198
f555f123 199 return 0;
53614991
SR
200}
201
1b29b018
SR
202static struct tracer function_trace __read_mostly =
203{
3eb36aa0
SR
204 .name = "function",
205 .init = function_trace_init,
206 .reset = function_trace_reset,
207 .start = function_trace_start,
6eaaa5d5 208 .wait_pipe = poll_wait_pipe,
53614991
SR
209 .flags = &func_flags,
210 .set_flag = func_set_flag,
60a11774 211#ifdef CONFIG_FTRACE_SELFTEST
3eb36aa0 212 .selftest = trace_selftest_startup_function,
60a11774 213#endif
1b29b018
SR
214};
215
23b4ff3a 216#ifdef CONFIG_DYNAMIC_FTRACE
1c317143 217static int update_count(void **data)
23b4ff3a 218{
1c317143 219 unsigned long *count = (long *)data;
23b4ff3a
SR
220
221 if (!*count)
1c317143 222 return 0;
23b4ff3a
SR
223
224 if (*count != -1)
225 (*count)--;
226
1c317143 227 return 1;
23b4ff3a
SR
228}
229
230static void
8380d248 231ftrace_traceon_count(unsigned long ip, unsigned long parent_ip, void **data)
23b4ff3a 232{
1c317143 233 if (tracing_is_on())
23b4ff3a
SR
234 return;
235
1c317143
SRRH
236 if (update_count(data))
237 tracing_on();
238}
23b4ff3a 239
1c317143 240static void
8380d248 241ftrace_traceoff_count(unsigned long ip, unsigned long parent_ip, void **data)
1c317143
SRRH
242{
243 if (!tracing_is_on())
244 return;
23b4ff3a 245
1c317143
SRRH
246 if (update_count(data))
247 tracing_off();
23b4ff3a
SR
248}
249
8380d248
SRRH
250static void
251ftrace_traceon(unsigned long ip, unsigned long parent_ip, void **data)
252{
253 if (tracing_is_on())
254 return;
255
256 tracing_on();
257}
258
259static void
260ftrace_traceoff(unsigned long ip, unsigned long parent_ip, void **data)
261{
262 if (!tracing_is_on())
263 return;
264
265 tracing_off();
266}
267
dd42cd3e
SRRH
268/*
269 * Skip 4:
270 * ftrace_stacktrace()
271 * function_trace_probe_call()
272 * ftrace_ops_list_func()
273 * ftrace_call()
274 */
275#define STACK_SKIP 4
276
277static void
278ftrace_stacktrace(unsigned long ip, unsigned long parent_ip, void **data)
279{
280 trace_dump_stack(STACK_SKIP);
281}
282
283static void
284ftrace_stacktrace_count(unsigned long ip, unsigned long parent_ip, void **data)
285{
286 if (!tracing_is_on())
287 return;
288
289 if (update_count(data))
290 trace_dump_stack(STACK_SKIP);
291}
292
e110e3d1 293static int
dd42cd3e
SRRH
294ftrace_probe_print(const char *name, struct seq_file *m,
295 unsigned long ip, void *data)
296{
297 long count = (long)data;
298
299 seq_printf(m, "%ps:%s", (void *)ip, name);
300
301 if (count == -1)
302 seq_printf(m, ":unlimited\n");
303 else
304 seq_printf(m, ":count=%ld\n", count);
305
306 return 0;
307}
308
309static int
310ftrace_traceon_print(struct seq_file *m, unsigned long ip,
311 struct ftrace_probe_ops *ops, void *data)
312{
313 return ftrace_probe_print("traceon", m, ip, data);
314}
315
316static int
317ftrace_traceoff_print(struct seq_file *m, unsigned long ip,
318 struct ftrace_probe_ops *ops, void *data)
319{
320 return ftrace_probe_print("traceoff", m, ip, data);
321}
322
323static int
324ftrace_stacktrace_print(struct seq_file *m, unsigned long ip,
325 struct ftrace_probe_ops *ops, void *data)
326{
327 return ftrace_probe_print("stacktrace", m, ip, data);
328}
e110e3d1 329
8380d248
SRRH
330static struct ftrace_probe_ops traceon_count_probe_ops = {
331 .func = ftrace_traceon_count,
dd42cd3e 332 .print = ftrace_traceon_print,
8380d248
SRRH
333};
334
335static struct ftrace_probe_ops traceoff_count_probe_ops = {
336 .func = ftrace_traceoff_count,
dd42cd3e
SRRH
337 .print = ftrace_traceoff_print,
338};
339
340static struct ftrace_probe_ops stacktrace_count_probe_ops = {
341 .func = ftrace_stacktrace_count,
342 .print = ftrace_stacktrace_print,
8380d248
SRRH
343};
344
b6887d79 345static struct ftrace_probe_ops traceon_probe_ops = {
23b4ff3a 346 .func = ftrace_traceon,
dd42cd3e 347 .print = ftrace_traceon_print,
23b4ff3a
SR
348};
349
b6887d79 350static struct ftrace_probe_ops traceoff_probe_ops = {
23b4ff3a 351 .func = ftrace_traceoff,
dd42cd3e 352 .print = ftrace_traceoff_print,
23b4ff3a
SR
353};
354
dd42cd3e
SRRH
355static struct ftrace_probe_ops stacktrace_probe_ops = {
356 .func = ftrace_stacktrace,
357 .print = ftrace_stacktrace_print,
358};
e110e3d1 359
23b4ff3a 360static int
dd42cd3e
SRRH
361ftrace_trace_probe_callback(struct ftrace_probe_ops *ops,
362 struct ftrace_hash *hash, char *glob,
363 char *cmd, char *param, int enable)
23b4ff3a 364{
23b4ff3a
SR
365 void *count = (void *)-1;
366 char *number;
367 int ret;
368
369 /* hash funcs only work with set_ftrace_filter */
370 if (!enable)
371 return -EINVAL;
372
8b8fa62c
SRRH
373 if (glob[0] == '!') {
374 unregister_ftrace_function_probe_func(glob+1, ops);
375 return 0;
376 }
377
23b4ff3a
SR
378 if (!param)
379 goto out_reg;
380
381 number = strsep(&param, ":");
382
383 if (!strlen(number))
384 goto out_reg;
385
386 /*
387 * We use the callback data field (which is a pointer)
388 * as our counter.
389 */
bcd83ea6 390 ret = kstrtoul(number, 0, (unsigned long *)&count);
23b4ff3a
SR
391 if (ret)
392 return ret;
393
394 out_reg:
b6887d79 395 ret = register_ftrace_function_probe(glob, ops, count);
23b4ff3a 396
04aef32d 397 return ret < 0 ? ret : 0;
23b4ff3a
SR
398}
399
dd42cd3e
SRRH
400static int
401ftrace_trace_onoff_callback(struct ftrace_hash *hash,
402 char *glob, char *cmd, char *param, int enable)
403{
404 struct ftrace_probe_ops *ops;
405
406 /* we register both traceon and traceoff to this callback */
407 if (strcmp(cmd, "traceon") == 0)
408 ops = param ? &traceon_count_probe_ops : &traceon_probe_ops;
409 else
410 ops = param ? &traceoff_count_probe_ops : &traceoff_probe_ops;
411
412 return ftrace_trace_probe_callback(ops, hash, glob, cmd,
413 param, enable);
414}
415
416static int
417ftrace_stacktrace_callback(struct ftrace_hash *hash,
418 char *glob, char *cmd, char *param, int enable)
419{
420 struct ftrace_probe_ops *ops;
421
422 ops = param ? &stacktrace_count_probe_ops : &stacktrace_probe_ops;
423
424 return ftrace_trace_probe_callback(ops, hash, glob, cmd,
425 param, enable);
426}
427
23b4ff3a
SR
428static struct ftrace_func_command ftrace_traceon_cmd = {
429 .name = "traceon",
430 .func = ftrace_trace_onoff_callback,
431};
432
433static struct ftrace_func_command ftrace_traceoff_cmd = {
434 .name = "traceoff",
435 .func = ftrace_trace_onoff_callback,
436};
437
dd42cd3e
SRRH
438static struct ftrace_func_command ftrace_stacktrace_cmd = {
439 .name = "stacktrace",
440 .func = ftrace_stacktrace_callback,
441};
442
23b4ff3a
SR
443static int __init init_func_cmd_traceon(void)
444{
445 int ret;
446
447 ret = register_ftrace_command(&ftrace_traceoff_cmd);
448 if (ret)
449 return ret;
450
451 ret = register_ftrace_command(&ftrace_traceon_cmd);
452 if (ret)
453 unregister_ftrace_command(&ftrace_traceoff_cmd);
dd42cd3e
SRRH
454
455 ret = register_ftrace_command(&ftrace_stacktrace_cmd);
456 if (ret) {
457 unregister_ftrace_command(&ftrace_traceoff_cmd);
458 unregister_ftrace_command(&ftrace_traceon_cmd);
459 }
23b4ff3a
SR
460 return ret;
461}
462#else
463static inline int init_func_cmd_traceon(void)
464{
465 return 0;
466}
467#endif /* CONFIG_DYNAMIC_FTRACE */
468
1b29b018
SR
469static __init int init_function_trace(void)
470{
23b4ff3a 471 init_func_cmd_traceon();
1b29b018
SR
472 return register_tracer(&function_trace);
473}
6f415672 474core_initcall(init_function_trace);