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