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