ftrace: Sort all function addresses, not just per page
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
5855fead 25#include <linux/bsearch.h>
56d82e00 26#include <linux/module.h>
2d8b820b 27#include <linux/ftrace.h>
b0fc494f 28#include <linux/sysctl.h>
5a0e3ad6 29#include <linux/slab.h>
5072c59f 30#include <linux/ctype.h>
68950619 31#include <linux/sort.h>
3d083395 32#include <linux/list.h>
59df055f 33#include <linux/hash.h>
3f379b03 34#include <linux/rcupdate.h>
3d083395 35
ad8d75ff 36#include <trace/events/sched.h>
8aef2d28 37
2af15d6a 38#include <asm/setup.h>
395a59d0 39
0706f1c4 40#include "trace_output.h"
bac429f0 41#include "trace_stat.h"
16444a8a 42
6912896e 43#define FTRACE_WARN_ON(cond) \
0778d9ad
SR
44 ({ \
45 int ___r = cond; \
46 if (WARN_ON(___r)) \
6912896e 47 ftrace_kill(); \
0778d9ad
SR
48 ___r; \
49 })
6912896e
SR
50
51#define FTRACE_WARN_ON_ONCE(cond) \
0778d9ad
SR
52 ({ \
53 int ___r = cond; \
54 if (WARN_ON_ONCE(___r)) \
6912896e 55 ftrace_kill(); \
0778d9ad
SR
56 ___r; \
57 })
6912896e 58
8fc0c701
SR
59/* hash bits for specific function selection */
60#define FTRACE_HASH_BITS 7
61#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
33dc9b12
SR
62#define FTRACE_HASH_DEFAULT_BITS 10
63#define FTRACE_HASH_MAX_BITS 12
8fc0c701 64
e248491a
JO
65#define FL_GLOBAL_CONTROL_MASK (FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_CONTROL)
66
4eebcc81
SR
67/* ftrace_enabled is a method to turn ftrace on or off */
68int ftrace_enabled __read_mostly;
d61f82d0 69static int last_ftrace_enabled;
b0fc494f 70
60a7ecf4
SR
71/* Quick disabling of function tracer. */
72int function_trace_stop;
73
756d17ee 74/* List for set_ftrace_pid's pids. */
75LIST_HEAD(ftrace_pids);
76struct ftrace_pid {
77 struct list_head list;
78 struct pid *pid;
79};
80
4eebcc81
SR
81/*
82 * ftrace_disabled is set when an anomaly is discovered.
83 * ftrace_disabled is much stronger than ftrace_enabled.
84 */
85static int ftrace_disabled __read_mostly;
86
52baf119 87static DEFINE_MUTEX(ftrace_lock);
b0fc494f 88
bd38c0e6 89static struct ftrace_ops ftrace_list_end __read_mostly = {
fb9fb015 90 .func = ftrace_stub,
16444a8a
ACM
91};
92
b848914c 93static struct ftrace_ops *ftrace_global_list __read_mostly = &ftrace_list_end;
e248491a 94static struct ftrace_ops *ftrace_control_list __read_mostly = &ftrace_list_end;
b848914c 95static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
16444a8a 96ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
6331c28c 97static ftrace_func_t __ftrace_trace_function_delay __read_mostly = ftrace_stub;
60a7ecf4 98ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
df4fc315 99ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
2b499381 100static struct ftrace_ops global_ops;
e248491a 101static struct ftrace_ops control_ops;
16444a8a 102
b848914c
SR
103static void
104ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip);
105
3f379b03 106/*
b848914c 107 * Traverse the ftrace_global_list, invoking all entries. The reason that we
3f379b03
PM
108 * can use rcu_dereference_raw() is that elements removed from this list
109 * are simply leaked, so there is no need to interact with a grace-period
110 * mechanism. The rcu_dereference_raw() calls are needed to handle
b848914c 111 * concurrent insertions into the ftrace_global_list.
3f379b03
PM
112 *
113 * Silly Alpha and silly pointer-speculation compiler optimizations!
114 */
b848914c
SR
115static void ftrace_global_list_func(unsigned long ip,
116 unsigned long parent_ip)
16444a8a 117{
b1cff0ad
SR
118 struct ftrace_ops *op;
119
120 if (unlikely(trace_recursion_test(TRACE_GLOBAL_BIT)))
121 return;
16444a8a 122
b1cff0ad
SR
123 trace_recursion_set(TRACE_GLOBAL_BIT);
124 op = rcu_dereference_raw(ftrace_global_list); /*see above*/
16444a8a 125 while (op != &ftrace_list_end) {
16444a8a 126 op->func(ip, parent_ip);
3f379b03 127 op = rcu_dereference_raw(op->next); /*see above*/
16444a8a 128 };
b1cff0ad 129 trace_recursion_clear(TRACE_GLOBAL_BIT);
16444a8a
ACM
130}
131
df4fc315
SR
132static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
133{
0ef8cde5 134 if (!test_tsk_trace_trace(current))
df4fc315
SR
135 return;
136
137 ftrace_pid_function(ip, parent_ip);
138}
139
140static void set_ftrace_pid_function(ftrace_func_t func)
141{
142 /* do not set ftrace_pid_function to itself! */
143 if (func != ftrace_pid_func)
144 ftrace_pid_function = func;
145}
146
16444a8a 147/**
3d083395 148 * clear_ftrace_function - reset the ftrace function
16444a8a 149 *
3d083395
SR
150 * This NULLs the ftrace function and in essence stops
151 * tracing. There may be lag
16444a8a 152 */
3d083395 153void clear_ftrace_function(void)
16444a8a 154{
3d083395 155 ftrace_trace_function = ftrace_stub;
60a7ecf4 156 __ftrace_trace_function = ftrace_stub;
6331c28c 157 __ftrace_trace_function_delay = ftrace_stub;
df4fc315 158 ftrace_pid_function = ftrace_stub;
3d083395
SR
159}
160
60a7ecf4
SR
161#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
162/*
163 * For those archs that do not test ftrace_trace_stop in their
164 * mcount call site, we need to do it from C.
165 */
166static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
167{
168 if (function_trace_stop)
169 return;
170
171 __ftrace_trace_function(ip, parent_ip);
172}
173#endif
174
e248491a
JO
175static void control_ops_disable_all(struct ftrace_ops *ops)
176{
177 int cpu;
178
179 for_each_possible_cpu(cpu)
180 *per_cpu_ptr(ops->disabled, cpu) = 1;
181}
182
183static int control_ops_alloc(struct ftrace_ops *ops)
184{
185 int __percpu *disabled;
186
187 disabled = alloc_percpu(int);
188 if (!disabled)
189 return -ENOMEM;
190
191 ops->disabled = disabled;
192 control_ops_disable_all(ops);
193 return 0;
194}
195
196static void control_ops_free(struct ftrace_ops *ops)
197{
198 free_percpu(ops->disabled);
199}
200
2b499381 201static void update_global_ops(void)
491d0dcf
SR
202{
203 ftrace_func_t func;
204
205 /*
206 * If there's only one function registered, then call that
207 * function directly. Otherwise, we need to iterate over the
208 * registered callers.
209 */
b848914c
SR
210 if (ftrace_global_list == &ftrace_list_end ||
211 ftrace_global_list->next == &ftrace_list_end)
212 func = ftrace_global_list->func;
491d0dcf 213 else
b848914c 214 func = ftrace_global_list_func;
491d0dcf
SR
215
216 /* If we filter on pids, update to use the pid function */
217 if (!list_empty(&ftrace_pids)) {
218 set_ftrace_pid_function(func);
219 func = ftrace_pid_func;
220 }
2b499381
SR
221
222 global_ops.func = func;
223}
224
225static void update_ftrace_function(void)
226{
227 ftrace_func_t func;
228
229 update_global_ops();
230
cdbe61bf
SR
231 /*
232 * If we are at the end of the list and this ops is
233 * not dynamic, then have the mcount trampoline call
234 * the function directly
235 */
b848914c 236 if (ftrace_ops_list == &ftrace_list_end ||
cdbe61bf
SR
237 (ftrace_ops_list->next == &ftrace_list_end &&
238 !(ftrace_ops_list->flags & FTRACE_OPS_FL_DYNAMIC)))
b848914c
SR
239 func = ftrace_ops_list->func;
240 else
241 func = ftrace_ops_list_func;
2b499381 242
491d0dcf
SR
243#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
244 ftrace_trace_function = func;
6331c28c
SR
245#else
246#ifdef CONFIG_DYNAMIC_FTRACE
247 /* do not update till all functions have been modified */
248 __ftrace_trace_function_delay = func;
491d0dcf
SR
249#else
250 __ftrace_trace_function = func;
6331c28c 251#endif
db6544e0
RB
252 ftrace_trace_function =
253 (func == ftrace_stub) ? func : ftrace_test_stop_func;
491d0dcf
SR
254#endif
255}
256
2b499381 257static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
3d083395 258{
2b499381 259 ops->next = *list;
16444a8a 260 /*
b848914c 261 * We are entering ops into the list but another
16444a8a
ACM
262 * CPU might be walking that list. We need to make sure
263 * the ops->next pointer is valid before another CPU sees
b848914c 264 * the ops pointer included into the list.
16444a8a 265 */
2b499381 266 rcu_assign_pointer(*list, ops);
16444a8a
ACM
267}
268
2b499381 269static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
16444a8a 270{
16444a8a 271 struct ftrace_ops **p;
16444a8a
ACM
272
273 /*
3d083395
SR
274 * If we are removing the last function, then simply point
275 * to the ftrace_stub.
16444a8a 276 */
2b499381
SR
277 if (*list == ops && ops->next == &ftrace_list_end) {
278 *list = &ftrace_list_end;
e6ea44e9 279 return 0;
16444a8a
ACM
280 }
281
2b499381 282 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
16444a8a
ACM
283 if (*p == ops)
284 break;
285
e6ea44e9
SR
286 if (*p != ops)
287 return -1;
16444a8a
ACM
288
289 *p = (*p)->next;
2b499381
SR
290 return 0;
291}
16444a8a 292
e248491a
JO
293static void add_ftrace_list_ops(struct ftrace_ops **list,
294 struct ftrace_ops *main_ops,
295 struct ftrace_ops *ops)
296{
297 int first = *list == &ftrace_list_end;
298 add_ftrace_ops(list, ops);
299 if (first)
300 add_ftrace_ops(&ftrace_ops_list, main_ops);
301}
302
303static int remove_ftrace_list_ops(struct ftrace_ops **list,
304 struct ftrace_ops *main_ops,
305 struct ftrace_ops *ops)
306{
307 int ret = remove_ftrace_ops(list, ops);
308 if (!ret && *list == &ftrace_list_end)
309 ret = remove_ftrace_ops(&ftrace_ops_list, main_ops);
310 return ret;
311}
312
2b499381
SR
313static int __register_ftrace_function(struct ftrace_ops *ops)
314{
315 if (ftrace_disabled)
316 return -ENODEV;
317
318 if (FTRACE_WARN_ON(ops == &global_ops))
319 return -EINVAL;
320
b848914c
SR
321 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
322 return -EBUSY;
323
e248491a
JO
324 /* We don't support both control and global flags set. */
325 if ((ops->flags & FL_GLOBAL_CONTROL_MASK) == FL_GLOBAL_CONTROL_MASK)
326 return -EINVAL;
327
cdbe61bf
SR
328 if (!core_kernel_data((unsigned long)ops))
329 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
330
b848914c 331 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
e248491a 332 add_ftrace_list_ops(&ftrace_global_list, &global_ops, ops);
b848914c 333 ops->flags |= FTRACE_OPS_FL_ENABLED;
e248491a
JO
334 } else if (ops->flags & FTRACE_OPS_FL_CONTROL) {
335 if (control_ops_alloc(ops))
336 return -ENOMEM;
337 add_ftrace_list_ops(&ftrace_control_list, &control_ops, ops);
b848914c
SR
338 } else
339 add_ftrace_ops(&ftrace_ops_list, ops);
340
2b499381
SR
341 if (ftrace_enabled)
342 update_ftrace_function();
343
344 return 0;
345}
346
347static int __unregister_ftrace_function(struct ftrace_ops *ops)
348{
349 int ret;
350
351 if (ftrace_disabled)
352 return -ENODEV;
353
b848914c
SR
354 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
355 return -EBUSY;
356
2b499381
SR
357 if (FTRACE_WARN_ON(ops == &global_ops))
358 return -EINVAL;
359
b848914c 360 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
e248491a
JO
361 ret = remove_ftrace_list_ops(&ftrace_global_list,
362 &global_ops, ops);
b848914c
SR
363 if (!ret)
364 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
e248491a
JO
365 } else if (ops->flags & FTRACE_OPS_FL_CONTROL) {
366 ret = remove_ftrace_list_ops(&ftrace_control_list,
367 &control_ops, ops);
368 if (!ret) {
369 /*
370 * The ftrace_ops is now removed from the list,
371 * so there'll be no new users. We must ensure
372 * all current users are done before we free
373 * the control data.
374 */
375 synchronize_sched();
376 control_ops_free(ops);
377 }
b848914c
SR
378 } else
379 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
380
2b499381
SR
381 if (ret < 0)
382 return ret;
b848914c 383
491d0dcf
SR
384 if (ftrace_enabled)
385 update_ftrace_function();
16444a8a 386
cdbe61bf
SR
387 /*
388 * Dynamic ops may be freed, we must make sure that all
389 * callers are done before leaving this function.
390 */
391 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
392 synchronize_sched();
393
e6ea44e9 394 return 0;
3d083395
SR
395}
396
df4fc315
SR
397static void ftrace_update_pid_func(void)
398{
491d0dcf 399 /* Only do something if we are tracing something */
df4fc315 400 if (ftrace_trace_function == ftrace_stub)
10dd3ebe 401 return;
df4fc315 402
491d0dcf 403 update_ftrace_function();
df4fc315
SR
404}
405
493762fc
SR
406#ifdef CONFIG_FUNCTION_PROFILER
407struct ftrace_profile {
408 struct hlist_node node;
409 unsigned long ip;
410 unsigned long counter;
0706f1c4
SR
411#ifdef CONFIG_FUNCTION_GRAPH_TRACER
412 unsigned long long time;
e330b3bc 413 unsigned long long time_squared;
0706f1c4 414#endif
8fc0c701
SR
415};
416
493762fc
SR
417struct ftrace_profile_page {
418 struct ftrace_profile_page *next;
419 unsigned long index;
420 struct ftrace_profile records[];
d61f82d0
SR
421};
422
cafb168a
SR
423struct ftrace_profile_stat {
424 atomic_t disabled;
425 struct hlist_head *hash;
426 struct ftrace_profile_page *pages;
427 struct ftrace_profile_page *start;
428 struct tracer_stat stat;
429};
430
493762fc
SR
431#define PROFILE_RECORDS_SIZE \
432 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
5072c59f 433
493762fc
SR
434#define PROFILES_PER_PAGE \
435 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
3d083395 436
fb9fb015
SR
437static int ftrace_profile_bits __read_mostly;
438static int ftrace_profile_enabled __read_mostly;
439
440/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
bac429f0
SR
441static DEFINE_MUTEX(ftrace_profile_lock);
442
cafb168a 443static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
493762fc
SR
444
445#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
446
bac429f0
SR
447static void *
448function_stat_next(void *v, int idx)
449{
493762fc
SR
450 struct ftrace_profile *rec = v;
451 struct ftrace_profile_page *pg;
bac429f0 452
493762fc 453 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
bac429f0
SR
454
455 again:
0296e425
LZ
456 if (idx != 0)
457 rec++;
458
bac429f0
SR
459 if ((void *)rec >= (void *)&pg->records[pg->index]) {
460 pg = pg->next;
461 if (!pg)
462 return NULL;
463 rec = &pg->records[0];
493762fc
SR
464 if (!rec->counter)
465 goto again;
bac429f0
SR
466 }
467
bac429f0
SR
468 return rec;
469}
470
471static void *function_stat_start(struct tracer_stat *trace)
472{
cafb168a
SR
473 struct ftrace_profile_stat *stat =
474 container_of(trace, struct ftrace_profile_stat, stat);
475
476 if (!stat || !stat->start)
477 return NULL;
478
479 return function_stat_next(&stat->start->records[0], 0);
bac429f0
SR
480}
481
0706f1c4
SR
482#ifdef CONFIG_FUNCTION_GRAPH_TRACER
483/* function graph compares on total time */
484static int function_stat_cmp(void *p1, void *p2)
485{
486 struct ftrace_profile *a = p1;
487 struct ftrace_profile *b = p2;
488
489 if (a->time < b->time)
490 return -1;
491 if (a->time > b->time)
492 return 1;
493 else
494 return 0;
495}
496#else
497/* not function graph compares against hits */
bac429f0
SR
498static int function_stat_cmp(void *p1, void *p2)
499{
493762fc
SR
500 struct ftrace_profile *a = p1;
501 struct ftrace_profile *b = p2;
bac429f0
SR
502
503 if (a->counter < b->counter)
504 return -1;
505 if (a->counter > b->counter)
506 return 1;
507 else
508 return 0;
509}
0706f1c4 510#endif
bac429f0
SR
511
512static int function_stat_headers(struct seq_file *m)
513{
0706f1c4 514#ifdef CONFIG_FUNCTION_GRAPH_TRACER
34886c8b 515 seq_printf(m, " Function "
e330b3bc 516 "Hit Time Avg s^2\n"
34886c8b 517 " -------- "
e330b3bc 518 "--- ---- --- ---\n");
0706f1c4 519#else
bac429f0
SR
520 seq_printf(m, " Function Hit\n"
521 " -------- ---\n");
0706f1c4 522#endif
bac429f0
SR
523 return 0;
524}
525
526static int function_stat_show(struct seq_file *m, void *v)
527{
493762fc 528 struct ftrace_profile *rec = v;
bac429f0 529 char str[KSYM_SYMBOL_LEN];
3aaba20f 530 int ret = 0;
0706f1c4 531#ifdef CONFIG_FUNCTION_GRAPH_TRACER
34886c8b
SR
532 static struct trace_seq s;
533 unsigned long long avg;
e330b3bc 534 unsigned long long stddev;
0706f1c4 535#endif
3aaba20f
LZ
536 mutex_lock(&ftrace_profile_lock);
537
538 /* we raced with function_profile_reset() */
539 if (unlikely(rec->counter == 0)) {
540 ret = -EBUSY;
541 goto out;
542 }
bac429f0
SR
543
544 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
0706f1c4
SR
545 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
546
547#ifdef CONFIG_FUNCTION_GRAPH_TRACER
548 seq_printf(m, " ");
34886c8b
SR
549 avg = rec->time;
550 do_div(avg, rec->counter);
551
e330b3bc
CD
552 /* Sample standard deviation (s^2) */
553 if (rec->counter <= 1)
554 stddev = 0;
555 else {
556 stddev = rec->time_squared - rec->counter * avg * avg;
557 /*
558 * Divide only 1000 for ns^2 -> us^2 conversion.
559 * trace_print_graph_duration will divide 1000 again.
560 */
561 do_div(stddev, (rec->counter - 1) * 1000);
562 }
563
34886c8b
SR
564 trace_seq_init(&s);
565 trace_print_graph_duration(rec->time, &s);
566 trace_seq_puts(&s, " ");
567 trace_print_graph_duration(avg, &s);
e330b3bc
CD
568 trace_seq_puts(&s, " ");
569 trace_print_graph_duration(stddev, &s);
0706f1c4 570 trace_print_seq(m, &s);
0706f1c4
SR
571#endif
572 seq_putc(m, '\n');
3aaba20f
LZ
573out:
574 mutex_unlock(&ftrace_profile_lock);
bac429f0 575
3aaba20f 576 return ret;
bac429f0
SR
577}
578
cafb168a 579static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
bac429f0 580{
493762fc 581 struct ftrace_profile_page *pg;
bac429f0 582
cafb168a 583 pg = stat->pages = stat->start;
bac429f0 584
493762fc
SR
585 while (pg) {
586 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
587 pg->index = 0;
588 pg = pg->next;
bac429f0
SR
589 }
590
cafb168a 591 memset(stat->hash, 0,
493762fc
SR
592 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
593}
bac429f0 594
cafb168a 595int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
493762fc
SR
596{
597 struct ftrace_profile_page *pg;
318e0a73
SR
598 int functions;
599 int pages;
493762fc 600 int i;
bac429f0 601
493762fc 602 /* If we already allocated, do nothing */
cafb168a 603 if (stat->pages)
493762fc 604 return 0;
bac429f0 605
cafb168a
SR
606 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
607 if (!stat->pages)
493762fc 608 return -ENOMEM;
bac429f0 609
318e0a73
SR
610#ifdef CONFIG_DYNAMIC_FTRACE
611 functions = ftrace_update_tot_cnt;
612#else
613 /*
614 * We do not know the number of functions that exist because
615 * dynamic tracing is what counts them. With past experience
616 * we have around 20K functions. That should be more than enough.
617 * It is highly unlikely we will execute every function in
618 * the kernel.
619 */
620 functions = 20000;
621#endif
622
cafb168a 623 pg = stat->start = stat->pages;
bac429f0 624
318e0a73
SR
625 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
626
627 for (i = 0; i < pages; i++) {
493762fc 628 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
493762fc 629 if (!pg->next)
318e0a73 630 goto out_free;
493762fc
SR
631 pg = pg->next;
632 }
633
634 return 0;
318e0a73
SR
635
636 out_free:
637 pg = stat->start;
638 while (pg) {
639 unsigned long tmp = (unsigned long)pg;
640
641 pg = pg->next;
642 free_page(tmp);
643 }
644
645 free_page((unsigned long)stat->pages);
646 stat->pages = NULL;
647 stat->start = NULL;
648
649 return -ENOMEM;
bac429f0
SR
650}
651
cafb168a 652static int ftrace_profile_init_cpu(int cpu)
bac429f0 653{
cafb168a 654 struct ftrace_profile_stat *stat;
493762fc 655 int size;
bac429f0 656
cafb168a
SR
657 stat = &per_cpu(ftrace_profile_stats, cpu);
658
659 if (stat->hash) {
493762fc 660 /* If the profile is already created, simply reset it */
cafb168a 661 ftrace_profile_reset(stat);
493762fc
SR
662 return 0;
663 }
bac429f0 664
493762fc
SR
665 /*
666 * We are profiling all functions, but usually only a few thousand
667 * functions are hit. We'll make a hash of 1024 items.
668 */
669 size = FTRACE_PROFILE_HASH_SIZE;
bac429f0 670
cafb168a 671 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
493762fc 672
cafb168a 673 if (!stat->hash)
493762fc
SR
674 return -ENOMEM;
675
cafb168a
SR
676 if (!ftrace_profile_bits) {
677 size--;
493762fc 678
cafb168a
SR
679 for (; size; size >>= 1)
680 ftrace_profile_bits++;
681 }
493762fc 682
318e0a73 683 /* Preallocate the function profiling pages */
cafb168a
SR
684 if (ftrace_profile_pages_init(stat) < 0) {
685 kfree(stat->hash);
686 stat->hash = NULL;
493762fc
SR
687 return -ENOMEM;
688 }
689
690 return 0;
bac429f0
SR
691}
692
cafb168a
SR
693static int ftrace_profile_init(void)
694{
695 int cpu;
696 int ret = 0;
697
698 for_each_online_cpu(cpu) {
699 ret = ftrace_profile_init_cpu(cpu);
700 if (ret)
701 break;
702 }
703
704 return ret;
705}
706
493762fc 707/* interrupts must be disabled */
cafb168a
SR
708static struct ftrace_profile *
709ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
bac429f0 710{
493762fc 711 struct ftrace_profile *rec;
bac429f0
SR
712 struct hlist_head *hhd;
713 struct hlist_node *n;
bac429f0
SR
714 unsigned long key;
715
bac429f0 716 key = hash_long(ip, ftrace_profile_bits);
cafb168a 717 hhd = &stat->hash[key];
bac429f0
SR
718
719 if (hlist_empty(hhd))
720 return NULL;
721
bac429f0
SR
722 hlist_for_each_entry_rcu(rec, n, hhd, node) {
723 if (rec->ip == ip)
493762fc
SR
724 return rec;
725 }
726
727 return NULL;
728}
729
cafb168a
SR
730static void ftrace_add_profile(struct ftrace_profile_stat *stat,
731 struct ftrace_profile *rec)
493762fc
SR
732{
733 unsigned long key;
734
735 key = hash_long(rec->ip, ftrace_profile_bits);
cafb168a 736 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
493762fc
SR
737}
738
318e0a73
SR
739/*
740 * The memory is already allocated, this simply finds a new record to use.
741 */
493762fc 742static struct ftrace_profile *
318e0a73 743ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
493762fc
SR
744{
745 struct ftrace_profile *rec = NULL;
746
318e0a73 747 /* prevent recursion (from NMIs) */
cafb168a 748 if (atomic_inc_return(&stat->disabled) != 1)
493762fc
SR
749 goto out;
750
493762fc 751 /*
318e0a73
SR
752 * Try to find the function again since an NMI
753 * could have added it
493762fc 754 */
cafb168a 755 rec = ftrace_find_profiled_func(stat, ip);
493762fc 756 if (rec)
cafb168a 757 goto out;
493762fc 758
cafb168a
SR
759 if (stat->pages->index == PROFILES_PER_PAGE) {
760 if (!stat->pages->next)
761 goto out;
762 stat->pages = stat->pages->next;
bac429f0 763 }
493762fc 764
cafb168a 765 rec = &stat->pages->records[stat->pages->index++];
493762fc 766 rec->ip = ip;
cafb168a 767 ftrace_add_profile(stat, rec);
493762fc 768
bac429f0 769 out:
cafb168a 770 atomic_dec(&stat->disabled);
bac429f0
SR
771
772 return rec;
773}
774
775static void
776function_profile_call(unsigned long ip, unsigned long parent_ip)
777{
cafb168a 778 struct ftrace_profile_stat *stat;
493762fc 779 struct ftrace_profile *rec;
bac429f0
SR
780 unsigned long flags;
781
782 if (!ftrace_profile_enabled)
783 return;
784
785 local_irq_save(flags);
cafb168a
SR
786
787 stat = &__get_cpu_var(ftrace_profile_stats);
0f6ce3de 788 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
789 goto out;
790
791 rec = ftrace_find_profiled_func(stat, ip);
493762fc 792 if (!rec) {
318e0a73 793 rec = ftrace_profile_alloc(stat, ip);
493762fc
SR
794 if (!rec)
795 goto out;
796 }
bac429f0
SR
797
798 rec->counter++;
799 out:
800 local_irq_restore(flags);
801}
802
0706f1c4
SR
803#ifdef CONFIG_FUNCTION_GRAPH_TRACER
804static int profile_graph_entry(struct ftrace_graph_ent *trace)
805{
806 function_profile_call(trace->func, 0);
807 return 1;
808}
809
810static void profile_graph_return(struct ftrace_graph_ret *trace)
811{
cafb168a 812 struct ftrace_profile_stat *stat;
a2a16d6a 813 unsigned long long calltime;
0706f1c4 814 struct ftrace_profile *rec;
cafb168a 815 unsigned long flags;
0706f1c4
SR
816
817 local_irq_save(flags);
cafb168a 818 stat = &__get_cpu_var(ftrace_profile_stats);
0f6ce3de 819 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
820 goto out;
821
37e44bc5
SR
822 /* If the calltime was zero'd ignore it */
823 if (!trace->calltime)
824 goto out;
825
a2a16d6a
SR
826 calltime = trace->rettime - trace->calltime;
827
828 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
829 int index;
830
831 index = trace->depth;
832
833 /* Append this call time to the parent time to subtract */
834 if (index)
835 current->ret_stack[index - 1].subtime += calltime;
836
837 if (current->ret_stack[index].subtime < calltime)
838 calltime -= current->ret_stack[index].subtime;
839 else
840 calltime = 0;
841 }
842
cafb168a 843 rec = ftrace_find_profiled_func(stat, trace->func);
e330b3bc 844 if (rec) {
a2a16d6a 845 rec->time += calltime;
e330b3bc
CD
846 rec->time_squared += calltime * calltime;
847 }
a2a16d6a 848
cafb168a 849 out:
0706f1c4
SR
850 local_irq_restore(flags);
851}
852
853static int register_ftrace_profiler(void)
854{
855 return register_ftrace_graph(&profile_graph_return,
856 &profile_graph_entry);
857}
858
859static void unregister_ftrace_profiler(void)
860{
861 unregister_ftrace_graph();
862}
863#else
bd38c0e6 864static struct ftrace_ops ftrace_profile_ops __read_mostly = {
fb9fb015 865 .func = function_profile_call,
bac429f0
SR
866};
867
0706f1c4
SR
868static int register_ftrace_profiler(void)
869{
870 return register_ftrace_function(&ftrace_profile_ops);
871}
872
873static void unregister_ftrace_profiler(void)
874{
875 unregister_ftrace_function(&ftrace_profile_ops);
876}
877#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
878
bac429f0
SR
879static ssize_t
880ftrace_profile_write(struct file *filp, const char __user *ubuf,
881 size_t cnt, loff_t *ppos)
882{
883 unsigned long val;
bac429f0
SR
884 int ret;
885
22fe9b54
PH
886 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
887 if (ret)
bac429f0
SR
888 return ret;
889
890 val = !!val;
891
892 mutex_lock(&ftrace_profile_lock);
893 if (ftrace_profile_enabled ^ val) {
894 if (val) {
493762fc
SR
895 ret = ftrace_profile_init();
896 if (ret < 0) {
897 cnt = ret;
898 goto out;
899 }
900
0706f1c4
SR
901 ret = register_ftrace_profiler();
902 if (ret < 0) {
903 cnt = ret;
904 goto out;
905 }
bac429f0
SR
906 ftrace_profile_enabled = 1;
907 } else {
908 ftrace_profile_enabled = 0;
0f6ce3de
SR
909 /*
910 * unregister_ftrace_profiler calls stop_machine
911 * so this acts like an synchronize_sched.
912 */
0706f1c4 913 unregister_ftrace_profiler();
bac429f0
SR
914 }
915 }
493762fc 916 out:
bac429f0
SR
917 mutex_unlock(&ftrace_profile_lock);
918
cf8517cf 919 *ppos += cnt;
bac429f0
SR
920
921 return cnt;
922}
923
493762fc
SR
924static ssize_t
925ftrace_profile_read(struct file *filp, char __user *ubuf,
926 size_t cnt, loff_t *ppos)
927{
fb9fb015 928 char buf[64]; /* big enough to hold a number */
493762fc
SR
929 int r;
930
931 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
932 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
933}
934
bac429f0
SR
935static const struct file_operations ftrace_profile_fops = {
936 .open = tracing_open_generic,
937 .read = ftrace_profile_read,
938 .write = ftrace_profile_write,
6038f373 939 .llseek = default_llseek,
bac429f0
SR
940};
941
cafb168a
SR
942/* used to initialize the real stat files */
943static struct tracer_stat function_stats __initdata = {
fb9fb015
SR
944 .name = "functions",
945 .stat_start = function_stat_start,
946 .stat_next = function_stat_next,
947 .stat_cmp = function_stat_cmp,
948 .stat_headers = function_stat_headers,
949 .stat_show = function_stat_show
cafb168a
SR
950};
951
6ab5d668 952static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
bac429f0 953{
cafb168a 954 struct ftrace_profile_stat *stat;
bac429f0 955 struct dentry *entry;
cafb168a 956 char *name;
bac429f0 957 int ret;
cafb168a
SR
958 int cpu;
959
960 for_each_possible_cpu(cpu) {
961 stat = &per_cpu(ftrace_profile_stats, cpu);
962
963 /* allocate enough for function name + cpu number */
964 name = kmalloc(32, GFP_KERNEL);
965 if (!name) {
966 /*
967 * The files created are permanent, if something happens
968 * we still do not free memory.
969 */
cafb168a
SR
970 WARN(1,
971 "Could not allocate stat file for cpu %d\n",
972 cpu);
973 return;
974 }
975 stat->stat = function_stats;
976 snprintf(name, 32, "function%d", cpu);
977 stat->stat.name = name;
978 ret = register_stat_tracer(&stat->stat);
979 if (ret) {
980 WARN(1,
981 "Could not register function stat for cpu %d\n",
982 cpu);
983 kfree(name);
984 return;
985 }
bac429f0
SR
986 }
987
988 entry = debugfs_create_file("function_profile_enabled", 0644,
989 d_tracer, NULL, &ftrace_profile_fops);
990 if (!entry)
991 pr_warning("Could not create debugfs "
992 "'function_profile_enabled' entry\n");
993}
994
bac429f0 995#else /* CONFIG_FUNCTION_PROFILER */
6ab5d668 996static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
bac429f0
SR
997{
998}
bac429f0
SR
999#endif /* CONFIG_FUNCTION_PROFILER */
1000
493762fc
SR
1001static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1002
1003#ifdef CONFIG_DYNAMIC_FTRACE
1004
1005#ifndef CONFIG_FTRACE_MCOUNT_RECORD
1006# error Dynamic ftrace depends on MCOUNT_RECORD
1007#endif
1008
1009static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1010
1011struct ftrace_func_probe {
1012 struct hlist_node node;
1013 struct ftrace_probe_ops *ops;
1014 unsigned long flags;
1015 unsigned long ip;
1016 void *data;
1017 struct rcu_head rcu;
1018};
1019
b448c4e3
SR
1020struct ftrace_func_entry {
1021 struct hlist_node hlist;
1022 unsigned long ip;
1023};
1024
1025struct ftrace_hash {
1026 unsigned long size_bits;
1027 struct hlist_head *buckets;
1028 unsigned long count;
07fd5515 1029 struct rcu_head rcu;
b448c4e3
SR
1030};
1031
33dc9b12
SR
1032/*
1033 * We make these constant because no one should touch them,
1034 * but they are used as the default "empty hash", to avoid allocating
1035 * it all the time. These are in a read only section such that if
1036 * anyone does try to modify it, it will cause an exception.
1037 */
1038static const struct hlist_head empty_buckets[1];
1039static const struct ftrace_hash empty_hash = {
1040 .buckets = (struct hlist_head *)empty_buckets,
1cf41dd7 1041};
33dc9b12 1042#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
493762fc 1043
2b499381 1044static struct ftrace_ops global_ops = {
f45948e8 1045 .func = ftrace_stub,
33dc9b12
SR
1046 .notrace_hash = EMPTY_HASH,
1047 .filter_hash = EMPTY_HASH,
f45948e8
SR
1048};
1049
493762fc
SR
1050static DEFINE_MUTEX(ftrace_regex_lock);
1051
1052struct ftrace_page {
1053 struct ftrace_page *next;
a7900875 1054 struct dyn_ftrace *records;
493762fc 1055 int index;
a7900875 1056 int size;
493762fc
SR
1057};
1058
85ae32ae
SR
1059static struct ftrace_page *ftrace_new_pgs;
1060
a7900875
SR
1061#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1062#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
493762fc
SR
1063
1064/* estimate from running different kernels */
1065#define NR_TO_INIT 10000
1066
1067static struct ftrace_page *ftrace_pages_start;
1068static struct ftrace_page *ftrace_pages;
1069
06a51d93
SR
1070static bool ftrace_hash_empty(struct ftrace_hash *hash)
1071{
1072 return !hash || !hash->count;
1073}
1074
b448c4e3
SR
1075static struct ftrace_func_entry *
1076ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1077{
1078 unsigned long key;
1079 struct ftrace_func_entry *entry;
1080 struct hlist_head *hhd;
1081 struct hlist_node *n;
1082
06a51d93 1083 if (ftrace_hash_empty(hash))
b448c4e3
SR
1084 return NULL;
1085
1086 if (hash->size_bits > 0)
1087 key = hash_long(ip, hash->size_bits);
1088 else
1089 key = 0;
1090
1091 hhd = &hash->buckets[key];
1092
1093 hlist_for_each_entry_rcu(entry, n, hhd, hlist) {
1094 if (entry->ip == ip)
1095 return entry;
1096 }
1097 return NULL;
1098}
1099
33dc9b12
SR
1100static void __add_hash_entry(struct ftrace_hash *hash,
1101 struct ftrace_func_entry *entry)
b448c4e3 1102{
b448c4e3
SR
1103 struct hlist_head *hhd;
1104 unsigned long key;
1105
b448c4e3 1106 if (hash->size_bits)
33dc9b12 1107 key = hash_long(entry->ip, hash->size_bits);
b448c4e3
SR
1108 else
1109 key = 0;
1110
b448c4e3
SR
1111 hhd = &hash->buckets[key];
1112 hlist_add_head(&entry->hlist, hhd);
1113 hash->count++;
33dc9b12
SR
1114}
1115
1116static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1117{
1118 struct ftrace_func_entry *entry;
1119
1120 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1121 if (!entry)
1122 return -ENOMEM;
1123
1124 entry->ip = ip;
1125 __add_hash_entry(hash, entry);
b448c4e3
SR
1126
1127 return 0;
1128}
1129
1130static void
33dc9b12 1131free_hash_entry(struct ftrace_hash *hash,
b448c4e3
SR
1132 struct ftrace_func_entry *entry)
1133{
1134 hlist_del(&entry->hlist);
1135 kfree(entry);
1136 hash->count--;
1137}
1138
33dc9b12
SR
1139static void
1140remove_hash_entry(struct ftrace_hash *hash,
1141 struct ftrace_func_entry *entry)
1142{
1143 hlist_del(&entry->hlist);
1144 hash->count--;
1145}
1146
b448c4e3
SR
1147static void ftrace_hash_clear(struct ftrace_hash *hash)
1148{
1149 struct hlist_head *hhd;
1150 struct hlist_node *tp, *tn;
1151 struct ftrace_func_entry *entry;
1152 int size = 1 << hash->size_bits;
1153 int i;
1154
33dc9b12
SR
1155 if (!hash->count)
1156 return;
1157
b448c4e3
SR
1158 for (i = 0; i < size; i++) {
1159 hhd = &hash->buckets[i];
1160 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist)
33dc9b12 1161 free_hash_entry(hash, entry);
b448c4e3
SR
1162 }
1163 FTRACE_WARN_ON(hash->count);
1164}
1165
33dc9b12
SR
1166static void free_ftrace_hash(struct ftrace_hash *hash)
1167{
1168 if (!hash || hash == EMPTY_HASH)
1169 return;
1170 ftrace_hash_clear(hash);
1171 kfree(hash->buckets);
1172 kfree(hash);
1173}
1174
07fd5515
SR
1175static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1176{
1177 struct ftrace_hash *hash;
1178
1179 hash = container_of(rcu, struct ftrace_hash, rcu);
1180 free_ftrace_hash(hash);
1181}
1182
1183static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1184{
1185 if (!hash || hash == EMPTY_HASH)
1186 return;
1187 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1188}
1189
5500fa51
JO
1190void ftrace_free_filter(struct ftrace_ops *ops)
1191{
1192 free_ftrace_hash(ops->filter_hash);
1193 free_ftrace_hash(ops->notrace_hash);
1194}
1195
33dc9b12
SR
1196static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1197{
1198 struct ftrace_hash *hash;
1199 int size;
1200
1201 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1202 if (!hash)
1203 return NULL;
1204
1205 size = 1 << size_bits;
47b0edcb 1206 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
33dc9b12
SR
1207
1208 if (!hash->buckets) {
1209 kfree(hash);
1210 return NULL;
1211 }
1212
1213 hash->size_bits = size_bits;
1214
1215 return hash;
1216}
1217
1218static struct ftrace_hash *
1219alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1220{
1221 struct ftrace_func_entry *entry;
1222 struct ftrace_hash *new_hash;
1223 struct hlist_node *tp;
1224 int size;
1225 int ret;
1226 int i;
1227
1228 new_hash = alloc_ftrace_hash(size_bits);
1229 if (!new_hash)
1230 return NULL;
1231
1232 /* Empty hash? */
06a51d93 1233 if (ftrace_hash_empty(hash))
33dc9b12
SR
1234 return new_hash;
1235
1236 size = 1 << hash->size_bits;
1237 for (i = 0; i < size; i++) {
1238 hlist_for_each_entry(entry, tp, &hash->buckets[i], hlist) {
1239 ret = add_hash_entry(new_hash, entry->ip);
1240 if (ret < 0)
1241 goto free_hash;
1242 }
1243 }
1244
1245 FTRACE_WARN_ON(new_hash->count != hash->count);
1246
1247 return new_hash;
1248
1249 free_hash:
1250 free_ftrace_hash(new_hash);
1251 return NULL;
1252}
1253
41fb61c2
SR
1254static void
1255ftrace_hash_rec_disable(struct ftrace_ops *ops, int filter_hash);
1256static void
1257ftrace_hash_rec_enable(struct ftrace_ops *ops, int filter_hash);
1258
33dc9b12 1259static int
41fb61c2
SR
1260ftrace_hash_move(struct ftrace_ops *ops, int enable,
1261 struct ftrace_hash **dst, struct ftrace_hash *src)
33dc9b12
SR
1262{
1263 struct ftrace_func_entry *entry;
1264 struct hlist_node *tp, *tn;
1265 struct hlist_head *hhd;
07fd5515
SR
1266 struct ftrace_hash *old_hash;
1267 struct ftrace_hash *new_hash;
33dc9b12
SR
1268 unsigned long key;
1269 int size = src->count;
1270 int bits = 0;
41fb61c2 1271 int ret;
33dc9b12
SR
1272 int i;
1273
41fb61c2
SR
1274 /*
1275 * Remove the current set, update the hash and add
1276 * them back.
1277 */
1278 ftrace_hash_rec_disable(ops, enable);
1279
33dc9b12
SR
1280 /*
1281 * If the new source is empty, just free dst and assign it
1282 * the empty_hash.
1283 */
1284 if (!src->count) {
07fd5515
SR
1285 free_ftrace_hash_rcu(*dst);
1286 rcu_assign_pointer(*dst, EMPTY_HASH);
d4d34b98
SR
1287 /* still need to update the function records */
1288 ret = 0;
1289 goto out;
33dc9b12
SR
1290 }
1291
33dc9b12
SR
1292 /*
1293 * Make the hash size about 1/2 the # found
1294 */
1295 for (size /= 2; size; size >>= 1)
1296 bits++;
1297
1298 /* Don't allocate too much */
1299 if (bits > FTRACE_HASH_MAX_BITS)
1300 bits = FTRACE_HASH_MAX_BITS;
1301
41fb61c2 1302 ret = -ENOMEM;
07fd5515
SR
1303 new_hash = alloc_ftrace_hash(bits);
1304 if (!new_hash)
41fb61c2 1305 goto out;
33dc9b12
SR
1306
1307 size = 1 << src->size_bits;
1308 for (i = 0; i < size; i++) {
1309 hhd = &src->buckets[i];
1310 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist) {
1311 if (bits > 0)
1312 key = hash_long(entry->ip, bits);
1313 else
1314 key = 0;
1315 remove_hash_entry(src, entry);
07fd5515 1316 __add_hash_entry(new_hash, entry);
33dc9b12
SR
1317 }
1318 }
1319
07fd5515
SR
1320 old_hash = *dst;
1321 rcu_assign_pointer(*dst, new_hash);
1322 free_ftrace_hash_rcu(old_hash);
1323
41fb61c2
SR
1324 ret = 0;
1325 out:
1326 /*
1327 * Enable regardless of ret:
1328 * On success, we enable the new hash.
1329 * On failure, we re-enable the original hash.
1330 */
1331 ftrace_hash_rec_enable(ops, enable);
1332
1333 return ret;
33dc9b12
SR
1334}
1335
b848914c
SR
1336/*
1337 * Test the hashes for this ops to see if we want to call
1338 * the ops->func or not.
1339 *
1340 * It's a match if the ip is in the ops->filter_hash or
1341 * the filter_hash does not exist or is empty,
1342 * AND
1343 * the ip is not in the ops->notrace_hash.
cdbe61bf
SR
1344 *
1345 * This needs to be called with preemption disabled as
1346 * the hashes are freed with call_rcu_sched().
b848914c
SR
1347 */
1348static int
1349ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
1350{
1351 struct ftrace_hash *filter_hash;
1352 struct ftrace_hash *notrace_hash;
1353 int ret;
1354
b848914c
SR
1355 filter_hash = rcu_dereference_raw(ops->filter_hash);
1356 notrace_hash = rcu_dereference_raw(ops->notrace_hash);
1357
06a51d93 1358 if ((ftrace_hash_empty(filter_hash) ||
b848914c 1359 ftrace_lookup_ip(filter_hash, ip)) &&
06a51d93 1360 (ftrace_hash_empty(notrace_hash) ||
b848914c
SR
1361 !ftrace_lookup_ip(notrace_hash, ip)))
1362 ret = 1;
1363 else
1364 ret = 0;
b848914c
SR
1365
1366 return ret;
1367}
1368
493762fc
SR
1369/*
1370 * This is a double for. Do not use 'break' to break out of the loop,
1371 * you must use a goto.
1372 */
1373#define do_for_each_ftrace_rec(pg, rec) \
1374 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1375 int _____i; \
1376 for (_____i = 0; _____i < pg->index; _____i++) { \
1377 rec = &pg->records[_____i];
1378
1379#define while_for_each_ftrace_rec() \
1380 } \
1381 }
1382
5855fead
SR
1383
1384static int ftrace_cmp_recs(const void *a, const void *b)
1385{
1386 const struct dyn_ftrace *reca = a;
1387 const struct dyn_ftrace *recb = b;
1388
1389 if (reca->ip > recb->ip)
1390 return 1;
1391 if (reca->ip < recb->ip)
1392 return -1;
1393 return 0;
1394}
1395
c88fd863
SR
1396/**
1397 * ftrace_location - return true if the ip giving is a traced location
1398 * @ip: the instruction pointer to check
1399 *
1400 * Returns 1 if @ip given is a pointer to a ftrace location.
1401 * That is, the instruction that is either a NOP or call to
1402 * the function tracer. It checks the ftrace internal tables to
1403 * determine if the address belongs or not.
1404 */
1405int ftrace_location(unsigned long ip)
1406{
1407 struct ftrace_page *pg;
1408 struct dyn_ftrace *rec;
5855fead 1409 struct dyn_ftrace key;
c88fd863 1410
5855fead
SR
1411 key.ip = ip;
1412
1413 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1414 rec = bsearch(&key, pg->records, pg->index,
1415 sizeof(struct dyn_ftrace),
1416 ftrace_cmp_recs);
1417 if (rec)
c88fd863 1418 return 1;
5855fead 1419 }
c88fd863
SR
1420
1421 return 0;
1422}
1423
ed926f9b
SR
1424static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1425 int filter_hash,
1426 bool inc)
1427{
1428 struct ftrace_hash *hash;
1429 struct ftrace_hash *other_hash;
1430 struct ftrace_page *pg;
1431 struct dyn_ftrace *rec;
1432 int count = 0;
1433 int all = 0;
1434
1435 /* Only update if the ops has been registered */
1436 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1437 return;
1438
1439 /*
1440 * In the filter_hash case:
1441 * If the count is zero, we update all records.
1442 * Otherwise we just update the items in the hash.
1443 *
1444 * In the notrace_hash case:
1445 * We enable the update in the hash.
1446 * As disabling notrace means enabling the tracing,
1447 * and enabling notrace means disabling, the inc variable
1448 * gets inversed.
1449 */
1450 if (filter_hash) {
1451 hash = ops->filter_hash;
1452 other_hash = ops->notrace_hash;
06a51d93 1453 if (ftrace_hash_empty(hash))
ed926f9b
SR
1454 all = 1;
1455 } else {
1456 inc = !inc;
1457 hash = ops->notrace_hash;
1458 other_hash = ops->filter_hash;
1459 /*
1460 * If the notrace hash has no items,
1461 * then there's nothing to do.
1462 */
06a51d93 1463 if (ftrace_hash_empty(hash))
ed926f9b
SR
1464 return;
1465 }
1466
1467 do_for_each_ftrace_rec(pg, rec) {
1468 int in_other_hash = 0;
1469 int in_hash = 0;
1470 int match = 0;
1471
1472 if (all) {
1473 /*
1474 * Only the filter_hash affects all records.
1475 * Update if the record is not in the notrace hash.
1476 */
b848914c 1477 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
ed926f9b
SR
1478 match = 1;
1479 } else {
06a51d93
SR
1480 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1481 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
ed926f9b
SR
1482
1483 /*
1484 *
1485 */
1486 if (filter_hash && in_hash && !in_other_hash)
1487 match = 1;
1488 else if (!filter_hash && in_hash &&
06a51d93 1489 (in_other_hash || ftrace_hash_empty(other_hash)))
ed926f9b
SR
1490 match = 1;
1491 }
1492 if (!match)
1493 continue;
1494
1495 if (inc) {
1496 rec->flags++;
1497 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == FTRACE_REF_MAX))
1498 return;
1499 } else {
1500 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == 0))
1501 return;
1502 rec->flags--;
1503 }
1504 count++;
1505 /* Shortcut, if we handled all records, we are done. */
1506 if (!all && count == hash->count)
1507 return;
1508 } while_for_each_ftrace_rec();
1509}
1510
1511static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1512 int filter_hash)
1513{
1514 __ftrace_hash_rec_update(ops, filter_hash, 0);
1515}
1516
1517static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1518 int filter_hash)
1519{
1520 __ftrace_hash_rec_update(ops, filter_hash, 1);
1521}
1522
e309b41d 1523static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
3c1720f0 1524{
a7900875
SR
1525 if (ftrace_pages->index == ftrace_pages->size) {
1526 /* We should have allocated enough */
1527 if (WARN_ON(!ftrace_pages->next))
1528 return NULL;
3c1720f0
SR
1529 ftrace_pages = ftrace_pages->next;
1530 }
1531
1532 return &ftrace_pages->records[ftrace_pages->index++];
1533}
1534
08f5ac90 1535static struct dyn_ftrace *
d61f82d0 1536ftrace_record_ip(unsigned long ip)
3d083395 1537{
08f5ac90 1538 struct dyn_ftrace *rec;
3d083395 1539
f3c7ac40 1540 if (ftrace_disabled)
08f5ac90 1541 return NULL;
3d083395 1542
08f5ac90
SR
1543 rec = ftrace_alloc_dyn_node(ip);
1544 if (!rec)
1545 return NULL;
3d083395 1546
08f5ac90 1547 rec->ip = ip;
3d083395 1548
08f5ac90 1549 return rec;
3d083395
SR
1550}
1551
b17e8a37
SR
1552static void print_ip_ins(const char *fmt, unsigned char *p)
1553{
1554 int i;
1555
1556 printk(KERN_CONT "%s", fmt);
1557
1558 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1559 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1560}
1561
c88fd863
SR
1562/**
1563 * ftrace_bug - report and shutdown function tracer
1564 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1565 * @ip: The address that failed
1566 *
1567 * The arch code that enables or disables the function tracing
1568 * can call ftrace_bug() when it has detected a problem in
1569 * modifying the code. @failed should be one of either:
1570 * EFAULT - if the problem happens on reading the @ip address
1571 * EINVAL - if what is read at @ip is not what was expected
1572 * EPERM - if the problem happens on writting to the @ip address
1573 */
1574void ftrace_bug(int failed, unsigned long ip)
b17e8a37
SR
1575{
1576 switch (failed) {
1577 case -EFAULT:
1578 FTRACE_WARN_ON_ONCE(1);
1579 pr_info("ftrace faulted on modifying ");
1580 print_ip_sym(ip);
1581 break;
1582 case -EINVAL:
1583 FTRACE_WARN_ON_ONCE(1);
1584 pr_info("ftrace failed to modify ");
1585 print_ip_sym(ip);
b17e8a37 1586 print_ip_ins(" actual: ", (unsigned char *)ip);
b17e8a37
SR
1587 printk(KERN_CONT "\n");
1588 break;
1589 case -EPERM:
1590 FTRACE_WARN_ON_ONCE(1);
1591 pr_info("ftrace faulted on writing ");
1592 print_ip_sym(ip);
1593 break;
1594 default:
1595 FTRACE_WARN_ON_ONCE(1);
1596 pr_info("ftrace faulted on unknown error ");
1597 print_ip_sym(ip);
1598 }
1599}
1600
3c1720f0 1601
2cfa1978
MH
1602/* Return 1 if the address range is reserved for ftrace */
1603int ftrace_text_reserved(void *start, void *end)
1604{
1605 struct dyn_ftrace *rec;
1606 struct ftrace_page *pg;
1607
1608 do_for_each_ftrace_rec(pg, rec) {
1609 if (rec->ip <= (unsigned long)end &&
1610 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1611 return 1;
1612 } while_for_each_ftrace_rec();
1613 return 0;
1614}
1615
c88fd863 1616static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
5072c59f 1617{
64fbcd16 1618 unsigned long flag = 0UL;
e7d3737e 1619
982c350b 1620 /*
30fb6aa7 1621 * If we are updating calls:
982c350b 1622 *
ed926f9b
SR
1623 * If the record has a ref count, then we need to enable it
1624 * because someone is using it.
982c350b 1625 *
ed926f9b
SR
1626 * Otherwise we make sure its disabled.
1627 *
30fb6aa7 1628 * If we are disabling calls, then disable all records that
ed926f9b 1629 * are enabled.
982c350b 1630 */
c88fd863 1631 if (enable && (rec->flags & ~FTRACE_FL_MASK))
ed926f9b 1632 flag = FTRACE_FL_ENABLED;
982c350b 1633
64fbcd16
XG
1634 /* If the state of this record hasn't changed, then do nothing */
1635 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
c88fd863 1636 return FTRACE_UPDATE_IGNORE;
982c350b 1637
64fbcd16 1638 if (flag) {
c88fd863
SR
1639 if (update)
1640 rec->flags |= FTRACE_FL_ENABLED;
1641 return FTRACE_UPDATE_MAKE_CALL;
1642 }
1643
1644 if (update)
1645 rec->flags &= ~FTRACE_FL_ENABLED;
1646
1647 return FTRACE_UPDATE_MAKE_NOP;
1648}
1649
1650/**
1651 * ftrace_update_record, set a record that now is tracing or not
1652 * @rec: the record to update
1653 * @enable: set to 1 if the record is tracing, zero to force disable
1654 *
1655 * The records that represent all functions that can be traced need
1656 * to be updated when tracing has been enabled.
1657 */
1658int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1659{
1660 return ftrace_check_record(rec, enable, 1);
1661}
1662
1663/**
1664 * ftrace_test_record, check if the record has been enabled or not
1665 * @rec: the record to test
1666 * @enable: set to 1 to check if enabled, 0 if it is disabled
1667 *
1668 * The arch code may need to test if a record is already set to
1669 * tracing to determine how to modify the function code that it
1670 * represents.
1671 */
1672int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1673{
1674 return ftrace_check_record(rec, enable, 0);
1675}
1676
1677static int
1678__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1679{
1680 unsigned long ftrace_addr;
1681 int ret;
1682
1683 ftrace_addr = (unsigned long)FTRACE_ADDR;
1684
1685 ret = ftrace_update_record(rec, enable);
1686
1687 switch (ret) {
1688 case FTRACE_UPDATE_IGNORE:
1689 return 0;
1690
1691 case FTRACE_UPDATE_MAKE_CALL:
64fbcd16 1692 return ftrace_make_call(rec, ftrace_addr);
c88fd863
SR
1693
1694 case FTRACE_UPDATE_MAKE_NOP:
1695 return ftrace_make_nop(NULL, rec, ftrace_addr);
5072c59f
SR
1696 }
1697
c88fd863 1698 return -1; /* unknow ftrace bug */
5072c59f
SR
1699}
1700
30fb6aa7 1701static void ftrace_replace_code(int update)
3c1720f0 1702{
3c1720f0
SR
1703 struct dyn_ftrace *rec;
1704 struct ftrace_page *pg;
6a24a244 1705 int failed;
3c1720f0 1706
45a4a237
SR
1707 if (unlikely(ftrace_disabled))
1708 return;
1709
265c831c 1710 do_for_each_ftrace_rec(pg, rec) {
30fb6aa7 1711 failed = __ftrace_replace_code(rec, update);
fa9d13cf 1712 if (failed) {
3279ba37
SR
1713 ftrace_bug(failed, rec->ip);
1714 /* Stop processing */
1715 return;
3c1720f0 1716 }
265c831c 1717 } while_for_each_ftrace_rec();
3c1720f0
SR
1718}
1719
c88fd863
SR
1720struct ftrace_rec_iter {
1721 struct ftrace_page *pg;
1722 int index;
1723};
1724
1725/**
1726 * ftrace_rec_iter_start, start up iterating over traced functions
1727 *
1728 * Returns an iterator handle that is used to iterate over all
1729 * the records that represent address locations where functions
1730 * are traced.
1731 *
1732 * May return NULL if no records are available.
1733 */
1734struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1735{
1736 /*
1737 * We only use a single iterator.
1738 * Protected by the ftrace_lock mutex.
1739 */
1740 static struct ftrace_rec_iter ftrace_rec_iter;
1741 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1742
1743 iter->pg = ftrace_pages_start;
1744 iter->index = 0;
1745
1746 /* Could have empty pages */
1747 while (iter->pg && !iter->pg->index)
1748 iter->pg = iter->pg->next;
1749
1750 if (!iter->pg)
1751 return NULL;
1752
1753 return iter;
1754}
1755
1756/**
1757 * ftrace_rec_iter_next, get the next record to process.
1758 * @iter: The handle to the iterator.
1759 *
1760 * Returns the next iterator after the given iterator @iter.
1761 */
1762struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1763{
1764 iter->index++;
1765
1766 if (iter->index >= iter->pg->index) {
1767 iter->pg = iter->pg->next;
1768 iter->index = 0;
1769
1770 /* Could have empty pages */
1771 while (iter->pg && !iter->pg->index)
1772 iter->pg = iter->pg->next;
1773 }
1774
1775 if (!iter->pg)
1776 return NULL;
1777
1778 return iter;
1779}
1780
1781/**
1782 * ftrace_rec_iter_record, get the record at the iterator location
1783 * @iter: The current iterator location
1784 *
1785 * Returns the record that the current @iter is at.
1786 */
1787struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1788{
1789 return &iter->pg->records[iter->index];
1790}
1791
492a7ea5 1792static int
31e88909 1793ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
3c1720f0
SR
1794{
1795 unsigned long ip;
593eb8a2 1796 int ret;
3c1720f0
SR
1797
1798 ip = rec->ip;
1799
45a4a237
SR
1800 if (unlikely(ftrace_disabled))
1801 return 0;
1802
25aac9dc 1803 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
593eb8a2 1804 if (ret) {
31e88909 1805 ftrace_bug(ret, ip);
492a7ea5 1806 return 0;
37ad5084 1807 }
492a7ea5 1808 return 1;
3c1720f0
SR
1809}
1810
000ab691
SR
1811/*
1812 * archs can override this function if they must do something
1813 * before the modifying code is performed.
1814 */
1815int __weak ftrace_arch_code_modify_prepare(void)
1816{
1817 return 0;
1818}
1819
1820/*
1821 * archs can override this function if they must do something
1822 * after the modifying code is performed.
1823 */
1824int __weak ftrace_arch_code_modify_post_process(void)
1825{
1826 return 0;
1827}
1828
e309b41d 1829static int __ftrace_modify_code(void *data)
3d083395 1830{
d61f82d0
SR
1831 int *command = data;
1832
30fb6aa7 1833 if (*command & FTRACE_UPDATE_CALLS)
d61f82d0 1834 ftrace_replace_code(1);
a3583244 1835 else if (*command & FTRACE_DISABLE_CALLS)
d61f82d0
SR
1836 ftrace_replace_code(0);
1837
1838 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1839 ftrace_update_ftrace_func(ftrace_trace_function);
1840
5a45cfe1
SR
1841 if (*command & FTRACE_START_FUNC_RET)
1842 ftrace_enable_ftrace_graph_caller();
1843 else if (*command & FTRACE_STOP_FUNC_RET)
1844 ftrace_disable_ftrace_graph_caller();
1845
d61f82d0 1846 return 0;
3d083395
SR
1847}
1848
c88fd863
SR
1849/**
1850 * ftrace_run_stop_machine, go back to the stop machine method
1851 * @command: The command to tell ftrace what to do
1852 *
1853 * If an arch needs to fall back to the stop machine method, the
1854 * it can call this function.
1855 */
1856void ftrace_run_stop_machine(int command)
1857{
1858 stop_machine(__ftrace_modify_code, &command, NULL);
1859}
1860
1861/**
1862 * arch_ftrace_update_code, modify the code to trace or not trace
1863 * @command: The command that needs to be done
1864 *
1865 * Archs can override this function if it does not need to
1866 * run stop_machine() to modify code.
1867 */
1868void __weak arch_ftrace_update_code(int command)
1869{
1870 ftrace_run_stop_machine(command);
1871}
1872
e309b41d 1873static void ftrace_run_update_code(int command)
3d083395 1874{
000ab691
SR
1875 int ret;
1876
1877 ret = ftrace_arch_code_modify_prepare();
1878 FTRACE_WARN_ON(ret);
1879 if (ret)
1880 return;
c88fd863
SR
1881 /*
1882 * Do not call function tracer while we update the code.
1883 * We are in stop machine.
1884 */
1885 function_trace_stop++;
000ab691 1886
c88fd863
SR
1887 /*
1888 * By default we use stop_machine() to modify the code.
1889 * But archs can do what ever they want as long as it
1890 * is safe. The stop_machine() is the safest, but also
1891 * produces the most overhead.
1892 */
1893 arch_ftrace_update_code(command);
1894
1895#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1896 /*
1897 * For archs that call ftrace_test_stop_func(), we must
1898 * wait till after we update all the function callers
1899 * before we update the callback. This keeps different
1900 * ops that record different functions from corrupting
1901 * each other.
1902 */
1903 __ftrace_trace_function = __ftrace_trace_function_delay;
1904#endif
1905 function_trace_stop--;
000ab691
SR
1906
1907 ret = ftrace_arch_code_modify_post_process();
1908 FTRACE_WARN_ON(ret);
3d083395
SR
1909}
1910
d61f82d0 1911static ftrace_func_t saved_ftrace_func;
60a7ecf4 1912static int ftrace_start_up;
b848914c 1913static int global_start_up;
df4fc315
SR
1914
1915static void ftrace_startup_enable(int command)
1916{
1917 if (saved_ftrace_func != ftrace_trace_function) {
1918 saved_ftrace_func = ftrace_trace_function;
1919 command |= FTRACE_UPDATE_TRACE_FUNC;
1920 }
1921
1922 if (!command || !ftrace_enabled)
1923 return;
1924
1925 ftrace_run_update_code(command);
1926}
d61f82d0 1927
a1cd6173 1928static int ftrace_startup(struct ftrace_ops *ops, int command)
3d083395 1929{
b848914c
SR
1930 bool hash_enable = true;
1931
4eebcc81 1932 if (unlikely(ftrace_disabled))
a1cd6173 1933 return -ENODEV;
4eebcc81 1934
60a7ecf4 1935 ftrace_start_up++;
30fb6aa7 1936 command |= FTRACE_UPDATE_CALLS;
d61f82d0 1937
b848914c
SR
1938 /* ops marked global share the filter hashes */
1939 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1940 ops = &global_ops;
1941 /* Don't update hash if global is already set */
1942 if (global_start_up)
1943 hash_enable = false;
1944 global_start_up++;
1945 }
1946
ed926f9b 1947 ops->flags |= FTRACE_OPS_FL_ENABLED;
b848914c 1948 if (hash_enable)
ed926f9b
SR
1949 ftrace_hash_rec_enable(ops, 1);
1950
df4fc315 1951 ftrace_startup_enable(command);
a1cd6173
SR
1952
1953 return 0;
3d083395
SR
1954}
1955
bd69c30b 1956static void ftrace_shutdown(struct ftrace_ops *ops, int command)
3d083395 1957{
b848914c
SR
1958 bool hash_disable = true;
1959
4eebcc81
SR
1960 if (unlikely(ftrace_disabled))
1961 return;
1962
60a7ecf4 1963 ftrace_start_up--;
9ea1a153
FW
1964 /*
1965 * Just warn in case of unbalance, no need to kill ftrace, it's not
1966 * critical but the ftrace_call callers may be never nopped again after
1967 * further ftrace uses.
1968 */
1969 WARN_ON_ONCE(ftrace_start_up < 0);
1970
b848914c
SR
1971 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1972 ops = &global_ops;
1973 global_start_up--;
1974 WARN_ON_ONCE(global_start_up < 0);
1975 /* Don't update hash if global still has users */
1976 if (global_start_up) {
1977 WARN_ON_ONCE(!ftrace_start_up);
1978 hash_disable = false;
1979 }
1980 }
1981
1982 if (hash_disable)
ed926f9b
SR
1983 ftrace_hash_rec_disable(ops, 1);
1984
b848914c 1985 if (ops != &global_ops || !global_start_up)
ed926f9b 1986 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
b848914c 1987
30fb6aa7 1988 command |= FTRACE_UPDATE_CALLS;
3d083395 1989
d61f82d0
SR
1990 if (saved_ftrace_func != ftrace_trace_function) {
1991 saved_ftrace_func = ftrace_trace_function;
1992 command |= FTRACE_UPDATE_TRACE_FUNC;
1993 }
3d083395 1994
d61f82d0 1995 if (!command || !ftrace_enabled)
e6ea44e9 1996 return;
d61f82d0
SR
1997
1998 ftrace_run_update_code(command);
3d083395
SR
1999}
2000
e309b41d 2001static void ftrace_startup_sysctl(void)
b0fc494f 2002{
4eebcc81
SR
2003 if (unlikely(ftrace_disabled))
2004 return;
2005
d61f82d0
SR
2006 /* Force update next time */
2007 saved_ftrace_func = NULL;
60a7ecf4
SR
2008 /* ftrace_start_up is true if we want ftrace running */
2009 if (ftrace_start_up)
30fb6aa7 2010 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
b0fc494f
SR
2011}
2012
e309b41d 2013static void ftrace_shutdown_sysctl(void)
b0fc494f 2014{
4eebcc81
SR
2015 if (unlikely(ftrace_disabled))
2016 return;
2017
60a7ecf4
SR
2018 /* ftrace_start_up is true if ftrace is running */
2019 if (ftrace_start_up)
79e406d7 2020 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
b0fc494f
SR
2021}
2022
3d083395
SR
2023static cycle_t ftrace_update_time;
2024static unsigned long ftrace_update_cnt;
2025unsigned long ftrace_update_tot_cnt;
2026
f7bc8b61
SR
2027static int ops_traces_mod(struct ftrace_ops *ops)
2028{
2029 struct ftrace_hash *hash;
2030
2031 hash = ops->filter_hash;
06a51d93 2032 return ftrace_hash_empty(hash);
f7bc8b61
SR
2033}
2034
31e88909 2035static int ftrace_update_code(struct module *mod)
3d083395 2036{
85ae32ae 2037 struct ftrace_page *pg;
e94142a6 2038 struct dyn_ftrace *p;
f22f9a89 2039 cycle_t start, stop;
f7bc8b61 2040 unsigned long ref = 0;
85ae32ae 2041 int i;
f7bc8b61
SR
2042
2043 /*
2044 * When adding a module, we need to check if tracers are
2045 * currently enabled and if they are set to trace all functions.
2046 * If they are, we need to enable the module functions as well
2047 * as update the reference counts for those function records.
2048 */
2049 if (mod) {
2050 struct ftrace_ops *ops;
2051
2052 for (ops = ftrace_ops_list;
2053 ops != &ftrace_list_end; ops = ops->next) {
2054 if (ops->flags & FTRACE_OPS_FL_ENABLED &&
2055 ops_traces_mod(ops))
2056 ref++;
2057 }
2058 }
3d083395 2059
750ed1a4 2060 start = ftrace_now(raw_smp_processor_id());
3d083395
SR
2061 ftrace_update_cnt = 0;
2062
85ae32ae 2063 for (pg = ftrace_new_pgs; pg; pg = pg->next) {
3d083395 2064
85ae32ae
SR
2065 for (i = 0; i < pg->index; i++) {
2066 /* If something went wrong, bail without enabling anything */
2067 if (unlikely(ftrace_disabled))
2068 return -1;
f22f9a89 2069
85ae32ae
SR
2070 p = &pg->records[i];
2071 p->flags = ref;
f22f9a89 2072
85ae32ae
SR
2073 /*
2074 * Do the initial record conversion from mcount jump
2075 * to the NOP instructions.
2076 */
2077 if (!ftrace_code_disable(mod, p))
2078 break;
5cb084bb 2079
85ae32ae 2080 ftrace_update_cnt++;
5cb084bb 2081
85ae32ae
SR
2082 /*
2083 * If the tracing is enabled, go ahead and enable the record.
2084 *
2085 * The reason not to enable the record immediatelly is the
2086 * inherent check of ftrace_make_nop/ftrace_make_call for
2087 * correct previous instructions. Making first the NOP
2088 * conversion puts the module to the correct state, thus
2089 * passing the ftrace_make_call check.
2090 */
2091 if (ftrace_start_up && ref) {
2092 int failed = __ftrace_replace_code(p, 1);
2093 if (failed)
2094 ftrace_bug(failed, p->ip);
2095 }
5cb084bb 2096 }
3d083395
SR
2097 }
2098
85ae32ae
SR
2099 ftrace_new_pgs = NULL;
2100
750ed1a4 2101 stop = ftrace_now(raw_smp_processor_id());
3d083395
SR
2102 ftrace_update_time = stop - start;
2103 ftrace_update_tot_cnt += ftrace_update_cnt;
2104
16444a8a
ACM
2105 return 0;
2106}
2107
a7900875 2108static int ftrace_allocate_records(struct ftrace_page *pg, int count)
3c1720f0 2109{
a7900875 2110 int order;
3c1720f0 2111 int cnt;
3c1720f0 2112
a7900875
SR
2113 if (WARN_ON(!count))
2114 return -EINVAL;
2115
2116 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
3c1720f0
SR
2117
2118 /*
a7900875
SR
2119 * We want to fill as much as possible. No more than a page
2120 * may be empty.
3c1720f0 2121 */
a7900875
SR
2122 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2123 order--;
3c1720f0 2124
a7900875
SR
2125 again:
2126 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
3c1720f0 2127
a7900875
SR
2128 if (!pg->records) {
2129 /* if we can't allocate this size, try something smaller */
2130 if (!order)
2131 return -ENOMEM;
2132 order >>= 1;
2133 goto again;
2134 }
3c1720f0 2135
a7900875
SR
2136 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2137 pg->size = cnt;
3c1720f0 2138
a7900875
SR
2139 if (cnt > count)
2140 cnt = count;
2141
2142 return cnt;
2143}
2144
2145static struct ftrace_page *
2146ftrace_allocate_pages(unsigned long num_to_init)
2147{
2148 struct ftrace_page *start_pg;
2149 struct ftrace_page *pg;
2150 int order;
2151 int cnt;
2152
2153 if (!num_to_init)
2154 return 0;
2155
2156 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2157 if (!pg)
2158 return NULL;
2159
2160 /*
2161 * Try to allocate as much as possible in one continues
2162 * location that fills in all of the space. We want to
2163 * waste as little space as possible.
2164 */
2165 for (;;) {
2166 cnt = ftrace_allocate_records(pg, num_to_init);
2167 if (cnt < 0)
2168 goto free_pages;
2169
2170 num_to_init -= cnt;
2171 if (!num_to_init)
3c1720f0
SR
2172 break;
2173
a7900875
SR
2174 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2175 if (!pg->next)
2176 goto free_pages;
2177
3c1720f0
SR
2178 pg = pg->next;
2179 }
2180
a7900875
SR
2181 return start_pg;
2182
2183 free_pages:
2184 while (start_pg) {
2185 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2186 free_pages((unsigned long)pg->records, order);
2187 start_pg = pg->next;
2188 kfree(pg);
2189 pg = start_pg;
2190 }
2191 pr_info("ftrace: FAILED to allocate memory for functions\n");
2192 return NULL;
2193}
2194
2195static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
2196{
2197 int cnt;
2198
2199 if (!num_to_init) {
2200 pr_info("ftrace: No functions to be traced?\n");
2201 return -1;
2202 }
2203
2204 cnt = num_to_init / ENTRIES_PER_PAGE;
2205 pr_info("ftrace: allocating %ld entries in %d pages\n",
2206 num_to_init, cnt + 1);
2207
3c1720f0
SR
2208 return 0;
2209}
2210
5072c59f
SR
2211#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2212
2213struct ftrace_iterator {
98c4fd04 2214 loff_t pos;
4aeb6967
SR
2215 loff_t func_pos;
2216 struct ftrace_page *pg;
2217 struct dyn_ftrace *func;
2218 struct ftrace_func_probe *probe;
2219 struct trace_parser parser;
1cf41dd7 2220 struct ftrace_hash *hash;
33dc9b12 2221 struct ftrace_ops *ops;
4aeb6967
SR
2222 int hidx;
2223 int idx;
2224 unsigned flags;
5072c59f
SR
2225};
2226
8fc0c701 2227static void *
4aeb6967 2228t_hash_next(struct seq_file *m, loff_t *pos)
8fc0c701
SR
2229{
2230 struct ftrace_iterator *iter = m->private;
4aeb6967 2231 struct hlist_node *hnd = NULL;
8fc0c701
SR
2232 struct hlist_head *hhd;
2233
8fc0c701 2234 (*pos)++;
98c4fd04 2235 iter->pos = *pos;
8fc0c701 2236
4aeb6967
SR
2237 if (iter->probe)
2238 hnd = &iter->probe->node;
8fc0c701
SR
2239 retry:
2240 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2241 return NULL;
2242
2243 hhd = &ftrace_func_hash[iter->hidx];
2244
2245 if (hlist_empty(hhd)) {
2246 iter->hidx++;
2247 hnd = NULL;
2248 goto retry;
2249 }
2250
2251 if (!hnd)
2252 hnd = hhd->first;
2253 else {
2254 hnd = hnd->next;
2255 if (!hnd) {
2256 iter->hidx++;
2257 goto retry;
2258 }
2259 }
2260
4aeb6967
SR
2261 if (WARN_ON_ONCE(!hnd))
2262 return NULL;
2263
2264 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2265
2266 return iter;
8fc0c701
SR
2267}
2268
2269static void *t_hash_start(struct seq_file *m, loff_t *pos)
2270{
2271 struct ftrace_iterator *iter = m->private;
2272 void *p = NULL;
d82d6244
LZ
2273 loff_t l;
2274
69a3083c
SR
2275 if (!(iter->flags & FTRACE_ITER_DO_HASH))
2276 return NULL;
2277
2bccfffd
SR
2278 if (iter->func_pos > *pos)
2279 return NULL;
8fc0c701 2280
d82d6244 2281 iter->hidx = 0;
2bccfffd 2282 for (l = 0; l <= (*pos - iter->func_pos); ) {
4aeb6967 2283 p = t_hash_next(m, &l);
d82d6244
LZ
2284 if (!p)
2285 break;
2286 }
4aeb6967
SR
2287 if (!p)
2288 return NULL;
2289
98c4fd04
SR
2290 /* Only set this if we have an item */
2291 iter->flags |= FTRACE_ITER_HASH;
2292
4aeb6967 2293 return iter;
8fc0c701
SR
2294}
2295
4aeb6967
SR
2296static int
2297t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
8fc0c701 2298{
b6887d79 2299 struct ftrace_func_probe *rec;
8fc0c701 2300
4aeb6967
SR
2301 rec = iter->probe;
2302 if (WARN_ON_ONCE(!rec))
2303 return -EIO;
8fc0c701 2304
809dcf29
SR
2305 if (rec->ops->print)
2306 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2307
b375a11a 2308 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
8fc0c701
SR
2309
2310 if (rec->data)
2311 seq_printf(m, ":%p", rec->data);
2312 seq_putc(m, '\n');
2313
2314 return 0;
2315}
2316
e309b41d 2317static void *
5072c59f
SR
2318t_next(struct seq_file *m, void *v, loff_t *pos)
2319{
2320 struct ftrace_iterator *iter = m->private;
fc13cb0c 2321 struct ftrace_ops *ops = iter->ops;
5072c59f
SR
2322 struct dyn_ftrace *rec = NULL;
2323
45a4a237
SR
2324 if (unlikely(ftrace_disabled))
2325 return NULL;
2326
8fc0c701 2327 if (iter->flags & FTRACE_ITER_HASH)
4aeb6967 2328 return t_hash_next(m, pos);
8fc0c701 2329
5072c59f 2330 (*pos)++;
1106b699 2331 iter->pos = iter->func_pos = *pos;
5072c59f 2332
0c75a3ed 2333 if (iter->flags & FTRACE_ITER_PRINTALL)
57c072c7 2334 return t_hash_start(m, pos);
0c75a3ed 2335
5072c59f
SR
2336 retry:
2337 if (iter->idx >= iter->pg->index) {
2338 if (iter->pg->next) {
2339 iter->pg = iter->pg->next;
2340 iter->idx = 0;
2341 goto retry;
2342 }
2343 } else {
2344 rec = &iter->pg->records[iter->idx++];
32082309 2345 if (((iter->flags & FTRACE_ITER_FILTER) &&
f45948e8 2346 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
0183fb1c 2347
41c52c0d 2348 ((iter->flags & FTRACE_ITER_NOTRACE) &&
647bcd03
SR
2349 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2350
2351 ((iter->flags & FTRACE_ITER_ENABLED) &&
2352 !(rec->flags & ~FTRACE_FL_MASK))) {
2353
5072c59f
SR
2354 rec = NULL;
2355 goto retry;
2356 }
2357 }
2358
4aeb6967 2359 if (!rec)
57c072c7 2360 return t_hash_start(m, pos);
4aeb6967
SR
2361
2362 iter->func = rec;
2363
2364 return iter;
5072c59f
SR
2365}
2366
98c4fd04
SR
2367static void reset_iter_read(struct ftrace_iterator *iter)
2368{
2369 iter->pos = 0;
2370 iter->func_pos = 0;
2371 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
5072c59f
SR
2372}
2373
2374static void *t_start(struct seq_file *m, loff_t *pos)
2375{
2376 struct ftrace_iterator *iter = m->private;
fc13cb0c 2377 struct ftrace_ops *ops = iter->ops;
5072c59f 2378 void *p = NULL;
694ce0a5 2379 loff_t l;
5072c59f 2380
8fc0c701 2381 mutex_lock(&ftrace_lock);
45a4a237
SR
2382
2383 if (unlikely(ftrace_disabled))
2384 return NULL;
2385
98c4fd04
SR
2386 /*
2387 * If an lseek was done, then reset and start from beginning.
2388 */
2389 if (*pos < iter->pos)
2390 reset_iter_read(iter);
2391
0c75a3ed
SR
2392 /*
2393 * For set_ftrace_filter reading, if we have the filter
2394 * off, we can short cut and just print out that all
2395 * functions are enabled.
2396 */
06a51d93
SR
2397 if (iter->flags & FTRACE_ITER_FILTER &&
2398 ftrace_hash_empty(ops->filter_hash)) {
0c75a3ed 2399 if (*pos > 0)
8fc0c701 2400 return t_hash_start(m, pos);
0c75a3ed 2401 iter->flags |= FTRACE_ITER_PRINTALL;
df091625
CW
2402 /* reset in case of seek/pread */
2403 iter->flags &= ~FTRACE_ITER_HASH;
0c75a3ed
SR
2404 return iter;
2405 }
2406
8fc0c701
SR
2407 if (iter->flags & FTRACE_ITER_HASH)
2408 return t_hash_start(m, pos);
2409
98c4fd04
SR
2410 /*
2411 * Unfortunately, we need to restart at ftrace_pages_start
2412 * every time we let go of the ftrace_mutex. This is because
2413 * those pointers can change without the lock.
2414 */
694ce0a5
LZ
2415 iter->pg = ftrace_pages_start;
2416 iter->idx = 0;
2417 for (l = 0; l <= *pos; ) {
2418 p = t_next(m, p, &l);
2419 if (!p)
2420 break;
50cdaf08 2421 }
5821e1b7 2422
69a3083c
SR
2423 if (!p)
2424 return t_hash_start(m, pos);
4aeb6967
SR
2425
2426 return iter;
5072c59f
SR
2427}
2428
2429static void t_stop(struct seq_file *m, void *p)
2430{
8fc0c701 2431 mutex_unlock(&ftrace_lock);
5072c59f
SR
2432}
2433
2434static int t_show(struct seq_file *m, void *v)
2435{
0c75a3ed 2436 struct ftrace_iterator *iter = m->private;
4aeb6967 2437 struct dyn_ftrace *rec;
5072c59f 2438
8fc0c701 2439 if (iter->flags & FTRACE_ITER_HASH)
4aeb6967 2440 return t_hash_show(m, iter);
8fc0c701 2441
0c75a3ed
SR
2442 if (iter->flags & FTRACE_ITER_PRINTALL) {
2443 seq_printf(m, "#### all functions enabled ####\n");
2444 return 0;
2445 }
2446
4aeb6967
SR
2447 rec = iter->func;
2448
5072c59f
SR
2449 if (!rec)
2450 return 0;
2451
647bcd03
SR
2452 seq_printf(m, "%ps", (void *)rec->ip);
2453 if (iter->flags & FTRACE_ITER_ENABLED)
2454 seq_printf(m, " (%ld)",
2455 rec->flags & ~FTRACE_FL_MASK);
2456 seq_printf(m, "\n");
5072c59f
SR
2457
2458 return 0;
2459}
2460
88e9d34c 2461static const struct seq_operations show_ftrace_seq_ops = {
5072c59f
SR
2462 .start = t_start,
2463 .next = t_next,
2464 .stop = t_stop,
2465 .show = t_show,
2466};
2467
e309b41d 2468static int
5072c59f
SR
2469ftrace_avail_open(struct inode *inode, struct file *file)
2470{
2471 struct ftrace_iterator *iter;
5072c59f 2472
4eebcc81
SR
2473 if (unlikely(ftrace_disabled))
2474 return -ENODEV;
2475
50e18b94
JO
2476 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
2477 if (iter) {
2478 iter->pg = ftrace_pages_start;
2479 iter->ops = &global_ops;
4bf39a94 2480 }
5072c59f 2481
50e18b94 2482 return iter ? 0 : -ENOMEM;
5072c59f
SR
2483}
2484
647bcd03
SR
2485static int
2486ftrace_enabled_open(struct inode *inode, struct file *file)
2487{
2488 struct ftrace_iterator *iter;
647bcd03
SR
2489
2490 if (unlikely(ftrace_disabled))
2491 return -ENODEV;
2492
50e18b94
JO
2493 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
2494 if (iter) {
2495 iter->pg = ftrace_pages_start;
2496 iter->flags = FTRACE_ITER_ENABLED;
2497 iter->ops = &global_ops;
647bcd03
SR
2498 }
2499
50e18b94 2500 return iter ? 0 : -ENOMEM;
647bcd03
SR
2501}
2502
1cf41dd7 2503static void ftrace_filter_reset(struct ftrace_hash *hash)
5072c59f 2504{
52baf119 2505 mutex_lock(&ftrace_lock);
1cf41dd7 2506 ftrace_hash_clear(hash);
52baf119 2507 mutex_unlock(&ftrace_lock);
5072c59f
SR
2508}
2509
fc13cb0c
SR
2510/**
2511 * ftrace_regex_open - initialize function tracer filter files
2512 * @ops: The ftrace_ops that hold the hash filters
2513 * @flag: The type of filter to process
2514 * @inode: The inode, usually passed in to your open routine
2515 * @file: The file, usually passed in to your open routine
2516 *
2517 * ftrace_regex_open() initializes the filter files for the
2518 * @ops. Depending on @flag it may process the filter hash or
2519 * the notrace hash of @ops. With this called from the open
2520 * routine, you can use ftrace_filter_write() for the write
2521 * routine if @flag has FTRACE_ITER_FILTER set, or
2522 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
2523 * ftrace_regex_lseek() should be used as the lseek routine, and
2524 * release must call ftrace_regex_release().
2525 */
2526int
f45948e8 2527ftrace_regex_open(struct ftrace_ops *ops, int flag,
1cf41dd7 2528 struct inode *inode, struct file *file)
5072c59f
SR
2529{
2530 struct ftrace_iterator *iter;
f45948e8 2531 struct ftrace_hash *hash;
5072c59f
SR
2532 int ret = 0;
2533
4eebcc81
SR
2534 if (unlikely(ftrace_disabled))
2535 return -ENODEV;
2536
5072c59f
SR
2537 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2538 if (!iter)
2539 return -ENOMEM;
2540
689fd8b6 2541 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2542 kfree(iter);
2543 return -ENOMEM;
2544 }
2545
f45948e8
SR
2546 if (flag & FTRACE_ITER_NOTRACE)
2547 hash = ops->notrace_hash;
2548 else
2549 hash = ops->filter_hash;
2550
33dc9b12
SR
2551 iter->ops = ops;
2552 iter->flags = flag;
2553
2554 if (file->f_mode & FMODE_WRITE) {
2555 mutex_lock(&ftrace_lock);
2556 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2557 mutex_unlock(&ftrace_lock);
2558
2559 if (!iter->hash) {
2560 trace_parser_put(&iter->parser);
2561 kfree(iter);
2562 return -ENOMEM;
2563 }
2564 }
1cf41dd7 2565
41c52c0d 2566 mutex_lock(&ftrace_regex_lock);
33dc9b12 2567
5072c59f 2568 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 2569 (file->f_flags & O_TRUNC))
33dc9b12 2570 ftrace_filter_reset(iter->hash);
5072c59f
SR
2571
2572 if (file->f_mode & FMODE_READ) {
2573 iter->pg = ftrace_pages_start;
5072c59f
SR
2574
2575 ret = seq_open(file, &show_ftrace_seq_ops);
2576 if (!ret) {
2577 struct seq_file *m = file->private_data;
2578 m->private = iter;
79fe249c 2579 } else {
33dc9b12
SR
2580 /* Failed */
2581 free_ftrace_hash(iter->hash);
79fe249c 2582 trace_parser_put(&iter->parser);
5072c59f 2583 kfree(iter);
79fe249c 2584 }
5072c59f
SR
2585 } else
2586 file->private_data = iter;
41c52c0d 2587 mutex_unlock(&ftrace_regex_lock);
5072c59f
SR
2588
2589 return ret;
2590}
2591
41c52c0d
SR
2592static int
2593ftrace_filter_open(struct inode *inode, struct file *file)
2594{
69a3083c
SR
2595 return ftrace_regex_open(&global_ops,
2596 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
2597 inode, file);
41c52c0d
SR
2598}
2599
2600static int
2601ftrace_notrace_open(struct inode *inode, struct file *file)
2602{
f45948e8 2603 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
1cf41dd7 2604 inode, file);
41c52c0d
SR
2605}
2606
fc13cb0c 2607loff_t
41c52c0d 2608ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
5072c59f
SR
2609{
2610 loff_t ret;
2611
2612 if (file->f_mode & FMODE_READ)
2613 ret = seq_lseek(file, offset, origin);
2614 else
2615 file->f_pos = ret = 1;
2616
2617 return ret;
2618}
2619
64e7c440 2620static int ftrace_match(char *str, char *regex, int len, int type)
9f4801e3 2621{
9f4801e3 2622 int matched = 0;
751e9983 2623 int slen;
9f4801e3 2624
9f4801e3
SR
2625 switch (type) {
2626 case MATCH_FULL:
2627 if (strcmp(str, regex) == 0)
2628 matched = 1;
2629 break;
2630 case MATCH_FRONT_ONLY:
2631 if (strncmp(str, regex, len) == 0)
2632 matched = 1;
2633 break;
2634 case MATCH_MIDDLE_ONLY:
2635 if (strstr(str, regex))
2636 matched = 1;
2637 break;
2638 case MATCH_END_ONLY:
751e9983
LZ
2639 slen = strlen(str);
2640 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
9f4801e3
SR
2641 matched = 1;
2642 break;
2643 }
2644
2645 return matched;
2646}
2647
b448c4e3 2648static int
1cf41dd7 2649enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
996e87be 2650{
b448c4e3 2651 struct ftrace_func_entry *entry;
b448c4e3
SR
2652 int ret = 0;
2653
1cf41dd7
SR
2654 entry = ftrace_lookup_ip(hash, rec->ip);
2655 if (not) {
2656 /* Do nothing if it doesn't exist */
2657 if (!entry)
2658 return 0;
b448c4e3 2659
33dc9b12 2660 free_hash_entry(hash, entry);
1cf41dd7
SR
2661 } else {
2662 /* Do nothing if it exists */
2663 if (entry)
2664 return 0;
b448c4e3 2665
1cf41dd7 2666 ret = add_hash_entry(hash, rec->ip);
b448c4e3
SR
2667 }
2668 return ret;
996e87be
SR
2669}
2670
64e7c440 2671static int
b9df92d2
SR
2672ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2673 char *regex, int len, int type)
64e7c440
SR
2674{
2675 char str[KSYM_SYMBOL_LEN];
b9df92d2
SR
2676 char *modname;
2677
2678 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2679
2680 if (mod) {
2681 /* module lookup requires matching the module */
2682 if (!modname || strcmp(modname, mod))
2683 return 0;
2684
2685 /* blank search means to match all funcs in the mod */
2686 if (!len)
2687 return 1;
2688 }
64e7c440 2689
64e7c440
SR
2690 return ftrace_match(str, regex, len, type);
2691}
2692
1cf41dd7
SR
2693static int
2694match_records(struct ftrace_hash *hash, char *buff,
2695 int len, char *mod, int not)
9f4801e3 2696{
b9df92d2 2697 unsigned search_len = 0;
9f4801e3
SR
2698 struct ftrace_page *pg;
2699 struct dyn_ftrace *rec;
b9df92d2
SR
2700 int type = MATCH_FULL;
2701 char *search = buff;
311d16da 2702 int found = 0;
b448c4e3 2703 int ret;
9f4801e3 2704
b9df92d2
SR
2705 if (len) {
2706 type = filter_parse_regex(buff, len, &search, &not);
2707 search_len = strlen(search);
2708 }
9f4801e3 2709
52baf119 2710 mutex_lock(&ftrace_lock);
265c831c 2711
b9df92d2
SR
2712 if (unlikely(ftrace_disabled))
2713 goto out_unlock;
9f4801e3 2714
265c831c 2715 do_for_each_ftrace_rec(pg, rec) {
b9df92d2 2716 if (ftrace_match_record(rec, mod, search, search_len, type)) {
1cf41dd7 2717 ret = enter_record(hash, rec, not);
b448c4e3
SR
2718 if (ret < 0) {
2719 found = ret;
2720 goto out_unlock;
2721 }
311d16da 2722 found = 1;
265c831c
SR
2723 }
2724 } while_for_each_ftrace_rec();
b9df92d2 2725 out_unlock:
52baf119 2726 mutex_unlock(&ftrace_lock);
311d16da
LZ
2727
2728 return found;
5072c59f
SR
2729}
2730
64e7c440 2731static int
1cf41dd7 2732ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
64e7c440 2733{
1cf41dd7 2734 return match_records(hash, buff, len, NULL, 0);
64e7c440
SR
2735}
2736
1cf41dd7
SR
2737static int
2738ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
64e7c440 2739{
64e7c440 2740 int not = 0;
6a24a244 2741
64e7c440
SR
2742 /* blank or '*' mean the same */
2743 if (strcmp(buff, "*") == 0)
2744 buff[0] = 0;
2745
2746 /* handle the case of 'dont filter this module' */
2747 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2748 buff[0] = 0;
2749 not = 1;
2750 }
2751
1cf41dd7 2752 return match_records(hash, buff, strlen(buff), mod, not);
64e7c440
SR
2753}
2754
f6180773
SR
2755/*
2756 * We register the module command as a template to show others how
2757 * to register the a command as well.
2758 */
2759
2760static int
43dd61c9
SR
2761ftrace_mod_callback(struct ftrace_hash *hash,
2762 char *func, char *cmd, char *param, int enable)
f6180773
SR
2763{
2764 char *mod;
b448c4e3 2765 int ret = -EINVAL;
f6180773
SR
2766
2767 /*
2768 * cmd == 'mod' because we only registered this func
2769 * for the 'mod' ftrace_func_command.
2770 * But if you register one func with multiple commands,
2771 * you can tell which command was used by the cmd
2772 * parameter.
2773 */
2774
2775 /* we must have a module name */
2776 if (!param)
b448c4e3 2777 return ret;
f6180773
SR
2778
2779 mod = strsep(&param, ":");
2780 if (!strlen(mod))
b448c4e3 2781 return ret;
f6180773 2782
1cf41dd7 2783 ret = ftrace_match_module_records(hash, func, mod);
b448c4e3
SR
2784 if (!ret)
2785 ret = -EINVAL;
2786 if (ret < 0)
2787 return ret;
2788
2789 return 0;
f6180773
SR
2790}
2791
2792static struct ftrace_func_command ftrace_mod_cmd = {
2793 .name = "mod",
2794 .func = ftrace_mod_callback,
2795};
2796
2797static int __init ftrace_mod_cmd_init(void)
2798{
2799 return register_ftrace_command(&ftrace_mod_cmd);
2800}
2801device_initcall(ftrace_mod_cmd_init);
2802
59df055f 2803static void
b6887d79 2804function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
59df055f 2805{
b6887d79 2806 struct ftrace_func_probe *entry;
59df055f
SR
2807 struct hlist_head *hhd;
2808 struct hlist_node *n;
2809 unsigned long key;
59df055f
SR
2810
2811 key = hash_long(ip, FTRACE_HASH_BITS);
2812
2813 hhd = &ftrace_func_hash[key];
2814
2815 if (hlist_empty(hhd))
2816 return;
2817
2818 /*
2819 * Disable preemption for these calls to prevent a RCU grace
2820 * period. This syncs the hash iteration and freeing of items
2821 * on the hash. rcu_read_lock is too dangerous here.
2822 */
5168ae50 2823 preempt_disable_notrace();
59df055f
SR
2824 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2825 if (entry->ip == ip)
2826 entry->ops->func(ip, parent_ip, &entry->data);
2827 }
5168ae50 2828 preempt_enable_notrace();
59df055f
SR
2829}
2830
b6887d79 2831static struct ftrace_ops trace_probe_ops __read_mostly =
59df055f 2832{
fb9fb015 2833 .func = function_trace_probe_call,
59df055f
SR
2834};
2835
b6887d79 2836static int ftrace_probe_registered;
59df055f 2837
b6887d79 2838static void __enable_ftrace_function_probe(void)
59df055f 2839{
b848914c 2840 int ret;
59df055f
SR
2841 int i;
2842
b6887d79 2843 if (ftrace_probe_registered)
59df055f
SR
2844 return;
2845
2846 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2847 struct hlist_head *hhd = &ftrace_func_hash[i];
2848 if (hhd->first)
2849 break;
2850 }
2851 /* Nothing registered? */
2852 if (i == FTRACE_FUNC_HASHSIZE)
2853 return;
2854
b848914c
SR
2855 ret = __register_ftrace_function(&trace_probe_ops);
2856 if (!ret)
a1cd6173 2857 ret = ftrace_startup(&trace_probe_ops, 0);
b848914c 2858
b6887d79 2859 ftrace_probe_registered = 1;
59df055f
SR
2860}
2861
b6887d79 2862static void __disable_ftrace_function_probe(void)
59df055f 2863{
b848914c 2864 int ret;
59df055f
SR
2865 int i;
2866
b6887d79 2867 if (!ftrace_probe_registered)
59df055f
SR
2868 return;
2869
2870 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2871 struct hlist_head *hhd = &ftrace_func_hash[i];
2872 if (hhd->first)
2873 return;
2874 }
2875
2876 /* no more funcs left */
b848914c
SR
2877 ret = __unregister_ftrace_function(&trace_probe_ops);
2878 if (!ret)
2879 ftrace_shutdown(&trace_probe_ops, 0);
2880
b6887d79 2881 ftrace_probe_registered = 0;
59df055f
SR
2882}
2883
2884
2885static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2886{
b6887d79
SR
2887 struct ftrace_func_probe *entry =
2888 container_of(rhp, struct ftrace_func_probe, rcu);
59df055f
SR
2889
2890 if (entry->ops->free)
2891 entry->ops->free(&entry->data);
2892 kfree(entry);
2893}
2894
2895
2896int
b6887d79 2897register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
2898 void *data)
2899{
b6887d79 2900 struct ftrace_func_probe *entry;
59df055f
SR
2901 struct ftrace_page *pg;
2902 struct dyn_ftrace *rec;
59df055f 2903 int type, len, not;
6a24a244 2904 unsigned long key;
59df055f
SR
2905 int count = 0;
2906 char *search;
2907
3f6fe06d 2908 type = filter_parse_regex(glob, strlen(glob), &search, &not);
59df055f
SR
2909 len = strlen(search);
2910
b6887d79 2911 /* we do not support '!' for function probes */
59df055f
SR
2912 if (WARN_ON(not))
2913 return -EINVAL;
2914
2915 mutex_lock(&ftrace_lock);
59df055f 2916
45a4a237
SR
2917 if (unlikely(ftrace_disabled))
2918 goto out_unlock;
59df055f 2919
45a4a237 2920 do_for_each_ftrace_rec(pg, rec) {
59df055f 2921
b9df92d2 2922 if (!ftrace_match_record(rec, NULL, search, len, type))
59df055f
SR
2923 continue;
2924
2925 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2926 if (!entry) {
b6887d79 2927 /* If we did not process any, then return error */
59df055f
SR
2928 if (!count)
2929 count = -ENOMEM;
2930 goto out_unlock;
2931 }
2932
2933 count++;
2934
2935 entry->data = data;
2936
2937 /*
2938 * The caller might want to do something special
2939 * for each function we find. We call the callback
2940 * to give the caller an opportunity to do so.
2941 */
2942 if (ops->callback) {
2943 if (ops->callback(rec->ip, &entry->data) < 0) {
2944 /* caller does not like this func */
2945 kfree(entry);
2946 continue;
2947 }
2948 }
2949
2950 entry->ops = ops;
2951 entry->ip = rec->ip;
2952
2953 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2954 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2955
2956 } while_for_each_ftrace_rec();
b6887d79 2957 __enable_ftrace_function_probe();
59df055f
SR
2958
2959 out_unlock:
2960 mutex_unlock(&ftrace_lock);
2961
2962 return count;
2963}
2964
2965enum {
b6887d79
SR
2966 PROBE_TEST_FUNC = 1,
2967 PROBE_TEST_DATA = 2
59df055f
SR
2968};
2969
2970static void
b6887d79 2971__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
2972 void *data, int flags)
2973{
b6887d79 2974 struct ftrace_func_probe *entry;
59df055f
SR
2975 struct hlist_node *n, *tmp;
2976 char str[KSYM_SYMBOL_LEN];
2977 int type = MATCH_FULL;
2978 int i, len = 0;
2979 char *search;
2980
b36461da 2981 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
59df055f 2982 glob = NULL;
b36461da 2983 else if (glob) {
59df055f
SR
2984 int not;
2985
3f6fe06d 2986 type = filter_parse_regex(glob, strlen(glob), &search, &not);
59df055f
SR
2987 len = strlen(search);
2988
b6887d79 2989 /* we do not support '!' for function probes */
59df055f
SR
2990 if (WARN_ON(not))
2991 return;
2992 }
2993
2994 mutex_lock(&ftrace_lock);
2995 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2996 struct hlist_head *hhd = &ftrace_func_hash[i];
2997
2998 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2999
3000 /* break up if statements for readability */
b6887d79 3001 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
59df055f
SR
3002 continue;
3003
b6887d79 3004 if ((flags & PROBE_TEST_DATA) && entry->data != data)
59df055f
SR
3005 continue;
3006
3007 /* do this last, since it is the most expensive */
3008 if (glob) {
3009 kallsyms_lookup(entry->ip, NULL, NULL,
3010 NULL, str);
3011 if (!ftrace_match(str, glob, len, type))
3012 continue;
3013 }
3014
3015 hlist_del(&entry->node);
3016 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
3017 }
3018 }
b6887d79 3019 __disable_ftrace_function_probe();
59df055f
SR
3020 mutex_unlock(&ftrace_lock);
3021}
3022
3023void
b6887d79 3024unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
3025 void *data)
3026{
b6887d79
SR
3027 __unregister_ftrace_function_probe(glob, ops, data,
3028 PROBE_TEST_FUNC | PROBE_TEST_DATA);
59df055f
SR
3029}
3030
3031void
b6887d79 3032unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
59df055f 3033{
b6887d79 3034 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
59df055f
SR
3035}
3036
b6887d79 3037void unregister_ftrace_function_probe_all(char *glob)
59df055f 3038{
b6887d79 3039 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
59df055f
SR
3040}
3041
f6180773
SR
3042static LIST_HEAD(ftrace_commands);
3043static DEFINE_MUTEX(ftrace_cmd_mutex);
3044
3045int register_ftrace_command(struct ftrace_func_command *cmd)
3046{
3047 struct ftrace_func_command *p;
3048 int ret = 0;
3049
3050 mutex_lock(&ftrace_cmd_mutex);
3051 list_for_each_entry(p, &ftrace_commands, list) {
3052 if (strcmp(cmd->name, p->name) == 0) {
3053 ret = -EBUSY;
3054 goto out_unlock;
3055 }
3056 }
3057 list_add(&cmd->list, &ftrace_commands);
3058 out_unlock:
3059 mutex_unlock(&ftrace_cmd_mutex);
3060
3061 return ret;
3062}
3063
3064int unregister_ftrace_command(struct ftrace_func_command *cmd)
3065{
3066 struct ftrace_func_command *p, *n;
3067 int ret = -ENODEV;
3068
3069 mutex_lock(&ftrace_cmd_mutex);
3070 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3071 if (strcmp(cmd->name, p->name) == 0) {
3072 ret = 0;
3073 list_del_init(&p->list);
3074 goto out_unlock;
3075 }
3076 }
3077 out_unlock:
3078 mutex_unlock(&ftrace_cmd_mutex);
3079
3080 return ret;
3081}
3082
33dc9b12
SR
3083static int ftrace_process_regex(struct ftrace_hash *hash,
3084 char *buff, int len, int enable)
64e7c440 3085{
f6180773 3086 char *func, *command, *next = buff;
6a24a244 3087 struct ftrace_func_command *p;
0aff1c0c 3088 int ret = -EINVAL;
64e7c440
SR
3089
3090 func = strsep(&next, ":");
3091
3092 if (!next) {
1cf41dd7 3093 ret = ftrace_match_records(hash, func, len);
b448c4e3
SR
3094 if (!ret)
3095 ret = -EINVAL;
3096 if (ret < 0)
3097 return ret;
3098 return 0;
64e7c440
SR
3099 }
3100
f6180773 3101 /* command found */
64e7c440
SR
3102
3103 command = strsep(&next, ":");
3104
f6180773
SR
3105 mutex_lock(&ftrace_cmd_mutex);
3106 list_for_each_entry(p, &ftrace_commands, list) {
3107 if (strcmp(p->name, command) == 0) {
43dd61c9 3108 ret = p->func(hash, func, command, next, enable);
f6180773
SR
3109 goto out_unlock;
3110 }
64e7c440 3111 }
f6180773
SR
3112 out_unlock:
3113 mutex_unlock(&ftrace_cmd_mutex);
64e7c440 3114
f6180773 3115 return ret;
64e7c440
SR
3116}
3117
e309b41d 3118static ssize_t
41c52c0d
SR
3119ftrace_regex_write(struct file *file, const char __user *ubuf,
3120 size_t cnt, loff_t *ppos, int enable)
5072c59f
SR
3121{
3122 struct ftrace_iterator *iter;
689fd8b6 3123 struct trace_parser *parser;
3124 ssize_t ret, read;
5072c59f 3125
4ba7978e 3126 if (!cnt)
5072c59f
SR
3127 return 0;
3128
41c52c0d 3129 mutex_lock(&ftrace_regex_lock);
5072c59f 3130
45a4a237
SR
3131 ret = -ENODEV;
3132 if (unlikely(ftrace_disabled))
3133 goto out_unlock;
3134
5072c59f
SR
3135 if (file->f_mode & FMODE_READ) {
3136 struct seq_file *m = file->private_data;
3137 iter = m->private;
3138 } else
3139 iter = file->private_data;
3140
689fd8b6 3141 parser = &iter->parser;
3142 read = trace_get_user(parser, ubuf, cnt, ppos);
5072c59f 3143
4ba7978e 3144 if (read >= 0 && trace_parser_loaded(parser) &&
689fd8b6 3145 !trace_parser_cont(parser)) {
33dc9b12 3146 ret = ftrace_process_regex(iter->hash, parser->buffer,
689fd8b6 3147 parser->idx, enable);
313254a9 3148 trace_parser_clear(parser);
5072c59f 3149 if (ret)
ed146b25 3150 goto out_unlock;
eda1e328 3151 }
5072c59f 3152
5072c59f 3153 ret = read;
ed146b25 3154out_unlock:
689fd8b6 3155 mutex_unlock(&ftrace_regex_lock);
ed146b25 3156
5072c59f
SR
3157 return ret;
3158}
3159
fc13cb0c 3160ssize_t
41c52c0d
SR
3161ftrace_filter_write(struct file *file, const char __user *ubuf,
3162 size_t cnt, loff_t *ppos)
3163{
3164 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3165}
3166
fc13cb0c 3167ssize_t
41c52c0d
SR
3168ftrace_notrace_write(struct file *file, const char __user *ubuf,
3169 size_t cnt, loff_t *ppos)
3170{
3171 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3172}
3173
33dc9b12 3174static int
f45948e8
SR
3175ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3176 int reset, int enable)
41c52c0d 3177{
33dc9b12 3178 struct ftrace_hash **orig_hash;
f45948e8 3179 struct ftrace_hash *hash;
33dc9b12 3180 int ret;
f45948e8 3181
936e074b
SR
3182 /* All global ops uses the global ops filters */
3183 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3184 ops = &global_ops;
3185
41c52c0d 3186 if (unlikely(ftrace_disabled))
33dc9b12 3187 return -ENODEV;
41c52c0d 3188
f45948e8 3189 if (enable)
33dc9b12 3190 orig_hash = &ops->filter_hash;
f45948e8 3191 else
33dc9b12
SR
3192 orig_hash = &ops->notrace_hash;
3193
3194 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3195 if (!hash)
3196 return -ENOMEM;
f45948e8 3197
41c52c0d
SR
3198 mutex_lock(&ftrace_regex_lock);
3199 if (reset)
1cf41dd7 3200 ftrace_filter_reset(hash);
ac483c44
JO
3201 if (buf && !ftrace_match_records(hash, buf, len)) {
3202 ret = -EINVAL;
3203 goto out_regex_unlock;
3204 }
33dc9b12
SR
3205
3206 mutex_lock(&ftrace_lock);
41fb61c2 3207 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
072126f4
SR
3208 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3209 && ftrace_enabled)
30fb6aa7 3210 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
072126f4 3211
33dc9b12
SR
3212 mutex_unlock(&ftrace_lock);
3213
ac483c44 3214 out_regex_unlock:
41c52c0d 3215 mutex_unlock(&ftrace_regex_lock);
33dc9b12
SR
3216
3217 free_ftrace_hash(hash);
3218 return ret;
41c52c0d
SR
3219}
3220
77a2b37d
SR
3221/**
3222 * ftrace_set_filter - set a function to filter on in ftrace
936e074b
SR
3223 * @ops - the ops to set the filter with
3224 * @buf - the string that holds the function filter text.
3225 * @len - the length of the string.
3226 * @reset - non zero to reset all filters before applying this filter.
3227 *
3228 * Filters denote which functions should be enabled when tracing is enabled.
3229 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3230 */
ac483c44 3231int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
936e074b
SR
3232 int len, int reset)
3233{
ac483c44 3234 return ftrace_set_regex(ops, buf, len, reset, 1);
936e074b
SR
3235}
3236EXPORT_SYMBOL_GPL(ftrace_set_filter);
3237
3238/**
3239 * ftrace_set_notrace - set a function to not trace in ftrace
3240 * @ops - the ops to set the notrace filter with
3241 * @buf - the string that holds the function notrace text.
3242 * @len - the length of the string.
3243 * @reset - non zero to reset all filters before applying this filter.
3244 *
3245 * Notrace Filters denote which functions should not be enabled when tracing
3246 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3247 * for tracing.
3248 */
ac483c44 3249int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
936e074b
SR
3250 int len, int reset)
3251{
ac483c44 3252 return ftrace_set_regex(ops, buf, len, reset, 0);
936e074b
SR
3253}
3254EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3255/**
3256 * ftrace_set_filter - set a function to filter on in ftrace
3257 * @ops - the ops to set the filter with
77a2b37d
SR
3258 * @buf - the string that holds the function filter text.
3259 * @len - the length of the string.
3260 * @reset - non zero to reset all filters before applying this filter.
3261 *
3262 * Filters denote which functions should be enabled when tracing is enabled.
3263 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3264 */
936e074b 3265void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
77a2b37d 3266{
f45948e8 3267 ftrace_set_regex(&global_ops, buf, len, reset, 1);
41c52c0d 3268}
936e074b 3269EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4eebcc81 3270
41c52c0d
SR
3271/**
3272 * ftrace_set_notrace - set a function to not trace in ftrace
936e074b 3273 * @ops - the ops to set the notrace filter with
41c52c0d
SR
3274 * @buf - the string that holds the function notrace text.
3275 * @len - the length of the string.
3276 * @reset - non zero to reset all filters before applying this filter.
3277 *
3278 * Notrace Filters denote which functions should not be enabled when tracing
3279 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3280 * for tracing.
3281 */
936e074b 3282void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
41c52c0d 3283{
f45948e8 3284 ftrace_set_regex(&global_ops, buf, len, reset, 0);
77a2b37d 3285}
936e074b 3286EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
77a2b37d 3287
2af15d6a
SR
3288/*
3289 * command line interface to allow users to set filters on boot up.
3290 */
3291#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3292static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3293static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3294
3295static int __init set_ftrace_notrace(char *str)
3296{
3297 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3298 return 1;
3299}
3300__setup("ftrace_notrace=", set_ftrace_notrace);
3301
3302static int __init set_ftrace_filter(char *str)
3303{
3304 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3305 return 1;
3306}
3307__setup("ftrace_filter=", set_ftrace_filter);
3308
369bc18f 3309#ifdef CONFIG_FUNCTION_GRAPH_TRACER
f6060f46 3310static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
801c29fd
SR
3311static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3312
369bc18f
SA
3313static int __init set_graph_function(char *str)
3314{
06f43d66 3315 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
369bc18f
SA
3316 return 1;
3317}
3318__setup("ftrace_graph_filter=", set_graph_function);
3319
3320static void __init set_ftrace_early_graph(char *buf)
3321{
3322 int ret;
3323 char *func;
3324
3325 while (buf) {
3326 func = strsep(&buf, ",");
3327 /* we allow only one expression at a time */
3328 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3329 func);
3330 if (ret)
3331 printk(KERN_DEBUG "ftrace: function %s not "
3332 "traceable\n", func);
3333 }
3334}
3335#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3336
2a85a37f
SR
3337void __init
3338ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
2af15d6a
SR
3339{
3340 char *func;
3341
3342 while (buf) {
3343 func = strsep(&buf, ",");
f45948e8 3344 ftrace_set_regex(ops, func, strlen(func), 0, enable);
2af15d6a
SR
3345 }
3346}
3347
3348static void __init set_ftrace_early_filters(void)
3349{
3350 if (ftrace_filter_buf[0])
2a85a37f 3351 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
2af15d6a 3352 if (ftrace_notrace_buf[0])
2a85a37f 3353 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
369bc18f
SA
3354#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3355 if (ftrace_graph_buf[0])
3356 set_ftrace_early_graph(ftrace_graph_buf);
3357#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2af15d6a
SR
3358}
3359
fc13cb0c 3360int ftrace_regex_release(struct inode *inode, struct file *file)
5072c59f
SR
3361{
3362 struct seq_file *m = (struct seq_file *)file->private_data;
3363 struct ftrace_iterator *iter;
33dc9b12 3364 struct ftrace_hash **orig_hash;
689fd8b6 3365 struct trace_parser *parser;
ed926f9b 3366 int filter_hash;
33dc9b12 3367 int ret;
5072c59f 3368
41c52c0d 3369 mutex_lock(&ftrace_regex_lock);
5072c59f
SR
3370 if (file->f_mode & FMODE_READ) {
3371 iter = m->private;
3372
3373 seq_release(inode, file);
3374 } else
3375 iter = file->private_data;
3376
689fd8b6 3377 parser = &iter->parser;
3378 if (trace_parser_loaded(parser)) {
3379 parser->buffer[parser->idx] = 0;
1cf41dd7 3380 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
5072c59f
SR
3381 }
3382
689fd8b6 3383 trace_parser_put(parser);
689fd8b6 3384
058e297d 3385 if (file->f_mode & FMODE_WRITE) {
ed926f9b
SR
3386 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3387
3388 if (filter_hash)
33dc9b12 3389 orig_hash = &iter->ops->filter_hash;
ed926f9b
SR
3390 else
3391 orig_hash = &iter->ops->notrace_hash;
33dc9b12 3392
058e297d 3393 mutex_lock(&ftrace_lock);
41fb61c2
SR
3394 ret = ftrace_hash_move(iter->ops, filter_hash,
3395 orig_hash, iter->hash);
3396 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3397 && ftrace_enabled)
30fb6aa7 3398 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
41fb61c2 3399
058e297d
SR
3400 mutex_unlock(&ftrace_lock);
3401 }
33dc9b12
SR
3402 free_ftrace_hash(iter->hash);
3403 kfree(iter);
058e297d 3404
41c52c0d 3405 mutex_unlock(&ftrace_regex_lock);
5072c59f
SR
3406 return 0;
3407}
3408
5e2336a0 3409static const struct file_operations ftrace_avail_fops = {
5072c59f
SR
3410 .open = ftrace_avail_open,
3411 .read = seq_read,
3412 .llseek = seq_lseek,
3be04b47 3413 .release = seq_release_private,
5072c59f
SR
3414};
3415
647bcd03
SR
3416static const struct file_operations ftrace_enabled_fops = {
3417 .open = ftrace_enabled_open,
3418 .read = seq_read,
3419 .llseek = seq_lseek,
3420 .release = seq_release_private,
3421};
3422
5e2336a0 3423static const struct file_operations ftrace_filter_fops = {
5072c59f 3424 .open = ftrace_filter_open,
850a80cf 3425 .read = seq_read,
5072c59f 3426 .write = ftrace_filter_write,
98c4fd04 3427 .llseek = ftrace_regex_lseek,
1cf41dd7 3428 .release = ftrace_regex_release,
5072c59f
SR
3429};
3430
5e2336a0 3431static const struct file_operations ftrace_notrace_fops = {
41c52c0d 3432 .open = ftrace_notrace_open,
850a80cf 3433 .read = seq_read,
41c52c0d
SR
3434 .write = ftrace_notrace_write,
3435 .llseek = ftrace_regex_lseek,
1cf41dd7 3436 .release = ftrace_regex_release,
41c52c0d
SR
3437};
3438
ea4e2bc4
SR
3439#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3440
3441static DEFINE_MUTEX(graph_lock);
3442
3443int ftrace_graph_count;
c7c6b1fe 3444int ftrace_graph_filter_enabled;
ea4e2bc4
SR
3445unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3446
3447static void *
85951842 3448__g_next(struct seq_file *m, loff_t *pos)
ea4e2bc4 3449{
85951842 3450 if (*pos >= ftrace_graph_count)
ea4e2bc4 3451 return NULL;
a4ec5e0c 3452 return &ftrace_graph_funcs[*pos];
85951842 3453}
ea4e2bc4 3454
85951842
LZ
3455static void *
3456g_next(struct seq_file *m, void *v, loff_t *pos)
3457{
3458 (*pos)++;
3459 return __g_next(m, pos);
ea4e2bc4
SR
3460}
3461
3462static void *g_start(struct seq_file *m, loff_t *pos)
3463{
ea4e2bc4
SR
3464 mutex_lock(&graph_lock);
3465
f9349a8f 3466 /* Nothing, tell g_show to print all functions are enabled */
c7c6b1fe 3467 if (!ftrace_graph_filter_enabled && !*pos)
f9349a8f
FW
3468 return (void *)1;
3469
85951842 3470 return __g_next(m, pos);
ea4e2bc4
SR
3471}
3472
3473static void g_stop(struct seq_file *m, void *p)
3474{
3475 mutex_unlock(&graph_lock);
3476}
3477
3478static int g_show(struct seq_file *m, void *v)
3479{
3480 unsigned long *ptr = v;
ea4e2bc4
SR
3481
3482 if (!ptr)
3483 return 0;
3484
f9349a8f
FW
3485 if (ptr == (unsigned long *)1) {
3486 seq_printf(m, "#### all functions enabled ####\n");
3487 return 0;
3488 }
3489
b375a11a 3490 seq_printf(m, "%ps\n", (void *)*ptr);
ea4e2bc4
SR
3491
3492 return 0;
3493}
3494
88e9d34c 3495static const struct seq_operations ftrace_graph_seq_ops = {
ea4e2bc4
SR
3496 .start = g_start,
3497 .next = g_next,
3498 .stop = g_stop,
3499 .show = g_show,
3500};
3501
3502static int
3503ftrace_graph_open(struct inode *inode, struct file *file)
3504{
3505 int ret = 0;
3506
3507 if (unlikely(ftrace_disabled))
3508 return -ENODEV;
3509
3510 mutex_lock(&graph_lock);
3511 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 3512 (file->f_flags & O_TRUNC)) {
c7c6b1fe 3513 ftrace_graph_filter_enabled = 0;
ea4e2bc4
SR
3514 ftrace_graph_count = 0;
3515 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3516 }
a4ec5e0c 3517 mutex_unlock(&graph_lock);
ea4e2bc4 3518
a4ec5e0c 3519 if (file->f_mode & FMODE_READ)
ea4e2bc4 3520 ret = seq_open(file, &ftrace_graph_seq_ops);
ea4e2bc4
SR
3521
3522 return ret;
3523}
3524
87827111
LZ
3525static int
3526ftrace_graph_release(struct inode *inode, struct file *file)
3527{
3528 if (file->f_mode & FMODE_READ)
3529 seq_release(inode, file);
3530 return 0;
3531}
3532
ea4e2bc4 3533static int
f9349a8f 3534ftrace_set_func(unsigned long *array, int *idx, char *buffer)
ea4e2bc4 3535{
ea4e2bc4
SR
3536 struct dyn_ftrace *rec;
3537 struct ftrace_page *pg;
f9349a8f 3538 int search_len;
c7c6b1fe 3539 int fail = 1;
f9349a8f
FW
3540 int type, not;
3541 char *search;
3542 bool exists;
3543 int i;
ea4e2bc4 3544
f9349a8f 3545 /* decode regex */
3f6fe06d 3546 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
c7c6b1fe
LZ
3547 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3548 return -EBUSY;
f9349a8f
FW
3549
3550 search_len = strlen(search);
3551
52baf119 3552 mutex_lock(&ftrace_lock);
45a4a237
SR
3553
3554 if (unlikely(ftrace_disabled)) {
3555 mutex_unlock(&ftrace_lock);
3556 return -ENODEV;
3557 }
3558
265c831c
SR
3559 do_for_each_ftrace_rec(pg, rec) {
3560
b9df92d2 3561 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
c7c6b1fe 3562 /* if it is in the array */
f9349a8f 3563 exists = false;
c7c6b1fe 3564 for (i = 0; i < *idx; i++) {
f9349a8f
FW
3565 if (array[i] == rec->ip) {
3566 exists = true;
265c831c
SR
3567 break;
3568 }
c7c6b1fe
LZ
3569 }
3570
3571 if (!not) {
3572 fail = 0;
3573 if (!exists) {
3574 array[(*idx)++] = rec->ip;
3575 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3576 goto out;
3577 }
3578 } else {
3579 if (exists) {
3580 array[i] = array[--(*idx)];
3581 array[*idx] = 0;
3582 fail = 0;
3583 }
3584 }
ea4e2bc4 3585 }
265c831c 3586 } while_for_each_ftrace_rec();
c7c6b1fe 3587out:
52baf119 3588 mutex_unlock(&ftrace_lock);
ea4e2bc4 3589
c7c6b1fe
LZ
3590 if (fail)
3591 return -EINVAL;
3592
3593 ftrace_graph_filter_enabled = 1;
3594 return 0;
ea4e2bc4
SR
3595}
3596
3597static ssize_t
3598ftrace_graph_write(struct file *file, const char __user *ubuf,
3599 size_t cnt, loff_t *ppos)
3600{
689fd8b6 3601 struct trace_parser parser;
4ba7978e 3602 ssize_t read, ret;
ea4e2bc4 3603
c7c6b1fe 3604 if (!cnt)
ea4e2bc4
SR
3605 return 0;
3606
3607 mutex_lock(&graph_lock);
3608
689fd8b6 3609 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3610 ret = -ENOMEM;
1eb90f13 3611 goto out_unlock;
ea4e2bc4
SR
3612 }
3613
689fd8b6 3614 read = trace_get_user(&parser, ubuf, cnt, ppos);
ea4e2bc4 3615
4ba7978e 3616 if (read >= 0 && trace_parser_loaded((&parser))) {
689fd8b6 3617 parser.buffer[parser.idx] = 0;
3618
3619 /* we allow only one expression at a time */
a4ec5e0c 3620 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
689fd8b6 3621 parser.buffer);
ea4e2bc4 3622 if (ret)
1eb90f13 3623 goto out_free;
ea4e2bc4 3624 }
ea4e2bc4
SR
3625
3626 ret = read;
1eb90f13
LZ
3627
3628out_free:
689fd8b6 3629 trace_parser_put(&parser);
1eb90f13 3630out_unlock:
ea4e2bc4
SR
3631 mutex_unlock(&graph_lock);
3632
3633 return ret;
3634}
3635
3636static const struct file_operations ftrace_graph_fops = {
87827111
LZ
3637 .open = ftrace_graph_open,
3638 .read = seq_read,
3639 .write = ftrace_graph_write,
3640 .release = ftrace_graph_release,
6038f373 3641 .llseek = seq_lseek,
ea4e2bc4
SR
3642};
3643#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3644
df4fc315 3645static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
5072c59f 3646{
5072c59f 3647
5452af66
FW
3648 trace_create_file("available_filter_functions", 0444,
3649 d_tracer, NULL, &ftrace_avail_fops);
5072c59f 3650
647bcd03
SR
3651 trace_create_file("enabled_functions", 0444,
3652 d_tracer, NULL, &ftrace_enabled_fops);
3653
5452af66
FW
3654 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3655 NULL, &ftrace_filter_fops);
41c52c0d 3656
5452af66 3657 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
41c52c0d 3658 NULL, &ftrace_notrace_fops);
ad90c0e3 3659
ea4e2bc4 3660#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5452af66 3661 trace_create_file("set_graph_function", 0444, d_tracer,
ea4e2bc4
SR
3662 NULL,
3663 &ftrace_graph_fops);
ea4e2bc4
SR
3664#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3665
5072c59f
SR
3666 return 0;
3667}
3668
9fd49328 3669static int ftrace_cmp_ips(const void *a, const void *b)
68950619 3670{
9fd49328
SR
3671 const unsigned long *ipa = a;
3672 const unsigned long *ipb = b;
68950619 3673
9fd49328
SR
3674 if (*ipa > *ipb)
3675 return 1;
3676 if (*ipa < *ipb)
3677 return -1;
3678 return 0;
3679}
3680
3681static void ftrace_swap_ips(void *a, void *b, int size)
3682{
3683 unsigned long *ipa = a;
3684 unsigned long *ipb = b;
3685 unsigned long t;
3686
3687 t = *ipa;
3688 *ipa = *ipb;
3689 *ipb = t;
68950619
SR
3690}
3691
5cb084bb 3692static int ftrace_process_locs(struct module *mod,
31e88909 3693 unsigned long *start,
68bf21aa
SR
3694 unsigned long *end)
3695{
a7900875
SR
3696 struct ftrace_page *pg;
3697 unsigned long count;
68bf21aa
SR
3698 unsigned long *p;
3699 unsigned long addr;
4376cac6 3700 unsigned long flags = 0; /* Shut up gcc */
a7900875
SR
3701 int ret = -ENOMEM;
3702
3703 count = end - start;
3704
3705 if (!count)
3706 return 0;
3707
9fd49328
SR
3708 sort(start, count, sizeof(*start),
3709 ftrace_cmp_ips, ftrace_swap_ips);
3710
a7900875
SR
3711 pg = ftrace_allocate_pages(count);
3712 if (!pg)
3713 return -ENOMEM;
68bf21aa 3714
e6ea44e9 3715 mutex_lock(&ftrace_lock);
a7900875 3716
32082309
SR
3717 /*
3718 * Core and each module needs their own pages, as
3719 * modules will free them when they are removed.
3720 * Force a new page to be allocated for modules.
3721 */
a7900875
SR
3722 if (!mod) {
3723 WARN_ON(ftrace_pages || ftrace_pages_start);
3724 /* First initialization */
3725 ftrace_pages = ftrace_pages_start = pg;
3726 } else {
32082309 3727 if (!ftrace_pages)
a7900875 3728 goto out;
32082309 3729
a7900875
SR
3730 if (WARN_ON(ftrace_pages->next)) {
3731 /* Hmm, we have free pages? */
3732 while (ftrace_pages->next)
3733 ftrace_pages = ftrace_pages->next;
32082309 3734 }
a7900875
SR
3735
3736 ftrace_pages->next = pg;
3737 ftrace_pages = pg;
32082309
SR
3738 }
3739
68bf21aa
SR
3740 p = start;
3741 while (p < end) {
3742 addr = ftrace_call_adjust(*p++);
20e5227e
SR
3743 /*
3744 * Some architecture linkers will pad between
3745 * the different mcount_loc sections of different
3746 * object files to satisfy alignments.
3747 * Skip any NULL pointers.
3748 */
3749 if (!addr)
3750 continue;
a7900875
SR
3751 if (!ftrace_record_ip(addr))
3752 break;
68bf21aa
SR
3753 }
3754
85ae32ae
SR
3755 /* These new locations need to be initialized */
3756 ftrace_new_pgs = pg;
3757
a4f18ed1 3758 /*
4376cac6
SR
3759 * We only need to disable interrupts on start up
3760 * because we are modifying code that an interrupt
3761 * may execute, and the modification is not atomic.
3762 * But for modules, nothing runs the code we modify
3763 * until we are finished with it, and there's no
3764 * reason to cause large interrupt latencies while we do it.
a4f18ed1 3765 */
4376cac6
SR
3766 if (!mod)
3767 local_irq_save(flags);
31e88909 3768 ftrace_update_code(mod);
4376cac6
SR
3769 if (!mod)
3770 local_irq_restore(flags);
a7900875
SR
3771 ret = 0;
3772 out:
e6ea44e9 3773 mutex_unlock(&ftrace_lock);
68bf21aa 3774
a7900875 3775 return ret;
68bf21aa
SR
3776}
3777
93eb677d 3778#ifdef CONFIG_MODULES
32082309
SR
3779
3780#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
3781
e7247a15 3782void ftrace_release_mod(struct module *mod)
93eb677d
SR
3783{
3784 struct dyn_ftrace *rec;
32082309 3785 struct ftrace_page **last_pg;
93eb677d 3786 struct ftrace_page *pg;
a7900875 3787 int order;
93eb677d 3788
45a4a237
SR
3789 mutex_lock(&ftrace_lock);
3790
e7247a15 3791 if (ftrace_disabled)
45a4a237 3792 goto out_unlock;
93eb677d 3793
32082309
SR
3794 /*
3795 * Each module has its own ftrace_pages, remove
3796 * them from the list.
3797 */
3798 last_pg = &ftrace_pages_start;
3799 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
3800 rec = &pg->records[0];
e7247a15 3801 if (within_module_core(rec->ip, mod)) {
93eb677d 3802 /*
32082309
SR
3803 * As core pages are first, the first
3804 * page should never be a module page.
93eb677d 3805 */
32082309
SR
3806 if (WARN_ON(pg == ftrace_pages_start))
3807 goto out_unlock;
3808
3809 /* Check if we are deleting the last page */
3810 if (pg == ftrace_pages)
3811 ftrace_pages = next_to_ftrace_page(last_pg);
3812
3813 *last_pg = pg->next;
a7900875
SR
3814 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3815 free_pages((unsigned long)pg->records, order);
3816 kfree(pg);
32082309
SR
3817 } else
3818 last_pg = &pg->next;
3819 }
45a4a237 3820 out_unlock:
93eb677d
SR
3821 mutex_unlock(&ftrace_lock);
3822}
3823
3824static void ftrace_init_module(struct module *mod,
3825 unsigned long *start, unsigned long *end)
90d595fe 3826{
00fd61ae 3827 if (ftrace_disabled || start == end)
fed1939c 3828 return;
5cb084bb 3829 ftrace_process_locs(mod, start, end);
90d595fe
SR
3830}
3831
93eb677d
SR
3832static int ftrace_module_notify(struct notifier_block *self,
3833 unsigned long val, void *data)
3834{
3835 struct module *mod = data;
3836
3837 switch (val) {
3838 case MODULE_STATE_COMING:
3839 ftrace_init_module(mod, mod->ftrace_callsites,
3840 mod->ftrace_callsites +
3841 mod->num_ftrace_callsites);
3842 break;
3843 case MODULE_STATE_GOING:
e7247a15 3844 ftrace_release_mod(mod);
93eb677d
SR
3845 break;
3846 }
3847
3848 return 0;
3849}
3850#else
3851static int ftrace_module_notify(struct notifier_block *self,
3852 unsigned long val, void *data)
3853{
3854 return 0;
3855}
3856#endif /* CONFIG_MODULES */
3857
3858struct notifier_block ftrace_module_nb = {
3859 .notifier_call = ftrace_module_notify,
3860 .priority = 0,
3861};
3862
68bf21aa
SR
3863extern unsigned long __start_mcount_loc[];
3864extern unsigned long __stop_mcount_loc[];
3865
3866void __init ftrace_init(void)
3867{
3868 unsigned long count, addr, flags;
3869 int ret;
3870
3871 /* Keep the ftrace pointer to the stub */
3872 addr = (unsigned long)ftrace_stub;
3873
3874 local_irq_save(flags);
3875 ftrace_dyn_arch_init(&addr);
3876 local_irq_restore(flags);
3877
3878 /* ftrace_dyn_arch_init places the return code in addr */
3879 if (addr)
3880 goto failed;
3881
3882 count = __stop_mcount_loc - __start_mcount_loc;
3883
3884 ret = ftrace_dyn_table_alloc(count);
3885 if (ret)
3886 goto failed;
3887
3888 last_ftrace_enabled = ftrace_enabled = 1;
3889
5cb084bb 3890 ret = ftrace_process_locs(NULL,
31e88909 3891 __start_mcount_loc,
68bf21aa
SR
3892 __stop_mcount_loc);
3893
93eb677d 3894 ret = register_module_notifier(&ftrace_module_nb);
24ed0c4b 3895 if (ret)
93eb677d
SR
3896 pr_warning("Failed to register trace ftrace module notifier\n");
3897
2af15d6a
SR
3898 set_ftrace_early_filters();
3899
68bf21aa
SR
3900 return;
3901 failed:
3902 ftrace_disabled = 1;
3903}
68bf21aa 3904
3d083395 3905#else
0b6e4d56 3906
2b499381 3907static struct ftrace_ops global_ops = {
bd69c30b
SR
3908 .func = ftrace_stub,
3909};
3910
0b6e4d56
FW
3911static int __init ftrace_nodyn_init(void)
3912{
3913 ftrace_enabled = 1;
3914 return 0;
3915}
3916device_initcall(ftrace_nodyn_init);
3917
df4fc315
SR
3918static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
3919static inline void ftrace_startup_enable(int command) { }
5a45cfe1 3920/* Keep as macros so we do not need to define the commands */
3b6cfdb1
SR
3921# define ftrace_startup(ops, command) \
3922 ({ \
3923 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3924 0; \
3925 })
bd69c30b 3926# define ftrace_shutdown(ops, command) do { } while (0)
c7aafc54
IM
3927# define ftrace_startup_sysctl() do { } while (0)
3928# define ftrace_shutdown_sysctl() do { } while (0)
b848914c
SR
3929
3930static inline int
3931ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
3932{
3933 return 1;
3934}
3935
3d083395
SR
3936#endif /* CONFIG_DYNAMIC_FTRACE */
3937
e248491a
JO
3938static void
3939ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip)
3940{
3941 struct ftrace_ops *op;
3942
3943 if (unlikely(trace_recursion_test(TRACE_CONTROL_BIT)))
3944 return;
3945
3946 /*
3947 * Some of the ops may be dynamically allocated,
3948 * they must be freed after a synchronize_sched().
3949 */
3950 preempt_disable_notrace();
3951 trace_recursion_set(TRACE_CONTROL_BIT);
3952 op = rcu_dereference_raw(ftrace_control_list);
3953 while (op != &ftrace_list_end) {
3954 if (!ftrace_function_local_disabled(op) &&
3955 ftrace_ops_test(op, ip))
3956 op->func(ip, parent_ip);
3957
3958 op = rcu_dereference_raw(op->next);
3959 };
3960 trace_recursion_clear(TRACE_CONTROL_BIT);
3961 preempt_enable_notrace();
3962}
3963
3964static struct ftrace_ops control_ops = {
3965 .func = ftrace_ops_control_func,
3966};
3967
b848914c
SR
3968static void
3969ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
3970{
cdbe61bf 3971 struct ftrace_ops *op;
b848914c 3972
b1cff0ad
SR
3973 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT)))
3974 return;
3975
3976 trace_recursion_set(TRACE_INTERNAL_BIT);
cdbe61bf
SR
3977 /*
3978 * Some of the ops may be dynamically allocated,
3979 * they must be freed after a synchronize_sched().
3980 */
3981 preempt_disable_notrace();
3982 op = rcu_dereference_raw(ftrace_ops_list);
b848914c
SR
3983 while (op != &ftrace_list_end) {
3984 if (ftrace_ops_test(op, ip))
3985 op->func(ip, parent_ip);
3986 op = rcu_dereference_raw(op->next);
3987 };
cdbe61bf 3988 preempt_enable_notrace();
b1cff0ad 3989 trace_recursion_clear(TRACE_INTERNAL_BIT);
b848914c
SR
3990}
3991
e32d8956 3992static void clear_ftrace_swapper(void)
978f3a45
SR
3993{
3994 struct task_struct *p;
e32d8956 3995 int cpu;
978f3a45 3996
e32d8956
SR
3997 get_online_cpus();
3998 for_each_online_cpu(cpu) {
3999 p = idle_task(cpu);
978f3a45 4000 clear_tsk_trace_trace(p);
e32d8956
SR
4001 }
4002 put_online_cpus();
4003}
978f3a45 4004
e32d8956
SR
4005static void set_ftrace_swapper(void)
4006{
4007 struct task_struct *p;
4008 int cpu;
4009
4010 get_online_cpus();
4011 for_each_online_cpu(cpu) {
4012 p = idle_task(cpu);
4013 set_tsk_trace_trace(p);
4014 }
4015 put_online_cpus();
978f3a45
SR
4016}
4017
e32d8956
SR
4018static void clear_ftrace_pid(struct pid *pid)
4019{
4020 struct task_struct *p;
4021
229c4ef8 4022 rcu_read_lock();
e32d8956
SR
4023 do_each_pid_task(pid, PIDTYPE_PID, p) {
4024 clear_tsk_trace_trace(p);
4025 } while_each_pid_task(pid, PIDTYPE_PID, p);
229c4ef8
ON
4026 rcu_read_unlock();
4027
e32d8956
SR
4028 put_pid(pid);
4029}
4030
4031static void set_ftrace_pid(struct pid *pid)
978f3a45
SR
4032{
4033 struct task_struct *p;
4034
229c4ef8 4035 rcu_read_lock();
978f3a45
SR
4036 do_each_pid_task(pid, PIDTYPE_PID, p) {
4037 set_tsk_trace_trace(p);
4038 } while_each_pid_task(pid, PIDTYPE_PID, p);
229c4ef8 4039 rcu_read_unlock();
978f3a45
SR
4040}
4041
756d17ee 4042static void clear_ftrace_pid_task(struct pid *pid)
e32d8956 4043{
756d17ee 4044 if (pid == ftrace_swapper_pid)
e32d8956
SR
4045 clear_ftrace_swapper();
4046 else
756d17ee 4047 clear_ftrace_pid(pid);
e32d8956
SR
4048}
4049
4050static void set_ftrace_pid_task(struct pid *pid)
4051{
4052 if (pid == ftrace_swapper_pid)
4053 set_ftrace_swapper();
4054 else
4055 set_ftrace_pid(pid);
4056}
4057
756d17ee 4058static int ftrace_pid_add(int p)
df4fc315 4059{
978f3a45 4060 struct pid *pid;
756d17ee 4061 struct ftrace_pid *fpid;
4062 int ret = -EINVAL;
df4fc315 4063
756d17ee 4064 mutex_lock(&ftrace_lock);
df4fc315 4065
756d17ee 4066 if (!p)
4067 pid = ftrace_swapper_pid;
4068 else
4069 pid = find_get_pid(p);
df4fc315 4070
756d17ee 4071 if (!pid)
4072 goto out;
df4fc315 4073
756d17ee 4074 ret = 0;
df4fc315 4075
756d17ee 4076 list_for_each_entry(fpid, &ftrace_pids, list)
4077 if (fpid->pid == pid)
4078 goto out_put;
978f3a45 4079
756d17ee 4080 ret = -ENOMEM;
df4fc315 4081
756d17ee 4082 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
4083 if (!fpid)
4084 goto out_put;
df4fc315 4085
756d17ee 4086 list_add(&fpid->list, &ftrace_pids);
4087 fpid->pid = pid;
0ef8cde5 4088
756d17ee 4089 set_ftrace_pid_task(pid);
978f3a45 4090
756d17ee 4091 ftrace_update_pid_func();
4092 ftrace_startup_enable(0);
4093
4094 mutex_unlock(&ftrace_lock);
4095 return 0;
4096
4097out_put:
4098 if (pid != ftrace_swapper_pid)
4099 put_pid(pid);
978f3a45 4100
756d17ee 4101out:
4102 mutex_unlock(&ftrace_lock);
4103 return ret;
4104}
4105
4106static void ftrace_pid_reset(void)
4107{
4108 struct ftrace_pid *fpid, *safe;
978f3a45 4109
756d17ee 4110 mutex_lock(&ftrace_lock);
4111 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
4112 struct pid *pid = fpid->pid;
4113
4114 clear_ftrace_pid_task(pid);
4115
4116 list_del(&fpid->list);
4117 kfree(fpid);
df4fc315
SR
4118 }
4119
df4fc315
SR
4120 ftrace_update_pid_func();
4121 ftrace_startup_enable(0);
4122
e6ea44e9 4123 mutex_unlock(&ftrace_lock);
756d17ee 4124}
df4fc315 4125
756d17ee 4126static void *fpid_start(struct seq_file *m, loff_t *pos)
4127{
4128 mutex_lock(&ftrace_lock);
4129
4130 if (list_empty(&ftrace_pids) && (!*pos))
4131 return (void *) 1;
4132
4133 return seq_list_start(&ftrace_pids, *pos);
4134}
4135
4136static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
4137{
4138 if (v == (void *)1)
4139 return NULL;
4140
4141 return seq_list_next(v, &ftrace_pids, pos);
4142}
4143
4144static void fpid_stop(struct seq_file *m, void *p)
4145{
4146 mutex_unlock(&ftrace_lock);
4147}
4148
4149static int fpid_show(struct seq_file *m, void *v)
4150{
4151 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
4152
4153 if (v == (void *)1) {
4154 seq_printf(m, "no pid\n");
4155 return 0;
4156 }
4157
4158 if (fpid->pid == ftrace_swapper_pid)
4159 seq_printf(m, "swapper tasks\n");
4160 else
4161 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
4162
4163 return 0;
4164}
4165
4166static const struct seq_operations ftrace_pid_sops = {
4167 .start = fpid_start,
4168 .next = fpid_next,
4169 .stop = fpid_stop,
4170 .show = fpid_show,
4171};
4172
4173static int
4174ftrace_pid_open(struct inode *inode, struct file *file)
4175{
4176 int ret = 0;
4177
4178 if ((file->f_mode & FMODE_WRITE) &&
4179 (file->f_flags & O_TRUNC))
4180 ftrace_pid_reset();
4181
4182 if (file->f_mode & FMODE_READ)
4183 ret = seq_open(file, &ftrace_pid_sops);
4184
4185 return ret;
4186}
4187
df4fc315
SR
4188static ssize_t
4189ftrace_pid_write(struct file *filp, const char __user *ubuf,
4190 size_t cnt, loff_t *ppos)
4191{
457dc928 4192 char buf[64], *tmp;
df4fc315
SR
4193 long val;
4194 int ret;
4195
4196 if (cnt >= sizeof(buf))
4197 return -EINVAL;
4198
4199 if (copy_from_user(&buf, ubuf, cnt))
4200 return -EFAULT;
4201
4202 buf[cnt] = 0;
4203
756d17ee 4204 /*
4205 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
4206 * to clean the filter quietly.
4207 */
457dc928
IM
4208 tmp = strstrip(buf);
4209 if (strlen(tmp) == 0)
756d17ee 4210 return 1;
4211
457dc928 4212 ret = strict_strtol(tmp, 10, &val);
df4fc315
SR
4213 if (ret < 0)
4214 return ret;
4215
756d17ee 4216 ret = ftrace_pid_add(val);
df4fc315 4217
756d17ee 4218 return ret ? ret : cnt;
4219}
df4fc315 4220
756d17ee 4221static int
4222ftrace_pid_release(struct inode *inode, struct file *file)
4223{
4224 if (file->f_mode & FMODE_READ)
4225 seq_release(inode, file);
df4fc315 4226
756d17ee 4227 return 0;
df4fc315
SR
4228}
4229
5e2336a0 4230static const struct file_operations ftrace_pid_fops = {
756d17ee 4231 .open = ftrace_pid_open,
4232 .write = ftrace_pid_write,
4233 .read = seq_read,
4234 .llseek = seq_lseek,
4235 .release = ftrace_pid_release,
df4fc315
SR
4236};
4237
4238static __init int ftrace_init_debugfs(void)
4239{
4240 struct dentry *d_tracer;
df4fc315
SR
4241
4242 d_tracer = tracing_init_dentry();
4243 if (!d_tracer)
4244 return 0;
4245
4246 ftrace_init_dyn_debugfs(d_tracer);
4247
5452af66
FW
4248 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4249 NULL, &ftrace_pid_fops);
493762fc
SR
4250
4251 ftrace_profile_debugfs(d_tracer);
4252
df4fc315
SR
4253 return 0;
4254}
df4fc315
SR
4255fs_initcall(ftrace_init_debugfs);
4256
a2bb6a3d 4257/**
81adbdc0 4258 * ftrace_kill - kill ftrace
a2bb6a3d
SR
4259 *
4260 * This function should be used by panic code. It stops ftrace
4261 * but in a not so nice way. If you need to simply kill ftrace
4262 * from a non-atomic section, use ftrace_kill.
4263 */
81adbdc0 4264void ftrace_kill(void)
a2bb6a3d
SR
4265{
4266 ftrace_disabled = 1;
4267 ftrace_enabled = 0;
a2bb6a3d
SR
4268 clear_ftrace_function();
4269}
4270
e0a413f6
SR
4271/**
4272 * Test if ftrace is dead or not.
4273 */
4274int ftrace_is_dead(void)
4275{
4276 return ftrace_disabled;
4277}
4278
16444a8a 4279/**
3d083395
SR
4280 * register_ftrace_function - register a function for profiling
4281 * @ops - ops structure that holds the function for profiling.
16444a8a 4282 *
3d083395
SR
4283 * Register a function to be called by all functions in the
4284 * kernel.
4285 *
4286 * Note: @ops->func and all the functions it calls must be labeled
4287 * with "notrace", otherwise it will go into a
4288 * recursive loop.
16444a8a 4289 */
3d083395 4290int register_ftrace_function(struct ftrace_ops *ops)
16444a8a 4291{
45a4a237 4292 int ret = -1;
4eebcc81 4293
e6ea44e9 4294 mutex_lock(&ftrace_lock);
e7d3737e 4295
45a4a237
SR
4296 if (unlikely(ftrace_disabled))
4297 goto out_unlock;
4298
b0fc494f 4299 ret = __register_ftrace_function(ops);
b848914c 4300 if (!ret)
a1cd6173 4301 ret = ftrace_startup(ops, 0);
b848914c 4302
b0fc494f 4303
45a4a237 4304 out_unlock:
e6ea44e9 4305 mutex_unlock(&ftrace_lock);
b0fc494f 4306 return ret;
3d083395 4307}
cdbe61bf 4308EXPORT_SYMBOL_GPL(register_ftrace_function);
3d083395
SR
4309
4310/**
32632920 4311 * unregister_ftrace_function - unregister a function for profiling.
3d083395
SR
4312 * @ops - ops structure that holds the function to unregister
4313 *
4314 * Unregister a function that was added to be called by ftrace profiling.
4315 */
4316int unregister_ftrace_function(struct ftrace_ops *ops)
4317{
4318 int ret;
4319
e6ea44e9 4320 mutex_lock(&ftrace_lock);
3d083395 4321 ret = __unregister_ftrace_function(ops);
b848914c
SR
4322 if (!ret)
4323 ftrace_shutdown(ops, 0);
e6ea44e9 4324 mutex_unlock(&ftrace_lock);
b0fc494f
SR
4325
4326 return ret;
4327}
cdbe61bf 4328EXPORT_SYMBOL_GPL(unregister_ftrace_function);
b0fc494f 4329
e309b41d 4330int
b0fc494f 4331ftrace_enable_sysctl(struct ctl_table *table, int write,
8d65af78 4332 void __user *buffer, size_t *lenp,
b0fc494f
SR
4333 loff_t *ppos)
4334{
45a4a237 4335 int ret = -ENODEV;
4eebcc81 4336
e6ea44e9 4337 mutex_lock(&ftrace_lock);
b0fc494f 4338
45a4a237
SR
4339 if (unlikely(ftrace_disabled))
4340 goto out;
4341
4342 ret = proc_dointvec(table, write, buffer, lenp, ppos);
b0fc494f 4343
a32c7765 4344 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
b0fc494f
SR
4345 goto out;
4346
a32c7765 4347 last_ftrace_enabled = !!ftrace_enabled;
b0fc494f
SR
4348
4349 if (ftrace_enabled) {
4350
4351 ftrace_startup_sysctl();
4352
4353 /* we are starting ftrace again */
b848914c
SR
4354 if (ftrace_ops_list != &ftrace_list_end) {
4355 if (ftrace_ops_list->next == &ftrace_list_end)
4356 ftrace_trace_function = ftrace_ops_list->func;
b0fc494f 4357 else
b848914c 4358 ftrace_trace_function = ftrace_ops_list_func;
b0fc494f
SR
4359 }
4360
4361 } else {
4362 /* stopping ftrace calls (just send to ftrace_stub) */
4363 ftrace_trace_function = ftrace_stub;
4364
4365 ftrace_shutdown_sysctl();
4366 }
4367
4368 out:
e6ea44e9 4369 mutex_unlock(&ftrace_lock);
3d083395 4370 return ret;
16444a8a 4371}
f17845e5 4372
fb52607a 4373#ifdef CONFIG_FUNCTION_GRAPH_TRACER
e7d3737e 4374
597af815 4375static int ftrace_graph_active;
4a2b8dda 4376static struct notifier_block ftrace_suspend_notifier;
e7d3737e 4377
e49dc19c
SR
4378int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4379{
4380 return 0;
4381}
4382
287b6e68
FW
4383/* The callbacks that hook a function */
4384trace_func_graph_ret_t ftrace_graph_return =
4385 (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 4386trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
f201ae23
FW
4387
4388/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4389static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4390{
4391 int i;
4392 int ret = 0;
4393 unsigned long flags;
4394 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4395 struct task_struct *g, *t;
4396
4397 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4398 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4399 * sizeof(struct ftrace_ret_stack),
4400 GFP_KERNEL);
4401 if (!ret_stack_list[i]) {
4402 start = 0;
4403 end = i;
4404 ret = -ENOMEM;
4405 goto free;
4406 }
4407 }
4408
4409 read_lock_irqsave(&tasklist_lock, flags);
4410 do_each_thread(g, t) {
4411 if (start == end) {
4412 ret = -EAGAIN;
4413 goto unlock;
4414 }
4415
4416 if (t->ret_stack == NULL) {
380c4b14 4417 atomic_set(&t->tracing_graph_pause, 0);
f201ae23 4418 atomic_set(&t->trace_overrun, 0);
26c01624
SR
4419 t->curr_ret_stack = -1;
4420 /* Make sure the tasks see the -1 first: */
4421 smp_wmb();
4422 t->ret_stack = ret_stack_list[start++];
f201ae23
FW
4423 }
4424 } while_each_thread(g, t);
4425
4426unlock:
4427 read_unlock_irqrestore(&tasklist_lock, flags);
4428free:
4429 for (i = start; i < end; i++)
4430 kfree(ret_stack_list[i]);
4431 return ret;
4432}
4433
8aef2d28 4434static void
38516ab5
SR
4435ftrace_graph_probe_sched_switch(void *ignore,
4436 struct task_struct *prev, struct task_struct *next)
8aef2d28
SR
4437{
4438 unsigned long long timestamp;
4439 int index;
4440
be6f164a
SR
4441 /*
4442 * Does the user want to count the time a function was asleep.
4443 * If so, do not update the time stamps.
4444 */
4445 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4446 return;
4447
8aef2d28
SR
4448 timestamp = trace_clock_local();
4449
4450 prev->ftrace_timestamp = timestamp;
4451
4452 /* only process tasks that we timestamped */
4453 if (!next->ftrace_timestamp)
4454 return;
4455
4456 /*
4457 * Update all the counters in next to make up for the
4458 * time next was sleeping.
4459 */
4460 timestamp -= next->ftrace_timestamp;
4461
4462 for (index = next->curr_ret_stack; index >= 0; index--)
4463 next->ret_stack[index].calltime += timestamp;
4464}
4465
f201ae23 4466/* Allocate a return stack for each task */
fb52607a 4467static int start_graph_tracing(void)
f201ae23
FW
4468{
4469 struct ftrace_ret_stack **ret_stack_list;
5b058bcd 4470 int ret, cpu;
f201ae23
FW
4471
4472 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4473 sizeof(struct ftrace_ret_stack *),
4474 GFP_KERNEL);
4475
4476 if (!ret_stack_list)
4477 return -ENOMEM;
4478
5b058bcd 4479 /* The cpu_boot init_task->ret_stack will never be freed */
179c498a
SR
4480 for_each_online_cpu(cpu) {
4481 if (!idle_task(cpu)->ret_stack)
868baf07 4482 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
179c498a 4483 }
5b058bcd 4484
f201ae23
FW
4485 do {
4486 ret = alloc_retstack_tasklist(ret_stack_list);
4487 } while (ret == -EAGAIN);
4488
8aef2d28 4489 if (!ret) {
38516ab5 4490 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
8aef2d28
SR
4491 if (ret)
4492 pr_info("ftrace_graph: Couldn't activate tracepoint"
4493 " probe to kernel_sched_switch\n");
4494 }
4495
f201ae23
FW
4496 kfree(ret_stack_list);
4497 return ret;
4498}
4499
4a2b8dda
FW
4500/*
4501 * Hibernation protection.
4502 * The state of the current task is too much unstable during
4503 * suspend/restore to disk. We want to protect against that.
4504 */
4505static int
4506ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4507 void *unused)
4508{
4509 switch (state) {
4510 case PM_HIBERNATION_PREPARE:
4511 pause_graph_tracing();
4512 break;
4513
4514 case PM_POST_HIBERNATION:
4515 unpause_graph_tracing();
4516 break;
4517 }
4518 return NOTIFY_DONE;
4519}
4520
287b6e68
FW
4521int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4522 trace_func_graph_ent_t entryfunc)
15e6cb36 4523{
e7d3737e
FW
4524 int ret = 0;
4525
e6ea44e9 4526 mutex_lock(&ftrace_lock);
e7d3737e 4527
05ce5818 4528 /* we currently allow only one tracer registered at a time */
597af815 4529 if (ftrace_graph_active) {
05ce5818
SR
4530 ret = -EBUSY;
4531 goto out;
4532 }
4533
4a2b8dda
FW
4534 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4535 register_pm_notifier(&ftrace_suspend_notifier);
4536
597af815 4537 ftrace_graph_active++;
fb52607a 4538 ret = start_graph_tracing();
f201ae23 4539 if (ret) {
597af815 4540 ftrace_graph_active--;
f201ae23
FW
4541 goto out;
4542 }
e53a6319 4543
287b6e68
FW
4544 ftrace_graph_return = retfunc;
4545 ftrace_graph_entry = entryfunc;
e53a6319 4546
a1cd6173 4547 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
e7d3737e
FW
4548
4549out:
e6ea44e9 4550 mutex_unlock(&ftrace_lock);
e7d3737e 4551 return ret;
15e6cb36
FW
4552}
4553
fb52607a 4554void unregister_ftrace_graph(void)
15e6cb36 4555{
e6ea44e9 4556 mutex_lock(&ftrace_lock);
e7d3737e 4557
597af815 4558 if (unlikely(!ftrace_graph_active))
2aad1b76
SR
4559 goto out;
4560
597af815 4561 ftrace_graph_active--;
287b6e68 4562 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 4563 ftrace_graph_entry = ftrace_graph_entry_stub;
bd69c30b 4564 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
4a2b8dda 4565 unregister_pm_notifier(&ftrace_suspend_notifier);
38516ab5 4566 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
e7d3737e 4567
2aad1b76 4568 out:
e6ea44e9 4569 mutex_unlock(&ftrace_lock);
15e6cb36 4570}
f201ae23 4571
868baf07
SR
4572static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4573
4574static void
4575graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4576{
4577 atomic_set(&t->tracing_graph_pause, 0);
4578 atomic_set(&t->trace_overrun, 0);
4579 t->ftrace_timestamp = 0;
25985edc 4580 /* make curr_ret_stack visible before we add the ret_stack */
868baf07
SR
4581 smp_wmb();
4582 t->ret_stack = ret_stack;
4583}
4584
4585/*
4586 * Allocate a return stack for the idle task. May be the first
4587 * time through, or it may be done by CPU hotplug online.
4588 */
4589void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4590{
4591 t->curr_ret_stack = -1;
4592 /*
4593 * The idle task has no parent, it either has its own
4594 * stack or no stack at all.
4595 */
4596 if (t->ret_stack)
4597 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4598
4599 if (ftrace_graph_active) {
4600 struct ftrace_ret_stack *ret_stack;
4601
4602 ret_stack = per_cpu(idle_ret_stack, cpu);
4603 if (!ret_stack) {
4604 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4605 * sizeof(struct ftrace_ret_stack),
4606 GFP_KERNEL);
4607 if (!ret_stack)
4608 return;
4609 per_cpu(idle_ret_stack, cpu) = ret_stack;
4610 }
4611 graph_init_task(t, ret_stack);
4612 }
4613}
4614
f201ae23 4615/* Allocate a return stack for newly created task */
fb52607a 4616void ftrace_graph_init_task(struct task_struct *t)
f201ae23 4617{
84047e36
SR
4618 /* Make sure we do not use the parent ret_stack */
4619 t->ret_stack = NULL;
ea14eb71 4620 t->curr_ret_stack = -1;
84047e36 4621
597af815 4622 if (ftrace_graph_active) {
82310a32
SR
4623 struct ftrace_ret_stack *ret_stack;
4624
4625 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
f201ae23
FW
4626 * sizeof(struct ftrace_ret_stack),
4627 GFP_KERNEL);
82310a32 4628 if (!ret_stack)
f201ae23 4629 return;
868baf07 4630 graph_init_task(t, ret_stack);
84047e36 4631 }
f201ae23
FW
4632}
4633
fb52607a 4634void ftrace_graph_exit_task(struct task_struct *t)
f201ae23 4635{
eae849ca
FW
4636 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4637
f201ae23 4638 t->ret_stack = NULL;
eae849ca
FW
4639 /* NULL must become visible to IRQs before we free it: */
4640 barrier();
4641
4642 kfree(ret_stack);
f201ae23 4643}
14a866c5
SR
4644
4645void ftrace_graph_stop(void)
4646{
4647 ftrace_stop();
4648}
15e6cb36 4649#endif