tracing: Fix incomplete locking when disabling buffered events
[platform/kernel/linux-starfive.git] / kernel / trace / trace.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * ring buffer based function tracer
4  *
5  * Copyright (C) 2007-2012 Steven Rostedt <srostedt@redhat.com>
6  * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7  *
8  * Originally taken from the RT patch by:
9  *    Arnaldo Carvalho de Melo <acme@redhat.com>
10  *
11  * Based on code from the latency_tracer, that is:
12  *  Copyright (C) 2004-2006 Ingo Molnar
13  *  Copyright (C) 2004 Nadia Yvette Chambers
14  */
15 #include <linux/ring_buffer.h>
16 #include <generated/utsrelease.h>
17 #include <linux/stacktrace.h>
18 #include <linux/writeback.h>
19 #include <linux/kallsyms.h>
20 #include <linux/security.h>
21 #include <linux/seq_file.h>
22 #include <linux/irqflags.h>
23 #include <linux/debugfs.h>
24 #include <linux/tracefs.h>
25 #include <linux/pagemap.h>
26 #include <linux/hardirq.h>
27 #include <linux/linkage.h>
28 #include <linux/uaccess.h>
29 #include <linux/vmalloc.h>
30 #include <linux/ftrace.h>
31 #include <linux/module.h>
32 #include <linux/percpu.h>
33 #include <linux/splice.h>
34 #include <linux/kdebug.h>
35 #include <linux/string.h>
36 #include <linux/mount.h>
37 #include <linux/rwsem.h>
38 #include <linux/slab.h>
39 #include <linux/ctype.h>
40 #include <linux/init.h>
41 #include <linux/panic_notifier.h>
42 #include <linux/poll.h>
43 #include <linux/nmi.h>
44 #include <linux/fs.h>
45 #include <linux/trace.h>
46 #include <linux/sched/clock.h>
47 #include <linux/sched/rt.h>
48 #include <linux/fsnotify.h>
49 #include <linux/irq_work.h>
50 #include <linux/workqueue.h>
51
52 #include <asm/setup.h> /* COMMAND_LINE_SIZE */
53
54 #include "trace.h"
55 #include "trace_output.h"
56
57 /*
58  * On boot up, the ring buffer is set to the minimum size, so that
59  * we do not waste memory on systems that are not using tracing.
60  */
61 bool ring_buffer_expanded;
62
63 #ifdef CONFIG_FTRACE_STARTUP_TEST
64 /*
65  * We need to change this state when a selftest is running.
66  * A selftest will lurk into the ring-buffer to count the
67  * entries inserted during the selftest although some concurrent
68  * insertions into the ring-buffer such as trace_printk could occurred
69  * at the same time, giving false positive or negative results.
70  */
71 static bool __read_mostly tracing_selftest_running;
72
73 /*
74  * If boot-time tracing including tracers/events via kernel cmdline
75  * is running, we do not want to run SELFTEST.
76  */
77 bool __read_mostly tracing_selftest_disabled;
78
79 void __init disable_tracing_selftest(const char *reason)
80 {
81         if (!tracing_selftest_disabled) {
82                 tracing_selftest_disabled = true;
83                 pr_info("Ftrace startup test is disabled due to %s\n", reason);
84         }
85 }
86 #else
87 #define tracing_selftest_running        0
88 #define tracing_selftest_disabled       0
89 #endif
90
91 /* Pipe tracepoints to printk */
92 static struct trace_iterator *tracepoint_print_iter;
93 int tracepoint_printk;
94 static bool tracepoint_printk_stop_on_boot __initdata;
95 static DEFINE_STATIC_KEY_FALSE(tracepoint_printk_key);
96
97 /* For tracers that don't implement custom flags */
98 static struct tracer_opt dummy_tracer_opt[] = {
99         { }
100 };
101
102 static int
103 dummy_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set)
104 {
105         return 0;
106 }
107
108 /*
109  * To prevent the comm cache from being overwritten when no
110  * tracing is active, only save the comm when a trace event
111  * occurred.
112  */
113 static DEFINE_PER_CPU(bool, trace_taskinfo_save);
114
115 /*
116  * Kill all tracing for good (never come back).
117  * It is initialized to 1 but will turn to zero if the initialization
118  * of the tracer is successful. But that is the only place that sets
119  * this back to zero.
120  */
121 static int tracing_disabled = 1;
122
123 cpumask_var_t __read_mostly     tracing_buffer_mask;
124
125 /*
126  * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
127  *
128  * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
129  * is set, then ftrace_dump is called. This will output the contents
130  * of the ftrace buffers to the console.  This is very useful for
131  * capturing traces that lead to crashes and outputing it to a
132  * serial console.
133  *
134  * It is default off, but you can enable it with either specifying
135  * "ftrace_dump_on_oops" in the kernel command line, or setting
136  * /proc/sys/kernel/ftrace_dump_on_oops
137  * Set 1 if you want to dump buffers of all CPUs
138  * Set 2 if you want to dump the buffer of the CPU that triggered oops
139  */
140
141 enum ftrace_dump_mode ftrace_dump_on_oops;
142
143 /* When set, tracing will stop when a WARN*() is hit */
144 int __disable_trace_on_warning;
145
146 #ifdef CONFIG_TRACE_EVAL_MAP_FILE
147 /* Map of enums to their values, for "eval_map" file */
148 struct trace_eval_map_head {
149         struct module                   *mod;
150         unsigned long                   length;
151 };
152
153 union trace_eval_map_item;
154
155 struct trace_eval_map_tail {
156         /*
157          * "end" is first and points to NULL as it must be different
158          * than "mod" or "eval_string"
159          */
160         union trace_eval_map_item       *next;
161         const char                      *end;   /* points to NULL */
162 };
163
164 static DEFINE_MUTEX(trace_eval_mutex);
165
166 /*
167  * The trace_eval_maps are saved in an array with two extra elements,
168  * one at the beginning, and one at the end. The beginning item contains
169  * the count of the saved maps (head.length), and the module they
170  * belong to if not built in (head.mod). The ending item contains a
171  * pointer to the next array of saved eval_map items.
172  */
173 union trace_eval_map_item {
174         struct trace_eval_map           map;
175         struct trace_eval_map_head      head;
176         struct trace_eval_map_tail      tail;
177 };
178
179 static union trace_eval_map_item *trace_eval_maps;
180 #endif /* CONFIG_TRACE_EVAL_MAP_FILE */
181
182 int tracing_set_tracer(struct trace_array *tr, const char *buf);
183 static void ftrace_trace_userstack(struct trace_array *tr,
184                                    struct trace_buffer *buffer,
185                                    unsigned int trace_ctx);
186
187 #define MAX_TRACER_SIZE         100
188 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
189 static char *default_bootup_tracer;
190
191 static bool allocate_snapshot;
192 static bool snapshot_at_boot;
193
194 static char boot_instance_info[COMMAND_LINE_SIZE] __initdata;
195 static int boot_instance_index;
196
197 static char boot_snapshot_info[COMMAND_LINE_SIZE] __initdata;
198 static int boot_snapshot_index;
199
200 static int __init set_cmdline_ftrace(char *str)
201 {
202         strscpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
203         default_bootup_tracer = bootup_tracer_buf;
204         /* We are using ftrace early, expand it */
205         ring_buffer_expanded = true;
206         return 1;
207 }
208 __setup("ftrace=", set_cmdline_ftrace);
209
210 static int __init set_ftrace_dump_on_oops(char *str)
211 {
212         if (*str++ != '=' || !*str || !strcmp("1", str)) {
213                 ftrace_dump_on_oops = DUMP_ALL;
214                 return 1;
215         }
216
217         if (!strcmp("orig_cpu", str) || !strcmp("2", str)) {
218                 ftrace_dump_on_oops = DUMP_ORIG;
219                 return 1;
220         }
221
222         return 0;
223 }
224 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
225
226 static int __init stop_trace_on_warning(char *str)
227 {
228         if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
229                 __disable_trace_on_warning = 1;
230         return 1;
231 }
232 __setup("traceoff_on_warning", stop_trace_on_warning);
233
234 static int __init boot_alloc_snapshot(char *str)
235 {
236         char *slot = boot_snapshot_info + boot_snapshot_index;
237         int left = sizeof(boot_snapshot_info) - boot_snapshot_index;
238         int ret;
239
240         if (str[0] == '=') {
241                 str++;
242                 if (strlen(str) >= left)
243                         return -1;
244
245                 ret = snprintf(slot, left, "%s\t", str);
246                 boot_snapshot_index += ret;
247         } else {
248                 allocate_snapshot = true;
249                 /* We also need the main ring buffer expanded */
250                 ring_buffer_expanded = true;
251         }
252         return 1;
253 }
254 __setup("alloc_snapshot", boot_alloc_snapshot);
255
256
257 static int __init boot_snapshot(char *str)
258 {
259         snapshot_at_boot = true;
260         boot_alloc_snapshot(str);
261         return 1;
262 }
263 __setup("ftrace_boot_snapshot", boot_snapshot);
264
265
266 static int __init boot_instance(char *str)
267 {
268         char *slot = boot_instance_info + boot_instance_index;
269         int left = sizeof(boot_instance_info) - boot_instance_index;
270         int ret;
271
272         if (strlen(str) >= left)
273                 return -1;
274
275         ret = snprintf(slot, left, "%s\t", str);
276         boot_instance_index += ret;
277
278         return 1;
279 }
280 __setup("trace_instance=", boot_instance);
281
282
283 static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;
284
285 static int __init set_trace_boot_options(char *str)
286 {
287         strscpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
288         return 1;
289 }
290 __setup("trace_options=", set_trace_boot_options);
291
292 static char trace_boot_clock_buf[MAX_TRACER_SIZE] __initdata;
293 static char *trace_boot_clock __initdata;
294
295 static int __init set_trace_boot_clock(char *str)
296 {
297         strscpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE);
298         trace_boot_clock = trace_boot_clock_buf;
299         return 1;
300 }
301 __setup("trace_clock=", set_trace_boot_clock);
302
303 static int __init set_tracepoint_printk(char *str)
304 {
305         /* Ignore the "tp_printk_stop_on_boot" param */
306         if (*str == '_')
307                 return 0;
308
309         if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
310                 tracepoint_printk = 1;
311         return 1;
312 }
313 __setup("tp_printk", set_tracepoint_printk);
314
315 static int __init set_tracepoint_printk_stop(char *str)
316 {
317         tracepoint_printk_stop_on_boot = true;
318         return 1;
319 }
320 __setup("tp_printk_stop_on_boot", set_tracepoint_printk_stop);
321
322 unsigned long long ns2usecs(u64 nsec)
323 {
324         nsec += 500;
325         do_div(nsec, 1000);
326         return nsec;
327 }
328
329 static void
330 trace_process_export(struct trace_export *export,
331                struct ring_buffer_event *event, int flag)
332 {
333         struct trace_entry *entry;
334         unsigned int size = 0;
335
336         if (export->flags & flag) {
337                 entry = ring_buffer_event_data(event);
338                 size = ring_buffer_event_length(event);
339                 export->write(export, entry, size);
340         }
341 }
342
343 static DEFINE_MUTEX(ftrace_export_lock);
344
345 static struct trace_export __rcu *ftrace_exports_list __read_mostly;
346
347 static DEFINE_STATIC_KEY_FALSE(trace_function_exports_enabled);
348 static DEFINE_STATIC_KEY_FALSE(trace_event_exports_enabled);
349 static DEFINE_STATIC_KEY_FALSE(trace_marker_exports_enabled);
350
351 static inline void ftrace_exports_enable(struct trace_export *export)
352 {
353         if (export->flags & TRACE_EXPORT_FUNCTION)
354                 static_branch_inc(&trace_function_exports_enabled);
355
356         if (export->flags & TRACE_EXPORT_EVENT)
357                 static_branch_inc(&trace_event_exports_enabled);
358
359         if (export->flags & TRACE_EXPORT_MARKER)
360                 static_branch_inc(&trace_marker_exports_enabled);
361 }
362
363 static inline void ftrace_exports_disable(struct trace_export *export)
364 {
365         if (export->flags & TRACE_EXPORT_FUNCTION)
366                 static_branch_dec(&trace_function_exports_enabled);
367
368         if (export->flags & TRACE_EXPORT_EVENT)
369                 static_branch_dec(&trace_event_exports_enabled);
370
371         if (export->flags & TRACE_EXPORT_MARKER)
372                 static_branch_dec(&trace_marker_exports_enabled);
373 }
374
375 static void ftrace_exports(struct ring_buffer_event *event, int flag)
376 {
377         struct trace_export *export;
378
379         preempt_disable_notrace();
380
381         export = rcu_dereference_raw_check(ftrace_exports_list);
382         while (export) {
383                 trace_process_export(export, event, flag);
384                 export = rcu_dereference_raw_check(export->next);
385         }
386
387         preempt_enable_notrace();
388 }
389
390 static inline void
391 add_trace_export(struct trace_export **list, struct trace_export *export)
392 {
393         rcu_assign_pointer(export->next, *list);
394         /*
395          * We are entering export into the list but another
396          * CPU might be walking that list. We need to make sure
397          * the export->next pointer is valid before another CPU sees
398          * the export pointer included into the list.
399          */
400         rcu_assign_pointer(*list, export);
401 }
402
403 static inline int
404 rm_trace_export(struct trace_export **list, struct trace_export *export)
405 {
406         struct trace_export **p;
407
408         for (p = list; *p != NULL; p = &(*p)->next)
409                 if (*p == export)
410                         break;
411
412         if (*p != export)
413                 return -1;
414
415         rcu_assign_pointer(*p, (*p)->next);
416
417         return 0;
418 }
419
420 static inline void
421 add_ftrace_export(struct trace_export **list, struct trace_export *export)
422 {
423         ftrace_exports_enable(export);
424
425         add_trace_export(list, export);
426 }
427
428 static inline int
429 rm_ftrace_export(struct trace_export **list, struct trace_export *export)
430 {
431         int ret;
432
433         ret = rm_trace_export(list, export);
434         ftrace_exports_disable(export);
435
436         return ret;
437 }
438
439 int register_ftrace_export(struct trace_export *export)
440 {
441         if (WARN_ON_ONCE(!export->write))
442                 return -1;
443
444         mutex_lock(&ftrace_export_lock);
445
446         add_ftrace_export(&ftrace_exports_list, export);
447
448         mutex_unlock(&ftrace_export_lock);
449
450         return 0;
451 }
452 EXPORT_SYMBOL_GPL(register_ftrace_export);
453
454 int unregister_ftrace_export(struct trace_export *export)
455 {
456         int ret;
457
458         mutex_lock(&ftrace_export_lock);
459
460         ret = rm_ftrace_export(&ftrace_exports_list, export);
461
462         mutex_unlock(&ftrace_export_lock);
463
464         return ret;
465 }
466 EXPORT_SYMBOL_GPL(unregister_ftrace_export);
467
468 /* trace_flags holds trace_options default values */
469 #define TRACE_DEFAULT_FLAGS                                             \
470         (FUNCTION_DEFAULT_FLAGS |                                       \
471          TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |                  \
472          TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO |                \
473          TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |                 \
474          TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS |                     \
475          TRACE_ITER_HASH_PTR)
476
477 /* trace_options that are only supported by global_trace */
478 #define TOP_LEVEL_TRACE_FLAGS (TRACE_ITER_PRINTK |                      \
479                TRACE_ITER_PRINTK_MSGONLY | TRACE_ITER_RECORD_CMD)
480
481 /* trace_flags that are default zero for instances */
482 #define ZEROED_TRACE_FLAGS \
483         (TRACE_ITER_EVENT_FORK | TRACE_ITER_FUNC_FORK)
484
485 /*
486  * The global_trace is the descriptor that holds the top-level tracing
487  * buffers for the live tracing.
488  */
489 static struct trace_array global_trace = {
490         .trace_flags = TRACE_DEFAULT_FLAGS,
491 };
492
493 LIST_HEAD(ftrace_trace_arrays);
494
495 int trace_array_get(struct trace_array *this_tr)
496 {
497         struct trace_array *tr;
498         int ret = -ENODEV;
499
500         mutex_lock(&trace_types_lock);
501         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
502                 if (tr == this_tr) {
503                         tr->ref++;
504                         ret = 0;
505                         break;
506                 }
507         }
508         mutex_unlock(&trace_types_lock);
509
510         return ret;
511 }
512
513 static void __trace_array_put(struct trace_array *this_tr)
514 {
515         WARN_ON(!this_tr->ref);
516         this_tr->ref--;
517 }
518
519 /**
520  * trace_array_put - Decrement the reference counter for this trace array.
521  * @this_tr : pointer to the trace array
522  *
523  * NOTE: Use this when we no longer need the trace array returned by
524  * trace_array_get_by_name(). This ensures the trace array can be later
525  * destroyed.
526  *
527  */
528 void trace_array_put(struct trace_array *this_tr)
529 {
530         if (!this_tr)
531                 return;
532
533         mutex_lock(&trace_types_lock);
534         __trace_array_put(this_tr);
535         mutex_unlock(&trace_types_lock);
536 }
537 EXPORT_SYMBOL_GPL(trace_array_put);
538
539 int tracing_check_open_get_tr(struct trace_array *tr)
540 {
541         int ret;
542
543         ret = security_locked_down(LOCKDOWN_TRACEFS);
544         if (ret)
545                 return ret;
546
547         if (tracing_disabled)
548                 return -ENODEV;
549
550         if (tr && trace_array_get(tr) < 0)
551                 return -ENODEV;
552
553         return 0;
554 }
555
556 int call_filter_check_discard(struct trace_event_call *call, void *rec,
557                               struct trace_buffer *buffer,
558                               struct ring_buffer_event *event)
559 {
560         if (unlikely(call->flags & TRACE_EVENT_FL_FILTERED) &&
561             !filter_match_preds(call->filter, rec)) {
562                 __trace_event_discard_commit(buffer, event);
563                 return 1;
564         }
565
566         return 0;
567 }
568
569 /**
570  * trace_find_filtered_pid - check if a pid exists in a filtered_pid list
571  * @filtered_pids: The list of pids to check
572  * @search_pid: The PID to find in @filtered_pids
573  *
574  * Returns true if @search_pid is found in @filtered_pids, and false otherwise.
575  */
576 bool
577 trace_find_filtered_pid(struct trace_pid_list *filtered_pids, pid_t search_pid)
578 {
579         return trace_pid_list_is_set(filtered_pids, search_pid);
580 }
581
582 /**
583  * trace_ignore_this_task - should a task be ignored for tracing
584  * @filtered_pids: The list of pids to check
585  * @filtered_no_pids: The list of pids not to be traced
586  * @task: The task that should be ignored if not filtered
587  *
588  * Checks if @task should be traced or not from @filtered_pids.
589  * Returns true if @task should *NOT* be traced.
590  * Returns false if @task should be traced.
591  */
592 bool
593 trace_ignore_this_task(struct trace_pid_list *filtered_pids,
594                        struct trace_pid_list *filtered_no_pids,
595                        struct task_struct *task)
596 {
597         /*
598          * If filtered_no_pids is not empty, and the task's pid is listed
599          * in filtered_no_pids, then return true.
600          * Otherwise, if filtered_pids is empty, that means we can
601          * trace all tasks. If it has content, then only trace pids
602          * within filtered_pids.
603          */
604
605         return (filtered_pids &&
606                 !trace_find_filtered_pid(filtered_pids, task->pid)) ||
607                 (filtered_no_pids &&
608                  trace_find_filtered_pid(filtered_no_pids, task->pid));
609 }
610
611 /**
612  * trace_filter_add_remove_task - Add or remove a task from a pid_list
613  * @pid_list: The list to modify
614  * @self: The current task for fork or NULL for exit
615  * @task: The task to add or remove
616  *
617  * If adding a task, if @self is defined, the task is only added if @self
618  * is also included in @pid_list. This happens on fork and tasks should
619  * only be added when the parent is listed. If @self is NULL, then the
620  * @task pid will be removed from the list, which would happen on exit
621  * of a task.
622  */
623 void trace_filter_add_remove_task(struct trace_pid_list *pid_list,
624                                   struct task_struct *self,
625                                   struct task_struct *task)
626 {
627         if (!pid_list)
628                 return;
629
630         /* For forks, we only add if the forking task is listed */
631         if (self) {
632                 if (!trace_find_filtered_pid(pid_list, self->pid))
633                         return;
634         }
635
636         /* "self" is set for forks, and NULL for exits */
637         if (self)
638                 trace_pid_list_set(pid_list, task->pid);
639         else
640                 trace_pid_list_clear(pid_list, task->pid);
641 }
642
643 /**
644  * trace_pid_next - Used for seq_file to get to the next pid of a pid_list
645  * @pid_list: The pid list to show
646  * @v: The last pid that was shown (+1 the actual pid to let zero be displayed)
647  * @pos: The position of the file
648  *
649  * This is used by the seq_file "next" operation to iterate the pids
650  * listed in a trace_pid_list structure.
651  *
652  * Returns the pid+1 as we want to display pid of zero, but NULL would
653  * stop the iteration.
654  */
655 void *trace_pid_next(struct trace_pid_list *pid_list, void *v, loff_t *pos)
656 {
657         long pid = (unsigned long)v;
658         unsigned int next;
659
660         (*pos)++;
661
662         /* pid already is +1 of the actual previous bit */
663         if (trace_pid_list_next(pid_list, pid, &next) < 0)
664                 return NULL;
665
666         pid = next;
667
668         /* Return pid + 1 to allow zero to be represented */
669         return (void *)(pid + 1);
670 }
671
672 /**
673  * trace_pid_start - Used for seq_file to start reading pid lists
674  * @pid_list: The pid list to show
675  * @pos: The position of the file
676  *
677  * This is used by seq_file "start" operation to start the iteration
678  * of listing pids.
679  *
680  * Returns the pid+1 as we want to display pid of zero, but NULL would
681  * stop the iteration.
682  */
683 void *trace_pid_start(struct trace_pid_list *pid_list, loff_t *pos)
684 {
685         unsigned long pid;
686         unsigned int first;
687         loff_t l = 0;
688
689         if (trace_pid_list_first(pid_list, &first) < 0)
690                 return NULL;
691
692         pid = first;
693
694         /* Return pid + 1 so that zero can be the exit value */
695         for (pid++; pid && l < *pos;
696              pid = (unsigned long)trace_pid_next(pid_list, (void *)pid, &l))
697                 ;
698         return (void *)pid;
699 }
700
701 /**
702  * trace_pid_show - show the current pid in seq_file processing
703  * @m: The seq_file structure to write into
704  * @v: A void pointer of the pid (+1) value to display
705  *
706  * Can be directly used by seq_file operations to display the current
707  * pid value.
708  */
709 int trace_pid_show(struct seq_file *m, void *v)
710 {
711         unsigned long pid = (unsigned long)v - 1;
712
713         seq_printf(m, "%lu\n", pid);
714         return 0;
715 }
716
717 /* 128 should be much more than enough */
718 #define PID_BUF_SIZE            127
719
720 int trace_pid_write(struct trace_pid_list *filtered_pids,
721                     struct trace_pid_list **new_pid_list,
722                     const char __user *ubuf, size_t cnt)
723 {
724         struct trace_pid_list *pid_list;
725         struct trace_parser parser;
726         unsigned long val;
727         int nr_pids = 0;
728         ssize_t read = 0;
729         ssize_t ret;
730         loff_t pos;
731         pid_t pid;
732
733         if (trace_parser_get_init(&parser, PID_BUF_SIZE + 1))
734                 return -ENOMEM;
735
736         /*
737          * Always recreate a new array. The write is an all or nothing
738          * operation. Always create a new array when adding new pids by
739          * the user. If the operation fails, then the current list is
740          * not modified.
741          */
742         pid_list = trace_pid_list_alloc();
743         if (!pid_list) {
744                 trace_parser_put(&parser);
745                 return -ENOMEM;
746         }
747
748         if (filtered_pids) {
749                 /* copy the current bits to the new max */
750                 ret = trace_pid_list_first(filtered_pids, &pid);
751                 while (!ret) {
752                         trace_pid_list_set(pid_list, pid);
753                         ret = trace_pid_list_next(filtered_pids, pid + 1, &pid);
754                         nr_pids++;
755                 }
756         }
757
758         ret = 0;
759         while (cnt > 0) {
760
761                 pos = 0;
762
763                 ret = trace_get_user(&parser, ubuf, cnt, &pos);
764                 if (ret < 0)
765                         break;
766
767                 read += ret;
768                 ubuf += ret;
769                 cnt -= ret;
770
771                 if (!trace_parser_loaded(&parser))
772                         break;
773
774                 ret = -EINVAL;
775                 if (kstrtoul(parser.buffer, 0, &val))
776                         break;
777
778                 pid = (pid_t)val;
779
780                 if (trace_pid_list_set(pid_list, pid) < 0) {
781                         ret = -1;
782                         break;
783                 }
784                 nr_pids++;
785
786                 trace_parser_clear(&parser);
787                 ret = 0;
788         }
789         trace_parser_put(&parser);
790
791         if (ret < 0) {
792                 trace_pid_list_free(pid_list);
793                 return ret;
794         }
795
796         if (!nr_pids) {
797                 /* Cleared the list of pids */
798                 trace_pid_list_free(pid_list);
799                 pid_list = NULL;
800         }
801
802         *new_pid_list = pid_list;
803
804         return read;
805 }
806
807 static u64 buffer_ftrace_now(struct array_buffer *buf, int cpu)
808 {
809         u64 ts;
810
811         /* Early boot up does not have a buffer yet */
812         if (!buf->buffer)
813                 return trace_clock_local();
814
815         ts = ring_buffer_time_stamp(buf->buffer);
816         ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts);
817
818         return ts;
819 }
820
821 u64 ftrace_now(int cpu)
822 {
823         return buffer_ftrace_now(&global_trace.array_buffer, cpu);
824 }
825
826 /**
827  * tracing_is_enabled - Show if global_trace has been enabled
828  *
829  * Shows if the global trace has been enabled or not. It uses the
830  * mirror flag "buffer_disabled" to be used in fast paths such as for
831  * the irqsoff tracer. But it may be inaccurate due to races. If you
832  * need to know the accurate state, use tracing_is_on() which is a little
833  * slower, but accurate.
834  */
835 int tracing_is_enabled(void)
836 {
837         /*
838          * For quick access (irqsoff uses this in fast path), just
839          * return the mirror variable of the state of the ring buffer.
840          * It's a little racy, but we don't really care.
841          */
842         smp_rmb();
843         return !global_trace.buffer_disabled;
844 }
845
846 /*
847  * trace_buf_size is the size in bytes that is allocated
848  * for a buffer. Note, the number of bytes is always rounded
849  * to page size.
850  *
851  * This number is purposely set to a low number of 16384.
852  * If the dump on oops happens, it will be much appreciated
853  * to not have to wait for all that output. Anyway this can be
854  * boot time and run time configurable.
855  */
856 #define TRACE_BUF_SIZE_DEFAULT  1441792UL /* 16384 * 88 (sizeof(entry)) */
857
858 static unsigned long            trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
859
860 /* trace_types holds a link list of available tracers. */
861 static struct tracer            *trace_types __read_mostly;
862
863 /*
864  * trace_types_lock is used to protect the trace_types list.
865  */
866 DEFINE_MUTEX(trace_types_lock);
867
868 /*
869  * serialize the access of the ring buffer
870  *
871  * ring buffer serializes readers, but it is low level protection.
872  * The validity of the events (which returns by ring_buffer_peek() ..etc)
873  * are not protected by ring buffer.
874  *
875  * The content of events may become garbage if we allow other process consumes
876  * these events concurrently:
877  *   A) the page of the consumed events may become a normal page
878  *      (not reader page) in ring buffer, and this page will be rewritten
879  *      by events producer.
880  *   B) The page of the consumed events may become a page for splice_read,
881  *      and this page will be returned to system.
882  *
883  * These primitives allow multi process access to different cpu ring buffer
884  * concurrently.
885  *
886  * These primitives don't distinguish read-only and read-consume access.
887  * Multi read-only access are also serialized.
888  */
889
890 #ifdef CONFIG_SMP
891 static DECLARE_RWSEM(all_cpu_access_lock);
892 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
893
894 static inline void trace_access_lock(int cpu)
895 {
896         if (cpu == RING_BUFFER_ALL_CPUS) {
897                 /* gain it for accessing the whole ring buffer. */
898                 down_write(&all_cpu_access_lock);
899         } else {
900                 /* gain it for accessing a cpu ring buffer. */
901
902                 /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */
903                 down_read(&all_cpu_access_lock);
904
905                 /* Secondly block other access to this @cpu ring buffer. */
906                 mutex_lock(&per_cpu(cpu_access_lock, cpu));
907         }
908 }
909
910 static inline void trace_access_unlock(int cpu)
911 {
912         if (cpu == RING_BUFFER_ALL_CPUS) {
913                 up_write(&all_cpu_access_lock);
914         } else {
915                 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
916                 up_read(&all_cpu_access_lock);
917         }
918 }
919
920 static inline void trace_access_lock_init(void)
921 {
922         int cpu;
923
924         for_each_possible_cpu(cpu)
925                 mutex_init(&per_cpu(cpu_access_lock, cpu));
926 }
927
928 #else
929
930 static DEFINE_MUTEX(access_lock);
931
932 static inline void trace_access_lock(int cpu)
933 {
934         (void)cpu;
935         mutex_lock(&access_lock);
936 }
937
938 static inline void trace_access_unlock(int cpu)
939 {
940         (void)cpu;
941         mutex_unlock(&access_lock);
942 }
943
944 static inline void trace_access_lock_init(void)
945 {
946 }
947
948 #endif
949
950 #ifdef CONFIG_STACKTRACE
951 static void __ftrace_trace_stack(struct trace_buffer *buffer,
952                                  unsigned int trace_ctx,
953                                  int skip, struct pt_regs *regs);
954 static inline void ftrace_trace_stack(struct trace_array *tr,
955                                       struct trace_buffer *buffer,
956                                       unsigned int trace_ctx,
957                                       int skip, struct pt_regs *regs);
958
959 #else
960 static inline void __ftrace_trace_stack(struct trace_buffer *buffer,
961                                         unsigned int trace_ctx,
962                                         int skip, struct pt_regs *regs)
963 {
964 }
965 static inline void ftrace_trace_stack(struct trace_array *tr,
966                                       struct trace_buffer *buffer,
967                                       unsigned long trace_ctx,
968                                       int skip, struct pt_regs *regs)
969 {
970 }
971
972 #endif
973
974 static __always_inline void
975 trace_event_setup(struct ring_buffer_event *event,
976                   int type, unsigned int trace_ctx)
977 {
978         struct trace_entry *ent = ring_buffer_event_data(event);
979
980         tracing_generic_entry_update(ent, type, trace_ctx);
981 }
982
983 static __always_inline struct ring_buffer_event *
984 __trace_buffer_lock_reserve(struct trace_buffer *buffer,
985                           int type,
986                           unsigned long len,
987                           unsigned int trace_ctx)
988 {
989         struct ring_buffer_event *event;
990
991         event = ring_buffer_lock_reserve(buffer, len);
992         if (event != NULL)
993                 trace_event_setup(event, type, trace_ctx);
994
995         return event;
996 }
997
998 void tracer_tracing_on(struct trace_array *tr)
999 {
1000         if (tr->array_buffer.buffer)
1001                 ring_buffer_record_on(tr->array_buffer.buffer);
1002         /*
1003          * This flag is looked at when buffers haven't been allocated
1004          * yet, or by some tracers (like irqsoff), that just want to
1005          * know if the ring buffer has been disabled, but it can handle
1006          * races of where it gets disabled but we still do a record.
1007          * As the check is in the fast path of the tracers, it is more
1008          * important to be fast than accurate.
1009          */
1010         tr->buffer_disabled = 0;
1011         /* Make the flag seen by readers */
1012         smp_wmb();
1013 }
1014
1015 /**
1016  * tracing_on - enable tracing buffers
1017  *
1018  * This function enables tracing buffers that may have been
1019  * disabled with tracing_off.
1020  */
1021 void tracing_on(void)
1022 {
1023         tracer_tracing_on(&global_trace);
1024 }
1025 EXPORT_SYMBOL_GPL(tracing_on);
1026
1027
1028 static __always_inline void
1029 __buffer_unlock_commit(struct trace_buffer *buffer, struct ring_buffer_event *event)
1030 {
1031         __this_cpu_write(trace_taskinfo_save, true);
1032
1033         /* If this is the temp buffer, we need to commit fully */
1034         if (this_cpu_read(trace_buffered_event) == event) {
1035                 /* Length is in event->array[0] */
1036                 ring_buffer_write(buffer, event->array[0], &event->array[1]);
1037                 /* Release the temp buffer */
1038                 this_cpu_dec(trace_buffered_event_cnt);
1039                 /* ring_buffer_unlock_commit() enables preemption */
1040                 preempt_enable_notrace();
1041         } else
1042                 ring_buffer_unlock_commit(buffer);
1043 }
1044
1045 int __trace_array_puts(struct trace_array *tr, unsigned long ip,
1046                        const char *str, int size)
1047 {
1048         struct ring_buffer_event *event;
1049         struct trace_buffer *buffer;
1050         struct print_entry *entry;
1051         unsigned int trace_ctx;
1052         int alloc;
1053
1054         if (!(tr->trace_flags & TRACE_ITER_PRINTK))
1055                 return 0;
1056
1057         if (unlikely(tracing_selftest_running && tr == &global_trace))
1058                 return 0;
1059
1060         if (unlikely(tracing_disabled))
1061                 return 0;
1062
1063         alloc = sizeof(*entry) + size + 2; /* possible \n added */
1064
1065         trace_ctx = tracing_gen_ctx();
1066         buffer = tr->array_buffer.buffer;
1067         ring_buffer_nest_start(buffer);
1068         event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc,
1069                                             trace_ctx);
1070         if (!event) {
1071                 size = 0;
1072                 goto out;
1073         }
1074
1075         entry = ring_buffer_event_data(event);
1076         entry->ip = ip;
1077
1078         memcpy(&entry->buf, str, size);
1079
1080         /* Add a newline if necessary */
1081         if (entry->buf[size - 1] != '\n') {
1082                 entry->buf[size] = '\n';
1083                 entry->buf[size + 1] = '\0';
1084         } else
1085                 entry->buf[size] = '\0';
1086
1087         __buffer_unlock_commit(buffer, event);
1088         ftrace_trace_stack(tr, buffer, trace_ctx, 4, NULL);
1089  out:
1090         ring_buffer_nest_end(buffer);
1091         return size;
1092 }
1093 EXPORT_SYMBOL_GPL(__trace_array_puts);
1094
1095 /**
1096  * __trace_puts - write a constant string into the trace buffer.
1097  * @ip:    The address of the caller
1098  * @str:   The constant string to write
1099  * @size:  The size of the string.
1100  */
1101 int __trace_puts(unsigned long ip, const char *str, int size)
1102 {
1103         return __trace_array_puts(&global_trace, ip, str, size);
1104 }
1105 EXPORT_SYMBOL_GPL(__trace_puts);
1106
1107 /**
1108  * __trace_bputs - write the pointer to a constant string into trace buffer
1109  * @ip:    The address of the caller
1110  * @str:   The constant string to write to the buffer to
1111  */
1112 int __trace_bputs(unsigned long ip, const char *str)
1113 {
1114         struct ring_buffer_event *event;
1115         struct trace_buffer *buffer;
1116         struct bputs_entry *entry;
1117         unsigned int trace_ctx;
1118         int size = sizeof(struct bputs_entry);
1119         int ret = 0;
1120
1121         if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
1122                 return 0;
1123
1124         if (unlikely(tracing_selftest_running || tracing_disabled))
1125                 return 0;
1126
1127         trace_ctx = tracing_gen_ctx();
1128         buffer = global_trace.array_buffer.buffer;
1129
1130         ring_buffer_nest_start(buffer);
1131         event = __trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size,
1132                                             trace_ctx);
1133         if (!event)
1134                 goto out;
1135
1136         entry = ring_buffer_event_data(event);
1137         entry->ip                       = ip;
1138         entry->str                      = str;
1139
1140         __buffer_unlock_commit(buffer, event);
1141         ftrace_trace_stack(&global_trace, buffer, trace_ctx, 4, NULL);
1142
1143         ret = 1;
1144  out:
1145         ring_buffer_nest_end(buffer);
1146         return ret;
1147 }
1148 EXPORT_SYMBOL_GPL(__trace_bputs);
1149
1150 #ifdef CONFIG_TRACER_SNAPSHOT
1151 static void tracing_snapshot_instance_cond(struct trace_array *tr,
1152                                            void *cond_data)
1153 {
1154         struct tracer *tracer = tr->current_trace;
1155         unsigned long flags;
1156
1157         if (in_nmi()) {
1158                 trace_array_puts(tr, "*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n");
1159                 trace_array_puts(tr, "*** snapshot is being ignored        ***\n");
1160                 return;
1161         }
1162
1163         if (!tr->allocated_snapshot) {
1164                 trace_array_puts(tr, "*** SNAPSHOT NOT ALLOCATED ***\n");
1165                 trace_array_puts(tr, "*** stopping trace here!   ***\n");
1166                 tracer_tracing_off(tr);
1167                 return;
1168         }
1169
1170         /* Note, snapshot can not be used when the tracer uses it */
1171         if (tracer->use_max_tr) {
1172                 trace_array_puts(tr, "*** LATENCY TRACER ACTIVE ***\n");
1173                 trace_array_puts(tr, "*** Can not use snapshot (sorry) ***\n");
1174                 return;
1175         }
1176
1177         local_irq_save(flags);
1178         update_max_tr(tr, current, smp_processor_id(), cond_data);
1179         local_irq_restore(flags);
1180 }
1181
1182 void tracing_snapshot_instance(struct trace_array *tr)
1183 {
1184         tracing_snapshot_instance_cond(tr, NULL);
1185 }
1186
1187 /**
1188  * tracing_snapshot - take a snapshot of the current buffer.
1189  *
1190  * This causes a swap between the snapshot buffer and the current live
1191  * tracing buffer. You can use this to take snapshots of the live
1192  * trace when some condition is triggered, but continue to trace.
1193  *
1194  * Note, make sure to allocate the snapshot with either
1195  * a tracing_snapshot_alloc(), or by doing it manually
1196  * with: echo 1 > /sys/kernel/tracing/snapshot
1197  *
1198  * If the snapshot buffer is not allocated, it will stop tracing.
1199  * Basically making a permanent snapshot.
1200  */
1201 void tracing_snapshot(void)
1202 {
1203         struct trace_array *tr = &global_trace;
1204
1205         tracing_snapshot_instance(tr);
1206 }
1207 EXPORT_SYMBOL_GPL(tracing_snapshot);
1208
1209 /**
1210  * tracing_snapshot_cond - conditionally take a snapshot of the current buffer.
1211  * @tr:         The tracing instance to snapshot
1212  * @cond_data:  The data to be tested conditionally, and possibly saved
1213  *
1214  * This is the same as tracing_snapshot() except that the snapshot is
1215  * conditional - the snapshot will only happen if the
1216  * cond_snapshot.update() implementation receiving the cond_data
1217  * returns true, which means that the trace array's cond_snapshot
1218  * update() operation used the cond_data to determine whether the
1219  * snapshot should be taken, and if it was, presumably saved it along
1220  * with the snapshot.
1221  */
1222 void tracing_snapshot_cond(struct trace_array *tr, void *cond_data)
1223 {
1224         tracing_snapshot_instance_cond(tr, cond_data);
1225 }
1226 EXPORT_SYMBOL_GPL(tracing_snapshot_cond);
1227
1228 /**
1229  * tracing_cond_snapshot_data - get the user data associated with a snapshot
1230  * @tr:         The tracing instance
1231  *
1232  * When the user enables a conditional snapshot using
1233  * tracing_snapshot_cond_enable(), the user-defined cond_data is saved
1234  * with the snapshot.  This accessor is used to retrieve it.
1235  *
1236  * Should not be called from cond_snapshot.update(), since it takes
1237  * the tr->max_lock lock, which the code calling
1238  * cond_snapshot.update() has already done.
1239  *
1240  * Returns the cond_data associated with the trace array's snapshot.
1241  */
1242 void *tracing_cond_snapshot_data(struct trace_array *tr)
1243 {
1244         void *cond_data = NULL;
1245
1246         local_irq_disable();
1247         arch_spin_lock(&tr->max_lock);
1248
1249         if (tr->cond_snapshot)
1250                 cond_data = tr->cond_snapshot->cond_data;
1251
1252         arch_spin_unlock(&tr->max_lock);
1253         local_irq_enable();
1254
1255         return cond_data;
1256 }
1257 EXPORT_SYMBOL_GPL(tracing_cond_snapshot_data);
1258
1259 static int resize_buffer_duplicate_size(struct array_buffer *trace_buf,
1260                                         struct array_buffer *size_buf, int cpu_id);
1261 static void set_buffer_entries(struct array_buffer *buf, unsigned long val);
1262
1263 int tracing_alloc_snapshot_instance(struct trace_array *tr)
1264 {
1265         int ret;
1266
1267         if (!tr->allocated_snapshot) {
1268
1269                 /* allocate spare buffer */
1270                 ret = resize_buffer_duplicate_size(&tr->max_buffer,
1271                                    &tr->array_buffer, RING_BUFFER_ALL_CPUS);
1272                 if (ret < 0)
1273                         return ret;
1274
1275                 tr->allocated_snapshot = true;
1276         }
1277
1278         return 0;
1279 }
1280
1281 static void free_snapshot(struct trace_array *tr)
1282 {
1283         /*
1284          * We don't free the ring buffer. instead, resize it because
1285          * The max_tr ring buffer has some state (e.g. ring->clock) and
1286          * we want preserve it.
1287          */
1288         ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS);
1289         set_buffer_entries(&tr->max_buffer, 1);
1290         tracing_reset_online_cpus(&tr->max_buffer);
1291         tr->allocated_snapshot = false;
1292 }
1293
1294 /**
1295  * tracing_alloc_snapshot - allocate snapshot buffer.
1296  *
1297  * This only allocates the snapshot buffer if it isn't already
1298  * allocated - it doesn't also take a snapshot.
1299  *
1300  * This is meant to be used in cases where the snapshot buffer needs
1301  * to be set up for events that can't sleep but need to be able to
1302  * trigger a snapshot.
1303  */
1304 int tracing_alloc_snapshot(void)
1305 {
1306         struct trace_array *tr = &global_trace;
1307         int ret;
1308
1309         ret = tracing_alloc_snapshot_instance(tr);
1310         WARN_ON(ret < 0);
1311
1312         return ret;
1313 }
1314 EXPORT_SYMBOL_GPL(tracing_alloc_snapshot);
1315
1316 /**
1317  * tracing_snapshot_alloc - allocate and take a snapshot of the current buffer.
1318  *
1319  * This is similar to tracing_snapshot(), but it will allocate the
1320  * snapshot buffer if it isn't already allocated. Use this only
1321  * where it is safe to sleep, as the allocation may sleep.
1322  *
1323  * This causes a swap between the snapshot buffer and the current live
1324  * tracing buffer. You can use this to take snapshots of the live
1325  * trace when some condition is triggered, but continue to trace.
1326  */
1327 void tracing_snapshot_alloc(void)
1328 {
1329         int ret;
1330
1331         ret = tracing_alloc_snapshot();
1332         if (ret < 0)
1333                 return;
1334
1335         tracing_snapshot();
1336 }
1337 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
1338
1339 /**
1340  * tracing_snapshot_cond_enable - enable conditional snapshot for an instance
1341  * @tr:         The tracing instance
1342  * @cond_data:  User data to associate with the snapshot
1343  * @update:     Implementation of the cond_snapshot update function
1344  *
1345  * Check whether the conditional snapshot for the given instance has
1346  * already been enabled, or if the current tracer is already using a
1347  * snapshot; if so, return -EBUSY, else create a cond_snapshot and
1348  * save the cond_data and update function inside.
1349  *
1350  * Returns 0 if successful, error otherwise.
1351  */
1352 int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data,
1353                                  cond_update_fn_t update)
1354 {
1355         struct cond_snapshot *cond_snapshot;
1356         int ret = 0;
1357
1358         cond_snapshot = kzalloc(sizeof(*cond_snapshot), GFP_KERNEL);
1359         if (!cond_snapshot)
1360                 return -ENOMEM;
1361
1362         cond_snapshot->cond_data = cond_data;
1363         cond_snapshot->update = update;
1364
1365         mutex_lock(&trace_types_lock);
1366
1367         ret = tracing_alloc_snapshot_instance(tr);
1368         if (ret)
1369                 goto fail_unlock;
1370
1371         if (tr->current_trace->use_max_tr) {
1372                 ret = -EBUSY;
1373                 goto fail_unlock;
1374         }
1375
1376         /*
1377          * The cond_snapshot can only change to NULL without the
1378          * trace_types_lock. We don't care if we race with it going
1379          * to NULL, but we want to make sure that it's not set to
1380          * something other than NULL when we get here, which we can
1381          * do safely with only holding the trace_types_lock and not
1382          * having to take the max_lock.
1383          */
1384         if (tr->cond_snapshot) {
1385                 ret = -EBUSY;
1386                 goto fail_unlock;
1387         }
1388
1389         local_irq_disable();
1390         arch_spin_lock(&tr->max_lock);
1391         tr->cond_snapshot = cond_snapshot;
1392         arch_spin_unlock(&tr->max_lock);
1393         local_irq_enable();
1394
1395         mutex_unlock(&trace_types_lock);
1396
1397         return ret;
1398
1399  fail_unlock:
1400         mutex_unlock(&trace_types_lock);
1401         kfree(cond_snapshot);
1402         return ret;
1403 }
1404 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_enable);
1405
1406 /**
1407  * tracing_snapshot_cond_disable - disable conditional snapshot for an instance
1408  * @tr:         The tracing instance
1409  *
1410  * Check whether the conditional snapshot for the given instance is
1411  * enabled; if so, free the cond_snapshot associated with it,
1412  * otherwise return -EINVAL.
1413  *
1414  * Returns 0 if successful, error otherwise.
1415  */
1416 int tracing_snapshot_cond_disable(struct trace_array *tr)
1417 {
1418         int ret = 0;
1419
1420         local_irq_disable();
1421         arch_spin_lock(&tr->max_lock);
1422
1423         if (!tr->cond_snapshot)
1424                 ret = -EINVAL;
1425         else {
1426                 kfree(tr->cond_snapshot);
1427                 tr->cond_snapshot = NULL;
1428         }
1429
1430         arch_spin_unlock(&tr->max_lock);
1431         local_irq_enable();
1432
1433         return ret;
1434 }
1435 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_disable);
1436 #else
1437 void tracing_snapshot(void)
1438 {
1439         WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used");
1440 }
1441 EXPORT_SYMBOL_GPL(tracing_snapshot);
1442 void tracing_snapshot_cond(struct trace_array *tr, void *cond_data)
1443 {
1444         WARN_ONCE(1, "Snapshot feature not enabled, but internal conditional snapshot used");
1445 }
1446 EXPORT_SYMBOL_GPL(tracing_snapshot_cond);
1447 int tracing_alloc_snapshot(void)
1448 {
1449         WARN_ONCE(1, "Snapshot feature not enabled, but snapshot allocation used");
1450         return -ENODEV;
1451 }
1452 EXPORT_SYMBOL_GPL(tracing_alloc_snapshot);
1453 void tracing_snapshot_alloc(void)
1454 {
1455         /* Give warning */
1456         tracing_snapshot();
1457 }
1458 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
1459 void *tracing_cond_snapshot_data(struct trace_array *tr)
1460 {
1461         return NULL;
1462 }
1463 EXPORT_SYMBOL_GPL(tracing_cond_snapshot_data);
1464 int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data, cond_update_fn_t update)
1465 {
1466         return -ENODEV;
1467 }
1468 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_enable);
1469 int tracing_snapshot_cond_disable(struct trace_array *tr)
1470 {
1471         return false;
1472 }
1473 EXPORT_SYMBOL_GPL(tracing_snapshot_cond_disable);
1474 #define free_snapshot(tr)       do { } while (0)
1475 #endif /* CONFIG_TRACER_SNAPSHOT */
1476
1477 void tracer_tracing_off(struct trace_array *tr)
1478 {
1479         if (tr->array_buffer.buffer)
1480                 ring_buffer_record_off(tr->array_buffer.buffer);
1481         /*
1482          * This flag is looked at when buffers haven't been allocated
1483          * yet, or by some tracers (like irqsoff), that just want to
1484          * know if the ring buffer has been disabled, but it can handle
1485          * races of where it gets disabled but we still do a record.
1486          * As the check is in the fast path of the tracers, it is more
1487          * important to be fast than accurate.
1488          */
1489         tr->buffer_disabled = 1;
1490         /* Make the flag seen by readers */
1491         smp_wmb();
1492 }
1493
1494 /**
1495  * tracing_off - turn off tracing buffers
1496  *
1497  * This function stops the tracing buffers from recording data.
1498  * It does not disable any overhead the tracers themselves may
1499  * be causing. This function simply causes all recording to
1500  * the ring buffers to fail.
1501  */
1502 void tracing_off(void)
1503 {
1504         tracer_tracing_off(&global_trace);
1505 }
1506 EXPORT_SYMBOL_GPL(tracing_off);
1507
1508 void disable_trace_on_warning(void)
1509 {
1510         if (__disable_trace_on_warning) {
1511                 trace_array_printk_buf(global_trace.array_buffer.buffer, _THIS_IP_,
1512                         "Disabling tracing due to warning\n");
1513                 tracing_off();
1514         }
1515 }
1516
1517 /**
1518  * tracer_tracing_is_on - show real state of ring buffer enabled
1519  * @tr : the trace array to know if ring buffer is enabled
1520  *
1521  * Shows real state of the ring buffer if it is enabled or not.
1522  */
1523 bool tracer_tracing_is_on(struct trace_array *tr)
1524 {
1525         if (tr->array_buffer.buffer)
1526                 return ring_buffer_record_is_on(tr->array_buffer.buffer);
1527         return !tr->buffer_disabled;
1528 }
1529
1530 /**
1531  * tracing_is_on - show state of ring buffers enabled
1532  */
1533 int tracing_is_on(void)
1534 {
1535         return tracer_tracing_is_on(&global_trace);
1536 }
1537 EXPORT_SYMBOL_GPL(tracing_is_on);
1538
1539 static int __init set_buf_size(char *str)
1540 {
1541         unsigned long buf_size;
1542
1543         if (!str)
1544                 return 0;
1545         buf_size = memparse(str, &str);
1546         /*
1547          * nr_entries can not be zero and the startup
1548          * tests require some buffer space. Therefore
1549          * ensure we have at least 4096 bytes of buffer.
1550          */
1551         trace_buf_size = max(4096UL, buf_size);
1552         return 1;
1553 }
1554 __setup("trace_buf_size=", set_buf_size);
1555
1556 static int __init set_tracing_thresh(char *str)
1557 {
1558         unsigned long threshold;
1559         int ret;
1560
1561         if (!str)
1562                 return 0;
1563         ret = kstrtoul(str, 0, &threshold);
1564         if (ret < 0)
1565                 return 0;
1566         tracing_thresh = threshold * 1000;
1567         return 1;
1568 }
1569 __setup("tracing_thresh=", set_tracing_thresh);
1570
1571 unsigned long nsecs_to_usecs(unsigned long nsecs)
1572 {
1573         return nsecs / 1000;
1574 }
1575
1576 /*
1577  * TRACE_FLAGS is defined as a tuple matching bit masks with strings.
1578  * It uses C(a, b) where 'a' is the eval (enum) name and 'b' is the string that
1579  * matches it. By defining "C(a, b) b", TRACE_FLAGS becomes a list
1580  * of strings in the order that the evals (enum) were defined.
1581  */
1582 #undef C
1583 #define C(a, b) b
1584
1585 /* These must match the bit positions in trace_iterator_flags */
1586 static const char *trace_options[] = {
1587         TRACE_FLAGS
1588         NULL
1589 };
1590
1591 static struct {
1592         u64 (*func)(void);
1593         const char *name;
1594         int in_ns;              /* is this clock in nanoseconds? */
1595 } trace_clocks[] = {
1596         { trace_clock_local,            "local",        1 },
1597         { trace_clock_global,           "global",       1 },
1598         { trace_clock_counter,          "counter",      0 },
1599         { trace_clock_jiffies,          "uptime",       0 },
1600         { trace_clock,                  "perf",         1 },
1601         { ktime_get_mono_fast_ns,       "mono",         1 },
1602         { ktime_get_raw_fast_ns,        "mono_raw",     1 },
1603         { ktime_get_boot_fast_ns,       "boot",         1 },
1604         { ktime_get_tai_fast_ns,        "tai",          1 },
1605         ARCH_TRACE_CLOCKS
1606 };
1607
1608 bool trace_clock_in_ns(struct trace_array *tr)
1609 {
1610         if (trace_clocks[tr->clock_id].in_ns)
1611                 return true;
1612
1613         return false;
1614 }
1615
1616 /*
1617  * trace_parser_get_init - gets the buffer for trace parser
1618  */
1619 int trace_parser_get_init(struct trace_parser *parser, int size)
1620 {
1621         memset(parser, 0, sizeof(*parser));
1622
1623         parser->buffer = kmalloc(size, GFP_KERNEL);
1624         if (!parser->buffer)
1625                 return 1;
1626
1627         parser->size = size;
1628         return 0;
1629 }
1630
1631 /*
1632  * trace_parser_put - frees the buffer for trace parser
1633  */
1634 void trace_parser_put(struct trace_parser *parser)
1635 {
1636         kfree(parser->buffer);
1637         parser->buffer = NULL;
1638 }
1639
1640 /*
1641  * trace_get_user - reads the user input string separated by  space
1642  * (matched by isspace(ch))
1643  *
1644  * For each string found the 'struct trace_parser' is updated,
1645  * and the function returns.
1646  *
1647  * Returns number of bytes read.
1648  *
1649  * See kernel/trace/trace.h for 'struct trace_parser' details.
1650  */
1651 int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
1652         size_t cnt, loff_t *ppos)
1653 {
1654         char ch;
1655         size_t read = 0;
1656         ssize_t ret;
1657
1658         if (!*ppos)
1659                 trace_parser_clear(parser);
1660
1661         ret = get_user(ch, ubuf++);
1662         if (ret)
1663                 goto out;
1664
1665         read++;
1666         cnt--;
1667
1668         /*
1669          * The parser is not finished with the last write,
1670          * continue reading the user input without skipping spaces.
1671          */
1672         if (!parser->cont) {
1673                 /* skip white space */
1674                 while (cnt && isspace(ch)) {
1675                         ret = get_user(ch, ubuf++);
1676                         if (ret)
1677                                 goto out;
1678                         read++;
1679                         cnt--;
1680                 }
1681
1682                 parser->idx = 0;
1683
1684                 /* only spaces were written */
1685                 if (isspace(ch) || !ch) {
1686                         *ppos += read;
1687                         ret = read;
1688                         goto out;
1689                 }
1690         }
1691
1692         /* read the non-space input */
1693         while (cnt && !isspace(ch) && ch) {
1694                 if (parser->idx < parser->size - 1)
1695                         parser->buffer[parser->idx++] = ch;
1696                 else {
1697                         ret = -EINVAL;
1698                         goto out;
1699                 }
1700                 ret = get_user(ch, ubuf++);
1701                 if (ret)
1702                         goto out;
1703                 read++;
1704                 cnt--;
1705         }
1706
1707         /* We either got finished input or we have to wait for another call. */
1708         if (isspace(ch) || !ch) {
1709                 parser->buffer[parser->idx] = 0;
1710                 parser->cont = false;
1711         } else if (parser->idx < parser->size - 1) {
1712                 parser->cont = true;
1713                 parser->buffer[parser->idx++] = ch;
1714                 /* Make sure the parsed string always terminates with '\0'. */
1715                 parser->buffer[parser->idx] = 0;
1716         } else {
1717                 ret = -EINVAL;
1718                 goto out;
1719         }
1720
1721         *ppos += read;
1722         ret = read;
1723
1724 out:
1725         return ret;
1726 }
1727
1728 /* TODO add a seq_buf_to_buffer() */
1729 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
1730 {
1731         int len;
1732
1733         if (trace_seq_used(s) <= s->seq.readpos)
1734                 return -EBUSY;
1735
1736         len = trace_seq_used(s) - s->seq.readpos;
1737         if (cnt > len)
1738                 cnt = len;
1739         memcpy(buf, s->buffer + s->seq.readpos, cnt);
1740
1741         s->seq.readpos += cnt;
1742         return cnt;
1743 }
1744
1745 unsigned long __read_mostly     tracing_thresh;
1746
1747 #ifdef CONFIG_TRACER_MAX_TRACE
1748 static const struct file_operations tracing_max_lat_fops;
1749
1750 #ifdef LATENCY_FS_NOTIFY
1751
1752 static struct workqueue_struct *fsnotify_wq;
1753
1754 static void latency_fsnotify_workfn(struct work_struct *work)
1755 {
1756         struct trace_array *tr = container_of(work, struct trace_array,
1757                                               fsnotify_work);
1758         fsnotify_inode(tr->d_max_latency->d_inode, FS_MODIFY);
1759 }
1760
1761 static void latency_fsnotify_workfn_irq(struct irq_work *iwork)
1762 {
1763         struct trace_array *tr = container_of(iwork, struct trace_array,
1764                                               fsnotify_irqwork);
1765         queue_work(fsnotify_wq, &tr->fsnotify_work);
1766 }
1767
1768 static void trace_create_maxlat_file(struct trace_array *tr,
1769                                      struct dentry *d_tracer)
1770 {
1771         INIT_WORK(&tr->fsnotify_work, latency_fsnotify_workfn);
1772         init_irq_work(&tr->fsnotify_irqwork, latency_fsnotify_workfn_irq);
1773         tr->d_max_latency = trace_create_file("tracing_max_latency",
1774                                               TRACE_MODE_WRITE,
1775                                               d_tracer, tr,
1776                                               &tracing_max_lat_fops);
1777 }
1778
1779 __init static int latency_fsnotify_init(void)
1780 {
1781         fsnotify_wq = alloc_workqueue("tr_max_lat_wq",
1782                                       WQ_UNBOUND | WQ_HIGHPRI, 0);
1783         if (!fsnotify_wq) {
1784                 pr_err("Unable to allocate tr_max_lat_wq\n");
1785                 return -ENOMEM;
1786         }
1787         return 0;
1788 }
1789
1790 late_initcall_sync(latency_fsnotify_init);
1791
1792 void latency_fsnotify(struct trace_array *tr)
1793 {
1794         if (!fsnotify_wq)
1795                 return;
1796         /*
1797          * We cannot call queue_work(&tr->fsnotify_work) from here because it's
1798          * possible that we are called from __schedule() or do_idle(), which
1799          * could cause a deadlock.
1800          */
1801         irq_work_queue(&tr->fsnotify_irqwork);
1802 }
1803
1804 #else /* !LATENCY_FS_NOTIFY */
1805
1806 #define trace_create_maxlat_file(tr, d_tracer)                          \
1807         trace_create_file("tracing_max_latency", TRACE_MODE_WRITE,      \
1808                           d_tracer, tr, &tracing_max_lat_fops)
1809
1810 #endif
1811
1812 /*
1813  * Copy the new maximum trace into the separate maximum-trace
1814  * structure. (this way the maximum trace is permanently saved,
1815  * for later retrieval via /sys/kernel/tracing/tracing_max_latency)
1816  */
1817 static void
1818 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
1819 {
1820         struct array_buffer *trace_buf = &tr->array_buffer;
1821         struct array_buffer *max_buf = &tr->max_buffer;
1822         struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu);
1823         struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu);
1824
1825         max_buf->cpu = cpu;
1826         max_buf->time_start = data->preempt_timestamp;
1827
1828         max_data->saved_latency = tr->max_latency;
1829         max_data->critical_start = data->critical_start;
1830         max_data->critical_end = data->critical_end;
1831
1832         strncpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
1833         max_data->pid = tsk->pid;
1834         /*
1835          * If tsk == current, then use current_uid(), as that does not use
1836          * RCU. The irq tracer can be called out of RCU scope.
1837          */
1838         if (tsk == current)
1839                 max_data->uid = current_uid();
1840         else
1841                 max_data->uid = task_uid(tsk);
1842
1843         max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
1844         max_data->policy = tsk->policy;
1845         max_data->rt_priority = tsk->rt_priority;
1846
1847         /* record this tasks comm */
1848         tracing_record_cmdline(tsk);
1849         latency_fsnotify(tr);
1850 }
1851
1852 /**
1853  * update_max_tr - snapshot all trace buffers from global_trace to max_tr
1854  * @tr: tracer
1855  * @tsk: the task with the latency
1856  * @cpu: The cpu that initiated the trace.
1857  * @cond_data: User data associated with a conditional snapshot
1858  *
1859  * Flip the buffers between the @tr and the max_tr and record information
1860  * about which task was the cause of this latency.
1861  */
1862 void
1863 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu,
1864               void *cond_data)
1865 {
1866         if (tr->stop_count)
1867                 return;
1868
1869         WARN_ON_ONCE(!irqs_disabled());
1870
1871         if (!tr->allocated_snapshot) {
1872                 /* Only the nop tracer should hit this when disabling */
1873                 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1874                 return;
1875         }
1876
1877         arch_spin_lock(&tr->max_lock);
1878
1879         /* Inherit the recordable setting from array_buffer */
1880         if (ring_buffer_record_is_set_on(tr->array_buffer.buffer))
1881                 ring_buffer_record_on(tr->max_buffer.buffer);
1882         else
1883                 ring_buffer_record_off(tr->max_buffer.buffer);
1884
1885 #ifdef CONFIG_TRACER_SNAPSHOT
1886         if (tr->cond_snapshot && !tr->cond_snapshot->update(tr, cond_data)) {
1887                 arch_spin_unlock(&tr->max_lock);
1888                 return;
1889         }
1890 #endif
1891         swap(tr->array_buffer.buffer, tr->max_buffer.buffer);
1892
1893         __update_max_tr(tr, tsk, cpu);
1894
1895         arch_spin_unlock(&tr->max_lock);
1896 }
1897
1898 /**
1899  * update_max_tr_single - only copy one trace over, and reset the rest
1900  * @tr: tracer
1901  * @tsk: task with the latency
1902  * @cpu: the cpu of the buffer to copy.
1903  *
1904  * Flip the trace of a single CPU buffer between the @tr and the max_tr.
1905  */
1906 void
1907 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
1908 {
1909         int ret;
1910
1911         if (tr->stop_count)
1912                 return;
1913
1914         WARN_ON_ONCE(!irqs_disabled());
1915         if (!tr->allocated_snapshot) {
1916                 /* Only the nop tracer should hit this when disabling */
1917                 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1918                 return;
1919         }
1920
1921         arch_spin_lock(&tr->max_lock);
1922
1923         ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->array_buffer.buffer, cpu);
1924
1925         if (ret == -EBUSY) {
1926                 /*
1927                  * We failed to swap the buffer due to a commit taking
1928                  * place on this CPU. We fail to record, but we reset
1929                  * the max trace buffer (no one writes directly to it)
1930                  * and flag that it failed.
1931                  * Another reason is resize is in progress.
1932                  */
1933                 trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_,
1934                         "Failed to swap buffers due to commit or resize in progress\n");
1935         }
1936
1937         WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
1938
1939         __update_max_tr(tr, tsk, cpu);
1940         arch_spin_unlock(&tr->max_lock);
1941 }
1942
1943 #endif /* CONFIG_TRACER_MAX_TRACE */
1944
1945 static int wait_on_pipe(struct trace_iterator *iter, int full)
1946 {
1947         /* Iterators are static, they should be filled or empty */
1948         if (trace_buffer_iter(iter, iter->cpu_file))
1949                 return 0;
1950
1951         return ring_buffer_wait(iter->array_buffer->buffer, iter->cpu_file,
1952                                 full);
1953 }
1954
1955 #ifdef CONFIG_FTRACE_STARTUP_TEST
1956 static bool selftests_can_run;
1957
1958 struct trace_selftests {
1959         struct list_head                list;
1960         struct tracer                   *type;
1961 };
1962
1963 static LIST_HEAD(postponed_selftests);
1964
1965 static int save_selftest(struct tracer *type)
1966 {
1967         struct trace_selftests *selftest;
1968
1969         selftest = kmalloc(sizeof(*selftest), GFP_KERNEL);
1970         if (!selftest)
1971                 return -ENOMEM;
1972
1973         selftest->type = type;
1974         list_add(&selftest->list, &postponed_selftests);
1975         return 0;
1976 }
1977
1978 static int run_tracer_selftest(struct tracer *type)
1979 {
1980         struct trace_array *tr = &global_trace;
1981         struct tracer *saved_tracer = tr->current_trace;
1982         int ret;
1983
1984         if (!type->selftest || tracing_selftest_disabled)
1985                 return 0;
1986
1987         /*
1988          * If a tracer registers early in boot up (before scheduling is
1989          * initialized and such), then do not run its selftests yet.
1990          * Instead, run it a little later in the boot process.
1991          */
1992         if (!selftests_can_run)
1993                 return save_selftest(type);
1994
1995         if (!tracing_is_on()) {
1996                 pr_warn("Selftest for tracer %s skipped due to tracing disabled\n",
1997                         type->name);
1998                 return 0;
1999         }
2000
2001         /*
2002          * Run a selftest on this tracer.
2003          * Here we reset the trace buffer, and set the current
2004          * tracer to be this tracer. The tracer can then run some
2005          * internal tracing to verify that everything is in order.
2006          * If we fail, we do not register this tracer.
2007          */
2008         tracing_reset_online_cpus(&tr->array_buffer);
2009
2010         tr->current_trace = type;
2011
2012 #ifdef CONFIG_TRACER_MAX_TRACE
2013         if (type->use_max_tr) {
2014                 /* If we expanded the buffers, make sure the max is expanded too */
2015                 if (ring_buffer_expanded)
2016                         ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size,
2017                                            RING_BUFFER_ALL_CPUS);
2018                 tr->allocated_snapshot = true;
2019         }
2020 #endif
2021
2022         /* the test is responsible for initializing and enabling */
2023         pr_info("Testing tracer %s: ", type->name);
2024         ret = type->selftest(type, tr);
2025         /* the test is responsible for resetting too */
2026         tr->current_trace = saved_tracer;
2027         if (ret) {
2028                 printk(KERN_CONT "FAILED!\n");
2029                 /* Add the warning after printing 'FAILED' */
2030                 WARN_ON(1);
2031                 return -1;
2032         }
2033         /* Only reset on passing, to avoid touching corrupted buffers */
2034         tracing_reset_online_cpus(&tr->array_buffer);
2035
2036 #ifdef CONFIG_TRACER_MAX_TRACE
2037         if (type->use_max_tr) {
2038                 tr->allocated_snapshot = false;
2039
2040                 /* Shrink the max buffer again */
2041                 if (ring_buffer_expanded)
2042                         ring_buffer_resize(tr->max_buffer.buffer, 1,
2043                                            RING_BUFFER_ALL_CPUS);
2044         }
2045 #endif
2046
2047         printk(KERN_CONT "PASSED\n");
2048         return 0;
2049 }
2050
2051 static int do_run_tracer_selftest(struct tracer *type)
2052 {
2053         int ret;
2054
2055         /*
2056          * Tests can take a long time, especially if they are run one after the
2057          * other, as does happen during bootup when all the tracers are
2058          * registered. This could cause the soft lockup watchdog to trigger.
2059          */
2060         cond_resched();
2061
2062         tracing_selftest_running = true;
2063         ret = run_tracer_selftest(type);
2064         tracing_selftest_running = false;
2065
2066         return ret;
2067 }
2068
2069 static __init int init_trace_selftests(void)
2070 {
2071         struct trace_selftests *p, *n;
2072         struct tracer *t, **last;
2073         int ret;
2074
2075         selftests_can_run = true;
2076
2077         mutex_lock(&trace_types_lock);
2078
2079         if (list_empty(&postponed_selftests))
2080                 goto out;
2081
2082         pr_info("Running postponed tracer tests:\n");
2083
2084         tracing_selftest_running = true;
2085         list_for_each_entry_safe(p, n, &postponed_selftests, list) {
2086                 /* This loop can take minutes when sanitizers are enabled, so
2087                  * lets make sure we allow RCU processing.
2088                  */
2089                 cond_resched();
2090                 ret = run_tracer_selftest(p->type);
2091                 /* If the test fails, then warn and remove from available_tracers */
2092                 if (ret < 0) {
2093                         WARN(1, "tracer: %s failed selftest, disabling\n",
2094                              p->type->name);
2095                         last = &trace_types;
2096                         for (t = trace_types; t; t = t->next) {
2097                                 if (t == p->type) {
2098                                         *last = t->next;
2099                                         break;
2100                                 }
2101                                 last = &t->next;
2102                         }
2103                 }
2104                 list_del(&p->list);
2105                 kfree(p);
2106         }
2107         tracing_selftest_running = false;
2108
2109  out:
2110         mutex_unlock(&trace_types_lock);
2111
2112         return 0;
2113 }
2114 core_initcall(init_trace_selftests);
2115 #else
2116 static inline int run_tracer_selftest(struct tracer *type)
2117 {
2118         return 0;
2119 }
2120 static inline int do_run_tracer_selftest(struct tracer *type)
2121 {
2122         return 0;
2123 }
2124 #endif /* CONFIG_FTRACE_STARTUP_TEST */
2125
2126 static void add_tracer_options(struct trace_array *tr, struct tracer *t);
2127
2128 static void __init apply_trace_boot_options(void);
2129
2130 /**
2131  * register_tracer - register a tracer with the ftrace system.
2132  * @type: the plugin for the tracer
2133  *
2134  * Register a new plugin tracer.
2135  */
2136 int __init register_tracer(struct tracer *type)
2137 {
2138         struct tracer *t;
2139         int ret = 0;
2140
2141         if (!type->name) {
2142                 pr_info("Tracer must have a name\n");
2143                 return -1;
2144         }
2145
2146         if (strlen(type->name) >= MAX_TRACER_SIZE) {
2147                 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
2148                 return -1;
2149         }
2150
2151         if (security_locked_down(LOCKDOWN_TRACEFS)) {
2152                 pr_warn("Can not register tracer %s due to lockdown\n",
2153                            type->name);
2154                 return -EPERM;
2155         }
2156
2157         mutex_lock(&trace_types_lock);
2158
2159         for (t = trace_types; t; t = t->next) {
2160                 if (strcmp(type->name, t->name) == 0) {
2161                         /* already found */
2162                         pr_info("Tracer %s already registered\n",
2163                                 type->name);
2164                         ret = -1;
2165                         goto out;
2166                 }
2167         }
2168
2169         if (!type->set_flag)
2170                 type->set_flag = &dummy_set_flag;
2171         if (!type->flags) {
2172                 /*allocate a dummy tracer_flags*/
2173                 type->flags = kmalloc(sizeof(*type->flags), GFP_KERNEL);
2174                 if (!type->flags) {
2175                         ret = -ENOMEM;
2176                         goto out;
2177                 }
2178                 type->flags->val = 0;
2179                 type->flags->opts = dummy_tracer_opt;
2180         } else
2181                 if (!type->flags->opts)
2182                         type->flags->opts = dummy_tracer_opt;
2183
2184         /* store the tracer for __set_tracer_option */
2185         type->flags->trace = type;
2186
2187         ret = do_run_tracer_selftest(type);
2188         if (ret < 0)
2189                 goto out;
2190
2191         type->next = trace_types;
2192         trace_types = type;
2193         add_tracer_options(&global_trace, type);
2194
2195  out:
2196         mutex_unlock(&trace_types_lock);
2197
2198         if (ret || !default_bootup_tracer)
2199                 goto out_unlock;
2200
2201         if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
2202                 goto out_unlock;
2203
2204         printk(KERN_INFO "Starting tracer '%s'\n", type->name);
2205         /* Do we want this tracer to start on bootup? */
2206         tracing_set_tracer(&global_trace, type->name);
2207         default_bootup_tracer = NULL;
2208
2209         apply_trace_boot_options();
2210
2211         /* disable other selftests, since this will break it. */
2212         disable_tracing_selftest("running a tracer");
2213
2214  out_unlock:
2215         return ret;
2216 }
2217
2218 static void tracing_reset_cpu(struct array_buffer *buf, int cpu)
2219 {
2220         struct trace_buffer *buffer = buf->buffer;
2221
2222         if (!buffer)
2223                 return;
2224
2225         ring_buffer_record_disable(buffer);
2226
2227         /* Make sure all commits have finished */
2228         synchronize_rcu();
2229         ring_buffer_reset_cpu(buffer, cpu);
2230
2231         ring_buffer_record_enable(buffer);
2232 }
2233
2234 void tracing_reset_online_cpus(struct array_buffer *buf)
2235 {
2236         struct trace_buffer *buffer = buf->buffer;
2237
2238         if (!buffer)
2239                 return;
2240
2241         ring_buffer_record_disable(buffer);
2242
2243         /* Make sure all commits have finished */
2244         synchronize_rcu();
2245
2246         buf->time_start = buffer_ftrace_now(buf, buf->cpu);
2247
2248         ring_buffer_reset_online_cpus(buffer);
2249
2250         ring_buffer_record_enable(buffer);
2251 }
2252
2253 /* Must have trace_types_lock held */
2254 void tracing_reset_all_online_cpus_unlocked(void)
2255 {
2256         struct trace_array *tr;
2257
2258         lockdep_assert_held(&trace_types_lock);
2259
2260         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
2261                 if (!tr->clear_trace)
2262                         continue;
2263                 tr->clear_trace = false;
2264                 tracing_reset_online_cpus(&tr->array_buffer);
2265 #ifdef CONFIG_TRACER_MAX_TRACE
2266                 tracing_reset_online_cpus(&tr->max_buffer);
2267 #endif
2268         }
2269 }
2270
2271 void tracing_reset_all_online_cpus(void)
2272 {
2273         mutex_lock(&trace_types_lock);
2274         tracing_reset_all_online_cpus_unlocked();
2275         mutex_unlock(&trace_types_lock);
2276 }
2277
2278 /*
2279  * The tgid_map array maps from pid to tgid; i.e. the value stored at index i
2280  * is the tgid last observed corresponding to pid=i.
2281  */
2282 static int *tgid_map;
2283
2284 /* The maximum valid index into tgid_map. */
2285 static size_t tgid_map_max;
2286
2287 #define SAVED_CMDLINES_DEFAULT 128
2288 #define NO_CMDLINE_MAP UINT_MAX
2289 /*
2290  * Preemption must be disabled before acquiring trace_cmdline_lock.
2291  * The various trace_arrays' max_lock must be acquired in a context
2292  * where interrupt is disabled.
2293  */
2294 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
2295 struct saved_cmdlines_buffer {
2296         unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
2297         unsigned *map_cmdline_to_pid;
2298         unsigned cmdline_num;
2299         int cmdline_idx;
2300         char *saved_cmdlines;
2301 };
2302 static struct saved_cmdlines_buffer *savedcmd;
2303
2304 static inline char *get_saved_cmdlines(int idx)
2305 {
2306         return &savedcmd->saved_cmdlines[idx * TASK_COMM_LEN];
2307 }
2308
2309 static inline void set_cmdline(int idx, const char *cmdline)
2310 {
2311         strncpy(get_saved_cmdlines(idx), cmdline, TASK_COMM_LEN);
2312 }
2313
2314 static int allocate_cmdlines_buffer(unsigned int val,
2315                                     struct saved_cmdlines_buffer *s)
2316 {
2317         s->map_cmdline_to_pid = kmalloc_array(val,
2318                                               sizeof(*s->map_cmdline_to_pid),
2319                                               GFP_KERNEL);
2320         if (!s->map_cmdline_to_pid)
2321                 return -ENOMEM;
2322
2323         s->saved_cmdlines = kmalloc_array(TASK_COMM_LEN, val, GFP_KERNEL);
2324         if (!s->saved_cmdlines) {
2325                 kfree(s->map_cmdline_to_pid);
2326                 return -ENOMEM;
2327         }
2328
2329         s->cmdline_idx = 0;
2330         s->cmdline_num = val;
2331         memset(&s->map_pid_to_cmdline, NO_CMDLINE_MAP,
2332                sizeof(s->map_pid_to_cmdline));
2333         memset(s->map_cmdline_to_pid, NO_CMDLINE_MAP,
2334                val * sizeof(*s->map_cmdline_to_pid));
2335
2336         return 0;
2337 }
2338
2339 static int trace_create_savedcmd(void)
2340 {
2341         int ret;
2342
2343         savedcmd = kmalloc(sizeof(*savedcmd), GFP_KERNEL);
2344         if (!savedcmd)
2345                 return -ENOMEM;
2346
2347         ret = allocate_cmdlines_buffer(SAVED_CMDLINES_DEFAULT, savedcmd);
2348         if (ret < 0) {
2349                 kfree(savedcmd);
2350                 savedcmd = NULL;
2351                 return -ENOMEM;
2352         }
2353
2354         return 0;
2355 }
2356
2357 int is_tracing_stopped(void)
2358 {
2359         return global_trace.stop_count;
2360 }
2361
2362 static void tracing_start_tr(struct trace_array *tr)
2363 {
2364         struct trace_buffer *buffer;
2365         unsigned long flags;
2366
2367         if (tracing_disabled)
2368                 return;
2369
2370         raw_spin_lock_irqsave(&tr->start_lock, flags);
2371         if (--tr->stop_count) {
2372                 if (WARN_ON_ONCE(tr->stop_count < 0)) {
2373                         /* Someone screwed up their debugging */
2374                         tr->stop_count = 0;
2375                 }
2376                 goto out;
2377         }
2378
2379         /* Prevent the buffers from switching */
2380         arch_spin_lock(&tr->max_lock);
2381
2382         buffer = tr->array_buffer.buffer;
2383         if (buffer)
2384                 ring_buffer_record_enable(buffer);
2385
2386 #ifdef CONFIG_TRACER_MAX_TRACE
2387         buffer = tr->max_buffer.buffer;
2388         if (buffer)
2389                 ring_buffer_record_enable(buffer);
2390 #endif
2391
2392         arch_spin_unlock(&tr->max_lock);
2393
2394  out:
2395         raw_spin_unlock_irqrestore(&tr->start_lock, flags);
2396 }
2397
2398 /**
2399  * tracing_start - quick start of the tracer
2400  *
2401  * If tracing is enabled but was stopped by tracing_stop,
2402  * this will start the tracer back up.
2403  */
2404 void tracing_start(void)
2405
2406 {
2407         return tracing_start_tr(&global_trace);
2408 }
2409
2410 static void tracing_stop_tr(struct trace_array *tr)
2411 {
2412         struct trace_buffer *buffer;
2413         unsigned long flags;
2414
2415         raw_spin_lock_irqsave(&tr->start_lock, flags);
2416         if (tr->stop_count++)
2417                 goto out;
2418
2419         /* Prevent the buffers from switching */
2420         arch_spin_lock(&tr->max_lock);
2421
2422         buffer = tr->array_buffer.buffer;
2423         if (buffer)
2424                 ring_buffer_record_disable(buffer);
2425
2426 #ifdef CONFIG_TRACER_MAX_TRACE
2427         buffer = tr->max_buffer.buffer;
2428         if (buffer)
2429                 ring_buffer_record_disable(buffer);
2430 #endif
2431
2432         arch_spin_unlock(&tr->max_lock);
2433
2434  out:
2435         raw_spin_unlock_irqrestore(&tr->start_lock, flags);
2436 }
2437
2438 /**
2439  * tracing_stop - quick stop of the tracer
2440  *
2441  * Light weight way to stop tracing. Use in conjunction with
2442  * tracing_start.
2443  */
2444 void tracing_stop(void)
2445 {
2446         return tracing_stop_tr(&global_trace);
2447 }
2448
2449 static int trace_save_cmdline(struct task_struct *tsk)
2450 {
2451         unsigned tpid, idx;
2452
2453         /* treat recording of idle task as a success */
2454         if (!tsk->pid)
2455                 return 1;
2456
2457         tpid = tsk->pid & (PID_MAX_DEFAULT - 1);
2458
2459         /*
2460          * It's not the end of the world if we don't get
2461          * the lock, but we also don't want to spin
2462          * nor do we want to disable interrupts,
2463          * so if we miss here, then better luck next time.
2464          *
2465          * This is called within the scheduler and wake up, so interrupts
2466          * had better been disabled and run queue lock been held.
2467          */
2468         lockdep_assert_preemption_disabled();
2469         if (!arch_spin_trylock(&trace_cmdline_lock))
2470                 return 0;
2471
2472         idx = savedcmd->map_pid_to_cmdline[tpid];
2473         if (idx == NO_CMDLINE_MAP) {
2474                 idx = (savedcmd->cmdline_idx + 1) % savedcmd->cmdline_num;
2475
2476                 savedcmd->map_pid_to_cmdline[tpid] = idx;
2477                 savedcmd->cmdline_idx = idx;
2478         }
2479
2480         savedcmd->map_cmdline_to_pid[idx] = tsk->pid;
2481         set_cmdline(idx, tsk->comm);
2482
2483         arch_spin_unlock(&trace_cmdline_lock);
2484
2485         return 1;
2486 }
2487
2488 static void __trace_find_cmdline(int pid, char comm[])
2489 {
2490         unsigned map;
2491         int tpid;
2492
2493         if (!pid) {
2494                 strcpy(comm, "<idle>");
2495                 return;
2496         }
2497
2498         if (WARN_ON_ONCE(pid < 0)) {
2499                 strcpy(comm, "<XXX>");
2500                 return;
2501         }
2502
2503         tpid = pid & (PID_MAX_DEFAULT - 1);
2504         map = savedcmd->map_pid_to_cmdline[tpid];
2505         if (map != NO_CMDLINE_MAP) {
2506                 tpid = savedcmd->map_cmdline_to_pid[map];
2507                 if (tpid == pid) {
2508                         strscpy(comm, get_saved_cmdlines(map), TASK_COMM_LEN);
2509                         return;
2510                 }
2511         }
2512         strcpy(comm, "<...>");
2513 }
2514
2515 void trace_find_cmdline(int pid, char comm[])
2516 {
2517         preempt_disable();
2518         arch_spin_lock(&trace_cmdline_lock);
2519
2520         __trace_find_cmdline(pid, comm);
2521
2522         arch_spin_unlock(&trace_cmdline_lock);
2523         preempt_enable();
2524 }
2525
2526 static int *trace_find_tgid_ptr(int pid)
2527 {
2528         /*
2529          * Pairs with the smp_store_release in set_tracer_flag() to ensure that
2530          * if we observe a non-NULL tgid_map then we also observe the correct
2531          * tgid_map_max.
2532          */
2533         int *map = smp_load_acquire(&tgid_map);
2534
2535         if (unlikely(!map || pid > tgid_map_max))
2536                 return NULL;
2537
2538         return &map[pid];
2539 }
2540
2541 int trace_find_tgid(int pid)
2542 {
2543         int *ptr = trace_find_tgid_ptr(pid);
2544
2545         return ptr ? *ptr : 0;
2546 }
2547
2548 static int trace_save_tgid(struct task_struct *tsk)
2549 {
2550         int *ptr;
2551
2552         /* treat recording of idle task as a success */
2553         if (!tsk->pid)
2554                 return 1;
2555
2556         ptr = trace_find_tgid_ptr(tsk->pid);
2557         if (!ptr)
2558                 return 0;
2559
2560         *ptr = tsk->tgid;
2561         return 1;
2562 }
2563
2564 static bool tracing_record_taskinfo_skip(int flags)
2565 {
2566         if (unlikely(!(flags & (TRACE_RECORD_CMDLINE | TRACE_RECORD_TGID))))
2567                 return true;
2568         if (!__this_cpu_read(trace_taskinfo_save))
2569                 return true;
2570         return false;
2571 }
2572
2573 /**
2574  * tracing_record_taskinfo - record the task info of a task
2575  *
2576  * @task:  task to record
2577  * @flags: TRACE_RECORD_CMDLINE for recording comm
2578  *         TRACE_RECORD_TGID for recording tgid
2579  */
2580 void tracing_record_taskinfo(struct task_struct *task, int flags)
2581 {
2582         bool done;
2583
2584         if (tracing_record_taskinfo_skip(flags))
2585                 return;
2586
2587         /*
2588          * Record as much task information as possible. If some fail, continue
2589          * to try to record the others.
2590          */
2591         done = !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(task);
2592         done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(task);
2593
2594         /* If recording any information failed, retry again soon. */
2595         if (!done)
2596                 return;
2597
2598         __this_cpu_write(trace_taskinfo_save, false);
2599 }
2600
2601 /**
2602  * tracing_record_taskinfo_sched_switch - record task info for sched_switch
2603  *
2604  * @prev: previous task during sched_switch
2605  * @next: next task during sched_switch
2606  * @flags: TRACE_RECORD_CMDLINE for recording comm
2607  *         TRACE_RECORD_TGID for recording tgid
2608  */
2609 void tracing_record_taskinfo_sched_switch(struct task_struct *prev,
2610                                           struct task_struct *next, int flags)
2611 {
2612         bool done;
2613
2614         if (tracing_record_taskinfo_skip(flags))
2615                 return;
2616
2617         /*
2618          * Record as much task information as possible. If some fail, continue
2619          * to try to record the others.
2620          */
2621         done  = !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(prev);
2622         done &= !(flags & TRACE_RECORD_CMDLINE) || trace_save_cmdline(next);
2623         done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(prev);
2624         done &= !(flags & TRACE_RECORD_TGID) || trace_save_tgid(next);
2625
2626         /* If recording any information failed, retry again soon. */
2627         if (!done)
2628                 return;
2629
2630         __this_cpu_write(trace_taskinfo_save, false);
2631 }
2632
2633 /* Helpers to record a specific task information */
2634 void tracing_record_cmdline(struct task_struct *task)
2635 {
2636         tracing_record_taskinfo(task, TRACE_RECORD_CMDLINE);
2637 }
2638
2639 void tracing_record_tgid(struct task_struct *task)
2640 {
2641         tracing_record_taskinfo(task, TRACE_RECORD_TGID);
2642 }
2643
2644 /*
2645  * Several functions return TRACE_TYPE_PARTIAL_LINE if the trace_seq
2646  * overflowed, and TRACE_TYPE_HANDLED otherwise. This helper function
2647  * simplifies those functions and keeps them in sync.
2648  */
2649 enum print_line_t trace_handle_return(struct trace_seq *s)
2650 {
2651         return trace_seq_has_overflowed(s) ?
2652                 TRACE_TYPE_PARTIAL_LINE : TRACE_TYPE_HANDLED;
2653 }
2654 EXPORT_SYMBOL_GPL(trace_handle_return);
2655
2656 static unsigned short migration_disable_value(void)
2657 {
2658 #if defined(CONFIG_SMP)
2659         return current->migration_disabled;
2660 #else
2661         return 0;
2662 #endif
2663 }
2664
2665 unsigned int tracing_gen_ctx_irq_test(unsigned int irqs_status)
2666 {
2667         unsigned int trace_flags = irqs_status;
2668         unsigned int pc;
2669
2670         pc = preempt_count();
2671
2672         if (pc & NMI_MASK)
2673                 trace_flags |= TRACE_FLAG_NMI;
2674         if (pc & HARDIRQ_MASK)
2675                 trace_flags |= TRACE_FLAG_HARDIRQ;
2676         if (in_serving_softirq())
2677                 trace_flags |= TRACE_FLAG_SOFTIRQ;
2678         if (softirq_count() >> (SOFTIRQ_SHIFT + 1))
2679                 trace_flags |= TRACE_FLAG_BH_OFF;
2680
2681         if (tif_need_resched())
2682                 trace_flags |= TRACE_FLAG_NEED_RESCHED;
2683         if (test_preempt_need_resched())
2684                 trace_flags |= TRACE_FLAG_PREEMPT_RESCHED;
2685         return (trace_flags << 16) | (min_t(unsigned int, pc & 0xff, 0xf)) |
2686                 (min_t(unsigned int, migration_disable_value(), 0xf)) << 4;
2687 }
2688
2689 struct ring_buffer_event *
2690 trace_buffer_lock_reserve(struct trace_buffer *buffer,
2691                           int type,
2692                           unsigned long len,
2693                           unsigned int trace_ctx)
2694 {
2695         return __trace_buffer_lock_reserve(buffer, type, len, trace_ctx);
2696 }
2697
2698 DEFINE_PER_CPU(struct ring_buffer_event *, trace_buffered_event);
2699 DEFINE_PER_CPU(int, trace_buffered_event_cnt);
2700 static int trace_buffered_event_ref;
2701
2702 /**
2703  * trace_buffered_event_enable - enable buffering events
2704  *
2705  * When events are being filtered, it is quicker to use a temporary
2706  * buffer to write the event data into if there's a likely chance
2707  * that it will not be committed. The discard of the ring buffer
2708  * is not as fast as committing, and is much slower than copying
2709  * a commit.
2710  *
2711  * When an event is to be filtered, allocate per cpu buffers to
2712  * write the event data into, and if the event is filtered and discarded
2713  * it is simply dropped, otherwise, the entire data is to be committed
2714  * in one shot.
2715  */
2716 void trace_buffered_event_enable(void)
2717 {
2718         struct ring_buffer_event *event;
2719         struct page *page;
2720         int cpu;
2721
2722         WARN_ON_ONCE(!mutex_is_locked(&event_mutex));
2723
2724         if (trace_buffered_event_ref++)
2725                 return;
2726
2727         for_each_tracing_cpu(cpu) {
2728                 page = alloc_pages_node(cpu_to_node(cpu),
2729                                         GFP_KERNEL | __GFP_NORETRY, 0);
2730                 /* This is just an optimization and can handle failures */
2731                 if (!page) {
2732                         pr_err("Failed to allocate event buffer\n");
2733                         break;
2734                 }
2735
2736                 event = page_address(page);
2737                 memset(event, 0, sizeof(*event));
2738
2739                 per_cpu(trace_buffered_event, cpu) = event;
2740
2741                 preempt_disable();
2742                 if (cpu == smp_processor_id() &&
2743                     __this_cpu_read(trace_buffered_event) !=
2744                     per_cpu(trace_buffered_event, cpu))
2745                         WARN_ON_ONCE(1);
2746                 preempt_enable();
2747         }
2748 }
2749
2750 static void enable_trace_buffered_event(void *data)
2751 {
2752         /* Probably not needed, but do it anyway */
2753         smp_rmb();
2754         this_cpu_dec(trace_buffered_event_cnt);
2755 }
2756
2757 static void disable_trace_buffered_event(void *data)
2758 {
2759         this_cpu_inc(trace_buffered_event_cnt);
2760 }
2761
2762 /**
2763  * trace_buffered_event_disable - disable buffering events
2764  *
2765  * When a filter is removed, it is faster to not use the buffered
2766  * events, and to commit directly into the ring buffer. Free up
2767  * the temp buffers when there are no more users. This requires
2768  * special synchronization with current events.
2769  */
2770 void trace_buffered_event_disable(void)
2771 {
2772         int cpu;
2773
2774         WARN_ON_ONCE(!mutex_is_locked(&event_mutex));
2775
2776         if (WARN_ON_ONCE(!trace_buffered_event_ref))
2777                 return;
2778
2779         if (--trace_buffered_event_ref)
2780                 return;
2781
2782         /* For each CPU, set the buffer as used. */
2783         on_each_cpu_mask(tracing_buffer_mask, disable_trace_buffered_event,
2784                          NULL, true);
2785
2786         /* Wait for all current users to finish */
2787         synchronize_rcu();
2788
2789         for_each_tracing_cpu(cpu) {
2790                 free_page((unsigned long)per_cpu(trace_buffered_event, cpu));
2791                 per_cpu(trace_buffered_event, cpu) = NULL;
2792         }
2793         /*
2794          * Make sure trace_buffered_event is NULL before clearing
2795          * trace_buffered_event_cnt.
2796          */
2797         smp_wmb();
2798
2799         /* Do the work on each cpu */
2800         on_each_cpu_mask(tracing_buffer_mask, enable_trace_buffered_event, NULL,
2801                          true);
2802 }
2803
2804 static struct trace_buffer *temp_buffer;
2805
2806 struct ring_buffer_event *
2807 trace_event_buffer_lock_reserve(struct trace_buffer **current_rb,
2808                           struct trace_event_file *trace_file,
2809                           int type, unsigned long len,
2810                           unsigned int trace_ctx)
2811 {
2812         struct ring_buffer_event *entry;
2813         struct trace_array *tr = trace_file->tr;
2814         int val;
2815
2816         *current_rb = tr->array_buffer.buffer;
2817
2818         if (!tr->no_filter_buffering_ref &&
2819             (trace_file->flags & (EVENT_FILE_FL_SOFT_DISABLED | EVENT_FILE_FL_FILTERED))) {
2820                 preempt_disable_notrace();
2821                 /*
2822                  * Filtering is on, so try to use the per cpu buffer first.
2823                  * This buffer will simulate a ring_buffer_event,
2824                  * where the type_len is zero and the array[0] will
2825                  * hold the full length.
2826                  * (see include/linux/ring-buffer.h for details on
2827                  *  how the ring_buffer_event is structured).
2828                  *
2829                  * Using a temp buffer during filtering and copying it
2830                  * on a matched filter is quicker than writing directly
2831                  * into the ring buffer and then discarding it when
2832                  * it doesn't match. That is because the discard
2833                  * requires several atomic operations to get right.
2834                  * Copying on match and doing nothing on a failed match
2835                  * is still quicker than no copy on match, but having
2836                  * to discard out of the ring buffer on a failed match.
2837                  */
2838                 if ((entry = __this_cpu_read(trace_buffered_event))) {
2839                         int max_len = PAGE_SIZE - struct_size(entry, array, 1);
2840
2841                         val = this_cpu_inc_return(trace_buffered_event_cnt);
2842
2843                         /*
2844                          * Preemption is disabled, but interrupts and NMIs
2845                          * can still come in now. If that happens after
2846                          * the above increment, then it will have to go
2847                          * back to the old method of allocating the event
2848                          * on the ring buffer, and if the filter fails, it
2849                          * will have to call ring_buffer_discard_commit()
2850                          * to remove it.
2851                          *
2852                          * Need to also check the unlikely case that the
2853                          * length is bigger than the temp buffer size.
2854                          * If that happens, then the reserve is pretty much
2855                          * guaranteed to fail, as the ring buffer currently
2856                          * only allows events less than a page. But that may
2857                          * change in the future, so let the ring buffer reserve
2858                          * handle the failure in that case.
2859                          */
2860                         if (val == 1 && likely(len <= max_len)) {
2861                                 trace_event_setup(entry, type, trace_ctx);
2862                                 entry->array[0] = len;
2863                                 /* Return with preemption disabled */
2864                                 return entry;
2865                         }
2866                         this_cpu_dec(trace_buffered_event_cnt);
2867                 }
2868                 /* __trace_buffer_lock_reserve() disables preemption */
2869                 preempt_enable_notrace();
2870         }
2871
2872         entry = __trace_buffer_lock_reserve(*current_rb, type, len,
2873                                             trace_ctx);
2874         /*
2875          * If tracing is off, but we have triggers enabled
2876          * we still need to look at the event data. Use the temp_buffer
2877          * to store the trace event for the trigger to use. It's recursive
2878          * safe and will not be recorded anywhere.
2879          */
2880         if (!entry && trace_file->flags & EVENT_FILE_FL_TRIGGER_COND) {
2881                 *current_rb = temp_buffer;
2882                 entry = __trace_buffer_lock_reserve(*current_rb, type, len,
2883                                                     trace_ctx);
2884         }
2885         return entry;
2886 }
2887 EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve);
2888
2889 static DEFINE_RAW_SPINLOCK(tracepoint_iter_lock);
2890 static DEFINE_MUTEX(tracepoint_printk_mutex);
2891
2892 static void output_printk(struct trace_event_buffer *fbuffer)
2893 {
2894         struct trace_event_call *event_call;
2895         struct trace_event_file *file;
2896         struct trace_event *event;
2897         unsigned long flags;
2898         struct trace_iterator *iter = tracepoint_print_iter;
2899
2900         /* We should never get here if iter is NULL */
2901         if (WARN_ON_ONCE(!iter))
2902                 return;
2903
2904         event_call = fbuffer->trace_file->event_call;
2905         if (!event_call || !event_call->event.funcs ||
2906             !event_call->event.funcs->trace)
2907                 return;
2908
2909         file = fbuffer->trace_file;
2910         if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) ||
2911             (unlikely(file->flags & EVENT_FILE_FL_FILTERED) &&
2912              !filter_match_preds(file->filter, fbuffer->entry)))
2913                 return;
2914
2915         event = &fbuffer->trace_file->event_call->event;
2916
2917         raw_spin_lock_irqsave(&tracepoint_iter_lock, flags);
2918         trace_seq_init(&iter->seq);
2919         iter->ent = fbuffer->entry;
2920         event_call->event.funcs->trace(iter, 0, event);
2921         trace_seq_putc(&iter->seq, 0);
2922         printk("%s", iter->seq.buffer);
2923
2924         raw_spin_unlock_irqrestore(&tracepoint_iter_lock, flags);
2925 }
2926
2927 int tracepoint_printk_sysctl(struct ctl_table *table, int write,
2928                              void *buffer, size_t *lenp,
2929                              loff_t *ppos)
2930 {
2931         int save_tracepoint_printk;
2932         int ret;
2933
2934         mutex_lock(&tracepoint_printk_mutex);
2935         save_tracepoint_printk = tracepoint_printk;
2936
2937         ret = proc_dointvec(table, write, buffer, lenp, ppos);
2938
2939         /*
2940          * This will force exiting early, as tracepoint_printk
2941          * is always zero when tracepoint_printk_iter is not allocated
2942          */
2943         if (!tracepoint_print_iter)
2944                 tracepoint_printk = 0;
2945
2946         if (save_tracepoint_printk == tracepoint_printk)
2947                 goto out;
2948
2949         if (tracepoint_printk)
2950                 static_key_enable(&tracepoint_printk_key.key);
2951         else
2952                 static_key_disable(&tracepoint_printk_key.key);
2953
2954  out:
2955         mutex_unlock(&tracepoint_printk_mutex);
2956
2957         return ret;
2958 }
2959
2960 void trace_event_buffer_commit(struct trace_event_buffer *fbuffer)
2961 {
2962         enum event_trigger_type tt = ETT_NONE;
2963         struct trace_event_file *file = fbuffer->trace_file;
2964
2965         if (__event_trigger_test_discard(file, fbuffer->buffer, fbuffer->event,
2966                         fbuffer->entry, &tt))
2967                 goto discard;
2968
2969         if (static_key_false(&tracepoint_printk_key.key))
2970                 output_printk(fbuffer);
2971
2972         if (static_branch_unlikely(&trace_event_exports_enabled))
2973                 ftrace_exports(fbuffer->event, TRACE_EXPORT_EVENT);
2974
2975         trace_buffer_unlock_commit_regs(file->tr, fbuffer->buffer,
2976                         fbuffer->event, fbuffer->trace_ctx, fbuffer->regs);
2977
2978 discard:
2979         if (tt)
2980                 event_triggers_post_call(file, tt);
2981
2982 }
2983 EXPORT_SYMBOL_GPL(trace_event_buffer_commit);
2984
2985 /*
2986  * Skip 3:
2987  *
2988  *   trace_buffer_unlock_commit_regs()
2989  *   trace_event_buffer_commit()
2990  *   trace_event_raw_event_xxx()
2991  */
2992 # define STACK_SKIP 3
2993
2994 void trace_buffer_unlock_commit_regs(struct trace_array *tr,
2995                                      struct trace_buffer *buffer,
2996                                      struct ring_buffer_event *event,
2997                                      unsigned int trace_ctx,
2998                                      struct pt_regs *regs)
2999 {
3000         __buffer_unlock_commit(buffer, event);
3001
3002         /*
3003          * If regs is not set, then skip the necessary functions.
3004          * Note, we can still get here via blktrace, wakeup tracer
3005          * and mmiotrace, but that's ok if they lose a function or
3006          * two. They are not that meaningful.
3007          */
3008         ftrace_trace_stack(tr, buffer, trace_ctx, regs ? 0 : STACK_SKIP, regs);
3009         ftrace_trace_userstack(tr, buffer, trace_ctx);
3010 }
3011
3012 /*
3013  * Similar to trace_buffer_unlock_commit_regs() but do not dump stack.
3014  */
3015 void
3016 trace_buffer_unlock_commit_nostack(struct trace_buffer *buffer,
3017                                    struct ring_buffer_event *event)
3018 {
3019         __buffer_unlock_commit(buffer, event);
3020 }
3021
3022 void
3023 trace_function(struct trace_array *tr, unsigned long ip, unsigned long
3024                parent_ip, unsigned int trace_ctx)
3025 {
3026         struct trace_event_call *call = &event_function;
3027         struct trace_buffer *buffer = tr->array_buffer.buffer;
3028         struct ring_buffer_event *event;
3029         struct ftrace_entry *entry;
3030
3031         event = __trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
3032                                             trace_ctx);
3033         if (!event)
3034                 return;
3035         entry   = ring_buffer_event_data(event);
3036         entry->ip                       = ip;
3037         entry->parent_ip                = parent_ip;
3038
3039         if (!call_filter_check_discard(call, entry, buffer, event)) {
3040                 if (static_branch_unlikely(&trace_function_exports_enabled))
3041                         ftrace_exports(event, TRACE_EXPORT_FUNCTION);
3042                 __buffer_unlock_commit(buffer, event);
3043         }
3044 }
3045
3046 #ifdef CONFIG_STACKTRACE
3047
3048 /* Allow 4 levels of nesting: normal, softirq, irq, NMI */
3049 #define FTRACE_KSTACK_NESTING   4
3050
3051 #define FTRACE_KSTACK_ENTRIES   (PAGE_SIZE / FTRACE_KSTACK_NESTING)
3052
3053 struct ftrace_stack {
3054         unsigned long           calls[FTRACE_KSTACK_ENTRIES];
3055 };
3056
3057
3058 struct ftrace_stacks {
3059         struct ftrace_stack     stacks[FTRACE_KSTACK_NESTING];
3060 };
3061
3062 static DEFINE_PER_CPU(struct ftrace_stacks, ftrace_stacks);
3063 static DEFINE_PER_CPU(int, ftrace_stack_reserve);
3064
3065 static void __ftrace_trace_stack(struct trace_buffer *buffer,
3066                                  unsigned int trace_ctx,
3067                                  int skip, struct pt_regs *regs)
3068 {
3069         struct trace_event_call *call = &event_kernel_stack;
3070         struct ring_buffer_event *event;
3071         unsigned int size, nr_entries;
3072         struct ftrace_stack *fstack;
3073         struct stack_entry *entry;
3074         int stackidx;
3075
3076         /*
3077          * Add one, for this function and the call to save_stack_trace()
3078          * If regs is set, then these functions will not be in the way.
3079          */
3080 #ifndef CONFIG_UNWINDER_ORC
3081         if (!regs)
3082                 skip++;
3083 #endif
3084
3085         preempt_disable_notrace();
3086
3087         stackidx = __this_cpu_inc_return(ftrace_stack_reserve) - 1;
3088
3089         /* This should never happen. If it does, yell once and skip */
3090         if (WARN_ON_ONCE(stackidx >= FTRACE_KSTACK_NESTING))
3091                 goto out;
3092
3093         /*
3094          * The above __this_cpu_inc_return() is 'atomic' cpu local. An
3095          * interrupt will either see the value pre increment or post
3096          * increment. If the interrupt happens pre increment it will have
3097          * restored the counter when it returns.  We just need a barrier to
3098          * keep gcc from moving things around.
3099          */
3100         barrier();
3101
3102         fstack = this_cpu_ptr(ftrace_stacks.stacks) + stackidx;
3103         size = ARRAY_SIZE(fstack->calls);
3104
3105         if (regs) {
3106                 nr_entries = stack_trace_save_regs(regs, fstack->calls,
3107                                                    size, skip);
3108         } else {
3109                 nr_entries = stack_trace_save(fstack->calls, size, skip);
3110         }
3111
3112         event = __trace_buffer_lock_reserve(buffer, TRACE_STACK,
3113                                     struct_size(entry, caller, nr_entries),
3114                                     trace_ctx);
3115         if (!event)
3116                 goto out;
3117         entry = ring_buffer_event_data(event);
3118
3119         entry->size = nr_entries;
3120         memcpy(&entry->caller, fstack->calls,
3121                flex_array_size(entry, caller, nr_entries));
3122
3123         if (!call_filter_check_discard(call, entry, buffer, event))
3124                 __buffer_unlock_commit(buffer, event);
3125
3126  out:
3127         /* Again, don't let gcc optimize things here */
3128         barrier();
3129         __this_cpu_dec(ftrace_stack_reserve);
3130         preempt_enable_notrace();
3131
3132 }
3133
3134 static inline void ftrace_trace_stack(struct trace_array *tr,
3135                                       struct trace_buffer *buffer,
3136                                       unsigned int trace_ctx,
3137                                       int skip, struct pt_regs *regs)
3138 {
3139         if (!(tr->trace_flags & TRACE_ITER_STACKTRACE))
3140                 return;
3141
3142         __ftrace_trace_stack(buffer, trace_ctx, skip, regs);
3143 }
3144
3145 void __trace_stack(struct trace_array *tr, unsigned int trace_ctx,
3146                    int skip)
3147 {
3148         struct trace_buffer *buffer = tr->array_buffer.buffer;
3149
3150         if (rcu_is_watching()) {
3151                 __ftrace_trace_stack(buffer, trace_ctx, skip, NULL);
3152                 return;
3153         }
3154
3155         if (WARN_ON_ONCE(IS_ENABLED(CONFIG_GENERIC_ENTRY)))
3156                 return;
3157
3158         /*
3159          * When an NMI triggers, RCU is enabled via ct_nmi_enter(),
3160          * but if the above rcu_is_watching() failed, then the NMI
3161          * triggered someplace critical, and ct_irq_enter() should
3162          * not be called from NMI.
3163          */
3164         if (unlikely(in_nmi()))
3165                 return;
3166
3167         ct_irq_enter_irqson();
3168         __ftrace_trace_stack(buffer, trace_ctx, skip, NULL);
3169         ct_irq_exit_irqson();
3170 }
3171
3172 /**
3173  * trace_dump_stack - record a stack back trace in the trace buffer
3174  * @skip: Number of functions to skip (helper handlers)
3175  */
3176 void trace_dump_stack(int skip)
3177 {
3178         if (tracing_disabled || tracing_selftest_running)
3179                 return;
3180
3181 #ifndef CONFIG_UNWINDER_ORC
3182         /* Skip 1 to skip this function. */
3183         skip++;
3184 #endif
3185         __ftrace_trace_stack(global_trace.array_buffer.buffer,
3186                              tracing_gen_ctx(), skip, NULL);
3187 }
3188 EXPORT_SYMBOL_GPL(trace_dump_stack);
3189
3190 #ifdef CONFIG_USER_STACKTRACE_SUPPORT
3191 static DEFINE_PER_CPU(int, user_stack_count);
3192
3193 static void
3194 ftrace_trace_userstack(struct trace_array *tr,
3195                        struct trace_buffer *buffer, unsigned int trace_ctx)
3196 {
3197         struct trace_event_call *call = &event_user_stack;
3198         struct ring_buffer_event *event;
3199         struct userstack_entry *entry;
3200
3201         if (!(tr->trace_flags & TRACE_ITER_USERSTACKTRACE))
3202                 return;
3203
3204         /*
3205          * NMIs can not handle page faults, even with fix ups.
3206          * The save user stack can (and often does) fault.
3207          */
3208         if (unlikely(in_nmi()))
3209                 return;
3210
3211         /*
3212          * prevent recursion, since the user stack tracing may
3213          * trigger other kernel events.
3214          */
3215         preempt_disable();
3216         if (__this_cpu_read(user_stack_count))
3217                 goto out;
3218
3219         __this_cpu_inc(user_stack_count);
3220
3221         event = __trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
3222                                             sizeof(*entry), trace_ctx);
3223         if (!event)
3224                 goto out_drop_count;
3225         entry   = ring_buffer_event_data(event);
3226
3227         entry->tgid             = current->tgid;
3228         memset(&entry->caller, 0, sizeof(entry->caller));
3229
3230         stack_trace_save_user(entry->caller, FTRACE_STACK_ENTRIES);
3231         if (!call_filter_check_discard(call, entry, buffer, event))
3232                 __buffer_unlock_commit(buffer, event);
3233
3234  out_drop_count:
3235         __this_cpu_dec(user_stack_count);
3236  out:
3237         preempt_enable();
3238 }
3239 #else /* CONFIG_USER_STACKTRACE_SUPPORT */
3240 static void ftrace_trace_userstack(struct trace_array *tr,
3241                                    struct trace_buffer *buffer,
3242                                    unsigned int trace_ctx)
3243 {
3244 }
3245 #endif /* !CONFIG_USER_STACKTRACE_SUPPORT */
3246
3247 #endif /* CONFIG_STACKTRACE */
3248
3249 static inline void
3250 func_repeats_set_delta_ts(struct func_repeats_entry *entry,
3251                           unsigned long long delta)
3252 {
3253         entry->bottom_delta_ts = delta & U32_MAX;
3254         entry->top_delta_ts = (delta >> 32);
3255 }
3256
3257 void trace_last_func_repeats(struct trace_array *tr,
3258                              struct trace_func_repeats *last_info,
3259                              unsigned int trace_ctx)
3260 {
3261         struct trace_buffer *buffer = tr->array_buffer.buffer;
3262         struct func_repeats_entry *entry;
3263         struct ring_buffer_event *event;
3264         u64 delta;
3265
3266         event = __trace_buffer_lock_reserve(buffer, TRACE_FUNC_REPEATS,
3267                                             sizeof(*entry), trace_ctx);
3268         if (!event)
3269                 return;
3270
3271         delta = ring_buffer_event_time_stamp(buffer, event) -
3272                 last_info->ts_last_call;
3273
3274         entry = ring_buffer_event_data(event);
3275         entry->ip = last_info->ip;
3276         entry->parent_ip = last_info->parent_ip;
3277         entry->count = last_info->count;
3278         func_repeats_set_delta_ts(entry, delta);
3279
3280         __buffer_unlock_commit(buffer, event);
3281 }
3282
3283 /* created for use with alloc_percpu */
3284 struct trace_buffer_struct {
3285         int nesting;
3286         char buffer[4][TRACE_BUF_SIZE];
3287 };
3288
3289 static struct trace_buffer_struct __percpu *trace_percpu_buffer;
3290
3291 /*
3292  * This allows for lockless recording.  If we're nested too deeply, then
3293  * this returns NULL.
3294  */
3295 static char *get_trace_buf(void)
3296 {
3297         struct trace_buffer_struct *buffer = this_cpu_ptr(trace_percpu_buffer);
3298
3299         if (!trace_percpu_buffer || buffer->nesting >= 4)
3300                 return NULL;
3301
3302         buffer->nesting++;
3303
3304         /* Interrupts must see nesting incremented before we use the buffer */
3305         barrier();
3306         return &buffer->buffer[buffer->nesting - 1][0];
3307 }
3308
3309 static void put_trace_buf(void)
3310 {
3311         /* Don't let the decrement of nesting leak before this */
3312         barrier();
3313         this_cpu_dec(trace_percpu_buffer->nesting);
3314 }
3315
3316 static int alloc_percpu_trace_buffer(void)
3317 {
3318         struct trace_buffer_struct __percpu *buffers;
3319
3320         if (trace_percpu_buffer)
3321                 return 0;
3322
3323         buffers = alloc_percpu(struct trace_buffer_struct);
3324         if (MEM_FAIL(!buffers, "Could not allocate percpu trace_printk buffer"))
3325                 return -ENOMEM;
3326
3327         trace_percpu_buffer = buffers;
3328         return 0;
3329 }
3330
3331 static int buffers_allocated;
3332
3333 void trace_printk_init_buffers(void)
3334 {
3335         if (buffers_allocated)
3336                 return;
3337
3338         if (alloc_percpu_trace_buffer())
3339                 return;
3340
3341         /* trace_printk() is for debug use only. Don't use it in production. */
3342
3343         pr_warn("\n");
3344         pr_warn("**********************************************************\n");
3345         pr_warn("**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n");
3346         pr_warn("**                                                      **\n");
3347         pr_warn("** trace_printk() being used. Allocating extra memory.  **\n");
3348         pr_warn("**                                                      **\n");
3349         pr_warn("** This means that this is a DEBUG kernel and it is     **\n");
3350         pr_warn("** unsafe for production use.                           **\n");
3351         pr_warn("**                                                      **\n");
3352         pr_warn("** If you see this message and you are not debugging    **\n");
3353         pr_warn("** the kernel, report this immediately to your vendor!  **\n");
3354         pr_warn("**                                                      **\n");
3355         pr_warn("**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n");
3356         pr_warn("**********************************************************\n");
3357
3358         /* Expand the buffers to set size */
3359         tracing_update_buffers();
3360
3361         buffers_allocated = 1;
3362
3363         /*
3364          * trace_printk_init_buffers() can be called by modules.
3365          * If that happens, then we need to start cmdline recording
3366          * directly here. If the global_trace.buffer is already
3367          * allocated here, then this was called by module code.
3368          */
3369         if (global_trace.array_buffer.buffer)
3370                 tracing_start_cmdline_record();
3371 }
3372 EXPORT_SYMBOL_GPL(trace_printk_init_buffers);
3373
3374 void trace_printk_start_comm(void)
3375 {
3376         /* Start tracing comms if trace printk is set */
3377         if (!buffers_allocated)
3378                 return;
3379         tracing_start_cmdline_record();
3380 }
3381
3382 static void trace_printk_start_stop_comm(int enabled)
3383 {
3384         if (!buffers_allocated)
3385                 return;
3386
3387         if (enabled)
3388                 tracing_start_cmdline_record();
3389         else
3390                 tracing_stop_cmdline_record();
3391 }
3392
3393 /**
3394  * trace_vbprintk - write binary msg to tracing buffer
3395  * @ip:    The address of the caller
3396  * @fmt:   The string format to write to the buffer
3397  * @args:  Arguments for @fmt
3398  */
3399 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
3400 {
3401         struct trace_event_call *call = &event_bprint;
3402         struct ring_buffer_event *event;
3403         struct trace_buffer *buffer;
3404         struct trace_array *tr = &global_trace;
3405         struct bprint_entry *entry;
3406         unsigned int trace_ctx;
3407         char *tbuffer;
3408         int len = 0, size;
3409
3410         if (unlikely(tracing_selftest_running || tracing_disabled))
3411                 return 0;
3412
3413         /* Don't pollute graph traces with trace_vprintk internals */
3414         pause_graph_tracing();
3415
3416         trace_ctx = tracing_gen_ctx();
3417         preempt_disable_notrace();
3418
3419         tbuffer = get_trace_buf();
3420         if (!tbuffer) {
3421                 len = 0;
3422                 goto out_nobuffer;
3423         }
3424
3425         len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
3426
3427         if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
3428                 goto out_put;
3429
3430         size = sizeof(*entry) + sizeof(u32) * len;
3431         buffer = tr->array_buffer.buffer;
3432         ring_buffer_nest_start(buffer);
3433         event = __trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
3434                                             trace_ctx);
3435         if (!event)
3436                 goto out;
3437         entry = ring_buffer_event_data(event);
3438         entry->ip                       = ip;
3439         entry->fmt                      = fmt;
3440
3441         memcpy(entry->buf, tbuffer, sizeof(u32) * len);
3442         if (!call_filter_check_discard(call, entry, buffer, event)) {
3443                 __buffer_unlock_commit(buffer, event);
3444                 ftrace_trace_stack(tr, buffer, trace_ctx, 6, NULL);
3445         }
3446
3447 out:
3448         ring_buffer_nest_end(buffer);
3449 out_put:
3450         put_trace_buf();
3451
3452 out_nobuffer:
3453         preempt_enable_notrace();
3454         unpause_graph_tracing();
3455
3456         return len;
3457 }
3458 EXPORT_SYMBOL_GPL(trace_vbprintk);
3459
3460 __printf(3, 0)
3461 static int
3462 __trace_array_vprintk(struct trace_buffer *buffer,
3463                       unsigned long ip, const char *fmt, va_list args)
3464 {
3465         struct trace_event_call *call = &event_print;
3466         struct ring_buffer_event *event;
3467         int len = 0, size;
3468         struct print_entry *entry;
3469         unsigned int trace_ctx;
3470         char *tbuffer;
3471
3472         if (tracing_disabled)
3473                 return 0;
3474
3475         /* Don't pollute graph traces with trace_vprintk internals */
3476         pause_graph_tracing();
3477
3478         trace_ctx = tracing_gen_ctx();
3479         preempt_disable_notrace();
3480
3481
3482         tbuffer = get_trace_buf();
3483         if (!tbuffer) {
3484                 len = 0;
3485                 goto out_nobuffer;
3486         }
3487
3488         len = vscnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
3489
3490         size = sizeof(*entry) + len + 1;
3491         ring_buffer_nest_start(buffer);
3492         event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
3493                                             trace_ctx);
3494         if (!event)
3495                 goto out;
3496         entry = ring_buffer_event_data(event);
3497         entry->ip = ip;
3498
3499         memcpy(&entry->buf, tbuffer, len + 1);
3500         if (!call_filter_check_discard(call, entry, buffer, event)) {
3501                 __buffer_unlock_commit(buffer, event);
3502                 ftrace_trace_stack(&global_trace, buffer, trace_ctx, 6, NULL);
3503         }
3504
3505 out:
3506         ring_buffer_nest_end(buffer);
3507         put_trace_buf();
3508
3509 out_nobuffer:
3510         preempt_enable_notrace();
3511         unpause_graph_tracing();
3512
3513         return len;
3514 }
3515
3516 __printf(3, 0)
3517 int trace_array_vprintk(struct trace_array *tr,
3518                         unsigned long ip, const char *fmt, va_list args)
3519 {
3520         if (tracing_selftest_running && tr == &global_trace)
3521                 return 0;
3522
3523         return __trace_array_vprintk(tr->array_buffer.buffer, ip, fmt, args);
3524 }
3525
3526 /**
3527  * trace_array_printk - Print a message to a specific instance
3528  * @tr: The instance trace_array descriptor
3529  * @ip: The instruction pointer that this is called from.
3530  * @fmt: The format to print (printf format)
3531  *
3532  * If a subsystem sets up its own instance, they have the right to
3533  * printk strings into their tracing instance buffer using this
3534  * function. Note, this function will not write into the top level
3535  * buffer (use trace_printk() for that), as writing into the top level
3536  * buffer should only have events that can be individually disabled.
3537  * trace_printk() is only used for debugging a kernel, and should not
3538  * be ever incorporated in normal use.
3539  *
3540  * trace_array_printk() can be used, as it will not add noise to the
3541  * top level tracing buffer.
3542  *
3543  * Note, trace_array_init_printk() must be called on @tr before this
3544  * can be used.
3545  */
3546 __printf(3, 0)
3547 int trace_array_printk(struct trace_array *tr,
3548                        unsigned long ip, const char *fmt, ...)
3549 {
3550         int ret;
3551         va_list ap;
3552
3553         if (!tr)
3554                 return -ENOENT;
3555
3556         /* This is only allowed for created instances */
3557         if (tr == &global_trace)
3558                 return 0;
3559
3560         if (!(tr->trace_flags & TRACE_ITER_PRINTK))
3561                 return 0;
3562
3563         va_start(ap, fmt);
3564         ret = trace_array_vprintk(tr, ip, fmt, ap);
3565         va_end(ap);
3566         return ret;
3567 }
3568 EXPORT_SYMBOL_GPL(trace_array_printk);
3569
3570 /**
3571  * trace_array_init_printk - Initialize buffers for trace_array_printk()
3572  * @tr: The trace array to initialize the buffers for
3573  *
3574  * As trace_array_printk() only writes into instances, they are OK to
3575  * have in the kernel (unlike trace_printk()). This needs to be called
3576  * before trace_array_printk() can be used on a trace_array.
3577  */
3578 int trace_array_init_printk(struct trace_array *tr)
3579 {
3580         if (!tr)
3581                 return -ENOENT;
3582
3583         /* This is only allowed for created instances */
3584         if (tr == &global_trace)
3585                 return -EINVAL;
3586
3587         return alloc_percpu_trace_buffer();
3588 }
3589 EXPORT_SYMBOL_GPL(trace_array_init_printk);
3590
3591 __printf(3, 4)
3592 int trace_array_printk_buf(struct trace_buffer *buffer,
3593                            unsigned long ip, const char *fmt, ...)
3594 {
3595         int ret;
3596         va_list ap;
3597
3598         if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
3599                 return 0;
3600
3601         va_start(ap, fmt);
3602         ret = __trace_array_vprintk(buffer, ip, fmt, ap);
3603         va_end(ap);
3604         return ret;
3605 }
3606
3607 __printf(2, 0)
3608 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
3609 {
3610         return trace_array_vprintk(&global_trace, ip, fmt, args);
3611 }
3612 EXPORT_SYMBOL_GPL(trace_vprintk);
3613
3614 static void trace_iterator_increment(struct trace_iterator *iter)
3615 {
3616         struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu);
3617
3618         iter->idx++;
3619         if (buf_iter)
3620                 ring_buffer_iter_advance(buf_iter);
3621 }
3622
3623 static struct trace_entry *
3624 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
3625                 unsigned long *lost_events)
3626 {
3627         struct ring_buffer_event *event;
3628         struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu);
3629
3630         if (buf_iter) {
3631                 event = ring_buffer_iter_peek(buf_iter, ts);
3632                 if (lost_events)
3633                         *lost_events = ring_buffer_iter_dropped(buf_iter) ?
3634                                 (unsigned long)-1 : 0;
3635         } else {
3636                 event = ring_buffer_peek(iter->array_buffer->buffer, cpu, ts,
3637                                          lost_events);
3638         }
3639
3640         if (event) {
3641                 iter->ent_size = ring_buffer_event_length(event);
3642                 return ring_buffer_event_data(event);
3643         }
3644         iter->ent_size = 0;
3645         return NULL;
3646 }
3647
3648 static struct trace_entry *
3649 __find_next_entry(struct trace_iterator *iter, int *ent_cpu,
3650                   unsigned long *missing_events, u64 *ent_ts)
3651 {
3652         struct trace_buffer *buffer = iter->array_buffer->buffer;
3653         struct trace_entry *ent, *next = NULL;
3654         unsigned long lost_events = 0, next_lost = 0;
3655         int cpu_file = iter->cpu_file;
3656         u64 next_ts = 0, ts;
3657         int next_cpu = -1;
3658         int next_size = 0;
3659         int cpu;
3660
3661         /*
3662          * If we are in a per_cpu trace file, don't bother by iterating over
3663          * all cpu and peek directly.
3664          */
3665         if (cpu_file > RING_BUFFER_ALL_CPUS) {
3666                 if (ring_buffer_empty_cpu(buffer, cpu_file))
3667                         return NULL;
3668                 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
3669                 if (ent_cpu)
3670                         *ent_cpu = cpu_file;
3671
3672                 return ent;
3673         }
3674
3675         for_each_tracing_cpu(cpu) {
3676
3677                 if (ring_buffer_empty_cpu(buffer, cpu))
3678                         continue;
3679
3680                 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
3681
3682                 /*
3683                  * Pick the entry with the smallest timestamp:
3684                  */
3685                 if (ent && (!next || ts < next_ts)) {
3686                         next = ent;
3687                         next_cpu = cpu;
3688                         next_ts = ts;
3689                         next_lost = lost_events;
3690                         next_size = iter->ent_size;
3691                 }
3692         }
3693
3694         iter->ent_size = next_size;
3695
3696         if (ent_cpu)
3697                 *ent_cpu = next_cpu;
3698
3699         if (ent_ts)
3700                 *ent_ts = next_ts;
3701
3702         if (missing_events)
3703                 *missing_events = next_lost;
3704
3705         return next;
3706 }
3707
3708 #define STATIC_FMT_BUF_SIZE     128
3709 static char static_fmt_buf[STATIC_FMT_BUF_SIZE];
3710
3711 char *trace_iter_expand_format(struct trace_iterator *iter)
3712 {
3713         char *tmp;
3714
3715         /*
3716          * iter->tr is NULL when used with tp_printk, which makes
3717          * this get called where it is not safe to call krealloc().
3718          */
3719         if (!iter->tr || iter->fmt == static_fmt_buf)
3720                 return NULL;
3721
3722         tmp = krealloc(iter->fmt, iter->fmt_size + STATIC_FMT_BUF_SIZE,
3723                        GFP_KERNEL);
3724         if (tmp) {
3725                 iter->fmt_size += STATIC_FMT_BUF_SIZE;
3726                 iter->fmt = tmp;
3727         }
3728
3729         return tmp;
3730 }
3731
3732 /* Returns true if the string is safe to dereference from an event */
3733 static bool trace_safe_str(struct trace_iterator *iter, const char *str,
3734                            bool star, int len)
3735 {
3736         unsigned long addr = (unsigned long)str;
3737         struct trace_event *trace_event;
3738         struct trace_event_call *event;
3739
3740         /* Ignore strings with no length */
3741         if (star && !len)
3742                 return true;
3743
3744         /* OK if part of the event data */
3745         if ((addr >= (unsigned long)iter->ent) &&
3746             (addr < (unsigned long)iter->ent + iter->ent_size))
3747                 return true;
3748
3749         /* OK if part of the temp seq buffer */
3750         if ((addr >= (unsigned long)iter->tmp_seq.buffer) &&
3751             (addr < (unsigned long)iter->tmp_seq.buffer + PAGE_SIZE))
3752                 return true;
3753
3754         /* Core rodata can not be freed */
3755         if (is_kernel_rodata(addr))
3756                 return true;
3757
3758         if (trace_is_tracepoint_string(str))
3759                 return true;
3760
3761         /*
3762          * Now this could be a module event, referencing core module
3763          * data, which is OK.
3764          */
3765         if (!iter->ent)
3766                 return false;
3767
3768         trace_event = ftrace_find_event(iter->ent->type);
3769         if (!trace_event)
3770                 return false;
3771
3772         event = container_of(trace_event, struct trace_event_call, event);
3773         if ((event->flags & TRACE_EVENT_FL_DYNAMIC) || !event->module)
3774                 return false;
3775
3776         /* Would rather have rodata, but this will suffice */
3777         if (within_module_core(addr, event->module))
3778                 return true;
3779
3780         return false;
3781 }
3782
3783 static const char *show_buffer(struct trace_seq *s)
3784 {
3785         struct seq_buf *seq = &s->seq;
3786
3787         seq_buf_terminate(seq);
3788
3789         return seq->buffer;
3790 }
3791
3792 static DEFINE_STATIC_KEY_FALSE(trace_no_verify);
3793
3794 static int test_can_verify_check(const char *fmt, ...)
3795 {
3796         char buf[16];
3797         va_list ap;
3798         int ret;
3799
3800         /*
3801          * The verifier is dependent on vsnprintf() modifies the va_list
3802          * passed to it, where it is sent as a reference. Some architectures
3803          * (like x86_32) passes it by value, which means that vsnprintf()
3804          * does not modify the va_list passed to it, and the verifier
3805          * would then need to be able to understand all the values that
3806          * vsnprintf can use. If it is passed by value, then the verifier
3807          * is disabled.
3808          */
3809         va_start(ap, fmt);
3810         vsnprintf(buf, 16, "%d", ap);
3811         ret = va_arg(ap, int);
3812         va_end(ap);
3813
3814         return ret;
3815 }
3816
3817 static void test_can_verify(void)
3818 {
3819         if (!test_can_verify_check("%d %d", 0, 1)) {
3820                 pr_info("trace event string verifier disabled\n");
3821                 static_branch_inc(&trace_no_verify);
3822         }
3823 }
3824
3825 /**
3826  * trace_check_vprintf - Check dereferenced strings while writing to the seq buffer
3827  * @iter: The iterator that holds the seq buffer and the event being printed
3828  * @fmt: The format used to print the event
3829  * @ap: The va_list holding the data to print from @fmt.
3830  *
3831  * This writes the data into the @iter->seq buffer using the data from
3832  * @fmt and @ap. If the format has a %s, then the source of the string
3833  * is examined to make sure it is safe to print, otherwise it will
3834  * warn and print "[UNSAFE MEMORY]" in place of the dereferenced string
3835  * pointer.
3836  */
3837 void trace_check_vprintf(struct trace_iterator *iter, const char *fmt,
3838                          va_list ap)
3839 {
3840         const char *p = fmt;
3841         const char *str;
3842         int i, j;
3843
3844         if (WARN_ON_ONCE(!fmt))
3845                 return;
3846
3847         if (static_branch_unlikely(&trace_no_verify))
3848                 goto print;
3849
3850         /* Don't bother checking when doing a ftrace_dump() */
3851         if (iter->fmt == static_fmt_buf)
3852                 goto print;
3853
3854         while (*p) {
3855                 bool star = false;
3856                 int len = 0;
3857
3858                 j = 0;
3859
3860                 /* We only care about %s and variants */
3861                 for (i = 0; p[i]; i++) {
3862                         if (i + 1 >= iter->fmt_size) {
3863                                 /*
3864                                  * If we can't expand the copy buffer,
3865                                  * just print it.
3866                                  */
3867                                 if (!trace_iter_expand_format(iter))
3868                                         goto print;
3869                         }
3870
3871                         if (p[i] == '\\' && p[i+1]) {
3872                                 i++;
3873                                 continue;
3874                         }
3875                         if (p[i] == '%') {
3876                                 /* Need to test cases like %08.*s */
3877                                 for (j = 1; p[i+j]; j++) {
3878                                         if (isdigit(p[i+j]) ||
3879                                             p[i+j] == '.')
3880                                                 continue;
3881                                         if (p[i+j] == '*') {
3882                                                 star = true;
3883                                                 continue;
3884                                         }
3885                                         break;
3886                                 }
3887                                 if (p[i+j] == 's')
3888                                         break;
3889                                 star = false;
3890                         }
3891                         j = 0;
3892                 }
3893                 /* If no %s found then just print normally */
3894                 if (!p[i])
3895                         break;
3896
3897                 /* Copy up to the %s, and print that */
3898                 strncpy(iter->fmt, p, i);
3899                 iter->fmt[i] = '\0';
3900                 trace_seq_vprintf(&iter->seq, iter->fmt, ap);
3901
3902                 /*
3903                  * If iter->seq is full, the above call no longer guarantees
3904                  * that ap is in sync with fmt processing, and further calls
3905                  * to va_arg() can return wrong positional arguments.
3906                  *
3907                  * Ensure that ap is no longer used in this case.
3908                  */
3909                 if (iter->seq.full) {
3910                         p = "";
3911                         break;
3912                 }
3913
3914                 if (star)
3915                         len = va_arg(ap, int);
3916
3917                 /* The ap now points to the string data of the %s */
3918                 str = va_arg(ap, const char *);
3919
3920                 /*
3921                  * If you hit this warning, it is likely that the
3922                  * trace event in question used %s on a string that
3923                  * was saved at the time of the event, but may not be
3924                  * around when the trace is read. Use __string(),
3925                  * __assign_str() and __get_str() helpers in the TRACE_EVENT()
3926                  * instead. See samples/trace_events/trace-events-sample.h
3927                  * for reference.
3928                  */
3929                 if (WARN_ONCE(!trace_safe_str(iter, str, star, len),
3930                               "fmt: '%s' current_buffer: '%s'",
3931                               fmt, show_buffer(&iter->seq))) {
3932                         int ret;
3933
3934                         /* Try to safely read the string */
3935                         if (star) {
3936                                 if (len + 1 > iter->fmt_size)
3937                                         len = iter->fmt_size - 1;
3938                                 if (len < 0)
3939                                         len = 0;
3940                                 ret = copy_from_kernel_nofault(iter->fmt, str, len);
3941                                 iter->fmt[len] = 0;
3942                                 star = false;
3943                         } else {
3944                                 ret = strncpy_from_kernel_nofault(iter->fmt, str,
3945                                                                   iter->fmt_size);
3946                         }
3947                         if (ret < 0)
3948                                 trace_seq_printf(&iter->seq, "(0x%px)", str);
3949                         else
3950                                 trace_seq_printf(&iter->seq, "(0x%px:%s)",
3951                                                  str, iter->fmt);
3952                         str = "[UNSAFE-MEMORY]";
3953                         strcpy(iter->fmt, "%s");
3954                 } else {
3955                         strncpy(iter->fmt, p + i, j + 1);
3956                         iter->fmt[j+1] = '\0';
3957                 }
3958                 if (star)
3959                         trace_seq_printf(&iter->seq, iter->fmt, len, str);
3960                 else
3961                         trace_seq_printf(&iter->seq, iter->fmt, str);
3962
3963                 p += i + j + 1;
3964         }
3965  print:
3966         if (*p)
3967                 trace_seq_vprintf(&iter->seq, p, ap);
3968 }
3969
3970 const char *trace_event_format(struct trace_iterator *iter, const char *fmt)
3971 {
3972         const char *p, *new_fmt;
3973         char *q;
3974
3975         if (WARN_ON_ONCE(!fmt))
3976                 return fmt;
3977
3978         if (!iter->tr || iter->tr->trace_flags & TRACE_ITER_HASH_PTR)
3979                 return fmt;
3980
3981         p = fmt;
3982         new_fmt = q = iter->fmt;
3983         while (*p) {
3984                 if (unlikely(q - new_fmt + 3 > iter->fmt_size)) {
3985                         if (!trace_iter_expand_format(iter))
3986                                 return fmt;
3987
3988                         q += iter->fmt - new_fmt;
3989                         new_fmt = iter->fmt;
3990                 }
3991
3992                 *q++ = *p++;
3993
3994                 /* Replace %p with %px */
3995                 if (p[-1] == '%') {
3996                         if (p[0] == '%') {
3997                                 *q++ = *p++;
3998                         } else if (p[0] == 'p' && !isalnum(p[1])) {
3999                                 *q++ = *p++;
4000                                 *q++ = 'x';
4001                         }
4002                 }
4003         }
4004         *q = '\0';
4005
4006         return new_fmt;
4007 }
4008
4009 #define STATIC_TEMP_BUF_SIZE    128
4010 static char static_temp_buf[STATIC_TEMP_BUF_SIZE] __aligned(4);
4011
4012 /* Find the next real entry, without updating the iterator itself */
4013 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
4014                                           int *ent_cpu, u64 *ent_ts)
4015 {
4016         /* __find_next_entry will reset ent_size */
4017         int ent_size = iter->ent_size;
4018         struct trace_entry *entry;
4019
4020         /*
4021          * If called from ftrace_dump(), then the iter->temp buffer
4022          * will be the static_temp_buf and not created from kmalloc.
4023          * If the entry size is greater than the buffer, we can
4024          * not save it. Just return NULL in that case. This is only
4025          * used to add markers when two consecutive events' time
4026          * stamps have a large delta. See trace_print_lat_context()
4027          */
4028         if (iter->temp == static_temp_buf &&
4029             STATIC_TEMP_BUF_SIZE < ent_size)
4030                 return NULL;
4031
4032         /*
4033          * The __find_next_entry() may call peek_next_entry(), which may
4034          * call ring_buffer_peek() that may make the contents of iter->ent
4035          * undefined. Need to copy iter->ent now.
4036          */
4037         if (iter->ent && iter->ent != iter->temp) {
4038                 if ((!iter->temp || iter->temp_size < iter->ent_size) &&
4039                     !WARN_ON_ONCE(iter->temp == static_temp_buf)) {
4040                         void *temp;
4041                         temp = kmalloc(iter->ent_size, GFP_KERNEL);
4042                         if (!temp)
4043                                 return NULL;
4044                         kfree(iter->temp);
4045                         iter->temp = temp;
4046                         iter->temp_size = iter->ent_size;
4047                 }
4048                 memcpy(iter->temp, iter->ent, iter->ent_size);
4049                 iter->ent = iter->temp;
4050         }
4051         entry = __find_next_entry(iter, ent_cpu, NULL, ent_ts);
4052         /* Put back the original ent_size */
4053         iter->ent_size = ent_size;
4054
4055         return entry;
4056 }
4057
4058 /* Find the next real entry, and increment the iterator to the next entry */
4059 void *trace_find_next_entry_inc(struct trace_iterator *iter)
4060 {
4061         iter->ent = __find_next_entry(iter, &iter->cpu,
4062                                       &iter->lost_events, &iter->ts);
4063
4064         if (iter->ent)
4065                 trace_iterator_increment(iter);
4066
4067         return iter->ent ? iter : NULL;
4068 }
4069
4070 static void trace_consume(struct trace_iterator *iter)
4071 {
4072         ring_buffer_consume(iter->array_buffer->buffer, iter->cpu, &iter->ts,
4073                             &iter->lost_events);
4074 }
4075
4076 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
4077 {
4078         struct trace_iterator *iter = m->private;
4079         int i = (int)*pos;
4080         void *ent;
4081
4082         WARN_ON_ONCE(iter->leftover);
4083
4084         (*pos)++;
4085
4086         /* can't go backwards */
4087         if (iter->idx > i)
4088                 return NULL;
4089
4090         if (iter->idx < 0)
4091                 ent = trace_find_next_entry_inc(iter);
4092         else
4093                 ent = iter;
4094
4095         while (ent && iter->idx < i)
4096                 ent = trace_find_next_entry_inc(iter);
4097
4098         iter->pos = *pos;
4099
4100         return ent;
4101 }
4102
4103 void tracing_iter_reset(struct trace_iterator *iter, int cpu)
4104 {
4105         struct ring_buffer_iter *buf_iter;
4106         unsigned long entries = 0;
4107         u64 ts;
4108
4109         per_cpu_ptr(iter->array_buffer->data, cpu)->skipped_entries = 0;
4110
4111         buf_iter = trace_buffer_iter(iter, cpu);
4112         if (!buf_iter)
4113                 return;
4114
4115         ring_buffer_iter_reset(buf_iter);
4116
4117         /*
4118          * We could have the case with the max latency tracers
4119          * that a reset never took place on a cpu. This is evident
4120          * by the timestamp being before the start of the buffer.
4121          */
4122         while (ring_buffer_iter_peek(buf_iter, &ts)) {
4123                 if (ts >= iter->array_buffer->time_start)
4124                         break;
4125                 entries++;
4126                 ring_buffer_iter_advance(buf_iter);
4127         }
4128
4129         per_cpu_ptr(iter->array_buffer->data, cpu)->skipped_entries = entries;
4130 }
4131
4132 /*
4133  * The current tracer is copied to avoid a global locking
4134  * all around.
4135  */
4136 static void *s_start(struct seq_file *m, loff_t *pos)
4137 {
4138         struct trace_iterator *iter = m->private;
4139         struct trace_array *tr = iter->tr;
4140         int cpu_file = iter->cpu_file;
4141         void *p = NULL;
4142         loff_t l = 0;
4143         int cpu;
4144
4145         mutex_lock(&trace_types_lock);
4146         if (unlikely(tr->current_trace != iter->trace)) {
4147                 /* Close iter->trace before switching to the new current tracer */
4148                 if (iter->trace->close)
4149                         iter->trace->close(iter);
4150                 iter->trace = tr->current_trace;
4151                 /* Reopen the new current tracer */
4152                 if (iter->trace->open)
4153                         iter->trace->open(iter);
4154         }
4155         mutex_unlock(&trace_types_lock);
4156
4157 #ifdef CONFIG_TRACER_MAX_TRACE
4158         if (iter->snapshot && iter->trace->use_max_tr)
4159                 return ERR_PTR(-EBUSY);
4160 #endif
4161
4162         if (*pos != iter->pos) {
4163                 iter->ent = NULL;
4164                 iter->cpu = 0;
4165                 iter->idx = -1;
4166
4167                 if (cpu_file == RING_BUFFER_ALL_CPUS) {
4168                         for_each_tracing_cpu(cpu)
4169                                 tracing_iter_reset(iter, cpu);
4170                 } else
4171                         tracing_iter_reset(iter, cpu_file);
4172
4173                 iter->leftover = 0;
4174                 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
4175                         ;
4176
4177         } else {
4178                 /*
4179                  * If we overflowed the seq_file before, then we want
4180                  * to just reuse the trace_seq buffer again.
4181                  */
4182                 if (iter->leftover)
4183                         p = iter;
4184                 else {
4185                         l = *pos - 1;
4186                         p = s_next(m, p, &l);
4187                 }
4188         }
4189
4190         trace_event_read_lock();
4191         trace_access_lock(cpu_file);
4192         return p;
4193 }
4194
4195 static void s_stop(struct seq_file *m, void *p)
4196 {
4197         struct trace_iterator *iter = m->private;
4198
4199 #ifdef CONFIG_TRACER_MAX_TRACE
4200         if (iter->snapshot && iter->trace->use_max_tr)
4201                 return;
4202 #endif
4203
4204         trace_access_unlock(iter->cpu_file);
4205         trace_event_read_unlock();
4206 }
4207
4208 static void
4209 get_total_entries_cpu(struct array_buffer *buf, unsigned long *total,
4210                       unsigned long *entries, int cpu)
4211 {
4212         unsigned long count;
4213
4214         count = ring_buffer_entries_cpu(buf->buffer, cpu);
4215         /*
4216          * If this buffer has skipped entries, then we hold all
4217          * entries for the trace and we need to ignore the
4218          * ones before the time stamp.
4219          */
4220         if (per_cpu_ptr(buf->data, cpu)->skipped_entries) {
4221                 count -= per_cpu_ptr(buf->data, cpu)->skipped_entries;
4222                 /* total is the same as the entries */
4223                 *total = count;
4224         } else
4225                 *total = count +
4226                         ring_buffer_overrun_cpu(buf->buffer, cpu);
4227         *entries = count;
4228 }
4229
4230 static void
4231 get_total_entries(struct array_buffer *buf,
4232                   unsigned long *total, unsigned long *entries)
4233 {
4234         unsigned long t, e;
4235         int cpu;
4236
4237         *total = 0;
4238         *entries = 0;
4239
4240         for_each_tracing_cpu(cpu) {
4241                 get_total_entries_cpu(buf, &t, &e, cpu);
4242                 *total += t;
4243                 *entries += e;
4244         }
4245 }
4246
4247 unsigned long trace_total_entries_cpu(struct trace_array *tr, int cpu)
4248 {
4249         unsigned long total, entries;
4250
4251         if (!tr)
4252                 tr = &global_trace;
4253
4254         get_total_entries_cpu(&tr->array_buffer, &total, &entries, cpu);
4255
4256         return entries;
4257 }
4258
4259 unsigned long trace_total_entries(struct trace_array *tr)
4260 {
4261         unsigned long total, entries;
4262
4263         if (!tr)
4264                 tr = &global_trace;
4265
4266         get_total_entries(&tr->array_buffer, &total, &entries);
4267
4268         return entries;
4269 }
4270
4271 static void print_lat_help_header(struct seq_file *m)
4272 {
4273         seq_puts(m, "#                    _------=> CPU#            \n"
4274                     "#                   / _-----=> irqs-off/BH-disabled\n"
4275                     "#                  | / _----=> need-resched    \n"
4276                     "#                  || / _---=> hardirq/softirq \n"
4277                     "#                  ||| / _--=> preempt-depth   \n"
4278                     "#                  |||| / _-=> migrate-disable \n"
4279                     "#                  ||||| /     delay           \n"
4280                     "#  cmd     pid     |||||| time  |   caller     \n"
4281                     "#     \\   /        ||||||  \\    |    /       \n");
4282 }
4283
4284 static void print_event_info(struct array_buffer *buf, struct seq_file *m)
4285 {
4286         unsigned long total;
4287         unsigned long entries;
4288
4289         get_total_entries(buf, &total, &entries);
4290         seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu   #P:%d\n",
4291                    entries, total, num_online_cpus());
4292         seq_puts(m, "#\n");
4293 }
4294
4295 static void print_func_help_header(struct array_buffer *buf, struct seq_file *m,
4296                                    unsigned int flags)
4297 {
4298         bool tgid = flags & TRACE_ITER_RECORD_TGID;
4299
4300         print_event_info(buf, m);
4301
4302         seq_printf(m, "#           TASK-PID    %s CPU#     TIMESTAMP  FUNCTION\n", tgid ? "   TGID   " : "");
4303         seq_printf(m, "#              | |      %s   |         |         |\n",      tgid ? "     |    " : "");
4304 }
4305
4306 static void print_func_help_header_irq(struct array_buffer *buf, struct seq_file *m,
4307                                        unsigned int flags)
4308 {
4309         bool tgid = flags & TRACE_ITER_RECORD_TGID;
4310         static const char space[] = "            ";
4311         int prec = tgid ? 12 : 2;
4312
4313         print_event_info(buf, m);
4314
4315         seq_printf(m, "#                            %.*s  _-----=> irqs-off/BH-disabled\n", prec, space);
4316         seq_printf(m, "#                            %.*s / _----=> need-resched\n", prec, space);
4317         seq_printf(m, "#                            %.*s| / _---=> hardirq/softirq\n", prec, space);
4318         seq_printf(m, "#                            %.*s|| / _--=> preempt-depth\n", prec, space);
4319         seq_printf(m, "#                            %.*s||| / _-=> migrate-disable\n", prec, space);
4320         seq_printf(m, "#                            %.*s|||| /     delay\n", prec, space);
4321         seq_printf(m, "#           TASK-PID  %.*s CPU#  |||||  TIMESTAMP  FUNCTION\n", prec, "     TGID   ");
4322         seq_printf(m, "#              | |    %.*s   |   |||||     |         |\n", prec, "       |    ");
4323 }
4324
4325 void
4326 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
4327 {
4328         unsigned long sym_flags = (global_trace.trace_flags & TRACE_ITER_SYM_MASK);
4329         struct array_buffer *buf = iter->array_buffer;
4330         struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu);
4331         struct tracer *type = iter->trace;
4332         unsigned long entries;
4333         unsigned long total;
4334         const char *name = type->name;
4335
4336         get_total_entries(buf, &total, &entries);
4337
4338         seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
4339                    name, UTS_RELEASE);
4340         seq_puts(m, "# -----------------------------------"
4341                  "---------------------------------\n");
4342         seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
4343                    " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
4344                    nsecs_to_usecs(data->saved_latency),
4345                    entries,
4346                    total,
4347                    buf->cpu,
4348                    preempt_model_none()      ? "server" :
4349                    preempt_model_voluntary() ? "desktop" :
4350                    preempt_model_full()      ? "preempt" :
4351                    preempt_model_rt()        ? "preempt_rt" :
4352                    "unknown",
4353                    /* These are reserved for later use */
4354                    0, 0, 0, 0);
4355 #ifdef CONFIG_SMP
4356         seq_printf(m, " #P:%d)\n", num_online_cpus());
4357 #else
4358         seq_puts(m, ")\n");
4359 #endif
4360         seq_puts(m, "#    -----------------\n");
4361         seq_printf(m, "#    | task: %.16s-%d "
4362                    "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
4363                    data->comm, data->pid,
4364                    from_kuid_munged(seq_user_ns(m), data->uid), data->nice,
4365                    data->policy, data->rt_priority);
4366         seq_puts(m, "#    -----------------\n");
4367
4368         if (data->critical_start) {
4369                 seq_puts(m, "#  => started at: ");
4370                 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
4371                 trace_print_seq(m, &iter->seq);
4372                 seq_puts(m, "\n#  => ended at:   ");
4373                 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
4374                 trace_print_seq(m, &iter->seq);
4375                 seq_puts(m, "\n#\n");
4376         }
4377
4378         seq_puts(m, "#\n");
4379 }
4380
4381 static void test_cpu_buff_start(struct trace_iterator *iter)
4382 {
4383         struct trace_seq *s = &iter->seq;
4384         struct trace_array *tr = iter->tr;
4385
4386         if (!(tr->trace_flags & TRACE_ITER_ANNOTATE))
4387                 return;
4388
4389         if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
4390                 return;
4391
4392         if (cpumask_available(iter->started) &&
4393             cpumask_test_cpu(iter->cpu, iter->started))
4394                 return;
4395
4396         if (per_cpu_ptr(iter->array_buffer->data, iter->cpu)->skipped_entries)
4397                 return;
4398
4399         if (cpumask_available(iter->started))
4400                 cpumask_set_cpu(iter->cpu, iter->started);
4401
4402         /* Don't print started cpu buffer for the first entry of the trace */
4403         if (iter->idx > 1)
4404                 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
4405                                 iter->cpu);
4406 }
4407
4408 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
4409 {
4410         struct trace_array *tr = iter->tr;
4411         struct trace_seq *s = &iter->seq;
4412         unsigned long sym_flags = (tr->trace_flags & TRACE_ITER_SYM_MASK);
4413         struct trace_entry *entry;
4414         struct trace_event *event;
4415
4416         entry = iter->ent;
4417
4418         test_cpu_buff_start(iter);
4419
4420         event = ftrace_find_event(entry->type);
4421
4422         if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
4423                 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
4424                         trace_print_lat_context(iter);
4425                 else
4426                         trace_print_context(iter);
4427         }
4428
4429         if (trace_seq_has_overflowed(s))
4430                 return TRACE_TYPE_PARTIAL_LINE;
4431
4432         if (event) {
4433                 if (tr->trace_flags & TRACE_ITER_FIELDS)
4434                         return print_event_fields(iter, event);
4435                 return event->funcs->trace(iter, sym_flags, event);
4436         }
4437
4438         trace_seq_printf(s, "Unknown type %d\n", entry->type);
4439
4440         return trace_handle_return(s);
4441 }
4442
4443 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
4444 {
4445         struct trace_array *tr = iter->tr;
4446         struct trace_seq *s = &iter->seq;
4447         struct trace_entry *entry;
4448         struct trace_event *event;
4449
4450         entry = iter->ent;
4451
4452         if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO)
4453                 trace_seq_printf(s, "%d %d %llu ",
4454                                  entry->pid, iter->cpu, iter->ts);
4455
4456         if (trace_seq_has_overflowed(s))
4457                 return TRACE_TYPE_PARTIAL_LINE;
4458
4459         event = ftrace_find_event(entry->type);
4460         if (event)
4461                 return event->funcs->raw(iter, 0, event);
4462
4463         trace_seq_printf(s, "%d ?\n", entry->type);
4464
4465         return trace_handle_return(s);
4466 }
4467
4468 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
4469 {
4470         struct trace_array *tr = iter->tr;
4471         struct trace_seq *s = &iter->seq;
4472         unsigned char newline = '\n';
4473         struct trace_entry *entry;
4474         struct trace_event *event;
4475
4476         entry = iter->ent;
4477
4478         if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
4479                 SEQ_PUT_HEX_FIELD(s, entry->pid);
4480                 SEQ_PUT_HEX_FIELD(s, iter->cpu);
4481                 SEQ_PUT_HEX_FIELD(s, iter->ts);
4482                 if (trace_seq_has_overflowed(s))
4483                         return TRACE_TYPE_PARTIAL_LINE;
4484         }
4485
4486         event = ftrace_find_event(entry->type);
4487         if (event) {
4488                 enum print_line_t ret = event->funcs->hex(iter, 0, event);
4489                 if (ret != TRACE_TYPE_HANDLED)
4490                         return ret;
4491         }
4492
4493         SEQ_PUT_FIELD(s, newline);
4494
4495         return trace_handle_return(s);
4496 }
4497
4498 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
4499 {
4500         struct trace_array *tr = iter->tr;
4501         struct trace_seq *s = &iter->seq;
4502         struct trace_entry *entry;
4503         struct trace_event *event;
4504
4505         entry = iter->ent;
4506
4507         if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
4508                 SEQ_PUT_FIELD(s, entry->pid);
4509                 SEQ_PUT_FIELD(s, iter->cpu);
4510                 SEQ_PUT_FIELD(s, iter->ts);
4511                 if (trace_seq_has_overflowed(s))
4512                         return TRACE_TYPE_PARTIAL_LINE;
4513         }
4514
4515         event = ftrace_find_event(entry->type);
4516         return event ? event->funcs->binary(iter, 0, event) :
4517                 TRACE_TYPE_HANDLED;
4518 }
4519
4520 int trace_empty(struct trace_iterator *iter)
4521 {
4522         struct ring_buffer_iter *buf_iter;
4523         int cpu;
4524
4525         /* If we are looking at one CPU buffer, only check that one */
4526         if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4527                 cpu = iter->cpu_file;
4528                 buf_iter = trace_buffer_iter(iter, cpu);
4529                 if (buf_iter) {
4530                         if (!ring_buffer_iter_empty(buf_iter))
4531                                 return 0;
4532                 } else {
4533                         if (!ring_buffer_empty_cpu(iter->array_buffer->buffer, cpu))
4534                                 return 0;
4535                 }
4536                 return 1;
4537         }
4538
4539         for_each_tracing_cpu(cpu) {
4540                 buf_iter = trace_buffer_iter(iter, cpu);
4541                 if (buf_iter) {
4542                         if (!ring_buffer_iter_empty(buf_iter))
4543                                 return 0;
4544                 } else {
4545                         if (!ring_buffer_empty_cpu(iter->array_buffer->buffer, cpu))
4546                                 return 0;
4547                 }
4548         }
4549
4550         return 1;
4551 }
4552
4553 /*  Called with trace_event_read_lock() held. */
4554 enum print_line_t print_trace_line(struct trace_iterator *iter)
4555 {
4556         struct trace_array *tr = iter->tr;
4557         unsigned long trace_flags = tr->trace_flags;
4558         enum print_line_t ret;
4559
4560         if (iter->lost_events) {
4561                 if (iter->lost_events == (unsigned long)-1)
4562                         trace_seq_printf(&iter->seq, "CPU:%d [LOST EVENTS]\n",
4563                                          iter->cpu);
4564                 else
4565                         trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
4566                                          iter->cpu, iter->lost_events);
4567                 if (trace_seq_has_overflowed(&iter->seq))
4568                         return TRACE_TYPE_PARTIAL_LINE;
4569         }
4570
4571         if (iter->trace && iter->trace->print_line) {
4572                 ret = iter->trace->print_line(iter);
4573                 if (ret != TRACE_TYPE_UNHANDLED)
4574                         return ret;
4575         }
4576
4577         if (iter->ent->type == TRACE_BPUTS &&
4578                         trace_flags & TRACE_ITER_PRINTK &&
4579                         trace_flags & TRACE_ITER_PRINTK_MSGONLY)
4580                 return trace_print_bputs_msg_only(iter);
4581
4582         if (iter->ent->type == TRACE_BPRINT &&
4583                         trace_flags & TRACE_ITER_PRINTK &&
4584                         trace_flags & TRACE_ITER_PRINTK_MSGONLY)
4585                 return trace_print_bprintk_msg_only(iter);
4586
4587         if (iter->ent->type == TRACE_PRINT &&
4588                         trace_flags & TRACE_ITER_PRINTK &&
4589                         trace_flags & TRACE_ITER_PRINTK_MSGONLY)
4590                 return trace_print_printk_msg_only(iter);
4591
4592         if (trace_flags & TRACE_ITER_BIN)
4593                 return print_bin_fmt(iter);
4594
4595         if (trace_flags & TRACE_ITER_HEX)
4596                 return print_hex_fmt(iter);
4597
4598         if (trace_flags & TRACE_ITER_RAW)
4599                 return print_raw_fmt(iter);
4600
4601         return print_trace_fmt(iter);
4602 }
4603
4604 void trace_latency_header(struct seq_file *m)
4605 {
4606         struct trace_iterator *iter = m->private;
4607         struct trace_array *tr = iter->tr;
4608
4609         /* print nothing if the buffers are empty */
4610         if (trace_empty(iter))
4611                 return;
4612
4613         if (iter->iter_flags & TRACE_FILE_LAT_FMT)
4614                 print_trace_header(m, iter);
4615
4616         if (!(tr->trace_flags & TRACE_ITER_VERBOSE))
4617                 print_lat_help_header(m);
4618 }
4619
4620 void trace_default_header(struct seq_file *m)
4621 {
4622         struct trace_iterator *iter = m->private;
4623         struct trace_array *tr = iter->tr;
4624         unsigned long trace_flags = tr->trace_flags;
4625
4626         if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
4627                 return;
4628
4629         if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
4630                 /* print nothing if the buffers are empty */
4631                 if (trace_empty(iter))
4632                         return;
4633                 print_trace_header(m, iter);
4634                 if (!(trace_flags & TRACE_ITER_VERBOSE))
4635                         print_lat_help_header(m);
4636         } else {
4637                 if (!(trace_flags & TRACE_ITER_VERBOSE)) {
4638                         if (trace_flags & TRACE_ITER_IRQ_INFO)
4639                                 print_func_help_header_irq(iter->array_buffer,
4640                                                            m, trace_flags);
4641                         else
4642                                 print_func_help_header(iter->array_buffer, m,
4643                                                        trace_flags);
4644                 }
4645         }
4646 }
4647
4648 static void test_ftrace_alive(struct seq_file *m)
4649 {
4650         if (!ftrace_is_dead())
4651                 return;
4652         seq_puts(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n"
4653                     "#          MAY BE MISSING FUNCTION EVENTS\n");
4654 }
4655
4656 #ifdef CONFIG_TRACER_MAX_TRACE
4657 static void show_snapshot_main_help(struct seq_file *m)
4658 {
4659         seq_puts(m, "# echo 0 > snapshot : Clears and frees snapshot buffer\n"
4660                     "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"
4661                     "#                      Takes a snapshot of the main buffer.\n"
4662                     "# echo 2 > snapshot : Clears snapshot buffer (but does not allocate or free)\n"
4663                     "#                      (Doesn't have to be '2' works with any number that\n"
4664                     "#                       is not a '0' or '1')\n");
4665 }
4666
4667 static void show_snapshot_percpu_help(struct seq_file *m)
4668 {
4669         seq_puts(m, "# echo 0 > snapshot : Invalid for per_cpu snapshot file.\n");
4670 #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
4671         seq_puts(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"
4672                     "#                      Takes a snapshot of the main buffer for this cpu.\n");
4673 #else
4674         seq_puts(m, "# echo 1 > snapshot : Not supported with this kernel.\n"
4675                     "#                     Must use main snapshot file to allocate.\n");
4676 #endif
4677         seq_puts(m, "# echo 2 > snapshot : Clears this cpu's snapshot buffer (but does not allocate)\n"
4678                     "#                      (Doesn't have to be '2' works with any number that\n"
4679                     "#                       is not a '0' or '1')\n");
4680 }
4681
4682 static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter)
4683 {
4684         if (iter->tr->allocated_snapshot)
4685                 seq_puts(m, "#\n# * Snapshot is allocated *\n#\n");
4686         else
4687                 seq_puts(m, "#\n# * Snapshot is freed *\n#\n");
4688
4689         seq_puts(m, "# Snapshot commands:\n");
4690         if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
4691                 show_snapshot_main_help(m);
4692         else
4693                 show_snapshot_percpu_help(m);
4694 }
4695 #else
4696 /* Should never be called */
4697 static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { }
4698 #endif
4699
4700 static int s_show(struct seq_file *m, void *v)
4701 {
4702         struct trace_iterator *iter = v;
4703         int ret;
4704
4705         if (iter->ent == NULL) {
4706                 if (iter->tr) {
4707                         seq_printf(m, "# tracer: %s\n", iter->trace->name);
4708                         seq_puts(m, "#\n");
4709                         test_ftrace_alive(m);
4710                 }
4711                 if (iter->snapshot && trace_empty(iter))
4712                         print_snapshot_help(m, iter);
4713                 else if (iter->trace && iter->trace->print_header)
4714                         iter->trace->print_header(m);
4715                 else
4716                         trace_default_header(m);
4717
4718         } else if (iter->leftover) {
4719                 /*
4720                  * If we filled the seq_file buffer earlier, we
4721                  * want to just show it now.
4722                  */
4723                 ret = trace_print_seq(m, &iter->seq);
4724
4725                 /* ret should this time be zero, but you never know */
4726                 iter->leftover = ret;
4727
4728         } else {
4729                 print_trace_line(iter);
4730                 ret = trace_print_seq(m, &iter->seq);
4731                 /*
4732                  * If we overflow the seq_file buffer, then it will
4733                  * ask us for this data again at start up.
4734                  * Use that instead.
4735                  *  ret is 0 if seq_file write succeeded.
4736                  *        -1 otherwise.
4737                  */
4738                 iter->leftover = ret;
4739         }
4740
4741         return 0;
4742 }
4743
4744 /*
4745  * Should be used after trace_array_get(), trace_types_lock
4746  * ensures that i_cdev was already initialized.
4747  */
4748 static inline int tracing_get_cpu(struct inode *inode)
4749 {
4750         if (inode->i_cdev) /* See trace_create_cpu_file() */
4751                 return (long)inode->i_cdev - 1;
4752         return RING_BUFFER_ALL_CPUS;
4753 }
4754
4755 static const struct seq_operations tracer_seq_ops = {
4756         .start          = s_start,
4757         .next           = s_next,
4758         .stop           = s_stop,
4759         .show           = s_show,
4760 };
4761
4762 /*
4763  * Note, as iter itself can be allocated and freed in different
4764  * ways, this function is only used to free its content, and not
4765  * the iterator itself. The only requirement to all the allocations
4766  * is that it must zero all fields (kzalloc), as freeing works with
4767  * ethier allocated content or NULL.
4768  */
4769 static void free_trace_iter_content(struct trace_iterator *iter)
4770 {
4771         /* The fmt is either NULL, allocated or points to static_fmt_buf */
4772         if (iter->fmt != static_fmt_buf)
4773                 kfree(iter->fmt);
4774
4775         kfree(iter->temp);
4776         kfree(iter->buffer_iter);
4777         mutex_destroy(&iter->mutex);
4778         free_cpumask_var(iter->started);
4779 }
4780
4781 static struct trace_iterator *
4782 __tracing_open(struct inode *inode, struct file *file, bool snapshot)
4783 {
4784         struct trace_array *tr = inode->i_private;
4785         struct trace_iterator *iter;
4786         int cpu;
4787
4788         if (tracing_disabled)
4789                 return ERR_PTR(-ENODEV);
4790
4791         iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
4792         if (!iter)
4793                 return ERR_PTR(-ENOMEM);
4794
4795         iter->buffer_iter = kcalloc(nr_cpu_ids, sizeof(*iter->buffer_iter),
4796                                     GFP_KERNEL);
4797         if (!iter->buffer_iter)
4798                 goto release;
4799
4800         /*
4801          * trace_find_next_entry() may need to save off iter->ent.
4802          * It will place it into the iter->temp buffer. As most
4803          * events are less than 128, allocate a buffer of that size.
4804          * If one is greater, then trace_find_next_entry() will
4805          * allocate a new buffer to adjust for the bigger iter->ent.
4806          * It's not critical if it fails to get allocated here.
4807          */
4808         iter->temp = kmalloc(128, GFP_KERNEL);
4809         if (iter->temp)
4810                 iter->temp_size = 128;
4811
4812         /*
4813          * trace_event_printf() may need to modify given format
4814          * string to replace %p with %px so that it shows real address
4815          * instead of hash value. However, that is only for the event
4816          * tracing, other tracer may not need. Defer the allocation
4817          * until it is needed.
4818          */
4819         iter->fmt = NULL;
4820         iter->fmt_size = 0;
4821
4822         mutex_lock(&trace_types_lock);
4823         iter->trace = tr->current_trace;
4824
4825         if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
4826                 goto fail;
4827
4828         iter->tr = tr;
4829
4830 #ifdef CONFIG_TRACER_MAX_TRACE
4831         /* Currently only the top directory has a snapshot */
4832         if (tr->current_trace->print_max || snapshot)
4833                 iter->array_buffer = &tr->max_buffer;
4834         else
4835 #endif
4836                 iter->array_buffer = &tr->array_buffer;
4837         iter->snapshot = snapshot;
4838         iter->pos = -1;
4839         iter->cpu_file = tracing_get_cpu(inode);
4840         mutex_init(&iter->mutex);
4841
4842         /* Notify the tracer early; before we stop tracing. */
4843         if (iter->trace->open)
4844                 iter->trace->open(iter);
4845
4846         /* Annotate start of buffers if we had overruns */
4847         if (ring_buffer_overruns(iter->array_buffer->buffer))
4848                 iter->iter_flags |= TRACE_FILE_ANNOTATE;
4849
4850         /* Output in nanoseconds only if we are using a clock in nanoseconds. */
4851         if (trace_clocks[tr->clock_id].in_ns)
4852                 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
4853
4854         /*
4855          * If pause-on-trace is enabled, then stop the trace while
4856          * dumping, unless this is the "snapshot" file
4857          */
4858         if (!iter->snapshot && (tr->trace_flags & TRACE_ITER_PAUSE_ON_TRACE))
4859                 tracing_stop_tr(tr);
4860
4861         if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
4862                 for_each_tracing_cpu(cpu) {
4863                         iter->buffer_iter[cpu] =
4864                                 ring_buffer_read_prepare(iter->array_buffer->buffer,
4865                                                          cpu, GFP_KERNEL);
4866                 }
4867                 ring_buffer_read_prepare_sync();
4868                 for_each_tracing_cpu(cpu) {
4869                         ring_buffer_read_start(iter->buffer_iter[cpu]);
4870                         tracing_iter_reset(iter, cpu);
4871                 }
4872         } else {
4873                 cpu = iter->cpu_file;
4874                 iter->buffer_iter[cpu] =
4875                         ring_buffer_read_prepare(iter->array_buffer->buffer,
4876                                                  cpu, GFP_KERNEL);
4877                 ring_buffer_read_prepare_sync();
4878                 ring_buffer_read_start(iter->buffer_iter[cpu]);
4879                 tracing_iter_reset(iter, cpu);
4880         }
4881
4882         mutex_unlock(&trace_types_lock);
4883
4884         return iter;
4885
4886  fail:
4887         mutex_unlock(&trace_types_lock);
4888         free_trace_iter_content(iter);
4889 release:
4890         seq_release_private(inode, file);
4891         return ERR_PTR(-ENOMEM);
4892 }
4893
4894 int tracing_open_generic(struct inode *inode, struct file *filp)
4895 {
4896         int ret;
4897
4898         ret = tracing_check_open_get_tr(NULL);
4899         if (ret)
4900                 return ret;
4901
4902         filp->private_data = inode->i_private;
4903         return 0;
4904 }
4905
4906 bool tracing_is_disabled(void)
4907 {
4908         return (tracing_disabled) ? true: false;
4909 }
4910
4911 /*
4912  * Open and update trace_array ref count.
4913  * Must have the current trace_array passed to it.
4914  */
4915 int tracing_open_generic_tr(struct inode *inode, struct file *filp)
4916 {
4917         struct trace_array *tr = inode->i_private;
4918         int ret;
4919
4920         ret = tracing_check_open_get_tr(tr);
4921         if (ret)
4922                 return ret;
4923
4924         filp->private_data = inode->i_private;
4925
4926         return 0;
4927 }
4928
4929 /*
4930  * The private pointer of the inode is the trace_event_file.
4931  * Update the tr ref count associated to it.
4932  */
4933 int tracing_open_file_tr(struct inode *inode, struct file *filp)
4934 {
4935         struct trace_event_file *file = inode->i_private;
4936         int ret;
4937
4938         ret = tracing_check_open_get_tr(file->tr);
4939         if (ret)
4940                 return ret;
4941
4942         mutex_lock(&event_mutex);
4943
4944         /* Fail if the file is marked for removal */
4945         if (file->flags & EVENT_FILE_FL_FREED) {
4946                 trace_array_put(file->tr);
4947                 ret = -ENODEV;
4948         } else {
4949                 event_file_get(file);
4950         }
4951
4952         mutex_unlock(&event_mutex);
4953         if (ret)
4954                 return ret;
4955
4956         filp->private_data = inode->i_private;
4957
4958         return 0;
4959 }
4960
4961 int tracing_release_file_tr(struct inode *inode, struct file *filp)
4962 {
4963         struct trace_event_file *file = inode->i_private;
4964
4965         trace_array_put(file->tr);
4966         event_file_put(file);
4967
4968         return 0;
4969 }
4970
4971 static int tracing_mark_open(struct inode *inode, struct file *filp)
4972 {
4973         stream_open(inode, filp);
4974         return tracing_open_generic_tr(inode, filp);
4975 }
4976
4977 static int tracing_release(struct inode *inode, struct file *file)
4978 {
4979         struct trace_array *tr = inode->i_private;
4980         struct seq_file *m = file->private_data;
4981         struct trace_iterator *iter;
4982         int cpu;
4983
4984         if (!(file->f_mode & FMODE_READ)) {
4985                 trace_array_put(tr);
4986                 return 0;
4987         }
4988
4989         /* Writes do not use seq_file */
4990         iter = m->private;
4991         mutex_lock(&trace_types_lock);
4992
4993         for_each_tracing_cpu(cpu) {
4994                 if (iter->buffer_iter[cpu])
4995                         ring_buffer_read_finish(iter->buffer_iter[cpu]);
4996         }
4997
4998         if (iter->trace && iter->trace->close)
4999                 iter->trace->close(iter);
5000
5001         if (!iter->snapshot && tr->stop_count)
5002                 /* reenable tracing if it was previously enabled */
5003                 tracing_start_tr(tr);
5004
5005         __trace_array_put(tr);
5006
5007         mutex_unlock(&trace_types_lock);
5008
5009         free_trace_iter_content(iter);
5010         seq_release_private(inode, file);
5011
5012         return 0;
5013 }
5014
5015 static int tracing_release_generic_tr(struct inode *inode, struct file *file)
5016 {
5017         struct trace_array *tr = inode->i_private;
5018
5019         trace_array_put(tr);
5020         return 0;
5021 }
5022
5023 static int tracing_single_release_tr(struct inode *inode, struct file *file)
5024 {
5025         struct trace_array *tr = inode->i_private;
5026
5027         trace_array_put(tr);
5028
5029         return single_release(inode, file);
5030 }
5031
5032 static int tracing_open(struct inode *inode, struct file *file)
5033 {
5034         struct trace_array *tr = inode->i_private;
5035         struct trace_iterator *iter;
5036         int ret;
5037
5038         ret = tracing_check_open_get_tr(tr);
5039         if (ret)
5040                 return ret;
5041
5042         /* If this file was open for write, then erase contents */
5043         if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
5044                 int cpu = tracing_get_cpu(inode);
5045                 struct array_buffer *trace_buf = &tr->array_buffer;
5046
5047 #ifdef CONFIG_TRACER_MAX_TRACE
5048                 if (tr->current_trace->print_max)
5049                         trace_buf = &tr->max_buffer;
5050 #endif
5051
5052                 if (cpu == RING_BUFFER_ALL_CPUS)
5053                         tracing_reset_online_cpus(trace_buf);
5054                 else
5055                         tracing_reset_cpu(trace_buf, cpu);
5056         }
5057
5058         if (file->f_mode & FMODE_READ) {
5059                 iter = __tracing_open(inode, file, false);
5060                 if (IS_ERR(iter))
5061                         ret = PTR_ERR(iter);
5062                 else if (tr->trace_flags & TRACE_ITER_LATENCY_FMT)
5063                         iter->iter_flags |= TRACE_FILE_LAT_FMT;
5064         }
5065
5066         if (ret < 0)
5067                 trace_array_put(tr);
5068
5069         return ret;
5070 }
5071
5072 /*
5073  * Some tracers are not suitable for instance buffers.
5074  * A tracer is always available for the global array (toplevel)
5075  * or if it explicitly states that it is.
5076  */
5077 static bool
5078 trace_ok_for_array(struct tracer *t, struct trace_array *tr)
5079 {
5080         return (tr->flags & TRACE_ARRAY_FL_GLOBAL) || t->allow_instances;
5081 }
5082
5083 /* Find the next tracer that this trace array may use */
5084 static struct tracer *
5085 get_tracer_for_array(struct trace_array *tr, struct tracer *t)
5086 {
5087         while (t && !trace_ok_for_array(t, tr))
5088                 t = t->next;
5089
5090         return t;
5091 }
5092
5093 static void *
5094 t_next(struct seq_file *m, void *v, loff_t *pos)
5095 {
5096         struct trace_array *tr = m->private;
5097         struct tracer *t = v;
5098
5099         (*pos)++;
5100
5101         if (t)
5102                 t = get_tracer_for_array(tr, t->next);
5103
5104         return t;
5105 }
5106
5107 static void *t_start(struct seq_file *m, loff_t *pos)
5108 {
5109         struct trace_array *tr = m->private;
5110         struct tracer *t;
5111         loff_t l = 0;
5112
5113         mutex_lock(&trace_types_lock);
5114
5115         t = get_tracer_for_array(tr, trace_types);
5116         for (; t && l < *pos; t = t_next(m, t, &l))
5117                         ;
5118
5119         return t;
5120 }
5121
5122 static void t_stop(struct seq_file *m, void *p)
5123 {
5124         mutex_unlock(&trace_types_lock);
5125 }
5126
5127 static int t_show(struct seq_file *m, void *v)
5128 {
5129         struct tracer *t = v;
5130
5131         if (!t)
5132                 return 0;
5133
5134         seq_puts(m, t->name);
5135         if (t->next)
5136                 seq_putc(m, ' ');
5137         else
5138                 seq_putc(m, '\n');
5139
5140         return 0;
5141 }
5142
5143 static const struct seq_operations show_traces_seq_ops = {
5144         .start          = t_start,
5145         .next           = t_next,
5146         .stop           = t_stop,
5147         .show           = t_show,
5148 };
5149
5150 static int show_traces_open(struct inode *inode, struct file *file)
5151 {
5152         struct trace_array *tr = inode->i_private;
5153         struct seq_file *m;
5154         int ret;
5155
5156         ret = tracing_check_open_get_tr(tr);
5157         if (ret)
5158                 return ret;
5159
5160         ret = seq_open(file, &show_traces_seq_ops);
5161         if (ret) {
5162                 trace_array_put(tr);
5163                 return ret;
5164         }
5165
5166         m = file->private_data;
5167         m->private = tr;
5168
5169         return 0;
5170 }
5171
5172 static int show_traces_release(struct inode *inode, struct file *file)
5173 {
5174         struct trace_array *tr = inode->i_private;
5175
5176         trace_array_put(tr);
5177         return seq_release(inode, file);
5178 }
5179
5180 static ssize_t
5181 tracing_write_stub(struct file *filp, const char __user *ubuf,
5182                    size_t count, loff_t *ppos)
5183 {
5184         return count;
5185 }
5186
5187 loff_t tracing_lseek(struct file *file, loff_t offset, int whence)
5188 {
5189         int ret;
5190
5191         if (file->f_mode & FMODE_READ)
5192                 ret = seq_lseek(file, offset, whence);
5193         else
5194                 file->f_pos = ret = 0;
5195
5196         return ret;
5197 }
5198
5199 static const struct file_operations tracing_fops = {
5200         .open           = tracing_open,
5201         .read           = seq_read,
5202         .read_iter      = seq_read_iter,
5203         .splice_read    = copy_splice_read,
5204         .write          = tracing_write_stub,
5205         .llseek         = tracing_lseek,
5206         .release        = tracing_release,
5207 };
5208
5209 static const struct file_operations show_traces_fops = {
5210         .open           = show_traces_open,
5211         .read           = seq_read,
5212         .llseek         = seq_lseek,
5213         .release        = show_traces_release,
5214 };
5215
5216 static ssize_t
5217 tracing_cpumask_read(struct file *filp, char __user *ubuf,
5218                      size_t count, loff_t *ppos)
5219 {
5220         struct trace_array *tr = file_inode(filp)->i_private;
5221         char *mask_str;
5222         int len;
5223
5224         len = snprintf(NULL, 0, "%*pb\n",
5225                        cpumask_pr_args(tr->tracing_cpumask)) + 1;
5226         mask_str = kmalloc(len, GFP_KERNEL);
5227         if (!mask_str)
5228                 return -ENOMEM;
5229
5230         len = snprintf(mask_str, len, "%*pb\n",
5231                        cpumask_pr_args(tr->tracing_cpumask));
5232         if (len >= count) {
5233                 count = -EINVAL;
5234                 goto out_err;
5235         }
5236         count = simple_read_from_buffer(ubuf, count, ppos, mask_str, len);
5237
5238 out_err:
5239         kfree(mask_str);
5240
5241         return count;
5242 }
5243
5244 int tracing_set_cpumask(struct trace_array *tr,
5245                         cpumask_var_t tracing_cpumask_new)
5246 {
5247         int cpu;
5248
5249         if (!tr)
5250                 return -EINVAL;
5251
5252         local_irq_disable();
5253         arch_spin_lock(&tr->max_lock);
5254         for_each_tracing_cpu(cpu) {
5255                 /*
5256                  * Increase/decrease the disabled counter if we are
5257                  * about to flip a bit in the cpumask:
5258                  */
5259                 if (cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
5260                                 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
5261                         atomic_inc(&per_cpu_ptr(tr->array_buffer.data, cpu)->disabled);
5262                         ring_buffer_record_disable_cpu(tr->array_buffer.buffer, cpu);
5263 #ifdef CONFIG_TRACER_MAX_TRACE
5264                         ring_buffer_record_disable_cpu(tr->max_buffer.buffer, cpu);
5265 #endif
5266                 }
5267                 if (!cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
5268                                 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
5269                         atomic_dec(&per_cpu_ptr(tr->array_buffer.data, cpu)->disabled);
5270                         ring_buffer_record_enable_cpu(tr->array_buffer.buffer, cpu);
5271 #ifdef CONFIG_TRACER_MAX_TRACE
5272                         ring_buffer_record_enable_cpu(tr->max_buffer.buffer, cpu);
5273 #endif
5274                 }
5275         }
5276         arch_spin_unlock(&tr->max_lock);
5277         local_irq_enable();
5278
5279         cpumask_copy(tr->tracing_cpumask, tracing_cpumask_new);
5280
5281         return 0;
5282 }
5283
5284 static ssize_t
5285 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
5286                       size_t count, loff_t *ppos)
5287 {
5288         struct trace_array *tr = file_inode(filp)->i_private;
5289         cpumask_var_t tracing_cpumask_new;
5290         int err;
5291
5292         if (!zalloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
5293                 return -ENOMEM;
5294
5295         err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
5296         if (err)
5297                 goto err_free;
5298
5299         err = tracing_set_cpumask(tr, tracing_cpumask_new);
5300         if (err)
5301                 goto err_free;
5302
5303         free_cpumask_var(tracing_cpumask_new);
5304
5305         return count;
5306
5307 err_free:
5308         free_cpumask_var(tracing_cpumask_new);
5309
5310         return err;
5311 }
5312
5313 static const struct file_operations tracing_cpumask_fops = {
5314         .open           = tracing_open_generic_tr,
5315         .read           = tracing_cpumask_read,
5316         .write          = tracing_cpumask_write,
5317         .release        = tracing_release_generic_tr,
5318         .llseek         = generic_file_llseek,
5319 };
5320
5321 static int tracing_trace_options_show(struct seq_file *m, void *v)
5322 {
5323         struct tracer_opt *trace_opts;
5324         struct trace_array *tr = m->private;
5325         u32 tracer_flags;
5326         int i;
5327
5328         mutex_lock(&trace_types_lock);
5329         tracer_flags = tr->current_trace->flags->val;
5330         trace_opts = tr->current_trace->flags->opts;
5331
5332         for (i = 0; trace_options[i]; i++) {
5333                 if (tr->trace_flags & (1 << i))
5334                         seq_printf(m, "%s\n", trace_options[i]);
5335                 else
5336                         seq_printf(m, "no%s\n", trace_options[i]);
5337         }
5338
5339         for (i = 0; trace_opts[i].name; i++) {
5340                 if (tracer_flags & trace_opts[i].bit)
5341                         seq_printf(m, "%s\n", trace_opts[i].name);
5342                 else
5343                         seq_printf(m, "no%s\n", trace_opts[i].name);
5344         }
5345         mutex_unlock(&trace_types_lock);
5346
5347         return 0;
5348 }
5349
5350 static int __set_tracer_option(struct trace_array *tr,
5351                                struct tracer_flags *tracer_flags,
5352                                struct tracer_opt *opts, int neg)
5353 {
5354         struct tracer *trace = tracer_flags->trace;
5355         int ret;
5356
5357         ret = trace->set_flag(tr, tracer_flags->val, opts->bit, !neg);
5358         if (ret)
5359                 return ret;
5360
5361         if (neg)
5362                 tracer_flags->val &= ~opts->bit;
5363         else
5364                 tracer_flags->val |= opts->bit;
5365         return 0;
5366 }
5367
5368 /* Try to assign a tracer specific option */
5369 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg)
5370 {
5371         struct tracer *trace = tr->current_trace;
5372         struct tracer_flags *tracer_flags = trace->flags;
5373         struct tracer_opt *opts = NULL;
5374         int i;
5375
5376         for (i = 0; tracer_flags->opts[i].name; i++) {
5377                 opts = &tracer_flags->opts[i];
5378
5379                 if (strcmp(cmp, opts->name) == 0)
5380                         return __set_tracer_option(tr, trace->flags, opts, neg);
5381         }
5382
5383         return -EINVAL;
5384 }
5385
5386 /* Some tracers require overwrite to stay enabled */
5387 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set)
5388 {
5389         if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set)
5390                 return -1;
5391
5392         return 0;
5393 }
5394
5395 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
5396 {
5397         int *map;
5398
5399         if ((mask == TRACE_ITER_RECORD_TGID) ||
5400             (mask == TRACE_ITER_RECORD_CMD))
5401                 lockdep_assert_held(&event_mutex);
5402
5403         /* do nothing if flag is already set */
5404         if (!!(tr->trace_flags & mask) == !!enabled)
5405                 return 0;
5406
5407         /* Give the tracer a chance to approve the change */
5408         if (tr->current_trace->flag_changed)
5409                 if (tr->current_trace->flag_changed(tr, mask, !!enabled))
5410                         return -EINVAL;
5411
5412         if (enabled)
5413                 tr->trace_flags |= mask;
5414         else
5415                 tr->trace_flags &= ~mask;
5416
5417         if (mask == TRACE_ITER_RECORD_CMD)
5418                 trace_event_enable_cmd_record(enabled);
5419
5420         if (mask == TRACE_ITER_RECORD_TGID) {
5421                 if (!tgid_map) {
5422                         tgid_map_max = pid_max;
5423                         map = kvcalloc(tgid_map_max + 1, sizeof(*tgid_map),
5424                                        GFP_KERNEL);
5425
5426                         /*
5427                          * Pairs with smp_load_acquire() in
5428                          * trace_find_tgid_ptr() to ensure that if it observes
5429                          * the tgid_map we just allocated then it also observes
5430                          * the corresponding tgid_map_max value.
5431                          */
5432                         smp_store_release(&tgid_map, map);
5433                 }
5434                 if (!tgid_map) {
5435                         tr->trace_flags &= ~TRACE_ITER_RECORD_TGID;
5436                         return -ENOMEM;
5437                 }
5438
5439                 trace_event_enable_tgid_record(enabled);
5440         }
5441
5442         if (mask == TRACE_ITER_EVENT_FORK)
5443                 trace_event_follow_fork(tr, enabled);
5444
5445         if (mask == TRACE_ITER_FUNC_FORK)
5446                 ftrace_pid_follow_fork(tr, enabled);
5447
5448         if (mask == TRACE_ITER_OVERWRITE) {
5449                 ring_buffer_change_overwrite(tr->array_buffer.buffer, enabled);
5450 #ifdef CONFIG_TRACER_MAX_TRACE
5451                 ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled);
5452 #endif
5453         }
5454
5455         if (mask == TRACE_ITER_PRINTK) {
5456                 trace_printk_start_stop_comm(enabled);
5457                 trace_printk_control(enabled);
5458         }
5459
5460         return 0;
5461 }
5462
5463 int trace_set_options(struct trace_array *tr, char *option)
5464 {
5465         char *cmp;
5466         int neg = 0;
5467         int ret;
5468         size_t orig_len = strlen(option);
5469         int len;
5470
5471         cmp = strstrip(option);
5472
5473         len = str_has_prefix(cmp, "no");
5474         if (len)
5475                 neg = 1;
5476
5477         cmp += len;
5478
5479         mutex_lock(&event_mutex);
5480         mutex_lock(&trace_types_lock);
5481
5482         ret = match_string(trace_options, -1, cmp);
5483         /* If no option could be set, test the specific tracer options */
5484         if (ret < 0)
5485                 ret = set_tracer_option(tr, cmp, neg);
5486         else
5487                 ret = set_tracer_flag(tr, 1 << ret, !neg);
5488
5489         mutex_unlock(&trace_types_lock);
5490         mutex_unlock(&event_mutex);
5491
5492         /*
5493          * If the first trailing whitespace is replaced with '\0' by strstrip,
5494          * turn it back into a space.
5495          */
5496         if (orig_len > strlen(option))
5497                 option[strlen(option)] = ' ';
5498
5499         return ret;
5500 }
5501
5502 static void __init apply_trace_boot_options(void)
5503 {
5504         char *buf = trace_boot_options_buf;
5505         char *option;
5506
5507         while (true) {
5508                 option = strsep(&buf, ",");
5509
5510                 if (!option)
5511                         break;
5512
5513                 if (*option)
5514                         trace_set_options(&global_trace, option);
5515
5516                 /* Put back the comma to allow this to be called again */
5517                 if (buf)
5518                         *(buf - 1) = ',';
5519         }
5520 }
5521
5522 static ssize_t
5523 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
5524                         size_t cnt, loff_t *ppos)
5525 {
5526         struct seq_file *m = filp->private_data;
5527         struct trace_array *tr = m->private;
5528         char buf[64];
5529         int ret;
5530
5531         if (cnt >= sizeof(buf))
5532                 return -EINVAL;
5533
5534         if (copy_from_user(buf, ubuf, cnt))
5535                 return -EFAULT;
5536
5537         buf[cnt] = 0;
5538
5539         ret = trace_set_options(tr, buf);
5540         if (ret < 0)
5541                 return ret;
5542
5543         *ppos += cnt;
5544
5545         return cnt;
5546 }
5547
5548 static int tracing_trace_options_open(struct inode *inode, struct file *file)
5549 {
5550         struct trace_array *tr = inode->i_private;
5551         int ret;
5552
5553         ret = tracing_check_open_get_tr(tr);
5554         if (ret)
5555                 return ret;
5556
5557         ret = single_open(file, tracing_trace_options_show, inode->i_private);
5558         if (ret < 0)
5559                 trace_array_put(tr);
5560
5561         return ret;
5562 }
5563
5564 static const struct file_operations tracing_iter_fops = {
5565         .open           = tracing_trace_options_open,
5566         .read           = seq_read,
5567         .llseek         = seq_lseek,
5568         .release        = tracing_single_release_tr,
5569         .write          = tracing_trace_options_write,
5570 };
5571
5572 static const char readme_msg[] =
5573         "tracing mini-HOWTO:\n\n"
5574         "# echo 0 > tracing_on : quick way to disable tracing\n"
5575         "# echo 1 > tracing_on : quick way to re-enable tracing\n\n"
5576         " Important files:\n"
5577         "  trace\t\t\t- The static contents of the buffer\n"
5578         "\t\t\t  To clear the buffer write into this file: echo > trace\n"
5579         "  trace_pipe\t\t- A consuming read to see the contents of the buffer\n"
5580         "  current_tracer\t- function and latency tracers\n"
5581         "  available_tracers\t- list of configured tracers for current_tracer\n"
5582         "  error_log\t- error log for failed commands (that support it)\n"
5583         "  buffer_size_kb\t- view and modify size of per cpu buffer\n"
5584         "  buffer_total_size_kb  - view total size of all cpu buffers\n\n"
5585         "  trace_clock\t\t- change the clock used to order events\n"
5586         "       local:   Per cpu clock but may not be synced across CPUs\n"
5587         "      global:   Synced across CPUs but slows tracing down.\n"
5588         "     counter:   Not a clock, but just an increment\n"
5589         "      uptime:   Jiffy counter from time of boot\n"
5590         "        perf:   Same clock that perf events use\n"
5591 #ifdef CONFIG_X86_64
5592         "     x86-tsc:   TSC cycle counter\n"
5593 #endif
5594         "\n  timestamp_mode\t- view the mode used to timestamp events\n"
5595         "       delta:   Delta difference against a buffer-wide timestamp\n"
5596         "    absolute:   Absolute (standalone) timestamp\n"
5597         "\n  trace_marker\t\t- Writes into this file writes into the kernel buffer\n"
5598         "\n  trace_marker_raw\t\t- Writes into this file writes binary data into the kernel buffer\n"
5599         "  tracing_cpumask\t- Limit which CPUs to trace\n"
5600         "  instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
5601         "\t\t\t  Remove sub-buffer with rmdir\n"
5602         "  trace_options\t\t- Set format or modify how tracing happens\n"
5603         "\t\t\t  Disable an option by prefixing 'no' to the\n"
5604         "\t\t\t  option name\n"
5605         "  saved_cmdlines_size\t- echo command number in here to store comm-pid list\n"
5606 #ifdef CONFIG_DYNAMIC_FTRACE
5607         "\n  available_filter_functions - list of functions that can be filtered on\n"
5608         "  set_ftrace_filter\t- echo function name in here to only trace these\n"
5609         "\t\t\t  functions\n"
5610         "\t     accepts: func_full_name or glob-matching-pattern\n"
5611         "\t     modules: Can select a group via module\n"
5612         "\t      Format: :mod:<module-name>\n"
5613         "\t     example: echo :mod:ext3 > set_ftrace_filter\n"
5614         "\t    triggers: a command to perform when function is hit\n"
5615         "\t      Format: <function>:<trigger>[:count]\n"
5616         "\t     trigger: traceon, traceoff\n"
5617         "\t\t      enable_event:<system>:<event>\n"
5618         "\t\t      disable_event:<system>:<event>\n"
5619 #ifdef CONFIG_STACKTRACE
5620         "\t\t      stacktrace\n"
5621 #endif
5622 #ifdef CONFIG_TRACER_SNAPSHOT
5623         "\t\t      snapshot\n"
5624 #endif
5625         "\t\t      dump\n"
5626         "\t\t      cpudump\n"
5627         "\t     example: echo do_fault:traceoff > set_ftrace_filter\n"
5628         "\t              echo do_trap:traceoff:3 > set_ftrace_filter\n"
5629         "\t     The first one will disable tracing every time do_fault is hit\n"
5630         "\t     The second will disable tracing at most 3 times when do_trap is hit\n"
5631         "\t       The first time do trap is hit and it disables tracing, the\n"
5632         "\t       counter will decrement to 2. If tracing is already disabled,\n"
5633         "\t       the counter will not decrement. It only decrements when the\n"
5634         "\t       trigger did work\n"
5635         "\t     To remove trigger without count:\n"
5636         "\t       echo '!<function>:<trigger> > set_ftrace_filter\n"
5637         "\t     To remove trigger with a count:\n"
5638         "\t       echo '!<function>:<trigger>:0 > set_ftrace_filter\n"
5639         "  set_ftrace_notrace\t- echo function name in here to never trace.\n"
5640         "\t    accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
5641         "\t    modules: Can select a group via module command :mod:\n"
5642         "\t    Does not accept triggers\n"
5643 #endif /* CONFIG_DYNAMIC_FTRACE */
5644 #ifdef CONFIG_FUNCTION_TRACER
5645         "  set_ftrace_pid\t- Write pid(s) to only function trace those pids\n"
5646         "\t\t    (function)\n"
5647         "  set_ftrace_notrace_pid\t- Write pid(s) to not function trace those pids\n"
5648         "\t\t    (function)\n"
5649 #endif
5650 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5651         "  set_graph_function\t- Trace the nested calls of a function (function_graph)\n"
5652         "  set_graph_notrace\t- Do not trace the nested calls of a function (function_graph)\n"
5653         "  max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n"
5654 #endif
5655 #ifdef CONFIG_TRACER_SNAPSHOT
5656         "\n  snapshot\t\t- Like 'trace' but shows the content of the static\n"
5657         "\t\t\t  snapshot buffer. Read the contents for more\n"
5658         "\t\t\t  information\n"
5659 #endif
5660 #ifdef CONFIG_STACK_TRACER
5661         "  stack_trace\t\t- Shows the max stack trace when active\n"
5662         "  stack_max_size\t- Shows current max stack size that was traced\n"
5663         "\t\t\t  Write into this file to reset the max size (trigger a\n"
5664         "\t\t\t  new trace)\n"
5665 #ifdef CONFIG_DYNAMIC_FTRACE
5666         "  stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace\n"
5667         "\t\t\t  traces\n"
5668 #endif
5669 #endif /* CONFIG_STACK_TRACER */
5670 #ifdef CONFIG_DYNAMIC_EVENTS
5671         "  dynamic_events\t\t- Create/append/remove/show the generic dynamic events\n"
5672         "\t\t\t  Write into this file to define/undefine new trace events.\n"
5673 #endif
5674 #ifdef CONFIG_KPROBE_EVENTS
5675         "  kprobe_events\t\t- Create/append/remove/show the kernel dynamic events\n"
5676         "\t\t\t  Write into this file to define/undefine new trace events.\n"
5677 #endif
5678 #ifdef CONFIG_UPROBE_EVENTS
5679         "  uprobe_events\t\t- Create/append/remove/show the userspace dynamic events\n"
5680         "\t\t\t  Write into this file to define/undefine new trace events.\n"
5681 #endif
5682 #if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS) || \
5683     defined(CONFIG_FPROBE_EVENTS)
5684         "\t  accepts: event-definitions (one definition per line)\n"
5685 #if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
5686         "\t   Format: p[:[<group>/][<event>]] <place> [<args>]\n"
5687         "\t           r[maxactive][:[<group>/][<event>]] <place> [<args>]\n"
5688 #endif
5689 #ifdef CONFIG_FPROBE_EVENTS
5690         "\t           f[:[<group>/][<event>]] <func-name>[%return] [<args>]\n"
5691         "\t           t[:[<group>/][<event>]] <tracepoint> [<args>]\n"
5692 #endif
5693 #ifdef CONFIG_HIST_TRIGGERS
5694         "\t           s:[synthetic/]<event> <field> [<field>]\n"
5695 #endif
5696         "\t           e[:[<group>/][<event>]] <attached-group>.<attached-event> [<args>] [if <filter>]\n"
5697         "\t           -:[<group>/][<event>]\n"
5698 #ifdef CONFIG_KPROBE_EVENTS
5699         "\t    place: [<module>:]<symbol>[+<offset>]|<memaddr>\n"
5700   "place (kretprobe): [<module>:]<symbol>[+<offset>]%return|<memaddr>\n"
5701 #endif
5702 #ifdef CONFIG_UPROBE_EVENTS
5703   "   place (uprobe): <path>:<offset>[%return][(ref_ctr_offset)]\n"
5704 #endif
5705         "\t     args: <name>=fetcharg[:type]\n"
5706         "\t fetcharg: (%<register>|$<efield>), @<address>, @<symbol>[+|-<offset>],\n"
5707 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
5708 #ifdef CONFIG_PROBE_EVENTS_BTF_ARGS
5709         "\t           $stack<index>, $stack, $retval, $comm, $arg<N>,\n"
5710         "\t           <argname>[->field[->field|.field...]],\n"
5711 #else
5712         "\t           $stack<index>, $stack, $retval, $comm, $arg<N>,\n"
5713 #endif
5714 #else
5715         "\t           $stack<index>, $stack, $retval, $comm,\n"
5716 #endif
5717         "\t           +|-[u]<offset>(<fetcharg>), \\imm-value, \\\"imm-string\"\n"
5718         "\t     type: s8/16/32/64, u8/16/32/64, x8/16/32/64, char, string, symbol,\n"
5719         "\t           b<bit-width>@<bit-offset>/<container-size>, ustring,\n"
5720         "\t           symstr, <type>\\[<array-size>\\]\n"
5721 #ifdef CONFIG_HIST_TRIGGERS
5722         "\t    field: <stype> <name>;\n"
5723         "\t    stype: u8/u16/u32/u64, s8/s16/s32/s64, pid_t,\n"
5724         "\t           [unsigned] char/int/long\n"
5725 #endif
5726         "\t    efield: For event probes ('e' types), the field is on of the fields\n"
5727         "\t            of the <attached-group>/<attached-event>.\n"
5728 #endif
5729         "  events/\t\t- Directory containing all trace event subsystems:\n"
5730         "      enable\t\t- Write 0/1 to enable/disable tracing of all events\n"
5731         "  events/<system>/\t- Directory containing all trace events for <system>:\n"
5732         "      enable\t\t- Write 0/1 to enable/disable tracing of all <system>\n"
5733         "\t\t\t  events\n"
5734         "      filter\t\t- If set, only events passing filter are traced\n"
5735         "  events/<system>/<event>/\t- Directory containing control files for\n"
5736         "\t\t\t  <event>:\n"
5737         "      enable\t\t- Write 0/1 to enable/disable tracing of <event>\n"
5738         "      filter\t\t- If set, only events passing filter are traced\n"
5739         "      trigger\t\t- If set, a command to perform when event is hit\n"
5740         "\t    Format: <trigger>[:count][if <filter>]\n"
5741         "\t   trigger: traceon, traceoff\n"
5742         "\t            enable_event:<system>:<event>\n"
5743         "\t            disable_event:<system>:<event>\n"
5744 #ifdef CONFIG_HIST_TRIGGERS
5745         "\t            enable_hist:<system>:<event>\n"
5746         "\t            disable_hist:<system>:<event>\n"
5747 #endif
5748 #ifdef CONFIG_STACKTRACE
5749         "\t\t    stacktrace\n"
5750 #endif
5751 #ifdef CONFIG_TRACER_SNAPSHOT
5752         "\t\t    snapshot\n"
5753 #endif
5754 #ifdef CONFIG_HIST_TRIGGERS
5755         "\t\t    hist (see below)\n"
5756 #endif
5757         "\t   example: echo traceoff > events/block/block_unplug/trigger\n"
5758         "\t            echo traceoff:3 > events/block/block_unplug/trigger\n"
5759         "\t            echo 'enable_event:kmem:kmalloc:3 if nr_rq > 1' > \\\n"
5760         "\t                  events/block/block_unplug/trigger\n"
5761         "\t   The first disables tracing every time block_unplug is hit.\n"
5762         "\t   The second disables tracing the first 3 times block_unplug is hit.\n"
5763         "\t   The third enables the kmalloc event the first 3 times block_unplug\n"
5764         "\t     is hit and has value of greater than 1 for the 'nr_rq' event field.\n"
5765         "\t   Like function triggers, the counter is only decremented if it\n"
5766         "\t    enabled or disabled tracing.\n"
5767         "\t   To remove a trigger without a count:\n"
5768         "\t     echo '!<trigger> > <system>/<event>/trigger\n"
5769         "\t   To remove a trigger with a count:\n"
5770         "\t     echo '!<trigger>:0 > <system>/<event>/trigger\n"
5771         "\t   Filters can be ignored when removing a trigger.\n"
5772 #ifdef CONFIG_HIST_TRIGGERS
5773         "      hist trigger\t- If set, event hits are aggregated into a hash table\n"
5774         "\t    Format: hist:keys=<field1[,field2,...]>\n"
5775         "\t            [:<var1>=<field|var_ref|numeric_literal>[,<var2>=...]]\n"
5776         "\t            [:values=<field1[,field2,...]>]\n"
5777         "\t            [:sort=<field1[,field2,...]>]\n"
5778         "\t            [:size=#entries]\n"
5779         "\t            [:pause][:continue][:clear]\n"
5780         "\t            [:name=histname1]\n"
5781         "\t            [:nohitcount]\n"
5782         "\t            [:<handler>.<action>]\n"
5783         "\t            [if <filter>]\n\n"
5784         "\t    Note, special fields can be used as well:\n"
5785         "\t            common_timestamp - to record current timestamp\n"
5786         "\t            common_cpu - to record the CPU the event happened on\n"
5787         "\n"
5788         "\t    A hist trigger variable can be:\n"
5789         "\t        - a reference to a field e.g. x=current_timestamp,\n"
5790         "\t        - a reference to another variable e.g. y=$x,\n"
5791         "\t        - a numeric literal: e.g. ms_per_sec=1000,\n"
5792         "\t        - an arithmetic expression: e.g. time_secs=current_timestamp/1000\n"
5793         "\n"
5794         "\t    hist trigger arithmetic expressions support addition(+), subtraction(-),\n"
5795         "\t    multiplication(*) and division(/) operators. An operand can be either a\n"
5796         "\t    variable reference, field or numeric literal.\n"
5797         "\n"
5798         "\t    When a matching event is hit, an entry is added to a hash\n"
5799         "\t    table using the key(s) and value(s) named, and the value of a\n"
5800         "\t    sum called 'hitcount' is incremented.  Keys and values\n"
5801         "\t    correspond to fields in the event's format description.  Keys\n"
5802         "\t    can be any field, or the special string 'common_stacktrace'.\n"
5803         "\t    Compound keys consisting of up to two fields can be specified\n"
5804         "\t    by the 'keys' keyword.  Values must correspond to numeric\n"
5805         "\t    fields.  Sort keys consisting of up to two fields can be\n"
5806         "\t    specified using the 'sort' keyword.  The sort direction can\n"
5807         "\t    be modified by appending '.descending' or '.ascending' to a\n"
5808         "\t    sort field.  The 'size' parameter can be used to specify more\n"
5809         "\t    or fewer than the default 2048 entries for the hashtable size.\n"
5810         "\t    If a hist trigger is given a name using the 'name' parameter,\n"
5811         "\t    its histogram data will be shared with other triggers of the\n"
5812         "\t    same name, and trigger hits will update this common data.\n\n"
5813         "\t    Reading the 'hist' file for the event will dump the hash\n"
5814         "\t    table in its entirety to stdout.  If there are multiple hist\n"
5815         "\t    triggers attached to an event, there will be a table for each\n"
5816         "\t    trigger in the output.  The table displayed for a named\n"
5817         "\t    trigger will be the same as any other instance having the\n"
5818         "\t    same name.  The default format used to display a given field\n"
5819         "\t    can be modified by appending any of the following modifiers\n"
5820         "\t    to the field name, as applicable:\n\n"
5821         "\t            .hex        display a number as a hex value\n"
5822         "\t            .sym        display an address as a symbol\n"
5823         "\t            .sym-offset display an address as a symbol and offset\n"
5824         "\t            .execname   display a common_pid as a program name\n"
5825         "\t            .syscall    display a syscall id as a syscall name\n"
5826         "\t            .log2       display log2 value rather than raw number\n"
5827         "\t            .buckets=size  display values in groups of size rather than raw number\n"
5828         "\t            .usecs      display a common_timestamp in microseconds\n"
5829         "\t            .percent    display a number of percentage value\n"
5830         "\t            .graph      display a bar-graph of a value\n\n"
5831         "\t    The 'pause' parameter can be used to pause an existing hist\n"
5832         "\t    trigger or to start a hist trigger but not log any events\n"
5833         "\t    until told to do so.  'continue' can be used to start or\n"
5834         "\t    restart a paused hist trigger.\n\n"
5835         "\t    The 'clear' parameter will clear the contents of a running\n"
5836         "\t    hist trigger and leave its current paused/active state\n"
5837         "\t    unchanged.\n\n"
5838         "\t    The 'nohitcount' (or NOHC) parameter will suppress display of\n"
5839         "\t    raw hitcount in the histogram.\n\n"
5840         "\t    The enable_hist and disable_hist triggers can be used to\n"
5841         "\t    have one event conditionally start and stop another event's\n"
5842         "\t    already-attached hist trigger.  The syntax is analogous to\n"
5843         "\t    the enable_event and disable_event triggers.\n\n"
5844         "\t    Hist trigger handlers and actions are executed whenever a\n"
5845         "\t    a histogram entry is added or updated.  They take the form:\n\n"
5846         "\t        <handler>.<action>\n\n"
5847         "\t    The available handlers are:\n\n"
5848         "\t        onmatch(matching.event)  - invoke on addition or update\n"
5849         "\t        onmax(var)               - invoke if var exceeds current max\n"
5850         "\t        onchange(var)            - invoke action if var changes\n\n"
5851         "\t    The available actions are:\n\n"
5852         "\t        trace(<synthetic_event>,param list)  - generate synthetic event\n"
5853         "\t        save(field,...)                      - save current event fields\n"
5854 #ifdef CONFIG_TRACER_SNAPSHOT
5855         "\t        snapshot()                           - snapshot the trace buffer\n\n"
5856 #endif
5857 #ifdef CONFIG_SYNTH_EVENTS
5858         "  events/synthetic_events\t- Create/append/remove/show synthetic events\n"
5859         "\t  Write into this file to define/undefine new synthetic events.\n"
5860         "\t     example: echo 'myevent u64 lat; char name[]; long[] stack' >> synthetic_events\n"
5861 #endif
5862 #endif
5863 ;
5864
5865 static ssize_t
5866 tracing_readme_read(struct file *filp, char __user *ubuf,
5867                        size_t cnt, loff_t *ppos)
5868 {
5869         return simple_read_from_buffer(ubuf, cnt, ppos,
5870                                         readme_msg, strlen(readme_msg));
5871 }
5872
5873 static const struct file_operations tracing_readme_fops = {
5874         .open           = tracing_open_generic,
5875         .read           = tracing_readme_read,
5876         .llseek         = generic_file_llseek,
5877 };
5878
5879 static void *saved_tgids_next(struct seq_file *m, void *v, loff_t *pos)
5880 {
5881         int pid = ++(*pos);
5882
5883         return trace_find_tgid_ptr(pid);
5884 }
5885
5886 static void *saved_tgids_start(struct seq_file *m, loff_t *pos)
5887 {
5888         int pid = *pos;
5889
5890         return trace_find_tgid_ptr(pid);
5891 }
5892
5893 static void saved_tgids_stop(struct seq_file *m, void *v)
5894 {
5895 }
5896
5897 static int saved_tgids_show(struct seq_file *m, void *v)
5898 {
5899         int *entry = (int *)v;
5900         int pid = entry - tgid_map;
5901         int tgid = *entry;
5902
5903         if (tgid == 0)
5904                 return SEQ_SKIP;
5905
5906         seq_printf(m, "%d %d\n", pid, tgid);
5907         return 0;
5908 }
5909
5910 static const struct seq_operations tracing_saved_tgids_seq_ops = {
5911         .start          = saved_tgids_start,
5912         .stop           = saved_tgids_stop,
5913         .next           = saved_tgids_next,
5914         .show           = saved_tgids_show,
5915 };
5916
5917 static int tracing_saved_tgids_open(struct inode *inode, struct file *filp)
5918 {
5919         int ret;
5920
5921         ret = tracing_check_open_get_tr(NULL);
5922         if (ret)
5923                 return ret;
5924
5925         return seq_open(filp, &tracing_saved_tgids_seq_ops);
5926 }
5927
5928
5929 static const struct file_operations tracing_saved_tgids_fops = {
5930         .open           = tracing_saved_tgids_open,
5931         .read           = seq_read,
5932         .llseek         = seq_lseek,
5933         .release        = seq_release,
5934 };
5935
5936 static void *saved_cmdlines_next(struct seq_file *m, void *v, loff_t *pos)
5937 {
5938         unsigned int *ptr = v;
5939
5940         if (*pos || m->count)
5941                 ptr++;
5942
5943         (*pos)++;
5944
5945         for (; ptr < &savedcmd->map_cmdline_to_pid[savedcmd->cmdline_num];
5946              ptr++) {
5947                 if (*ptr == -1 || *ptr == NO_CMDLINE_MAP)
5948                         continue;
5949
5950                 return ptr;
5951         }
5952
5953         return NULL;
5954 }
5955
5956 static void *saved_cmdlines_start(struct seq_file *m, loff_t *pos)
5957 {
5958         void *v;
5959         loff_t l = 0;
5960
5961         preempt_disable();
5962         arch_spin_lock(&trace_cmdline_lock);
5963
5964         v = &savedcmd->map_cmdline_to_pid[0];
5965         while (l <= *pos) {
5966                 v = saved_cmdlines_next(m, v, &l);
5967                 if (!v)
5968                         return NULL;
5969         }
5970
5971         return v;
5972 }
5973
5974 static void saved_cmdlines_stop(struct seq_file *m, void *v)
5975 {
5976         arch_spin_unlock(&trace_cmdline_lock);
5977         preempt_enable();
5978 }
5979
5980 static int saved_cmdlines_show(struct seq_file *m, void *v)
5981 {
5982         char buf[TASK_COMM_LEN];
5983         unsigned int *pid = v;
5984
5985         __trace_find_cmdline(*pid, buf);
5986         seq_printf(m, "%d %s\n", *pid, buf);
5987         return 0;
5988 }
5989
5990 static const struct seq_operations tracing_saved_cmdlines_seq_ops = {
5991         .start          = saved_cmdlines_start,
5992         .next           = saved_cmdlines_next,
5993         .stop           = saved_cmdlines_stop,
5994         .show           = saved_cmdlines_show,
5995 };
5996
5997 static int tracing_saved_cmdlines_open(struct inode *inode, struct file *filp)
5998 {
5999         int ret;
6000
6001         ret = tracing_check_open_get_tr(NULL);
6002         if (ret)
6003                 return ret;
6004
6005         return seq_open(filp, &tracing_saved_cmdlines_seq_ops);
6006 }
6007
6008 static const struct file_operations tracing_saved_cmdlines_fops = {
6009         .open           = tracing_saved_cmdlines_open,
6010         .read           = seq_read,
6011         .llseek         = seq_lseek,
6012         .release        = seq_release,
6013 };
6014
6015 static ssize_t
6016 tracing_saved_cmdlines_size_read(struct file *filp, char __user *ubuf,
6017                                  size_t cnt, loff_t *ppos)
6018 {
6019         char buf[64];
6020         int r;
6021
6022         preempt_disable();
6023         arch_spin_lock(&trace_cmdline_lock);
6024         r = scnprintf(buf, sizeof(buf), "%u\n", savedcmd->cmdline_num);
6025         arch_spin_unlock(&trace_cmdline_lock);
6026         preempt_enable();
6027
6028         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
6029 }
6030
6031 static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s)
6032 {
6033         kfree(s->saved_cmdlines);
6034         kfree(s->map_cmdline_to_pid);
6035         kfree(s);
6036 }
6037
6038 static int tracing_resize_saved_cmdlines(unsigned int val)
6039 {
6040         struct saved_cmdlines_buffer *s, *savedcmd_temp;
6041
6042         s = kmalloc(sizeof(*s), GFP_KERNEL);
6043         if (!s)
6044                 return -ENOMEM;
6045
6046         if (allocate_cmdlines_buffer(val, s) < 0) {
6047                 kfree(s);
6048                 return -ENOMEM;
6049         }
6050
6051         preempt_disable();
6052         arch_spin_lock(&trace_cmdline_lock);
6053         savedcmd_temp = savedcmd;
6054         savedcmd = s;
6055         arch_spin_unlock(&trace_cmdline_lock);
6056         preempt_enable();
6057         free_saved_cmdlines_buffer(savedcmd_temp);
6058
6059         return 0;
6060 }
6061
6062 static ssize_t
6063 tracing_saved_cmdlines_size_write(struct file *filp, const char __user *ubuf,
6064                                   size_t cnt, loff_t *ppos)
6065 {
6066         unsigned long val;
6067         int ret;
6068
6069         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
6070         if (ret)
6071                 return ret;
6072
6073         /* must have at least 1 entry or less than PID_MAX_DEFAULT */
6074         if (!val || val > PID_MAX_DEFAULT)
6075                 return -EINVAL;
6076
6077         ret = tracing_resize_saved_cmdlines((unsigned int)val);
6078         if (ret < 0)
6079                 return ret;
6080
6081         *ppos += cnt;
6082
6083         return cnt;
6084 }
6085
6086 static const struct file_operations tracing_saved_cmdlines_size_fops = {
6087         .open           = tracing_open_generic,
6088         .read           = tracing_saved_cmdlines_size_read,
6089         .write          = tracing_saved_cmdlines_size_write,
6090 };
6091
6092 #ifdef CONFIG_TRACE_EVAL_MAP_FILE
6093 static union trace_eval_map_item *
6094 update_eval_map(union trace_eval_map_item *ptr)
6095 {
6096         if (!ptr->map.eval_string) {
6097                 if (ptr->tail.next) {
6098                         ptr = ptr->tail.next;
6099                         /* Set ptr to the next real item (skip head) */
6100                         ptr++;
6101                 } else
6102                         return NULL;
6103         }
6104         return ptr;
6105 }
6106
6107 static void *eval_map_next(struct seq_file *m, void *v, loff_t *pos)
6108 {
6109         union trace_eval_map_item *ptr = v;
6110
6111         /*
6112          * Paranoid! If ptr points to end, we don't want to increment past it.
6113          * This really should never happen.
6114          */
6115         (*pos)++;
6116         ptr = update_eval_map(ptr);
6117         if (WARN_ON_ONCE(!ptr))
6118                 return NULL;
6119
6120         ptr++;
6121         ptr = update_eval_map(ptr);
6122
6123         return ptr;
6124 }
6125
6126 static void *eval_map_start(struct seq_file *m, loff_t *pos)
6127 {
6128         union trace_eval_map_item *v;
6129         loff_t l = 0;
6130
6131         mutex_lock(&trace_eval_mutex);
6132
6133         v = trace_eval_maps;
6134         if (v)
6135                 v++;
6136
6137         while (v && l < *pos) {
6138                 v = eval_map_next(m, v, &l);
6139         }
6140
6141         return v;
6142 }
6143
6144 static void eval_map_stop(struct seq_file *m, void *v)
6145 {
6146         mutex_unlock(&trace_eval_mutex);
6147 }
6148
6149 static int eval_map_show(struct seq_file *m, void *v)
6150 {
6151         union trace_eval_map_item *ptr = v;
6152
6153         seq_printf(m, "%s %ld (%s)\n",
6154                    ptr->map.eval_string, ptr->map.eval_value,
6155                    ptr->map.system);
6156
6157         return 0;
6158 }
6159
6160 static const struct seq_operations tracing_eval_map_seq_ops = {
6161         .start          = eval_map_start,
6162         .next           = eval_map_next,
6163         .stop           = eval_map_stop,
6164         .show           = eval_map_show,
6165 };
6166
6167 static int tracing_eval_map_open(struct inode *inode, struct file *filp)
6168 {
6169         int ret;
6170
6171         ret = tracing_check_open_get_tr(NULL);
6172         if (ret)
6173                 return ret;
6174
6175         return seq_open(filp, &tracing_eval_map_seq_ops);
6176 }
6177
6178 static const struct file_operations tracing_eval_map_fops = {
6179         .open           = tracing_eval_map_open,
6180         .read           = seq_read,
6181         .llseek         = seq_lseek,
6182         .release        = seq_release,
6183 };
6184
6185 static inline union trace_eval_map_item *
6186 trace_eval_jmp_to_tail(union trace_eval_map_item *ptr)
6187 {
6188         /* Return tail of array given the head */
6189         return ptr + ptr->head.length + 1;
6190 }
6191
6192 static void
6193 trace_insert_eval_map_file(struct module *mod, struct trace_eval_map **start,
6194                            int len)
6195 {
6196         struct trace_eval_map **stop;
6197         struct trace_eval_map **map;
6198         union trace_eval_map_item *map_array;
6199         union trace_eval_map_item *ptr;
6200
6201         stop = start + len;
6202
6203         /*
6204          * The trace_eval_maps contains the map plus a head and tail item,
6205          * where the head holds the module and length of array, and the
6206          * tail holds a pointer to the next list.
6207          */
6208         map_array = kmalloc_array(len + 2, sizeof(*map_array), GFP_KERNEL);
6209         if (!map_array) {
6210                 pr_warn("Unable to allocate trace eval mapping\n");
6211                 return;
6212         }
6213
6214         mutex_lock(&trace_eval_mutex);
6215
6216         if (!trace_eval_maps)
6217                 trace_eval_maps = map_array;
6218         else {
6219                 ptr = trace_eval_maps;
6220                 for (;;) {
6221                         ptr = trace_eval_jmp_to_tail(ptr);
6222                         if (!ptr->tail.next)
6223                                 break;
6224                         ptr = ptr->tail.next;
6225
6226                 }
6227                 ptr->tail.next = map_array;
6228         }
6229         map_array->head.mod = mod;
6230         map_array->head.length = len;
6231         map_array++;
6232
6233         for (map = start; (unsigned long)map < (unsigned long)stop; map++) {
6234                 map_array->map = **map;
6235                 map_array++;
6236         }
6237         memset(map_array, 0, sizeof(*map_array));
6238
6239         mutex_unlock(&trace_eval_mutex);
6240 }
6241
6242 static void trace_create_eval_file(struct dentry *d_tracer)
6243 {
6244         trace_create_file("eval_map", TRACE_MODE_READ, d_tracer,
6245                           NULL, &tracing_eval_map_fops);
6246 }
6247
6248 #else /* CONFIG_TRACE_EVAL_MAP_FILE */
6249 static inline void trace_create_eval_file(struct dentry *d_tracer) { }
6250 static inline void trace_insert_eval_map_file(struct module *mod,
6251                               struct trace_eval_map **start, int len) { }
6252 #endif /* !CONFIG_TRACE_EVAL_MAP_FILE */
6253
6254 static void trace_insert_eval_map(struct module *mod,
6255                                   struct trace_eval_map **start, int len)
6256 {
6257         struct trace_eval_map **map;
6258
6259         if (len <= 0)
6260                 return;
6261
6262         map = start;
6263
6264         trace_event_eval_update(map, len);
6265
6266         trace_insert_eval_map_file(mod, start, len);
6267 }
6268
6269 static ssize_t
6270 tracing_set_trace_read(struct file *filp, char __user *ubuf,
6271                        size_t cnt, loff_t *ppos)
6272 {
6273         struct trace_array *tr = filp->private_data;
6274         char buf[MAX_TRACER_SIZE+2];
6275         int r;
6276
6277         mutex_lock(&trace_types_lock);
6278         r = sprintf(buf, "%s\n", tr->current_trace->name);
6279         mutex_unlock(&trace_types_lock);
6280
6281         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
6282 }
6283
6284 int tracer_init(struct tracer *t, struct trace_array *tr)
6285 {
6286         tracing_reset_online_cpus(&tr->array_buffer);
6287         return t->init(tr);
6288 }
6289
6290 static void set_buffer_entries(struct array_buffer *buf, unsigned long val)
6291 {
6292         int cpu;
6293
6294         for_each_tracing_cpu(cpu)
6295                 per_cpu_ptr(buf->data, cpu)->entries = val;
6296 }
6297
6298 static void update_buffer_entries(struct array_buffer *buf, int cpu)
6299 {
6300         if (cpu == RING_BUFFER_ALL_CPUS) {
6301                 set_buffer_entries(buf, ring_buffer_size(buf->buffer, 0));
6302         } else {
6303                 per_cpu_ptr(buf->data, cpu)->entries = ring_buffer_size(buf->buffer, cpu);
6304         }
6305 }
6306
6307 #ifdef CONFIG_TRACER_MAX_TRACE
6308 /* resize @tr's buffer to the size of @size_tr's entries */
6309 static int resize_buffer_duplicate_size(struct array_buffer *trace_buf,
6310                                         struct array_buffer *size_buf, int cpu_id)
6311 {
6312         int cpu, ret = 0;
6313
6314         if (cpu_id == RING_BUFFER_ALL_CPUS) {
6315                 for_each_tracing_cpu(cpu) {
6316                         ret = ring_buffer_resize(trace_buf->buffer,
6317                                  per_cpu_ptr(size_buf->data, cpu)->entries, cpu);
6318                         if (ret < 0)
6319                                 break;
6320                         per_cpu_ptr(trace_buf->data, cpu)->entries =
6321                                 per_cpu_ptr(size_buf->data, cpu)->entries;
6322                 }
6323         } else {
6324                 ret = ring_buffer_resize(trace_buf->buffer,
6325                                  per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id);
6326                 if (ret == 0)
6327                         per_cpu_ptr(trace_buf->data, cpu_id)->entries =
6328                                 per_cpu_ptr(size_buf->data, cpu_id)->entries;
6329         }
6330
6331         return ret;
6332 }
6333 #endif /* CONFIG_TRACER_MAX_TRACE */
6334
6335 static int __tracing_resize_ring_buffer(struct trace_array *tr,
6336                                         unsigned long size, int cpu)
6337 {
6338         int ret;
6339
6340         /*
6341          * If kernel or user changes the size of the ring buffer
6342          * we use the size that was given, and we can forget about
6343          * expanding it later.
6344          */
6345         ring_buffer_expanded = true;
6346
6347         /* May be called before buffers are initialized */
6348         if (!tr->array_buffer.buffer)
6349                 return 0;
6350
6351         /* Do not allow tracing while resizng ring buffer */
6352         tracing_stop_tr(tr);
6353
6354         ret = ring_buffer_resize(tr->array_buffer.buffer, size, cpu);
6355         if (ret < 0)
6356                 goto out_start;
6357
6358 #ifdef CONFIG_TRACER_MAX_TRACE
6359         if (!tr->current_trace->use_max_tr)
6360                 goto out;
6361
6362         ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu);
6363         if (ret < 0) {
6364                 int r = resize_buffer_duplicate_size(&tr->array_buffer,
6365                                                      &tr->array_buffer, cpu);
6366                 if (r < 0) {
6367                         /*
6368                          * AARGH! We are left with different
6369                          * size max buffer!!!!
6370                          * The max buffer is our "snapshot" buffer.
6371                          * When a tracer needs a snapshot (one of the
6372                          * latency tracers), it swaps the max buffer
6373                          * with the saved snap shot. We succeeded to
6374                          * update the size of the main buffer, but failed to
6375                          * update the size of the max buffer. But when we tried
6376                          * to reset the main buffer to the original size, we
6377                          * failed there too. This is very unlikely to
6378                          * happen, but if it does, warn and kill all
6379                          * tracing.
6380                          */
6381                         WARN_ON(1);
6382                         tracing_disabled = 1;
6383                 }
6384                 goto out_start;
6385         }
6386
6387         update_buffer_entries(&tr->max_buffer, cpu);
6388
6389  out:
6390 #endif /* CONFIG_TRACER_MAX_TRACE */
6391
6392         update_buffer_entries(&tr->array_buffer, cpu);
6393  out_start:
6394         tracing_start_tr(tr);
6395         return ret;
6396 }
6397
6398 ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
6399                                   unsigned long size, int cpu_id)
6400 {
6401         int ret;
6402
6403         mutex_lock(&trace_types_lock);
6404
6405         if (cpu_id != RING_BUFFER_ALL_CPUS) {
6406                 /* make sure, this cpu is enabled in the mask */
6407                 if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) {
6408                         ret = -EINVAL;
6409                         goto out;
6410                 }
6411         }
6412
6413         ret = __tracing_resize_ring_buffer(tr, size, cpu_id);
6414         if (ret < 0)
6415                 ret = -ENOMEM;
6416
6417 out:
6418         mutex_unlock(&trace_types_lock);
6419
6420         return ret;
6421 }
6422
6423
6424 /**
6425  * tracing_update_buffers - used by tracing facility to expand ring buffers
6426  *
6427  * To save on memory when the tracing is never used on a system with it
6428  * configured in. The ring buffers are set to a minimum size. But once
6429  * a user starts to use the tracing facility, then they need to grow
6430  * to their default size.
6431  *
6432  * This function is to be called when a tracer is about to be used.
6433  */
6434 int tracing_update_buffers(void)
6435 {
6436         int ret = 0;
6437
6438         mutex_lock(&trace_types_lock);
6439         if (!ring_buffer_expanded)
6440                 ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size,
6441                                                 RING_BUFFER_ALL_CPUS);
6442         mutex_unlock(&trace_types_lock);
6443
6444         return ret;
6445 }
6446
6447 struct trace_option_dentry;
6448
6449 static void
6450 create_trace_option_files(struct trace_array *tr, struct tracer *tracer);
6451
6452 /*
6453  * Used to clear out the tracer before deletion of an instance.
6454  * Must have trace_types_lock held.
6455  */
6456 static void tracing_set_nop(struct trace_array *tr)
6457 {
6458         if (tr->current_trace == &nop_trace)
6459                 return;
6460         
6461         tr->current_trace->enabled--;
6462
6463         if (tr->current_trace->reset)
6464                 tr->current_trace->reset(tr);
6465
6466         tr->current_trace = &nop_trace;
6467 }
6468
6469 static bool tracer_options_updated;
6470
6471 static void add_tracer_options(struct trace_array *tr, struct tracer *t)
6472 {
6473         /* Only enable if the directory has been created already. */
6474         if (!tr->dir)
6475                 return;
6476
6477         /* Only create trace option files after update_tracer_options finish */
6478         if (!tracer_options_updated)
6479                 return;
6480
6481         create_trace_option_files(tr, t);
6482 }
6483
6484 int tracing_set_tracer(struct trace_array *tr, const char *buf)
6485 {
6486         struct tracer *t;
6487 #ifdef CONFIG_TRACER_MAX_TRACE
6488         bool had_max_tr;
6489 #endif
6490         int ret = 0;
6491
6492         mutex_lock(&trace_types_lock);
6493
6494         if (!ring_buffer_expanded) {
6495                 ret = __tracing_resize_ring_buffer(tr, trace_buf_size,
6496                                                 RING_BUFFER_ALL_CPUS);
6497                 if (ret < 0)
6498                         goto out;
6499                 ret = 0;
6500         }
6501
6502         for (t = trace_types; t; t = t->next) {
6503                 if (strcmp(t->name, buf) == 0)
6504                         break;
6505         }
6506         if (!t) {
6507                 ret = -EINVAL;
6508                 goto out;
6509         }
6510         if (t == tr->current_trace)
6511                 goto out;
6512
6513 #ifdef CONFIG_TRACER_SNAPSHOT
6514         if (t->use_max_tr) {
6515                 local_irq_disable();
6516                 arch_spin_lock(&tr->max_lock);
6517                 if (tr->cond_snapshot)
6518                         ret = -EBUSY;
6519                 arch_spin_unlock(&tr->max_lock);
6520                 local_irq_enable();
6521                 if (ret)
6522                         goto out;
6523         }
6524 #endif
6525         /* Some tracers won't work on kernel command line */
6526         if (system_state < SYSTEM_RUNNING && t->noboot) {
6527                 pr_warn("Tracer '%s' is not allowed on command line, ignored\n",
6528                         t->name);
6529                 goto out;
6530         }
6531
6532         /* Some tracers are only allowed for the top level buffer */
6533         if (!trace_ok_for_array(t, tr)) {
6534                 ret = -EINVAL;
6535                 goto out;
6536         }
6537
6538         /* If trace pipe files are being read, we can't change the tracer */
6539         if (tr->trace_ref) {
6540                 ret = -EBUSY;
6541                 goto out;
6542         }
6543
6544         trace_branch_disable();
6545
6546         tr->current_trace->enabled--;
6547
6548         if (tr->current_trace->reset)
6549                 tr->current_trace->reset(tr);
6550
6551 #ifdef CONFIG_TRACER_MAX_TRACE
6552         had_max_tr = tr->current_trace->use_max_tr;
6553
6554         /* Current trace needs to be nop_trace before synchronize_rcu */
6555         tr->current_trace = &nop_trace;
6556
6557         if (had_max_tr && !t->use_max_tr) {
6558                 /*
6559                  * We need to make sure that the update_max_tr sees that
6560                  * current_trace changed to nop_trace to keep it from
6561                  * swapping the buffers after we resize it.
6562                  * The update_max_tr is called from interrupts disabled
6563                  * so a synchronized_sched() is sufficient.
6564                  */
6565                 synchronize_rcu();
6566                 free_snapshot(tr);
6567         }
6568
6569         if (t->use_max_tr && !tr->allocated_snapshot) {
6570                 ret = tracing_alloc_snapshot_instance(tr);
6571                 if (ret < 0)
6572                         goto out;
6573         }
6574 #else
6575         tr->current_trace = &nop_trace;
6576 #endif
6577
6578         if (t->init) {
6579                 ret = tracer_init(t, tr);
6580                 if (ret)
6581                         goto out;
6582         }
6583
6584         tr->current_trace = t;
6585         tr->current_trace->enabled++;
6586         trace_branch_enable(tr);
6587  out:
6588         mutex_unlock(&trace_types_lock);
6589
6590         return ret;
6591 }
6592
6593 static ssize_t
6594 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
6595                         size_t cnt, loff_t *ppos)
6596 {
6597         struct trace_array *tr = filp->private_data;
6598         char buf[MAX_TRACER_SIZE+1];
6599         char *name;
6600         size_t ret;
6601         int err;
6602
6603         ret = cnt;
6604
6605         if (cnt > MAX_TRACER_SIZE)
6606                 cnt = MAX_TRACER_SIZE;
6607
6608         if (copy_from_user(buf, ubuf, cnt))
6609                 return -EFAULT;
6610
6611         buf[cnt] = 0;
6612
6613         name = strim(buf);
6614
6615         err = tracing_set_tracer(tr, name);
6616         if (err)
6617                 return err;
6618
6619         *ppos += ret;
6620
6621         return ret;
6622 }
6623
6624 static ssize_t
6625 tracing_nsecs_read(unsigned long *ptr, char __user *ubuf,
6626                    size_t cnt, loff_t *ppos)
6627 {
6628         char buf[64];
6629         int r;
6630
6631         r = snprintf(buf, sizeof(buf), "%ld\n",
6632                      *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
6633         if (r > sizeof(buf))
6634                 r = sizeof(buf);
6635         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
6636 }
6637
6638 static ssize_t
6639 tracing_nsecs_write(unsigned long *ptr, const char __user *ubuf,
6640                     size_t cnt, loff_t *ppos)
6641 {
6642         unsigned long val;
6643         int ret;
6644
6645         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
6646         if (ret)
6647                 return ret;
6648
6649         *ptr = val * 1000;
6650
6651         return cnt;
6652 }
6653
6654 static ssize_t
6655 tracing_thresh_read(struct file *filp, char __user *ubuf,
6656                     size_t cnt, loff_t *ppos)
6657 {
6658         return tracing_nsecs_read(&tracing_thresh, ubuf, cnt, ppos);
6659 }
6660
6661 static ssize_t
6662 tracing_thresh_write(struct file *filp, const char __user *ubuf,
6663                      size_t cnt, loff_t *ppos)
6664 {
6665         struct trace_array *tr = filp->private_data;
6666         int ret;
6667
6668         mutex_lock(&trace_types_lock);
6669         ret = tracing_nsecs_write(&tracing_thresh, ubuf, cnt, ppos);
6670         if (ret < 0)
6671                 goto out;
6672
6673         if (tr->current_trace->update_thresh) {
6674                 ret = tr->current_trace->update_thresh(tr);
6675                 if (ret < 0)
6676                         goto out;
6677         }
6678
6679         ret = cnt;
6680 out:
6681         mutex_unlock(&trace_types_lock);
6682
6683         return ret;
6684 }
6685
6686 #ifdef CONFIG_TRACER_MAX_TRACE
6687
6688 static ssize_t
6689 tracing_max_lat_read(struct file *filp, char __user *ubuf,
6690                      size_t cnt, loff_t *ppos)
6691 {
6692         struct trace_array *tr = filp->private_data;
6693
6694         return tracing_nsecs_read(&tr->max_latency, ubuf, cnt, ppos);
6695 }
6696
6697 static ssize_t
6698 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
6699                       size_t cnt, loff_t *ppos)
6700 {
6701         struct trace_array *tr = filp->private_data;
6702
6703         return tracing_nsecs_write(&tr->max_latency, ubuf, cnt, ppos);
6704 }
6705
6706 #endif
6707
6708 static int open_pipe_on_cpu(struct trace_array *tr, int cpu)
6709 {
6710         if (cpu == RING_BUFFER_ALL_CPUS) {
6711                 if (cpumask_empty(tr->pipe_cpumask)) {
6712                         cpumask_setall(tr->pipe_cpumask);
6713                         return 0;
6714                 }
6715         } else if (!cpumask_test_cpu(cpu, tr->pipe_cpumask)) {
6716                 cpumask_set_cpu(cpu, tr->pipe_cpumask);
6717                 return 0;
6718         }
6719         return -EBUSY;
6720 }
6721
6722 static void close_pipe_on_cpu(struct trace_array *tr, int cpu)
6723 {
6724         if (cpu == RING_BUFFER_ALL_CPUS) {
6725                 WARN_ON(!cpumask_full(tr->pipe_cpumask));
6726                 cpumask_clear(tr->pipe_cpumask);
6727         } else {
6728                 WARN_ON(!cpumask_test_cpu(cpu, tr->pipe_cpumask));
6729                 cpumask_clear_cpu(cpu, tr->pipe_cpumask);
6730         }
6731 }
6732
6733 static int tracing_open_pipe(struct inode *inode, struct file *filp)
6734 {
6735         struct trace_array *tr = inode->i_private;
6736         struct trace_iterator *iter;
6737         int cpu;
6738         int ret;
6739
6740         ret = tracing_check_open_get_tr(tr);
6741         if (ret)
6742                 return ret;
6743
6744         mutex_lock(&trace_types_lock);
6745         cpu = tracing_get_cpu(inode);
6746         ret = open_pipe_on_cpu(tr, cpu);
6747         if (ret)
6748                 goto fail_pipe_on_cpu;
6749
6750         /* create a buffer to store the information to pass to userspace */
6751         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
6752         if (!iter) {
6753                 ret = -ENOMEM;
6754                 goto fail_alloc_iter;
6755         }
6756
6757         trace_seq_init(&iter->seq);
6758         iter->trace = tr->current_trace;
6759
6760         if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
6761                 ret = -ENOMEM;
6762                 goto fail;
6763         }
6764
6765         /* trace pipe does not show start of buffer */
6766         cpumask_setall(iter->started);
6767
6768         if (tr->trace_flags & TRACE_ITER_LATENCY_FMT)
6769                 iter->iter_flags |= TRACE_FILE_LAT_FMT;
6770
6771         /* Output in nanoseconds only if we are using a clock in nanoseconds. */
6772         if (trace_clocks[tr->clock_id].in_ns)
6773                 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
6774
6775         iter->tr = tr;
6776         iter->array_buffer = &tr->array_buffer;
6777         iter->cpu_file = cpu;
6778         mutex_init(&iter->mutex);
6779         filp->private_data = iter;
6780
6781         if (iter->trace->pipe_open)
6782                 iter->trace->pipe_open(iter);
6783
6784         nonseekable_open(inode, filp);
6785
6786         tr->trace_ref++;
6787
6788         mutex_unlock(&trace_types_lock);
6789         return ret;
6790
6791 fail:
6792         kfree(iter);
6793 fail_alloc_iter:
6794         close_pipe_on_cpu(tr, cpu);
6795 fail_pipe_on_cpu:
6796         __trace_array_put(tr);
6797         mutex_unlock(&trace_types_lock);
6798         return ret;
6799 }
6800
6801 static int tracing_release_pipe(struct inode *inode, struct file *file)
6802 {
6803         struct trace_iterator *iter = file->private_data;
6804         struct trace_array *tr = inode->i_private;
6805
6806         mutex_lock(&trace_types_lock);
6807
6808         tr->trace_ref--;
6809
6810         if (iter->trace->pipe_close)
6811                 iter->trace->pipe_close(iter);
6812         close_pipe_on_cpu(tr, iter->cpu_file);
6813         mutex_unlock(&trace_types_lock);
6814
6815         free_trace_iter_content(iter);
6816         kfree(iter);
6817
6818         trace_array_put(tr);
6819
6820         return 0;
6821 }
6822
6823 static __poll_t
6824 trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table)
6825 {
6826         struct trace_array *tr = iter->tr;
6827
6828         /* Iterators are static, they should be filled or empty */
6829         if (trace_buffer_iter(iter, iter->cpu_file))
6830                 return EPOLLIN | EPOLLRDNORM;
6831
6832         if (tr->trace_flags & TRACE_ITER_BLOCK)
6833                 /*
6834                  * Always select as readable when in blocking mode
6835                  */
6836                 return EPOLLIN | EPOLLRDNORM;
6837         else
6838                 return ring_buffer_poll_wait(iter->array_buffer->buffer, iter->cpu_file,
6839                                              filp, poll_table, iter->tr->buffer_percent);
6840 }
6841
6842 static __poll_t
6843 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
6844 {
6845         struct trace_iterator *iter = filp->private_data;
6846
6847         return trace_poll(iter, filp, poll_table);
6848 }
6849
6850 /* Must be called with iter->mutex held. */
6851 static int tracing_wait_pipe(struct file *filp)
6852 {
6853         struct trace_iterator *iter = filp->private_data;
6854         int ret;
6855
6856         while (trace_empty(iter)) {
6857
6858                 if ((filp->f_flags & O_NONBLOCK)) {
6859                         return -EAGAIN;
6860                 }
6861
6862                 /*
6863                  * We block until we read something and tracing is disabled.
6864                  * We still block if tracing is disabled, but we have never
6865                  * read anything. This allows a user to cat this file, and
6866                  * then enable tracing. But after we have read something,
6867                  * we give an EOF when tracing is again disabled.
6868                  *
6869                  * iter->pos will be 0 if we haven't read anything.
6870                  */
6871                 if (!tracer_tracing_is_on(iter->tr) && iter->pos)
6872                         break;
6873
6874                 mutex_unlock(&iter->mutex);
6875
6876                 ret = wait_on_pipe(iter, 0);
6877
6878                 mutex_lock(&iter->mutex);
6879
6880                 if (ret)
6881                         return ret;
6882         }
6883
6884         return 1;
6885 }
6886
6887 /*
6888  * Consumer reader.
6889  */
6890 static ssize_t
6891 tracing_read_pipe(struct file *filp, char __user *ubuf,
6892                   size_t cnt, loff_t *ppos)
6893 {
6894         struct trace_iterator *iter = filp->private_data;
6895         ssize_t sret;
6896
6897         /*
6898          * Avoid more than one consumer on a single file descriptor
6899          * This is just a matter of traces coherency, the ring buffer itself
6900          * is protected.
6901          */
6902         mutex_lock(&iter->mutex);
6903
6904         /* return any leftover data */
6905         sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
6906         if (sret != -EBUSY)
6907                 goto out;
6908
6909         trace_seq_init(&iter->seq);
6910
6911         if (iter->trace->read) {
6912                 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
6913                 if (sret)
6914                         goto out;
6915         }
6916
6917 waitagain:
6918         sret = tracing_wait_pipe(filp);
6919         if (sret <= 0)
6920                 goto out;
6921
6922         /* stop when tracing is finished */
6923         if (trace_empty(iter)) {
6924                 sret = 0;
6925                 goto out;
6926         }
6927
6928         if (cnt >= PAGE_SIZE)
6929                 cnt = PAGE_SIZE - 1;
6930
6931         /* reset all but tr, trace, and overruns */
6932         trace_iterator_reset(iter);
6933         cpumask_clear(iter->started);
6934         trace_seq_init(&iter->seq);
6935
6936         trace_event_read_lock();
6937         trace_access_lock(iter->cpu_file);
6938         while (trace_find_next_entry_inc(iter) != NULL) {
6939                 enum print_line_t ret;
6940                 int save_len = iter->seq.seq.len;
6941
6942                 ret = print_trace_line(iter);
6943                 if (ret == TRACE_TYPE_PARTIAL_LINE) {
6944                         /*
6945                          * If one print_trace_line() fills entire trace_seq in one shot,
6946                          * trace_seq_to_user() will returns -EBUSY because save_len == 0,
6947                          * In this case, we need to consume it, otherwise, loop will peek
6948                          * this event next time, resulting in an infinite loop.
6949                          */
6950                         if (save_len == 0) {
6951                                 iter->seq.full = 0;
6952                                 trace_seq_puts(&iter->seq, "[LINE TOO BIG]\n");
6953                                 trace_consume(iter);
6954                                 break;
6955                         }
6956
6957                         /* In other cases, don't print partial lines */
6958                         iter->seq.seq.len = save_len;
6959                         break;
6960                 }
6961                 if (ret != TRACE_TYPE_NO_CONSUME)
6962                         trace_consume(iter);
6963
6964                 if (trace_seq_used(&iter->seq) >= cnt)
6965                         break;
6966
6967                 /*
6968                  * Setting the full flag means we reached the trace_seq buffer
6969                  * size and we should leave by partial output condition above.
6970                  * One of the trace_seq_* functions is not used properly.
6971                  */
6972                 WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
6973                           iter->ent->type);
6974         }
6975         trace_access_unlock(iter->cpu_file);
6976         trace_event_read_unlock();
6977
6978         /* Now copy what we have to the user */
6979         sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
6980         if (iter->seq.seq.readpos >= trace_seq_used(&iter->seq))
6981                 trace_seq_init(&iter->seq);
6982
6983         /*
6984          * If there was nothing to send to user, in spite of consuming trace
6985          * entries, go back to wait for more entries.
6986          */
6987         if (sret == -EBUSY)
6988                 goto waitagain;
6989
6990 out:
6991         mutex_unlock(&iter->mutex);
6992
6993         return sret;
6994 }
6995
6996 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
6997                                      unsigned int idx)
6998 {
6999         __free_page(spd->pages[idx]);
7000 }
7001
7002 static size_t
7003 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
7004 {
7005         size_t count;
7006         int save_len;
7007         int ret;
7008
7009         /* Seq buffer is page-sized, exactly what we need. */
7010         for (;;) {
7011                 save_len = iter->seq.seq.len;
7012                 ret = print_trace_line(iter);
7013
7014                 if (trace_seq_has_overflowed(&iter->seq)) {
7015                         iter->seq.seq.len = save_len;
7016                         break;
7017                 }
7018
7019                 /*
7020                  * This should not be hit, because it should only
7021                  * be set if the iter->seq overflowed. But check it
7022                  * anyway to be safe.
7023                  */
7024                 if (ret == TRACE_TYPE_PARTIAL_LINE) {
7025                         iter->seq.seq.len = save_len;
7026                         break;
7027                 }
7028
7029                 count = trace_seq_used(&iter->seq) - save_len;
7030                 if (rem < count) {
7031                         rem = 0;
7032                         iter->seq.seq.len = save_len;
7033                         break;
7034                 }
7035
7036                 if (ret != TRACE_TYPE_NO_CONSUME)
7037                         trace_consume(iter);
7038                 rem -= count;
7039                 if (!trace_find_next_entry_inc(iter))   {
7040                         rem = 0;
7041                         iter->ent = NULL;
7042                         break;
7043                 }
7044         }
7045
7046         return rem;
7047 }
7048
7049 static ssize_t tracing_splice_read_pipe(struct file *filp,
7050                                         loff_t *ppos,
7051                                         struct pipe_inode_info *pipe,
7052                                         size_t len,
7053                                         unsigned int flags)
7054 {
7055         struct page *pages_def[PIPE_DEF_BUFFERS];
7056         struct partial_page partial_def[PIPE_DEF_BUFFERS];
7057         struct trace_iterator *iter = filp->private_data;
7058         struct splice_pipe_desc spd = {
7059                 .pages          = pages_def,
7060                 .partial        = partial_def,
7061                 .nr_pages       = 0, /* This gets updated below. */
7062                 .nr_pages_max   = PIPE_DEF_BUFFERS,
7063                 .ops            = &default_pipe_buf_ops,
7064                 .spd_release    = tracing_spd_release_pipe,
7065         };
7066         ssize_t ret;
7067         size_t rem;
7068         unsigned int i;
7069
7070         if (splice_grow_spd(pipe, &spd))
7071                 return -ENOMEM;
7072
7073         mutex_lock(&iter->mutex);
7074
7075         if (iter->trace->splice_read) {
7076                 ret = iter->trace->splice_read(iter, filp,
7077                                                ppos, pipe, len, flags);
7078                 if (ret)
7079                         goto out_err;
7080         }
7081
7082         ret = tracing_wait_pipe(filp);
7083         if (ret <= 0)
7084                 goto out_err;
7085
7086         if (!iter->ent && !trace_find_next_entry_inc(iter)) {
7087                 ret = -EFAULT;
7088                 goto out_err;
7089         }
7090
7091         trace_event_read_lock();
7092         trace_access_lock(iter->cpu_file);
7093
7094         /* Fill as many pages as possible. */
7095         for (i = 0, rem = len; i < spd.nr_pages_max && rem; i++) {
7096                 spd.pages[i] = alloc_page(GFP_KERNEL);
7097                 if (!spd.pages[i])
7098                         break;
7099
7100                 rem = tracing_fill_pipe_page(rem, iter);
7101
7102                 /* Copy the data into the page, so we can start over. */
7103                 ret = trace_seq_to_buffer(&iter->seq,
7104                                           page_address(spd.pages[i]),
7105                                           trace_seq_used(&iter->seq));
7106                 if (ret < 0) {
7107                         __free_page(spd.pages[i]);
7108                         break;
7109                 }
7110                 spd.partial[i].offset = 0;
7111                 spd.partial[i].len = trace_seq_used(&iter->seq);
7112
7113                 trace_seq_init(&iter->seq);
7114         }
7115
7116         trace_access_unlock(iter->cpu_file);
7117         trace_event_read_unlock();
7118         mutex_unlock(&iter->mutex);
7119
7120         spd.nr_pages = i;
7121
7122         if (i)
7123                 ret = splice_to_pipe(pipe, &spd);
7124         else
7125                 ret = 0;
7126 out:
7127         splice_shrink_spd(&spd);
7128         return ret;
7129
7130 out_err:
7131         mutex_unlock(&iter->mutex);
7132         goto out;
7133 }
7134
7135 static ssize_t
7136 tracing_entries_read(struct file *filp, char __user *ubuf,
7137                      size_t cnt, loff_t *ppos)
7138 {
7139         struct inode *inode = file_inode(filp);
7140         struct trace_array *tr = inode->i_private;
7141         int cpu = tracing_get_cpu(inode);
7142         char buf[64];
7143         int r = 0;
7144         ssize_t ret;
7145
7146         mutex_lock(&trace_types_lock);
7147
7148         if (cpu == RING_BUFFER_ALL_CPUS) {
7149                 int cpu, buf_size_same;
7150                 unsigned long size;
7151
7152                 size = 0;
7153                 buf_size_same = 1;
7154                 /* check if all cpu sizes are same */
7155                 for_each_tracing_cpu(cpu) {
7156                         /* fill in the size from first enabled cpu */
7157                         if (size == 0)
7158                                 size = per_cpu_ptr(tr->array_buffer.data, cpu)->entries;
7159                         if (size != per_cpu_ptr(tr->array_buffer.data, cpu)->entries) {
7160                                 buf_size_same = 0;
7161                                 break;
7162                         }
7163                 }
7164
7165                 if (buf_size_same) {
7166                         if (!ring_buffer_expanded)
7167                                 r = sprintf(buf, "%lu (expanded: %lu)\n",
7168                                             size >> 10,
7169                                             trace_buf_size >> 10);
7170                         else
7171                                 r = sprintf(buf, "%lu\n", size >> 10);
7172                 } else
7173                         r = sprintf(buf, "X\n");
7174         } else
7175                 r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->array_buffer.data, cpu)->entries >> 10);
7176
7177         mutex_unlock(&trace_types_lock);
7178
7179         ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
7180         return ret;
7181 }
7182
7183 static ssize_t
7184 tracing_entries_write(struct file *filp, const char __user *ubuf,
7185                       size_t cnt, loff_t *ppos)
7186 {
7187         struct inode *inode = file_inode(filp);
7188         struct trace_array *tr = inode->i_private;
7189         unsigned long val;
7190         int ret;
7191
7192         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
7193         if (ret)
7194                 return ret;
7195
7196         /* must have at least 1 entry */
7197         if (!val)
7198                 return -EINVAL;
7199
7200         /* value is in KB */
7201         val <<= 10;
7202         ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode));
7203         if (ret < 0)
7204                 return ret;
7205
7206         *ppos += cnt;
7207
7208         return cnt;
7209 }
7210
7211 static ssize_t
7212 tracing_total_entries_read(struct file *filp, char __user *ubuf,
7213                                 size_t cnt, loff_t *ppos)
7214 {
7215         struct trace_array *tr = filp->private_data;
7216         char buf[64];
7217         int r, cpu;
7218         unsigned long size = 0, expanded_size = 0;
7219
7220         mutex_lock(&trace_types_lock);
7221         for_each_tracing_cpu(cpu) {
7222                 size += per_cpu_ptr(tr->array_buffer.data, cpu)->entries >> 10;
7223                 if (!ring_buffer_expanded)
7224                         expanded_size += trace_buf_size >> 10;
7225         }
7226         if (ring_buffer_expanded)
7227                 r = sprintf(buf, "%lu\n", size);
7228         else
7229                 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
7230         mutex_unlock(&trace_types_lock);
7231
7232         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
7233 }
7234
7235 static ssize_t
7236 tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
7237                           size_t cnt, loff_t *ppos)
7238 {
7239         /*
7240          * There is no need to read what the user has written, this function
7241          * is just to make sure that there is no error when "echo" is used
7242          */
7243
7244         *ppos += cnt;
7245
7246         return cnt;
7247 }
7248
7249 static int
7250 tracing_free_buffer_release(struct inode *inode, struct file *filp)
7251 {
7252         struct trace_array *tr = inode->i_private;
7253
7254         /* disable tracing ? */
7255         if (tr->trace_flags & TRACE_ITER_STOP_ON_FREE)
7256                 tracer_tracing_off(tr);
7257         /* resize the ring buffer to 0 */
7258         tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS);
7259
7260         trace_array_put(tr);
7261
7262         return 0;
7263 }
7264
7265 static ssize_t
7266 tracing_mark_write(struct file *filp, const char __user *ubuf,
7267                                         size_t cnt, loff_t *fpos)
7268 {
7269         struct trace_array *tr = filp->private_data;
7270         struct ring_buffer_event *event;
7271         enum event_trigger_type tt = ETT_NONE;
7272         struct trace_buffer *buffer;
7273         struct print_entry *entry;
7274         ssize_t written;
7275         int size;
7276         int len;
7277
7278 /* Used in tracing_mark_raw_write() as well */
7279 #define FAULTED_STR "<faulted>"
7280 #define FAULTED_SIZE (sizeof(FAULTED_STR) - 1) /* '\0' is already accounted for */
7281
7282         if (tracing_disabled)
7283                 return -EINVAL;
7284
7285         if (!(tr->trace_flags & TRACE_ITER_MARKERS))
7286                 return -EINVAL;
7287
7288         if (cnt > TRACE_BUF_SIZE)
7289                 cnt = TRACE_BUF_SIZE;
7290
7291         BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
7292
7293         size = sizeof(*entry) + cnt + 2; /* add '\0' and possible '\n' */
7294
7295         /* If less than "<faulted>", then make sure we can still add that */
7296         if (cnt < FAULTED_SIZE)
7297                 size += FAULTED_SIZE - cnt;
7298
7299         buffer = tr->array_buffer.buffer;
7300         event = __trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
7301                                             tracing_gen_ctx());
7302         if (unlikely(!event))
7303                 /* Ring buffer disabled, return as if not open for write */
7304                 return -EBADF;
7305
7306         entry = ring_buffer_event_data(event);
7307         entry->ip = _THIS_IP_;
7308
7309         len = __copy_from_user_inatomic(&entry->buf, ubuf, cnt);
7310         if (len) {
7311                 memcpy(&entry->buf, FAULTED_STR, FAULTED_SIZE);
7312                 cnt = FAULTED_SIZE;
7313                 written = -EFAULT;
7314         } else
7315                 written = cnt;
7316
7317         if (tr->trace_marker_file && !list_empty(&tr->trace_marker_file->triggers)) {
7318                 /* do not add \n before testing triggers, but add \0 */
7319                 entry->buf[cnt] = '\0';
7320                 tt = event_triggers_call(tr->trace_marker_file, buffer, entry, event);
7321         }
7322
7323         if (entry->buf[cnt - 1] != '\n') {
7324                 entry->buf[cnt] = '\n';
7325                 entry->buf[cnt + 1] = '\0';
7326         } else
7327                 entry->buf[cnt] = '\0';
7328
7329         if (static_branch_unlikely(&trace_marker_exports_enabled))
7330                 ftrace_exports(event, TRACE_EXPORT_MARKER);
7331         __buffer_unlock_commit(buffer, event);
7332
7333         if (tt)
7334                 event_triggers_post_call(tr->trace_marker_file, tt);
7335
7336         return written;
7337 }
7338
7339 /* Limit it for now to 3K (including tag) */
7340 #define RAW_DATA_MAX_SIZE (1024*3)
7341
7342 static ssize_t
7343 tracing_mark_raw_write(struct file *filp, const char __user *ubuf,
7344                                         size_t cnt, loff_t *fpos)
7345 {
7346         struct trace_array *tr = filp->private_data;
7347         struct ring_buffer_event *event;
7348         struct trace_buffer *buffer;
7349         struct raw_data_entry *entry;
7350         ssize_t written;
7351         int size;
7352         int len;
7353
7354 #define FAULT_SIZE_ID (FAULTED_SIZE + sizeof(int))
7355
7356         if (tracing_disabled)
7357                 return -EINVAL;
7358
7359         if (!(tr->trace_flags & TRACE_ITER_MARKERS))
7360                 return -EINVAL;
7361
7362         /* The marker must at least have a tag id */
7363         if (cnt < sizeof(unsigned int) || cnt > RAW_DATA_MAX_SIZE)
7364                 return -EINVAL;
7365
7366         if (cnt > TRACE_BUF_SIZE)
7367                 cnt = TRACE_BUF_SIZE;
7368
7369         BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
7370
7371         size = sizeof(*entry) + cnt;
7372         if (cnt < FAULT_SIZE_ID)
7373                 size += FAULT_SIZE_ID - cnt;
7374
7375         buffer = tr->array_buffer.buffer;
7376         event = __trace_buffer_lock_reserve(buffer, TRACE_RAW_DATA, size,
7377                                             tracing_gen_ctx());
7378         if (!event)
7379                 /* Ring buffer disabled, return as if not open for write */
7380                 return -EBADF;
7381
7382         entry = ring_buffer_event_data(event);
7383
7384         len = __copy_from_user_inatomic(&entry->id, ubuf, cnt);
7385         if (len) {
7386                 entry->id = -1;
7387                 memcpy(&entry->buf, FAULTED_STR, FAULTED_SIZE);
7388                 written = -EFAULT;
7389         } else
7390                 written = cnt;
7391
7392         __buffer_unlock_commit(buffer, event);
7393
7394         return written;
7395 }
7396
7397 static int tracing_clock_show(struct seq_file *m, void *v)
7398 {
7399         struct trace_array *tr = m->private;
7400         int i;
7401
7402         for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
7403                 seq_printf(m,
7404                         "%s%s%s%s", i ? " " : "",
7405                         i == tr->clock_id ? "[" : "", trace_clocks[i].name,
7406                         i == tr->clock_id ? "]" : "");
7407         seq_putc(m, '\n');
7408
7409         return 0;
7410 }
7411
7412 int tracing_set_clock(struct trace_array *tr, const char *clockstr)
7413 {
7414         int i;
7415
7416         for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
7417                 if (strcmp(trace_clocks[i].name, clockstr) == 0)
7418                         break;
7419         }
7420         if (i == ARRAY_SIZE(trace_clocks))
7421                 return -EINVAL;
7422
7423         mutex_lock(&trace_types_lock);
7424
7425         tr->clock_id = i;
7426
7427         ring_buffer_set_clock(tr->array_buffer.buffer, trace_clocks[i].func);
7428
7429         /*
7430          * New clock may not be consistent with the previous clock.
7431          * Reset the buffer so that it doesn't have incomparable timestamps.
7432          */
7433         tracing_reset_online_cpus(&tr->array_buffer);
7434
7435 #ifdef CONFIG_TRACER_MAX_TRACE
7436         if (tr->max_buffer.buffer)
7437                 ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func);
7438         tracing_reset_online_cpus(&tr->max_buffer);
7439 #endif
7440
7441         mutex_unlock(&trace_types_lock);
7442
7443         return 0;
7444 }
7445
7446 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
7447                                    size_t cnt, loff_t *fpos)
7448 {
7449         struct seq_file *m = filp->private_data;
7450         struct trace_array *tr = m->private;
7451         char buf[64];
7452         const char *clockstr;
7453         int ret;
7454
7455         if (cnt >= sizeof(buf))
7456                 return -EINVAL;
7457
7458         if (copy_from_user(buf, ubuf, cnt))
7459                 return -EFAULT;
7460
7461         buf[cnt] = 0;
7462
7463         clockstr = strstrip(buf);
7464
7465         ret = tracing_set_clock(tr, clockstr);
7466         if (ret)
7467                 return ret;
7468
7469         *fpos += cnt;
7470
7471         return cnt;
7472 }
7473
7474 static int tracing_clock_open(struct inode *inode, struct file *file)
7475 {
7476         struct trace_array *tr = inode->i_private;
7477         int ret;
7478
7479         ret = tracing_check_open_get_tr(tr);
7480         if (ret)
7481                 return ret;
7482
7483         ret = single_open(file, tracing_clock_show, inode->i_private);
7484         if (ret < 0)
7485                 trace_array_put(tr);
7486
7487         return ret;
7488 }
7489
7490 static int tracing_time_stamp_mode_show(struct seq_file *m, void *v)
7491 {
7492         struct trace_array *tr = m->private;
7493
7494         mutex_lock(&trace_types_lock);
7495
7496         if (ring_buffer_time_stamp_abs(tr->array_buffer.buffer))
7497                 seq_puts(m, "delta [absolute]\n");
7498         else
7499                 seq_puts(m, "[delta] absolute\n");
7500
7501         mutex_unlock(&trace_types_lock);
7502
7503         return 0;
7504 }
7505
7506 static int tracing_time_stamp_mode_open(struct inode *inode, struct file *file)
7507 {
7508         struct trace_array *tr = inode->i_private;
7509         int ret;
7510
7511         ret = tracing_check_open_get_tr(tr);
7512         if (ret)
7513                 return ret;
7514
7515         ret = single_open(file, tracing_time_stamp_mode_show, inode->i_private);
7516         if (ret < 0)
7517                 trace_array_put(tr);
7518
7519         return ret;
7520 }
7521
7522 u64 tracing_event_time_stamp(struct trace_buffer *buffer, struct ring_buffer_event *rbe)
7523 {
7524         if (rbe == this_cpu_read(trace_buffered_event))
7525                 return ring_buffer_time_stamp(buffer);
7526
7527         return ring_buffer_event_time_stamp(buffer, rbe);
7528 }
7529
7530 /*
7531  * Set or disable using the per CPU trace_buffer_event when possible.
7532  */
7533 int tracing_set_filter_buffering(struct trace_array *tr, bool set)
7534 {
7535         int ret = 0;
7536
7537         mutex_lock(&trace_types_lock);
7538
7539         if (set && tr->no_filter_buffering_ref++)
7540                 goto out;
7541
7542         if (!set) {
7543                 if (WARN_ON_ONCE(!tr->no_filter_buffering_ref)) {
7544                         ret = -EINVAL;
7545                         goto out;
7546                 }
7547
7548                 --tr->no_filter_buffering_ref;
7549         }
7550  out:
7551         mutex_unlock(&trace_types_lock);
7552
7553         return ret;
7554 }
7555
7556 struct ftrace_buffer_info {
7557         struct trace_iterator   iter;
7558         void                    *spare;
7559         unsigned int            spare_cpu;
7560         unsigned int            read;
7561 };
7562
7563 #ifdef CONFIG_TRACER_SNAPSHOT
7564 static int tracing_snapshot_open(struct inode *inode, struct file *file)
7565 {
7566         struct trace_array *tr = inode->i_private;
7567         struct trace_iterator *iter;
7568         struct seq_file *m;
7569         int ret;
7570
7571         ret = tracing_check_open_get_tr(tr);
7572         if (ret)
7573                 return ret;
7574
7575         if (file->f_mode & FMODE_READ) {
7576                 iter = __tracing_open(inode, file, true);
7577                 if (IS_ERR(iter))
7578                         ret = PTR_ERR(iter);
7579         } else {
7580                 /* Writes still need the seq_file to hold the private data */
7581                 ret = -ENOMEM;
7582                 m = kzalloc(sizeof(*m), GFP_KERNEL);
7583                 if (!m)
7584                         goto out;
7585                 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
7586                 if (!iter) {
7587                         kfree(m);
7588                         goto out;
7589                 }
7590                 ret = 0;
7591
7592                 iter->tr = tr;
7593                 iter->array_buffer = &tr->max_buffer;
7594                 iter->cpu_file = tracing_get_cpu(inode);
7595                 m->private = iter;
7596                 file->private_data = m;
7597         }
7598 out:
7599         if (ret < 0)
7600                 trace_array_put(tr);
7601
7602         return ret;
7603 }
7604
7605 static void tracing_swap_cpu_buffer(void *tr)
7606 {
7607         update_max_tr_single((struct trace_array *)tr, current, smp_processor_id());
7608 }
7609
7610 static ssize_t
7611 tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt,
7612                        loff_t *ppos)
7613 {
7614         struct seq_file *m = filp->private_data;
7615         struct trace_iterator *iter = m->private;
7616         struct trace_array *tr = iter->tr;
7617         unsigned long val;
7618         int ret;
7619
7620         ret = tracing_update_buffers();
7621         if (ret < 0)
7622                 return ret;
7623
7624         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
7625         if (ret)
7626                 return ret;
7627
7628         mutex_lock(&trace_types_lock);
7629
7630         if (tr->current_trace->use_max_tr) {
7631                 ret = -EBUSY;
7632                 goto out;
7633         }
7634
7635         local_irq_disable();
7636         arch_spin_lock(&tr->max_lock);
7637         if (tr->cond_snapshot)
7638                 ret = -EBUSY;
7639         arch_spin_unlock(&tr->max_lock);
7640         local_irq_enable();
7641         if (ret)
7642                 goto out;
7643
7644         switch (val) {
7645         case 0:
7646                 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
7647                         ret = -EINVAL;
7648                         break;
7649                 }
7650                 if (tr->allocated_snapshot)
7651                         free_snapshot(tr);
7652                 break;
7653         case 1:
7654 /* Only allow per-cpu swap if the ring buffer supports it */
7655 #ifndef CONFIG_RING_BUFFER_ALLOW_SWAP
7656                 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
7657                         ret = -EINVAL;
7658                         break;
7659                 }
7660 #endif
7661                 if (tr->allocated_snapshot)
7662                         ret = resize_buffer_duplicate_size(&tr->max_buffer,
7663                                         &tr->array_buffer, iter->cpu_file);
7664                 else
7665                         ret = tracing_alloc_snapshot_instance(tr);
7666                 if (ret < 0)
7667                         break;
7668                 /* Now, we're going to swap */
7669                 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
7670                         local_irq_disable();
7671                         update_max_tr(tr, current, smp_processor_id(), NULL);
7672                         local_irq_enable();
7673                 } else {
7674                         smp_call_function_single(iter->cpu_file, tracing_swap_cpu_buffer,
7675                                                  (void *)tr, 1);
7676                 }
7677                 break;
7678         default:
7679                 if (tr->allocated_snapshot) {
7680                         if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
7681                                 tracing_reset_online_cpus(&tr->max_buffer);
7682                         else
7683                                 tracing_reset_cpu(&tr->max_buffer, iter->cpu_file);
7684                 }
7685                 break;
7686         }
7687
7688         if (ret >= 0) {
7689                 *ppos += cnt;
7690                 ret = cnt;
7691         }
7692 out:
7693         mutex_unlock(&trace_types_lock);
7694         return ret;
7695 }
7696
7697 static int tracing_snapshot_release(struct inode *inode, struct file *file)
7698 {
7699         struct seq_file *m = file->private_data;
7700         int ret;
7701
7702         ret = tracing_release(inode, file);
7703
7704         if (file->f_mode & FMODE_READ)
7705                 return ret;
7706
7707         /* If write only, the seq_file is just a stub */
7708         if (m)
7709                 kfree(m->private);
7710         kfree(m);
7711
7712         return 0;
7713 }
7714
7715 static int tracing_buffers_open(struct inode *inode, struct file *filp);
7716 static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf,
7717                                     size_t count, loff_t *ppos);
7718 static int tracing_buffers_release(struct inode *inode, struct file *file);
7719 static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos,
7720                    struct pipe_inode_info *pipe, size_t len, unsigned int flags);
7721
7722 static int snapshot_raw_open(struct inode *inode, struct file *filp)
7723 {
7724         struct ftrace_buffer_info *info;
7725         int ret;
7726
7727         /* The following checks for tracefs lockdown */
7728         ret = tracing_buffers_open(inode, filp);
7729         if (ret < 0)
7730                 return ret;
7731
7732         info = filp->private_data;
7733
7734         if (info->iter.trace->use_max_tr) {
7735                 tracing_buffers_release(inode, filp);
7736                 return -EBUSY;
7737         }
7738
7739         info->iter.snapshot = true;
7740         info->iter.array_buffer = &info->iter.tr->max_buffer;
7741
7742         return ret;
7743 }
7744
7745 #endif /* CONFIG_TRACER_SNAPSHOT */
7746
7747
7748 static const struct file_operations tracing_thresh_fops = {
7749         .open           = tracing_open_generic,
7750         .read           = tracing_thresh_read,
7751         .write          = tracing_thresh_write,
7752         .llseek         = generic_file_llseek,
7753 };
7754
7755 #ifdef CONFIG_TRACER_MAX_TRACE
7756 static const struct file_operations tracing_max_lat_fops = {
7757         .open           = tracing_open_generic_tr,
7758         .read           = tracing_max_lat_read,
7759         .write          = tracing_max_lat_write,
7760         .llseek         = generic_file_llseek,
7761         .release        = tracing_release_generic_tr,
7762 };
7763 #endif
7764
7765 static const struct file_operations set_tracer_fops = {
7766         .open           = tracing_open_generic_tr,
7767         .read           = tracing_set_trace_read,
7768         .write          = tracing_set_trace_write,
7769         .llseek         = generic_file_llseek,
7770         .release        = tracing_release_generic_tr,
7771 };
7772
7773 static const struct file_operations tracing_pipe_fops = {
7774         .open           = tracing_open_pipe,
7775         .poll           = tracing_poll_pipe,
7776         .read           = tracing_read_pipe,
7777         .splice_read    = tracing_splice_read_pipe,
7778         .release        = tracing_release_pipe,
7779         .llseek         = no_llseek,
7780 };
7781
7782 static const struct file_operations tracing_entries_fops = {
7783         .open           = tracing_open_generic_tr,
7784         .read           = tracing_entries_read,
7785         .write          = tracing_entries_write,
7786         .llseek         = generic_file_llseek,
7787         .release        = tracing_release_generic_tr,
7788 };
7789
7790 static const struct file_operations tracing_total_entries_fops = {
7791         .open           = tracing_open_generic_tr,
7792         .read           = tracing_total_entries_read,
7793         .llseek         = generic_file_llseek,
7794         .release        = tracing_release_generic_tr,
7795 };
7796
7797 static const struct file_operations tracing_free_buffer_fops = {
7798         .open           = tracing_open_generic_tr,
7799         .write          = tracing_free_buffer_write,
7800         .release        = tracing_free_buffer_release,
7801 };
7802
7803 static const struct file_operations tracing_mark_fops = {
7804         .open           = tracing_mark_open,
7805         .write          = tracing_mark_write,
7806         .release        = tracing_release_generic_tr,
7807 };
7808
7809 static const struct file_operations tracing_mark_raw_fops = {
7810         .open           = tracing_mark_open,
7811         .write          = tracing_mark_raw_write,
7812         .release        = tracing_release_generic_tr,
7813 };
7814
7815 static const struct file_operations trace_clock_fops = {
7816         .open           = tracing_clock_open,
7817         .read           = seq_read,
7818         .llseek         = seq_lseek,
7819         .release        = tracing_single_release_tr,
7820         .write          = tracing_clock_write,
7821 };
7822
7823 static const struct file_operations trace_time_stamp_mode_fops = {
7824         .open           = tracing_time_stamp_mode_open,
7825         .read           = seq_read,
7826         .llseek         = seq_lseek,
7827         .release        = tracing_single_release_tr,
7828 };
7829
7830 #ifdef CONFIG_TRACER_SNAPSHOT
7831 static const struct file_operations snapshot_fops = {
7832         .open           = tracing_snapshot_open,
7833         .read           = seq_read,
7834         .write          = tracing_snapshot_write,
7835         .llseek         = tracing_lseek,
7836         .release        = tracing_snapshot_release,
7837 };
7838
7839 static const struct file_operations snapshot_raw_fops = {
7840         .open           = snapshot_raw_open,
7841         .read           = tracing_buffers_read,
7842         .release        = tracing_buffers_release,
7843         .splice_read    = tracing_buffers_splice_read,
7844         .llseek         = no_llseek,
7845 };
7846
7847 #endif /* CONFIG_TRACER_SNAPSHOT */
7848
7849 /*
7850  * trace_min_max_write - Write a u64 value to a trace_min_max_param struct
7851  * @filp: The active open file structure
7852  * @ubuf: The userspace provided buffer to read value into
7853  * @cnt: The maximum number of bytes to read
7854  * @ppos: The current "file" position
7855  *
7856  * This function implements the write interface for a struct trace_min_max_param.
7857  * The filp->private_data must point to a trace_min_max_param structure that
7858  * defines where to write the value, the min and the max acceptable values,
7859  * and a lock to protect the write.
7860  */
7861 static ssize_t
7862 trace_min_max_write(struct file *filp, const char __user *ubuf, size_t cnt, loff_t *ppos)
7863 {
7864         struct trace_min_max_param *param = filp->private_data;
7865         u64 val;
7866         int err;
7867
7868         if (!param)
7869                 return -EFAULT;
7870
7871         err = kstrtoull_from_user(ubuf, cnt, 10, &val);
7872         if (err)
7873                 return err;
7874
7875         if (param->lock)
7876                 mutex_lock(param->lock);
7877
7878         if (param->min && val < *param->min)
7879                 err = -EINVAL;
7880
7881         if (param->max && val > *param->max)
7882                 err = -EINVAL;
7883
7884         if (!err)
7885                 *param->val = val;
7886
7887         if (param->lock)
7888                 mutex_unlock(param->lock);
7889
7890         if (err)
7891                 return err;
7892
7893         return cnt;
7894 }
7895
7896 /*
7897  * trace_min_max_read - Read a u64 value from a trace_min_max_param struct
7898  * @filp: The active open file structure
7899  * @ubuf: The userspace provided buffer to read value into
7900  * @cnt: The maximum number of bytes to read
7901  * @ppos: The current "file" position
7902  *
7903  * This function implements the read interface for a struct trace_min_max_param.
7904  * The filp->private_data must point to a trace_min_max_param struct with valid
7905  * data.
7906  */
7907 static ssize_t
7908 trace_min_max_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
7909 {
7910         struct trace_min_max_param *param = filp->private_data;
7911         char buf[U64_STR_SIZE];
7912         int len;
7913         u64 val;
7914
7915         if (!param)
7916                 return -EFAULT;
7917
7918         val = *param->val;
7919
7920         if (cnt > sizeof(buf))
7921                 cnt = sizeof(buf);
7922
7923         len = snprintf(buf, sizeof(buf), "%llu\n", val);
7924
7925         return simple_read_from_buffer(ubuf, cnt, ppos, buf, len);
7926 }
7927
7928 const struct file_operations trace_min_max_fops = {
7929         .open           = tracing_open_generic,
7930         .read           = trace_min_max_read,
7931         .write          = trace_min_max_write,
7932 };
7933
7934 #define TRACING_LOG_ERRS_MAX    8
7935 #define TRACING_LOG_LOC_MAX     128
7936
7937 #define CMD_PREFIX "  Command: "
7938
7939 struct err_info {
7940         const char      **errs; /* ptr to loc-specific array of err strings */
7941         u8              type;   /* index into errs -> specific err string */
7942         u16             pos;    /* caret position */
7943         u64             ts;
7944 };
7945
7946 struct tracing_log_err {
7947         struct list_head        list;
7948         struct err_info         info;
7949         char                    loc[TRACING_LOG_LOC_MAX]; /* err location */
7950         char                    *cmd;                     /* what caused err */
7951 };
7952
7953 static DEFINE_MUTEX(tracing_err_log_lock);
7954
7955 static struct tracing_log_err *alloc_tracing_log_err(int len)
7956 {
7957         struct tracing_log_err *err;
7958
7959         err = kzalloc(sizeof(*err), GFP_KERNEL);
7960         if (!err)
7961                 return ERR_PTR(-ENOMEM);
7962
7963         err->cmd = kzalloc(len, GFP_KERNEL);
7964         if (!err->cmd) {
7965                 kfree(err);
7966                 return ERR_PTR(-ENOMEM);
7967         }
7968
7969         return err;
7970 }
7971
7972 static void free_tracing_log_err(struct tracing_log_err *err)
7973 {
7974         kfree(err->cmd);
7975         kfree(err);
7976 }
7977
7978 static struct tracing_log_err *get_tracing_log_err(struct trace_array *tr,
7979                                                    int len)
7980 {
7981         struct tracing_log_err *err;
7982         char *cmd;
7983
7984         if (tr->n_err_log_entries < TRACING_LOG_ERRS_MAX) {
7985                 err = alloc_tracing_log_err(len);
7986                 if (PTR_ERR(err) != -ENOMEM)
7987                         tr->n_err_log_entries++;
7988
7989                 return err;
7990         }
7991         cmd = kzalloc(len, GFP_KERNEL);
7992         if (!cmd)
7993                 return ERR_PTR(-ENOMEM);
7994         err = list_first_entry(&tr->err_log, struct tracing_log_err, list);
7995         kfree(err->cmd);
7996         err->cmd = cmd;
7997         list_del(&err->list);
7998
7999         return err;
8000 }
8001
8002 /**
8003  * err_pos - find the position of a string within a command for error careting
8004  * @cmd: The tracing command that caused the error
8005  * @str: The string to position the caret at within @cmd
8006  *
8007  * Finds the position of the first occurrence of @str within @cmd.  The
8008  * return value can be passed to tracing_log_err() for caret placement
8009  * within @cmd.
8010  *
8011  * Returns the index within @cmd of the first occurrence of @str or 0
8012  * if @str was not found.
8013  */
8014 unsigned int err_pos(char *cmd, const char *str)
8015 {
8016         char *found;
8017
8018         if (WARN_ON(!strlen(cmd)))
8019                 return 0;
8020
8021         found = strstr(cmd, str);
8022         if (found)
8023                 return found - cmd;
8024
8025         return 0;
8026 }
8027
8028 /**
8029  * tracing_log_err - write an error to the tracing error log
8030  * @tr: The associated trace array for the error (NULL for top level array)
8031  * @loc: A string describing where the error occurred
8032  * @cmd: The tracing command that caused the error
8033  * @errs: The array of loc-specific static error strings
8034  * @type: The index into errs[], which produces the specific static err string
8035  * @pos: The position the caret should be placed in the cmd
8036  *
8037  * Writes an error into tracing/error_log of the form:
8038  *
8039  * <loc>: error: <text>
8040  *   Command: <cmd>
8041  *              ^
8042  *
8043  * tracing/error_log is a small log file containing the last
8044  * TRACING_LOG_ERRS_MAX errors (8).  Memory for errors isn't allocated
8045  * unless there has been a tracing error, and the error log can be
8046  * cleared and have its memory freed by writing the empty string in
8047  * truncation mode to it i.e. echo > tracing/error_log.
8048  *
8049  * NOTE: the @errs array along with the @type param are used to
8050  * produce a static error string - this string is not copied and saved
8051  * when the error is logged - only a pointer to it is saved.  See
8052  * existing callers for examples of how static strings are typically
8053  * defined for use with tracing_log_err().
8054  */
8055 void tracing_log_err(struct trace_array *tr,
8056                      const char *loc, const char *cmd,
8057                      const char **errs, u8 type, u16 pos)
8058 {
8059         struct tracing_log_err *err;
8060         int len = 0;
8061
8062         if (!tr)
8063                 tr = &global_trace;
8064
8065         len += sizeof(CMD_PREFIX) + 2 * sizeof("\n") + strlen(cmd) + 1;
8066
8067         mutex_lock(&tracing_err_log_lock);
8068         err = get_tracing_log_err(tr, len);
8069         if (PTR_ERR(err) == -ENOMEM) {
8070                 mutex_unlock(&tracing_err_log_lock);
8071                 return;
8072         }
8073
8074         snprintf(err->loc, TRACING_LOG_LOC_MAX, "%s: error: ", loc);
8075         snprintf(err->cmd, len, "\n" CMD_PREFIX "%s\n", cmd);
8076
8077         err->info.errs = errs;
8078         err->info.type = type;
8079         err->info.pos = pos;
8080         err->info.ts = local_clock();
8081
8082         list_add_tail(&err->list, &tr->err_log);
8083         mutex_unlock(&tracing_err_log_lock);
8084 }
8085
8086 static void clear_tracing_err_log(struct trace_array *tr)
8087 {
8088         struct tracing_log_err *err, *next;
8089
8090         mutex_lock(&tracing_err_log_lock);
8091         list_for_each_entry_safe(err, next, &tr->err_log, list) {
8092                 list_del(&err->list);
8093                 free_tracing_log_err(err);
8094         }
8095
8096         tr->n_err_log_entries = 0;
8097         mutex_unlock(&tracing_err_log_lock);
8098 }
8099
8100 static void *tracing_err_log_seq_start(struct seq_file *m, loff_t *pos)
8101 {
8102         struct trace_array *tr = m->private;
8103
8104         mutex_lock(&tracing_err_log_lock);
8105
8106         return seq_list_start(&tr->err_log, *pos);
8107 }
8108
8109 static void *tracing_err_log_seq_next(struct seq_file *m, void *v, loff_t *pos)
8110 {
8111         struct trace_array *tr = m->private;
8112
8113         return seq_list_next(v, &tr->err_log, pos);
8114 }
8115
8116 static void tracing_err_log_seq_stop(struct seq_file *m, void *v)
8117 {
8118         mutex_unlock(&tracing_err_log_lock);
8119 }
8120
8121 static void tracing_err_log_show_pos(struct seq_file *m, u16 pos)
8122 {
8123         u16 i;
8124
8125         for (i = 0; i < sizeof(CMD_PREFIX) - 1; i++)
8126                 seq_putc(m, ' ');
8127         for (i = 0; i < pos; i++)
8128                 seq_putc(m, ' ');
8129         seq_puts(m, "^\n");
8130 }
8131
8132 static int tracing_err_log_seq_show(struct seq_file *m, void *v)
8133 {
8134         struct tracing_log_err *err = v;
8135
8136         if (err) {
8137                 const char *err_text = err->info.errs[err->info.type];
8138                 u64 sec = err->info.ts;
8139                 u32 nsec;
8140
8141                 nsec = do_div(sec, NSEC_PER_SEC);
8142                 seq_printf(m, "[%5llu.%06u] %s%s", sec, nsec / 1000,
8143                            err->loc, err_text);
8144                 seq_printf(m, "%s", err->cmd);
8145                 tracing_err_log_show_pos(m, err->info.pos);
8146         }
8147
8148         return 0;
8149 }
8150
8151 static const struct seq_operations tracing_err_log_seq_ops = {
8152         .start  = tracing_err_log_seq_start,
8153         .next   = tracing_err_log_seq_next,
8154         .stop   = tracing_err_log_seq_stop,
8155         .show   = tracing_err_log_seq_show
8156 };
8157
8158 static int tracing_err_log_open(struct inode *inode, struct file *file)
8159 {
8160         struct trace_array *tr = inode->i_private;
8161         int ret = 0;
8162
8163         ret = tracing_check_open_get_tr(tr);
8164         if (ret)
8165                 return ret;
8166
8167         /* If this file was opened for write, then erase contents */
8168         if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC))
8169                 clear_tracing_err_log(tr);
8170
8171         if (file->f_mode & FMODE_READ) {
8172                 ret = seq_open(file, &tracing_err_log_seq_ops);
8173                 if (!ret) {
8174                         struct seq_file *m = file->private_data;
8175                         m->private = tr;
8176                 } else {
8177                         trace_array_put(tr);
8178                 }
8179         }
8180         return ret;
8181 }
8182
8183 static ssize_t tracing_err_log_write(struct file *file,
8184                                      const char __user *buffer,
8185                                      size_t count, loff_t *ppos)
8186 {
8187         return count;
8188 }
8189
8190 static int tracing_err_log_release(struct inode *inode, struct file *file)
8191 {
8192         struct trace_array *tr = inode->i_private;
8193
8194         trace_array_put(tr);
8195
8196         if (file->f_mode & FMODE_READ)
8197                 seq_release(inode, file);
8198
8199         return 0;
8200 }
8201
8202 static const struct file_operations tracing_err_log_fops = {
8203         .open           = tracing_err_log_open,
8204         .write          = tracing_err_log_write,
8205         .read           = seq_read,
8206         .llseek         = tracing_lseek,
8207         .release        = tracing_err_log_release,
8208 };
8209
8210 static int tracing_buffers_open(struct inode *inode, struct file *filp)
8211 {
8212         struct trace_array *tr = inode->i_private;
8213         struct ftrace_buffer_info *info;
8214         int ret;
8215
8216         ret = tracing_check_open_get_tr(tr);
8217         if (ret)
8218                 return ret;
8219
8220         info = kvzalloc(sizeof(*info), GFP_KERNEL);
8221         if (!info) {
8222                 trace_array_put(tr);
8223                 return -ENOMEM;
8224         }
8225
8226         mutex_lock(&trace_types_lock);
8227
8228         info->iter.tr           = tr;
8229         info->iter.cpu_file     = tracing_get_cpu(inode);
8230         info->iter.trace        = tr->current_trace;
8231         info->iter.array_buffer = &tr->array_buffer;
8232         info->spare             = NULL;
8233         /* Force reading ring buffer for first read */
8234         info->read              = (unsigned int)-1;
8235
8236         filp->private_data = info;
8237
8238         tr->trace_ref++;
8239
8240         mutex_unlock(&trace_types_lock);
8241
8242         ret = nonseekable_open(inode, filp);
8243         if (ret < 0)
8244                 trace_array_put(tr);
8245
8246         return ret;
8247 }
8248
8249 static __poll_t
8250 tracing_buffers_poll(struct file *filp, poll_table *poll_table)
8251 {
8252         struct ftrace_buffer_info *info = filp->private_data;
8253         struct trace_iterator *iter = &info->iter;
8254
8255         return trace_poll(iter, filp, poll_table);
8256 }
8257
8258 static ssize_t
8259 tracing_buffers_read(struct file *filp, char __user *ubuf,
8260                      size_t count, loff_t *ppos)
8261 {
8262         struct ftrace_buffer_info *info = filp->private_data;
8263         struct trace_iterator *iter = &info->iter;
8264         ssize_t ret = 0;
8265         ssize_t size;
8266
8267         if (!count)
8268                 return 0;
8269
8270 #ifdef CONFIG_TRACER_MAX_TRACE
8271         if (iter->snapshot && iter->tr->current_trace->use_max_tr)
8272                 return -EBUSY;
8273 #endif
8274
8275         if (!info->spare) {
8276                 info->spare = ring_buffer_alloc_read_page(iter->array_buffer->buffer,
8277                                                           iter->cpu_file);
8278                 if (IS_ERR(info->spare)) {
8279                         ret = PTR_ERR(info->spare);
8280                         info->spare = NULL;
8281                 } else {
8282                         info->spare_cpu = iter->cpu_file;
8283                 }
8284         }
8285         if (!info->spare)
8286                 return ret;
8287
8288         /* Do we have previous read data to read? */
8289         if (info->read < PAGE_SIZE)
8290                 goto read;
8291
8292  again:
8293         trace_access_lock(iter->cpu_file);
8294         ret = ring_buffer_read_page(iter->array_buffer->buffer,
8295                                     &info->spare,
8296                                     count,
8297                                     iter->cpu_file, 0);
8298         trace_access_unlock(iter->cpu_file);
8299
8300         if (ret < 0) {
8301                 if (trace_empty(iter)) {
8302                         if ((filp->f_flags & O_NONBLOCK))
8303                                 return -EAGAIN;
8304
8305                         ret = wait_on_pipe(iter, 0);
8306                         if (ret)
8307                                 return ret;
8308
8309                         goto again;
8310                 }
8311                 return 0;
8312         }
8313
8314         info->read = 0;
8315  read:
8316         size = PAGE_SIZE - info->read;
8317         if (size > count)
8318                 size = count;
8319
8320         ret = copy_to_user(ubuf, info->spare + info->read, size);
8321         if (ret == size)
8322                 return -EFAULT;
8323
8324         size -= ret;
8325
8326         *ppos += size;
8327         info->read += size;
8328
8329         return size;
8330 }
8331
8332 static int tracing_buffers_release(struct inode *inode, struct file *file)
8333 {
8334         struct ftrace_buffer_info *info = file->private_data;
8335         struct trace_iterator *iter = &info->iter;
8336
8337         mutex_lock(&trace_types_lock);
8338
8339         iter->tr->trace_ref--;
8340
8341         __trace_array_put(iter->tr);
8342
8343         iter->wait_index++;
8344         /* Make sure the waiters see the new wait_index */
8345         smp_wmb();
8346
8347         ring_buffer_wake_waiters(iter->array_buffer->buffer, iter->cpu_file);
8348
8349         if (info->spare)
8350                 ring_buffer_free_read_page(iter->array_buffer->buffer,
8351                                            info->spare_cpu, info->spare);
8352         kvfree(info);
8353
8354         mutex_unlock(&trace_types_lock);
8355
8356         return 0;
8357 }
8358
8359 struct buffer_ref {
8360         struct trace_buffer     *buffer;
8361         void                    *page;
8362         int                     cpu;
8363         refcount_t              refcount;
8364 };
8365
8366 static void buffer_ref_release(struct buffer_ref *ref)
8367 {
8368         if (!refcount_dec_and_test(&ref->refcount))
8369                 return;
8370         ring_buffer_free_read_page(ref->buffer, ref->cpu, ref->page);
8371         kfree(ref);
8372 }
8373
8374 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
8375                                     struct pipe_buffer *buf)
8376 {
8377         struct buffer_ref *ref = (struct buffer_ref *)buf->private;
8378
8379         buffer_ref_release(ref);
8380         buf->private = 0;
8381 }
8382
8383 static bool buffer_pipe_buf_get(struct pipe_inode_info *pipe,
8384                                 struct pipe_buffer *buf)
8385 {
8386         struct buffer_ref *ref = (struct buffer_ref *)buf->private;
8387
8388         if (refcount_read(&ref->refcount) > INT_MAX/2)
8389                 return false;
8390
8391         refcount_inc(&ref->refcount);
8392         return true;
8393 }
8394
8395 /* Pipe buffer operations for a buffer. */
8396 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
8397         .release                = buffer_pipe_buf_release,
8398         .get                    = buffer_pipe_buf_get,
8399 };
8400
8401 /*
8402  * Callback from splice_to_pipe(), if we need to release some pages
8403  * at the end of the spd in case we error'ed out in filling the pipe.
8404  */
8405 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
8406 {
8407         struct buffer_ref *ref =
8408                 (struct buffer_ref *)spd->partial[i].private;
8409
8410         buffer_ref_release(ref);
8411         spd->partial[i].private = 0;
8412 }
8413
8414 static ssize_t
8415 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
8416                             struct pipe_inode_info *pipe, size_t len,
8417                             unsigned int flags)
8418 {
8419         struct ftrace_buffer_info *info = file->private_data;
8420         struct trace_iterator *iter = &info->iter;
8421         struct partial_page partial_def[PIPE_DEF_BUFFERS];
8422         struct page *pages_def[PIPE_DEF_BUFFERS];
8423         struct splice_pipe_desc spd = {
8424                 .pages          = pages_def,
8425                 .partial        = partial_def,
8426                 .nr_pages_max   = PIPE_DEF_BUFFERS,
8427                 .ops            = &buffer_pipe_buf_ops,
8428                 .spd_release    = buffer_spd_release,
8429         };
8430         struct buffer_ref *ref;
8431         int entries, i;
8432         ssize_t ret = 0;
8433
8434 #ifdef CONFIG_TRACER_MAX_TRACE
8435         if (iter->snapshot && iter->tr->current_trace->use_max_tr)
8436                 return -EBUSY;
8437 #endif
8438
8439         if (*ppos & (PAGE_SIZE - 1))
8440                 return -EINVAL;
8441
8442         if (len & (PAGE_SIZE - 1)) {
8443                 if (len < PAGE_SIZE)
8444                         return -EINVAL;
8445                 len &= PAGE_MASK;
8446         }
8447
8448         if (splice_grow_spd(pipe, &spd))
8449                 return -ENOMEM;
8450
8451  again:
8452         trace_access_lock(iter->cpu_file);
8453         entries = ring_buffer_entries_cpu(iter->array_buffer->buffer, iter->cpu_file);
8454
8455         for (i = 0; i < spd.nr_pages_max && len && entries; i++, len -= PAGE_SIZE) {
8456                 struct page *page;
8457                 int r;
8458
8459                 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
8460                 if (!ref) {
8461                         ret = -ENOMEM;
8462                         break;
8463                 }
8464
8465                 refcount_set(&ref->refcount, 1);
8466                 ref->buffer = iter->array_buffer->buffer;
8467                 ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file);
8468                 if (IS_ERR(ref->page)) {
8469                         ret = PTR_ERR(ref->page);
8470                         ref->page = NULL;
8471                         kfree(ref);
8472                         break;
8473                 }
8474                 ref->cpu = iter->cpu_file;
8475
8476                 r = ring_buffer_read_page(ref->buffer, &ref->page,
8477                                           len, iter->cpu_file, 1);
8478                 if (r < 0) {
8479                         ring_buffer_free_read_page(ref->buffer, ref->cpu,
8480                                                    ref->page);
8481                         kfree(ref);
8482                         break;
8483                 }
8484
8485                 page = virt_to_page(ref->page);
8486
8487                 spd.pages[i] = page;
8488                 spd.partial[i].len = PAGE_SIZE;
8489                 spd.partial[i].offset = 0;
8490                 spd.partial[i].private = (unsigned long)ref;
8491                 spd.nr_pages++;
8492                 *ppos += PAGE_SIZE;
8493
8494                 entries = ring_buffer_entries_cpu(iter->array_buffer->buffer, iter->cpu_file);
8495         }
8496
8497         trace_access_unlock(iter->cpu_file);
8498         spd.nr_pages = i;
8499
8500         /* did we read anything? */
8501         if (!spd.nr_pages) {
8502                 long wait_index;
8503
8504                 if (ret)
8505                         goto out;
8506
8507                 ret = -EAGAIN;
8508                 if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK))
8509                         goto out;
8510
8511                 wait_index = READ_ONCE(iter->wait_index);
8512
8513                 ret = wait_on_pipe(iter, iter->tr->buffer_percent);
8514                 if (ret)
8515                         goto out;
8516
8517                 /* No need to wait after waking up when tracing is off */
8518                 if (!tracer_tracing_is_on(iter->tr))
8519                         goto out;
8520
8521                 /* Make sure we see the new wait_index */
8522                 smp_rmb();
8523                 if (wait_index != iter->wait_index)
8524                         goto out;
8525
8526                 goto again;
8527         }
8528
8529         ret = splice_to_pipe(pipe, &spd);
8530 out:
8531         splice_shrink_spd(&spd);
8532
8533         return ret;
8534 }
8535
8536 /* An ioctl call with cmd 0 to the ring buffer file will wake up all waiters */
8537 static long tracing_buffers_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
8538 {
8539         struct ftrace_buffer_info *info = file->private_data;
8540         struct trace_iterator *iter = &info->iter;
8541
8542         if (cmd)
8543                 return -ENOIOCTLCMD;
8544
8545         mutex_lock(&trace_types_lock);
8546
8547         iter->wait_index++;
8548         /* Make sure the waiters see the new wait_index */
8549         smp_wmb();
8550
8551         ring_buffer_wake_waiters(iter->array_buffer->buffer, iter->cpu_file);
8552
8553         mutex_unlock(&trace_types_lock);
8554         return 0;
8555 }
8556
8557 static const struct file_operations tracing_buffers_fops = {
8558         .open           = tracing_buffers_open,
8559         .read           = tracing_buffers_read,
8560         .poll           = tracing_buffers_poll,
8561         .release        = tracing_buffers_release,
8562         .splice_read    = tracing_buffers_splice_read,
8563         .unlocked_ioctl = tracing_buffers_ioctl,
8564         .llseek         = no_llseek,
8565 };
8566
8567 static ssize_t
8568 tracing_stats_read(struct file *filp, char __user *ubuf,
8569                    size_t count, loff_t *ppos)
8570 {
8571         struct inode *inode = file_inode(filp);
8572         struct trace_array *tr = inode->i_private;
8573         struct array_buffer *trace_buf = &tr->array_buffer;
8574         int cpu = tracing_get_cpu(inode);
8575         struct trace_seq *s;
8576         unsigned long cnt;
8577         unsigned long long t;
8578         unsigned long usec_rem;
8579
8580         s = kmalloc(sizeof(*s), GFP_KERNEL);
8581         if (!s)
8582                 return -ENOMEM;
8583
8584         trace_seq_init(s);
8585
8586         cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu);
8587         trace_seq_printf(s, "entries: %ld\n", cnt);
8588
8589         cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu);
8590         trace_seq_printf(s, "overrun: %ld\n", cnt);
8591
8592         cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu);
8593         trace_seq_printf(s, "commit overrun: %ld\n", cnt);
8594
8595         cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu);
8596         trace_seq_printf(s, "bytes: %ld\n", cnt);
8597
8598         if (trace_clocks[tr->clock_id].in_ns) {
8599                 /* local or global for trace_clock */
8600                 t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
8601                 usec_rem = do_div(t, USEC_PER_SEC);
8602                 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n",
8603                                                                 t, usec_rem);
8604
8605                 t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer));
8606                 usec_rem = do_div(t, USEC_PER_SEC);
8607                 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
8608         } else {
8609                 /* counter or tsc mode for trace_clock */
8610                 trace_seq_printf(s, "oldest event ts: %llu\n",
8611                                 ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
8612
8613                 trace_seq_printf(s, "now ts: %llu\n",
8614                                 ring_buffer_time_stamp(trace_buf->buffer));
8615         }
8616
8617         cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu);
8618         trace_seq_printf(s, "dropped events: %ld\n", cnt);
8619
8620         cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu);
8621         trace_seq_printf(s, "read events: %ld\n", cnt);
8622
8623         count = simple_read_from_buffer(ubuf, count, ppos,
8624                                         s->buffer, trace_seq_used(s));
8625
8626         kfree(s);
8627
8628         return count;
8629 }
8630
8631 static const struct file_operations tracing_stats_fops = {
8632         .open           = tracing_open_generic_tr,
8633         .read           = tracing_stats_read,
8634         .llseek         = generic_file_llseek,
8635         .release        = tracing_release_generic_tr,
8636 };
8637
8638 #ifdef CONFIG_DYNAMIC_FTRACE
8639
8640 static ssize_t
8641 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
8642                   size_t cnt, loff_t *ppos)
8643 {
8644         ssize_t ret;
8645         char *buf;
8646         int r;
8647
8648         /* 256 should be plenty to hold the amount needed */
8649         buf = kmalloc(256, GFP_KERNEL);
8650         if (!buf)
8651                 return -ENOMEM;
8652
8653         r = scnprintf(buf, 256, "%ld pages:%ld groups: %ld\n",
8654                       ftrace_update_tot_cnt,
8655                       ftrace_number_of_pages,
8656                       ftrace_number_of_groups);
8657
8658         ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
8659         kfree(buf);
8660         return ret;
8661 }
8662
8663 static const struct file_operations tracing_dyn_info_fops = {
8664         .open           = tracing_open_generic,
8665         .read           = tracing_read_dyn_info,
8666         .llseek         = generic_file_llseek,
8667 };
8668 #endif /* CONFIG_DYNAMIC_FTRACE */
8669
8670 #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE)
8671 static void
8672 ftrace_snapshot(unsigned long ip, unsigned long parent_ip,
8673                 struct trace_array *tr, struct ftrace_probe_ops *ops,
8674                 void *data)
8675 {
8676         tracing_snapshot_instance(tr);
8677 }
8678
8679 static void
8680 ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip,
8681                       struct trace_array *tr, struct ftrace_probe_ops *ops,
8682                       void *data)
8683 {
8684         struct ftrace_func_mapper *mapper = data;
8685         long *count = NULL;
8686
8687         if (mapper)
8688                 count = (long *)ftrace_func_mapper_find_ip(mapper, ip);
8689
8690         if (count) {
8691
8692                 if (*count <= 0)
8693                         return;
8694
8695                 (*count)--;
8696         }
8697
8698         tracing_snapshot_instance(tr);
8699 }
8700
8701 static int
8702 ftrace_snapshot_print(struct seq_file *m, unsigned long ip,
8703                       struct ftrace_probe_ops *ops, void *data)
8704 {
8705         struct ftrace_func_mapper *mapper = data;
8706         long *count = NULL;
8707
8708         seq_printf(m, "%ps:", (void *)ip);
8709
8710         seq_puts(m, "snapshot");
8711
8712         if (mapper)
8713                 count = (long *)ftrace_func_mapper_find_ip(mapper, ip);
8714
8715         if (count)
8716                 seq_printf(m, ":count=%ld\n", *count);
8717         else
8718                 seq_puts(m, ":unlimited\n");
8719
8720         return 0;
8721 }
8722
8723 static int
8724 ftrace_snapshot_init(struct ftrace_probe_ops *ops, struct trace_array *tr,
8725                      unsigned long ip, void *init_data, void **data)
8726 {
8727         struct ftrace_func_mapper *mapper = *data;
8728
8729         if (!mapper) {
8730                 mapper = allocate_ftrace_func_mapper();
8731                 if (!mapper)
8732                         return -ENOMEM;
8733                 *data = mapper;
8734         }
8735
8736         return ftrace_func_mapper_add_ip(mapper, ip, init_data);
8737 }
8738
8739 static void
8740 ftrace_snapshot_free(struct ftrace_probe_ops *ops, struct trace_array *tr,
8741                      unsigned long ip, void *data)
8742 {
8743         struct ftrace_func_mapper *mapper = data;
8744
8745         if (!ip) {
8746                 if (!mapper)
8747                         return;
8748                 free_ftrace_func_mapper(mapper, NULL);
8749                 return;
8750         }
8751
8752         ftrace_func_mapper_remove_ip(mapper, ip);
8753 }
8754
8755 static struct ftrace_probe_ops snapshot_probe_ops = {
8756         .func                   = ftrace_snapshot,
8757         .print                  = ftrace_snapshot_print,
8758 };
8759
8760 static struct ftrace_probe_ops snapshot_count_probe_ops = {
8761         .func                   = ftrace_count_snapshot,
8762         .print                  = ftrace_snapshot_print,
8763         .init                   = ftrace_snapshot_init,
8764         .free                   = ftrace_snapshot_free,
8765 };
8766
8767 static int
8768 ftrace_trace_snapshot_callback(struct trace_array *tr, struct ftrace_hash *hash,
8769                                char *glob, char *cmd, char *param, int enable)
8770 {
8771         struct ftrace_probe_ops *ops;
8772         void *count = (void *)-1;
8773         char *number;
8774         int ret;
8775
8776         if (!tr)
8777                 return -ENODEV;
8778
8779         /* hash funcs only work with set_ftrace_filter */
8780         if (!enable)
8781                 return -EINVAL;
8782
8783         ops = param ? &snapshot_count_probe_ops :  &snapshot_probe_ops;
8784
8785         if (glob[0] == '!')
8786                 return unregister_ftrace_function_probe_func(glob+1, tr, ops);
8787
8788         if (!param)
8789                 goto out_reg;
8790
8791         number = strsep(&param, ":");
8792
8793         if (!strlen(number))
8794                 goto out_reg;
8795
8796         /*
8797          * We use the callback data field (which is a pointer)
8798          * as our counter.
8799          */
8800         ret = kstrtoul(number, 0, (unsigned long *)&count);
8801         if (ret)
8802                 return ret;
8803
8804  out_reg:
8805         ret = tracing_alloc_snapshot_instance(tr);
8806         if (ret < 0)
8807                 goto out;
8808
8809         ret = register_ftrace_function_probe(glob, tr, ops, count);
8810
8811  out:
8812         return ret < 0 ? ret : 0;
8813 }
8814
8815 static struct ftrace_func_command ftrace_snapshot_cmd = {
8816         .name                   = "snapshot",
8817         .func                   = ftrace_trace_snapshot_callback,
8818 };
8819
8820 static __init int register_snapshot_cmd(void)
8821 {
8822         return register_ftrace_command(&ftrace_snapshot_cmd);
8823 }
8824 #else
8825 static inline __init int register_snapshot_cmd(void) { return 0; }
8826 #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */
8827
8828 static struct dentry *tracing_get_dentry(struct trace_array *tr)
8829 {
8830         if (WARN_ON(!tr->dir))
8831                 return ERR_PTR(-ENODEV);
8832
8833         /* Top directory uses NULL as the parent */
8834         if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
8835                 return NULL;
8836
8837         /* All sub buffers have a descriptor */
8838         return tr->dir;
8839 }
8840
8841 static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu)
8842 {
8843         struct dentry *d_tracer;
8844
8845         if (tr->percpu_dir)
8846                 return tr->percpu_dir;
8847
8848         d_tracer = tracing_get_dentry(tr);
8849         if (IS_ERR(d_tracer))
8850                 return NULL;
8851
8852         tr->percpu_dir = tracefs_create_dir("per_cpu", d_tracer);
8853
8854         MEM_FAIL(!tr->percpu_dir,
8855                   "Could not create tracefs directory 'per_cpu/%d'\n", cpu);
8856
8857         return tr->percpu_dir;
8858 }
8859
8860 static struct dentry *
8861 trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent,
8862                       void *data, long cpu, const struct file_operations *fops)
8863 {
8864         struct dentry *ret = trace_create_file(name, mode, parent, data, fops);
8865
8866         if (ret) /* See tracing_get_cpu() */
8867                 d_inode(ret)->i_cdev = (void *)(cpu + 1);
8868         return ret;
8869 }
8870
8871 static void
8872 tracing_init_tracefs_percpu(struct trace_array *tr, long cpu)
8873 {
8874         struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu);
8875         struct dentry *d_cpu;
8876         char cpu_dir[30]; /* 30 characters should be more than enough */
8877
8878         if (!d_percpu)
8879                 return;
8880
8881         snprintf(cpu_dir, 30, "cpu%ld", cpu);
8882         d_cpu = tracefs_create_dir(cpu_dir, d_percpu);
8883         if (!d_cpu) {
8884                 pr_warn("Could not create tracefs '%s' entry\n", cpu_dir);
8885                 return;
8886         }
8887
8888         /* per cpu trace_pipe */
8889         trace_create_cpu_file("trace_pipe", TRACE_MODE_READ, d_cpu,
8890                                 tr, cpu, &tracing_pipe_fops);
8891
8892         /* per cpu trace */
8893         trace_create_cpu_file("trace", TRACE_MODE_WRITE, d_cpu,
8894                                 tr, cpu, &tracing_fops);
8895
8896         trace_create_cpu_file("trace_pipe_raw", TRACE_MODE_READ, d_cpu,
8897                                 tr, cpu, &tracing_buffers_fops);
8898
8899         trace_create_cpu_file("stats", TRACE_MODE_READ, d_cpu,
8900                                 tr, cpu, &tracing_stats_fops);
8901
8902         trace_create_cpu_file("buffer_size_kb", TRACE_MODE_READ, d_cpu,
8903                                 tr, cpu, &tracing_entries_fops);
8904
8905 #ifdef CONFIG_TRACER_SNAPSHOT
8906         trace_create_cpu_file("snapshot", TRACE_MODE_WRITE, d_cpu,
8907                                 tr, cpu, &snapshot_fops);
8908
8909         trace_create_cpu_file("snapshot_raw", TRACE_MODE_READ, d_cpu,
8910                                 tr, cpu, &snapshot_raw_fops);
8911 #endif
8912 }
8913
8914 #ifdef CONFIG_FTRACE_SELFTEST
8915 /* Let selftest have access to static functions in this file */
8916 #include "trace_selftest.c"
8917 #endif
8918
8919 static ssize_t
8920 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
8921                         loff_t *ppos)
8922 {
8923         struct trace_option_dentry *topt = filp->private_data;
8924         char *buf;
8925
8926         if (topt->flags->val & topt->opt->bit)
8927                 buf = "1\n";
8928         else
8929                 buf = "0\n";
8930
8931         return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
8932 }
8933
8934 static ssize_t
8935 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
8936                          loff_t *ppos)
8937 {
8938         struct trace_option_dentry *topt = filp->private_data;
8939         unsigned long val;
8940         int ret;
8941
8942         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
8943         if (ret)
8944                 return ret;
8945
8946         if (val != 0 && val != 1)
8947                 return -EINVAL;
8948
8949         if (!!(topt->flags->val & topt->opt->bit) != val) {
8950                 mutex_lock(&trace_types_lock);
8951                 ret = __set_tracer_option(topt->tr, topt->flags,
8952                                           topt->opt, !val);
8953                 mutex_unlock(&trace_types_lock);
8954                 if (ret)
8955                         return ret;
8956         }
8957
8958         *ppos += cnt;
8959
8960         return cnt;
8961 }
8962
8963 static int tracing_open_options(struct inode *inode, struct file *filp)
8964 {
8965         struct trace_option_dentry *topt = inode->i_private;
8966         int ret;
8967
8968         ret = tracing_check_open_get_tr(topt->tr);
8969         if (ret)
8970                 return ret;
8971
8972         filp->private_data = inode->i_private;
8973         return 0;
8974 }
8975
8976 static int tracing_release_options(struct inode *inode, struct file *file)
8977 {
8978         struct trace_option_dentry *topt = file->private_data;
8979
8980         trace_array_put(topt->tr);
8981         return 0;
8982 }
8983
8984 static const struct file_operations trace_options_fops = {
8985         .open = tracing_open_options,
8986         .read = trace_options_read,
8987         .write = trace_options_write,
8988         .llseek = generic_file_llseek,
8989         .release = tracing_release_options,
8990 };
8991
8992 /*
8993  * In order to pass in both the trace_array descriptor as well as the index
8994  * to the flag that the trace option file represents, the trace_array
8995  * has a character array of trace_flags_index[], which holds the index
8996  * of the bit for the flag it represents. index[0] == 0, index[1] == 1, etc.
8997  * The address of this character array is passed to the flag option file
8998  * read/write callbacks.
8999  *
9000  * In order to extract both the index and the trace_array descriptor,
9001  * get_tr_index() uses the following algorithm.
9002  *
9003  *   idx = *ptr;
9004  *
9005  * As the pointer itself contains the address of the index (remember
9006  * index[1] == 1).
9007  *
9008  * Then to get the trace_array descriptor, by subtracting that index
9009  * from the ptr, we get to the start of the index itself.
9010  *
9011  *   ptr - idx == &index[0]
9012  *
9013  * Then a simple container_of() from that pointer gets us to the
9014  * trace_array descriptor.
9015  */
9016 static void get_tr_index(void *data, struct trace_array **ptr,
9017                          unsigned int *pindex)
9018 {
9019         *pindex = *(unsigned char *)data;
9020
9021         *ptr = container_of(data - *pindex, struct trace_array,
9022                             trace_flags_index);
9023 }
9024
9025 static ssize_t
9026 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
9027                         loff_t *ppos)
9028 {
9029         void *tr_index = filp->private_data;
9030         struct trace_array *tr;
9031         unsigned int index;
9032         char *buf;
9033
9034         get_tr_index(tr_index, &tr, &index);
9035
9036         if (tr->trace_flags & (1 << index))
9037                 buf = "1\n";
9038         else
9039                 buf = "0\n";
9040
9041         return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
9042 }
9043
9044 static ssize_t
9045 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
9046                          loff_t *ppos)
9047 {
9048         void *tr_index = filp->private_data;
9049         struct trace_array *tr;
9050         unsigned int index;
9051         unsigned long val;
9052         int ret;
9053
9054         get_tr_index(tr_index, &tr, &index);
9055
9056         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
9057         if (ret)
9058                 return ret;
9059
9060         if (val != 0 && val != 1)
9061                 return -EINVAL;
9062
9063         mutex_lock(&event_mutex);
9064         mutex_lock(&trace_types_lock);
9065         ret = set_tracer_flag(tr, 1 << index, val);
9066         mutex_unlock(&trace_types_lock);
9067         mutex_unlock(&event_mutex);
9068
9069         if (ret < 0)
9070                 return ret;
9071
9072         *ppos += cnt;
9073
9074         return cnt;
9075 }
9076
9077 static const struct file_operations trace_options_core_fops = {
9078         .open = tracing_open_generic,
9079         .read = trace_options_core_read,
9080         .write = trace_options_core_write,
9081         .llseek = generic_file_llseek,
9082 };
9083
9084 struct dentry *trace_create_file(const char *name,
9085                                  umode_t mode,
9086                                  struct dentry *parent,
9087                                  void *data,
9088                                  const struct file_operations *fops)
9089 {
9090         struct dentry *ret;
9091
9092         ret = tracefs_create_file(name, mode, parent, data, fops);
9093         if (!ret)
9094                 pr_warn("Could not create tracefs '%s' entry\n", name);
9095
9096         return ret;
9097 }
9098
9099
9100 static struct dentry *trace_options_init_dentry(struct trace_array *tr)
9101 {
9102         struct dentry *d_tracer;
9103
9104         if (tr->options)
9105                 return tr->options;
9106
9107         d_tracer = tracing_get_dentry(tr);
9108         if (IS_ERR(d_tracer))
9109                 return NULL;
9110
9111         tr->options = tracefs_create_dir("options", d_tracer);
9112         if (!tr->options) {
9113                 pr_warn("Could not create tracefs directory 'options'\n");
9114                 return NULL;
9115         }
9116
9117         return tr->options;
9118 }
9119
9120 static void
9121 create_trace_option_file(struct trace_array *tr,
9122                          struct trace_option_dentry *topt,
9123                          struct tracer_flags *flags,
9124                          struct tracer_opt *opt)
9125 {
9126         struct dentry *t_options;
9127
9128         t_options = trace_options_init_dentry(tr);
9129         if (!t_options)
9130                 return;
9131
9132         topt->flags = flags;
9133         topt->opt = opt;
9134         topt->tr = tr;
9135
9136         topt->entry = trace_create_file(opt->name, TRACE_MODE_WRITE,
9137                                         t_options, topt, &trace_options_fops);
9138
9139 }
9140
9141 static void
9142 create_trace_option_files(struct trace_array *tr, struct tracer *tracer)
9143 {
9144         struct trace_option_dentry *topts;
9145         struct trace_options *tr_topts;
9146         struct tracer_flags *flags;
9147         struct tracer_opt *opts;
9148         int cnt;
9149         int i;
9150
9151         if (!tracer)
9152                 return;
9153
9154         flags = tracer->flags;
9155
9156         if (!flags || !flags->opts)
9157                 return;
9158
9159         /*
9160          * If this is an instance, only create flags for tracers
9161          * the instance may have.
9162          */
9163         if (!trace_ok_for_array(tracer, tr))
9164                 return;
9165
9166         for (i = 0; i < tr->nr_topts; i++) {
9167                 /* Make sure there's no duplicate flags. */
9168                 if (WARN_ON_ONCE(tr->topts[i].tracer->flags == tracer->flags))
9169                         return;
9170         }
9171
9172         opts = flags->opts;
9173
9174         for (cnt = 0; opts[cnt].name; cnt++)
9175                 ;
9176
9177         topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
9178         if (!topts)
9179                 return;
9180
9181         tr_topts = krealloc(tr->topts, sizeof(*tr->topts) * (tr->nr_topts + 1),
9182                             GFP_KERNEL);
9183         if (!tr_topts) {
9184                 kfree(topts);
9185                 return;
9186         }
9187
9188         tr->topts = tr_topts;
9189         tr->topts[tr->nr_topts].tracer = tracer;
9190         tr->topts[tr->nr_topts].topts = topts;
9191         tr->nr_topts++;
9192
9193         for (cnt = 0; opts[cnt].name; cnt++) {
9194                 create_trace_option_file(tr, &topts[cnt], flags,
9195                                          &opts[cnt]);
9196                 MEM_FAIL(topts[cnt].entry == NULL,
9197                           "Failed to create trace option: %s",
9198                           opts[cnt].name);
9199         }
9200 }
9201
9202 static struct dentry *
9203 create_trace_option_core_file(struct trace_array *tr,
9204                               const char *option, long index)
9205 {
9206         struct dentry *t_options;
9207
9208         t_options = trace_options_init_dentry(tr);
9209         if (!t_options)
9210                 return NULL;
9211
9212         return trace_create_file(option, TRACE_MODE_WRITE, t_options,
9213                                  (void *)&tr->trace_flags_index[index],
9214                                  &trace_options_core_fops);
9215 }
9216
9217 static void create_trace_options_dir(struct trace_array *tr)
9218 {
9219         struct dentry *t_options;
9220         bool top_level = tr == &global_trace;
9221         int i;
9222
9223         t_options = trace_options_init_dentry(tr);
9224         if (!t_options)
9225                 return;
9226
9227         for (i = 0; trace_options[i]; i++) {
9228                 if (top_level ||
9229                     !((1 << i) & TOP_LEVEL_TRACE_FLAGS))
9230                         create_trace_option_core_file(tr, trace_options[i], i);
9231         }
9232 }
9233
9234 static ssize_t
9235 rb_simple_read(struct file *filp, char __user *ubuf,
9236                size_t cnt, loff_t *ppos)
9237 {
9238         struct trace_array *tr = filp->private_data;
9239         char buf[64];
9240         int r;
9241
9242         r = tracer_tracing_is_on(tr);
9243         r = sprintf(buf, "%d\n", r);
9244
9245         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
9246 }
9247
9248 static ssize_t
9249 rb_simple_write(struct file *filp, const char __user *ubuf,
9250                 size_t cnt, loff_t *ppos)
9251 {
9252         struct trace_array *tr = filp->private_data;
9253         struct trace_buffer *buffer = tr->array_buffer.buffer;
9254         unsigned long val;
9255         int ret;
9256
9257         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
9258         if (ret)
9259                 return ret;
9260
9261         if (buffer) {
9262                 mutex_lock(&trace_types_lock);
9263                 if (!!val == tracer_tracing_is_on(tr)) {
9264                         val = 0; /* do nothing */
9265                 } else if (val) {
9266                         tracer_tracing_on(tr);
9267                         if (tr->current_trace->start)
9268                                 tr->current_trace->start(tr);
9269                 } else {
9270                         tracer_tracing_off(tr);
9271                         if (tr->current_trace->stop)
9272                                 tr->current_trace->stop(tr);
9273                         /* Wake up any waiters */
9274                         ring_buffer_wake_waiters(buffer, RING_BUFFER_ALL_CPUS);
9275                 }
9276                 mutex_unlock(&trace_types_lock);
9277         }
9278
9279         (*ppos)++;
9280
9281         return cnt;
9282 }
9283
9284 static const struct file_operations rb_simple_fops = {
9285         .open           = tracing_open_generic_tr,
9286         .read           = rb_simple_read,
9287         .write          = rb_simple_write,
9288         .release        = tracing_release_generic_tr,
9289         .llseek         = default_llseek,
9290 };
9291
9292 static ssize_t
9293 buffer_percent_read(struct file *filp, char __user *ubuf,
9294                     size_t cnt, loff_t *ppos)
9295 {
9296         struct trace_array *tr = filp->private_data;
9297         char buf[64];
9298         int r;
9299
9300         r = tr->buffer_percent;
9301         r = sprintf(buf, "%d\n", r);
9302
9303         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
9304 }
9305
9306 static ssize_t
9307 buffer_percent_write(struct file *filp, const char __user *ubuf,
9308                      size_t cnt, loff_t *ppos)
9309 {
9310         struct trace_array *tr = filp->private_data;
9311         unsigned long val;
9312         int ret;
9313
9314         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
9315         if (ret)
9316                 return ret;
9317
9318         if (val > 100)
9319                 return -EINVAL;
9320
9321         tr->buffer_percent = val;
9322
9323         (*ppos)++;
9324
9325         return cnt;
9326 }
9327
9328 static const struct file_operations buffer_percent_fops = {
9329         .open           = tracing_open_generic_tr,
9330         .read           = buffer_percent_read,
9331         .write          = buffer_percent_write,
9332         .release        = tracing_release_generic_tr,
9333         .llseek         = default_llseek,
9334 };
9335
9336 static struct dentry *trace_instance_dir;
9337
9338 static void
9339 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer);
9340
9341 static int
9342 allocate_trace_buffer(struct trace_array *tr, struct array_buffer *buf, int size)
9343 {
9344         enum ring_buffer_flags rb_flags;
9345
9346         rb_flags = tr->trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
9347
9348         buf->tr = tr;
9349
9350         buf->buffer = ring_buffer_alloc(size, rb_flags);
9351         if (!buf->buffer)
9352                 return -ENOMEM;
9353
9354         buf->data = alloc_percpu(struct trace_array_cpu);
9355         if (!buf->data) {
9356                 ring_buffer_free(buf->buffer);
9357                 buf->buffer = NULL;
9358                 return -ENOMEM;
9359         }
9360
9361         /* Allocate the first page for all buffers */
9362         set_buffer_entries(&tr->array_buffer,
9363                            ring_buffer_size(tr->array_buffer.buffer, 0));
9364
9365         return 0;
9366 }
9367
9368 static void free_trace_buffer(struct array_buffer *buf)
9369 {
9370         if (buf->buffer) {
9371                 ring_buffer_free(buf->buffer);
9372                 buf->buffer = NULL;
9373                 free_percpu(buf->data);
9374                 buf->data = NULL;
9375         }
9376 }
9377
9378 static int allocate_trace_buffers(struct trace_array *tr, int size)
9379 {
9380         int ret;
9381
9382         ret = allocate_trace_buffer(tr, &tr->array_buffer, size);
9383         if (ret)
9384                 return ret;
9385
9386 #ifdef CONFIG_TRACER_MAX_TRACE
9387         ret = allocate_trace_buffer(tr, &tr->max_buffer,
9388                                     allocate_snapshot ? size : 1);
9389         if (MEM_FAIL(ret, "Failed to allocate trace buffer\n")) {
9390                 free_trace_buffer(&tr->array_buffer);
9391                 return -ENOMEM;
9392         }
9393         tr->allocated_snapshot = allocate_snapshot;
9394
9395         allocate_snapshot = false;
9396 #endif
9397
9398         return 0;
9399 }
9400
9401 static void free_trace_buffers(struct trace_array *tr)
9402 {
9403         if (!tr)
9404                 return;
9405
9406         free_trace_buffer(&tr->array_buffer);
9407
9408 #ifdef CONFIG_TRACER_MAX_TRACE
9409         free_trace_buffer(&tr->max_buffer);
9410 #endif
9411 }
9412
9413 static void init_trace_flags_index(struct trace_array *tr)
9414 {
9415         int i;
9416
9417         /* Used by the trace options files */
9418         for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++)
9419                 tr->trace_flags_index[i] = i;
9420 }
9421
9422 static void __update_tracer_options(struct trace_array *tr)
9423 {
9424         struct tracer *t;
9425
9426         for (t = trace_types; t; t = t->next)
9427                 add_tracer_options(tr, t);
9428 }
9429
9430 static void update_tracer_options(struct trace_array *tr)
9431 {
9432         mutex_lock(&trace_types_lock);
9433         tracer_options_updated = true;
9434         __update_tracer_options(tr);
9435         mutex_unlock(&trace_types_lock);
9436 }
9437
9438 /* Must have trace_types_lock held */
9439 struct trace_array *trace_array_find(const char *instance)
9440 {
9441         struct trace_array *tr, *found = NULL;
9442
9443         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
9444                 if (tr->name && strcmp(tr->name, instance) == 0) {
9445                         found = tr;
9446                         break;
9447                 }
9448         }
9449
9450         return found;
9451 }
9452
9453 struct trace_array *trace_array_find_get(const char *instance)
9454 {
9455         struct trace_array *tr;
9456
9457         mutex_lock(&trace_types_lock);
9458         tr = trace_array_find(instance);
9459         if (tr)
9460                 tr->ref++;
9461         mutex_unlock(&trace_types_lock);
9462
9463         return tr;
9464 }
9465
9466 static int trace_array_create_dir(struct trace_array *tr)
9467 {
9468         int ret;
9469
9470         tr->dir = tracefs_create_dir(tr->name, trace_instance_dir);
9471         if (!tr->dir)
9472                 return -EINVAL;
9473
9474         ret = event_trace_add_tracer(tr->dir, tr);
9475         if (ret) {
9476                 tracefs_remove(tr->dir);
9477                 return ret;
9478         }
9479
9480         init_tracer_tracefs(tr, tr->dir);
9481         __update_tracer_options(tr);
9482
9483         return ret;
9484 }
9485
9486 static struct trace_array *trace_array_create(const char *name)
9487 {
9488         struct trace_array *tr;
9489         int ret;
9490
9491         ret = -ENOMEM;
9492         tr = kzalloc(sizeof(*tr), GFP_KERNEL);
9493         if (!tr)
9494                 return ERR_PTR(ret);
9495
9496         tr->name = kstrdup(name, GFP_KERNEL);
9497         if (!tr->name)
9498                 goto out_free_tr;
9499
9500         if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL))
9501                 goto out_free_tr;
9502
9503         if (!zalloc_cpumask_var(&tr->pipe_cpumask, GFP_KERNEL))
9504                 goto out_free_tr;
9505
9506         tr->trace_flags = global_trace.trace_flags & ~ZEROED_TRACE_FLAGS;
9507
9508         cpumask_copy(tr->tracing_cpumask, cpu_all_mask);
9509
9510         raw_spin_lock_init(&tr->start_lock);
9511
9512         tr->max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
9513
9514         tr->current_trace = &nop_trace;
9515
9516         INIT_LIST_HEAD(&tr->systems);
9517         INIT_LIST_HEAD(&tr->events);
9518         INIT_LIST_HEAD(&tr->hist_vars);
9519         INIT_LIST_HEAD(&tr->err_log);
9520
9521         if (allocate_trace_buffers(tr, trace_buf_size) < 0)
9522                 goto out_free_tr;
9523
9524         if (ftrace_allocate_ftrace_ops(tr) < 0)
9525                 goto out_free_tr;
9526
9527         ftrace_init_trace_array(tr);
9528
9529         init_trace_flags_index(tr);
9530
9531         if (trace_instance_dir) {
9532                 ret = trace_array_create_dir(tr);
9533                 if (ret)
9534                         goto out_free_tr;
9535         } else
9536                 __trace_early_add_events(tr);
9537
9538         list_add(&tr->list, &ftrace_trace_arrays);
9539
9540         tr->ref++;
9541
9542         return tr;
9543
9544  out_free_tr:
9545         ftrace_free_ftrace_ops(tr);
9546         free_trace_buffers(tr);
9547         free_cpumask_var(tr->pipe_cpumask);
9548         free_cpumask_var(tr->tracing_cpumask);
9549         kfree(tr->name);
9550         kfree(tr);
9551
9552         return ERR_PTR(ret);
9553 }
9554
9555 static int instance_mkdir(const char *name)
9556 {
9557         struct trace_array *tr;
9558         int ret;
9559
9560         mutex_lock(&event_mutex);
9561         mutex_lock(&trace_types_lock);
9562
9563         ret = -EEXIST;
9564         if (trace_array_find(name))
9565                 goto out_unlock;
9566
9567         tr = trace_array_create(name);
9568
9569         ret = PTR_ERR_OR_ZERO(tr);
9570
9571 out_unlock:
9572         mutex_unlock(&trace_types_lock);
9573         mutex_unlock(&event_mutex);
9574         return ret;
9575 }
9576
9577 /**
9578  * trace_array_get_by_name - Create/Lookup a trace array, given its name.
9579  * @name: The name of the trace array to be looked up/created.
9580  *
9581  * Returns pointer to trace array with given name.
9582  * NULL, if it cannot be created.
9583  *
9584  * NOTE: This function increments the reference counter associated with the
9585  * trace array returned. This makes sure it cannot be freed while in use.
9586  * Use trace_array_put() once the trace array is no longer needed.
9587  * If the trace_array is to be freed, trace_array_destroy() needs to
9588  * be called after the trace_array_put(), or simply let user space delete
9589  * it from the tracefs instances directory. But until the
9590  * trace_array_put() is called, user space can not delete it.
9591  *
9592  */
9593 struct trace_array *trace_array_get_by_name(const char *name)
9594 {
9595         struct trace_array *tr;
9596
9597         mutex_lock(&event_mutex);
9598         mutex_lock(&trace_types_lock);
9599
9600         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
9601                 if (tr->name && strcmp(tr->name, name) == 0)
9602                         goto out_unlock;
9603         }
9604
9605         tr = trace_array_create(name);
9606
9607         if (IS_ERR(tr))
9608                 tr = NULL;
9609 out_unlock:
9610         if (tr)
9611                 tr->ref++;
9612
9613         mutex_unlock(&trace_types_lock);
9614         mutex_unlock(&event_mutex);
9615         return tr;
9616 }
9617 EXPORT_SYMBOL_GPL(trace_array_get_by_name);
9618
9619 static int __remove_instance(struct trace_array *tr)
9620 {
9621         int i;
9622
9623         /* Reference counter for a newly created trace array = 1. */
9624         if (tr->ref > 1 || (tr->current_trace && tr->trace_ref))
9625                 return -EBUSY;
9626
9627         list_del(&tr->list);
9628
9629         /* Disable all the flags that were enabled coming in */
9630         for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++) {
9631                 if ((1 << i) & ZEROED_TRACE_FLAGS)
9632                         set_tracer_flag(tr, 1 << i, 0);
9633         }
9634
9635         tracing_set_nop(tr);
9636         clear_ftrace_function_probes(tr);
9637         event_trace_del_tracer(tr);
9638         ftrace_clear_pids(tr);
9639         ftrace_destroy_function_files(tr);
9640         tracefs_remove(tr->dir);
9641         free_percpu(tr->last_func_repeats);
9642         free_trace_buffers(tr);
9643         clear_tracing_err_log(tr);
9644
9645         for (i = 0; i < tr->nr_topts; i++) {
9646                 kfree(tr->topts[i].topts);
9647         }
9648         kfree(tr->topts);
9649
9650         free_cpumask_var(tr->pipe_cpumask);
9651         free_cpumask_var(tr->tracing_cpumask);
9652         kfree(tr->name);
9653         kfree(tr);
9654
9655         return 0;
9656 }
9657
9658 int trace_array_destroy(struct trace_array *this_tr)
9659 {
9660         struct trace_array *tr;
9661         int ret;
9662
9663         if (!this_tr)
9664                 return -EINVAL;
9665
9666         mutex_lock(&event_mutex);
9667         mutex_lock(&trace_types_lock);
9668
9669         ret = -ENODEV;
9670
9671         /* Making sure trace array exists before destroying it. */
9672         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
9673                 if (tr == this_tr) {
9674                         ret = __remove_instance(tr);
9675                         break;
9676                 }
9677         }
9678
9679         mutex_unlock(&trace_types_lock);
9680         mutex_unlock(&event_mutex);
9681
9682         return ret;
9683 }
9684 EXPORT_SYMBOL_GPL(trace_array_destroy);
9685
9686 static int instance_rmdir(const char *name)
9687 {
9688         struct trace_array *tr;
9689         int ret;
9690
9691         mutex_lock(&event_mutex);
9692         mutex_lock(&trace_types_lock);
9693
9694         ret = -ENODEV;
9695         tr = trace_array_find(name);
9696         if (tr)
9697                 ret = __remove_instance(tr);
9698
9699         mutex_unlock(&trace_types_lock);
9700         mutex_unlock(&event_mutex);
9701
9702         return ret;
9703 }
9704
9705 static __init void create_trace_instances(struct dentry *d_tracer)
9706 {
9707         struct trace_array *tr;
9708
9709         trace_instance_dir = tracefs_create_instance_dir("instances", d_tracer,
9710                                                          instance_mkdir,
9711                                                          instance_rmdir);
9712         if (MEM_FAIL(!trace_instance_dir, "Failed to create instances directory\n"))
9713                 return;
9714
9715         mutex_lock(&event_mutex);
9716         mutex_lock(&trace_types_lock);
9717
9718         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
9719                 if (!tr->name)
9720                         continue;
9721                 if (MEM_FAIL(trace_array_create_dir(tr) < 0,
9722                              "Failed to create instance directory\n"))
9723                         break;
9724         }
9725
9726         mutex_unlock(&trace_types_lock);
9727         mutex_unlock(&event_mutex);
9728 }
9729
9730 static void
9731 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer)
9732 {
9733         struct trace_event_file *file;
9734         int cpu;
9735
9736         trace_create_file("available_tracers", TRACE_MODE_READ, d_tracer,
9737                         tr, &show_traces_fops);
9738
9739         trace_create_file("current_tracer", TRACE_MODE_WRITE, d_tracer,
9740                         tr, &set_tracer_fops);
9741
9742         trace_create_file("tracing_cpumask", TRACE_MODE_WRITE, d_tracer,
9743                           tr, &tracing_cpumask_fops);
9744
9745         trace_create_file("trace_options", TRACE_MODE_WRITE, d_tracer,
9746                           tr, &tracing_iter_fops);
9747
9748         trace_create_file("trace", TRACE_MODE_WRITE, d_tracer,
9749                           tr, &tracing_fops);
9750
9751         trace_create_file("trace_pipe", TRACE_MODE_READ, d_tracer,
9752                           tr, &tracing_pipe_fops);
9753
9754         trace_create_file("buffer_size_kb", TRACE_MODE_WRITE, d_tracer,
9755                           tr, &tracing_entries_fops);
9756
9757         trace_create_file("buffer_total_size_kb", TRACE_MODE_READ, d_tracer,
9758                           tr, &tracing_total_entries_fops);
9759
9760         trace_create_file("free_buffer", 0200, d_tracer,
9761                           tr, &tracing_free_buffer_fops);
9762
9763         trace_create_file("trace_marker", 0220, d_tracer,
9764                           tr, &tracing_mark_fops);
9765
9766         file = __find_event_file(tr, "ftrace", "print");
9767         if (file && file->ef)
9768                 eventfs_add_file("trigger", TRACE_MODE_WRITE, file->ef,
9769                                   file, &event_trigger_fops);
9770         tr->trace_marker_file = file;
9771
9772         trace_create_file("trace_marker_raw", 0220, d_tracer,
9773                           tr, &tracing_mark_raw_fops);
9774
9775         trace_create_file("trace_clock", TRACE_MODE_WRITE, d_tracer, tr,
9776                           &trace_clock_fops);
9777
9778         trace_create_file("tracing_on", TRACE_MODE_WRITE, d_tracer,
9779                           tr, &rb_simple_fops);
9780
9781         trace_create_file("timestamp_mode", TRACE_MODE_READ, d_tracer, tr,
9782                           &trace_time_stamp_mode_fops);
9783
9784         tr->buffer_percent = 50;
9785
9786         trace_create_file("buffer_percent", TRACE_MODE_WRITE, d_tracer,
9787                         tr, &buffer_percent_fops);
9788
9789         create_trace_options_dir(tr);
9790
9791 #ifdef CONFIG_TRACER_MAX_TRACE
9792         trace_create_maxlat_file(tr, d_tracer);
9793 #endif
9794
9795         if (ftrace_create_function_files(tr, d_tracer))
9796                 MEM_FAIL(1, "Could not allocate function filter files");
9797
9798 #ifdef CONFIG_TRACER_SNAPSHOT
9799         trace_create_file("snapshot", TRACE_MODE_WRITE, d_tracer,
9800                           tr, &snapshot_fops);
9801 #endif
9802
9803         trace_create_file("error_log", TRACE_MODE_WRITE, d_tracer,
9804                           tr, &tracing_err_log_fops);
9805
9806         for_each_tracing_cpu(cpu)
9807                 tracing_init_tracefs_percpu(tr, cpu);
9808
9809         ftrace_init_tracefs(tr, d_tracer);
9810 }
9811
9812 static struct vfsmount *trace_automount(struct dentry *mntpt, void *ingore)
9813 {
9814         struct vfsmount *mnt;
9815         struct file_system_type *type;
9816
9817         /*
9818          * To maintain backward compatibility for tools that mount
9819          * debugfs to get to the tracing facility, tracefs is automatically
9820          * mounted to the debugfs/tracing directory.
9821          */
9822         type = get_fs_type("tracefs");
9823         if (!type)
9824                 return NULL;
9825         mnt = vfs_submount(mntpt, type, "tracefs", NULL);
9826         put_filesystem(type);
9827         if (IS_ERR(mnt))
9828                 return NULL;
9829         mntget(mnt);
9830
9831         return mnt;
9832 }
9833
9834 /**
9835  * tracing_init_dentry - initialize top level trace array
9836  *
9837  * This is called when creating files or directories in the tracing
9838  * directory. It is called via fs_initcall() by any of the boot up code
9839  * and expects to return the dentry of the top level tracing directory.
9840  */
9841 int tracing_init_dentry(void)
9842 {
9843         struct trace_array *tr = &global_trace;
9844
9845         if (security_locked_down(LOCKDOWN_TRACEFS)) {
9846                 pr_warn("Tracing disabled due to lockdown\n");
9847                 return -EPERM;
9848         }
9849
9850         /* The top level trace array uses  NULL as parent */
9851         if (tr->dir)
9852                 return 0;
9853
9854         if (WARN_ON(!tracefs_initialized()))
9855                 return -ENODEV;
9856
9857         /*
9858          * As there may still be users that expect the tracing
9859          * files to exist in debugfs/tracing, we must automount
9860          * the tracefs file system there, so older tools still
9861          * work with the newer kernel.
9862          */
9863         tr->dir = debugfs_create_automount("tracing", NULL,
9864                                            trace_automount, NULL);
9865
9866         return 0;
9867 }
9868
9869 extern struct trace_eval_map *__start_ftrace_eval_maps[];
9870 extern struct trace_eval_map *__stop_ftrace_eval_maps[];
9871
9872 static struct workqueue_struct *eval_map_wq __initdata;
9873 static struct work_struct eval_map_work __initdata;
9874 static struct work_struct tracerfs_init_work __initdata;
9875
9876 static void __init eval_map_work_func(struct work_struct *work)
9877 {
9878         int len;
9879
9880         len = __stop_ftrace_eval_maps - __start_ftrace_eval_maps;
9881         trace_insert_eval_map(NULL, __start_ftrace_eval_maps, len);
9882 }
9883
9884 static int __init trace_eval_init(void)
9885 {
9886         INIT_WORK(&eval_map_work, eval_map_work_func);
9887
9888         eval_map_wq = alloc_workqueue("eval_map_wq", WQ_UNBOUND, 0);
9889         if (!eval_map_wq) {
9890                 pr_err("Unable to allocate eval_map_wq\n");
9891                 /* Do work here */
9892                 eval_map_work_func(&eval_map_work);
9893                 return -ENOMEM;
9894         }
9895
9896         queue_work(eval_map_wq, &eval_map_work);
9897         return 0;
9898 }
9899
9900 subsys_initcall(trace_eval_init);
9901
9902 static int __init trace_eval_sync(void)
9903 {
9904         /* Make sure the eval map updates are finished */
9905         if (eval_map_wq)
9906                 destroy_workqueue(eval_map_wq);
9907         return 0;
9908 }
9909
9910 late_initcall_sync(trace_eval_sync);
9911
9912
9913 #ifdef CONFIG_MODULES
9914 static void trace_module_add_evals(struct module *mod)
9915 {
9916         if (!mod->num_trace_evals)
9917                 return;
9918
9919         /*
9920          * Modules with bad taint do not have events created, do
9921          * not bother with enums either.
9922          */
9923         if (trace_module_has_bad_taint(mod))
9924                 return;
9925
9926         trace_insert_eval_map(mod, mod->trace_evals, mod->num_trace_evals);
9927 }
9928
9929 #ifdef CONFIG_TRACE_EVAL_MAP_FILE
9930 static void trace_module_remove_evals(struct module *mod)
9931 {
9932         union trace_eval_map_item *map;
9933         union trace_eval_map_item **last = &trace_eval_maps;
9934
9935         if (!mod->num_trace_evals)
9936                 return;
9937
9938         mutex_lock(&trace_eval_mutex);
9939
9940         map = trace_eval_maps;
9941
9942         while (map) {
9943                 if (map->head.mod == mod)
9944                         break;
9945                 map = trace_eval_jmp_to_tail(map);
9946                 last = &map->tail.next;
9947                 map = map->tail.next;
9948         }
9949         if (!map)
9950                 goto out;
9951
9952         *last = trace_eval_jmp_to_tail(map)->tail.next;
9953         kfree(map);
9954  out:
9955         mutex_unlock(&trace_eval_mutex);
9956 }
9957 #else
9958 static inline void trace_module_remove_evals(struct module *mod) { }
9959 #endif /* CONFIG_TRACE_EVAL_MAP_FILE */
9960
9961 static int trace_module_notify(struct notifier_block *self,
9962                                unsigned long val, void *data)
9963 {
9964         struct module *mod = data;
9965
9966         switch (val) {
9967         case MODULE_STATE_COMING:
9968                 trace_module_add_evals(mod);
9969                 break;
9970         case MODULE_STATE_GOING:
9971                 trace_module_remove_evals(mod);
9972                 break;
9973         }
9974
9975         return NOTIFY_OK;
9976 }
9977
9978 static struct notifier_block trace_module_nb = {
9979         .notifier_call = trace_module_notify,
9980         .priority = 0,
9981 };
9982 #endif /* CONFIG_MODULES */
9983
9984 static __init void tracer_init_tracefs_work_func(struct work_struct *work)
9985 {
9986
9987         event_trace_init();
9988
9989         init_tracer_tracefs(&global_trace, NULL);
9990         ftrace_init_tracefs_toplevel(&global_trace, NULL);
9991
9992         trace_create_file("tracing_thresh", TRACE_MODE_WRITE, NULL,
9993                         &global_trace, &tracing_thresh_fops);
9994
9995         trace_create_file("README", TRACE_MODE_READ, NULL,
9996                         NULL, &tracing_readme_fops);
9997
9998         trace_create_file("saved_cmdlines", TRACE_MODE_READ, NULL,
9999                         NULL, &tracing_saved_cmdlines_fops);
10000
10001         trace_create_file("saved_cmdlines_size", TRACE_MODE_WRITE, NULL,
10002                           NULL, &tracing_saved_cmdlines_size_fops);
10003
10004         trace_create_file("saved_tgids", TRACE_MODE_READ, NULL,
10005                         NULL, &tracing_saved_tgids_fops);
10006
10007         trace_create_eval_file(NULL);
10008
10009 #ifdef CONFIG_MODULES
10010         register_module_notifier(&trace_module_nb);
10011 #endif
10012
10013 #ifdef CONFIG_DYNAMIC_FTRACE
10014         trace_create_file("dyn_ftrace_total_info", TRACE_MODE_READ, NULL,
10015                         NULL, &tracing_dyn_info_fops);
10016 #endif
10017
10018         create_trace_instances(NULL);
10019
10020         update_tracer_options(&global_trace);
10021 }
10022
10023 static __init int tracer_init_tracefs(void)
10024 {
10025         int ret;
10026
10027         trace_access_lock_init();
10028
10029         ret = tracing_init_dentry();
10030         if (ret)
10031                 return 0;
10032
10033         if (eval_map_wq) {
10034                 INIT_WORK(&tracerfs_init_work, tracer_init_tracefs_work_func);
10035                 queue_work(eval_map_wq, &tracerfs_init_work);
10036         } else {
10037                 tracer_init_tracefs_work_func(NULL);
10038         }
10039
10040         rv_init_interface();
10041
10042         return 0;
10043 }
10044
10045 fs_initcall(tracer_init_tracefs);
10046
10047 static int trace_die_panic_handler(struct notifier_block *self,
10048                                 unsigned long ev, void *unused);
10049
10050 static struct notifier_block trace_panic_notifier = {
10051         .notifier_call = trace_die_panic_handler,
10052         .priority = INT_MAX - 1,
10053 };
10054
10055 static struct notifier_block trace_die_notifier = {
10056         .notifier_call = trace_die_panic_handler,
10057         .priority = INT_MAX - 1,
10058 };
10059
10060 /*
10061  * The idea is to execute the following die/panic callback early, in order
10062  * to avoid showing irrelevant information in the trace (like other panic
10063  * notifier functions); we are the 2nd to run, after hung_task/rcu_stall
10064  * warnings get disabled (to prevent potential log flooding).
10065  */
10066 static int trace_die_panic_handler(struct notifier_block *self,
10067                                 unsigned long ev, void *unused)
10068 {
10069         if (!ftrace_dump_on_oops)
10070                 return NOTIFY_DONE;
10071
10072         /* The die notifier requires DIE_OOPS to trigger */
10073         if (self == &trace_die_notifier && ev != DIE_OOPS)
10074                 return NOTIFY_DONE;
10075
10076         ftrace_dump(ftrace_dump_on_oops);
10077
10078         return NOTIFY_DONE;
10079 }
10080
10081 /*
10082  * printk is set to max of 1024, we really don't need it that big.
10083  * Nothing should be printing 1000 characters anyway.
10084  */
10085 #define TRACE_MAX_PRINT         1000
10086
10087 /*
10088  * Define here KERN_TRACE so that we have one place to modify
10089  * it if we decide to change what log level the ftrace dump
10090  * should be at.
10091  */
10092 #define KERN_TRACE              KERN_EMERG
10093
10094 void
10095 trace_printk_seq(struct trace_seq *s)
10096 {
10097         /* Probably should print a warning here. */
10098         if (s->seq.len >= TRACE_MAX_PRINT)
10099                 s->seq.len = TRACE_MAX_PRINT;
10100
10101         /*
10102          * More paranoid code. Although the buffer size is set to
10103          * PAGE_SIZE, and TRACE_MAX_PRINT is 1000, this is just
10104          * an extra layer of protection.
10105          */
10106         if (WARN_ON_ONCE(s->seq.len >= s->seq.size))
10107                 s->seq.len = s->seq.size - 1;
10108
10109         /* should be zero ended, but we are paranoid. */
10110         s->buffer[s->seq.len] = 0;
10111
10112         printk(KERN_TRACE "%s", s->buffer);
10113
10114         trace_seq_init(s);
10115 }
10116
10117 void trace_init_global_iter(struct trace_iterator *iter)
10118 {
10119         iter->tr = &global_trace;
10120         iter->trace = iter->tr->current_trace;
10121         iter->cpu_file = RING_BUFFER_ALL_CPUS;
10122         iter->array_buffer = &global_trace.array_buffer;
10123
10124         if (iter->trace && iter->trace->open)
10125                 iter->trace->open(iter);
10126
10127         /* Annotate start of buffers if we had overruns */
10128         if (ring_buffer_overruns(iter->array_buffer->buffer))
10129                 iter->iter_flags |= TRACE_FILE_ANNOTATE;
10130
10131         /* Output in nanoseconds only if we are using a clock in nanoseconds. */
10132         if (trace_clocks[iter->tr->clock_id].in_ns)
10133                 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
10134
10135         /* Can not use kmalloc for iter.temp and iter.fmt */
10136         iter->temp = static_temp_buf;
10137         iter->temp_size = STATIC_TEMP_BUF_SIZE;
10138         iter->fmt = static_fmt_buf;
10139         iter->fmt_size = STATIC_FMT_BUF_SIZE;
10140 }
10141
10142 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
10143 {
10144         /* use static because iter can be a bit big for the stack */
10145         static struct trace_iterator iter;
10146         static atomic_t dump_running;
10147         struct trace_array *tr = &global_trace;
10148         unsigned int old_userobj;
10149         unsigned long flags;
10150         int cnt = 0, cpu;
10151
10152         /* Only allow one dump user at a time. */
10153         if (atomic_inc_return(&dump_running) != 1) {
10154                 atomic_dec(&dump_running);
10155                 return;
10156         }
10157
10158         /*
10159          * Always turn off tracing when we dump.
10160          * We don't need to show trace output of what happens
10161          * between multiple crashes.
10162          *
10163          * If the user does a sysrq-z, then they can re-enable
10164          * tracing with echo 1 > tracing_on.
10165          */
10166         tracing_off();
10167
10168         local_irq_save(flags);
10169
10170         /* Simulate the iterator */
10171         trace_init_global_iter(&iter);
10172
10173         for_each_tracing_cpu(cpu) {
10174                 atomic_inc(&per_cpu_ptr(iter.array_buffer->data, cpu)->disabled);
10175         }
10176
10177         old_userobj = tr->trace_flags & TRACE_ITER_SYM_USEROBJ;
10178
10179         /* don't look at user memory in panic mode */
10180         tr->trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
10181
10182         switch (oops_dump_mode) {
10183         case DUMP_ALL:
10184                 iter.cpu_file = RING_BUFFER_ALL_CPUS;
10185                 break;
10186         case DUMP_ORIG:
10187                 iter.cpu_file = raw_smp_processor_id();
10188                 break;
10189         case DUMP_NONE:
10190                 goto out_enable;
10191         default:
10192                 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
10193                 iter.cpu_file = RING_BUFFER_ALL_CPUS;
10194         }
10195
10196         printk(KERN_TRACE "Dumping ftrace buffer:\n");
10197
10198         /* Did function tracer already get disabled? */
10199         if (ftrace_is_dead()) {
10200                 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
10201                 printk("#          MAY BE MISSING FUNCTION EVENTS\n");
10202         }
10203
10204         /*
10205          * We need to stop all tracing on all CPUS to read
10206          * the next buffer. This is a bit expensive, but is
10207          * not done often. We fill all what we can read,
10208          * and then release the locks again.
10209          */
10210
10211         while (!trace_empty(&iter)) {
10212
10213                 if (!cnt)
10214                         printk(KERN_TRACE "---------------------------------\n");
10215
10216                 cnt++;
10217
10218                 trace_iterator_reset(&iter);
10219                 iter.iter_flags |= TRACE_FILE_LAT_FMT;
10220
10221                 if (trace_find_next_entry_inc(&iter) != NULL) {
10222                         int ret;
10223
10224                         ret = print_trace_line(&iter);
10225                         if (ret != TRACE_TYPE_NO_CONSUME)
10226                                 trace_consume(&iter);
10227                 }
10228                 touch_nmi_watchdog();
10229
10230                 trace_printk_seq(&iter.seq);
10231         }
10232
10233         if (!cnt)
10234                 printk(KERN_TRACE "   (ftrace buffer empty)\n");
10235         else
10236                 printk(KERN_TRACE "---------------------------------\n");
10237
10238  out_enable:
10239         tr->trace_flags |= old_userobj;
10240
10241         for_each_tracing_cpu(cpu) {
10242                 atomic_dec(&per_cpu_ptr(iter.array_buffer->data, cpu)->disabled);
10243         }
10244         atomic_dec(&dump_running);
10245         local_irq_restore(flags);
10246 }
10247 EXPORT_SYMBOL_GPL(ftrace_dump);
10248
10249 #define WRITE_BUFSIZE  4096
10250
10251 ssize_t trace_parse_run_command(struct file *file, const char __user *buffer,
10252                                 size_t count, loff_t *ppos,
10253                                 int (*createfn)(const char *))
10254 {
10255         char *kbuf, *buf, *tmp;
10256         int ret = 0;
10257         size_t done = 0;
10258         size_t size;
10259
10260         kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL);
10261         if (!kbuf)
10262                 return -ENOMEM;
10263
10264         while (done < count) {
10265                 size = count - done;
10266
10267                 if (size >= WRITE_BUFSIZE)
10268                         size = WRITE_BUFSIZE - 1;
10269
10270                 if (copy_from_user(kbuf, buffer + done, size)) {
10271                         ret = -EFAULT;
10272                         goto out;
10273                 }
10274                 kbuf[size] = '\0';
10275                 buf = kbuf;
10276                 do {
10277                         tmp = strchr(buf, '\n');
10278                         if (tmp) {
10279                                 *tmp = '\0';
10280                                 size = tmp - buf + 1;
10281                         } else {
10282                                 size = strlen(buf);
10283                                 if (done + size < count) {
10284                                         if (buf != kbuf)
10285                                                 break;
10286                                         /* This can accept WRITE_BUFSIZE - 2 ('\n' + '\0') */
10287                                         pr_warn("Line length is too long: Should be less than %d\n",
10288                                                 WRITE_BUFSIZE - 2);
10289                                         ret = -EINVAL;
10290                                         goto out;
10291                                 }
10292                         }
10293                         done += size;
10294
10295                         /* Remove comments */
10296                         tmp = strchr(buf, '#');
10297
10298                         if (tmp)
10299                                 *tmp = '\0';
10300
10301                         ret = createfn(buf);
10302                         if (ret)
10303                                 goto out;
10304                         buf += size;
10305
10306                 } while (done < count);
10307         }
10308         ret = done;
10309
10310 out:
10311         kfree(kbuf);
10312
10313         return ret;
10314 }
10315
10316 #ifdef CONFIG_TRACER_MAX_TRACE
10317 __init static bool tr_needs_alloc_snapshot(const char *name)
10318 {
10319         char *test;
10320         int len = strlen(name);
10321         bool ret;
10322
10323         if (!boot_snapshot_index)
10324                 return false;
10325
10326         if (strncmp(name, boot_snapshot_info, len) == 0 &&
10327             boot_snapshot_info[len] == '\t')
10328                 return true;
10329
10330         test = kmalloc(strlen(name) + 3, GFP_KERNEL);
10331         if (!test)
10332                 return false;
10333
10334         sprintf(test, "\t%s\t", name);
10335         ret = strstr(boot_snapshot_info, test) == NULL;
10336         kfree(test);
10337         return ret;
10338 }
10339
10340 __init static void do_allocate_snapshot(const char *name)
10341 {
10342         if (!tr_needs_alloc_snapshot(name))
10343                 return;
10344
10345         /*
10346          * When allocate_snapshot is set, the next call to
10347          * allocate_trace_buffers() (called by trace_array_get_by_name())
10348          * will allocate the snapshot buffer. That will alse clear
10349          * this flag.
10350          */
10351         allocate_snapshot = true;
10352 }
10353 #else
10354 static inline void do_allocate_snapshot(const char *name) { }
10355 #endif
10356
10357 __init static void enable_instances(void)
10358 {
10359         struct trace_array *tr;
10360         char *curr_str;
10361         char *str;
10362         char *tok;
10363
10364         /* A tab is always appended */
10365         boot_instance_info[boot_instance_index - 1] = '\0';
10366         str = boot_instance_info;
10367
10368         while ((curr_str = strsep(&str, "\t"))) {
10369
10370                 tok = strsep(&curr_str, ",");
10371
10372                 if (IS_ENABLED(CONFIG_TRACER_MAX_TRACE))
10373                         do_allocate_snapshot(tok);
10374
10375                 tr = trace_array_get_by_name(tok);
10376                 if (!tr) {
10377                         pr_warn("Failed to create instance buffer %s\n", curr_str);
10378                         continue;
10379                 }
10380                 /* Allow user space to delete it */
10381                 trace_array_put(tr);
10382
10383                 while ((tok = strsep(&curr_str, ","))) {
10384                         early_enable_events(tr, tok, true);
10385                 }
10386         }
10387 }
10388
10389 __init static int tracer_alloc_buffers(void)
10390 {
10391         int ring_buf_size;
10392         int ret = -ENOMEM;
10393
10394
10395         if (security_locked_down(LOCKDOWN_TRACEFS)) {
10396                 pr_warn("Tracing disabled due to lockdown\n");
10397                 return -EPERM;
10398         }
10399
10400         /*
10401          * Make sure we don't accidentally add more trace options
10402          * than we have bits for.
10403          */
10404         BUILD_BUG_ON(TRACE_ITER_LAST_BIT > TRACE_FLAGS_MAX_SIZE);
10405
10406         if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
10407                 goto out;
10408
10409         if (!alloc_cpumask_var(&global_trace.tracing_cpumask, GFP_KERNEL))
10410                 goto out_free_buffer_mask;
10411
10412         /* Only allocate trace_printk buffers if a trace_printk exists */
10413         if (&__stop___trace_bprintk_fmt != &__start___trace_bprintk_fmt)
10414                 /* Must be called before global_trace.buffer is allocated */
10415                 trace_printk_init_buffers();
10416
10417         /* To save memory, keep the ring buffer size to its minimum */
10418         if (ring_buffer_expanded)
10419                 ring_buf_size = trace_buf_size;
10420         else
10421                 ring_buf_size = 1;
10422
10423         cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
10424         cpumask_copy(global_trace.tracing_cpumask, cpu_all_mask);
10425
10426         raw_spin_lock_init(&global_trace.start_lock);
10427
10428         /*
10429          * The prepare callbacks allocates some memory for the ring buffer. We
10430          * don't free the buffer if the CPU goes down. If we were to free
10431          * the buffer, then the user would lose any trace that was in the
10432          * buffer. The memory will be removed once the "instance" is removed.
10433          */
10434         ret = cpuhp_setup_state_multi(CPUHP_TRACE_RB_PREPARE,
10435                                       "trace/RB:prepare", trace_rb_cpu_prepare,
10436                                       NULL);
10437         if (ret < 0)
10438                 goto out_free_cpumask;
10439         /* Used for event triggers */
10440         ret = -ENOMEM;
10441         temp_buffer = ring_buffer_alloc(PAGE_SIZE, RB_FL_OVERWRITE);
10442         if (!temp_buffer)
10443                 goto out_rm_hp_state;
10444
10445         if (trace_create_savedcmd() < 0)
10446                 goto out_free_temp_buffer;
10447
10448         if (!zalloc_cpumask_var(&global_trace.pipe_cpumask, GFP_KERNEL))
10449                 goto out_free_savedcmd;
10450
10451         /* TODO: make the number of buffers hot pluggable with CPUS */
10452         if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) {
10453                 MEM_FAIL(1, "tracer: failed to allocate ring buffer!\n");
10454                 goto out_free_pipe_cpumask;
10455         }
10456         if (global_trace.buffer_disabled)
10457                 tracing_off();
10458
10459         if (trace_boot_clock) {
10460                 ret = tracing_set_clock(&global_trace, trace_boot_clock);
10461                 if (ret < 0)
10462                         pr_warn("Trace clock %s not defined, going back to default\n",
10463                                 trace_boot_clock);
10464         }
10465
10466         /*
10467          * register_tracer() might reference current_trace, so it
10468          * needs to be set before we register anything. This is
10469          * just a bootstrap of current_trace anyway.
10470          */
10471         global_trace.current_trace = &nop_trace;
10472
10473         global_trace.max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
10474
10475         ftrace_init_global_array_ops(&global_trace);
10476
10477         init_trace_flags_index(&global_trace);
10478
10479         register_tracer(&nop_trace);
10480
10481         /* Function tracing may start here (via kernel command line) */
10482         init_function_trace();
10483
10484         /* All seems OK, enable tracing */
10485         tracing_disabled = 0;
10486
10487         atomic_notifier_chain_register(&panic_notifier_list,
10488                                        &trace_panic_notifier);
10489
10490         register_die_notifier(&trace_die_notifier);
10491
10492         global_trace.flags = TRACE_ARRAY_FL_GLOBAL;
10493
10494         INIT_LIST_HEAD(&global_trace.systems);
10495         INIT_LIST_HEAD(&global_trace.events);
10496         INIT_LIST_HEAD(&global_trace.hist_vars);
10497         INIT_LIST_HEAD(&global_trace.err_log);
10498         list_add(&global_trace.list, &ftrace_trace_arrays);
10499
10500         apply_trace_boot_options();
10501
10502         register_snapshot_cmd();
10503
10504         test_can_verify();
10505
10506         return 0;
10507
10508 out_free_pipe_cpumask:
10509         free_cpumask_var(global_trace.pipe_cpumask);
10510 out_free_savedcmd:
10511         free_saved_cmdlines_buffer(savedcmd);
10512 out_free_temp_buffer:
10513         ring_buffer_free(temp_buffer);
10514 out_rm_hp_state:
10515         cpuhp_remove_multi_state(CPUHP_TRACE_RB_PREPARE);
10516 out_free_cpumask:
10517         free_cpumask_var(global_trace.tracing_cpumask);
10518 out_free_buffer_mask:
10519         free_cpumask_var(tracing_buffer_mask);
10520 out:
10521         return ret;
10522 }
10523
10524 void __init ftrace_boot_snapshot(void)
10525 {
10526 #ifdef CONFIG_TRACER_MAX_TRACE
10527         struct trace_array *tr;
10528
10529         if (!snapshot_at_boot)
10530                 return;
10531
10532         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
10533                 if (!tr->allocated_snapshot)
10534                         continue;
10535
10536                 tracing_snapshot_instance(tr);
10537                 trace_array_puts(tr, "** Boot snapshot taken **\n");
10538         }
10539 #endif
10540 }
10541
10542 void __init early_trace_init(void)
10543 {
10544         if (tracepoint_printk) {
10545                 tracepoint_print_iter =
10546                         kzalloc(sizeof(*tracepoint_print_iter), GFP_KERNEL);
10547                 if (MEM_FAIL(!tracepoint_print_iter,
10548                              "Failed to allocate trace iterator\n"))
10549                         tracepoint_printk = 0;
10550                 else
10551                         static_key_enable(&tracepoint_printk_key.key);
10552         }
10553         tracer_alloc_buffers();
10554
10555         init_events();
10556 }
10557
10558 void __init trace_init(void)
10559 {
10560         trace_event_init();
10561
10562         if (boot_instance_index)
10563                 enable_instances();
10564 }
10565
10566 __init static void clear_boot_tracer(void)
10567 {
10568         /*
10569          * The default tracer at boot buffer is an init section.
10570          * This function is called in lateinit. If we did not
10571          * find the boot tracer, then clear it out, to prevent
10572          * later registration from accessing the buffer that is
10573          * about to be freed.
10574          */
10575         if (!default_bootup_tracer)
10576                 return;
10577
10578         printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
10579                default_bootup_tracer);
10580         default_bootup_tracer = NULL;
10581 }
10582
10583 #ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
10584 __init static void tracing_set_default_clock(void)
10585 {
10586         /* sched_clock_stable() is determined in late_initcall */
10587         if (!trace_boot_clock && !sched_clock_stable()) {
10588                 if (security_locked_down(LOCKDOWN_TRACEFS)) {
10589                         pr_warn("Can not set tracing clock due to lockdown\n");
10590                         return;
10591                 }
10592
10593                 printk(KERN_WARNING
10594                        "Unstable clock detected, switching default tracing clock to \"global\"\n"
10595                        "If you want to keep using the local clock, then add:\n"
10596                        "  \"trace_clock=local\"\n"
10597                        "on the kernel command line\n");
10598                 tracing_set_clock(&global_trace, "global");
10599         }
10600 }
10601 #else
10602 static inline void tracing_set_default_clock(void) { }
10603 #endif
10604
10605 __init static int late_trace_init(void)
10606 {
10607         if (tracepoint_printk && tracepoint_printk_stop_on_boot) {
10608                 static_key_disable(&tracepoint_printk_key.key);
10609                 tracepoint_printk = 0;
10610         }
10611
10612         tracing_set_default_clock();
10613         clear_boot_tracer();
10614         return 0;
10615 }
10616
10617 late_initcall_sync(late_trace_init);