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