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