blob: ffd56351b5217ddf3ed9cd0657d3f186452b7860 [file] [log] [blame]
Steven Rostedt1b29b012008-05-12 21:20:42 +02001/*
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
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +010010 * Copyright (C) 2004 Nadia Yvette Chambers
Steven Rostedt1b29b012008-05-12 21:20:42 +020011 */
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -050012#include <linux/ring_buffer.h>
Steven Rostedt1b29b012008-05-12 21:20:42 +020013#include <linux/debugfs.h>
14#include <linux/uaccess.h>
15#include <linux/ftrace.h>
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -050016#include <linux/slab.h>
Ingo Molnar2e0f5762008-05-12 21:20:49 +020017#include <linux/fs.h>
Steven Rostedt1b29b012008-05-12 21:20:42 +020018
19#include "trace.h"
20
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -050021static void tracing_start_function_trace(struct trace_array *tr);
22static void tracing_stop_function_trace(struct trace_array *tr);
23static void
24function_trace_call(unsigned long ip, unsigned long parent_ip,
25 struct ftrace_ops *op, struct pt_regs *pt_regs);
26static void
27function_stack_trace_call(unsigned long ip, unsigned long parent_ip,
28 struct ftrace_ops *op, struct pt_regs *pt_regs);
29static struct ftrace_ops trace_ops;
30static struct ftrace_ops trace_stack_ops;
31static struct tracer_flags func_flags;
Steven Rostedta225cdd2009-01-15 23:06:03 -050032
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -050033/* Our option */
34enum {
35 TRACE_FUNC_OPT_STACK = 0x1,
36};
Steven Rostedt53614992009-01-15 19:12:40 -050037
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -050038static int allocate_ftrace_ops(struct trace_array *tr)
39{
40 struct ftrace_ops *ops;
41
42 ops = kzalloc(sizeof(*ops), GFP_KERNEL);
43 if (!ops)
44 return -ENOMEM;
45
46 /* Currently only the non stack verision is supported */
47 ops->func = function_trace_call;
48 ops->flags = FTRACE_OPS_FL_RECURSION_SAFE;
49
50 tr->ops = ops;
51 ops->private = tr;
52 return 0;
53}
Steven Rostedta225cdd2009-01-15 23:06:03 -050054
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -050055
56int ftrace_create_function_files(struct trace_array *tr,
57 struct dentry *parent)
58{
59 int ret;
60
Steven Rostedt (Red Hat)5d6c97c2014-04-16 19:21:53 -040061 /*
62 * The top level array uses the "global_ops", and the files are
63 * created on boot up.
64 */
65 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
66 return 0;
67
68 ret = allocate_ftrace_ops(tr);
69 if (ret)
70 return ret;
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -050071
72 ftrace_create_filter_files(tr->ops, parent);
73
74 return 0;
75}
76
77void ftrace_destroy_function_files(struct trace_array *tr)
78{
79 ftrace_destroy_filter_files(tr->ops);
80 kfree(tr->ops);
81 tr->ops = NULL;
82}
83
Arnaldo Carvalho de Melob6f11df2009-02-05 18:02:00 -020084static int function_trace_init(struct trace_array *tr)
Steven Rostedt1b29b012008-05-12 21:20:42 +020085{
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -050086 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -050087
88 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
89 /* There's only one global tr */
90 if (!trace_ops.private) {
91 trace_ops.private = tr;
92 trace_stack_ops.private = tr;
93 }
94
95 if (func_flags.val & TRACE_FUNC_OPT_STACK)
96 ops = &trace_stack_ops;
97 else
98 ops = &trace_ops;
99 tr->ops = ops;
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500100 } else if (!tr->ops) {
101 /*
102 * Instance trace_arrays get their ops allocated
103 * at instance creation. Unless it failed
104 * the allocation.
105 */
106 return -ENOMEM;
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500107 }
108
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500109 tr->trace_buffer.cpu = get_cpu();
Steven Rostedt26bc83f2008-07-10 20:58:14 -0400110 put_cpu();
111
Steven Rostedt41bc8142008-05-22 11:49:22 -0400112 tracing_start_cmdline_record();
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500113 tracing_start_function_trace(tr);
Frederic Weisbecker1c800252008-11-16 05:57:26 +0100114 return 0;
Steven Rostedt1b29b012008-05-12 21:20:42 +0200115}
116
Ingo Molnare309b412008-05-12 21:20:51 +0200117static void function_trace_reset(struct trace_array *tr)
Steven Rostedt1b29b012008-05-12 21:20:42 +0200118{
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500119 tracing_stop_function_trace(tr);
Arnaldo Carvalho de Melob6f11df2009-02-05 18:02:00 -0200120 tracing_stop_cmdline_record();
Steven Rostedt1b29b012008-05-12 21:20:42 +0200121}
122
Steven Rostedt90369902008-11-05 16:05:44 -0500123static void function_trace_start(struct trace_array *tr)
124{
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500125 tracing_reset_online_cpus(&tr->trace_buffer);
Steven Rostedt90369902008-11-05 16:05:44 -0500126}
127
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500128static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400129function_trace_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400130 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500131{
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500132 struct trace_array *tr = op->private;
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500133 struct trace_array_cpu *data;
134 unsigned long flags;
Steven Rostedtd41032a2013-01-24 07:52:34 -0500135 int bit;
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500136 int cpu;
137 int pc;
138
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500139 if (unlikely(!tr->function_enabled))
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500140 return;
141
Steven Rostedt897f68a2012-11-02 17:52:35 -0400142 pc = preempt_count();
143 preempt_disable_notrace();
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500144
Steven Rostedt897f68a2012-11-02 17:52:35 -0400145 bit = trace_test_and_set_recursion(TRACE_FTRACE_START, TRACE_FTRACE_MAX);
146 if (bit < 0)
147 goto out;
148
149 cpu = smp_processor_id();
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500150 data = per_cpu_ptr(tr->trace_buffer.data, cpu);
Steven Rostedt897f68a2012-11-02 17:52:35 -0400151 if (!atomic_read(&data->disabled)) {
152 local_save_flags(flags);
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -0500153 trace_function(tr, ip, parent_ip, flags, pc);
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500154 }
Steven Rostedt897f68a2012-11-02 17:52:35 -0400155 trace_clear_recursion(bit);
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500156
Steven Rostedt897f68a2012-11-02 17:52:35 -0400157 out:
158 preempt_enable_notrace();
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500159}
160
161static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400162function_stack_trace_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400163 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt53614992009-01-15 19:12:40 -0500164{
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500165 struct trace_array *tr = op->private;
Steven Rostedt53614992009-01-15 19:12:40 -0500166 struct trace_array_cpu *data;
167 unsigned long flags;
168 long disabled;
169 int cpu;
170 int pc;
171
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500172 if (unlikely(!tr->function_enabled))
Steven Rostedt53614992009-01-15 19:12:40 -0500173 return;
174
175 /*
176 * Need to use raw, since this must be called before the
177 * recursive protection is performed.
178 */
179 local_irq_save(flags);
180 cpu = raw_smp_processor_id();
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500181 data = per_cpu_ptr(tr->trace_buffer.data, cpu);
Steven Rostedt53614992009-01-15 19:12:40 -0500182 disabled = atomic_inc_return(&data->disabled);
183
184 if (likely(disabled == 1)) {
185 pc = preempt_count();
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -0500186 trace_function(tr, ip, parent_ip, flags, pc);
Steven Rostedt53614992009-01-15 19:12:40 -0500187 /*
188 * skip over 5 funcs:
189 * __ftrace_trace_stack,
190 * __trace_stack,
191 * function_stack_trace_call
192 * ftrace_list_func
193 * ftrace_call
194 */
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -0500195 __trace_stack(tr, flags, 5, pc);
Steven Rostedt53614992009-01-15 19:12:40 -0500196 }
197
198 atomic_dec(&data->disabled);
199 local_irq_restore(flags);
200}
201
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500202static struct ftrace_ops trace_ops __read_mostly =
203{
204 .func = function_trace_call,
Steven Rostedt47409742012-07-20 11:04:44 -0400205 .flags = FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_RECURSION_SAFE,
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500206};
207
Steven Rostedt53614992009-01-15 19:12:40 -0500208static struct ftrace_ops trace_stack_ops __read_mostly =
209{
210 .func = function_stack_trace_call,
Steven Rostedt47409742012-07-20 11:04:44 -0400211 .flags = FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_RECURSION_SAFE,
Steven Rostedt53614992009-01-15 19:12:40 -0500212};
213
Steven Rostedt53614992009-01-15 19:12:40 -0500214static struct tracer_opt func_opts[] = {
215#ifdef CONFIG_STACKTRACE
216 { TRACER_OPT(func_stack_trace, TRACE_FUNC_OPT_STACK) },
217#endif
218 { } /* Always set a last empty entry */
219};
220
221static struct tracer_flags func_flags = {
222 .val = 0, /* By default: all flags disabled */
223 .opts = func_opts
224};
225
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500226static void tracing_start_function_trace(struct trace_array *tr)
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500227{
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500228 tr->function_enabled = 0;
229 register_ftrace_function(tr->ops);
230 tr->function_enabled = 1;
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500231}
232
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500233static void tracing_stop_function_trace(struct trace_array *tr)
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500234{
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500235 tr->function_enabled = 0;
236 unregister_ftrace_function(tr->ops);
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500237}
238
Steven Rostedt (Red Hat)8c1a49a2014-01-10 11:13:54 -0500239static int
240func_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set)
Steven Rostedt53614992009-01-15 19:12:40 -0500241{
Anton Vorontsovf555f122012-07-09 17:10:46 -0700242 switch (bit) {
243 case TRACE_FUNC_OPT_STACK:
Steven Rostedt53614992009-01-15 19:12:40 -0500244 /* do nothing if already set */
245 if (!!set == !!(func_flags.val & TRACE_FUNC_OPT_STACK))
Anton Vorontsovf555f122012-07-09 17:10:46 -0700246 break;
Steven Rostedt53614992009-01-15 19:12:40 -0500247
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500248 unregister_ftrace_function(tr->ops);
249
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500250 if (set) {
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500251 tr->ops = &trace_stack_ops;
252 register_ftrace_function(tr->ops);
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500253 } else {
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500254 tr->ops = &trace_ops;
255 register_ftrace_function(tr->ops);
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500256 }
Steven Rostedt53614992009-01-15 19:12:40 -0500257
Anton Vorontsovf555f122012-07-09 17:10:46 -0700258 break;
Anton Vorontsovf555f122012-07-09 17:10:46 -0700259 default:
260 return -EINVAL;
Steven Rostedt53614992009-01-15 19:12:40 -0500261 }
262
Anton Vorontsovf555f122012-07-09 17:10:46 -0700263 return 0;
Steven Rostedt53614992009-01-15 19:12:40 -0500264}
265
Steven Rostedt (Red Hat)8f768992013-07-18 14:41:51 -0400266static struct tracer function_trace __tracer_data =
Steven Rostedt1b29b012008-05-12 21:20:42 +0200267{
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500268 .name = "function",
269 .init = function_trace_init,
270 .reset = function_trace_reset,
271 .start = function_trace_start,
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +0100272 .wait_pipe = poll_wait_pipe,
Steven Rostedt53614992009-01-15 19:12:40 -0500273 .flags = &func_flags,
274 .set_flag = func_set_flag,
Steven Rostedt (Red Hat)f20a5802013-11-07 20:08:58 -0500275 .allow_instances = true,
Steven Rostedt60a11772008-05-12 21:20:44 +0200276#ifdef CONFIG_FTRACE_SELFTEST
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500277 .selftest = trace_selftest_startup_function,
Steven Rostedt60a11772008-05-12 21:20:44 +0200278#endif
Steven Rostedt1b29b012008-05-12 21:20:42 +0200279};
280
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500281#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt (Red Hat)1c317142013-03-09 08:36:53 -0500282static int update_count(void **data)
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500283{
Steven Rostedt (Red Hat)1c317142013-03-09 08:36:53 -0500284 unsigned long *count = (long *)data;
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500285
286 if (!*count)
Steven Rostedt (Red Hat)1c317142013-03-09 08:36:53 -0500287 return 0;
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500288
289 if (*count != -1)
290 (*count)--;
291
Steven Rostedt (Red Hat)1c317142013-03-09 08:36:53 -0500292 return 1;
293}
294
295static void
Steven Rostedt (Red Hat)8380d242013-03-09 08:56:43 -0500296ftrace_traceon_count(unsigned long ip, unsigned long parent_ip, void **data)
Steven Rostedt (Red Hat)1c317142013-03-09 08:36:53 -0500297{
298 if (tracing_is_on())
299 return;
300
301 if (update_count(data))
302 tracing_on();
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500303}
304
305static void
Steven Rostedt (Red Hat)8380d242013-03-09 08:56:43 -0500306ftrace_traceoff_count(unsigned long ip, unsigned long parent_ip, void **data)
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500307{
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500308 if (!tracing_is_on())
309 return;
310
Steven Rostedt (Red Hat)1c317142013-03-09 08:36:53 -0500311 if (update_count(data))
312 tracing_off();
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500313}
314
Steven Rostedt (Red Hat)8380d242013-03-09 08:56:43 -0500315static void
316ftrace_traceon(unsigned long ip, unsigned long parent_ip, void **data)
317{
318 if (tracing_is_on())
319 return;
320
321 tracing_on();
322}
323
324static void
325ftrace_traceoff(unsigned long ip, unsigned long parent_ip, void **data)
326{
327 if (!tracing_is_on())
328 return;
329
330 tracing_off();
331}
332
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400333/*
334 * Skip 4:
335 * ftrace_stacktrace()
336 * function_trace_probe_call()
337 * ftrace_ops_list_func()
338 * ftrace_call()
339 */
340#define STACK_SKIP 4
Steven Rostedte110e3d2009-02-16 23:38:13 -0500341
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400342static void
343ftrace_stacktrace(unsigned long ip, unsigned long parent_ip, void **data)
344{
345 trace_dump_stack(STACK_SKIP);
346}
Steven Rostedt (Red Hat)8380d242013-03-09 08:56:43 -0500347
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400348static void
349ftrace_stacktrace_count(unsigned long ip, unsigned long parent_ip, void **data)
350{
351 if (!tracing_is_on())
352 return;
Steven Rostedt (Red Hat)8380d242013-03-09 08:56:43 -0500353
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400354 if (update_count(data))
355 trace_dump_stack(STACK_SKIP);
356}
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500357
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400358static void
359ftrace_dump_probe(unsigned long ip, unsigned long parent_ip, void **data)
360{
361 if (update_count(data))
362 ftrace_dump(DUMP_ALL);
363}
364
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400365/* Only dump the current CPU buffer. */
366static void
367ftrace_cpudump_probe(unsigned long ip, unsigned long parent_ip, void **data)
368{
369 if (update_count(data))
370 ftrace_dump(DUMP_ORIG);
371}
372
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500373static int
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400374ftrace_probe_print(const char *name, struct seq_file *m,
375 unsigned long ip, void *data)
Steven Rostedte110e3d2009-02-16 23:38:13 -0500376{
Steven Rostedte110e3d2009-02-16 23:38:13 -0500377 long count = (long)data;
378
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400379 seq_printf(m, "%ps:%s", (void *)ip, name);
Steven Rostedte110e3d2009-02-16 23:38:13 -0500380
Steven Rostedt35ebf1c2009-02-17 13:12:12 -0500381 if (count == -1)
382 seq_printf(m, ":unlimited\n");
383 else
Li Zefan00e54d02009-06-25 14:05:27 +0800384 seq_printf(m, ":count=%ld\n", count);
Steven Rostedte110e3d2009-02-16 23:38:13 -0500385
386 return 0;
387}
388
389static int
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400390ftrace_traceon_print(struct seq_file *m, unsigned long ip,
391 struct ftrace_probe_ops *ops, void *data)
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500392{
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400393 return ftrace_probe_print("traceon", m, ip, data);
394}
395
396static int
397ftrace_traceoff_print(struct seq_file *m, unsigned long ip,
398 struct ftrace_probe_ops *ops, void *data)
399{
400 return ftrace_probe_print("traceoff", m, ip, data);
401}
402
403static int
404ftrace_stacktrace_print(struct seq_file *m, unsigned long ip,
405 struct ftrace_probe_ops *ops, void *data)
406{
407 return ftrace_probe_print("stacktrace", m, ip, data);
408}
409
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400410static int
411ftrace_dump_print(struct seq_file *m, unsigned long ip,
412 struct ftrace_probe_ops *ops, void *data)
413{
414 return ftrace_probe_print("dump", m, ip, data);
415}
416
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400417static int
418ftrace_cpudump_print(struct seq_file *m, unsigned long ip,
419 struct ftrace_probe_ops *ops, void *data)
420{
421 return ftrace_probe_print("cpudump", m, ip, data);
422}
423
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400424static struct ftrace_probe_ops traceon_count_probe_ops = {
425 .func = ftrace_traceon_count,
426 .print = ftrace_traceon_print,
427};
428
429static struct ftrace_probe_ops traceoff_count_probe_ops = {
430 .func = ftrace_traceoff_count,
431 .print = ftrace_traceoff_print,
432};
433
434static struct ftrace_probe_ops stacktrace_count_probe_ops = {
435 .func = ftrace_stacktrace_count,
436 .print = ftrace_stacktrace_print,
437};
438
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400439static struct ftrace_probe_ops dump_probe_ops = {
440 .func = ftrace_dump_probe,
441 .print = ftrace_dump_print,
442};
443
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400444static struct ftrace_probe_ops cpudump_probe_ops = {
445 .func = ftrace_cpudump_probe,
446 .print = ftrace_cpudump_print,
447};
448
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400449static struct ftrace_probe_ops traceon_probe_ops = {
450 .func = ftrace_traceon,
451 .print = ftrace_traceon_print,
452};
453
454static struct ftrace_probe_ops traceoff_probe_ops = {
455 .func = ftrace_traceoff,
456 .print = ftrace_traceoff_print,
457};
458
459static struct ftrace_probe_ops stacktrace_probe_ops = {
460 .func = ftrace_stacktrace,
461 .print = ftrace_stacktrace_print,
462};
463
464static int
465ftrace_trace_probe_callback(struct ftrace_probe_ops *ops,
466 struct ftrace_hash *hash, char *glob,
467 char *cmd, char *param, int enable)
468{
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500469 void *count = (void *)-1;
470 char *number;
471 int ret;
472
473 /* hash funcs only work with set_ftrace_filter */
474 if (!enable)
475 return -EINVAL;
476
Steven Rostedt (Red Hat)8b8fa622013-03-12 09:25:00 -0400477 if (glob[0] == '!') {
478 unregister_ftrace_function_probe_func(glob+1, ops);
479 return 0;
480 }
481
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500482 if (!param)
483 goto out_reg;
484
485 number = strsep(&param, ":");
486
487 if (!strlen(number))
488 goto out_reg;
489
490 /*
491 * We use the callback data field (which is a pointer)
492 * as our counter.
493 */
Daniel Walterbcd83ea2012-09-26 22:08:38 +0200494 ret = kstrtoul(number, 0, (unsigned long *)&count);
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500495 if (ret)
496 return ret;
497
498 out_reg:
Steven Rostedtb6887d72009-02-17 12:32:04 -0500499 ret = register_ftrace_function_probe(glob, ops, count);
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500500
Xiao Guangrong04aef322009-07-15 12:29:06 +0800501 return ret < 0 ? ret : 0;
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500502}
503
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400504static int
505ftrace_trace_onoff_callback(struct ftrace_hash *hash,
506 char *glob, char *cmd, char *param, int enable)
507{
508 struct ftrace_probe_ops *ops;
509
510 /* we register both traceon and traceoff to this callback */
511 if (strcmp(cmd, "traceon") == 0)
512 ops = param ? &traceon_count_probe_ops : &traceon_probe_ops;
513 else
514 ops = param ? &traceoff_count_probe_ops : &traceoff_probe_ops;
515
516 return ftrace_trace_probe_callback(ops, hash, glob, cmd,
517 param, enable);
518}
519
520static int
521ftrace_stacktrace_callback(struct ftrace_hash *hash,
522 char *glob, char *cmd, char *param, int enable)
523{
524 struct ftrace_probe_ops *ops;
525
526 ops = param ? &stacktrace_count_probe_ops : &stacktrace_probe_ops;
527
528 return ftrace_trace_probe_callback(ops, hash, glob, cmd,
529 param, enable);
530}
531
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400532static int
533ftrace_dump_callback(struct ftrace_hash *hash,
534 char *glob, char *cmd, char *param, int enable)
535{
536 struct ftrace_probe_ops *ops;
537
538 ops = &dump_probe_ops;
539
540 /* Only dump once. */
541 return ftrace_trace_probe_callback(ops, hash, glob, cmd,
542 "1", enable);
543}
544
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400545static int
546ftrace_cpudump_callback(struct ftrace_hash *hash,
547 char *glob, char *cmd, char *param, int enable)
548{
549 struct ftrace_probe_ops *ops;
550
551 ops = &cpudump_probe_ops;
552
553 /* Only dump once. */
554 return ftrace_trace_probe_callback(ops, hash, glob, cmd,
555 "1", enable);
556}
557
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500558static struct ftrace_func_command ftrace_traceon_cmd = {
559 .name = "traceon",
560 .func = ftrace_trace_onoff_callback,
561};
562
563static struct ftrace_func_command ftrace_traceoff_cmd = {
564 .name = "traceoff",
565 .func = ftrace_trace_onoff_callback,
566};
567
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400568static struct ftrace_func_command ftrace_stacktrace_cmd = {
569 .name = "stacktrace",
570 .func = ftrace_stacktrace_callback,
571};
572
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400573static struct ftrace_func_command ftrace_dump_cmd = {
574 .name = "dump",
575 .func = ftrace_dump_callback,
576};
577
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400578static struct ftrace_func_command ftrace_cpudump_cmd = {
579 .name = "cpudump",
580 .func = ftrace_cpudump_callback,
581};
582
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500583static int __init init_func_cmd_traceon(void)
584{
585 int ret;
586
587 ret = register_ftrace_command(&ftrace_traceoff_cmd);
588 if (ret)
589 return ret;
590
591 ret = register_ftrace_command(&ftrace_traceon_cmd);
592 if (ret)
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400593 goto out_free_traceoff;
Steven Rostedt (Red Hat)dd42cd32013-03-13 10:17:50 -0400594
595 ret = register_ftrace_command(&ftrace_stacktrace_cmd);
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400596 if (ret)
597 goto out_free_traceon;
598
599 ret = register_ftrace_command(&ftrace_dump_cmd);
600 if (ret)
601 goto out_free_stacktrace;
602
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400603 ret = register_ftrace_command(&ftrace_cpudump_cmd);
604 if (ret)
605 goto out_free_dump;
606
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400607 return 0;
608
Steven Rostedt (Red Hat)90e3c032013-04-30 19:00:46 -0400609 out_free_dump:
610 unregister_ftrace_command(&ftrace_dump_cmd);
Steven Rostedt (Red Hat)ad71d882013-04-30 15:46:14 -0400611 out_free_stacktrace:
612 unregister_ftrace_command(&ftrace_stacktrace_cmd);
613 out_free_traceon:
614 unregister_ftrace_command(&ftrace_traceon_cmd);
615 out_free_traceoff:
616 unregister_ftrace_command(&ftrace_traceoff_cmd);
617
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500618 return ret;
619}
620#else
621static inline int init_func_cmd_traceon(void)
622{
623 return 0;
624}
625#endif /* CONFIG_DYNAMIC_FTRACE */
626
Steven Rostedt1b29b012008-05-12 21:20:42 +0200627static __init int init_function_trace(void)
628{
Steven Rostedt23b4ff3a2009-02-14 19:04:24 -0500629 init_func_cmd_traceon();
Steven Rostedt1b29b012008-05-12 21:20:42 +0200630 return register_tracer(&function_trace);
631}
Steven Rostedt6f415672012-10-05 12:13:07 -0400632core_initcall(init_function_trace);