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