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