Merge branch 'drm-next-3.16' of git://people.freedesktop.org/~agd5f/linux into drm...
[deliverable/linux.git] / kernel / trace / trace_events.c
CommitLineData
b77e38aa
SR
1/*
2 * event tracer
3 *
4 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
5 *
981d081e
SR
6 * - Added format output of fields of the trace point.
7 * This was based off of work by Tom Zanussi <tzanussi@gmail.com>.
8 *
b77e38aa
SR
9 */
10
e6187007
SR
11#include <linux/workqueue.h>
12#include <linux/spinlock.h>
13#include <linux/kthread.h>
b77e38aa
SR
14#include <linux/debugfs.h>
15#include <linux/uaccess.h>
16#include <linux/module.h>
17#include <linux/ctype.h>
5a0e3ad6 18#include <linux/slab.h>
e6187007 19#include <linux/delay.h>
b77e38aa 20
020e5f85
LZ
21#include <asm/setup.h>
22
91729ef9 23#include "trace_output.h"
b77e38aa 24
4e5292ea 25#undef TRACE_SYSTEM
b628b3e6
SR
26#define TRACE_SYSTEM "TRACE_SYSTEM"
27
20c8928a 28DEFINE_MUTEX(event_mutex);
11a241a3 29
a59fd602 30LIST_HEAD(ftrace_events);
b3a8c6fd 31static LIST_HEAD(ftrace_common_fields);
a59fd602 32
d1a29143
SR
33#define GFP_TRACE (GFP_KERNEL | __GFP_ZERO)
34
35static struct kmem_cache *field_cachep;
36static struct kmem_cache *file_cachep;
37
6e94a780
SR
38#define SYSTEM_FL_FREE_NAME (1 << 31)
39
40static inline int system_refcount(struct event_subsystem *system)
41{
42 return system->ref_count & ~SYSTEM_FL_FREE_NAME;
43}
44
45static int system_refcount_inc(struct event_subsystem *system)
46{
47 return (system->ref_count++) & ~SYSTEM_FL_FREE_NAME;
48}
49
50static int system_refcount_dec(struct event_subsystem *system)
51{
52 return (--system->ref_count) & ~SYSTEM_FL_FREE_NAME;
53}
54
ae63b31e
SR
55/* Double loops, do not use break, only goto's work */
56#define do_for_each_event_file(tr, file) \
57 list_for_each_entry(tr, &ftrace_trace_arrays, list) { \
58 list_for_each_entry(file, &tr->events, list)
59
60#define do_for_each_event_file_safe(tr, file) \
61 list_for_each_entry(tr, &ftrace_trace_arrays, list) { \
62 struct ftrace_event_file *___n; \
63 list_for_each_entry_safe(file, ___n, &tr->events, list)
64
65#define while_for_each_event_file() \
66 }
67
b3a8c6fd 68static struct list_head *
2e33af02
SR
69trace_get_fields(struct ftrace_event_call *event_call)
70{
71 if (!event_call->class->get_fields)
72 return &event_call->class->fields;
73 return event_call->class->get_fields(event_call);
74}
75
b3a8c6fd
J
76static struct ftrace_event_field *
77__find_event_field(struct list_head *head, char *name)
78{
79 struct ftrace_event_field *field;
80
81 list_for_each_entry(field, head, link) {
82 if (!strcmp(field->name, name))
83 return field;
84 }
85
86 return NULL;
87}
88
89struct ftrace_event_field *
90trace_find_event_field(struct ftrace_event_call *call, char *name)
91{
92 struct ftrace_event_field *field;
93 struct list_head *head;
94
95 field = __find_event_field(&ftrace_common_fields, name);
96 if (field)
97 return field;
98
99 head = trace_get_fields(call);
100 return __find_event_field(head, name);
101}
102
8728fe50
LZ
103static int __trace_define_field(struct list_head *head, const char *type,
104 const char *name, int offset, int size,
105 int is_signed, int filter_type)
cf027f64
TZ
106{
107 struct ftrace_event_field *field;
108
d1a29143 109 field = kmem_cache_alloc(field_cachep, GFP_TRACE);
cf027f64 110 if (!field)
aaf6ac0f 111 return -ENOMEM;
fe9f57f2 112
92edca07
SR
113 field->name = name;
114 field->type = type;
fe9f57f2 115
43b51ead
LZ
116 if (filter_type == FILTER_OTHER)
117 field->filter_type = filter_assign_type(type);
118 else
119 field->filter_type = filter_type;
120
cf027f64
TZ
121 field->offset = offset;
122 field->size = size;
a118e4d1 123 field->is_signed = is_signed;
aa38e9fc 124
2e33af02 125 list_add(&field->link, head);
cf027f64
TZ
126
127 return 0;
cf027f64 128}
8728fe50
LZ
129
130int trace_define_field(struct ftrace_event_call *call, const char *type,
131 const char *name, int offset, int size, int is_signed,
132 int filter_type)
133{
134 struct list_head *head;
135
136 if (WARN_ON(!call->class))
137 return 0;
138
139 head = trace_get_fields(call);
140 return __trace_define_field(head, type, name, offset, size,
141 is_signed, filter_type);
142}
17c873ec 143EXPORT_SYMBOL_GPL(trace_define_field);
cf027f64 144
e647d6b3 145#define __common_field(type, item) \
8728fe50
LZ
146 ret = __trace_define_field(&ftrace_common_fields, #type, \
147 "common_" #item, \
148 offsetof(typeof(ent), item), \
149 sizeof(ent.item), \
150 is_signed_type(type), FILTER_OTHER); \
e647d6b3
LZ
151 if (ret) \
152 return ret;
153
8728fe50 154static int trace_define_common_fields(void)
e647d6b3
LZ
155{
156 int ret;
157 struct trace_entry ent;
158
159 __common_field(unsigned short, type);
160 __common_field(unsigned char, flags);
161 __common_field(unsigned char, preempt_count);
162 __common_field(int, pid);
e647d6b3
LZ
163
164 return ret;
165}
166
ad7067ce 167static void trace_destroy_fields(struct ftrace_event_call *call)
2df75e41
LZ
168{
169 struct ftrace_event_field *field, *next;
2e33af02 170 struct list_head *head;
2df75e41 171
2e33af02
SR
172 head = trace_get_fields(call);
173 list_for_each_entry_safe(field, next, head, link) {
2df75e41 174 list_del(&field->link);
d1a29143 175 kmem_cache_free(field_cachep, field);
2df75e41
LZ
176 }
177}
178
87d9b4e1
LZ
179int trace_event_raw_init(struct ftrace_event_call *call)
180{
181 int id;
182
80decc70 183 id = register_ftrace_event(&call->event);
87d9b4e1
LZ
184 if (!id)
185 return -ENODEV;
87d9b4e1
LZ
186
187 return 0;
188}
189EXPORT_SYMBOL_GPL(trace_event_raw_init);
190
3fd40d1e
SR
191void *ftrace_event_buffer_reserve(struct ftrace_event_buffer *fbuffer,
192 struct ftrace_event_file *ftrace_file,
193 unsigned long len)
194{
195 struct ftrace_event_call *event_call = ftrace_file->event_call;
196
197 local_save_flags(fbuffer->flags);
198 fbuffer->pc = preempt_count();
199 fbuffer->ftrace_file = ftrace_file;
200
201 fbuffer->event =
202 trace_event_buffer_lock_reserve(&fbuffer->buffer, ftrace_file,
203 event_call->event.type, len,
204 fbuffer->flags, fbuffer->pc);
205 if (!fbuffer->event)
206 return NULL;
207
208 fbuffer->entry = ring_buffer_event_data(fbuffer->event);
209 return fbuffer->entry;
210}
211EXPORT_SYMBOL_GPL(ftrace_event_buffer_reserve);
212
213void ftrace_event_buffer_commit(struct ftrace_event_buffer *fbuffer)
214{
215 event_trigger_unlock_commit(fbuffer->ftrace_file, fbuffer->buffer,
216 fbuffer->event, fbuffer->entry,
217 fbuffer->flags, fbuffer->pc);
218}
219EXPORT_SYMBOL_GPL(ftrace_event_buffer_commit);
220
ceec0b6f
JO
221int ftrace_event_reg(struct ftrace_event_call *call,
222 enum trace_reg type, void *data)
a1d0ce82 223{
ae63b31e
SR
224 struct ftrace_event_file *file = data;
225
de7b2973 226 WARN_ON(!(call->flags & TRACE_EVENT_FL_TRACEPOINT));
a1d0ce82
SR
227 switch (type) {
228 case TRACE_REG_REGISTER:
de7b2973 229 return tracepoint_probe_register(call->tp,
a1d0ce82 230 call->class->probe,
ae63b31e 231 file);
a1d0ce82 232 case TRACE_REG_UNREGISTER:
de7b2973 233 tracepoint_probe_unregister(call->tp,
a1d0ce82 234 call->class->probe,
ae63b31e 235 file);
a1d0ce82
SR
236 return 0;
237
238#ifdef CONFIG_PERF_EVENTS
239 case TRACE_REG_PERF_REGISTER:
de7b2973 240 return tracepoint_probe_register(call->tp,
a1d0ce82
SR
241 call->class->perf_probe,
242 call);
243 case TRACE_REG_PERF_UNREGISTER:
de7b2973 244 tracepoint_probe_unregister(call->tp,
a1d0ce82
SR
245 call->class->perf_probe,
246 call);
247 return 0;
ceec0b6f
JO
248 case TRACE_REG_PERF_OPEN:
249 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
250 case TRACE_REG_PERF_ADD:
251 case TRACE_REG_PERF_DEL:
ceec0b6f 252 return 0;
a1d0ce82
SR
253#endif
254 }
255 return 0;
256}
257EXPORT_SYMBOL_GPL(ftrace_event_reg);
258
e870e9a1
LZ
259void trace_event_enable_cmd_record(bool enable)
260{
ae63b31e
SR
261 struct ftrace_event_file *file;
262 struct trace_array *tr;
e870e9a1
LZ
263
264 mutex_lock(&event_mutex);
ae63b31e
SR
265 do_for_each_event_file(tr, file) {
266
267 if (!(file->flags & FTRACE_EVENT_FL_ENABLED))
e870e9a1
LZ
268 continue;
269
270 if (enable) {
271 tracing_start_cmdline_record();
417944c4 272 set_bit(FTRACE_EVENT_FL_RECORDED_CMD_BIT, &file->flags);
e870e9a1
LZ
273 } else {
274 tracing_stop_cmdline_record();
417944c4 275 clear_bit(FTRACE_EVENT_FL_RECORDED_CMD_BIT, &file->flags);
e870e9a1 276 }
ae63b31e 277 } while_for_each_event_file();
e870e9a1
LZ
278 mutex_unlock(&event_mutex);
279}
280
417944c4
SRRH
281static int __ftrace_event_enable_disable(struct ftrace_event_file *file,
282 int enable, int soft_disable)
fd994989 283{
ae63b31e 284 struct ftrace_event_call *call = file->event_call;
3b8e4273 285 int ret = 0;
417944c4 286 int disable;
3b8e4273 287
fd994989
SR
288 switch (enable) {
289 case 0:
417944c4 290 /*
1cf4c073
MH
291 * When soft_disable is set and enable is cleared, the sm_ref
292 * reference counter is decremented. If it reaches 0, we want
417944c4
SRRH
293 * to clear the SOFT_DISABLED flag but leave the event in the
294 * state that it was. That is, if the event was enabled and
295 * SOFT_DISABLED isn't set, then do nothing. But if SOFT_DISABLED
296 * is set we do not want the event to be enabled before we
297 * clear the bit.
298 *
299 * When soft_disable is not set but the SOFT_MODE flag is,
300 * we do nothing. Do not disable the tracepoint, otherwise
301 * "soft enable"s (clearing the SOFT_DISABLED bit) wont work.
302 */
303 if (soft_disable) {
1cf4c073
MH
304 if (atomic_dec_return(&file->sm_ref) > 0)
305 break;
417944c4
SRRH
306 disable = file->flags & FTRACE_EVENT_FL_SOFT_DISABLED;
307 clear_bit(FTRACE_EVENT_FL_SOFT_MODE_BIT, &file->flags);
308 } else
309 disable = !(file->flags & FTRACE_EVENT_FL_SOFT_MODE);
310
311 if (disable && (file->flags & FTRACE_EVENT_FL_ENABLED)) {
312 clear_bit(FTRACE_EVENT_FL_ENABLED_BIT, &file->flags);
ae63b31e 313 if (file->flags & FTRACE_EVENT_FL_RECORDED_CMD) {
e870e9a1 314 tracing_stop_cmdline_record();
417944c4 315 clear_bit(FTRACE_EVENT_FL_RECORDED_CMD_BIT, &file->flags);
e870e9a1 316 }
ae63b31e 317 call->class->reg(call, TRACE_REG_UNREGISTER, file);
fd994989 318 }
3baa5e4c 319 /* If in SOFT_MODE, just set the SOFT_DISABLE_BIT, else clear it */
417944c4
SRRH
320 if (file->flags & FTRACE_EVENT_FL_SOFT_MODE)
321 set_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &file->flags);
3baa5e4c
TZ
322 else
323 clear_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &file->flags);
fd994989
SR
324 break;
325 case 1:
417944c4
SRRH
326 /*
327 * When soft_disable is set and enable is set, we want to
328 * register the tracepoint for the event, but leave the event
329 * as is. That means, if the event was already enabled, we do
330 * nothing (but set SOFT_MODE). If the event is disabled, we
331 * set SOFT_DISABLED before enabling the event tracepoint, so
332 * it still seems to be disabled.
333 */
334 if (!soft_disable)
335 clear_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &file->flags);
1cf4c073
MH
336 else {
337 if (atomic_inc_return(&file->sm_ref) > 1)
338 break;
417944c4 339 set_bit(FTRACE_EVENT_FL_SOFT_MODE_BIT, &file->flags);
1cf4c073 340 }
417944c4 341
ae63b31e 342 if (!(file->flags & FTRACE_EVENT_FL_ENABLED)) {
417944c4
SRRH
343
344 /* Keep the event disabled, when going to SOFT_MODE. */
345 if (soft_disable)
346 set_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &file->flags);
347
e870e9a1
LZ
348 if (trace_flags & TRACE_ITER_RECORD_CMD) {
349 tracing_start_cmdline_record();
417944c4 350 set_bit(FTRACE_EVENT_FL_RECORDED_CMD_BIT, &file->flags);
e870e9a1 351 }
ae63b31e 352 ret = call->class->reg(call, TRACE_REG_REGISTER, file);
3b8e4273
LZ
353 if (ret) {
354 tracing_stop_cmdline_record();
355 pr_info("event trace: Could not enable event "
de7b2973 356 "%s\n", ftrace_event_name(call));
3b8e4273
LZ
357 break;
358 }
417944c4 359 set_bit(FTRACE_EVENT_FL_ENABLED_BIT, &file->flags);
575380da
SRRH
360
361 /* WAS_ENABLED gets set but never cleared. */
362 call->flags |= TRACE_EVENT_FL_WAS_ENABLED;
fd994989 363 }
fd994989
SR
364 break;
365 }
3b8e4273
LZ
366
367 return ret;
fd994989
SR
368}
369
85f2b082
TZ
370int trace_event_enable_disable(struct ftrace_event_file *file,
371 int enable, int soft_disable)
372{
373 return __ftrace_event_enable_disable(file, enable, soft_disable);
374}
375
417944c4
SRRH
376static int ftrace_event_enable_disable(struct ftrace_event_file *file,
377 int enable)
378{
379 return __ftrace_event_enable_disable(file, enable, 0);
380}
381
ae63b31e 382static void ftrace_clear_events(struct trace_array *tr)
0e907c99 383{
ae63b31e 384 struct ftrace_event_file *file;
0e907c99
Z
385
386 mutex_lock(&event_mutex);
ae63b31e
SR
387 list_for_each_entry(file, &tr->events, list) {
388 ftrace_event_enable_disable(file, 0);
0e907c99
Z
389 }
390 mutex_unlock(&event_mutex);
391}
392
e9dbfae5
SR
393static void __put_system(struct event_subsystem *system)
394{
395 struct event_filter *filter = system->filter;
396
6e94a780
SR
397 WARN_ON_ONCE(system_refcount(system) == 0);
398 if (system_refcount_dec(system))
e9dbfae5
SR
399 return;
400
ae63b31e
SR
401 list_del(&system->list);
402
e9dbfae5
SR
403 if (filter) {
404 kfree(filter->filter_string);
405 kfree(filter);
406 }
6e94a780
SR
407 if (system->ref_count & SYSTEM_FL_FREE_NAME)
408 kfree(system->name);
e9dbfae5
SR
409 kfree(system);
410}
411
412static void __get_system(struct event_subsystem *system)
413{
6e94a780
SR
414 WARN_ON_ONCE(system_refcount(system) == 0);
415 system_refcount_inc(system);
e9dbfae5
SR
416}
417
ae63b31e
SR
418static void __get_system_dir(struct ftrace_subsystem_dir *dir)
419{
420 WARN_ON_ONCE(dir->ref_count == 0);
421 dir->ref_count++;
422 __get_system(dir->subsystem);
423}
424
425static void __put_system_dir(struct ftrace_subsystem_dir *dir)
426{
427 WARN_ON_ONCE(dir->ref_count == 0);
428 /* If the subsystem is about to be freed, the dir must be too */
6e94a780 429 WARN_ON_ONCE(system_refcount(dir->subsystem) == 1 && dir->ref_count != 1);
ae63b31e
SR
430
431 __put_system(dir->subsystem);
432 if (!--dir->ref_count)
433 kfree(dir);
434}
435
436static void put_system(struct ftrace_subsystem_dir *dir)
e9dbfae5
SR
437{
438 mutex_lock(&event_mutex);
ae63b31e 439 __put_system_dir(dir);
e9dbfae5
SR
440 mutex_unlock(&event_mutex);
441}
442
f6a84bdc
ON
443static void remove_subsystem(struct ftrace_subsystem_dir *dir)
444{
445 if (!dir)
446 return;
447
448 if (!--dir->nr_events) {
449 debugfs_remove_recursive(dir->entry);
450 list_del(&dir->list);
451 __put_system_dir(dir);
452 }
453}
454
f6a84bdc
ON
455static void remove_event_file_dir(struct ftrace_event_file *file)
456{
bf682c31
ON
457 struct dentry *dir = file->dir;
458 struct dentry *child;
459
460 if (dir) {
461 spin_lock(&dir->d_lock); /* probably unneeded */
462 list_for_each_entry(child, &dir->d_subdirs, d_u.d_child) {
463 if (child->d_inode) /* probably unneeded */
464 child->d_inode->i_private = NULL;
465 }
466 spin_unlock(&dir->d_lock);
467
468 debugfs_remove_recursive(dir);
469 }
470
f6a84bdc 471 list_del(&file->list);
f6a84bdc
ON
472 remove_subsystem(file->system);
473 kmem_cache_free(file_cachep, file);
474}
475
8f31bfe5
LZ
476/*
477 * __ftrace_set_clr_event(NULL, NULL, NULL, set) will set/unset all events.
478 */
2a6c24af
SRRH
479static int
480__ftrace_set_clr_event_nolock(struct trace_array *tr, const char *match,
481 const char *sub, const char *event, int set)
b77e38aa 482{
ae63b31e 483 struct ftrace_event_file *file;
a59fd602 484 struct ftrace_event_call *call;
de7b2973 485 const char *name;
29f93943 486 int ret = -EINVAL;
8f31bfe5 487
ae63b31e
SR
488 list_for_each_entry(file, &tr->events, list) {
489
490 call = file->event_call;
de7b2973 491 name = ftrace_event_name(call);
8f31bfe5 492
de7b2973 493 if (!name || !call->class || !call->class->reg)
8f31bfe5
LZ
494 continue;
495
9b63776f
SR
496 if (call->flags & TRACE_EVENT_FL_IGNORE_ENABLE)
497 continue;
498
8f31bfe5 499 if (match &&
de7b2973 500 strcmp(match, name) != 0 &&
8f082018 501 strcmp(match, call->class->system) != 0)
8f31bfe5
LZ
502 continue;
503
8f082018 504 if (sub && strcmp(sub, call->class->system) != 0)
8f31bfe5
LZ
505 continue;
506
de7b2973 507 if (event && strcmp(event, name) != 0)
8f31bfe5
LZ
508 continue;
509
ae63b31e 510 ftrace_event_enable_disable(file, set);
8f31bfe5
LZ
511
512 ret = 0;
513 }
2a6c24af
SRRH
514
515 return ret;
516}
517
518static int __ftrace_set_clr_event(struct trace_array *tr, const char *match,
519 const char *sub, const char *event, int set)
520{
521 int ret;
522
523 mutex_lock(&event_mutex);
524 ret = __ftrace_set_clr_event_nolock(tr, match, sub, event, set);
8f31bfe5
LZ
525 mutex_unlock(&event_mutex);
526
527 return ret;
528}
529
ae63b31e 530static int ftrace_set_clr_event(struct trace_array *tr, char *buf, int set)
8f31bfe5 531{
b628b3e6 532 char *event = NULL, *sub = NULL, *match;
b628b3e6
SR
533
534 /*
535 * The buf format can be <subsystem>:<event-name>
536 * *:<event-name> means any event by that name.
537 * :<event-name> is the same.
538 *
539 * <subsystem>:* means all events in that subsystem
540 * <subsystem>: means the same.
541 *
542 * <name> (no ':') means all events in a subsystem with
543 * the name <name> or any event that matches <name>
544 */
545
546 match = strsep(&buf, ":");
547 if (buf) {
548 sub = match;
549 event = buf;
550 match = NULL;
551
552 if (!strlen(sub) || strcmp(sub, "*") == 0)
553 sub = NULL;
554 if (!strlen(event) || strcmp(event, "*") == 0)
555 event = NULL;
556 }
b77e38aa 557
ae63b31e 558 return __ftrace_set_clr_event(tr, match, sub, event, set);
b77e38aa
SR
559}
560
4671c794
SR
561/**
562 * trace_set_clr_event - enable or disable an event
563 * @system: system name to match (NULL for any system)
564 * @event: event name to match (NULL for all events, within system)
565 * @set: 1 to enable, 0 to disable
566 *
567 * This is a way for other parts of the kernel to enable or disable
568 * event recording.
569 *
570 * Returns 0 on success, -EINVAL if the parameters do not match any
571 * registered events.
572 */
573int trace_set_clr_event(const char *system, const char *event, int set)
574{
ae63b31e
SR
575 struct trace_array *tr = top_trace_array();
576
dc81e5e3
YY
577 if (!tr)
578 return -ENODEV;
579
ae63b31e 580 return __ftrace_set_clr_event(tr, NULL, system, event, set);
4671c794 581}
56355b83 582EXPORT_SYMBOL_GPL(trace_set_clr_event);
4671c794 583
b77e38aa
SR
584/* 128 should be much more than enough */
585#define EVENT_BUF_SIZE 127
586
587static ssize_t
588ftrace_event_write(struct file *file, const char __user *ubuf,
589 size_t cnt, loff_t *ppos)
590{
48966364 591 struct trace_parser parser;
ae63b31e
SR
592 struct seq_file *m = file->private_data;
593 struct trace_array *tr = m->private;
4ba7978e 594 ssize_t read, ret;
b77e38aa 595
4ba7978e 596 if (!cnt)
b77e38aa
SR
597 return 0;
598
1852fcce
SR
599 ret = tracing_update_buffers();
600 if (ret < 0)
601 return ret;
602
48966364 603 if (trace_parser_get_init(&parser, EVENT_BUF_SIZE + 1))
b77e38aa
SR
604 return -ENOMEM;
605
48966364 606 read = trace_get_user(&parser, ubuf, cnt, ppos);
607
4ba7978e 608 if (read >= 0 && trace_parser_loaded((&parser))) {
48966364 609 int set = 1;
b77e38aa 610
48966364 611 if (*parser.buffer == '!')
b77e38aa 612 set = 0;
b77e38aa 613
48966364 614 parser.buffer[parser.idx] = 0;
615
ae63b31e 616 ret = ftrace_set_clr_event(tr, parser.buffer + !set, set);
b77e38aa 617 if (ret)
48966364 618 goto out_put;
b77e38aa 619 }
b77e38aa
SR
620
621 ret = read;
622
48966364 623 out_put:
624 trace_parser_put(&parser);
b77e38aa
SR
625
626 return ret;
627}
628
629static void *
630t_next(struct seq_file *m, void *v, loff_t *pos)
631{
ae63b31e
SR
632 struct ftrace_event_file *file = v;
633 struct ftrace_event_call *call;
634 struct trace_array *tr = m->private;
b77e38aa
SR
635
636 (*pos)++;
637
ae63b31e
SR
638 list_for_each_entry_continue(file, &tr->events, list) {
639 call = file->event_call;
40e26815
SR
640 /*
641 * The ftrace subsystem is for showing formats only.
642 * They can not be enabled or disabled via the event files.
643 */
a1d0ce82 644 if (call->class && call->class->reg)
ae63b31e 645 return file;
40e26815 646 }
b77e38aa 647
30bd39cd 648 return NULL;
b77e38aa
SR
649}
650
651static void *t_start(struct seq_file *m, loff_t *pos)
652{
ae63b31e
SR
653 struct ftrace_event_file *file;
654 struct trace_array *tr = m->private;
e1c7e2a6
LZ
655 loff_t l;
656
20c8928a 657 mutex_lock(&event_mutex);
e1c7e2a6 658
ae63b31e 659 file = list_entry(&tr->events, struct ftrace_event_file, list);
e1c7e2a6 660 for (l = 0; l <= *pos; ) {
ae63b31e
SR
661 file = t_next(m, file, &l);
662 if (!file)
e1c7e2a6
LZ
663 break;
664 }
ae63b31e 665 return file;
b77e38aa
SR
666}
667
668static void *
669s_next(struct seq_file *m, void *v, loff_t *pos)
670{
ae63b31e
SR
671 struct ftrace_event_file *file = v;
672 struct trace_array *tr = m->private;
b77e38aa
SR
673
674 (*pos)++;
675
ae63b31e
SR
676 list_for_each_entry_continue(file, &tr->events, list) {
677 if (file->flags & FTRACE_EVENT_FL_ENABLED)
678 return file;
b77e38aa
SR
679 }
680
30bd39cd 681 return NULL;
b77e38aa
SR
682}
683
684static void *s_start(struct seq_file *m, loff_t *pos)
685{
ae63b31e
SR
686 struct ftrace_event_file *file;
687 struct trace_array *tr = m->private;
e1c7e2a6
LZ
688 loff_t l;
689
20c8928a 690 mutex_lock(&event_mutex);
e1c7e2a6 691
ae63b31e 692 file = list_entry(&tr->events, struct ftrace_event_file, list);
e1c7e2a6 693 for (l = 0; l <= *pos; ) {
ae63b31e
SR
694 file = s_next(m, file, &l);
695 if (!file)
e1c7e2a6
LZ
696 break;
697 }
ae63b31e 698 return file;
b77e38aa
SR
699}
700
701static int t_show(struct seq_file *m, void *v)
702{
ae63b31e
SR
703 struct ftrace_event_file *file = v;
704 struct ftrace_event_call *call = file->event_call;
b77e38aa 705
8f082018
SR
706 if (strcmp(call->class->system, TRACE_SYSTEM) != 0)
707 seq_printf(m, "%s:", call->class->system);
de7b2973 708 seq_printf(m, "%s\n", ftrace_event_name(call));
b77e38aa
SR
709
710 return 0;
711}
712
713static void t_stop(struct seq_file *m, void *p)
714{
20c8928a 715 mutex_unlock(&event_mutex);
b77e38aa
SR
716}
717
1473e441
SR
718static ssize_t
719event_enable_read(struct file *filp, char __user *ubuf, size_t cnt,
720 loff_t *ppos)
721{
bc6f6b08
ON
722 struct ftrace_event_file *file;
723 unsigned long flags;
a4390596
TZ
724 char buf[4] = "0";
725
bc6f6b08
ON
726 mutex_lock(&event_mutex);
727 file = event_file_data(filp);
728 if (likely(file))
729 flags = file->flags;
730 mutex_unlock(&event_mutex);
731
732 if (!file)
733 return -ENODEV;
734
735 if (flags & FTRACE_EVENT_FL_ENABLED &&
736 !(flags & FTRACE_EVENT_FL_SOFT_DISABLED))
a4390596
TZ
737 strcpy(buf, "1");
738
bc6f6b08
ON
739 if (flags & FTRACE_EVENT_FL_SOFT_DISABLED ||
740 flags & FTRACE_EVENT_FL_SOFT_MODE)
a4390596
TZ
741 strcat(buf, "*");
742
743 strcat(buf, "\n");
1473e441 744
417944c4 745 return simple_read_from_buffer(ubuf, cnt, ppos, buf, strlen(buf));
1473e441
SR
746}
747
748static ssize_t
749event_enable_write(struct file *filp, const char __user *ubuf, size_t cnt,
750 loff_t *ppos)
751{
bc6f6b08 752 struct ftrace_event_file *file;
1473e441
SR
753 unsigned long val;
754 int ret;
755
22fe9b54
PH
756 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
757 if (ret)
1473e441
SR
758 return ret;
759
1852fcce
SR
760 ret = tracing_update_buffers();
761 if (ret < 0)
762 return ret;
763
1473e441
SR
764 switch (val) {
765 case 0:
1473e441 766 case 1:
bc6f6b08 767 ret = -ENODEV;
11a241a3 768 mutex_lock(&event_mutex);
bc6f6b08
ON
769 file = event_file_data(filp);
770 if (likely(file))
771 ret = ftrace_event_enable_disable(file, val);
11a241a3 772 mutex_unlock(&event_mutex);
1473e441
SR
773 break;
774
775 default:
776 return -EINVAL;
777 }
778
779 *ppos += cnt;
780
3b8e4273 781 return ret ? ret : cnt;
1473e441
SR
782}
783
8ae79a13
SR
784static ssize_t
785system_enable_read(struct file *filp, char __user *ubuf, size_t cnt,
786 loff_t *ppos)
787{
c142b15d 788 const char set_to_char[4] = { '?', '0', '1', 'X' };
ae63b31e
SR
789 struct ftrace_subsystem_dir *dir = filp->private_data;
790 struct event_subsystem *system = dir->subsystem;
8ae79a13 791 struct ftrace_event_call *call;
ae63b31e
SR
792 struct ftrace_event_file *file;
793 struct trace_array *tr = dir->tr;
8ae79a13 794 char buf[2];
c142b15d 795 int set = 0;
8ae79a13
SR
796 int ret;
797
8ae79a13 798 mutex_lock(&event_mutex);
ae63b31e
SR
799 list_for_each_entry(file, &tr->events, list) {
800 call = file->event_call;
de7b2973 801 if (!ftrace_event_name(call) || !call->class || !call->class->reg)
8ae79a13
SR
802 continue;
803
40ee4dff 804 if (system && strcmp(call->class->system, system->name) != 0)
8ae79a13
SR
805 continue;
806
807 /*
808 * We need to find out if all the events are set
809 * or if all events or cleared, or if we have
810 * a mixture.
811 */
ae63b31e 812 set |= (1 << !!(file->flags & FTRACE_EVENT_FL_ENABLED));
c142b15d 813
8ae79a13
SR
814 /*
815 * If we have a mixture, no need to look further.
816 */
c142b15d 817 if (set == 3)
8ae79a13
SR
818 break;
819 }
820 mutex_unlock(&event_mutex);
821
c142b15d 822 buf[0] = set_to_char[set];
8ae79a13 823 buf[1] = '\n';
8ae79a13
SR
824
825 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
826
827 return ret;
828}
829
830static ssize_t
831system_enable_write(struct file *filp, const char __user *ubuf, size_t cnt,
832 loff_t *ppos)
833{
ae63b31e
SR
834 struct ftrace_subsystem_dir *dir = filp->private_data;
835 struct event_subsystem *system = dir->subsystem;
40ee4dff 836 const char *name = NULL;
8ae79a13 837 unsigned long val;
8ae79a13
SR
838 ssize_t ret;
839
22fe9b54
PH
840 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
841 if (ret)
8ae79a13
SR
842 return ret;
843
844 ret = tracing_update_buffers();
845 if (ret < 0)
846 return ret;
847
8f31bfe5 848 if (val != 0 && val != 1)
8ae79a13 849 return -EINVAL;
8ae79a13 850
40ee4dff
SR
851 /*
852 * Opening of "enable" adds a ref count to system,
853 * so the name is safe to use.
854 */
855 if (system)
856 name = system->name;
857
ae63b31e 858 ret = __ftrace_set_clr_event(dir->tr, NULL, name, NULL, val);
8ae79a13 859 if (ret)
8f31bfe5 860 goto out;
8ae79a13
SR
861
862 ret = cnt;
863
8f31bfe5 864out:
8ae79a13
SR
865 *ppos += cnt;
866
867 return ret;
868}
869
2a37a3df
SR
870enum {
871 FORMAT_HEADER = 1,
86397dc3
LZ
872 FORMAT_FIELD_SEPERATOR = 2,
873 FORMAT_PRINTFMT = 3,
2a37a3df
SR
874};
875
876static void *f_next(struct seq_file *m, void *v, loff_t *pos)
981d081e 877{
c5a44a12 878 struct ftrace_event_call *call = event_file_data(m->private);
86397dc3
LZ
879 struct list_head *common_head = &ftrace_common_fields;
880 struct list_head *head = trace_get_fields(call);
7710b639 881 struct list_head *node = v;
981d081e 882
2a37a3df 883 (*pos)++;
5a65e956 884
2a37a3df
SR
885 switch ((unsigned long)v) {
886 case FORMAT_HEADER:
7710b639
ON
887 node = common_head;
888 break;
5a65e956 889
86397dc3 890 case FORMAT_FIELD_SEPERATOR:
7710b639
ON
891 node = head;
892 break;
5a65e956 893
2a37a3df
SR
894 case FORMAT_PRINTFMT:
895 /* all done */
896 return NULL;
5a65e956
LJ
897 }
898
7710b639
ON
899 node = node->prev;
900 if (node == common_head)
86397dc3 901 return (void *)FORMAT_FIELD_SEPERATOR;
7710b639 902 else if (node == head)
2a37a3df 903 return (void *)FORMAT_PRINTFMT;
7710b639
ON
904 else
905 return node;
2a37a3df
SR
906}
907
908static int f_show(struct seq_file *m, void *v)
909{
c5a44a12 910 struct ftrace_event_call *call = event_file_data(m->private);
2a37a3df
SR
911 struct ftrace_event_field *field;
912 const char *array_descriptor;
913
914 switch ((unsigned long)v) {
915 case FORMAT_HEADER:
de7b2973 916 seq_printf(m, "name: %s\n", ftrace_event_name(call));
2a37a3df
SR
917 seq_printf(m, "ID: %d\n", call->event.type);
918 seq_printf(m, "format:\n");
8728fe50 919 return 0;
5a65e956 920
86397dc3
LZ
921 case FORMAT_FIELD_SEPERATOR:
922 seq_putc(m, '\n');
923 return 0;
924
2a37a3df
SR
925 case FORMAT_PRINTFMT:
926 seq_printf(m, "\nprint fmt: %s\n",
927 call->print_fmt);
928 return 0;
981d081e 929 }
8728fe50 930
7710b639 931 field = list_entry(v, struct ftrace_event_field, link);
2a37a3df
SR
932 /*
933 * Smartly shows the array type(except dynamic array).
934 * Normal:
935 * field:TYPE VAR
936 * If TYPE := TYPE[LEN], it is shown:
937 * field:TYPE VAR[LEN]
938 */
939 array_descriptor = strchr(field->type, '[');
8728fe50 940
2a37a3df
SR
941 if (!strncmp(field->type, "__data_loc", 10))
942 array_descriptor = NULL;
8728fe50 943
2a37a3df
SR
944 if (!array_descriptor)
945 seq_printf(m, "\tfield:%s %s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
946 field->type, field->name, field->offset,
947 field->size, !!field->is_signed);
948 else
949 seq_printf(m, "\tfield:%.*s %s%s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
950 (int)(array_descriptor - field->type),
951 field->type, field->name,
952 array_descriptor, field->offset,
953 field->size, !!field->is_signed);
8728fe50 954
2a37a3df
SR
955 return 0;
956}
5a65e956 957
7710b639
ON
958static void *f_start(struct seq_file *m, loff_t *pos)
959{
960 void *p = (void *)FORMAT_HEADER;
961 loff_t l = 0;
962
c5a44a12
ON
963 /* ->stop() is called even if ->start() fails */
964 mutex_lock(&event_mutex);
965 if (!event_file_data(m->private))
966 return ERR_PTR(-ENODEV);
967
7710b639
ON
968 while (l < *pos && p)
969 p = f_next(m, p, &l);
970
971 return p;
972}
973
2a37a3df
SR
974static void f_stop(struct seq_file *m, void *p)
975{
c5a44a12 976 mutex_unlock(&event_mutex);
2a37a3df 977}
981d081e 978
2a37a3df
SR
979static const struct seq_operations trace_format_seq_ops = {
980 .start = f_start,
981 .next = f_next,
982 .stop = f_stop,
983 .show = f_show,
984};
985
986static int trace_format_open(struct inode *inode, struct file *file)
987{
2a37a3df
SR
988 struct seq_file *m;
989 int ret;
990
991 ret = seq_open(file, &trace_format_seq_ops);
992 if (ret < 0)
993 return ret;
994
995 m = file->private_data;
c5a44a12 996 m->private = file;
2a37a3df
SR
997
998 return 0;
981d081e
SR
999}
1000
23725aee
PZ
1001static ssize_t
1002event_id_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
1003{
1a11126b 1004 int id = (long)event_file_data(filp);
cd458ba9
ON
1005 char buf[32];
1006 int len;
23725aee
PZ
1007
1008 if (*ppos)
1009 return 0;
1010
1a11126b
ON
1011 if (unlikely(!id))
1012 return -ENODEV;
1013
1014 len = sprintf(buf, "%d\n", id);
1015
cd458ba9 1016 return simple_read_from_buffer(ubuf, cnt, ppos, buf, len);
23725aee
PZ
1017}
1018
7ce7e424
TZ
1019static ssize_t
1020event_filter_read(struct file *filp, char __user *ubuf, size_t cnt,
1021 loff_t *ppos)
1022{
f306cc82 1023 struct ftrace_event_file *file;
7ce7e424 1024 struct trace_seq *s;
e2912b09 1025 int r = -ENODEV;
7ce7e424
TZ
1026
1027 if (*ppos)
1028 return 0;
1029
1030 s = kmalloc(sizeof(*s), GFP_KERNEL);
e2912b09 1031
7ce7e424
TZ
1032 if (!s)
1033 return -ENOMEM;
1034
1035 trace_seq_init(s);
1036
e2912b09 1037 mutex_lock(&event_mutex);
f306cc82
TZ
1038 file = event_file_data(filp);
1039 if (file)
1040 print_event_filter(file, s);
e2912b09
ON
1041 mutex_unlock(&event_mutex);
1042
f306cc82 1043 if (file)
e2912b09 1044 r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len);
7ce7e424
TZ
1045
1046 kfree(s);
1047
1048 return r;
1049}
1050
1051static ssize_t
1052event_filter_write(struct file *filp, const char __user *ubuf, size_t cnt,
1053 loff_t *ppos)
1054{
f306cc82 1055 struct ftrace_event_file *file;
8b372562 1056 char *buf;
e2912b09 1057 int err = -ENODEV;
7ce7e424 1058
8b372562 1059 if (cnt >= PAGE_SIZE)
7ce7e424
TZ
1060 return -EINVAL;
1061
8b372562
TZ
1062 buf = (char *)__get_free_page(GFP_TEMPORARY);
1063 if (!buf)
7ce7e424
TZ
1064 return -ENOMEM;
1065
8b372562
TZ
1066 if (copy_from_user(buf, ubuf, cnt)) {
1067 free_page((unsigned long) buf);
1068 return -EFAULT;
7ce7e424 1069 }
8b372562 1070 buf[cnt] = '\0';
7ce7e424 1071
e2912b09 1072 mutex_lock(&event_mutex);
f306cc82
TZ
1073 file = event_file_data(filp);
1074 if (file)
1075 err = apply_event_filter(file, buf);
e2912b09
ON
1076 mutex_unlock(&event_mutex);
1077
8b372562
TZ
1078 free_page((unsigned long) buf);
1079 if (err < 0)
44e9c8b7 1080 return err;
0a19e53c 1081
7ce7e424
TZ
1082 *ppos += cnt;
1083
1084 return cnt;
1085}
1086
e9dbfae5
SR
1087static LIST_HEAD(event_subsystems);
1088
1089static int subsystem_open(struct inode *inode, struct file *filp)
1090{
1091 struct event_subsystem *system = NULL;
ae63b31e
SR
1092 struct ftrace_subsystem_dir *dir = NULL; /* Initialize for gcc */
1093 struct trace_array *tr;
e9dbfae5
SR
1094 int ret;
1095
d6d3523c
GB
1096 if (tracing_is_disabled())
1097 return -ENODEV;
1098
e9dbfae5 1099 /* Make sure the system still exists */
a8227415 1100 mutex_lock(&trace_types_lock);
e9dbfae5 1101 mutex_lock(&event_mutex);
ae63b31e
SR
1102 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
1103 list_for_each_entry(dir, &tr->systems, list) {
1104 if (dir == inode->i_private) {
1105 /* Don't open systems with no events */
1106 if (dir->nr_events) {
1107 __get_system_dir(dir);
1108 system = dir->subsystem;
1109 }
1110 goto exit_loop;
e9dbfae5 1111 }
e9dbfae5
SR
1112 }
1113 }
ae63b31e 1114 exit_loop:
e9dbfae5 1115 mutex_unlock(&event_mutex);
a8227415 1116 mutex_unlock(&trace_types_lock);
e9dbfae5 1117
ae63b31e 1118 if (!system)
e9dbfae5
SR
1119 return -ENODEV;
1120
ae63b31e
SR
1121 /* Some versions of gcc think dir can be uninitialized here */
1122 WARN_ON(!dir);
1123
8e2e2fa4
SRRH
1124 /* Still need to increment the ref count of the system */
1125 if (trace_array_get(tr) < 0) {
1126 put_system(dir);
1127 return -ENODEV;
1128 }
1129
e9dbfae5 1130 ret = tracing_open_generic(inode, filp);
8e2e2fa4
SRRH
1131 if (ret < 0) {
1132 trace_array_put(tr);
ae63b31e 1133 put_system(dir);
8e2e2fa4 1134 }
ae63b31e
SR
1135
1136 return ret;
1137}
1138
1139static int system_tr_open(struct inode *inode, struct file *filp)
1140{
1141 struct ftrace_subsystem_dir *dir;
1142 struct trace_array *tr = inode->i_private;
1143 int ret;
1144
d6d3523c
GB
1145 if (tracing_is_disabled())
1146 return -ENODEV;
1147
8e2e2fa4
SRRH
1148 if (trace_array_get(tr) < 0)
1149 return -ENODEV;
1150
ae63b31e
SR
1151 /* Make a temporary dir that has no system but points to tr */
1152 dir = kzalloc(sizeof(*dir), GFP_KERNEL);
8e2e2fa4
SRRH
1153 if (!dir) {
1154 trace_array_put(tr);
ae63b31e 1155 return -ENOMEM;
8e2e2fa4 1156 }
ae63b31e
SR
1157
1158 dir->tr = tr;
1159
1160 ret = tracing_open_generic(inode, filp);
8e2e2fa4
SRRH
1161 if (ret < 0) {
1162 trace_array_put(tr);
ae63b31e 1163 kfree(dir);
d6d3523c 1164 return ret;
8e2e2fa4 1165 }
ae63b31e
SR
1166
1167 filp->private_data = dir;
e9dbfae5 1168
d6d3523c 1169 return 0;
e9dbfae5
SR
1170}
1171
1172static int subsystem_release(struct inode *inode, struct file *file)
1173{
ae63b31e 1174 struct ftrace_subsystem_dir *dir = file->private_data;
e9dbfae5 1175
8e2e2fa4
SRRH
1176 trace_array_put(dir->tr);
1177
ae63b31e
SR
1178 /*
1179 * If dir->subsystem is NULL, then this is a temporary
1180 * descriptor that was made for a trace_array to enable
1181 * all subsystems.
1182 */
1183 if (dir->subsystem)
1184 put_system(dir);
1185 else
1186 kfree(dir);
e9dbfae5
SR
1187
1188 return 0;
1189}
1190
cfb180f3
TZ
1191static ssize_t
1192subsystem_filter_read(struct file *filp, char __user *ubuf, size_t cnt,
1193 loff_t *ppos)
1194{
ae63b31e
SR
1195 struct ftrace_subsystem_dir *dir = filp->private_data;
1196 struct event_subsystem *system = dir->subsystem;
cfb180f3
TZ
1197 struct trace_seq *s;
1198 int r;
1199
1200 if (*ppos)
1201 return 0;
1202
1203 s = kmalloc(sizeof(*s), GFP_KERNEL);
1204 if (!s)
1205 return -ENOMEM;
1206
1207 trace_seq_init(s);
1208
8b372562 1209 print_subsystem_event_filter(system, s);
4bda2d51 1210 r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len);
cfb180f3
TZ
1211
1212 kfree(s);
1213
1214 return r;
1215}
1216
1217static ssize_t
1218subsystem_filter_write(struct file *filp, const char __user *ubuf, size_t cnt,
1219 loff_t *ppos)
1220{
ae63b31e 1221 struct ftrace_subsystem_dir *dir = filp->private_data;
8b372562 1222 char *buf;
cfb180f3
TZ
1223 int err;
1224
8b372562 1225 if (cnt >= PAGE_SIZE)
cfb180f3
TZ
1226 return -EINVAL;
1227
8b372562
TZ
1228 buf = (char *)__get_free_page(GFP_TEMPORARY);
1229 if (!buf)
cfb180f3
TZ
1230 return -ENOMEM;
1231
8b372562
TZ
1232 if (copy_from_user(buf, ubuf, cnt)) {
1233 free_page((unsigned long) buf);
1234 return -EFAULT;
cfb180f3 1235 }
8b372562 1236 buf[cnt] = '\0';
cfb180f3 1237
ae63b31e 1238 err = apply_subsystem_event_filter(dir, buf);
8b372562
TZ
1239 free_page((unsigned long) buf);
1240 if (err < 0)
44e9c8b7 1241 return err;
cfb180f3
TZ
1242
1243 *ppos += cnt;
1244
1245 return cnt;
1246}
1247
d1b182a8
SR
1248static ssize_t
1249show_header(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
1250{
1251 int (*func)(struct trace_seq *s) = filp->private_data;
1252 struct trace_seq *s;
1253 int r;
1254
1255 if (*ppos)
1256 return 0;
1257
1258 s = kmalloc(sizeof(*s), GFP_KERNEL);
1259 if (!s)
1260 return -ENOMEM;
1261
1262 trace_seq_init(s);
1263
1264 func(s);
1265 r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len);
1266
1267 kfree(s);
1268
1269 return r;
1270}
1271
15075cac
SR
1272static int ftrace_event_avail_open(struct inode *inode, struct file *file);
1273static int ftrace_event_set_open(struct inode *inode, struct file *file);
f77d09a3 1274static int ftrace_event_release(struct inode *inode, struct file *file);
15075cac 1275
b77e38aa
SR
1276static const struct seq_operations show_event_seq_ops = {
1277 .start = t_start,
1278 .next = t_next,
1279 .show = t_show,
1280 .stop = t_stop,
1281};
1282
1283static const struct seq_operations show_set_event_seq_ops = {
1284 .start = s_start,
1285 .next = s_next,
1286 .show = t_show,
1287 .stop = t_stop,
1288};
1289
2314c4ae 1290static const struct file_operations ftrace_avail_fops = {
15075cac 1291 .open = ftrace_event_avail_open,
2314c4ae
SR
1292 .read = seq_read,
1293 .llseek = seq_lseek,
1294 .release = seq_release,
1295};
1296
b77e38aa 1297static const struct file_operations ftrace_set_event_fops = {
15075cac 1298 .open = ftrace_event_set_open,
b77e38aa
SR
1299 .read = seq_read,
1300 .write = ftrace_event_write,
1301 .llseek = seq_lseek,
f77d09a3 1302 .release = ftrace_event_release,
b77e38aa
SR
1303};
1304
1473e441 1305static const struct file_operations ftrace_enable_fops = {
bf682c31 1306 .open = tracing_open_generic,
1473e441
SR
1307 .read = event_enable_read,
1308 .write = event_enable_write,
6038f373 1309 .llseek = default_llseek,
1473e441
SR
1310};
1311
981d081e 1312static const struct file_operations ftrace_event_format_fops = {
2a37a3df
SR
1313 .open = trace_format_open,
1314 .read = seq_read,
1315 .llseek = seq_lseek,
1316 .release = seq_release,
981d081e
SR
1317};
1318
23725aee 1319static const struct file_operations ftrace_event_id_fops = {
23725aee 1320 .read = event_id_read,
6038f373 1321 .llseek = default_llseek,
23725aee
PZ
1322};
1323
7ce7e424
TZ
1324static const struct file_operations ftrace_event_filter_fops = {
1325 .open = tracing_open_generic,
1326 .read = event_filter_read,
1327 .write = event_filter_write,
6038f373 1328 .llseek = default_llseek,
7ce7e424
TZ
1329};
1330
cfb180f3 1331static const struct file_operations ftrace_subsystem_filter_fops = {
e9dbfae5 1332 .open = subsystem_open,
cfb180f3
TZ
1333 .read = subsystem_filter_read,
1334 .write = subsystem_filter_write,
6038f373 1335 .llseek = default_llseek,
e9dbfae5 1336 .release = subsystem_release,
cfb180f3
TZ
1337};
1338
8ae79a13 1339static const struct file_operations ftrace_system_enable_fops = {
40ee4dff 1340 .open = subsystem_open,
8ae79a13
SR
1341 .read = system_enable_read,
1342 .write = system_enable_write,
6038f373 1343 .llseek = default_llseek,
40ee4dff 1344 .release = subsystem_release,
8ae79a13
SR
1345};
1346
ae63b31e
SR
1347static const struct file_operations ftrace_tr_enable_fops = {
1348 .open = system_tr_open,
1349 .read = system_enable_read,
1350 .write = system_enable_write,
1351 .llseek = default_llseek,
1352 .release = subsystem_release,
1353};
1354
d1b182a8
SR
1355static const struct file_operations ftrace_show_header_fops = {
1356 .open = tracing_open_generic,
1357 .read = show_header,
6038f373 1358 .llseek = default_llseek,
d1b182a8
SR
1359};
1360
ae63b31e
SR
1361static int
1362ftrace_event_open(struct inode *inode, struct file *file,
1363 const struct seq_operations *seq_ops)
1473e441 1364{
ae63b31e
SR
1365 struct seq_file *m;
1366 int ret;
1473e441 1367
ae63b31e
SR
1368 ret = seq_open(file, seq_ops);
1369 if (ret < 0)
1370 return ret;
1371 m = file->private_data;
1372 /* copy tr over to seq ops */
1373 m->private = inode->i_private;
1473e441 1374
ae63b31e 1375 return ret;
1473e441
SR
1376}
1377
f77d09a3
AL
1378static int ftrace_event_release(struct inode *inode, struct file *file)
1379{
1380 struct trace_array *tr = inode->i_private;
1381
1382 trace_array_put(tr);
1383
1384 return seq_release(inode, file);
1385}
1386
15075cac
SR
1387static int
1388ftrace_event_avail_open(struct inode *inode, struct file *file)
1389{
1390 const struct seq_operations *seq_ops = &show_event_seq_ops;
1391
ae63b31e 1392 return ftrace_event_open(inode, file, seq_ops);
15075cac
SR
1393}
1394
1395static int
1396ftrace_event_set_open(struct inode *inode, struct file *file)
1397{
1398 const struct seq_operations *seq_ops = &show_set_event_seq_ops;
ae63b31e 1399 struct trace_array *tr = inode->i_private;
f77d09a3
AL
1400 int ret;
1401
1402 if (trace_array_get(tr) < 0)
1403 return -ENODEV;
15075cac
SR
1404
1405 if ((file->f_mode & FMODE_WRITE) &&
1406 (file->f_flags & O_TRUNC))
ae63b31e 1407 ftrace_clear_events(tr);
15075cac 1408
f77d09a3
AL
1409 ret = ftrace_event_open(inode, file, seq_ops);
1410 if (ret < 0)
1411 trace_array_put(tr);
1412 return ret;
ae63b31e
SR
1413}
1414
1415static struct event_subsystem *
1416create_new_subsystem(const char *name)
1417{
1418 struct event_subsystem *system;
1419
1420 /* need to create new entry */
1421 system = kmalloc(sizeof(*system), GFP_KERNEL);
1422 if (!system)
1423 return NULL;
1424
1425 system->ref_count = 1;
6e94a780
SR
1426
1427 /* Only allocate if dynamic (kprobes and modules) */
1428 if (!core_kernel_data((unsigned long)name)) {
1429 system->ref_count |= SYSTEM_FL_FREE_NAME;
1430 system->name = kstrdup(name, GFP_KERNEL);
1431 if (!system->name)
1432 goto out_free;
1433 } else
1434 system->name = name;
ae63b31e
SR
1435
1436 system->filter = NULL;
1437
1438 system->filter = kzalloc(sizeof(struct event_filter), GFP_KERNEL);
1439 if (!system->filter)
1440 goto out_free;
1441
1442 list_add(&system->list, &event_subsystems);
1443
1444 return system;
1445
1446 out_free:
6e94a780
SR
1447 if (system->ref_count & SYSTEM_FL_FREE_NAME)
1448 kfree(system->name);
ae63b31e
SR
1449 kfree(system);
1450 return NULL;
15075cac
SR
1451}
1452
6ecc2d1c 1453static struct dentry *
ae63b31e
SR
1454event_subsystem_dir(struct trace_array *tr, const char *name,
1455 struct ftrace_event_file *file, struct dentry *parent)
6ecc2d1c 1456{
ae63b31e 1457 struct ftrace_subsystem_dir *dir;
6ecc2d1c 1458 struct event_subsystem *system;
e1112b4d 1459 struct dentry *entry;
6ecc2d1c
SR
1460
1461 /* First see if we did not already create this dir */
ae63b31e
SR
1462 list_for_each_entry(dir, &tr->systems, list) {
1463 system = dir->subsystem;
dc82ec98 1464 if (strcmp(system->name, name) == 0) {
ae63b31e
SR
1465 dir->nr_events++;
1466 file->system = dir;
1467 return dir->entry;
dc82ec98 1468 }
6ecc2d1c
SR
1469 }
1470
ae63b31e
SR
1471 /* Now see if the system itself exists. */
1472 list_for_each_entry(system, &event_subsystems, list) {
1473 if (strcmp(system->name, name) == 0)
1474 break;
6ecc2d1c 1475 }
ae63b31e
SR
1476 /* Reset system variable when not found */
1477 if (&system->list == &event_subsystems)
1478 system = NULL;
6ecc2d1c 1479
ae63b31e
SR
1480 dir = kmalloc(sizeof(*dir), GFP_KERNEL);
1481 if (!dir)
1482 goto out_fail;
6ecc2d1c 1483
ae63b31e
SR
1484 if (!system) {
1485 system = create_new_subsystem(name);
1486 if (!system)
1487 goto out_free;
1488 } else
1489 __get_system(system);
1490
1491 dir->entry = debugfs_create_dir(name, parent);
1492 if (!dir->entry) {
1493 pr_warning("Failed to create system directory %s\n", name);
1494 __put_system(system);
1495 goto out_free;
6d723736
SR
1496 }
1497
ae63b31e
SR
1498 dir->tr = tr;
1499 dir->ref_count = 1;
1500 dir->nr_events = 1;
1501 dir->subsystem = system;
1502 file->system = dir;
8b372562 1503
ae63b31e 1504 entry = debugfs_create_file("filter", 0644, dir->entry, dir,
e1112b4d 1505 &ftrace_subsystem_filter_fops);
8b372562
TZ
1506 if (!entry) {
1507 kfree(system->filter);
1508 system->filter = NULL;
ae63b31e 1509 pr_warning("Could not create debugfs '%s/filter' entry\n", name);
8b372562 1510 }
e1112b4d 1511
ae63b31e 1512 trace_create_file("enable", 0644, dir->entry, dir,
f3f3f009 1513 &ftrace_system_enable_fops);
8ae79a13 1514
ae63b31e
SR
1515 list_add(&dir->list, &tr->systems);
1516
1517 return dir->entry;
1518
1519 out_free:
1520 kfree(dir);
1521 out_fail:
1522 /* Only print this message if failed on memory allocation */
1523 if (!dir || !system)
1524 pr_warning("No memory to create event subsystem %s\n",
1525 name);
1526 return NULL;
6ecc2d1c
SR
1527}
1528
1473e441 1529static int
620a30e9 1530event_create_dir(struct dentry *parent, struct ftrace_event_file *file)
1473e441 1531{
ae63b31e
SR
1532 struct ftrace_event_call *call = file->event_call;
1533 struct trace_array *tr = file->tr;
2e33af02 1534 struct list_head *head;
ae63b31e 1535 struct dentry *d_events;
de7b2973 1536 const char *name;
fd994989 1537 int ret;
1473e441 1538
6ecc2d1c
SR
1539 /*
1540 * If the trace point header did not define TRACE_SYSTEM
1541 * then the system would be called "TRACE_SYSTEM".
1542 */
ae63b31e
SR
1543 if (strcmp(call->class->system, TRACE_SYSTEM) != 0) {
1544 d_events = event_subsystem_dir(tr, call->class->system, file, parent);
1545 if (!d_events)
1546 return -ENOMEM;
1547 } else
1548 d_events = parent;
1549
de7b2973
MD
1550 name = ftrace_event_name(call);
1551 file->dir = debugfs_create_dir(name, d_events);
ae63b31e
SR
1552 if (!file->dir) {
1553 pr_warning("Could not create debugfs '%s' directory\n",
de7b2973 1554 name);
1473e441
SR
1555 return -1;
1556 }
1557
9b63776f 1558 if (call->class->reg && !(call->flags & TRACE_EVENT_FL_IGNORE_ENABLE))
ae63b31e 1559 trace_create_file("enable", 0644, file->dir, file,
620a30e9 1560 &ftrace_enable_fops);
1473e441 1561
2239291a 1562#ifdef CONFIG_PERF_EVENTS
a1d0ce82 1563 if (call->event.type && call->class->reg)
1a11126b 1564 trace_create_file("id", 0444, file->dir,
620a30e9
ON
1565 (void *)(long)call->event.type,
1566 &ftrace_event_id_fops);
2239291a 1567#endif
23725aee 1568
c9d932cf
LZ
1569 /*
1570 * Other events may have the same class. Only update
1571 * the fields if they are not already defined.
1572 */
1573 head = trace_get_fields(call);
1574 if (list_empty(head)) {
1575 ret = call->class->define_fields(call);
1576 if (ret < 0) {
1577 pr_warning("Could not initialize trace point"
de7b2973 1578 " events/%s\n", name);
ae63b31e 1579 return -1;
cf027f64
TZ
1580 }
1581 }
f306cc82 1582 trace_create_file("filter", 0644, file->dir, file,
620a30e9 1583 &ftrace_event_filter_fops);
cf027f64 1584
85f2b082
TZ
1585 trace_create_file("trigger", 0644, file->dir, file,
1586 &event_trigger_fops);
1587
ae63b31e 1588 trace_create_file("format", 0444, file->dir, call,
620a30e9 1589 &ftrace_event_format_fops);
6d723736
SR
1590
1591 return 0;
1592}
1593
ae63b31e
SR
1594static void remove_event_from_tracers(struct ftrace_event_call *call)
1595{
1596 struct ftrace_event_file *file;
1597 struct trace_array *tr;
1598
1599 do_for_each_event_file_safe(tr, file) {
ae63b31e
SR
1600 if (file->event_call != call)
1601 continue;
1602
f6a84bdc 1603 remove_event_file_dir(file);
ae63b31e
SR
1604 /*
1605 * The do_for_each_event_file_safe() is
1606 * a double loop. After finding the call for this
1607 * trace_array, we use break to jump to the next
1608 * trace_array.
1609 */
1610 break;
1611 } while_for_each_event_file();
1612}
1613
8781915a
EG
1614static void event_remove(struct ftrace_event_call *call)
1615{
ae63b31e
SR
1616 struct trace_array *tr;
1617 struct ftrace_event_file *file;
1618
1619 do_for_each_event_file(tr, file) {
1620 if (file->event_call != call)
1621 continue;
1622 ftrace_event_enable_disable(file, 0);
f306cc82 1623 destroy_preds(file);
ae63b31e
SR
1624 /*
1625 * The do_for_each_event_file() is
1626 * a double loop. After finding the call for this
1627 * trace_array, we use break to jump to the next
1628 * trace_array.
1629 */
1630 break;
1631 } while_for_each_event_file();
1632
8781915a
EG
1633 if (call->event.funcs)
1634 __unregister_ftrace_event(&call->event);
ae63b31e 1635 remove_event_from_tracers(call);
8781915a
EG
1636 list_del(&call->list);
1637}
1638
1639static int event_init(struct ftrace_event_call *call)
1640{
1641 int ret = 0;
de7b2973 1642 const char *name;
8781915a 1643
de7b2973
MD
1644 name = ftrace_event_name(call);
1645 if (WARN_ON(!name))
8781915a
EG
1646 return -EINVAL;
1647
1648 if (call->class->raw_init) {
1649 ret = call->class->raw_init(call);
1650 if (ret < 0 && ret != -ENOSYS)
1651 pr_warn("Could not initialize trace events/%s\n",
de7b2973 1652 name);
8781915a
EG
1653 }
1654
1655 return ret;
1656}
1657
67ead0a6 1658static int
ae63b31e 1659__register_event(struct ftrace_event_call *call, struct module *mod)
bd1a5c84 1660{
bd1a5c84 1661 int ret;
6d723736 1662
8781915a
EG
1663 ret = event_init(call);
1664 if (ret < 0)
1665 return ret;
701970b3 1666
ae63b31e 1667 list_add(&call->list, &ftrace_events);
67ead0a6 1668 call->mod = mod;
88f70d75 1669
ae63b31e 1670 return 0;
bd1a5c84
MH
1671}
1672
da511bf3
SRRH
1673static struct ftrace_event_file *
1674trace_create_new_event(struct ftrace_event_call *call,
1675 struct trace_array *tr)
1676{
1677 struct ftrace_event_file *file;
1678
1679 file = kmem_cache_alloc(file_cachep, GFP_TRACE);
1680 if (!file)
1681 return NULL;
1682
1683 file->event_call = call;
1684 file->tr = tr;
1685 atomic_set(&file->sm_ref, 0);
85f2b082
TZ
1686 atomic_set(&file->tm_ref, 0);
1687 INIT_LIST_HEAD(&file->triggers);
da511bf3
SRRH
1688 list_add(&file->list, &tr->events);
1689
1690 return file;
1691}
1692
ae63b31e
SR
1693/* Add an event to a trace directory */
1694static int
620a30e9 1695__trace_add_new_event(struct ftrace_event_call *call, struct trace_array *tr)
ae63b31e
SR
1696{
1697 struct ftrace_event_file *file;
1698
da511bf3 1699 file = trace_create_new_event(call, tr);
ae63b31e
SR
1700 if (!file)
1701 return -ENOMEM;
1702
620a30e9 1703 return event_create_dir(tr->event_dir, file);
ae63b31e
SR
1704}
1705
77248221
SR
1706/*
1707 * Just create a decriptor for early init. A descriptor is required
1708 * for enabling events at boot. We want to enable events before
1709 * the filesystem is initialized.
1710 */
1711static __init int
1712__trace_early_add_new_event(struct ftrace_event_call *call,
1713 struct trace_array *tr)
1714{
1715 struct ftrace_event_file *file;
1716
da511bf3 1717 file = trace_create_new_event(call, tr);
77248221
SR
1718 if (!file)
1719 return -ENOMEM;
1720
77248221
SR
1721 return 0;
1722}
1723
ae63b31e 1724struct ftrace_module_file_ops;
779c5e37 1725static void __add_event_to_tracers(struct ftrace_event_call *call);
ae63b31e 1726
bd1a5c84
MH
1727/* Add an additional event_call dynamically */
1728int trace_add_event_call(struct ftrace_event_call *call)
1729{
1730 int ret;
a8227415 1731 mutex_lock(&trace_types_lock);
bd1a5c84 1732 mutex_lock(&event_mutex);
701970b3 1733
ae63b31e
SR
1734 ret = __register_event(call, NULL);
1735 if (ret >= 0)
779c5e37 1736 __add_event_to_tracers(call);
a2ca5e03 1737
ae63b31e 1738 mutex_unlock(&event_mutex);
a8227415 1739 mutex_unlock(&trace_types_lock);
ae63b31e 1740 return ret;
a2ca5e03
FW
1741}
1742
4fead8e4 1743/*
a8227415
AL
1744 * Must be called under locking of trace_types_lock, event_mutex and
1745 * trace_event_sem.
4fead8e4 1746 */
bd1a5c84
MH
1747static void __trace_remove_event_call(struct ftrace_event_call *call)
1748{
8781915a 1749 event_remove(call);
bd1a5c84 1750 trace_destroy_fields(call);
f306cc82 1751 destroy_call_preds(call);
bd1a5c84
MH
1752}
1753
2816c551
ON
1754static int probe_remove_event_call(struct ftrace_event_call *call)
1755{
1756 struct trace_array *tr;
1757 struct ftrace_event_file *file;
1758
1759#ifdef CONFIG_PERF_EVENTS
1760 if (call->perf_refcount)
1761 return -EBUSY;
1762#endif
1763 do_for_each_event_file(tr, file) {
1764 if (file->event_call != call)
1765 continue;
1766 /*
1767 * We can't rely on ftrace_event_enable_disable(enable => 0)
1768 * we are going to do, FTRACE_EVENT_FL_SOFT_MODE can suppress
1769 * TRACE_REG_UNREGISTER.
1770 */
1771 if (file->flags & FTRACE_EVENT_FL_ENABLED)
1772 return -EBUSY;
2ba64035
SRRH
1773 /*
1774 * The do_for_each_event_file_safe() is
1775 * a double loop. After finding the call for this
1776 * trace_array, we use break to jump to the next
1777 * trace_array.
1778 */
2816c551
ON
1779 break;
1780 } while_for_each_event_file();
1781
1782 __trace_remove_event_call(call);
1783
1784 return 0;
1785}
1786
bd1a5c84 1787/* Remove an event_call */
2816c551 1788int trace_remove_event_call(struct ftrace_event_call *call)
bd1a5c84 1789{
2816c551
ON
1790 int ret;
1791
a8227415 1792 mutex_lock(&trace_types_lock);
bd1a5c84 1793 mutex_lock(&event_mutex);
52f6ad6d 1794 down_write(&trace_event_sem);
2816c551 1795 ret = probe_remove_event_call(call);
52f6ad6d 1796 up_write(&trace_event_sem);
bd1a5c84 1797 mutex_unlock(&event_mutex);
a8227415 1798 mutex_unlock(&trace_types_lock);
2816c551
ON
1799
1800 return ret;
bd1a5c84
MH
1801}
1802
1803#define for_each_event(event, start, end) \
1804 for (event = start; \
1805 (unsigned long)event < (unsigned long)end; \
1806 event++)
1807
1808#ifdef CONFIG_MODULES
1809
6d723736
SR
1810static void trace_module_add_events(struct module *mod)
1811{
e4a9ea5e 1812 struct ftrace_event_call **call, **start, **end;
6d723736 1813
45ab2813
SRRH
1814 if (!mod->num_trace_events)
1815 return;
1816
1817 /* Don't add infrastructure for mods without tracepoints */
1818 if (trace_module_has_bad_taint(mod)) {
1819 pr_err("%s: module has bad taint, not creating trace events\n",
1820 mod->name);
1821 return;
1822 }
1823
6d723736
SR
1824 start = mod->trace_events;
1825 end = mod->trace_events + mod->num_trace_events;
1826
6d723736 1827 for_each_event(call, start, end) {
ae63b31e 1828 __register_event(*call, mod);
779c5e37 1829 __add_event_to_tracers(*call);
6d723736
SR
1830 }
1831}
1832
1833static void trace_module_remove_events(struct module *mod)
1834{
1835 struct ftrace_event_call *call, *p;
575380da 1836 bool clear_trace = false;
6d723736 1837
52f6ad6d 1838 down_write(&trace_event_sem);
6d723736
SR
1839 list_for_each_entry_safe(call, p, &ftrace_events, list) {
1840 if (call->mod == mod) {
575380da
SRRH
1841 if (call->flags & TRACE_EVENT_FL_WAS_ENABLED)
1842 clear_trace = true;
bd1a5c84 1843 __trace_remove_event_call(call);
6d723736
SR
1844 }
1845 }
52f6ad6d 1846 up_write(&trace_event_sem);
9456f0fa
SR
1847
1848 /*
1849 * It is safest to reset the ring buffer if the module being unloaded
873c642f
SRRH
1850 * registered any events that were used. The only worry is if
1851 * a new module gets loaded, and takes on the same id as the events
1852 * of this module. When printing out the buffer, traced events left
1853 * over from this module may be passed to the new module events and
1854 * unexpected results may occur.
9456f0fa 1855 */
575380da 1856 if (clear_trace)
873c642f 1857 tracing_reset_all_online_cpus();
6d723736
SR
1858}
1859
61f919a1
SR
1860static int trace_module_notify(struct notifier_block *self,
1861 unsigned long val, void *data)
6d723736
SR
1862{
1863 struct module *mod = data;
1864
a8227415 1865 mutex_lock(&trace_types_lock);
6d723736
SR
1866 mutex_lock(&event_mutex);
1867 switch (val) {
1868 case MODULE_STATE_COMING:
1869 trace_module_add_events(mod);
1870 break;
1871 case MODULE_STATE_GOING:
1872 trace_module_remove_events(mod);
1873 break;
1874 }
1875 mutex_unlock(&event_mutex);
a8227415 1876 mutex_unlock(&trace_types_lock);
fd994989 1877
1473e441
SR
1878 return 0;
1879}
315326c1 1880
836d481e
ON
1881static struct notifier_block trace_module_nb = {
1882 .notifier_call = trace_module_notify,
1883 .priority = 0,
1884};
61f919a1 1885#endif /* CONFIG_MODULES */
1473e441 1886
ae63b31e
SR
1887/* Create a new event directory structure for a trace directory. */
1888static void
1889__trace_add_event_dirs(struct trace_array *tr)
1890{
ae63b31e
SR
1891 struct ftrace_event_call *call;
1892 int ret;
1893
1894 list_for_each_entry(call, &ftrace_events, list) {
620a30e9 1895 ret = __trace_add_new_event(call, tr);
ae63b31e
SR
1896 if (ret < 0)
1897 pr_warning("Could not create directory for event %s\n",
de7b2973 1898 ftrace_event_name(call));
ae63b31e
SR
1899 }
1900}
1901
7862ad18 1902struct ftrace_event_file *
3cd715de
SRRH
1903find_event_file(struct trace_array *tr, const char *system, const char *event)
1904{
1905 struct ftrace_event_file *file;
1906 struct ftrace_event_call *call;
de7b2973 1907 const char *name;
3cd715de
SRRH
1908
1909 list_for_each_entry(file, &tr->events, list) {
1910
1911 call = file->event_call;
de7b2973 1912 name = ftrace_event_name(call);
3cd715de 1913
de7b2973 1914 if (!name || !call->class || !call->class->reg)
3cd715de
SRRH
1915 continue;
1916
1917 if (call->flags & TRACE_EVENT_FL_IGNORE_ENABLE)
1918 continue;
1919
de7b2973 1920 if (strcmp(event, name) == 0 &&
3cd715de
SRRH
1921 strcmp(system, call->class->system) == 0)
1922 return file;
1923 }
1924 return NULL;
1925}
1926
2875a08b
SRRH
1927#ifdef CONFIG_DYNAMIC_FTRACE
1928
1929/* Avoid typos */
1930#define ENABLE_EVENT_STR "enable_event"
1931#define DISABLE_EVENT_STR "disable_event"
1932
1933struct event_probe_data {
1934 struct ftrace_event_file *file;
1935 unsigned long count;
1936 int ref;
1937 bool enable;
1938};
1939
3cd715de
SRRH
1940static void
1941event_enable_probe(unsigned long ip, unsigned long parent_ip, void **_data)
1942{
1943 struct event_probe_data **pdata = (struct event_probe_data **)_data;
1944 struct event_probe_data *data = *pdata;
1945
1946 if (!data)
1947 return;
1948
1949 if (data->enable)
1950 clear_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &data->file->flags);
1951 else
1952 set_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT, &data->file->flags);
1953}
1954
1955static void
1956event_enable_count_probe(unsigned long ip, unsigned long parent_ip, void **_data)
1957{
1958 struct event_probe_data **pdata = (struct event_probe_data **)_data;
1959 struct event_probe_data *data = *pdata;
1960
1961 if (!data)
1962 return;
1963
1964 if (!data->count)
1965 return;
1966
1967 /* Skip if the event is in a state we want to switch to */
1968 if (data->enable == !(data->file->flags & FTRACE_EVENT_FL_SOFT_DISABLED))
1969 return;
1970
1971 if (data->count != -1)
1972 (data->count)--;
1973
1974 event_enable_probe(ip, parent_ip, _data);
1975}
1976
1977static int
1978event_enable_print(struct seq_file *m, unsigned long ip,
1979 struct ftrace_probe_ops *ops, void *_data)
1980{
1981 struct event_probe_data *data = _data;
1982
1983 seq_printf(m, "%ps:", (void *)ip);
1984
1985 seq_printf(m, "%s:%s:%s",
1986 data->enable ? ENABLE_EVENT_STR : DISABLE_EVENT_STR,
1987 data->file->event_call->class->system,
de7b2973 1988 ftrace_event_name(data->file->event_call));
3cd715de
SRRH
1989
1990 if (data->count == -1)
1991 seq_printf(m, ":unlimited\n");
1992 else
1993 seq_printf(m, ":count=%ld\n", data->count);
1994
1995 return 0;
1996}
1997
1998static int
1999event_enable_init(struct ftrace_probe_ops *ops, unsigned long ip,
2000 void **_data)
2001{
2002 struct event_probe_data **pdata = (struct event_probe_data **)_data;
2003 struct event_probe_data *data = *pdata;
2004
2005 data->ref++;
2006 return 0;
2007}
2008
2009static void
2010event_enable_free(struct ftrace_probe_ops *ops, unsigned long ip,
2011 void **_data)
2012{
2013 struct event_probe_data **pdata = (struct event_probe_data **)_data;
2014 struct event_probe_data *data = *pdata;
2015
2016 if (WARN_ON_ONCE(data->ref <= 0))
2017 return;
2018
2019 data->ref--;
2020 if (!data->ref) {
2021 /* Remove the SOFT_MODE flag */
2022 __ftrace_event_enable_disable(data->file, 0, 1);
2023 module_put(data->file->event_call->mod);
2024 kfree(data);
2025 }
2026 *pdata = NULL;
2027}
2028
2029static struct ftrace_probe_ops event_enable_probe_ops = {
2030 .func = event_enable_probe,
2031 .print = event_enable_print,
2032 .init = event_enable_init,
2033 .free = event_enable_free,
2034};
2035
2036static struct ftrace_probe_ops event_enable_count_probe_ops = {
2037 .func = event_enable_count_probe,
2038 .print = event_enable_print,
2039 .init = event_enable_init,
2040 .free = event_enable_free,
2041};
2042
2043static struct ftrace_probe_ops event_disable_probe_ops = {
2044 .func = event_enable_probe,
2045 .print = event_enable_print,
2046 .init = event_enable_init,
2047 .free = event_enable_free,
2048};
2049
2050static struct ftrace_probe_ops event_disable_count_probe_ops = {
2051 .func = event_enable_count_probe,
2052 .print = event_enable_print,
2053 .init = event_enable_init,
2054 .free = event_enable_free,
2055};
2056
2057static int
2058event_enable_func(struct ftrace_hash *hash,
2059 char *glob, char *cmd, char *param, int enabled)
2060{
2061 struct trace_array *tr = top_trace_array();
2062 struct ftrace_event_file *file;
2063 struct ftrace_probe_ops *ops;
2064 struct event_probe_data *data;
2065 const char *system;
2066 const char *event;
2067 char *number;
2068 bool enable;
2069 int ret;
2070
dc81e5e3
YY
2071 if (!tr)
2072 return -ENODEV;
2073
3cd715de 2074 /* hash funcs only work with set_ftrace_filter */
8092e808 2075 if (!enabled || !param)
3cd715de
SRRH
2076 return -EINVAL;
2077
2078 system = strsep(&param, ":");
2079 if (!param)
2080 return -EINVAL;
2081
2082 event = strsep(&param, ":");
2083
2084 mutex_lock(&event_mutex);
2085
2086 ret = -EINVAL;
2087 file = find_event_file(tr, system, event);
2088 if (!file)
2089 goto out;
2090
2091 enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
2092
2093 if (enable)
2094 ops = param ? &event_enable_count_probe_ops : &event_enable_probe_ops;
2095 else
2096 ops = param ? &event_disable_count_probe_ops : &event_disable_probe_ops;
2097
2098 if (glob[0] == '!') {
2099 unregister_ftrace_function_probe_func(glob+1, ops);
2100 ret = 0;
2101 goto out;
2102 }
2103
2104 ret = -ENOMEM;
2105 data = kzalloc(sizeof(*data), GFP_KERNEL);
2106 if (!data)
2107 goto out;
2108
2109 data->enable = enable;
2110 data->count = -1;
2111 data->file = file;
2112
2113 if (!param)
2114 goto out_reg;
2115
2116 number = strsep(&param, ":");
2117
2118 ret = -EINVAL;
2119 if (!strlen(number))
2120 goto out_free;
2121
2122 /*
2123 * We use the callback data field (which is a pointer)
2124 * as our counter.
2125 */
2126 ret = kstrtoul(number, 0, &data->count);
2127 if (ret)
2128 goto out_free;
2129
2130 out_reg:
2131 /* Don't let event modules unload while probe registered */
2132 ret = try_module_get(file->event_call->mod);
6ed01066
MH
2133 if (!ret) {
2134 ret = -EBUSY;
3cd715de 2135 goto out_free;
6ed01066 2136 }
3cd715de
SRRH
2137
2138 ret = __ftrace_event_enable_disable(file, 1, 1);
2139 if (ret < 0)
2140 goto out_put;
2141 ret = register_ftrace_function_probe(glob, ops, data);
ff305ded
SRRH
2142 /*
2143 * The above returns on success the # of functions enabled,
2144 * but if it didn't find any functions it returns zero.
2145 * Consider no functions a failure too.
2146 */
a5b85bd1
MH
2147 if (!ret) {
2148 ret = -ENOENT;
3cd715de 2149 goto out_disable;
ff305ded
SRRH
2150 } else if (ret < 0)
2151 goto out_disable;
2152 /* Just return zero, not the number of enabled functions */
2153 ret = 0;
3cd715de
SRRH
2154 out:
2155 mutex_unlock(&event_mutex);
2156 return ret;
2157
2158 out_disable:
2159 __ftrace_event_enable_disable(file, 0, 1);
2160 out_put:
2161 module_put(file->event_call->mod);
2162 out_free:
2163 kfree(data);
2164 goto out;
2165}
2166
2167static struct ftrace_func_command event_enable_cmd = {
2168 .name = ENABLE_EVENT_STR,
2169 .func = event_enable_func,
2170};
2171
2172static struct ftrace_func_command event_disable_cmd = {
2173 .name = DISABLE_EVENT_STR,
2174 .func = event_enable_func,
2175};
2176
2177static __init int register_event_cmds(void)
2178{
2179 int ret;
2180
2181 ret = register_ftrace_command(&event_enable_cmd);
2182 if (WARN_ON(ret < 0))
2183 return ret;
2184 ret = register_ftrace_command(&event_disable_cmd);
2185 if (WARN_ON(ret < 0))
2186 unregister_ftrace_command(&event_enable_cmd);
2187 return ret;
2188}
2189#else
2190static inline int register_event_cmds(void) { return 0; }
2191#endif /* CONFIG_DYNAMIC_FTRACE */
2192
77248221
SR
2193/*
2194 * The top level array has already had its ftrace_event_file
2195 * descriptors created in order to allow for early events to
2196 * be recorded. This function is called after the debugfs has been
2197 * initialized, and we now have to create the files associated
2198 * to the events.
2199 */
2200static __init void
2201__trace_early_add_event_dirs(struct trace_array *tr)
2202{
2203 struct ftrace_event_file *file;
2204 int ret;
2205
2206
2207 list_for_each_entry(file, &tr->events, list) {
620a30e9 2208 ret = event_create_dir(tr->event_dir, file);
77248221
SR
2209 if (ret < 0)
2210 pr_warning("Could not create directory for event %s\n",
de7b2973 2211 ftrace_event_name(file->event_call));
77248221
SR
2212 }
2213}
2214
2215/*
2216 * For early boot up, the top trace array requires to have
2217 * a list of events that can be enabled. This must be done before
2218 * the filesystem is set up in order to allow events to be traced
2219 * early.
2220 */
2221static __init void
2222__trace_early_add_events(struct trace_array *tr)
2223{
2224 struct ftrace_event_call *call;
2225 int ret;
2226
2227 list_for_each_entry(call, &ftrace_events, list) {
2228 /* Early boot up should not have any modules loaded */
2229 if (WARN_ON_ONCE(call->mod))
2230 continue;
2231
2232 ret = __trace_early_add_new_event(call, tr);
2233 if (ret < 0)
2234 pr_warning("Could not create early event %s\n",
de7b2973 2235 ftrace_event_name(call));
77248221
SR
2236 }
2237}
2238
0c8916c3
SR
2239/* Remove the event directory structure for a trace directory. */
2240static void
2241__trace_remove_event_dirs(struct trace_array *tr)
2242{
2243 struct ftrace_event_file *file, *next;
2244
f6a84bdc
ON
2245 list_for_each_entry_safe(file, next, &tr->events, list)
2246 remove_event_file_dir(file);
0c8916c3
SR
2247}
2248
779c5e37 2249static void __add_event_to_tracers(struct ftrace_event_call *call)
ae63b31e
SR
2250{
2251 struct trace_array *tr;
2252
620a30e9
ON
2253 list_for_each_entry(tr, &ftrace_trace_arrays, list)
2254 __trace_add_new_event(call, tr);
ae63b31e
SR
2255}
2256
e4a9ea5e
SR
2257extern struct ftrace_event_call *__start_ftrace_events[];
2258extern struct ftrace_event_call *__stop_ftrace_events[];
a59fd602 2259
020e5f85
LZ
2260static char bootup_event_buf[COMMAND_LINE_SIZE] __initdata;
2261
2262static __init int setup_trace_event(char *str)
2263{
2264 strlcpy(bootup_event_buf, str, COMMAND_LINE_SIZE);
55034cd6
SRRH
2265 ring_buffer_expanded = true;
2266 tracing_selftest_disabled = true;
020e5f85
LZ
2267
2268 return 1;
2269}
2270__setup("trace_event=", setup_trace_event);
2271
77248221
SR
2272/* Expects to have event_mutex held when called */
2273static int
2274create_event_toplevel_files(struct dentry *parent, struct trace_array *tr)
ae63b31e
SR
2275{
2276 struct dentry *d_events;
2277 struct dentry *entry;
2278
2279 entry = debugfs_create_file("set_event", 0644, parent,
2280 tr, &ftrace_set_event_fops);
2281 if (!entry) {
2282 pr_warning("Could not create debugfs 'set_event' entry\n");
2283 return -ENOMEM;
2284 }
2285
2286 d_events = debugfs_create_dir("events", parent);
277ba044 2287 if (!d_events) {
ae63b31e 2288 pr_warning("Could not create debugfs 'events' directory\n");
277ba044
SR
2289 return -ENOMEM;
2290 }
ae63b31e
SR
2291
2292 /* ring buffer internal formats */
2293 trace_create_file("header_page", 0444, d_events,
2294 ring_buffer_print_page_header,
2295 &ftrace_show_header_fops);
2296
2297 trace_create_file("header_event", 0444, d_events,
2298 ring_buffer_print_entry_header,
2299 &ftrace_show_header_fops);
2300
2301 trace_create_file("enable", 0644, d_events,
2302 tr, &ftrace_tr_enable_fops);
2303
2304 tr->event_dir = d_events;
77248221
SR
2305
2306 return 0;
2307}
2308
2309/**
2310 * event_trace_add_tracer - add a instance of a trace_array to events
2311 * @parent: The parent dentry to place the files/directories for events in
2312 * @tr: The trace array associated with these events
2313 *
2314 * When a new instance is created, it needs to set up its events
2315 * directory, as well as other files associated with events. It also
2316 * creates the event hierachry in the @parent/events directory.
2317 *
2318 * Returns 0 on success.
2319 */
2320int event_trace_add_tracer(struct dentry *parent, struct trace_array *tr)
2321{
2322 int ret;
2323
2324 mutex_lock(&event_mutex);
2325
2326 ret = create_event_toplevel_files(parent, tr);
2327 if (ret)
2328 goto out_unlock;
2329
52f6ad6d 2330 down_write(&trace_event_sem);
ae63b31e 2331 __trace_add_event_dirs(tr);
52f6ad6d 2332 up_write(&trace_event_sem);
277ba044 2333
77248221 2334 out_unlock:
277ba044 2335 mutex_unlock(&event_mutex);
ae63b31e 2336
77248221
SR
2337 return ret;
2338}
2339
2340/*
2341 * The top trace array already had its file descriptors created.
2342 * Now the files themselves need to be created.
2343 */
2344static __init int
2345early_event_add_tracer(struct dentry *parent, struct trace_array *tr)
2346{
2347 int ret;
2348
2349 mutex_lock(&event_mutex);
2350
2351 ret = create_event_toplevel_files(parent, tr);
2352 if (ret)
2353 goto out_unlock;
2354
52f6ad6d 2355 down_write(&trace_event_sem);
77248221 2356 __trace_early_add_event_dirs(tr);
52f6ad6d 2357 up_write(&trace_event_sem);
77248221
SR
2358
2359 out_unlock:
2360 mutex_unlock(&event_mutex);
2361
2362 return ret;
ae63b31e
SR
2363}
2364
0c8916c3
SR
2365int event_trace_del_tracer(struct trace_array *tr)
2366{
0c8916c3
SR
2367 mutex_lock(&event_mutex);
2368
85f2b082
TZ
2369 /* Disable any event triggers and associated soft-disabled events */
2370 clear_event_triggers(tr);
2371
2a6c24af
SRRH
2372 /* Disable any running events */
2373 __ftrace_set_clr_event_nolock(tr, NULL, NULL, NULL, 0);
2374
3ccb0123
SR
2375 /* Access to events are within rcu_read_lock_sched() */
2376 synchronize_sched();
2377
52f6ad6d 2378 down_write(&trace_event_sem);
0c8916c3
SR
2379 __trace_remove_event_dirs(tr);
2380 debugfs_remove_recursive(tr->event_dir);
52f6ad6d 2381 up_write(&trace_event_sem);
0c8916c3
SR
2382
2383 tr->event_dir = NULL;
2384
2385 mutex_unlock(&event_mutex);
2386
2387 return 0;
2388}
2389
d1a29143
SR
2390static __init int event_trace_memsetup(void)
2391{
2392 field_cachep = KMEM_CACHE(ftrace_event_field, SLAB_PANIC);
2393 file_cachep = KMEM_CACHE(ftrace_event_file, SLAB_PANIC);
2394 return 0;
2395}
2396
8781915a
EG
2397static __init int event_trace_enable(void)
2398{
ae63b31e 2399 struct trace_array *tr = top_trace_array();
8781915a
EG
2400 struct ftrace_event_call **iter, *call;
2401 char *buf = bootup_event_buf;
2402 char *token;
2403 int ret;
2404
dc81e5e3
YY
2405 if (!tr)
2406 return -ENODEV;
2407
8781915a
EG
2408 for_each_event(iter, __start_ftrace_events, __stop_ftrace_events) {
2409
2410 call = *iter;
2411 ret = event_init(call);
2412 if (!ret)
2413 list_add(&call->list, &ftrace_events);
2414 }
2415
77248221
SR
2416 /*
2417 * We need the top trace array to have a working set of trace
2418 * points at early init, before the debug files and directories
2419 * are created. Create the file entries now, and attach them
2420 * to the actual file dentries later.
2421 */
2422 __trace_early_add_events(tr);
2423
8781915a
EG
2424 while (true) {
2425 token = strsep(&buf, ",");
2426
2427 if (!token)
2428 break;
2429 if (!*token)
2430 continue;
2431
ae63b31e 2432 ret = ftrace_set_clr_event(tr, token, 1);
8781915a
EG
2433 if (ret)
2434 pr_warn("Failed to enable trace event: %s\n", token);
2435 }
81698831
SR
2436
2437 trace_printk_start_comm();
2438
3cd715de
SRRH
2439 register_event_cmds();
2440
85f2b082
TZ
2441 register_trigger_cmds();
2442
8781915a
EG
2443 return 0;
2444}
2445
b77e38aa
SR
2446static __init int event_trace_init(void)
2447{
ae63b31e 2448 struct trace_array *tr;
b77e38aa
SR
2449 struct dentry *d_tracer;
2450 struct dentry *entry;
6d723736 2451 int ret;
b77e38aa 2452
ae63b31e 2453 tr = top_trace_array();
dc81e5e3
YY
2454 if (!tr)
2455 return -ENODEV;
ae63b31e 2456
b77e38aa
SR
2457 d_tracer = tracing_init_dentry();
2458 if (!d_tracer)
2459 return 0;
2460
2314c4ae 2461 entry = debugfs_create_file("available_events", 0444, d_tracer,
ae63b31e 2462 tr, &ftrace_avail_fops);
2314c4ae
SR
2463 if (!entry)
2464 pr_warning("Could not create debugfs "
2465 "'available_events' entry\n");
2466
8728fe50
LZ
2467 if (trace_define_common_fields())
2468 pr_warning("tracing: Failed to allocate common fields");
2469
77248221 2470 ret = early_event_add_tracer(d_tracer, tr);
ae63b31e
SR
2471 if (ret)
2472 return ret;
020e5f85 2473
836d481e 2474#ifdef CONFIG_MODULES
6d723736 2475 ret = register_module_notifier(&trace_module_nb);
55379376 2476 if (ret)
6d723736 2477 pr_warning("Failed to register trace events module notifier\n");
836d481e 2478#endif
b77e38aa
SR
2479 return 0;
2480}
d1a29143 2481early_initcall(event_trace_memsetup);
8781915a 2482core_initcall(event_trace_enable);
b77e38aa 2483fs_initcall(event_trace_init);
e6187007
SR
2484
2485#ifdef CONFIG_FTRACE_STARTUP_TEST
2486
2487static DEFINE_SPINLOCK(test_spinlock);
2488static DEFINE_SPINLOCK(test_spinlock_irq);
2489static DEFINE_MUTEX(test_mutex);
2490
2491static __init void test_work(struct work_struct *dummy)
2492{
2493 spin_lock(&test_spinlock);
2494 spin_lock_irq(&test_spinlock_irq);
2495 udelay(1);
2496 spin_unlock_irq(&test_spinlock_irq);
2497 spin_unlock(&test_spinlock);
2498
2499 mutex_lock(&test_mutex);
2500 msleep(1);
2501 mutex_unlock(&test_mutex);
2502}
2503
2504static __init int event_test_thread(void *unused)
2505{
2506 void *test_malloc;
2507
2508 test_malloc = kmalloc(1234, GFP_KERNEL);
2509 if (!test_malloc)
2510 pr_info("failed to kmalloc\n");
2511
2512 schedule_on_each_cpu(test_work);
2513
2514 kfree(test_malloc);
2515
2516 set_current_state(TASK_INTERRUPTIBLE);
2517 while (!kthread_should_stop())
2518 schedule();
2519
2520 return 0;
2521}
2522
2523/*
2524 * Do various things that may trigger events.
2525 */
2526static __init void event_test_stuff(void)
2527{
2528 struct task_struct *test_thread;
2529
2530 test_thread = kthread_run(event_test_thread, NULL, "test-events");
2531 msleep(1);
2532 kthread_stop(test_thread);
2533}
2534
2535/*
2536 * For every trace event defined, we will test each trace point separately,
2537 * and then by groups, and finally all trace points.
2538 */
9ea21c1e 2539static __init void event_trace_self_tests(void)
e6187007 2540{
ae63b31e
SR
2541 struct ftrace_subsystem_dir *dir;
2542 struct ftrace_event_file *file;
e6187007
SR
2543 struct ftrace_event_call *call;
2544 struct event_subsystem *system;
ae63b31e 2545 struct trace_array *tr;
e6187007
SR
2546 int ret;
2547
ae63b31e 2548 tr = top_trace_array();
dc81e5e3
YY
2549 if (!tr)
2550 return;
ae63b31e 2551
e6187007
SR
2552 pr_info("Running tests on trace events:\n");
2553
ae63b31e
SR
2554 list_for_each_entry(file, &tr->events, list) {
2555
2556 call = file->event_call;
e6187007 2557
2239291a
SR
2558 /* Only test those that have a probe */
2559 if (!call->class || !call->class->probe)
e6187007
SR
2560 continue;
2561
1f5a6b45
SR
2562/*
2563 * Testing syscall events here is pretty useless, but
2564 * we still do it if configured. But this is time consuming.
2565 * What we really need is a user thread to perform the
2566 * syscalls as we test.
2567 */
2568#ifndef CONFIG_EVENT_TRACE_TEST_SYSCALLS
8f082018
SR
2569 if (call->class->system &&
2570 strcmp(call->class->system, "syscalls") == 0)
1f5a6b45
SR
2571 continue;
2572#endif
2573
de7b2973 2574 pr_info("Testing event %s: ", ftrace_event_name(call));
e6187007
SR
2575
2576 /*
2577 * If an event is already enabled, someone is using
2578 * it and the self test should not be on.
2579 */
ae63b31e 2580 if (file->flags & FTRACE_EVENT_FL_ENABLED) {
e6187007
SR
2581 pr_warning("Enabled event during self test!\n");
2582 WARN_ON_ONCE(1);
2583 continue;
2584 }
2585
ae63b31e 2586 ftrace_event_enable_disable(file, 1);
e6187007 2587 event_test_stuff();
ae63b31e 2588 ftrace_event_enable_disable(file, 0);
e6187007
SR
2589
2590 pr_cont("OK\n");
2591 }
2592
2593 /* Now test at the sub system level */
2594
2595 pr_info("Running tests on trace event systems:\n");
2596
ae63b31e
SR
2597 list_for_each_entry(dir, &tr->systems, list) {
2598
2599 system = dir->subsystem;
e6187007
SR
2600
2601 /* the ftrace system is special, skip it */
2602 if (strcmp(system->name, "ftrace") == 0)
2603 continue;
2604
2605 pr_info("Testing event system %s: ", system->name);
2606
ae63b31e 2607 ret = __ftrace_set_clr_event(tr, NULL, system->name, NULL, 1);
e6187007
SR
2608 if (WARN_ON_ONCE(ret)) {
2609 pr_warning("error enabling system %s\n",
2610 system->name);
2611 continue;
2612 }
2613
2614 event_test_stuff();
2615
ae63b31e 2616 ret = __ftrace_set_clr_event(tr, NULL, system->name, NULL, 0);
76bab1b7 2617 if (WARN_ON_ONCE(ret)) {
e6187007
SR
2618 pr_warning("error disabling system %s\n",
2619 system->name);
76bab1b7
YL
2620 continue;
2621 }
e6187007
SR
2622
2623 pr_cont("OK\n");
2624 }
2625
2626 /* Test with all events enabled */
2627
2628 pr_info("Running tests on all trace events:\n");
2629 pr_info("Testing all events: ");
2630
ae63b31e 2631 ret = __ftrace_set_clr_event(tr, NULL, NULL, NULL, 1);
e6187007 2632 if (WARN_ON_ONCE(ret)) {
e6187007 2633 pr_warning("error enabling all events\n");
9ea21c1e 2634 return;
e6187007
SR
2635 }
2636
2637 event_test_stuff();
2638
2639 /* reset sysname */
ae63b31e 2640 ret = __ftrace_set_clr_event(tr, NULL, NULL, NULL, 0);
e6187007
SR
2641 if (WARN_ON_ONCE(ret)) {
2642 pr_warning("error disabling all events\n");
9ea21c1e 2643 return;
e6187007
SR
2644 }
2645
2646 pr_cont("OK\n");
9ea21c1e
SR
2647}
2648
2649#ifdef CONFIG_FUNCTION_TRACER
2650
245b2e70 2651static DEFINE_PER_CPU(atomic_t, ftrace_test_event_disable);
9ea21c1e
SR
2652
2653static void
2f5f6ad9 2654function_test_events_call(unsigned long ip, unsigned long parent_ip,
a1e2e31d 2655 struct ftrace_ops *op, struct pt_regs *pt_regs)
9ea21c1e
SR
2656{
2657 struct ring_buffer_event *event;
e77405ad 2658 struct ring_buffer *buffer;
9ea21c1e
SR
2659 struct ftrace_entry *entry;
2660 unsigned long flags;
2661 long disabled;
9ea21c1e
SR
2662 int cpu;
2663 int pc;
2664
2665 pc = preempt_count();
5168ae50 2666 preempt_disable_notrace();
9ea21c1e 2667 cpu = raw_smp_processor_id();
245b2e70 2668 disabled = atomic_inc_return(&per_cpu(ftrace_test_event_disable, cpu));
9ea21c1e
SR
2669
2670 if (disabled != 1)
2671 goto out;
2672
2673 local_save_flags(flags);
2674
e77405ad
SR
2675 event = trace_current_buffer_lock_reserve(&buffer,
2676 TRACE_FN, sizeof(*entry),
9ea21c1e
SR
2677 flags, pc);
2678 if (!event)
2679 goto out;
2680 entry = ring_buffer_event_data(event);
2681 entry->ip = ip;
2682 entry->parent_ip = parent_ip;
2683
0d5c6e1c 2684 trace_buffer_unlock_commit(buffer, event, flags, pc);
9ea21c1e
SR
2685
2686 out:
245b2e70 2687 atomic_dec(&per_cpu(ftrace_test_event_disable, cpu));
5168ae50 2688 preempt_enable_notrace();
9ea21c1e
SR
2689}
2690
2691static struct ftrace_ops trace_ops __initdata =
2692{
2693 .func = function_test_events_call,
4740974a 2694 .flags = FTRACE_OPS_FL_RECURSION_SAFE,
9ea21c1e
SR
2695};
2696
2697static __init void event_trace_self_test_with_function(void)
2698{
17bb615a
SR
2699 int ret;
2700 ret = register_ftrace_function(&trace_ops);
2701 if (WARN_ON(ret < 0)) {
2702 pr_info("Failed to enable function tracer for event tests\n");
2703 return;
2704 }
9ea21c1e
SR
2705 pr_info("Running tests again, along with the function tracer\n");
2706 event_trace_self_tests();
2707 unregister_ftrace_function(&trace_ops);
2708}
2709#else
2710static __init void event_trace_self_test_with_function(void)
2711{
2712}
2713#endif
2714
2715static __init int event_trace_self_tests_init(void)
2716{
020e5f85
LZ
2717 if (!tracing_selftest_disabled) {
2718 event_trace_self_tests();
2719 event_trace_self_test_with_function();
2720 }
e6187007
SR
2721
2722 return 0;
2723}
2724
28d20e2d 2725late_initcall(event_trace_self_tests_init);
e6187007
SR
2726
2727#endif
This page took 0.421049 seconds and 5 git commands to generate.