xref: /linux/kernel/trace/trace_events.c (revision 145036f88d693d7ef3aa8537a4b1aa22f8764647)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * event tracer
4  *
5  * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
6  *
7  *  - Added format output of fields of the trace point.
8  *    This was based off of work by Tom Zanussi <tzanussi@gmail.com>.
9  *
10  */
11 
12 #define pr_fmt(fmt) fmt
13 
14 #include <linux/workqueue.h>
15 #include <linux/security.h>
16 #include <linux/spinlock.h>
17 #include <linux/kthread.h>
18 #include <linux/tracefs.h>
19 #include <linux/uaccess.h>
20 #include <linux/module.h>
21 #include <linux/ctype.h>
22 #include <linux/sort.h>
23 #include <linux/slab.h>
24 #include <linux/delay.h>
25 
26 #include <trace/events/sched.h>
27 #include <trace/syscall.h>
28 
29 #include <asm/setup.h>
30 
31 #include "trace_output.h"
32 
33 #undef TRACE_SYSTEM
34 #define TRACE_SYSTEM "TRACE_SYSTEM"
35 
36 DEFINE_MUTEX(event_mutex);
37 
38 LIST_HEAD(ftrace_events);
39 static LIST_HEAD(ftrace_generic_fields);
40 static LIST_HEAD(ftrace_common_fields);
41 static bool eventdir_initialized;
42 
43 static LIST_HEAD(module_strings);
44 
45 struct module_string {
46 	struct list_head	next;
47 	struct module		*module;
48 	char			*str;
49 };
50 
51 #define GFP_TRACE (GFP_KERNEL | __GFP_ZERO)
52 
53 static struct kmem_cache *field_cachep;
54 static struct kmem_cache *file_cachep;
55 
56 static inline int system_refcount(struct event_subsystem *system)
57 {
58 	return system->ref_count;
59 }
60 
61 static int system_refcount_inc(struct event_subsystem *system)
62 {
63 	return system->ref_count++;
64 }
65 
66 static int system_refcount_dec(struct event_subsystem *system)
67 {
68 	return --system->ref_count;
69 }
70 
71 /* Double loops, do not use break, only goto's work */
72 #define do_for_each_event_file(tr, file)			\
73 	list_for_each_entry(tr, &ftrace_trace_arrays, list) {	\
74 		list_for_each_entry(file, &tr->events, list)
75 
76 #define do_for_each_event_file_safe(tr, file)			\
77 	list_for_each_entry(tr, &ftrace_trace_arrays, list) {	\
78 		struct trace_event_file *___n;				\
79 		list_for_each_entry_safe(file, ___n, &tr->events, list)
80 
81 #define while_for_each_event_file()		\
82 	}
83 
84 static struct ftrace_event_field *
85 __find_event_field(struct list_head *head, char *name)
86 {
87 	struct ftrace_event_field *field;
88 
89 	list_for_each_entry(field, head, link) {
90 		if (!strcmp(field->name, name))
91 			return field;
92 	}
93 
94 	return NULL;
95 }
96 
97 struct ftrace_event_field *
98 trace_find_event_field(struct trace_event_call *call, char *name)
99 {
100 	struct ftrace_event_field *field;
101 	struct list_head *head;
102 
103 	head = trace_get_fields(call);
104 	field = __find_event_field(head, name);
105 	if (field)
106 		return field;
107 
108 	field = __find_event_field(&ftrace_generic_fields, name);
109 	if (field)
110 		return field;
111 
112 	return __find_event_field(&ftrace_common_fields, name);
113 }
114 
115 static int __trace_define_field(struct list_head *head, const char *type,
116 				const char *name, int offset, int size,
117 				int is_signed, int filter_type, int len)
118 {
119 	struct ftrace_event_field *field;
120 
121 	field = kmem_cache_alloc(field_cachep, GFP_TRACE);
122 	if (!field)
123 		return -ENOMEM;
124 
125 	field->name = name;
126 	field->type = type;
127 
128 	if (filter_type == FILTER_OTHER)
129 		field->filter_type = filter_assign_type(type);
130 	else
131 		field->filter_type = filter_type;
132 
133 	field->offset = offset;
134 	field->size = size;
135 	field->is_signed = is_signed;
136 	field->len = len;
137 
138 	list_add(&field->link, head);
139 
140 	return 0;
141 }
142 
143 int trace_define_field(struct trace_event_call *call, const char *type,
144 		       const char *name, int offset, int size, int is_signed,
145 		       int filter_type)
146 {
147 	struct list_head *head;
148 
149 	if (WARN_ON(!call->class))
150 		return 0;
151 
152 	head = trace_get_fields(call);
153 	return __trace_define_field(head, type, name, offset, size,
154 				    is_signed, filter_type, 0);
155 }
156 EXPORT_SYMBOL_GPL(trace_define_field);
157 
158 static int trace_define_field_ext(struct trace_event_call *call, const char *type,
159 		       const char *name, int offset, int size, int is_signed,
160 		       int filter_type, int len)
161 {
162 	struct list_head *head;
163 
164 	if (WARN_ON(!call->class))
165 		return 0;
166 
167 	head = trace_get_fields(call);
168 	return __trace_define_field(head, type, name, offset, size,
169 				    is_signed, filter_type, len);
170 }
171 
172 #define __generic_field(type, item, filter_type)			\
173 	ret = __trace_define_field(&ftrace_generic_fields, #type,	\
174 				   #item, 0, 0, is_signed_type(type),	\
175 				   filter_type, 0);			\
176 	if (ret)							\
177 		return ret;
178 
179 #define __common_field(type, item)					\
180 	ret = __trace_define_field(&ftrace_common_fields, #type,	\
181 				   "common_" #item,			\
182 				   offsetof(typeof(ent), item),		\
183 				   sizeof(ent.item),			\
184 				   is_signed_type(type), FILTER_OTHER, 0);	\
185 	if (ret)							\
186 		return ret;
187 
188 static int trace_define_generic_fields(void)
189 {
190 	int ret;
191 
192 	__generic_field(int, CPU, FILTER_CPU);
193 	__generic_field(int, cpu, FILTER_CPU);
194 	__generic_field(int, common_cpu, FILTER_CPU);
195 	__generic_field(char *, COMM, FILTER_COMM);
196 	__generic_field(char *, comm, FILTER_COMM);
197 	__generic_field(char *, stacktrace, FILTER_STACKTRACE);
198 	__generic_field(char *, STACKTRACE, FILTER_STACKTRACE);
199 
200 	return ret;
201 }
202 
203 static int trace_define_common_fields(void)
204 {
205 	int ret;
206 	struct trace_entry ent;
207 
208 	__common_field(unsigned short, type);
209 	__common_field(unsigned char, flags);
210 	/* Holds both preempt_count and migrate_disable */
211 	__common_field(unsigned char, preempt_count);
212 	__common_field(int, pid);
213 
214 	return ret;
215 }
216 
217 static void trace_destroy_fields(struct trace_event_call *call)
218 {
219 	struct ftrace_event_field *field, *next;
220 	struct list_head *head;
221 
222 	head = trace_get_fields(call);
223 	list_for_each_entry_safe(field, next, head, link) {
224 		list_del(&field->link);
225 		kmem_cache_free(field_cachep, field);
226 	}
227 }
228 
229 /*
230  * run-time version of trace_event_get_offsets_<call>() that returns the last
231  * accessible offset of trace fields excluding __dynamic_array bytes
232  */
233 int trace_event_get_offsets(struct trace_event_call *call)
234 {
235 	struct ftrace_event_field *tail;
236 	struct list_head *head;
237 
238 	head = trace_get_fields(call);
239 	/*
240 	 * head->next points to the last field with the largest offset,
241 	 * since it was added last by trace_define_field()
242 	 */
243 	tail = list_first_entry(head, struct ftrace_event_field, link);
244 	return tail->offset + tail->size;
245 }
246 
247 /*
248  * Check if the referenced field is an array and return true,
249  * as arrays are OK to dereference.
250  */
251 static bool test_field(const char *fmt, struct trace_event_call *call)
252 {
253 	struct trace_event_fields *field = call->class->fields_array;
254 	const char *array_descriptor;
255 	const char *p = fmt;
256 	int len;
257 
258 	if (!(len = str_has_prefix(fmt, "REC->")))
259 		return false;
260 	fmt += len;
261 	for (p = fmt; *p; p++) {
262 		if (!isalnum(*p) && *p != '_')
263 			break;
264 	}
265 	len = p - fmt;
266 
267 	for (; field->type; field++) {
268 		if (strncmp(field->name, fmt, len) ||
269 		    field->name[len])
270 			continue;
271 		array_descriptor = strchr(field->type, '[');
272 		/* This is an array and is OK to dereference. */
273 		return array_descriptor != NULL;
274 	}
275 	return false;
276 }
277 
278 /*
279  * Examine the print fmt of the event looking for unsafe dereference
280  * pointers using %p* that could be recorded in the trace event and
281  * much later referenced after the pointer was freed. Dereferencing
282  * pointers are OK, if it is dereferenced into the event itself.
283  */
284 static void test_event_printk(struct trace_event_call *call)
285 {
286 	u64 dereference_flags = 0;
287 	bool first = true;
288 	const char *fmt, *c, *r, *a;
289 	int parens = 0;
290 	char in_quote = 0;
291 	int start_arg = 0;
292 	int arg = 0;
293 	int i;
294 
295 	fmt = call->print_fmt;
296 
297 	if (!fmt)
298 		return;
299 
300 	for (i = 0; fmt[i]; i++) {
301 		switch (fmt[i]) {
302 		case '\\':
303 			i++;
304 			if (!fmt[i])
305 				return;
306 			continue;
307 		case '"':
308 		case '\'':
309 			/*
310 			 * The print fmt starts with a string that
311 			 * is processed first to find %p* usage,
312 			 * then after the first string, the print fmt
313 			 * contains arguments that are used to check
314 			 * if the dereferenced %p* usage is safe.
315 			 */
316 			if (first) {
317 				if (fmt[i] == '\'')
318 					continue;
319 				if (in_quote) {
320 					arg = 0;
321 					first = false;
322 					/*
323 					 * If there was no %p* uses
324 					 * the fmt is OK.
325 					 */
326 					if (!dereference_flags)
327 						return;
328 				}
329 			}
330 			if (in_quote) {
331 				if (in_quote == fmt[i])
332 					in_quote = 0;
333 			} else {
334 				in_quote = fmt[i];
335 			}
336 			continue;
337 		case '%':
338 			if (!first || !in_quote)
339 				continue;
340 			i++;
341 			if (!fmt[i])
342 				return;
343 			switch (fmt[i]) {
344 			case '%':
345 				continue;
346 			case 'p':
347 				/* Find dereferencing fields */
348 				switch (fmt[i + 1]) {
349 				case 'B': case 'R': case 'r':
350 				case 'b': case 'M': case 'm':
351 				case 'I': case 'i': case 'E':
352 				case 'U': case 'V': case 'N':
353 				case 'a': case 'd': case 'D':
354 				case 'g': case 't': case 'C':
355 				case 'O': case 'f':
356 					if (WARN_ONCE(arg == 63,
357 						      "Too many args for event: %s",
358 						      trace_event_name(call)))
359 						return;
360 					dereference_flags |= 1ULL << arg;
361 				}
362 				break;
363 			default:
364 			{
365 				bool star = false;
366 				int j;
367 
368 				/* Increment arg if %*s exists. */
369 				for (j = 0; fmt[i + j]; j++) {
370 					if (isdigit(fmt[i + j]) ||
371 					    fmt[i + j] == '.')
372 						continue;
373 					if (fmt[i + j] == '*') {
374 						star = true;
375 						continue;
376 					}
377 					if ((fmt[i + j] == 's') && star)
378 						arg++;
379 					break;
380 				}
381 				break;
382 			} /* default */
383 
384 			} /* switch */
385 			arg++;
386 			continue;
387 		case '(':
388 			if (in_quote)
389 				continue;
390 			parens++;
391 			continue;
392 		case ')':
393 			if (in_quote)
394 				continue;
395 			parens--;
396 			if (WARN_ONCE(parens < 0,
397 				      "Paren mismatch for event: %s\narg='%s'\n%*s",
398 				      trace_event_name(call),
399 				      fmt + start_arg,
400 				      (i - start_arg) + 5, "^"))
401 				return;
402 			continue;
403 		case ',':
404 			if (in_quote || parens)
405 				continue;
406 			i++;
407 			while (isspace(fmt[i]))
408 				i++;
409 			start_arg = i;
410 			if (!(dereference_flags & (1ULL << arg)))
411 				goto next_arg;
412 
413 			/* Find the REC-> in the argument */
414 			c = strchr(fmt + i, ',');
415 			r = strstr(fmt + i, "REC->");
416 			if (r && (!c || r < c)) {
417 				/*
418 				 * Addresses of events on the buffer,
419 				 * or an array on the buffer is
420 				 * OK to dereference.
421 				 * There's ways to fool this, but
422 				 * this is to catch common mistakes,
423 				 * not malicious code.
424 				 */
425 				a = strchr(fmt + i, '&');
426 				if ((a && (a < r)) || test_field(r, call))
427 					dereference_flags &= ~(1ULL << arg);
428 			} else if ((r = strstr(fmt + i, "__get_dynamic_array(")) &&
429 				   (!c || r < c)) {
430 				dereference_flags &= ~(1ULL << arg);
431 			} else if ((r = strstr(fmt + i, "__get_sockaddr(")) &&
432 				   (!c || r < c)) {
433 				dereference_flags &= ~(1ULL << arg);
434 			}
435 
436 		next_arg:
437 			i--;
438 			arg++;
439 		}
440 	}
441 
442 	/*
443 	 * If you triggered the below warning, the trace event reported
444 	 * uses an unsafe dereference pointer %p*. As the data stored
445 	 * at the trace event time may no longer exist when the trace
446 	 * event is printed, dereferencing to the original source is
447 	 * unsafe. The source of the dereference must be copied into the
448 	 * event itself, and the dereference must access the copy instead.
449 	 */
450 	if (WARN_ON_ONCE(dereference_flags)) {
451 		arg = 1;
452 		while (!(dereference_flags & 1)) {
453 			dereference_flags >>= 1;
454 			arg++;
455 		}
456 		pr_warn("event %s has unsafe dereference of argument %d\n",
457 			trace_event_name(call), arg);
458 		pr_warn("print_fmt: %s\n", fmt);
459 	}
460 }
461 
462 int trace_event_raw_init(struct trace_event_call *call)
463 {
464 	int id;
465 
466 	id = register_trace_event(&call->event);
467 	if (!id)
468 		return -ENODEV;
469 
470 	test_event_printk(call);
471 
472 	return 0;
473 }
474 EXPORT_SYMBOL_GPL(trace_event_raw_init);
475 
476 bool trace_event_ignore_this_pid(struct trace_event_file *trace_file)
477 {
478 	struct trace_array *tr = trace_file->tr;
479 	struct trace_array_cpu *data;
480 	struct trace_pid_list *no_pid_list;
481 	struct trace_pid_list *pid_list;
482 
483 	pid_list = rcu_dereference_raw(tr->filtered_pids);
484 	no_pid_list = rcu_dereference_raw(tr->filtered_no_pids);
485 
486 	if (!pid_list && !no_pid_list)
487 		return false;
488 
489 	data = this_cpu_ptr(tr->array_buffer.data);
490 
491 	return data->ignore_pid;
492 }
493 EXPORT_SYMBOL_GPL(trace_event_ignore_this_pid);
494 
495 void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer,
496 				 struct trace_event_file *trace_file,
497 				 unsigned long len)
498 {
499 	struct trace_event_call *event_call = trace_file->event_call;
500 
501 	if ((trace_file->flags & EVENT_FILE_FL_PID_FILTER) &&
502 	    trace_event_ignore_this_pid(trace_file))
503 		return NULL;
504 
505 	/*
506 	 * If CONFIG_PREEMPTION is enabled, then the tracepoint itself disables
507 	 * preemption (adding one to the preempt_count). Since we are
508 	 * interested in the preempt_count at the time the tracepoint was
509 	 * hit, we need to subtract one to offset the increment.
510 	 */
511 	fbuffer->trace_ctx = tracing_gen_ctx_dec();
512 	fbuffer->trace_file = trace_file;
513 
514 	fbuffer->event =
515 		trace_event_buffer_lock_reserve(&fbuffer->buffer, trace_file,
516 						event_call->event.type, len,
517 						fbuffer->trace_ctx);
518 	if (!fbuffer->event)
519 		return NULL;
520 
521 	fbuffer->regs = NULL;
522 	fbuffer->entry = ring_buffer_event_data(fbuffer->event);
523 	return fbuffer->entry;
524 }
525 EXPORT_SYMBOL_GPL(trace_event_buffer_reserve);
526 
527 int trace_event_reg(struct trace_event_call *call,
528 		    enum trace_reg type, void *data)
529 {
530 	struct trace_event_file *file = data;
531 
532 	WARN_ON(!(call->flags & TRACE_EVENT_FL_TRACEPOINT));
533 	switch (type) {
534 	case TRACE_REG_REGISTER:
535 		return tracepoint_probe_register(call->tp,
536 						 call->class->probe,
537 						 file);
538 	case TRACE_REG_UNREGISTER:
539 		tracepoint_probe_unregister(call->tp,
540 					    call->class->probe,
541 					    file);
542 		return 0;
543 
544 #ifdef CONFIG_PERF_EVENTS
545 	case TRACE_REG_PERF_REGISTER:
546 		return tracepoint_probe_register(call->tp,
547 						 call->class->perf_probe,
548 						 call);
549 	case TRACE_REG_PERF_UNREGISTER:
550 		tracepoint_probe_unregister(call->tp,
551 					    call->class->perf_probe,
552 					    call);
553 		return 0;
554 	case TRACE_REG_PERF_OPEN:
555 	case TRACE_REG_PERF_CLOSE:
556 	case TRACE_REG_PERF_ADD:
557 	case TRACE_REG_PERF_DEL:
558 		return 0;
559 #endif
560 	}
561 	return 0;
562 }
563 EXPORT_SYMBOL_GPL(trace_event_reg);
564 
565 void trace_event_enable_cmd_record(bool enable)
566 {
567 	struct trace_event_file *file;
568 	struct trace_array *tr;
569 
570 	lockdep_assert_held(&event_mutex);
571 
572 	do_for_each_event_file(tr, file) {
573 
574 		if (!(file->flags & EVENT_FILE_FL_ENABLED))
575 			continue;
576 
577 		if (enable) {
578 			tracing_start_cmdline_record();
579 			set_bit(EVENT_FILE_FL_RECORDED_CMD_BIT, &file->flags);
580 		} else {
581 			tracing_stop_cmdline_record();
582 			clear_bit(EVENT_FILE_FL_RECORDED_CMD_BIT, &file->flags);
583 		}
584 	} while_for_each_event_file();
585 }
586 
587 void trace_event_enable_tgid_record(bool enable)
588 {
589 	struct trace_event_file *file;
590 	struct trace_array *tr;
591 
592 	lockdep_assert_held(&event_mutex);
593 
594 	do_for_each_event_file(tr, file) {
595 		if (!(file->flags & EVENT_FILE_FL_ENABLED))
596 			continue;
597 
598 		if (enable) {
599 			tracing_start_tgid_record();
600 			set_bit(EVENT_FILE_FL_RECORDED_TGID_BIT, &file->flags);
601 		} else {
602 			tracing_stop_tgid_record();
603 			clear_bit(EVENT_FILE_FL_RECORDED_TGID_BIT,
604 				  &file->flags);
605 		}
606 	} while_for_each_event_file();
607 }
608 
609 static int __ftrace_event_enable_disable(struct trace_event_file *file,
610 					 int enable, int soft_disable)
611 {
612 	struct trace_event_call *call = file->event_call;
613 	struct trace_array *tr = file->tr;
614 	int ret = 0;
615 	int disable;
616 
617 	switch (enable) {
618 	case 0:
619 		/*
620 		 * When soft_disable is set and enable is cleared, the sm_ref
621 		 * reference counter is decremented. If it reaches 0, we want
622 		 * to clear the SOFT_DISABLED flag but leave the event in the
623 		 * state that it was. That is, if the event was enabled and
624 		 * SOFT_DISABLED isn't set, then do nothing. But if SOFT_DISABLED
625 		 * is set we do not want the event to be enabled before we
626 		 * clear the bit.
627 		 *
628 		 * When soft_disable is not set but the SOFT_MODE flag is,
629 		 * we do nothing. Do not disable the tracepoint, otherwise
630 		 * "soft enable"s (clearing the SOFT_DISABLED bit) wont work.
631 		 */
632 		if (soft_disable) {
633 			if (atomic_dec_return(&file->sm_ref) > 0)
634 				break;
635 			disable = file->flags & EVENT_FILE_FL_SOFT_DISABLED;
636 			clear_bit(EVENT_FILE_FL_SOFT_MODE_BIT, &file->flags);
637 			/* Disable use of trace_buffered_event */
638 			trace_buffered_event_disable();
639 		} else
640 			disable = !(file->flags & EVENT_FILE_FL_SOFT_MODE);
641 
642 		if (disable && (file->flags & EVENT_FILE_FL_ENABLED)) {
643 			clear_bit(EVENT_FILE_FL_ENABLED_BIT, &file->flags);
644 			if (file->flags & EVENT_FILE_FL_RECORDED_CMD) {
645 				tracing_stop_cmdline_record();
646 				clear_bit(EVENT_FILE_FL_RECORDED_CMD_BIT, &file->flags);
647 			}
648 
649 			if (file->flags & EVENT_FILE_FL_RECORDED_TGID) {
650 				tracing_stop_tgid_record();
651 				clear_bit(EVENT_FILE_FL_RECORDED_TGID_BIT, &file->flags);
652 			}
653 
654 			call->class->reg(call, TRACE_REG_UNREGISTER, file);
655 		}
656 		/* If in SOFT_MODE, just set the SOFT_DISABLE_BIT, else clear it */
657 		if (file->flags & EVENT_FILE_FL_SOFT_MODE)
658 			set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags);
659 		else
660 			clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags);
661 		break;
662 	case 1:
663 		/*
664 		 * When soft_disable is set and enable is set, we want to
665 		 * register the tracepoint for the event, but leave the event
666 		 * as is. That means, if the event was already enabled, we do
667 		 * nothing (but set SOFT_MODE). If the event is disabled, we
668 		 * set SOFT_DISABLED before enabling the event tracepoint, so
669 		 * it still seems to be disabled.
670 		 */
671 		if (!soft_disable)
672 			clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags);
673 		else {
674 			if (atomic_inc_return(&file->sm_ref) > 1)
675 				break;
676 			set_bit(EVENT_FILE_FL_SOFT_MODE_BIT, &file->flags);
677 			/* Enable use of trace_buffered_event */
678 			trace_buffered_event_enable();
679 		}
680 
681 		if (!(file->flags & EVENT_FILE_FL_ENABLED)) {
682 			bool cmd = false, tgid = false;
683 
684 			/* Keep the event disabled, when going to SOFT_MODE. */
685 			if (soft_disable)
686 				set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags);
687 
688 			if (tr->trace_flags & TRACE_ITER_RECORD_CMD) {
689 				cmd = true;
690 				tracing_start_cmdline_record();
691 				set_bit(EVENT_FILE_FL_RECORDED_CMD_BIT, &file->flags);
692 			}
693 
694 			if (tr->trace_flags & TRACE_ITER_RECORD_TGID) {
695 				tgid = true;
696 				tracing_start_tgid_record();
697 				set_bit(EVENT_FILE_FL_RECORDED_TGID_BIT, &file->flags);
698 			}
699 
700 			ret = call->class->reg(call, TRACE_REG_REGISTER, file);
701 			if (ret) {
702 				if (cmd)
703 					tracing_stop_cmdline_record();
704 				if (tgid)
705 					tracing_stop_tgid_record();
706 				pr_info("event trace: Could not enable event "
707 					"%s\n", trace_event_name(call));
708 				break;
709 			}
710 			set_bit(EVENT_FILE_FL_ENABLED_BIT, &file->flags);
711 
712 			/* WAS_ENABLED gets set but never cleared. */
713 			set_bit(EVENT_FILE_FL_WAS_ENABLED_BIT, &file->flags);
714 		}
715 		break;
716 	}
717 
718 	return ret;
719 }
720 
721 int trace_event_enable_disable(struct trace_event_file *file,
722 			       int enable, int soft_disable)
723 {
724 	return __ftrace_event_enable_disable(file, enable, soft_disable);
725 }
726 
727 static int ftrace_event_enable_disable(struct trace_event_file *file,
728 				       int enable)
729 {
730 	return __ftrace_event_enable_disable(file, enable, 0);
731 }
732 
733 static void ftrace_clear_events(struct trace_array *tr)
734 {
735 	struct trace_event_file *file;
736 
737 	mutex_lock(&event_mutex);
738 	list_for_each_entry(file, &tr->events, list) {
739 		ftrace_event_enable_disable(file, 0);
740 	}
741 	mutex_unlock(&event_mutex);
742 }
743 
744 static void
745 event_filter_pid_sched_process_exit(void *data, struct task_struct *task)
746 {
747 	struct trace_pid_list *pid_list;
748 	struct trace_array *tr = data;
749 
750 	pid_list = rcu_dereference_raw(tr->filtered_pids);
751 	trace_filter_add_remove_task(pid_list, NULL, task);
752 
753 	pid_list = rcu_dereference_raw(tr->filtered_no_pids);
754 	trace_filter_add_remove_task(pid_list, NULL, task);
755 }
756 
757 static void
758 event_filter_pid_sched_process_fork(void *data,
759 				    struct task_struct *self,
760 				    struct task_struct *task)
761 {
762 	struct trace_pid_list *pid_list;
763 	struct trace_array *tr = data;
764 
765 	pid_list = rcu_dereference_sched(tr->filtered_pids);
766 	trace_filter_add_remove_task(pid_list, self, task);
767 
768 	pid_list = rcu_dereference_sched(tr->filtered_no_pids);
769 	trace_filter_add_remove_task(pid_list, self, task);
770 }
771 
772 void trace_event_follow_fork(struct trace_array *tr, bool enable)
773 {
774 	if (enable) {
775 		register_trace_prio_sched_process_fork(event_filter_pid_sched_process_fork,
776 						       tr, INT_MIN);
777 		register_trace_prio_sched_process_free(event_filter_pid_sched_process_exit,
778 						       tr, INT_MAX);
779 	} else {
780 		unregister_trace_sched_process_fork(event_filter_pid_sched_process_fork,
781 						    tr);
782 		unregister_trace_sched_process_free(event_filter_pid_sched_process_exit,
783 						    tr);
784 	}
785 }
786 
787 static void
788 event_filter_pid_sched_switch_probe_pre(void *data, bool preempt,
789 					struct task_struct *prev,
790 					struct task_struct *next,
791 					unsigned int prev_state)
792 {
793 	struct trace_array *tr = data;
794 	struct trace_pid_list *no_pid_list;
795 	struct trace_pid_list *pid_list;
796 	bool ret;
797 
798 	pid_list = rcu_dereference_sched(tr->filtered_pids);
799 	no_pid_list = rcu_dereference_sched(tr->filtered_no_pids);
800 
801 	/*
802 	 * Sched switch is funny, as we only want to ignore it
803 	 * in the notrace case if both prev and next should be ignored.
804 	 */
805 	ret = trace_ignore_this_task(NULL, no_pid_list, prev) &&
806 		trace_ignore_this_task(NULL, no_pid_list, next);
807 
808 	this_cpu_write(tr->array_buffer.data->ignore_pid, ret ||
809 		       (trace_ignore_this_task(pid_list, NULL, prev) &&
810 			trace_ignore_this_task(pid_list, NULL, next)));
811 }
812 
813 static void
814 event_filter_pid_sched_switch_probe_post(void *data, bool preempt,
815 					 struct task_struct *prev,
816 					 struct task_struct *next,
817 					 unsigned int prev_state)
818 {
819 	struct trace_array *tr = data;
820 	struct trace_pid_list *no_pid_list;
821 	struct trace_pid_list *pid_list;
822 
823 	pid_list = rcu_dereference_sched(tr->filtered_pids);
824 	no_pid_list = rcu_dereference_sched(tr->filtered_no_pids);
825 
826 	this_cpu_write(tr->array_buffer.data->ignore_pid,
827 		       trace_ignore_this_task(pid_list, no_pid_list, next));
828 }
829 
830 static void
831 event_filter_pid_sched_wakeup_probe_pre(void *data, struct task_struct *task)
832 {
833 	struct trace_array *tr = data;
834 	struct trace_pid_list *no_pid_list;
835 	struct trace_pid_list *pid_list;
836 
837 	/* Nothing to do if we are already tracing */
838 	if (!this_cpu_read(tr->array_buffer.data->ignore_pid))
839 		return;
840 
841 	pid_list = rcu_dereference_sched(tr->filtered_pids);
842 	no_pid_list = rcu_dereference_sched(tr->filtered_no_pids);
843 
844 	this_cpu_write(tr->array_buffer.data->ignore_pid,
845 		       trace_ignore_this_task(pid_list, no_pid_list, task));
846 }
847 
848 static void
849 event_filter_pid_sched_wakeup_probe_post(void *data, struct task_struct *task)
850 {
851 	struct trace_array *tr = data;
852 	struct trace_pid_list *no_pid_list;
853 	struct trace_pid_list *pid_list;
854 
855 	/* Nothing to do if we are not tracing */
856 	if (this_cpu_read(tr->array_buffer.data->ignore_pid))
857 		return;
858 
859 	pid_list = rcu_dereference_sched(tr->filtered_pids);
860 	no_pid_list = rcu_dereference_sched(tr->filtered_no_pids);
861 
862 	/* Set tracing if current is enabled */
863 	this_cpu_write(tr->array_buffer.data->ignore_pid,
864 		       trace_ignore_this_task(pid_list, no_pid_list, current));
865 }
866 
867 static void unregister_pid_events(struct trace_array *tr)
868 {
869 	unregister_trace_sched_switch(event_filter_pid_sched_switch_probe_pre, tr);
870 	unregister_trace_sched_switch(event_filter_pid_sched_switch_probe_post, tr);
871 
872 	unregister_trace_sched_wakeup(event_filter_pid_sched_wakeup_probe_pre, tr);
873 	unregister_trace_sched_wakeup(event_filter_pid_sched_wakeup_probe_post, tr);
874 
875 	unregister_trace_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_pre, tr);
876 	unregister_trace_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_post, tr);
877 
878 	unregister_trace_sched_waking(event_filter_pid_sched_wakeup_probe_pre, tr);
879 	unregister_trace_sched_waking(event_filter_pid_sched_wakeup_probe_post, tr);
880 }
881 
882 static void __ftrace_clear_event_pids(struct trace_array *tr, int type)
883 {
884 	struct trace_pid_list *pid_list;
885 	struct trace_pid_list *no_pid_list;
886 	struct trace_event_file *file;
887 	int cpu;
888 
889 	pid_list = rcu_dereference_protected(tr->filtered_pids,
890 					     lockdep_is_held(&event_mutex));
891 	no_pid_list = rcu_dereference_protected(tr->filtered_no_pids,
892 					     lockdep_is_held(&event_mutex));
893 
894 	/* Make sure there's something to do */
895 	if (!pid_type_enabled(type, pid_list, no_pid_list))
896 		return;
897 
898 	if (!still_need_pid_events(type, pid_list, no_pid_list)) {
899 		unregister_pid_events(tr);
900 
901 		list_for_each_entry(file, &tr->events, list) {
902 			clear_bit(EVENT_FILE_FL_PID_FILTER_BIT, &file->flags);
903 		}
904 
905 		for_each_possible_cpu(cpu)
906 			per_cpu_ptr(tr->array_buffer.data, cpu)->ignore_pid = false;
907 	}
908 
909 	if (type & TRACE_PIDS)
910 		rcu_assign_pointer(tr->filtered_pids, NULL);
911 
912 	if (type & TRACE_NO_PIDS)
913 		rcu_assign_pointer(tr->filtered_no_pids, NULL);
914 
915 	/* Wait till all users are no longer using pid filtering */
916 	tracepoint_synchronize_unregister();
917 
918 	if ((type & TRACE_PIDS) && pid_list)
919 		trace_pid_list_free(pid_list);
920 
921 	if ((type & TRACE_NO_PIDS) && no_pid_list)
922 		trace_pid_list_free(no_pid_list);
923 }
924 
925 static void ftrace_clear_event_pids(struct trace_array *tr, int type)
926 {
927 	mutex_lock(&event_mutex);
928 	__ftrace_clear_event_pids(tr, type);
929 	mutex_unlock(&event_mutex);
930 }
931 
932 static void __put_system(struct event_subsystem *system)
933 {
934 	struct event_filter *filter = system->filter;
935 
936 	WARN_ON_ONCE(system_refcount(system) == 0);
937 	if (system_refcount_dec(system))
938 		return;
939 
940 	list_del(&system->list);
941 
942 	if (filter) {
943 		kfree(filter->filter_string);
944 		kfree(filter);
945 	}
946 	kfree_const(system->name);
947 	kfree(system);
948 }
949 
950 static void __get_system(struct event_subsystem *system)
951 {
952 	WARN_ON_ONCE(system_refcount(system) == 0);
953 	system_refcount_inc(system);
954 }
955 
956 static void __get_system_dir(struct trace_subsystem_dir *dir)
957 {
958 	WARN_ON_ONCE(dir->ref_count == 0);
959 	dir->ref_count++;
960 	__get_system(dir->subsystem);
961 }
962 
963 static void __put_system_dir(struct trace_subsystem_dir *dir)
964 {
965 	WARN_ON_ONCE(dir->ref_count == 0);
966 	/* If the subsystem is about to be freed, the dir must be too */
967 	WARN_ON_ONCE(system_refcount(dir->subsystem) == 1 && dir->ref_count != 1);
968 
969 	__put_system(dir->subsystem);
970 	if (!--dir->ref_count)
971 		kfree(dir);
972 }
973 
974 static void put_system(struct trace_subsystem_dir *dir)
975 {
976 	mutex_lock(&event_mutex);
977 	__put_system_dir(dir);
978 	mutex_unlock(&event_mutex);
979 }
980 
981 static void remove_subsystem(struct trace_subsystem_dir *dir)
982 {
983 	if (!dir)
984 		return;
985 
986 	if (!--dir->nr_events) {
987 		eventfs_remove(dir->ef);
988 		list_del(&dir->list);
989 		__put_system_dir(dir);
990 	}
991 }
992 
993 static void remove_event_file_dir(struct trace_event_file *file)
994 {
995 	eventfs_remove(file->ef);
996 	list_del(&file->list);
997 	remove_subsystem(file->system);
998 	free_event_filter(file->filter);
999 	kmem_cache_free(file_cachep, file);
1000 }
1001 
1002 /*
1003  * __ftrace_set_clr_event(NULL, NULL, NULL, set) will set/unset all events.
1004  */
1005 static int
1006 __ftrace_set_clr_event_nolock(struct trace_array *tr, const char *match,
1007 			      const char *sub, const char *event, int set)
1008 {
1009 	struct trace_event_file *file;
1010 	struct trace_event_call *call;
1011 	const char *name;
1012 	int ret = -EINVAL;
1013 	int eret = 0;
1014 
1015 	list_for_each_entry(file, &tr->events, list) {
1016 
1017 		call = file->event_call;
1018 		name = trace_event_name(call);
1019 
1020 		if (!name || !call->class || !call->class->reg)
1021 			continue;
1022 
1023 		if (call->flags & TRACE_EVENT_FL_IGNORE_ENABLE)
1024 			continue;
1025 
1026 		if (match &&
1027 		    strcmp(match, name) != 0 &&
1028 		    strcmp(match, call->class->system) != 0)
1029 			continue;
1030 
1031 		if (sub && strcmp(sub, call->class->system) != 0)
1032 			continue;
1033 
1034 		if (event && strcmp(event, name) != 0)
1035 			continue;
1036 
1037 		ret = ftrace_event_enable_disable(file, set);
1038 
1039 		/*
1040 		 * Save the first error and return that. Some events
1041 		 * may still have been enabled, but let the user
1042 		 * know that something went wrong.
1043 		 */
1044 		if (ret && !eret)
1045 			eret = ret;
1046 
1047 		ret = eret;
1048 	}
1049 
1050 	return ret;
1051 }
1052 
1053 static int __ftrace_set_clr_event(struct trace_array *tr, const char *match,
1054 				  const char *sub, const char *event, int set)
1055 {
1056 	int ret;
1057 
1058 	mutex_lock(&event_mutex);
1059 	ret = __ftrace_set_clr_event_nolock(tr, match, sub, event, set);
1060 	mutex_unlock(&event_mutex);
1061 
1062 	return ret;
1063 }
1064 
1065 int ftrace_set_clr_event(struct trace_array *tr, char *buf, int set)
1066 {
1067 	char *event = NULL, *sub = NULL, *match;
1068 	int ret;
1069 
1070 	if (!tr)
1071 		return -ENOENT;
1072 	/*
1073 	 * The buf format can be <subsystem>:<event-name>
1074 	 *  *:<event-name> means any event by that name.
1075 	 *  :<event-name> is the same.
1076 	 *
1077 	 *  <subsystem>:* means all events in that subsystem
1078 	 *  <subsystem>: means the same.
1079 	 *
1080 	 *  <name> (no ':') means all events in a subsystem with
1081 	 *  the name <name> or any event that matches <name>
1082 	 */
1083 
1084 	match = strsep(&buf, ":");
1085 	if (buf) {
1086 		sub = match;
1087 		event = buf;
1088 		match = NULL;
1089 
1090 		if (!strlen(sub) || strcmp(sub, "*") == 0)
1091 			sub = NULL;
1092 		if (!strlen(event) || strcmp(event, "*") == 0)
1093 			event = NULL;
1094 	}
1095 
1096 	ret = __ftrace_set_clr_event(tr, match, sub, event, set);
1097 
1098 	/* Put back the colon to allow this to be called again */
1099 	if (buf)
1100 		*(buf - 1) = ':';
1101 
1102 	return ret;
1103 }
1104 
1105 /**
1106  * trace_set_clr_event - enable or disable an event
1107  * @system: system name to match (NULL for any system)
1108  * @event: event name to match (NULL for all events, within system)
1109  * @set: 1 to enable, 0 to disable
1110  *
1111  * This is a way for other parts of the kernel to enable or disable
1112  * event recording.
1113  *
1114  * Returns 0 on success, -EINVAL if the parameters do not match any
1115  * registered events.
1116  */
1117 int trace_set_clr_event(const char *system, const char *event, int set)
1118 {
1119 	struct trace_array *tr = top_trace_array();
1120 
1121 	if (!tr)
1122 		return -ENODEV;
1123 
1124 	return __ftrace_set_clr_event(tr, NULL, system, event, set);
1125 }
1126 EXPORT_SYMBOL_GPL(trace_set_clr_event);
1127 
1128 /**
1129  * trace_array_set_clr_event - enable or disable an event for a trace array.
1130  * @tr: concerned trace array.
1131  * @system: system name to match (NULL for any system)
1132  * @event: event name to match (NULL for all events, within system)
1133  * @enable: true to enable, false to disable
1134  *
1135  * This is a way for other parts of the kernel to enable or disable
1136  * event recording.
1137  *
1138  * Returns 0 on success, -EINVAL if the parameters do not match any
1139  * registered events.
1140  */
1141 int trace_array_set_clr_event(struct trace_array *tr, const char *system,
1142 		const char *event, bool enable)
1143 {
1144 	int set;
1145 
1146 	if (!tr)
1147 		return -ENOENT;
1148 
1149 	set = (enable == true) ? 1 : 0;
1150 	return __ftrace_set_clr_event(tr, NULL, system, event, set);
1151 }
1152 EXPORT_SYMBOL_GPL(trace_array_set_clr_event);
1153 
1154 /* 128 should be much more than enough */
1155 #define EVENT_BUF_SIZE		127
1156 
1157 static ssize_t
1158 ftrace_event_write(struct file *file, const char __user *ubuf,
1159 		   size_t cnt, loff_t *ppos)
1160 {
1161 	struct trace_parser parser;
1162 	struct seq_file *m = file->private_data;
1163 	struct trace_array *tr = m->private;
1164 	ssize_t read, ret;
1165 
1166 	if (!cnt)
1167 		return 0;
1168 
1169 	ret = tracing_update_buffers();
1170 	if (ret < 0)
1171 		return ret;
1172 
1173 	if (trace_parser_get_init(&parser, EVENT_BUF_SIZE + 1))
1174 		return -ENOMEM;
1175 
1176 	read = trace_get_user(&parser, ubuf, cnt, ppos);
1177 
1178 	if (read >= 0 && trace_parser_loaded((&parser))) {
1179 		int set = 1;
1180 
1181 		if (*parser.buffer == '!')
1182 			set = 0;
1183 
1184 		ret = ftrace_set_clr_event(tr, parser.buffer + !set, set);
1185 		if (ret)
1186 			goto out_put;
1187 	}
1188 
1189 	ret = read;
1190 
1191  out_put:
1192 	trace_parser_put(&parser);
1193 
1194 	return ret;
1195 }
1196 
1197 static void *
1198 t_next(struct seq_file *m, void *v, loff_t *pos)
1199 {
1200 	struct trace_event_file *file = v;
1201 	struct trace_event_call *call;
1202 	struct trace_array *tr = m->private;
1203 
1204 	(*pos)++;
1205 
1206 	list_for_each_entry_continue(file, &tr->events, list) {
1207 		call = file->event_call;
1208 		/*
1209 		 * The ftrace subsystem is for showing formats only.
1210 		 * They can not be enabled or disabled via the event files.
1211 		 */
1212 		if (call->class && call->class->reg &&
1213 		    !(call->flags & TRACE_EVENT_FL_IGNORE_ENABLE))
1214 			return file;
1215 	}
1216 
1217 	return NULL;
1218 }
1219 
1220 static void *t_start(struct seq_file *m, loff_t *pos)
1221 {
1222 	struct trace_event_file *file;
1223 	struct trace_array *tr = m->private;
1224 	loff_t l;
1225 
1226 	mutex_lock(&event_mutex);
1227 
1228 	file = list_entry(&tr->events, struct trace_event_file, list);
1229 	for (l = 0; l <= *pos; ) {
1230 		file = t_next(m, file, &l);
1231 		if (!file)
1232 			break;
1233 	}
1234 	return file;
1235 }
1236 
1237 static void *
1238 s_next(struct seq_file *m, void *v, loff_t *pos)
1239 {
1240 	struct trace_event_file *file = v;
1241 	struct trace_array *tr = m->private;
1242 
1243 	(*pos)++;
1244 
1245 	list_for_each_entry_continue(file, &tr->events, list) {
1246 		if (file->flags & EVENT_FILE_FL_ENABLED)
1247 			return file;
1248 	}
1249 
1250 	return NULL;
1251 }
1252 
1253 static void *s_start(struct seq_file *m, loff_t *pos)
1254 {
1255 	struct trace_event_file *file;
1256 	struct trace_array *tr = m->private;
1257 	loff_t l;
1258 
1259 	mutex_lock(&event_mutex);
1260 
1261 	file = list_entry(&tr->events, struct trace_event_file, list);
1262 	for (l = 0; l <= *pos; ) {
1263 		file = s_next(m, file, &l);
1264 		if (!file)
1265 			break;
1266 	}
1267 	return file;
1268 }
1269 
1270 static int t_show(struct seq_file *m, void *v)
1271 {
1272 	struct trace_event_file *file = v;
1273 	struct trace_event_call *call = file->event_call;
1274 
1275 	if (strcmp(call->class->system, TRACE_SYSTEM) != 0)
1276 		seq_printf(m, "%s:", call->class->system);
1277 	seq_printf(m, "%s\n", trace_event_name(call));
1278 
1279 	return 0;
1280 }
1281 
1282 static void t_stop(struct seq_file *m, void *p)
1283 {
1284 	mutex_unlock(&event_mutex);
1285 }
1286 
1287 static void *
1288 __next(struct seq_file *m, void *v, loff_t *pos, int type)
1289 {
1290 	struct trace_array *tr = m->private;
1291 	struct trace_pid_list *pid_list;
1292 
1293 	if (type == TRACE_PIDS)
1294 		pid_list = rcu_dereference_sched(tr->filtered_pids);
1295 	else
1296 		pid_list = rcu_dereference_sched(tr->filtered_no_pids);
1297 
1298 	return trace_pid_next(pid_list, v, pos);
1299 }
1300 
1301 static void *
1302 p_next(struct seq_file *m, void *v, loff_t *pos)
1303 {
1304 	return __next(m, v, pos, TRACE_PIDS);
1305 }
1306 
1307 static void *
1308 np_next(struct seq_file *m, void *v, loff_t *pos)
1309 {
1310 	return __next(m, v, pos, TRACE_NO_PIDS);
1311 }
1312 
1313 static void *__start(struct seq_file *m, loff_t *pos, int type)
1314 	__acquires(RCU)
1315 {
1316 	struct trace_pid_list *pid_list;
1317 	struct trace_array *tr = m->private;
1318 
1319 	/*
1320 	 * Grab the mutex, to keep calls to p_next() having the same
1321 	 * tr->filtered_pids as p_start() has.
1322 	 * If we just passed the tr->filtered_pids around, then RCU would
1323 	 * have been enough, but doing that makes things more complex.
1324 	 */
1325 	mutex_lock(&event_mutex);
1326 	rcu_read_lock_sched();
1327 
1328 	if (type == TRACE_PIDS)
1329 		pid_list = rcu_dereference_sched(tr->filtered_pids);
1330 	else
1331 		pid_list = rcu_dereference_sched(tr->filtered_no_pids);
1332 
1333 	if (!pid_list)
1334 		return NULL;
1335 
1336 	return trace_pid_start(pid_list, pos);
1337 }
1338 
1339 static void *p_start(struct seq_file *m, loff_t *pos)
1340 	__acquires(RCU)
1341 {
1342 	return __start(m, pos, TRACE_PIDS);
1343 }
1344 
1345 static void *np_start(struct seq_file *m, loff_t *pos)
1346 	__acquires(RCU)
1347 {
1348 	return __start(m, pos, TRACE_NO_PIDS);
1349 }
1350 
1351 static void p_stop(struct seq_file *m, void *p)
1352 	__releases(RCU)
1353 {
1354 	rcu_read_unlock_sched();
1355 	mutex_unlock(&event_mutex);
1356 }
1357 
1358 static ssize_t
1359 event_enable_read(struct file *filp, char __user *ubuf, size_t cnt,
1360 		  loff_t *ppos)
1361 {
1362 	struct trace_event_file *file;
1363 	unsigned long flags;
1364 	char buf[4] = "0";
1365 
1366 	mutex_lock(&event_mutex);
1367 	file = event_file_data(filp);
1368 	if (likely(file))
1369 		flags = file->flags;
1370 	mutex_unlock(&event_mutex);
1371 
1372 	if (!file)
1373 		return -ENODEV;
1374 
1375 	if (flags & EVENT_FILE_FL_ENABLED &&
1376 	    !(flags & EVENT_FILE_FL_SOFT_DISABLED))
1377 		strcpy(buf, "1");
1378 
1379 	if (flags & EVENT_FILE_FL_SOFT_DISABLED ||
1380 	    flags & EVENT_FILE_FL_SOFT_MODE)
1381 		strcat(buf, "*");
1382 
1383 	strcat(buf, "\n");
1384 
1385 	return simple_read_from_buffer(ubuf, cnt, ppos, buf, strlen(buf));
1386 }
1387 
1388 static ssize_t
1389 event_enable_write(struct file *filp, const char __user *ubuf, size_t cnt,
1390 		   loff_t *ppos)
1391 {
1392 	struct trace_event_file *file;
1393 	unsigned long val;
1394 	int ret;
1395 
1396 	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
1397 	if (ret)
1398 		return ret;
1399 
1400 	ret = tracing_update_buffers();
1401 	if (ret < 0)
1402 		return ret;
1403 
1404 	switch (val) {
1405 	case 0:
1406 	case 1:
1407 		ret = -ENODEV;
1408 		mutex_lock(&event_mutex);
1409 		file = event_file_data(filp);
1410 		if (likely(file))
1411 			ret = ftrace_event_enable_disable(file, val);
1412 		mutex_unlock(&event_mutex);
1413 		break;
1414 
1415 	default:
1416 		return -EINVAL;
1417 	}
1418 
1419 	*ppos += cnt;
1420 
1421 	return ret ? ret : cnt;
1422 }
1423 
1424 static ssize_t
1425 system_enable_read(struct file *filp, char __user *ubuf, size_t cnt,
1426 		   loff_t *ppos)
1427 {
1428 	const char set_to_char[4] = { '?', '0', '1', 'X' };
1429 	struct trace_subsystem_dir *dir = filp->private_data;
1430 	struct event_subsystem *system = dir->subsystem;
1431 	struct trace_event_call *call;
1432 	struct trace_event_file *file;
1433 	struct trace_array *tr = dir->tr;
1434 	char buf[2];
1435 	int set = 0;
1436 	int ret;
1437 
1438 	mutex_lock(&event_mutex);
1439 	list_for_each_entry(file, &tr->events, list) {
1440 		call = file->event_call;
1441 		if ((call->flags & TRACE_EVENT_FL_IGNORE_ENABLE) ||
1442 		    !trace_event_name(call) || !call->class || !call->class->reg)
1443 			continue;
1444 
1445 		if (system && strcmp(call->class->system, system->name) != 0)
1446 			continue;
1447 
1448 		/*
1449 		 * We need to find out if all the events are set
1450 		 * or if all events or cleared, or if we have
1451 		 * a mixture.
1452 		 */
1453 		set |= (1 << !!(file->flags & EVENT_FILE_FL_ENABLED));
1454 
1455 		/*
1456 		 * If we have a mixture, no need to look further.
1457 		 */
1458 		if (set == 3)
1459 			break;
1460 	}
1461 	mutex_unlock(&event_mutex);
1462 
1463 	buf[0] = set_to_char[set];
1464 	buf[1] = '\n';
1465 
1466 	ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
1467 
1468 	return ret;
1469 }
1470 
1471 static ssize_t
1472 system_enable_write(struct file *filp, const char __user *ubuf, size_t cnt,
1473 		    loff_t *ppos)
1474 {
1475 	struct trace_subsystem_dir *dir = filp->private_data;
1476 	struct event_subsystem *system = dir->subsystem;
1477 	const char *name = NULL;
1478 	unsigned long val;
1479 	ssize_t ret;
1480 
1481 	ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
1482 	if (ret)
1483 		return ret;
1484 
1485 	ret = tracing_update_buffers();
1486 	if (ret < 0)
1487 		return ret;
1488 
1489 	if (val != 0 && val != 1)
1490 		return -EINVAL;
1491 
1492 	/*
1493 	 * Opening of "enable" adds a ref count to system,
1494 	 * so the name is safe to use.
1495 	 */
1496 	if (system)
1497 		name = system->name;
1498 
1499 	ret = __ftrace_set_clr_event(dir->tr, NULL, name, NULL, val);
1500 	if (ret)
1501 		goto out;
1502 
1503 	ret = cnt;
1504 
1505 out:
1506 	*ppos += cnt;
1507 
1508 	return ret;
1509 }
1510 
1511 enum {
1512 	FORMAT_HEADER		= 1,
1513 	FORMAT_FIELD_SEPERATOR	= 2,
1514 	FORMAT_PRINTFMT		= 3,
1515 };
1516 
1517 static void *f_next(struct seq_file *m, void *v, loff_t *pos)
1518 {
1519 	struct trace_event_call *call = event_file_data(m->private);
1520 	struct list_head *common_head = &ftrace_common_fields;
1521 	struct list_head *head = trace_get_fields(call);
1522 	struct list_head *node = v;
1523 
1524 	(*pos)++;
1525 
1526 	switch ((unsigned long)v) {
1527 	case FORMAT_HEADER:
1528 		node = common_head;
1529 		break;
1530 
1531 	case FORMAT_FIELD_SEPERATOR:
1532 		node = head;
1533 		break;
1534 
1535 	case FORMAT_PRINTFMT:
1536 		/* all done */
1537 		return NULL;
1538 	}
1539 
1540 	node = node->prev;
1541 	if (node == common_head)
1542 		return (void *)FORMAT_FIELD_SEPERATOR;
1543 	else if (node == head)
1544 		return (void *)FORMAT_PRINTFMT;
1545 	else
1546 		return node;
1547 }
1548 
1549 static int f_show(struct seq_file *m, void *v)
1550 {
1551 	struct trace_event_call *call = event_file_data(m->private);
1552 	struct ftrace_event_field *field;
1553 	const char *array_descriptor;
1554 
1555 	switch ((unsigned long)v) {
1556 	case FORMAT_HEADER:
1557 		seq_printf(m, "name: %s\n", trace_event_name(call));
1558 		seq_printf(m, "ID: %d\n", call->event.type);
1559 		seq_puts(m, "format:\n");
1560 		return 0;
1561 
1562 	case FORMAT_FIELD_SEPERATOR:
1563 		seq_putc(m, '\n');
1564 		return 0;
1565 
1566 	case FORMAT_PRINTFMT:
1567 		seq_printf(m, "\nprint fmt: %s\n",
1568 			   call->print_fmt);
1569 		return 0;
1570 	}
1571 
1572 	field = list_entry(v, struct ftrace_event_field, link);
1573 	/*
1574 	 * Smartly shows the array type(except dynamic array).
1575 	 * Normal:
1576 	 *	field:TYPE VAR
1577 	 * If TYPE := TYPE[LEN], it is shown:
1578 	 *	field:TYPE VAR[LEN]
1579 	 */
1580 	array_descriptor = strchr(field->type, '[');
1581 
1582 	if (str_has_prefix(field->type, "__data_loc"))
1583 		array_descriptor = NULL;
1584 
1585 	if (!array_descriptor)
1586 		seq_printf(m, "\tfield:%s %s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1587 			   field->type, field->name, field->offset,
1588 			   field->size, !!field->is_signed);
1589 	else if (field->len)
1590 		seq_printf(m, "\tfield:%.*s %s[%d];\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1591 			   (int)(array_descriptor - field->type),
1592 			   field->type, field->name,
1593 			   field->len, field->offset,
1594 			   field->size, !!field->is_signed);
1595 	else
1596 		seq_printf(m, "\tfield:%.*s %s[];\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1597 				(int)(array_descriptor - field->type),
1598 				field->type, field->name,
1599 				field->offset, field->size, !!field->is_signed);
1600 
1601 	return 0;
1602 }
1603 
1604 static void *f_start(struct seq_file *m, loff_t *pos)
1605 {
1606 	void *p = (void *)FORMAT_HEADER;
1607 	loff_t l = 0;
1608 
1609 	/* ->stop() is called even if ->start() fails */
1610 	mutex_lock(&event_mutex);
1611 	if (!event_file_data(m->private))
1612 		return ERR_PTR(-ENODEV);
1613 
1614 	while (l < *pos && p)
1615 		p = f_next(m, p, &l);
1616 
1617 	return p;
1618 }
1619 
1620 static void f_stop(struct seq_file *m, void *p)
1621 {
1622 	mutex_unlock(&event_mutex);
1623 }
1624 
1625 static const struct seq_operations trace_format_seq_ops = {
1626 	.start		= f_start,
1627 	.next		= f_next,
1628 	.stop		= f_stop,
1629 	.show		= f_show,
1630 };
1631 
1632 static int trace_format_open(struct inode *inode, struct file *file)
1633 {
1634 	struct seq_file *m;
1635 	int ret;
1636 
1637 	/* Do we want to hide event format files on tracefs lockdown? */
1638 
1639 	ret = seq_open(file, &trace_format_seq_ops);
1640 	if (ret < 0)
1641 		return ret;
1642 
1643 	m = file->private_data;
1644 	m->private = file;
1645 
1646 	return 0;
1647 }
1648 
1649 static ssize_t
1650 event_id_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
1651 {
1652 	int id = (long)event_file_data(filp);
1653 	char buf[32];
1654 	int len;
1655 
1656 	if (unlikely(!id))
1657 		return -ENODEV;
1658 
1659 	len = sprintf(buf, "%d\n", id);
1660 
1661 	return simple_read_from_buffer(ubuf, cnt, ppos, buf, len);
1662 }
1663 
1664 static ssize_t
1665 event_filter_read(struct file *filp, char __user *ubuf, size_t cnt,
1666 		  loff_t *ppos)
1667 {
1668 	struct trace_event_file *file;
1669 	struct trace_seq *s;
1670 	int r = -ENODEV;
1671 
1672 	if (*ppos)
1673 		return 0;
1674 
1675 	s = kmalloc(sizeof(*s), GFP_KERNEL);
1676 
1677 	if (!s)
1678 		return -ENOMEM;
1679 
1680 	trace_seq_init(s);
1681 
1682 	mutex_lock(&event_mutex);
1683 	file = event_file_data(filp);
1684 	if (file)
1685 		print_event_filter(file, s);
1686 	mutex_unlock(&event_mutex);
1687 
1688 	if (file)
1689 		r = simple_read_from_buffer(ubuf, cnt, ppos,
1690 					    s->buffer, trace_seq_used(s));
1691 
1692 	kfree(s);
1693 
1694 	return r;
1695 }
1696 
1697 static ssize_t
1698 event_filter_write(struct file *filp, const char __user *ubuf, size_t cnt,
1699 		   loff_t *ppos)
1700 {
1701 	struct trace_event_file *file;
1702 	char *buf;
1703 	int err = -ENODEV;
1704 
1705 	if (cnt >= PAGE_SIZE)
1706 		return -EINVAL;
1707 
1708 	buf = memdup_user_nul(ubuf, cnt);
1709 	if (IS_ERR(buf))
1710 		return PTR_ERR(buf);
1711 
1712 	mutex_lock(&event_mutex);
1713 	file = event_file_data(filp);
1714 	if (file)
1715 		err = apply_event_filter(file, buf);
1716 	mutex_unlock(&event_mutex);
1717 
1718 	kfree(buf);
1719 	if (err < 0)
1720 		return err;
1721 
1722 	*ppos += cnt;
1723 
1724 	return cnt;
1725 }
1726 
1727 static LIST_HEAD(event_subsystems);
1728 
1729 static int subsystem_open(struct inode *inode, struct file *filp)
1730 {
1731 	struct trace_subsystem_dir *dir = NULL, *iter_dir;
1732 	struct trace_array *tr = NULL, *iter_tr;
1733 	struct event_subsystem *system = NULL;
1734 	int ret;
1735 
1736 	if (tracing_is_disabled())
1737 		return -ENODEV;
1738 
1739 	/* Make sure the system still exists */
1740 	mutex_lock(&event_mutex);
1741 	mutex_lock(&trace_types_lock);
1742 	list_for_each_entry(iter_tr, &ftrace_trace_arrays, list) {
1743 		list_for_each_entry(iter_dir, &iter_tr->systems, list) {
1744 			if (iter_dir == inode->i_private) {
1745 				/* Don't open systems with no events */
1746 				tr = iter_tr;
1747 				dir = iter_dir;
1748 				if (dir->nr_events) {
1749 					__get_system_dir(dir);
1750 					system = dir->subsystem;
1751 				}
1752 				goto exit_loop;
1753 			}
1754 		}
1755 	}
1756  exit_loop:
1757 	mutex_unlock(&trace_types_lock);
1758 	mutex_unlock(&event_mutex);
1759 
1760 	if (!system)
1761 		return -ENODEV;
1762 
1763 	/* Still need to increment the ref count of the system */
1764 	if (trace_array_get(tr) < 0) {
1765 		put_system(dir);
1766 		return -ENODEV;
1767 	}
1768 
1769 	ret = tracing_open_generic(inode, filp);
1770 	if (ret < 0) {
1771 		trace_array_put(tr);
1772 		put_system(dir);
1773 	}
1774 
1775 	return ret;
1776 }
1777 
1778 static int system_tr_open(struct inode *inode, struct file *filp)
1779 {
1780 	struct trace_subsystem_dir *dir;
1781 	struct trace_array *tr = inode->i_private;
1782 	int ret;
1783 
1784 	/* Make a temporary dir that has no system but points to tr */
1785 	dir = kzalloc(sizeof(*dir), GFP_KERNEL);
1786 	if (!dir)
1787 		return -ENOMEM;
1788 
1789 	ret = tracing_open_generic_tr(inode, filp);
1790 	if (ret < 0) {
1791 		kfree(dir);
1792 		return ret;
1793 	}
1794 	dir->tr = tr;
1795 	filp->private_data = dir;
1796 
1797 	return 0;
1798 }
1799 
1800 static int subsystem_release(struct inode *inode, struct file *file)
1801 {
1802 	struct trace_subsystem_dir *dir = file->private_data;
1803 
1804 	trace_array_put(dir->tr);
1805 
1806 	/*
1807 	 * If dir->subsystem is NULL, then this is a temporary
1808 	 * descriptor that was made for a trace_array to enable
1809 	 * all subsystems.
1810 	 */
1811 	if (dir->subsystem)
1812 		put_system(dir);
1813 	else
1814 		kfree(dir);
1815 
1816 	return 0;
1817 }
1818 
1819 static ssize_t
1820 subsystem_filter_read(struct file *filp, char __user *ubuf, size_t cnt,
1821 		      loff_t *ppos)
1822 {
1823 	struct trace_subsystem_dir *dir = filp->private_data;
1824 	struct event_subsystem *system = dir->subsystem;
1825 	struct trace_seq *s;
1826 	int r;
1827 
1828 	if (*ppos)
1829 		return 0;
1830 
1831 	s = kmalloc(sizeof(*s), GFP_KERNEL);
1832 	if (!s)
1833 		return -ENOMEM;
1834 
1835 	trace_seq_init(s);
1836 
1837 	print_subsystem_event_filter(system, s);
1838 	r = simple_read_from_buffer(ubuf, cnt, ppos,
1839 				    s->buffer, trace_seq_used(s));
1840 
1841 	kfree(s);
1842 
1843 	return r;
1844 }
1845 
1846 static ssize_t
1847 subsystem_filter_write(struct file *filp, const char __user *ubuf, size_t cnt,
1848 		       loff_t *ppos)
1849 {
1850 	struct trace_subsystem_dir *dir = filp->private_data;
1851 	char *buf;
1852 	int err;
1853 
1854 	if (cnt >= PAGE_SIZE)
1855 		return -EINVAL;
1856 
1857 	buf = memdup_user_nul(ubuf, cnt);
1858 	if (IS_ERR(buf))
1859 		return PTR_ERR(buf);
1860 
1861 	err = apply_subsystem_event_filter(dir, buf);
1862 	kfree(buf);
1863 	if (err < 0)
1864 		return err;
1865 
1866 	*ppos += cnt;
1867 
1868 	return cnt;
1869 }
1870 
1871 static ssize_t
1872 show_header(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
1873 {
1874 	int (*func)(struct trace_seq *s) = filp->private_data;
1875 	struct trace_seq *s;
1876 	int r;
1877 
1878 	if (*ppos)
1879 		return 0;
1880 
1881 	s = kmalloc(sizeof(*s), GFP_KERNEL);
1882 	if (!s)
1883 		return -ENOMEM;
1884 
1885 	trace_seq_init(s);
1886 
1887 	func(s);
1888 	r = simple_read_from_buffer(ubuf, cnt, ppos,
1889 				    s->buffer, trace_seq_used(s));
1890 
1891 	kfree(s);
1892 
1893 	return r;
1894 }
1895 
1896 static void ignore_task_cpu(void *data)
1897 {
1898 	struct trace_array *tr = data;
1899 	struct trace_pid_list *pid_list;
1900 	struct trace_pid_list *no_pid_list;
1901 
1902 	/*
1903 	 * This function is called by on_each_cpu() while the
1904 	 * event_mutex is held.
1905 	 */
1906 	pid_list = rcu_dereference_protected(tr->filtered_pids,
1907 					     mutex_is_locked(&event_mutex));
1908 	no_pid_list = rcu_dereference_protected(tr->filtered_no_pids,
1909 					     mutex_is_locked(&event_mutex));
1910 
1911 	this_cpu_write(tr->array_buffer.data->ignore_pid,
1912 		       trace_ignore_this_task(pid_list, no_pid_list, current));
1913 }
1914 
1915 static void register_pid_events(struct trace_array *tr)
1916 {
1917 	/*
1918 	 * Register a probe that is called before all other probes
1919 	 * to set ignore_pid if next or prev do not match.
1920 	 * Register a probe this is called after all other probes
1921 	 * to only keep ignore_pid set if next pid matches.
1922 	 */
1923 	register_trace_prio_sched_switch(event_filter_pid_sched_switch_probe_pre,
1924 					 tr, INT_MAX);
1925 	register_trace_prio_sched_switch(event_filter_pid_sched_switch_probe_post,
1926 					 tr, 0);
1927 
1928 	register_trace_prio_sched_wakeup(event_filter_pid_sched_wakeup_probe_pre,
1929 					 tr, INT_MAX);
1930 	register_trace_prio_sched_wakeup(event_filter_pid_sched_wakeup_probe_post,
1931 					 tr, 0);
1932 
1933 	register_trace_prio_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_pre,
1934 					     tr, INT_MAX);
1935 	register_trace_prio_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_post,
1936 					     tr, 0);
1937 
1938 	register_trace_prio_sched_waking(event_filter_pid_sched_wakeup_probe_pre,
1939 					 tr, INT_MAX);
1940 	register_trace_prio_sched_waking(event_filter_pid_sched_wakeup_probe_post,
1941 					 tr, 0);
1942 }
1943 
1944 static ssize_t
1945 event_pid_write(struct file *filp, const char __user *ubuf,
1946 		size_t cnt, loff_t *ppos, int type)
1947 {
1948 	struct seq_file *m = filp->private_data;
1949 	struct trace_array *tr = m->private;
1950 	struct trace_pid_list *filtered_pids = NULL;
1951 	struct trace_pid_list *other_pids = NULL;
1952 	struct trace_pid_list *pid_list;
1953 	struct trace_event_file *file;
1954 	ssize_t ret;
1955 
1956 	if (!cnt)
1957 		return 0;
1958 
1959 	ret = tracing_update_buffers();
1960 	if (ret < 0)
1961 		return ret;
1962 
1963 	mutex_lock(&event_mutex);
1964 
1965 	if (type == TRACE_PIDS) {
1966 		filtered_pids = rcu_dereference_protected(tr->filtered_pids,
1967 							  lockdep_is_held(&event_mutex));
1968 		other_pids = rcu_dereference_protected(tr->filtered_no_pids,
1969 							  lockdep_is_held(&event_mutex));
1970 	} else {
1971 		filtered_pids = rcu_dereference_protected(tr->filtered_no_pids,
1972 							  lockdep_is_held(&event_mutex));
1973 		other_pids = rcu_dereference_protected(tr->filtered_pids,
1974 							  lockdep_is_held(&event_mutex));
1975 	}
1976 
1977 	ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
1978 	if (ret < 0)
1979 		goto out;
1980 
1981 	if (type == TRACE_PIDS)
1982 		rcu_assign_pointer(tr->filtered_pids, pid_list);
1983 	else
1984 		rcu_assign_pointer(tr->filtered_no_pids, pid_list);
1985 
1986 	list_for_each_entry(file, &tr->events, list) {
1987 		set_bit(EVENT_FILE_FL_PID_FILTER_BIT, &file->flags);
1988 	}
1989 
1990 	if (filtered_pids) {
1991 		tracepoint_synchronize_unregister();
1992 		trace_pid_list_free(filtered_pids);
1993 	} else if (pid_list && !other_pids) {
1994 		register_pid_events(tr);
1995 	}
1996 
1997 	/*
1998 	 * Ignoring of pids is done at task switch. But we have to
1999 	 * check for those tasks that are currently running.
2000 	 * Always do this in case a pid was appended or removed.
2001 	 */
2002 	on_each_cpu(ignore_task_cpu, tr, 1);
2003 
2004  out:
2005 	mutex_unlock(&event_mutex);
2006 
2007 	if (ret > 0)
2008 		*ppos += ret;
2009 
2010 	return ret;
2011 }
2012 
2013 static ssize_t
2014 ftrace_event_pid_write(struct file *filp, const char __user *ubuf,
2015 		       size_t cnt, loff_t *ppos)
2016 {
2017 	return event_pid_write(filp, ubuf, cnt, ppos, TRACE_PIDS);
2018 }
2019 
2020 static ssize_t
2021 ftrace_event_npid_write(struct file *filp, const char __user *ubuf,
2022 			size_t cnt, loff_t *ppos)
2023 {
2024 	return event_pid_write(filp, ubuf, cnt, ppos, TRACE_NO_PIDS);
2025 }
2026 
2027 static int ftrace_event_avail_open(struct inode *inode, struct file *file);
2028 static int ftrace_event_set_open(struct inode *inode, struct file *file);
2029 static int ftrace_event_set_pid_open(struct inode *inode, struct file *file);
2030 static int ftrace_event_set_npid_open(struct inode *inode, struct file *file);
2031 static int ftrace_event_release(struct inode *inode, struct file *file);
2032 
2033 static const struct seq_operations show_event_seq_ops = {
2034 	.start = t_start,
2035 	.next = t_next,
2036 	.show = t_show,
2037 	.stop = t_stop,
2038 };
2039 
2040 static const struct seq_operations show_set_event_seq_ops = {
2041 	.start = s_start,
2042 	.next = s_next,
2043 	.show = t_show,
2044 	.stop = t_stop,
2045 };
2046 
2047 static const struct seq_operations show_set_pid_seq_ops = {
2048 	.start = p_start,
2049 	.next = p_next,
2050 	.show = trace_pid_show,
2051 	.stop = p_stop,
2052 };
2053 
2054 static const struct seq_operations show_set_no_pid_seq_ops = {
2055 	.start = np_start,
2056 	.next = np_next,
2057 	.show = trace_pid_show,
2058 	.stop = p_stop,
2059 };
2060 
2061 static const struct file_operations ftrace_avail_fops = {
2062 	.open = ftrace_event_avail_open,
2063 	.read = seq_read,
2064 	.llseek = seq_lseek,
2065 	.release = seq_release,
2066 };
2067 
2068 static const struct file_operations ftrace_set_event_fops = {
2069 	.open = ftrace_event_set_open,
2070 	.read = seq_read,
2071 	.write = ftrace_event_write,
2072 	.llseek = seq_lseek,
2073 	.release = ftrace_event_release,
2074 };
2075 
2076 static const struct file_operations ftrace_set_event_pid_fops = {
2077 	.open = ftrace_event_set_pid_open,
2078 	.read = seq_read,
2079 	.write = ftrace_event_pid_write,
2080 	.llseek = seq_lseek,
2081 	.release = ftrace_event_release,
2082 };
2083 
2084 static const struct file_operations ftrace_set_event_notrace_pid_fops = {
2085 	.open = ftrace_event_set_npid_open,
2086 	.read = seq_read,
2087 	.write = ftrace_event_npid_write,
2088 	.llseek = seq_lseek,
2089 	.release = ftrace_event_release,
2090 };
2091 
2092 static const struct file_operations ftrace_enable_fops = {
2093 	.open = tracing_open_file_tr,
2094 	.read = event_enable_read,
2095 	.write = event_enable_write,
2096 	.release = tracing_release_file_tr,
2097 	.llseek = default_llseek,
2098 };
2099 
2100 static const struct file_operations ftrace_event_format_fops = {
2101 	.open = trace_format_open,
2102 	.read = seq_read,
2103 	.llseek = seq_lseek,
2104 	.release = seq_release,
2105 };
2106 
2107 static const struct file_operations ftrace_event_id_fops = {
2108 	.read = event_id_read,
2109 	.llseek = default_llseek,
2110 };
2111 
2112 static const struct file_operations ftrace_event_filter_fops = {
2113 	.open = tracing_open_file_tr,
2114 	.read = event_filter_read,
2115 	.write = event_filter_write,
2116 	.release = tracing_release_file_tr,
2117 	.llseek = default_llseek,
2118 };
2119 
2120 static const struct file_operations ftrace_subsystem_filter_fops = {
2121 	.open = subsystem_open,
2122 	.read = subsystem_filter_read,
2123 	.write = subsystem_filter_write,
2124 	.llseek = default_llseek,
2125 	.release = subsystem_release,
2126 };
2127 
2128 static const struct file_operations ftrace_system_enable_fops = {
2129 	.open = subsystem_open,
2130 	.read = system_enable_read,
2131 	.write = system_enable_write,
2132 	.llseek = default_llseek,
2133 	.release = subsystem_release,
2134 };
2135 
2136 static const struct file_operations ftrace_tr_enable_fops = {
2137 	.open = system_tr_open,
2138 	.read = system_enable_read,
2139 	.write = system_enable_write,
2140 	.llseek = default_llseek,
2141 	.release = subsystem_release,
2142 };
2143 
2144 static const struct file_operations ftrace_show_header_fops = {
2145 	.open = tracing_open_generic,
2146 	.read = show_header,
2147 	.llseek = default_llseek,
2148 };
2149 
2150 static int
2151 ftrace_event_open(struct inode *inode, struct file *file,
2152 		  const struct seq_operations *seq_ops)
2153 {
2154 	struct seq_file *m;
2155 	int ret;
2156 
2157 	ret = security_locked_down(LOCKDOWN_TRACEFS);
2158 	if (ret)
2159 		return ret;
2160 
2161 	ret = seq_open(file, seq_ops);
2162 	if (ret < 0)
2163 		return ret;
2164 	m = file->private_data;
2165 	/* copy tr over to seq ops */
2166 	m->private = inode->i_private;
2167 
2168 	return ret;
2169 }
2170 
2171 static int ftrace_event_release(struct inode *inode, struct file *file)
2172 {
2173 	struct trace_array *tr = inode->i_private;
2174 
2175 	trace_array_put(tr);
2176 
2177 	return seq_release(inode, file);
2178 }
2179 
2180 static int
2181 ftrace_event_avail_open(struct inode *inode, struct file *file)
2182 {
2183 	const struct seq_operations *seq_ops = &show_event_seq_ops;
2184 
2185 	/* Checks for tracefs lockdown */
2186 	return ftrace_event_open(inode, file, seq_ops);
2187 }
2188 
2189 static int
2190 ftrace_event_set_open(struct inode *inode, struct file *file)
2191 {
2192 	const struct seq_operations *seq_ops = &show_set_event_seq_ops;
2193 	struct trace_array *tr = inode->i_private;
2194 	int ret;
2195 
2196 	ret = tracing_check_open_get_tr(tr);
2197 	if (ret)
2198 		return ret;
2199 
2200 	if ((file->f_mode & FMODE_WRITE) &&
2201 	    (file->f_flags & O_TRUNC))
2202 		ftrace_clear_events(tr);
2203 
2204 	ret = ftrace_event_open(inode, file, seq_ops);
2205 	if (ret < 0)
2206 		trace_array_put(tr);
2207 	return ret;
2208 }
2209 
2210 static int
2211 ftrace_event_set_pid_open(struct inode *inode, struct file *file)
2212 {
2213 	const struct seq_operations *seq_ops = &show_set_pid_seq_ops;
2214 	struct trace_array *tr = inode->i_private;
2215 	int ret;
2216 
2217 	ret = tracing_check_open_get_tr(tr);
2218 	if (ret)
2219 		return ret;
2220 
2221 	if ((file->f_mode & FMODE_WRITE) &&
2222 	    (file->f_flags & O_TRUNC))
2223 		ftrace_clear_event_pids(tr, TRACE_PIDS);
2224 
2225 	ret = ftrace_event_open(inode, file, seq_ops);
2226 	if (ret < 0)
2227 		trace_array_put(tr);
2228 	return ret;
2229 }
2230 
2231 static int
2232 ftrace_event_set_npid_open(struct inode *inode, struct file *file)
2233 {
2234 	const struct seq_operations *seq_ops = &show_set_no_pid_seq_ops;
2235 	struct trace_array *tr = inode->i_private;
2236 	int ret;
2237 
2238 	ret = tracing_check_open_get_tr(tr);
2239 	if (ret)
2240 		return ret;
2241 
2242 	if ((file->f_mode & FMODE_WRITE) &&
2243 	    (file->f_flags & O_TRUNC))
2244 		ftrace_clear_event_pids(tr, TRACE_NO_PIDS);
2245 
2246 	ret = ftrace_event_open(inode, file, seq_ops);
2247 	if (ret < 0)
2248 		trace_array_put(tr);
2249 	return ret;
2250 }
2251 
2252 static struct event_subsystem *
2253 create_new_subsystem(const char *name)
2254 {
2255 	struct event_subsystem *system;
2256 
2257 	/* need to create new entry */
2258 	system = kmalloc(sizeof(*system), GFP_KERNEL);
2259 	if (!system)
2260 		return NULL;
2261 
2262 	system->ref_count = 1;
2263 
2264 	/* Only allocate if dynamic (kprobes and modules) */
2265 	system->name = kstrdup_const(name, GFP_KERNEL);
2266 	if (!system->name)
2267 		goto out_free;
2268 
2269 	system->filter = kzalloc(sizeof(struct event_filter), GFP_KERNEL);
2270 	if (!system->filter)
2271 		goto out_free;
2272 
2273 	list_add(&system->list, &event_subsystems);
2274 
2275 	return system;
2276 
2277  out_free:
2278 	kfree_const(system->name);
2279 	kfree(system);
2280 	return NULL;
2281 }
2282 
2283 static struct eventfs_file *
2284 event_subsystem_dir(struct trace_array *tr, const char *name,
2285 		    struct trace_event_file *file, struct dentry *parent)
2286 {
2287 	struct event_subsystem *system, *iter;
2288 	struct trace_subsystem_dir *dir;
2289 	int res;
2290 
2291 	/* First see if we did not already create this dir */
2292 	list_for_each_entry(dir, &tr->systems, list) {
2293 		system = dir->subsystem;
2294 		if (strcmp(system->name, name) == 0) {
2295 			dir->nr_events++;
2296 			file->system = dir;
2297 			return dir->ef;
2298 		}
2299 	}
2300 
2301 	/* Now see if the system itself exists. */
2302 	system = NULL;
2303 	list_for_each_entry(iter, &event_subsystems, list) {
2304 		if (strcmp(iter->name, name) == 0) {
2305 			system = iter;
2306 			break;
2307 		}
2308 	}
2309 
2310 	dir = kmalloc(sizeof(*dir), GFP_KERNEL);
2311 	if (!dir)
2312 		goto out_fail;
2313 
2314 	if (!system) {
2315 		system = create_new_subsystem(name);
2316 		if (!system)
2317 			goto out_free;
2318 	} else
2319 		__get_system(system);
2320 
2321 	dir->ef = eventfs_add_subsystem_dir(name, parent);
2322 	if (IS_ERR(dir->ef)) {
2323 		pr_warn("Failed to create system directory %s\n", name);
2324 		__put_system(system);
2325 		goto out_free;
2326 	}
2327 
2328 	dir->tr = tr;
2329 	dir->ref_count = 1;
2330 	dir->nr_events = 1;
2331 	dir->subsystem = system;
2332 	file->system = dir;
2333 
2334 	/* the ftrace system is special, do not create enable or filter files */
2335 	if (strcmp(name, "ftrace") != 0) {
2336 
2337 		res = eventfs_add_file("filter", TRACE_MODE_WRITE,
2338 					    dir->ef, dir,
2339 					    &ftrace_subsystem_filter_fops);
2340 		if (res) {
2341 			kfree(system->filter);
2342 			system->filter = NULL;
2343 			pr_warn("Could not create tracefs '%s/filter' entry\n", name);
2344 		}
2345 
2346 		eventfs_add_file("enable", TRACE_MODE_WRITE, dir->ef, dir,
2347 				  &ftrace_system_enable_fops);
2348 	}
2349 
2350 	list_add(&dir->list, &tr->systems);
2351 
2352 	return dir->ef;
2353 
2354  out_free:
2355 	kfree(dir);
2356  out_fail:
2357 	/* Only print this message if failed on memory allocation */
2358 	if (!dir || !system)
2359 		pr_warn("No memory to create event subsystem %s\n", name);
2360 	return NULL;
2361 }
2362 
2363 static int
2364 event_define_fields(struct trace_event_call *call)
2365 {
2366 	struct list_head *head;
2367 	int ret = 0;
2368 
2369 	/*
2370 	 * Other events may have the same class. Only update
2371 	 * the fields if they are not already defined.
2372 	 */
2373 	head = trace_get_fields(call);
2374 	if (list_empty(head)) {
2375 		struct trace_event_fields *field = call->class->fields_array;
2376 		unsigned int offset = sizeof(struct trace_entry);
2377 
2378 		for (; field->type; field++) {
2379 			if (field->type == TRACE_FUNCTION_TYPE) {
2380 				field->define_fields(call);
2381 				break;
2382 			}
2383 
2384 			offset = ALIGN(offset, field->align);
2385 			ret = trace_define_field_ext(call, field->type, field->name,
2386 						 offset, field->size,
2387 						 field->is_signed, field->filter_type,
2388 						 field->len);
2389 			if (WARN_ON_ONCE(ret)) {
2390 				pr_err("error code is %d\n", ret);
2391 				break;
2392 			}
2393 
2394 			offset += field->size;
2395 		}
2396 	}
2397 
2398 	return ret;
2399 }
2400 
2401 static int
2402 event_create_dir(struct dentry *parent, struct trace_event_file *file)
2403 {
2404 	struct trace_event_call *call = file->event_call;
2405 	struct eventfs_file *ef_subsystem = NULL;
2406 	struct trace_array *tr = file->tr;
2407 	const char *name;
2408 	int ret;
2409 
2410 	/*
2411 	 * If the trace point header did not define TRACE_SYSTEM
2412 	 * then the system would be called "TRACE_SYSTEM". This should
2413 	 * never happen.
2414 	 */
2415 	if (WARN_ON_ONCE(strcmp(call->class->system, TRACE_SYSTEM) == 0))
2416 		return -ENODEV;
2417 
2418 	ef_subsystem = event_subsystem_dir(tr, call->class->system, file, parent);
2419 	if (!ef_subsystem)
2420 		return -ENOMEM;
2421 
2422 	name = trace_event_name(call);
2423 	file->ef = eventfs_add_dir(name, ef_subsystem);
2424 	if (IS_ERR(file->ef)) {
2425 		pr_warn("Could not create tracefs '%s' directory\n", name);
2426 		return -1;
2427 	}
2428 
2429 	if (call->class->reg && !(call->flags & TRACE_EVENT_FL_IGNORE_ENABLE))
2430 		eventfs_add_file("enable", TRACE_MODE_WRITE, file->ef, file,
2431 				  &ftrace_enable_fops);
2432 
2433 #ifdef CONFIG_PERF_EVENTS
2434 	if (call->event.type && call->class->reg)
2435 		eventfs_add_file("id", TRACE_MODE_READ, file->ef,
2436 				  (void *)(long)call->event.type,
2437 				  &ftrace_event_id_fops);
2438 #endif
2439 
2440 	ret = event_define_fields(call);
2441 	if (ret < 0) {
2442 		pr_warn("Could not initialize trace point events/%s\n", name);
2443 		return ret;
2444 	}
2445 
2446 	/*
2447 	 * Only event directories that can be enabled should have
2448 	 * triggers or filters.
2449 	 */
2450 	if (!(call->flags & TRACE_EVENT_FL_IGNORE_ENABLE)) {
2451 		eventfs_add_file("filter", TRACE_MODE_WRITE, file->ef,
2452 				  file, &ftrace_event_filter_fops);
2453 
2454 		eventfs_add_file("trigger", TRACE_MODE_WRITE, file->ef,
2455 				  file, &event_trigger_fops);
2456 	}
2457 
2458 #ifdef CONFIG_HIST_TRIGGERS
2459 	eventfs_add_file("hist", TRACE_MODE_READ, file->ef, file,
2460 			  &event_hist_fops);
2461 #endif
2462 #ifdef CONFIG_HIST_TRIGGERS_DEBUG
2463 	eventfs_add_file("hist_debug", TRACE_MODE_READ, file->ef, file,
2464 			  &event_hist_debug_fops);
2465 #endif
2466 	eventfs_add_file("format", TRACE_MODE_READ, file->ef, call,
2467 			  &ftrace_event_format_fops);
2468 
2469 #ifdef CONFIG_TRACE_EVENT_INJECT
2470 	if (call->event.type && call->class->reg)
2471 		eventfs_add_file("inject", 0200, file->ef, file,
2472 				  &event_inject_fops);
2473 #endif
2474 
2475 	return 0;
2476 }
2477 
2478 static void remove_event_from_tracers(struct trace_event_call *call)
2479 {
2480 	struct trace_event_file *file;
2481 	struct trace_array *tr;
2482 
2483 	do_for_each_event_file_safe(tr, file) {
2484 		if (file->event_call != call)
2485 			continue;
2486 
2487 		remove_event_file_dir(file);
2488 		/*
2489 		 * The do_for_each_event_file_safe() is
2490 		 * a double loop. After finding the call for this
2491 		 * trace_array, we use break to jump to the next
2492 		 * trace_array.
2493 		 */
2494 		break;
2495 	} while_for_each_event_file();
2496 }
2497 
2498 static void event_remove(struct trace_event_call *call)
2499 {
2500 	struct trace_array *tr;
2501 	struct trace_event_file *file;
2502 
2503 	do_for_each_event_file(tr, file) {
2504 		if (file->event_call != call)
2505 			continue;
2506 
2507 		if (file->flags & EVENT_FILE_FL_WAS_ENABLED)
2508 			tr->clear_trace = true;
2509 
2510 		ftrace_event_enable_disable(file, 0);
2511 		/*
2512 		 * The do_for_each_event_file() is
2513 		 * a double loop. After finding the call for this
2514 		 * trace_array, we use break to jump to the next
2515 		 * trace_array.
2516 		 */
2517 		break;
2518 	} while_for_each_event_file();
2519 
2520 	if (call->event.funcs)
2521 		__unregister_trace_event(&call->event);
2522 	remove_event_from_tracers(call);
2523 	list_del(&call->list);
2524 }
2525 
2526 static int event_init(struct trace_event_call *call)
2527 {
2528 	int ret = 0;
2529 	const char *name;
2530 
2531 	name = trace_event_name(call);
2532 	if (WARN_ON(!name))
2533 		return -EINVAL;
2534 
2535 	if (call->class->raw_init) {
2536 		ret = call->class->raw_init(call);
2537 		if (ret < 0 && ret != -ENOSYS)
2538 			pr_warn("Could not initialize trace events/%s\n", name);
2539 	}
2540 
2541 	return ret;
2542 }
2543 
2544 static int
2545 __register_event(struct trace_event_call *call, struct module *mod)
2546 {
2547 	int ret;
2548 
2549 	ret = event_init(call);
2550 	if (ret < 0)
2551 		return ret;
2552 
2553 	list_add(&call->list, &ftrace_events);
2554 	if (call->flags & TRACE_EVENT_FL_DYNAMIC)
2555 		atomic_set(&call->refcnt, 0);
2556 	else
2557 		call->module = mod;
2558 
2559 	return 0;
2560 }
2561 
2562 static char *eval_replace(char *ptr, struct trace_eval_map *map, int len)
2563 {
2564 	int rlen;
2565 	int elen;
2566 
2567 	/* Find the length of the eval value as a string */
2568 	elen = snprintf(ptr, 0, "%ld", map->eval_value);
2569 	/* Make sure there's enough room to replace the string with the value */
2570 	if (len < elen)
2571 		return NULL;
2572 
2573 	snprintf(ptr, elen + 1, "%ld", map->eval_value);
2574 
2575 	/* Get the rest of the string of ptr */
2576 	rlen = strlen(ptr + len);
2577 	memmove(ptr + elen, ptr + len, rlen);
2578 	/* Make sure we end the new string */
2579 	ptr[elen + rlen] = 0;
2580 
2581 	return ptr + elen;
2582 }
2583 
2584 static void update_event_printk(struct trace_event_call *call,
2585 				struct trace_eval_map *map)
2586 {
2587 	char *ptr;
2588 	int quote = 0;
2589 	int len = strlen(map->eval_string);
2590 
2591 	for (ptr = call->print_fmt; *ptr; ptr++) {
2592 		if (*ptr == '\\') {
2593 			ptr++;
2594 			/* paranoid */
2595 			if (!*ptr)
2596 				break;
2597 			continue;
2598 		}
2599 		if (*ptr == '"') {
2600 			quote ^= 1;
2601 			continue;
2602 		}
2603 		if (quote)
2604 			continue;
2605 		if (isdigit(*ptr)) {
2606 			/* skip numbers */
2607 			do {
2608 				ptr++;
2609 				/* Check for alpha chars like ULL */
2610 			} while (isalnum(*ptr));
2611 			if (!*ptr)
2612 				break;
2613 			/*
2614 			 * A number must have some kind of delimiter after
2615 			 * it, and we can ignore that too.
2616 			 */
2617 			continue;
2618 		}
2619 		if (isalpha(*ptr) || *ptr == '_') {
2620 			if (strncmp(map->eval_string, ptr, len) == 0 &&
2621 			    !isalnum(ptr[len]) && ptr[len] != '_') {
2622 				ptr = eval_replace(ptr, map, len);
2623 				/* enum/sizeof string smaller than value */
2624 				if (WARN_ON_ONCE(!ptr))
2625 					return;
2626 				/*
2627 				 * No need to decrement here, as eval_replace()
2628 				 * returns the pointer to the character passed
2629 				 * the eval, and two evals can not be placed
2630 				 * back to back without something in between.
2631 				 * We can skip that something in between.
2632 				 */
2633 				continue;
2634 			}
2635 		skip_more:
2636 			do {
2637 				ptr++;
2638 			} while (isalnum(*ptr) || *ptr == '_');
2639 			if (!*ptr)
2640 				break;
2641 			/*
2642 			 * If what comes after this variable is a '.' or
2643 			 * '->' then we can continue to ignore that string.
2644 			 */
2645 			if (*ptr == '.' || (ptr[0] == '-' && ptr[1] == '>')) {
2646 				ptr += *ptr == '.' ? 1 : 2;
2647 				if (!*ptr)
2648 					break;
2649 				goto skip_more;
2650 			}
2651 			/*
2652 			 * Once again, we can skip the delimiter that came
2653 			 * after the string.
2654 			 */
2655 			continue;
2656 		}
2657 	}
2658 }
2659 
2660 static void add_str_to_module(struct module *module, char *str)
2661 {
2662 	struct module_string *modstr;
2663 
2664 	modstr = kmalloc(sizeof(*modstr), GFP_KERNEL);
2665 
2666 	/*
2667 	 * If we failed to allocate memory here, then we'll just
2668 	 * let the str memory leak when the module is removed.
2669 	 * If this fails to allocate, there's worse problems than
2670 	 * a leaked string on module removal.
2671 	 */
2672 	if (WARN_ON_ONCE(!modstr))
2673 		return;
2674 
2675 	modstr->module = module;
2676 	modstr->str = str;
2677 
2678 	list_add(&modstr->next, &module_strings);
2679 }
2680 
2681 static void update_event_fields(struct trace_event_call *call,
2682 				struct trace_eval_map *map)
2683 {
2684 	struct ftrace_event_field *field;
2685 	struct list_head *head;
2686 	char *ptr;
2687 	char *str;
2688 	int len = strlen(map->eval_string);
2689 
2690 	/* Dynamic events should never have field maps */
2691 	if (WARN_ON_ONCE(call->flags & TRACE_EVENT_FL_DYNAMIC))
2692 		return;
2693 
2694 	head = trace_get_fields(call);
2695 	list_for_each_entry(field, head, link) {
2696 		ptr = strchr(field->type, '[');
2697 		if (!ptr)
2698 			continue;
2699 		ptr++;
2700 
2701 		if (!isalpha(*ptr) && *ptr != '_')
2702 			continue;
2703 
2704 		if (strncmp(map->eval_string, ptr, len) != 0)
2705 			continue;
2706 
2707 		str = kstrdup(field->type, GFP_KERNEL);
2708 		if (WARN_ON_ONCE(!str))
2709 			return;
2710 		ptr = str + (ptr - field->type);
2711 		ptr = eval_replace(ptr, map, len);
2712 		/* enum/sizeof string smaller than value */
2713 		if (WARN_ON_ONCE(!ptr)) {
2714 			kfree(str);
2715 			continue;
2716 		}
2717 
2718 		/*
2719 		 * If the event is part of a module, then we need to free the string
2720 		 * when the module is removed. Otherwise, it will stay allocated
2721 		 * until a reboot.
2722 		 */
2723 		if (call->module)
2724 			add_str_to_module(call->module, str);
2725 
2726 		field->type = str;
2727 	}
2728 }
2729 
2730 void trace_event_eval_update(struct trace_eval_map **map, int len)
2731 {
2732 	struct trace_event_call *call, *p;
2733 	const char *last_system = NULL;
2734 	bool first = false;
2735 	int last_i;
2736 	int i;
2737 
2738 	down_write(&trace_event_sem);
2739 	list_for_each_entry_safe(call, p, &ftrace_events, list) {
2740 		/* events are usually grouped together with systems */
2741 		if (!last_system || call->class->system != last_system) {
2742 			first = true;
2743 			last_i = 0;
2744 			last_system = call->class->system;
2745 		}
2746 
2747 		/*
2748 		 * Since calls are grouped by systems, the likelihood that the
2749 		 * next call in the iteration belongs to the same system as the
2750 		 * previous call is high. As an optimization, we skip searching
2751 		 * for a map[] that matches the call's system if the last call
2752 		 * was from the same system. That's what last_i is for. If the
2753 		 * call has the same system as the previous call, then last_i
2754 		 * will be the index of the first map[] that has a matching
2755 		 * system.
2756 		 */
2757 		for (i = last_i; i < len; i++) {
2758 			if (call->class->system == map[i]->system) {
2759 				/* Save the first system if need be */
2760 				if (first) {
2761 					last_i = i;
2762 					first = false;
2763 				}
2764 				update_event_printk(call, map[i]);
2765 				update_event_fields(call, map[i]);
2766 			}
2767 		}
2768 	}
2769 	up_write(&trace_event_sem);
2770 }
2771 
2772 static struct trace_event_file *
2773 trace_create_new_event(struct trace_event_call *call,
2774 		       struct trace_array *tr)
2775 {
2776 	struct trace_pid_list *no_pid_list;
2777 	struct trace_pid_list *pid_list;
2778 	struct trace_event_file *file;
2779 	unsigned int first;
2780 
2781 	file = kmem_cache_alloc(file_cachep, GFP_TRACE);
2782 	if (!file)
2783 		return NULL;
2784 
2785 	pid_list = rcu_dereference_protected(tr->filtered_pids,
2786 					     lockdep_is_held(&event_mutex));
2787 	no_pid_list = rcu_dereference_protected(tr->filtered_no_pids,
2788 					     lockdep_is_held(&event_mutex));
2789 
2790 	if (!trace_pid_list_first(pid_list, &first) ||
2791 	    !trace_pid_list_first(no_pid_list, &first))
2792 		file->flags |= EVENT_FILE_FL_PID_FILTER;
2793 
2794 	file->event_call = call;
2795 	file->tr = tr;
2796 	atomic_set(&file->sm_ref, 0);
2797 	atomic_set(&file->tm_ref, 0);
2798 	INIT_LIST_HEAD(&file->triggers);
2799 	list_add(&file->list, &tr->events);
2800 
2801 	return file;
2802 }
2803 
2804 #define MAX_BOOT_TRIGGERS 32
2805 
2806 static struct boot_triggers {
2807 	const char		*event;
2808 	char			*trigger;
2809 } bootup_triggers[MAX_BOOT_TRIGGERS];
2810 
2811 static char bootup_trigger_buf[COMMAND_LINE_SIZE];
2812 static int nr_boot_triggers;
2813 
2814 static __init int setup_trace_triggers(char *str)
2815 {
2816 	char *trigger;
2817 	char *buf;
2818 	int i;
2819 
2820 	strscpy(bootup_trigger_buf, str, COMMAND_LINE_SIZE);
2821 	ring_buffer_expanded = true;
2822 	disable_tracing_selftest("running event triggers");
2823 
2824 	buf = bootup_trigger_buf;
2825 	for (i = 0; i < MAX_BOOT_TRIGGERS; i++) {
2826 		trigger = strsep(&buf, ",");
2827 		if (!trigger)
2828 			break;
2829 		bootup_triggers[i].event = strsep(&trigger, ".");
2830 		bootup_triggers[i].trigger = trigger;
2831 		if (!bootup_triggers[i].trigger)
2832 			break;
2833 	}
2834 
2835 	nr_boot_triggers = i;
2836 	return 1;
2837 }
2838 __setup("trace_trigger=", setup_trace_triggers);
2839 
2840 /* Add an event to a trace directory */
2841 static int
2842 __trace_add_new_event(struct trace_event_call *call, struct trace_array *tr)
2843 {
2844 	struct trace_event_file *file;
2845 
2846 	file = trace_create_new_event(call, tr);
2847 	if (!file)
2848 		return -ENOMEM;
2849 
2850 	if (eventdir_initialized)
2851 		return event_create_dir(tr->event_dir, file);
2852 	else
2853 		return event_define_fields(call);
2854 }
2855 
2856 static void trace_early_triggers(struct trace_event_file *file, const char *name)
2857 {
2858 	int ret;
2859 	int i;
2860 
2861 	for (i = 0; i < nr_boot_triggers; i++) {
2862 		if (strcmp(name, bootup_triggers[i].event))
2863 			continue;
2864 		mutex_lock(&event_mutex);
2865 		ret = trigger_process_regex(file, bootup_triggers[i].trigger);
2866 		mutex_unlock(&event_mutex);
2867 		if (ret)
2868 			pr_err("Failed to register trigger '%s' on event %s\n",
2869 			       bootup_triggers[i].trigger,
2870 			       bootup_triggers[i].event);
2871 	}
2872 }
2873 
2874 /*
2875  * Just create a descriptor for early init. A descriptor is required
2876  * for enabling events at boot. We want to enable events before
2877  * the filesystem is initialized.
2878  */
2879 static int
2880 __trace_early_add_new_event(struct trace_event_call *call,
2881 			    struct trace_array *tr)
2882 {
2883 	struct trace_event_file *file;
2884 	int ret;
2885 
2886 	file = trace_create_new_event(call, tr);
2887 	if (!file)
2888 		return -ENOMEM;
2889 
2890 	ret = event_define_fields(call);
2891 	if (ret)
2892 		return ret;
2893 
2894 	trace_early_triggers(file, trace_event_name(call));
2895 
2896 	return 0;
2897 }
2898 
2899 struct ftrace_module_file_ops;
2900 static void __add_event_to_tracers(struct trace_event_call *call);
2901 
2902 /* Add an additional event_call dynamically */
2903 int trace_add_event_call(struct trace_event_call *call)
2904 {
2905 	int ret;
2906 	lockdep_assert_held(&event_mutex);
2907 
2908 	mutex_lock(&trace_types_lock);
2909 
2910 	ret = __register_event(call, NULL);
2911 	if (ret >= 0)
2912 		__add_event_to_tracers(call);
2913 
2914 	mutex_unlock(&trace_types_lock);
2915 	return ret;
2916 }
2917 EXPORT_SYMBOL_GPL(trace_add_event_call);
2918 
2919 /*
2920  * Must be called under locking of trace_types_lock, event_mutex and
2921  * trace_event_sem.
2922  */
2923 static void __trace_remove_event_call(struct trace_event_call *call)
2924 {
2925 	event_remove(call);
2926 	trace_destroy_fields(call);
2927 	free_event_filter(call->filter);
2928 	call->filter = NULL;
2929 }
2930 
2931 static int probe_remove_event_call(struct trace_event_call *call)
2932 {
2933 	struct trace_array *tr;
2934 	struct trace_event_file *file;
2935 
2936 #ifdef CONFIG_PERF_EVENTS
2937 	if (call->perf_refcount)
2938 		return -EBUSY;
2939 #endif
2940 	do_for_each_event_file(tr, file) {
2941 		if (file->event_call != call)
2942 			continue;
2943 		/*
2944 		 * We can't rely on ftrace_event_enable_disable(enable => 0)
2945 		 * we are going to do, EVENT_FILE_FL_SOFT_MODE can suppress
2946 		 * TRACE_REG_UNREGISTER.
2947 		 */
2948 		if (file->flags & EVENT_FILE_FL_ENABLED)
2949 			goto busy;
2950 
2951 		if (file->flags & EVENT_FILE_FL_WAS_ENABLED)
2952 			tr->clear_trace = true;
2953 		/*
2954 		 * The do_for_each_event_file_safe() is
2955 		 * a double loop. After finding the call for this
2956 		 * trace_array, we use break to jump to the next
2957 		 * trace_array.
2958 		 */
2959 		break;
2960 	} while_for_each_event_file();
2961 
2962 	__trace_remove_event_call(call);
2963 
2964 	return 0;
2965  busy:
2966 	/* No need to clear the trace now */
2967 	list_for_each_entry(tr, &ftrace_trace_arrays, list) {
2968 		tr->clear_trace = false;
2969 	}
2970 	return -EBUSY;
2971 }
2972 
2973 /* Remove an event_call */
2974 int trace_remove_event_call(struct trace_event_call *call)
2975 {
2976 	int ret;
2977 
2978 	lockdep_assert_held(&event_mutex);
2979 
2980 	mutex_lock(&trace_types_lock);
2981 	down_write(&trace_event_sem);
2982 	ret = probe_remove_event_call(call);
2983 	up_write(&trace_event_sem);
2984 	mutex_unlock(&trace_types_lock);
2985 
2986 	return ret;
2987 }
2988 EXPORT_SYMBOL_GPL(trace_remove_event_call);
2989 
2990 #define for_each_event(event, start, end)			\
2991 	for (event = start;					\
2992 	     (unsigned long)event < (unsigned long)end;		\
2993 	     event++)
2994 
2995 #ifdef CONFIG_MODULES
2996 
2997 static void trace_module_add_events(struct module *mod)
2998 {
2999 	struct trace_event_call **call, **start, **end;
3000 
3001 	if (!mod->num_trace_events)
3002 		return;
3003 
3004 	/* Don't add infrastructure for mods without tracepoints */
3005 	if (trace_module_has_bad_taint(mod)) {
3006 		pr_err("%s: module has bad taint, not creating trace events\n",
3007 		       mod->name);
3008 		return;
3009 	}
3010 
3011 	start = mod->trace_events;
3012 	end = mod->trace_events + mod->num_trace_events;
3013 
3014 	for_each_event(call, start, end) {
3015 		__register_event(*call, mod);
3016 		__add_event_to_tracers(*call);
3017 	}
3018 }
3019 
3020 static void trace_module_remove_events(struct module *mod)
3021 {
3022 	struct trace_event_call *call, *p;
3023 	struct module_string *modstr, *m;
3024 
3025 	down_write(&trace_event_sem);
3026 	list_for_each_entry_safe(call, p, &ftrace_events, list) {
3027 		if ((call->flags & TRACE_EVENT_FL_DYNAMIC) || !call->module)
3028 			continue;
3029 		if (call->module == mod)
3030 			__trace_remove_event_call(call);
3031 	}
3032 	/* Check for any strings allocade for this module */
3033 	list_for_each_entry_safe(modstr, m, &module_strings, next) {
3034 		if (modstr->module != mod)
3035 			continue;
3036 		list_del(&modstr->next);
3037 		kfree(modstr->str);
3038 		kfree(modstr);
3039 	}
3040 	up_write(&trace_event_sem);
3041 
3042 	/*
3043 	 * It is safest to reset the ring buffer if the module being unloaded
3044 	 * registered any events that were used. The only worry is if
3045 	 * a new module gets loaded, and takes on the same id as the events
3046 	 * of this module. When printing out the buffer, traced events left
3047 	 * over from this module may be passed to the new module events and
3048 	 * unexpected results may occur.
3049 	 */
3050 	tracing_reset_all_online_cpus_unlocked();
3051 }
3052 
3053 static int trace_module_notify(struct notifier_block *self,
3054 			       unsigned long val, void *data)
3055 {
3056 	struct module *mod = data;
3057 
3058 	mutex_lock(&event_mutex);
3059 	mutex_lock(&trace_types_lock);
3060 	switch (val) {
3061 	case MODULE_STATE_COMING:
3062 		trace_module_add_events(mod);
3063 		break;
3064 	case MODULE_STATE_GOING:
3065 		trace_module_remove_events(mod);
3066 		break;
3067 	}
3068 	mutex_unlock(&trace_types_lock);
3069 	mutex_unlock(&event_mutex);
3070 
3071 	return NOTIFY_OK;
3072 }
3073 
3074 static struct notifier_block trace_module_nb = {
3075 	.notifier_call = trace_module_notify,
3076 	.priority = 1, /* higher than trace.c module notify */
3077 };
3078 #endif /* CONFIG_MODULES */
3079 
3080 /* Create a new event directory structure for a trace directory. */
3081 static void
3082 __trace_add_event_dirs(struct trace_array *tr)
3083 {
3084 	struct trace_event_call *call;
3085 	int ret;
3086 
3087 	list_for_each_entry(call, &ftrace_events, list) {
3088 		ret = __trace_add_new_event(call, tr);
3089 		if (ret < 0)
3090 			pr_warn("Could not create directory for event %s\n",
3091 				trace_event_name(call));
3092 	}
3093 }
3094 
3095 /* Returns any file that matches the system and event */
3096 struct trace_event_file *
3097 __find_event_file(struct trace_array *tr, const char *system, const char *event)
3098 {
3099 	struct trace_event_file *file;
3100 	struct trace_event_call *call;
3101 	const char *name;
3102 
3103 	list_for_each_entry(file, &tr->events, list) {
3104 
3105 		call = file->event_call;
3106 		name = trace_event_name(call);
3107 
3108 		if (!name || !call->class)
3109 			continue;
3110 
3111 		if (strcmp(event, name) == 0 &&
3112 		    strcmp(system, call->class->system) == 0)
3113 			return file;
3114 	}
3115 	return NULL;
3116 }
3117 
3118 /* Returns valid trace event files that match system and event */
3119 struct trace_event_file *
3120 find_event_file(struct trace_array *tr, const char *system, const char *event)
3121 {
3122 	struct trace_event_file *file;
3123 
3124 	file = __find_event_file(tr, system, event);
3125 	if (!file || !file->event_call->class->reg ||
3126 	    file->event_call->flags & TRACE_EVENT_FL_IGNORE_ENABLE)
3127 		return NULL;
3128 
3129 	return file;
3130 }
3131 
3132 /**
3133  * trace_get_event_file - Find and return a trace event file
3134  * @instance: The name of the trace instance containing the event
3135  * @system: The name of the system containing the event
3136  * @event: The name of the event
3137  *
3138  * Return a trace event file given the trace instance name, trace
3139  * system, and trace event name.  If the instance name is NULL, it
3140  * refers to the top-level trace array.
3141  *
3142  * This function will look it up and return it if found, after calling
3143  * trace_array_get() to prevent the instance from going away, and
3144  * increment the event's module refcount to prevent it from being
3145  * removed.
3146  *
3147  * To release the file, call trace_put_event_file(), which will call
3148  * trace_array_put() and decrement the event's module refcount.
3149  *
3150  * Return: The trace event on success, ERR_PTR otherwise.
3151  */
3152 struct trace_event_file *trace_get_event_file(const char *instance,
3153 					      const char *system,
3154 					      const char *event)
3155 {
3156 	struct trace_array *tr = top_trace_array();
3157 	struct trace_event_file *file = NULL;
3158 	int ret = -EINVAL;
3159 
3160 	if (instance) {
3161 		tr = trace_array_find_get(instance);
3162 		if (!tr)
3163 			return ERR_PTR(-ENOENT);
3164 	} else {
3165 		ret = trace_array_get(tr);
3166 		if (ret)
3167 			return ERR_PTR(ret);
3168 	}
3169 
3170 	mutex_lock(&event_mutex);
3171 
3172 	file = find_event_file(tr, system, event);
3173 	if (!file) {
3174 		trace_array_put(tr);
3175 		ret = -EINVAL;
3176 		goto out;
3177 	}
3178 
3179 	/* Don't let event modules unload while in use */
3180 	ret = trace_event_try_get_ref(file->event_call);
3181 	if (!ret) {
3182 		trace_array_put(tr);
3183 		ret = -EBUSY;
3184 		goto out;
3185 	}
3186 
3187 	ret = 0;
3188  out:
3189 	mutex_unlock(&event_mutex);
3190 
3191 	if (ret)
3192 		file = ERR_PTR(ret);
3193 
3194 	return file;
3195 }
3196 EXPORT_SYMBOL_GPL(trace_get_event_file);
3197 
3198 /**
3199  * trace_put_event_file - Release a file from trace_get_event_file()
3200  * @file: The trace event file
3201  *
3202  * If a file was retrieved using trace_get_event_file(), this should
3203  * be called when it's no longer needed.  It will cancel the previous
3204  * trace_array_get() called by that function, and decrement the
3205  * event's module refcount.
3206  */
3207 void trace_put_event_file(struct trace_event_file *file)
3208 {
3209 	mutex_lock(&event_mutex);
3210 	trace_event_put_ref(file->event_call);
3211 	mutex_unlock(&event_mutex);
3212 
3213 	trace_array_put(file->tr);
3214 }
3215 EXPORT_SYMBOL_GPL(trace_put_event_file);
3216 
3217 #ifdef CONFIG_DYNAMIC_FTRACE
3218 
3219 /* Avoid typos */
3220 #define ENABLE_EVENT_STR	"enable_event"
3221 #define DISABLE_EVENT_STR	"disable_event"
3222 
3223 struct event_probe_data {
3224 	struct trace_event_file	*file;
3225 	unsigned long			count;
3226 	int				ref;
3227 	bool				enable;
3228 };
3229 
3230 static void update_event_probe(struct event_probe_data *data)
3231 {
3232 	if (data->enable)
3233 		clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &data->file->flags);
3234 	else
3235 		set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &data->file->flags);
3236 }
3237 
3238 static void
3239 event_enable_probe(unsigned long ip, unsigned long parent_ip,
3240 		   struct trace_array *tr, struct ftrace_probe_ops *ops,
3241 		   void *data)
3242 {
3243 	struct ftrace_func_mapper *mapper = data;
3244 	struct event_probe_data *edata;
3245 	void **pdata;
3246 
3247 	pdata = ftrace_func_mapper_find_ip(mapper, ip);
3248 	if (!pdata || !*pdata)
3249 		return;
3250 
3251 	edata = *pdata;
3252 	update_event_probe(edata);
3253 }
3254 
3255 static void
3256 event_enable_count_probe(unsigned long ip, unsigned long parent_ip,
3257 			 struct trace_array *tr, struct ftrace_probe_ops *ops,
3258 			 void *data)
3259 {
3260 	struct ftrace_func_mapper *mapper = data;
3261 	struct event_probe_data *edata;
3262 	void **pdata;
3263 
3264 	pdata = ftrace_func_mapper_find_ip(mapper, ip);
3265 	if (!pdata || !*pdata)
3266 		return;
3267 
3268 	edata = *pdata;
3269 
3270 	if (!edata->count)
3271 		return;
3272 
3273 	/* Skip if the event is in a state we want to switch to */
3274 	if (edata->enable == !(edata->file->flags & EVENT_FILE_FL_SOFT_DISABLED))
3275 		return;
3276 
3277 	if (edata->count != -1)
3278 		(edata->count)--;
3279 
3280 	update_event_probe(edata);
3281 }
3282 
3283 static int
3284 event_enable_print(struct seq_file *m, unsigned long ip,
3285 		   struct ftrace_probe_ops *ops, void *data)
3286 {
3287 	struct ftrace_func_mapper *mapper = data;
3288 	struct event_probe_data *edata;
3289 	void **pdata;
3290 
3291 	pdata = ftrace_func_mapper_find_ip(mapper, ip);
3292 
3293 	if (WARN_ON_ONCE(!pdata || !*pdata))
3294 		return 0;
3295 
3296 	edata = *pdata;
3297 
3298 	seq_printf(m, "%ps:", (void *)ip);
3299 
3300 	seq_printf(m, "%s:%s:%s",
3301 		   edata->enable ? ENABLE_EVENT_STR : DISABLE_EVENT_STR,
3302 		   edata->file->event_call->class->system,
3303 		   trace_event_name(edata->file->event_call));
3304 
3305 	if (edata->count == -1)
3306 		seq_puts(m, ":unlimited\n");
3307 	else
3308 		seq_printf(m, ":count=%ld\n", edata->count);
3309 
3310 	return 0;
3311 }
3312 
3313 static int
3314 event_enable_init(struct ftrace_probe_ops *ops, struct trace_array *tr,
3315 		  unsigned long ip, void *init_data, void **data)
3316 {
3317 	struct ftrace_func_mapper *mapper = *data;
3318 	struct event_probe_data *edata = init_data;
3319 	int ret;
3320 
3321 	if (!mapper) {
3322 		mapper = allocate_ftrace_func_mapper();
3323 		if (!mapper)
3324 			return -ENODEV;
3325 		*data = mapper;
3326 	}
3327 
3328 	ret = ftrace_func_mapper_add_ip(mapper, ip, edata);
3329 	if (ret < 0)
3330 		return ret;
3331 
3332 	edata->ref++;
3333 
3334 	return 0;
3335 }
3336 
3337 static int free_probe_data(void *data)
3338 {
3339 	struct event_probe_data *edata = data;
3340 
3341 	edata->ref--;
3342 	if (!edata->ref) {
3343 		/* Remove the SOFT_MODE flag */
3344 		__ftrace_event_enable_disable(edata->file, 0, 1);
3345 		trace_event_put_ref(edata->file->event_call);
3346 		kfree(edata);
3347 	}
3348 	return 0;
3349 }
3350 
3351 static void
3352 event_enable_free(struct ftrace_probe_ops *ops, struct trace_array *tr,
3353 		  unsigned long ip, void *data)
3354 {
3355 	struct ftrace_func_mapper *mapper = data;
3356 	struct event_probe_data *edata;
3357 
3358 	if (!ip) {
3359 		if (!mapper)
3360 			return;
3361 		free_ftrace_func_mapper(mapper, free_probe_data);
3362 		return;
3363 	}
3364 
3365 	edata = ftrace_func_mapper_remove_ip(mapper, ip);
3366 
3367 	if (WARN_ON_ONCE(!edata))
3368 		return;
3369 
3370 	if (WARN_ON_ONCE(edata->ref <= 0))
3371 		return;
3372 
3373 	free_probe_data(edata);
3374 }
3375 
3376 static struct ftrace_probe_ops event_enable_probe_ops = {
3377 	.func			= event_enable_probe,
3378 	.print			= event_enable_print,
3379 	.init			= event_enable_init,
3380 	.free			= event_enable_free,
3381 };
3382 
3383 static struct ftrace_probe_ops event_enable_count_probe_ops = {
3384 	.func			= event_enable_count_probe,
3385 	.print			= event_enable_print,
3386 	.init			= event_enable_init,
3387 	.free			= event_enable_free,
3388 };
3389 
3390 static struct ftrace_probe_ops event_disable_probe_ops = {
3391 	.func			= event_enable_probe,
3392 	.print			= event_enable_print,
3393 	.init			= event_enable_init,
3394 	.free			= event_enable_free,
3395 };
3396 
3397 static struct ftrace_probe_ops event_disable_count_probe_ops = {
3398 	.func			= event_enable_count_probe,
3399 	.print			= event_enable_print,
3400 	.init			= event_enable_init,
3401 	.free			= event_enable_free,
3402 };
3403 
3404 static int
3405 event_enable_func(struct trace_array *tr, struct ftrace_hash *hash,
3406 		  char *glob, char *cmd, char *param, int enabled)
3407 {
3408 	struct trace_event_file *file;
3409 	struct ftrace_probe_ops *ops;
3410 	struct event_probe_data *data;
3411 	const char *system;
3412 	const char *event;
3413 	char *number;
3414 	bool enable;
3415 	int ret;
3416 
3417 	if (!tr)
3418 		return -ENODEV;
3419 
3420 	/* hash funcs only work with set_ftrace_filter */
3421 	if (!enabled || !param)
3422 		return -EINVAL;
3423 
3424 	system = strsep(&param, ":");
3425 	if (!param)
3426 		return -EINVAL;
3427 
3428 	event = strsep(&param, ":");
3429 
3430 	mutex_lock(&event_mutex);
3431 
3432 	ret = -EINVAL;
3433 	file = find_event_file(tr, system, event);
3434 	if (!file)
3435 		goto out;
3436 
3437 	enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
3438 
3439 	if (enable)
3440 		ops = param ? &event_enable_count_probe_ops : &event_enable_probe_ops;
3441 	else
3442 		ops = param ? &event_disable_count_probe_ops : &event_disable_probe_ops;
3443 
3444 	if (glob[0] == '!') {
3445 		ret = unregister_ftrace_function_probe_func(glob+1, tr, ops);
3446 		goto out;
3447 	}
3448 
3449 	ret = -ENOMEM;
3450 
3451 	data = kzalloc(sizeof(*data), GFP_KERNEL);
3452 	if (!data)
3453 		goto out;
3454 
3455 	data->enable = enable;
3456 	data->count = -1;
3457 	data->file = file;
3458 
3459 	if (!param)
3460 		goto out_reg;
3461 
3462 	number = strsep(&param, ":");
3463 
3464 	ret = -EINVAL;
3465 	if (!strlen(number))
3466 		goto out_free;
3467 
3468 	/*
3469 	 * We use the callback data field (which is a pointer)
3470 	 * as our counter.
3471 	 */
3472 	ret = kstrtoul(number, 0, &data->count);
3473 	if (ret)
3474 		goto out_free;
3475 
3476  out_reg:
3477 	/* Don't let event modules unload while probe registered */
3478 	ret = trace_event_try_get_ref(file->event_call);
3479 	if (!ret) {
3480 		ret = -EBUSY;
3481 		goto out_free;
3482 	}
3483 
3484 	ret = __ftrace_event_enable_disable(file, 1, 1);
3485 	if (ret < 0)
3486 		goto out_put;
3487 
3488 	ret = register_ftrace_function_probe(glob, tr, ops, data);
3489 	/*
3490 	 * The above returns on success the # of functions enabled,
3491 	 * but if it didn't find any functions it returns zero.
3492 	 * Consider no functions a failure too.
3493 	 */
3494 	if (!ret) {
3495 		ret = -ENOENT;
3496 		goto out_disable;
3497 	} else if (ret < 0)
3498 		goto out_disable;
3499 	/* Just return zero, not the number of enabled functions */
3500 	ret = 0;
3501  out:
3502 	mutex_unlock(&event_mutex);
3503 	return ret;
3504 
3505  out_disable:
3506 	__ftrace_event_enable_disable(file, 0, 1);
3507  out_put:
3508 	trace_event_put_ref(file->event_call);
3509  out_free:
3510 	kfree(data);
3511 	goto out;
3512 }
3513 
3514 static struct ftrace_func_command event_enable_cmd = {
3515 	.name			= ENABLE_EVENT_STR,
3516 	.func			= event_enable_func,
3517 };
3518 
3519 static struct ftrace_func_command event_disable_cmd = {
3520 	.name			= DISABLE_EVENT_STR,
3521 	.func			= event_enable_func,
3522 };
3523 
3524 static __init int register_event_cmds(void)
3525 {
3526 	int ret;
3527 
3528 	ret = register_ftrace_command(&event_enable_cmd);
3529 	if (WARN_ON(ret < 0))
3530 		return ret;
3531 	ret = register_ftrace_command(&event_disable_cmd);
3532 	if (WARN_ON(ret < 0))
3533 		unregister_ftrace_command(&event_enable_cmd);
3534 	return ret;
3535 }
3536 #else
3537 static inline int register_event_cmds(void) { return 0; }
3538 #endif /* CONFIG_DYNAMIC_FTRACE */
3539 
3540 /*
3541  * The top level array and trace arrays created by boot-time tracing
3542  * have already had its trace_event_file descriptors created in order
3543  * to allow for early events to be recorded.
3544  * This function is called after the tracefs has been initialized,
3545  * and we now have to create the files associated to the events.
3546  */
3547 static void __trace_early_add_event_dirs(struct trace_array *tr)
3548 {
3549 	struct trace_event_file *file;
3550 	int ret;
3551 
3552 
3553 	list_for_each_entry(file, &tr->events, list) {
3554 		ret = event_create_dir(tr->event_dir, file);
3555 		if (ret < 0)
3556 			pr_warn("Could not create directory for event %s\n",
3557 				trace_event_name(file->event_call));
3558 	}
3559 }
3560 
3561 /*
3562  * For early boot up, the top trace array and the trace arrays created
3563  * by boot-time tracing require to have a list of events that can be
3564  * enabled. This must be done before the filesystem is set up in order
3565  * to allow events to be traced early.
3566  */
3567 void __trace_early_add_events(struct trace_array *tr)
3568 {
3569 	struct trace_event_call *call;
3570 	int ret;
3571 
3572 	list_for_each_entry(call, &ftrace_events, list) {
3573 		/* Early boot up should not have any modules loaded */
3574 		if (!(call->flags & TRACE_EVENT_FL_DYNAMIC) &&
3575 		    WARN_ON_ONCE(call->module))
3576 			continue;
3577 
3578 		ret = __trace_early_add_new_event(call, tr);
3579 		if (ret < 0)
3580 			pr_warn("Could not create early event %s\n",
3581 				trace_event_name(call));
3582 	}
3583 }
3584 
3585 /* Remove the event directory structure for a trace directory. */
3586 static void
3587 __trace_remove_event_dirs(struct trace_array *tr)
3588 {
3589 	struct trace_event_file *file, *next;
3590 
3591 	list_for_each_entry_safe(file, next, &tr->events, list)
3592 		remove_event_file_dir(file);
3593 }
3594 
3595 static void __add_event_to_tracers(struct trace_event_call *call)
3596 {
3597 	struct trace_array *tr;
3598 
3599 	list_for_each_entry(tr, &ftrace_trace_arrays, list)
3600 		__trace_add_new_event(call, tr);
3601 }
3602 
3603 extern struct trace_event_call *__start_ftrace_events[];
3604 extern struct trace_event_call *__stop_ftrace_events[];
3605 
3606 static char bootup_event_buf[COMMAND_LINE_SIZE] __initdata;
3607 
3608 static __init int setup_trace_event(char *str)
3609 {
3610 	strscpy(bootup_event_buf, str, COMMAND_LINE_SIZE);
3611 	ring_buffer_expanded = true;
3612 	disable_tracing_selftest("running event tracing");
3613 
3614 	return 1;
3615 }
3616 __setup("trace_event=", setup_trace_event);
3617 
3618 /* Expects to have event_mutex held when called */
3619 static int
3620 create_event_toplevel_files(struct dentry *parent, struct trace_array *tr)
3621 {
3622 	struct dentry *d_events;
3623 	struct dentry *entry;
3624 	int error = 0;
3625 
3626 	entry = trace_create_file("set_event", TRACE_MODE_WRITE, parent,
3627 				  tr, &ftrace_set_event_fops);
3628 	if (!entry)
3629 		return -ENOMEM;
3630 
3631 	d_events = eventfs_create_events_dir("events", parent);
3632 	if (IS_ERR(d_events)) {
3633 		pr_warn("Could not create tracefs 'events' directory\n");
3634 		return -ENOMEM;
3635 	}
3636 
3637 	error = eventfs_add_events_file("enable", TRACE_MODE_WRITE, d_events,
3638 				  tr, &ftrace_tr_enable_fops);
3639 	if (error)
3640 		return -ENOMEM;
3641 
3642 	/* There are not as crucial, just warn if they are not created */
3643 
3644 	trace_create_file("set_event_pid", TRACE_MODE_WRITE, parent,
3645 			  tr, &ftrace_set_event_pid_fops);
3646 
3647 	trace_create_file("set_event_notrace_pid",
3648 			  TRACE_MODE_WRITE, parent, tr,
3649 			  &ftrace_set_event_notrace_pid_fops);
3650 
3651 	/* ring buffer internal formats */
3652 	eventfs_add_events_file("header_page", TRACE_MODE_READ, d_events,
3653 				  ring_buffer_print_page_header,
3654 				  &ftrace_show_header_fops);
3655 
3656 	eventfs_add_events_file("header_event", TRACE_MODE_READ, d_events,
3657 				  ring_buffer_print_entry_header,
3658 				  &ftrace_show_header_fops);
3659 
3660 	tr->event_dir = d_events;
3661 
3662 	return 0;
3663 }
3664 
3665 /**
3666  * event_trace_add_tracer - add a instance of a trace_array to events
3667  * @parent: The parent dentry to place the files/directories for events in
3668  * @tr: The trace array associated with these events
3669  *
3670  * When a new instance is created, it needs to set up its events
3671  * directory, as well as other files associated with events. It also
3672  * creates the event hierarchy in the @parent/events directory.
3673  *
3674  * Returns 0 on success.
3675  *
3676  * Must be called with event_mutex held.
3677  */
3678 int event_trace_add_tracer(struct dentry *parent, struct trace_array *tr)
3679 {
3680 	int ret;
3681 
3682 	lockdep_assert_held(&event_mutex);
3683 
3684 	ret = create_event_toplevel_files(parent, tr);
3685 	if (ret)
3686 		goto out;
3687 
3688 	down_write(&trace_event_sem);
3689 	/* If tr already has the event list, it is initialized in early boot. */
3690 	if (unlikely(!list_empty(&tr->events)))
3691 		__trace_early_add_event_dirs(tr);
3692 	else
3693 		__trace_add_event_dirs(tr);
3694 	up_write(&trace_event_sem);
3695 
3696  out:
3697 	return ret;
3698 }
3699 
3700 /*
3701  * The top trace array already had its file descriptors created.
3702  * Now the files themselves need to be created.
3703  */
3704 static __init int
3705 early_event_add_tracer(struct dentry *parent, struct trace_array *tr)
3706 {
3707 	int ret;
3708 
3709 	mutex_lock(&event_mutex);
3710 
3711 	ret = create_event_toplevel_files(parent, tr);
3712 	if (ret)
3713 		goto out_unlock;
3714 
3715 	down_write(&trace_event_sem);
3716 	__trace_early_add_event_dirs(tr);
3717 	up_write(&trace_event_sem);
3718 
3719  out_unlock:
3720 	mutex_unlock(&event_mutex);
3721 
3722 	return ret;
3723 }
3724 
3725 /* Must be called with event_mutex held */
3726 int event_trace_del_tracer(struct trace_array *tr)
3727 {
3728 	lockdep_assert_held(&event_mutex);
3729 
3730 	/* Disable any event triggers and associated soft-disabled events */
3731 	clear_event_triggers(tr);
3732 
3733 	/* Clear the pid list */
3734 	__ftrace_clear_event_pids(tr, TRACE_PIDS | TRACE_NO_PIDS);
3735 
3736 	/* Disable any running events */
3737 	__ftrace_set_clr_event_nolock(tr, NULL, NULL, NULL, 0);
3738 
3739 	/* Make sure no more events are being executed */
3740 	tracepoint_synchronize_unregister();
3741 
3742 	down_write(&trace_event_sem);
3743 	__trace_remove_event_dirs(tr);
3744 	eventfs_remove_events_dir(tr->event_dir);
3745 	up_write(&trace_event_sem);
3746 
3747 	tr->event_dir = NULL;
3748 
3749 	return 0;
3750 }
3751 
3752 static __init int event_trace_memsetup(void)
3753 {
3754 	field_cachep = KMEM_CACHE(ftrace_event_field, SLAB_PANIC);
3755 	file_cachep = KMEM_CACHE(trace_event_file, SLAB_PANIC);
3756 	return 0;
3757 }
3758 
3759 __init void
3760 early_enable_events(struct trace_array *tr, char *buf, bool disable_first)
3761 {
3762 	char *token;
3763 	int ret;
3764 
3765 	while (true) {
3766 		token = strsep(&buf, ",");
3767 
3768 		if (!token)
3769 			break;
3770 
3771 		if (*token) {
3772 			/* Restarting syscalls requires that we stop them first */
3773 			if (disable_first)
3774 				ftrace_set_clr_event(tr, token, 0);
3775 
3776 			ret = ftrace_set_clr_event(tr, token, 1);
3777 			if (ret)
3778 				pr_warn("Failed to enable trace event: %s\n", token);
3779 		}
3780 
3781 		/* Put back the comma to allow this to be called again */
3782 		if (buf)
3783 			*(buf - 1) = ',';
3784 	}
3785 }
3786 
3787 static __init int event_trace_enable(void)
3788 {
3789 	struct trace_array *tr = top_trace_array();
3790 	struct trace_event_call **iter, *call;
3791 	int ret;
3792 
3793 	if (!tr)
3794 		return -ENODEV;
3795 
3796 	for_each_event(iter, __start_ftrace_events, __stop_ftrace_events) {
3797 
3798 		call = *iter;
3799 		ret = event_init(call);
3800 		if (!ret)
3801 			list_add(&call->list, &ftrace_events);
3802 	}
3803 
3804 	register_trigger_cmds();
3805 
3806 	/*
3807 	 * We need the top trace array to have a working set of trace
3808 	 * points at early init, before the debug files and directories
3809 	 * are created. Create the file entries now, and attach them
3810 	 * to the actual file dentries later.
3811 	 */
3812 	__trace_early_add_events(tr);
3813 
3814 	early_enable_events(tr, bootup_event_buf, false);
3815 
3816 	trace_printk_start_comm();
3817 
3818 	register_event_cmds();
3819 
3820 
3821 	return 0;
3822 }
3823 
3824 /*
3825  * event_trace_enable() is called from trace_event_init() first to
3826  * initialize events and perhaps start any events that are on the
3827  * command line. Unfortunately, there are some events that will not
3828  * start this early, like the system call tracepoints that need
3829  * to set the %SYSCALL_WORK_SYSCALL_TRACEPOINT flag of pid 1. But
3830  * event_trace_enable() is called before pid 1 starts, and this flag
3831  * is never set, making the syscall tracepoint never get reached, but
3832  * the event is enabled regardless (and not doing anything).
3833  */
3834 static __init int event_trace_enable_again(void)
3835 {
3836 	struct trace_array *tr;
3837 
3838 	tr = top_trace_array();
3839 	if (!tr)
3840 		return -ENODEV;
3841 
3842 	early_enable_events(tr, bootup_event_buf, true);
3843 
3844 	return 0;
3845 }
3846 
3847 early_initcall(event_trace_enable_again);
3848 
3849 /* Init fields which doesn't related to the tracefs */
3850 static __init int event_trace_init_fields(void)
3851 {
3852 	if (trace_define_generic_fields())
3853 		pr_warn("tracing: Failed to allocated generic fields");
3854 
3855 	if (trace_define_common_fields())
3856 		pr_warn("tracing: Failed to allocate common fields");
3857 
3858 	return 0;
3859 }
3860 
3861 __init int event_trace_init(void)
3862 {
3863 	struct trace_array *tr;
3864 	int ret;
3865 
3866 	tr = top_trace_array();
3867 	if (!tr)
3868 		return -ENODEV;
3869 
3870 	trace_create_file("available_events", TRACE_MODE_READ,
3871 			  NULL, tr, &ftrace_avail_fops);
3872 
3873 	ret = early_event_add_tracer(NULL, tr);
3874 	if (ret)
3875 		return ret;
3876 
3877 #ifdef CONFIG_MODULES
3878 	ret = register_module_notifier(&trace_module_nb);
3879 	if (ret)
3880 		pr_warn("Failed to register trace events module notifier\n");
3881 #endif
3882 
3883 	eventdir_initialized = true;
3884 
3885 	return 0;
3886 }
3887 
3888 void __init trace_event_init(void)
3889 {
3890 	event_trace_memsetup();
3891 	init_ftrace_syscalls();
3892 	event_trace_enable();
3893 	event_trace_init_fields();
3894 }
3895 
3896 #ifdef CONFIG_EVENT_TRACE_STARTUP_TEST
3897 
3898 static DEFINE_SPINLOCK(test_spinlock);
3899 static DEFINE_SPINLOCK(test_spinlock_irq);
3900 static DEFINE_MUTEX(test_mutex);
3901 
3902 static __init void test_work(struct work_struct *dummy)
3903 {
3904 	spin_lock(&test_spinlock);
3905 	spin_lock_irq(&test_spinlock_irq);
3906 	udelay(1);
3907 	spin_unlock_irq(&test_spinlock_irq);
3908 	spin_unlock(&test_spinlock);
3909 
3910 	mutex_lock(&test_mutex);
3911 	msleep(1);
3912 	mutex_unlock(&test_mutex);
3913 }
3914 
3915 static __init int event_test_thread(void *unused)
3916 {
3917 	void *test_malloc;
3918 
3919 	test_malloc = kmalloc(1234, GFP_KERNEL);
3920 	if (!test_malloc)
3921 		pr_info("failed to kmalloc\n");
3922 
3923 	schedule_on_each_cpu(test_work);
3924 
3925 	kfree(test_malloc);
3926 
3927 	set_current_state(TASK_INTERRUPTIBLE);
3928 	while (!kthread_should_stop()) {
3929 		schedule();
3930 		set_current_state(TASK_INTERRUPTIBLE);
3931 	}
3932 	__set_current_state(TASK_RUNNING);
3933 
3934 	return 0;
3935 }
3936 
3937 /*
3938  * Do various things that may trigger events.
3939  */
3940 static __init void event_test_stuff(void)
3941 {
3942 	struct task_struct *test_thread;
3943 
3944 	test_thread = kthread_run(event_test_thread, NULL, "test-events");
3945 	msleep(1);
3946 	kthread_stop(test_thread);
3947 }
3948 
3949 /*
3950  * For every trace event defined, we will test each trace point separately,
3951  * and then by groups, and finally all trace points.
3952  */
3953 static __init void event_trace_self_tests(void)
3954 {
3955 	struct trace_subsystem_dir *dir;
3956 	struct trace_event_file *file;
3957 	struct trace_event_call *call;
3958 	struct event_subsystem *system;
3959 	struct trace_array *tr;
3960 	int ret;
3961 
3962 	tr = top_trace_array();
3963 	if (!tr)
3964 		return;
3965 
3966 	pr_info("Running tests on trace events:\n");
3967 
3968 	list_for_each_entry(file, &tr->events, list) {
3969 
3970 		call = file->event_call;
3971 
3972 		/* Only test those that have a probe */
3973 		if (!call->class || !call->class->probe)
3974 			continue;
3975 
3976 /*
3977  * Testing syscall events here is pretty useless, but
3978  * we still do it if configured. But this is time consuming.
3979  * What we really need is a user thread to perform the
3980  * syscalls as we test.
3981  */
3982 #ifndef CONFIG_EVENT_TRACE_TEST_SYSCALLS
3983 		if (call->class->system &&
3984 		    strcmp(call->class->system, "syscalls") == 0)
3985 			continue;
3986 #endif
3987 
3988 		pr_info("Testing event %s: ", trace_event_name(call));
3989 
3990 		/*
3991 		 * If an event is already enabled, someone is using
3992 		 * it and the self test should not be on.
3993 		 */
3994 		if (file->flags & EVENT_FILE_FL_ENABLED) {
3995 			pr_warn("Enabled event during self test!\n");
3996 			WARN_ON_ONCE(1);
3997 			continue;
3998 		}
3999 
4000 		ftrace_event_enable_disable(file, 1);
4001 		event_test_stuff();
4002 		ftrace_event_enable_disable(file, 0);
4003 
4004 		pr_cont("OK\n");
4005 	}
4006 
4007 	/* Now test at the sub system level */
4008 
4009 	pr_info("Running tests on trace event systems:\n");
4010 
4011 	list_for_each_entry(dir, &tr->systems, list) {
4012 
4013 		system = dir->subsystem;
4014 
4015 		/* the ftrace system is special, skip it */
4016 		if (strcmp(system->name, "ftrace") == 0)
4017 			continue;
4018 
4019 		pr_info("Testing event system %s: ", system->name);
4020 
4021 		ret = __ftrace_set_clr_event(tr, NULL, system->name, NULL, 1);
4022 		if (WARN_ON_ONCE(ret)) {
4023 			pr_warn("error enabling system %s\n",
4024 				system->name);
4025 			continue;
4026 		}
4027 
4028 		event_test_stuff();
4029 
4030 		ret = __ftrace_set_clr_event(tr, NULL, system->name, NULL, 0);
4031 		if (WARN_ON_ONCE(ret)) {
4032 			pr_warn("error disabling system %s\n",
4033 				system->name);
4034 			continue;
4035 		}
4036 
4037 		pr_cont("OK\n");
4038 	}
4039 
4040 	/* Test with all events enabled */
4041 
4042 	pr_info("Running tests on all trace events:\n");
4043 	pr_info("Testing all events: ");
4044 
4045 	ret = __ftrace_set_clr_event(tr, NULL, NULL, NULL, 1);
4046 	if (WARN_ON_ONCE(ret)) {
4047 		pr_warn("error enabling all events\n");
4048 		return;
4049 	}
4050 
4051 	event_test_stuff();
4052 
4053 	/* reset sysname */
4054 	ret = __ftrace_set_clr_event(tr, NULL, NULL, NULL, 0);
4055 	if (WARN_ON_ONCE(ret)) {
4056 		pr_warn("error disabling all events\n");
4057 		return;
4058 	}
4059 
4060 	pr_cont("OK\n");
4061 }
4062 
4063 #ifdef CONFIG_FUNCTION_TRACER
4064 
4065 static DEFINE_PER_CPU(atomic_t, ftrace_test_event_disable);
4066 
4067 static struct trace_event_file event_trace_file __initdata;
4068 
4069 static void __init
4070 function_test_events_call(unsigned long ip, unsigned long parent_ip,
4071 			  struct ftrace_ops *op, struct ftrace_regs *regs)
4072 {
4073 	struct trace_buffer *buffer;
4074 	struct ring_buffer_event *event;
4075 	struct ftrace_entry *entry;
4076 	unsigned int trace_ctx;
4077 	long disabled;
4078 	int cpu;
4079 
4080 	trace_ctx = tracing_gen_ctx();
4081 	preempt_disable_notrace();
4082 	cpu = raw_smp_processor_id();
4083 	disabled = atomic_inc_return(&per_cpu(ftrace_test_event_disable, cpu));
4084 
4085 	if (disabled != 1)
4086 		goto out;
4087 
4088 	event = trace_event_buffer_lock_reserve(&buffer, &event_trace_file,
4089 						TRACE_FN, sizeof(*entry),
4090 						trace_ctx);
4091 	if (!event)
4092 		goto out;
4093 	entry	= ring_buffer_event_data(event);
4094 	entry->ip			= ip;
4095 	entry->parent_ip		= parent_ip;
4096 
4097 	event_trigger_unlock_commit(&event_trace_file, buffer, event,
4098 				    entry, trace_ctx);
4099  out:
4100 	atomic_dec(&per_cpu(ftrace_test_event_disable, cpu));
4101 	preempt_enable_notrace();
4102 }
4103 
4104 static struct ftrace_ops trace_ops __initdata  =
4105 {
4106 	.func = function_test_events_call,
4107 };
4108 
4109 static __init void event_trace_self_test_with_function(void)
4110 {
4111 	int ret;
4112 
4113 	event_trace_file.tr = top_trace_array();
4114 	if (WARN_ON(!event_trace_file.tr))
4115 		return;
4116 
4117 	ret = register_ftrace_function(&trace_ops);
4118 	if (WARN_ON(ret < 0)) {
4119 		pr_info("Failed to enable function tracer for event tests\n");
4120 		return;
4121 	}
4122 	pr_info("Running tests again, along with the function tracer\n");
4123 	event_trace_self_tests();
4124 	unregister_ftrace_function(&trace_ops);
4125 }
4126 #else
4127 static __init void event_trace_self_test_with_function(void)
4128 {
4129 }
4130 #endif
4131 
4132 static __init int event_trace_self_tests_init(void)
4133 {
4134 	if (!tracing_selftest_disabled) {
4135 		event_trace_self_tests();
4136 		event_trace_self_test_with_function();
4137 	}
4138 
4139 	return 0;
4140 }
4141 
4142 late_initcall(event_trace_self_tests_init);
4143 
4144 #endif
4145