484337d339590c817314a4ac86cb64654fca7928
[safe/jmp/linux-2.6] / kernel / trace / trace.c
1 /*
2  * ring buffer based function tracer
3  *
4  * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5  * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6  *
7  * Originally taken from the RT patch by:
8  *    Arnaldo Carvalho de Melo <acme@redhat.com>
9  *
10  * Based on code from the latency_tracer, that is:
11  *  Copyright (C) 2004-2006 Ingo Molnar
12  *  Copyright (C) 2004 William Lee Irwin III
13  */
14 #include <linux/ring_buffer.h>
15 #include <generated/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/smp_lock.h>
21 #include <linux/notifier.h>
22 #include <linux/irqflags.h>
23 #include <linux/debugfs.h>
24 #include <linux/pagemap.h>
25 #include <linux/hardirq.h>
26 #include <linux/linkage.h>
27 #include <linux/uaccess.h>
28 #include <linux/kprobes.h>
29 #include <linux/ftrace.h>
30 #include <linux/module.h>
31 #include <linux/percpu.h>
32 #include <linux/splice.h>
33 #include <linux/kdebug.h>
34 #include <linux/string.h>
35 #include <linux/rwsem.h>
36 #include <linux/ctype.h>
37 #include <linux/init.h>
38 #include <linux/poll.h>
39 #include <linux/gfp.h>
40 #include <linux/fs.h>
41
42 #include "trace.h"
43 #include "trace_output.h"
44
45 #define TRACE_BUFFER_FLAGS      (RB_FL_OVERWRITE)
46
47 /*
48  * On boot up, the ring buffer is set to the minimum size, so that
49  * we do not waste memory on systems that are not using tracing.
50  */
51 int ring_buffer_expanded;
52
53 /*
54  * We need to change this state when a selftest is running.
55  * A selftest will lurk into the ring-buffer to count the
56  * entries inserted during the selftest although some concurrent
57  * insertions into the ring-buffer such as trace_printk could occurred
58  * at the same time, giving false positive or negative results.
59  */
60 static bool __read_mostly tracing_selftest_running;
61
62 /*
63  * If a tracer is running, we do not want to run SELFTEST.
64  */
65 bool __read_mostly tracing_selftest_disabled;
66
67 /* For tracers that don't implement custom flags */
68 static struct tracer_opt dummy_tracer_opt[] = {
69         { }
70 };
71
72 static struct tracer_flags dummy_tracer_flags = {
73         .val = 0,
74         .opts = dummy_tracer_opt
75 };
76
77 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
78 {
79         return 0;
80 }
81
82 /*
83  * Kill all tracing for good (never come back).
84  * It is initialized to 1 but will turn to zero if the initialization
85  * of the tracer is successful. But that is the only place that sets
86  * this back to zero.
87  */
88 static int tracing_disabled = 1;
89
90 DEFINE_PER_CPU(int, ftrace_cpu_disabled);
91
92 static inline void ftrace_disable_cpu(void)
93 {
94         preempt_disable();
95         __this_cpu_inc(per_cpu_var(ftrace_cpu_disabled));
96 }
97
98 static inline void ftrace_enable_cpu(void)
99 {
100         __this_cpu_dec(per_cpu_var(ftrace_cpu_disabled));
101         preempt_enable();
102 }
103
104 static cpumask_var_t __read_mostly      tracing_buffer_mask;
105
106 #define for_each_tracing_cpu(cpu)       \
107         for_each_cpu(cpu, tracing_buffer_mask)
108
109 /*
110  * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
111  *
112  * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
113  * is set, then ftrace_dump is called. This will output the contents
114  * of the ftrace buffers to the console.  This is very useful for
115  * capturing traces that lead to crashes and outputing it to a
116  * serial console.
117  *
118  * It is default off, but you can enable it with either specifying
119  * "ftrace_dump_on_oops" in the kernel command line, or setting
120  * /proc/sys/kernel/ftrace_dump_on_oops to true.
121  */
122 int ftrace_dump_on_oops;
123
124 static int tracing_set_tracer(const char *buf);
125
126 #define MAX_TRACER_SIZE         100
127 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
128 static char *default_bootup_tracer;
129
130 static int __init set_cmdline_ftrace(char *str)
131 {
132         strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
133         default_bootup_tracer = bootup_tracer_buf;
134         /* We are using ftrace early, expand it */
135         ring_buffer_expanded = 1;
136         return 1;
137 }
138 __setup("ftrace=", set_cmdline_ftrace);
139
140 static int __init set_ftrace_dump_on_oops(char *str)
141 {
142         ftrace_dump_on_oops = 1;
143         return 1;
144 }
145 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
146
147 unsigned long long ns2usecs(cycle_t nsec)
148 {
149         nsec += 500;
150         do_div(nsec, 1000);
151         return nsec;
152 }
153
154 /*
155  * The global_trace is the descriptor that holds the tracing
156  * buffers for the live tracing. For each CPU, it contains
157  * a link list of pages that will store trace entries. The
158  * page descriptor of the pages in the memory is used to hold
159  * the link list by linking the lru item in the page descriptor
160  * to each of the pages in the buffer per CPU.
161  *
162  * For each active CPU there is a data field that holds the
163  * pages for the buffer for that CPU. Each CPU has the same number
164  * of pages allocated for its buffer.
165  */
166 static struct trace_array       global_trace;
167
168 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
169
170 int filter_current_check_discard(struct ring_buffer *buffer,
171                                  struct ftrace_event_call *call, void *rec,
172                                  struct ring_buffer_event *event)
173 {
174         return filter_check_discard(call, rec, buffer, event);
175 }
176 EXPORT_SYMBOL_GPL(filter_current_check_discard);
177
178 cycle_t ftrace_now(int cpu)
179 {
180         u64 ts;
181
182         /* Early boot up does not have a buffer yet */
183         if (!global_trace.buffer)
184                 return trace_clock_local();
185
186         ts = ring_buffer_time_stamp(global_trace.buffer, cpu);
187         ring_buffer_normalize_time_stamp(global_trace.buffer, cpu, &ts);
188
189         return ts;
190 }
191
192 /*
193  * The max_tr is used to snapshot the global_trace when a maximum
194  * latency is reached. Some tracers will use this to store a maximum
195  * trace while it continues examining live traces.
196  *
197  * The buffers for the max_tr are set up the same as the global_trace.
198  * When a snapshot is taken, the link list of the max_tr is swapped
199  * with the link list of the global_trace and the buffers are reset for
200  * the global_trace so the tracing can continue.
201  */
202 static struct trace_array       max_tr;
203
204 static DEFINE_PER_CPU(struct trace_array_cpu, max_tr_data);
205
206 /* tracer_enabled is used to toggle activation of a tracer */
207 static int                      tracer_enabled = 1;
208
209 /**
210  * tracing_is_enabled - return tracer_enabled status
211  *
212  * This function is used by other tracers to know the status
213  * of the tracer_enabled flag.  Tracers may use this function
214  * to know if it should enable their features when starting
215  * up. See irqsoff tracer for an example (start_irqsoff_tracer).
216  */
217 int tracing_is_enabled(void)
218 {
219         return tracer_enabled;
220 }
221
222 /*
223  * trace_buf_size is the size in bytes that is allocated
224  * for a buffer. Note, the number of bytes is always rounded
225  * to page size.
226  *
227  * This number is purposely set to a low number of 16384.
228  * If the dump on oops happens, it will be much appreciated
229  * to not have to wait for all that output. Anyway this can be
230  * boot time and run time configurable.
231  */
232 #define TRACE_BUF_SIZE_DEFAULT  1441792UL /* 16384 * 88 (sizeof(entry)) */
233
234 static unsigned long            trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
235
236 /* trace_types holds a link list of available tracers. */
237 static struct tracer            *trace_types __read_mostly;
238
239 /* current_trace points to the tracer that is currently active */
240 static struct tracer            *current_trace __read_mostly;
241
242 /*
243  * trace_types_lock is used to protect the trace_types list.
244  */
245 static DEFINE_MUTEX(trace_types_lock);
246
247 /*
248  * serialize the access of the ring buffer
249  *
250  * ring buffer serializes readers, but it is low level protection.
251  * The validity of the events (which returns by ring_buffer_peek() ..etc)
252  * are not protected by ring buffer.
253  *
254  * The content of events may become garbage if we allow other process consumes
255  * these events concurrently:
256  *   A) the page of the consumed events may become a normal page
257  *      (not reader page) in ring buffer, and this page will be rewrited
258  *      by events producer.
259  *   B) The page of the consumed events may become a page for splice_read,
260  *      and this page will be returned to system.
261  *
262  * These primitives allow multi process access to different cpu ring buffer
263  * concurrently.
264  *
265  * These primitives don't distinguish read-only and read-consume access.
266  * Multi read-only access are also serialized.
267  */
268
269 #ifdef CONFIG_SMP
270 static DECLARE_RWSEM(all_cpu_access_lock);
271 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
272
273 static inline void trace_access_lock(int cpu)
274 {
275         if (cpu == TRACE_PIPE_ALL_CPU) {
276                 /* gain it for accessing the whole ring buffer. */
277                 down_write(&all_cpu_access_lock);
278         } else {
279                 /* gain it for accessing a cpu ring buffer. */
280
281                 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
282                 down_read(&all_cpu_access_lock);
283
284                 /* Secondly block other access to this @cpu ring buffer. */
285                 mutex_lock(&per_cpu(cpu_access_lock, cpu));
286         }
287 }
288
289 static inline void trace_access_unlock(int cpu)
290 {
291         if (cpu == TRACE_PIPE_ALL_CPU) {
292                 up_write(&all_cpu_access_lock);
293         } else {
294                 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
295                 up_read(&all_cpu_access_lock);
296         }
297 }
298
299 static inline void trace_access_lock_init(void)
300 {
301         int cpu;
302
303         for_each_possible_cpu(cpu)
304                 mutex_init(&per_cpu(cpu_access_lock, cpu));
305 }
306
307 #else
308
309 static DEFINE_MUTEX(access_lock);
310
311 static inline void trace_access_lock(int cpu)
312 {
313         (void)cpu;
314         mutex_lock(&access_lock);
315 }
316
317 static inline void trace_access_unlock(int cpu)
318 {
319         (void)cpu;
320         mutex_unlock(&access_lock);
321 }
322
323 static inline void trace_access_lock_init(void)
324 {
325 }
326
327 #endif
328
329 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
330 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
331
332 /* trace_flags holds trace_options default values */
333 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
334         TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
335         TRACE_ITER_GRAPH_TIME;
336
337 static int trace_stop_count;
338 static DEFINE_SPINLOCK(tracing_start_lock);
339
340 /**
341  * trace_wake_up - wake up tasks waiting for trace input
342  *
343  * Simply wakes up any task that is blocked on the trace_wait
344  * queue. These is used with trace_poll for tasks polling the trace.
345  */
346 void trace_wake_up(void)
347 {
348         int cpu;
349
350         if (trace_flags & TRACE_ITER_BLOCK)
351                 return;
352         /*
353          * The runqueue_is_locked() can fail, but this is the best we
354          * have for now:
355          */
356         cpu = get_cpu();
357         if (!runqueue_is_locked(cpu))
358                 wake_up(&trace_wait);
359         put_cpu();
360 }
361
362 static int __init set_buf_size(char *str)
363 {
364         unsigned long buf_size;
365
366         if (!str)
367                 return 0;
368         buf_size = memparse(str, &str);
369         /* nr_entries can not be zero */
370         if (buf_size == 0)
371                 return 0;
372         trace_buf_size = buf_size;
373         return 1;
374 }
375 __setup("trace_buf_size=", set_buf_size);
376
377 static int __init set_tracing_thresh(char *str)
378 {
379         unsigned long threshhold;
380         int ret;
381
382         if (!str)
383                 return 0;
384         ret = strict_strtoul(str, 0, &threshhold);
385         if (ret < 0)
386                 return 0;
387         tracing_thresh = threshhold * 1000;
388         return 1;
389 }
390 __setup("tracing_thresh=", set_tracing_thresh);
391
392 unsigned long nsecs_to_usecs(unsigned long nsecs)
393 {
394         return nsecs / 1000;
395 }
396
397 /* These must match the bit postions in trace_iterator_flags */
398 static const char *trace_options[] = {
399         "print-parent",
400         "sym-offset",
401         "sym-addr",
402         "verbose",
403         "raw",
404         "hex",
405         "bin",
406         "block",
407         "stacktrace",
408         "trace_printk",
409         "ftrace_preempt",
410         "branch",
411         "annotate",
412         "userstacktrace",
413         "sym-userobj",
414         "printk-msg-only",
415         "context-info",
416         "latency-format",
417         "sleep-time",
418         "graph-time",
419         NULL
420 };
421
422 static struct {
423         u64 (*func)(void);
424         const char *name;
425 } trace_clocks[] = {
426         { trace_clock_local,    "local" },
427         { trace_clock_global,   "global" },
428 };
429
430 int trace_clock_id;
431
432 /*
433  * trace_parser_get_init - gets the buffer for trace parser
434  */
435 int trace_parser_get_init(struct trace_parser *parser, int size)
436 {
437         memset(parser, 0, sizeof(*parser));
438
439         parser->buffer = kmalloc(size, GFP_KERNEL);
440         if (!parser->buffer)
441                 return 1;
442
443         parser->size = size;
444         return 0;
445 }
446
447 /*
448  * trace_parser_put - frees the buffer for trace parser
449  */
450 void trace_parser_put(struct trace_parser *parser)
451 {
452         kfree(parser->buffer);
453 }
454
455 /*
456  * trace_get_user - reads the user input string separated by  space
457  * (matched by isspace(ch))
458  *
459  * For each string found the 'struct trace_parser' is updated,
460  * and the function returns.
461  *
462  * Returns number of bytes read.
463  *
464  * See kernel/trace/trace.h for 'struct trace_parser' details.
465  */
466 int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
467         size_t cnt, loff_t *ppos)
468 {
469         char ch;
470         size_t read = 0;
471         ssize_t ret;
472
473         if (!*ppos)
474                 trace_parser_clear(parser);
475
476         ret = get_user(ch, ubuf++);
477         if (ret)
478                 goto out;
479
480         read++;
481         cnt--;
482
483         /*
484          * The parser is not finished with the last write,
485          * continue reading the user input without skipping spaces.
486          */
487         if (!parser->cont) {
488                 /* skip white space */
489                 while (cnt && isspace(ch)) {
490                         ret = get_user(ch, ubuf++);
491                         if (ret)
492                                 goto out;
493                         read++;
494                         cnt--;
495                 }
496
497                 /* only spaces were written */
498                 if (isspace(ch)) {
499                         *ppos += read;
500                         ret = read;
501                         goto out;
502                 }
503
504                 parser->idx = 0;
505         }
506
507         /* read the non-space input */
508         while (cnt && !isspace(ch)) {
509                 if (parser->idx < parser->size - 1)
510                         parser->buffer[parser->idx++] = ch;
511                 else {
512                         ret = -EINVAL;
513                         goto out;
514                 }
515                 ret = get_user(ch, ubuf++);
516                 if (ret)
517                         goto out;
518                 read++;
519                 cnt--;
520         }
521
522         /* We either got finished input or we have to wait for another call. */
523         if (isspace(ch)) {
524                 parser->buffer[parser->idx] = 0;
525                 parser->cont = false;
526         } else {
527                 parser->cont = true;
528                 parser->buffer[parser->idx++] = ch;
529         }
530
531         *ppos += read;
532         ret = read;
533
534 out:
535         return ret;
536 }
537
538 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
539 {
540         int len;
541         int ret;
542
543         if (!cnt)
544                 return 0;
545
546         if (s->len <= s->readpos)
547                 return -EBUSY;
548
549         len = s->len - s->readpos;
550         if (cnt > len)
551                 cnt = len;
552         ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
553         if (ret == cnt)
554                 return -EFAULT;
555
556         cnt -= ret;
557
558         s->readpos += cnt;
559         return cnt;
560 }
561
562 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
563 {
564         int len;
565         void *ret;
566
567         if (s->len <= s->readpos)
568                 return -EBUSY;
569
570         len = s->len - s->readpos;
571         if (cnt > len)
572                 cnt = len;
573         ret = memcpy(buf, s->buffer + s->readpos, cnt);
574         if (!ret)
575                 return -EFAULT;
576
577         s->readpos += cnt;
578         return cnt;
579 }
580
581 /*
582  * ftrace_max_lock is used to protect the swapping of buffers
583  * when taking a max snapshot. The buffers themselves are
584  * protected by per_cpu spinlocks. But the action of the swap
585  * needs its own lock.
586  *
587  * This is defined as a arch_spinlock_t in order to help
588  * with performance when lockdep debugging is enabled.
589  *
590  * It is also used in other places outside the update_max_tr
591  * so it needs to be defined outside of the
592  * CONFIG_TRACER_MAX_TRACE.
593  */
594 static arch_spinlock_t ftrace_max_lock =
595         (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
596
597 unsigned long __read_mostly     tracing_thresh;
598
599 #ifdef CONFIG_TRACER_MAX_TRACE
600 unsigned long __read_mostly     tracing_max_latency;
601
602 /*
603  * Copy the new maximum trace into the separate maximum-trace
604  * structure. (this way the maximum trace is permanently saved,
605  * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
606  */
607 static void
608 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
609 {
610         struct trace_array_cpu *data = tr->data[cpu];
611         struct trace_array_cpu *max_data;
612
613         max_tr.cpu = cpu;
614         max_tr.time_start = data->preempt_timestamp;
615
616         max_data = max_tr.data[cpu];
617         max_data->saved_latency = tracing_max_latency;
618         max_data->critical_start = data->critical_start;
619         max_data->critical_end = data->critical_end;
620
621         memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
622         max_data->pid = tsk->pid;
623         max_data->uid = task_uid(tsk);
624         max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
625         max_data->policy = tsk->policy;
626         max_data->rt_priority = tsk->rt_priority;
627
628         /* record this tasks comm */
629         tracing_record_cmdline(tsk);
630 }
631
632 /**
633  * update_max_tr - snapshot all trace buffers from global_trace to max_tr
634  * @tr: tracer
635  * @tsk: the task with the latency
636  * @cpu: The cpu that initiated the trace.
637  *
638  * Flip the buffers between the @tr and the max_tr and record information
639  * about which task was the cause of this latency.
640  */
641 void
642 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
643 {
644         struct ring_buffer *buf = tr->buffer;
645
646         if (trace_stop_count)
647                 return;
648
649         WARN_ON_ONCE(!irqs_disabled());
650         arch_spin_lock(&ftrace_max_lock);
651
652         tr->buffer = max_tr.buffer;
653         max_tr.buffer = buf;
654
655         __update_max_tr(tr, tsk, cpu);
656         arch_spin_unlock(&ftrace_max_lock);
657 }
658
659 /**
660  * update_max_tr_single - only copy one trace over, and reset the rest
661  * @tr - tracer
662  * @tsk - task with the latency
663  * @cpu - the cpu of the buffer to copy.
664  *
665  * Flip the trace of a single CPU buffer between the @tr and the max_tr.
666  */
667 void
668 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
669 {
670         int ret;
671
672         if (trace_stop_count)
673                 return;
674
675         WARN_ON_ONCE(!irqs_disabled());
676         arch_spin_lock(&ftrace_max_lock);
677
678         ftrace_disable_cpu();
679
680         ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
681
682         if (ret == -EBUSY) {
683                 /*
684                  * We failed to swap the buffer due to a commit taking
685                  * place on this CPU. We fail to record, but we reset
686                  * the max trace buffer (no one writes directly to it)
687                  * and flag that it failed.
688                  */
689                 trace_array_printk(&max_tr, _THIS_IP_,
690                         "Failed to swap buffers due to commit in progress\n");
691         }
692
693         ftrace_enable_cpu();
694
695         WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
696
697         __update_max_tr(tr, tsk, cpu);
698         arch_spin_unlock(&ftrace_max_lock);
699 }
700 #endif /* CONFIG_TRACER_MAX_TRACE */
701
702 /**
703  * register_tracer - register a tracer with the ftrace system.
704  * @type - the plugin for the tracer
705  *
706  * Register a new plugin tracer.
707  */
708 int register_tracer(struct tracer *type)
709 __releases(kernel_lock)
710 __acquires(kernel_lock)
711 {
712         struct tracer *t;
713         int ret = 0;
714
715         if (!type->name) {
716                 pr_info("Tracer must have a name\n");
717                 return -1;
718         }
719
720         if (strlen(type->name) > MAX_TRACER_SIZE) {
721                 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
722                 return -1;
723         }
724
725         /*
726          * When this gets called we hold the BKL which means that
727          * preemption is disabled. Various trace selftests however
728          * need to disable and enable preemption for successful tests.
729          * So we drop the BKL here and grab it after the tests again.
730          */
731         unlock_kernel();
732         mutex_lock(&trace_types_lock);
733
734         tracing_selftest_running = true;
735
736         for (t = trace_types; t; t = t->next) {
737                 if (strcmp(type->name, t->name) == 0) {
738                         /* already found */
739                         pr_info("Tracer %s already registered\n",
740                                 type->name);
741                         ret = -1;
742                         goto out;
743                 }
744         }
745
746         if (!type->set_flag)
747                 type->set_flag = &dummy_set_flag;
748         if (!type->flags)
749                 type->flags = &dummy_tracer_flags;
750         else
751                 if (!type->flags->opts)
752                         type->flags->opts = dummy_tracer_opt;
753         if (!type->wait_pipe)
754                 type->wait_pipe = default_wait_pipe;
755
756
757 #ifdef CONFIG_FTRACE_STARTUP_TEST
758         if (type->selftest && !tracing_selftest_disabled) {
759                 struct tracer *saved_tracer = current_trace;
760                 struct trace_array *tr = &global_trace;
761
762                 /*
763                  * Run a selftest on this tracer.
764                  * Here we reset the trace buffer, and set the current
765                  * tracer to be this tracer. The tracer can then run some
766                  * internal tracing to verify that everything is in order.
767                  * If we fail, we do not register this tracer.
768                  */
769                 tracing_reset_online_cpus(tr);
770
771                 current_trace = type;
772                 /* the test is responsible for initializing and enabling */
773                 pr_info("Testing tracer %s: ", type->name);
774                 ret = type->selftest(type, tr);
775                 /* the test is responsible for resetting too */
776                 current_trace = saved_tracer;
777                 if (ret) {
778                         printk(KERN_CONT "FAILED!\n");
779                         goto out;
780                 }
781                 /* Only reset on passing, to avoid touching corrupted buffers */
782                 tracing_reset_online_cpus(tr);
783
784                 printk(KERN_CONT "PASSED\n");
785         }
786 #endif
787
788         type->next = trace_types;
789         trace_types = type;
790
791  out:
792         tracing_selftest_running = false;
793         mutex_unlock(&trace_types_lock);
794
795         if (ret || !default_bootup_tracer)
796                 goto out_unlock;
797
798         if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
799                 goto out_unlock;
800
801         printk(KERN_INFO "Starting tracer '%s'\n", type->name);
802         /* Do we want this tracer to start on bootup? */
803         tracing_set_tracer(type->name);
804         default_bootup_tracer = NULL;
805         /* disable other selftests, since this will break it. */
806         tracing_selftest_disabled = 1;
807 #ifdef CONFIG_FTRACE_STARTUP_TEST
808         printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
809                type->name);
810 #endif
811
812  out_unlock:
813         lock_kernel();
814         return ret;
815 }
816
817 void unregister_tracer(struct tracer *type)
818 {
819         struct tracer **t;
820
821         mutex_lock(&trace_types_lock);
822         for (t = &trace_types; *t; t = &(*t)->next) {
823                 if (*t == type)
824                         goto found;
825         }
826         pr_info("Tracer %s not registered\n", type->name);
827         goto out;
828
829  found:
830         *t = (*t)->next;
831
832         if (type == current_trace && tracer_enabled) {
833                 tracer_enabled = 0;
834                 tracing_stop();
835                 if (current_trace->stop)
836                         current_trace->stop(&global_trace);
837                 current_trace = &nop_trace;
838         }
839 out:
840         mutex_unlock(&trace_types_lock);
841 }
842
843 static void __tracing_reset(struct ring_buffer *buffer, int cpu)
844 {
845         ftrace_disable_cpu();
846         ring_buffer_reset_cpu(buffer, cpu);
847         ftrace_enable_cpu();
848 }
849
850 void tracing_reset(struct trace_array *tr, int cpu)
851 {
852         struct ring_buffer *buffer = tr->buffer;
853
854         ring_buffer_record_disable(buffer);
855
856         /* Make sure all commits have finished */
857         synchronize_sched();
858         __tracing_reset(buffer, cpu);
859
860         ring_buffer_record_enable(buffer);
861 }
862
863 void tracing_reset_online_cpus(struct trace_array *tr)
864 {
865         struct ring_buffer *buffer = tr->buffer;
866         int cpu;
867
868         ring_buffer_record_disable(buffer);
869
870         /* Make sure all commits have finished */
871         synchronize_sched();
872
873         tr->time_start = ftrace_now(tr->cpu);
874
875         for_each_online_cpu(cpu)
876                 __tracing_reset(buffer, cpu);
877
878         ring_buffer_record_enable(buffer);
879 }
880
881 void tracing_reset_current(int cpu)
882 {
883         tracing_reset(&global_trace, cpu);
884 }
885
886 void tracing_reset_current_online_cpus(void)
887 {
888         tracing_reset_online_cpus(&global_trace);
889 }
890
891 #define SAVED_CMDLINES 128
892 #define NO_CMDLINE_MAP UINT_MAX
893 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
894 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
895 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
896 static int cmdline_idx;
897 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
898
899 /* temporary disable recording */
900 static atomic_t trace_record_cmdline_disabled __read_mostly;
901
902 static void trace_init_cmdlines(void)
903 {
904         memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
905         memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
906         cmdline_idx = 0;
907 }
908
909 int is_tracing_stopped(void)
910 {
911         return trace_stop_count;
912 }
913
914 /**
915  * ftrace_off_permanent - disable all ftrace code permanently
916  *
917  * This should only be called when a serious anomally has
918  * been detected.  This will turn off the function tracing,
919  * ring buffers, and other tracing utilites. It takes no
920  * locks and can be called from any context.
921  */
922 void ftrace_off_permanent(void)
923 {
924         tracing_disabled = 1;
925         ftrace_stop();
926         tracing_off_permanent();
927 }
928
929 /**
930  * tracing_start - quick start of the tracer
931  *
932  * If tracing is enabled but was stopped by tracing_stop,
933  * this will start the tracer back up.
934  */
935 void tracing_start(void)
936 {
937         struct ring_buffer *buffer;
938         unsigned long flags;
939
940         if (tracing_disabled)
941                 return;
942
943         spin_lock_irqsave(&tracing_start_lock, flags);
944         if (--trace_stop_count) {
945                 if (trace_stop_count < 0) {
946                         /* Someone screwed up their debugging */
947                         WARN_ON_ONCE(1);
948                         trace_stop_count = 0;
949                 }
950                 goto out;
951         }
952
953         /* Prevent the buffers from switching */
954         arch_spin_lock(&ftrace_max_lock);
955
956         buffer = global_trace.buffer;
957         if (buffer)
958                 ring_buffer_record_enable(buffer);
959
960         buffer = max_tr.buffer;
961         if (buffer)
962                 ring_buffer_record_enable(buffer);
963
964         arch_spin_unlock(&ftrace_max_lock);
965
966         ftrace_start();
967  out:
968         spin_unlock_irqrestore(&tracing_start_lock, flags);
969 }
970
971 /**
972  * tracing_stop - quick stop of the tracer
973  *
974  * Light weight way to stop tracing. Use in conjunction with
975  * tracing_start.
976  */
977 void tracing_stop(void)
978 {
979         struct ring_buffer *buffer;
980         unsigned long flags;
981
982         ftrace_stop();
983         spin_lock_irqsave(&tracing_start_lock, flags);
984         if (trace_stop_count++)
985                 goto out;
986
987         /* Prevent the buffers from switching */
988         arch_spin_lock(&ftrace_max_lock);
989
990         buffer = global_trace.buffer;
991         if (buffer)
992                 ring_buffer_record_disable(buffer);
993
994         buffer = max_tr.buffer;
995         if (buffer)
996                 ring_buffer_record_disable(buffer);
997
998         arch_spin_unlock(&ftrace_max_lock);
999
1000  out:
1001         spin_unlock_irqrestore(&tracing_start_lock, flags);
1002 }
1003
1004 void trace_stop_cmdline_recording(void);
1005
1006 static void trace_save_cmdline(struct task_struct *tsk)
1007 {
1008         unsigned pid, idx;
1009
1010         if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1011                 return;
1012
1013         /*
1014          * It's not the end of the world if we don't get
1015          * the lock, but we also don't want to spin
1016          * nor do we want to disable interrupts,
1017          * so if we miss here, then better luck next time.
1018          */
1019         if (!arch_spin_trylock(&trace_cmdline_lock))
1020                 return;
1021
1022         idx = map_pid_to_cmdline[tsk->pid];
1023         if (idx == NO_CMDLINE_MAP) {
1024                 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1025
1026                 /*
1027                  * Check whether the cmdline buffer at idx has a pid
1028                  * mapped. We are going to overwrite that entry so we
1029                  * need to clear the map_pid_to_cmdline. Otherwise we
1030                  * would read the new comm for the old pid.
1031                  */
1032                 pid = map_cmdline_to_pid[idx];
1033                 if (pid != NO_CMDLINE_MAP)
1034                         map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
1035
1036                 map_cmdline_to_pid[idx] = tsk->pid;
1037                 map_pid_to_cmdline[tsk->pid] = idx;
1038
1039                 cmdline_idx = idx;
1040         }
1041
1042         memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1043
1044         arch_spin_unlock(&trace_cmdline_lock);
1045 }
1046
1047 void trace_find_cmdline(int pid, char comm[])
1048 {
1049         unsigned map;
1050
1051         if (!pid) {
1052                 strcpy(comm, "<idle>");
1053                 return;
1054         }
1055
1056         if (WARN_ON_ONCE(pid < 0)) {
1057                 strcpy(comm, "<XXX>");
1058                 return;
1059         }
1060
1061         if (pid > PID_MAX_DEFAULT) {
1062                 strcpy(comm, "<...>");
1063                 return;
1064         }
1065
1066         preempt_disable();
1067         arch_spin_lock(&trace_cmdline_lock);
1068         map = map_pid_to_cmdline[pid];
1069         if (map != NO_CMDLINE_MAP)
1070                 strcpy(comm, saved_cmdlines[map]);
1071         else
1072                 strcpy(comm, "<...>");
1073
1074         arch_spin_unlock(&trace_cmdline_lock);
1075         preempt_enable();
1076 }
1077
1078 void tracing_record_cmdline(struct task_struct *tsk)
1079 {
1080         if (atomic_read(&trace_record_cmdline_disabled) || !tracer_enabled ||
1081             !tracing_is_on())
1082                 return;
1083
1084         trace_save_cmdline(tsk);
1085 }
1086
1087 void
1088 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1089                              int pc)
1090 {
1091         struct task_struct *tsk = current;
1092
1093         entry->preempt_count            = pc & 0xff;
1094         entry->pid                      = (tsk) ? tsk->pid : 0;
1095         entry->lock_depth               = (tsk) ? tsk->lock_depth : 0;
1096         entry->flags =
1097 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1098                 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
1099 #else
1100                 TRACE_FLAG_IRQS_NOSUPPORT |
1101 #endif
1102                 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1103                 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1104                 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1105 }
1106 EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
1107
1108 struct ring_buffer_event *
1109 trace_buffer_lock_reserve(struct ring_buffer *buffer,
1110                           int type,
1111                           unsigned long len,
1112                           unsigned long flags, int pc)
1113 {
1114         struct ring_buffer_event *event;
1115
1116         event = ring_buffer_lock_reserve(buffer, len);
1117         if (event != NULL) {
1118                 struct trace_entry *ent = ring_buffer_event_data(event);
1119
1120                 tracing_generic_entry_update(ent, flags, pc);
1121                 ent->type = type;
1122         }
1123
1124         return event;
1125 }
1126
1127 static inline void
1128 __trace_buffer_unlock_commit(struct ring_buffer *buffer,
1129                              struct ring_buffer_event *event,
1130                              unsigned long flags, int pc,
1131                              int wake)
1132 {
1133         ring_buffer_unlock_commit(buffer, event);
1134
1135         ftrace_trace_stack(buffer, flags, 6, pc);
1136         ftrace_trace_userstack(buffer, flags, pc);
1137
1138         if (wake)
1139                 trace_wake_up();
1140 }
1141
1142 void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1143                                 struct ring_buffer_event *event,
1144                                 unsigned long flags, int pc)
1145 {
1146         __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
1147 }
1148
1149 struct ring_buffer_event *
1150 trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1151                                   int type, unsigned long len,
1152                                   unsigned long flags, int pc)
1153 {
1154         *current_rb = global_trace.buffer;
1155         return trace_buffer_lock_reserve(*current_rb,
1156                                          type, len, flags, pc);
1157 }
1158 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
1159
1160 void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1161                                         struct ring_buffer_event *event,
1162                                         unsigned long flags, int pc)
1163 {
1164         __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
1165 }
1166 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
1167
1168 void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
1169                                        struct ring_buffer_event *event,
1170                                        unsigned long flags, int pc)
1171 {
1172         __trace_buffer_unlock_commit(buffer, event, flags, pc, 0);
1173 }
1174 EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
1175
1176 void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1177                                          struct ring_buffer_event *event)
1178 {
1179         ring_buffer_discard_commit(buffer, event);
1180 }
1181 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
1182
1183 void
1184 trace_function(struct trace_array *tr,
1185                unsigned long ip, unsigned long parent_ip, unsigned long flags,
1186                int pc)
1187 {
1188         struct ftrace_event_call *call = &event_function;
1189         struct ring_buffer *buffer = tr->buffer;
1190         struct ring_buffer_event *event;
1191         struct ftrace_entry *entry;
1192
1193         /* If we are reading the ring buffer, don't trace */
1194         if (unlikely(__this_cpu_read(per_cpu_var(ftrace_cpu_disabled))))
1195                 return;
1196
1197         event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
1198                                           flags, pc);
1199         if (!event)
1200                 return;
1201         entry   = ring_buffer_event_data(event);
1202         entry->ip                       = ip;
1203         entry->parent_ip                = parent_ip;
1204
1205         if (!filter_check_discard(call, entry, buffer, event))
1206                 ring_buffer_unlock_commit(buffer, event);
1207 }
1208
1209 void
1210 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
1211        unsigned long ip, unsigned long parent_ip, unsigned long flags,
1212        int pc)
1213 {
1214         if (likely(!atomic_read(&data->disabled)))
1215                 trace_function(tr, ip, parent_ip, flags, pc);
1216 }
1217
1218 #ifdef CONFIG_STACKTRACE
1219 static void __ftrace_trace_stack(struct ring_buffer *buffer,
1220                                  unsigned long flags,
1221                                  int skip, int pc)
1222 {
1223         struct ftrace_event_call *call = &event_kernel_stack;
1224         struct ring_buffer_event *event;
1225         struct stack_entry *entry;
1226         struct stack_trace trace;
1227
1228         event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
1229                                           sizeof(*entry), flags, pc);
1230         if (!event)
1231                 return;
1232         entry   = ring_buffer_event_data(event);
1233         memset(&entry->caller, 0, sizeof(entry->caller));
1234
1235         trace.nr_entries        = 0;
1236         trace.max_entries       = FTRACE_STACK_ENTRIES;
1237         trace.skip              = skip;
1238         trace.entries           = entry->caller;
1239
1240         save_stack_trace(&trace);
1241         if (!filter_check_discard(call, entry, buffer, event))
1242                 ring_buffer_unlock_commit(buffer, event);
1243 }
1244
1245 void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1246                         int skip, int pc)
1247 {
1248         if (!(trace_flags & TRACE_ITER_STACKTRACE))
1249                 return;
1250
1251         __ftrace_trace_stack(buffer, flags, skip, pc);
1252 }
1253
1254 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1255                    int pc)
1256 {
1257         __ftrace_trace_stack(tr->buffer, flags, skip, pc);
1258 }
1259
1260 /**
1261  * trace_dump_stack - record a stack back trace in the trace buffer
1262  */
1263 void trace_dump_stack(void)
1264 {
1265         unsigned long flags;
1266
1267         if (tracing_disabled || tracing_selftest_running)
1268                 return;
1269
1270         local_save_flags(flags);
1271
1272         /* skipping 3 traces, seems to get us at the caller of this function */
1273         __ftrace_trace_stack(global_trace.buffer, flags, 3, preempt_count());
1274 }
1275
1276 void
1277 ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
1278 {
1279         struct ftrace_event_call *call = &event_user_stack;
1280         struct ring_buffer_event *event;
1281         struct userstack_entry *entry;
1282         struct stack_trace trace;
1283
1284         if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1285                 return;
1286
1287         event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
1288                                           sizeof(*entry), flags, pc);
1289         if (!event)
1290                 return;
1291         entry   = ring_buffer_event_data(event);
1292
1293         entry->tgid             = current->tgid;
1294         memset(&entry->caller, 0, sizeof(entry->caller));
1295
1296         trace.nr_entries        = 0;
1297         trace.max_entries       = FTRACE_STACK_ENTRIES;
1298         trace.skip              = 0;
1299         trace.entries           = entry->caller;
1300
1301         save_stack_trace_user(&trace);
1302         if (!filter_check_discard(call, entry, buffer, event))
1303                 ring_buffer_unlock_commit(buffer, event);
1304 }
1305
1306 #ifdef UNUSED
1307 static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1308 {
1309         ftrace_trace_userstack(tr, flags, preempt_count());
1310 }
1311 #endif /* UNUSED */
1312
1313 #endif /* CONFIG_STACKTRACE */
1314
1315 static void
1316 ftrace_trace_special(void *__tr,
1317                      unsigned long arg1, unsigned long arg2, unsigned long arg3,
1318                      int pc)
1319 {
1320         struct ftrace_event_call *call = &event_special;
1321         struct ring_buffer_event *event;
1322         struct trace_array *tr = __tr;
1323         struct ring_buffer *buffer = tr->buffer;
1324         struct special_entry *entry;
1325
1326         event = trace_buffer_lock_reserve(buffer, TRACE_SPECIAL,
1327                                           sizeof(*entry), 0, pc);
1328         if (!event)
1329                 return;
1330         entry   = ring_buffer_event_data(event);
1331         entry->arg1                     = arg1;
1332         entry->arg2                     = arg2;
1333         entry->arg3                     = arg3;
1334
1335         if (!filter_check_discard(call, entry, buffer, event))
1336                 trace_buffer_unlock_commit(buffer, event, 0, pc);
1337 }
1338
1339 void
1340 __trace_special(void *__tr, void *__data,
1341                 unsigned long arg1, unsigned long arg2, unsigned long arg3)
1342 {
1343         ftrace_trace_special(__tr, arg1, arg2, arg3, preempt_count());
1344 }
1345
1346 void
1347 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1348 {
1349         struct trace_array *tr = &global_trace;
1350         struct trace_array_cpu *data;
1351         unsigned long flags;
1352         int cpu;
1353         int pc;
1354
1355         if (tracing_disabled)
1356                 return;
1357
1358         pc = preempt_count();
1359         local_irq_save(flags);
1360         cpu = raw_smp_processor_id();
1361         data = tr->data[cpu];
1362
1363         if (likely(atomic_inc_return(&data->disabled) == 1))
1364                 ftrace_trace_special(tr, arg1, arg2, arg3, pc);
1365
1366         atomic_dec(&data->disabled);
1367         local_irq_restore(flags);
1368 }
1369
1370 /**
1371  * trace_vbprintk - write binary msg to tracing buffer
1372  *
1373  */
1374 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
1375 {
1376         static arch_spinlock_t trace_buf_lock =
1377                 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
1378         static u32 trace_buf[TRACE_BUF_SIZE];
1379
1380         struct ftrace_event_call *call = &event_bprint;
1381         struct ring_buffer_event *event;
1382         struct ring_buffer *buffer;
1383         struct trace_array *tr = &global_trace;
1384         struct trace_array_cpu *data;
1385         struct bprint_entry *entry;
1386         unsigned long flags;
1387         int disable;
1388         int resched;
1389         int cpu, len = 0, size, pc;
1390
1391         if (unlikely(tracing_selftest_running || tracing_disabled))
1392                 return 0;
1393
1394         /* Don't pollute graph traces with trace_vprintk internals */
1395         pause_graph_tracing();
1396
1397         pc = preempt_count();
1398         resched = ftrace_preempt_disable();
1399         cpu = raw_smp_processor_id();
1400         data = tr->data[cpu];
1401
1402         disable = atomic_inc_return(&data->disabled);
1403         if (unlikely(disable != 1))
1404                 goto out;
1405
1406         /* Lockdep uses trace_printk for lock tracing */
1407         local_irq_save(flags);
1408         arch_spin_lock(&trace_buf_lock);
1409         len = vbin_printf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1410
1411         if (len > TRACE_BUF_SIZE || len < 0)
1412                 goto out_unlock;
1413
1414         size = sizeof(*entry) + sizeof(u32) * len;
1415         buffer = tr->buffer;
1416         event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
1417                                           flags, pc);
1418         if (!event)
1419                 goto out_unlock;
1420         entry = ring_buffer_event_data(event);
1421         entry->ip                       = ip;
1422         entry->fmt                      = fmt;
1423
1424         memcpy(entry->buf, trace_buf, sizeof(u32) * len);
1425         if (!filter_check_discard(call, entry, buffer, event)) {
1426                 ring_buffer_unlock_commit(buffer, event);
1427                 ftrace_trace_stack(buffer, flags, 6, pc);
1428         }
1429
1430 out_unlock:
1431         arch_spin_unlock(&trace_buf_lock);
1432         local_irq_restore(flags);
1433
1434 out:
1435         atomic_dec_return(&data->disabled);
1436         ftrace_preempt_enable(resched);
1437         unpause_graph_tracing();
1438
1439         return len;
1440 }
1441 EXPORT_SYMBOL_GPL(trace_vbprintk);
1442
1443 int trace_array_printk(struct trace_array *tr,
1444                        unsigned long ip, const char *fmt, ...)
1445 {
1446         int ret;
1447         va_list ap;
1448
1449         if (!(trace_flags & TRACE_ITER_PRINTK))
1450                 return 0;
1451
1452         va_start(ap, fmt);
1453         ret = trace_array_vprintk(tr, ip, fmt, ap);
1454         va_end(ap);
1455         return ret;
1456 }
1457
1458 int trace_array_vprintk(struct trace_array *tr,
1459                         unsigned long ip, const char *fmt, va_list args)
1460 {
1461         static arch_spinlock_t trace_buf_lock = __ARCH_SPIN_LOCK_UNLOCKED;
1462         static char trace_buf[TRACE_BUF_SIZE];
1463
1464         struct ftrace_event_call *call = &event_print;
1465         struct ring_buffer_event *event;
1466         struct ring_buffer *buffer;
1467         struct trace_array_cpu *data;
1468         int cpu, len = 0, size, pc;
1469         struct print_entry *entry;
1470         unsigned long irq_flags;
1471         int disable;
1472
1473         if (tracing_disabled || tracing_selftest_running)
1474                 return 0;
1475
1476         pc = preempt_count();
1477         preempt_disable_notrace();
1478         cpu = raw_smp_processor_id();
1479         data = tr->data[cpu];
1480
1481         disable = atomic_inc_return(&data->disabled);
1482         if (unlikely(disable != 1))
1483                 goto out;
1484
1485         pause_graph_tracing();
1486         raw_local_irq_save(irq_flags);
1487         arch_spin_lock(&trace_buf_lock);
1488         len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1489
1490         size = sizeof(*entry) + len + 1;
1491         buffer = tr->buffer;
1492         event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
1493                                           irq_flags, pc);
1494         if (!event)
1495                 goto out_unlock;
1496         entry = ring_buffer_event_data(event);
1497         entry->ip = ip;
1498
1499         memcpy(&entry->buf, trace_buf, len);
1500         entry->buf[len] = '\0';
1501         if (!filter_check_discard(call, entry, buffer, event)) {
1502                 ring_buffer_unlock_commit(buffer, event);
1503                 ftrace_trace_stack(buffer, irq_flags, 6, pc);
1504         }
1505
1506  out_unlock:
1507         arch_spin_unlock(&trace_buf_lock);
1508         raw_local_irq_restore(irq_flags);
1509         unpause_graph_tracing();
1510  out:
1511         atomic_dec_return(&data->disabled);
1512         preempt_enable_notrace();
1513
1514         return len;
1515 }
1516
1517 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
1518 {
1519         return trace_array_vprintk(&global_trace, ip, fmt, args);
1520 }
1521 EXPORT_SYMBOL_GPL(trace_vprintk);
1522
1523 enum trace_file_type {
1524         TRACE_FILE_LAT_FMT      = 1,
1525         TRACE_FILE_ANNOTATE     = 2,
1526 };
1527
1528 static void trace_iterator_increment(struct trace_iterator *iter)
1529 {
1530         /* Don't allow ftrace to trace into the ring buffers */
1531         ftrace_disable_cpu();
1532
1533         iter->idx++;
1534         if (iter->buffer_iter[iter->cpu])
1535                 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1536
1537         ftrace_enable_cpu();
1538 }
1539
1540 static struct trace_entry *
1541 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
1542 {
1543         struct ring_buffer_event *event;
1544         struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1545
1546         /* Don't allow ftrace to trace into the ring buffers */
1547         ftrace_disable_cpu();
1548
1549         if (buf_iter)
1550                 event = ring_buffer_iter_peek(buf_iter, ts);
1551         else
1552                 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1553
1554         ftrace_enable_cpu();
1555
1556         return event ? ring_buffer_event_data(event) : NULL;
1557 }
1558
1559 static struct trace_entry *
1560 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1561 {
1562         struct ring_buffer *buffer = iter->tr->buffer;
1563         struct trace_entry *ent, *next = NULL;
1564         int cpu_file = iter->cpu_file;
1565         u64 next_ts = 0, ts;
1566         int next_cpu = -1;
1567         int cpu;
1568
1569         /*
1570          * If we are in a per_cpu trace file, don't bother by iterating over
1571          * all cpu and peek directly.
1572          */
1573         if (cpu_file > TRACE_PIPE_ALL_CPU) {
1574                 if (ring_buffer_empty_cpu(buffer, cpu_file))
1575                         return NULL;
1576                 ent = peek_next_entry(iter, cpu_file, ent_ts);
1577                 if (ent_cpu)
1578                         *ent_cpu = cpu_file;
1579
1580                 return ent;
1581         }
1582
1583         for_each_tracing_cpu(cpu) {
1584
1585                 if (ring_buffer_empty_cpu(buffer, cpu))
1586                         continue;
1587
1588                 ent = peek_next_entry(iter, cpu, &ts);
1589
1590                 /*
1591                  * Pick the entry with the smallest timestamp:
1592                  */
1593                 if (ent && (!next || ts < next_ts)) {
1594                         next = ent;
1595                         next_cpu = cpu;
1596                         next_ts = ts;
1597                 }
1598         }
1599
1600         if (ent_cpu)
1601                 *ent_cpu = next_cpu;
1602
1603         if (ent_ts)
1604                 *ent_ts = next_ts;
1605
1606         return next;
1607 }
1608
1609 /* Find the next real entry, without updating the iterator itself */
1610 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1611                                           int *ent_cpu, u64 *ent_ts)
1612 {
1613         return __find_next_entry(iter, ent_cpu, ent_ts);
1614 }
1615
1616 /* Find the next real entry, and increment the iterator to the next entry */
1617 static void *find_next_entry_inc(struct trace_iterator *iter)
1618 {
1619         iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
1620
1621         if (iter->ent)
1622                 trace_iterator_increment(iter);
1623
1624         return iter->ent ? iter : NULL;
1625 }
1626
1627 static void trace_consume(struct trace_iterator *iter)
1628 {
1629         /* Don't allow ftrace to trace into the ring buffers */
1630         ftrace_disable_cpu();
1631         ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
1632         ftrace_enable_cpu();
1633 }
1634
1635 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1636 {
1637         struct trace_iterator *iter = m->private;
1638         int i = (int)*pos;
1639         void *ent;
1640
1641         WARN_ON_ONCE(iter->leftover);
1642
1643         (*pos)++;
1644
1645         /* can't go backwards */
1646         if (iter->idx > i)
1647                 return NULL;
1648
1649         if (iter->idx < 0)
1650                 ent = find_next_entry_inc(iter);
1651         else
1652                 ent = iter;
1653
1654         while (ent && iter->idx < i)
1655                 ent = find_next_entry_inc(iter);
1656
1657         iter->pos = *pos;
1658
1659         return ent;
1660 }
1661
1662 static void tracing_iter_reset(struct trace_iterator *iter, int cpu)
1663 {
1664         struct trace_array *tr = iter->tr;
1665         struct ring_buffer_event *event;
1666         struct ring_buffer_iter *buf_iter;
1667         unsigned long entries = 0;
1668         u64 ts;
1669
1670         tr->data[cpu]->skipped_entries = 0;
1671
1672         if (!iter->buffer_iter[cpu])
1673                 return;
1674
1675         buf_iter = iter->buffer_iter[cpu];
1676         ring_buffer_iter_reset(buf_iter);
1677
1678         /*
1679          * We could have the case with the max latency tracers
1680          * that a reset never took place on a cpu. This is evident
1681          * by the timestamp being before the start of the buffer.
1682          */
1683         while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
1684                 if (ts >= iter->tr->time_start)
1685                         break;
1686                 entries++;
1687                 ring_buffer_read(buf_iter, NULL);
1688         }
1689
1690         tr->data[cpu]->skipped_entries = entries;
1691 }
1692
1693 /*
1694  * The current tracer is copied to avoid a global locking
1695  * all around.
1696  */
1697 static void *s_start(struct seq_file *m, loff_t *pos)
1698 {
1699         struct trace_iterator *iter = m->private;
1700         static struct tracer *old_tracer;
1701         int cpu_file = iter->cpu_file;
1702         void *p = NULL;
1703         loff_t l = 0;
1704         int cpu;
1705
1706         /* copy the tracer to avoid using a global lock all around */
1707         mutex_lock(&trace_types_lock);
1708         if (unlikely(old_tracer != current_trace && current_trace)) {
1709                 old_tracer = current_trace;
1710                 *iter->trace = *current_trace;
1711         }
1712         mutex_unlock(&trace_types_lock);
1713
1714         atomic_inc(&trace_record_cmdline_disabled);
1715
1716         if (*pos != iter->pos) {
1717                 iter->ent = NULL;
1718                 iter->cpu = 0;
1719                 iter->idx = -1;
1720
1721                 ftrace_disable_cpu();
1722
1723                 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1724                         for_each_tracing_cpu(cpu)
1725                                 tracing_iter_reset(iter, cpu);
1726                 } else
1727                         tracing_iter_reset(iter, cpu_file);
1728
1729                 ftrace_enable_cpu();
1730
1731                 iter->leftover = 0;
1732                 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1733                         ;
1734
1735         } else {
1736                 /*
1737                  * If we overflowed the seq_file before, then we want
1738                  * to just reuse the trace_seq buffer again.
1739                  */
1740                 if (iter->leftover)
1741                         p = iter;
1742                 else {
1743                         l = *pos - 1;
1744                         p = s_next(m, p, &l);
1745                 }
1746         }
1747
1748         trace_event_read_lock();
1749         trace_access_lock(cpu_file);
1750         return p;
1751 }
1752
1753 static void s_stop(struct seq_file *m, void *p)
1754 {
1755         struct trace_iterator *iter = m->private;
1756
1757         atomic_dec(&trace_record_cmdline_disabled);
1758         trace_access_unlock(iter->cpu_file);
1759         trace_event_read_unlock();
1760 }
1761
1762 static void print_lat_help_header(struct seq_file *m)
1763 {
1764         seq_puts(m, "#                  _------=> CPU#            \n");
1765         seq_puts(m, "#                 / _-----=> irqs-off        \n");
1766         seq_puts(m, "#                | / _----=> need-resched    \n");
1767         seq_puts(m, "#                || / _---=> hardirq/softirq \n");
1768         seq_puts(m, "#                ||| / _--=> preempt-depth   \n");
1769         seq_puts(m, "#                |||| /_--=> lock-depth       \n");
1770         seq_puts(m, "#                |||||/     delay             \n");
1771         seq_puts(m, "#  cmd     pid   |||||| time  |   caller      \n");
1772         seq_puts(m, "#     \\   /      ||||||   \\   |   /           \n");
1773 }
1774
1775 static void print_func_help_header(struct seq_file *m)
1776 {
1777         seq_puts(m, "#           TASK-PID    CPU#    TIMESTAMP  FUNCTION\n");
1778         seq_puts(m, "#              | |       |          |         |\n");
1779 }
1780
1781
1782 static void
1783 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1784 {
1785         unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1786         struct trace_array *tr = iter->tr;
1787         struct trace_array_cpu *data = tr->data[tr->cpu];
1788         struct tracer *type = current_trace;
1789         unsigned long entries = 0;
1790         unsigned long total = 0;
1791         unsigned long count;
1792         const char *name = "preemption";
1793         int cpu;
1794
1795         if (type)
1796                 name = type->name;
1797
1798
1799         for_each_tracing_cpu(cpu) {
1800                 count = ring_buffer_entries_cpu(tr->buffer, cpu);
1801                 /*
1802                  * If this buffer has skipped entries, then we hold all
1803                  * entries for the trace and we need to ignore the
1804                  * ones before the time stamp.
1805                  */
1806                 if (tr->data[cpu]->skipped_entries) {
1807                         count -= tr->data[cpu]->skipped_entries;
1808                         /* total is the same as the entries */
1809                         total += count;
1810                 } else
1811                         total += count +
1812                                 ring_buffer_overrun_cpu(tr->buffer, cpu);
1813                 entries += count;
1814         }
1815
1816         seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
1817                    name, UTS_RELEASE);
1818         seq_puts(m, "# -----------------------------------"
1819                  "---------------------------------\n");
1820         seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
1821                    " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1822                    nsecs_to_usecs(data->saved_latency),
1823                    entries,
1824                    total,
1825                    tr->cpu,
1826 #if defined(CONFIG_PREEMPT_NONE)
1827                    "server",
1828 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1829                    "desktop",
1830 #elif defined(CONFIG_PREEMPT)
1831                    "preempt",
1832 #else
1833                    "unknown",
1834 #endif
1835                    /* These are reserved for later use */
1836                    0, 0, 0, 0);
1837 #ifdef CONFIG_SMP
1838         seq_printf(m, " #P:%d)\n", num_online_cpus());
1839 #else
1840         seq_puts(m, ")\n");
1841 #endif
1842         seq_puts(m, "#    -----------------\n");
1843         seq_printf(m, "#    | task: %.16s-%d "
1844                    "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1845                    data->comm, data->pid, data->uid, data->nice,
1846                    data->policy, data->rt_priority);
1847         seq_puts(m, "#    -----------------\n");
1848
1849         if (data->critical_start) {
1850                 seq_puts(m, "#  => started at: ");
1851                 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1852                 trace_print_seq(m, &iter->seq);
1853                 seq_puts(m, "\n#  => ended at:   ");
1854                 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1855                 trace_print_seq(m, &iter->seq);
1856                 seq_puts(m, "\n#\n");
1857         }
1858
1859         seq_puts(m, "#\n");
1860 }
1861
1862 static void test_cpu_buff_start(struct trace_iterator *iter)
1863 {
1864         struct trace_seq *s = &iter->seq;
1865
1866         if (!(trace_flags & TRACE_ITER_ANNOTATE))
1867                 return;
1868
1869         if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1870                 return;
1871
1872         if (cpumask_test_cpu(iter->cpu, iter->started))
1873                 return;
1874
1875         if (iter->tr->data[iter->cpu]->skipped_entries)
1876                 return;
1877
1878         cpumask_set_cpu(iter->cpu, iter->started);
1879
1880         /* Don't print started cpu buffer for the first entry of the trace */
1881         if (iter->idx > 1)
1882                 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
1883                                 iter->cpu);
1884 }
1885
1886 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1887 {
1888         struct trace_seq *s = &iter->seq;
1889         unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1890         struct trace_entry *entry;
1891         struct trace_event *event;
1892
1893         entry = iter->ent;
1894
1895         test_cpu_buff_start(iter);
1896
1897         event = ftrace_find_event(entry->type);
1898
1899         if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1900                 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1901                         if (!trace_print_lat_context(iter))
1902                                 goto partial;
1903                 } else {
1904                         if (!trace_print_context(iter))
1905                                 goto partial;
1906                 }
1907         }
1908
1909         if (event)
1910                 return event->trace(iter, sym_flags);
1911
1912         if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
1913                 goto partial;
1914
1915         return TRACE_TYPE_HANDLED;
1916 partial:
1917         return TRACE_TYPE_PARTIAL_LINE;
1918 }
1919
1920 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1921 {
1922         struct trace_seq *s = &iter->seq;
1923         struct trace_entry *entry;
1924         struct trace_event *event;
1925
1926         entry = iter->ent;
1927
1928         if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1929                 if (!trace_seq_printf(s, "%d %d %llu ",
1930                                       entry->pid, iter->cpu, iter->ts))
1931                         goto partial;
1932         }
1933
1934         event = ftrace_find_event(entry->type);
1935         if (event)
1936                 return event->raw(iter, 0);
1937
1938         if (!trace_seq_printf(s, "%d ?\n", entry->type))
1939                 goto partial;
1940
1941         return TRACE_TYPE_HANDLED;
1942 partial:
1943         return TRACE_TYPE_PARTIAL_LINE;
1944 }
1945
1946 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1947 {
1948         struct trace_seq *s = &iter->seq;
1949         unsigned char newline = '\n';
1950         struct trace_entry *entry;
1951         struct trace_event *event;
1952
1953         entry = iter->ent;
1954
1955         if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1956                 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1957                 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1958                 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1959         }
1960
1961         event = ftrace_find_event(entry->type);
1962         if (event) {
1963                 enum print_line_t ret = event->hex(iter, 0);
1964                 if (ret != TRACE_TYPE_HANDLED)
1965                         return ret;
1966         }
1967
1968         SEQ_PUT_FIELD_RET(s, newline);
1969
1970         return TRACE_TYPE_HANDLED;
1971 }
1972
1973 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1974 {
1975         struct trace_seq *s = &iter->seq;
1976         struct trace_entry *entry;
1977         struct trace_event *event;
1978
1979         entry = iter->ent;
1980
1981         if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1982                 SEQ_PUT_FIELD_RET(s, entry->pid);
1983                 SEQ_PUT_FIELD_RET(s, iter->cpu);
1984                 SEQ_PUT_FIELD_RET(s, iter->ts);
1985         }
1986
1987         event = ftrace_find_event(entry->type);
1988         return event ? event->binary(iter, 0) : TRACE_TYPE_HANDLED;
1989 }
1990
1991 static int trace_empty(struct trace_iterator *iter)
1992 {
1993         int cpu;
1994
1995         /* If we are looking at one CPU buffer, only check that one */
1996         if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
1997                 cpu = iter->cpu_file;
1998                 if (iter->buffer_iter[cpu]) {
1999                         if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2000                                 return 0;
2001                 } else {
2002                         if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2003                                 return 0;
2004                 }
2005                 return 1;
2006         }
2007
2008         for_each_tracing_cpu(cpu) {
2009                 if (iter->buffer_iter[cpu]) {
2010                         if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2011                                 return 0;
2012                 } else {
2013                         if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2014                                 return 0;
2015                 }
2016         }
2017
2018         return 1;
2019 }
2020
2021 /*  Called with trace_event_read_lock() held. */
2022 static enum print_line_t print_trace_line(struct trace_iterator *iter)
2023 {
2024         enum print_line_t ret;
2025
2026         if (iter->trace && iter->trace->print_line) {
2027                 ret = iter->trace->print_line(iter);
2028                 if (ret != TRACE_TYPE_UNHANDLED)
2029                         return ret;
2030         }
2031
2032         if (iter->ent->type == TRACE_BPRINT &&
2033                         trace_flags & TRACE_ITER_PRINTK &&
2034                         trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2035                 return trace_print_bprintk_msg_only(iter);
2036
2037         if (iter->ent->type == TRACE_PRINT &&
2038                         trace_flags & TRACE_ITER_PRINTK &&
2039                         trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2040                 return trace_print_printk_msg_only(iter);
2041
2042         if (trace_flags & TRACE_ITER_BIN)
2043                 return print_bin_fmt(iter);
2044
2045         if (trace_flags & TRACE_ITER_HEX)
2046                 return print_hex_fmt(iter);
2047
2048         if (trace_flags & TRACE_ITER_RAW)
2049                 return print_raw_fmt(iter);
2050
2051         return print_trace_fmt(iter);
2052 }
2053
2054 static int s_show(struct seq_file *m, void *v)
2055 {
2056         struct trace_iterator *iter = v;
2057         int ret;
2058
2059         if (iter->ent == NULL) {
2060                 if (iter->tr) {
2061                         seq_printf(m, "# tracer: %s\n", iter->trace->name);
2062                         seq_puts(m, "#\n");
2063                 }
2064                 if (iter->trace && iter->trace->print_header)
2065                         iter->trace->print_header(m);
2066                 else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2067                         /* print nothing if the buffers are empty */
2068                         if (trace_empty(iter))
2069                                 return 0;
2070                         print_trace_header(m, iter);
2071                         if (!(trace_flags & TRACE_ITER_VERBOSE))
2072                                 print_lat_help_header(m);
2073                 } else {
2074                         if (!(trace_flags & TRACE_ITER_VERBOSE))
2075                                 print_func_help_header(m);
2076                 }
2077         } else if (iter->leftover) {
2078                 /*
2079                  * If we filled the seq_file buffer earlier, we
2080                  * want to just show it now.
2081                  */
2082                 ret = trace_print_seq(m, &iter->seq);
2083
2084                 /* ret should this time be zero, but you never know */
2085                 iter->leftover = ret;
2086
2087         } else {
2088                 print_trace_line(iter);
2089                 ret = trace_print_seq(m, &iter->seq);
2090                 /*
2091                  * If we overflow the seq_file buffer, then it will
2092                  * ask us for this data again at start up.
2093                  * Use that instead.
2094                  *  ret is 0 if seq_file write succeeded.
2095                  *        -1 otherwise.
2096                  */
2097                 iter->leftover = ret;
2098         }
2099
2100         return 0;
2101 }
2102
2103 static const struct seq_operations tracer_seq_ops = {
2104         .start          = s_start,
2105         .next           = s_next,
2106         .stop           = s_stop,
2107         .show           = s_show,
2108 };
2109
2110 static struct trace_iterator *
2111 __tracing_open(struct inode *inode, struct file *file)
2112 {
2113         long cpu_file = (long) inode->i_private;
2114         void *fail_ret = ERR_PTR(-ENOMEM);
2115         struct trace_iterator *iter;
2116         struct seq_file *m;
2117         int cpu, ret;
2118
2119         if (tracing_disabled)
2120                 return ERR_PTR(-ENODEV);
2121
2122         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2123         if (!iter)
2124                 return ERR_PTR(-ENOMEM);
2125
2126         /*
2127          * We make a copy of the current tracer to avoid concurrent
2128          * changes on it while we are reading.
2129          */
2130         mutex_lock(&trace_types_lock);
2131         iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
2132         if (!iter->trace)
2133                 goto fail;
2134
2135         if (current_trace)
2136                 *iter->trace = *current_trace;
2137
2138         if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
2139                 goto fail;
2140
2141         if (current_trace && current_trace->print_max)
2142                 iter->tr = &max_tr;
2143         else
2144                 iter->tr = &global_trace;
2145         iter->pos = -1;
2146         mutex_init(&iter->mutex);
2147         iter->cpu_file = cpu_file;
2148
2149         /* Notify the tracer early; before we stop tracing. */
2150         if (iter->trace && iter->trace->open)
2151                 iter->trace->open(iter);
2152
2153         /* Annotate start of buffers if we had overruns */
2154         if (ring_buffer_overruns(iter->tr->buffer))
2155                 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2156
2157         /* stop the trace while dumping */
2158         tracing_stop();
2159
2160         if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
2161                 for_each_tracing_cpu(cpu) {
2162
2163                         iter->buffer_iter[cpu] =
2164                                 ring_buffer_read_start(iter->tr->buffer, cpu);
2165                         tracing_iter_reset(iter, cpu);
2166                 }
2167         } else {
2168                 cpu = iter->cpu_file;
2169                 iter->buffer_iter[cpu] =
2170                                 ring_buffer_read_start(iter->tr->buffer, cpu);
2171                 tracing_iter_reset(iter, cpu);
2172         }
2173
2174         ret = seq_open(file, &tracer_seq_ops);
2175         if (ret < 0) {
2176                 fail_ret = ERR_PTR(ret);
2177                 goto fail_buffer;
2178         }
2179
2180         m = file->private_data;
2181         m->private = iter;
2182
2183         mutex_unlock(&trace_types_lock);
2184
2185         return iter;
2186
2187  fail_buffer:
2188         for_each_tracing_cpu(cpu) {
2189                 if (iter->buffer_iter[cpu])
2190                         ring_buffer_read_finish(iter->buffer_iter[cpu]);
2191         }
2192         free_cpumask_var(iter->started);
2193         tracing_start();
2194  fail:
2195         mutex_unlock(&trace_types_lock);
2196         kfree(iter->trace);
2197         kfree(iter);
2198
2199         return fail_ret;
2200 }
2201
2202 int tracing_open_generic(struct inode *inode, struct file *filp)
2203 {
2204         if (tracing_disabled)
2205                 return -ENODEV;
2206
2207         filp->private_data = inode->i_private;
2208         return 0;
2209 }
2210
2211 static int tracing_release(struct inode *inode, struct file *file)
2212 {
2213         struct seq_file *m = (struct seq_file *)file->private_data;
2214         struct trace_iterator *iter;
2215         int cpu;
2216
2217         if (!(file->f_mode & FMODE_READ))
2218                 return 0;
2219
2220         iter = m->private;
2221
2222         mutex_lock(&trace_types_lock);
2223         for_each_tracing_cpu(cpu) {
2224                 if (iter->buffer_iter[cpu])
2225                         ring_buffer_read_finish(iter->buffer_iter[cpu]);
2226         }
2227
2228         if (iter->trace && iter->trace->close)
2229                 iter->trace->close(iter);
2230
2231         /* reenable tracing if it was previously enabled */
2232         tracing_start();
2233         mutex_unlock(&trace_types_lock);
2234
2235         seq_release(inode, file);
2236         mutex_destroy(&iter->mutex);
2237         free_cpumask_var(iter->started);
2238         kfree(iter->trace);
2239         kfree(iter);
2240         return 0;
2241 }
2242
2243 static int tracing_open(struct inode *inode, struct file *file)
2244 {
2245         struct trace_iterator *iter;
2246         int ret = 0;
2247
2248         /* If this file was open for write, then erase contents */
2249         if ((file->f_mode & FMODE_WRITE) &&
2250             (file->f_flags & O_TRUNC)) {
2251                 long cpu = (long) inode->i_private;
2252
2253                 if (cpu == TRACE_PIPE_ALL_CPU)
2254                         tracing_reset_online_cpus(&global_trace);
2255                 else
2256                         tracing_reset(&global_trace, cpu);
2257         }
2258
2259         if (file->f_mode & FMODE_READ) {
2260                 iter = __tracing_open(inode, file);
2261                 if (IS_ERR(iter))
2262                         ret = PTR_ERR(iter);
2263                 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2264                         iter->iter_flags |= TRACE_FILE_LAT_FMT;
2265         }
2266         return ret;
2267 }
2268
2269 static void *
2270 t_next(struct seq_file *m, void *v, loff_t *pos)
2271 {
2272         struct tracer *t = v;
2273
2274         (*pos)++;
2275
2276         if (t)
2277                 t = t->next;
2278
2279         return t;
2280 }
2281
2282 static void *t_start(struct seq_file *m, loff_t *pos)
2283 {
2284         struct tracer *t;
2285         loff_t l = 0;
2286
2287         mutex_lock(&trace_types_lock);
2288         for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
2289                 ;
2290
2291         return t;
2292 }
2293
2294 static void t_stop(struct seq_file *m, void *p)
2295 {
2296         mutex_unlock(&trace_types_lock);
2297 }
2298
2299 static int t_show(struct seq_file *m, void *v)
2300 {
2301         struct tracer *t = v;
2302
2303         if (!t)
2304                 return 0;
2305
2306         seq_printf(m, "%s", t->name);
2307         if (t->next)
2308                 seq_putc(m, ' ');
2309         else
2310                 seq_putc(m, '\n');
2311
2312         return 0;
2313 }
2314
2315 static const struct seq_operations show_traces_seq_ops = {
2316         .start          = t_start,
2317         .next           = t_next,
2318         .stop           = t_stop,
2319         .show           = t_show,
2320 };
2321
2322 static int show_traces_open(struct inode *inode, struct file *file)
2323 {
2324         if (tracing_disabled)
2325                 return -ENODEV;
2326
2327         return seq_open(file, &show_traces_seq_ops);
2328 }
2329
2330 static ssize_t
2331 tracing_write_stub(struct file *filp, const char __user *ubuf,
2332                    size_t count, loff_t *ppos)
2333 {
2334         return count;
2335 }
2336
2337 static const struct file_operations tracing_fops = {
2338         .open           = tracing_open,
2339         .read           = seq_read,
2340         .write          = tracing_write_stub,
2341         .llseek         = seq_lseek,
2342         .release        = tracing_release,
2343 };
2344
2345 static const struct file_operations show_traces_fops = {
2346         .open           = show_traces_open,
2347         .read           = seq_read,
2348         .release        = seq_release,
2349 };
2350
2351 /*
2352  * Only trace on a CPU if the bitmask is set:
2353  */
2354 static cpumask_var_t tracing_cpumask;
2355
2356 /*
2357  * The tracer itself will not take this lock, but still we want
2358  * to provide a consistent cpumask to user-space:
2359  */
2360 static DEFINE_MUTEX(tracing_cpumask_update_lock);
2361
2362 /*
2363  * Temporary storage for the character representation of the
2364  * CPU bitmask (and one more byte for the newline):
2365  */
2366 static char mask_str[NR_CPUS + 1];
2367
2368 static ssize_t
2369 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2370                      size_t count, loff_t *ppos)
2371 {
2372         int len;
2373
2374         mutex_lock(&tracing_cpumask_update_lock);
2375
2376         len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2377         if (count - len < 2) {
2378                 count = -EINVAL;
2379                 goto out_err;
2380         }
2381         len += sprintf(mask_str + len, "\n");
2382         count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2383
2384 out_err:
2385         mutex_unlock(&tracing_cpumask_update_lock);
2386
2387         return count;
2388 }
2389
2390 static ssize_t
2391 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2392                       size_t count, loff_t *ppos)
2393 {
2394         int err, cpu;
2395         cpumask_var_t tracing_cpumask_new;
2396
2397         if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2398                 return -ENOMEM;
2399
2400         err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2401         if (err)
2402                 goto err_unlock;
2403
2404         mutex_lock(&tracing_cpumask_update_lock);
2405
2406         local_irq_disable();
2407         arch_spin_lock(&ftrace_max_lock);
2408         for_each_tracing_cpu(cpu) {
2409                 /*
2410                  * Increase/decrease the disabled counter if we are
2411                  * about to flip a bit in the cpumask:
2412                  */
2413                 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2414                                 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2415                         atomic_inc(&global_trace.data[cpu]->disabled);
2416                 }
2417                 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2418                                 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2419                         atomic_dec(&global_trace.data[cpu]->disabled);
2420                 }
2421         }
2422         arch_spin_unlock(&ftrace_max_lock);
2423         local_irq_enable();
2424
2425         cpumask_copy(tracing_cpumask, tracing_cpumask_new);
2426
2427         mutex_unlock(&tracing_cpumask_update_lock);
2428         free_cpumask_var(tracing_cpumask_new);
2429
2430         return count;
2431
2432 err_unlock:
2433         free_cpumask_var(tracing_cpumask_new);
2434
2435         return err;
2436 }
2437
2438 static const struct file_operations tracing_cpumask_fops = {
2439         .open           = tracing_open_generic,
2440         .read           = tracing_cpumask_read,
2441         .write          = tracing_cpumask_write,
2442 };
2443
2444 static int tracing_trace_options_show(struct seq_file *m, void *v)
2445 {
2446         struct tracer_opt *trace_opts;
2447         u32 tracer_flags;
2448         int i;
2449
2450         mutex_lock(&trace_types_lock);
2451         tracer_flags = current_trace->flags->val;
2452         trace_opts = current_trace->flags->opts;
2453
2454         for (i = 0; trace_options[i]; i++) {
2455                 if (trace_flags & (1 << i))
2456                         seq_printf(m, "%s\n", trace_options[i]);
2457                 else
2458                         seq_printf(m, "no%s\n", trace_options[i]);
2459         }
2460
2461         for (i = 0; trace_opts[i].name; i++) {
2462                 if (tracer_flags & trace_opts[i].bit)
2463                         seq_printf(m, "%s\n", trace_opts[i].name);
2464                 else
2465                         seq_printf(m, "no%s\n", trace_opts[i].name);
2466         }
2467         mutex_unlock(&trace_types_lock);
2468
2469         return 0;
2470 }
2471
2472 static int __set_tracer_option(struct tracer *trace,
2473                                struct tracer_flags *tracer_flags,
2474                                struct tracer_opt *opts, int neg)
2475 {
2476         int ret;
2477
2478         ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
2479         if (ret)
2480                 return ret;
2481
2482         if (neg)
2483                 tracer_flags->val &= ~opts->bit;
2484         else
2485                 tracer_flags->val |= opts->bit;
2486         return 0;
2487 }
2488
2489 /* Try to assign a tracer specific option */
2490 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2491 {
2492         struct tracer_flags *tracer_flags = trace->flags;
2493         struct tracer_opt *opts = NULL;
2494         int i;
2495
2496         for (i = 0; tracer_flags->opts[i].name; i++) {
2497                 opts = &tracer_flags->opts[i];
2498
2499                 if (strcmp(cmp, opts->name) == 0)
2500                         return __set_tracer_option(trace, trace->flags,
2501                                                    opts, neg);
2502         }
2503
2504         return -EINVAL;
2505 }
2506
2507 static void set_tracer_flags(unsigned int mask, int enabled)
2508 {
2509         /* do nothing if flag is already set */
2510         if (!!(trace_flags & mask) == !!enabled)
2511                 return;
2512
2513         if (enabled)
2514                 trace_flags |= mask;
2515         else
2516                 trace_flags &= ~mask;
2517 }
2518
2519 static ssize_t
2520 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2521                         size_t cnt, loff_t *ppos)
2522 {
2523         char buf[64];
2524         char *cmp;
2525         int neg = 0;
2526         int ret;
2527         int i;
2528
2529         if (cnt >= sizeof(buf))
2530                 return -EINVAL;
2531
2532         if (copy_from_user(&buf, ubuf, cnt))
2533                 return -EFAULT;
2534
2535         buf[cnt] = 0;
2536         cmp = strstrip(buf);
2537
2538         if (strncmp(cmp, "no", 2) == 0) {
2539                 neg = 1;
2540                 cmp += 2;
2541         }
2542
2543         for (i = 0; trace_options[i]; i++) {
2544                 if (strcmp(cmp, trace_options[i]) == 0) {
2545                         set_tracer_flags(1 << i, !neg);
2546                         break;
2547                 }
2548         }
2549
2550         /* If no option could be set, test the specific tracer options */
2551         if (!trace_options[i]) {
2552                 mutex_lock(&trace_types_lock);
2553                 ret = set_tracer_option(current_trace, cmp, neg);
2554                 mutex_unlock(&trace_types_lock);
2555                 if (ret)
2556                         return ret;
2557         }
2558
2559         *ppos += cnt;
2560
2561         return cnt;
2562 }
2563
2564 static int tracing_trace_options_open(struct inode *inode, struct file *file)
2565 {
2566         if (tracing_disabled)
2567                 return -ENODEV;
2568         return single_open(file, tracing_trace_options_show, NULL);
2569 }
2570
2571 static const struct file_operations tracing_iter_fops = {
2572         .open           = tracing_trace_options_open,
2573         .read           = seq_read,
2574         .llseek         = seq_lseek,
2575         .release        = single_release,
2576         .write          = tracing_trace_options_write,
2577 };
2578
2579 static const char readme_msg[] =
2580         "tracing mini-HOWTO:\n\n"
2581         "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2582         "# cat /sys/kernel/debug/tracing/available_tracers\n"
2583         "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
2584         "# cat /sys/kernel/debug/tracing/current_tracer\n"
2585         "nop\n"
2586         "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2587         "# cat /sys/kernel/debug/tracing/current_tracer\n"
2588         "sched_switch\n"
2589         "# cat /sys/kernel/debug/tracing/trace_options\n"
2590         "noprint-parent nosym-offset nosym-addr noverbose\n"
2591         "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2592         "# echo 1 > /sys/kernel/debug/tracing/tracing_enabled\n"
2593         "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2594         "# echo 0 > /sys/kernel/debug/tracing/tracing_enabled\n"
2595 ;
2596
2597 static ssize_t
2598 tracing_readme_read(struct file *filp, char __user *ubuf,
2599                        size_t cnt, loff_t *ppos)
2600 {
2601         return simple_read_from_buffer(ubuf, cnt, ppos,
2602                                         readme_msg, strlen(readme_msg));
2603 }
2604
2605 static const struct file_operations tracing_readme_fops = {
2606         .open           = tracing_open_generic,
2607         .read           = tracing_readme_read,
2608 };
2609
2610 static ssize_t
2611 tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
2612                                 size_t cnt, loff_t *ppos)
2613 {
2614         char *buf_comm;
2615         char *file_buf;
2616         char *buf;
2617         int len = 0;
2618         int pid;
2619         int i;
2620
2621         file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
2622         if (!file_buf)
2623                 return -ENOMEM;
2624
2625         buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
2626         if (!buf_comm) {
2627                 kfree(file_buf);
2628                 return -ENOMEM;
2629         }
2630
2631         buf = file_buf;
2632
2633         for (i = 0; i < SAVED_CMDLINES; i++) {
2634                 int r;
2635
2636                 pid = map_cmdline_to_pid[i];
2637                 if (pid == -1 || pid == NO_CMDLINE_MAP)
2638                         continue;
2639
2640                 trace_find_cmdline(pid, buf_comm);
2641                 r = sprintf(buf, "%d %s\n", pid, buf_comm);
2642                 buf += r;
2643                 len += r;
2644         }
2645
2646         len = simple_read_from_buffer(ubuf, cnt, ppos,
2647                                       file_buf, len);
2648
2649         kfree(file_buf);
2650         kfree(buf_comm);
2651
2652         return len;
2653 }
2654
2655 static const struct file_operations tracing_saved_cmdlines_fops = {
2656     .open       = tracing_open_generic,
2657     .read       = tracing_saved_cmdlines_read,
2658 };
2659
2660 static ssize_t
2661 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2662                   size_t cnt, loff_t *ppos)
2663 {
2664         char buf[64];
2665         int r;
2666
2667         r = sprintf(buf, "%u\n", tracer_enabled);
2668         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2669 }
2670
2671 static ssize_t
2672 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2673                    size_t cnt, loff_t *ppos)
2674 {
2675         struct trace_array *tr = filp->private_data;
2676         char buf[64];
2677         unsigned long val;
2678         int ret;
2679
2680         if (cnt >= sizeof(buf))
2681                 return -EINVAL;
2682
2683         if (copy_from_user(&buf, ubuf, cnt))
2684                 return -EFAULT;
2685
2686         buf[cnt] = 0;
2687
2688         ret = strict_strtoul(buf, 10, &val);
2689         if (ret < 0)
2690                 return ret;
2691
2692         val = !!val;
2693
2694         mutex_lock(&trace_types_lock);
2695         if (tracer_enabled ^ val) {
2696                 if (val) {
2697                         tracer_enabled = 1;
2698                         if (current_trace->start)
2699                                 current_trace->start(tr);
2700                         tracing_start();
2701                 } else {
2702                         tracer_enabled = 0;
2703                         tracing_stop();
2704                         if (current_trace->stop)
2705                                 current_trace->stop(tr);
2706                 }
2707         }
2708         mutex_unlock(&trace_types_lock);
2709
2710         *ppos += cnt;
2711
2712         return cnt;
2713 }
2714
2715 static ssize_t
2716 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2717                        size_t cnt, loff_t *ppos)
2718 {
2719         char buf[MAX_TRACER_SIZE+2];
2720         int r;
2721
2722         mutex_lock(&trace_types_lock);
2723         if (current_trace)
2724                 r = sprintf(buf, "%s\n", current_trace->name);
2725         else
2726                 r = sprintf(buf, "\n");
2727         mutex_unlock(&trace_types_lock);
2728
2729         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2730 }
2731
2732 int tracer_init(struct tracer *t, struct trace_array *tr)
2733 {
2734         tracing_reset_online_cpus(tr);
2735         return t->init(tr);
2736 }
2737
2738 static int tracing_resize_ring_buffer(unsigned long size)
2739 {
2740         int ret;
2741
2742         /*
2743          * If kernel or user changes the size of the ring buffer
2744          * we use the size that was given, and we can forget about
2745          * expanding it later.
2746          */
2747         ring_buffer_expanded = 1;
2748
2749         ret = ring_buffer_resize(global_trace.buffer, size);
2750         if (ret < 0)
2751                 return ret;
2752
2753         ret = ring_buffer_resize(max_tr.buffer, size);
2754         if (ret < 0) {
2755                 int r;
2756
2757                 r = ring_buffer_resize(global_trace.buffer,
2758                                        global_trace.entries);
2759                 if (r < 0) {
2760                         /*
2761                          * AARGH! We are left with different
2762                          * size max buffer!!!!
2763                          * The max buffer is our "snapshot" buffer.
2764                          * When a tracer needs a snapshot (one of the
2765                          * latency tracers), it swaps the max buffer
2766                          * with the saved snap shot. We succeeded to
2767                          * update the size of the main buffer, but failed to
2768                          * update the size of the max buffer. But when we tried
2769                          * to reset the main buffer to the original size, we
2770                          * failed there too. This is very unlikely to
2771                          * happen, but if it does, warn and kill all
2772                          * tracing.
2773                          */
2774                         WARN_ON(1);
2775                         tracing_disabled = 1;
2776                 }
2777                 return ret;
2778         }
2779
2780         global_trace.entries = size;
2781
2782         return ret;
2783 }
2784
2785 /**
2786  * tracing_update_buffers - used by tracing facility to expand ring buffers
2787  *
2788  * To save on memory when the tracing is never used on a system with it
2789  * configured in. The ring buffers are set to a minimum size. But once
2790  * a user starts to use the tracing facility, then they need to grow
2791  * to their default size.
2792  *
2793  * This function is to be called when a tracer is about to be used.
2794  */
2795 int tracing_update_buffers(void)
2796 {
2797         int ret = 0;
2798
2799         mutex_lock(&trace_types_lock);
2800         if (!ring_buffer_expanded)
2801                 ret = tracing_resize_ring_buffer(trace_buf_size);
2802         mutex_unlock(&trace_types_lock);
2803
2804         return ret;
2805 }
2806
2807 struct trace_option_dentry;
2808
2809 static struct trace_option_dentry *
2810 create_trace_option_files(struct tracer *tracer);
2811
2812 static void
2813 destroy_trace_option_files(struct trace_option_dentry *topts);
2814
2815 static int tracing_set_tracer(const char *buf)
2816 {
2817         static struct trace_option_dentry *topts;
2818         struct trace_array *tr = &global_trace;
2819         struct tracer *t;
2820         int ret = 0;
2821
2822         mutex_lock(&trace_types_lock);
2823
2824         if (!ring_buffer_expanded) {
2825                 ret = tracing_resize_ring_buffer(trace_buf_size);
2826                 if (ret < 0)
2827                         goto out;
2828                 ret = 0;
2829         }
2830
2831         for (t = trace_types; t; t = t->next) {
2832                 if (strcmp(t->name, buf) == 0)
2833                         break;
2834         }
2835         if (!t) {
2836                 ret = -EINVAL;
2837                 goto out;
2838         }
2839         if (t == current_trace)
2840                 goto out;
2841
2842         trace_branch_disable();
2843         if (current_trace && current_trace->reset)
2844                 current_trace->reset(tr);
2845
2846         destroy_trace_option_files(topts);
2847
2848         current_trace = t;
2849
2850         topts = create_trace_option_files(current_trace);
2851
2852         if (t->init) {
2853                 ret = tracer_init(t, tr);
2854                 if (ret)
2855                         goto out;
2856         }
2857
2858         trace_branch_enable(tr);
2859  out:
2860         mutex_unlock(&trace_types_lock);
2861
2862         return ret;
2863 }
2864
2865 static ssize_t
2866 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2867                         size_t cnt, loff_t *ppos)
2868 {
2869         char buf[MAX_TRACER_SIZE+1];
2870         int i;
2871         size_t ret;
2872         int err;
2873
2874         ret = cnt;
2875
2876         if (cnt > MAX_TRACER_SIZE)
2877                 cnt = MAX_TRACER_SIZE;
2878
2879         if (copy_from_user(&buf, ubuf, cnt))
2880                 return -EFAULT;
2881
2882         buf[cnt] = 0;
2883
2884         /* strip ending whitespace. */
2885         for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2886                 buf[i] = 0;
2887
2888         err = tracing_set_tracer(buf);
2889         if (err)
2890                 return err;
2891
2892         *ppos += ret;
2893
2894         return ret;
2895 }
2896
2897 static ssize_t
2898 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2899                      size_t cnt, loff_t *ppos)
2900 {
2901         unsigned long *ptr = filp->private_data;
2902         char buf[64];
2903         int r;
2904
2905         r = snprintf(buf, sizeof(buf), "%ld\n",
2906                      *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2907         if (r > sizeof(buf))
2908                 r = sizeof(buf);
2909         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2910 }
2911
2912 static ssize_t
2913 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2914                       size_t cnt, loff_t *ppos)
2915 {
2916         unsigned long *ptr = filp->private_data;
2917         char buf[64];
2918         unsigned long val;
2919         int ret;
2920
2921         if (cnt >= sizeof(buf))
2922                 return -EINVAL;
2923
2924         if (copy_from_user(&buf, ubuf, cnt))
2925                 return -EFAULT;
2926
2927         buf[cnt] = 0;
2928
2929         ret = strict_strtoul(buf, 10, &val);
2930         if (ret < 0)
2931                 return ret;
2932
2933         *ptr = val * 1000;
2934
2935         return cnt;
2936 }
2937
2938 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2939 {
2940         long cpu_file = (long) inode->i_private;
2941         struct trace_iterator *iter;
2942         int ret = 0;
2943
2944         if (tracing_disabled)
2945                 return -ENODEV;
2946
2947         mutex_lock(&trace_types_lock);
2948
2949         /* create a buffer to store the information to pass to userspace */
2950         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2951         if (!iter) {
2952                 ret = -ENOMEM;
2953                 goto out;
2954         }
2955
2956         /*
2957          * We make a copy of the current tracer to avoid concurrent
2958          * changes on it while we are reading.
2959          */
2960         iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
2961         if (!iter->trace) {
2962                 ret = -ENOMEM;
2963                 goto fail;
2964         }
2965         if (current_trace)
2966                 *iter->trace = *current_trace;
2967
2968         if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
2969                 ret = -ENOMEM;
2970                 goto fail;
2971         }
2972
2973         /* trace pipe does not show start of buffer */
2974         cpumask_setall(iter->started);
2975
2976         if (trace_flags & TRACE_ITER_LATENCY_FMT)
2977                 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2978
2979         iter->cpu_file = cpu_file;
2980         iter->tr = &global_trace;
2981         mutex_init(&iter->mutex);
2982         filp->private_data = iter;
2983
2984         if (iter->trace->pipe_open)
2985                 iter->trace->pipe_open(iter);
2986
2987 out:
2988         mutex_unlock(&trace_types_lock);
2989         return ret;
2990
2991 fail:
2992         kfree(iter->trace);
2993         kfree(iter);
2994         mutex_unlock(&trace_types_lock);
2995         return ret;
2996 }
2997
2998 static int tracing_release_pipe(struct inode *inode, struct file *file)
2999 {
3000         struct trace_iterator *iter = file->private_data;
3001
3002         mutex_lock(&trace_types_lock);
3003
3004         if (iter->trace->pipe_close)
3005                 iter->trace->pipe_close(iter);
3006
3007         mutex_unlock(&trace_types_lock);
3008
3009         free_cpumask_var(iter->started);
3010         mutex_destroy(&iter->mutex);
3011         kfree(iter->trace);
3012         kfree(iter);
3013
3014         return 0;
3015 }
3016
3017 static unsigned int
3018 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3019 {
3020         struct trace_iterator *iter = filp->private_data;
3021
3022         if (trace_flags & TRACE_ITER_BLOCK) {
3023                 /*
3024                  * Always select as readable when in blocking mode
3025                  */
3026                 return POLLIN | POLLRDNORM;
3027         } else {
3028                 if (!trace_empty(iter))
3029                         return POLLIN | POLLRDNORM;
3030                 poll_wait(filp, &trace_wait, poll_table);
3031                 if (!trace_empty(iter))
3032                         return POLLIN | POLLRDNORM;
3033
3034                 return 0;
3035         }
3036 }
3037
3038
3039 void default_wait_pipe(struct trace_iterator *iter)
3040 {
3041         DEFINE_WAIT(wait);
3042
3043         prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
3044
3045         if (trace_empty(iter))
3046                 schedule();
3047
3048         finish_wait(&trace_wait, &wait);
3049 }
3050
3051 /*
3052  * This is a make-shift waitqueue.
3053  * A tracer might use this callback on some rare cases:
3054  *
3055  *  1) the current tracer might hold the runqueue lock when it wakes up
3056  *     a reader, hence a deadlock (sched, function, and function graph tracers)
3057  *  2) the function tracers, trace all functions, we don't want
3058  *     the overhead of calling wake_up and friends
3059  *     (and tracing them too)
3060  *
3061  *     Anyway, this is really very primitive wakeup.
3062  */
3063 void poll_wait_pipe(struct trace_iterator *iter)
3064 {
3065         set_current_state(TASK_INTERRUPTIBLE);
3066         /* sleep for 100 msecs, and try again. */
3067         schedule_timeout(HZ / 10);
3068 }
3069
3070 /* Must be called with trace_types_lock mutex held. */
3071 static int tracing_wait_pipe(struct file *filp)
3072 {
3073         struct trace_iterator *iter = filp->private_data;
3074
3075         while (trace_empty(iter)) {
3076
3077                 if ((filp->f_flags & O_NONBLOCK)) {
3078                         return -EAGAIN;
3079                 }
3080
3081                 mutex_unlock(&iter->mutex);
3082
3083                 iter->trace->wait_pipe(iter);
3084
3085                 mutex_lock(&iter->mutex);
3086
3087                 if (signal_pending(current))
3088                         return -EINTR;
3089
3090                 /*
3091                  * We block until we read something and tracing is disabled.
3092                  * We still block if tracing is disabled, but we have never
3093                  * read anything. This allows a user to cat this file, and
3094                  * then enable tracing. But after we have read something,
3095                  * we give an EOF when tracing is again disabled.
3096                  *
3097                  * iter->pos will be 0 if we haven't read anything.
3098                  */
3099                 if (!tracer_enabled && iter->pos)
3100                         break;
3101         }
3102
3103         return 1;
3104 }
3105
3106 /*
3107  * Consumer reader.
3108  */
3109 static ssize_t
3110 tracing_read_pipe(struct file *filp, char __user *ubuf,
3111                   size_t cnt, loff_t *ppos)
3112 {
3113         struct trace_iterator *iter = filp->private_data;
3114         static struct tracer *old_tracer;
3115         ssize_t sret;
3116
3117         /* return any leftover data */
3118         sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3119         if (sret != -EBUSY)
3120                 return sret;
3121
3122         trace_seq_init(&iter->seq);
3123
3124         /* copy the tracer to avoid using a global lock all around */
3125         mutex_lock(&trace_types_lock);
3126         if (unlikely(old_tracer != current_trace && current_trace)) {
3127                 old_tracer = current_trace;
3128                 *iter->trace = *current_trace;
3129         }
3130         mutex_unlock(&trace_types_lock);
3131
3132         /*
3133          * Avoid more than one consumer on a single file descriptor
3134          * This is just a matter of traces coherency, the ring buffer itself
3135          * is protected.
3136          */
3137         mutex_lock(&iter->mutex);
3138         if (iter->trace->read) {
3139                 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3140                 if (sret)
3141                         goto out;
3142         }
3143
3144 waitagain:
3145         sret = tracing_wait_pipe(filp);
3146         if (sret <= 0)
3147                 goto out;
3148
3149         /* stop when tracing is finished */
3150         if (trace_empty(iter)) {
3151                 sret = 0;
3152                 goto out;
3153         }
3154
3155         if (cnt >= PAGE_SIZE)
3156                 cnt = PAGE_SIZE - 1;
3157
3158         /* reset all but tr, trace, and overruns */
3159         memset(&iter->seq, 0,
3160                sizeof(struct trace_iterator) -
3161                offsetof(struct trace_iterator, seq));
3162         iter->pos = -1;
3163
3164         trace_event_read_lock();
3165         trace_access_lock(iter->cpu_file);
3166         while (find_next_entry_inc(iter) != NULL) {
3167                 enum print_line_t ret;
3168                 int len = iter->seq.len;
3169
3170                 ret = print_trace_line(iter);
3171                 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3172                         /* don't print partial lines */
3173                         iter->seq.len = len;
3174                         break;
3175                 }
3176                 if (ret != TRACE_TYPE_NO_CONSUME)
3177                         trace_consume(iter);
3178
3179                 if (iter->seq.len >= cnt)
3180                         break;
3181         }
3182         trace_access_unlock(iter->cpu_file);
3183         trace_event_read_unlock();
3184
3185         /* Now copy what we have to the user */
3186         sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3187         if (iter->seq.readpos >= iter->seq.len)
3188                 trace_seq_init(&iter->seq);
3189
3190         /*
3191          * If there was nothing to send to user, inspite of consuming trace
3192          * entries, go back to wait for more entries.
3193          */
3194         if (sret == -EBUSY)
3195                 goto waitagain;
3196
3197 out:
3198         mutex_unlock(&iter->mutex);
3199
3200         return sret;
3201 }
3202
3203 static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
3204                                      struct pipe_buffer *buf)
3205 {
3206         __free_page(buf->page);
3207 }
3208
3209 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
3210                                      unsigned int idx)
3211 {
3212         __free_page(spd->pages[idx]);
3213 }
3214
3215 static const struct pipe_buf_operations tracing_pipe_buf_ops = {
3216         .can_merge              = 0,
3217         .map                    = generic_pipe_buf_map,
3218         .unmap                  = generic_pipe_buf_unmap,
3219         .confirm                = generic_pipe_buf_confirm,
3220         .release                = tracing_pipe_buf_release,
3221         .steal                  = generic_pipe_buf_steal,
3222         .get                    = generic_pipe_buf_get,
3223 };
3224
3225 static size_t
3226 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
3227 {
3228         size_t count;
3229         int ret;
3230
3231         /* Seq buffer is page-sized, exactly what we need. */
3232         for (;;) {
3233                 count = iter->seq.len;
3234                 ret = print_trace_line(iter);
3235                 count = iter->seq.len - count;
3236                 if (rem < count) {
3237                         rem = 0;
3238                         iter->seq.len -= count;
3239                         break;
3240                 }
3241                 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3242                         iter->seq.len -= count;
3243                         break;
3244                 }
3245
3246                 if (ret != TRACE_TYPE_NO_CONSUME)
3247                         trace_consume(iter);
3248                 rem -= count;
3249                 if (!find_next_entry_inc(iter)) {
3250                         rem = 0;
3251                         iter->ent = NULL;
3252                         break;
3253                 }
3254         }
3255
3256         return rem;
3257 }
3258
3259 static ssize_t tracing_splice_read_pipe(struct file *filp,
3260                                         loff_t *ppos,
3261                                         struct pipe_inode_info *pipe,
3262                                         size_t len,
3263                                         unsigned int flags)
3264 {
3265         struct page *pages[PIPE_BUFFERS];
3266         struct partial_page partial[PIPE_BUFFERS];
3267         struct trace_iterator *iter = filp->private_data;
3268         struct splice_pipe_desc spd = {
3269                 .pages          = pages,
3270                 .partial        = partial,
3271                 .nr_pages       = 0, /* This gets updated below. */
3272                 .flags          = flags,
3273                 .ops            = &tracing_pipe_buf_ops,
3274                 .spd_release    = tracing_spd_release_pipe,
3275         };
3276         static struct tracer *old_tracer;
3277         ssize_t ret;
3278         size_t rem;
3279         unsigned int i;
3280
3281         /* copy the tracer to avoid using a global lock all around */
3282         mutex_lock(&trace_types_lock);
3283         if (unlikely(old_tracer != current_trace && current_trace)) {
3284                 old_tracer = current_trace;
3285                 *iter->trace = *current_trace;
3286         }
3287         mutex_unlock(&trace_types_lock);
3288
3289         mutex_lock(&iter->mutex);
3290
3291         if (iter->trace->splice_read) {
3292                 ret = iter->trace->splice_read(iter, filp,
3293                                                ppos, pipe, len, flags);
3294                 if (ret)
3295                         goto out_err;
3296         }
3297
3298         ret = tracing_wait_pipe(filp);
3299         if (ret <= 0)
3300                 goto out_err;
3301
3302         if (!iter->ent && !find_next_entry_inc(iter)) {
3303                 ret = -EFAULT;
3304                 goto out_err;
3305         }
3306
3307         trace_event_read_lock();
3308         trace_access_lock(iter->cpu_file);
3309
3310         /* Fill as many pages as possible. */
3311         for (i = 0, rem = len; i < PIPE_BUFFERS && rem; i++) {
3312                 pages[i] = alloc_page(GFP_KERNEL);
3313                 if (!pages[i])
3314                         break;
3315
3316                 rem = tracing_fill_pipe_page(rem, iter);
3317
3318                 /* Copy the data into the page, so we can start over. */
3319                 ret = trace_seq_to_buffer(&iter->seq,
3320                                           page_address(pages[i]),
3321                                           iter->seq.len);
3322                 if (ret < 0) {
3323                         __free_page(pages[i]);
3324                         break;
3325                 }
3326                 partial[i].offset = 0;
3327                 partial[i].len = iter->seq.len;
3328
3329                 trace_seq_init(&iter->seq);
3330         }
3331
3332         trace_access_unlock(iter->cpu_file);
3333         trace_event_read_unlock();
3334         mutex_unlock(&iter->mutex);
3335
3336         spd.nr_pages = i;
3337
3338         return splice_to_pipe(pipe, &spd);
3339
3340 out_err:
3341         mutex_unlock(&iter->mutex);
3342
3343         return ret;
3344 }
3345
3346 static ssize_t
3347 tracing_entries_read(struct file *filp, char __user *ubuf,
3348                      size_t cnt, loff_t *ppos)
3349 {
3350         struct trace_array *tr = filp->private_data;
3351         char buf[96];
3352         int r;
3353
3354         mutex_lock(&trace_types_lock);
3355         if (!ring_buffer_expanded)
3356                 r = sprintf(buf, "%lu (expanded: %lu)\n",
3357                             tr->entries >> 10,
3358                             trace_buf_size >> 10);
3359         else
3360                 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3361         mutex_unlock(&trace_types_lock);
3362
3363         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3364 }
3365
3366 static ssize_t
3367 tracing_entries_write(struct file *filp, const char __user *ubuf,
3368                       size_t cnt, loff_t *ppos)
3369 {
3370         unsigned long val;
3371         char buf[64];
3372         int ret, cpu;
3373
3374         if (cnt >= sizeof(buf))
3375                 return -EINVAL;
3376
3377         if (copy_from_user(&buf, ubuf, cnt))
3378                 return -EFAULT;
3379
3380         buf[cnt] = 0;
3381
3382         ret = strict_strtoul(buf, 10, &val);
3383         if (ret < 0)
3384                 return ret;
3385
3386         /* must have at least 1 entry */
3387         if (!val)
3388                 return -EINVAL;
3389
3390         mutex_lock(&trace_types_lock);
3391
3392         tracing_stop();
3393
3394         /* disable all cpu buffers */
3395         for_each_tracing_cpu(cpu) {
3396                 if (global_trace.data[cpu])
3397                         atomic_inc(&global_trace.data[cpu]->disabled);
3398                 if (max_tr.data[cpu])
3399                         atomic_inc(&max_tr.data[cpu]->disabled);
3400         }
3401
3402         /* value is in KB */
3403         val <<= 10;
3404
3405         if (val != global_trace.entries) {
3406                 ret = tracing_resize_ring_buffer(val);
3407                 if (ret < 0) {
3408                         cnt = ret;
3409                         goto out;
3410                 }
3411         }
3412
3413         *ppos += cnt;
3414
3415         /* If check pages failed, return ENOMEM */
3416         if (tracing_disabled)
3417                 cnt = -ENOMEM;
3418  out:
3419         for_each_tracing_cpu(cpu) {
3420                 if (global_trace.data[cpu])
3421                         atomic_dec(&global_trace.data[cpu]->disabled);
3422                 if (max_tr.data[cpu])
3423                         atomic_dec(&max_tr.data[cpu]->disabled);
3424         }
3425
3426         tracing_start();
3427         max_tr.entries = global_trace.entries;
3428         mutex_unlock(&trace_types_lock);
3429
3430         return cnt;
3431 }
3432
3433 static int mark_printk(const char *fmt, ...)
3434 {
3435         int ret;
3436         va_list args;
3437         va_start(args, fmt);
3438         ret = trace_vprintk(0, fmt, args);
3439         va_end(args);
3440         return ret;
3441 }
3442
3443 static ssize_t
3444 tracing_mark_write(struct file *filp, const char __user *ubuf,
3445                                         size_t cnt, loff_t *fpos)
3446 {
3447         char *buf;
3448
3449         if (tracing_disabled)
3450                 return -EINVAL;
3451
3452         if (cnt > TRACE_BUF_SIZE)
3453                 cnt = TRACE_BUF_SIZE;
3454
3455         buf = kmalloc(cnt + 2, GFP_KERNEL);
3456         if (buf == NULL)
3457                 return -ENOMEM;
3458
3459         if (copy_from_user(buf, ubuf, cnt)) {
3460                 kfree(buf);
3461                 return -EFAULT;
3462         }
3463         if (buf[cnt-1] != '\n') {
3464                 buf[cnt] = '\n';
3465                 buf[cnt+1] = '\0';
3466         } else
3467                 buf[cnt] = '\0';
3468
3469         cnt = mark_printk("%s", buf);
3470         kfree(buf);
3471         *fpos += cnt;
3472
3473         return cnt;
3474 }
3475
3476 static int tracing_clock_show(struct seq_file *m, void *v)
3477 {
3478         int i;
3479
3480         for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
3481                 seq_printf(m,
3482                         "%s%s%s%s", i ? " " : "",
3483                         i == trace_clock_id ? "[" : "", trace_clocks[i].name,
3484                         i == trace_clock_id ? "]" : "");
3485         seq_putc(m, '\n');
3486
3487         return 0;
3488 }
3489
3490 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
3491                                    size_t cnt, loff_t *fpos)
3492 {
3493         char buf[64];
3494         const char *clockstr;
3495         int i;
3496
3497         if (cnt >= sizeof(buf))
3498                 return -EINVAL;
3499
3500         if (copy_from_user(&buf, ubuf, cnt))
3501                 return -EFAULT;
3502
3503         buf[cnt] = 0;
3504
3505         clockstr = strstrip(buf);
3506
3507         for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
3508                 if (strcmp(trace_clocks[i].name, clockstr) == 0)
3509                         break;
3510         }
3511         if (i == ARRAY_SIZE(trace_clocks))
3512                 return -EINVAL;
3513
3514         trace_clock_id = i;
3515
3516         mutex_lock(&trace_types_lock);
3517
3518         ring_buffer_set_clock(global_trace.buffer, trace_clocks[i].func);
3519         if (max_tr.buffer)
3520                 ring_buffer_set_clock(max_tr.buffer, trace_clocks[i].func);
3521
3522         mutex_unlock(&trace_types_lock);
3523
3524         *fpos += cnt;
3525
3526         return cnt;
3527 }
3528
3529 static int tracing_clock_open(struct inode *inode, struct file *file)
3530 {
3531         if (tracing_disabled)
3532                 return -ENODEV;
3533         return single_open(file, tracing_clock_show, NULL);
3534 }
3535
3536 static const struct file_operations tracing_max_lat_fops = {
3537         .open           = tracing_open_generic,
3538         .read           = tracing_max_lat_read,
3539         .write          = tracing_max_lat_write,
3540 };
3541
3542 static const struct file_operations tracing_ctrl_fops = {
3543         .open           = tracing_open_generic,
3544         .read           = tracing_ctrl_read,
3545         .write          = tracing_ctrl_write,
3546 };
3547
3548 static const struct file_operations set_tracer_fops = {
3549         .open           = tracing_open_generic,
3550         .read           = tracing_set_trace_read,
3551         .write          = tracing_set_trace_write,
3552 };
3553
3554 static const struct file_operations tracing_pipe_fops = {
3555         .open           = tracing_open_pipe,
3556         .poll           = tracing_poll_pipe,
3557         .read           = tracing_read_pipe,
3558         .splice_read    = tracing_splice_read_pipe,
3559         .release        = tracing_release_pipe,
3560 };
3561
3562 static const struct file_operations tracing_entries_fops = {
3563         .open           = tracing_open_generic,
3564         .read           = tracing_entries_read,
3565         .write          = tracing_entries_write,
3566 };
3567
3568 static const struct file_operations tracing_mark_fops = {
3569         .open           = tracing_open_generic,
3570         .write          = tracing_mark_write,
3571 };
3572
3573 static const struct file_operations trace_clock_fops = {
3574         .open           = tracing_clock_open,
3575         .read           = seq_read,
3576         .llseek         = seq_lseek,
3577         .release        = single_release,
3578         .write          = tracing_clock_write,
3579 };
3580
3581 struct ftrace_buffer_info {
3582         struct trace_array      *tr;
3583         void                    *spare;
3584         int                     cpu;
3585         unsigned int            read;
3586 };
3587
3588 static int tracing_buffers_open(struct inode *inode, struct file *filp)
3589 {
3590         int cpu = (int)(long)inode->i_private;
3591         struct ftrace_buffer_info *info;
3592
3593         if (tracing_disabled)
3594                 return -ENODEV;
3595
3596         info = kzalloc(sizeof(*info), GFP_KERNEL);
3597         if (!info)
3598                 return -ENOMEM;
3599
3600         info->tr        = &global_trace;
3601         info->cpu       = cpu;
3602         info->spare     = NULL;
3603         /* Force reading ring buffer for first read */
3604         info->read      = (unsigned int)-1;
3605
3606         filp->private_data = info;
3607
3608         return nonseekable_open(inode, filp);
3609 }
3610
3611 static ssize_t
3612 tracing_buffers_read(struct file *filp, char __user *ubuf,
3613                      size_t count, loff_t *ppos)
3614 {
3615         struct ftrace_buffer_info *info = filp->private_data;
3616         unsigned int pos;
3617         ssize_t ret;
3618         size_t size;
3619
3620         if (!count)
3621                 return 0;
3622
3623         if (!info->spare)
3624                 info->spare = ring_buffer_alloc_read_page(info->tr->buffer);
3625         if (!info->spare)
3626                 return -ENOMEM;
3627
3628         /* Do we have previous read data to read? */
3629         if (info->read < PAGE_SIZE)
3630                 goto read;
3631
3632         info->read = 0;
3633
3634         trace_access_lock(info->cpu);
3635         ret = ring_buffer_read_page(info->tr->buffer,
3636                                     &info->spare,
3637                                     count,
3638                                     info->cpu, 0);
3639         trace_access_unlock(info->cpu);
3640         if (ret < 0)
3641                 return 0;
3642
3643         pos = ring_buffer_page_len(info->spare);
3644
3645         if (pos < PAGE_SIZE)
3646                 memset(info->spare + pos, 0, PAGE_SIZE - pos);
3647
3648 read:
3649         size = PAGE_SIZE - info->read;
3650         if (size > count)
3651                 size = count;
3652
3653         ret = copy_to_user(ubuf, info->spare + info->read, size);
3654         if (ret == size)
3655                 return -EFAULT;
3656         size -= ret;
3657
3658         *ppos += size;
3659         info->read += size;
3660
3661         return size;
3662 }
3663
3664 static int tracing_buffers_release(struct inode *inode, struct file *file)
3665 {
3666         struct ftrace_buffer_info *info = file->private_data;
3667
3668         if (info->spare)
3669                 ring_buffer_free_read_page(info->tr->buffer, info->spare);
3670         kfree(info);
3671
3672         return 0;
3673 }
3674
3675 struct buffer_ref {
3676         struct ring_buffer      *buffer;
3677         void                    *page;
3678         int                     ref;
3679 };
3680
3681 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
3682                                     struct pipe_buffer *buf)
3683 {
3684         struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3685
3686         if (--ref->ref)
3687                 return;
3688
3689         ring_buffer_free_read_page(ref->buffer, ref->page);
3690         kfree(ref);
3691         buf->private = 0;
3692 }
3693
3694 static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
3695                                  struct pipe_buffer *buf)
3696 {
3697         return 1;
3698 }
3699
3700 static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
3701                                 struct pipe_buffer *buf)
3702 {
3703         struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3704
3705         ref->ref++;
3706 }
3707
3708 /* Pipe buffer operations for a buffer. */
3709 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
3710         .can_merge              = 0,
3711         .map                    = generic_pipe_buf_map,
3712         .unmap                  = generic_pipe_buf_unmap,
3713         .confirm                = generic_pipe_buf_confirm,
3714         .release                = buffer_pipe_buf_release,
3715         .steal                  = buffer_pipe_buf_steal,
3716         .get                    = buffer_pipe_buf_get,
3717 };
3718
3719 /*
3720  * Callback from splice_to_pipe(), if we need to release some pages
3721  * at the end of the spd in case we error'ed out in filling the pipe.
3722  */
3723 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
3724 {
3725         struct buffer_ref *ref =
3726                 (struct buffer_ref *)spd->partial[i].private;
3727
3728         if (--ref->ref)
3729                 return;
3730
3731         ring_buffer_free_read_page(ref->buffer, ref->page);
3732         kfree(ref);
3733         spd->partial[i].private = 0;
3734 }
3735
3736 static ssize_t
3737 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
3738                             struct pipe_inode_info *pipe, size_t len,
3739                             unsigned int flags)
3740 {
3741         struct ftrace_buffer_info *info = file->private_data;
3742         struct partial_page partial[PIPE_BUFFERS];
3743         struct page *pages[PIPE_BUFFERS];
3744         struct splice_pipe_desc spd = {
3745                 .pages          = pages,
3746                 .partial        = partial,
3747                 .flags          = flags,
3748                 .ops            = &buffer_pipe_buf_ops,
3749                 .spd_release    = buffer_spd_release,
3750         };
3751         struct buffer_ref *ref;
3752         int entries, size, i;
3753         size_t ret;
3754
3755         if (*ppos & (PAGE_SIZE - 1)) {
3756                 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
3757                 return -EINVAL;
3758         }
3759
3760         if (len & (PAGE_SIZE - 1)) {
3761                 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
3762                 if (len < PAGE_SIZE)
3763                         return -EINVAL;
3764                 len &= PAGE_MASK;
3765         }
3766
3767         trace_access_lock(info->cpu);
3768         entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
3769
3770         for (i = 0; i < PIPE_BUFFERS && len && entries; i++, len -= PAGE_SIZE) {
3771                 struct page *page;
3772                 int r;
3773
3774                 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
3775                 if (!ref)
3776                         break;
3777
3778                 ref->ref = 1;
3779                 ref->buffer = info->tr->buffer;
3780                 ref->page = ring_buffer_alloc_read_page(ref->buffer);
3781                 if (!ref->page) {
3782                         kfree(ref);
3783                         break;
3784                 }
3785
3786                 r = ring_buffer_read_page(ref->buffer, &ref->page,
3787                                           len, info->cpu, 1);
3788                 if (r < 0) {
3789                         ring_buffer_free_read_page(ref->buffer,
3790                                                    ref->page);
3791                         kfree(ref);
3792                         break;
3793                 }
3794
3795                 /*
3796                  * zero out any left over data, this is going to
3797                  * user land.
3798                  */
3799                 size = ring_buffer_page_len(ref->page);
3800                 if (size < PAGE_SIZE)
3801                         memset(ref->page + size, 0, PAGE_SIZE - size);
3802
3803                 page = virt_to_page(ref->page);
3804
3805                 spd.pages[i] = page;
3806                 spd.partial[i].len = PAGE_SIZE;
3807                 spd.partial[i].offset = 0;
3808                 spd.partial[i].private = (unsigned long)ref;
3809                 spd.nr_pages++;
3810                 *ppos += PAGE_SIZE;
3811
3812                 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
3813         }
3814
3815         trace_access_unlock(info->cpu);
3816         spd.nr_pages = i;
3817
3818         /* did we read anything? */
3819         if (!spd.nr_pages) {
3820                 if (flags & SPLICE_F_NONBLOCK)
3821                         ret = -EAGAIN;
3822                 else
3823                         ret = 0;
3824                 /* TODO: block */
3825                 return ret;
3826         }
3827
3828         ret = splice_to_pipe(pipe, &spd);
3829
3830         return ret;
3831 }
3832
3833 static const struct file_operations tracing_buffers_fops = {
3834         .open           = tracing_buffers_open,
3835         .read           = tracing_buffers_read,
3836         .release        = tracing_buffers_release,
3837         .splice_read    = tracing_buffers_splice_read,
3838         .llseek         = no_llseek,
3839 };
3840
3841 static ssize_t
3842 tracing_stats_read(struct file *filp, char __user *ubuf,
3843                    size_t count, loff_t *ppos)
3844 {
3845         unsigned long cpu = (unsigned long)filp->private_data;
3846         struct trace_array *tr = &global_trace;
3847         struct trace_seq *s;
3848         unsigned long cnt;
3849
3850         s = kmalloc(sizeof(*s), GFP_KERNEL);
3851         if (!s)
3852                 return -ENOMEM;
3853
3854         trace_seq_init(s);
3855
3856         cnt = ring_buffer_entries_cpu(tr->buffer, cpu);
3857         trace_seq_printf(s, "entries: %ld\n", cnt);
3858
3859         cnt = ring_buffer_overrun_cpu(tr->buffer, cpu);
3860         trace_seq_printf(s, "overrun: %ld\n", cnt);
3861
3862         cnt = ring_buffer_commit_overrun_cpu(tr->buffer, cpu);
3863         trace_seq_printf(s, "commit overrun: %ld\n", cnt);
3864
3865         count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
3866
3867         kfree(s);
3868
3869         return count;
3870 }
3871
3872 static const struct file_operations tracing_stats_fops = {
3873         .open           = tracing_open_generic,
3874         .read           = tracing_stats_read,
3875 };
3876
3877 #ifdef CONFIG_DYNAMIC_FTRACE
3878
3879 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
3880 {
3881         return 0;
3882 }
3883
3884 static ssize_t
3885 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
3886                   size_t cnt, loff_t *ppos)
3887 {
3888         static char ftrace_dyn_info_buffer[1024];
3889         static DEFINE_MUTEX(dyn_info_mutex);
3890         unsigned long *p = filp->private_data;
3891         char *buf = ftrace_dyn_info_buffer;
3892         int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
3893         int r;
3894
3895         mutex_lock(&dyn_info_mutex);
3896         r = sprintf(buf, "%ld ", *p);
3897
3898         r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
3899         buf[r++] = '\n';
3900
3901         r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3902
3903         mutex_unlock(&dyn_info_mutex);
3904
3905         return r;
3906 }
3907
3908 static const struct file_operations tracing_dyn_info_fops = {
3909         .open           = tracing_open_generic,
3910         .read           = tracing_read_dyn_info,
3911 };
3912 #endif
3913
3914 static struct dentry *d_tracer;
3915
3916 struct dentry *tracing_init_dentry(void)
3917 {
3918         static int once;
3919
3920         if (d_tracer)
3921                 return d_tracer;
3922
3923         if (!debugfs_initialized())
3924                 return NULL;
3925
3926         d_tracer = debugfs_create_dir("tracing", NULL);
3927
3928         if (!d_tracer && !once) {
3929                 once = 1;
3930                 pr_warning("Could not create debugfs directory 'tracing'\n");
3931                 return NULL;
3932         }
3933
3934         return d_tracer;
3935 }
3936
3937 static struct dentry *d_percpu;
3938
3939 struct dentry *tracing_dentry_percpu(void)
3940 {
3941         static int once;
3942         struct dentry *d_tracer;
3943
3944         if (d_percpu)
3945                 return d_percpu;
3946
3947         d_tracer = tracing_init_dentry();
3948
3949         if (!d_tracer)
3950                 return NULL;
3951
3952         d_percpu = debugfs_create_dir("per_cpu", d_tracer);
3953
3954         if (!d_percpu && !once) {
3955                 once = 1;
3956                 pr_warning("Could not create debugfs directory 'per_cpu'\n");
3957                 return NULL;
3958         }
3959
3960         return d_percpu;
3961 }
3962
3963 static void tracing_init_debugfs_percpu(long cpu)
3964 {
3965         struct dentry *d_percpu = tracing_dentry_percpu();
3966         struct dentry *d_cpu;
3967         /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
3968         char cpu_dir[7];
3969
3970         if (cpu > 999 || cpu < 0)
3971                 return;
3972
3973         sprintf(cpu_dir, "cpu%ld", cpu);
3974         d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
3975         if (!d_cpu) {
3976                 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
3977                 return;
3978         }
3979
3980         /* per cpu trace_pipe */
3981         trace_create_file("trace_pipe", 0444, d_cpu,
3982                         (void *) cpu, &tracing_pipe_fops);
3983
3984         /* per cpu trace */
3985         trace_create_file("trace", 0644, d_cpu,
3986                         (void *) cpu, &tracing_fops);
3987
3988         trace_create_file("trace_pipe_raw", 0444, d_cpu,
3989                         (void *) cpu, &tracing_buffers_fops);
3990
3991         trace_create_file("stats", 0444, d_cpu,
3992                         (void *) cpu, &tracing_stats_fops);
3993 }
3994
3995 #ifdef CONFIG_FTRACE_SELFTEST
3996 /* Let selftest have access to static functions in this file */
3997 #include "trace_selftest.c"
3998 #endif
3999
4000 struct trace_option_dentry {
4001         struct tracer_opt               *opt;
4002         struct tracer_flags             *flags;
4003         struct dentry                   *entry;
4004 };
4005
4006 static ssize_t
4007 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
4008                         loff_t *ppos)
4009 {
4010         struct trace_option_dentry *topt = filp->private_data;
4011         char *buf;
4012
4013         if (topt->flags->val & topt->opt->bit)
4014                 buf = "1\n";
4015         else
4016                 buf = "0\n";
4017
4018         return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4019 }
4020
4021 static ssize_t
4022 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
4023                          loff_t *ppos)
4024 {
4025         struct trace_option_dentry *topt = filp->private_data;
4026         unsigned long val;
4027         char buf[64];
4028         int ret;
4029
4030         if (cnt >= sizeof(buf))
4031                 return -EINVAL;
4032
4033         if (copy_from_user(&buf, ubuf, cnt))
4034                 return -EFAULT;
4035
4036         buf[cnt] = 0;
4037
4038         ret = strict_strtoul(buf, 10, &val);
4039         if (ret < 0)
4040                 return ret;
4041
4042         if (val != 0 && val != 1)
4043                 return -EINVAL;
4044
4045         if (!!(topt->flags->val & topt->opt->bit) != val) {
4046                 mutex_lock(&trace_types_lock);
4047                 ret = __set_tracer_option(current_trace, topt->flags,
4048                                           topt->opt, !val);
4049                 mutex_unlock(&trace_types_lock);
4050                 if (ret)
4051                         return ret;
4052         }
4053
4054         *ppos += cnt;
4055
4056         return cnt;
4057 }
4058
4059
4060 static const struct file_operations trace_options_fops = {
4061         .open = tracing_open_generic,
4062         .read = trace_options_read,
4063         .write = trace_options_write,
4064 };
4065
4066 static ssize_t
4067 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
4068                         loff_t *ppos)
4069 {
4070         long index = (long)filp->private_data;
4071         char *buf;
4072
4073         if (trace_flags & (1 << index))
4074                 buf = "1\n";
4075         else
4076                 buf = "0\n";
4077
4078         return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4079 }
4080
4081 static ssize_t
4082 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
4083                          loff_t *ppos)
4084 {
4085         long index = (long)filp->private_data;
4086         char buf[64];
4087         unsigned long val;
4088         int ret;
4089
4090         if (cnt >= sizeof(buf))
4091                 return -EINVAL;
4092
4093         if (copy_from_user(&buf, ubuf, cnt))
4094                 return -EFAULT;
4095
4096         buf[cnt] = 0;
4097
4098         ret = strict_strtoul(buf, 10, &val);
4099         if (ret < 0)
4100                 return ret;
4101
4102         if (val != 0 && val != 1)
4103                 return -EINVAL;
4104         set_tracer_flags(1 << index, val);
4105
4106         *ppos += cnt;
4107
4108         return cnt;
4109 }
4110
4111 static const struct file_operations trace_options_core_fops = {
4112         .open = tracing_open_generic,
4113         .read = trace_options_core_read,
4114         .write = trace_options_core_write,
4115 };
4116
4117 struct dentry *trace_create_file(const char *name,
4118                                  mode_t mode,
4119                                  struct dentry *parent,
4120                                  void *data,
4121                                  const struct file_operations *fops)
4122 {
4123         struct dentry *ret;
4124
4125         ret = debugfs_create_file(name, mode, parent, data, fops);
4126         if (!ret)
4127                 pr_warning("Could not create debugfs '%s' entry\n", name);
4128
4129         return ret;
4130 }
4131
4132
4133 static struct dentry *trace_options_init_dentry(void)
4134 {
4135         struct dentry *d_tracer;
4136         static struct dentry *t_options;
4137
4138         if (t_options)
4139                 return t_options;
4140
4141         d_tracer = tracing_init_dentry();
4142         if (!d_tracer)
4143                 return NULL;
4144
4145         t_options = debugfs_create_dir("options", d_tracer);
4146         if (!t_options) {
4147                 pr_warning("Could not create debugfs directory 'options'\n");
4148                 return NULL;
4149         }
4150
4151         return t_options;
4152 }
4153
4154 static void
4155 create_trace_option_file(struct trace_option_dentry *topt,
4156                          struct tracer_flags *flags,
4157                          struct tracer_opt *opt)
4158 {
4159         struct dentry *t_options;
4160
4161         t_options = trace_options_init_dentry();
4162         if (!t_options)
4163                 return;
4164
4165         topt->flags = flags;
4166         topt->opt = opt;
4167
4168         topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
4169                                     &trace_options_fops);
4170
4171 }
4172
4173 static struct trace_option_dentry *
4174 create_trace_option_files(struct tracer *tracer)
4175 {
4176         struct trace_option_dentry *topts;
4177         struct tracer_flags *flags;
4178         struct tracer_opt *opts;
4179         int cnt;
4180
4181         if (!tracer)
4182                 return NULL;
4183
4184         flags = tracer->flags;
4185
4186         if (!flags || !flags->opts)
4187                 return NULL;
4188
4189         opts = flags->opts;
4190
4191         for (cnt = 0; opts[cnt].name; cnt++)
4192                 ;
4193
4194         topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
4195         if (!topts)
4196                 return NULL;
4197
4198         for (cnt = 0; opts[cnt].name; cnt++)
4199                 create_trace_option_file(&topts[cnt], flags,
4200                                          &opts[cnt]);
4201
4202         return topts;
4203 }
4204
4205 static void
4206 destroy_trace_option_files(struct trace_option_dentry *topts)
4207 {
4208         int cnt;
4209
4210         if (!topts)
4211                 return;
4212
4213         for (cnt = 0; topts[cnt].opt; cnt++) {
4214                 if (topts[cnt].entry)
4215                         debugfs_remove(topts[cnt].entry);
4216         }
4217
4218         kfree(topts);
4219 }
4220
4221 static struct dentry *
4222 create_trace_option_core_file(const char *option, long index)
4223 {
4224         struct dentry *t_options;
4225
4226         t_options = trace_options_init_dentry();
4227         if (!t_options)
4228                 return NULL;
4229
4230         return trace_create_file(option, 0644, t_options, (void *)index,
4231                                     &trace_options_core_fops);
4232 }
4233
4234 static __init void create_trace_options_dir(void)
4235 {
4236         struct dentry *t_options;
4237         int i;
4238
4239         t_options = trace_options_init_dentry();
4240         if (!t_options)
4241                 return;
4242
4243         for (i = 0; trace_options[i]; i++)
4244                 create_trace_option_core_file(trace_options[i], i);
4245 }
4246
4247 static __init int tracer_init_debugfs(void)
4248 {
4249         struct dentry *d_tracer;
4250         int cpu;
4251
4252         trace_access_lock_init();
4253
4254         d_tracer = tracing_init_dentry();
4255
4256         trace_create_file("tracing_enabled", 0644, d_tracer,
4257                         &global_trace, &tracing_ctrl_fops);
4258
4259         trace_create_file("trace_options", 0644, d_tracer,
4260                         NULL, &tracing_iter_fops);
4261
4262         trace_create_file("tracing_cpumask", 0644, d_tracer,
4263                         NULL, &tracing_cpumask_fops);
4264
4265         trace_create_file("trace", 0644, d_tracer,
4266                         (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
4267
4268         trace_create_file("available_tracers", 0444, d_tracer,
4269                         &global_trace, &show_traces_fops);
4270
4271         trace_create_file("current_tracer", 0644, d_tracer,
4272                         &global_trace, &set_tracer_fops);
4273
4274 #ifdef CONFIG_TRACER_MAX_TRACE
4275         trace_create_file("tracing_max_latency", 0644, d_tracer,
4276                         &tracing_max_latency, &tracing_max_lat_fops);
4277 #endif
4278
4279         trace_create_file("tracing_thresh", 0644, d_tracer,
4280                         &tracing_thresh, &tracing_max_lat_fops);
4281
4282         trace_create_file("README", 0444, d_tracer,
4283                         NULL, &tracing_readme_fops);
4284
4285         trace_create_file("trace_pipe", 0444, d_tracer,
4286                         (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
4287
4288         trace_create_file("buffer_size_kb", 0644, d_tracer,
4289                         &global_trace, &tracing_entries_fops);
4290
4291         trace_create_file("trace_marker", 0220, d_tracer,
4292                         NULL, &tracing_mark_fops);
4293
4294         trace_create_file("saved_cmdlines", 0444, d_tracer,
4295                         NULL, &tracing_saved_cmdlines_fops);
4296
4297         trace_create_file("trace_clock", 0644, d_tracer, NULL,
4298                           &trace_clock_fops);
4299
4300 #ifdef CONFIG_DYNAMIC_FTRACE
4301         trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
4302                         &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
4303 #endif
4304 #ifdef CONFIG_SYSPROF_TRACER
4305         init_tracer_sysprof_debugfs(d_tracer);
4306 #endif
4307
4308         create_trace_options_dir();
4309
4310         for_each_tracing_cpu(cpu)
4311                 tracing_init_debugfs_percpu(cpu);
4312
4313         return 0;
4314 }
4315
4316 static int trace_panic_handler(struct notifier_block *this,
4317                                unsigned long event, void *unused)
4318 {
4319         if (ftrace_dump_on_oops)
4320                 ftrace_dump();
4321         return NOTIFY_OK;
4322 }
4323
4324 static struct notifier_block trace_panic_notifier = {
4325         .notifier_call  = trace_panic_handler,
4326         .next           = NULL,
4327         .priority       = 150   /* priority: INT_MAX >= x >= 0 */
4328 };
4329
4330 static int trace_die_handler(struct notifier_block *self,
4331                              unsigned long val,
4332                              void *data)
4333 {
4334         switch (val) {
4335         case DIE_OOPS:
4336                 if (ftrace_dump_on_oops)
4337                         ftrace_dump();
4338                 break;
4339         default:
4340                 break;
4341         }
4342         return NOTIFY_OK;
4343 }
4344
4345 static struct notifier_block trace_die_notifier = {
4346         .notifier_call = trace_die_handler,
4347         .priority = 200
4348 };
4349
4350 /*
4351  * printk is set to max of 1024, we really don't need it that big.
4352  * Nothing should be printing 1000 characters anyway.
4353  */
4354 #define TRACE_MAX_PRINT         1000
4355
4356 /*
4357  * Define here KERN_TRACE so that we have one place to modify
4358  * it if we decide to change what log level the ftrace dump
4359  * should be at.
4360  */
4361 #define KERN_TRACE              KERN_EMERG
4362
4363 static void
4364 trace_printk_seq(struct trace_seq *s)
4365 {
4366         /* Probably should print a warning here. */
4367         if (s->len >= 1000)
4368                 s->len = 1000;
4369
4370         /* should be zero ended, but we are paranoid. */
4371         s->buffer[s->len] = 0;
4372
4373         printk(KERN_TRACE "%s", s->buffer);
4374
4375         trace_seq_init(s);
4376 }
4377
4378 static void __ftrace_dump(bool disable_tracing)
4379 {
4380         static arch_spinlock_t ftrace_dump_lock =
4381                 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
4382         /* use static because iter can be a bit big for the stack */
4383         static struct trace_iterator iter;
4384         unsigned int old_userobj;
4385         static int dump_ran;
4386         unsigned long flags;
4387         int cnt = 0, cpu;
4388
4389         /* only one dump */
4390         local_irq_save(flags);
4391         arch_spin_lock(&ftrace_dump_lock);
4392         if (dump_ran)
4393                 goto out;
4394
4395         dump_ran = 1;
4396
4397         tracing_off();
4398
4399         if (disable_tracing)
4400                 ftrace_kill();
4401
4402         for_each_tracing_cpu(cpu) {
4403                 atomic_inc(&global_trace.data[cpu]->disabled);
4404         }
4405
4406         old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
4407
4408         /* don't look at user memory in panic mode */
4409         trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
4410
4411         printk(KERN_TRACE "Dumping ftrace buffer:\n");
4412
4413         /* Simulate the iterator */
4414         iter.tr = &global_trace;
4415         iter.trace = current_trace;
4416         iter.cpu_file = TRACE_PIPE_ALL_CPU;
4417
4418         /*
4419          * We need to stop all tracing on all CPUS to read the
4420          * the next buffer. This is a bit expensive, but is
4421          * not done often. We fill all what we can read,
4422          * and then release the locks again.
4423          */
4424
4425         while (!trace_empty(&iter)) {
4426
4427                 if (!cnt)
4428                         printk(KERN_TRACE "---------------------------------\n");
4429
4430                 cnt++;
4431
4432                 /* reset all but tr, trace, and overruns */
4433                 memset(&iter.seq, 0,
4434                        sizeof(struct trace_iterator) -
4435                        offsetof(struct trace_iterator, seq));
4436                 iter.iter_flags |= TRACE_FILE_LAT_FMT;
4437                 iter.pos = -1;
4438
4439                 if (find_next_entry_inc(&iter) != NULL) {
4440                         int ret;
4441
4442                         ret = print_trace_line(&iter);
4443                         if (ret != TRACE_TYPE_NO_CONSUME)
4444                                 trace_consume(&iter);
4445                 }
4446
4447                 trace_printk_seq(&iter.seq);
4448         }
4449
4450         if (!cnt)
4451                 printk(KERN_TRACE "   (ftrace buffer empty)\n");
4452         else
4453                 printk(KERN_TRACE "---------------------------------\n");
4454
4455         /* Re-enable tracing if requested */
4456         if (!disable_tracing) {
4457                 trace_flags |= old_userobj;
4458
4459                 for_each_tracing_cpu(cpu) {
4460                         atomic_dec(&global_trace.data[cpu]->disabled);
4461                 }
4462                 tracing_on();
4463         }
4464
4465  out:
4466         arch_spin_unlock(&ftrace_dump_lock);
4467         local_irq_restore(flags);
4468 }
4469
4470 /* By default: disable tracing after the dump */
4471 void ftrace_dump(void)
4472 {
4473         __ftrace_dump(true);
4474 }
4475
4476 __init static int tracer_alloc_buffers(void)
4477 {
4478         int ring_buf_size;
4479         int i;
4480         int ret = -ENOMEM;
4481
4482         if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
4483                 goto out;
4484
4485         if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
4486                 goto out_free_buffer_mask;
4487
4488         /* To save memory, keep the ring buffer size to its minimum */
4489         if (ring_buffer_expanded)
4490                 ring_buf_size = trace_buf_size;
4491         else
4492                 ring_buf_size = 1;
4493
4494         cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
4495         cpumask_copy(tracing_cpumask, cpu_all_mask);
4496
4497         /* TODO: make the number of buffers hot pluggable with CPUS */
4498         global_trace.buffer = ring_buffer_alloc(ring_buf_size,
4499                                                    TRACE_BUFFER_FLAGS);
4500         if (!global_trace.buffer) {
4501                 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
4502                 WARN_ON(1);
4503                 goto out_free_cpumask;
4504         }
4505         global_trace.entries = ring_buffer_size(global_trace.buffer);
4506
4507
4508 #ifdef CONFIG_TRACER_MAX_TRACE
4509         max_tr.buffer = ring_buffer_alloc(ring_buf_size,
4510                                              TRACE_BUFFER_FLAGS);
4511         if (!max_tr.buffer) {
4512                 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
4513                 WARN_ON(1);
4514                 ring_buffer_free(global_trace.buffer);
4515                 goto out_free_cpumask;
4516         }
4517         max_tr.entries = ring_buffer_size(max_tr.buffer);
4518         WARN_ON(max_tr.entries != global_trace.entries);
4519 #endif
4520
4521         /* Allocate the first page for all buffers */
4522         for_each_tracing_cpu(i) {
4523                 global_trace.data[i] = &per_cpu(global_trace_cpu, i);
4524                 max_tr.data[i] = &per_cpu(max_tr_data, i);
4525         }
4526
4527         trace_init_cmdlines();
4528
4529         register_tracer(&nop_trace);
4530         current_trace = &nop_trace;
4531 #ifdef CONFIG_BOOT_TRACER
4532         register_tracer(&boot_tracer);
4533 #endif
4534         /* All seems OK, enable tracing */
4535         tracing_disabled = 0;
4536
4537         atomic_notifier_chain_register(&panic_notifier_list,
4538                                        &trace_panic_notifier);
4539
4540         register_die_notifier(&trace_die_notifier);
4541
4542         return 0;
4543
4544 out_free_cpumask:
4545         free_cpumask_var(tracing_cpumask);
4546 out_free_buffer_mask:
4547         free_cpumask_var(tracing_buffer_mask);
4548 out:
4549         return ret;
4550 }
4551
4552 __init static int clear_boot_tracer(void)
4553 {
4554         /*
4555          * The default tracer at boot buffer is an init section.
4556          * This function is called in lateinit. If we did not
4557          * find the boot tracer, then clear it out, to prevent
4558          * later registration from accessing the buffer that is
4559          * about to be freed.
4560          */
4561         if (!default_bootup_tracer)
4562                 return 0;
4563
4564         printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
4565                default_bootup_tracer);
4566         default_bootup_tracer = NULL;
4567
4568         return 0;
4569 }
4570
4571 early_initcall(tracer_alloc_buffers);
4572 fs_initcall(tracer_init_debugfs);
4573 late_initcall(clear_boot_tracer);