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