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