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