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