trace_events.c 28.3 KB
Newer Older
1 2 3 4 5
/*
 * event tracer
 *
 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
 *
6 7 8
 *  - Added format output of fields of the trace point.
 *    This was based off of work by Tom Zanussi <tzanussi@gmail.com>.
 *
9 10
 */

11 12 13
#include <linux/workqueue.h>
#include <linux/spinlock.h>
#include <linux/kthread.h>
14 15 16 17
#include <linux/debugfs.h>
#include <linux/uaccess.h>
#include <linux/module.h>
#include <linux/ctype.h>
18
#include <linux/delay.h>
19

20
#include "trace_output.h"
21

22 23
#define TRACE_SYSTEM "TRACE_SYSTEM"

24
DEFINE_MUTEX(event_mutex);
25

26 27
LIST_HEAD(ftrace_events);

28
int trace_define_field(struct ftrace_event_call *call, char *type,
29
		       char *name, int offset, int size, int is_signed)
30 31 32
{
	struct ftrace_event_field *field;

33
	field = kzalloc(sizeof(*field), GFP_KERNEL);
34 35
	if (!field)
		goto err;
36

37 38 39
	field->name = kstrdup(name, GFP_KERNEL);
	if (!field->name)
		goto err;
40

41 42 43
	field->type = kstrdup(type, GFP_KERNEL);
	if (!field->type)
		goto err;
44

45 46
	field->offset = offset;
	field->size = size;
47
	field->is_signed = is_signed;
48 49 50
	list_add(&field->link, &call->fields);

	return 0;
51

52 53 54 55 56 57
err:
	if (field) {
		kfree(field->name);
		kfree(field->type);
	}
	kfree(field);
58

59 60
	return -ENOMEM;
}
61
EXPORT_SYMBOL_GPL(trace_define_field);
62

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
#ifdef CONFIG_MODULES

static void trace_destroy_fields(struct ftrace_event_call *call)
{
	struct ftrace_event_field *field, *next;

	list_for_each_entry_safe(field, next, &call->fields, link) {
		list_del(&field->link);
		kfree(field->type);
		kfree(field->name);
		kfree(field);
	}
}

#endif /* CONFIG_MODULES */

79 80
static void ftrace_clear_events(void)
{
81
	struct ftrace_event_call *call;
82

83
	mutex_lock(&event_mutex);
84
	list_for_each_entry(call, &ftrace_events, list) {
85 86 87

		if (call->enabled) {
			call->enabled = 0;
88
			tracing_stop_cmdline_record();
89 90 91
			call->unregfunc();
		}
	}
92
	mutex_unlock(&event_mutex);
93 94
}

95 96 97 98 99 100 101 102
static void ftrace_event_enable_disable(struct ftrace_event_call *call,
					int enable)
{

	switch (enable) {
	case 0:
		if (call->enabled) {
			call->enabled = 0;
103
			tracing_stop_cmdline_record();
104 105 106 107
			call->unregfunc();
		}
		break;
	case 1:
108
		if (!call->enabled) {
109
			call->enabled = 1;
110
			tracing_start_cmdline_record();
111 112 113 114 115 116
			call->regfunc();
		}
		break;
	}
}

117 118 119 120 121
/*
 * __ftrace_set_clr_event(NULL, NULL, NULL, set) will set/unset all events.
 */
static int __ftrace_set_clr_event(const char *match, const char *sub,
				  const char *event, int set)
122
{
123
	struct ftrace_event_call *call;
124
	int ret = -EINVAL;
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

	mutex_lock(&event_mutex);
	list_for_each_entry(call, &ftrace_events, list) {

		if (!call->name || !call->regfunc)
			continue;

		if (match &&
		    strcmp(match, call->name) != 0 &&
		    strcmp(match, call->system) != 0)
			continue;

		if (sub && strcmp(sub, call->system) != 0)
			continue;

		if (event && strcmp(event, call->name) != 0)
			continue;

		ftrace_event_enable_disable(call, set);

		ret = 0;
	}
	mutex_unlock(&event_mutex);

	return ret;
}

static int ftrace_set_clr_event(char *buf, int set)
{
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
	char *event = NULL, *sub = NULL, *match;

	/*
	 * The buf format can be <subsystem>:<event-name>
	 *  *:<event-name> means any event by that name.
	 *  :<event-name> is the same.
	 *
	 *  <subsystem>:* means all events in that subsystem
	 *  <subsystem>: means the same.
	 *
	 *  <name> (no ':') means all events in a subsystem with
	 *  the name <name> or any event that matches <name>
	 */

	match = strsep(&buf, ":");
	if (buf) {
		sub = match;
		event = buf;
		match = NULL;

		if (!strlen(sub) || strcmp(sub, "*") == 0)
			sub = NULL;
		if (!strlen(event) || strcmp(event, "*") == 0)
			event = NULL;
	}
179

180
	return __ftrace_set_clr_event(match, sub, event, set);
181 182
}

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
/**
 * trace_set_clr_event - enable or disable an event
 * @system: system name to match (NULL for any system)
 * @event: event name to match (NULL for all events, within system)
 * @set: 1 to enable, 0 to disable
 *
 * This is a way for other parts of the kernel to enable or disable
 * event recording.
 *
 * Returns 0 on success, -EINVAL if the parameters do not match any
 * registered events.
 */
int trace_set_clr_event(const char *system, const char *event, int set)
{
	return __ftrace_set_clr_event(NULL, system, event, set);
}

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
/* 128 should be much more than enough */
#define EVENT_BUF_SIZE		127

static ssize_t
ftrace_event_write(struct file *file, const char __user *ubuf,
		   size_t cnt, loff_t *ppos)
{
	size_t read = 0;
	int i, set = 1;
	ssize_t ret;
	char *buf;
	char ch;

	if (!cnt || cnt < 0)
		return 0;

216 217 218 219
	ret = tracing_update_buffers();
	if (ret < 0)
		return ret;

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
	ret = get_user(ch, ubuf++);
	if (ret)
		return ret;
	read++;
	cnt--;

	/* skip white space */
	while (cnt && isspace(ch)) {
		ret = get_user(ch, ubuf++);
		if (ret)
			return ret;
		read++;
		cnt--;
	}

	/* Only white space found? */
	if (isspace(ch)) {
		file->f_pos += read;
		ret = read;
		return ret;
	}

	buf = kmalloc(EVENT_BUF_SIZE+1, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;

	if (cnt > EVENT_BUF_SIZE)
		cnt = EVENT_BUF_SIZE;

	i = 0;
	while (cnt && !isspace(ch)) {
		if (!i && ch == '!')
			set = 0;
		else
			buf[i++] = ch;

		ret = get_user(ch, ubuf++);
		if (ret)
			goto out_free;
		read++;
		cnt--;
	}
	buf[i] = 0;

	file->f_pos += read;

	ret = ftrace_set_clr_event(buf, set);
	if (ret)
		goto out_free;

	ret = read;

 out_free:
	kfree(buf);

	return ret;
}

static void *
t_next(struct seq_file *m, void *v, loff_t *pos)
{
281 282
	struct list_head *list = m->private;
	struct ftrace_event_call *call;
283 284 285

	(*pos)++;

286
	for (;;) {
287
		if (list == &ftrace_events)
288 289
			return NULL;

290 291
		call = list_entry(list, struct ftrace_event_call, list);

292 293 294 295 296 297 298
		/*
		 * The ftrace subsystem is for showing formats only.
		 * They can not be enabled or disabled via the event files.
		 */
		if (call->regfunc)
			break;

299
		list = list->next;
300
	}
301

302
	m->private = list->next;
303 304 305 306 307 308

	return call;
}

static void *t_start(struct seq_file *m, loff_t *pos)
{
309 310 311
	mutex_lock(&event_mutex);
	if (*pos == 0)
		m->private = ftrace_events.next;
312 313 314 315 316 317
	return t_next(m, NULL, pos);
}

static void *
s_next(struct seq_file *m, void *v, loff_t *pos)
{
318 319
	struct list_head *list = m->private;
	struct ftrace_event_call *call;
320 321 322 323

	(*pos)++;

 retry:
324
	if (list == &ftrace_events)
325 326
		return NULL;

327 328
	call = list_entry(list, struct ftrace_event_call, list);

329
	if (!call->enabled) {
330
		list = list->next;
331 332 333
		goto retry;
	}

334
	m->private = list->next;
335 336 337 338 339 340

	return call;
}

static void *s_start(struct seq_file *m, loff_t *pos)
{
341 342 343
	mutex_lock(&event_mutex);
	if (*pos == 0)
		m->private = ftrace_events.next;
344 345 346 347 348 349 350
	return s_next(m, NULL, pos);
}

static int t_show(struct seq_file *m, void *v)
{
	struct ftrace_event_call *call = v;

351 352
	if (strcmp(call->system, TRACE_SYSTEM) != 0)
		seq_printf(m, "%s:", call->system);
353 354 355 356 357 358 359
	seq_printf(m, "%s\n", call->name);

	return 0;
}

static void t_stop(struct seq_file *m, void *p)
{
360
	mutex_unlock(&event_mutex);
361 362 363 364 365 366 367 368 369 370 371 372
}

static int
ftrace_event_seq_open(struct inode *inode, struct file *file)
{
	const struct seq_operations *seq_ops;

	if ((file->f_mode & FMODE_WRITE) &&
	    !(file->f_flags & O_APPEND))
		ftrace_clear_events();

	seq_ops = inode->i_private;
373
	return seq_open(file, seq_ops);
374 375
}

376 377 378 379 380 381 382
static ssize_t
event_enable_read(struct file *filp, char __user *ubuf, size_t cnt,
		  loff_t *ppos)
{
	struct ftrace_event_call *call = filp->private_data;
	char *buf;

383
	if (call->enabled)
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
		buf = "1\n";
	else
		buf = "0\n";

	return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
}

static ssize_t
event_enable_write(struct file *filp, const char __user *ubuf, size_t cnt,
		   loff_t *ppos)
{
	struct ftrace_event_call *call = filp->private_data;
	char buf[64];
	unsigned long val;
	int ret;

	if (cnt >= sizeof(buf))
		return -EINVAL;

	if (copy_from_user(&buf, ubuf, cnt))
		return -EFAULT;

	buf[cnt] = 0;

	ret = strict_strtoul(buf, 10, &val);
	if (ret < 0)
		return ret;

412 413 414 415
	ret = tracing_update_buffers();
	if (ret < 0)
		return ret;

416 417 418
	switch (val) {
	case 0:
	case 1:
419
		mutex_lock(&event_mutex);
420
		ftrace_event_enable_disable(call, val);
421
		mutex_unlock(&event_mutex);
422 423 424 425 426 427 428 429 430 431 432
		break;

	default:
		return -EINVAL;
	}

	*ppos += cnt;

	return cnt;
}

433 434 435 436
static ssize_t
system_enable_read(struct file *filp, char __user *ubuf, size_t cnt,
		   loff_t *ppos)
{
437
	const char set_to_char[4] = { '?', '0', '1', 'X' };
438 439 440
	const char *system = filp->private_data;
	struct ftrace_event_call *call;
	char buf[2];
441
	int set = 0;
442 443 444 445 446 447 448
	int ret;

	mutex_lock(&event_mutex);
	list_for_each_entry(call, &ftrace_events, list) {
		if (!call->name || !call->regfunc)
			continue;

449
		if (system && strcmp(call->system, system) != 0)
450 451 452 453 454 455 456
			continue;

		/*
		 * We need to find out if all the events are set
		 * or if all events or cleared, or if we have
		 * a mixture.
		 */
457 458
		set |= (1 << !!call->enabled);

459 460 461
		/*
		 * If we have a mixture, no need to look further.
		 */
462
		if (set == 3)
463 464 465 466
			break;
	}
	mutex_unlock(&event_mutex);

467
	buf[0] = set_to_char[set];
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
	buf[1] = '\n';

	ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);

	return ret;
}

static ssize_t
system_enable_write(struct file *filp, const char __user *ubuf, size_t cnt,
		    loff_t *ppos)
{
	const char *system = filp->private_data;
	unsigned long val;
	char buf[64];
	ssize_t ret;

	if (cnt >= sizeof(buf))
		return -EINVAL;

	if (copy_from_user(&buf, ubuf, cnt))
		return -EFAULT;

	buf[cnt] = 0;

	ret = strict_strtoul(buf, 10, &val);
	if (ret < 0)
		return ret;

	ret = tracing_update_buffers();
	if (ret < 0)
		return ret;

500
	if (val != 0 && val != 1)
501 502
		return -EINVAL;

503
	ret = __ftrace_set_clr_event(NULL, system, NULL, val);
504
	if (ret)
505
		goto out;
506 507 508

	ret = cnt;

509
out:
510 511 512 513 514
	*ppos += cnt;

	return ret;
}

515 516
extern char *__bad_type_size(void);

517
#undef FIELD
518
#define FIELD(type, name)						\
519
	sizeof(type) != sizeof(field.name) ? __bad_type_size() :	\
520 521
	#type, "common_" #name, offsetof(typeof(field), name),		\
		sizeof(field.name)
522 523 524 525 526 527 528

static int trace_write_header(struct trace_seq *s)
{
	struct trace_entry field;

	/* struct trace_entry */
	return trace_seq_printf(s,
529 530 531 532 533
				"\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n"
				"\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n"
				"\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n"
				"\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n"
				"\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n"
534
				"\n",
535
				FIELD(unsigned short, type),
536 537 538 539 540
				FIELD(unsigned char, flags),
				FIELD(unsigned char, preempt_count),
				FIELD(int, pid),
				FIELD(int, tgid));
}
541

542 543 544 545 546 547 548 549 550
static ssize_t
event_format_read(struct file *filp, char __user *ubuf, size_t cnt,
		  loff_t *ppos)
{
	struct ftrace_event_call *call = filp->private_data;
	struct trace_seq *s;
	char *buf;
	int r;

551 552 553
	if (*ppos)
		return 0;

554 555 556 557 558 559
	s = kmalloc(sizeof(*s), GFP_KERNEL);
	if (!s)
		return -ENOMEM;

	trace_seq_init(s);

560 561 562 563 564
	/* If any of the first writes fail, so will the show_format. */

	trace_seq_printf(s, "name: %s\n", call->name);
	trace_seq_printf(s, "ID: %d\n", call->id);
	trace_seq_printf(s, "format:\n");
565 566
	trace_write_header(s);

567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
	r = call->show_format(s);
	if (!r) {
		/*
		 * ug!  The format output is bigger than a PAGE!!
		 */
		buf = "FORMAT TOO BIG\n";
		r = simple_read_from_buffer(ubuf, cnt, ppos,
					      buf, strlen(buf));
		goto out;
	}

	r = simple_read_from_buffer(ubuf, cnt, ppos,
				    s->buffer, s->len);
 out:
	kfree(s);
	return r;
}

585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
static ssize_t
event_id_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
{
	struct ftrace_event_call *call = filp->private_data;
	struct trace_seq *s;
	int r;

	if (*ppos)
		return 0;

	s = kmalloc(sizeof(*s), GFP_KERNEL);
	if (!s)
		return -ENOMEM;

	trace_seq_init(s);
	trace_seq_printf(s, "%d\n", call->id);

	r = simple_read_from_buffer(ubuf, cnt, ppos,
				    s->buffer, s->len);
	kfree(s);
	return r;
}

T
Tom Zanussi 已提交
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
static ssize_t
event_filter_read(struct file *filp, char __user *ubuf, size_t cnt,
		  loff_t *ppos)
{
	struct ftrace_event_call *call = filp->private_data;
	struct trace_seq *s;
	int r;

	if (*ppos)
		return 0;

	s = kmalloc(sizeof(*s), GFP_KERNEL);
	if (!s)
		return -ENOMEM;

	trace_seq_init(s);

625
	print_event_filter(call, s);
626
	r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len);
T
Tom Zanussi 已提交
627 628 629 630 631 632 633 634 635 636 637

	kfree(s);

	return r;
}

static ssize_t
event_filter_write(struct file *filp, const char __user *ubuf, size_t cnt,
		   loff_t *ppos)
{
	struct ftrace_event_call *call = filp->private_data;
638
	char *buf;
T
Tom Zanussi 已提交
639 640
	int err;

641
	if (cnt >= PAGE_SIZE)
T
Tom Zanussi 已提交
642 643
		return -EINVAL;

644 645
	buf = (char *)__get_free_page(GFP_TEMPORARY);
	if (!buf)
T
Tom Zanussi 已提交
646 647
		return -ENOMEM;

648 649 650
	if (copy_from_user(buf, ubuf, cnt)) {
		free_page((unsigned long) buf);
		return -EFAULT;
T
Tom Zanussi 已提交
651
	}
652
	buf[cnt] = '\0';
T
Tom Zanussi 已提交
653

654 655 656
	err = apply_event_filter(call, buf);
	free_page((unsigned long) buf);
	if (err < 0)
657
		return err;
658

T
Tom Zanussi 已提交
659 660 661 662 663
	*ppos += cnt;

	return cnt;
}

664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
static ssize_t
subsystem_filter_read(struct file *filp, char __user *ubuf, size_t cnt,
		      loff_t *ppos)
{
	struct event_subsystem *system = filp->private_data;
	struct trace_seq *s;
	int r;

	if (*ppos)
		return 0;

	s = kmalloc(sizeof(*s), GFP_KERNEL);
	if (!s)
		return -ENOMEM;

	trace_seq_init(s);

681
	print_subsystem_event_filter(system, s);
682
	r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len);
683 684 685 686 687 688 689 690 691 692 693

	kfree(s);

	return r;
}

static ssize_t
subsystem_filter_write(struct file *filp, const char __user *ubuf, size_t cnt,
		       loff_t *ppos)
{
	struct event_subsystem *system = filp->private_data;
694
	char *buf;
695 696
	int err;

697
	if (cnt >= PAGE_SIZE)
698 699
		return -EINVAL;

700 701
	buf = (char *)__get_free_page(GFP_TEMPORARY);
	if (!buf)
702 703
		return -ENOMEM;

704 705 706
	if (copy_from_user(buf, ubuf, cnt)) {
		free_page((unsigned long) buf);
		return -EFAULT;
707
	}
708
	buf[cnt] = '\0';
709

710 711 712
	err = apply_subsystem_event_filter(system, buf);
	free_page((unsigned long) buf);
	if (err < 0)
713
		return err;
714 715 716 717 718 719

	*ppos += cnt;

	return cnt;
}

720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
static ssize_t
show_header(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos)
{
	int (*func)(struct trace_seq *s) = filp->private_data;
	struct trace_seq *s;
	int r;

	if (*ppos)
		return 0;

	s = kmalloc(sizeof(*s), GFP_KERNEL);
	if (!s)
		return -ENOMEM;

	trace_seq_init(s);

	func(s);
	r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len);

	kfree(s);

	return r;
}

744 745 746 747 748 749 750 751 752 753 754 755 756 757
static const struct seq_operations show_event_seq_ops = {
	.start = t_start,
	.next = t_next,
	.show = t_show,
	.stop = t_stop,
};

static const struct seq_operations show_set_event_seq_ops = {
	.start = s_start,
	.next = s_next,
	.show = t_show,
	.stop = t_stop,
};

758 759 760 761 762 763 764
static const struct file_operations ftrace_avail_fops = {
	.open = ftrace_event_seq_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = seq_release,
};

765 766 767 768 769 770 771 772
static const struct file_operations ftrace_set_event_fops = {
	.open = ftrace_event_seq_open,
	.read = seq_read,
	.write = ftrace_event_write,
	.llseek = seq_lseek,
	.release = seq_release,
};

773 774 775 776 777 778
static const struct file_operations ftrace_enable_fops = {
	.open = tracing_open_generic,
	.read = event_enable_read,
	.write = event_enable_write,
};

779 780 781 782 783
static const struct file_operations ftrace_event_format_fops = {
	.open = tracing_open_generic,
	.read = event_format_read,
};

784 785 786 787 788
static const struct file_operations ftrace_event_id_fops = {
	.open = tracing_open_generic,
	.read = event_id_read,
};

T
Tom Zanussi 已提交
789 790 791 792 793 794
static const struct file_operations ftrace_event_filter_fops = {
	.open = tracing_open_generic,
	.read = event_filter_read,
	.write = event_filter_write,
};

795 796 797 798 799 800
static const struct file_operations ftrace_subsystem_filter_fops = {
	.open = tracing_open_generic,
	.read = subsystem_filter_read,
	.write = subsystem_filter_write,
};

801 802 803 804 805 806
static const struct file_operations ftrace_system_enable_fops = {
	.open = tracing_open_generic,
	.read = system_enable_read,
	.write = system_enable_write,
};

807 808 809 810 811
static const struct file_operations ftrace_show_header_fops = {
	.open = tracing_open_generic,
	.read = show_header,
};

812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
static struct dentry *event_trace_events_dir(void)
{
	static struct dentry *d_tracer;
	static struct dentry *d_events;

	if (d_events)
		return d_events;

	d_tracer = tracing_init_dentry();
	if (!d_tracer)
		return NULL;

	d_events = debugfs_create_dir("events", d_tracer);
	if (!d_events)
		pr_warning("Could not create debugfs "
			   "'events' directory\n");

	return d_events;
}

832 833 834 835 836 837
static LIST_HEAD(event_subsystems);

static struct dentry *
event_subsystem_dir(const char *name, struct dentry *d_events)
{
	struct event_subsystem *system;
838
	struct dentry *entry;
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861

	/* First see if we did not already create this dir */
	list_for_each_entry(system, &event_subsystems, list) {
		if (strcmp(system->name, name) == 0)
			return system->entry;
	}

	/* need to create new entry */
	system = kmalloc(sizeof(*system), GFP_KERNEL);
	if (!system) {
		pr_warning("No memory to create event subsystem %s\n",
			   name);
		return d_events;
	}

	system->entry = debugfs_create_dir(name, d_events);
	if (!system->entry) {
		pr_warning("Could not create event subsystem %s\n",
			   name);
		kfree(system);
		return d_events;
	}

862 863 864 865 866 867 868
	system->name = kstrdup(name, GFP_KERNEL);
	if (!system->name) {
		debugfs_remove(system->entry);
		kfree(system);
		return d_events;
	}

869 870
	list_add(&system->list, &event_subsystems);

871
	system->filter = NULL;
872

873 874 875 876 877 878 879
	system->filter = kzalloc(sizeof(struct event_filter), GFP_KERNEL);
	if (!system->filter) {
		pr_warning("Could not allocate filter for subsystem "
			   "'%s'\n", name);
		return system->entry;
	}

880 881
	entry = debugfs_create_file("filter", 0644, system->entry, system,
				    &ftrace_subsystem_filter_fops);
882 883 884
	if (!entry) {
		kfree(system->filter);
		system->filter = NULL;
885 886
		pr_warning("Could not create debugfs "
			   "'%s/filter' entry\n", name);
887
	}
888

889 890 891 892
	entry = trace_create_file("enable", 0644, system->entry,
				  (void *)system->name,
				  &ftrace_system_enable_fops);

893 894 895
	return system->entry;
}

896
static int
897 898 899 900 901
event_create_dir(struct ftrace_event_call *call, struct dentry *d_events,
		 const struct file_operations *id,
		 const struct file_operations *enable,
		 const struct file_operations *filter,
		 const struct file_operations *format)
902 903
{
	struct dentry *entry;
904
	int ret;
905

906 907 908 909
	/*
	 * If the trace point header did not define TRACE_SYSTEM
	 * then the system would be called "TRACE_SYSTEM".
	 */
910
	if (strcmp(call->system, TRACE_SYSTEM) != 0)
911 912
		d_events = event_subsystem_dir(call->system, d_events);

913 914 915 916 917 918 919 920 921
	if (call->raw_init) {
		ret = call->raw_init();
		if (ret < 0) {
			pr_warning("Could not initialize trace point"
				   " events/%s\n", call->name);
			return ret;
		}
	}

922 923 924 925 926 927 928
	call->dir = debugfs_create_dir(call->name, d_events);
	if (!call->dir) {
		pr_warning("Could not create debugfs "
			   "'%s' directory\n", call->name);
		return -1;
	}

929 930
	if (call->regfunc)
		entry = trace_create_file("enable", 0644, call->dir, call,
931
					  enable);
932

933 934
	if (call->id)
		entry = trace_create_file("id", 0444, call->dir, call,
935
					  id);
936

937 938 939 940 941 942 943
	if (call->define_fields) {
		ret = call->define_fields();
		if (ret < 0) {
			pr_warning("Could not initialize trace point"
				   " events/%s\n", call->name);
			return ret;
		}
944
		entry = trace_create_file("filter", 0644, call->dir, call,
945
					  filter);
946 947
	}

948 949 950 951
	/* A trace may not want to export its format */
	if (!call->show_format)
		return 0;

952
	entry = trace_create_file("format", 0444, call->dir, call,
953
				  format);
954 955 956 957 958 959 960 961 962

	return 0;
}

#define for_each_event(event, start, end)			\
	for (event = start;					\
	     (unsigned long)event < (unsigned long)end;		\
	     event++)

963
#ifdef CONFIG_MODULES
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014

static LIST_HEAD(ftrace_module_file_list);

/*
 * Modules must own their file_operations to keep up with
 * reference counting.
 */
struct ftrace_module_file_ops {
	struct list_head		list;
	struct module			*mod;
	struct file_operations		id;
	struct file_operations		enable;
	struct file_operations		format;
	struct file_operations		filter;
};

static struct ftrace_module_file_ops *
trace_create_file_ops(struct module *mod)
{
	struct ftrace_module_file_ops *file_ops;

	/*
	 * This is a bit of a PITA. To allow for correct reference
	 * counting, modules must "own" their file_operations.
	 * To do this, we allocate the file operations that will be
	 * used in the event directory.
	 */

	file_ops = kmalloc(sizeof(*file_ops), GFP_KERNEL);
	if (!file_ops)
		return NULL;

	file_ops->mod = mod;

	file_ops->id = ftrace_event_id_fops;
	file_ops->id.owner = mod;

	file_ops->enable = ftrace_enable_fops;
	file_ops->enable.owner = mod;

	file_ops->filter = ftrace_event_filter_fops;
	file_ops->filter.owner = mod;

	file_ops->format = ftrace_event_format_fops;
	file_ops->format.owner = mod;

	list_add(&file_ops->list, &ftrace_module_file_list);

	return file_ops;
}

1015 1016
static void trace_module_add_events(struct module *mod)
{
1017
	struct ftrace_module_file_ops *file_ops = NULL;
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
	struct ftrace_event_call *call, *start, *end;
	struct dentry *d_events;

	start = mod->trace_events;
	end = mod->trace_events + mod->num_trace_events;

	if (start == end)
		return;

	d_events = event_trace_events_dir();
	if (!d_events)
		return;

	for_each_event(call, start, end) {
		/* The linker may leave blanks */
		if (!call->name)
			continue;
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044

		/*
		 * This module has events, create file ops for this module
		 * if not already done.
		 */
		if (!file_ops) {
			file_ops = trace_create_file_ops(mod);
			if (!file_ops)
				return;
		}
1045 1046
		call->mod = mod;
		list_add(&call->list, &ftrace_events);
1047 1048 1049
		event_create_dir(call, d_events,
				 &file_ops->id, &file_ops->enable,
				 &file_ops->filter, &file_ops->format);
1050 1051 1052 1053 1054
	}
}

static void trace_module_remove_events(struct module *mod)
{
1055
	struct ftrace_module_file_ops *file_ops;
1056
	struct ftrace_event_call *call, *p;
1057
	bool found = false;
1058 1059 1060

	list_for_each_entry_safe(call, p, &ftrace_events, list) {
		if (call->mod == mod) {
1061
			found = true;
1062 1063
			if (call->enabled) {
				call->enabled = 0;
1064
				tracing_stop_cmdline_record();
1065 1066 1067 1068 1069 1070
				call->unregfunc();
			}
			if (call->event)
				unregister_ftrace_event(call->event);
			debugfs_remove_recursive(call->dir);
			list_del(&call->list);
1071 1072
			trace_destroy_fields(call);
			destroy_preds(call);
1073 1074
		}
	}
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084

	/* Now free the file_operations */
	list_for_each_entry(file_ops, &ftrace_module_file_list, list) {
		if (file_ops->mod == mod)
			break;
	}
	if (&file_ops->list != &ftrace_module_file_list) {
		list_del(&file_ops->list);
		kfree(file_ops);
	}
1085 1086 1087 1088 1089 1090 1091

	/*
	 * It is safest to reset the ring buffer if the module being unloaded
	 * registered any events.
	 */
	if (found)
		tracing_reset_current_online_cpus();
1092 1093
}

1094 1095
static int trace_module_notify(struct notifier_block *self,
			       unsigned long val, void *data)
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
{
	struct module *mod = data;

	mutex_lock(&event_mutex);
	switch (val) {
	case MODULE_STATE_COMING:
		trace_module_add_events(mod);
		break;
	case MODULE_STATE_GOING:
		trace_module_remove_events(mod);
		break;
	}
	mutex_unlock(&event_mutex);
1109

1110 1111
	return 0;
}
1112 1113 1114 1115 1116 1117 1118
#else
static int trace_module_notify(struct notifier_block *self,
			       unsigned long val, void *data)
{
	return 0;
}
#endif /* CONFIG_MODULES */
1119

1120 1121 1122 1123 1124
struct notifier_block trace_module_nb = {
	.notifier_call = trace_module_notify,
	.priority = 0,
};

1125 1126 1127
extern struct ftrace_event_call __start_ftrace_events[];
extern struct ftrace_event_call __stop_ftrace_events[];

1128 1129
static __init int event_trace_init(void)
{
1130
	struct ftrace_event_call *call;
1131 1132
	struct dentry *d_tracer;
	struct dentry *entry;
1133
	struct dentry *d_events;
1134
	int ret;
1135 1136 1137 1138 1139

	d_tracer = tracing_init_dentry();
	if (!d_tracer)
		return 0;

1140 1141 1142 1143 1144 1145 1146
	entry = debugfs_create_file("available_events", 0444, d_tracer,
				    (void *)&show_event_seq_ops,
				    &ftrace_avail_fops);
	if (!entry)
		pr_warning("Could not create debugfs "
			   "'available_events' entry\n");

1147 1148 1149 1150 1151 1152 1153
	entry = debugfs_create_file("set_event", 0644, d_tracer,
				    (void *)&show_set_event_seq_ops,
				    &ftrace_set_event_fops);
	if (!entry)
		pr_warning("Could not create debugfs "
			   "'set_event' entry\n");

1154 1155 1156 1157
	d_events = event_trace_events_dir();
	if (!d_events)
		return 0;

1158 1159 1160 1161 1162 1163 1164 1165 1166
	/* ring buffer internal formats */
	trace_create_file("header_page", 0444, d_events,
			  ring_buffer_print_page_header,
			  &ftrace_show_header_fops);

	trace_create_file("header_event", 0444, d_events,
			  ring_buffer_print_entry_header,
			  &ftrace_show_header_fops);

1167
	trace_create_file("enable", 0644, d_events,
1168
			  NULL, &ftrace_system_enable_fops);
1169

1170
	for_each_event(call, __start_ftrace_events, __stop_ftrace_events) {
1171 1172 1173
		/* The linker may leave blanks */
		if (!call->name)
			continue;
1174
		list_add(&call->list, &ftrace_events);
1175 1176 1177
		event_create_dir(call, d_events, &ftrace_event_id_fops,
				 &ftrace_enable_fops, &ftrace_event_filter_fops,
				 &ftrace_event_format_fops);
1178 1179
	}

1180
	ret = register_module_notifier(&trace_module_nb);
1181
	if (ret)
1182 1183
		pr_warning("Failed to register trace events module notifier\n");

1184 1185 1186
	return 0;
}
fs_initcall(event_trace_init);
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241

#ifdef CONFIG_FTRACE_STARTUP_TEST

static DEFINE_SPINLOCK(test_spinlock);
static DEFINE_SPINLOCK(test_spinlock_irq);
static DEFINE_MUTEX(test_mutex);

static __init void test_work(struct work_struct *dummy)
{
	spin_lock(&test_spinlock);
	spin_lock_irq(&test_spinlock_irq);
	udelay(1);
	spin_unlock_irq(&test_spinlock_irq);
	spin_unlock(&test_spinlock);

	mutex_lock(&test_mutex);
	msleep(1);
	mutex_unlock(&test_mutex);
}

static __init int event_test_thread(void *unused)
{
	void *test_malloc;

	test_malloc = kmalloc(1234, GFP_KERNEL);
	if (!test_malloc)
		pr_info("failed to kmalloc\n");

	schedule_on_each_cpu(test_work);

	kfree(test_malloc);

	set_current_state(TASK_INTERRUPTIBLE);
	while (!kthread_should_stop())
		schedule();

	return 0;
}

/*
 * Do various things that may trigger events.
 */
static __init void event_test_stuff(void)
{
	struct task_struct *test_thread;

	test_thread = kthread_run(event_test_thread, NULL, "test-events");
	msleep(1);
	kthread_stop(test_thread);
}

/*
 * For every trace event defined, we will test each trace point separately,
 * and then by groups, and finally all trace points.
 */
1242
static __init void event_trace_self_tests(void)
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
{
	struct ftrace_event_call *call;
	struct event_subsystem *system;
	int ret;

	pr_info("Running tests on trace events:\n");

	list_for_each_entry(call, &ftrace_events, list) {

		/* Only test those that have a regfunc */
		if (!call->regfunc)
			continue;

		pr_info("Testing event %s: ", call->name);

		/*
		 * If an event is already enabled, someone is using
		 * it and the self test should not be on.
		 */
		if (call->enabled) {
			pr_warning("Enabled event during self test!\n");
			WARN_ON_ONCE(1);
			continue;
		}

		call->enabled = 1;
1269
		tracing_start_cmdline_record();
1270 1271 1272 1273 1274
		call->regfunc();

		event_test_stuff();

		call->unregfunc();
1275
		tracing_stop_cmdline_record();
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
		call->enabled = 0;

		pr_cont("OK\n");
	}

	/* Now test at the sub system level */

	pr_info("Running tests on trace event systems:\n");

	list_for_each_entry(system, &event_subsystems, list) {

		/* the ftrace system is special, skip it */
		if (strcmp(system->name, "ftrace") == 0)
			continue;

		pr_info("Testing event system %s: ", system->name);

1293
		ret = __ftrace_set_clr_event(NULL, system->name, NULL, 1);
1294 1295 1296 1297 1298 1299 1300 1301
		if (WARN_ON_ONCE(ret)) {
			pr_warning("error enabling system %s\n",
				   system->name);
			continue;
		}

		event_test_stuff();

1302
		ret = __ftrace_set_clr_event(NULL, system->name, NULL, 0);
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
		if (WARN_ON_ONCE(ret))
			pr_warning("error disabling system %s\n",
				   system->name);

		pr_cont("OK\n");
	}

	/* Test with all events enabled */

	pr_info("Running tests on all trace events:\n");
	pr_info("Testing all events: ");

1315
	ret = __ftrace_set_clr_event(NULL, NULL, NULL, 1);
1316 1317
	if (WARN_ON_ONCE(ret)) {
		pr_warning("error enabling all events\n");
1318
		return;
1319 1320 1321 1322 1323
	}

	event_test_stuff();

	/* reset sysname */
1324
	ret = __ftrace_set_clr_event(NULL, NULL, NULL, 0);
1325 1326
	if (WARN_ON_ONCE(ret)) {
		pr_warning("error disabling all events\n");
1327
		return;
1328 1329 1330
	}

	pr_cont("OK\n");
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
}

#ifdef CONFIG_FUNCTION_TRACER

static DEFINE_PER_CPU(atomic_t, test_event_disable);

static void
function_test_events_call(unsigned long ip, unsigned long parent_ip)
{
	struct ring_buffer_event *event;
	struct ftrace_entry *entry;
	unsigned long flags;
	long disabled;
	int resched;
	int cpu;
	int pc;

	pc = preempt_count();
	resched = ftrace_preempt_disable();
	cpu = raw_smp_processor_id();
	disabled = atomic_inc_return(&per_cpu(test_event_disable, cpu));

	if (disabled != 1)
		goto out;

	local_save_flags(flags);

	event = trace_current_buffer_lock_reserve(TRACE_FN, sizeof(*entry),
						  flags, pc);
	if (!event)
		goto out;
	entry	= ring_buffer_event_data(event);
	entry->ip			= ip;
	entry->parent_ip		= parent_ip;

1366
	trace_nowake_buffer_unlock_commit(event, flags, pc);
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396

 out:
	atomic_dec(&per_cpu(test_event_disable, cpu));
	ftrace_preempt_enable(resched);
}

static struct ftrace_ops trace_ops __initdata  =
{
	.func = function_test_events_call,
};

static __init void event_trace_self_test_with_function(void)
{
	register_ftrace_function(&trace_ops);
	pr_info("Running tests again, along with the function tracer\n");
	event_trace_self_tests();
	unregister_ftrace_function(&trace_ops);
}
#else
static __init void event_trace_self_test_with_function(void)
{
}
#endif

static __init int event_trace_self_tests_init(void)
{

	event_trace_self_tests();

	event_trace_self_test_with_function();
1397 1398 1399 1400

	return 0;
}

1401
late_initcall(event_trace_self_tests_init);
1402 1403

#endif