]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/trace/ftrace.c
ftrace: Have cached module filters be an active filter
[mirror_ubuntu-artful-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>
29930025 18#include <linux/sched/task.h>
3d083395 19#include <linux/kallsyms.h>
5072c59f 20#include <linux/seq_file.h>
4a2b8dda 21#include <linux/suspend.h>
8434dc93 22#include <linux/tracefs.h>
3d083395 23#include <linux/hardirq.h>
2d8b820b 24#include <linux/kthread.h>
5072c59f 25#include <linux/uaccess.h>
5855fead 26#include <linux/bsearch.h>
56d82e00 27#include <linux/module.h>
2d8b820b 28#include <linux/ftrace.h>
b0fc494f 29#include <linux/sysctl.h>
5a0e3ad6 30#include <linux/slab.h>
5072c59f 31#include <linux/ctype.h>
68950619 32#include <linux/sort.h>
3d083395 33#include <linux/list.h>
59df055f 34#include <linux/hash.h>
3f379b03 35#include <linux/rcupdate.h>
3d083395 36
ad8d75ff 37#include <trace/events/sched.h>
8aef2d28 38
b80f0f6c 39#include <asm/sections.h>
2af15d6a 40#include <asm/setup.h>
395a59d0 41
0706f1c4 42#include "trace_output.h"
bac429f0 43#include "trace_stat.h"
16444a8a 44
6912896e 45#define FTRACE_WARN_ON(cond) \
0778d9ad
SR
46 ({ \
47 int ___r = cond; \
48 if (WARN_ON(___r)) \
6912896e 49 ftrace_kill(); \
0778d9ad
SR
50 ___r; \
51 })
6912896e
SR
52
53#define FTRACE_WARN_ON_ONCE(cond) \
0778d9ad
SR
54 ({ \
55 int ___r = cond; \
56 if (WARN_ON_ONCE(___r)) \
6912896e 57 ftrace_kill(); \
0778d9ad
SR
58 ___r; \
59 })
6912896e 60
8fc0c701
SR
61/* hash bits for specific function selection */
62#define FTRACE_HASH_BITS 7
63#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
33dc9b12
SR
64#define FTRACE_HASH_DEFAULT_BITS 10
65#define FTRACE_HASH_MAX_BITS 12
8fc0c701 66
f04f24fb 67#ifdef CONFIG_DYNAMIC_FTRACE
33b7f99c
SRRH
68#define INIT_OPS_HASH(opsname) \
69 .func_hash = &opsname.local_hash, \
70 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
5f151b24
SRRH
71#define ASSIGN_OPS_HASH(opsname, val) \
72 .func_hash = val, \
73 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
f04f24fb 74#else
33b7f99c 75#define INIT_OPS_HASH(opsname)
5f151b24 76#define ASSIGN_OPS_HASH(opsname, val)
f04f24fb
MH
77#endif
78
2f5f6ad9
SR
79static struct ftrace_ops ftrace_list_end __read_mostly = {
80 .func = ftrace_stub,
395b97a3 81 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB,
33b7f99c 82 INIT_OPS_HASH(ftrace_list_end)
2f5f6ad9
SR
83};
84
4eebcc81
SR
85/* ftrace_enabled is a method to turn ftrace on or off */
86int ftrace_enabled __read_mostly;
d61f82d0 87static int last_ftrace_enabled;
b0fc494f 88
2f5f6ad9
SR
89/* Current function tracing op */
90struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
405e1d83
SRRH
91/* What to set function_trace_op to */
92static struct ftrace_ops *set_function_trace_op;
60a7ecf4 93
345ddcc8 94static bool ftrace_pids_enabled(struct ftrace_ops *ops)
e3eea140 95{
345ddcc8
SRRH
96 struct trace_array *tr;
97
98 if (!(ops->flags & FTRACE_OPS_FL_PID) || !ops->private)
99 return false;
100
101 tr = ops->private;
102
103 return tr->function_pids != NULL;
e3eea140
SRRH
104}
105
106static void ftrace_update_trampoline(struct ftrace_ops *ops);
107
4eebcc81
SR
108/*
109 * ftrace_disabled is set when an anomaly is discovered.
110 * ftrace_disabled is much stronger than ftrace_enabled.
111 */
112static int ftrace_disabled __read_mostly;
113
52baf119 114static DEFINE_MUTEX(ftrace_lock);
b0fc494f 115
b848914c 116static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
16444a8a 117ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
2b499381 118static struct ftrace_ops global_ops;
16444a8a 119
2f5f6ad9
SR
120#if ARCH_SUPPORTS_FTRACE_OPS
121static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
a1e2e31d 122 struct ftrace_ops *op, struct pt_regs *regs);
2f5f6ad9
SR
123#else
124/* See comment below, where ftrace_ops_list_func is defined */
125static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
126#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
127#endif
b848914c 128
0a016409
SR
129/*
130 * Traverse the ftrace_global_list, invoking all entries. The reason that we
1bb539ca 131 * can use rcu_dereference_raw_notrace() is that elements removed from this list
0a016409 132 * are simply leaked, so there is no need to interact with a grace-period
1bb539ca 133 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
0a016409
SR
134 * concurrent insertions into the ftrace_global_list.
135 *
136 * Silly Alpha and silly pointer-speculation compiler optimizations!
137 */
138#define do_for_each_ftrace_op(op, list) \
1bb539ca 139 op = rcu_dereference_raw_notrace(list); \
0a016409
SR
140 do
141
142/*
143 * Optimized for just a single item in the list (as that is the normal case).
144 */
145#define while_for_each_ftrace_op(op) \
1bb539ca 146 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
0a016409
SR
147 unlikely((op) != &ftrace_list_end))
148
f04f24fb
MH
149static inline void ftrace_ops_init(struct ftrace_ops *ops)
150{
151#ifdef CONFIG_DYNAMIC_FTRACE
152 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
33b7f99c
SRRH
153 mutex_init(&ops->local_hash.regex_lock);
154 ops->func_hash = &ops->local_hash;
f04f24fb
MH
155 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
156 }
157#endif
158}
159
ea701f11
SR
160/**
161 * ftrace_nr_registered_ops - return number of ops registered
162 *
163 * Returns the number of ftrace_ops registered and tracing functions
164 */
165int ftrace_nr_registered_ops(void)
166{
167 struct ftrace_ops *ops;
168 int cnt = 0;
169
170 mutex_lock(&ftrace_lock);
171
172 for (ops = ftrace_ops_list;
173 ops != &ftrace_list_end; ops = ops->next)
174 cnt++;
175
176 mutex_unlock(&ftrace_lock);
177
178 return cnt;
179}
180
2f5f6ad9 181static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
a1e2e31d 182 struct ftrace_ops *op, struct pt_regs *regs)
df4fc315 183{
345ddcc8
SRRH
184 struct trace_array *tr = op->private;
185
186 if (tr && this_cpu_read(tr->trace_buffer.data->ftrace_ignore_pid))
df4fc315
SR
187 return;
188
e3eea140 189 op->saved_func(ip, parent_ip, op, regs);
df4fc315
SR
190}
191
16444a8a 192/**
3d083395 193 * clear_ftrace_function - reset the ftrace function
16444a8a 194 *
3d083395
SR
195 * This NULLs the ftrace function and in essence stops
196 * tracing. There may be lag
16444a8a 197 */
3d083395 198void clear_ftrace_function(void)
16444a8a 199{
3d083395
SR
200 ftrace_trace_function = ftrace_stub;
201}
202
ba27f2bc 203static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
e248491a
JO
204{
205 int cpu;
206
207 for_each_possible_cpu(cpu)
208 *per_cpu_ptr(ops->disabled, cpu) = 1;
209}
210
ba27f2bc 211static int per_cpu_ops_alloc(struct ftrace_ops *ops)
e248491a
JO
212{
213 int __percpu *disabled;
214
ba27f2bc
SRRH
215 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
216 return -EINVAL;
217
e248491a
JO
218 disabled = alloc_percpu(int);
219 if (!disabled)
220 return -ENOMEM;
221
222 ops->disabled = disabled;
ba27f2bc 223 per_cpu_ops_disable_all(ops);
e248491a
JO
224 return 0;
225}
226
405e1d83
SRRH
227static void ftrace_sync(struct work_struct *work)
228{
229 /*
230 * This function is just a stub to implement a hard force
231 * of synchronize_sched(). This requires synchronizing
232 * tasks even in userspace and idle.
233 *
234 * Yes, function tracing is rude.
235 */
236}
237
238static void ftrace_sync_ipi(void *data)
239{
240 /* Probably not needed, but do it anyway */
241 smp_rmb();
242}
243
23a8e844
SRRH
244#ifdef CONFIG_FUNCTION_GRAPH_TRACER
245static void update_function_graph_func(void);
55577204
SRRH
246
247/* Both enabled by default (can be cleared by function_graph tracer flags */
248static bool fgraph_sleep_time = true;
249static bool fgraph_graph_time = true;
250
23a8e844
SRRH
251#else
252static inline void update_function_graph_func(void) { }
253#endif
254
00ccbf2f
SRRH
255
256static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
257{
258 /*
ba27f2bc 259 * If this is a dynamic, RCU, or per CPU ops, or we force list func,
00ccbf2f
SRRH
260 * then it needs to call the list anyway.
261 */
ba27f2bc
SRRH
262 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
263 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
00ccbf2f
SRRH
264 return ftrace_ops_list_func;
265
266 return ftrace_ops_get_func(ops);
267}
268
2b499381
SR
269static void update_ftrace_function(void)
270{
271 ftrace_func_t func;
272
f7aad4e1
SRRH
273 /*
274 * Prepare the ftrace_ops that the arch callback will use.
275 * If there's only one ftrace_ops registered, the ftrace_ops_list
276 * will point to the ops we want.
277 */
278 set_function_trace_op = ftrace_ops_list;
279
280 /* If there's no ftrace_ops registered, just call the stub function */
281 if (ftrace_ops_list == &ftrace_list_end) {
282 func = ftrace_stub;
283
cdbe61bf
SR
284 /*
285 * If we are at the end of the list and this ops is
4740974a
SR
286 * recursion safe and not dynamic and the arch supports passing ops,
287 * then have the mcount trampoline call the function directly.
cdbe61bf 288 */
f7aad4e1 289 } else if (ftrace_ops_list->next == &ftrace_list_end) {
00ccbf2f 290 func = ftrace_ops_get_list_func(ftrace_ops_list);
f7aad4e1 291
2f5f6ad9
SR
292 } else {
293 /* Just use the default ftrace_ops */
405e1d83 294 set_function_trace_op = &ftrace_list_end;
b848914c 295 func = ftrace_ops_list_func;
2f5f6ad9 296 }
2b499381 297
5f8bf2d2
SRRH
298 update_function_graph_func();
299
405e1d83
SRRH
300 /* If there's no change, then do nothing more here */
301 if (ftrace_trace_function == func)
302 return;
303
304 /*
305 * If we are using the list function, it doesn't care
306 * about the function_trace_ops.
307 */
308 if (func == ftrace_ops_list_func) {
309 ftrace_trace_function = func;
310 /*
311 * Don't even bother setting function_trace_ops,
312 * it would be racy to do so anyway.
313 */
314 return;
315 }
316
317#ifndef CONFIG_DYNAMIC_FTRACE
318 /*
319 * For static tracing, we need to be a bit more careful.
320 * The function change takes affect immediately. Thus,
321 * we need to coorditate the setting of the function_trace_ops
322 * with the setting of the ftrace_trace_function.
323 *
324 * Set the function to the list ops, which will call the
325 * function we want, albeit indirectly, but it handles the
326 * ftrace_ops and doesn't depend on function_trace_op.
327 */
328 ftrace_trace_function = ftrace_ops_list_func;
329 /*
330 * Make sure all CPUs see this. Yes this is slow, but static
331 * tracing is slow and nasty to have enabled.
332 */
333 schedule_on_each_cpu(ftrace_sync);
334 /* Now all cpus are using the list ops. */
335 function_trace_op = set_function_trace_op;
336 /* Make sure the function_trace_op is visible on all CPUs */
337 smp_wmb();
338 /* Nasty way to force a rmb on all cpus */
339 smp_call_function(ftrace_sync_ipi, NULL, 1);
340 /* OK, we are all set to update the ftrace_trace_function now! */
341#endif /* !CONFIG_DYNAMIC_FTRACE */
342
491d0dcf 343 ftrace_trace_function = func;
491d0dcf
SR
344}
345
7eea4fce
JW
346int using_ftrace_ops_list_func(void)
347{
348 return ftrace_trace_function == ftrace_ops_list_func;
349}
350
2b499381 351static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
3d083395 352{
2b499381 353 ops->next = *list;
16444a8a 354 /*
b848914c 355 * We are entering ops into the list but another
16444a8a
ACM
356 * CPU might be walking that list. We need to make sure
357 * the ops->next pointer is valid before another CPU sees
b848914c 358 * the ops pointer included into the list.
16444a8a 359 */
2b499381 360 rcu_assign_pointer(*list, ops);
16444a8a
ACM
361}
362
2b499381 363static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
16444a8a 364{
16444a8a 365 struct ftrace_ops **p;
16444a8a
ACM
366
367 /*
3d083395
SR
368 * If we are removing the last function, then simply point
369 * to the ftrace_stub.
16444a8a 370 */
2b499381
SR
371 if (*list == ops && ops->next == &ftrace_list_end) {
372 *list = &ftrace_list_end;
e6ea44e9 373 return 0;
16444a8a
ACM
374 }
375
2b499381 376 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
16444a8a
ACM
377 if (*p == ops)
378 break;
379
e6ea44e9
SR
380 if (*p != ops)
381 return -1;
16444a8a
ACM
382
383 *p = (*p)->next;
2b499381
SR
384 return 0;
385}
16444a8a 386
f3bea491
SRRH
387static void ftrace_update_trampoline(struct ftrace_ops *ops);
388
2b499381
SR
389static int __register_ftrace_function(struct ftrace_ops *ops)
390{
591dffda
SRRH
391 if (ops->flags & FTRACE_OPS_FL_DELETED)
392 return -EINVAL;
393
b848914c
SR
394 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
395 return -EBUSY;
396
06aeaaea 397#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
08f6fba5
SR
398 /*
399 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
400 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
401 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
402 */
403 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
404 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
405 return -EINVAL;
406
407 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
408 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
409#endif
410
cdbe61bf
SR
411 if (!core_kernel_data((unsigned long)ops))
412 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
413
ba27f2bc
SRRH
414 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
415 if (per_cpu_ops_alloc(ops))
e248491a 416 return -ENOMEM;
ba27f2bc
SRRH
417 }
418
419 add_ftrace_ops(&ftrace_ops_list, ops);
b848914c 420
e3eea140
SRRH
421 /* Always save the function, and reset at unregistering */
422 ops->saved_func = ops->func;
423
345ddcc8 424 if (ftrace_pids_enabled(ops))
e3eea140
SRRH
425 ops->func = ftrace_pid_func;
426
f3bea491
SRRH
427 ftrace_update_trampoline(ops);
428
2b499381
SR
429 if (ftrace_enabled)
430 update_ftrace_function();
431
432 return 0;
433}
434
435static int __unregister_ftrace_function(struct ftrace_ops *ops)
436{
437 int ret;
438
b848914c
SR
439 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
440 return -EBUSY;
441
ba27f2bc 442 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
b848914c 443
2b499381
SR
444 if (ret < 0)
445 return ret;
b848914c 446
491d0dcf
SR
447 if (ftrace_enabled)
448 update_ftrace_function();
16444a8a 449
e3eea140
SRRH
450 ops->func = ops->saved_func;
451
e6ea44e9 452 return 0;
3d083395
SR
453}
454
df4fc315
SR
455static void ftrace_update_pid_func(void)
456{
e3eea140
SRRH
457 struct ftrace_ops *op;
458
491d0dcf 459 /* Only do something if we are tracing something */
df4fc315 460 if (ftrace_trace_function == ftrace_stub)
10dd3ebe 461 return;
df4fc315 462
e3eea140
SRRH
463 do_for_each_ftrace_op(op, ftrace_ops_list) {
464 if (op->flags & FTRACE_OPS_FL_PID) {
345ddcc8
SRRH
465 op->func = ftrace_pids_enabled(op) ?
466 ftrace_pid_func : op->saved_func;
e3eea140
SRRH
467 ftrace_update_trampoline(op);
468 }
469 } while_for_each_ftrace_op(op);
470
491d0dcf 471 update_ftrace_function();
df4fc315
SR
472}
473
493762fc
SR
474#ifdef CONFIG_FUNCTION_PROFILER
475struct ftrace_profile {
476 struct hlist_node node;
477 unsigned long ip;
478 unsigned long counter;
0706f1c4
SR
479#ifdef CONFIG_FUNCTION_GRAPH_TRACER
480 unsigned long long time;
e330b3bc 481 unsigned long long time_squared;
0706f1c4 482#endif
8fc0c701
SR
483};
484
493762fc
SR
485struct ftrace_profile_page {
486 struct ftrace_profile_page *next;
487 unsigned long index;
488 struct ftrace_profile records[];
d61f82d0
SR
489};
490
cafb168a
SR
491struct ftrace_profile_stat {
492 atomic_t disabled;
493 struct hlist_head *hash;
494 struct ftrace_profile_page *pages;
495 struct ftrace_profile_page *start;
496 struct tracer_stat stat;
497};
498
493762fc
SR
499#define PROFILE_RECORDS_SIZE \
500 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
5072c59f 501
493762fc
SR
502#define PROFILES_PER_PAGE \
503 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
3d083395 504
fb9fb015
SR
505static int ftrace_profile_enabled __read_mostly;
506
507/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
bac429f0
SR
508static DEFINE_MUTEX(ftrace_profile_lock);
509
cafb168a 510static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
493762fc 511
20079ebe
NK
512#define FTRACE_PROFILE_HASH_BITS 10
513#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
493762fc 514
bac429f0
SR
515static void *
516function_stat_next(void *v, int idx)
517{
493762fc
SR
518 struct ftrace_profile *rec = v;
519 struct ftrace_profile_page *pg;
bac429f0 520
493762fc 521 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
bac429f0
SR
522
523 again:
0296e425
LZ
524 if (idx != 0)
525 rec++;
526
bac429f0
SR
527 if ((void *)rec >= (void *)&pg->records[pg->index]) {
528 pg = pg->next;
529 if (!pg)
530 return NULL;
531 rec = &pg->records[0];
493762fc
SR
532 if (!rec->counter)
533 goto again;
bac429f0
SR
534 }
535
bac429f0
SR
536 return rec;
537}
538
539static void *function_stat_start(struct tracer_stat *trace)
540{
cafb168a
SR
541 struct ftrace_profile_stat *stat =
542 container_of(trace, struct ftrace_profile_stat, stat);
543
544 if (!stat || !stat->start)
545 return NULL;
546
547 return function_stat_next(&stat->start->records[0], 0);
bac429f0
SR
548}
549
0706f1c4
SR
550#ifdef CONFIG_FUNCTION_GRAPH_TRACER
551/* function graph compares on total time */
552static int function_stat_cmp(void *p1, void *p2)
553{
554 struct ftrace_profile *a = p1;
555 struct ftrace_profile *b = p2;
556
557 if (a->time < b->time)
558 return -1;
559 if (a->time > b->time)
560 return 1;
561 else
562 return 0;
563}
564#else
565/* not function graph compares against hits */
bac429f0
SR
566static int function_stat_cmp(void *p1, void *p2)
567{
493762fc
SR
568 struct ftrace_profile *a = p1;
569 struct ftrace_profile *b = p2;
bac429f0
SR
570
571 if (a->counter < b->counter)
572 return -1;
573 if (a->counter > b->counter)
574 return 1;
575 else
576 return 0;
577}
0706f1c4 578#endif
bac429f0
SR
579
580static int function_stat_headers(struct seq_file *m)
581{
0706f1c4 582#ifdef CONFIG_FUNCTION_GRAPH_TRACER
fa6f0cc7
RV
583 seq_puts(m, " Function "
584 "Hit Time Avg s^2\n"
585 " -------- "
586 "--- ---- --- ---\n");
0706f1c4 587#else
fa6f0cc7
RV
588 seq_puts(m, " Function Hit\n"
589 " -------- ---\n");
0706f1c4 590#endif
bac429f0
SR
591 return 0;
592}
593
594static int function_stat_show(struct seq_file *m, void *v)
595{
493762fc 596 struct ftrace_profile *rec = v;
bac429f0 597 char str[KSYM_SYMBOL_LEN];
3aaba20f 598 int ret = 0;
0706f1c4 599#ifdef CONFIG_FUNCTION_GRAPH_TRACER
34886c8b
SR
600 static struct trace_seq s;
601 unsigned long long avg;
e330b3bc 602 unsigned long long stddev;
0706f1c4 603#endif
3aaba20f
LZ
604 mutex_lock(&ftrace_profile_lock);
605
606 /* we raced with function_profile_reset() */
607 if (unlikely(rec->counter == 0)) {
608 ret = -EBUSY;
609 goto out;
610 }
bac429f0 611
8e436ca0
UT
612#ifdef CONFIG_FUNCTION_GRAPH_TRACER
613 avg = rec->time;
614 do_div(avg, rec->counter);
615 if (tracing_thresh && (avg < tracing_thresh))
616 goto out;
617#endif
618
bac429f0 619 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
0706f1c4
SR
620 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
621
622#ifdef CONFIG_FUNCTION_GRAPH_TRACER
fa6f0cc7 623 seq_puts(m, " ");
34886c8b 624
e330b3bc
CD
625 /* Sample standard deviation (s^2) */
626 if (rec->counter <= 1)
627 stddev = 0;
628 else {
52d85d76
JL
629 /*
630 * Apply Welford's method:
631 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
632 */
633 stddev = rec->counter * rec->time_squared -
634 rec->time * rec->time;
635
e330b3bc
CD
636 /*
637 * Divide only 1000 for ns^2 -> us^2 conversion.
638 * trace_print_graph_duration will divide 1000 again.
639 */
52d85d76 640 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
e330b3bc
CD
641 }
642
34886c8b
SR
643 trace_seq_init(&s);
644 trace_print_graph_duration(rec->time, &s);
645 trace_seq_puts(&s, " ");
646 trace_print_graph_duration(avg, &s);
e330b3bc
CD
647 trace_seq_puts(&s, " ");
648 trace_print_graph_duration(stddev, &s);
0706f1c4 649 trace_print_seq(m, &s);
0706f1c4
SR
650#endif
651 seq_putc(m, '\n');
3aaba20f
LZ
652out:
653 mutex_unlock(&ftrace_profile_lock);
bac429f0 654
3aaba20f 655 return ret;
bac429f0
SR
656}
657
cafb168a 658static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
bac429f0 659{
493762fc 660 struct ftrace_profile_page *pg;
bac429f0 661
cafb168a 662 pg = stat->pages = stat->start;
bac429f0 663
493762fc
SR
664 while (pg) {
665 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
666 pg->index = 0;
667 pg = pg->next;
bac429f0
SR
668 }
669
cafb168a 670 memset(stat->hash, 0,
493762fc
SR
671 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
672}
bac429f0 673
cafb168a 674int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
493762fc
SR
675{
676 struct ftrace_profile_page *pg;
318e0a73
SR
677 int functions;
678 int pages;
493762fc 679 int i;
bac429f0 680
493762fc 681 /* If we already allocated, do nothing */
cafb168a 682 if (stat->pages)
493762fc 683 return 0;
bac429f0 684
cafb168a
SR
685 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
686 if (!stat->pages)
493762fc 687 return -ENOMEM;
bac429f0 688
318e0a73
SR
689#ifdef CONFIG_DYNAMIC_FTRACE
690 functions = ftrace_update_tot_cnt;
691#else
692 /*
693 * We do not know the number of functions that exist because
694 * dynamic tracing is what counts them. With past experience
695 * we have around 20K functions. That should be more than enough.
696 * It is highly unlikely we will execute every function in
697 * the kernel.
698 */
699 functions = 20000;
700#endif
701
cafb168a 702 pg = stat->start = stat->pages;
bac429f0 703
318e0a73
SR
704 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
705
39e30cd1 706 for (i = 1; i < pages; i++) {
493762fc 707 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
493762fc 708 if (!pg->next)
318e0a73 709 goto out_free;
493762fc
SR
710 pg = pg->next;
711 }
712
713 return 0;
318e0a73
SR
714
715 out_free:
716 pg = stat->start;
717 while (pg) {
718 unsigned long tmp = (unsigned long)pg;
719
720 pg = pg->next;
721 free_page(tmp);
722 }
723
318e0a73
SR
724 stat->pages = NULL;
725 stat->start = NULL;
726
727 return -ENOMEM;
bac429f0
SR
728}
729
cafb168a 730static int ftrace_profile_init_cpu(int cpu)
bac429f0 731{
cafb168a 732 struct ftrace_profile_stat *stat;
493762fc 733 int size;
bac429f0 734
cafb168a
SR
735 stat = &per_cpu(ftrace_profile_stats, cpu);
736
737 if (stat->hash) {
493762fc 738 /* If the profile is already created, simply reset it */
cafb168a 739 ftrace_profile_reset(stat);
493762fc
SR
740 return 0;
741 }
bac429f0 742
493762fc
SR
743 /*
744 * We are profiling all functions, but usually only a few thousand
745 * functions are hit. We'll make a hash of 1024 items.
746 */
747 size = FTRACE_PROFILE_HASH_SIZE;
bac429f0 748
cafb168a 749 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
493762fc 750
cafb168a 751 if (!stat->hash)
493762fc
SR
752 return -ENOMEM;
753
318e0a73 754 /* Preallocate the function profiling pages */
cafb168a
SR
755 if (ftrace_profile_pages_init(stat) < 0) {
756 kfree(stat->hash);
757 stat->hash = NULL;
493762fc
SR
758 return -ENOMEM;
759 }
760
761 return 0;
bac429f0
SR
762}
763
cafb168a
SR
764static int ftrace_profile_init(void)
765{
766 int cpu;
767 int ret = 0;
768
c4602c1c 769 for_each_possible_cpu(cpu) {
cafb168a
SR
770 ret = ftrace_profile_init_cpu(cpu);
771 if (ret)
772 break;
773 }
774
775 return ret;
776}
777
493762fc 778/* interrupts must be disabled */
cafb168a
SR
779static struct ftrace_profile *
780ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
bac429f0 781{
493762fc 782 struct ftrace_profile *rec;
bac429f0 783 struct hlist_head *hhd;
bac429f0
SR
784 unsigned long key;
785
20079ebe 786 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
cafb168a 787 hhd = &stat->hash[key];
bac429f0
SR
788
789 if (hlist_empty(hhd))
790 return NULL;
791
1bb539ca 792 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
bac429f0 793 if (rec->ip == ip)
493762fc
SR
794 return rec;
795 }
796
797 return NULL;
798}
799
cafb168a
SR
800static void ftrace_add_profile(struct ftrace_profile_stat *stat,
801 struct ftrace_profile *rec)
493762fc
SR
802{
803 unsigned long key;
804
20079ebe 805 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
cafb168a 806 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
493762fc
SR
807}
808
318e0a73
SR
809/*
810 * The memory is already allocated, this simply finds a new record to use.
811 */
493762fc 812static struct ftrace_profile *
318e0a73 813ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
493762fc
SR
814{
815 struct ftrace_profile *rec = NULL;
816
318e0a73 817 /* prevent recursion (from NMIs) */
cafb168a 818 if (atomic_inc_return(&stat->disabled) != 1)
493762fc
SR
819 goto out;
820
493762fc 821 /*
318e0a73
SR
822 * Try to find the function again since an NMI
823 * could have added it
493762fc 824 */
cafb168a 825 rec = ftrace_find_profiled_func(stat, ip);
493762fc 826 if (rec)
cafb168a 827 goto out;
493762fc 828
cafb168a
SR
829 if (stat->pages->index == PROFILES_PER_PAGE) {
830 if (!stat->pages->next)
831 goto out;
832 stat->pages = stat->pages->next;
bac429f0 833 }
493762fc 834
cafb168a 835 rec = &stat->pages->records[stat->pages->index++];
493762fc 836 rec->ip = ip;
cafb168a 837 ftrace_add_profile(stat, rec);
493762fc 838
bac429f0 839 out:
cafb168a 840 atomic_dec(&stat->disabled);
bac429f0
SR
841
842 return rec;
843}
844
845static void
2f5f6ad9 846function_profile_call(unsigned long ip, unsigned long parent_ip,
a1e2e31d 847 struct ftrace_ops *ops, struct pt_regs *regs)
bac429f0 848{
cafb168a 849 struct ftrace_profile_stat *stat;
493762fc 850 struct ftrace_profile *rec;
bac429f0
SR
851 unsigned long flags;
852
853 if (!ftrace_profile_enabled)
854 return;
855
856 local_irq_save(flags);
cafb168a 857
bdffd893 858 stat = this_cpu_ptr(&ftrace_profile_stats);
0f6ce3de 859 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
860 goto out;
861
862 rec = ftrace_find_profiled_func(stat, ip);
493762fc 863 if (!rec) {
318e0a73 864 rec = ftrace_profile_alloc(stat, ip);
493762fc
SR
865 if (!rec)
866 goto out;
867 }
bac429f0
SR
868
869 rec->counter++;
870 out:
871 local_irq_restore(flags);
872}
873
0706f1c4
SR
874#ifdef CONFIG_FUNCTION_GRAPH_TRACER
875static int profile_graph_entry(struct ftrace_graph_ent *trace)
876{
8861dd30
NK
877 int index = trace->depth;
878
a1e2e31d 879 function_profile_call(trace->func, 0, NULL, NULL);
8861dd30
NK
880
881 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
882 current->ret_stack[index].subtime = 0;
883
0706f1c4
SR
884 return 1;
885}
886
887static void profile_graph_return(struct ftrace_graph_ret *trace)
888{
cafb168a 889 struct ftrace_profile_stat *stat;
a2a16d6a 890 unsigned long long calltime;
0706f1c4 891 struct ftrace_profile *rec;
cafb168a 892 unsigned long flags;
0706f1c4
SR
893
894 local_irq_save(flags);
bdffd893 895 stat = this_cpu_ptr(&ftrace_profile_stats);
0f6ce3de 896 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
897 goto out;
898
37e44bc5
SR
899 /* If the calltime was zero'd ignore it */
900 if (!trace->calltime)
901 goto out;
902
a2a16d6a
SR
903 calltime = trace->rettime - trace->calltime;
904
55577204 905 if (!fgraph_graph_time) {
a2a16d6a
SR
906 int index;
907
908 index = trace->depth;
909
910 /* Append this call time to the parent time to subtract */
911 if (index)
912 current->ret_stack[index - 1].subtime += calltime;
913
914 if (current->ret_stack[index].subtime < calltime)
915 calltime -= current->ret_stack[index].subtime;
916 else
917 calltime = 0;
918 }
919
cafb168a 920 rec = ftrace_find_profiled_func(stat, trace->func);
e330b3bc 921 if (rec) {
a2a16d6a 922 rec->time += calltime;
e330b3bc
CD
923 rec->time_squared += calltime * calltime;
924 }
a2a16d6a 925
cafb168a 926 out:
0706f1c4
SR
927 local_irq_restore(flags);
928}
929
930static int register_ftrace_profiler(void)
931{
932 return register_ftrace_graph(&profile_graph_return,
933 &profile_graph_entry);
934}
935
936static void unregister_ftrace_profiler(void)
937{
938 unregister_ftrace_graph();
939}
940#else
bd38c0e6 941static struct ftrace_ops ftrace_profile_ops __read_mostly = {
fb9fb015 942 .func = function_profile_call,
f04f24fb 943 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
33b7f99c 944 INIT_OPS_HASH(ftrace_profile_ops)
bac429f0
SR
945};
946
0706f1c4
SR
947static int register_ftrace_profiler(void)
948{
949 return register_ftrace_function(&ftrace_profile_ops);
950}
951
952static void unregister_ftrace_profiler(void)
953{
954 unregister_ftrace_function(&ftrace_profile_ops);
955}
956#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
957
bac429f0
SR
958static ssize_t
959ftrace_profile_write(struct file *filp, const char __user *ubuf,
960 size_t cnt, loff_t *ppos)
961{
962 unsigned long val;
bac429f0
SR
963 int ret;
964
22fe9b54
PH
965 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
966 if (ret)
bac429f0
SR
967 return ret;
968
969 val = !!val;
970
971 mutex_lock(&ftrace_profile_lock);
972 if (ftrace_profile_enabled ^ val) {
973 if (val) {
493762fc
SR
974 ret = ftrace_profile_init();
975 if (ret < 0) {
976 cnt = ret;
977 goto out;
978 }
979
0706f1c4
SR
980 ret = register_ftrace_profiler();
981 if (ret < 0) {
982 cnt = ret;
983 goto out;
984 }
bac429f0
SR
985 ftrace_profile_enabled = 1;
986 } else {
987 ftrace_profile_enabled = 0;
0f6ce3de
SR
988 /*
989 * unregister_ftrace_profiler calls stop_machine
990 * so this acts like an synchronize_sched.
991 */
0706f1c4 992 unregister_ftrace_profiler();
bac429f0
SR
993 }
994 }
493762fc 995 out:
bac429f0
SR
996 mutex_unlock(&ftrace_profile_lock);
997
cf8517cf 998 *ppos += cnt;
bac429f0
SR
999
1000 return cnt;
1001}
1002
493762fc
SR
1003static ssize_t
1004ftrace_profile_read(struct file *filp, char __user *ubuf,
1005 size_t cnt, loff_t *ppos)
1006{
fb9fb015 1007 char buf[64]; /* big enough to hold a number */
493762fc
SR
1008 int r;
1009
1010 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1011 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1012}
1013
bac429f0
SR
1014static const struct file_operations ftrace_profile_fops = {
1015 .open = tracing_open_generic,
1016 .read = ftrace_profile_read,
1017 .write = ftrace_profile_write,
6038f373 1018 .llseek = default_llseek,
bac429f0
SR
1019};
1020
cafb168a
SR
1021/* used to initialize the real stat files */
1022static struct tracer_stat function_stats __initdata = {
fb9fb015
SR
1023 .name = "functions",
1024 .stat_start = function_stat_start,
1025 .stat_next = function_stat_next,
1026 .stat_cmp = function_stat_cmp,
1027 .stat_headers = function_stat_headers,
1028 .stat_show = function_stat_show
cafb168a
SR
1029};
1030
8434dc93 1031static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
bac429f0 1032{
cafb168a 1033 struct ftrace_profile_stat *stat;
bac429f0 1034 struct dentry *entry;
cafb168a 1035 char *name;
bac429f0 1036 int ret;
cafb168a
SR
1037 int cpu;
1038
1039 for_each_possible_cpu(cpu) {
1040 stat = &per_cpu(ftrace_profile_stats, cpu);
1041
6363c6b5 1042 name = kasprintf(GFP_KERNEL, "function%d", cpu);
cafb168a
SR
1043 if (!name) {
1044 /*
1045 * The files created are permanent, if something happens
1046 * we still do not free memory.
1047 */
cafb168a
SR
1048 WARN(1,
1049 "Could not allocate stat file for cpu %d\n",
1050 cpu);
1051 return;
1052 }
1053 stat->stat = function_stats;
cafb168a
SR
1054 stat->stat.name = name;
1055 ret = register_stat_tracer(&stat->stat);
1056 if (ret) {
1057 WARN(1,
1058 "Could not register function stat for cpu %d\n",
1059 cpu);
1060 kfree(name);
1061 return;
1062 }
bac429f0
SR
1063 }
1064
8434dc93 1065 entry = tracefs_create_file("function_profile_enabled", 0644,
bac429f0
SR
1066 d_tracer, NULL, &ftrace_profile_fops);
1067 if (!entry)
a395d6a7 1068 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
bac429f0
SR
1069}
1070
bac429f0 1071#else /* CONFIG_FUNCTION_PROFILER */
8434dc93 1072static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
bac429f0
SR
1073{
1074}
bac429f0
SR
1075#endif /* CONFIG_FUNCTION_PROFILER */
1076
493762fc
SR
1077static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1078
1619dc3f
PA
1079#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1080static int ftrace_graph_active;
1081#else
1082# define ftrace_graph_active 0
1083#endif
1084
493762fc
SR
1085#ifdef CONFIG_DYNAMIC_FTRACE
1086
79922b80
SRRH
1087static struct ftrace_ops *removed_ops;
1088
e1effa01
SRRH
1089/*
1090 * Set when doing a global update, like enabling all recs or disabling them.
1091 * It is not set when just updating a single ftrace_ops.
1092 */
1093static bool update_all_ops;
1094
493762fc
SR
1095#ifndef CONFIG_FTRACE_MCOUNT_RECORD
1096# error Dynamic ftrace depends on MCOUNT_RECORD
1097#endif
1098
b448c4e3
SR
1099struct ftrace_func_entry {
1100 struct hlist_node hlist;
1101 unsigned long ip;
1102};
1103
7b60f3d8
SRV
1104struct ftrace_func_probe {
1105 struct ftrace_probe_ops *probe_ops;
1106 struct ftrace_ops ops;
1107 struct trace_array *tr;
1108 struct list_head list;
6e444319 1109 void *data;
7b60f3d8
SRV
1110 int ref;
1111};
1112
33dc9b12
SR
1113/*
1114 * We make these constant because no one should touch them,
1115 * but they are used as the default "empty hash", to avoid allocating
1116 * it all the time. These are in a read only section such that if
1117 * anyone does try to modify it, it will cause an exception.
1118 */
1119static const struct hlist_head empty_buckets[1];
1120static const struct ftrace_hash empty_hash = {
1121 .buckets = (struct hlist_head *)empty_buckets,
1cf41dd7 1122};
33dc9b12 1123#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
493762fc 1124
2b499381 1125static struct ftrace_ops global_ops = {
33b7f99c
SRRH
1126 .func = ftrace_stub,
1127 .local_hash.notrace_hash = EMPTY_HASH,
1128 .local_hash.filter_hash = EMPTY_HASH,
1129 INIT_OPS_HASH(global_ops)
1130 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
e3eea140
SRRH
1131 FTRACE_OPS_FL_INITIALIZED |
1132 FTRACE_OPS_FL_PID,
f45948e8
SR
1133};
1134
aec0be2d
SRRH
1135/*
1136 * This is used by __kernel_text_address() to return true if the
0af26492 1137 * address is on a dynamically allocated trampoline that would
aec0be2d
SRRH
1138 * not return true for either core_kernel_text() or
1139 * is_module_text_address().
1140 */
1141bool is_ftrace_trampoline(unsigned long addr)
1142{
1143 struct ftrace_ops *op;
1144 bool ret = false;
1145
1146 /*
1147 * Some of the ops may be dynamically allocated,
1148 * they are freed after a synchronize_sched().
1149 */
1150 preempt_disable_notrace();
1151
1152 do_for_each_ftrace_op(op, ftrace_ops_list) {
1153 /*
1154 * This is to check for dynamically allocated trampolines.
1155 * Trampolines that are in kernel text will have
1156 * core_kernel_text() return true.
1157 */
1158 if (op->trampoline && op->trampoline_size)
1159 if (addr >= op->trampoline &&
1160 addr < op->trampoline + op->trampoline_size) {
1161 ret = true;
1162 goto out;
1163 }
1164 } while_for_each_ftrace_op(op);
1165
1166 out:
1167 preempt_enable_notrace();
1168
1169 return ret;
1170}
1171
493762fc
SR
1172struct ftrace_page {
1173 struct ftrace_page *next;
a7900875 1174 struct dyn_ftrace *records;
493762fc 1175 int index;
a7900875 1176 int size;
493762fc
SR
1177};
1178
a7900875
SR
1179#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1180#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
493762fc
SR
1181
1182/* estimate from running different kernels */
1183#define NR_TO_INIT 10000
1184
1185static struct ftrace_page *ftrace_pages_start;
1186static struct ftrace_page *ftrace_pages;
1187
2b0cce0e
SRV
1188static __always_inline unsigned long
1189ftrace_hash_key(struct ftrace_hash *hash, unsigned long ip)
1190{
1191 if (hash->size_bits > 0)
1192 return hash_long(ip, hash->size_bits);
1193
1194 return 0;
1195}
1196
2b2c279c
SRV
1197/* Only use this function if ftrace_hash_empty() has already been tested */
1198static __always_inline struct ftrace_func_entry *
1199__ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
b448c4e3
SR
1200{
1201 unsigned long key;
1202 struct ftrace_func_entry *entry;
1203 struct hlist_head *hhd;
b448c4e3 1204
2b0cce0e 1205 key = ftrace_hash_key(hash, ip);
b448c4e3
SR
1206 hhd = &hash->buckets[key];
1207
1bb539ca 1208 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
b448c4e3
SR
1209 if (entry->ip == ip)
1210 return entry;
1211 }
1212 return NULL;
1213}
1214
2b2c279c
SRV
1215/**
1216 * ftrace_lookup_ip - Test to see if an ip exists in an ftrace_hash
1217 * @hash: The hash to look at
1218 * @ip: The instruction pointer to test
1219 *
1220 * Search a given @hash to see if a given instruction pointer (@ip)
1221 * exists in it.
1222 *
1223 * Returns the entry that holds the @ip if found. NULL otherwise.
1224 */
1225struct ftrace_func_entry *
1226ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1227{
1228 if (ftrace_hash_empty(hash))
1229 return NULL;
1230
1231 return __ftrace_lookup_ip(hash, ip);
1232}
1233
33dc9b12
SR
1234static void __add_hash_entry(struct ftrace_hash *hash,
1235 struct ftrace_func_entry *entry)
b448c4e3 1236{
b448c4e3
SR
1237 struct hlist_head *hhd;
1238 unsigned long key;
1239
2b0cce0e 1240 key = ftrace_hash_key(hash, entry->ip);
b448c4e3
SR
1241 hhd = &hash->buckets[key];
1242 hlist_add_head(&entry->hlist, hhd);
1243 hash->count++;
33dc9b12
SR
1244}
1245
1246static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1247{
1248 struct ftrace_func_entry *entry;
1249
1250 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1251 if (!entry)
1252 return -ENOMEM;
1253
1254 entry->ip = ip;
1255 __add_hash_entry(hash, entry);
b448c4e3
SR
1256
1257 return 0;
1258}
1259
1260static void
33dc9b12 1261free_hash_entry(struct ftrace_hash *hash,
b448c4e3
SR
1262 struct ftrace_func_entry *entry)
1263{
1264 hlist_del(&entry->hlist);
1265 kfree(entry);
1266 hash->count--;
1267}
1268
33dc9b12
SR
1269static void
1270remove_hash_entry(struct ftrace_hash *hash,
1271 struct ftrace_func_entry *entry)
1272{
eee8ded1 1273 hlist_del_rcu(&entry->hlist);
33dc9b12
SR
1274 hash->count--;
1275}
1276
b448c4e3
SR
1277static void ftrace_hash_clear(struct ftrace_hash *hash)
1278{
1279 struct hlist_head *hhd;
b67bfe0d 1280 struct hlist_node *tn;
b448c4e3
SR
1281 struct ftrace_func_entry *entry;
1282 int size = 1 << hash->size_bits;
1283 int i;
1284
33dc9b12
SR
1285 if (!hash->count)
1286 return;
1287
b448c4e3
SR
1288 for (i = 0; i < size; i++) {
1289 hhd = &hash->buckets[i];
b67bfe0d 1290 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
33dc9b12 1291 free_hash_entry(hash, entry);
b448c4e3
SR
1292 }
1293 FTRACE_WARN_ON(hash->count);
1294}
1295
673feb9d
SRV
1296static void free_ftrace_mod(struct ftrace_mod_load *ftrace_mod)
1297{
1298 list_del(&ftrace_mod->list);
1299 kfree(ftrace_mod->module);
1300 kfree(ftrace_mod->func);
1301 kfree(ftrace_mod);
1302}
1303
1304static void clear_ftrace_mod_list(struct list_head *head)
1305{
1306 struct ftrace_mod_load *p, *n;
1307
1308 /* stack tracer isn't supported yet */
1309 if (!head)
1310 return;
1311
1312 mutex_lock(&ftrace_lock);
1313 list_for_each_entry_safe(p, n, head, list)
1314 free_ftrace_mod(p);
1315 mutex_unlock(&ftrace_lock);
1316}
1317
33dc9b12
SR
1318static void free_ftrace_hash(struct ftrace_hash *hash)
1319{
1320 if (!hash || hash == EMPTY_HASH)
1321 return;
1322 ftrace_hash_clear(hash);
1323 kfree(hash->buckets);
1324 kfree(hash);
1325}
1326
07fd5515
SR
1327static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1328{
1329 struct ftrace_hash *hash;
1330
1331 hash = container_of(rcu, struct ftrace_hash, rcu);
1332 free_ftrace_hash(hash);
1333}
1334
1335static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1336{
1337 if (!hash || hash == EMPTY_HASH)
1338 return;
1339 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1340}
1341
5500fa51
JO
1342void ftrace_free_filter(struct ftrace_ops *ops)
1343{
f04f24fb 1344 ftrace_ops_init(ops);
33b7f99c
SRRH
1345 free_ftrace_hash(ops->func_hash->filter_hash);
1346 free_ftrace_hash(ops->func_hash->notrace_hash);
5500fa51
JO
1347}
1348
33dc9b12
SR
1349static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1350{
1351 struct ftrace_hash *hash;
1352 int size;
1353
1354 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1355 if (!hash)
1356 return NULL;
1357
1358 size = 1 << size_bits;
47b0edcb 1359 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
33dc9b12
SR
1360
1361 if (!hash->buckets) {
1362 kfree(hash);
1363 return NULL;
1364 }
1365
1366 hash->size_bits = size_bits;
1367
1368 return hash;
1369}
1370
673feb9d
SRV
1371
1372static int ftrace_add_mod(struct trace_array *tr,
1373 const char *func, const char *module,
1374 int enable)
1375{
1376 struct ftrace_mod_load *ftrace_mod;
1377 struct list_head *mod_head = enable ? &tr->mod_trace : &tr->mod_notrace;
1378
1379 ftrace_mod = kzalloc(sizeof(*ftrace_mod), GFP_KERNEL);
1380 if (!ftrace_mod)
1381 return -ENOMEM;
1382
1383 ftrace_mod->func = kstrdup(func, GFP_KERNEL);
1384 ftrace_mod->module = kstrdup(module, GFP_KERNEL);
1385 ftrace_mod->enable = enable;
1386
1387 if (!ftrace_mod->func || !ftrace_mod->module)
1388 goto out_free;
1389
1390 list_add(&ftrace_mod->list, mod_head);
1391
1392 return 0;
1393
1394 out_free:
1395 free_ftrace_mod(ftrace_mod);
1396
1397 return -ENOMEM;
1398}
1399
33dc9b12
SR
1400static struct ftrace_hash *
1401alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1402{
1403 struct ftrace_func_entry *entry;
1404 struct ftrace_hash *new_hash;
33dc9b12
SR
1405 int size;
1406 int ret;
1407 int i;
1408
1409 new_hash = alloc_ftrace_hash(size_bits);
1410 if (!new_hash)
1411 return NULL;
1412
8c08f0d5
SRV
1413 if (hash)
1414 new_hash->flags = hash->flags;
1415
33dc9b12 1416 /* Empty hash? */
06a51d93 1417 if (ftrace_hash_empty(hash))
33dc9b12
SR
1418 return new_hash;
1419
1420 size = 1 << hash->size_bits;
1421 for (i = 0; i < size; i++) {
b67bfe0d 1422 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
33dc9b12
SR
1423 ret = add_hash_entry(new_hash, entry->ip);
1424 if (ret < 0)
1425 goto free_hash;
1426 }
1427 }
1428
1429 FTRACE_WARN_ON(new_hash->count != hash->count);
1430
1431 return new_hash;
1432
1433 free_hash:
1434 free_ftrace_hash(new_hash);
1435 return NULL;
1436}
1437
41fb61c2 1438static void
84261912 1439ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
41fb61c2 1440static void
84261912 1441ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
41fb61c2 1442
f8b8be8a
MH
1443static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1444 struct ftrace_hash *new_hash);
1445
3e278c0d
NK
1446static struct ftrace_hash *
1447__ftrace_hash_move(struct ftrace_hash *src)
33dc9b12
SR
1448{
1449 struct ftrace_func_entry *entry;
b67bfe0d 1450 struct hlist_node *tn;
33dc9b12 1451 struct hlist_head *hhd;
07fd5515 1452 struct ftrace_hash *new_hash;
33dc9b12
SR
1453 int size = src->count;
1454 int bits = 0;
1455 int i;
1456
1457 /*
3e278c0d 1458 * If the new source is empty, just return the empty_hash.
33dc9b12 1459 */
8c08f0d5 1460 if (ftrace_hash_empty(src))
3e278c0d 1461 return EMPTY_HASH;
33dc9b12 1462
33dc9b12
SR
1463 /*
1464 * Make the hash size about 1/2 the # found
1465 */
1466 for (size /= 2; size; size >>= 1)
1467 bits++;
1468
1469 /* Don't allocate too much */
1470 if (bits > FTRACE_HASH_MAX_BITS)
1471 bits = FTRACE_HASH_MAX_BITS;
1472
07fd5515
SR
1473 new_hash = alloc_ftrace_hash(bits);
1474 if (!new_hash)
3e278c0d 1475 return NULL;
33dc9b12 1476
8c08f0d5
SRV
1477 new_hash->flags = src->flags;
1478
33dc9b12
SR
1479 size = 1 << src->size_bits;
1480 for (i = 0; i < size; i++) {
1481 hhd = &src->buckets[i];
b67bfe0d 1482 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
33dc9b12 1483 remove_hash_entry(src, entry);
07fd5515 1484 __add_hash_entry(new_hash, entry);
33dc9b12
SR
1485 }
1486 }
1487
3e278c0d
NK
1488 return new_hash;
1489}
1490
1491static int
1492ftrace_hash_move(struct ftrace_ops *ops, int enable,
1493 struct ftrace_hash **dst, struct ftrace_hash *src)
1494{
1495 struct ftrace_hash *new_hash;
1496 int ret;
1497
1498 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1499 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1500 return -EINVAL;
1501
1502 new_hash = __ftrace_hash_move(src);
1503 if (!new_hash)
1504 return -ENOMEM;
1505
f8b8be8a
MH
1506 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1507 if (enable) {
1508 /* IPMODIFY should be updated only when filter_hash updating */
1509 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1510 if (ret < 0) {
1511 free_ftrace_hash(new_hash);
1512 return ret;
1513 }
1514 }
1515
5c27c775
MH
1516 /*
1517 * Remove the current set, update the hash and add
1518 * them back.
1519 */
84261912 1520 ftrace_hash_rec_disable_modify(ops, enable);
5c27c775 1521
07fd5515 1522 rcu_assign_pointer(*dst, new_hash);
07fd5515 1523
84261912 1524 ftrace_hash_rec_enable_modify(ops, enable);
41fb61c2 1525
5c27c775 1526 return 0;
33dc9b12
SR
1527}
1528
fef5aeee
SRRH
1529static bool hash_contains_ip(unsigned long ip,
1530 struct ftrace_ops_hash *hash)
1531{
1532 /*
1533 * The function record is a match if it exists in the filter
1534 * hash and not in the notrace hash. Note, an emty hash is
1535 * considered a match for the filter hash, but an empty
1536 * notrace hash is considered not in the notrace hash.
1537 */
1538 return (ftrace_hash_empty(hash->filter_hash) ||
2b2c279c 1539 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
fef5aeee 1540 (ftrace_hash_empty(hash->notrace_hash) ||
2b2c279c 1541 !__ftrace_lookup_ip(hash->notrace_hash, ip));
fef5aeee
SRRH
1542}
1543
b848914c
SR
1544/*
1545 * Test the hashes for this ops to see if we want to call
1546 * the ops->func or not.
1547 *
1548 * It's a match if the ip is in the ops->filter_hash or
1549 * the filter_hash does not exist or is empty,
1550 * AND
1551 * the ip is not in the ops->notrace_hash.
cdbe61bf
SR
1552 *
1553 * This needs to be called with preemption disabled as
1554 * the hashes are freed with call_rcu_sched().
b848914c
SR
1555 */
1556static int
195a8afc 1557ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
b848914c 1558{
fef5aeee 1559 struct ftrace_ops_hash hash;
b848914c
SR
1560 int ret;
1561
195a8afc
SRRH
1562#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1563 /*
1564 * There's a small race when adding ops that the ftrace handler
1565 * that wants regs, may be called without them. We can not
1566 * allow that handler to be called if regs is NULL.
1567 */
1568 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1569 return 0;
1570#endif
1571
fef5aeee
SRRH
1572 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1573 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
b848914c 1574
fef5aeee 1575 if (hash_contains_ip(ip, &hash))
b848914c
SR
1576 ret = 1;
1577 else
1578 ret = 0;
b848914c
SR
1579
1580 return ret;
1581}
1582
493762fc
SR
1583/*
1584 * This is a double for. Do not use 'break' to break out of the loop,
1585 * you must use a goto.
1586 */
1587#define do_for_each_ftrace_rec(pg, rec) \
1588 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1589 int _____i; \
1590 for (_____i = 0; _____i < pg->index; _____i++) { \
1591 rec = &pg->records[_____i];
1592
1593#define while_for_each_ftrace_rec() \
1594 } \
1595 }
1596
5855fead
SR
1597
1598static int ftrace_cmp_recs(const void *a, const void *b)
1599{
a650e02a
SR
1600 const struct dyn_ftrace *key = a;
1601 const struct dyn_ftrace *rec = b;
5855fead 1602
a650e02a 1603 if (key->flags < rec->ip)
5855fead 1604 return -1;
a650e02a
SR
1605 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1606 return 1;
5855fead
SR
1607 return 0;
1608}
1609
04cf31a7
ME
1610/**
1611 * ftrace_location_range - return the first address of a traced location
1612 * if it touches the given ip range
1613 * @start: start of range to search.
1614 * @end: end of range to search (inclusive). @end points to the last byte
1615 * to check.
1616 *
1617 * Returns rec->ip if the related ftrace location is a least partly within
1618 * the given address range. That is, the first address of the instruction
1619 * that is either a NOP or call to the function tracer. It checks the ftrace
1620 * internal tables to determine if the address belongs or not.
1621 */
1622unsigned long ftrace_location_range(unsigned long start, unsigned long end)
c88fd863
SR
1623{
1624 struct ftrace_page *pg;
1625 struct dyn_ftrace *rec;
5855fead 1626 struct dyn_ftrace key;
c88fd863 1627
a650e02a
SR
1628 key.ip = start;
1629 key.flags = end; /* overload flags, as it is unsigned long */
5855fead
SR
1630
1631 for (pg = ftrace_pages_start; pg; pg = pg->next) {
a650e02a
SR
1632 if (end < pg->records[0].ip ||
1633 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
9644302e 1634 continue;
5855fead
SR
1635 rec = bsearch(&key, pg->records, pg->index,
1636 sizeof(struct dyn_ftrace),
1637 ftrace_cmp_recs);
1638 if (rec)
f0cf973a 1639 return rec->ip;
5855fead 1640 }
c88fd863
SR
1641
1642 return 0;
1643}
1644
a650e02a
SR
1645/**
1646 * ftrace_location - return true if the ip giving is a traced location
1647 * @ip: the instruction pointer to check
1648 *
f0cf973a 1649 * Returns rec->ip if @ip given is a pointer to a ftrace location.
a650e02a
SR
1650 * That is, the instruction that is either a NOP or call to
1651 * the function tracer. It checks the ftrace internal tables to
1652 * determine if the address belongs or not.
1653 */
f0cf973a 1654unsigned long ftrace_location(unsigned long ip)
a650e02a
SR
1655{
1656 return ftrace_location_range(ip, ip);
1657}
1658
1659/**
1660 * ftrace_text_reserved - return true if range contains an ftrace location
1661 * @start: start of range to search
1662 * @end: end of range to search (inclusive). @end points to the last byte to check.
1663 *
1664 * Returns 1 if @start and @end contains a ftrace location.
1665 * That is, the instruction that is either a NOP or call to
1666 * the function tracer. It checks the ftrace internal tables to
1667 * determine if the address belongs or not.
1668 */
d88471cb 1669int ftrace_text_reserved(const void *start, const void *end)
a650e02a 1670{
f0cf973a
SR
1671 unsigned long ret;
1672
1673 ret = ftrace_location_range((unsigned long)start,
1674 (unsigned long)end);
1675
1676 return (int)!!ret;
a650e02a
SR
1677}
1678
4fbb48cb
SRRH
1679/* Test if ops registered to this rec needs regs */
1680static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1681{
1682 struct ftrace_ops *ops;
1683 bool keep_regs = false;
1684
1685 for (ops = ftrace_ops_list;
1686 ops != &ftrace_list_end; ops = ops->next) {
1687 /* pass rec in as regs to have non-NULL val */
1688 if (ftrace_ops_test(ops, rec->ip, rec)) {
1689 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1690 keep_regs = true;
1691 break;
1692 }
1693 }
1694 }
1695
1696 return keep_regs;
1697}
1698
84b6d3e6 1699static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
ed926f9b
SR
1700 int filter_hash,
1701 bool inc)
1702{
1703 struct ftrace_hash *hash;
1704 struct ftrace_hash *other_hash;
1705 struct ftrace_page *pg;
1706 struct dyn_ftrace *rec;
84b6d3e6 1707 bool update = false;
ed926f9b 1708 int count = 0;
8c08f0d5 1709 int all = false;
ed926f9b
SR
1710
1711 /* Only update if the ops has been registered */
1712 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
84b6d3e6 1713 return false;
ed926f9b
SR
1714
1715 /*
1716 * In the filter_hash case:
1717 * If the count is zero, we update all records.
1718 * Otherwise we just update the items in the hash.
1719 *
1720 * In the notrace_hash case:
1721 * We enable the update in the hash.
1722 * As disabling notrace means enabling the tracing,
1723 * and enabling notrace means disabling, the inc variable
1724 * gets inversed.
1725 */
1726 if (filter_hash) {
33b7f99c
SRRH
1727 hash = ops->func_hash->filter_hash;
1728 other_hash = ops->func_hash->notrace_hash;
06a51d93 1729 if (ftrace_hash_empty(hash))
8c08f0d5 1730 all = true;
ed926f9b
SR
1731 } else {
1732 inc = !inc;
33b7f99c
SRRH
1733 hash = ops->func_hash->notrace_hash;
1734 other_hash = ops->func_hash->filter_hash;
ed926f9b
SR
1735 /*
1736 * If the notrace hash has no items,
1737 * then there's nothing to do.
1738 */
06a51d93 1739 if (ftrace_hash_empty(hash))
84b6d3e6 1740 return false;
ed926f9b
SR
1741 }
1742
1743 do_for_each_ftrace_rec(pg, rec) {
1744 int in_other_hash = 0;
1745 int in_hash = 0;
1746 int match = 0;
1747
b7ffffbb
SRRH
1748 if (rec->flags & FTRACE_FL_DISABLED)
1749 continue;
1750
ed926f9b
SR
1751 if (all) {
1752 /*
1753 * Only the filter_hash affects all records.
1754 * Update if the record is not in the notrace hash.
1755 */
b848914c 1756 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
ed926f9b
SR
1757 match = 1;
1758 } else {
06a51d93
SR
1759 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1760 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
ed926f9b
SR
1761
1762 /*
19eab4a4
SRRH
1763 * If filter_hash is set, we want to match all functions
1764 * that are in the hash but not in the other hash.
ed926f9b 1765 *
19eab4a4
SRRH
1766 * If filter_hash is not set, then we are decrementing.
1767 * That means we match anything that is in the hash
1768 * and also in the other_hash. That is, we need to turn
1769 * off functions in the other hash because they are disabled
1770 * by this hash.
ed926f9b
SR
1771 */
1772 if (filter_hash && in_hash && !in_other_hash)
1773 match = 1;
1774 else if (!filter_hash && in_hash &&
06a51d93 1775 (in_other_hash || ftrace_hash_empty(other_hash)))
ed926f9b
SR
1776 match = 1;
1777 }
1778 if (!match)
1779 continue;
1780
1781 if (inc) {
1782 rec->flags++;
0376bde1 1783 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
84b6d3e6 1784 return false;
79922b80
SRRH
1785
1786 /*
1787 * If there's only a single callback registered to a
1788 * function, and the ops has a trampoline registered
1789 * for it, then we can call it directly.
1790 */
fef5aeee 1791 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
79922b80 1792 rec->flags |= FTRACE_FL_TRAMP;
fef5aeee 1793 else
79922b80
SRRH
1794 /*
1795 * If we are adding another function callback
1796 * to this function, and the previous had a
bce0b6c5
SRRH
1797 * custom trampoline in use, then we need to go
1798 * back to the default trampoline.
79922b80 1799 */
fef5aeee 1800 rec->flags &= ~FTRACE_FL_TRAMP;
79922b80 1801
08f6fba5
SR
1802 /*
1803 * If any ops wants regs saved for this function
1804 * then all ops will get saved regs.
1805 */
1806 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1807 rec->flags |= FTRACE_FL_REGS;
ed926f9b 1808 } else {
0376bde1 1809 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
84b6d3e6 1810 return false;
ed926f9b 1811 rec->flags--;
79922b80 1812
4fbb48cb
SRRH
1813 /*
1814 * If the rec had REGS enabled and the ops that is
1815 * being removed had REGS set, then see if there is
1816 * still any ops for this record that wants regs.
1817 * If not, we can stop recording them.
1818 */
0376bde1 1819 if (ftrace_rec_count(rec) > 0 &&
4fbb48cb
SRRH
1820 rec->flags & FTRACE_FL_REGS &&
1821 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1822 if (!test_rec_ops_needs_regs(rec))
1823 rec->flags &= ~FTRACE_FL_REGS;
1824 }
79922b80 1825
fef5aeee
SRRH
1826 /*
1827 * If the rec had TRAMP enabled, then it needs to
1828 * be cleared. As TRAMP can only be enabled iff
1829 * there is only a single ops attached to it.
1830 * In otherwords, always disable it on decrementing.
1831 * In the future, we may set it if rec count is
1832 * decremented to one, and the ops that is left
1833 * has a trampoline.
1834 */
1835 rec->flags &= ~FTRACE_FL_TRAMP;
1836
79922b80
SRRH
1837 /*
1838 * flags will be cleared in ftrace_check_record()
1839 * if rec count is zero.
1840 */
ed926f9b
SR
1841 }
1842 count++;
84b6d3e6
JO
1843
1844 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1845 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1846
ed926f9b
SR
1847 /* Shortcut, if we handled all records, we are done. */
1848 if (!all && count == hash->count)
84b6d3e6 1849 return update;
ed926f9b 1850 } while_for_each_ftrace_rec();
84b6d3e6
JO
1851
1852 return update;
ed926f9b
SR
1853}
1854
84b6d3e6 1855static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
ed926f9b
SR
1856 int filter_hash)
1857{
84b6d3e6 1858 return __ftrace_hash_rec_update(ops, filter_hash, 0);
ed926f9b
SR
1859}
1860
84b6d3e6 1861static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
ed926f9b
SR
1862 int filter_hash)
1863{
84b6d3e6 1864 return __ftrace_hash_rec_update(ops, filter_hash, 1);
ed926f9b
SR
1865}
1866
84261912
SRRH
1867static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1868 int filter_hash, int inc)
1869{
1870 struct ftrace_ops *op;
1871
1872 __ftrace_hash_rec_update(ops, filter_hash, inc);
1873
1874 if (ops->func_hash != &global_ops.local_hash)
1875 return;
1876
1877 /*
1878 * If the ops shares the global_ops hash, then we need to update
1879 * all ops that are enabled and use this hash.
1880 */
1881 do_for_each_ftrace_op(op, ftrace_ops_list) {
1882 /* Already done */
1883 if (op == ops)
1884 continue;
1885 if (op->func_hash == &global_ops.local_hash)
1886 __ftrace_hash_rec_update(op, filter_hash, inc);
1887 } while_for_each_ftrace_op(op);
1888}
1889
1890static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1891 int filter_hash)
1892{
1893 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1894}
1895
1896static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1897 int filter_hash)
1898{
1899 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1900}
1901
f8b8be8a
MH
1902/*
1903 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1904 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1905 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1906 * Note that old_hash and new_hash has below meanings
1907 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1908 * - If the hash is EMPTY_HASH, it hits nothing
1909 * - Anything else hits the recs which match the hash entries.
1910 */
1911static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1912 struct ftrace_hash *old_hash,
1913 struct ftrace_hash *new_hash)
1914{
1915 struct ftrace_page *pg;
1916 struct dyn_ftrace *rec, *end = NULL;
1917 int in_old, in_new;
1918
1919 /* Only update if the ops has been registered */
1920 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1921 return 0;
1922
1923 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1924 return 0;
1925
1926 /*
1927 * Since the IPMODIFY is a very address sensitive action, we do not
1928 * allow ftrace_ops to set all functions to new hash.
1929 */
1930 if (!new_hash || !old_hash)
1931 return -EINVAL;
1932
1933 /* Update rec->flags */
1934 do_for_each_ftrace_rec(pg, rec) {
546fece4
SRRH
1935
1936 if (rec->flags & FTRACE_FL_DISABLED)
1937 continue;
1938
f8b8be8a
MH
1939 /* We need to update only differences of filter_hash */
1940 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1941 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1942 if (in_old == in_new)
1943 continue;
1944
1945 if (in_new) {
1946 /* New entries must ensure no others are using it */
1947 if (rec->flags & FTRACE_FL_IPMODIFY)
1948 goto rollback;
1949 rec->flags |= FTRACE_FL_IPMODIFY;
1950 } else /* Removed entry */
1951 rec->flags &= ~FTRACE_FL_IPMODIFY;
1952 } while_for_each_ftrace_rec();
1953
1954 return 0;
1955
1956rollback:
1957 end = rec;
1958
1959 /* Roll back what we did above */
1960 do_for_each_ftrace_rec(pg, rec) {
546fece4
SRRH
1961
1962 if (rec->flags & FTRACE_FL_DISABLED)
1963 continue;
1964
f8b8be8a
MH
1965 if (rec == end)
1966 goto err_out;
1967
1968 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1969 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1970 if (in_old == in_new)
1971 continue;
1972
1973 if (in_new)
1974 rec->flags &= ~FTRACE_FL_IPMODIFY;
1975 else
1976 rec->flags |= FTRACE_FL_IPMODIFY;
1977 } while_for_each_ftrace_rec();
1978
1979err_out:
1980 return -EBUSY;
1981}
1982
1983static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1984{
1985 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1986
1987 if (ftrace_hash_empty(hash))
1988 hash = NULL;
1989
1990 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1991}
1992
1993/* Disabling always succeeds */
1994static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1995{
1996 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1997
1998 if (ftrace_hash_empty(hash))
1999 hash = NULL;
2000
2001 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
2002}
2003
2004static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
2005 struct ftrace_hash *new_hash)
2006{
2007 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
2008
2009 if (ftrace_hash_empty(old_hash))
2010 old_hash = NULL;
2011
2012 if (ftrace_hash_empty(new_hash))
2013 new_hash = NULL;
2014
2015 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
2016}
2017
b05086c7 2018static void print_ip_ins(const char *fmt, const unsigned char *p)
b17e8a37
SR
2019{
2020 int i;
2021
2022 printk(KERN_CONT "%s", fmt);
2023
2024 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
2025 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
2026}
2027
4fd3279b
SRRH
2028static struct ftrace_ops *
2029ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
39daa7b9
SRRH
2030static struct ftrace_ops *
2031ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
4fd3279b 2032
02a392a0 2033enum ftrace_bug_type ftrace_bug_type;
b05086c7 2034const void *ftrace_expected;
02a392a0
SRRH
2035
2036static void print_bug_type(void)
2037{
2038 switch (ftrace_bug_type) {
2039 case FTRACE_BUG_UNKNOWN:
2040 break;
2041 case FTRACE_BUG_INIT:
2042 pr_info("Initializing ftrace call sites\n");
2043 break;
2044 case FTRACE_BUG_NOP:
2045 pr_info("Setting ftrace call site to NOP\n");
2046 break;
2047 case FTRACE_BUG_CALL:
2048 pr_info("Setting ftrace call site to call ftrace function\n");
2049 break;
2050 case FTRACE_BUG_UPDATE:
2051 pr_info("Updating ftrace call site to call a different ftrace function\n");
2052 break;
2053 }
2054}
2055
c88fd863
SR
2056/**
2057 * ftrace_bug - report and shutdown function tracer
2058 * @failed: The failed type (EFAULT, EINVAL, EPERM)
4fd3279b 2059 * @rec: The record that failed
c88fd863
SR
2060 *
2061 * The arch code that enables or disables the function tracing
2062 * can call ftrace_bug() when it has detected a problem in
2063 * modifying the code. @failed should be one of either:
2064 * EFAULT - if the problem happens on reading the @ip address
2065 * EINVAL - if what is read at @ip is not what was expected
2066 * EPERM - if the problem happens on writting to the @ip address
2067 */
4fd3279b 2068void ftrace_bug(int failed, struct dyn_ftrace *rec)
b17e8a37 2069{
4fd3279b
SRRH
2070 unsigned long ip = rec ? rec->ip : 0;
2071
b17e8a37
SR
2072 switch (failed) {
2073 case -EFAULT:
2074 FTRACE_WARN_ON_ONCE(1);
2075 pr_info("ftrace faulted on modifying ");
2076 print_ip_sym(ip);
2077 break;
2078 case -EINVAL:
2079 FTRACE_WARN_ON_ONCE(1);
2080 pr_info("ftrace failed to modify ");
2081 print_ip_sym(ip);
b05086c7 2082 print_ip_ins(" actual: ", (unsigned char *)ip);
4fd3279b 2083 pr_cont("\n");
b05086c7
SRRH
2084 if (ftrace_expected) {
2085 print_ip_ins(" expected: ", ftrace_expected);
2086 pr_cont("\n");
2087 }
b17e8a37
SR
2088 break;
2089 case -EPERM:
2090 FTRACE_WARN_ON_ONCE(1);
2091 pr_info("ftrace faulted on writing ");
2092 print_ip_sym(ip);
2093 break;
2094 default:
2095 FTRACE_WARN_ON_ONCE(1);
2096 pr_info("ftrace faulted on unknown error ");
2097 print_ip_sym(ip);
2098 }
02a392a0 2099 print_bug_type();
4fd3279b
SRRH
2100 if (rec) {
2101 struct ftrace_ops *ops = NULL;
2102
2103 pr_info("ftrace record flags: %lx\n", rec->flags);
2104 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2105 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2106 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2107 ops = ftrace_find_tramp_ops_any(rec);
39daa7b9
SRRH
2108 if (ops) {
2109 do {
2110 pr_cont("\ttramp: %pS (%pS)",
2111 (void *)ops->trampoline,
2112 (void *)ops->func);
2113 ops = ftrace_find_tramp_ops_next(rec, ops);
2114 } while (ops);
2115 } else
4fd3279b
SRRH
2116 pr_cont("\ttramp: ERROR!");
2117
2118 }
2119 ip = ftrace_get_addr_curr(rec);
39daa7b9 2120 pr_cont("\n expected tramp: %lx\n", ip);
4fd3279b 2121 }
b17e8a37
SR
2122}
2123
c88fd863 2124static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
5072c59f 2125{
64fbcd16 2126 unsigned long flag = 0UL;
e7d3737e 2127
02a392a0
SRRH
2128 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2129
b7ffffbb
SRRH
2130 if (rec->flags & FTRACE_FL_DISABLED)
2131 return FTRACE_UPDATE_IGNORE;
2132
982c350b 2133 /*
30fb6aa7 2134 * If we are updating calls:
982c350b 2135 *
ed926f9b
SR
2136 * If the record has a ref count, then we need to enable it
2137 * because someone is using it.
982c350b 2138 *
ed926f9b
SR
2139 * Otherwise we make sure its disabled.
2140 *
30fb6aa7 2141 * If we are disabling calls, then disable all records that
ed926f9b 2142 * are enabled.
982c350b 2143 */
0376bde1 2144 if (enable && ftrace_rec_count(rec))
ed926f9b 2145 flag = FTRACE_FL_ENABLED;
982c350b 2146
08f6fba5 2147 /*
79922b80
SRRH
2148 * If enabling and the REGS flag does not match the REGS_EN, or
2149 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2150 * this record. Set flags to fail the compare against ENABLED.
08f6fba5 2151 */
79922b80
SRRH
2152 if (flag) {
2153 if (!(rec->flags & FTRACE_FL_REGS) !=
2154 !(rec->flags & FTRACE_FL_REGS_EN))
2155 flag |= FTRACE_FL_REGS;
2156
2157 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2158 !(rec->flags & FTRACE_FL_TRAMP_EN))
2159 flag |= FTRACE_FL_TRAMP;
2160 }
08f6fba5 2161
64fbcd16
XG
2162 /* If the state of this record hasn't changed, then do nothing */
2163 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
c88fd863 2164 return FTRACE_UPDATE_IGNORE;
982c350b 2165
64fbcd16 2166 if (flag) {
08f6fba5
SR
2167 /* Save off if rec is being enabled (for return value) */
2168 flag ^= rec->flags & FTRACE_FL_ENABLED;
2169
2170 if (update) {
c88fd863 2171 rec->flags |= FTRACE_FL_ENABLED;
08f6fba5
SR
2172 if (flag & FTRACE_FL_REGS) {
2173 if (rec->flags & FTRACE_FL_REGS)
2174 rec->flags |= FTRACE_FL_REGS_EN;
2175 else
2176 rec->flags &= ~FTRACE_FL_REGS_EN;
2177 }
79922b80
SRRH
2178 if (flag & FTRACE_FL_TRAMP) {
2179 if (rec->flags & FTRACE_FL_TRAMP)
2180 rec->flags |= FTRACE_FL_TRAMP_EN;
2181 else
2182 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2183 }
08f6fba5
SR
2184 }
2185
2186 /*
2187 * If this record is being updated from a nop, then
2188 * return UPDATE_MAKE_CALL.
08f6fba5
SR
2189 * Otherwise,
2190 * return UPDATE_MODIFY_CALL to tell the caller to convert
f1b2f2bd 2191 * from the save regs, to a non-save regs function or
79922b80 2192 * vice versa, or from a trampoline call.
08f6fba5 2193 */
02a392a0
SRRH
2194 if (flag & FTRACE_FL_ENABLED) {
2195 ftrace_bug_type = FTRACE_BUG_CALL;
08f6fba5 2196 return FTRACE_UPDATE_MAKE_CALL;
02a392a0 2197 }
f1b2f2bd 2198
02a392a0 2199 ftrace_bug_type = FTRACE_BUG_UPDATE;
f1b2f2bd 2200 return FTRACE_UPDATE_MODIFY_CALL;
c88fd863
SR
2201 }
2202
08f6fba5
SR
2203 if (update) {
2204 /* If there's no more users, clear all flags */
0376bde1 2205 if (!ftrace_rec_count(rec))
08f6fba5
SR
2206 rec->flags = 0;
2207 else
b24d443b
SRRH
2208 /*
2209 * Just disable the record, but keep the ops TRAMP
2210 * and REGS states. The _EN flags must be disabled though.
2211 */
2212 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2213 FTRACE_FL_REGS_EN);
08f6fba5 2214 }
c88fd863 2215
02a392a0 2216 ftrace_bug_type = FTRACE_BUG_NOP;
c88fd863
SR
2217 return FTRACE_UPDATE_MAKE_NOP;
2218}
2219
2220/**
2221 * ftrace_update_record, set a record that now is tracing or not
2222 * @rec: the record to update
2223 * @enable: set to 1 if the record is tracing, zero to force disable
2224 *
2225 * The records that represent all functions that can be traced need
2226 * to be updated when tracing has been enabled.
2227 */
2228int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2229{
2230 return ftrace_check_record(rec, enable, 1);
2231}
2232
2233/**
2234 * ftrace_test_record, check if the record has been enabled or not
2235 * @rec: the record to test
2236 * @enable: set to 1 to check if enabled, 0 if it is disabled
2237 *
2238 * The arch code may need to test if a record is already set to
2239 * tracing to determine how to modify the function code that it
2240 * represents.
2241 */
2242int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2243{
2244 return ftrace_check_record(rec, enable, 0);
2245}
2246
5fecaa04
SRRH
2247static struct ftrace_ops *
2248ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2249{
2250 struct ftrace_ops *op;
fef5aeee 2251 unsigned long ip = rec->ip;
5fecaa04
SRRH
2252
2253 do_for_each_ftrace_op(op, ftrace_ops_list) {
2254
2255 if (!op->trampoline)
2256 continue;
2257
fef5aeee 2258 if (hash_contains_ip(ip, op->func_hash))
5fecaa04
SRRH
2259 return op;
2260 } while_for_each_ftrace_op(op);
2261
2262 return NULL;
2263}
2264
39daa7b9
SRRH
2265static struct ftrace_ops *
2266ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2267 struct ftrace_ops *op)
2268{
2269 unsigned long ip = rec->ip;
2270
2271 while_for_each_ftrace_op(op) {
2272
2273 if (!op->trampoline)
2274 continue;
2275
2276 if (hash_contains_ip(ip, op->func_hash))
2277 return op;
2278 }
2279
2280 return NULL;
2281}
2282
79922b80
SRRH
2283static struct ftrace_ops *
2284ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2285{
2286 struct ftrace_ops *op;
fef5aeee 2287 unsigned long ip = rec->ip;
79922b80 2288
fef5aeee
SRRH
2289 /*
2290 * Need to check removed ops first.
2291 * If they are being removed, and this rec has a tramp,
2292 * and this rec is in the ops list, then it would be the
2293 * one with the tramp.
2294 */
2295 if (removed_ops) {
2296 if (hash_contains_ip(ip, &removed_ops->old_hash))
79922b80
SRRH
2297 return removed_ops;
2298 }
2299
fef5aeee
SRRH
2300 /*
2301 * Need to find the current trampoline for a rec.
2302 * Now, a trampoline is only attached to a rec if there
2303 * was a single 'ops' attached to it. But this can be called
2304 * when we are adding another op to the rec or removing the
2305 * current one. Thus, if the op is being added, we can
2306 * ignore it because it hasn't attached itself to the rec
4fc40904
SRRH
2307 * yet.
2308 *
2309 * If an ops is being modified (hooking to different functions)
2310 * then we don't care about the new functions that are being
2311 * added, just the old ones (that are probably being removed).
2312 *
2313 * If we are adding an ops to a function that already is using
2314 * a trampoline, it needs to be removed (trampolines are only
2315 * for single ops connected), then an ops that is not being
2316 * modified also needs to be checked.
fef5aeee 2317 */
79922b80 2318 do_for_each_ftrace_op(op, ftrace_ops_list) {
fef5aeee
SRRH
2319
2320 if (!op->trampoline)
2321 continue;
2322
2323 /*
2324 * If the ops is being added, it hasn't gotten to
2325 * the point to be removed from this tree yet.
2326 */
2327 if (op->flags & FTRACE_OPS_FL_ADDING)
79922b80
SRRH
2328 continue;
2329
4fc40904 2330
fef5aeee 2331 /*
4fc40904
SRRH
2332 * If the ops is being modified and is in the old
2333 * hash, then it is probably being removed from this
2334 * function.
fef5aeee 2335 */
fef5aeee
SRRH
2336 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2337 hash_contains_ip(ip, &op->old_hash))
79922b80 2338 return op;
4fc40904
SRRH
2339 /*
2340 * If the ops is not being added or modified, and it's
2341 * in its normal filter hash, then this must be the one
2342 * we want!
2343 */
2344 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2345 hash_contains_ip(ip, op->func_hash))
2346 return op;
79922b80
SRRH
2347
2348 } while_for_each_ftrace_op(op);
2349
2350 return NULL;
2351}
2352
2353static struct ftrace_ops *
2354ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2355{
2356 struct ftrace_ops *op;
fef5aeee 2357 unsigned long ip = rec->ip;
79922b80
SRRH
2358
2359 do_for_each_ftrace_op(op, ftrace_ops_list) {
2360 /* pass rec in as regs to have non-NULL val */
fef5aeee 2361 if (hash_contains_ip(ip, op->func_hash))
79922b80
SRRH
2362 return op;
2363 } while_for_each_ftrace_op(op);
2364
2365 return NULL;
2366}
2367
7413af1f
SRRH
2368/**
2369 * ftrace_get_addr_new - Get the call address to set to
2370 * @rec: The ftrace record descriptor
2371 *
2372 * If the record has the FTRACE_FL_REGS set, that means that it
2373 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2374 * is not not set, then it wants to convert to the normal callback.
2375 *
2376 * Returns the address of the trampoline to set to
2377 */
2378unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2379{
79922b80
SRRH
2380 struct ftrace_ops *ops;
2381
2382 /* Trampolines take precedence over regs */
2383 if (rec->flags & FTRACE_FL_TRAMP) {
2384 ops = ftrace_find_tramp_ops_new(rec);
2385 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
bce0b6c5
SRRH
2386 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2387 (void *)rec->ip, (void *)rec->ip, rec->flags);
79922b80
SRRH
2388 /* Ftrace is shutting down, return anything */
2389 return (unsigned long)FTRACE_ADDR;
2390 }
2391 return ops->trampoline;
2392 }
2393
7413af1f
SRRH
2394 if (rec->flags & FTRACE_FL_REGS)
2395 return (unsigned long)FTRACE_REGS_ADDR;
2396 else
2397 return (unsigned long)FTRACE_ADDR;
2398}
2399
2400/**
2401 * ftrace_get_addr_curr - Get the call address that is already there
2402 * @rec: The ftrace record descriptor
2403 *
2404 * The FTRACE_FL_REGS_EN is set when the record already points to
2405 * a function that saves all the regs. Basically the '_EN' version
2406 * represents the current state of the function.
2407 *
2408 * Returns the address of the trampoline that is currently being called
2409 */
2410unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2411{
79922b80
SRRH
2412 struct ftrace_ops *ops;
2413
2414 /* Trampolines take precedence over regs */
2415 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2416 ops = ftrace_find_tramp_ops_curr(rec);
2417 if (FTRACE_WARN_ON(!ops)) {
a395d6a7
JP
2418 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2419 (void *)rec->ip, (void *)rec->ip);
79922b80
SRRH
2420 /* Ftrace is shutting down, return anything */
2421 return (unsigned long)FTRACE_ADDR;
2422 }
2423 return ops->trampoline;
2424 }
2425
7413af1f
SRRH
2426 if (rec->flags & FTRACE_FL_REGS_EN)
2427 return (unsigned long)FTRACE_REGS_ADDR;
2428 else
2429 return (unsigned long)FTRACE_ADDR;
2430}
2431
c88fd863
SR
2432static int
2433__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2434{
08f6fba5 2435 unsigned long ftrace_old_addr;
c88fd863
SR
2436 unsigned long ftrace_addr;
2437 int ret;
2438
7c0868e0 2439 ftrace_addr = ftrace_get_addr_new(rec);
c88fd863 2440
7c0868e0
SRRH
2441 /* This needs to be done before we call ftrace_update_record */
2442 ftrace_old_addr = ftrace_get_addr_curr(rec);
2443
2444 ret = ftrace_update_record(rec, enable);
08f6fba5 2445
02a392a0
SRRH
2446 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2447
c88fd863
SR
2448 switch (ret) {
2449 case FTRACE_UPDATE_IGNORE:
2450 return 0;
2451
2452 case FTRACE_UPDATE_MAKE_CALL:
02a392a0 2453 ftrace_bug_type = FTRACE_BUG_CALL;
64fbcd16 2454 return ftrace_make_call(rec, ftrace_addr);
c88fd863
SR
2455
2456 case FTRACE_UPDATE_MAKE_NOP:
02a392a0 2457 ftrace_bug_type = FTRACE_BUG_NOP;
39b5552c 2458 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
08f6fba5 2459
08f6fba5 2460 case FTRACE_UPDATE_MODIFY_CALL:
02a392a0 2461 ftrace_bug_type = FTRACE_BUG_UPDATE;
08f6fba5 2462 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
5072c59f
SR
2463 }
2464
c88fd863 2465 return -1; /* unknow ftrace bug */
5072c59f
SR
2466}
2467
e4f5d544 2468void __weak ftrace_replace_code(int enable)
3c1720f0 2469{
3c1720f0
SR
2470 struct dyn_ftrace *rec;
2471 struct ftrace_page *pg;
6a24a244 2472 int failed;
3c1720f0 2473
45a4a237
SR
2474 if (unlikely(ftrace_disabled))
2475 return;
2476
265c831c 2477 do_for_each_ftrace_rec(pg, rec) {
546fece4
SRRH
2478
2479 if (rec->flags & FTRACE_FL_DISABLED)
2480 continue;
2481
e4f5d544 2482 failed = __ftrace_replace_code(rec, enable);
fa9d13cf 2483 if (failed) {
4fd3279b 2484 ftrace_bug(failed, rec);
3279ba37
SR
2485 /* Stop processing */
2486 return;
3c1720f0 2487 }
265c831c 2488 } while_for_each_ftrace_rec();
3c1720f0
SR
2489}
2490
c88fd863
SR
2491struct ftrace_rec_iter {
2492 struct ftrace_page *pg;
2493 int index;
2494};
2495
2496/**
2497 * ftrace_rec_iter_start, start up iterating over traced functions
2498 *
2499 * Returns an iterator handle that is used to iterate over all
2500 * the records that represent address locations where functions
2501 * are traced.
2502 *
2503 * May return NULL if no records are available.
2504 */
2505struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2506{
2507 /*
2508 * We only use a single iterator.
2509 * Protected by the ftrace_lock mutex.
2510 */
2511 static struct ftrace_rec_iter ftrace_rec_iter;
2512 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2513
2514 iter->pg = ftrace_pages_start;
2515 iter->index = 0;
2516
2517 /* Could have empty pages */
2518 while (iter->pg && !iter->pg->index)
2519 iter->pg = iter->pg->next;
2520
2521 if (!iter->pg)
2522 return NULL;
2523
2524 return iter;
2525}
2526
2527/**
2528 * ftrace_rec_iter_next, get the next record to process.
2529 * @iter: The handle to the iterator.
2530 *
2531 * Returns the next iterator after the given iterator @iter.
2532 */
2533struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2534{
2535 iter->index++;
2536
2537 if (iter->index >= iter->pg->index) {
2538 iter->pg = iter->pg->next;
2539 iter->index = 0;
2540
2541 /* Could have empty pages */
2542 while (iter->pg && !iter->pg->index)
2543 iter->pg = iter->pg->next;
2544 }
2545
2546 if (!iter->pg)
2547 return NULL;
2548
2549 return iter;
2550}
2551
2552/**
2553 * ftrace_rec_iter_record, get the record at the iterator location
2554 * @iter: The current iterator location
2555 *
2556 * Returns the record that the current @iter is at.
2557 */
2558struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2559{
2560 return &iter->pg->records[iter->index];
2561}
2562
492a7ea5 2563static int
31e88909 2564ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
3c1720f0 2565{
593eb8a2 2566 int ret;
3c1720f0 2567
45a4a237
SR
2568 if (unlikely(ftrace_disabled))
2569 return 0;
2570
25aac9dc 2571 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
593eb8a2 2572 if (ret) {
02a392a0 2573 ftrace_bug_type = FTRACE_BUG_INIT;
4fd3279b 2574 ftrace_bug(ret, rec);
492a7ea5 2575 return 0;
37ad5084 2576 }
492a7ea5 2577 return 1;
3c1720f0
SR
2578}
2579
000ab691
SR
2580/*
2581 * archs can override this function if they must do something
2582 * before the modifying code is performed.
2583 */
2584int __weak ftrace_arch_code_modify_prepare(void)
2585{
2586 return 0;
2587}
2588
2589/*
2590 * archs can override this function if they must do something
2591 * after the modifying code is performed.
2592 */
2593int __weak ftrace_arch_code_modify_post_process(void)
2594{
2595 return 0;
2596}
2597
8ed3e2cf 2598void ftrace_modify_all_code(int command)
3d083395 2599{
59338f75 2600 int update = command & FTRACE_UPDATE_TRACE_FUNC;
cd21067f 2601 int err = 0;
59338f75
SRRH
2602
2603 /*
2604 * If the ftrace_caller calls a ftrace_ops func directly,
2605 * we need to make sure that it only traces functions it
2606 * expects to trace. When doing the switch of functions,
2607 * we need to update to the ftrace_ops_list_func first
2608 * before the transition between old and new calls are set,
2609 * as the ftrace_ops_list_func will check the ops hashes
2610 * to make sure the ops are having the right functions
2611 * traced.
2612 */
cd21067f
PM
2613 if (update) {
2614 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2615 if (FTRACE_WARN_ON(err))
2616 return;
2617 }
59338f75 2618
8ed3e2cf 2619 if (command & FTRACE_UPDATE_CALLS)
d61f82d0 2620 ftrace_replace_code(1);
8ed3e2cf 2621 else if (command & FTRACE_DISABLE_CALLS)
d61f82d0
SR
2622 ftrace_replace_code(0);
2623
405e1d83
SRRH
2624 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2625 function_trace_op = set_function_trace_op;
2626 smp_wmb();
2627 /* If irqs are disabled, we are in stop machine */
2628 if (!irqs_disabled())
2629 smp_call_function(ftrace_sync_ipi, NULL, 1);
cd21067f
PM
2630 err = ftrace_update_ftrace_func(ftrace_trace_function);
2631 if (FTRACE_WARN_ON(err))
2632 return;
405e1d83 2633 }
d61f82d0 2634
8ed3e2cf 2635 if (command & FTRACE_START_FUNC_RET)
cd21067f 2636 err = ftrace_enable_ftrace_graph_caller();
8ed3e2cf 2637 else if (command & FTRACE_STOP_FUNC_RET)
cd21067f
PM
2638 err = ftrace_disable_ftrace_graph_caller();
2639 FTRACE_WARN_ON(err);
8ed3e2cf
SR
2640}
2641
2642static int __ftrace_modify_code(void *data)
2643{
2644 int *command = data;
2645
2646 ftrace_modify_all_code(*command);
5a45cfe1 2647
d61f82d0 2648 return 0;
3d083395
SR
2649}
2650
c88fd863
SR
2651/**
2652 * ftrace_run_stop_machine, go back to the stop machine method
2653 * @command: The command to tell ftrace what to do
2654 *
2655 * If an arch needs to fall back to the stop machine method, the
2656 * it can call this function.
2657 */
2658void ftrace_run_stop_machine(int command)
2659{
2660 stop_machine(__ftrace_modify_code, &command, NULL);
2661}
2662
2663/**
2664 * arch_ftrace_update_code, modify the code to trace or not trace
2665 * @command: The command that needs to be done
2666 *
2667 * Archs can override this function if it does not need to
2668 * run stop_machine() to modify code.
2669 */
2670void __weak arch_ftrace_update_code(int command)
2671{
2672 ftrace_run_stop_machine(command);
2673}
2674
e309b41d 2675static void ftrace_run_update_code(int command)
3d083395 2676{
000ab691
SR
2677 int ret;
2678
2679 ret = ftrace_arch_code_modify_prepare();
2680 FTRACE_WARN_ON(ret);
2681 if (ret)
2682 return;
2683
c88fd863
SR
2684 /*
2685 * By default we use stop_machine() to modify the code.
2686 * But archs can do what ever they want as long as it
2687 * is safe. The stop_machine() is the safest, but also
2688 * produces the most overhead.
2689 */
2690 arch_ftrace_update_code(command);
2691
000ab691
SR
2692 ret = ftrace_arch_code_modify_post_process();
2693 FTRACE_WARN_ON(ret);
3d083395
SR
2694}
2695
8252ecf3 2696static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
7485058e 2697 struct ftrace_ops_hash *old_hash)
e1effa01
SRRH
2698{
2699 ops->flags |= FTRACE_OPS_FL_MODIFYING;
7485058e
SRRH
2700 ops->old_hash.filter_hash = old_hash->filter_hash;
2701 ops->old_hash.notrace_hash = old_hash->notrace_hash;
e1effa01 2702 ftrace_run_update_code(command);
8252ecf3 2703 ops->old_hash.filter_hash = NULL;
7485058e 2704 ops->old_hash.notrace_hash = NULL;
e1effa01
SRRH
2705 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2706}
2707
d61f82d0 2708static ftrace_func_t saved_ftrace_func;
60a7ecf4 2709static int ftrace_start_up;
df4fc315 2710
12cce594
SRRH
2711void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2712{
2713}
2714
ba27f2bc 2715static void per_cpu_ops_free(struct ftrace_ops *ops)
db0fbadc
JS
2716{
2717 free_percpu(ops->disabled);
2718}
2719
df4fc315
SR
2720static void ftrace_startup_enable(int command)
2721{
2722 if (saved_ftrace_func != ftrace_trace_function) {
2723 saved_ftrace_func = ftrace_trace_function;
2724 command |= FTRACE_UPDATE_TRACE_FUNC;
2725 }
2726
2727 if (!command || !ftrace_enabled)
2728 return;
2729
2730 ftrace_run_update_code(command);
2731}
d61f82d0 2732
e1effa01
SRRH
2733static void ftrace_startup_all(int command)
2734{
2735 update_all_ops = true;
2736 ftrace_startup_enable(command);
2737 update_all_ops = false;
2738}
2739
a1cd6173 2740static int ftrace_startup(struct ftrace_ops *ops, int command)
3d083395 2741{
8a56d776 2742 int ret;
b848914c 2743
4eebcc81 2744 if (unlikely(ftrace_disabled))
a1cd6173 2745 return -ENODEV;
4eebcc81 2746
8a56d776
SRRH
2747 ret = __register_ftrace_function(ops);
2748 if (ret)
2749 return ret;
2750
60a7ecf4 2751 ftrace_start_up++;
d61f82d0 2752
e1effa01
SRRH
2753 /*
2754 * Note that ftrace probes uses this to start up
2755 * and modify functions it will probe. But we still
2756 * set the ADDING flag for modification, as probes
2757 * do not have trampolines. If they add them in the
2758 * future, then the probes will need to distinguish
2759 * between adding and updating probes.
2760 */
2761 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
66209a5b 2762
f8b8be8a
MH
2763 ret = ftrace_hash_ipmodify_enable(ops);
2764 if (ret < 0) {
2765 /* Rollback registration process */
2766 __unregister_ftrace_function(ops);
2767 ftrace_start_up--;
2768 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2769 return ret;
2770 }
2771
7f50d06b
JO
2772 if (ftrace_hash_rec_enable(ops, 1))
2773 command |= FTRACE_UPDATE_CALLS;
ed926f9b 2774
df4fc315 2775 ftrace_startup_enable(command);
a1cd6173 2776
e1effa01
SRRH
2777 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2778
a1cd6173 2779 return 0;
3d083395
SR
2780}
2781
8a56d776 2782static int ftrace_shutdown(struct ftrace_ops *ops, int command)
3d083395 2783{
8a56d776 2784 int ret;
b848914c 2785
4eebcc81 2786 if (unlikely(ftrace_disabled))
8a56d776
SRRH
2787 return -ENODEV;
2788
2789 ret = __unregister_ftrace_function(ops);
2790 if (ret)
2791 return ret;
4eebcc81 2792
60a7ecf4 2793 ftrace_start_up--;
9ea1a153
FW
2794 /*
2795 * Just warn in case of unbalance, no need to kill ftrace, it's not
2796 * critical but the ftrace_call callers may be never nopped again after
2797 * further ftrace uses.
2798 */
2799 WARN_ON_ONCE(ftrace_start_up < 0);
2800
f8b8be8a
MH
2801 /* Disabling ipmodify never fails */
2802 ftrace_hash_ipmodify_disable(ops);
ed926f9b 2803
7f50d06b
JO
2804 if (ftrace_hash_rec_disable(ops, 1))
2805 command |= FTRACE_UPDATE_CALLS;
b848914c 2806
7f50d06b 2807 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
3d083395 2808
d61f82d0
SR
2809 if (saved_ftrace_func != ftrace_trace_function) {
2810 saved_ftrace_func = ftrace_trace_function;
2811 command |= FTRACE_UPDATE_TRACE_FUNC;
2812 }
3d083395 2813
a4c35ed2
SRRH
2814 if (!command || !ftrace_enabled) {
2815 /*
ba27f2bc 2816 * If these are per_cpu ops, they still need their
a4c35ed2
SRRH
2817 * per_cpu field freed. Since, function tracing is
2818 * not currently active, we can just free them
2819 * without synchronizing all CPUs.
2820 */
ba27f2bc
SRRH
2821 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2822 per_cpu_ops_free(ops);
8a56d776 2823 return 0;
a4c35ed2 2824 }
d61f82d0 2825
79922b80
SRRH
2826 /*
2827 * If the ops uses a trampoline, then it needs to be
2828 * tested first on update.
2829 */
e1effa01 2830 ops->flags |= FTRACE_OPS_FL_REMOVING;
79922b80
SRRH
2831 removed_ops = ops;
2832
fef5aeee
SRRH
2833 /* The trampoline logic checks the old hashes */
2834 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2835 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2836
d61f82d0 2837 ftrace_run_update_code(command);
a4c35ed2 2838
84bde62c
SRRH
2839 /*
2840 * If there's no more ops registered with ftrace, run a
2841 * sanity check to make sure all rec flags are cleared.
2842 */
2843 if (ftrace_ops_list == &ftrace_list_end) {
2844 struct ftrace_page *pg;
2845 struct dyn_ftrace *rec;
2846
2847 do_for_each_ftrace_rec(pg, rec) {
977c1f9c 2848 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
84bde62c
SRRH
2849 pr_warn(" %pS flags:%lx\n",
2850 (void *)rec->ip, rec->flags);
2851 } while_for_each_ftrace_rec();
2852 }
2853
fef5aeee
SRRH
2854 ops->old_hash.filter_hash = NULL;
2855 ops->old_hash.notrace_hash = NULL;
2856
2857 removed_ops = NULL;
e1effa01 2858 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
79922b80 2859
a4c35ed2
SRRH
2860 /*
2861 * Dynamic ops may be freed, we must make sure that all
2862 * callers are done before leaving this function.
ba27f2bc 2863 * The same goes for freeing the per_cpu data of the per_cpu
a4c35ed2 2864 * ops.
a4c35ed2 2865 */
ba27f2bc 2866 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
0598e4f0
SRV
2867 /*
2868 * We need to do a hard force of sched synchronization.
2869 * This is because we use preempt_disable() to do RCU, but
2870 * the function tracers can be called where RCU is not watching
2871 * (like before user_exit()). We can not rely on the RCU
2872 * infrastructure to do the synchronization, thus we must do it
2873 * ourselves.
2874 */
a4c35ed2
SRRH
2875 schedule_on_each_cpu(ftrace_sync);
2876
0598e4f0
SRV
2877 /*
2878 * When the kernel is preeptive, tasks can be preempted
2879 * while on a ftrace trampoline. Just scheduling a task on
2880 * a CPU is not good enough to flush them. Calling
2881 * synchornize_rcu_tasks() will wait for those tasks to
2882 * execute and either schedule voluntarily or enter user space.
2883 */
2884 if (IS_ENABLED(CONFIG_PREEMPT))
2885 synchronize_rcu_tasks();
2886
12cce594
SRRH
2887 arch_ftrace_trampoline_free(ops);
2888
ba27f2bc
SRRH
2889 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2890 per_cpu_ops_free(ops);
a4c35ed2
SRRH
2891 }
2892
8a56d776 2893 return 0;
3d083395
SR
2894}
2895
e309b41d 2896static void ftrace_startup_sysctl(void)
b0fc494f 2897{
1619dc3f
PA
2898 int command;
2899
4eebcc81
SR
2900 if (unlikely(ftrace_disabled))
2901 return;
2902
d61f82d0
SR
2903 /* Force update next time */
2904 saved_ftrace_func = NULL;
60a7ecf4 2905 /* ftrace_start_up is true if we want ftrace running */
1619dc3f
PA
2906 if (ftrace_start_up) {
2907 command = FTRACE_UPDATE_CALLS;
2908 if (ftrace_graph_active)
2909 command |= FTRACE_START_FUNC_RET;
524a3868 2910 ftrace_startup_enable(command);
1619dc3f 2911 }
b0fc494f
SR
2912}
2913
e309b41d 2914static void ftrace_shutdown_sysctl(void)
b0fc494f 2915{
1619dc3f
PA
2916 int command;
2917
4eebcc81
SR
2918 if (unlikely(ftrace_disabled))
2919 return;
2920
60a7ecf4 2921 /* ftrace_start_up is true if ftrace is running */
1619dc3f
PA
2922 if (ftrace_start_up) {
2923 command = FTRACE_DISABLE_CALLS;
2924 if (ftrace_graph_active)
2925 command |= FTRACE_STOP_FUNC_RET;
2926 ftrace_run_update_code(command);
2927 }
b0fc494f
SR
2928}
2929
a5a1d1c2 2930static u64 ftrace_update_time;
3d083395
SR
2931unsigned long ftrace_update_tot_cnt;
2932
8c4f3c3f 2933static inline int ops_traces_mod(struct ftrace_ops *ops)
f7bc8b61 2934{
8c4f3c3f
SRRH
2935 /*
2936 * Filter_hash being empty will default to trace module.
2937 * But notrace hash requires a test of individual module functions.
2938 */
33b7f99c
SRRH
2939 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2940 ftrace_hash_empty(ops->func_hash->notrace_hash);
8c4f3c3f
SRRH
2941}
2942
2943/*
2944 * Check if the current ops references the record.
2945 *
2946 * If the ops traces all functions, then it was already accounted for.
2947 * If the ops does not trace the current record function, skip it.
2948 * If the ops ignores the function via notrace filter, skip it.
2949 */
2950static inline bool
2951ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2952{
2953 /* If ops isn't enabled, ignore it */
2954 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2955 return 0;
2956
b7ffffbb 2957 /* If ops traces all then it includes this function */
8c4f3c3f 2958 if (ops_traces_mod(ops))
b7ffffbb 2959 return 1;
8c4f3c3f
SRRH
2960
2961 /* The function must be in the filter */
33b7f99c 2962 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2b2c279c 2963 !__ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
8c4f3c3f 2964 return 0;
f7bc8b61 2965
8c4f3c3f 2966 /* If in notrace hash, we ignore it too */
33b7f99c 2967 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
8c4f3c3f
SRRH
2968 return 0;
2969
2970 return 1;
2971}
2972
1dc43cf0 2973static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
3d083395 2974{
85ae32ae 2975 struct ftrace_page *pg;
e94142a6 2976 struct dyn_ftrace *p;
a5a1d1c2 2977 u64 start, stop;
1dc43cf0 2978 unsigned long update_cnt = 0;
b7ffffbb 2979 unsigned long rec_flags = 0;
85ae32ae 2980 int i;
f7bc8b61 2981
b7ffffbb
SRRH
2982 start = ftrace_now(raw_smp_processor_id());
2983
f7bc8b61 2984 /*
b7ffffbb
SRRH
2985 * When a module is loaded, this function is called to convert
2986 * the calls to mcount in its text to nops, and also to create
2987 * an entry in the ftrace data. Now, if ftrace is activated
2988 * after this call, but before the module sets its text to
2989 * read-only, the modification of enabling ftrace can fail if
2990 * the read-only is done while ftrace is converting the calls.
2991 * To prevent this, the module's records are set as disabled
2992 * and will be enabled after the call to set the module's text
2993 * to read-only.
f7bc8b61 2994 */
b7ffffbb
SRRH
2995 if (mod)
2996 rec_flags |= FTRACE_FL_DISABLED;
3d083395 2997
1dc43cf0 2998 for (pg = new_pgs; pg; pg = pg->next) {
3d083395 2999
85ae32ae 3000 for (i = 0; i < pg->index; i++) {
8c4f3c3f 3001
85ae32ae
SR
3002 /* If something went wrong, bail without enabling anything */
3003 if (unlikely(ftrace_disabled))
3004 return -1;
f22f9a89 3005
85ae32ae 3006 p = &pg->records[i];
b7ffffbb 3007 p->flags = rec_flags;
f22f9a89 3008
85ae32ae
SR
3009 /*
3010 * Do the initial record conversion from mcount jump
3011 * to the NOP instructions.
3012 */
3013 if (!ftrace_code_disable(mod, p))
3014 break;
5cb084bb 3015
1dc43cf0 3016 update_cnt++;
5cb084bb 3017 }
3d083395
SR
3018 }
3019
750ed1a4 3020 stop = ftrace_now(raw_smp_processor_id());
3d083395 3021 ftrace_update_time = stop - start;
1dc43cf0 3022 ftrace_update_tot_cnt += update_cnt;
3d083395 3023
16444a8a
ACM
3024 return 0;
3025}
3026
a7900875 3027static int ftrace_allocate_records(struct ftrace_page *pg, int count)
3c1720f0 3028{
a7900875 3029 int order;
3c1720f0 3030 int cnt;
3c1720f0 3031
a7900875
SR
3032 if (WARN_ON(!count))
3033 return -EINVAL;
3034
3035 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
3c1720f0
SR
3036
3037 /*
a7900875
SR
3038 * We want to fill as much as possible. No more than a page
3039 * may be empty.
3c1720f0 3040 */
a7900875
SR
3041 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
3042 order--;
3c1720f0 3043
a7900875
SR
3044 again:
3045 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
3c1720f0 3046
a7900875
SR
3047 if (!pg->records) {
3048 /* if we can't allocate this size, try something smaller */
3049 if (!order)
3050 return -ENOMEM;
3051 order >>= 1;
3052 goto again;
3053 }
3c1720f0 3054
a7900875
SR
3055 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3056 pg->size = cnt;
3c1720f0 3057
a7900875
SR
3058 if (cnt > count)
3059 cnt = count;
3060
3061 return cnt;
3062}
3063
3064static struct ftrace_page *
3065ftrace_allocate_pages(unsigned long num_to_init)
3066{
3067 struct ftrace_page *start_pg;
3068 struct ftrace_page *pg;
3069 int order;
3070 int cnt;
3071
3072 if (!num_to_init)
3073 return 0;
3074
3075 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3076 if (!pg)
3077 return NULL;
3078
3079 /*
3080 * Try to allocate as much as possible in one continues
3081 * location that fills in all of the space. We want to
3082 * waste as little space as possible.
3083 */
3084 for (;;) {
3085 cnt = ftrace_allocate_records(pg, num_to_init);
3086 if (cnt < 0)
3087 goto free_pages;
3088
3089 num_to_init -= cnt;
3090 if (!num_to_init)
3c1720f0
SR
3091 break;
3092
a7900875
SR
3093 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3094 if (!pg->next)
3095 goto free_pages;
3096
3c1720f0
SR
3097 pg = pg->next;
3098 }
3099
a7900875
SR
3100 return start_pg;
3101
3102 free_pages:
1f61be00
NK
3103 pg = start_pg;
3104 while (pg) {
a7900875
SR
3105 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3106 free_pages((unsigned long)pg->records, order);
3107 start_pg = pg->next;
3108 kfree(pg);
3109 pg = start_pg;
3110 }
3111 pr_info("ftrace: FAILED to allocate memory for functions\n");
3112 return NULL;
3113}
3114
5072c59f
SR
3115#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3116
3117struct ftrace_iterator {
98c4fd04 3118 loff_t pos;
4aeb6967 3119 loff_t func_pos;
5985ea8b 3120 loff_t mod_pos;
4aeb6967
SR
3121 struct ftrace_page *pg;
3122 struct dyn_ftrace *func;
3123 struct ftrace_func_probe *probe;
eee8ded1 3124 struct ftrace_func_entry *probe_entry;
4aeb6967 3125 struct trace_parser parser;
1cf41dd7 3126 struct ftrace_hash *hash;
33dc9b12 3127 struct ftrace_ops *ops;
5985ea8b
SRV
3128 struct trace_array *tr;
3129 struct list_head *mod_list;
eee8ded1 3130 int pidx;
4aeb6967
SR
3131 int idx;
3132 unsigned flags;
5072c59f
SR
3133};
3134
8fc0c701 3135static void *
eee8ded1 3136t_probe_next(struct seq_file *m, loff_t *pos)
8fc0c701
SR
3137{
3138 struct ftrace_iterator *iter = m->private;
d2afd57a 3139 struct trace_array *tr = iter->ops->private;
04ec7bb6 3140 struct list_head *func_probes;
eee8ded1
SRV
3141 struct ftrace_hash *hash;
3142 struct list_head *next;
4aeb6967 3143 struct hlist_node *hnd = NULL;
8fc0c701 3144 struct hlist_head *hhd;
eee8ded1 3145 int size;
8fc0c701 3146
8fc0c701 3147 (*pos)++;
98c4fd04 3148 iter->pos = *pos;
8fc0c701 3149
04ec7bb6 3150 if (!tr)
8fc0c701
SR
3151 return NULL;
3152
04ec7bb6
SRV
3153 func_probes = &tr->func_probes;
3154 if (list_empty(func_probes))
8fc0c701
SR
3155 return NULL;
3156
eee8ded1 3157 if (!iter->probe) {
04ec7bb6 3158 next = func_probes->next;
7b60f3d8 3159 iter->probe = list_entry(next, struct ftrace_func_probe, list);
eee8ded1
SRV
3160 }
3161
3162 if (iter->probe_entry)
3163 hnd = &iter->probe_entry->hlist;
3164
3165 hash = iter->probe->ops.func_hash->filter_hash;
3166 size = 1 << hash->size_bits;
3167
3168 retry:
3169 if (iter->pidx >= size) {
04ec7bb6 3170 if (iter->probe->list.next == func_probes)
eee8ded1
SRV
3171 return NULL;
3172 next = iter->probe->list.next;
7b60f3d8 3173 iter->probe = list_entry(next, struct ftrace_func_probe, list);
eee8ded1
SRV
3174 hash = iter->probe->ops.func_hash->filter_hash;
3175 size = 1 << hash->size_bits;
3176 iter->pidx = 0;
3177 }
3178
3179 hhd = &hash->buckets[iter->pidx];
8fc0c701
SR
3180
3181 if (hlist_empty(hhd)) {
eee8ded1 3182 iter->pidx++;
8fc0c701
SR
3183 hnd = NULL;
3184 goto retry;
3185 }
3186
3187 if (!hnd)
3188 hnd = hhd->first;
3189 else {
3190 hnd = hnd->next;
3191 if (!hnd) {
eee8ded1 3192 iter->pidx++;
8fc0c701
SR
3193 goto retry;
3194 }
3195 }
3196
4aeb6967
SR
3197 if (WARN_ON_ONCE(!hnd))
3198 return NULL;
3199
eee8ded1 3200 iter->probe_entry = hlist_entry(hnd, struct ftrace_func_entry, hlist);
4aeb6967
SR
3201
3202 return iter;
8fc0c701
SR
3203}
3204
eee8ded1 3205static void *t_probe_start(struct seq_file *m, loff_t *pos)
8fc0c701
SR
3206{
3207 struct ftrace_iterator *iter = m->private;
3208 void *p = NULL;
d82d6244
LZ
3209 loff_t l;
3210
eee8ded1 3211 if (!(iter->flags & FTRACE_ITER_DO_PROBES))
69a3083c
SR
3212 return NULL;
3213
5985ea8b 3214 if (iter->mod_pos > *pos)
2bccfffd 3215 return NULL;
8fc0c701 3216
eee8ded1
SRV
3217 iter->probe = NULL;
3218 iter->probe_entry = NULL;
3219 iter->pidx = 0;
5985ea8b 3220 for (l = 0; l <= (*pos - iter->mod_pos); ) {
eee8ded1 3221 p = t_probe_next(m, &l);
d82d6244
LZ
3222 if (!p)
3223 break;
3224 }
4aeb6967
SR
3225 if (!p)
3226 return NULL;
3227
98c4fd04 3228 /* Only set this if we have an item */
eee8ded1 3229 iter->flags |= FTRACE_ITER_PROBE;
98c4fd04 3230
4aeb6967 3231 return iter;
8fc0c701
SR
3232}
3233
4aeb6967 3234static int
eee8ded1 3235t_probe_show(struct seq_file *m, struct ftrace_iterator *iter)
8fc0c701 3236{
eee8ded1 3237 struct ftrace_func_entry *probe_entry;
7b60f3d8
SRV
3238 struct ftrace_probe_ops *probe_ops;
3239 struct ftrace_func_probe *probe;
8fc0c701 3240
eee8ded1
SRV
3241 probe = iter->probe;
3242 probe_entry = iter->probe_entry;
8fc0c701 3243
eee8ded1 3244 if (WARN_ON_ONCE(!probe || !probe_entry))
4aeb6967 3245 return -EIO;
8fc0c701 3246
7b60f3d8 3247 probe_ops = probe->probe_ops;
809dcf29 3248
7b60f3d8 3249 if (probe_ops->print)
6e444319 3250 return probe_ops->print(m, probe_entry->ip, probe_ops, probe->data);
8fc0c701 3251
7b60f3d8
SRV
3252 seq_printf(m, "%ps:%ps\n", (void *)probe_entry->ip,
3253 (void *)probe_ops->func);
8fc0c701
SR
3254
3255 return 0;
3256}
3257
5985ea8b
SRV
3258static void *
3259t_mod_next(struct seq_file *m, loff_t *pos)
3260{
3261 struct ftrace_iterator *iter = m->private;
3262 struct trace_array *tr = iter->tr;
3263
3264 (*pos)++;
3265 iter->pos = *pos;
3266
3267 iter->mod_list = iter->mod_list->next;
3268
3269 if (iter->mod_list == &tr->mod_trace ||
3270 iter->mod_list == &tr->mod_notrace) {
3271 iter->flags &= ~FTRACE_ITER_MOD;
3272 return NULL;
3273 }
3274
3275 iter->mod_pos = *pos;
3276
3277 return iter;
3278}
3279
3280static void *t_mod_start(struct seq_file *m, loff_t *pos)
3281{
3282 struct ftrace_iterator *iter = m->private;
3283 void *p = NULL;
3284 loff_t l;
3285
3286 if (iter->func_pos > *pos)
3287 return NULL;
3288
3289 iter->mod_pos = iter->func_pos;
3290
3291 /* probes are only available if tr is set */
3292 if (!iter->tr)
3293 return NULL;
3294
3295 for (l = 0; l <= (*pos - iter->func_pos); ) {
3296 p = t_mod_next(m, &l);
3297 if (!p)
3298 break;
3299 }
3300 if (!p) {
3301 iter->flags &= ~FTRACE_ITER_MOD;
3302 return t_probe_start(m, pos);
3303 }
3304
3305 /* Only set this if we have an item */
3306 iter->flags |= FTRACE_ITER_MOD;
3307
3308 return iter;
3309}
3310
3311static int
3312t_mod_show(struct seq_file *m, struct ftrace_iterator *iter)
3313{
3314 struct ftrace_mod_load *ftrace_mod;
3315 struct trace_array *tr = iter->tr;
3316
3317 if (WARN_ON_ONCE(!iter->mod_list) ||
3318 iter->mod_list == &tr->mod_trace ||
3319 iter->mod_list == &tr->mod_notrace)
3320 return -EIO;
3321
3322 ftrace_mod = list_entry(iter->mod_list, struct ftrace_mod_load, list);
3323
3324 if (ftrace_mod->func)
3325 seq_printf(m, "%s", ftrace_mod->func);
3326 else
3327 seq_putc(m, '*');
3328
3329 seq_printf(m, ":mod:%s\n", ftrace_mod->module);
3330
3331 return 0;
3332}
3333
e309b41d 3334static void *
5bd84629 3335t_func_next(struct seq_file *m, loff_t *pos)
5072c59f
SR
3336{
3337 struct ftrace_iterator *iter = m->private;
3338 struct dyn_ftrace *rec = NULL;
3339
3340 (*pos)++;
0c75a3ed 3341
5072c59f
SR
3342 retry:
3343 if (iter->idx >= iter->pg->index) {
3344 if (iter->pg->next) {
3345 iter->pg = iter->pg->next;
3346 iter->idx = 0;
3347 goto retry;
3348 }
3349 } else {
3350 rec = &iter->pg->records[iter->idx++];
c20489da
SRV
3351 if (((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3352 !ftrace_lookup_ip(iter->hash, rec->ip)) ||
647bcd03
SR
3353
3354 ((iter->flags & FTRACE_ITER_ENABLED) &&
23ea9c4d 3355 !(rec->flags & FTRACE_FL_ENABLED))) {
647bcd03 3356
5072c59f
SR
3357 rec = NULL;
3358 goto retry;
3359 }
3360 }
3361
4aeb6967 3362 if (!rec)
5bd84629 3363 return NULL;
4aeb6967 3364
5bd84629 3365 iter->pos = iter->func_pos = *pos;
4aeb6967
SR
3366 iter->func = rec;
3367
3368 return iter;
5072c59f
SR
3369}
3370
5bd84629
SRV
3371static void *
3372t_next(struct seq_file *m, void *v, loff_t *pos)
3373{
3374 struct ftrace_iterator *iter = m->private;
5985ea8b 3375 loff_t l = *pos; /* t_probe_start() must use original pos */
5bd84629
SRV
3376 void *ret;
3377
3378 if (unlikely(ftrace_disabled))
3379 return NULL;
3380
eee8ded1
SRV
3381 if (iter->flags & FTRACE_ITER_PROBE)
3382 return t_probe_next(m, pos);
5bd84629 3383
5985ea8b
SRV
3384 if (iter->flags & FTRACE_ITER_MOD)
3385 return t_mod_next(m, pos);
3386
5bd84629 3387 if (iter->flags & FTRACE_ITER_PRINTALL) {
eee8ded1 3388 /* next must increment pos, and t_probe_start does not */
5bd84629 3389 (*pos)++;
5985ea8b 3390 return t_mod_start(m, &l);
5bd84629
SRV
3391 }
3392
3393 ret = t_func_next(m, pos);
3394
3395 if (!ret)
5985ea8b 3396 return t_mod_start(m, &l);
5bd84629
SRV
3397
3398 return ret;
3399}
3400
98c4fd04
SR
3401static void reset_iter_read(struct ftrace_iterator *iter)
3402{
3403 iter->pos = 0;
3404 iter->func_pos = 0;
5985ea8b 3405 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_PROBE | FTRACE_ITER_MOD);
5072c59f
SR
3406}
3407
3408static void *t_start(struct seq_file *m, loff_t *pos)
3409{
3410 struct ftrace_iterator *iter = m->private;
3411 void *p = NULL;
694ce0a5 3412 loff_t l;
5072c59f 3413
8fc0c701 3414 mutex_lock(&ftrace_lock);
45a4a237
SR
3415
3416 if (unlikely(ftrace_disabled))
3417 return NULL;
3418
98c4fd04
SR
3419 /*
3420 * If an lseek was done, then reset and start from beginning.
3421 */
3422 if (*pos < iter->pos)
3423 reset_iter_read(iter);
3424
0c75a3ed
SR
3425 /*
3426 * For set_ftrace_filter reading, if we have the filter
3427 * off, we can short cut and just print out that all
3428 * functions are enabled.
3429 */
c20489da
SRV
3430 if ((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3431 ftrace_hash_empty(iter->hash)) {
43ff926a 3432 iter->func_pos = 1; /* Account for the message */
0c75a3ed 3433 if (*pos > 0)
5985ea8b 3434 return t_mod_start(m, pos);
0c75a3ed 3435 iter->flags |= FTRACE_ITER_PRINTALL;
df091625 3436 /* reset in case of seek/pread */
eee8ded1 3437 iter->flags &= ~FTRACE_ITER_PROBE;
0c75a3ed
SR
3438 return iter;
3439 }
3440
5985ea8b
SRV
3441 if (iter->flags & FTRACE_ITER_MOD)
3442 return t_mod_start(m, pos);
8fc0c701 3443
98c4fd04
SR
3444 /*
3445 * Unfortunately, we need to restart at ftrace_pages_start
3446 * every time we let go of the ftrace_mutex. This is because
3447 * those pointers can change without the lock.
3448 */
694ce0a5
LZ
3449 iter->pg = ftrace_pages_start;
3450 iter->idx = 0;
3451 for (l = 0; l <= *pos; ) {
5bd84629 3452 p = t_func_next(m, &l);
694ce0a5
LZ
3453 if (!p)
3454 break;
50cdaf08 3455 }
5821e1b7 3456
69a3083c 3457 if (!p)
5985ea8b 3458 return t_mod_start(m, pos);
4aeb6967
SR
3459
3460 return iter;
5072c59f
SR
3461}
3462
3463static void t_stop(struct seq_file *m, void *p)
3464{
8fc0c701 3465 mutex_unlock(&ftrace_lock);
5072c59f
SR
3466}
3467
15d5b02c
SRRH
3468void * __weak
3469arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3470{
3471 return NULL;
3472}
3473
3474static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3475 struct dyn_ftrace *rec)
3476{
3477 void *ptr;
3478
3479 ptr = arch_ftrace_trampoline_func(ops, rec);
3480 if (ptr)
3481 seq_printf(m, " ->%pS", ptr);
3482}
3483
5072c59f
SR
3484static int t_show(struct seq_file *m, void *v)
3485{
0c75a3ed 3486 struct ftrace_iterator *iter = m->private;
4aeb6967 3487 struct dyn_ftrace *rec;
5072c59f 3488
eee8ded1
SRV
3489 if (iter->flags & FTRACE_ITER_PROBE)
3490 return t_probe_show(m, iter);
8fc0c701 3491
5985ea8b
SRV
3492 if (iter->flags & FTRACE_ITER_MOD)
3493 return t_mod_show(m, iter);
3494
0c75a3ed 3495 if (iter->flags & FTRACE_ITER_PRINTALL) {
8c006cf7 3496 if (iter->flags & FTRACE_ITER_NOTRACE)
fa6f0cc7 3497 seq_puts(m, "#### no functions disabled ####\n");
8c006cf7 3498 else
fa6f0cc7 3499 seq_puts(m, "#### all functions enabled ####\n");
0c75a3ed
SR
3500 return 0;
3501 }
3502
4aeb6967
SR
3503 rec = iter->func;
3504
5072c59f
SR
3505 if (!rec)
3506 return 0;
3507
647bcd03 3508 seq_printf(m, "%ps", (void *)rec->ip);
9674b2fa 3509 if (iter->flags & FTRACE_ITER_ENABLED) {
030f4e1c 3510 struct ftrace_ops *ops;
15d5b02c 3511
f8b8be8a 3512 seq_printf(m, " (%ld)%s%s",
0376bde1 3513 ftrace_rec_count(rec),
f8b8be8a
MH
3514 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3515 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
9674b2fa 3516 if (rec->flags & FTRACE_FL_TRAMP_EN) {
5fecaa04 3517 ops = ftrace_find_tramp_ops_any(rec);
39daa7b9
SRRH
3518 if (ops) {
3519 do {
3520 seq_printf(m, "\ttramp: %pS (%pS)",
3521 (void *)ops->trampoline,
3522 (void *)ops->func);
030f4e1c 3523 add_trampoline_func(m, ops, rec);
39daa7b9
SRRH
3524 ops = ftrace_find_tramp_ops_next(rec, ops);
3525 } while (ops);
3526 } else
fa6f0cc7 3527 seq_puts(m, "\ttramp: ERROR!");
030f4e1c
SRRH
3528 } else {
3529 add_trampoline_func(m, NULL, rec);
9674b2fa
SRRH
3530 }
3531 }
3532
fa6f0cc7 3533 seq_putc(m, '\n');
5072c59f
SR
3534
3535 return 0;
3536}
3537
88e9d34c 3538static const struct seq_operations show_ftrace_seq_ops = {
5072c59f
SR
3539 .start = t_start,
3540 .next = t_next,
3541 .stop = t_stop,
3542 .show = t_show,
3543};
3544
e309b41d 3545static int
5072c59f
SR
3546ftrace_avail_open(struct inode *inode, struct file *file)
3547{
3548 struct ftrace_iterator *iter;
5072c59f 3549
4eebcc81
SR
3550 if (unlikely(ftrace_disabled))
3551 return -ENODEV;
3552
50e18b94 3553 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
c1bc5919
SRV
3554 if (!iter)
3555 return -ENOMEM;
5072c59f 3556
c1bc5919
SRV
3557 iter->pg = ftrace_pages_start;
3558 iter->ops = &global_ops;
3559
3560 return 0;
5072c59f
SR
3561}
3562
647bcd03
SR
3563static int
3564ftrace_enabled_open(struct inode *inode, struct file *file)
3565{
3566 struct ftrace_iterator *iter;
647bcd03 3567
50e18b94 3568 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
c1bc5919
SRV
3569 if (!iter)
3570 return -ENOMEM;
647bcd03 3571
c1bc5919
SRV
3572 iter->pg = ftrace_pages_start;
3573 iter->flags = FTRACE_ITER_ENABLED;
3574 iter->ops = &global_ops;
3575
3576 return 0;
647bcd03
SR
3577}
3578
fc13cb0c
SR
3579/**
3580 * ftrace_regex_open - initialize function tracer filter files
3581 * @ops: The ftrace_ops that hold the hash filters
3582 * @flag: The type of filter to process
3583 * @inode: The inode, usually passed in to your open routine
3584 * @file: The file, usually passed in to your open routine
3585 *
3586 * ftrace_regex_open() initializes the filter files for the
3587 * @ops. Depending on @flag it may process the filter hash or
3588 * the notrace hash of @ops. With this called from the open
3589 * routine, you can use ftrace_filter_write() for the write
3590 * routine if @flag has FTRACE_ITER_FILTER set, or
3591 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
098c879e 3592 * tracing_lseek() should be used as the lseek routine, and
fc13cb0c
SR
3593 * release must call ftrace_regex_release().
3594 */
3595int
f45948e8 3596ftrace_regex_open(struct ftrace_ops *ops, int flag,
1cf41dd7 3597 struct inode *inode, struct file *file)
5072c59f
SR
3598{
3599 struct ftrace_iterator *iter;
f45948e8 3600 struct ftrace_hash *hash;
673feb9d
SRV
3601 struct list_head *mod_head;
3602 struct trace_array *tr = ops->private;
5072c59f
SR
3603 int ret = 0;
3604
f04f24fb
MH
3605 ftrace_ops_init(ops);
3606
4eebcc81
SR
3607 if (unlikely(ftrace_disabled))
3608 return -ENODEV;
3609
5072c59f
SR
3610 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3611 if (!iter)
3612 return -ENOMEM;
3613
689fd8b6 3614 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3615 kfree(iter);
3616 return -ENOMEM;
3617 }
3618
3f2367ba
MH
3619 iter->ops = ops;
3620 iter->flags = flag;
5985ea8b 3621 iter->tr = tr;
3f2367ba 3622
33b7f99c 3623 mutex_lock(&ops->func_hash->regex_lock);
3f2367ba 3624
673feb9d 3625 if (flag & FTRACE_ITER_NOTRACE) {
33b7f99c 3626 hash = ops->func_hash->notrace_hash;
5985ea8b 3627 mod_head = tr ? &tr->mod_notrace : NULL;
673feb9d 3628 } else {
33b7f99c 3629 hash = ops->func_hash->filter_hash;
5985ea8b 3630 mod_head = tr ? &tr->mod_trace : NULL;
673feb9d 3631 }
f45948e8 3632
5985ea8b
SRV
3633 iter->mod_list = mod_head;
3634
33dc9b12 3635 if (file->f_mode & FMODE_WRITE) {
ef2fbe16
NK
3636 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3637
673feb9d 3638 if (file->f_flags & O_TRUNC) {
ef2fbe16 3639 iter->hash = alloc_ftrace_hash(size_bits);
673feb9d
SRV
3640 clear_ftrace_mod_list(mod_head);
3641 } else {
ef2fbe16 3642 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
673feb9d 3643 }
ef2fbe16 3644
33dc9b12
SR
3645 if (!iter->hash) {
3646 trace_parser_put(&iter->parser);
3647 kfree(iter);
3f2367ba
MH
3648 ret = -ENOMEM;
3649 goto out_unlock;
33dc9b12 3650 }
c20489da
SRV
3651 } else
3652 iter->hash = hash;
1cf41dd7 3653
5072c59f
SR
3654 if (file->f_mode & FMODE_READ) {
3655 iter->pg = ftrace_pages_start;
5072c59f
SR
3656
3657 ret = seq_open(file, &show_ftrace_seq_ops);
3658 if (!ret) {
3659 struct seq_file *m = file->private_data;
3660 m->private = iter;
79fe249c 3661 } else {
33dc9b12
SR
3662 /* Failed */
3663 free_ftrace_hash(iter->hash);
79fe249c 3664 trace_parser_put(&iter->parser);
5072c59f 3665 kfree(iter);
79fe249c 3666 }
5072c59f
SR
3667 } else
3668 file->private_data = iter;
3f2367ba
MH
3669
3670 out_unlock:
33b7f99c 3671 mutex_unlock(&ops->func_hash->regex_lock);
5072c59f
SR
3672
3673 return ret;
3674}
3675
41c52c0d
SR
3676static int
3677ftrace_filter_open(struct inode *inode, struct file *file)
3678{
e3b3e2e8
SRRH
3679 struct ftrace_ops *ops = inode->i_private;
3680
3681 return ftrace_regex_open(ops,
eee8ded1 3682 FTRACE_ITER_FILTER | FTRACE_ITER_DO_PROBES,
69a3083c 3683 inode, file);
41c52c0d
SR
3684}
3685
3686static int
3687ftrace_notrace_open(struct inode *inode, struct file *file)
3688{
e3b3e2e8
SRRH
3689 struct ftrace_ops *ops = inode->i_private;
3690
3691 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
1cf41dd7 3692 inode, file);
41c52c0d
SR
3693}
3694
3ba00929
DS
3695/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3696struct ftrace_glob {
3697 char *search;
3698 unsigned len;
3699 int type;
3700};
3701
7132e2d6
TJB
3702/*
3703 * If symbols in an architecture don't correspond exactly to the user-visible
3704 * name of what they represent, it is possible to define this function to
3705 * perform the necessary adjustments.
3706*/
3707char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3708{
3709 return str;
3710}
3711
3ba00929 3712static int ftrace_match(char *str, struct ftrace_glob *g)
9f4801e3 3713{
9f4801e3 3714 int matched = 0;
751e9983 3715 int slen;
9f4801e3 3716
7132e2d6
TJB
3717 str = arch_ftrace_match_adjust(str, g->search);
3718
3ba00929 3719 switch (g->type) {
9f4801e3 3720 case MATCH_FULL:
3ba00929 3721 if (strcmp(str, g->search) == 0)
9f4801e3
SR
3722 matched = 1;
3723 break;
3724 case MATCH_FRONT_ONLY:
3ba00929 3725 if (strncmp(str, g->search, g->len) == 0)
9f4801e3
SR
3726 matched = 1;
3727 break;
3728 case MATCH_MIDDLE_ONLY:
3ba00929 3729 if (strstr(str, g->search))
9f4801e3
SR
3730 matched = 1;
3731 break;
3732 case MATCH_END_ONLY:
751e9983 3733 slen = strlen(str);
3ba00929
DS
3734 if (slen >= g->len &&
3735 memcmp(str + slen - g->len, g->search, g->len) == 0)
9f4801e3
SR
3736 matched = 1;
3737 break;
60f1d5e3
MH
3738 case MATCH_GLOB:
3739 if (glob_match(g->search, str))
3740 matched = 1;
3741 break;
9f4801e3
SR
3742 }
3743
3744 return matched;
3745}
3746
b448c4e3 3747static int
f0a3b154 3748enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
996e87be 3749{
b448c4e3 3750 struct ftrace_func_entry *entry;
b448c4e3
SR
3751 int ret = 0;
3752
1cf41dd7 3753 entry = ftrace_lookup_ip(hash, rec->ip);
f0a3b154 3754 if (clear_filter) {
1cf41dd7
SR
3755 /* Do nothing if it doesn't exist */
3756 if (!entry)
3757 return 0;
b448c4e3 3758
33dc9b12 3759 free_hash_entry(hash, entry);
1cf41dd7
SR
3760 } else {
3761 /* Do nothing if it exists */
3762 if (entry)
3763 return 0;
b448c4e3 3764
1cf41dd7 3765 ret = add_hash_entry(hash, rec->ip);
b448c4e3
SR
3766 }
3767 return ret;
996e87be
SR
3768}
3769
64e7c440 3770static int
0b507e1e
DS
3771ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3772 struct ftrace_glob *mod_g, int exclude_mod)
64e7c440
SR
3773{
3774 char str[KSYM_SYMBOL_LEN];
b9df92d2
SR
3775 char *modname;
3776
3777 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3778
0b507e1e
DS
3779 if (mod_g) {
3780 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3781
3782 /* blank module name to match all modules */
3783 if (!mod_g->len) {
3784 /* blank module globbing: modname xor exclude_mod */
77c0edde 3785 if (!exclude_mod != !modname)
0b507e1e
DS
3786 goto func_match;
3787 return 0;
3788 }
3789
77c0edde
SRV
3790 /*
3791 * exclude_mod is set to trace everything but the given
3792 * module. If it is set and the module matches, then
3793 * return 0. If it is not set, and the module doesn't match
3794 * also return 0. Otherwise, check the function to see if
3795 * that matches.
3796 */
3797 if (!mod_matches == !exclude_mod)
b9df92d2 3798 return 0;
0b507e1e 3799func_match:
b9df92d2 3800 /* blank search means to match all funcs in the mod */
3ba00929 3801 if (!func_g->len)
b9df92d2
SR
3802 return 1;
3803 }
64e7c440 3804
3ba00929 3805 return ftrace_match(str, func_g);
64e7c440
SR
3806}
3807
1cf41dd7 3808static int
3ba00929 3809match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
9f4801e3 3810{
9f4801e3
SR
3811 struct ftrace_page *pg;
3812 struct dyn_ftrace *rec;
3ba00929 3813 struct ftrace_glob func_g = { .type = MATCH_FULL };
0b507e1e
DS
3814 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3815 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3816 int exclude_mod = 0;
311d16da 3817 int found = 0;
b448c4e3 3818 int ret;
f0a3b154 3819 int clear_filter;
9f4801e3 3820
0b507e1e 3821 if (func) {
3ba00929
DS
3822 func_g.type = filter_parse_regex(func, len, &func_g.search,
3823 &clear_filter);
3824 func_g.len = strlen(func_g.search);
b9df92d2 3825 }
9f4801e3 3826
0b507e1e
DS
3827 if (mod) {
3828 mod_g.type = filter_parse_regex(mod, strlen(mod),
3829 &mod_g.search, &exclude_mod);
3830 mod_g.len = strlen(mod_g.search);
b9df92d2 3831 }
9f4801e3 3832
52baf119 3833 mutex_lock(&ftrace_lock);
265c831c 3834
b9df92d2
SR
3835 if (unlikely(ftrace_disabled))
3836 goto out_unlock;
9f4801e3 3837
265c831c 3838 do_for_each_ftrace_rec(pg, rec) {
546fece4
SRRH
3839
3840 if (rec->flags & FTRACE_FL_DISABLED)
3841 continue;
3842
0b507e1e 3843 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
f0a3b154 3844 ret = enter_record(hash, rec, clear_filter);
b448c4e3
SR
3845 if (ret < 0) {
3846 found = ret;
3847 goto out_unlock;
3848 }
311d16da 3849 found = 1;
265c831c
SR
3850 }
3851 } while_for_each_ftrace_rec();
b9df92d2 3852 out_unlock:
52baf119 3853 mutex_unlock(&ftrace_lock);
311d16da
LZ
3854
3855 return found;
5072c59f
SR
3856}
3857
64e7c440 3858static int
1cf41dd7 3859ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
64e7c440 3860{
f0a3b154 3861 return match_records(hash, buff, len, NULL);
64e7c440
SR
3862}
3863
e16b35dd
SRV
3864static void ftrace_ops_update_code(struct ftrace_ops *ops,
3865 struct ftrace_ops_hash *old_hash)
3866{
3867 struct ftrace_ops *op;
3868
3869 if (!ftrace_enabled)
3870 return;
3871
3872 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
3873 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
3874 return;
3875 }
3876
3877 /*
3878 * If this is the shared global_ops filter, then we need to
3879 * check if there is another ops that shares it, is enabled.
3880 * If so, we still need to run the modify code.
3881 */
3882 if (ops->func_hash != &global_ops.local_hash)
3883 return;
3884
3885 do_for_each_ftrace_op(op, ftrace_ops_list) {
3886 if (op->func_hash == &global_ops.local_hash &&
3887 op->flags & FTRACE_OPS_FL_ENABLED) {
3888 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
3889 /* Only need to do this once */
3890 return;
3891 }
3892 } while_for_each_ftrace_op(op);
3893}
3894
3895static int ftrace_hash_move_and_update_ops(struct ftrace_ops *ops,
3896 struct ftrace_hash **orig_hash,
3897 struct ftrace_hash *hash,
3898 int enable)
3899{
3900 struct ftrace_ops_hash old_hash_ops;
3901 struct ftrace_hash *old_hash;
3902 int ret;
3903
3904 old_hash = *orig_hash;
3905 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
3906 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
3907 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
3908 if (!ret) {
3909 ftrace_ops_update_code(ops, &old_hash_ops);
3910 free_ftrace_hash_rcu(old_hash);
3911 }
3912 return ret;
3913}
64e7c440 3914
673feb9d
SRV
3915static bool module_exists(const char *module)
3916{
3917 /* All modules have the symbol __this_module */
3918 const char this_mod[] = "__this_module";
3919 const int modname_size = MAX_PARAM_PREFIX_LEN + sizeof(this_mod) + 1;
3920 char modname[modname_size + 1];
3921 unsigned long val;
3922 int n;
3923
3924 n = snprintf(modname, modname_size + 1, "%s:%s", module, this_mod);
3925
3926 if (n > modname_size)
3927 return false;
3928
3929 val = module_kallsyms_lookup_name(modname);
3930 return val != 0;
3931}
3932
3933static int cache_mod(struct trace_array *tr,
3934 const char *func, char *module, int enable)
3935{
3936 struct ftrace_mod_load *ftrace_mod, *n;
3937 struct list_head *head = enable ? &tr->mod_trace : &tr->mod_notrace;
3938 int ret;
3939
3940 mutex_lock(&ftrace_lock);
3941
3942 /* We do not cache inverse filters */
3943 if (func[0] == '!') {
3944 func++;
3945 ret = -EINVAL;
3946
3947 /* Look to remove this hash */
3948 list_for_each_entry_safe(ftrace_mod, n, head, list) {
3949 if (strcmp(ftrace_mod->module, module) != 0)
3950 continue;
3951
3952 /* no func matches all */
3953 if (!func || strcmp(func, "*") == 0 ||
3954 (ftrace_mod->func &&
3955 strcmp(ftrace_mod->func, func) == 0)) {
3956 ret = 0;
3957 free_ftrace_mod(ftrace_mod);
3958 continue;
3959 }
3960 }
3961 goto out;
3962 }
3963
3964 ret = -EINVAL;
3965 /* We only care about modules that have not been loaded yet */
3966 if (module_exists(module))
3967 goto out;
3968
3969 /* Save this string off, and execute it when the module is loaded */
3970 ret = ftrace_add_mod(tr, func, module, enable);
3971 out:
3972 mutex_unlock(&ftrace_lock);
3973
3974 return ret;
3975}
3976
d7fbf8df
SRV
3977static int
3978ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3979 int reset, int enable);
3980
3981static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
3982 char *mod, bool enable)
3983{
3984 struct ftrace_mod_load *ftrace_mod, *n;
3985 struct ftrace_hash **orig_hash, *new_hash;
3986 LIST_HEAD(process_mods);
3987 char *func;
3988 int ret;
3989
3990 mutex_lock(&ops->func_hash->regex_lock);
3991
3992 if (enable)
3993 orig_hash = &ops->func_hash->filter_hash;
3994 else
3995 orig_hash = &ops->func_hash->notrace_hash;
3996
3997 new_hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS,
3998 *orig_hash);
3999 if (!new_hash)
4000 return; /* Warn? */
4001
4002 mutex_lock(&ftrace_lock);
4003
4004 list_for_each_entry_safe(ftrace_mod, n, head, list) {
4005
4006 if (strcmp(ftrace_mod->module, mod) != 0)
4007 continue;
4008
4009 if (ftrace_mod->func)
4010 func = kstrdup(ftrace_mod->func, GFP_KERNEL);
4011 else
4012 func = kstrdup("*", GFP_KERNEL);
4013
4014 if (!func) /* warn? */
4015 continue;
4016
4017 list_del(&ftrace_mod->list);
4018 list_add(&ftrace_mod->list, &process_mods);
4019
4020 /* Use the newly allocated func, as it may be "*" */
4021 kfree(ftrace_mod->func);
4022 ftrace_mod->func = func;
4023 }
4024
4025 mutex_unlock(&ftrace_lock);
4026
4027 list_for_each_entry_safe(ftrace_mod, n, &process_mods, list) {
4028
4029 func = ftrace_mod->func;
4030
4031 /* Grabs ftrace_lock, which is why we have this extra step */
4032 match_records(new_hash, func, strlen(func), mod);
4033 free_ftrace_mod(ftrace_mod);
4034 }
4035
8c08f0d5
SRV
4036 if (enable && list_empty(head))
4037 new_hash->flags &= ~FTRACE_HASH_FL_MOD;
4038
d7fbf8df
SRV
4039 mutex_lock(&ftrace_lock);
4040
4041 ret = ftrace_hash_move_and_update_ops(ops, orig_hash,
4042 new_hash, enable);
4043 mutex_unlock(&ftrace_lock);
4044
4045 mutex_unlock(&ops->func_hash->regex_lock);
4046
4047 free_ftrace_hash(new_hash);
4048}
4049
4050static void process_cached_mods(const char *mod_name)
4051{
4052 struct trace_array *tr;
4053 char *mod;
4054
4055 mod = kstrdup(mod_name, GFP_KERNEL);
4056 if (!mod)
4057 return;
4058
4059 mutex_lock(&trace_types_lock);
4060 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
4061 if (!list_empty(&tr->mod_trace))
4062 process_mod_list(&tr->mod_trace, tr->ops, mod, true);
4063 if (!list_empty(&tr->mod_notrace))
4064 process_mod_list(&tr->mod_notrace, tr->ops, mod, false);
4065 }
4066 mutex_unlock(&trace_types_lock);
4067
4068 kfree(mod);
4069}
4070
f6180773
SR
4071/*
4072 * We register the module command as a template to show others how
4073 * to register the a command as well.
4074 */
4075
4076static int
04ec7bb6 4077ftrace_mod_callback(struct trace_array *tr, struct ftrace_hash *hash,
673feb9d 4078 char *func_orig, char *cmd, char *module, int enable)
f6180773 4079{
673feb9d 4080 char *func;
5e3949f0 4081 int ret;
f6180773 4082
673feb9d
SRV
4083 /* match_records() modifies func, and we need the original */
4084 func = kstrdup(func_orig, GFP_KERNEL);
4085 if (!func)
4086 return -ENOMEM;
4087
f6180773
SR
4088 /*
4089 * cmd == 'mod' because we only registered this func
4090 * for the 'mod' ftrace_func_command.
4091 * But if you register one func with multiple commands,
4092 * you can tell which command was used by the cmd
4093 * parameter.
4094 */
f0a3b154 4095 ret = match_records(hash, func, strlen(func), module);
673feb9d
SRV
4096 kfree(func);
4097
b448c4e3 4098 if (!ret)
673feb9d 4099 return cache_mod(tr, func_orig, module, enable);
b448c4e3
SR
4100 if (ret < 0)
4101 return ret;
b448c4e3 4102 return 0;
f6180773
SR
4103}
4104
4105static struct ftrace_func_command ftrace_mod_cmd = {
4106 .name = "mod",
4107 .func = ftrace_mod_callback,
4108};
4109
4110static int __init ftrace_mod_cmd_init(void)
4111{
4112 return register_ftrace_command(&ftrace_mod_cmd);
4113}
6f415672 4114core_initcall(ftrace_mod_cmd_init);
f6180773 4115
2f5f6ad9 4116static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
a1e2e31d 4117 struct ftrace_ops *op, struct pt_regs *pt_regs)
59df055f 4118{
eee8ded1 4119 struct ftrace_probe_ops *probe_ops;
7b60f3d8 4120 struct ftrace_func_probe *probe;
59df055f 4121
7b60f3d8
SRV
4122 probe = container_of(op, struct ftrace_func_probe, ops);
4123 probe_ops = probe->probe_ops;
59df055f
SR
4124
4125 /*
4126 * Disable preemption for these calls to prevent a RCU grace
4127 * period. This syncs the hash iteration and freeing of items
4128 * on the hash. rcu_read_lock is too dangerous here.
4129 */
5168ae50 4130 preempt_disable_notrace();
6e444319 4131 probe_ops->func(ip, parent_ip, probe->tr, probe_ops, probe->data);
5168ae50 4132 preempt_enable_notrace();
59df055f
SR
4133}
4134
41794f19
SRV
4135struct ftrace_func_map {
4136 struct ftrace_func_entry entry;
4137 void *data;
59df055f
SR
4138};
4139
41794f19
SRV
4140struct ftrace_func_mapper {
4141 struct ftrace_hash hash;
4142};
59df055f 4143
41794f19
SRV
4144/**
4145 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
4146 *
4147 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
4148 */
4149struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
59df055f 4150{
41794f19 4151 struct ftrace_hash *hash;
59df055f 4152
41794f19
SRV
4153 /*
4154 * The mapper is simply a ftrace_hash, but since the entries
4155 * in the hash are not ftrace_func_entry type, we define it
4156 * as a separate structure.
4157 */
4158 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4159 return (struct ftrace_func_mapper *)hash;
4160}
59df055f 4161
41794f19
SRV
4162/**
4163 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
4164 * @mapper: The mapper that has the ip maps
4165 * @ip: the instruction pointer to find the data for
4166 *
4167 * Returns the data mapped to @ip if found otherwise NULL. The return
4168 * is actually the address of the mapper data pointer. The address is
4169 * returned for use cases where the data is no bigger than a long, and
4170 * the user can use the data pointer as its data instead of having to
4171 * allocate more memory for the reference.
4172 */
4173void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
4174 unsigned long ip)
4175{
4176 struct ftrace_func_entry *entry;
4177 struct ftrace_func_map *map;
59df055f 4178
41794f19
SRV
4179 entry = ftrace_lookup_ip(&mapper->hash, ip);
4180 if (!entry)
4181 return NULL;
b848914c 4182
41794f19
SRV
4183 map = (struct ftrace_func_map *)entry;
4184 return &map->data;
59df055f
SR
4185}
4186
41794f19
SRV
4187/**
4188 * ftrace_func_mapper_add_ip - Map some data to an ip
4189 * @mapper: The mapper that has the ip maps
4190 * @ip: The instruction pointer address to map @data to
4191 * @data: The data to map to @ip
4192 *
4193 * Returns 0 on succes otherwise an error.
4194 */
4195int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
4196 unsigned long ip, void *data)
59df055f 4197{
41794f19
SRV
4198 struct ftrace_func_entry *entry;
4199 struct ftrace_func_map *map;
59df055f 4200
41794f19
SRV
4201 entry = ftrace_lookup_ip(&mapper->hash, ip);
4202 if (entry)
4203 return -EBUSY;
59df055f 4204
41794f19
SRV
4205 map = kmalloc(sizeof(*map), GFP_KERNEL);
4206 if (!map)
4207 return -ENOMEM;
59df055f 4208
41794f19
SRV
4209 map->entry.ip = ip;
4210 map->data = data;
b848914c 4211
41794f19 4212 __add_hash_entry(&mapper->hash, &map->entry);
59df055f 4213
41794f19
SRV
4214 return 0;
4215}
59df055f 4216
41794f19
SRV
4217/**
4218 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
4219 * @mapper: The mapper that has the ip maps
4220 * @ip: The instruction pointer address to remove the data from
4221 *
4222 * Returns the data if it is found, otherwise NULL.
4223 * Note, if the data pointer is used as the data itself, (see
4224 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
4225 * if the data pointer was set to zero.
4226 */
4227void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
4228 unsigned long ip)
59df055f 4229{
41794f19
SRV
4230 struct ftrace_func_entry *entry;
4231 struct ftrace_func_map *map;
4232 void *data;
4233
4234 entry = ftrace_lookup_ip(&mapper->hash, ip);
4235 if (!entry)
4236 return NULL;
4237
4238 map = (struct ftrace_func_map *)entry;
4239 data = map->data;
4240
4241 remove_hash_entry(&mapper->hash, entry);
59df055f 4242 kfree(entry);
41794f19
SRV
4243
4244 return data;
4245}
4246
4247/**
4248 * free_ftrace_func_mapper - free a mapping of ips and data
4249 * @mapper: The mapper that has the ip maps
4250 * @free_func: A function to be called on each data item.
4251 *
4252 * This is used to free the function mapper. The @free_func is optional
4253 * and can be used if the data needs to be freed as well.
4254 */
4255void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
4256 ftrace_mapper_func free_func)
4257{
4258 struct ftrace_func_entry *entry;
4259 struct ftrace_func_map *map;
4260 struct hlist_head *hhd;
4261 int size = 1 << mapper->hash.size_bits;
4262 int i;
4263
4264 if (free_func && mapper->hash.count) {
4265 for (i = 0; i < size; i++) {
4266 hhd = &mapper->hash.buckets[i];
4267 hlist_for_each_entry(entry, hhd, hlist) {
4268 map = (struct ftrace_func_map *)entry;
4269 free_func(map);
4270 }
4271 }
4272 }
4273 free_ftrace_hash(&mapper->hash);
4274}
4275
7b60f3d8
SRV
4276static void release_probe(struct ftrace_func_probe *probe)
4277{
4278 struct ftrace_probe_ops *probe_ops;
4279
4280 mutex_lock(&ftrace_lock);
4281
4282 WARN_ON(probe->ref <= 0);
4283
4284 /* Subtract the ref that was used to protect this instance */
4285 probe->ref--;
4286
4287 if (!probe->ref) {
4288 probe_ops = probe->probe_ops;
6e444319
SRV
4289 /*
4290 * Sending zero as ip tells probe_ops to free
4291 * the probe->data itself
4292 */
4293 if (probe_ops->free)
4294 probe_ops->free(probe_ops, probe->tr, 0, probe->data);
7b60f3d8
SRV
4295 list_del(&probe->list);
4296 kfree(probe);
4297 }
4298 mutex_unlock(&ftrace_lock);
4299}
4300
4301static void acquire_probe_locked(struct ftrace_func_probe *probe)
4302{
4303 /*
4304 * Add one ref to keep it from being freed when releasing the
4305 * ftrace_lock mutex.
4306 */
4307 probe->ref++;
59df055f
SR
4308}
4309
59df055f 4310int
04ec7bb6 4311register_ftrace_function_probe(char *glob, struct trace_array *tr,
7b60f3d8
SRV
4312 struct ftrace_probe_ops *probe_ops,
4313 void *data)
59df055f 4314{
1ec3a81a 4315 struct ftrace_func_entry *entry;
7b60f3d8 4316 struct ftrace_func_probe *probe;
1ec3a81a
SRV
4317 struct ftrace_hash **orig_hash;
4318 struct ftrace_hash *old_hash;
e1df4cb6 4319 struct ftrace_hash *hash;
59df055f 4320 int count = 0;
1ec3a81a 4321 int size;
e1df4cb6 4322 int ret;
1ec3a81a 4323 int i;
59df055f 4324
04ec7bb6 4325 if (WARN_ON(!tr))
59df055f
SR
4326 return -EINVAL;
4327
1ec3a81a
SRV
4328 /* We do not support '!' for function probes */
4329 if (WARN_ON(glob[0] == '!'))
59df055f 4330 return -EINVAL;
59df055f 4331
7485058e 4332
7b60f3d8
SRV
4333 mutex_lock(&ftrace_lock);
4334 /* Check if the probe_ops is already registered */
4335 list_for_each_entry(probe, &tr->func_probes, list) {
4336 if (probe->probe_ops == probe_ops)
4337 break;
e1df4cb6 4338 }
7b60f3d8
SRV
4339 if (&probe->list == &tr->func_probes) {
4340 probe = kzalloc(sizeof(*probe), GFP_KERNEL);
4341 if (!probe) {
4342 mutex_unlock(&ftrace_lock);
4343 return -ENOMEM;
4344 }
4345 probe->probe_ops = probe_ops;
4346 probe->ops.func = function_trace_probe_call;
4347 probe->tr = tr;
4348 ftrace_ops_init(&probe->ops);
4349 list_add(&probe->list, &tr->func_probes);
e1df4cb6 4350 }
59df055f 4351
7b60f3d8 4352 acquire_probe_locked(probe);
5ae0bf59 4353
7b60f3d8 4354 mutex_unlock(&ftrace_lock);
59df055f 4355
7b60f3d8 4356 mutex_lock(&probe->ops.func_hash->regex_lock);
546fece4 4357
7b60f3d8 4358 orig_hash = &probe->ops.func_hash->filter_hash;
1ec3a81a
SRV
4359 old_hash = *orig_hash;
4360 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
59df055f 4361
1ec3a81a 4362 ret = ftrace_match_records(hash, glob, strlen(glob));
59df055f 4363
1ec3a81a
SRV
4364 /* Nothing found? */
4365 if (!ret)
4366 ret = -EINVAL;
59df055f 4367
1ec3a81a
SRV
4368 if (ret < 0)
4369 goto out;
59df055f 4370
1ec3a81a
SRV
4371 size = 1 << hash->size_bits;
4372 for (i = 0; i < size; i++) {
4373 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4374 if (ftrace_lookup_ip(old_hash, entry->ip))
59df055f 4375 continue;
1ec3a81a
SRV
4376 /*
4377 * The caller might want to do something special
4378 * for each function we find. We call the callback
4379 * to give the caller an opportunity to do so.
4380 */
7b60f3d8
SRV
4381 if (probe_ops->init) {
4382 ret = probe_ops->init(probe_ops, tr,
6e444319
SRV
4383 entry->ip, data,
4384 &probe->data);
4385 if (ret < 0) {
4386 if (probe_ops->free && count)
4387 probe_ops->free(probe_ops, tr,
4388 0, probe->data);
4389 probe->data = NULL;
eee8ded1 4390 goto out;
6e444319 4391 }
59df055f 4392 }
1ec3a81a 4393 count++;
59df055f 4394 }
1ec3a81a 4395 }
59df055f 4396
1ec3a81a 4397 mutex_lock(&ftrace_lock);
59df055f 4398
7b60f3d8
SRV
4399 if (!count) {
4400 /* Nothing was added? */
4401 ret = -EINVAL;
4402 goto out_unlock;
4403 }
e1df4cb6 4404
7b60f3d8
SRV
4405 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4406 hash, 1);
1ec3a81a 4407 if (ret < 0)
8d70725e 4408 goto err_unlock;
8252ecf3 4409
7b60f3d8
SRV
4410 /* One ref for each new function traced */
4411 probe->ref += count;
8252ecf3 4412
7b60f3d8
SRV
4413 if (!(probe->ops.flags & FTRACE_OPS_FL_ENABLED))
4414 ret = ftrace_startup(&probe->ops, 0);
e1df4cb6 4415
59df055f 4416 out_unlock:
5ae0bf59 4417 mutex_unlock(&ftrace_lock);
8252ecf3 4418
3296fc4e 4419 if (!ret)
1ec3a81a 4420 ret = count;
5ae0bf59 4421 out:
7b60f3d8 4422 mutex_unlock(&probe->ops.func_hash->regex_lock);
e1df4cb6 4423 free_ftrace_hash(hash);
59df055f 4424
7b60f3d8 4425 release_probe(probe);
59df055f 4426
1ec3a81a 4427 return ret;
59df055f 4428
8d70725e 4429 err_unlock:
7b60f3d8 4430 if (!probe_ops->free || !count)
8d70725e
SRV
4431 goto out_unlock;
4432
4433 /* Failed to do the move, need to call the free functions */
4434 for (i = 0; i < size; i++) {
4435 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4436 if (ftrace_lookup_ip(old_hash, entry->ip))
4437 continue;
6e444319 4438 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
8d70725e
SRV
4439 }
4440 }
4441 goto out_unlock;
59df055f
SR
4442}
4443
d3d532d7 4444int
7b60f3d8
SRV
4445unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
4446 struct ftrace_probe_ops *probe_ops)
59df055f 4447{
82cc4fc2 4448 struct ftrace_ops_hash old_hash_ops;
eee8ded1 4449 struct ftrace_func_entry *entry;
7b60f3d8 4450 struct ftrace_func_probe *probe;
3ba00929 4451 struct ftrace_glob func_g;
1ec3a81a
SRV
4452 struct ftrace_hash **orig_hash;
4453 struct ftrace_hash *old_hash;
1ec3a81a 4454 struct ftrace_hash *hash = NULL;
b67bfe0d 4455 struct hlist_node *tmp;
eee8ded1 4456 struct hlist_head hhd;
59df055f 4457 char str[KSYM_SYMBOL_LEN];
7b60f3d8
SRV
4458 int count = 0;
4459 int i, ret = -ENODEV;
eee8ded1 4460 int size;
59df055f 4461
cbab567c 4462 if (!glob || !strlen(glob) || !strcmp(glob, "*"))
3ba00929 4463 func_g.search = NULL;
cbab567c 4464 else {
59df055f
SR
4465 int not;
4466
3ba00929
DS
4467 func_g.type = filter_parse_regex(glob, strlen(glob),
4468 &func_g.search, &not);
4469 func_g.len = strlen(func_g.search);
4470 func_g.search = glob;
59df055f 4471
b6887d79 4472 /* we do not support '!' for function probes */
59df055f 4473 if (WARN_ON(not))
d3d532d7 4474 return -EINVAL;
59df055f
SR
4475 }
4476
7b60f3d8
SRV
4477 mutex_lock(&ftrace_lock);
4478 /* Check if the probe_ops is already registered */
4479 list_for_each_entry(probe, &tr->func_probes, list) {
4480 if (probe->probe_ops == probe_ops)
4481 break;
59df055f 4482 }
7b60f3d8
SRV
4483 if (&probe->list == &tr->func_probes)
4484 goto err_unlock_ftrace;
4485
4486 ret = -EINVAL;
4487 if (!(probe->ops.flags & FTRACE_OPS_FL_INITIALIZED))
4488 goto err_unlock_ftrace;
4489
4490 acquire_probe_locked(probe);
4491
4492 mutex_unlock(&ftrace_lock);
59df055f 4493
7b60f3d8 4494 mutex_lock(&probe->ops.func_hash->regex_lock);
1ec3a81a 4495
7b60f3d8 4496 orig_hash = &probe->ops.func_hash->filter_hash;
1ec3a81a
SRV
4497 old_hash = *orig_hash;
4498
1ec3a81a
SRV
4499 if (ftrace_hash_empty(old_hash))
4500 goto out_unlock;
e1df4cb6 4501
82cc4fc2
SRV
4502 old_hash_ops.filter_hash = old_hash;
4503 /* Probes only have filters */
4504 old_hash_ops.notrace_hash = NULL;
4505
d3d532d7 4506 ret = -ENOMEM;
1ec3a81a 4507 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
e1df4cb6 4508 if (!hash)
e1df4cb6
SRRH
4509 goto out_unlock;
4510
eee8ded1 4511 INIT_HLIST_HEAD(&hhd);
59df055f 4512
eee8ded1
SRV
4513 size = 1 << hash->size_bits;
4514 for (i = 0; i < size; i++) {
4515 hlist_for_each_entry_safe(entry, tmp, &hash->buckets[i], hlist) {
59df055f 4516
3ba00929 4517 if (func_g.search) {
59df055f
SR
4518 kallsyms_lookup(entry->ip, NULL, NULL,
4519 NULL, str);
3ba00929 4520 if (!ftrace_match(str, &func_g))
59df055f
SR
4521 continue;
4522 }
7b60f3d8 4523 count++;
eee8ded1
SRV
4524 remove_hash_entry(hash, entry);
4525 hlist_add_head(&entry->hlist, &hhd);
59df055f
SR
4526 }
4527 }
d3d532d7
SRV
4528
4529 /* Nothing found? */
7b60f3d8 4530 if (!count) {
d3d532d7
SRV
4531 ret = -EINVAL;
4532 goto out_unlock;
4533 }
4534
3f2367ba 4535 mutex_lock(&ftrace_lock);
1ec3a81a 4536
7b60f3d8 4537 WARN_ON(probe->ref < count);
eee8ded1 4538
7b60f3d8 4539 probe->ref -= count;
1ec3a81a 4540
7b60f3d8
SRV
4541 if (ftrace_hash_empty(hash))
4542 ftrace_shutdown(&probe->ops, 0);
4543
4544 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
1ec3a81a 4545 hash, 1);
82cc4fc2
SRV
4546
4547 /* still need to update the function call sites */
1ec3a81a 4548 if (ftrace_enabled && !ftrace_hash_empty(hash))
7b60f3d8 4549 ftrace_run_modify_code(&probe->ops, FTRACE_UPDATE_CALLS,
82cc4fc2 4550 &old_hash_ops);
7818b388 4551 synchronize_sched();
3296fc4e 4552
eee8ded1
SRV
4553 hlist_for_each_entry_safe(entry, tmp, &hhd, hlist) {
4554 hlist_del(&entry->hlist);
7b60f3d8 4555 if (probe_ops->free)
6e444319 4556 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
eee8ded1 4557 kfree(entry);
7818b388 4558 }
3f2367ba 4559 mutex_unlock(&ftrace_lock);
3ba00929 4560
e1df4cb6 4561 out_unlock:
7b60f3d8 4562 mutex_unlock(&probe->ops.func_hash->regex_lock);
e1df4cb6 4563 free_ftrace_hash(hash);
59df055f 4564
7b60f3d8 4565 release_probe(probe);
59df055f 4566
7b60f3d8 4567 return ret;
59df055f 4568
7b60f3d8
SRV
4569 err_unlock_ftrace:
4570 mutex_unlock(&ftrace_lock);
d3d532d7 4571 return ret;
59df055f
SR
4572}
4573
a0e6369e
NR
4574void clear_ftrace_function_probes(struct trace_array *tr)
4575{
4576 struct ftrace_func_probe *probe, *n;
4577
4578 list_for_each_entry_safe(probe, n, &tr->func_probes, list)
4579 unregister_ftrace_function_probe_func(NULL, tr, probe->probe_ops);
4580}
4581
f6180773
SR
4582static LIST_HEAD(ftrace_commands);
4583static DEFINE_MUTEX(ftrace_cmd_mutex);
4584
38de93ab
TZ
4585/*
4586 * Currently we only register ftrace commands from __init, so mark this
4587 * __init too.
4588 */
4589__init int register_ftrace_command(struct ftrace_func_command *cmd)
f6180773
SR
4590{
4591 struct ftrace_func_command *p;
4592 int ret = 0;
4593
4594 mutex_lock(&ftrace_cmd_mutex);
4595 list_for_each_entry(p, &ftrace_commands, list) {
4596 if (strcmp(cmd->name, p->name) == 0) {
4597 ret = -EBUSY;
4598 goto out_unlock;
4599 }
4600 }
4601 list_add(&cmd->list, &ftrace_commands);
4602 out_unlock:
4603 mutex_unlock(&ftrace_cmd_mutex);
4604
4605 return ret;
4606}
4607
38de93ab
TZ
4608/*
4609 * Currently we only unregister ftrace commands from __init, so mark
4610 * this __init too.
4611 */
4612__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
f6180773
SR
4613{
4614 struct ftrace_func_command *p, *n;
4615 int ret = -ENODEV;
4616
4617 mutex_lock(&ftrace_cmd_mutex);
4618 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4619 if (strcmp(cmd->name, p->name) == 0) {
4620 ret = 0;
4621 list_del_init(&p->list);
4622 goto out_unlock;
4623 }
4624 }
4625 out_unlock:
4626 mutex_unlock(&ftrace_cmd_mutex);
4627
4628 return ret;
4629}
4630
04ec7bb6 4631static int ftrace_process_regex(struct ftrace_iterator *iter,
33dc9b12 4632 char *buff, int len, int enable)
64e7c440 4633{
04ec7bb6 4634 struct ftrace_hash *hash = iter->hash;
d2afd57a 4635 struct trace_array *tr = iter->ops->private;
f6180773 4636 char *func, *command, *next = buff;
6a24a244 4637 struct ftrace_func_command *p;
0aff1c0c 4638 int ret = -EINVAL;
64e7c440
SR
4639
4640 func = strsep(&next, ":");
4641
4642 if (!next) {
1cf41dd7 4643 ret = ftrace_match_records(hash, func, len);
b448c4e3
SR
4644 if (!ret)
4645 ret = -EINVAL;
4646 if (ret < 0)
4647 return ret;
4648 return 0;
64e7c440
SR
4649 }
4650
f6180773 4651 /* command found */
64e7c440
SR
4652
4653 command = strsep(&next, ":");
4654
04ec7bb6
SRV
4655 if (WARN_ON_ONCE(!tr))
4656 return -EINVAL;
4657
f6180773
SR
4658 mutex_lock(&ftrace_cmd_mutex);
4659 list_for_each_entry(p, &ftrace_commands, list) {
4660 if (strcmp(p->name, command) == 0) {
04ec7bb6 4661 ret = p->func(tr, hash, func, command, next, enable);
f6180773
SR
4662 goto out_unlock;
4663 }
64e7c440 4664 }
f6180773
SR
4665 out_unlock:
4666 mutex_unlock(&ftrace_cmd_mutex);
64e7c440 4667
f6180773 4668 return ret;
64e7c440
SR
4669}
4670
e309b41d 4671static ssize_t
41c52c0d
SR
4672ftrace_regex_write(struct file *file, const char __user *ubuf,
4673 size_t cnt, loff_t *ppos, int enable)
5072c59f
SR
4674{
4675 struct ftrace_iterator *iter;
689fd8b6 4676 struct trace_parser *parser;
4677 ssize_t ret, read;
5072c59f 4678
4ba7978e 4679 if (!cnt)
5072c59f
SR
4680 return 0;
4681
5072c59f
SR
4682 if (file->f_mode & FMODE_READ) {
4683 struct seq_file *m = file->private_data;
4684 iter = m->private;
4685 } else
4686 iter = file->private_data;
4687
f04f24fb 4688 if (unlikely(ftrace_disabled))
3f2367ba
MH
4689 return -ENODEV;
4690
4691 /* iter->hash is a local copy, so we don't need regex_lock */
f04f24fb 4692
689fd8b6 4693 parser = &iter->parser;
4694 read = trace_get_user(parser, ubuf, cnt, ppos);
5072c59f 4695
4ba7978e 4696 if (read >= 0 && trace_parser_loaded(parser) &&
689fd8b6 4697 !trace_parser_cont(parser)) {
04ec7bb6 4698 ret = ftrace_process_regex(iter, parser->buffer,
689fd8b6 4699 parser->idx, enable);
313254a9 4700 trace_parser_clear(parser);
7c088b51 4701 if (ret < 0)
3f2367ba 4702 goto out;
eda1e328 4703 }
5072c59f 4704
5072c59f 4705 ret = read;
3f2367ba 4706 out:
5072c59f
SR
4707 return ret;
4708}
4709
fc13cb0c 4710ssize_t
41c52c0d
SR
4711ftrace_filter_write(struct file *file, const char __user *ubuf,
4712 size_t cnt, loff_t *ppos)
4713{
4714 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4715}
4716
fc13cb0c 4717ssize_t
41c52c0d
SR
4718ftrace_notrace_write(struct file *file, const char __user *ubuf,
4719 size_t cnt, loff_t *ppos)
4720{
4721 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4722}
4723
33dc9b12 4724static int
647664ea
MH
4725ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4726{
4727 struct ftrace_func_entry *entry;
4728
4729 if (!ftrace_location(ip))
4730 return -EINVAL;
4731
4732 if (remove) {
4733 entry = ftrace_lookup_ip(hash, ip);
4734 if (!entry)
4735 return -ENOENT;
4736 free_hash_entry(hash, entry);
4737 return 0;
4738 }
4739
4740 return add_hash_entry(hash, ip);
4741}
4742
4743static int
4744ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4745 unsigned long ip, int remove, int reset, int enable)
41c52c0d 4746{
33dc9b12 4747 struct ftrace_hash **orig_hash;
f45948e8 4748 struct ftrace_hash *hash;
33dc9b12 4749 int ret;
f45948e8 4750
41c52c0d 4751 if (unlikely(ftrace_disabled))
33dc9b12 4752 return -ENODEV;
41c52c0d 4753
33b7f99c 4754 mutex_lock(&ops->func_hash->regex_lock);
3f2367ba 4755
f45948e8 4756 if (enable)
33b7f99c 4757 orig_hash = &ops->func_hash->filter_hash;
f45948e8 4758 else
33b7f99c 4759 orig_hash = &ops->func_hash->notrace_hash;
33dc9b12 4760
b972cc58
WN
4761 if (reset)
4762 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4763 else
4764 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4765
3f2367ba
MH
4766 if (!hash) {
4767 ret = -ENOMEM;
4768 goto out_regex_unlock;
4769 }
f45948e8 4770
ac483c44
JO
4771 if (buf && !ftrace_match_records(hash, buf, len)) {
4772 ret = -EINVAL;
4773 goto out_regex_unlock;
4774 }
647664ea
MH
4775 if (ip) {
4776 ret = ftrace_match_addr(hash, ip, remove);
4777 if (ret < 0)
4778 goto out_regex_unlock;
4779 }
33dc9b12
SR
4780
4781 mutex_lock(&ftrace_lock);
e16b35dd 4782 ret = ftrace_hash_move_and_update_ops(ops, orig_hash, hash, enable);
33dc9b12
SR
4783 mutex_unlock(&ftrace_lock);
4784
ac483c44 4785 out_regex_unlock:
33b7f99c 4786 mutex_unlock(&ops->func_hash->regex_lock);
33dc9b12
SR
4787
4788 free_ftrace_hash(hash);
4789 return ret;
41c52c0d
SR
4790}
4791
647664ea
MH
4792static int
4793ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4794 int reset, int enable)
4795{
4796 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4797}
4798
4799/**
4800 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4801 * @ops - the ops to set the filter with
4802 * @ip - the address to add to or remove from the filter.
4803 * @remove - non zero to remove the ip from the filter
4804 * @reset - non zero to reset all filters before applying this filter.
4805 *
4806 * Filters denote which functions should be enabled when tracing is enabled
4807 * If @ip is NULL, it failes to update filter.
4808 */
4809int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4810 int remove, int reset)
4811{
f04f24fb 4812 ftrace_ops_init(ops);
647664ea
MH
4813 return ftrace_set_addr(ops, ip, remove, reset, 1);
4814}
4815EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4816
d032ae89
JF
4817/**
4818 * ftrace_ops_set_global_filter - setup ops to use global filters
4819 * @ops - the ops which will use the global filters
4820 *
4821 * ftrace users who need global function trace filtering should call this.
4822 * It can set the global filter only if ops were not initialized before.
4823 */
4824void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
4825{
4826 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
4827 return;
4828
4829 ftrace_ops_init(ops);
4830 ops->func_hash = &global_ops.local_hash;
4831}
4832EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
4833
647664ea
MH
4834static int
4835ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4836 int reset, int enable)
4837{
4838 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4839}
4840
77a2b37d
SR
4841/**
4842 * ftrace_set_filter - set a function to filter on in ftrace
936e074b
SR
4843 * @ops - the ops to set the filter with
4844 * @buf - the string that holds the function filter text.
4845 * @len - the length of the string.
4846 * @reset - non zero to reset all filters before applying this filter.
4847 *
4848 * Filters denote which functions should be enabled when tracing is enabled.
4849 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4850 */
ac483c44 4851int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
936e074b
SR
4852 int len, int reset)
4853{
f04f24fb 4854 ftrace_ops_init(ops);
ac483c44 4855 return ftrace_set_regex(ops, buf, len, reset, 1);
936e074b
SR
4856}
4857EXPORT_SYMBOL_GPL(ftrace_set_filter);
4858
4859/**
4860 * ftrace_set_notrace - set a function to not trace in ftrace
4861 * @ops - the ops to set the notrace filter with
4862 * @buf - the string that holds the function notrace text.
4863 * @len - the length of the string.
4864 * @reset - non zero to reset all filters before applying this filter.
4865 *
4866 * Notrace Filters denote which functions should not be enabled when tracing
4867 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4868 * for tracing.
4869 */
ac483c44 4870int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
936e074b
SR
4871 int len, int reset)
4872{
f04f24fb 4873 ftrace_ops_init(ops);
ac483c44 4874 return ftrace_set_regex(ops, buf, len, reset, 0);
936e074b
SR
4875}
4876EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4877/**
8d1b065d 4878 * ftrace_set_global_filter - set a function to filter on with global tracers
77a2b37d
SR
4879 * @buf - the string that holds the function filter text.
4880 * @len - the length of the string.
4881 * @reset - non zero to reset all filters before applying this filter.
4882 *
4883 * Filters denote which functions should be enabled when tracing is enabled.
4884 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4885 */
936e074b 4886void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
77a2b37d 4887{
f45948e8 4888 ftrace_set_regex(&global_ops, buf, len, reset, 1);
41c52c0d 4889}
936e074b 4890EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4eebcc81 4891
41c52c0d 4892/**
8d1b065d 4893 * ftrace_set_global_notrace - set a function to not trace with global tracers
41c52c0d
SR
4894 * @buf - the string that holds the function notrace text.
4895 * @len - the length of the string.
4896 * @reset - non zero to reset all filters before applying this filter.
4897 *
4898 * Notrace Filters denote which functions should not be enabled when tracing
4899 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4900 * for tracing.
4901 */
936e074b 4902void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
41c52c0d 4903{
f45948e8 4904 ftrace_set_regex(&global_ops, buf, len, reset, 0);
77a2b37d 4905}
936e074b 4906EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
77a2b37d 4907
2af15d6a
SR
4908/*
4909 * command line interface to allow users to set filters on boot up.
4910 */
4911#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4912static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4913static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4914
f1ed7c74
SRRH
4915/* Used by function selftest to not test if filter is set */
4916bool ftrace_filter_param __initdata;
4917
2af15d6a
SR
4918static int __init set_ftrace_notrace(char *str)
4919{
f1ed7c74 4920 ftrace_filter_param = true;
75761cc1 4921 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
2af15d6a
SR
4922 return 1;
4923}
4924__setup("ftrace_notrace=", set_ftrace_notrace);
4925
4926static int __init set_ftrace_filter(char *str)
4927{
f1ed7c74 4928 ftrace_filter_param = true;
75761cc1 4929 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
2af15d6a
SR
4930 return 1;
4931}
4932__setup("ftrace_filter=", set_ftrace_filter);
4933
369bc18f 4934#ifdef CONFIG_FUNCTION_GRAPH_TRACER
f6060f46 4935static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
0d7d9a16 4936static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
b9b0c831 4937static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
801c29fd 4938
f3bea491
SRRH
4939static unsigned long save_global_trampoline;
4940static unsigned long save_global_flags;
4941
369bc18f
SA
4942static int __init set_graph_function(char *str)
4943{
06f43d66 4944 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
369bc18f
SA
4945 return 1;
4946}
4947__setup("ftrace_graph_filter=", set_graph_function);
4948
0d7d9a16
NK
4949static int __init set_graph_notrace_function(char *str)
4950{
4951 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4952 return 1;
4953}
4954__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4955
65a50c65
TB
4956static int __init set_graph_max_depth_function(char *str)
4957{
4958 if (!str)
4959 return 0;
4960 fgraph_max_depth = simple_strtoul(str, NULL, 0);
4961 return 1;
4962}
4963__setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
0d7d9a16
NK
4964
4965static void __init set_ftrace_early_graph(char *buf, int enable)
369bc18f
SA
4966{
4967 int ret;
4968 char *func;
b9b0c831 4969 struct ftrace_hash *hash;
0d7d9a16 4970
92ad18ec
SRV
4971 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4972 if (WARN_ON(!hash))
4973 return;
369bc18f
SA
4974
4975 while (buf) {
4976 func = strsep(&buf, ",");
4977 /* we allow only one expression at a time */
b9b0c831 4978 ret = ftrace_graph_set_hash(hash, func);
369bc18f
SA
4979 if (ret)
4980 printk(KERN_DEBUG "ftrace: function %s not "
4981 "traceable\n", func);
4982 }
92ad18ec
SRV
4983
4984 if (enable)
4985 ftrace_graph_hash = hash;
4986 else
4987 ftrace_graph_notrace_hash = hash;
369bc18f
SA
4988}
4989#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4990
2a85a37f
SR
4991void __init
4992ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
2af15d6a
SR
4993{
4994 char *func;
4995
f04f24fb
MH
4996 ftrace_ops_init(ops);
4997
2af15d6a
SR
4998 while (buf) {
4999 func = strsep(&buf, ",");
f45948e8 5000 ftrace_set_regex(ops, func, strlen(func), 0, enable);
2af15d6a
SR
5001 }
5002}
5003
5004static void __init set_ftrace_early_filters(void)
5005{
5006 if (ftrace_filter_buf[0])
2a85a37f 5007 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
2af15d6a 5008 if (ftrace_notrace_buf[0])
2a85a37f 5009 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
369bc18f
SA
5010#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5011 if (ftrace_graph_buf[0])
0d7d9a16
NK
5012 set_ftrace_early_graph(ftrace_graph_buf, 1);
5013 if (ftrace_graph_notrace_buf[0])
5014 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
369bc18f 5015#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2af15d6a
SR
5016}
5017
fc13cb0c 5018int ftrace_regex_release(struct inode *inode, struct file *file)
5072c59f
SR
5019{
5020 struct seq_file *m = (struct seq_file *)file->private_data;
5021 struct ftrace_iterator *iter;
33dc9b12 5022 struct ftrace_hash **orig_hash;
689fd8b6 5023 struct trace_parser *parser;
ed926f9b 5024 int filter_hash;
33dc9b12 5025 int ret;
5072c59f 5026
5072c59f
SR
5027 if (file->f_mode & FMODE_READ) {
5028 iter = m->private;
5072c59f
SR
5029 seq_release(inode, file);
5030 } else
5031 iter = file->private_data;
5032
689fd8b6 5033 parser = &iter->parser;
5034 if (trace_parser_loaded(parser)) {
5035 parser->buffer[parser->idx] = 0;
1cf41dd7 5036 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
5072c59f
SR
5037 }
5038
689fd8b6 5039 trace_parser_put(parser);
689fd8b6 5040
33b7f99c 5041 mutex_lock(&iter->ops->func_hash->regex_lock);
3f2367ba 5042
058e297d 5043 if (file->f_mode & FMODE_WRITE) {
ed926f9b
SR
5044 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
5045
8c08f0d5 5046 if (filter_hash) {
33b7f99c 5047 orig_hash = &iter->ops->func_hash->filter_hash;
8c08f0d5
SRV
5048 if (!list_empty(&iter->tr->mod_trace))
5049 iter->hash->flags |= FTRACE_HASH_FL_MOD;
5050 } else
33b7f99c 5051 orig_hash = &iter->ops->func_hash->notrace_hash;
33dc9b12 5052
058e297d 5053 mutex_lock(&ftrace_lock);
e16b35dd
SRV
5054 ret = ftrace_hash_move_and_update_ops(iter->ops, orig_hash,
5055 iter->hash, filter_hash);
058e297d 5056 mutex_unlock(&ftrace_lock);
c20489da
SRV
5057 } else {
5058 /* For read only, the hash is the ops hash */
5059 iter->hash = NULL;
058e297d 5060 }
3f2367ba 5061
33b7f99c 5062 mutex_unlock(&iter->ops->func_hash->regex_lock);
33dc9b12
SR
5063 free_ftrace_hash(iter->hash);
5064 kfree(iter);
058e297d 5065
5072c59f
SR
5066 return 0;
5067}
5068
5e2336a0 5069static const struct file_operations ftrace_avail_fops = {
5072c59f
SR
5070 .open = ftrace_avail_open,
5071 .read = seq_read,
5072 .llseek = seq_lseek,
3be04b47 5073 .release = seq_release_private,
5072c59f
SR
5074};
5075
647bcd03
SR
5076static const struct file_operations ftrace_enabled_fops = {
5077 .open = ftrace_enabled_open,
5078 .read = seq_read,
5079 .llseek = seq_lseek,
5080 .release = seq_release_private,
5081};
5082
5e2336a0 5083static const struct file_operations ftrace_filter_fops = {
5072c59f 5084 .open = ftrace_filter_open,
850a80cf 5085 .read = seq_read,
5072c59f 5086 .write = ftrace_filter_write,
098c879e 5087 .llseek = tracing_lseek,
1cf41dd7 5088 .release = ftrace_regex_release,
5072c59f
SR
5089};
5090
5e2336a0 5091static const struct file_operations ftrace_notrace_fops = {
41c52c0d 5092 .open = ftrace_notrace_open,
850a80cf 5093 .read = seq_read,
41c52c0d 5094 .write = ftrace_notrace_write,
098c879e 5095 .llseek = tracing_lseek,
1cf41dd7 5096 .release = ftrace_regex_release,
41c52c0d
SR
5097};
5098
ea4e2bc4
SR
5099#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5100
5101static DEFINE_MUTEX(graph_lock);
5102
b9b0c831
NK
5103struct ftrace_hash *ftrace_graph_hash = EMPTY_HASH;
5104struct ftrace_hash *ftrace_graph_notrace_hash = EMPTY_HASH;
5105
5106enum graph_filter_type {
5107 GRAPH_FILTER_NOTRACE = 0,
5108 GRAPH_FILTER_FUNCTION,
5109};
ea4e2bc4 5110
555fc781
SRV
5111#define FTRACE_GRAPH_EMPTY ((void *)1)
5112
faf982a6 5113struct ftrace_graph_data {
e704eff3
SRV
5114 struct ftrace_hash *hash;
5115 struct ftrace_func_entry *entry;
5116 int idx; /* for hash table iteration */
5117 enum graph_filter_type type;
5118 struct ftrace_hash *new_hash;
5119 const struct seq_operations *seq_ops;
5120 struct trace_parser parser;
faf982a6
NK
5121};
5122
ea4e2bc4 5123static void *
85951842 5124__g_next(struct seq_file *m, loff_t *pos)
ea4e2bc4 5125{
faf982a6 5126 struct ftrace_graph_data *fgd = m->private;
b9b0c831
NK
5127 struct ftrace_func_entry *entry = fgd->entry;
5128 struct hlist_head *head;
5129 int i, idx = fgd->idx;
faf982a6 5130
b9b0c831 5131 if (*pos >= fgd->hash->count)
ea4e2bc4 5132 return NULL;
b9b0c831
NK
5133
5134 if (entry) {
5135 hlist_for_each_entry_continue(entry, hlist) {
5136 fgd->entry = entry;
5137 return entry;
5138 }
5139
5140 idx++;
5141 }
5142
5143 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
5144 head = &fgd->hash->buckets[i];
5145 hlist_for_each_entry(entry, head, hlist) {
5146 fgd->entry = entry;
5147 fgd->idx = i;
5148 return entry;
5149 }
5150 }
5151 return NULL;
85951842 5152}
ea4e2bc4 5153
85951842
LZ
5154static void *
5155g_next(struct seq_file *m, void *v, loff_t *pos)
5156{
5157 (*pos)++;
5158 return __g_next(m, pos);
ea4e2bc4
SR
5159}
5160
5161static void *g_start(struct seq_file *m, loff_t *pos)
5162{
faf982a6
NK
5163 struct ftrace_graph_data *fgd = m->private;
5164
ea4e2bc4
SR
5165 mutex_lock(&graph_lock);
5166
649b988b
SRV
5167 if (fgd->type == GRAPH_FILTER_FUNCTION)
5168 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5169 lockdep_is_held(&graph_lock));
5170 else
5171 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5172 lockdep_is_held(&graph_lock));
5173
f9349a8f 5174 /* Nothing, tell g_show to print all functions are enabled */
b9b0c831 5175 if (ftrace_hash_empty(fgd->hash) && !*pos)
555fc781 5176 return FTRACE_GRAPH_EMPTY;
f9349a8f 5177
b9b0c831
NK
5178 fgd->idx = 0;
5179 fgd->entry = NULL;
85951842 5180 return __g_next(m, pos);
ea4e2bc4
SR
5181}
5182
5183static void g_stop(struct seq_file *m, void *p)
5184{
5185 mutex_unlock(&graph_lock);
5186}
5187
5188static int g_show(struct seq_file *m, void *v)
5189{
b9b0c831 5190 struct ftrace_func_entry *entry = v;
ea4e2bc4 5191
b9b0c831 5192 if (!entry)
ea4e2bc4
SR
5193 return 0;
5194
555fc781 5195 if (entry == FTRACE_GRAPH_EMPTY) {
280d1429
NK
5196 struct ftrace_graph_data *fgd = m->private;
5197
b9b0c831 5198 if (fgd->type == GRAPH_FILTER_FUNCTION)
fa6f0cc7 5199 seq_puts(m, "#### all functions enabled ####\n");
280d1429 5200 else
fa6f0cc7 5201 seq_puts(m, "#### no functions disabled ####\n");
f9349a8f
FW
5202 return 0;
5203 }
5204
b9b0c831 5205 seq_printf(m, "%ps\n", (void *)entry->ip);
ea4e2bc4
SR
5206
5207 return 0;
5208}
5209
88e9d34c 5210static const struct seq_operations ftrace_graph_seq_ops = {
ea4e2bc4
SR
5211 .start = g_start,
5212 .next = g_next,
5213 .stop = g_stop,
5214 .show = g_show,
5215};
5216
5217static int
faf982a6
NK
5218__ftrace_graph_open(struct inode *inode, struct file *file,
5219 struct ftrace_graph_data *fgd)
ea4e2bc4
SR
5220{
5221 int ret = 0;
b9b0c831 5222 struct ftrace_hash *new_hash = NULL;
ea4e2bc4 5223
b9b0c831
NK
5224 if (file->f_mode & FMODE_WRITE) {
5225 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
5226
e704eff3
SRV
5227 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
5228 return -ENOMEM;
5229
b9b0c831
NK
5230 if (file->f_flags & O_TRUNC)
5231 new_hash = alloc_ftrace_hash(size_bits);
5232 else
5233 new_hash = alloc_and_copy_ftrace_hash(size_bits,
5234 fgd->hash);
5235 if (!new_hash) {
5236 ret = -ENOMEM;
5237 goto out;
5238 }
ea4e2bc4
SR
5239 }
5240
faf982a6 5241 if (file->f_mode & FMODE_READ) {
b9b0c831 5242 ret = seq_open(file, &ftrace_graph_seq_ops);
faf982a6
NK
5243 if (!ret) {
5244 struct seq_file *m = file->private_data;
5245 m->private = fgd;
b9b0c831
NK
5246 } else {
5247 /* Failed */
5248 free_ftrace_hash(new_hash);
5249 new_hash = NULL;
faf982a6
NK
5250 }
5251 } else
5252 file->private_data = fgd;
ea4e2bc4 5253
b9b0c831 5254out:
e704eff3
SRV
5255 if (ret < 0 && file->f_mode & FMODE_WRITE)
5256 trace_parser_put(&fgd->parser);
5257
b9b0c831 5258 fgd->new_hash = new_hash;
649b988b
SRV
5259
5260 /*
5261 * All uses of fgd->hash must be taken with the graph_lock
5262 * held. The graph_lock is going to be released, so force
5263 * fgd->hash to be reinitialized when it is taken again.
5264 */
5265 fgd->hash = NULL;
5266
ea4e2bc4
SR
5267 return ret;
5268}
5269
faf982a6
NK
5270static int
5271ftrace_graph_open(struct inode *inode, struct file *file)
5272{
5273 struct ftrace_graph_data *fgd;
b9b0c831 5274 int ret;
faf982a6
NK
5275
5276 if (unlikely(ftrace_disabled))
5277 return -ENODEV;
5278
5279 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5280 if (fgd == NULL)
5281 return -ENOMEM;
5282
b9b0c831
NK
5283 mutex_lock(&graph_lock);
5284
649b988b
SRV
5285 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5286 lockdep_is_held(&graph_lock));
b9b0c831 5287 fgd->type = GRAPH_FILTER_FUNCTION;
faf982a6
NK
5288 fgd->seq_ops = &ftrace_graph_seq_ops;
5289
b9b0c831
NK
5290 ret = __ftrace_graph_open(inode, file, fgd);
5291 if (ret < 0)
5292 kfree(fgd);
5293
5294 mutex_unlock(&graph_lock);
5295 return ret;
faf982a6
NK
5296}
5297
29ad23b0
NK
5298static int
5299ftrace_graph_notrace_open(struct inode *inode, struct file *file)
5300{
5301 struct ftrace_graph_data *fgd;
b9b0c831 5302 int ret;
29ad23b0
NK
5303
5304 if (unlikely(ftrace_disabled))
5305 return -ENODEV;
5306
5307 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5308 if (fgd == NULL)
5309 return -ENOMEM;
5310
b9b0c831
NK
5311 mutex_lock(&graph_lock);
5312
649b988b
SRV
5313 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5314 lockdep_is_held(&graph_lock));
b9b0c831 5315 fgd->type = GRAPH_FILTER_NOTRACE;
29ad23b0
NK
5316 fgd->seq_ops = &ftrace_graph_seq_ops;
5317
b9b0c831
NK
5318 ret = __ftrace_graph_open(inode, file, fgd);
5319 if (ret < 0)
5320 kfree(fgd);
5321
5322 mutex_unlock(&graph_lock);
5323 return ret;
29ad23b0
NK
5324}
5325
87827111
LZ
5326static int
5327ftrace_graph_release(struct inode *inode, struct file *file)
5328{
b9b0c831 5329 struct ftrace_graph_data *fgd;
e704eff3
SRV
5330 struct ftrace_hash *old_hash, *new_hash;
5331 struct trace_parser *parser;
5332 int ret = 0;
b9b0c831 5333
faf982a6
NK
5334 if (file->f_mode & FMODE_READ) {
5335 struct seq_file *m = file->private_data;
5336
b9b0c831 5337 fgd = m->private;
87827111 5338 seq_release(inode, file);
faf982a6 5339 } else {
b9b0c831 5340 fgd = file->private_data;
faf982a6
NK
5341 }
5342
e704eff3
SRV
5343
5344 if (file->f_mode & FMODE_WRITE) {
5345
5346 parser = &fgd->parser;
5347
5348 if (trace_parser_loaded((parser))) {
5349 parser->buffer[parser->idx] = 0;
5350 ret = ftrace_graph_set_hash(fgd->new_hash,
5351 parser->buffer);
5352 }
5353
5354 trace_parser_put(parser);
5355
5356 new_hash = __ftrace_hash_move(fgd->new_hash);
5357 if (!new_hash) {
5358 ret = -ENOMEM;
5359 goto out;
5360 }
5361
5362 mutex_lock(&graph_lock);
5363
5364 if (fgd->type == GRAPH_FILTER_FUNCTION) {
5365 old_hash = rcu_dereference_protected(ftrace_graph_hash,
5366 lockdep_is_held(&graph_lock));
5367 rcu_assign_pointer(ftrace_graph_hash, new_hash);
5368 } else {
5369 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5370 lockdep_is_held(&graph_lock));
5371 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
5372 }
5373
5374 mutex_unlock(&graph_lock);
5375
5376 /* Wait till all users are no longer using the old hash */
5377 synchronize_sched();
5378
5379 free_ftrace_hash(old_hash);
5380 }
5381
5382 out:
f9797c2f 5383 free_ftrace_hash(fgd->new_hash);
b9b0c831
NK
5384 kfree(fgd);
5385
e704eff3 5386 return ret;
87827111
LZ
5387}
5388
ea4e2bc4 5389static int
b9b0c831 5390ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
ea4e2bc4 5391{
3ba00929 5392 struct ftrace_glob func_g;
ea4e2bc4
SR
5393 struct dyn_ftrace *rec;
5394 struct ftrace_page *pg;
b9b0c831 5395 struct ftrace_func_entry *entry;
c7c6b1fe 5396 int fail = 1;
3ba00929 5397 int not;
ea4e2bc4 5398
f9349a8f 5399 /* decode regex */
3ba00929
DS
5400 func_g.type = filter_parse_regex(buffer, strlen(buffer),
5401 &func_g.search, &not);
f9349a8f 5402
3ba00929 5403 func_g.len = strlen(func_g.search);
f9349a8f 5404
52baf119 5405 mutex_lock(&ftrace_lock);
45a4a237
SR
5406
5407 if (unlikely(ftrace_disabled)) {
5408 mutex_unlock(&ftrace_lock);
5409 return -ENODEV;
5410 }
5411
265c831c
SR
5412 do_for_each_ftrace_rec(pg, rec) {
5413
546fece4
SRRH
5414 if (rec->flags & FTRACE_FL_DISABLED)
5415 continue;
5416
0b507e1e 5417 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
b9b0c831 5418 entry = ftrace_lookup_ip(hash, rec->ip);
c7c6b1fe
LZ
5419
5420 if (!not) {
5421 fail = 0;
b9b0c831
NK
5422
5423 if (entry)
5424 continue;
5425 if (add_hash_entry(hash, rec->ip) < 0)
5426 goto out;
c7c6b1fe 5427 } else {
b9b0c831
NK
5428 if (entry) {
5429 free_hash_entry(hash, entry);
c7c6b1fe
LZ
5430 fail = 0;
5431 }
5432 }
ea4e2bc4 5433 }
265c831c 5434 } while_for_each_ftrace_rec();
c7c6b1fe 5435out:
52baf119 5436 mutex_unlock(&ftrace_lock);
ea4e2bc4 5437
c7c6b1fe
LZ
5438 if (fail)
5439 return -EINVAL;
5440
c7c6b1fe 5441 return 0;
ea4e2bc4
SR
5442}
5443
5444static ssize_t
5445ftrace_graph_write(struct file *file, const char __user *ubuf,
5446 size_t cnt, loff_t *ppos)
5447{
6a10108b 5448 ssize_t read, ret = 0;
faf982a6 5449 struct ftrace_graph_data *fgd = file->private_data;
e704eff3 5450 struct trace_parser *parser;
ea4e2bc4 5451
c7c6b1fe 5452 if (!cnt)
ea4e2bc4
SR
5453 return 0;
5454
ae98d27a
SRV
5455 /* Read mode uses seq functions */
5456 if (file->f_mode & FMODE_READ) {
5457 struct seq_file *m = file->private_data;
5458 fgd = m->private;
5459 }
5460
e704eff3 5461 parser = &fgd->parser;
ea4e2bc4 5462
e704eff3 5463 read = trace_get_user(parser, ubuf, cnt, ppos);
689fd8b6 5464
e704eff3
SRV
5465 if (read >= 0 && trace_parser_loaded(parser) &&
5466 !trace_parser_cont(parser)) {
6a10108b 5467
b9b0c831 5468 ret = ftrace_graph_set_hash(fgd->new_hash,
e704eff3
SRV
5469 parser->buffer);
5470 trace_parser_clear(parser);
ea4e2bc4 5471 }
ea4e2bc4 5472
6a10108b
NK
5473 if (!ret)
5474 ret = read;
1eb90f13 5475
ea4e2bc4
SR
5476 return ret;
5477}
5478
5479static const struct file_operations ftrace_graph_fops = {
87827111
LZ
5480 .open = ftrace_graph_open,
5481 .read = seq_read,
5482 .write = ftrace_graph_write,
098c879e 5483 .llseek = tracing_lseek,
87827111 5484 .release = ftrace_graph_release,
ea4e2bc4 5485};
29ad23b0
NK
5486
5487static const struct file_operations ftrace_graph_notrace_fops = {
5488 .open = ftrace_graph_notrace_open,
5489 .read = seq_read,
5490 .write = ftrace_graph_write,
098c879e 5491 .llseek = tracing_lseek,
29ad23b0
NK
5492 .release = ftrace_graph_release,
5493};
ea4e2bc4
SR
5494#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5495
591dffda
SRRH
5496void ftrace_create_filter_files(struct ftrace_ops *ops,
5497 struct dentry *parent)
5498{
5499
5500 trace_create_file("set_ftrace_filter", 0644, parent,
5501 ops, &ftrace_filter_fops);
5502
5503 trace_create_file("set_ftrace_notrace", 0644, parent,
5504 ops, &ftrace_notrace_fops);
5505}
5506
5507/*
5508 * The name "destroy_filter_files" is really a misnomer. Although
5509 * in the future, it may actualy delete the files, but this is
5510 * really intended to make sure the ops passed in are disabled
5511 * and that when this function returns, the caller is free to
5512 * free the ops.
5513 *
5514 * The "destroy" name is only to match the "create" name that this
5515 * should be paired with.
5516 */
5517void ftrace_destroy_filter_files(struct ftrace_ops *ops)
5518{
5519 mutex_lock(&ftrace_lock);
5520 if (ops->flags & FTRACE_OPS_FL_ENABLED)
5521 ftrace_shutdown(ops, 0);
5522 ops->flags |= FTRACE_OPS_FL_DELETED;
5523 mutex_unlock(&ftrace_lock);
5524}
5525
8434dc93 5526static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
5072c59f 5527{
5072c59f 5528
5452af66
FW
5529 trace_create_file("available_filter_functions", 0444,
5530 d_tracer, NULL, &ftrace_avail_fops);
5072c59f 5531
647bcd03
SR
5532 trace_create_file("enabled_functions", 0444,
5533 d_tracer, NULL, &ftrace_enabled_fops);
5534
591dffda 5535 ftrace_create_filter_files(&global_ops, d_tracer);
ad90c0e3 5536
ea4e2bc4 5537#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5452af66 5538 trace_create_file("set_graph_function", 0444, d_tracer,
ea4e2bc4
SR
5539 NULL,
5540 &ftrace_graph_fops);
29ad23b0
NK
5541 trace_create_file("set_graph_notrace", 0444, d_tracer,
5542 NULL,
5543 &ftrace_graph_notrace_fops);
ea4e2bc4
SR
5544#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5545
5072c59f
SR
5546 return 0;
5547}
5548
9fd49328 5549static int ftrace_cmp_ips(const void *a, const void *b)
68950619 5550{
9fd49328
SR
5551 const unsigned long *ipa = a;
5552 const unsigned long *ipb = b;
68950619 5553
9fd49328
SR
5554 if (*ipa > *ipb)
5555 return 1;
5556 if (*ipa < *ipb)
5557 return -1;
5558 return 0;
5559}
5560
5cb084bb 5561static int ftrace_process_locs(struct module *mod,
31e88909 5562 unsigned long *start,
68bf21aa
SR
5563 unsigned long *end)
5564{
706c81f8 5565 struct ftrace_page *start_pg;
a7900875 5566 struct ftrace_page *pg;
706c81f8 5567 struct dyn_ftrace *rec;
a7900875 5568 unsigned long count;
68bf21aa
SR
5569 unsigned long *p;
5570 unsigned long addr;
4376cac6 5571 unsigned long flags = 0; /* Shut up gcc */
a7900875
SR
5572 int ret = -ENOMEM;
5573
5574 count = end - start;
5575
5576 if (!count)
5577 return 0;
5578
9fd49328 5579 sort(start, count, sizeof(*start),
6db02903 5580 ftrace_cmp_ips, NULL);
9fd49328 5581
706c81f8
SR
5582 start_pg = ftrace_allocate_pages(count);
5583 if (!start_pg)
a7900875 5584 return -ENOMEM;
68bf21aa 5585
e6ea44e9 5586 mutex_lock(&ftrace_lock);
a7900875 5587
32082309
SR
5588 /*
5589 * Core and each module needs their own pages, as
5590 * modules will free them when they are removed.
5591 * Force a new page to be allocated for modules.
5592 */
a7900875
SR
5593 if (!mod) {
5594 WARN_ON(ftrace_pages || ftrace_pages_start);
5595 /* First initialization */
706c81f8 5596 ftrace_pages = ftrace_pages_start = start_pg;
a7900875 5597 } else {
32082309 5598 if (!ftrace_pages)
a7900875 5599 goto out;
32082309 5600
a7900875
SR
5601 if (WARN_ON(ftrace_pages->next)) {
5602 /* Hmm, we have free pages? */
5603 while (ftrace_pages->next)
5604 ftrace_pages = ftrace_pages->next;
32082309 5605 }
a7900875 5606
706c81f8 5607 ftrace_pages->next = start_pg;
32082309
SR
5608 }
5609
68bf21aa 5610 p = start;
706c81f8 5611 pg = start_pg;
68bf21aa
SR
5612 while (p < end) {
5613 addr = ftrace_call_adjust(*p++);
20e5227e
SR
5614 /*
5615 * Some architecture linkers will pad between
5616 * the different mcount_loc sections of different
5617 * object files to satisfy alignments.
5618 * Skip any NULL pointers.
5619 */
5620 if (!addr)
5621 continue;
706c81f8
SR
5622
5623 if (pg->index == pg->size) {
5624 /* We should have allocated enough */
5625 if (WARN_ON(!pg->next))
5626 break;
5627 pg = pg->next;
5628 }
5629
5630 rec = &pg->records[pg->index++];
5631 rec->ip = addr;
68bf21aa
SR
5632 }
5633
706c81f8
SR
5634 /* We should have used all pages */
5635 WARN_ON(pg->next);
5636
5637 /* Assign the last page to ftrace_pages */
5638 ftrace_pages = pg;
5639
a4f18ed1 5640 /*
4376cac6
SR
5641 * We only need to disable interrupts on start up
5642 * because we are modifying code that an interrupt
5643 * may execute, and the modification is not atomic.
5644 * But for modules, nothing runs the code we modify
5645 * until we are finished with it, and there's no
5646 * reason to cause large interrupt latencies while we do it.
a4f18ed1 5647 */
4376cac6
SR
5648 if (!mod)
5649 local_irq_save(flags);
1dc43cf0 5650 ftrace_update_code(mod, start_pg);
4376cac6
SR
5651 if (!mod)
5652 local_irq_restore(flags);
a7900875
SR
5653 ret = 0;
5654 out:
e6ea44e9 5655 mutex_unlock(&ftrace_lock);
68bf21aa 5656
a7900875 5657 return ret;
68bf21aa
SR
5658}
5659
93eb677d 5660#ifdef CONFIG_MODULES
32082309
SR
5661
5662#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
5663
b7ffffbb
SRRH
5664static int referenced_filters(struct dyn_ftrace *rec)
5665{
5666 struct ftrace_ops *ops;
5667 int cnt = 0;
5668
5669 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
5670 if (ops_references_rec(ops, rec))
5671 cnt++;
5672 }
5673
5674 return cnt;
5675}
5676
e7247a15 5677void ftrace_release_mod(struct module *mod)
93eb677d
SR
5678{
5679 struct dyn_ftrace *rec;
32082309 5680 struct ftrace_page **last_pg;
93eb677d 5681 struct ftrace_page *pg;
a7900875 5682 int order;
93eb677d 5683
45a4a237
SR
5684 mutex_lock(&ftrace_lock);
5685
e7247a15 5686 if (ftrace_disabled)
45a4a237 5687 goto out_unlock;
93eb677d 5688
32082309
SR
5689 /*
5690 * Each module has its own ftrace_pages, remove
5691 * them from the list.
5692 */
5693 last_pg = &ftrace_pages_start;
5694 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5695 rec = &pg->records[0];
e7247a15 5696 if (within_module_core(rec->ip, mod)) {
93eb677d 5697 /*
32082309
SR
5698 * As core pages are first, the first
5699 * page should never be a module page.
93eb677d 5700 */
32082309
SR
5701 if (WARN_ON(pg == ftrace_pages_start))
5702 goto out_unlock;
5703
5704 /* Check if we are deleting the last page */
5705 if (pg == ftrace_pages)
5706 ftrace_pages = next_to_ftrace_page(last_pg);
5707
5708 *last_pg = pg->next;
a7900875
SR
5709 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5710 free_pages((unsigned long)pg->records, order);
5711 kfree(pg);
32082309
SR
5712 } else
5713 last_pg = &pg->next;
5714 }
45a4a237 5715 out_unlock:
93eb677d
SR
5716 mutex_unlock(&ftrace_lock);
5717}
5718
7dcd182b 5719void ftrace_module_enable(struct module *mod)
b7ffffbb
SRRH
5720{
5721 struct dyn_ftrace *rec;
5722 struct ftrace_page *pg;
5723
5724 mutex_lock(&ftrace_lock);
5725
5726 if (ftrace_disabled)
5727 goto out_unlock;
5728
5729 /*
5730 * If the tracing is enabled, go ahead and enable the record.
5731 *
5732 * The reason not to enable the record immediatelly is the
5733 * inherent check of ftrace_make_nop/ftrace_make_call for
5734 * correct previous instructions. Making first the NOP
5735 * conversion puts the module to the correct state, thus
5736 * passing the ftrace_make_call check.
5737 *
5738 * We also delay this to after the module code already set the
5739 * text to read-only, as we now need to set it back to read-write
5740 * so that we can modify the text.
5741 */
5742 if (ftrace_start_up)
5743 ftrace_arch_code_modify_prepare();
5744
5745 do_for_each_ftrace_rec(pg, rec) {
5746 int cnt;
5747 /*
5748 * do_for_each_ftrace_rec() is a double loop.
5749 * module text shares the pg. If a record is
5750 * not part of this module, then skip this pg,
5751 * which the "break" will do.
5752 */
5753 if (!within_module_core(rec->ip, mod))
5754 break;
5755
5756 cnt = 0;
5757
5758 /*
5759 * When adding a module, we need to check if tracers are
5760 * currently enabled and if they are, and can trace this record,
5761 * we need to enable the module functions as well as update the
5762 * reference counts for those function records.
5763 */
5764 if (ftrace_start_up)
5765 cnt += referenced_filters(rec);
5766
5767 /* This clears FTRACE_FL_DISABLED */
5768 rec->flags = cnt;
5769
5770 if (ftrace_start_up && cnt) {
5771 int failed = __ftrace_replace_code(rec, 1);
5772 if (failed) {
5773 ftrace_bug(failed, rec);
5774 goto out_loop;
5775 }
5776 }
5777
5778 } while_for_each_ftrace_rec();
5779
5780 out_loop:
5781 if (ftrace_start_up)
5782 ftrace_arch_code_modify_post_process();
5783
5784 out_unlock:
5785 mutex_unlock(&ftrace_lock);
d7fbf8df
SRV
5786
5787 process_cached_mods(mod->name);
b7ffffbb
SRRH
5788}
5789
b6b71f66 5790void ftrace_module_init(struct module *mod)
90d595fe 5791{
97e9b4fc 5792 if (ftrace_disabled || !mod->num_ftrace_callsites)
fed1939c 5793 return;
90d595fe 5794
97e9b4fc
SRRH
5795 ftrace_process_locs(mod, mod->ftrace_callsites,
5796 mod->ftrace_callsites + mod->num_ftrace_callsites);
8c189ea6 5797}
93eb677d
SR
5798#endif /* CONFIG_MODULES */
5799
b80f0f6c 5800void __init ftrace_free_init_mem(void)
42c269c8 5801{
b80f0f6c
SRV
5802 unsigned long start = (unsigned long)(&__init_begin);
5803 unsigned long end = (unsigned long)(&__init_end);
42c269c8
SRV
5804 struct ftrace_page **last_pg = &ftrace_pages_start;
5805 struct ftrace_page *pg;
5806 struct dyn_ftrace *rec;
5807 struct dyn_ftrace key;
5808 int order;
5809
5810 key.ip = start;
5811 key.flags = end; /* overload flags, as it is unsigned long */
5812
5813 mutex_lock(&ftrace_lock);
5814
5815 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
5816 if (end < pg->records[0].ip ||
5817 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
5818 continue;
5819 again:
5820 rec = bsearch(&key, pg->records, pg->index,
5821 sizeof(struct dyn_ftrace),
5822 ftrace_cmp_recs);
5823 if (!rec)
5824 continue;
5825 pg->index--;
5826 if (!pg->index) {
5827 *last_pg = pg->next;
5828 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5829 free_pages((unsigned long)pg->records, order);
5830 kfree(pg);
5831 pg = container_of(last_pg, struct ftrace_page, next);
5832 if (!(*last_pg))
5833 ftrace_pages = pg;
5834 continue;
5835 }
5836 memmove(rec, rec + 1,
5837 (pg->index - (rec - pg->records)) * sizeof(*rec));
5838 /* More than one function may be in this block */
5839 goto again;
5840 }
5841 mutex_unlock(&ftrace_lock);
5842}
5843
68bf21aa
SR
5844void __init ftrace_init(void)
5845{
1dc43cf0
JS
5846 extern unsigned long __start_mcount_loc[];
5847 extern unsigned long __stop_mcount_loc[];
3a36cb11 5848 unsigned long count, flags;
68bf21aa
SR
5849 int ret;
5850
68bf21aa 5851 local_irq_save(flags);
3a36cb11 5852 ret = ftrace_dyn_arch_init();
68bf21aa 5853 local_irq_restore(flags);
af64a7cb 5854 if (ret)
68bf21aa
SR
5855 goto failed;
5856
5857 count = __stop_mcount_loc - __start_mcount_loc;
c867ccd8
JS
5858 if (!count) {
5859 pr_info("ftrace: No functions to be traced?\n");
68bf21aa 5860 goto failed;
c867ccd8
JS
5861 }
5862
5863 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5864 count, count / ENTRIES_PER_PAGE + 1);
68bf21aa
SR
5865
5866 last_ftrace_enabled = ftrace_enabled = 1;
5867
5cb084bb 5868 ret = ftrace_process_locs(NULL,
31e88909 5869 __start_mcount_loc,
68bf21aa
SR
5870 __stop_mcount_loc);
5871
2af15d6a
SR
5872 set_ftrace_early_filters();
5873
68bf21aa
SR
5874 return;
5875 failed:
5876 ftrace_disabled = 1;
5877}
68bf21aa 5878
f3bea491
SRRH
5879/* Do nothing if arch does not support this */
5880void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5881{
5882}
5883
5884static void ftrace_update_trampoline(struct ftrace_ops *ops)
5885{
f3bea491
SRRH
5886 arch_ftrace_update_trampoline(ops);
5887}
5888
04ec7bb6
SRV
5889void ftrace_init_trace_array(struct trace_array *tr)
5890{
5891 INIT_LIST_HEAD(&tr->func_probes);
673feb9d
SRV
5892 INIT_LIST_HEAD(&tr->mod_trace);
5893 INIT_LIST_HEAD(&tr->mod_notrace);
04ec7bb6 5894}
3d083395 5895#else
0b6e4d56 5896
2b499381 5897static struct ftrace_ops global_ops = {
bd69c30b 5898 .func = ftrace_stub,
e3eea140
SRRH
5899 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5900 FTRACE_OPS_FL_INITIALIZED |
5901 FTRACE_OPS_FL_PID,
bd69c30b
SR
5902};
5903
0b6e4d56
FW
5904static int __init ftrace_nodyn_init(void)
5905{
5906 ftrace_enabled = 1;
5907 return 0;
5908}
6f415672 5909core_initcall(ftrace_nodyn_init);
0b6e4d56 5910
8434dc93 5911static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
df4fc315 5912static inline void ftrace_startup_enable(int command) { }
e1effa01 5913static inline void ftrace_startup_all(int command) { }
5a45cfe1 5914/* Keep as macros so we do not need to define the commands */
8a56d776
SRRH
5915# define ftrace_startup(ops, command) \
5916 ({ \
5917 int ___ret = __register_ftrace_function(ops); \
5918 if (!___ret) \
5919 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5920 ___ret; \
3b6cfdb1 5921 })
1fcc1553
SRRH
5922# define ftrace_shutdown(ops, command) \
5923 ({ \
5924 int ___ret = __unregister_ftrace_function(ops); \
5925 if (!___ret) \
5926 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5927 ___ret; \
5928 })
8a56d776 5929
c7aafc54
IM
5930# define ftrace_startup_sysctl() do { } while (0)
5931# define ftrace_shutdown_sysctl() do { } while (0)
b848914c
SR
5932
5933static inline int
195a8afc 5934ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
b848914c
SR
5935{
5936 return 1;
5937}
5938
f3bea491
SRRH
5939static void ftrace_update_trampoline(struct ftrace_ops *ops)
5940{
5941}
5942
3d083395
SR
5943#endif /* CONFIG_DYNAMIC_FTRACE */
5944
4104d326
SRRH
5945__init void ftrace_init_global_array_ops(struct trace_array *tr)
5946{
5947 tr->ops = &global_ops;
5948 tr->ops->private = tr;
04ec7bb6 5949 ftrace_init_trace_array(tr);
4104d326
SRRH
5950}
5951
5952void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5953{
5954 /* If we filter on pids, update to use the pid function */
5955 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5956 if (WARN_ON(tr->ops->func != ftrace_stub))
5957 printk("ftrace ops had %pS for function\n",
5958 tr->ops->func);
4104d326
SRRH
5959 }
5960 tr->ops->func = func;
5961 tr->ops->private = tr;
5962}
5963
5964void ftrace_reset_array_ops(struct trace_array *tr)
5965{
5966 tr->ops->func = ftrace_stub;
5967}
5968
2f5f6ad9
SR
5969static inline void
5970__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
a1e2e31d 5971 struct ftrace_ops *ignored, struct pt_regs *regs)
b848914c 5972{
cdbe61bf 5973 struct ftrace_ops *op;
edc15caf 5974 int bit;
b848914c 5975
edc15caf
SR
5976 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5977 if (bit < 0)
5978 return;
b1cff0ad 5979
cdbe61bf
SR
5980 /*
5981 * Some of the ops may be dynamically allocated,
5982 * they must be freed after a synchronize_sched().
5983 */
5984 preempt_disable_notrace();
ba27f2bc 5985
0a016409 5986 do_for_each_ftrace_op(op, ftrace_ops_list) {
ba27f2bc
SRRH
5987 /*
5988 * Check the following for each ops before calling their func:
5989 * if RCU flag is set, then rcu_is_watching() must be true
5990 * if PER_CPU is set, then ftrace_function_local_disable()
5991 * must be false
5992 * Otherwise test if the ip matches the ops filter
5993 *
5994 * If any of the above fails then the op->func() is not executed.
5995 */
5996 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5997 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5998 !ftrace_function_local_disabled(op)) &&
5999 ftrace_ops_test(op, ip, regs)) {
6000
1d48d596
SRRH
6001 if (FTRACE_WARN_ON(!op->func)) {
6002 pr_warn("op=%p %pS\n", op, op);
4104d326
SRRH
6003 goto out;
6004 }
a1e2e31d 6005 op->func(ip, parent_ip, op, regs);
4104d326 6006 }
0a016409 6007 } while_for_each_ftrace_op(op);
4104d326 6008out:
cdbe61bf 6009 preempt_enable_notrace();
edc15caf 6010 trace_clear_recursion(bit);
b848914c
SR
6011}
6012
2f5f6ad9
SR
6013/*
6014 * Some archs only support passing ip and parent_ip. Even though
6015 * the list function ignores the op parameter, we do not want any
6016 * C side effects, where a function is called without the caller
6017 * sending a third parameter.
a1e2e31d
SR
6018 * Archs are to support both the regs and ftrace_ops at the same time.
6019 * If they support ftrace_ops, it is assumed they support regs.
6020 * If call backs want to use regs, they must either check for regs
06aeaaea
MH
6021 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
6022 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
a1e2e31d 6023 * An architecture can pass partial regs with ftrace_ops and still
b8ec330a 6024 * set the ARCH_SUPPORTS_FTRACE_OPS.
2f5f6ad9
SR
6025 */
6026#if ARCH_SUPPORTS_FTRACE_OPS
6027static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
a1e2e31d 6028 struct ftrace_ops *op, struct pt_regs *regs)
2f5f6ad9 6029{
a1e2e31d 6030 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
2f5f6ad9
SR
6031}
6032#else
6033static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
6034{
a1e2e31d 6035 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
2f5f6ad9
SR
6036}
6037#endif
6038
f1ff6348
SRRH
6039/*
6040 * If there's only one function registered but it does not support
c68c0fa2
SRRH
6041 * recursion, needs RCU protection and/or requires per cpu handling, then
6042 * this function will be called by the mcount trampoline.
f1ff6348 6043 */
c68c0fa2 6044static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
f1ff6348
SRRH
6045 struct ftrace_ops *op, struct pt_regs *regs)
6046{
6047 int bit;
6048
c68c0fa2
SRRH
6049 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
6050 return;
6051
f1ff6348
SRRH
6052 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
6053 if (bit < 0)
6054 return;
6055
c68c0fa2 6056 preempt_disable_notrace();
f1ff6348 6057
c68c0fa2
SRRH
6058 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
6059 !ftrace_function_local_disabled(op)) {
6060 op->func(ip, parent_ip, op, regs);
6061 }
6062
6063 preempt_enable_notrace();
f1ff6348
SRRH
6064 trace_clear_recursion(bit);
6065}
6066
87354059
SRRH
6067/**
6068 * ftrace_ops_get_func - get the function a trampoline should call
6069 * @ops: the ops to get the function for
6070 *
6071 * Normally the mcount trampoline will call the ops->func, but there
6072 * are times that it should not. For example, if the ops does not
6073 * have its own recursion protection, then it should call the
3a150df9 6074 * ftrace_ops_assist_func() instead.
87354059
SRRH
6075 *
6076 * Returns the function that the trampoline should call for @ops.
6077 */
6078ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
6079{
87354059 6080 /*
c68c0fa2
SRRH
6081 * If the function does not handle recursion, needs to be RCU safe,
6082 * or does per cpu logic, then we need to call the assist handler.
87354059 6083 */
c68c0fa2
SRRH
6084 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
6085 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
6086 return ftrace_ops_assist_func;
87354059
SRRH
6087
6088 return ops->func;
6089}
6090
345ddcc8
SRRH
6091static void
6092ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
6093 struct task_struct *prev, struct task_struct *next)
978f3a45 6094{
345ddcc8
SRRH
6095 struct trace_array *tr = data;
6096 struct trace_pid_list *pid_list;
978f3a45 6097
345ddcc8 6098 pid_list = rcu_dereference_sched(tr->function_pids);
e32d8956 6099
345ddcc8
SRRH
6100 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6101 trace_ignore_this_task(pid_list, next));
978f3a45
SR
6102}
6103
1e10486f
NK
6104static void
6105ftrace_pid_follow_sched_process_fork(void *data,
6106 struct task_struct *self,
6107 struct task_struct *task)
6108{
6109 struct trace_pid_list *pid_list;
6110 struct trace_array *tr = data;
6111
6112 pid_list = rcu_dereference_sched(tr->function_pids);
6113 trace_filter_add_remove_task(pid_list, self, task);
6114}
6115
6116static void
6117ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
6118{
6119 struct trace_pid_list *pid_list;
6120 struct trace_array *tr = data;
6121
6122 pid_list = rcu_dereference_sched(tr->function_pids);
6123 trace_filter_add_remove_task(pid_list, NULL, task);
6124}
6125
6126void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
6127{
6128 if (enable) {
6129 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6130 tr);
6131 register_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6132 tr);
6133 } else {
6134 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6135 tr);
6136 unregister_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6137 tr);
6138 }
6139}
6140
345ddcc8 6141static void clear_ftrace_pids(struct trace_array *tr)
e32d8956 6142{
345ddcc8
SRRH
6143 struct trace_pid_list *pid_list;
6144 int cpu;
e32d8956 6145
345ddcc8
SRRH
6146 pid_list = rcu_dereference_protected(tr->function_pids,
6147 lockdep_is_held(&ftrace_lock));
6148 if (!pid_list)
6149 return;
229c4ef8 6150
345ddcc8 6151 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
e32d8956 6152
345ddcc8
SRRH
6153 for_each_possible_cpu(cpu)
6154 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
978f3a45 6155
345ddcc8 6156 rcu_assign_pointer(tr->function_pids, NULL);
978f3a45 6157
345ddcc8
SRRH
6158 /* Wait till all users are no longer using pid filtering */
6159 synchronize_sched();
e32d8956 6160
345ddcc8 6161 trace_free_pid_list(pid_list);
e32d8956
SR
6162}
6163
d879d0b8
NK
6164void ftrace_clear_pids(struct trace_array *tr)
6165{
6166 mutex_lock(&ftrace_lock);
6167
6168 clear_ftrace_pids(tr);
6169
6170 mutex_unlock(&ftrace_lock);
6171}
6172
345ddcc8 6173static void ftrace_pid_reset(struct trace_array *tr)
df4fc315 6174{
756d17ee 6175 mutex_lock(&ftrace_lock);
345ddcc8 6176 clear_ftrace_pids(tr);
978f3a45 6177
756d17ee 6178 ftrace_update_pid_func();
e1effa01 6179 ftrace_startup_all(0);
756d17ee 6180
6181 mutex_unlock(&ftrace_lock);
756d17ee 6182}
6183
345ddcc8
SRRH
6184/* Greater than any max PID */
6185#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
df4fc315 6186
756d17ee 6187static void *fpid_start(struct seq_file *m, loff_t *pos)
345ddcc8 6188 __acquires(RCU)
756d17ee 6189{
345ddcc8
SRRH
6190 struct trace_pid_list *pid_list;
6191 struct trace_array *tr = m->private;
6192
756d17ee 6193 mutex_lock(&ftrace_lock);
345ddcc8
SRRH
6194 rcu_read_lock_sched();
6195
6196 pid_list = rcu_dereference_sched(tr->function_pids);
756d17ee 6197
345ddcc8
SRRH
6198 if (!pid_list)
6199 return !(*pos) ? FTRACE_NO_PIDS : NULL;
756d17ee 6200
345ddcc8 6201 return trace_pid_start(pid_list, pos);
756d17ee 6202}
6203
6204static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
6205{
345ddcc8
SRRH
6206 struct trace_array *tr = m->private;
6207 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
6208
6209 if (v == FTRACE_NO_PIDS)
756d17ee 6210 return NULL;
6211
345ddcc8 6212 return trace_pid_next(pid_list, v, pos);
756d17ee 6213}
6214
6215static void fpid_stop(struct seq_file *m, void *p)
345ddcc8 6216 __releases(RCU)
756d17ee 6217{
345ddcc8 6218 rcu_read_unlock_sched();
756d17ee 6219 mutex_unlock(&ftrace_lock);
6220}
6221
6222static int fpid_show(struct seq_file *m, void *v)
6223{
345ddcc8 6224 if (v == FTRACE_NO_PIDS) {
fa6f0cc7 6225 seq_puts(m, "no pid\n");
756d17ee 6226 return 0;
6227 }
6228
345ddcc8 6229 return trace_pid_show(m, v);
756d17ee 6230}
6231
6232static const struct seq_operations ftrace_pid_sops = {
6233 .start = fpid_start,
6234 .next = fpid_next,
6235 .stop = fpid_stop,
6236 .show = fpid_show,
6237};
6238
6239static int
6240ftrace_pid_open(struct inode *inode, struct file *file)
6241{
345ddcc8
SRRH
6242 struct trace_array *tr = inode->i_private;
6243 struct seq_file *m;
756d17ee 6244 int ret = 0;
6245
345ddcc8
SRRH
6246 if (trace_array_get(tr) < 0)
6247 return -ENODEV;
6248
756d17ee 6249 if ((file->f_mode & FMODE_WRITE) &&
6250 (file->f_flags & O_TRUNC))
345ddcc8 6251 ftrace_pid_reset(tr);
756d17ee 6252
345ddcc8
SRRH
6253 ret = seq_open(file, &ftrace_pid_sops);
6254 if (ret < 0) {
6255 trace_array_put(tr);
6256 } else {
6257 m = file->private_data;
6258 /* copy tr over to seq ops */
6259 m->private = tr;
6260 }
756d17ee 6261
6262 return ret;
6263}
6264
345ddcc8
SRRH
6265static void ignore_task_cpu(void *data)
6266{
6267 struct trace_array *tr = data;
6268 struct trace_pid_list *pid_list;
6269
6270 /*
6271 * This function is called by on_each_cpu() while the
6272 * event_mutex is held.
6273 */
6274 pid_list = rcu_dereference_protected(tr->function_pids,
6275 mutex_is_locked(&ftrace_lock));
6276
6277 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6278 trace_ignore_this_task(pid_list, current));
6279}
6280
df4fc315
SR
6281static ssize_t
6282ftrace_pid_write(struct file *filp, const char __user *ubuf,
6283 size_t cnt, loff_t *ppos)
6284{
345ddcc8
SRRH
6285 struct seq_file *m = filp->private_data;
6286 struct trace_array *tr = m->private;
6287 struct trace_pid_list *filtered_pids = NULL;
6288 struct trace_pid_list *pid_list;
6289 ssize_t ret;
df4fc315 6290
345ddcc8
SRRH
6291 if (!cnt)
6292 return 0;
6293
6294 mutex_lock(&ftrace_lock);
6295
6296 filtered_pids = rcu_dereference_protected(tr->function_pids,
6297 lockdep_is_held(&ftrace_lock));
6298
6299 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
6300 if (ret < 0)
6301 goto out;
df4fc315 6302
345ddcc8 6303 rcu_assign_pointer(tr->function_pids, pid_list);
df4fc315 6304
345ddcc8
SRRH
6305 if (filtered_pids) {
6306 synchronize_sched();
6307 trace_free_pid_list(filtered_pids);
6308 } else if (pid_list) {
6309 /* Register a probe to set whether to ignore the tracing of a task */
6310 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6311 }
df4fc315 6312
756d17ee 6313 /*
345ddcc8
SRRH
6314 * Ignoring of pids is done at task switch. But we have to
6315 * check for those tasks that are currently running.
6316 * Always do this in case a pid was appended or removed.
756d17ee 6317 */
345ddcc8 6318 on_each_cpu(ignore_task_cpu, tr, 1);
756d17ee 6319
345ddcc8
SRRH
6320 ftrace_update_pid_func();
6321 ftrace_startup_all(0);
6322 out:
6323 mutex_unlock(&ftrace_lock);
df4fc315 6324
345ddcc8
SRRH
6325 if (ret > 0)
6326 *ppos += ret;
df4fc315 6327
345ddcc8 6328 return ret;
756d17ee 6329}
df4fc315 6330
756d17ee 6331static int
6332ftrace_pid_release(struct inode *inode, struct file *file)
6333{
345ddcc8 6334 struct trace_array *tr = inode->i_private;
df4fc315 6335
345ddcc8
SRRH
6336 trace_array_put(tr);
6337
6338 return seq_release(inode, file);
df4fc315
SR
6339}
6340
5e2336a0 6341static const struct file_operations ftrace_pid_fops = {
756d17ee 6342 .open = ftrace_pid_open,
6343 .write = ftrace_pid_write,
6344 .read = seq_read,
098c879e 6345 .llseek = tracing_lseek,
756d17ee 6346 .release = ftrace_pid_release,
df4fc315
SR
6347};
6348
345ddcc8 6349void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
df4fc315 6350{
5452af66 6351 trace_create_file("set_ftrace_pid", 0644, d_tracer,
345ddcc8 6352 tr, &ftrace_pid_fops);
df4fc315 6353}
df4fc315 6354
501c2375
SRRH
6355void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
6356 struct dentry *d_tracer)
6357{
6358 /* Only the top level directory has the dyn_tracefs and profile */
6359 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
6360
6361 ftrace_init_dyn_tracefs(d_tracer);
6362 ftrace_profile_tracefs(d_tracer);
6363}
6364
a2bb6a3d 6365/**
81adbdc0 6366 * ftrace_kill - kill ftrace
a2bb6a3d
SR
6367 *
6368 * This function should be used by panic code. It stops ftrace
6369 * but in a not so nice way. If you need to simply kill ftrace
6370 * from a non-atomic section, use ftrace_kill.
6371 */
81adbdc0 6372void ftrace_kill(void)
a2bb6a3d
SR
6373{
6374 ftrace_disabled = 1;
6375 ftrace_enabled = 0;
a2bb6a3d
SR
6376 clear_ftrace_function();
6377}
6378
e0a413f6
SR
6379/**
6380 * Test if ftrace is dead or not.
6381 */
6382int ftrace_is_dead(void)
6383{
6384 return ftrace_disabled;
6385}
6386
16444a8a 6387/**
3d083395
SR
6388 * register_ftrace_function - register a function for profiling
6389 * @ops - ops structure that holds the function for profiling.
16444a8a 6390 *
3d083395
SR
6391 * Register a function to be called by all functions in the
6392 * kernel.
6393 *
6394 * Note: @ops->func and all the functions it calls must be labeled
6395 * with "notrace", otherwise it will go into a
6396 * recursive loop.
16444a8a 6397 */
3d083395 6398int register_ftrace_function(struct ftrace_ops *ops)
16444a8a 6399{
45a4a237 6400 int ret = -1;
4eebcc81 6401
f04f24fb
MH
6402 ftrace_ops_init(ops);
6403
e6ea44e9 6404 mutex_lock(&ftrace_lock);
e7d3737e 6405
8a56d776 6406 ret = ftrace_startup(ops, 0);
b848914c 6407
e6ea44e9 6408 mutex_unlock(&ftrace_lock);
8d240dd8 6409
b0fc494f 6410 return ret;
3d083395 6411}
cdbe61bf 6412EXPORT_SYMBOL_GPL(register_ftrace_function);
3d083395
SR
6413
6414/**
32632920 6415 * unregister_ftrace_function - unregister a function for profiling.
3d083395
SR
6416 * @ops - ops structure that holds the function to unregister
6417 *
6418 * Unregister a function that was added to be called by ftrace profiling.
6419 */
6420int unregister_ftrace_function(struct ftrace_ops *ops)
6421{
6422 int ret;
6423
e6ea44e9 6424 mutex_lock(&ftrace_lock);
8a56d776 6425 ret = ftrace_shutdown(ops, 0);
e6ea44e9 6426 mutex_unlock(&ftrace_lock);
b0fc494f
SR
6427
6428 return ret;
6429}
cdbe61bf 6430EXPORT_SYMBOL_GPL(unregister_ftrace_function);
b0fc494f 6431
e309b41d 6432int
b0fc494f 6433ftrace_enable_sysctl(struct ctl_table *table, int write,
8d65af78 6434 void __user *buffer, size_t *lenp,
b0fc494f
SR
6435 loff_t *ppos)
6436{
45a4a237 6437 int ret = -ENODEV;
4eebcc81 6438
e6ea44e9 6439 mutex_lock(&ftrace_lock);
b0fc494f 6440
45a4a237
SR
6441 if (unlikely(ftrace_disabled))
6442 goto out;
6443
6444 ret = proc_dointvec(table, write, buffer, lenp, ppos);
b0fc494f 6445
a32c7765 6446 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
b0fc494f
SR
6447 goto out;
6448
a32c7765 6449 last_ftrace_enabled = !!ftrace_enabled;
b0fc494f
SR
6450
6451 if (ftrace_enabled) {
6452
b0fc494f 6453 /* we are starting ftrace again */
5000c418
JK
6454 if (ftrace_ops_list != &ftrace_list_end)
6455 update_ftrace_function();
b0fc494f 6456
524a3868
SRRH
6457 ftrace_startup_sysctl();
6458
b0fc494f
SR
6459 } else {
6460 /* stopping ftrace calls (just send to ftrace_stub) */
6461 ftrace_trace_function = ftrace_stub;
6462
6463 ftrace_shutdown_sysctl();
6464 }
6465
6466 out:
e6ea44e9 6467 mutex_unlock(&ftrace_lock);
3d083395 6468 return ret;
16444a8a 6469}
f17845e5 6470
fb52607a 6471#ifdef CONFIG_FUNCTION_GRAPH_TRACER
e7d3737e 6472
5f151b24
SRRH
6473static struct ftrace_ops graph_ops = {
6474 .func = ftrace_stub,
6475 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
6476 FTRACE_OPS_FL_INITIALIZED |
e3eea140 6477 FTRACE_OPS_FL_PID |
5f151b24
SRRH
6478 FTRACE_OPS_FL_STUB,
6479#ifdef FTRACE_GRAPH_TRAMP_ADDR
6480 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
aec0be2d 6481 /* trampoline_size is only needed for dynamically allocated tramps */
5f151b24
SRRH
6482#endif
6483 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
6484};
6485
55577204
SRRH
6486void ftrace_graph_sleep_time_control(bool enable)
6487{
6488 fgraph_sleep_time = enable;
6489}
6490
6491void ftrace_graph_graph_time_control(bool enable)
6492{
6493 fgraph_graph_time = enable;
6494}
6495
e49dc19c
SR
6496int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
6497{
6498 return 0;
6499}
6500
287b6e68
FW
6501/* The callbacks that hook a function */
6502trace_func_graph_ret_t ftrace_graph_return =
6503 (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 6504trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
23a8e844 6505static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
f201ae23
FW
6506
6507/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
6508static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
6509{
6510 int i;
6511 int ret = 0;
f201ae23
FW
6512 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
6513 struct task_struct *g, *t;
6514
6515 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
6516 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
6517 * sizeof(struct ftrace_ret_stack),
6518 GFP_KERNEL);
6519 if (!ret_stack_list[i]) {
6520 start = 0;
6521 end = i;
6522 ret = -ENOMEM;
6523 goto free;
6524 }
6525 }
6526
6112a300 6527 read_lock(&tasklist_lock);
f201ae23
FW
6528 do_each_thread(g, t) {
6529 if (start == end) {
6530 ret = -EAGAIN;
6531 goto unlock;
6532 }
6533
6534 if (t->ret_stack == NULL) {
380c4b14 6535 atomic_set(&t->tracing_graph_pause, 0);
f201ae23 6536 atomic_set(&t->trace_overrun, 0);
26c01624
SR
6537 t->curr_ret_stack = -1;
6538 /* Make sure the tasks see the -1 first: */
6539 smp_wmb();
6540 t->ret_stack = ret_stack_list[start++];
f201ae23
FW
6541 }
6542 } while_each_thread(g, t);
6543
6544unlock:
6112a300 6545 read_unlock(&tasklist_lock);
f201ae23
FW
6546free:
6547 for (i = start; i < end; i++)
6548 kfree(ret_stack_list[i]);
6549 return ret;
6550}
6551
8aef2d28 6552static void
c73464b1 6553ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
38516ab5 6554 struct task_struct *prev, struct task_struct *next)
8aef2d28
SR
6555{
6556 unsigned long long timestamp;
6557 int index;
6558
be6f164a
SR
6559 /*
6560 * Does the user want to count the time a function was asleep.
6561 * If so, do not update the time stamps.
6562 */
55577204 6563 if (fgraph_sleep_time)
be6f164a
SR
6564 return;
6565
8aef2d28
SR
6566 timestamp = trace_clock_local();
6567
6568 prev->ftrace_timestamp = timestamp;
6569
6570 /* only process tasks that we timestamped */
6571 if (!next->ftrace_timestamp)
6572 return;
6573
6574 /*
6575 * Update all the counters in next to make up for the
6576 * time next was sleeping.
6577 */
6578 timestamp -= next->ftrace_timestamp;
6579
6580 for (index = next->curr_ret_stack; index >= 0; index--)
6581 next->ret_stack[index].calltime += timestamp;
6582}
6583
f201ae23 6584/* Allocate a return stack for each task */
fb52607a 6585static int start_graph_tracing(void)
f201ae23
FW
6586{
6587 struct ftrace_ret_stack **ret_stack_list;
5b058bcd 6588 int ret, cpu;
f201ae23
FW
6589
6590 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
6591 sizeof(struct ftrace_ret_stack *),
6592 GFP_KERNEL);
6593
6594 if (!ret_stack_list)
6595 return -ENOMEM;
6596
5b058bcd 6597 /* The cpu_boot init_task->ret_stack will never be freed */
179c498a
SR
6598 for_each_online_cpu(cpu) {
6599 if (!idle_task(cpu)->ret_stack)
868baf07 6600 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
179c498a 6601 }
5b058bcd 6602
f201ae23
FW
6603 do {
6604 ret = alloc_retstack_tasklist(ret_stack_list);
6605 } while (ret == -EAGAIN);
6606
8aef2d28 6607 if (!ret) {
38516ab5 6608 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
8aef2d28
SR
6609 if (ret)
6610 pr_info("ftrace_graph: Couldn't activate tracepoint"
6611 " probe to kernel_sched_switch\n");
6612 }
6613
f201ae23
FW
6614 kfree(ret_stack_list);
6615 return ret;
6616}
6617
4a2b8dda
FW
6618/*
6619 * Hibernation protection.
6620 * The state of the current task is too much unstable during
6621 * suspend/restore to disk. We want to protect against that.
6622 */
6623static int
6624ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
6625 void *unused)
6626{
6627 switch (state) {
6628 case PM_HIBERNATION_PREPARE:
6629 pause_graph_tracing();
6630 break;
6631
6632 case PM_POST_HIBERNATION:
6633 unpause_graph_tracing();
6634 break;
6635 }
6636 return NOTIFY_DONE;
6637}
6638
23a8e844
SRRH
6639static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
6640{
6641 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
6642 return 0;
6643 return __ftrace_graph_entry(trace);
6644}
6645
6646/*
6647 * The function graph tracer should only trace the functions defined
6648 * by set_ftrace_filter and set_ftrace_notrace. If another function
6649 * tracer ops is registered, the graph tracer requires testing the
6650 * function against the global ops, and not just trace any function
6651 * that any ftrace_ops registered.
6652 */
6653static void update_function_graph_func(void)
6654{
5f151b24
SRRH
6655 struct ftrace_ops *op;
6656 bool do_test = false;
6657
6658 /*
6659 * The graph and global ops share the same set of functions
6660 * to test. If any other ops is on the list, then
6661 * the graph tracing needs to test if its the function
6662 * it should call.
6663 */
6664 do_for_each_ftrace_op(op, ftrace_ops_list) {
6665 if (op != &global_ops && op != &graph_ops &&
6666 op != &ftrace_list_end) {
6667 do_test = true;
6668 /* in double loop, break out with goto */
6669 goto out;
6670 }
6671 } while_for_each_ftrace_op(op);
6672 out:
6673 if (do_test)
23a8e844 6674 ftrace_graph_entry = ftrace_graph_entry_test;
5f151b24
SRRH
6675 else
6676 ftrace_graph_entry = __ftrace_graph_entry;
23a8e844
SRRH
6677}
6678
8275f69f
MK
6679static struct notifier_block ftrace_suspend_notifier = {
6680 .notifier_call = ftrace_suspend_notifier_call,
6681};
6682
287b6e68
FW
6683int register_ftrace_graph(trace_func_graph_ret_t retfunc,
6684 trace_func_graph_ent_t entryfunc)
15e6cb36 6685{
e7d3737e
FW
6686 int ret = 0;
6687
e6ea44e9 6688 mutex_lock(&ftrace_lock);
e7d3737e 6689
05ce5818 6690 /* we currently allow only one tracer registered at a time */
597af815 6691 if (ftrace_graph_active) {
05ce5818
SR
6692 ret = -EBUSY;
6693 goto out;
6694 }
6695
4a2b8dda
FW
6696 register_pm_notifier(&ftrace_suspend_notifier);
6697
597af815 6698 ftrace_graph_active++;
fb52607a 6699 ret = start_graph_tracing();
f201ae23 6700 if (ret) {
597af815 6701 ftrace_graph_active--;
f201ae23
FW
6702 goto out;
6703 }
e53a6319 6704
287b6e68 6705 ftrace_graph_return = retfunc;
23a8e844
SRRH
6706
6707 /*
6708 * Update the indirect function to the entryfunc, and the
6709 * function that gets called to the entry_test first. Then
6710 * call the update fgraph entry function to determine if
6711 * the entryfunc should be called directly or not.
6712 */
6713 __ftrace_graph_entry = entryfunc;
6714 ftrace_graph_entry = ftrace_graph_entry_test;
6715 update_function_graph_func();
e53a6319 6716
5f151b24 6717 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
e7d3737e 6718out:
e6ea44e9 6719 mutex_unlock(&ftrace_lock);
e7d3737e 6720 return ret;
15e6cb36
FW
6721}
6722
fb52607a 6723void unregister_ftrace_graph(void)
15e6cb36 6724{
e6ea44e9 6725 mutex_lock(&ftrace_lock);
e7d3737e 6726
597af815 6727 if (unlikely(!ftrace_graph_active))
2aad1b76
SR
6728 goto out;
6729
597af815 6730 ftrace_graph_active--;
287b6e68 6731 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 6732 ftrace_graph_entry = ftrace_graph_entry_stub;
23a8e844 6733 __ftrace_graph_entry = ftrace_graph_entry_stub;
5f151b24 6734 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
4a2b8dda 6735 unregister_pm_notifier(&ftrace_suspend_notifier);
38516ab5 6736 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
e7d3737e 6737
f3bea491
SRRH
6738#ifdef CONFIG_DYNAMIC_FTRACE
6739 /*
6740 * Function graph does not allocate the trampoline, but
6741 * other global_ops do. We need to reset the ALLOC_TRAMP flag
6742 * if one was used.
6743 */
6744 global_ops.trampoline = save_global_trampoline;
6745 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
6746 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
6747#endif
6748
2aad1b76 6749 out:
e6ea44e9 6750 mutex_unlock(&ftrace_lock);
15e6cb36 6751}
f201ae23 6752
868baf07
SR
6753static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
6754
6755static void
6756graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
6757{
6758 atomic_set(&t->tracing_graph_pause, 0);
6759 atomic_set(&t->trace_overrun, 0);
6760 t->ftrace_timestamp = 0;
25985edc 6761 /* make curr_ret_stack visible before we add the ret_stack */
868baf07
SR
6762 smp_wmb();
6763 t->ret_stack = ret_stack;
6764}
6765
6766/*
6767 * Allocate a return stack for the idle task. May be the first
6768 * time through, or it may be done by CPU hotplug online.
6769 */
6770void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6771{
6772 t->curr_ret_stack = -1;
6773 /*
6774 * The idle task has no parent, it either has its own
6775 * stack or no stack at all.
6776 */
6777 if (t->ret_stack)
6778 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6779
6780 if (ftrace_graph_active) {
6781 struct ftrace_ret_stack *ret_stack;
6782
6783 ret_stack = per_cpu(idle_ret_stack, cpu);
6784 if (!ret_stack) {
6785 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6786 * sizeof(struct ftrace_ret_stack),
6787 GFP_KERNEL);
6788 if (!ret_stack)
6789 return;
6790 per_cpu(idle_ret_stack, cpu) = ret_stack;
6791 }
6792 graph_init_task(t, ret_stack);
6793 }
6794}
6795
f201ae23 6796/* Allocate a return stack for newly created task */
fb52607a 6797void ftrace_graph_init_task(struct task_struct *t)
f201ae23 6798{
84047e36
SR
6799 /* Make sure we do not use the parent ret_stack */
6800 t->ret_stack = NULL;
ea14eb71 6801 t->curr_ret_stack = -1;
84047e36 6802
597af815 6803 if (ftrace_graph_active) {
82310a32
SR
6804 struct ftrace_ret_stack *ret_stack;
6805
6806 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
f201ae23
FW
6807 * sizeof(struct ftrace_ret_stack),
6808 GFP_KERNEL);
82310a32 6809 if (!ret_stack)
f201ae23 6810 return;
868baf07 6811 graph_init_task(t, ret_stack);
84047e36 6812 }
f201ae23
FW
6813}
6814
fb52607a 6815void ftrace_graph_exit_task(struct task_struct *t)
f201ae23 6816{
eae849ca
FW
6817 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6818
f201ae23 6819 t->ret_stack = NULL;
eae849ca
FW
6820 /* NULL must become visible to IRQs before we free it: */
6821 barrier();
6822
6823 kfree(ret_stack);
f201ae23 6824}
15e6cb36 6825#endif