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