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