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