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