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