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