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