]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/trace/ftrace.c
ftrace: Remove FTRACE_FL_CONVERTED flag
[mirror_ubuntu-bionic-kernel.git] / kernel / trace / ftrace.c
CommitLineData
16444a8a
ACM
1/*
2 * Infrastructure for profiling code inserted by 'gcc -pg'.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally ported from the -rt patch by:
8 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code in the latency_tracer, that is:
11 *
12 * Copyright (C) 2004-2006 Ingo Molnar
13 * Copyright (C) 2004 William Lee Irwin III
14 */
15
3d083395
SR
16#include <linux/stop_machine.h>
17#include <linux/clocksource.h>
18#include <linux/kallsyms.h>
5072c59f 19#include <linux/seq_file.h>
4a2b8dda 20#include <linux/suspend.h>
5072c59f 21#include <linux/debugfs.h>
3d083395 22#include <linux/hardirq.h>
2d8b820b 23#include <linux/kthread.h>
5072c59f 24#include <linux/uaccess.h>
2d8b820b 25#include <linux/ftrace.h>
b0fc494f 26#include <linux/sysctl.h>
5a0e3ad6 27#include <linux/slab.h>
5072c59f 28#include <linux/ctype.h>
3d083395 29#include <linux/list.h>
59df055f 30#include <linux/hash.h>
3f379b03 31#include <linux/rcupdate.h>
3d083395 32
ad8d75ff 33#include <trace/events/sched.h>
8aef2d28 34
395a59d0 35#include <asm/ftrace.h>
2af15d6a 36#include <asm/setup.h>
395a59d0 37
0706f1c4 38#include "trace_output.h"
bac429f0 39#include "trace_stat.h"
16444a8a 40
6912896e 41#define FTRACE_WARN_ON(cond) \
0778d9ad
SR
42 ({ \
43 int ___r = cond; \
44 if (WARN_ON(___r)) \
6912896e 45 ftrace_kill(); \
0778d9ad
SR
46 ___r; \
47 })
6912896e
SR
48
49#define FTRACE_WARN_ON_ONCE(cond) \
0778d9ad
SR
50 ({ \
51 int ___r = cond; \
52 if (WARN_ON_ONCE(___r)) \
6912896e 53 ftrace_kill(); \
0778d9ad
SR
54 ___r; \
55 })
6912896e 56
8fc0c701
SR
57/* hash bits for specific function selection */
58#define FTRACE_HASH_BITS 7
59#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
60
4eebcc81
SR
61/* ftrace_enabled is a method to turn ftrace on or off */
62int ftrace_enabled __read_mostly;
d61f82d0 63static int last_ftrace_enabled;
b0fc494f 64
60a7ecf4
SR
65/* Quick disabling of function tracer. */
66int function_trace_stop;
67
756d17ee 68/* List for set_ftrace_pid's pids. */
69LIST_HEAD(ftrace_pids);
70struct ftrace_pid {
71 struct list_head list;
72 struct pid *pid;
73};
74
4eebcc81
SR
75/*
76 * ftrace_disabled is set when an anomaly is discovered.
77 * ftrace_disabled is much stronger than ftrace_enabled.
78 */
79static int ftrace_disabled __read_mostly;
80
52baf119 81static DEFINE_MUTEX(ftrace_lock);
b0fc494f 82
16444a8a
ACM
83static struct ftrace_ops ftrace_list_end __read_mostly =
84{
fb9fb015 85 .func = ftrace_stub,
16444a8a
ACM
86};
87
88static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
89ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
60a7ecf4 90ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
df4fc315 91ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
16444a8a 92
3f379b03
PM
93/*
94 * Traverse the ftrace_list, invoking all entries. The reason that we
95 * can use rcu_dereference_raw() is that elements removed from this list
96 * are simply leaked, so there is no need to interact with a grace-period
97 * mechanism. The rcu_dereference_raw() calls are needed to handle
98 * concurrent insertions into the ftrace_list.
99 *
100 * Silly Alpha and silly pointer-speculation compiler optimizations!
101 */
f2252935 102static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
16444a8a 103{
3f379b03 104 struct ftrace_ops *op = rcu_dereference_raw(ftrace_list); /*see above*/
16444a8a
ACM
105
106 while (op != &ftrace_list_end) {
16444a8a 107 op->func(ip, parent_ip);
3f379b03 108 op = rcu_dereference_raw(op->next); /*see above*/
16444a8a
ACM
109 };
110}
111
df4fc315
SR
112static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
113{
0ef8cde5 114 if (!test_tsk_trace_trace(current))
df4fc315
SR
115 return;
116
117 ftrace_pid_function(ip, parent_ip);
118}
119
120static void set_ftrace_pid_function(ftrace_func_t func)
121{
122 /* do not set ftrace_pid_function to itself! */
123 if (func != ftrace_pid_func)
124 ftrace_pid_function = func;
125}
126
16444a8a 127/**
3d083395 128 * clear_ftrace_function - reset the ftrace function
16444a8a 129 *
3d083395
SR
130 * This NULLs the ftrace function and in essence stops
131 * tracing. There may be lag
16444a8a 132 */
3d083395 133void clear_ftrace_function(void)
16444a8a 134{
3d083395 135 ftrace_trace_function = ftrace_stub;
60a7ecf4 136 __ftrace_trace_function = ftrace_stub;
df4fc315 137 ftrace_pid_function = ftrace_stub;
3d083395
SR
138}
139
60a7ecf4
SR
140#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
141/*
142 * For those archs that do not test ftrace_trace_stop in their
143 * mcount call site, we need to do it from C.
144 */
145static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
146{
147 if (function_trace_stop)
148 return;
149
150 __ftrace_trace_function(ip, parent_ip);
151}
152#endif
153
e309b41d 154static int __register_ftrace_function(struct ftrace_ops *ops)
3d083395 155{
16444a8a
ACM
156 ops->next = ftrace_list;
157 /*
158 * We are entering ops into the ftrace_list but another
159 * CPU might be walking that list. We need to make sure
160 * the ops->next pointer is valid before another CPU sees
161 * the ops pointer included into the ftrace_list.
162 */
3f379b03 163 rcu_assign_pointer(ftrace_list, ops);
3d083395 164
b0fc494f 165 if (ftrace_enabled) {
df4fc315
SR
166 ftrace_func_t func;
167
168 if (ops->next == &ftrace_list_end)
169 func = ops->func;
170 else
171 func = ftrace_list_func;
172
756d17ee 173 if (!list_empty(&ftrace_pids)) {
df4fc315
SR
174 set_ftrace_pid_function(func);
175 func = ftrace_pid_func;
176 }
177
b0fc494f
SR
178 /*
179 * For one func, simply call it directly.
180 * For more than one func, call the chain.
181 */
60a7ecf4 182#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
df4fc315 183 ftrace_trace_function = func;
60a7ecf4 184#else
df4fc315 185 __ftrace_trace_function = func;
60a7ecf4
SR
186 ftrace_trace_function = ftrace_test_stop_func;
187#endif
b0fc494f 188 }
3d083395 189
16444a8a
ACM
190 return 0;
191}
192
e309b41d 193static int __unregister_ftrace_function(struct ftrace_ops *ops)
16444a8a 194{
16444a8a 195 struct ftrace_ops **p;
16444a8a
ACM
196
197 /*
3d083395
SR
198 * If we are removing the last function, then simply point
199 * to the ftrace_stub.
16444a8a
ACM
200 */
201 if (ftrace_list == ops && ops->next == &ftrace_list_end) {
202 ftrace_trace_function = ftrace_stub;
203 ftrace_list = &ftrace_list_end;
e6ea44e9 204 return 0;
16444a8a
ACM
205 }
206
207 for (p = &ftrace_list; *p != &ftrace_list_end; p = &(*p)->next)
208 if (*p == ops)
209 break;
210
e6ea44e9
SR
211 if (*p != ops)
212 return -1;
16444a8a
ACM
213
214 *p = (*p)->next;
215
b0fc494f
SR
216 if (ftrace_enabled) {
217 /* If we only have one func left, then call that directly */
df4fc315
SR
218 if (ftrace_list->next == &ftrace_list_end) {
219 ftrace_func_t func = ftrace_list->func;
220
756d17ee 221 if (!list_empty(&ftrace_pids)) {
df4fc315
SR
222 set_ftrace_pid_function(func);
223 func = ftrace_pid_func;
224 }
225#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
226 ftrace_trace_function = func;
227#else
228 __ftrace_trace_function = func;
229#endif
230 }
b0fc494f 231 }
16444a8a 232
e6ea44e9 233 return 0;
3d083395
SR
234}
235
df4fc315
SR
236static void ftrace_update_pid_func(void)
237{
238 ftrace_func_t func;
239
df4fc315 240 if (ftrace_trace_function == ftrace_stub)
10dd3ebe 241 return;
df4fc315 242
33974093 243#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
df4fc315 244 func = ftrace_trace_function;
33974093
MF
245#else
246 func = __ftrace_trace_function;
247#endif
df4fc315 248
756d17ee 249 if (!list_empty(&ftrace_pids)) {
df4fc315
SR
250 set_ftrace_pid_function(func);
251 func = ftrace_pid_func;
252 } else {
66eafebc
LW
253 if (func == ftrace_pid_func)
254 func = ftrace_pid_function;
df4fc315
SR
255 }
256
257#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
258 ftrace_trace_function = func;
259#else
260 __ftrace_trace_function = func;
261#endif
df4fc315
SR
262}
263
493762fc
SR
264#ifdef CONFIG_FUNCTION_PROFILER
265struct ftrace_profile {
266 struct hlist_node node;
267 unsigned long ip;
268 unsigned long counter;
0706f1c4
SR
269#ifdef CONFIG_FUNCTION_GRAPH_TRACER
270 unsigned long long time;
e330b3bc 271 unsigned long long time_squared;
0706f1c4 272#endif
8fc0c701
SR
273};
274
493762fc
SR
275struct ftrace_profile_page {
276 struct ftrace_profile_page *next;
277 unsigned long index;
278 struct ftrace_profile records[];
d61f82d0
SR
279};
280
cafb168a
SR
281struct ftrace_profile_stat {
282 atomic_t disabled;
283 struct hlist_head *hash;
284 struct ftrace_profile_page *pages;
285 struct ftrace_profile_page *start;
286 struct tracer_stat stat;
287};
288
493762fc
SR
289#define PROFILE_RECORDS_SIZE \
290 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
5072c59f 291
493762fc
SR
292#define PROFILES_PER_PAGE \
293 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
3d083395 294
fb9fb015
SR
295static int ftrace_profile_bits __read_mostly;
296static int ftrace_profile_enabled __read_mostly;
297
298/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
bac429f0
SR
299static DEFINE_MUTEX(ftrace_profile_lock);
300
cafb168a 301static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
493762fc
SR
302
303#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
304
bac429f0
SR
305static void *
306function_stat_next(void *v, int idx)
307{
493762fc
SR
308 struct ftrace_profile *rec = v;
309 struct ftrace_profile_page *pg;
bac429f0 310
493762fc 311 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
bac429f0
SR
312
313 again:
0296e425
LZ
314 if (idx != 0)
315 rec++;
316
bac429f0
SR
317 if ((void *)rec >= (void *)&pg->records[pg->index]) {
318 pg = pg->next;
319 if (!pg)
320 return NULL;
321 rec = &pg->records[0];
493762fc
SR
322 if (!rec->counter)
323 goto again;
bac429f0
SR
324 }
325
bac429f0
SR
326 return rec;
327}
328
329static void *function_stat_start(struct tracer_stat *trace)
330{
cafb168a
SR
331 struct ftrace_profile_stat *stat =
332 container_of(trace, struct ftrace_profile_stat, stat);
333
334 if (!stat || !stat->start)
335 return NULL;
336
337 return function_stat_next(&stat->start->records[0], 0);
bac429f0
SR
338}
339
0706f1c4
SR
340#ifdef CONFIG_FUNCTION_GRAPH_TRACER
341/* function graph compares on total time */
342static int function_stat_cmp(void *p1, void *p2)
343{
344 struct ftrace_profile *a = p1;
345 struct ftrace_profile *b = p2;
346
347 if (a->time < b->time)
348 return -1;
349 if (a->time > b->time)
350 return 1;
351 else
352 return 0;
353}
354#else
355/* not function graph compares against hits */
bac429f0
SR
356static int function_stat_cmp(void *p1, void *p2)
357{
493762fc
SR
358 struct ftrace_profile *a = p1;
359 struct ftrace_profile *b = p2;
bac429f0
SR
360
361 if (a->counter < b->counter)
362 return -1;
363 if (a->counter > b->counter)
364 return 1;
365 else
366 return 0;
367}
0706f1c4 368#endif
bac429f0
SR
369
370static int function_stat_headers(struct seq_file *m)
371{
0706f1c4 372#ifdef CONFIG_FUNCTION_GRAPH_TRACER
34886c8b 373 seq_printf(m, " Function "
e330b3bc 374 "Hit Time Avg s^2\n"
34886c8b 375 " -------- "
e330b3bc 376 "--- ---- --- ---\n");
0706f1c4 377#else
bac429f0
SR
378 seq_printf(m, " Function Hit\n"
379 " -------- ---\n");
0706f1c4 380#endif
bac429f0
SR
381 return 0;
382}
383
384static int function_stat_show(struct seq_file *m, void *v)
385{
493762fc 386 struct ftrace_profile *rec = v;
bac429f0 387 char str[KSYM_SYMBOL_LEN];
3aaba20f 388 int ret = 0;
0706f1c4 389#ifdef CONFIG_FUNCTION_GRAPH_TRACER
34886c8b
SR
390 static struct trace_seq s;
391 unsigned long long avg;
e330b3bc 392 unsigned long long stddev;
0706f1c4 393#endif
3aaba20f
LZ
394 mutex_lock(&ftrace_profile_lock);
395
396 /* we raced with function_profile_reset() */
397 if (unlikely(rec->counter == 0)) {
398 ret = -EBUSY;
399 goto out;
400 }
bac429f0
SR
401
402 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
0706f1c4
SR
403 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
404
405#ifdef CONFIG_FUNCTION_GRAPH_TRACER
406 seq_printf(m, " ");
34886c8b
SR
407 avg = rec->time;
408 do_div(avg, rec->counter);
409
e330b3bc
CD
410 /* Sample standard deviation (s^2) */
411 if (rec->counter <= 1)
412 stddev = 0;
413 else {
414 stddev = rec->time_squared - rec->counter * avg * avg;
415 /*
416 * Divide only 1000 for ns^2 -> us^2 conversion.
417 * trace_print_graph_duration will divide 1000 again.
418 */
419 do_div(stddev, (rec->counter - 1) * 1000);
420 }
421
34886c8b
SR
422 trace_seq_init(&s);
423 trace_print_graph_duration(rec->time, &s);
424 trace_seq_puts(&s, " ");
425 trace_print_graph_duration(avg, &s);
e330b3bc
CD
426 trace_seq_puts(&s, " ");
427 trace_print_graph_duration(stddev, &s);
0706f1c4 428 trace_print_seq(m, &s);
0706f1c4
SR
429#endif
430 seq_putc(m, '\n');
3aaba20f
LZ
431out:
432 mutex_unlock(&ftrace_profile_lock);
bac429f0 433
3aaba20f 434 return ret;
bac429f0
SR
435}
436
cafb168a 437static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
bac429f0 438{
493762fc 439 struct ftrace_profile_page *pg;
bac429f0 440
cafb168a 441 pg = stat->pages = stat->start;
bac429f0 442
493762fc
SR
443 while (pg) {
444 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
445 pg->index = 0;
446 pg = pg->next;
bac429f0
SR
447 }
448
cafb168a 449 memset(stat->hash, 0,
493762fc
SR
450 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
451}
bac429f0 452
cafb168a 453int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
493762fc
SR
454{
455 struct ftrace_profile_page *pg;
318e0a73
SR
456 int functions;
457 int pages;
493762fc 458 int i;
bac429f0 459
493762fc 460 /* If we already allocated, do nothing */
cafb168a 461 if (stat->pages)
493762fc 462 return 0;
bac429f0 463
cafb168a
SR
464 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
465 if (!stat->pages)
493762fc 466 return -ENOMEM;
bac429f0 467
318e0a73
SR
468#ifdef CONFIG_DYNAMIC_FTRACE
469 functions = ftrace_update_tot_cnt;
470#else
471 /*
472 * We do not know the number of functions that exist because
473 * dynamic tracing is what counts them. With past experience
474 * we have around 20K functions. That should be more than enough.
475 * It is highly unlikely we will execute every function in
476 * the kernel.
477 */
478 functions = 20000;
479#endif
480
cafb168a 481 pg = stat->start = stat->pages;
bac429f0 482
318e0a73
SR
483 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
484
485 for (i = 0; i < pages; i++) {
493762fc 486 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
493762fc 487 if (!pg->next)
318e0a73 488 goto out_free;
493762fc
SR
489 pg = pg->next;
490 }
491
492 return 0;
318e0a73
SR
493
494 out_free:
495 pg = stat->start;
496 while (pg) {
497 unsigned long tmp = (unsigned long)pg;
498
499 pg = pg->next;
500 free_page(tmp);
501 }
502
503 free_page((unsigned long)stat->pages);
504 stat->pages = NULL;
505 stat->start = NULL;
506
507 return -ENOMEM;
bac429f0
SR
508}
509
cafb168a 510static int ftrace_profile_init_cpu(int cpu)
bac429f0 511{
cafb168a 512 struct ftrace_profile_stat *stat;
493762fc 513 int size;
bac429f0 514
cafb168a
SR
515 stat = &per_cpu(ftrace_profile_stats, cpu);
516
517 if (stat->hash) {
493762fc 518 /* If the profile is already created, simply reset it */
cafb168a 519 ftrace_profile_reset(stat);
493762fc
SR
520 return 0;
521 }
bac429f0 522
493762fc
SR
523 /*
524 * We are profiling all functions, but usually only a few thousand
525 * functions are hit. We'll make a hash of 1024 items.
526 */
527 size = FTRACE_PROFILE_HASH_SIZE;
bac429f0 528
cafb168a 529 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
493762fc 530
cafb168a 531 if (!stat->hash)
493762fc
SR
532 return -ENOMEM;
533
cafb168a
SR
534 if (!ftrace_profile_bits) {
535 size--;
493762fc 536
cafb168a
SR
537 for (; size; size >>= 1)
538 ftrace_profile_bits++;
539 }
493762fc 540
318e0a73 541 /* Preallocate the function profiling pages */
cafb168a
SR
542 if (ftrace_profile_pages_init(stat) < 0) {
543 kfree(stat->hash);
544 stat->hash = NULL;
493762fc
SR
545 return -ENOMEM;
546 }
547
548 return 0;
bac429f0
SR
549}
550
cafb168a
SR
551static int ftrace_profile_init(void)
552{
553 int cpu;
554 int ret = 0;
555
556 for_each_online_cpu(cpu) {
557 ret = ftrace_profile_init_cpu(cpu);
558 if (ret)
559 break;
560 }
561
562 return ret;
563}
564
493762fc 565/* interrupts must be disabled */
cafb168a
SR
566static struct ftrace_profile *
567ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
bac429f0 568{
493762fc 569 struct ftrace_profile *rec;
bac429f0
SR
570 struct hlist_head *hhd;
571 struct hlist_node *n;
bac429f0
SR
572 unsigned long key;
573
bac429f0 574 key = hash_long(ip, ftrace_profile_bits);
cafb168a 575 hhd = &stat->hash[key];
bac429f0
SR
576
577 if (hlist_empty(hhd))
578 return NULL;
579
bac429f0
SR
580 hlist_for_each_entry_rcu(rec, n, hhd, node) {
581 if (rec->ip == ip)
493762fc
SR
582 return rec;
583 }
584
585 return NULL;
586}
587
cafb168a
SR
588static void ftrace_add_profile(struct ftrace_profile_stat *stat,
589 struct ftrace_profile *rec)
493762fc
SR
590{
591 unsigned long key;
592
593 key = hash_long(rec->ip, ftrace_profile_bits);
cafb168a 594 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
493762fc
SR
595}
596
318e0a73
SR
597/*
598 * The memory is already allocated, this simply finds a new record to use.
599 */
493762fc 600static struct ftrace_profile *
318e0a73 601ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
493762fc
SR
602{
603 struct ftrace_profile *rec = NULL;
604
318e0a73 605 /* prevent recursion (from NMIs) */
cafb168a 606 if (atomic_inc_return(&stat->disabled) != 1)
493762fc
SR
607 goto out;
608
493762fc 609 /*
318e0a73
SR
610 * Try to find the function again since an NMI
611 * could have added it
493762fc 612 */
cafb168a 613 rec = ftrace_find_profiled_func(stat, ip);
493762fc 614 if (rec)
cafb168a 615 goto out;
493762fc 616
cafb168a
SR
617 if (stat->pages->index == PROFILES_PER_PAGE) {
618 if (!stat->pages->next)
619 goto out;
620 stat->pages = stat->pages->next;
bac429f0 621 }
493762fc 622
cafb168a 623 rec = &stat->pages->records[stat->pages->index++];
493762fc 624 rec->ip = ip;
cafb168a 625 ftrace_add_profile(stat, rec);
493762fc 626
bac429f0 627 out:
cafb168a 628 atomic_dec(&stat->disabled);
bac429f0
SR
629
630 return rec;
631}
632
633static void
634function_profile_call(unsigned long ip, unsigned long parent_ip)
635{
cafb168a 636 struct ftrace_profile_stat *stat;
493762fc 637 struct ftrace_profile *rec;
bac429f0
SR
638 unsigned long flags;
639
640 if (!ftrace_profile_enabled)
641 return;
642
643 local_irq_save(flags);
cafb168a
SR
644
645 stat = &__get_cpu_var(ftrace_profile_stats);
0f6ce3de 646 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
647 goto out;
648
649 rec = ftrace_find_profiled_func(stat, ip);
493762fc 650 if (!rec) {
318e0a73 651 rec = ftrace_profile_alloc(stat, ip);
493762fc
SR
652 if (!rec)
653 goto out;
654 }
bac429f0
SR
655
656 rec->counter++;
657 out:
658 local_irq_restore(flags);
659}
660
0706f1c4
SR
661#ifdef CONFIG_FUNCTION_GRAPH_TRACER
662static int profile_graph_entry(struct ftrace_graph_ent *trace)
663{
664 function_profile_call(trace->func, 0);
665 return 1;
666}
667
668static void profile_graph_return(struct ftrace_graph_ret *trace)
669{
cafb168a 670 struct ftrace_profile_stat *stat;
a2a16d6a 671 unsigned long long calltime;
0706f1c4 672 struct ftrace_profile *rec;
cafb168a 673 unsigned long flags;
0706f1c4
SR
674
675 local_irq_save(flags);
cafb168a 676 stat = &__get_cpu_var(ftrace_profile_stats);
0f6ce3de 677 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
678 goto out;
679
37e44bc5
SR
680 /* If the calltime was zero'd ignore it */
681 if (!trace->calltime)
682 goto out;
683
a2a16d6a
SR
684 calltime = trace->rettime - trace->calltime;
685
686 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
687 int index;
688
689 index = trace->depth;
690
691 /* Append this call time to the parent time to subtract */
692 if (index)
693 current->ret_stack[index - 1].subtime += calltime;
694
695 if (current->ret_stack[index].subtime < calltime)
696 calltime -= current->ret_stack[index].subtime;
697 else
698 calltime = 0;
699 }
700
cafb168a 701 rec = ftrace_find_profiled_func(stat, trace->func);
e330b3bc 702 if (rec) {
a2a16d6a 703 rec->time += calltime;
e330b3bc
CD
704 rec->time_squared += calltime * calltime;
705 }
a2a16d6a 706
cafb168a 707 out:
0706f1c4
SR
708 local_irq_restore(flags);
709}
710
711static int register_ftrace_profiler(void)
712{
713 return register_ftrace_graph(&profile_graph_return,
714 &profile_graph_entry);
715}
716
717static void unregister_ftrace_profiler(void)
718{
719 unregister_ftrace_graph();
720}
721#else
bac429f0
SR
722static struct ftrace_ops ftrace_profile_ops __read_mostly =
723{
fb9fb015 724 .func = function_profile_call,
bac429f0
SR
725};
726
0706f1c4
SR
727static int register_ftrace_profiler(void)
728{
729 return register_ftrace_function(&ftrace_profile_ops);
730}
731
732static void unregister_ftrace_profiler(void)
733{
734 unregister_ftrace_function(&ftrace_profile_ops);
735}
736#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
737
bac429f0
SR
738static ssize_t
739ftrace_profile_write(struct file *filp, const char __user *ubuf,
740 size_t cnt, loff_t *ppos)
741{
742 unsigned long val;
fb9fb015 743 char buf[64]; /* big enough to hold a number */
bac429f0
SR
744 int ret;
745
bac429f0
SR
746 if (cnt >= sizeof(buf))
747 return -EINVAL;
748
749 if (copy_from_user(&buf, ubuf, cnt))
750 return -EFAULT;
751
752 buf[cnt] = 0;
753
754 ret = strict_strtoul(buf, 10, &val);
755 if (ret < 0)
756 return ret;
757
758 val = !!val;
759
760 mutex_lock(&ftrace_profile_lock);
761 if (ftrace_profile_enabled ^ val) {
762 if (val) {
493762fc
SR
763 ret = ftrace_profile_init();
764 if (ret < 0) {
765 cnt = ret;
766 goto out;
767 }
768
0706f1c4
SR
769 ret = register_ftrace_profiler();
770 if (ret < 0) {
771 cnt = ret;
772 goto out;
773 }
bac429f0
SR
774 ftrace_profile_enabled = 1;
775 } else {
776 ftrace_profile_enabled = 0;
0f6ce3de
SR
777 /*
778 * unregister_ftrace_profiler calls stop_machine
779 * so this acts like an synchronize_sched.
780 */
0706f1c4 781 unregister_ftrace_profiler();
bac429f0
SR
782 }
783 }
493762fc 784 out:
bac429f0
SR
785 mutex_unlock(&ftrace_profile_lock);
786
cf8517cf 787 *ppos += cnt;
bac429f0
SR
788
789 return cnt;
790}
791
493762fc
SR
792static ssize_t
793ftrace_profile_read(struct file *filp, char __user *ubuf,
794 size_t cnt, loff_t *ppos)
795{
fb9fb015 796 char buf[64]; /* big enough to hold a number */
493762fc
SR
797 int r;
798
799 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
800 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
801}
802
bac429f0
SR
803static const struct file_operations ftrace_profile_fops = {
804 .open = tracing_open_generic,
805 .read = ftrace_profile_read,
806 .write = ftrace_profile_write,
6038f373 807 .llseek = default_llseek,
bac429f0
SR
808};
809
cafb168a
SR
810/* used to initialize the real stat files */
811static struct tracer_stat function_stats __initdata = {
fb9fb015
SR
812 .name = "functions",
813 .stat_start = function_stat_start,
814 .stat_next = function_stat_next,
815 .stat_cmp = function_stat_cmp,
816 .stat_headers = function_stat_headers,
817 .stat_show = function_stat_show
cafb168a
SR
818};
819
6ab5d668 820static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
bac429f0 821{
cafb168a 822 struct ftrace_profile_stat *stat;
bac429f0 823 struct dentry *entry;
cafb168a 824 char *name;
bac429f0 825 int ret;
cafb168a
SR
826 int cpu;
827
828 for_each_possible_cpu(cpu) {
829 stat = &per_cpu(ftrace_profile_stats, cpu);
830
831 /* allocate enough for function name + cpu number */
832 name = kmalloc(32, GFP_KERNEL);
833 if (!name) {
834 /*
835 * The files created are permanent, if something happens
836 * we still do not free memory.
837 */
cafb168a
SR
838 WARN(1,
839 "Could not allocate stat file for cpu %d\n",
840 cpu);
841 return;
842 }
843 stat->stat = function_stats;
844 snprintf(name, 32, "function%d", cpu);
845 stat->stat.name = name;
846 ret = register_stat_tracer(&stat->stat);
847 if (ret) {
848 WARN(1,
849 "Could not register function stat for cpu %d\n",
850 cpu);
851 kfree(name);
852 return;
853 }
bac429f0
SR
854 }
855
856 entry = debugfs_create_file("function_profile_enabled", 0644,
857 d_tracer, NULL, &ftrace_profile_fops);
858 if (!entry)
859 pr_warning("Could not create debugfs "
860 "'function_profile_enabled' entry\n");
861}
862
bac429f0 863#else /* CONFIG_FUNCTION_PROFILER */
6ab5d668 864static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
bac429f0
SR
865{
866}
bac429f0
SR
867#endif /* CONFIG_FUNCTION_PROFILER */
868
493762fc
SR
869static struct pid * const ftrace_swapper_pid = &init_struct_pid;
870
871#ifdef CONFIG_DYNAMIC_FTRACE
872
873#ifndef CONFIG_FTRACE_MCOUNT_RECORD
874# error Dynamic ftrace depends on MCOUNT_RECORD
875#endif
876
877static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
878
879struct ftrace_func_probe {
880 struct hlist_node node;
881 struct ftrace_probe_ops *ops;
882 unsigned long flags;
883 unsigned long ip;
884 void *data;
885 struct rcu_head rcu;
886};
887
888enum {
889 FTRACE_ENABLE_CALLS = (1 << 0),
890 FTRACE_DISABLE_CALLS = (1 << 1),
891 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
79e406d7
SR
892 FTRACE_START_FUNC_RET = (1 << 3),
893 FTRACE_STOP_FUNC_RET = (1 << 4),
493762fc
SR
894};
895
896static int ftrace_filtered;
897
898static struct dyn_ftrace *ftrace_new_addrs;
899
900static DEFINE_MUTEX(ftrace_regex_lock);
901
902struct ftrace_page {
903 struct ftrace_page *next;
904 int index;
905 struct dyn_ftrace records[];
906};
907
908#define ENTRIES_PER_PAGE \
909 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
910
911/* estimate from running different kernels */
912#define NR_TO_INIT 10000
913
914static struct ftrace_page *ftrace_pages_start;
915static struct ftrace_page *ftrace_pages;
916
917static struct dyn_ftrace *ftrace_free_records;
918
919/*
920 * This is a double for. Do not use 'break' to break out of the loop,
921 * you must use a goto.
922 */
923#define do_for_each_ftrace_rec(pg, rec) \
924 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
925 int _____i; \
926 for (_____i = 0; _____i < pg->index; _____i++) { \
927 rec = &pg->records[_____i];
928
929#define while_for_each_ftrace_rec() \
930 } \
931 }
932
e309b41d 933static void ftrace_free_rec(struct dyn_ftrace *rec)
37ad5084 934{
ee000b7f 935 rec->freelist = ftrace_free_records;
37ad5084
SR
936 ftrace_free_records = rec;
937 rec->flags |= FTRACE_FL_FREE;
938}
939
e309b41d 940static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
3c1720f0 941{
37ad5084
SR
942 struct dyn_ftrace *rec;
943
944 /* First check for freed records */
945 if (ftrace_free_records) {
946 rec = ftrace_free_records;
947
37ad5084 948 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
6912896e 949 FTRACE_WARN_ON_ONCE(1);
37ad5084
SR
950 ftrace_free_records = NULL;
951 return NULL;
952 }
953
ee000b7f 954 ftrace_free_records = rec->freelist;
37ad5084
SR
955 memset(rec, 0, sizeof(*rec));
956 return rec;
957 }
958
3c1720f0 959 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
08f5ac90
SR
960 if (!ftrace_pages->next) {
961 /* allocate another page */
962 ftrace_pages->next =
963 (void *)get_zeroed_page(GFP_KERNEL);
964 if (!ftrace_pages->next)
965 return NULL;
966 }
3c1720f0
SR
967 ftrace_pages = ftrace_pages->next;
968 }
969
970 return &ftrace_pages->records[ftrace_pages->index++];
971}
972
08f5ac90 973static struct dyn_ftrace *
d61f82d0 974ftrace_record_ip(unsigned long ip)
3d083395 975{
08f5ac90 976 struct dyn_ftrace *rec;
3d083395 977
f3c7ac40 978 if (ftrace_disabled)
08f5ac90 979 return NULL;
3d083395 980
08f5ac90
SR
981 rec = ftrace_alloc_dyn_node(ip);
982 if (!rec)
983 return NULL;
3d083395 984
08f5ac90 985 rec->ip = ip;
ee000b7f 986 rec->newlist = ftrace_new_addrs;
e94142a6 987 ftrace_new_addrs = rec;
3d083395 988
08f5ac90 989 return rec;
3d083395
SR
990}
991
b17e8a37
SR
992static void print_ip_ins(const char *fmt, unsigned char *p)
993{
994 int i;
995
996 printk(KERN_CONT "%s", fmt);
997
998 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
999 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1000}
1001
31e88909 1002static void ftrace_bug(int failed, unsigned long ip)
b17e8a37
SR
1003{
1004 switch (failed) {
1005 case -EFAULT:
1006 FTRACE_WARN_ON_ONCE(1);
1007 pr_info("ftrace faulted on modifying ");
1008 print_ip_sym(ip);
1009 break;
1010 case -EINVAL:
1011 FTRACE_WARN_ON_ONCE(1);
1012 pr_info("ftrace failed to modify ");
1013 print_ip_sym(ip);
b17e8a37 1014 print_ip_ins(" actual: ", (unsigned char *)ip);
b17e8a37
SR
1015 printk(KERN_CONT "\n");
1016 break;
1017 case -EPERM:
1018 FTRACE_WARN_ON_ONCE(1);
1019 pr_info("ftrace faulted on writing ");
1020 print_ip_sym(ip);
1021 break;
1022 default:
1023 FTRACE_WARN_ON_ONCE(1);
1024 pr_info("ftrace faulted on unknown error ");
1025 print_ip_sym(ip);
1026 }
1027}
1028
3c1720f0 1029
2cfa1978
MH
1030/* Return 1 if the address range is reserved for ftrace */
1031int ftrace_text_reserved(void *start, void *end)
1032{
1033 struct dyn_ftrace *rec;
1034 struct ftrace_page *pg;
1035
1036 do_for_each_ftrace_rec(pg, rec) {
1037 if (rec->ip <= (unsigned long)end &&
1038 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1039 return 1;
1040 } while_for_each_ftrace_rec();
1041 return 0;
1042}
1043
1044
0eb96701 1045static int
31e88909 1046__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
5072c59f 1047{
e7d3737e 1048 unsigned long ftrace_addr;
64fbcd16 1049 unsigned long flag = 0UL;
e7d3737e 1050
f0001207 1051 ftrace_addr = (unsigned long)FTRACE_ADDR;
5072c59f 1052
982c350b 1053 /*
64fbcd16
XG
1054 * If this record is not to be traced or we want to disable it,
1055 * then disable it.
982c350b 1056 *
64fbcd16 1057 * If we want to enable it and filtering is off, then enable it.
982c350b 1058 *
64fbcd16
XG
1059 * If we want to enable it and filtering is on, enable it only if
1060 * it's filtered
982c350b 1061 */
64fbcd16
XG
1062 if (enable && !(rec->flags & FTRACE_FL_NOTRACE)) {
1063 if (!ftrace_filtered || (rec->flags & FTRACE_FL_FILTER))
1064 flag = FTRACE_FL_ENABLED;
1065 }
982c350b 1066
64fbcd16
XG
1067 /* If the state of this record hasn't changed, then do nothing */
1068 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
1069 return 0;
982c350b 1070
64fbcd16
XG
1071 if (flag) {
1072 rec->flags |= FTRACE_FL_ENABLED;
1073 return ftrace_make_call(rec, ftrace_addr);
5072c59f
SR
1074 }
1075
64fbcd16
XG
1076 rec->flags &= ~FTRACE_FL_ENABLED;
1077 return ftrace_make_nop(NULL, rec, ftrace_addr);
5072c59f
SR
1078}
1079
e309b41d 1080static void ftrace_replace_code(int enable)
3c1720f0 1081{
3c1720f0
SR
1082 struct dyn_ftrace *rec;
1083 struct ftrace_page *pg;
6a24a244 1084 int failed;
3c1720f0 1085
45a4a237
SR
1086 if (unlikely(ftrace_disabled))
1087 return;
1088
265c831c 1089 do_for_each_ftrace_rec(pg, rec) {
d2c8c3ea
SR
1090 /* Skip over free records */
1091 if (rec->flags & FTRACE_FL_FREE)
265c831c
SR
1092 continue;
1093
265c831c 1094 failed = __ftrace_replace_code(rec, enable);
fa9d13cf 1095 if (failed) {
3279ba37
SR
1096 ftrace_bug(failed, rec->ip);
1097 /* Stop processing */
1098 return;
3c1720f0 1099 }
265c831c 1100 } while_for_each_ftrace_rec();
3c1720f0
SR
1101}
1102
492a7ea5 1103static int
31e88909 1104ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
3c1720f0
SR
1105{
1106 unsigned long ip;
593eb8a2 1107 int ret;
3c1720f0
SR
1108
1109 ip = rec->ip;
1110
45a4a237
SR
1111 if (unlikely(ftrace_disabled))
1112 return 0;
1113
25aac9dc 1114 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
593eb8a2 1115 if (ret) {
31e88909 1116 ftrace_bug(ret, ip);
492a7ea5 1117 return 0;
37ad5084 1118 }
492a7ea5 1119 return 1;
3c1720f0
SR
1120}
1121
000ab691
SR
1122/*
1123 * archs can override this function if they must do something
1124 * before the modifying code is performed.
1125 */
1126int __weak ftrace_arch_code_modify_prepare(void)
1127{
1128 return 0;
1129}
1130
1131/*
1132 * archs can override this function if they must do something
1133 * after the modifying code is performed.
1134 */
1135int __weak ftrace_arch_code_modify_post_process(void)
1136{
1137 return 0;
1138}
1139
e309b41d 1140static int __ftrace_modify_code(void *data)
3d083395 1141{
d61f82d0
SR
1142 int *command = data;
1143
a3583244 1144 if (*command & FTRACE_ENABLE_CALLS)
d61f82d0 1145 ftrace_replace_code(1);
a3583244 1146 else if (*command & FTRACE_DISABLE_CALLS)
d61f82d0
SR
1147 ftrace_replace_code(0);
1148
1149 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1150 ftrace_update_ftrace_func(ftrace_trace_function);
1151
5a45cfe1
SR
1152 if (*command & FTRACE_START_FUNC_RET)
1153 ftrace_enable_ftrace_graph_caller();
1154 else if (*command & FTRACE_STOP_FUNC_RET)
1155 ftrace_disable_ftrace_graph_caller();
1156
d61f82d0 1157 return 0;
3d083395
SR
1158}
1159
e309b41d 1160static void ftrace_run_update_code(int command)
3d083395 1161{
000ab691
SR
1162 int ret;
1163
1164 ret = ftrace_arch_code_modify_prepare();
1165 FTRACE_WARN_ON(ret);
1166 if (ret)
1167 return;
1168
784e2d76 1169 stop_machine(__ftrace_modify_code, &command, NULL);
000ab691
SR
1170
1171 ret = ftrace_arch_code_modify_post_process();
1172 FTRACE_WARN_ON(ret);
3d083395
SR
1173}
1174
d61f82d0 1175static ftrace_func_t saved_ftrace_func;
60a7ecf4 1176static int ftrace_start_up;
df4fc315
SR
1177
1178static void ftrace_startup_enable(int command)
1179{
1180 if (saved_ftrace_func != ftrace_trace_function) {
1181 saved_ftrace_func = ftrace_trace_function;
1182 command |= FTRACE_UPDATE_TRACE_FUNC;
1183 }
1184
1185 if (!command || !ftrace_enabled)
1186 return;
1187
1188 ftrace_run_update_code(command);
1189}
d61f82d0 1190
5a45cfe1 1191static void ftrace_startup(int command)
3d083395 1192{
4eebcc81
SR
1193 if (unlikely(ftrace_disabled))
1194 return;
1195
60a7ecf4 1196 ftrace_start_up++;
982c350b 1197 command |= FTRACE_ENABLE_CALLS;
d61f82d0 1198
df4fc315 1199 ftrace_startup_enable(command);
3d083395
SR
1200}
1201
5a45cfe1 1202static void ftrace_shutdown(int command)
3d083395 1203{
4eebcc81
SR
1204 if (unlikely(ftrace_disabled))
1205 return;
1206
60a7ecf4 1207 ftrace_start_up--;
9ea1a153
FW
1208 /*
1209 * Just warn in case of unbalance, no need to kill ftrace, it's not
1210 * critical but the ftrace_call callers may be never nopped again after
1211 * further ftrace uses.
1212 */
1213 WARN_ON_ONCE(ftrace_start_up < 0);
1214
60a7ecf4 1215 if (!ftrace_start_up)
d61f82d0 1216 command |= FTRACE_DISABLE_CALLS;
3d083395 1217
d61f82d0
SR
1218 if (saved_ftrace_func != ftrace_trace_function) {
1219 saved_ftrace_func = ftrace_trace_function;
1220 command |= FTRACE_UPDATE_TRACE_FUNC;
1221 }
3d083395 1222
d61f82d0 1223 if (!command || !ftrace_enabled)
e6ea44e9 1224 return;
d61f82d0
SR
1225
1226 ftrace_run_update_code(command);
3d083395
SR
1227}
1228
e309b41d 1229static void ftrace_startup_sysctl(void)
b0fc494f 1230{
4eebcc81
SR
1231 if (unlikely(ftrace_disabled))
1232 return;
1233
d61f82d0
SR
1234 /* Force update next time */
1235 saved_ftrace_func = NULL;
60a7ecf4
SR
1236 /* ftrace_start_up is true if we want ftrace running */
1237 if (ftrace_start_up)
79e406d7 1238 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
b0fc494f
SR
1239}
1240
e309b41d 1241static void ftrace_shutdown_sysctl(void)
b0fc494f 1242{
4eebcc81
SR
1243 if (unlikely(ftrace_disabled))
1244 return;
1245
60a7ecf4
SR
1246 /* ftrace_start_up is true if ftrace is running */
1247 if (ftrace_start_up)
79e406d7 1248 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
b0fc494f
SR
1249}
1250
3d083395
SR
1251static cycle_t ftrace_update_time;
1252static unsigned long ftrace_update_cnt;
1253unsigned long ftrace_update_tot_cnt;
1254
31e88909 1255static int ftrace_update_code(struct module *mod)
3d083395 1256{
e94142a6 1257 struct dyn_ftrace *p;
f22f9a89 1258 cycle_t start, stop;
3d083395 1259
750ed1a4 1260 start = ftrace_now(raw_smp_processor_id());
3d083395
SR
1261 ftrace_update_cnt = 0;
1262
e94142a6 1263 while (ftrace_new_addrs) {
3d083395 1264
08f5ac90
SR
1265 /* If something went wrong, bail without enabling anything */
1266 if (unlikely(ftrace_disabled))
1267 return -1;
f22f9a89 1268
e94142a6 1269 p = ftrace_new_addrs;
ee000b7f 1270 ftrace_new_addrs = p->newlist;
e94142a6 1271 p->flags = 0L;
f22f9a89 1272
5cb084bb 1273 /*
25985edc 1274 * Do the initial record conversion from mcount jump
5cb084bb
JO
1275 * to the NOP instructions.
1276 */
1277 if (!ftrace_code_disable(mod, p)) {
08f5ac90 1278 ftrace_free_rec(p);
d2c8c3ea
SR
1279 /* Game over */
1280 break;
5cb084bb
JO
1281 }
1282
5cb084bb
JO
1283 ftrace_update_cnt++;
1284
1285 /*
1286 * If the tracing is enabled, go ahead and enable the record.
1287 *
1288 * The reason not to enable the record immediatelly is the
1289 * inherent check of ftrace_make_nop/ftrace_make_call for
1290 * correct previous instructions. Making first the NOP
1291 * conversion puts the module to the correct state, thus
1292 * passing the ftrace_make_call check.
1293 */
1294 if (ftrace_start_up) {
1295 int failed = __ftrace_replace_code(p, 1);
1296 if (failed) {
1297 ftrace_bug(failed, p->ip);
1298 ftrace_free_rec(p);
1299 }
1300 }
3d083395
SR
1301 }
1302
750ed1a4 1303 stop = ftrace_now(raw_smp_processor_id());
3d083395
SR
1304 ftrace_update_time = stop - start;
1305 ftrace_update_tot_cnt += ftrace_update_cnt;
1306
16444a8a
ACM
1307 return 0;
1308}
1309
68bf21aa 1310static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
3c1720f0
SR
1311{
1312 struct ftrace_page *pg;
1313 int cnt;
1314 int i;
3c1720f0
SR
1315
1316 /* allocate a few pages */
1317 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
1318 if (!ftrace_pages_start)
1319 return -1;
1320
1321 /*
1322 * Allocate a few more pages.
1323 *
1324 * TODO: have some parser search vmlinux before
1325 * final linking to find all calls to ftrace.
1326 * Then we can:
1327 * a) know how many pages to allocate.
1328 * and/or
1329 * b) set up the table then.
1330 *
1331 * The dynamic code is still necessary for
1332 * modules.
1333 */
1334
1335 pg = ftrace_pages = ftrace_pages_start;
1336
68bf21aa 1337 cnt = num_to_init / ENTRIES_PER_PAGE;
08f5ac90 1338 pr_info("ftrace: allocating %ld entries in %d pages\n",
5821e1b7 1339 num_to_init, cnt + 1);
3c1720f0
SR
1340
1341 for (i = 0; i < cnt; i++) {
1342 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
1343
1344 /* If we fail, we'll try later anyway */
1345 if (!pg->next)
1346 break;
1347
1348 pg = pg->next;
1349 }
1350
1351 return 0;
1352}
1353
5072c59f
SR
1354enum {
1355 FTRACE_ITER_FILTER = (1 << 0),
689fd8b6 1356 FTRACE_ITER_NOTRACE = (1 << 1),
3499e461
SR
1357 FTRACE_ITER_PRINTALL = (1 << 2),
1358 FTRACE_ITER_HASH = (1 << 3),
5072c59f
SR
1359};
1360
1361#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1362
1363struct ftrace_iterator {
98c4fd04 1364 loff_t pos;
4aeb6967
SR
1365 loff_t func_pos;
1366 struct ftrace_page *pg;
1367 struct dyn_ftrace *func;
1368 struct ftrace_func_probe *probe;
1369 struct trace_parser parser;
1370 int hidx;
1371 int idx;
1372 unsigned flags;
5072c59f
SR
1373};
1374
8fc0c701 1375static void *
4aeb6967 1376t_hash_next(struct seq_file *m, loff_t *pos)
8fc0c701
SR
1377{
1378 struct ftrace_iterator *iter = m->private;
4aeb6967 1379 struct hlist_node *hnd = NULL;
8fc0c701
SR
1380 struct hlist_head *hhd;
1381
8fc0c701 1382 (*pos)++;
98c4fd04 1383 iter->pos = *pos;
8fc0c701 1384
4aeb6967
SR
1385 if (iter->probe)
1386 hnd = &iter->probe->node;
8fc0c701
SR
1387 retry:
1388 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
1389 return NULL;
1390
1391 hhd = &ftrace_func_hash[iter->hidx];
1392
1393 if (hlist_empty(hhd)) {
1394 iter->hidx++;
1395 hnd = NULL;
1396 goto retry;
1397 }
1398
1399 if (!hnd)
1400 hnd = hhd->first;
1401 else {
1402 hnd = hnd->next;
1403 if (!hnd) {
1404 iter->hidx++;
1405 goto retry;
1406 }
1407 }
1408
4aeb6967
SR
1409 if (WARN_ON_ONCE(!hnd))
1410 return NULL;
1411
1412 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
1413
1414 return iter;
8fc0c701
SR
1415}
1416
1417static void *t_hash_start(struct seq_file *m, loff_t *pos)
1418{
1419 struct ftrace_iterator *iter = m->private;
1420 void *p = NULL;
d82d6244
LZ
1421 loff_t l;
1422
2bccfffd
SR
1423 if (iter->func_pos > *pos)
1424 return NULL;
8fc0c701 1425
d82d6244 1426 iter->hidx = 0;
2bccfffd 1427 for (l = 0; l <= (*pos - iter->func_pos); ) {
4aeb6967 1428 p = t_hash_next(m, &l);
d82d6244
LZ
1429 if (!p)
1430 break;
1431 }
4aeb6967
SR
1432 if (!p)
1433 return NULL;
1434
98c4fd04
SR
1435 /* Only set this if we have an item */
1436 iter->flags |= FTRACE_ITER_HASH;
1437
4aeb6967 1438 return iter;
8fc0c701
SR
1439}
1440
4aeb6967
SR
1441static int
1442t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
8fc0c701 1443{
b6887d79 1444 struct ftrace_func_probe *rec;
8fc0c701 1445
4aeb6967
SR
1446 rec = iter->probe;
1447 if (WARN_ON_ONCE(!rec))
1448 return -EIO;
8fc0c701 1449
809dcf29
SR
1450 if (rec->ops->print)
1451 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
1452
b375a11a 1453 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
8fc0c701
SR
1454
1455 if (rec->data)
1456 seq_printf(m, ":%p", rec->data);
1457 seq_putc(m, '\n');
1458
1459 return 0;
1460}
1461
e309b41d 1462static void *
5072c59f
SR
1463t_next(struct seq_file *m, void *v, loff_t *pos)
1464{
1465 struct ftrace_iterator *iter = m->private;
1466 struct dyn_ftrace *rec = NULL;
1467
45a4a237
SR
1468 if (unlikely(ftrace_disabled))
1469 return NULL;
1470
8fc0c701 1471 if (iter->flags & FTRACE_ITER_HASH)
4aeb6967 1472 return t_hash_next(m, pos);
8fc0c701 1473
5072c59f 1474 (*pos)++;
1106b699 1475 iter->pos = iter->func_pos = *pos;
5072c59f 1476
0c75a3ed 1477 if (iter->flags & FTRACE_ITER_PRINTALL)
57c072c7 1478 return t_hash_start(m, pos);
0c75a3ed 1479
5072c59f
SR
1480 retry:
1481 if (iter->idx >= iter->pg->index) {
1482 if (iter->pg->next) {
1483 iter->pg = iter->pg->next;
1484 iter->idx = 0;
1485 goto retry;
1486 }
1487 } else {
1488 rec = &iter->pg->records[iter->idx++];
a9fdda33
SR
1489 if ((rec->flags & FTRACE_FL_FREE) ||
1490
0183fb1c
SR
1491 ((iter->flags & FTRACE_ITER_FILTER) &&
1492 !(rec->flags & FTRACE_FL_FILTER)) ||
1493
41c52c0d
SR
1494 ((iter->flags & FTRACE_ITER_NOTRACE) &&
1495 !(rec->flags & FTRACE_FL_NOTRACE))) {
5072c59f
SR
1496 rec = NULL;
1497 goto retry;
1498 }
1499 }
1500
4aeb6967 1501 if (!rec)
57c072c7 1502 return t_hash_start(m, pos);
4aeb6967
SR
1503
1504 iter->func = rec;
1505
1506 return iter;
5072c59f
SR
1507}
1508
98c4fd04
SR
1509static void reset_iter_read(struct ftrace_iterator *iter)
1510{
1511 iter->pos = 0;
1512 iter->func_pos = 0;
1513 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
5072c59f
SR
1514}
1515
1516static void *t_start(struct seq_file *m, loff_t *pos)
1517{
1518 struct ftrace_iterator *iter = m->private;
1519 void *p = NULL;
694ce0a5 1520 loff_t l;
5072c59f 1521
8fc0c701 1522 mutex_lock(&ftrace_lock);
45a4a237
SR
1523
1524 if (unlikely(ftrace_disabled))
1525 return NULL;
1526
98c4fd04
SR
1527 /*
1528 * If an lseek was done, then reset and start from beginning.
1529 */
1530 if (*pos < iter->pos)
1531 reset_iter_read(iter);
1532
0c75a3ed
SR
1533 /*
1534 * For set_ftrace_filter reading, if we have the filter
1535 * off, we can short cut and just print out that all
1536 * functions are enabled.
1537 */
1538 if (iter->flags & FTRACE_ITER_FILTER && !ftrace_filtered) {
1539 if (*pos > 0)
8fc0c701 1540 return t_hash_start(m, pos);
0c75a3ed 1541 iter->flags |= FTRACE_ITER_PRINTALL;
df091625
CW
1542 /* reset in case of seek/pread */
1543 iter->flags &= ~FTRACE_ITER_HASH;
0c75a3ed
SR
1544 return iter;
1545 }
1546
8fc0c701
SR
1547 if (iter->flags & FTRACE_ITER_HASH)
1548 return t_hash_start(m, pos);
1549
98c4fd04
SR
1550 /*
1551 * Unfortunately, we need to restart at ftrace_pages_start
1552 * every time we let go of the ftrace_mutex. This is because
1553 * those pointers can change without the lock.
1554 */
694ce0a5
LZ
1555 iter->pg = ftrace_pages_start;
1556 iter->idx = 0;
1557 for (l = 0; l <= *pos; ) {
1558 p = t_next(m, p, &l);
1559 if (!p)
1560 break;
50cdaf08 1561 }
5821e1b7 1562
4aeb6967
SR
1563 if (!p) {
1564 if (iter->flags & FTRACE_ITER_FILTER)
1565 return t_hash_start(m, pos);
8fc0c701 1566
4aeb6967
SR
1567 return NULL;
1568 }
1569
1570 return iter;
5072c59f
SR
1571}
1572
1573static void t_stop(struct seq_file *m, void *p)
1574{
8fc0c701 1575 mutex_unlock(&ftrace_lock);
5072c59f
SR
1576}
1577
1578static int t_show(struct seq_file *m, void *v)
1579{
0c75a3ed 1580 struct ftrace_iterator *iter = m->private;
4aeb6967 1581 struct dyn_ftrace *rec;
5072c59f 1582
8fc0c701 1583 if (iter->flags & FTRACE_ITER_HASH)
4aeb6967 1584 return t_hash_show(m, iter);
8fc0c701 1585
0c75a3ed
SR
1586 if (iter->flags & FTRACE_ITER_PRINTALL) {
1587 seq_printf(m, "#### all functions enabled ####\n");
1588 return 0;
1589 }
1590
4aeb6967
SR
1591 rec = iter->func;
1592
5072c59f
SR
1593 if (!rec)
1594 return 0;
1595
b375a11a 1596 seq_printf(m, "%ps\n", (void *)rec->ip);
5072c59f
SR
1597
1598 return 0;
1599}
1600
88e9d34c 1601static const struct seq_operations show_ftrace_seq_ops = {
5072c59f
SR
1602 .start = t_start,
1603 .next = t_next,
1604 .stop = t_stop,
1605 .show = t_show,
1606};
1607
e309b41d 1608static int
5072c59f
SR
1609ftrace_avail_open(struct inode *inode, struct file *file)
1610{
1611 struct ftrace_iterator *iter;
1612 int ret;
1613
4eebcc81
SR
1614 if (unlikely(ftrace_disabled))
1615 return -ENODEV;
1616
5072c59f
SR
1617 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1618 if (!iter)
1619 return -ENOMEM;
1620
1621 iter->pg = ftrace_pages_start;
5072c59f
SR
1622
1623 ret = seq_open(file, &show_ftrace_seq_ops);
1624 if (!ret) {
1625 struct seq_file *m = file->private_data;
4bf39a94 1626
5072c59f 1627 m->private = iter;
4bf39a94 1628 } else {
5072c59f 1629 kfree(iter);
4bf39a94 1630 }
5072c59f
SR
1631
1632 return ret;
1633}
1634
41c52c0d 1635static void ftrace_filter_reset(int enable)
5072c59f
SR
1636{
1637 struct ftrace_page *pg;
1638 struct dyn_ftrace *rec;
41c52c0d 1639 unsigned long type = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
5072c59f 1640
52baf119 1641 mutex_lock(&ftrace_lock);
41c52c0d
SR
1642 if (enable)
1643 ftrace_filtered = 0;
265c831c 1644 do_for_each_ftrace_rec(pg, rec) {
265c831c
SR
1645 rec->flags &= ~type;
1646 } while_for_each_ftrace_rec();
52baf119 1647 mutex_unlock(&ftrace_lock);
5072c59f
SR
1648}
1649
e309b41d 1650static int
41c52c0d 1651ftrace_regex_open(struct inode *inode, struct file *file, int enable)
5072c59f
SR
1652{
1653 struct ftrace_iterator *iter;
1654 int ret = 0;
1655
4eebcc81
SR
1656 if (unlikely(ftrace_disabled))
1657 return -ENODEV;
1658
5072c59f
SR
1659 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1660 if (!iter)
1661 return -ENOMEM;
1662
689fd8b6 1663 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
1664 kfree(iter);
1665 return -ENOMEM;
1666 }
1667
41c52c0d 1668 mutex_lock(&ftrace_regex_lock);
5072c59f 1669 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 1670 (file->f_flags & O_TRUNC))
41c52c0d 1671 ftrace_filter_reset(enable);
5072c59f
SR
1672
1673 if (file->f_mode & FMODE_READ) {
1674 iter->pg = ftrace_pages_start;
41c52c0d
SR
1675 iter->flags = enable ? FTRACE_ITER_FILTER :
1676 FTRACE_ITER_NOTRACE;
5072c59f
SR
1677
1678 ret = seq_open(file, &show_ftrace_seq_ops);
1679 if (!ret) {
1680 struct seq_file *m = file->private_data;
1681 m->private = iter;
79fe249c
LZ
1682 } else {
1683 trace_parser_put(&iter->parser);
5072c59f 1684 kfree(iter);
79fe249c 1685 }
5072c59f
SR
1686 } else
1687 file->private_data = iter;
41c52c0d 1688 mutex_unlock(&ftrace_regex_lock);
5072c59f
SR
1689
1690 return ret;
1691}
1692
41c52c0d
SR
1693static int
1694ftrace_filter_open(struct inode *inode, struct file *file)
1695{
1696 return ftrace_regex_open(inode, file, 1);
1697}
1698
1699static int
1700ftrace_notrace_open(struct inode *inode, struct file *file)
1701{
1702 return ftrace_regex_open(inode, file, 0);
1703}
1704
e309b41d 1705static loff_t
41c52c0d 1706ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
5072c59f
SR
1707{
1708 loff_t ret;
1709
1710 if (file->f_mode & FMODE_READ)
1711 ret = seq_lseek(file, offset, origin);
1712 else
1713 file->f_pos = ret = 1;
1714
1715 return ret;
1716}
1717
64e7c440 1718static int ftrace_match(char *str, char *regex, int len, int type)
9f4801e3 1719{
9f4801e3 1720 int matched = 0;
751e9983 1721 int slen;
9f4801e3 1722
9f4801e3
SR
1723 switch (type) {
1724 case MATCH_FULL:
1725 if (strcmp(str, regex) == 0)
1726 matched = 1;
1727 break;
1728 case MATCH_FRONT_ONLY:
1729 if (strncmp(str, regex, len) == 0)
1730 matched = 1;
1731 break;
1732 case MATCH_MIDDLE_ONLY:
1733 if (strstr(str, regex))
1734 matched = 1;
1735 break;
1736 case MATCH_END_ONLY:
751e9983
LZ
1737 slen = strlen(str);
1738 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
9f4801e3
SR
1739 matched = 1;
1740 break;
1741 }
1742
1743 return matched;
1744}
1745
64e7c440
SR
1746static int
1747ftrace_match_record(struct dyn_ftrace *rec, char *regex, int len, int type)
1748{
1749 char str[KSYM_SYMBOL_LEN];
1750
1751 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1752 return ftrace_match(str, regex, len, type);
1753}
1754
311d16da 1755static int ftrace_match_records(char *buff, int len, int enable)
9f4801e3 1756{
6a24a244 1757 unsigned int search_len;
9f4801e3
SR
1758 struct ftrace_page *pg;
1759 struct dyn_ftrace *rec;
6a24a244
SR
1760 unsigned long flag;
1761 char *search;
9f4801e3 1762 int type;
9f4801e3 1763 int not;
311d16da 1764 int found = 0;
9f4801e3 1765
6a24a244 1766 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
3f6fe06d 1767 type = filter_parse_regex(buff, len, &search, &not);
9f4801e3
SR
1768
1769 search_len = strlen(search);
1770
52baf119 1771 mutex_lock(&ftrace_lock);
265c831c 1772 do_for_each_ftrace_rec(pg, rec) {
265c831c 1773
9f4801e3 1774 if (ftrace_match_record(rec, search, search_len, type)) {
265c831c
SR
1775 if (not)
1776 rec->flags &= ~flag;
1777 else
1778 rec->flags |= flag;
311d16da 1779 found = 1;
265c831c 1780 }
e68746a2
SR
1781 /*
1782 * Only enable filtering if we have a function that
1783 * is filtered on.
1784 */
1785 if (enable && (rec->flags & FTRACE_FL_FILTER))
1786 ftrace_filtered = 1;
265c831c 1787 } while_for_each_ftrace_rec();
52baf119 1788 mutex_unlock(&ftrace_lock);
311d16da
LZ
1789
1790 return found;
5072c59f
SR
1791}
1792
64e7c440
SR
1793static int
1794ftrace_match_module_record(struct dyn_ftrace *rec, char *mod,
1795 char *regex, int len, int type)
1796{
1797 char str[KSYM_SYMBOL_LEN];
1798 char *modname;
1799
1800 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
1801
1802 if (!modname || strcmp(modname, mod))
1803 return 0;
1804
1805 /* blank search means to match all funcs in the mod */
1806 if (len)
1807 return ftrace_match(str, regex, len, type);
1808 else
1809 return 1;
1810}
1811
311d16da 1812static int ftrace_match_module_records(char *buff, char *mod, int enable)
64e7c440 1813{
6a24a244 1814 unsigned search_len = 0;
64e7c440
SR
1815 struct ftrace_page *pg;
1816 struct dyn_ftrace *rec;
1817 int type = MATCH_FULL;
6a24a244
SR
1818 char *search = buff;
1819 unsigned long flag;
64e7c440 1820 int not = 0;
311d16da 1821 int found = 0;
64e7c440 1822
6a24a244
SR
1823 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1824
64e7c440
SR
1825 /* blank or '*' mean the same */
1826 if (strcmp(buff, "*") == 0)
1827 buff[0] = 0;
1828
1829 /* handle the case of 'dont filter this module' */
1830 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
1831 buff[0] = 0;
1832 not = 1;
1833 }
1834
1835 if (strlen(buff)) {
3f6fe06d 1836 type = filter_parse_regex(buff, strlen(buff), &search, &not);
64e7c440
SR
1837 search_len = strlen(search);
1838 }
1839
52baf119 1840 mutex_lock(&ftrace_lock);
64e7c440 1841
45a4a237
SR
1842 if (unlikely(ftrace_disabled))
1843 goto out_unlock;
1844
1845 do_for_each_ftrace_rec(pg, rec) {
64e7c440
SR
1846
1847 if (ftrace_match_module_record(rec, mod,
1848 search, search_len, type)) {
1849 if (not)
1850 rec->flags &= ~flag;
1851 else
1852 rec->flags |= flag;
311d16da 1853 found = 1;
64e7c440 1854 }
e68746a2
SR
1855 if (enable && (rec->flags & FTRACE_FL_FILTER))
1856 ftrace_filtered = 1;
64e7c440
SR
1857
1858 } while_for_each_ftrace_rec();
45a4a237 1859 out_unlock:
52baf119 1860 mutex_unlock(&ftrace_lock);
311d16da
LZ
1861
1862 return found;
64e7c440
SR
1863}
1864
f6180773
SR
1865/*
1866 * We register the module command as a template to show others how
1867 * to register the a command as well.
1868 */
1869
1870static int
1871ftrace_mod_callback(char *func, char *cmd, char *param, int enable)
1872{
1873 char *mod;
1874
1875 /*
1876 * cmd == 'mod' because we only registered this func
1877 * for the 'mod' ftrace_func_command.
1878 * But if you register one func with multiple commands,
1879 * you can tell which command was used by the cmd
1880 * parameter.
1881 */
1882
1883 /* we must have a module name */
1884 if (!param)
1885 return -EINVAL;
1886
1887 mod = strsep(&param, ":");
1888 if (!strlen(mod))
1889 return -EINVAL;
1890
311d16da
LZ
1891 if (ftrace_match_module_records(func, mod, enable))
1892 return 0;
1893 return -EINVAL;
f6180773
SR
1894}
1895
1896static struct ftrace_func_command ftrace_mod_cmd = {
1897 .name = "mod",
1898 .func = ftrace_mod_callback,
1899};
1900
1901static int __init ftrace_mod_cmd_init(void)
1902{
1903 return register_ftrace_command(&ftrace_mod_cmd);
1904}
1905device_initcall(ftrace_mod_cmd_init);
1906
59df055f 1907static void
b6887d79 1908function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
59df055f 1909{
b6887d79 1910 struct ftrace_func_probe *entry;
59df055f
SR
1911 struct hlist_head *hhd;
1912 struct hlist_node *n;
1913 unsigned long key;
59df055f
SR
1914
1915 key = hash_long(ip, FTRACE_HASH_BITS);
1916
1917 hhd = &ftrace_func_hash[key];
1918
1919 if (hlist_empty(hhd))
1920 return;
1921
1922 /*
1923 * Disable preemption for these calls to prevent a RCU grace
1924 * period. This syncs the hash iteration and freeing of items
1925 * on the hash. rcu_read_lock is too dangerous here.
1926 */
5168ae50 1927 preempt_disable_notrace();
59df055f
SR
1928 hlist_for_each_entry_rcu(entry, n, hhd, node) {
1929 if (entry->ip == ip)
1930 entry->ops->func(ip, parent_ip, &entry->data);
1931 }
5168ae50 1932 preempt_enable_notrace();
59df055f
SR
1933}
1934
b6887d79 1935static struct ftrace_ops trace_probe_ops __read_mostly =
59df055f 1936{
fb9fb015 1937 .func = function_trace_probe_call,
59df055f
SR
1938};
1939
b6887d79 1940static int ftrace_probe_registered;
59df055f 1941
b6887d79 1942static void __enable_ftrace_function_probe(void)
59df055f
SR
1943{
1944 int i;
1945
b6887d79 1946 if (ftrace_probe_registered)
59df055f
SR
1947 return;
1948
1949 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1950 struct hlist_head *hhd = &ftrace_func_hash[i];
1951 if (hhd->first)
1952 break;
1953 }
1954 /* Nothing registered? */
1955 if (i == FTRACE_FUNC_HASHSIZE)
1956 return;
1957
b6887d79 1958 __register_ftrace_function(&trace_probe_ops);
59df055f 1959 ftrace_startup(0);
b6887d79 1960 ftrace_probe_registered = 1;
59df055f
SR
1961}
1962
b6887d79 1963static void __disable_ftrace_function_probe(void)
59df055f
SR
1964{
1965 int i;
1966
b6887d79 1967 if (!ftrace_probe_registered)
59df055f
SR
1968 return;
1969
1970 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1971 struct hlist_head *hhd = &ftrace_func_hash[i];
1972 if (hhd->first)
1973 return;
1974 }
1975
1976 /* no more funcs left */
b6887d79 1977 __unregister_ftrace_function(&trace_probe_ops);
59df055f 1978 ftrace_shutdown(0);
b6887d79 1979 ftrace_probe_registered = 0;
59df055f
SR
1980}
1981
1982
1983static void ftrace_free_entry_rcu(struct rcu_head *rhp)
1984{
b6887d79
SR
1985 struct ftrace_func_probe *entry =
1986 container_of(rhp, struct ftrace_func_probe, rcu);
59df055f
SR
1987
1988 if (entry->ops->free)
1989 entry->ops->free(&entry->data);
1990 kfree(entry);
1991}
1992
1993
1994int
b6887d79 1995register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
1996 void *data)
1997{
b6887d79 1998 struct ftrace_func_probe *entry;
59df055f
SR
1999 struct ftrace_page *pg;
2000 struct dyn_ftrace *rec;
59df055f 2001 int type, len, not;
6a24a244 2002 unsigned long key;
59df055f
SR
2003 int count = 0;
2004 char *search;
2005
3f6fe06d 2006 type = filter_parse_regex(glob, strlen(glob), &search, &not);
59df055f
SR
2007 len = strlen(search);
2008
b6887d79 2009 /* we do not support '!' for function probes */
59df055f
SR
2010 if (WARN_ON(not))
2011 return -EINVAL;
2012
2013 mutex_lock(&ftrace_lock);
59df055f 2014
45a4a237
SR
2015 if (unlikely(ftrace_disabled))
2016 goto out_unlock;
2017
2018 do_for_each_ftrace_rec(pg, rec) {
59df055f
SR
2019
2020 if (!ftrace_match_record(rec, search, len, type))
2021 continue;
2022
2023 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2024 if (!entry) {
b6887d79 2025 /* If we did not process any, then return error */
59df055f
SR
2026 if (!count)
2027 count = -ENOMEM;
2028 goto out_unlock;
2029 }
2030
2031 count++;
2032
2033 entry->data = data;
2034
2035 /*
2036 * The caller might want to do something special
2037 * for each function we find. We call the callback
2038 * to give the caller an opportunity to do so.
2039 */
2040 if (ops->callback) {
2041 if (ops->callback(rec->ip, &entry->data) < 0) {
2042 /* caller does not like this func */
2043 kfree(entry);
2044 continue;
2045 }
2046 }
2047
2048 entry->ops = ops;
2049 entry->ip = rec->ip;
2050
2051 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2052 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2053
2054 } while_for_each_ftrace_rec();
b6887d79 2055 __enable_ftrace_function_probe();
59df055f
SR
2056
2057 out_unlock:
2058 mutex_unlock(&ftrace_lock);
2059
2060 return count;
2061}
2062
2063enum {
b6887d79
SR
2064 PROBE_TEST_FUNC = 1,
2065 PROBE_TEST_DATA = 2
59df055f
SR
2066};
2067
2068static void
b6887d79 2069__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
2070 void *data, int flags)
2071{
b6887d79 2072 struct ftrace_func_probe *entry;
59df055f
SR
2073 struct hlist_node *n, *tmp;
2074 char str[KSYM_SYMBOL_LEN];
2075 int type = MATCH_FULL;
2076 int i, len = 0;
2077 char *search;
2078
b36461da 2079 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
59df055f 2080 glob = NULL;
b36461da 2081 else if (glob) {
59df055f
SR
2082 int not;
2083
3f6fe06d 2084 type = filter_parse_regex(glob, strlen(glob), &search, &not);
59df055f
SR
2085 len = strlen(search);
2086
b6887d79 2087 /* we do not support '!' for function probes */
59df055f
SR
2088 if (WARN_ON(not))
2089 return;
2090 }
2091
2092 mutex_lock(&ftrace_lock);
2093 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2094 struct hlist_head *hhd = &ftrace_func_hash[i];
2095
2096 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2097
2098 /* break up if statements for readability */
b6887d79 2099 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
59df055f
SR
2100 continue;
2101
b6887d79 2102 if ((flags & PROBE_TEST_DATA) && entry->data != data)
59df055f
SR
2103 continue;
2104
2105 /* do this last, since it is the most expensive */
2106 if (glob) {
2107 kallsyms_lookup(entry->ip, NULL, NULL,
2108 NULL, str);
2109 if (!ftrace_match(str, glob, len, type))
2110 continue;
2111 }
2112
2113 hlist_del(&entry->node);
2114 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2115 }
2116 }
b6887d79 2117 __disable_ftrace_function_probe();
59df055f
SR
2118 mutex_unlock(&ftrace_lock);
2119}
2120
2121void
b6887d79 2122unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
2123 void *data)
2124{
b6887d79
SR
2125 __unregister_ftrace_function_probe(glob, ops, data,
2126 PROBE_TEST_FUNC | PROBE_TEST_DATA);
59df055f
SR
2127}
2128
2129void
b6887d79 2130unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
59df055f 2131{
b6887d79 2132 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
59df055f
SR
2133}
2134
b6887d79 2135void unregister_ftrace_function_probe_all(char *glob)
59df055f 2136{
b6887d79 2137 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
59df055f
SR
2138}
2139
f6180773
SR
2140static LIST_HEAD(ftrace_commands);
2141static DEFINE_MUTEX(ftrace_cmd_mutex);
2142
2143int register_ftrace_command(struct ftrace_func_command *cmd)
2144{
2145 struct ftrace_func_command *p;
2146 int ret = 0;
2147
2148 mutex_lock(&ftrace_cmd_mutex);
2149 list_for_each_entry(p, &ftrace_commands, list) {
2150 if (strcmp(cmd->name, p->name) == 0) {
2151 ret = -EBUSY;
2152 goto out_unlock;
2153 }
2154 }
2155 list_add(&cmd->list, &ftrace_commands);
2156 out_unlock:
2157 mutex_unlock(&ftrace_cmd_mutex);
2158
2159 return ret;
2160}
2161
2162int unregister_ftrace_command(struct ftrace_func_command *cmd)
2163{
2164 struct ftrace_func_command *p, *n;
2165 int ret = -ENODEV;
2166
2167 mutex_lock(&ftrace_cmd_mutex);
2168 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2169 if (strcmp(cmd->name, p->name) == 0) {
2170 ret = 0;
2171 list_del_init(&p->list);
2172 goto out_unlock;
2173 }
2174 }
2175 out_unlock:
2176 mutex_unlock(&ftrace_cmd_mutex);
2177
2178 return ret;
2179}
2180
64e7c440
SR
2181static int ftrace_process_regex(char *buff, int len, int enable)
2182{
f6180773 2183 char *func, *command, *next = buff;
6a24a244 2184 struct ftrace_func_command *p;
f6180773 2185 int ret = -EINVAL;
64e7c440
SR
2186
2187 func = strsep(&next, ":");
2188
2189 if (!next) {
311d16da
LZ
2190 if (ftrace_match_records(func, len, enable))
2191 return 0;
2192 return ret;
64e7c440
SR
2193 }
2194
f6180773 2195 /* command found */
64e7c440
SR
2196
2197 command = strsep(&next, ":");
2198
f6180773
SR
2199 mutex_lock(&ftrace_cmd_mutex);
2200 list_for_each_entry(p, &ftrace_commands, list) {
2201 if (strcmp(p->name, command) == 0) {
2202 ret = p->func(func, command, next, enable);
2203 goto out_unlock;
2204 }
64e7c440 2205 }
f6180773
SR
2206 out_unlock:
2207 mutex_unlock(&ftrace_cmd_mutex);
64e7c440 2208
f6180773 2209 return ret;
64e7c440
SR
2210}
2211
e309b41d 2212static ssize_t
41c52c0d
SR
2213ftrace_regex_write(struct file *file, const char __user *ubuf,
2214 size_t cnt, loff_t *ppos, int enable)
5072c59f
SR
2215{
2216 struct ftrace_iterator *iter;
689fd8b6 2217 struct trace_parser *parser;
2218 ssize_t ret, read;
5072c59f 2219
4ba7978e 2220 if (!cnt)
5072c59f
SR
2221 return 0;
2222
41c52c0d 2223 mutex_lock(&ftrace_regex_lock);
5072c59f 2224
45a4a237
SR
2225 ret = -ENODEV;
2226 if (unlikely(ftrace_disabled))
2227 goto out_unlock;
2228
5072c59f
SR
2229 if (file->f_mode & FMODE_READ) {
2230 struct seq_file *m = file->private_data;
2231 iter = m->private;
2232 } else
2233 iter = file->private_data;
2234
689fd8b6 2235 parser = &iter->parser;
2236 read = trace_get_user(parser, ubuf, cnt, ppos);
5072c59f 2237
4ba7978e 2238 if (read >= 0 && trace_parser_loaded(parser) &&
689fd8b6 2239 !trace_parser_cont(parser)) {
2240 ret = ftrace_process_regex(parser->buffer,
2241 parser->idx, enable);
313254a9 2242 trace_parser_clear(parser);
5072c59f 2243 if (ret)
ed146b25 2244 goto out_unlock;
eda1e328 2245 }
5072c59f 2246
5072c59f 2247 ret = read;
ed146b25 2248out_unlock:
689fd8b6 2249 mutex_unlock(&ftrace_regex_lock);
ed146b25 2250
5072c59f
SR
2251 return ret;
2252}
2253
41c52c0d
SR
2254static ssize_t
2255ftrace_filter_write(struct file *file, const char __user *ubuf,
2256 size_t cnt, loff_t *ppos)
2257{
2258 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
2259}
2260
2261static ssize_t
2262ftrace_notrace_write(struct file *file, const char __user *ubuf,
2263 size_t cnt, loff_t *ppos)
2264{
2265 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
2266}
2267
2268static void
2269ftrace_set_regex(unsigned char *buf, int len, int reset, int enable)
2270{
2271 if (unlikely(ftrace_disabled))
2272 return;
2273
2274 mutex_lock(&ftrace_regex_lock);
2275 if (reset)
2276 ftrace_filter_reset(enable);
2277 if (buf)
7f24b31b 2278 ftrace_match_records(buf, len, enable);
41c52c0d
SR
2279 mutex_unlock(&ftrace_regex_lock);
2280}
2281
77a2b37d
SR
2282/**
2283 * ftrace_set_filter - set a function to filter on in ftrace
2284 * @buf - the string that holds the function filter text.
2285 * @len - the length of the string.
2286 * @reset - non zero to reset all filters before applying this filter.
2287 *
2288 * Filters denote which functions should be enabled when tracing is enabled.
2289 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2290 */
e309b41d 2291void ftrace_set_filter(unsigned char *buf, int len, int reset)
77a2b37d 2292{
41c52c0d
SR
2293 ftrace_set_regex(buf, len, reset, 1);
2294}
4eebcc81 2295
41c52c0d
SR
2296/**
2297 * ftrace_set_notrace - set a function to not trace in ftrace
2298 * @buf - the string that holds the function notrace text.
2299 * @len - the length of the string.
2300 * @reset - non zero to reset all filters before applying this filter.
2301 *
2302 * Notrace Filters denote which functions should not be enabled when tracing
2303 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2304 * for tracing.
2305 */
2306void ftrace_set_notrace(unsigned char *buf, int len, int reset)
2307{
2308 ftrace_set_regex(buf, len, reset, 0);
77a2b37d
SR
2309}
2310
2af15d6a
SR
2311/*
2312 * command line interface to allow users to set filters on boot up.
2313 */
2314#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2315static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
2316static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
2317
2318static int __init set_ftrace_notrace(char *str)
2319{
2320 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
2321 return 1;
2322}
2323__setup("ftrace_notrace=", set_ftrace_notrace);
2324
2325static int __init set_ftrace_filter(char *str)
2326{
2327 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
2328 return 1;
2329}
2330__setup("ftrace_filter=", set_ftrace_filter);
2331
369bc18f 2332#ifdef CONFIG_FUNCTION_GRAPH_TRACER
f6060f46 2333static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
801c29fd
SR
2334static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
2335
369bc18f
SA
2336static int __init set_graph_function(char *str)
2337{
06f43d66 2338 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
369bc18f
SA
2339 return 1;
2340}
2341__setup("ftrace_graph_filter=", set_graph_function);
2342
2343static void __init set_ftrace_early_graph(char *buf)
2344{
2345 int ret;
2346 char *func;
2347
2348 while (buf) {
2349 func = strsep(&buf, ",");
2350 /* we allow only one expression at a time */
2351 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
2352 func);
2353 if (ret)
2354 printk(KERN_DEBUG "ftrace: function %s not "
2355 "traceable\n", func);
2356 }
2357}
2358#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2359
2af15d6a
SR
2360static void __init set_ftrace_early_filter(char *buf, int enable)
2361{
2362 char *func;
2363
2364 while (buf) {
2365 func = strsep(&buf, ",");
2366 ftrace_set_regex(func, strlen(func), 0, enable);
2367 }
2368}
2369
2370static void __init set_ftrace_early_filters(void)
2371{
2372 if (ftrace_filter_buf[0])
2373 set_ftrace_early_filter(ftrace_filter_buf, 1);
2374 if (ftrace_notrace_buf[0])
2375 set_ftrace_early_filter(ftrace_notrace_buf, 0);
369bc18f
SA
2376#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2377 if (ftrace_graph_buf[0])
2378 set_ftrace_early_graph(ftrace_graph_buf);
2379#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2af15d6a
SR
2380}
2381
e309b41d 2382static int
41c52c0d 2383ftrace_regex_release(struct inode *inode, struct file *file, int enable)
5072c59f
SR
2384{
2385 struct seq_file *m = (struct seq_file *)file->private_data;
2386 struct ftrace_iterator *iter;
689fd8b6 2387 struct trace_parser *parser;
5072c59f 2388
41c52c0d 2389 mutex_lock(&ftrace_regex_lock);
5072c59f
SR
2390 if (file->f_mode & FMODE_READ) {
2391 iter = m->private;
2392
2393 seq_release(inode, file);
2394 } else
2395 iter = file->private_data;
2396
689fd8b6 2397 parser = &iter->parser;
2398 if (trace_parser_loaded(parser)) {
2399 parser->buffer[parser->idx] = 0;
2400 ftrace_match_records(parser->buffer, parser->idx, enable);
5072c59f
SR
2401 }
2402
e6ea44e9 2403 mutex_lock(&ftrace_lock);
ee02a2e5 2404 if (ftrace_start_up && ftrace_enabled)
5072c59f 2405 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
e6ea44e9 2406 mutex_unlock(&ftrace_lock);
5072c59f 2407
689fd8b6 2408 trace_parser_put(parser);
5072c59f 2409 kfree(iter);
689fd8b6 2410
41c52c0d 2411 mutex_unlock(&ftrace_regex_lock);
5072c59f
SR
2412 return 0;
2413}
2414
41c52c0d
SR
2415static int
2416ftrace_filter_release(struct inode *inode, struct file *file)
2417{
2418 return ftrace_regex_release(inode, file, 1);
2419}
2420
2421static int
2422ftrace_notrace_release(struct inode *inode, struct file *file)
2423{
2424 return ftrace_regex_release(inode, file, 0);
2425}
2426
5e2336a0 2427static const struct file_operations ftrace_avail_fops = {
5072c59f
SR
2428 .open = ftrace_avail_open,
2429 .read = seq_read,
2430 .llseek = seq_lseek,
3be04b47 2431 .release = seq_release_private,
5072c59f
SR
2432};
2433
5e2336a0 2434static const struct file_operations ftrace_filter_fops = {
5072c59f 2435 .open = ftrace_filter_open,
850a80cf 2436 .read = seq_read,
5072c59f 2437 .write = ftrace_filter_write,
98c4fd04 2438 .llseek = ftrace_regex_lseek,
5072c59f
SR
2439 .release = ftrace_filter_release,
2440};
2441
5e2336a0 2442static const struct file_operations ftrace_notrace_fops = {
41c52c0d 2443 .open = ftrace_notrace_open,
850a80cf 2444 .read = seq_read,
41c52c0d
SR
2445 .write = ftrace_notrace_write,
2446 .llseek = ftrace_regex_lseek,
2447 .release = ftrace_notrace_release,
2448};
2449
ea4e2bc4
SR
2450#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2451
2452static DEFINE_MUTEX(graph_lock);
2453
2454int ftrace_graph_count;
c7c6b1fe 2455int ftrace_graph_filter_enabled;
ea4e2bc4
SR
2456unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
2457
2458static void *
85951842 2459__g_next(struct seq_file *m, loff_t *pos)
ea4e2bc4 2460{
85951842 2461 if (*pos >= ftrace_graph_count)
ea4e2bc4 2462 return NULL;
a4ec5e0c 2463 return &ftrace_graph_funcs[*pos];
85951842 2464}
ea4e2bc4 2465
85951842
LZ
2466static void *
2467g_next(struct seq_file *m, void *v, loff_t *pos)
2468{
2469 (*pos)++;
2470 return __g_next(m, pos);
ea4e2bc4
SR
2471}
2472
2473static void *g_start(struct seq_file *m, loff_t *pos)
2474{
ea4e2bc4
SR
2475 mutex_lock(&graph_lock);
2476
f9349a8f 2477 /* Nothing, tell g_show to print all functions are enabled */
c7c6b1fe 2478 if (!ftrace_graph_filter_enabled && !*pos)
f9349a8f
FW
2479 return (void *)1;
2480
85951842 2481 return __g_next(m, pos);
ea4e2bc4
SR
2482}
2483
2484static void g_stop(struct seq_file *m, void *p)
2485{
2486 mutex_unlock(&graph_lock);
2487}
2488
2489static int g_show(struct seq_file *m, void *v)
2490{
2491 unsigned long *ptr = v;
ea4e2bc4
SR
2492
2493 if (!ptr)
2494 return 0;
2495
f9349a8f
FW
2496 if (ptr == (unsigned long *)1) {
2497 seq_printf(m, "#### all functions enabled ####\n");
2498 return 0;
2499 }
2500
b375a11a 2501 seq_printf(m, "%ps\n", (void *)*ptr);
ea4e2bc4
SR
2502
2503 return 0;
2504}
2505
88e9d34c 2506static const struct seq_operations ftrace_graph_seq_ops = {
ea4e2bc4
SR
2507 .start = g_start,
2508 .next = g_next,
2509 .stop = g_stop,
2510 .show = g_show,
2511};
2512
2513static int
2514ftrace_graph_open(struct inode *inode, struct file *file)
2515{
2516 int ret = 0;
2517
2518 if (unlikely(ftrace_disabled))
2519 return -ENODEV;
2520
2521 mutex_lock(&graph_lock);
2522 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 2523 (file->f_flags & O_TRUNC)) {
c7c6b1fe 2524 ftrace_graph_filter_enabled = 0;
ea4e2bc4
SR
2525 ftrace_graph_count = 0;
2526 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
2527 }
a4ec5e0c 2528 mutex_unlock(&graph_lock);
ea4e2bc4 2529
a4ec5e0c 2530 if (file->f_mode & FMODE_READ)
ea4e2bc4 2531 ret = seq_open(file, &ftrace_graph_seq_ops);
ea4e2bc4
SR
2532
2533 return ret;
2534}
2535
87827111
LZ
2536static int
2537ftrace_graph_release(struct inode *inode, struct file *file)
2538{
2539 if (file->f_mode & FMODE_READ)
2540 seq_release(inode, file);
2541 return 0;
2542}
2543
ea4e2bc4 2544static int
f9349a8f 2545ftrace_set_func(unsigned long *array, int *idx, char *buffer)
ea4e2bc4 2546{
ea4e2bc4
SR
2547 struct dyn_ftrace *rec;
2548 struct ftrace_page *pg;
f9349a8f 2549 int search_len;
c7c6b1fe 2550 int fail = 1;
f9349a8f
FW
2551 int type, not;
2552 char *search;
2553 bool exists;
2554 int i;
ea4e2bc4 2555
f9349a8f 2556 /* decode regex */
3f6fe06d 2557 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
c7c6b1fe
LZ
2558 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
2559 return -EBUSY;
f9349a8f
FW
2560
2561 search_len = strlen(search);
2562
52baf119 2563 mutex_lock(&ftrace_lock);
45a4a237
SR
2564
2565 if (unlikely(ftrace_disabled)) {
2566 mutex_unlock(&ftrace_lock);
2567 return -ENODEV;
2568 }
2569
265c831c
SR
2570 do_for_each_ftrace_rec(pg, rec) {
2571
45a4a237 2572 if (rec->flags & FTRACE_FL_FREE)
265c831c
SR
2573 continue;
2574
f9349a8f 2575 if (ftrace_match_record(rec, search, search_len, type)) {
c7c6b1fe 2576 /* if it is in the array */
f9349a8f 2577 exists = false;
c7c6b1fe 2578 for (i = 0; i < *idx; i++) {
f9349a8f
FW
2579 if (array[i] == rec->ip) {
2580 exists = true;
265c831c
SR
2581 break;
2582 }
c7c6b1fe
LZ
2583 }
2584
2585 if (!not) {
2586 fail = 0;
2587 if (!exists) {
2588 array[(*idx)++] = rec->ip;
2589 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
2590 goto out;
2591 }
2592 } else {
2593 if (exists) {
2594 array[i] = array[--(*idx)];
2595 array[*idx] = 0;
2596 fail = 0;
2597 }
2598 }
ea4e2bc4 2599 }
265c831c 2600 } while_for_each_ftrace_rec();
c7c6b1fe 2601out:
52baf119 2602 mutex_unlock(&ftrace_lock);
ea4e2bc4 2603
c7c6b1fe
LZ
2604 if (fail)
2605 return -EINVAL;
2606
2607 ftrace_graph_filter_enabled = 1;
2608 return 0;
ea4e2bc4
SR
2609}
2610
2611static ssize_t
2612ftrace_graph_write(struct file *file, const char __user *ubuf,
2613 size_t cnt, loff_t *ppos)
2614{
689fd8b6 2615 struct trace_parser parser;
4ba7978e 2616 ssize_t read, ret;
ea4e2bc4 2617
c7c6b1fe 2618 if (!cnt)
ea4e2bc4
SR
2619 return 0;
2620
2621 mutex_lock(&graph_lock);
2622
689fd8b6 2623 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
2624 ret = -ENOMEM;
1eb90f13 2625 goto out_unlock;
ea4e2bc4
SR
2626 }
2627
689fd8b6 2628 read = trace_get_user(&parser, ubuf, cnt, ppos);
ea4e2bc4 2629
4ba7978e 2630 if (read >= 0 && trace_parser_loaded((&parser))) {
689fd8b6 2631 parser.buffer[parser.idx] = 0;
2632
2633 /* we allow only one expression at a time */
a4ec5e0c 2634 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
689fd8b6 2635 parser.buffer);
ea4e2bc4 2636 if (ret)
1eb90f13 2637 goto out_free;
ea4e2bc4 2638 }
ea4e2bc4
SR
2639
2640 ret = read;
1eb90f13
LZ
2641
2642out_free:
689fd8b6 2643 trace_parser_put(&parser);
1eb90f13 2644out_unlock:
ea4e2bc4
SR
2645 mutex_unlock(&graph_lock);
2646
2647 return ret;
2648}
2649
2650static const struct file_operations ftrace_graph_fops = {
87827111
LZ
2651 .open = ftrace_graph_open,
2652 .read = seq_read,
2653 .write = ftrace_graph_write,
2654 .release = ftrace_graph_release,
6038f373 2655 .llseek = seq_lseek,
ea4e2bc4
SR
2656};
2657#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2658
df4fc315 2659static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
5072c59f 2660{
5072c59f 2661
5452af66
FW
2662 trace_create_file("available_filter_functions", 0444,
2663 d_tracer, NULL, &ftrace_avail_fops);
5072c59f 2664
5452af66
FW
2665 trace_create_file("set_ftrace_filter", 0644, d_tracer,
2666 NULL, &ftrace_filter_fops);
41c52c0d 2667
5452af66 2668 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
41c52c0d 2669 NULL, &ftrace_notrace_fops);
ad90c0e3 2670
ea4e2bc4 2671#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5452af66 2672 trace_create_file("set_graph_function", 0444, d_tracer,
ea4e2bc4
SR
2673 NULL,
2674 &ftrace_graph_fops);
ea4e2bc4
SR
2675#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2676
5072c59f
SR
2677 return 0;
2678}
2679
5cb084bb 2680static int ftrace_process_locs(struct module *mod,
31e88909 2681 unsigned long *start,
68bf21aa
SR
2682 unsigned long *end)
2683{
2684 unsigned long *p;
2685 unsigned long addr;
68bf21aa 2686
e6ea44e9 2687 mutex_lock(&ftrace_lock);
68bf21aa
SR
2688 p = start;
2689 while (p < end) {
2690 addr = ftrace_call_adjust(*p++);
20e5227e
SR
2691 /*
2692 * Some architecture linkers will pad between
2693 * the different mcount_loc sections of different
2694 * object files to satisfy alignments.
2695 * Skip any NULL pointers.
2696 */
2697 if (!addr)
2698 continue;
68bf21aa 2699 ftrace_record_ip(addr);
68bf21aa
SR
2700 }
2701
31e88909 2702 ftrace_update_code(mod);
e6ea44e9 2703 mutex_unlock(&ftrace_lock);
68bf21aa
SR
2704
2705 return 0;
2706}
2707
93eb677d 2708#ifdef CONFIG_MODULES
e7247a15 2709void ftrace_release_mod(struct module *mod)
93eb677d
SR
2710{
2711 struct dyn_ftrace *rec;
2712 struct ftrace_page *pg;
93eb677d 2713
45a4a237
SR
2714 mutex_lock(&ftrace_lock);
2715
e7247a15 2716 if (ftrace_disabled)
45a4a237 2717 goto out_unlock;
93eb677d 2718
93eb677d 2719 do_for_each_ftrace_rec(pg, rec) {
e7247a15 2720 if (within_module_core(rec->ip, mod)) {
93eb677d
SR
2721 /*
2722 * rec->ip is changed in ftrace_free_rec()
2723 * It should not between s and e if record was freed.
2724 */
2725 FTRACE_WARN_ON(rec->flags & FTRACE_FL_FREE);
2726 ftrace_free_rec(rec);
2727 }
2728 } while_for_each_ftrace_rec();
45a4a237 2729 out_unlock:
93eb677d
SR
2730 mutex_unlock(&ftrace_lock);
2731}
2732
2733static void ftrace_init_module(struct module *mod,
2734 unsigned long *start, unsigned long *end)
90d595fe 2735{
00fd61ae 2736 if (ftrace_disabled || start == end)
fed1939c 2737 return;
5cb084bb 2738 ftrace_process_locs(mod, start, end);
90d595fe
SR
2739}
2740
93eb677d
SR
2741static int ftrace_module_notify(struct notifier_block *self,
2742 unsigned long val, void *data)
2743{
2744 struct module *mod = data;
2745
2746 switch (val) {
2747 case MODULE_STATE_COMING:
2748 ftrace_init_module(mod, mod->ftrace_callsites,
2749 mod->ftrace_callsites +
2750 mod->num_ftrace_callsites);
2751 break;
2752 case MODULE_STATE_GOING:
e7247a15 2753 ftrace_release_mod(mod);
93eb677d
SR
2754 break;
2755 }
2756
2757 return 0;
2758}
2759#else
2760static int ftrace_module_notify(struct notifier_block *self,
2761 unsigned long val, void *data)
2762{
2763 return 0;
2764}
2765#endif /* CONFIG_MODULES */
2766
2767struct notifier_block ftrace_module_nb = {
2768 .notifier_call = ftrace_module_notify,
2769 .priority = 0,
2770};
2771
68bf21aa
SR
2772extern unsigned long __start_mcount_loc[];
2773extern unsigned long __stop_mcount_loc[];
2774
2775void __init ftrace_init(void)
2776{
2777 unsigned long count, addr, flags;
2778 int ret;
2779
2780 /* Keep the ftrace pointer to the stub */
2781 addr = (unsigned long)ftrace_stub;
2782
2783 local_irq_save(flags);
2784 ftrace_dyn_arch_init(&addr);
2785 local_irq_restore(flags);
2786
2787 /* ftrace_dyn_arch_init places the return code in addr */
2788 if (addr)
2789 goto failed;
2790
2791 count = __stop_mcount_loc - __start_mcount_loc;
2792
2793 ret = ftrace_dyn_table_alloc(count);
2794 if (ret)
2795 goto failed;
2796
2797 last_ftrace_enabled = ftrace_enabled = 1;
2798
5cb084bb 2799 ret = ftrace_process_locs(NULL,
31e88909 2800 __start_mcount_loc,
68bf21aa
SR
2801 __stop_mcount_loc);
2802
93eb677d 2803 ret = register_module_notifier(&ftrace_module_nb);
24ed0c4b 2804 if (ret)
93eb677d
SR
2805 pr_warning("Failed to register trace ftrace module notifier\n");
2806
2af15d6a
SR
2807 set_ftrace_early_filters();
2808
68bf21aa
SR
2809 return;
2810 failed:
2811 ftrace_disabled = 1;
2812}
68bf21aa 2813
3d083395 2814#else
0b6e4d56
FW
2815
2816static int __init ftrace_nodyn_init(void)
2817{
2818 ftrace_enabled = 1;
2819 return 0;
2820}
2821device_initcall(ftrace_nodyn_init);
2822
df4fc315
SR
2823static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
2824static inline void ftrace_startup_enable(int command) { }
5a45cfe1
SR
2825/* Keep as macros so we do not need to define the commands */
2826# define ftrace_startup(command) do { } while (0)
2827# define ftrace_shutdown(command) do { } while (0)
c7aafc54
IM
2828# define ftrace_startup_sysctl() do { } while (0)
2829# define ftrace_shutdown_sysctl() do { } while (0)
3d083395
SR
2830#endif /* CONFIG_DYNAMIC_FTRACE */
2831
e32d8956 2832static void clear_ftrace_swapper(void)
978f3a45
SR
2833{
2834 struct task_struct *p;
e32d8956 2835 int cpu;
978f3a45 2836
e32d8956
SR
2837 get_online_cpus();
2838 for_each_online_cpu(cpu) {
2839 p = idle_task(cpu);
978f3a45 2840 clear_tsk_trace_trace(p);
e32d8956
SR
2841 }
2842 put_online_cpus();
2843}
978f3a45 2844
e32d8956
SR
2845static void set_ftrace_swapper(void)
2846{
2847 struct task_struct *p;
2848 int cpu;
2849
2850 get_online_cpus();
2851 for_each_online_cpu(cpu) {
2852 p = idle_task(cpu);
2853 set_tsk_trace_trace(p);
2854 }
2855 put_online_cpus();
978f3a45
SR
2856}
2857
e32d8956
SR
2858static void clear_ftrace_pid(struct pid *pid)
2859{
2860 struct task_struct *p;
2861
229c4ef8 2862 rcu_read_lock();
e32d8956
SR
2863 do_each_pid_task(pid, PIDTYPE_PID, p) {
2864 clear_tsk_trace_trace(p);
2865 } while_each_pid_task(pid, PIDTYPE_PID, p);
229c4ef8
ON
2866 rcu_read_unlock();
2867
e32d8956
SR
2868 put_pid(pid);
2869}
2870
2871static void set_ftrace_pid(struct pid *pid)
978f3a45
SR
2872{
2873 struct task_struct *p;
2874
229c4ef8 2875 rcu_read_lock();
978f3a45
SR
2876 do_each_pid_task(pid, PIDTYPE_PID, p) {
2877 set_tsk_trace_trace(p);
2878 } while_each_pid_task(pid, PIDTYPE_PID, p);
229c4ef8 2879 rcu_read_unlock();
978f3a45
SR
2880}
2881
756d17ee 2882static void clear_ftrace_pid_task(struct pid *pid)
e32d8956 2883{
756d17ee 2884 if (pid == ftrace_swapper_pid)
e32d8956
SR
2885 clear_ftrace_swapper();
2886 else
756d17ee 2887 clear_ftrace_pid(pid);
e32d8956
SR
2888}
2889
2890static void set_ftrace_pid_task(struct pid *pid)
2891{
2892 if (pid == ftrace_swapper_pid)
2893 set_ftrace_swapper();
2894 else
2895 set_ftrace_pid(pid);
2896}
2897
756d17ee 2898static int ftrace_pid_add(int p)
df4fc315 2899{
978f3a45 2900 struct pid *pid;
756d17ee 2901 struct ftrace_pid *fpid;
2902 int ret = -EINVAL;
df4fc315 2903
756d17ee 2904 mutex_lock(&ftrace_lock);
df4fc315 2905
756d17ee 2906 if (!p)
2907 pid = ftrace_swapper_pid;
2908 else
2909 pid = find_get_pid(p);
df4fc315 2910
756d17ee 2911 if (!pid)
2912 goto out;
df4fc315 2913
756d17ee 2914 ret = 0;
df4fc315 2915
756d17ee 2916 list_for_each_entry(fpid, &ftrace_pids, list)
2917 if (fpid->pid == pid)
2918 goto out_put;
978f3a45 2919
756d17ee 2920 ret = -ENOMEM;
df4fc315 2921
756d17ee 2922 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
2923 if (!fpid)
2924 goto out_put;
df4fc315 2925
756d17ee 2926 list_add(&fpid->list, &ftrace_pids);
2927 fpid->pid = pid;
0ef8cde5 2928
756d17ee 2929 set_ftrace_pid_task(pid);
978f3a45 2930
756d17ee 2931 ftrace_update_pid_func();
2932 ftrace_startup_enable(0);
2933
2934 mutex_unlock(&ftrace_lock);
2935 return 0;
2936
2937out_put:
2938 if (pid != ftrace_swapper_pid)
2939 put_pid(pid);
978f3a45 2940
756d17ee 2941out:
2942 mutex_unlock(&ftrace_lock);
2943 return ret;
2944}
2945
2946static void ftrace_pid_reset(void)
2947{
2948 struct ftrace_pid *fpid, *safe;
978f3a45 2949
756d17ee 2950 mutex_lock(&ftrace_lock);
2951 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
2952 struct pid *pid = fpid->pid;
2953
2954 clear_ftrace_pid_task(pid);
2955
2956 list_del(&fpid->list);
2957 kfree(fpid);
df4fc315
SR
2958 }
2959
df4fc315
SR
2960 ftrace_update_pid_func();
2961 ftrace_startup_enable(0);
2962
e6ea44e9 2963 mutex_unlock(&ftrace_lock);
756d17ee 2964}
df4fc315 2965
756d17ee 2966static void *fpid_start(struct seq_file *m, loff_t *pos)
2967{
2968 mutex_lock(&ftrace_lock);
2969
2970 if (list_empty(&ftrace_pids) && (!*pos))
2971 return (void *) 1;
2972
2973 return seq_list_start(&ftrace_pids, *pos);
2974}
2975
2976static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
2977{
2978 if (v == (void *)1)
2979 return NULL;
2980
2981 return seq_list_next(v, &ftrace_pids, pos);
2982}
2983
2984static void fpid_stop(struct seq_file *m, void *p)
2985{
2986 mutex_unlock(&ftrace_lock);
2987}
2988
2989static int fpid_show(struct seq_file *m, void *v)
2990{
2991 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
2992
2993 if (v == (void *)1) {
2994 seq_printf(m, "no pid\n");
2995 return 0;
2996 }
2997
2998 if (fpid->pid == ftrace_swapper_pid)
2999 seq_printf(m, "swapper tasks\n");
3000 else
3001 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
3002
3003 return 0;
3004}
3005
3006static const struct seq_operations ftrace_pid_sops = {
3007 .start = fpid_start,
3008 .next = fpid_next,
3009 .stop = fpid_stop,
3010 .show = fpid_show,
3011};
3012
3013static int
3014ftrace_pid_open(struct inode *inode, struct file *file)
3015{
3016 int ret = 0;
3017
3018 if ((file->f_mode & FMODE_WRITE) &&
3019 (file->f_flags & O_TRUNC))
3020 ftrace_pid_reset();
3021
3022 if (file->f_mode & FMODE_READ)
3023 ret = seq_open(file, &ftrace_pid_sops);
3024
3025 return ret;
3026}
3027
df4fc315
SR
3028static ssize_t
3029ftrace_pid_write(struct file *filp, const char __user *ubuf,
3030 size_t cnt, loff_t *ppos)
3031{
457dc928 3032 char buf[64], *tmp;
df4fc315
SR
3033 long val;
3034 int ret;
3035
3036 if (cnt >= sizeof(buf))
3037 return -EINVAL;
3038
3039 if (copy_from_user(&buf, ubuf, cnt))
3040 return -EFAULT;
3041
3042 buf[cnt] = 0;
3043
756d17ee 3044 /*
3045 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3046 * to clean the filter quietly.
3047 */
457dc928
IM
3048 tmp = strstrip(buf);
3049 if (strlen(tmp) == 0)
756d17ee 3050 return 1;
3051
457dc928 3052 ret = strict_strtol(tmp, 10, &val);
df4fc315
SR
3053 if (ret < 0)
3054 return ret;
3055
756d17ee 3056 ret = ftrace_pid_add(val);
df4fc315 3057
756d17ee 3058 return ret ? ret : cnt;
3059}
df4fc315 3060
756d17ee 3061static int
3062ftrace_pid_release(struct inode *inode, struct file *file)
3063{
3064 if (file->f_mode & FMODE_READ)
3065 seq_release(inode, file);
df4fc315 3066
756d17ee 3067 return 0;
df4fc315
SR
3068}
3069
5e2336a0 3070static const struct file_operations ftrace_pid_fops = {
756d17ee 3071 .open = ftrace_pid_open,
3072 .write = ftrace_pid_write,
3073 .read = seq_read,
3074 .llseek = seq_lseek,
3075 .release = ftrace_pid_release,
df4fc315
SR
3076};
3077
3078static __init int ftrace_init_debugfs(void)
3079{
3080 struct dentry *d_tracer;
df4fc315
SR
3081
3082 d_tracer = tracing_init_dentry();
3083 if (!d_tracer)
3084 return 0;
3085
3086 ftrace_init_dyn_debugfs(d_tracer);
3087
5452af66
FW
3088 trace_create_file("set_ftrace_pid", 0644, d_tracer,
3089 NULL, &ftrace_pid_fops);
493762fc
SR
3090
3091 ftrace_profile_debugfs(d_tracer);
3092
df4fc315
SR
3093 return 0;
3094}
df4fc315
SR
3095fs_initcall(ftrace_init_debugfs);
3096
a2bb6a3d 3097/**
81adbdc0 3098 * ftrace_kill - kill ftrace
a2bb6a3d
SR
3099 *
3100 * This function should be used by panic code. It stops ftrace
3101 * but in a not so nice way. If you need to simply kill ftrace
3102 * from a non-atomic section, use ftrace_kill.
3103 */
81adbdc0 3104void ftrace_kill(void)
a2bb6a3d
SR
3105{
3106 ftrace_disabled = 1;
3107 ftrace_enabled = 0;
a2bb6a3d
SR
3108 clear_ftrace_function();
3109}
3110
16444a8a 3111/**
3d083395
SR
3112 * register_ftrace_function - register a function for profiling
3113 * @ops - ops structure that holds the function for profiling.
16444a8a 3114 *
3d083395
SR
3115 * Register a function to be called by all functions in the
3116 * kernel.
3117 *
3118 * Note: @ops->func and all the functions it calls must be labeled
3119 * with "notrace", otherwise it will go into a
3120 * recursive loop.
16444a8a 3121 */
3d083395 3122int register_ftrace_function(struct ftrace_ops *ops)
16444a8a 3123{
45a4a237 3124 int ret = -1;
4eebcc81 3125
e6ea44e9 3126 mutex_lock(&ftrace_lock);
e7d3737e 3127
45a4a237
SR
3128 if (unlikely(ftrace_disabled))
3129 goto out_unlock;
3130
b0fc494f 3131 ret = __register_ftrace_function(ops);
5a45cfe1 3132 ftrace_startup(0);
b0fc494f 3133
45a4a237 3134 out_unlock:
e6ea44e9 3135 mutex_unlock(&ftrace_lock);
b0fc494f 3136 return ret;
3d083395
SR
3137}
3138
3139/**
32632920 3140 * unregister_ftrace_function - unregister a function for profiling.
3d083395
SR
3141 * @ops - ops structure that holds the function to unregister
3142 *
3143 * Unregister a function that was added to be called by ftrace profiling.
3144 */
3145int unregister_ftrace_function(struct ftrace_ops *ops)
3146{
3147 int ret;
3148
e6ea44e9 3149 mutex_lock(&ftrace_lock);
3d083395 3150 ret = __unregister_ftrace_function(ops);
5a45cfe1 3151 ftrace_shutdown(0);
e6ea44e9 3152 mutex_unlock(&ftrace_lock);
b0fc494f
SR
3153
3154 return ret;
3155}
3156
e309b41d 3157int
b0fc494f 3158ftrace_enable_sysctl(struct ctl_table *table, int write,
8d65af78 3159 void __user *buffer, size_t *lenp,
b0fc494f
SR
3160 loff_t *ppos)
3161{
45a4a237 3162 int ret = -ENODEV;
4eebcc81 3163
e6ea44e9 3164 mutex_lock(&ftrace_lock);
b0fc494f 3165
45a4a237
SR
3166 if (unlikely(ftrace_disabled))
3167 goto out;
3168
3169 ret = proc_dointvec(table, write, buffer, lenp, ppos);
b0fc494f 3170
a32c7765 3171 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
b0fc494f
SR
3172 goto out;
3173
a32c7765 3174 last_ftrace_enabled = !!ftrace_enabled;
b0fc494f
SR
3175
3176 if (ftrace_enabled) {
3177
3178 ftrace_startup_sysctl();
3179
3180 /* we are starting ftrace again */
3181 if (ftrace_list != &ftrace_list_end) {
3182 if (ftrace_list->next == &ftrace_list_end)
3183 ftrace_trace_function = ftrace_list->func;
3184 else
3185 ftrace_trace_function = ftrace_list_func;
3186 }
3187
3188 } else {
3189 /* stopping ftrace calls (just send to ftrace_stub) */
3190 ftrace_trace_function = ftrace_stub;
3191
3192 ftrace_shutdown_sysctl();
3193 }
3194
3195 out:
e6ea44e9 3196 mutex_unlock(&ftrace_lock);
3d083395 3197 return ret;
16444a8a 3198}
f17845e5 3199
fb52607a 3200#ifdef CONFIG_FUNCTION_GRAPH_TRACER
e7d3737e 3201
597af815 3202static int ftrace_graph_active;
4a2b8dda 3203static struct notifier_block ftrace_suspend_notifier;
e7d3737e 3204
e49dc19c
SR
3205int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
3206{
3207 return 0;
3208}
3209
287b6e68
FW
3210/* The callbacks that hook a function */
3211trace_func_graph_ret_t ftrace_graph_return =
3212 (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 3213trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
f201ae23
FW
3214
3215/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3216static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
3217{
3218 int i;
3219 int ret = 0;
3220 unsigned long flags;
3221 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
3222 struct task_struct *g, *t;
3223
3224 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
3225 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
3226 * sizeof(struct ftrace_ret_stack),
3227 GFP_KERNEL);
3228 if (!ret_stack_list[i]) {
3229 start = 0;
3230 end = i;
3231 ret = -ENOMEM;
3232 goto free;
3233 }
3234 }
3235
3236 read_lock_irqsave(&tasklist_lock, flags);
3237 do_each_thread(g, t) {
3238 if (start == end) {
3239 ret = -EAGAIN;
3240 goto unlock;
3241 }
3242
3243 if (t->ret_stack == NULL) {
380c4b14 3244 atomic_set(&t->tracing_graph_pause, 0);
f201ae23 3245 atomic_set(&t->trace_overrun, 0);
26c01624
SR
3246 t->curr_ret_stack = -1;
3247 /* Make sure the tasks see the -1 first: */
3248 smp_wmb();
3249 t->ret_stack = ret_stack_list[start++];
f201ae23
FW
3250 }
3251 } while_each_thread(g, t);
3252
3253unlock:
3254 read_unlock_irqrestore(&tasklist_lock, flags);
3255free:
3256 for (i = start; i < end; i++)
3257 kfree(ret_stack_list[i]);
3258 return ret;
3259}
3260
8aef2d28 3261static void
38516ab5
SR
3262ftrace_graph_probe_sched_switch(void *ignore,
3263 struct task_struct *prev, struct task_struct *next)
8aef2d28
SR
3264{
3265 unsigned long long timestamp;
3266 int index;
3267
be6f164a
SR
3268 /*
3269 * Does the user want to count the time a function was asleep.
3270 * If so, do not update the time stamps.
3271 */
3272 if (trace_flags & TRACE_ITER_SLEEP_TIME)
3273 return;
3274
8aef2d28
SR
3275 timestamp = trace_clock_local();
3276
3277 prev->ftrace_timestamp = timestamp;
3278
3279 /* only process tasks that we timestamped */
3280 if (!next->ftrace_timestamp)
3281 return;
3282
3283 /*
3284 * Update all the counters in next to make up for the
3285 * time next was sleeping.
3286 */
3287 timestamp -= next->ftrace_timestamp;
3288
3289 for (index = next->curr_ret_stack; index >= 0; index--)
3290 next->ret_stack[index].calltime += timestamp;
3291}
3292
f201ae23 3293/* Allocate a return stack for each task */
fb52607a 3294static int start_graph_tracing(void)
f201ae23
FW
3295{
3296 struct ftrace_ret_stack **ret_stack_list;
5b058bcd 3297 int ret, cpu;
f201ae23
FW
3298
3299 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
3300 sizeof(struct ftrace_ret_stack *),
3301 GFP_KERNEL);
3302
3303 if (!ret_stack_list)
3304 return -ENOMEM;
3305
5b058bcd 3306 /* The cpu_boot init_task->ret_stack will never be freed */
179c498a
SR
3307 for_each_online_cpu(cpu) {
3308 if (!idle_task(cpu)->ret_stack)
868baf07 3309 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
179c498a 3310 }
5b058bcd 3311
f201ae23
FW
3312 do {
3313 ret = alloc_retstack_tasklist(ret_stack_list);
3314 } while (ret == -EAGAIN);
3315
8aef2d28 3316 if (!ret) {
38516ab5 3317 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
8aef2d28
SR
3318 if (ret)
3319 pr_info("ftrace_graph: Couldn't activate tracepoint"
3320 " probe to kernel_sched_switch\n");
3321 }
3322
f201ae23
FW
3323 kfree(ret_stack_list);
3324 return ret;
3325}
3326
4a2b8dda
FW
3327/*
3328 * Hibernation protection.
3329 * The state of the current task is too much unstable during
3330 * suspend/restore to disk. We want to protect against that.
3331 */
3332static int
3333ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
3334 void *unused)
3335{
3336 switch (state) {
3337 case PM_HIBERNATION_PREPARE:
3338 pause_graph_tracing();
3339 break;
3340
3341 case PM_POST_HIBERNATION:
3342 unpause_graph_tracing();
3343 break;
3344 }
3345 return NOTIFY_DONE;
3346}
3347
287b6e68
FW
3348int register_ftrace_graph(trace_func_graph_ret_t retfunc,
3349 trace_func_graph_ent_t entryfunc)
15e6cb36 3350{
e7d3737e
FW
3351 int ret = 0;
3352
e6ea44e9 3353 mutex_lock(&ftrace_lock);
e7d3737e 3354
05ce5818 3355 /* we currently allow only one tracer registered at a time */
597af815 3356 if (ftrace_graph_active) {
05ce5818
SR
3357 ret = -EBUSY;
3358 goto out;
3359 }
3360
4a2b8dda
FW
3361 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
3362 register_pm_notifier(&ftrace_suspend_notifier);
3363
597af815 3364 ftrace_graph_active++;
fb52607a 3365 ret = start_graph_tracing();
f201ae23 3366 if (ret) {
597af815 3367 ftrace_graph_active--;
f201ae23
FW
3368 goto out;
3369 }
e53a6319 3370
287b6e68
FW
3371 ftrace_graph_return = retfunc;
3372 ftrace_graph_entry = entryfunc;
e53a6319 3373
5a45cfe1 3374 ftrace_startup(FTRACE_START_FUNC_RET);
e7d3737e
FW
3375
3376out:
e6ea44e9 3377 mutex_unlock(&ftrace_lock);
e7d3737e 3378 return ret;
15e6cb36
FW
3379}
3380
fb52607a 3381void unregister_ftrace_graph(void)
15e6cb36 3382{
e6ea44e9 3383 mutex_lock(&ftrace_lock);
e7d3737e 3384
597af815 3385 if (unlikely(!ftrace_graph_active))
2aad1b76
SR
3386 goto out;
3387
597af815 3388 ftrace_graph_active--;
287b6e68 3389 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 3390 ftrace_graph_entry = ftrace_graph_entry_stub;
5a45cfe1 3391 ftrace_shutdown(FTRACE_STOP_FUNC_RET);
4a2b8dda 3392 unregister_pm_notifier(&ftrace_suspend_notifier);
38516ab5 3393 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
e7d3737e 3394
2aad1b76 3395 out:
e6ea44e9 3396 mutex_unlock(&ftrace_lock);
15e6cb36 3397}
f201ae23 3398
868baf07
SR
3399static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
3400
3401static void
3402graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
3403{
3404 atomic_set(&t->tracing_graph_pause, 0);
3405 atomic_set(&t->trace_overrun, 0);
3406 t->ftrace_timestamp = 0;
25985edc 3407 /* make curr_ret_stack visible before we add the ret_stack */
868baf07
SR
3408 smp_wmb();
3409 t->ret_stack = ret_stack;
3410}
3411
3412/*
3413 * Allocate a return stack for the idle task. May be the first
3414 * time through, or it may be done by CPU hotplug online.
3415 */
3416void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
3417{
3418 t->curr_ret_stack = -1;
3419 /*
3420 * The idle task has no parent, it either has its own
3421 * stack or no stack at all.
3422 */
3423 if (t->ret_stack)
3424 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
3425
3426 if (ftrace_graph_active) {
3427 struct ftrace_ret_stack *ret_stack;
3428
3429 ret_stack = per_cpu(idle_ret_stack, cpu);
3430 if (!ret_stack) {
3431 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
3432 * sizeof(struct ftrace_ret_stack),
3433 GFP_KERNEL);
3434 if (!ret_stack)
3435 return;
3436 per_cpu(idle_ret_stack, cpu) = ret_stack;
3437 }
3438 graph_init_task(t, ret_stack);
3439 }
3440}
3441
f201ae23 3442/* Allocate a return stack for newly created task */
fb52607a 3443void ftrace_graph_init_task(struct task_struct *t)
f201ae23 3444{
84047e36
SR
3445 /* Make sure we do not use the parent ret_stack */
3446 t->ret_stack = NULL;
ea14eb71 3447 t->curr_ret_stack = -1;
84047e36 3448
597af815 3449 if (ftrace_graph_active) {
82310a32
SR
3450 struct ftrace_ret_stack *ret_stack;
3451
3452 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
f201ae23
FW
3453 * sizeof(struct ftrace_ret_stack),
3454 GFP_KERNEL);
82310a32 3455 if (!ret_stack)
f201ae23 3456 return;
868baf07 3457 graph_init_task(t, ret_stack);
84047e36 3458 }
f201ae23
FW
3459}
3460
fb52607a 3461void ftrace_graph_exit_task(struct task_struct *t)
f201ae23 3462{
eae849ca
FW
3463 struct ftrace_ret_stack *ret_stack = t->ret_stack;
3464
f201ae23 3465 t->ret_stack = NULL;
eae849ca
FW
3466 /* NULL must become visible to IRQs before we free it: */
3467 barrier();
3468
3469 kfree(ret_stack);
f201ae23 3470}
14a866c5
SR
3471
3472void ftrace_graph_stop(void)
3473{
3474 ftrace_stop();
3475}
15e6cb36 3476#endif