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 if (!tr)
4301 return -ENODEV;
4302
4303 /* match_records() modifies func, and we need the original */
4304 func = kstrdup(func_orig, GFP_KERNEL);
4305 if (!func)
4306 return -ENOMEM;
4307
4308 /*
4309 * cmd == 'mod' because we only registered this func
4310 * for the 'mod' ftrace_func_command.
4311 * But if you register one func with multiple commands,
4312 * you can tell which command was used by the cmd
4313 * parameter.
4314 */
4315 ret = match_records(hash, func, strlen(func), module);
4316 kfree(func);
4317
4318 if (!ret)
4319 return cache_mod(tr, func_orig, module, enable);
4320 if (ret < 0)
4321 return ret;
4322 return 0;
4323 }
4324
4325 static struct ftrace_func_command ftrace_mod_cmd = {
4326 .name = "mod",
4327 .func = ftrace_mod_callback,
4328 };
4329
ftrace_mod_cmd_init(void)4330 static int __init ftrace_mod_cmd_init(void)
4331 {
4332 return register_ftrace_command(&ftrace_mod_cmd);
4333 }
4334 core_initcall(ftrace_mod_cmd_init);
4335
function_trace_probe_call(unsigned long ip,unsigned long parent_ip,struct ftrace_ops * op,struct pt_regs * pt_regs)4336 static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
4337 struct ftrace_ops *op, struct pt_regs *pt_regs)
4338 {
4339 struct ftrace_probe_ops *probe_ops;
4340 struct ftrace_func_probe *probe;
4341
4342 probe = container_of(op, struct ftrace_func_probe, ops);
4343 probe_ops = probe->probe_ops;
4344
4345 /*
4346 * Disable preemption for these calls to prevent a RCU grace
4347 * period. This syncs the hash iteration and freeing of items
4348 * on the hash. rcu_read_lock is too dangerous here.
4349 */
4350 preempt_disable_notrace();
4351 probe_ops->func(ip, parent_ip, probe->tr, probe_ops, probe->data);
4352 preempt_enable_notrace();
4353 }
4354
4355 struct ftrace_func_map {
4356 struct ftrace_func_entry entry;
4357 void *data;
4358 };
4359
4360 struct ftrace_func_mapper {
4361 struct ftrace_hash hash;
4362 };
4363
4364 /**
4365 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
4366 *
4367 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
4368 */
allocate_ftrace_func_mapper(void)4369 struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
4370 {
4371 struct ftrace_hash *hash;
4372
4373 /*
4374 * The mapper is simply a ftrace_hash, but since the entries
4375 * in the hash are not ftrace_func_entry type, we define it
4376 * as a separate structure.
4377 */
4378 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4379 return (struct ftrace_func_mapper *)hash;
4380 }
4381
4382 /**
4383 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
4384 * @mapper: The mapper that has the ip maps
4385 * @ip: the instruction pointer to find the data for
4386 *
4387 * Returns the data mapped to @ip if found otherwise NULL. The return
4388 * is actually the address of the mapper data pointer. The address is
4389 * returned for use cases where the data is no bigger than a long, and
4390 * the user can use the data pointer as its data instead of having to
4391 * allocate more memory for the reference.
4392 */
ftrace_func_mapper_find_ip(struct ftrace_func_mapper * mapper,unsigned long ip)4393 void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
4394 unsigned long ip)
4395 {
4396 struct ftrace_func_entry *entry;
4397 struct ftrace_func_map *map;
4398
4399 entry = ftrace_lookup_ip(&mapper->hash, ip);
4400 if (!entry)
4401 return NULL;
4402
4403 map = (struct ftrace_func_map *)entry;
4404 return &map->data;
4405 }
4406
4407 /**
4408 * ftrace_func_mapper_add_ip - Map some data to an ip
4409 * @mapper: The mapper that has the ip maps
4410 * @ip: The instruction pointer address to map @data to
4411 * @data: The data to map to @ip
4412 *
4413 * Returns 0 on success otherwise an error.
4414 */
ftrace_func_mapper_add_ip(struct ftrace_func_mapper * mapper,unsigned long ip,void * data)4415 int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
4416 unsigned long ip, void *data)
4417 {
4418 struct ftrace_func_entry *entry;
4419 struct ftrace_func_map *map;
4420
4421 entry = ftrace_lookup_ip(&mapper->hash, ip);
4422 if (entry)
4423 return -EBUSY;
4424
4425 map = kmalloc(sizeof(*map), GFP_KERNEL);
4426 if (!map)
4427 return -ENOMEM;
4428
4429 map->entry.ip = ip;
4430 map->data = data;
4431
4432 __add_hash_entry(&mapper->hash, &map->entry);
4433
4434 return 0;
4435 }
4436
4437 /**
4438 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
4439 * @mapper: The mapper that has the ip maps
4440 * @ip: The instruction pointer address to remove the data from
4441 *
4442 * Returns the data if it is found, otherwise NULL.
4443 * Note, if the data pointer is used as the data itself, (see
4444 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
4445 * if the data pointer was set to zero.
4446 */
ftrace_func_mapper_remove_ip(struct ftrace_func_mapper * mapper,unsigned long ip)4447 void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
4448 unsigned long ip)
4449 {
4450 struct ftrace_func_entry *entry;
4451 struct ftrace_func_map *map;
4452 void *data;
4453
4454 entry = ftrace_lookup_ip(&mapper->hash, ip);
4455 if (!entry)
4456 return NULL;
4457
4458 map = (struct ftrace_func_map *)entry;
4459 data = map->data;
4460
4461 remove_hash_entry(&mapper->hash, entry);
4462 kfree(entry);
4463
4464 return data;
4465 }
4466
4467 /**
4468 * free_ftrace_func_mapper - free a mapping of ips and data
4469 * @mapper: The mapper that has the ip maps
4470 * @free_func: A function to be called on each data item.
4471 *
4472 * This is used to free the function mapper. The @free_func is optional
4473 * and can be used if the data needs to be freed as well.
4474 */
free_ftrace_func_mapper(struct ftrace_func_mapper * mapper,ftrace_mapper_func free_func)4475 void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
4476 ftrace_mapper_func free_func)
4477 {
4478 struct ftrace_func_entry *entry;
4479 struct ftrace_func_map *map;
4480 struct hlist_head *hhd;
4481 int size, i;
4482
4483 if (!mapper)
4484 return;
4485
4486 if (free_func && mapper->hash.count) {
4487 size = 1 << mapper->hash.size_bits;
4488 for (i = 0; i < size; i++) {
4489 hhd = &mapper->hash.buckets[i];
4490 hlist_for_each_entry(entry, hhd, hlist) {
4491 map = (struct ftrace_func_map *)entry;
4492 free_func(map);
4493 }
4494 }
4495 }
4496 free_ftrace_hash(&mapper->hash);
4497 }
4498
release_probe(struct ftrace_func_probe * probe)4499 static void release_probe(struct ftrace_func_probe *probe)
4500 {
4501 struct ftrace_probe_ops *probe_ops;
4502
4503 mutex_lock(&ftrace_lock);
4504
4505 WARN_ON(probe->ref <= 0);
4506
4507 /* Subtract the ref that was used to protect this instance */
4508 probe->ref--;
4509
4510 if (!probe->ref) {
4511 probe_ops = probe->probe_ops;
4512 /*
4513 * Sending zero as ip tells probe_ops to free
4514 * the probe->data itself
4515 */
4516 if (probe_ops->free)
4517 probe_ops->free(probe_ops, probe->tr, 0, probe->data);
4518 list_del(&probe->list);
4519 kfree(probe);
4520 }
4521 mutex_unlock(&ftrace_lock);
4522 }
4523
acquire_probe_locked(struct ftrace_func_probe * probe)4524 static void acquire_probe_locked(struct ftrace_func_probe *probe)
4525 {
4526 /*
4527 * Add one ref to keep it from being freed when releasing the
4528 * ftrace_lock mutex.
4529 */
4530 probe->ref++;
4531 }
4532
4533 int
register_ftrace_function_probe(char * glob,struct trace_array * tr,struct ftrace_probe_ops * probe_ops,void * data)4534 register_ftrace_function_probe(char *glob, struct trace_array *tr,
4535 struct ftrace_probe_ops *probe_ops,
4536 void *data)
4537 {
4538 struct ftrace_func_entry *entry;
4539 struct ftrace_func_probe *probe;
4540 struct ftrace_hash **orig_hash;
4541 struct ftrace_hash *old_hash;
4542 struct ftrace_hash *hash;
4543 int count = 0;
4544 int size;
4545 int ret;
4546 int i;
4547
4548 if (WARN_ON(!tr))
4549 return -EINVAL;
4550
4551 /* We do not support '!' for function probes */
4552 if (WARN_ON(glob[0] == '!'))
4553 return -EINVAL;
4554
4555
4556 mutex_lock(&ftrace_lock);
4557 /* Check if the probe_ops is already registered */
4558 list_for_each_entry(probe, &tr->func_probes, list) {
4559 if (probe->probe_ops == probe_ops)
4560 break;
4561 }
4562 if (&probe->list == &tr->func_probes) {
4563 probe = kzalloc(sizeof(*probe), GFP_KERNEL);
4564 if (!probe) {
4565 mutex_unlock(&ftrace_lock);
4566 return -ENOMEM;
4567 }
4568 probe->probe_ops = probe_ops;
4569 probe->ops.func = function_trace_probe_call;
4570 probe->tr = tr;
4571 ftrace_ops_init(&probe->ops);
4572 list_add(&probe->list, &tr->func_probes);
4573 }
4574
4575 acquire_probe_locked(probe);
4576
4577 mutex_unlock(&ftrace_lock);
4578
4579 /*
4580 * Note, there's a small window here that the func_hash->filter_hash
4581 * may be NULL or empty. Need to be careful when reading the loop.
4582 */
4583 mutex_lock(&probe->ops.func_hash->regex_lock);
4584
4585 orig_hash = &probe->ops.func_hash->filter_hash;
4586 old_hash = *orig_hash;
4587 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4588
4589 if (!hash) {
4590 ret = -ENOMEM;
4591 goto out;
4592 }
4593
4594 ret = ftrace_match_records(hash, glob, strlen(glob));
4595
4596 /* Nothing found? */
4597 if (!ret)
4598 ret = -EINVAL;
4599
4600 if (ret < 0)
4601 goto out;
4602
4603 size = 1 << hash->size_bits;
4604 for (i = 0; i < size; i++) {
4605 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4606 if (ftrace_lookup_ip(old_hash, entry->ip))
4607 continue;
4608 /*
4609 * The caller might want to do something special
4610 * for each function we find. We call the callback
4611 * to give the caller an opportunity to do so.
4612 */
4613 if (probe_ops->init) {
4614 ret = probe_ops->init(probe_ops, tr,
4615 entry->ip, data,
4616 &probe->data);
4617 if (ret < 0) {
4618 if (probe_ops->free && count)
4619 probe_ops->free(probe_ops, tr,
4620 0, probe->data);
4621 probe->data = NULL;
4622 goto out;
4623 }
4624 }
4625 count++;
4626 }
4627 }
4628
4629 mutex_lock(&ftrace_lock);
4630
4631 if (!count) {
4632 /* Nothing was added? */
4633 ret = -EINVAL;
4634 goto out_unlock;
4635 }
4636
4637 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4638 hash, 1);
4639 if (ret < 0)
4640 goto err_unlock;
4641
4642 /* One ref for each new function traced */
4643 probe->ref += count;
4644
4645 if (!(probe->ops.flags & FTRACE_OPS_FL_ENABLED))
4646 ret = ftrace_startup(&probe->ops, 0);
4647
4648 out_unlock:
4649 mutex_unlock(&ftrace_lock);
4650
4651 if (!ret)
4652 ret = count;
4653 out:
4654 mutex_unlock(&probe->ops.func_hash->regex_lock);
4655 free_ftrace_hash(hash);
4656
4657 release_probe(probe);
4658
4659 return ret;
4660
4661 err_unlock:
4662 if (!probe_ops->free || !count)
4663 goto out_unlock;
4664
4665 /* Failed to do the move, need to call the free functions */
4666 for (i = 0; i < size; i++) {
4667 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4668 if (ftrace_lookup_ip(old_hash, entry->ip))
4669 continue;
4670 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
4671 }
4672 }
4673 goto out_unlock;
4674 }
4675
4676 int
unregister_ftrace_function_probe_func(char * glob,struct trace_array * tr,struct ftrace_probe_ops * probe_ops)4677 unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
4678 struct ftrace_probe_ops *probe_ops)
4679 {
4680 struct ftrace_ops_hash old_hash_ops;
4681 struct ftrace_func_entry *entry;
4682 struct ftrace_func_probe *probe;
4683 struct ftrace_glob func_g;
4684 struct ftrace_hash **orig_hash;
4685 struct ftrace_hash *old_hash;
4686 struct ftrace_hash *hash = NULL;
4687 struct hlist_node *tmp;
4688 struct hlist_head hhd;
4689 char str[KSYM_SYMBOL_LEN];
4690 int count = 0;
4691 int i, ret = -ENODEV;
4692 int size;
4693
4694 if (!glob || !strlen(glob) || !strcmp(glob, "*"))
4695 func_g.search = NULL;
4696 else {
4697 int not;
4698
4699 func_g.type = filter_parse_regex(glob, strlen(glob),
4700 &func_g.search, ¬);
4701 func_g.len = strlen(func_g.search);
4702
4703 /* we do not support '!' for function probes */
4704 if (WARN_ON(not))
4705 return -EINVAL;
4706 }
4707
4708 mutex_lock(&ftrace_lock);
4709 /* Check if the probe_ops is already registered */
4710 list_for_each_entry(probe, &tr->func_probes, list) {
4711 if (probe->probe_ops == probe_ops)
4712 break;
4713 }
4714 if (&probe->list == &tr->func_probes)
4715 goto err_unlock_ftrace;
4716
4717 ret = -EINVAL;
4718 if (!(probe->ops.flags & FTRACE_OPS_FL_INITIALIZED))
4719 goto err_unlock_ftrace;
4720
4721 acquire_probe_locked(probe);
4722
4723 mutex_unlock(&ftrace_lock);
4724
4725 mutex_lock(&probe->ops.func_hash->regex_lock);
4726
4727 orig_hash = &probe->ops.func_hash->filter_hash;
4728 old_hash = *orig_hash;
4729
4730 if (ftrace_hash_empty(old_hash))
4731 goto out_unlock;
4732
4733 old_hash_ops.filter_hash = old_hash;
4734 /* Probes only have filters */
4735 old_hash_ops.notrace_hash = NULL;
4736
4737 ret = -ENOMEM;
4738 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4739 if (!hash)
4740 goto out_unlock;
4741
4742 INIT_HLIST_HEAD(&hhd);
4743
4744 size = 1 << hash->size_bits;
4745 for (i = 0; i < size; i++) {
4746 hlist_for_each_entry_safe(entry, tmp, &hash->buckets[i], hlist) {
4747
4748 if (func_g.search) {
4749 kallsyms_lookup(entry->ip, NULL, NULL,
4750 NULL, str);
4751 if (!ftrace_match(str, &func_g))
4752 continue;
4753 }
4754 count++;
4755 remove_hash_entry(hash, entry);
4756 hlist_add_head(&entry->hlist, &hhd);
4757 }
4758 }
4759
4760 /* Nothing found? */
4761 if (!count) {
4762 ret = -EINVAL;
4763 goto out_unlock;
4764 }
4765
4766 mutex_lock(&ftrace_lock);
4767
4768 WARN_ON(probe->ref < count);
4769
4770 probe->ref -= count;
4771
4772 if (ftrace_hash_empty(hash))
4773 ftrace_shutdown(&probe->ops, 0);
4774
4775 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4776 hash, 1);
4777
4778 /* still need to update the function call sites */
4779 if (ftrace_enabled && !ftrace_hash_empty(hash))
4780 ftrace_run_modify_code(&probe->ops, FTRACE_UPDATE_CALLS,
4781 &old_hash_ops);
4782 synchronize_rcu();
4783
4784 hlist_for_each_entry_safe(entry, tmp, &hhd, hlist) {
4785 hlist_del(&entry->hlist);
4786 if (probe_ops->free)
4787 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
4788 kfree(entry);
4789 }
4790 mutex_unlock(&ftrace_lock);
4791
4792 out_unlock:
4793 mutex_unlock(&probe->ops.func_hash->regex_lock);
4794 free_ftrace_hash(hash);
4795
4796 release_probe(probe);
4797
4798 return ret;
4799
4800 err_unlock_ftrace:
4801 mutex_unlock(&ftrace_lock);
4802 return ret;
4803 }
4804
clear_ftrace_function_probes(struct trace_array * tr)4805 void clear_ftrace_function_probes(struct trace_array *tr)
4806 {
4807 struct ftrace_func_probe *probe, *n;
4808
4809 list_for_each_entry_safe(probe, n, &tr->func_probes, list)
4810 unregister_ftrace_function_probe_func(NULL, tr, probe->probe_ops);
4811 }
4812
4813 static LIST_HEAD(ftrace_commands);
4814 static DEFINE_MUTEX(ftrace_cmd_mutex);
4815
4816 /*
4817 * Currently we only register ftrace commands from __init, so mark this
4818 * __init too.
4819 */
register_ftrace_command(struct ftrace_func_command * cmd)4820 __init int register_ftrace_command(struct ftrace_func_command *cmd)
4821 {
4822 struct ftrace_func_command *p;
4823 int ret = 0;
4824
4825 mutex_lock(&ftrace_cmd_mutex);
4826 list_for_each_entry(p, &ftrace_commands, list) {
4827 if (strcmp(cmd->name, p->name) == 0) {
4828 ret = -EBUSY;
4829 goto out_unlock;
4830 }
4831 }
4832 list_add(&cmd->list, &ftrace_commands);
4833 out_unlock:
4834 mutex_unlock(&ftrace_cmd_mutex);
4835
4836 return ret;
4837 }
4838
4839 /*
4840 * Currently we only unregister ftrace commands from __init, so mark
4841 * this __init too.
4842 */
unregister_ftrace_command(struct ftrace_func_command * cmd)4843 __init int unregister_ftrace_command(struct ftrace_func_command *cmd)
4844 {
4845 struct ftrace_func_command *p, *n;
4846 int ret = -ENODEV;
4847
4848 mutex_lock(&ftrace_cmd_mutex);
4849 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4850 if (strcmp(cmd->name, p->name) == 0) {
4851 ret = 0;
4852 list_del_init(&p->list);
4853 goto out_unlock;
4854 }
4855 }
4856 out_unlock:
4857 mutex_unlock(&ftrace_cmd_mutex);
4858
4859 return ret;
4860 }
4861
ftrace_process_regex(struct ftrace_iterator * iter,char * buff,int len,int enable)4862 static int ftrace_process_regex(struct ftrace_iterator *iter,
4863 char *buff, int len, int enable)
4864 {
4865 struct ftrace_hash *hash = iter->hash;
4866 struct trace_array *tr = iter->ops->private;
4867 char *func, *command, *next = buff;
4868 struct ftrace_func_command *p;
4869 int ret = -EINVAL;
4870
4871 func = strsep(&next, ":");
4872
4873 if (!next) {
4874 ret = ftrace_match_records(hash, func, len);
4875 if (!ret)
4876 ret = -EINVAL;
4877 if (ret < 0)
4878 return ret;
4879 return 0;
4880 }
4881
4882 /* command found */
4883
4884 command = strsep(&next, ":");
4885
4886 mutex_lock(&ftrace_cmd_mutex);
4887 list_for_each_entry(p, &ftrace_commands, list) {
4888 if (strcmp(p->name, command) == 0) {
4889 ret = p->func(tr, hash, func, command, next, enable);
4890 goto out_unlock;
4891 }
4892 }
4893 out_unlock:
4894 mutex_unlock(&ftrace_cmd_mutex);
4895
4896 return ret;
4897 }
4898
4899 static ssize_t
ftrace_regex_write(struct file * file,const char __user * ubuf,size_t cnt,loff_t * ppos,int enable)4900 ftrace_regex_write(struct file *file, const char __user *ubuf,
4901 size_t cnt, loff_t *ppos, int enable)
4902 {
4903 struct ftrace_iterator *iter;
4904 struct trace_parser *parser;
4905 ssize_t ret, read;
4906
4907 if (!cnt)
4908 return 0;
4909
4910 if (file->f_mode & FMODE_READ) {
4911 struct seq_file *m = file->private_data;
4912 iter = m->private;
4913 } else
4914 iter = file->private_data;
4915
4916 if (unlikely(ftrace_disabled))
4917 return -ENODEV;
4918
4919 /* iter->hash is a local copy, so we don't need regex_lock */
4920
4921 parser = &iter->parser;
4922 read = trace_get_user(parser, ubuf, cnt, ppos);
4923
4924 if (read >= 0 && trace_parser_loaded(parser) &&
4925 !trace_parser_cont(parser)) {
4926 ret = ftrace_process_regex(iter, parser->buffer,
4927 parser->idx, enable);
4928 trace_parser_clear(parser);
4929 if (ret < 0)
4930 goto out;
4931 }
4932
4933 ret = read;
4934 out:
4935 return ret;
4936 }
4937
4938 ssize_t
ftrace_filter_write(struct file * file,const char __user * ubuf,size_t cnt,loff_t * ppos)4939 ftrace_filter_write(struct file *file, const char __user *ubuf,
4940 size_t cnt, loff_t *ppos)
4941 {
4942 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4943 }
4944
4945 ssize_t
ftrace_notrace_write(struct file * file,const char __user * ubuf,size_t cnt,loff_t * ppos)4946 ftrace_notrace_write(struct file *file, const char __user *ubuf,
4947 size_t cnt, loff_t *ppos)
4948 {
4949 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4950 }
4951
4952 static int
ftrace_match_addr(struct ftrace_hash * hash,unsigned long ip,int remove)4953 ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4954 {
4955 struct ftrace_func_entry *entry;
4956
4957 if (!ftrace_location(ip))
4958 return -EINVAL;
4959
4960 if (remove) {
4961 entry = ftrace_lookup_ip(hash, ip);
4962 if (!entry)
4963 return -ENOENT;
4964 free_hash_entry(hash, entry);
4965 return 0;
4966 }
4967
4968 return add_hash_entry(hash, ip);
4969 }
4970
4971 static int
ftrace_set_hash(struct ftrace_ops * ops,unsigned char * buf,int len,unsigned long ip,int remove,int reset,int enable)4972 ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4973 unsigned long ip, int remove, int reset, int enable)
4974 {
4975 struct ftrace_hash **orig_hash;
4976 struct ftrace_hash *hash;
4977 int ret;
4978
4979 if (unlikely(ftrace_disabled))
4980 return -ENODEV;
4981
4982 mutex_lock(&ops->func_hash->regex_lock);
4983
4984 if (enable)
4985 orig_hash = &ops->func_hash->filter_hash;
4986 else
4987 orig_hash = &ops->func_hash->notrace_hash;
4988
4989 if (reset)
4990 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4991 else
4992 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4993
4994 if (!hash) {
4995 ret = -ENOMEM;
4996 goto out_regex_unlock;
4997 }
4998
4999 if (buf && !ftrace_match_records(hash, buf, len)) {
5000 ret = -EINVAL;
5001 goto out_regex_unlock;
5002 }
5003 if (ip) {
5004 ret = ftrace_match_addr(hash, ip, remove);
5005 if (ret < 0)
5006 goto out_regex_unlock;
5007 }
5008
5009 mutex_lock(&ftrace_lock);
5010 ret = ftrace_hash_move_and_update_ops(ops, orig_hash, hash, enable);
5011 mutex_unlock(&ftrace_lock);
5012
5013 out_regex_unlock:
5014 mutex_unlock(&ops->func_hash->regex_lock);
5015
5016 free_ftrace_hash(hash);
5017 return ret;
5018 }
5019
5020 static int
ftrace_set_addr(struct ftrace_ops * ops,unsigned long ip,int remove,int reset,int enable)5021 ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
5022 int reset, int enable)
5023 {
5024 return ftrace_set_hash(ops, NULL, 0, ip, remove, reset, enable);
5025 }
5026
5027 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
5028
5029 struct ftrace_direct_func {
5030 struct list_head next;
5031 unsigned long addr;
5032 int count;
5033 };
5034
5035 static LIST_HEAD(ftrace_direct_funcs);
5036
5037 /**
5038 * ftrace_find_direct_func - test an address if it is a registered direct caller
5039 * @addr: The address of a registered direct caller
5040 *
5041 * This searches to see if a ftrace direct caller has been registered
5042 * at a specific address, and if so, it returns a descriptor for it.
5043 *
5044 * This can be used by architecture code to see if an address is
5045 * a direct caller (trampoline) attached to a fentry/mcount location.
5046 * This is useful for the function_graph tracer, as it may need to
5047 * do adjustments if it traced a location that also has a direct
5048 * trampoline attached to it.
5049 */
ftrace_find_direct_func(unsigned long addr)5050 struct ftrace_direct_func *ftrace_find_direct_func(unsigned long addr)
5051 {
5052 struct ftrace_direct_func *entry;
5053 bool found = false;
5054
5055 /* May be called by fgraph trampoline (protected by rcu tasks) */
5056 list_for_each_entry_rcu(entry, &ftrace_direct_funcs, next) {
5057 if (entry->addr == addr) {
5058 found = true;
5059 break;
5060 }
5061 }
5062 if (found)
5063 return entry;
5064
5065 return NULL;
5066 }
5067
ftrace_alloc_direct_func(unsigned long addr)5068 static struct ftrace_direct_func *ftrace_alloc_direct_func(unsigned long addr)
5069 {
5070 struct ftrace_direct_func *direct;
5071
5072 direct = kmalloc(sizeof(*direct), GFP_KERNEL);
5073 if (!direct)
5074 return NULL;
5075 direct->addr = addr;
5076 direct->count = 0;
5077 list_add_rcu(&direct->next, &ftrace_direct_funcs);
5078 ftrace_direct_func_count++;
5079 return direct;
5080 }
5081
5082 /**
5083 * register_ftrace_direct - Call a custom trampoline directly
5084 * @ip: The address of the nop at the beginning of a function
5085 * @addr: The address of the trampoline to call at @ip
5086 *
5087 * This is used to connect a direct call from the nop location (@ip)
5088 * at the start of ftrace traced functions. The location that it calls
5089 * (@addr) must be able to handle a direct call, and save the parameters
5090 * of the function being traced, and restore them (or inject new ones
5091 * if needed), before returning.
5092 *
5093 * Returns:
5094 * 0 on success
5095 * -EBUSY - Another direct function is already attached (there can be only one)
5096 * -ENODEV - @ip does not point to a ftrace nop location (or not supported)
5097 * -ENOMEM - There was an allocation failure.
5098 */
register_ftrace_direct(unsigned long ip,unsigned long addr)5099 int register_ftrace_direct(unsigned long ip, unsigned long addr)
5100 {
5101 struct ftrace_direct_func *direct;
5102 struct ftrace_func_entry *entry;
5103 struct ftrace_hash *free_hash = NULL;
5104 struct dyn_ftrace *rec;
5105 int ret = -EBUSY;
5106
5107 mutex_lock(&direct_mutex);
5108
5109 /* See if there's a direct function at @ip already */
5110 if (ftrace_find_rec_direct(ip))
5111 goto out_unlock;
5112
5113 ret = -ENODEV;
5114 rec = lookup_rec(ip, ip);
5115 if (!rec)
5116 goto out_unlock;
5117
5118 /*
5119 * Check if the rec says it has a direct call but we didn't
5120 * find one earlier?
5121 */
5122 if (WARN_ON(rec->flags & FTRACE_FL_DIRECT))
5123 goto out_unlock;
5124
5125 /* Make sure the ip points to the exact record */
5126 if (ip != rec->ip) {
5127 ip = rec->ip;
5128 /* Need to check this ip for a direct. */
5129 if (ftrace_find_rec_direct(ip))
5130 goto out_unlock;
5131 }
5132
5133 ret = -ENOMEM;
5134 if (ftrace_hash_empty(direct_functions) ||
5135 direct_functions->count > 2 * (1 << direct_functions->size_bits)) {
5136 struct ftrace_hash *new_hash;
5137 int size = ftrace_hash_empty(direct_functions) ? 0 :
5138 direct_functions->count + 1;
5139
5140 if (size < 32)
5141 size = 32;
5142
5143 new_hash = dup_hash(direct_functions, size);
5144 if (!new_hash)
5145 goto out_unlock;
5146
5147 free_hash = direct_functions;
5148 direct_functions = new_hash;
5149 }
5150
5151 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
5152 if (!entry)
5153 goto out_unlock;
5154
5155 direct = ftrace_find_direct_func(addr);
5156 if (!direct) {
5157 direct = ftrace_alloc_direct_func(addr);
5158 if (!direct) {
5159 kfree(entry);
5160 goto out_unlock;
5161 }
5162 }
5163
5164 entry->ip = ip;
5165 entry->direct = addr;
5166 __add_hash_entry(direct_functions, entry);
5167
5168 ret = ftrace_set_filter_ip(&direct_ops, ip, 0, 0);
5169
5170 if (!ret && !(direct_ops.flags & FTRACE_OPS_FL_ENABLED)) {
5171 ret = register_ftrace_function(&direct_ops);
5172 if (ret)
5173 ftrace_set_filter_ip(&direct_ops, ip, 1, 0);
5174 }
5175
5176 if (ret) {
5177 remove_hash_entry(direct_functions, entry);
5178 kfree(entry);
5179 if (!direct->count) {
5180 list_del_rcu(&direct->next);
5181 synchronize_rcu_tasks();
5182 kfree(direct);
5183 if (free_hash)
5184 free_ftrace_hash(free_hash);
5185 free_hash = NULL;
5186 ftrace_direct_func_count--;
5187 }
5188 } else {
5189 direct->count++;
5190 }
5191 out_unlock:
5192 mutex_unlock(&direct_mutex);
5193
5194 if (free_hash) {
5195 synchronize_rcu_tasks();
5196 free_ftrace_hash(free_hash);
5197 }
5198
5199 return ret;
5200 }
5201 EXPORT_SYMBOL_GPL(register_ftrace_direct);
5202
find_direct_entry(unsigned long * ip,struct dyn_ftrace ** recp)5203 static struct ftrace_func_entry *find_direct_entry(unsigned long *ip,
5204 struct dyn_ftrace **recp)
5205 {
5206 struct ftrace_func_entry *entry;
5207 struct dyn_ftrace *rec;
5208
5209 rec = lookup_rec(*ip, *ip);
5210 if (!rec)
5211 return NULL;
5212
5213 entry = __ftrace_lookup_ip(direct_functions, rec->ip);
5214 if (!entry) {
5215 WARN_ON(rec->flags & FTRACE_FL_DIRECT);
5216 return NULL;
5217 }
5218
5219 WARN_ON(!(rec->flags & FTRACE_FL_DIRECT));
5220
5221 /* Passed in ip just needs to be on the call site */
5222 *ip = rec->ip;
5223
5224 if (recp)
5225 *recp = rec;
5226
5227 return entry;
5228 }
5229
unregister_ftrace_direct(unsigned long ip,unsigned long addr)5230 int unregister_ftrace_direct(unsigned long ip, unsigned long addr)
5231 {
5232 struct ftrace_direct_func *direct;
5233 struct ftrace_func_entry *entry;
5234 int ret = -ENODEV;
5235
5236 mutex_lock(&direct_mutex);
5237
5238 entry = find_direct_entry(&ip, NULL);
5239 if (!entry)
5240 goto out_unlock;
5241
5242 if (direct_functions->count == 1)
5243 unregister_ftrace_function(&direct_ops);
5244
5245 ret = ftrace_set_filter_ip(&direct_ops, ip, 1, 0);
5246
5247 WARN_ON(ret);
5248
5249 remove_hash_entry(direct_functions, entry);
5250
5251 direct = ftrace_find_direct_func(addr);
5252 if (!WARN_ON(!direct)) {
5253 /* This is the good path (see the ! before WARN) */
5254 direct->count--;
5255 WARN_ON(direct->count < 0);
5256 if (!direct->count) {
5257 list_del_rcu(&direct->next);
5258 synchronize_rcu_tasks();
5259 kfree(direct);
5260 kfree(entry);
5261 ftrace_direct_func_count--;
5262 }
5263 }
5264 out_unlock:
5265 mutex_unlock(&direct_mutex);
5266
5267 return ret;
5268 }
5269 EXPORT_SYMBOL_GPL(unregister_ftrace_direct);
5270
5271 static struct ftrace_ops stub_ops = {
5272 .func = ftrace_stub,
5273 };
5274
5275 /**
5276 * ftrace_modify_direct_caller - modify ftrace nop directly
5277 * @entry: The ftrace hash entry of the direct helper for @rec
5278 * @rec: The record representing the function site to patch
5279 * @old_addr: The location that the site at @rec->ip currently calls
5280 * @new_addr: The location that the site at @rec->ip should call
5281 *
5282 * An architecture may overwrite this function to optimize the
5283 * changing of the direct callback on an ftrace nop location.
5284 * This is called with the ftrace_lock mutex held, and no other
5285 * ftrace callbacks are on the associated record (@rec). Thus,
5286 * it is safe to modify the ftrace record, where it should be
5287 * currently calling @old_addr directly, to call @new_addr.
5288 *
5289 * Safety checks should be made to make sure that the code at
5290 * @rec->ip is currently calling @old_addr. And this must
5291 * also update entry->direct to @new_addr.
5292 */
ftrace_modify_direct_caller(struct ftrace_func_entry * entry,struct dyn_ftrace * rec,unsigned long old_addr,unsigned long new_addr)5293 int __weak ftrace_modify_direct_caller(struct ftrace_func_entry *entry,
5294 struct dyn_ftrace *rec,
5295 unsigned long old_addr,
5296 unsigned long new_addr)
5297 {
5298 unsigned long ip = rec->ip;
5299 int ret;
5300
5301 /*
5302 * The ftrace_lock was used to determine if the record
5303 * had more than one registered user to it. If it did,
5304 * we needed to prevent that from changing to do the quick
5305 * switch. But if it did not (only a direct caller was attached)
5306 * then this function is called. But this function can deal
5307 * with attached callers to the rec that we care about, and
5308 * since this function uses standard ftrace calls that take
5309 * the ftrace_lock mutex, we need to release it.
5310 */
5311 mutex_unlock(&ftrace_lock);
5312
5313 /*
5314 * By setting a stub function at the same address, we force
5315 * the code to call the iterator and the direct_ops helper.
5316 * This means that @ip does not call the direct call, and
5317 * we can simply modify it.
5318 */
5319 ret = ftrace_set_filter_ip(&stub_ops, ip, 0, 0);
5320 if (ret)
5321 goto out_lock;
5322
5323 ret = register_ftrace_function(&stub_ops);
5324 if (ret) {
5325 ftrace_set_filter_ip(&stub_ops, ip, 1, 0);
5326 goto out_lock;
5327 }
5328
5329 entry->direct = new_addr;
5330
5331 /*
5332 * By removing the stub, we put back the direct call, calling
5333 * the @new_addr.
5334 */
5335 unregister_ftrace_function(&stub_ops);
5336 ftrace_set_filter_ip(&stub_ops, ip, 1, 0);
5337
5338 out_lock:
5339 mutex_lock(&ftrace_lock);
5340
5341 return ret;
5342 }
5343
5344 /**
5345 * modify_ftrace_direct - Modify an existing direct call to call something else
5346 * @ip: The instruction pointer to modify
5347 * @old_addr: The address that the current @ip calls directly
5348 * @new_addr: The address that the @ip should call
5349 *
5350 * This modifies a ftrace direct caller at an instruction pointer without
5351 * having to disable it first. The direct call will switch over to the
5352 * @new_addr without missing anything.
5353 *
5354 * Returns: zero on success. Non zero on error, which includes:
5355 * -ENODEV : the @ip given has no direct caller attached
5356 * -EINVAL : the @old_addr does not match the current direct caller
5357 */
modify_ftrace_direct(unsigned long ip,unsigned long old_addr,unsigned long new_addr)5358 int modify_ftrace_direct(unsigned long ip,
5359 unsigned long old_addr, unsigned long new_addr)
5360 {
5361 struct ftrace_direct_func *direct, *new_direct = NULL;
5362 struct ftrace_func_entry *entry;
5363 struct dyn_ftrace *rec;
5364 int ret = -ENODEV;
5365
5366 mutex_lock(&direct_mutex);
5367
5368 mutex_lock(&ftrace_lock);
5369 entry = find_direct_entry(&ip, &rec);
5370 if (!entry)
5371 goto out_unlock;
5372
5373 ret = -EINVAL;
5374 if (entry->direct != old_addr)
5375 goto out_unlock;
5376
5377 direct = ftrace_find_direct_func(old_addr);
5378 if (WARN_ON(!direct))
5379 goto out_unlock;
5380 if (direct->count > 1) {
5381 ret = -ENOMEM;
5382 new_direct = ftrace_alloc_direct_func(new_addr);
5383 if (!new_direct)
5384 goto out_unlock;
5385 direct->count--;
5386 new_direct->count++;
5387 } else {
5388 direct->addr = new_addr;
5389 }
5390
5391 /*
5392 * If there's no other ftrace callback on the rec->ip location,
5393 * then it can be changed directly by the architecture.
5394 * If there is another caller, then we just need to change the
5395 * direct caller helper to point to @new_addr.
5396 */
5397 if (ftrace_rec_count(rec) == 1) {
5398 ret = ftrace_modify_direct_caller(entry, rec, old_addr, new_addr);
5399 } else {
5400 entry->direct = new_addr;
5401 ret = 0;
5402 }
5403
5404 if (ret) {
5405 direct->addr = old_addr;
5406 if (unlikely(new_direct)) {
5407 direct->count++;
5408 list_del_rcu(&new_direct->next);
5409 synchronize_rcu_tasks();
5410 kfree(new_direct);
5411 ftrace_direct_func_count--;
5412 }
5413 }
5414
5415 out_unlock:
5416 mutex_unlock(&ftrace_lock);
5417 mutex_unlock(&direct_mutex);
5418 return ret;
5419 }
5420 EXPORT_SYMBOL_GPL(modify_ftrace_direct);
5421 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
5422
5423 /**
5424 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
5425 * @ops - the ops to set the filter with
5426 * @ip - the address to add to or remove from the filter.
5427 * @remove - non zero to remove the ip from the filter
5428 * @reset - non zero to reset all filters before applying this filter.
5429 *
5430 * Filters denote which functions should be enabled when tracing is enabled
5431 * If @ip is NULL, it failes to update filter.
5432 */
ftrace_set_filter_ip(struct ftrace_ops * ops,unsigned long ip,int remove,int reset)5433 int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
5434 int remove, int reset)
5435 {
5436 ftrace_ops_init(ops);
5437 return ftrace_set_addr(ops, ip, remove, reset, 1);
5438 }
5439 EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
5440
5441 /**
5442 * ftrace_ops_set_global_filter - setup ops to use global filters
5443 * @ops - the ops which will use the global filters
5444 *
5445 * ftrace users who need global function trace filtering should call this.
5446 * It can set the global filter only if ops were not initialized before.
5447 */
ftrace_ops_set_global_filter(struct ftrace_ops * ops)5448 void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
5449 {
5450 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
5451 return;
5452
5453 ftrace_ops_init(ops);
5454 ops->func_hash = &global_ops.local_hash;
5455 }
5456 EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
5457
5458 static int
ftrace_set_regex(struct ftrace_ops * ops,unsigned char * buf,int len,int reset,int enable)5459 ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
5460 int reset, int enable)
5461 {
5462 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
5463 }
5464
5465 /**
5466 * ftrace_set_filter - set a function to filter on in ftrace
5467 * @ops - the ops to set the filter with
5468 * @buf - the string that holds the function filter text.
5469 * @len - the length of the string.
5470 * @reset - non zero to reset all filters before applying this filter.
5471 *
5472 * Filters denote which functions should be enabled when tracing is enabled.
5473 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
5474 */
ftrace_set_filter(struct ftrace_ops * ops,unsigned char * buf,int len,int reset)5475 int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
5476 int len, int reset)
5477 {
5478 ftrace_ops_init(ops);
5479 return ftrace_set_regex(ops, buf, len, reset, 1);
5480 }
5481 EXPORT_SYMBOL_GPL(ftrace_set_filter);
5482
5483 /**
5484 * ftrace_set_notrace - set a function to not trace in ftrace
5485 * @ops - the ops to set the notrace filter with
5486 * @buf - the string that holds the function notrace text.
5487 * @len - the length of the string.
5488 * @reset - non zero to reset all filters before applying this filter.
5489 *
5490 * Notrace Filters denote which functions should not be enabled when tracing
5491 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
5492 * for tracing.
5493 */
ftrace_set_notrace(struct ftrace_ops * ops,unsigned char * buf,int len,int reset)5494 int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
5495 int len, int reset)
5496 {
5497 ftrace_ops_init(ops);
5498 return ftrace_set_regex(ops, buf, len, reset, 0);
5499 }
5500 EXPORT_SYMBOL_GPL(ftrace_set_notrace);
5501 /**
5502 * ftrace_set_global_filter - set a function to filter on with global tracers
5503 * @buf - the string that holds the function filter text.
5504 * @len - the length of the string.
5505 * @reset - non zero to reset all filters before applying this filter.
5506 *
5507 * Filters denote which functions should be enabled when tracing is enabled.
5508 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
5509 */
ftrace_set_global_filter(unsigned char * buf,int len,int reset)5510 void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
5511 {
5512 ftrace_set_regex(&global_ops, buf, len, reset, 1);
5513 }
5514 EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
5515
5516 /**
5517 * ftrace_set_global_notrace - set a function to not trace with global tracers
5518 * @buf - the string that holds the function notrace text.
5519 * @len - the length of the string.
5520 * @reset - non zero to reset all filters before applying this filter.
5521 *
5522 * Notrace Filters denote which functions should not be enabled when tracing
5523 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
5524 * for tracing.
5525 */
ftrace_set_global_notrace(unsigned char * buf,int len,int reset)5526 void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
5527 {
5528 ftrace_set_regex(&global_ops, buf, len, reset, 0);
5529 }
5530 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
5531
5532 /*
5533 * command line interface to allow users to set filters on boot up.
5534 */
5535 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
5536 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
5537 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
5538
5539 /* Used by function selftest to not test if filter is set */
5540 bool ftrace_filter_param __initdata;
5541
set_ftrace_notrace(char * str)5542 static int __init set_ftrace_notrace(char *str)
5543 {
5544 ftrace_filter_param = true;
5545 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
5546 return 1;
5547 }
5548 __setup("ftrace_notrace=", set_ftrace_notrace);
5549
set_ftrace_filter(char * str)5550 static int __init set_ftrace_filter(char *str)
5551 {
5552 ftrace_filter_param = true;
5553 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
5554 return 1;
5555 }
5556 __setup("ftrace_filter=", set_ftrace_filter);
5557
5558 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5559 static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
5560 static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
5561 static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
5562
set_graph_function(char * str)5563 static int __init set_graph_function(char *str)
5564 {
5565 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
5566 return 1;
5567 }
5568 __setup("ftrace_graph_filter=", set_graph_function);
5569
set_graph_notrace_function(char * str)5570 static int __init set_graph_notrace_function(char *str)
5571 {
5572 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
5573 return 1;
5574 }
5575 __setup("ftrace_graph_notrace=", set_graph_notrace_function);
5576
set_graph_max_depth_function(char * str)5577 static int __init set_graph_max_depth_function(char *str)
5578 {
5579 if (!str)
5580 return 0;
5581 fgraph_max_depth = simple_strtoul(str, NULL, 0);
5582 return 1;
5583 }
5584 __setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
5585
set_ftrace_early_graph(char * buf,int enable)5586 static void __init set_ftrace_early_graph(char *buf, int enable)
5587 {
5588 int ret;
5589 char *func;
5590 struct ftrace_hash *hash;
5591
5592 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
5593 if (MEM_FAIL(!hash, "Failed to allocate hash\n"))
5594 return;
5595
5596 while (buf) {
5597 func = strsep(&buf, ",");
5598 /* we allow only one expression at a time */
5599 ret = ftrace_graph_set_hash(hash, func);
5600 if (ret)
5601 printk(KERN_DEBUG "ftrace: function %s not "
5602 "traceable\n", func);
5603 }
5604
5605 if (enable)
5606 ftrace_graph_hash = hash;
5607 else
5608 ftrace_graph_notrace_hash = hash;
5609 }
5610 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5611
5612 void __init
ftrace_set_early_filter(struct ftrace_ops * ops,char * buf,int enable)5613 ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
5614 {
5615 char *func;
5616
5617 ftrace_ops_init(ops);
5618
5619 while (buf) {
5620 func = strsep(&buf, ",");
5621 ftrace_set_regex(ops, func, strlen(func), 0, enable);
5622 }
5623 }
5624
set_ftrace_early_filters(void)5625 static void __init set_ftrace_early_filters(void)
5626 {
5627 if (ftrace_filter_buf[0])
5628 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
5629 if (ftrace_notrace_buf[0])
5630 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
5631 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5632 if (ftrace_graph_buf[0])
5633 set_ftrace_early_graph(ftrace_graph_buf, 1);
5634 if (ftrace_graph_notrace_buf[0])
5635 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
5636 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5637 }
5638
ftrace_regex_release(struct inode * inode,struct file * file)5639 int ftrace_regex_release(struct inode *inode, struct file *file)
5640 {
5641 struct seq_file *m = (struct seq_file *)file->private_data;
5642 struct ftrace_iterator *iter;
5643 struct ftrace_hash **orig_hash;
5644 struct trace_parser *parser;
5645 int filter_hash;
5646 int ret;
5647
5648 if (file->f_mode & FMODE_READ) {
5649 iter = m->private;
5650 seq_release(inode, file);
5651 } else
5652 iter = file->private_data;
5653
5654 parser = &iter->parser;
5655 if (trace_parser_loaded(parser)) {
5656 int enable = !(iter->flags & FTRACE_ITER_NOTRACE);
5657
5658 ftrace_process_regex(iter, parser->buffer,
5659 parser->idx, enable);
5660 }
5661
5662 trace_parser_put(parser);
5663
5664 mutex_lock(&iter->ops->func_hash->regex_lock);
5665
5666 if (file->f_mode & FMODE_WRITE) {
5667 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
5668
5669 if (filter_hash) {
5670 orig_hash = &iter->ops->func_hash->filter_hash;
5671 if (iter->tr) {
5672 if (list_empty(&iter->tr->mod_trace))
5673 iter->hash->flags &= ~FTRACE_HASH_FL_MOD;
5674 else
5675 iter->hash->flags |= FTRACE_HASH_FL_MOD;
5676 }
5677 } else
5678 orig_hash = &iter->ops->func_hash->notrace_hash;
5679
5680 mutex_lock(&ftrace_lock);
5681 ret = ftrace_hash_move_and_update_ops(iter->ops, orig_hash,
5682 iter->hash, filter_hash);
5683 mutex_unlock(&ftrace_lock);
5684 } else {
5685 /* For read only, the hash is the ops hash */
5686 iter->hash = NULL;
5687 }
5688
5689 mutex_unlock(&iter->ops->func_hash->regex_lock);
5690 free_ftrace_hash(iter->hash);
5691 if (iter->tr)
5692 trace_array_put(iter->tr);
5693 kfree(iter);
5694
5695 return 0;
5696 }
5697
5698 static const struct file_operations ftrace_avail_fops = {
5699 .open = ftrace_avail_open,
5700 .read = seq_read,
5701 .llseek = seq_lseek,
5702 .release = seq_release_private,
5703 };
5704
5705 static const struct file_operations ftrace_enabled_fops = {
5706 .open = ftrace_enabled_open,
5707 .read = seq_read,
5708 .llseek = seq_lseek,
5709 .release = seq_release_private,
5710 };
5711
5712 static const struct file_operations ftrace_filter_fops = {
5713 .open = ftrace_filter_open,
5714 .read = seq_read,
5715 .write = ftrace_filter_write,
5716 .llseek = tracing_lseek,
5717 .release = ftrace_regex_release,
5718 };
5719
5720 static const struct file_operations ftrace_notrace_fops = {
5721 .open = ftrace_notrace_open,
5722 .read = seq_read,
5723 .write = ftrace_notrace_write,
5724 .llseek = tracing_lseek,
5725 .release = ftrace_regex_release,
5726 };
5727
5728 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5729
5730 static DEFINE_MUTEX(graph_lock);
5731
5732 struct ftrace_hash __rcu *ftrace_graph_hash = EMPTY_HASH;
5733 struct ftrace_hash __rcu *ftrace_graph_notrace_hash = EMPTY_HASH;
5734
5735 enum graph_filter_type {
5736 GRAPH_FILTER_NOTRACE = 0,
5737 GRAPH_FILTER_FUNCTION,
5738 };
5739
5740 #define FTRACE_GRAPH_EMPTY ((void *)1)
5741
5742 struct ftrace_graph_data {
5743 struct ftrace_hash *hash;
5744 struct ftrace_func_entry *entry;
5745 int idx; /* for hash table iteration */
5746 enum graph_filter_type type;
5747 struct ftrace_hash *new_hash;
5748 const struct seq_operations *seq_ops;
5749 struct trace_parser parser;
5750 };
5751
5752 static void *
__g_next(struct seq_file * m,loff_t * pos)5753 __g_next(struct seq_file *m, loff_t *pos)
5754 {
5755 struct ftrace_graph_data *fgd = m->private;
5756 struct ftrace_func_entry *entry = fgd->entry;
5757 struct hlist_head *head;
5758 int i, idx = fgd->idx;
5759
5760 if (*pos >= fgd->hash->count)
5761 return NULL;
5762
5763 if (entry) {
5764 hlist_for_each_entry_continue(entry, hlist) {
5765 fgd->entry = entry;
5766 return entry;
5767 }
5768
5769 idx++;
5770 }
5771
5772 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
5773 head = &fgd->hash->buckets[i];
5774 hlist_for_each_entry(entry, head, hlist) {
5775 fgd->entry = entry;
5776 fgd->idx = i;
5777 return entry;
5778 }
5779 }
5780 return NULL;
5781 }
5782
5783 static void *
g_next(struct seq_file * m,void * v,loff_t * pos)5784 g_next(struct seq_file *m, void *v, loff_t *pos)
5785 {
5786 (*pos)++;
5787 return __g_next(m, pos);
5788 }
5789
g_start(struct seq_file * m,loff_t * pos)5790 static void *g_start(struct seq_file *m, loff_t *pos)
5791 {
5792 struct ftrace_graph_data *fgd = m->private;
5793
5794 mutex_lock(&graph_lock);
5795
5796 if (fgd->type == GRAPH_FILTER_FUNCTION)
5797 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5798 lockdep_is_held(&graph_lock));
5799 else
5800 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5801 lockdep_is_held(&graph_lock));
5802
5803 /* Nothing, tell g_show to print all functions are enabled */
5804 if (ftrace_hash_empty(fgd->hash) && !*pos)
5805 return FTRACE_GRAPH_EMPTY;
5806
5807 fgd->idx = 0;
5808 fgd->entry = NULL;
5809 return __g_next(m, pos);
5810 }
5811
g_stop(struct seq_file * m,void * p)5812 static void g_stop(struct seq_file *m, void *p)
5813 {
5814 mutex_unlock(&graph_lock);
5815 }
5816
g_show(struct seq_file * m,void * v)5817 static int g_show(struct seq_file *m, void *v)
5818 {
5819 struct ftrace_func_entry *entry = v;
5820
5821 if (!entry)
5822 return 0;
5823
5824 if (entry == FTRACE_GRAPH_EMPTY) {
5825 struct ftrace_graph_data *fgd = m->private;
5826
5827 if (fgd->type == GRAPH_FILTER_FUNCTION)
5828 seq_puts(m, "#### all functions enabled ####\n");
5829 else
5830 seq_puts(m, "#### no functions disabled ####\n");
5831 return 0;
5832 }
5833
5834 seq_printf(m, "%ps\n", (void *)entry->ip);
5835
5836 return 0;
5837 }
5838
5839 static const struct seq_operations ftrace_graph_seq_ops = {
5840 .start = g_start,
5841 .next = g_next,
5842 .stop = g_stop,
5843 .show = g_show,
5844 };
5845
5846 static int
__ftrace_graph_open(struct inode * inode,struct file * file,struct ftrace_graph_data * fgd)5847 __ftrace_graph_open(struct inode *inode, struct file *file,
5848 struct ftrace_graph_data *fgd)
5849 {
5850 int ret;
5851 struct ftrace_hash *new_hash = NULL;
5852
5853 ret = security_locked_down(LOCKDOWN_TRACEFS);
5854 if (ret)
5855 return ret;
5856
5857 if (file->f_mode & FMODE_WRITE) {
5858 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
5859
5860 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
5861 return -ENOMEM;
5862
5863 if (file->f_flags & O_TRUNC)
5864 new_hash = alloc_ftrace_hash(size_bits);
5865 else
5866 new_hash = alloc_and_copy_ftrace_hash(size_bits,
5867 fgd->hash);
5868 if (!new_hash) {
5869 ret = -ENOMEM;
5870 goto out;
5871 }
5872 }
5873
5874 if (file->f_mode & FMODE_READ) {
5875 ret = seq_open(file, &ftrace_graph_seq_ops);
5876 if (!ret) {
5877 struct seq_file *m = file->private_data;
5878 m->private = fgd;
5879 } else {
5880 /* Failed */
5881 free_ftrace_hash(new_hash);
5882 new_hash = NULL;
5883 }
5884 } else
5885 file->private_data = fgd;
5886
5887 out:
5888 if (ret < 0 && file->f_mode & FMODE_WRITE)
5889 trace_parser_put(&fgd->parser);
5890
5891 fgd->new_hash = new_hash;
5892
5893 /*
5894 * All uses of fgd->hash must be taken with the graph_lock
5895 * held. The graph_lock is going to be released, so force
5896 * fgd->hash to be reinitialized when it is taken again.
5897 */
5898 fgd->hash = NULL;
5899
5900 return ret;
5901 }
5902
5903 static int
ftrace_graph_open(struct inode * inode,struct file * file)5904 ftrace_graph_open(struct inode *inode, struct file *file)
5905 {
5906 struct ftrace_graph_data *fgd;
5907 int ret;
5908
5909 if (unlikely(ftrace_disabled))
5910 return -ENODEV;
5911
5912 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5913 if (fgd == NULL)
5914 return -ENOMEM;
5915
5916 mutex_lock(&graph_lock);
5917
5918 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5919 lockdep_is_held(&graph_lock));
5920 fgd->type = GRAPH_FILTER_FUNCTION;
5921 fgd->seq_ops = &ftrace_graph_seq_ops;
5922
5923 ret = __ftrace_graph_open(inode, file, fgd);
5924 if (ret < 0)
5925 kfree(fgd);
5926
5927 mutex_unlock(&graph_lock);
5928 return ret;
5929 }
5930
5931 static int
ftrace_graph_notrace_open(struct inode * inode,struct file * file)5932 ftrace_graph_notrace_open(struct inode *inode, struct file *file)
5933 {
5934 struct ftrace_graph_data *fgd;
5935 int ret;
5936
5937 if (unlikely(ftrace_disabled))
5938 return -ENODEV;
5939
5940 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5941 if (fgd == NULL)
5942 return -ENOMEM;
5943
5944 mutex_lock(&graph_lock);
5945
5946 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5947 lockdep_is_held(&graph_lock));
5948 fgd->type = GRAPH_FILTER_NOTRACE;
5949 fgd->seq_ops = &ftrace_graph_seq_ops;
5950
5951 ret = __ftrace_graph_open(inode, file, fgd);
5952 if (ret < 0)
5953 kfree(fgd);
5954
5955 mutex_unlock(&graph_lock);
5956 return ret;
5957 }
5958
5959 static int
ftrace_graph_release(struct inode * inode,struct file * file)5960 ftrace_graph_release(struct inode *inode, struct file *file)
5961 {
5962 struct ftrace_graph_data *fgd;
5963 struct ftrace_hash *old_hash, *new_hash;
5964 struct trace_parser *parser;
5965 int ret = 0;
5966
5967 if (file->f_mode & FMODE_READ) {
5968 struct seq_file *m = file->private_data;
5969
5970 fgd = m->private;
5971 seq_release(inode, file);
5972 } else {
5973 fgd = file->private_data;
5974 }
5975
5976
5977 if (file->f_mode & FMODE_WRITE) {
5978
5979 parser = &fgd->parser;
5980
5981 if (trace_parser_loaded((parser))) {
5982 ret = ftrace_graph_set_hash(fgd->new_hash,
5983 parser->buffer);
5984 }
5985
5986 trace_parser_put(parser);
5987
5988 new_hash = __ftrace_hash_move(fgd->new_hash);
5989 if (!new_hash) {
5990 ret = -ENOMEM;
5991 goto out;
5992 }
5993
5994 mutex_lock(&graph_lock);
5995
5996 if (fgd->type == GRAPH_FILTER_FUNCTION) {
5997 old_hash = rcu_dereference_protected(ftrace_graph_hash,
5998 lockdep_is_held(&graph_lock));
5999 rcu_assign_pointer(ftrace_graph_hash, new_hash);
6000 } else {
6001 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
6002 lockdep_is_held(&graph_lock));
6003 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
6004 }
6005
6006 mutex_unlock(&graph_lock);
6007
6008 /*
6009 * We need to do a hard force of sched synchronization.
6010 * This is because we use preempt_disable() to do RCU, but
6011 * the function tracers can be called where RCU is not watching
6012 * (like before user_exit()). We can not rely on the RCU
6013 * infrastructure to do the synchronization, thus we must do it
6014 * ourselves.
6015 */
6016 synchronize_rcu_tasks_rude();
6017
6018 free_ftrace_hash(old_hash);
6019 }
6020
6021 out:
6022 free_ftrace_hash(fgd->new_hash);
6023 kfree(fgd);
6024
6025 return ret;
6026 }
6027
6028 static int
ftrace_graph_set_hash(struct ftrace_hash * hash,char * buffer)6029 ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
6030 {
6031 struct ftrace_glob func_g;
6032 struct dyn_ftrace *rec;
6033 struct ftrace_page *pg;
6034 struct ftrace_func_entry *entry;
6035 int fail = 1;
6036 int not;
6037
6038 /* decode regex */
6039 func_g.type = filter_parse_regex(buffer, strlen(buffer),
6040 &func_g.search, ¬);
6041
6042 func_g.len = strlen(func_g.search);
6043
6044 mutex_lock(&ftrace_lock);
6045
6046 if (unlikely(ftrace_disabled)) {
6047 mutex_unlock(&ftrace_lock);
6048 return -ENODEV;
6049 }
6050
6051 do_for_each_ftrace_rec(pg, rec) {
6052
6053 if (rec->flags & FTRACE_FL_DISABLED)
6054 continue;
6055
6056 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
6057 entry = ftrace_lookup_ip(hash, rec->ip);
6058
6059 if (!not) {
6060 fail = 0;
6061
6062 if (entry)
6063 continue;
6064 if (add_hash_entry(hash, rec->ip) < 0)
6065 goto out;
6066 } else {
6067 if (entry) {
6068 free_hash_entry(hash, entry);
6069 fail = 0;
6070 }
6071 }
6072 }
6073 } while_for_each_ftrace_rec();
6074 out:
6075 mutex_unlock(&ftrace_lock);
6076
6077 if (fail)
6078 return -EINVAL;
6079
6080 return 0;
6081 }
6082
6083 static ssize_t
ftrace_graph_write(struct file * file,const char __user * ubuf,size_t cnt,loff_t * ppos)6084 ftrace_graph_write(struct file *file, const char __user *ubuf,
6085 size_t cnt, loff_t *ppos)
6086 {
6087 ssize_t read, ret = 0;
6088 struct ftrace_graph_data *fgd = file->private_data;
6089 struct trace_parser *parser;
6090
6091 if (!cnt)
6092 return 0;
6093
6094 /* Read mode uses seq functions */
6095 if (file->f_mode & FMODE_READ) {
6096 struct seq_file *m = file->private_data;
6097 fgd = m->private;
6098 }
6099
6100 parser = &fgd->parser;
6101
6102 read = trace_get_user(parser, ubuf, cnt, ppos);
6103
6104 if (read >= 0 && trace_parser_loaded(parser) &&
6105 !trace_parser_cont(parser)) {
6106
6107 ret = ftrace_graph_set_hash(fgd->new_hash,
6108 parser->buffer);
6109 trace_parser_clear(parser);
6110 }
6111
6112 if (!ret)
6113 ret = read;
6114
6115 return ret;
6116 }
6117
6118 static const struct file_operations ftrace_graph_fops = {
6119 .open = ftrace_graph_open,
6120 .read = seq_read,
6121 .write = ftrace_graph_write,
6122 .llseek = tracing_lseek,
6123 .release = ftrace_graph_release,
6124 };
6125
6126 static const struct file_operations ftrace_graph_notrace_fops = {
6127 .open = ftrace_graph_notrace_open,
6128 .read = seq_read,
6129 .write = ftrace_graph_write,
6130 .llseek = tracing_lseek,
6131 .release = ftrace_graph_release,
6132 };
6133 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
6134
ftrace_create_filter_files(struct ftrace_ops * ops,struct dentry * parent)6135 void ftrace_create_filter_files(struct ftrace_ops *ops,
6136 struct dentry *parent)
6137 {
6138
6139 trace_create_file("set_ftrace_filter", 0644, parent,
6140 ops, &ftrace_filter_fops);
6141
6142 trace_create_file("set_ftrace_notrace", 0644, parent,
6143 ops, &ftrace_notrace_fops);
6144 }
6145
6146 /*
6147 * The name "destroy_filter_files" is really a misnomer. Although
6148 * in the future, it may actually delete the files, but this is
6149 * really intended to make sure the ops passed in are disabled
6150 * and that when this function returns, the caller is free to
6151 * free the ops.
6152 *
6153 * The "destroy" name is only to match the "create" name that this
6154 * should be paired with.
6155 */
ftrace_destroy_filter_files(struct ftrace_ops * ops)6156 void ftrace_destroy_filter_files(struct ftrace_ops *ops)
6157 {
6158 mutex_lock(&ftrace_lock);
6159 if (ops->flags & FTRACE_OPS_FL_ENABLED)
6160 ftrace_shutdown(ops, 0);
6161 ops->flags |= FTRACE_OPS_FL_DELETED;
6162 ftrace_free_filter(ops);
6163 mutex_unlock(&ftrace_lock);
6164 }
6165
ftrace_init_dyn_tracefs(struct dentry * d_tracer)6166 static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
6167 {
6168
6169 trace_create_file("available_filter_functions", 0444,
6170 d_tracer, NULL, &ftrace_avail_fops);
6171
6172 trace_create_file("enabled_functions", 0444,
6173 d_tracer, NULL, &ftrace_enabled_fops);
6174
6175 ftrace_create_filter_files(&global_ops, d_tracer);
6176
6177 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
6178 trace_create_file("set_graph_function", 0644, d_tracer,
6179 NULL,
6180 &ftrace_graph_fops);
6181 trace_create_file("set_graph_notrace", 0644, d_tracer,
6182 NULL,
6183 &ftrace_graph_notrace_fops);
6184 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
6185
6186 return 0;
6187 }
6188
ftrace_cmp_ips(const void * a,const void * b)6189 static int ftrace_cmp_ips(const void *a, const void *b)
6190 {
6191 const unsigned long *ipa = a;
6192 const unsigned long *ipb = b;
6193
6194 if (*ipa > *ipb)
6195 return 1;
6196 if (*ipa < *ipb)
6197 return -1;
6198 return 0;
6199 }
6200
ftrace_process_locs(struct module * mod,unsigned long * start,unsigned long * end)6201 static int ftrace_process_locs(struct module *mod,
6202 unsigned long *start,
6203 unsigned long *end)
6204 {
6205 struct ftrace_page *pg_unuse = NULL;
6206 struct ftrace_page *start_pg;
6207 struct ftrace_page *pg;
6208 struct dyn_ftrace *rec;
6209 unsigned long skipped = 0;
6210 unsigned long count;
6211 unsigned long *p;
6212 unsigned long addr;
6213 unsigned long flags = 0; /* Shut up gcc */
6214 int ret = -ENOMEM;
6215
6216 count = end - start;
6217
6218 if (!count)
6219 return 0;
6220
6221 sort(start, count, sizeof(*start),
6222 ftrace_cmp_ips, NULL);
6223
6224 start_pg = ftrace_allocate_pages(count);
6225 if (!start_pg)
6226 return -ENOMEM;
6227
6228 mutex_lock(&ftrace_lock);
6229
6230 /*
6231 * Core and each module needs their own pages, as
6232 * modules will free them when they are removed.
6233 * Force a new page to be allocated for modules.
6234 */
6235 if (!mod) {
6236 WARN_ON(ftrace_pages || ftrace_pages_start);
6237 /* First initialization */
6238 ftrace_pages = ftrace_pages_start = start_pg;
6239 } else {
6240 if (!ftrace_pages)
6241 goto out;
6242
6243 if (WARN_ON(ftrace_pages->next)) {
6244 /* Hmm, we have free pages? */
6245 while (ftrace_pages->next)
6246 ftrace_pages = ftrace_pages->next;
6247 }
6248
6249 ftrace_pages->next = start_pg;
6250 }
6251
6252 p = start;
6253 pg = start_pg;
6254 while (p < end) {
6255 unsigned long end_offset;
6256 addr = ftrace_call_adjust(*p++);
6257 /*
6258 * Some architecture linkers will pad between
6259 * the different mcount_loc sections of different
6260 * object files to satisfy alignments.
6261 * Skip any NULL pointers.
6262 */
6263 if (!addr) {
6264 skipped++;
6265 continue;
6266 }
6267
6268 end_offset = (pg->index+1) * sizeof(pg->records[0]);
6269 if (end_offset > PAGE_SIZE << pg->order) {
6270 /* We should have allocated enough */
6271 if (WARN_ON(!pg->next))
6272 break;
6273 pg = pg->next;
6274 }
6275
6276 rec = &pg->records[pg->index++];
6277 rec->ip = addr;
6278 }
6279
6280 if (pg->next) {
6281 pg_unuse = pg->next;
6282 pg->next = NULL;
6283 }
6284
6285 /* Assign the last page to ftrace_pages */
6286 ftrace_pages = pg;
6287
6288 /*
6289 * We only need to disable interrupts on start up
6290 * because we are modifying code that an interrupt
6291 * may execute, and the modification is not atomic.
6292 * But for modules, nothing runs the code we modify
6293 * until we are finished with it, and there's no
6294 * reason to cause large interrupt latencies while we do it.
6295 */
6296 if (!mod)
6297 local_irq_save(flags);
6298 ftrace_update_code(mod, start_pg);
6299 if (!mod)
6300 local_irq_restore(flags);
6301 ret = 0;
6302 out:
6303 mutex_unlock(&ftrace_lock);
6304
6305 /* We should have used all pages unless we skipped some */
6306 if (pg_unuse) {
6307 WARN_ON(!skipped);
6308 /* Need to synchronize with ftrace_location_range() */
6309 synchronize_rcu();
6310 ftrace_free_pages(pg_unuse);
6311 }
6312 return ret;
6313 }
6314
6315 struct ftrace_mod_func {
6316 struct list_head list;
6317 char *name;
6318 unsigned long ip;
6319 unsigned int size;
6320 };
6321
6322 struct ftrace_mod_map {
6323 struct rcu_head rcu;
6324 struct list_head list;
6325 struct module *mod;
6326 unsigned long start_addr;
6327 unsigned long end_addr;
6328 struct list_head funcs;
6329 unsigned int num_funcs;
6330 };
6331
ftrace_get_trampoline_kallsym(unsigned int symnum,unsigned long * value,char * type,char * name,char * module_name,int * exported)6332 static int ftrace_get_trampoline_kallsym(unsigned int symnum,
6333 unsigned long *value, char *type,
6334 char *name, char *module_name,
6335 int *exported)
6336 {
6337 struct ftrace_ops *op;
6338
6339 list_for_each_entry_rcu(op, &ftrace_ops_trampoline_list, list) {
6340 if (!op->trampoline || symnum--)
6341 continue;
6342 *value = op->trampoline;
6343 *type = 't';
6344 strlcpy(name, FTRACE_TRAMPOLINE_SYM, KSYM_NAME_LEN);
6345 strlcpy(module_name, FTRACE_TRAMPOLINE_MOD, MODULE_NAME_LEN);
6346 *exported = 0;
6347 return 0;
6348 }
6349
6350 return -ERANGE;
6351 }
6352
6353 #ifdef CONFIG_MODULES
6354
6355 #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
6356
6357 static LIST_HEAD(ftrace_mod_maps);
6358
referenced_filters(struct dyn_ftrace * rec)6359 static int referenced_filters(struct dyn_ftrace *rec)
6360 {
6361 struct ftrace_ops *ops;
6362 int cnt = 0;
6363
6364 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
6365 if (ops_references_rec(ops, rec)) {
6366 if (WARN_ON_ONCE(ops->flags & FTRACE_OPS_FL_DIRECT))
6367 continue;
6368 if (WARN_ON_ONCE(ops->flags & FTRACE_OPS_FL_IPMODIFY))
6369 continue;
6370 cnt++;
6371 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
6372 rec->flags |= FTRACE_FL_REGS;
6373 if (cnt == 1 && ops->trampoline)
6374 rec->flags |= FTRACE_FL_TRAMP;
6375 else
6376 rec->flags &= ~FTRACE_FL_TRAMP;
6377 }
6378 }
6379
6380 return cnt;
6381 }
6382
6383 static void
clear_mod_from_hash(struct ftrace_page * pg,struct ftrace_hash * hash)6384 clear_mod_from_hash(struct ftrace_page *pg, struct ftrace_hash *hash)
6385 {
6386 struct ftrace_func_entry *entry;
6387 struct dyn_ftrace *rec;
6388 int i;
6389
6390 if (ftrace_hash_empty(hash))
6391 return;
6392
6393 for (i = 0; i < pg->index; i++) {
6394 rec = &pg->records[i];
6395 entry = __ftrace_lookup_ip(hash, rec->ip);
6396 /*
6397 * Do not allow this rec to match again.
6398 * Yeah, it may waste some memory, but will be removed
6399 * if/when the hash is modified again.
6400 */
6401 if (entry)
6402 entry->ip = 0;
6403 }
6404 }
6405
6406 /* Clear any records from hashs */
clear_mod_from_hashes(struct ftrace_page * pg)6407 static void clear_mod_from_hashes(struct ftrace_page *pg)
6408 {
6409 struct trace_array *tr;
6410
6411 mutex_lock(&trace_types_lock);
6412 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
6413 if (!tr->ops || !tr->ops->func_hash)
6414 continue;
6415 mutex_lock(&tr->ops->func_hash->regex_lock);
6416 clear_mod_from_hash(pg, tr->ops->func_hash->filter_hash);
6417 clear_mod_from_hash(pg, tr->ops->func_hash->notrace_hash);
6418 mutex_unlock(&tr->ops->func_hash->regex_lock);
6419 }
6420 mutex_unlock(&trace_types_lock);
6421 }
6422
ftrace_free_mod_map(struct rcu_head * rcu)6423 static void ftrace_free_mod_map(struct rcu_head *rcu)
6424 {
6425 struct ftrace_mod_map *mod_map = container_of(rcu, struct ftrace_mod_map, rcu);
6426 struct ftrace_mod_func *mod_func;
6427 struct ftrace_mod_func *n;
6428
6429 /* All the contents of mod_map are now not visible to readers */
6430 list_for_each_entry_safe(mod_func, n, &mod_map->funcs, list) {
6431 kfree(mod_func->name);
6432 list_del(&mod_func->list);
6433 kfree(mod_func);
6434 }
6435
6436 kfree(mod_map);
6437 }
6438
ftrace_release_mod(struct module * mod)6439 void ftrace_release_mod(struct module *mod)
6440 {
6441 struct ftrace_mod_map *mod_map;
6442 struct ftrace_mod_map *n;
6443 struct dyn_ftrace *rec;
6444 struct ftrace_page **last_pg;
6445 struct ftrace_page *tmp_page = NULL;
6446 struct ftrace_page *pg;
6447
6448 mutex_lock(&ftrace_lock);
6449
6450 if (ftrace_disabled)
6451 goto out_unlock;
6452
6453 list_for_each_entry_safe(mod_map, n, &ftrace_mod_maps, list) {
6454 if (mod_map->mod == mod) {
6455 list_del_rcu(&mod_map->list);
6456 call_rcu(&mod_map->rcu, ftrace_free_mod_map);
6457 break;
6458 }
6459 }
6460
6461 /*
6462 * Each module has its own ftrace_pages, remove
6463 * them from the list.
6464 */
6465 last_pg = &ftrace_pages_start;
6466 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
6467 rec = &pg->records[0];
6468 if (within_module_core(rec->ip, mod) ||
6469 within_module_init(rec->ip, mod)) {
6470 /*
6471 * As core pages are first, the first
6472 * page should never be a module page.
6473 */
6474 if (WARN_ON(pg == ftrace_pages_start))
6475 goto out_unlock;
6476
6477 /* Check if we are deleting the last page */
6478 if (pg == ftrace_pages)
6479 ftrace_pages = next_to_ftrace_page(last_pg);
6480
6481 ftrace_update_tot_cnt -= pg->index;
6482 *last_pg = pg->next;
6483
6484 pg->next = tmp_page;
6485 tmp_page = pg;
6486 } else
6487 last_pg = &pg->next;
6488 }
6489 out_unlock:
6490 mutex_unlock(&ftrace_lock);
6491
6492 /* Need to synchronize with ftrace_location_range() */
6493 if (tmp_page)
6494 synchronize_rcu();
6495 for (pg = tmp_page; pg; pg = tmp_page) {
6496
6497 /* Needs to be called outside of ftrace_lock */
6498 clear_mod_from_hashes(pg);
6499
6500 if (pg->records) {
6501 free_pages((unsigned long)pg->records, pg->order);
6502 ftrace_number_of_pages -= 1 << pg->order;
6503 }
6504 tmp_page = pg->next;
6505 kfree(pg);
6506 ftrace_number_of_groups--;
6507 }
6508 }
6509
ftrace_module_enable(struct module * mod)6510 void ftrace_module_enable(struct module *mod)
6511 {
6512 struct dyn_ftrace *rec;
6513 struct ftrace_page *pg;
6514
6515 mutex_lock(&ftrace_lock);
6516
6517 if (ftrace_disabled)
6518 goto out_unlock;
6519
6520 /*
6521 * If the tracing is enabled, go ahead and enable the record.
6522 *
6523 * The reason not to enable the record immediately is the
6524 * inherent check of ftrace_make_nop/ftrace_make_call for
6525 * correct previous instructions. Making first the NOP
6526 * conversion puts the module to the correct state, thus
6527 * passing the ftrace_make_call check.
6528 *
6529 * We also delay this to after the module code already set the
6530 * text to read-only, as we now need to set it back to read-write
6531 * so that we can modify the text.
6532 */
6533 if (ftrace_start_up)
6534 ftrace_arch_code_modify_prepare();
6535
6536 do_for_each_ftrace_rec(pg, rec) {
6537 int cnt;
6538 /*
6539 * do_for_each_ftrace_rec() is a double loop.
6540 * module text shares the pg. If a record is
6541 * not part of this module, then skip this pg,
6542 * which the "break" will do.
6543 */
6544 if (!within_module_core(rec->ip, mod) &&
6545 !within_module_init(rec->ip, mod))
6546 break;
6547
6548 cnt = 0;
6549
6550 /*
6551 * When adding a module, we need to check if tracers are
6552 * currently enabled and if they are, and can trace this record,
6553 * we need to enable the module functions as well as update the
6554 * reference counts for those function records.
6555 */
6556 if (ftrace_start_up)
6557 cnt += referenced_filters(rec);
6558
6559 rec->flags &= ~FTRACE_FL_DISABLED;
6560 rec->flags += cnt;
6561
6562 if (ftrace_start_up && cnt) {
6563 int failed = __ftrace_replace_code(rec, 1);
6564 if (failed) {
6565 ftrace_bug(failed, rec);
6566 goto out_loop;
6567 }
6568 }
6569
6570 } while_for_each_ftrace_rec();
6571
6572 out_loop:
6573 if (ftrace_start_up)
6574 ftrace_arch_code_modify_post_process();
6575
6576 out_unlock:
6577 mutex_unlock(&ftrace_lock);
6578
6579 process_cached_mods(mod->name);
6580 }
6581
ftrace_module_init(struct module * mod)6582 void ftrace_module_init(struct module *mod)
6583 {
6584 if (ftrace_disabled || !mod->num_ftrace_callsites)
6585 return;
6586
6587 ftrace_process_locs(mod, mod->ftrace_callsites,
6588 mod->ftrace_callsites + mod->num_ftrace_callsites);
6589 }
6590
save_ftrace_mod_rec(struct ftrace_mod_map * mod_map,struct dyn_ftrace * rec)6591 static void save_ftrace_mod_rec(struct ftrace_mod_map *mod_map,
6592 struct dyn_ftrace *rec)
6593 {
6594 struct ftrace_mod_func *mod_func;
6595 unsigned long symsize;
6596 unsigned long offset;
6597 char str[KSYM_SYMBOL_LEN];
6598 char *modname;
6599 const char *ret;
6600
6601 ret = kallsyms_lookup(rec->ip, &symsize, &offset, &modname, str);
6602 if (!ret)
6603 return;
6604
6605 mod_func = kmalloc(sizeof(*mod_func), GFP_KERNEL);
6606 if (!mod_func)
6607 return;
6608
6609 mod_func->name = kstrdup(str, GFP_KERNEL);
6610 if (!mod_func->name) {
6611 kfree(mod_func);
6612 return;
6613 }
6614
6615 mod_func->ip = rec->ip - offset;
6616 mod_func->size = symsize;
6617
6618 mod_map->num_funcs++;
6619
6620 list_add_rcu(&mod_func->list, &mod_map->funcs);
6621 }
6622
6623 static struct ftrace_mod_map *
allocate_ftrace_mod_map(struct module * mod,unsigned long start,unsigned long end)6624 allocate_ftrace_mod_map(struct module *mod,
6625 unsigned long start, unsigned long end)
6626 {
6627 struct ftrace_mod_map *mod_map;
6628
6629 mod_map = kmalloc(sizeof(*mod_map), GFP_KERNEL);
6630 if (!mod_map)
6631 return NULL;
6632
6633 mod_map->mod = mod;
6634 mod_map->start_addr = start;
6635 mod_map->end_addr = end;
6636 mod_map->num_funcs = 0;
6637
6638 INIT_LIST_HEAD_RCU(&mod_map->funcs);
6639
6640 list_add_rcu(&mod_map->list, &ftrace_mod_maps);
6641
6642 return mod_map;
6643 }
6644
6645 static const char *
ftrace_func_address_lookup(struct ftrace_mod_map * mod_map,unsigned long addr,unsigned long * size,unsigned long * off,char * sym)6646 ftrace_func_address_lookup(struct ftrace_mod_map *mod_map,
6647 unsigned long addr, unsigned long *size,
6648 unsigned long *off, char *sym)
6649 {
6650 struct ftrace_mod_func *found_func = NULL;
6651 struct ftrace_mod_func *mod_func;
6652
6653 list_for_each_entry_rcu(mod_func, &mod_map->funcs, list) {
6654 if (addr >= mod_func->ip &&
6655 addr < mod_func->ip + mod_func->size) {
6656 found_func = mod_func;
6657 break;
6658 }
6659 }
6660
6661 if (found_func) {
6662 if (size)
6663 *size = found_func->size;
6664 if (off)
6665 *off = addr - found_func->ip;
6666 if (sym)
6667 strlcpy(sym, found_func->name, KSYM_NAME_LEN);
6668
6669 return found_func->name;
6670 }
6671
6672 return NULL;
6673 }
6674
6675 const char *
ftrace_mod_address_lookup(unsigned long addr,unsigned long * size,unsigned long * off,char ** modname,char * sym)6676 ftrace_mod_address_lookup(unsigned long addr, unsigned long *size,
6677 unsigned long *off, char **modname, char *sym)
6678 {
6679 struct ftrace_mod_map *mod_map;
6680 const char *ret = NULL;
6681
6682 /* mod_map is freed via call_rcu() */
6683 preempt_disable();
6684 list_for_each_entry_rcu(mod_map, &ftrace_mod_maps, list) {
6685 ret = ftrace_func_address_lookup(mod_map, addr, size, off, sym);
6686 if (ret) {
6687 if (modname)
6688 *modname = mod_map->mod->name;
6689 break;
6690 }
6691 }
6692 preempt_enable();
6693
6694 return ret;
6695 }
6696
ftrace_mod_get_kallsym(unsigned int symnum,unsigned long * value,char * type,char * name,char * module_name,int * exported)6697 int ftrace_mod_get_kallsym(unsigned int symnum, unsigned long *value,
6698 char *type, char *name,
6699 char *module_name, int *exported)
6700 {
6701 struct ftrace_mod_map *mod_map;
6702 struct ftrace_mod_func *mod_func;
6703 int ret;
6704
6705 preempt_disable();
6706 list_for_each_entry_rcu(mod_map, &ftrace_mod_maps, list) {
6707
6708 if (symnum >= mod_map->num_funcs) {
6709 symnum -= mod_map->num_funcs;
6710 continue;
6711 }
6712
6713 list_for_each_entry_rcu(mod_func, &mod_map->funcs, list) {
6714 if (symnum > 1) {
6715 symnum--;
6716 continue;
6717 }
6718
6719 *value = mod_func->ip;
6720 *type = 'T';
6721 strlcpy(name, mod_func->name, KSYM_NAME_LEN);
6722 strlcpy(module_name, mod_map->mod->name, MODULE_NAME_LEN);
6723 *exported = 1;
6724 preempt_enable();
6725 return 0;
6726 }
6727 WARN_ON(1);
6728 break;
6729 }
6730 ret = ftrace_get_trampoline_kallsym(symnum, value, type, name,
6731 module_name, exported);
6732 preempt_enable();
6733 return ret;
6734 }
6735
6736 #else
save_ftrace_mod_rec(struct ftrace_mod_map * mod_map,struct dyn_ftrace * rec)6737 static void save_ftrace_mod_rec(struct ftrace_mod_map *mod_map,
6738 struct dyn_ftrace *rec) { }
6739 static inline struct ftrace_mod_map *
allocate_ftrace_mod_map(struct module * mod,unsigned long start,unsigned long end)6740 allocate_ftrace_mod_map(struct module *mod,
6741 unsigned long start, unsigned long end)
6742 {
6743 return NULL;
6744 }
ftrace_mod_get_kallsym(unsigned int symnum,unsigned long * value,char * type,char * name,char * module_name,int * exported)6745 int ftrace_mod_get_kallsym(unsigned int symnum, unsigned long *value,
6746 char *type, char *name, char *module_name,
6747 int *exported)
6748 {
6749 int ret;
6750
6751 preempt_disable();
6752 ret = ftrace_get_trampoline_kallsym(symnum, value, type, name,
6753 module_name, exported);
6754 preempt_enable();
6755 return ret;
6756 }
6757 #endif /* CONFIG_MODULES */
6758
6759 struct ftrace_init_func {
6760 struct list_head list;
6761 unsigned long ip;
6762 };
6763
6764 /* Clear any init ips from hashes */
6765 static void
clear_func_from_hash(struct ftrace_init_func * func,struct ftrace_hash * hash)6766 clear_func_from_hash(struct ftrace_init_func *func, struct ftrace_hash *hash)
6767 {
6768 struct ftrace_func_entry *entry;
6769
6770 entry = ftrace_lookup_ip(hash, func->ip);
6771 /*
6772 * Do not allow this rec to match again.
6773 * Yeah, it may waste some memory, but will be removed
6774 * if/when the hash is modified again.
6775 */
6776 if (entry)
6777 entry->ip = 0;
6778 }
6779
6780 static void
clear_func_from_hashes(struct ftrace_init_func * func)6781 clear_func_from_hashes(struct ftrace_init_func *func)
6782 {
6783 struct trace_array *tr;
6784
6785 mutex_lock(&trace_types_lock);
6786 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
6787 if (!tr->ops || !tr->ops->func_hash)
6788 continue;
6789 mutex_lock(&tr->ops->func_hash->regex_lock);
6790 clear_func_from_hash(func, tr->ops->func_hash->filter_hash);
6791 clear_func_from_hash(func, tr->ops->func_hash->notrace_hash);
6792 mutex_unlock(&tr->ops->func_hash->regex_lock);
6793 }
6794 mutex_unlock(&trace_types_lock);
6795 }
6796
add_to_clear_hash_list(struct list_head * clear_list,struct dyn_ftrace * rec)6797 static void add_to_clear_hash_list(struct list_head *clear_list,
6798 struct dyn_ftrace *rec)
6799 {
6800 struct ftrace_init_func *func;
6801
6802 func = kmalloc(sizeof(*func), GFP_KERNEL);
6803 if (!func) {
6804 MEM_FAIL(1, "alloc failure, ftrace filter could be stale\n");
6805 return;
6806 }
6807
6808 func->ip = rec->ip;
6809 list_add(&func->list, clear_list);
6810 }
6811
ftrace_free_mem(struct module * mod,void * start_ptr,void * end_ptr)6812 void ftrace_free_mem(struct module *mod, void *start_ptr, void *end_ptr)
6813 {
6814 unsigned long start = (unsigned long)(start_ptr);
6815 unsigned long end = (unsigned long)(end_ptr);
6816 struct ftrace_page **last_pg = &ftrace_pages_start;
6817 struct ftrace_page *tmp_page = NULL;
6818 struct ftrace_page *pg;
6819 struct dyn_ftrace *rec;
6820 struct dyn_ftrace key;
6821 struct ftrace_mod_map *mod_map = NULL;
6822 struct ftrace_init_func *func, *func_next;
6823 struct list_head clear_hash;
6824
6825 INIT_LIST_HEAD(&clear_hash);
6826
6827 key.ip = start;
6828 key.flags = end; /* overload flags, as it is unsigned long */
6829
6830 mutex_lock(&ftrace_lock);
6831
6832 /*
6833 * If we are freeing module init memory, then check if
6834 * any tracer is active. If so, we need to save a mapping of
6835 * the module functions being freed with the address.
6836 */
6837 if (mod && ftrace_ops_list != &ftrace_list_end)
6838 mod_map = allocate_ftrace_mod_map(mod, start, end);
6839
6840 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
6841 if (end < pg->records[0].ip ||
6842 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
6843 continue;
6844 again:
6845 rec = bsearch(&key, pg->records, pg->index,
6846 sizeof(struct dyn_ftrace),
6847 ftrace_cmp_recs);
6848 if (!rec)
6849 continue;
6850
6851 /* rec will be cleared from hashes after ftrace_lock unlock */
6852 add_to_clear_hash_list(&clear_hash, rec);
6853
6854 if (mod_map)
6855 save_ftrace_mod_rec(mod_map, rec);
6856
6857 pg->index--;
6858 ftrace_update_tot_cnt--;
6859 if (!pg->index) {
6860 *last_pg = pg->next;
6861 pg->next = tmp_page;
6862 tmp_page = pg;
6863 pg = container_of(last_pg, struct ftrace_page, next);
6864 if (!(*last_pg))
6865 ftrace_pages = pg;
6866 continue;
6867 }
6868 memmove(rec, rec + 1,
6869 (pg->index - (rec - pg->records)) * sizeof(*rec));
6870 /* More than one function may be in this block */
6871 goto again;
6872 }
6873 mutex_unlock(&ftrace_lock);
6874
6875 list_for_each_entry_safe(func, func_next, &clear_hash, list) {
6876 clear_func_from_hashes(func);
6877 kfree(func);
6878 }
6879 /* Need to synchronize with ftrace_location_range() */
6880 if (tmp_page) {
6881 synchronize_rcu();
6882 ftrace_free_pages(tmp_page);
6883 }
6884 }
6885
ftrace_free_init_mem(void)6886 void __init ftrace_free_init_mem(void)
6887 {
6888 void *start = (void *)(&__init_begin);
6889 void *end = (void *)(&__init_end);
6890
6891 ftrace_free_mem(NULL, start, end);
6892 }
6893
ftrace_init(void)6894 void __init ftrace_init(void)
6895 {
6896 extern unsigned long __start_mcount_loc[];
6897 extern unsigned long __stop_mcount_loc[];
6898 unsigned long count, flags;
6899 int ret;
6900
6901 local_irq_save(flags);
6902 ret = ftrace_dyn_arch_init();
6903 local_irq_restore(flags);
6904 if (ret)
6905 goto failed;
6906
6907 count = __stop_mcount_loc - __start_mcount_loc;
6908 if (!count) {
6909 pr_info("ftrace: No functions to be traced?\n");
6910 goto failed;
6911 }
6912
6913 pr_info("ftrace: allocating %ld entries in %ld pages\n",
6914 count, DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
6915
6916 last_ftrace_enabled = ftrace_enabled = 1;
6917
6918 ret = ftrace_process_locs(NULL,
6919 __start_mcount_loc,
6920 __stop_mcount_loc);
6921
6922 pr_info("ftrace: allocated %ld pages with %ld groups\n",
6923 ftrace_number_of_pages, ftrace_number_of_groups);
6924
6925 set_ftrace_early_filters();
6926
6927 return;
6928 failed:
6929 ftrace_disabled = 1;
6930 }
6931
6932 /* Do nothing if arch does not support this */
arch_ftrace_update_trampoline(struct ftrace_ops * ops)6933 void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
6934 {
6935 }
6936
ftrace_update_trampoline(struct ftrace_ops * ops)6937 static void ftrace_update_trampoline(struct ftrace_ops *ops)
6938 {
6939 unsigned long trampoline = ops->trampoline;
6940
6941 arch_ftrace_update_trampoline(ops);
6942 if (ops->trampoline && ops->trampoline != trampoline &&
6943 (ops->flags & FTRACE_OPS_FL_ALLOC_TRAMP)) {
6944 /* Add to kallsyms before the perf events */
6945 ftrace_add_trampoline_to_kallsyms(ops);
6946 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_OOL,
6947 ops->trampoline, ops->trampoline_size, false,
6948 FTRACE_TRAMPOLINE_SYM);
6949 /*
6950 * Record the perf text poke event after the ksymbol register
6951 * event.
6952 */
6953 perf_event_text_poke((void *)ops->trampoline, NULL, 0,
6954 (void *)ops->trampoline,
6955 ops->trampoline_size);
6956 }
6957 }
6958
ftrace_init_trace_array(struct trace_array * tr)6959 void ftrace_init_trace_array(struct trace_array *tr)
6960 {
6961 INIT_LIST_HEAD(&tr->func_probes);
6962 INIT_LIST_HEAD(&tr->mod_trace);
6963 INIT_LIST_HEAD(&tr->mod_notrace);
6964 }
6965 #else
6966
6967 struct ftrace_ops global_ops = {
6968 .func = ftrace_stub,
6969 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
6970 FTRACE_OPS_FL_INITIALIZED |
6971 FTRACE_OPS_FL_PID,
6972 };
6973
ftrace_nodyn_init(void)6974 static int __init ftrace_nodyn_init(void)
6975 {
6976 ftrace_enabled = 1;
6977 return 0;
6978 }
6979 core_initcall(ftrace_nodyn_init);
6980
ftrace_init_dyn_tracefs(struct dentry * d_tracer)6981 static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
ftrace_startup_enable(int command)6982 static inline void ftrace_startup_enable(int command) { }
ftrace_startup_all(int command)6983 static inline void ftrace_startup_all(int command) { }
6984
6985 # define ftrace_startup_sysctl() do { } while (0)
6986 # define ftrace_shutdown_sysctl() do { } while (0)
6987
ftrace_update_trampoline(struct ftrace_ops * ops)6988 static void ftrace_update_trampoline(struct ftrace_ops *ops)
6989 {
6990 }
6991
6992 #endif /* CONFIG_DYNAMIC_FTRACE */
6993
ftrace_init_global_array_ops(struct trace_array * tr)6994 __init void ftrace_init_global_array_ops(struct trace_array *tr)
6995 {
6996 tr->ops = &global_ops;
6997 tr->ops->private = tr;
6998 ftrace_init_trace_array(tr);
6999 }
7000
ftrace_init_array_ops(struct trace_array * tr,ftrace_func_t func)7001 void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
7002 {
7003 /* If we filter on pids, update to use the pid function */
7004 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
7005 if (WARN_ON(tr->ops->func != ftrace_stub))
7006 printk("ftrace ops had %pS for function\n",
7007 tr->ops->func);
7008 }
7009 tr->ops->func = func;
7010 tr->ops->private = tr;
7011 }
7012
ftrace_reset_array_ops(struct trace_array * tr)7013 void ftrace_reset_array_ops(struct trace_array *tr)
7014 {
7015 tr->ops->func = ftrace_stub;
7016 }
7017
7018 static nokprobe_inline void
__ftrace_ops_list_func(unsigned long ip,unsigned long parent_ip,struct ftrace_ops * ignored,struct pt_regs * regs)7019 __ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
7020 struct ftrace_ops *ignored, struct pt_regs *regs)
7021 {
7022 struct ftrace_ops *op;
7023 int bit;
7024
7025 bit = trace_test_and_set_recursion(TRACE_LIST_START);
7026 if (bit < 0)
7027 return;
7028
7029 /*
7030 * Some of the ops may be dynamically allocated,
7031 * they must be freed after a synchronize_rcu().
7032 */
7033 preempt_disable_notrace();
7034
7035 do_for_each_ftrace_op(op, ftrace_ops_list) {
7036 /* Stub functions don't need to be called nor tested */
7037 if (op->flags & FTRACE_OPS_FL_STUB)
7038 continue;
7039 /*
7040 * Check the following for each ops before calling their func:
7041 * if RCU flag is set, then rcu_is_watching() must be true
7042 * if PER_CPU is set, then ftrace_function_local_disable()
7043 * must be false
7044 * Otherwise test if the ip matches the ops filter
7045 *
7046 * If any of the above fails then the op->func() is not executed.
7047 */
7048 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
7049 ftrace_ops_test(op, ip, regs)) {
7050 if (FTRACE_WARN_ON(!op->func)) {
7051 pr_warn("op=%p %pS\n", op, op);
7052 goto out;
7053 }
7054 op->func(ip, parent_ip, op, regs);
7055 }
7056 } while_for_each_ftrace_op(op);
7057 out:
7058 preempt_enable_notrace();
7059 trace_clear_recursion(bit);
7060 }
7061
7062 /*
7063 * Some archs only support passing ip and parent_ip. Even though
7064 * the list function ignores the op parameter, we do not want any
7065 * C side effects, where a function is called without the caller
7066 * sending a third parameter.
7067 * Archs are to support both the regs and ftrace_ops at the same time.
7068 * If they support ftrace_ops, it is assumed they support regs.
7069 * If call backs want to use regs, they must either check for regs
7070 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
7071 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
7072 * An architecture can pass partial regs with ftrace_ops and still
7073 * set the ARCH_SUPPORTS_FTRACE_OPS.
7074 */
7075 #if ARCH_SUPPORTS_FTRACE_OPS
ftrace_ops_list_func(unsigned long ip,unsigned long parent_ip,struct ftrace_ops * op,struct pt_regs * regs)7076 static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
7077 struct ftrace_ops *op, struct pt_regs *regs)
7078 {
7079 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
7080 }
7081 NOKPROBE_SYMBOL(ftrace_ops_list_func);
7082 #else
ftrace_ops_no_ops(unsigned long ip,unsigned long parent_ip)7083 static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
7084 {
7085 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
7086 }
7087 NOKPROBE_SYMBOL(ftrace_ops_no_ops);
7088 #endif
7089
7090 /*
7091 * If there's only one function registered but it does not support
7092 * recursion, needs RCU protection and/or requires per cpu handling, then
7093 * this function will be called by the mcount trampoline.
7094 */
ftrace_ops_assist_func(unsigned long ip,unsigned long parent_ip,struct ftrace_ops * op,struct pt_regs * regs)7095 static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
7096 struct ftrace_ops *op, struct pt_regs *regs)
7097 {
7098 int bit;
7099
7100 bit = trace_test_and_set_recursion(TRACE_LIST_START);
7101 if (bit < 0)
7102 return;
7103
7104 preempt_disable_notrace();
7105
7106 if (!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching())
7107 op->func(ip, parent_ip, op, regs);
7108
7109 preempt_enable_notrace();
7110 trace_clear_recursion(bit);
7111 }
7112 NOKPROBE_SYMBOL(ftrace_ops_assist_func);
7113
7114 /**
7115 * ftrace_ops_get_func - get the function a trampoline should call
7116 * @ops: the ops to get the function for
7117 *
7118 * Normally the mcount trampoline will call the ops->func, but there
7119 * are times that it should not. For example, if the ops does not
7120 * have its own recursion protection, then it should call the
7121 * ftrace_ops_assist_func() instead.
7122 *
7123 * Returns the function that the trampoline should call for @ops.
7124 */
ftrace_ops_get_func(struct ftrace_ops * ops)7125 ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
7126 {
7127 /*
7128 * If the function does not handle recursion, needs to be RCU safe,
7129 * or does per cpu logic, then we need to call the assist handler.
7130 */
7131 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
7132 ops->flags & FTRACE_OPS_FL_RCU)
7133 return ftrace_ops_assist_func;
7134
7135 return ops->func;
7136 }
7137
7138 static void
ftrace_filter_pid_sched_switch_probe(void * data,bool preempt,struct task_struct * prev,struct task_struct * next)7139 ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
7140 struct task_struct *prev, struct task_struct *next)
7141 {
7142 struct trace_array *tr = data;
7143 struct trace_pid_list *pid_list;
7144 struct trace_pid_list *no_pid_list;
7145
7146 pid_list = rcu_dereference_sched(tr->function_pids);
7147 no_pid_list = rcu_dereference_sched(tr->function_no_pids);
7148
7149 if (trace_ignore_this_task(pid_list, no_pid_list, next))
7150 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7151 FTRACE_PID_IGNORE);
7152 else
7153 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7154 next->pid);
7155 }
7156
7157 static void
ftrace_pid_follow_sched_process_fork(void * data,struct task_struct * self,struct task_struct * task)7158 ftrace_pid_follow_sched_process_fork(void *data,
7159 struct task_struct *self,
7160 struct task_struct *task)
7161 {
7162 struct trace_pid_list *pid_list;
7163 struct trace_array *tr = data;
7164
7165 pid_list = rcu_dereference_sched(tr->function_pids);
7166 trace_filter_add_remove_task(pid_list, self, task);
7167
7168 pid_list = rcu_dereference_sched(tr->function_no_pids);
7169 trace_filter_add_remove_task(pid_list, self, task);
7170 }
7171
7172 static void
ftrace_pid_follow_sched_process_exit(void * data,struct task_struct * task)7173 ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
7174 {
7175 struct trace_pid_list *pid_list;
7176 struct trace_array *tr = data;
7177
7178 pid_list = rcu_dereference_sched(tr->function_pids);
7179 trace_filter_add_remove_task(pid_list, NULL, task);
7180
7181 pid_list = rcu_dereference_sched(tr->function_no_pids);
7182 trace_filter_add_remove_task(pid_list, NULL, task);
7183 }
7184
ftrace_pid_follow_fork(struct trace_array * tr,bool enable)7185 void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
7186 {
7187 if (enable) {
7188 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
7189 tr);
7190 register_trace_sched_process_free(ftrace_pid_follow_sched_process_exit,
7191 tr);
7192 } else {
7193 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
7194 tr);
7195 unregister_trace_sched_process_free(ftrace_pid_follow_sched_process_exit,
7196 tr);
7197 }
7198 }
7199
clear_ftrace_pids(struct trace_array * tr,int type)7200 static void clear_ftrace_pids(struct trace_array *tr, int type)
7201 {
7202 struct trace_pid_list *pid_list;
7203 struct trace_pid_list *no_pid_list;
7204 int cpu;
7205
7206 pid_list = rcu_dereference_protected(tr->function_pids,
7207 lockdep_is_held(&ftrace_lock));
7208 no_pid_list = rcu_dereference_protected(tr->function_no_pids,
7209 lockdep_is_held(&ftrace_lock));
7210
7211 /* Make sure there's something to do */
7212 if (!pid_type_enabled(type, pid_list, no_pid_list))
7213 return;
7214
7215 /* See if the pids still need to be checked after this */
7216 if (!still_need_pid_events(type, pid_list, no_pid_list)) {
7217 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
7218 for_each_possible_cpu(cpu)
7219 per_cpu_ptr(tr->array_buffer.data, cpu)->ftrace_ignore_pid = FTRACE_PID_TRACE;
7220 }
7221
7222 if (type & TRACE_PIDS)
7223 rcu_assign_pointer(tr->function_pids, NULL);
7224
7225 if (type & TRACE_NO_PIDS)
7226 rcu_assign_pointer(tr->function_no_pids, NULL);
7227
7228 /* Wait till all users are no longer using pid filtering */
7229 synchronize_rcu();
7230
7231 if ((type & TRACE_PIDS) && pid_list)
7232 trace_free_pid_list(pid_list);
7233
7234 if ((type & TRACE_NO_PIDS) && no_pid_list)
7235 trace_free_pid_list(no_pid_list);
7236 }
7237
ftrace_clear_pids(struct trace_array * tr)7238 void ftrace_clear_pids(struct trace_array *tr)
7239 {
7240 mutex_lock(&ftrace_lock);
7241
7242 clear_ftrace_pids(tr, TRACE_PIDS | TRACE_NO_PIDS);
7243
7244 mutex_unlock(&ftrace_lock);
7245 }
7246
ftrace_pid_reset(struct trace_array * tr,int type)7247 static void ftrace_pid_reset(struct trace_array *tr, int type)
7248 {
7249 mutex_lock(&ftrace_lock);
7250 clear_ftrace_pids(tr, type);
7251
7252 ftrace_update_pid_func();
7253 ftrace_startup_all(0);
7254
7255 mutex_unlock(&ftrace_lock);
7256 }
7257
7258 /* Greater than any max PID */
7259 #define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
7260
fpid_start(struct seq_file * m,loff_t * pos)7261 static void *fpid_start(struct seq_file *m, loff_t *pos)
7262 __acquires(RCU)
7263 {
7264 struct trace_pid_list *pid_list;
7265 struct trace_array *tr = m->private;
7266
7267 mutex_lock(&ftrace_lock);
7268 rcu_read_lock_sched();
7269
7270 pid_list = rcu_dereference_sched(tr->function_pids);
7271
7272 if (!pid_list)
7273 return !(*pos) ? FTRACE_NO_PIDS : NULL;
7274
7275 return trace_pid_start(pid_list, pos);
7276 }
7277
fpid_next(struct seq_file * m,void * v,loff_t * pos)7278 static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
7279 {
7280 struct trace_array *tr = m->private;
7281 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
7282
7283 if (v == FTRACE_NO_PIDS) {
7284 (*pos)++;
7285 return NULL;
7286 }
7287 return trace_pid_next(pid_list, v, pos);
7288 }
7289
fpid_stop(struct seq_file * m,void * p)7290 static void fpid_stop(struct seq_file *m, void *p)
7291 __releases(RCU)
7292 {
7293 rcu_read_unlock_sched();
7294 mutex_unlock(&ftrace_lock);
7295 }
7296
fpid_show(struct seq_file * m,void * v)7297 static int fpid_show(struct seq_file *m, void *v)
7298 {
7299 if (v == FTRACE_NO_PIDS) {
7300 seq_puts(m, "no pid\n");
7301 return 0;
7302 }
7303
7304 return trace_pid_show(m, v);
7305 }
7306
7307 static const struct seq_operations ftrace_pid_sops = {
7308 .start = fpid_start,
7309 .next = fpid_next,
7310 .stop = fpid_stop,
7311 .show = fpid_show,
7312 };
7313
fnpid_start(struct seq_file * m,loff_t * pos)7314 static void *fnpid_start(struct seq_file *m, loff_t *pos)
7315 __acquires(RCU)
7316 {
7317 struct trace_pid_list *pid_list;
7318 struct trace_array *tr = m->private;
7319
7320 mutex_lock(&ftrace_lock);
7321 rcu_read_lock_sched();
7322
7323 pid_list = rcu_dereference_sched(tr->function_no_pids);
7324
7325 if (!pid_list)
7326 return !(*pos) ? FTRACE_NO_PIDS : NULL;
7327
7328 return trace_pid_start(pid_list, pos);
7329 }
7330
fnpid_next(struct seq_file * m,void * v,loff_t * pos)7331 static void *fnpid_next(struct seq_file *m, void *v, loff_t *pos)
7332 {
7333 struct trace_array *tr = m->private;
7334 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_no_pids);
7335
7336 if (v == FTRACE_NO_PIDS) {
7337 (*pos)++;
7338 return NULL;
7339 }
7340 return trace_pid_next(pid_list, v, pos);
7341 }
7342
7343 static const struct seq_operations ftrace_no_pid_sops = {
7344 .start = fnpid_start,
7345 .next = fnpid_next,
7346 .stop = fpid_stop,
7347 .show = fpid_show,
7348 };
7349
pid_open(struct inode * inode,struct file * file,int type)7350 static int pid_open(struct inode *inode, struct file *file, int type)
7351 {
7352 const struct seq_operations *seq_ops;
7353 struct trace_array *tr = inode->i_private;
7354 struct seq_file *m;
7355 int ret = 0;
7356
7357 ret = tracing_check_open_get_tr(tr);
7358 if (ret)
7359 return ret;
7360
7361 if ((file->f_mode & FMODE_WRITE) &&
7362 (file->f_flags & O_TRUNC))
7363 ftrace_pid_reset(tr, type);
7364
7365 switch (type) {
7366 case TRACE_PIDS:
7367 seq_ops = &ftrace_pid_sops;
7368 break;
7369 case TRACE_NO_PIDS:
7370 seq_ops = &ftrace_no_pid_sops;
7371 break;
7372 default:
7373 trace_array_put(tr);
7374 WARN_ON_ONCE(1);
7375 return -EINVAL;
7376 }
7377
7378 ret = seq_open(file, seq_ops);
7379 if (ret < 0) {
7380 trace_array_put(tr);
7381 } else {
7382 m = file->private_data;
7383 /* copy tr over to seq ops */
7384 m->private = tr;
7385 }
7386
7387 return ret;
7388 }
7389
7390 static int
ftrace_pid_open(struct inode * inode,struct file * file)7391 ftrace_pid_open(struct inode *inode, struct file *file)
7392 {
7393 return pid_open(inode, file, TRACE_PIDS);
7394 }
7395
7396 static int
ftrace_no_pid_open(struct inode * inode,struct file * file)7397 ftrace_no_pid_open(struct inode *inode, struct file *file)
7398 {
7399 return pid_open(inode, file, TRACE_NO_PIDS);
7400 }
7401
ignore_task_cpu(void * data)7402 static void ignore_task_cpu(void *data)
7403 {
7404 struct trace_array *tr = data;
7405 struct trace_pid_list *pid_list;
7406 struct trace_pid_list *no_pid_list;
7407
7408 /*
7409 * This function is called by on_each_cpu() while the
7410 * event_mutex is held.
7411 */
7412 pid_list = rcu_dereference_protected(tr->function_pids,
7413 mutex_is_locked(&ftrace_lock));
7414 no_pid_list = rcu_dereference_protected(tr->function_no_pids,
7415 mutex_is_locked(&ftrace_lock));
7416
7417 if (trace_ignore_this_task(pid_list, no_pid_list, current))
7418 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7419 FTRACE_PID_IGNORE);
7420 else
7421 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7422 current->pid);
7423 }
7424
7425 static ssize_t
pid_write(struct file * filp,const char __user * ubuf,size_t cnt,loff_t * ppos,int type)7426 pid_write(struct file *filp, const char __user *ubuf,
7427 size_t cnt, loff_t *ppos, int type)
7428 {
7429 struct seq_file *m = filp->private_data;
7430 struct trace_array *tr = m->private;
7431 struct trace_pid_list *filtered_pids;
7432 struct trace_pid_list *other_pids;
7433 struct trace_pid_list *pid_list;
7434 ssize_t ret;
7435
7436 if (!cnt)
7437 return 0;
7438
7439 mutex_lock(&ftrace_lock);
7440
7441 switch (type) {
7442 case TRACE_PIDS:
7443 filtered_pids = rcu_dereference_protected(tr->function_pids,
7444 lockdep_is_held(&ftrace_lock));
7445 other_pids = rcu_dereference_protected(tr->function_no_pids,
7446 lockdep_is_held(&ftrace_lock));
7447 break;
7448 case TRACE_NO_PIDS:
7449 filtered_pids = rcu_dereference_protected(tr->function_no_pids,
7450 lockdep_is_held(&ftrace_lock));
7451 other_pids = rcu_dereference_protected(tr->function_pids,
7452 lockdep_is_held(&ftrace_lock));
7453 break;
7454 default:
7455 ret = -EINVAL;
7456 WARN_ON_ONCE(1);
7457 goto out;
7458 }
7459
7460 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
7461 if (ret < 0)
7462 goto out;
7463
7464 switch (type) {
7465 case TRACE_PIDS:
7466 rcu_assign_pointer(tr->function_pids, pid_list);
7467 break;
7468 case TRACE_NO_PIDS:
7469 rcu_assign_pointer(tr->function_no_pids, pid_list);
7470 break;
7471 }
7472
7473
7474 if (filtered_pids) {
7475 synchronize_rcu();
7476 trace_free_pid_list(filtered_pids);
7477 } else if (pid_list && !other_pids) {
7478 /* Register a probe to set whether to ignore the tracing of a task */
7479 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
7480 }
7481
7482 /*
7483 * Ignoring of pids is done at task switch. But we have to
7484 * check for those tasks that are currently running.
7485 * Always do this in case a pid was appended or removed.
7486 */
7487 on_each_cpu(ignore_task_cpu, tr, 1);
7488
7489 ftrace_update_pid_func();
7490 ftrace_startup_all(0);
7491 out:
7492 mutex_unlock(&ftrace_lock);
7493
7494 if (ret > 0)
7495 *ppos += ret;
7496
7497 return ret;
7498 }
7499
7500 static ssize_t
ftrace_pid_write(struct file * filp,const char __user * ubuf,size_t cnt,loff_t * ppos)7501 ftrace_pid_write(struct file *filp, const char __user *ubuf,
7502 size_t cnt, loff_t *ppos)
7503 {
7504 return pid_write(filp, ubuf, cnt, ppos, TRACE_PIDS);
7505 }
7506
7507 static ssize_t
ftrace_no_pid_write(struct file * filp,const char __user * ubuf,size_t cnt,loff_t * ppos)7508 ftrace_no_pid_write(struct file *filp, const char __user *ubuf,
7509 size_t cnt, loff_t *ppos)
7510 {
7511 return pid_write(filp, ubuf, cnt, ppos, TRACE_NO_PIDS);
7512 }
7513
7514 static int
ftrace_pid_release(struct inode * inode,struct file * file)7515 ftrace_pid_release(struct inode *inode, struct file *file)
7516 {
7517 struct trace_array *tr = inode->i_private;
7518
7519 trace_array_put(tr);
7520
7521 return seq_release(inode, file);
7522 }
7523
7524 static const struct file_operations ftrace_pid_fops = {
7525 .open = ftrace_pid_open,
7526 .write = ftrace_pid_write,
7527 .read = seq_read,
7528 .llseek = tracing_lseek,
7529 .release = ftrace_pid_release,
7530 };
7531
7532 static const struct file_operations ftrace_no_pid_fops = {
7533 .open = ftrace_no_pid_open,
7534 .write = ftrace_no_pid_write,
7535 .read = seq_read,
7536 .llseek = tracing_lseek,
7537 .release = ftrace_pid_release,
7538 };
7539
ftrace_init_tracefs(struct trace_array * tr,struct dentry * d_tracer)7540 void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
7541 {
7542 trace_create_file("set_ftrace_pid", 0644, d_tracer,
7543 tr, &ftrace_pid_fops);
7544 trace_create_file("set_ftrace_notrace_pid", 0644, d_tracer,
7545 tr, &ftrace_no_pid_fops);
7546 }
7547
ftrace_init_tracefs_toplevel(struct trace_array * tr,struct dentry * d_tracer)7548 void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
7549 struct dentry *d_tracer)
7550 {
7551 /* Only the top level directory has the dyn_tracefs and profile */
7552 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
7553
7554 ftrace_init_dyn_tracefs(d_tracer);
7555 ftrace_profile_tracefs(d_tracer);
7556 }
7557
7558 /**
7559 * ftrace_kill - kill ftrace
7560 *
7561 * This function should be used by panic code. It stops ftrace
7562 * but in a not so nice way. If you need to simply kill ftrace
7563 * from a non-atomic section, use ftrace_kill.
7564 */
ftrace_kill(void)7565 void ftrace_kill(void)
7566 {
7567 ftrace_disabled = 1;
7568 ftrace_enabled = 0;
7569 ftrace_trace_function = ftrace_stub;
7570 }
7571
7572 /**
7573 * Test if ftrace is dead or not.
7574 */
ftrace_is_dead(void)7575 int ftrace_is_dead(void)
7576 {
7577 return ftrace_disabled;
7578 }
7579
7580 /**
7581 * register_ftrace_function - register a function for profiling
7582 * @ops - ops structure that holds the function for profiling.
7583 *
7584 * Register a function to be called by all functions in the
7585 * kernel.
7586 *
7587 * Note: @ops->func and all the functions it calls must be labeled
7588 * with "notrace", otherwise it will go into a
7589 * recursive loop.
7590 */
register_ftrace_function(struct ftrace_ops * ops)7591 int register_ftrace_function(struct ftrace_ops *ops)
7592 {
7593 int ret = -1;
7594
7595 ftrace_ops_init(ops);
7596
7597 mutex_lock(&ftrace_lock);
7598
7599 ret = ftrace_startup(ops, 0);
7600
7601 mutex_unlock(&ftrace_lock);
7602
7603 return ret;
7604 }
7605 EXPORT_SYMBOL_GPL(register_ftrace_function);
7606
7607 /**
7608 * unregister_ftrace_function - unregister a function for profiling.
7609 * @ops - ops structure that holds the function to unregister
7610 *
7611 * Unregister a function that was added to be called by ftrace profiling.
7612 */
unregister_ftrace_function(struct ftrace_ops * ops)7613 int unregister_ftrace_function(struct ftrace_ops *ops)
7614 {
7615 int ret;
7616
7617 mutex_lock(&ftrace_lock);
7618 ret = ftrace_shutdown(ops, 0);
7619 mutex_unlock(&ftrace_lock);
7620
7621 return ret;
7622 }
7623 EXPORT_SYMBOL_GPL(unregister_ftrace_function);
7624
is_permanent_ops_registered(void)7625 static bool is_permanent_ops_registered(void)
7626 {
7627 struct ftrace_ops *op;
7628
7629 do_for_each_ftrace_op(op, ftrace_ops_list) {
7630 if (op->flags & FTRACE_OPS_FL_PERMANENT)
7631 return true;
7632 } while_for_each_ftrace_op(op);
7633
7634 return false;
7635 }
7636
7637 int
ftrace_enable_sysctl(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)7638 ftrace_enable_sysctl(struct ctl_table *table, int write,
7639 void *buffer, size_t *lenp, loff_t *ppos)
7640 {
7641 int ret = -ENODEV;
7642
7643 mutex_lock(&ftrace_lock);
7644
7645 if (unlikely(ftrace_disabled))
7646 goto out;
7647
7648 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7649
7650 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
7651 goto out;
7652
7653 if (ftrace_enabled) {
7654
7655 /* we are starting ftrace again */
7656 if (rcu_dereference_protected(ftrace_ops_list,
7657 lockdep_is_held(&ftrace_lock)) != &ftrace_list_end)
7658 update_ftrace_function();
7659
7660 ftrace_startup_sysctl();
7661
7662 } else {
7663 if (is_permanent_ops_registered()) {
7664 ftrace_enabled = true;
7665 ret = -EBUSY;
7666 goto out;
7667 }
7668
7669 /* stopping ftrace calls (just send to ftrace_stub) */
7670 ftrace_trace_function = ftrace_stub;
7671
7672 ftrace_shutdown_sysctl();
7673 }
7674
7675 last_ftrace_enabled = !!ftrace_enabled;
7676 out:
7677 mutex_unlock(&ftrace_lock);
7678 return ret;
7679 }
7680