ftrace.h 25.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Stage 1 of the trace events.
 *
 * Override the macros in <trace/trace_events.h> to include the following:
 *
 * struct ftrace_raw_<call> {
 *	struct trace_entry		ent;
 *	<type>				<item>;
 *	<type2>				<item2>[<len>];
 *	[...]
 * };
 *
 * The <type> <item> is created by the __field(type, item) macro or
 * the __array(type2, item2, len) macro.
 * We simply do "type item;", and that will create the fields
 * in the structure.
 */

#include <linux/ftrace_event.h>

21
/*
22
 * DECLARE_EVENT_CLASS can be used to add a generic function
23 24 25
 * handlers for events. That is, if all events have the same
 * parameters and just have distinct trace points.
 * Each tracepoint can be defined with DEFINE_EVENT and that
26
 * will map the DECLARE_EVENT_CLASS to the tracepoint.
27 28 29 30 31
 *
 * TRACE_EVENT is a one to one mapping between tracepoint and template.
 */
#undef TRACE_EVENT
#define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
32
	DECLARE_EVENT_CLASS(name,			       \
33 34 35 36 37 38 39 40
			     PARAMS(proto),		       \
			     PARAMS(args),		       \
			     PARAMS(tstruct),		       \
			     PARAMS(assign),		       \
			     PARAMS(print));		       \
	DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));


41 42 43
#undef __field
#define __field(type, item)		type	item;

44 45 46
#undef __field_ext
#define __field_ext(type, item, filter_type)	type	item;

47 48 49
#undef __array
#define __array(type, item, len)	type	item[len];

50
#undef __dynamic_array
51
#define __dynamic_array(type, item, len) u32 __data_loc_##item;
52

53
#undef __string
54
#define __string(item, src) __dynamic_array(char, item, -1)
55

56 57 58
#undef TP_STRUCT__entry
#define TP_STRUCT__entry(args...) args

59 60
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print)	\
61 62 63 64 65 66 67
	struct ftrace_raw_##name {					\
		struct trace_entry	ent;				\
		tstruct							\
		char			__data[0];			\
	};
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)	\
68 69
	static struct ftrace_event_call event_##name

70 71 72 73
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

74 75 76
#undef __cpparg
#define __cpparg(arg...) arg

77 78
/* Callbacks are meaningless to ftrace. */
#undef TRACE_EVENT_FN
79 80 81 82
#define TRACE_EVENT_FN(name, proto, args, tstruct,			\
		assign, print, reg, unreg)				\
	TRACE_EVENT(name, __cpparg(proto), __cpparg(args),		\
		__cpparg(tstruct), __cpparg(assign), __cpparg(print))	\
83

84 85
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

86

87 88 89
/*
 * Stage 2 of the trace events.
 *
90 91
 * Include the following:
 *
92
 * struct ftrace_data_offsets_<call> {
93 94
 *	u32				<item1>;
 *	u32				<item2>;
95 96 97
 *	[...]
 * };
 *
98
 * The __dynamic_array() macro will create each u32 <item>, this is
99
 * to keep the offset of each array from the beginning of the event.
100
 * The size of an array is also encoded, in the higher 16 bits of <item>.
101 102
 */

103
#undef __field
104 105 106 107
#define __field(type, item)

#undef __field_ext
#define __field_ext(type, item, filter_type)
108

109 110 111
#undef __array
#define __array(type, item, len)

112
#undef __dynamic_array
113
#define __dynamic_array(type, item, len)	u32 item;
114 115

#undef __string
116
#define __string(item, src) __dynamic_array(char, item, -1)
117

118 119
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
120
	struct ftrace_data_offsets_##call {				\
121 122 123
		tstruct;						\
	};

124 125 126
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

127 128 129 130
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

131 132
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
/*
 * Setup the showing format of trace point.
 *
 * int
 * ftrace_format_##call(struct trace_seq *s)
 * {
 *	struct ftrace_raw_##call field;
 *	int ret;
 *
 *	ret = trace_seq_printf(s, #type " " #item ";"
 *			       " offset:%u; size:%u;\n",
 *			       offsetof(struct ftrace_raw_##call, item),
 *			       sizeof(field.type));
 *
 * }
 */

#undef TP_STRUCT__entry
#define TP_STRUCT__entry(args...) args

#undef __field
#define __field(type, item)					\
	ret = trace_seq_printf(s, "\tfield:" #type " " #item ";\t"	\
156
			       "offset:%u;\tsize:%u;\tsigned:%u;\n",	\
157
			       (unsigned int)offsetof(typeof(field), item), \
158 159
			       (unsigned int)sizeof(field.item),	\
			       (unsigned int)is_signed_type(type));	\
160 161 162
	if (!ret)							\
		return 0;

163 164 165
#undef __field_ext
#define __field_ext(type, item, filter_type)	__field(type, item)

166 167 168
#undef __array
#define __array(type, item, len)						\
	ret = trace_seq_printf(s, "\tfield:" #type " " #item "[" #len "];\t"	\
169
			       "offset:%u;\tsize:%u;\tsigned:%u;\n",	\
170
			       (unsigned int)offsetof(typeof(field), item), \
171 172
			       (unsigned int)sizeof(field.item),	\
			       (unsigned int)is_signed_type(type));	\
173 174 175 176 177
	if (!ret)							\
		return 0;

#undef __dynamic_array
#define __dynamic_array(type, item, len)				       \
178
	ret = trace_seq_printf(s, "\tfield:__data_loc " #type "[] " #item ";\t"\
179
			       "offset:%u;\tsize:%u;\tsigned:%u;\n",	       \
180 181
			       (unsigned int)offsetof(typeof(field),	       \
					__data_loc_##item),		       \
182 183
			       (unsigned int)sizeof(field.__data_loc_##item), \
			       (unsigned int)is_signed_type(type));	\
184 185 186 187 188 189 190 191 192 193 194 195 196 197
	if (!ret)							       \
		return 0;

#undef __string
#define __string(item, src) __dynamic_array(char, item, -1)

#undef __entry
#define __entry REC

#undef __print_symbolic
#undef __get_dynamic_array
#undef __get_str

#undef TP_printk
J
Johannes Berg 已提交
198
#define TP_printk(fmt, args...) "\"%s\", %s\n", fmt, __stringify(args)
199 200 201 202

#undef TP_fast_assign
#define TP_fast_assign(args...) args

203 204 205
#undef TP_perf_assign
#define TP_perf_assign(args...)

206 207
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print)	\
208
static int								\
209 210
ftrace_format_setup_##call(struct ftrace_event_call *unused,		\
			   struct trace_seq *s)				\
211 212 213 214 215 216
{									\
	struct ftrace_raw_##call field __attribute__((unused));		\
	int ret = 0;							\
									\
	tstruct;							\
									\
217 218 219 220 221 222 223 224 225 226 227 228 229 230
	return ret;							\
}									\
									\
static int								\
ftrace_format_##call(struct ftrace_event_call *unused,			\
		     struct trace_seq *s)				\
{									\
	int ret = 0;							\
									\
	ret = ftrace_format_setup_##call(unused, s);			\
	if (!ret)							\
		return ret;						\
									\
	ret = trace_seq_printf(s, "\nprint fmt: " print);		\
231 232 233 234
									\
	return ret;							\
}

235 236 237
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

238 239 240 241 242 243 244 245 246 247 248 249
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)		\
static int								\
ftrace_format_##name(struct ftrace_event_call *unused,			\
		      struct trace_seq *s)				\
{									\
	int ret = 0;							\
									\
	ret = ftrace_format_setup_##template(unused, s);		\
	if (!ret)							\
		return ret;						\
									\
250 251 252 253 254 255 256
	trace_seq_printf(s, "\nprint fmt: " print);			\
									\
	return ret;							\
}

#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

257 258 259
/*
 * Stage 3 of the trace events.
 *
260 261 262 263 264 265 266 267
 * Override the macros in <trace/trace_events.h> to include the following:
 *
 * enum print_line_t
 * ftrace_raw_output_<call>(struct trace_iterator *iter, int flags)
 * {
 *	struct trace_seq *s = &iter->seq;
 *	struct ftrace_raw_<call> *field; <-- defined in stage 1
 *	struct trace_entry *entry;
268
 *	struct trace_seq *p;
269 270 271 272 273 274 275 276 277 278 279
 *	int ret;
 *
 *	entry = iter->ent;
 *
 *	if (entry->type != event_<call>.id) {
 *		WARN_ON_ONCE(1);
 *		return TRACE_TYPE_UNHANDLED;
 *	}
 *
 *	field = (typeof(field))entry;
 *
280
 *	p = get_cpu_var(ftrace_event_seq);
281
 *	trace_seq_init(p);
282
 *	ret = trace_seq_printf(s, <TP_printk> "\n");
283
 *	put_cpu();
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
 *	if (!ret)
 *		return TRACE_TYPE_PARTIAL_LINE;
 *
 *	return TRACE_TYPE_HANDLED;
 * }
 *
 * This is the method used to print the raw event to the trace
 * output format. Note, this is not needed if the data is read
 * in binary.
 */

#undef __entry
#define __entry field

#undef TP_printk
#define TP_printk(fmt, args...) fmt "\n", args

301 302
#undef __get_dynamic_array
#define __get_dynamic_array(field)	\
303
		((void *)__entry + (__entry->__data_loc_##field & 0xffff))
304

305
#undef __get_str
306
#define __get_str(field) (char *)__get_dynamic_array(field)
307

308 309 310
#undef __print_flags
#define __print_flags(flag, delim, flag_array...)			\
	({								\
311
		static const struct trace_print_flags __flags[] =	\
312
			{ flag_array, { -1, NULL }};			\
313
		ftrace_print_flags_seq(p, delim, flag, __flags);	\
314 315
	})

316 317 318 319 320 321 322 323
#undef __print_symbolic
#define __print_symbolic(value, symbol_array...)			\
	({								\
		static const struct trace_print_flags symbols[] =	\
			{ symbol_array, { -1, NULL }};			\
		ftrace_print_symbols_seq(p, value, symbols);		\
	})

324 325
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
326
static enum print_line_t						\
327 328
ftrace_raw_output_id_##call(int event_id, const char *name,		\
			    struct trace_iterator *iter, int flags)	\
329 330 331 332
{									\
	struct trace_seq *s = &iter->seq;				\
	struct ftrace_raw_##call *field;				\
	struct trace_entry *entry;					\
333
	struct trace_seq *p;						\
334 335 336 337
	int ret;							\
									\
	entry = iter->ent;						\
									\
338
	if (entry->type != event_id) {					\
339 340 341 342 343 344
		WARN_ON_ONCE(1);					\
		return TRACE_TYPE_UNHANDLED;				\
	}								\
									\
	field = (typeof(field))entry;					\
									\
345
	p = &get_cpu_var(ftrace_event_seq);				\
346
	trace_seq_init(p);						\
347 348 349
	ret = trace_seq_printf(s, "%s: ", name);			\
	if (ret)							\
		ret = trace_seq_printf(s, print);			\
350
	put_cpu();							\
351 352 353 354 355
	if (!ret)							\
		return TRACE_TYPE_PARTIAL_LINE;				\
									\
	return TRACE_TYPE_HANDLED;					\
}
356 357 358 359 360 361 362 363 364 365

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)			\
static enum print_line_t						\
ftrace_raw_output_##name(struct trace_iterator *iter, int flags)	\
{									\
	return ftrace_raw_output_id_##template(event_##name.id,		\
					       #name, iter, flags);	\
}

366 367 368 369 370 371 372 373 374
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, call, proto, args, print)		\
static enum print_line_t						\
ftrace_raw_output_##call(struct trace_iterator *iter, int flags)	\
{									\
	struct trace_seq *s = &iter->seq;				\
	struct ftrace_raw_##template *field;				\
	struct trace_entry *entry;					\
	struct trace_seq *p;						\
375 376 377 378 379 380 381 382 383 384 385
	int ret;							\
									\
	entry = iter->ent;						\
									\
	if (entry->type != event_##call.id) {				\
		WARN_ON_ONCE(1);					\
		return TRACE_TYPE_UNHANDLED;				\
	}								\
									\
	field = (typeof(field))entry;					\
									\
386
	p = &get_cpu_var(ftrace_event_seq);				\
387
	trace_seq_init(p);						\
388 389 390
	ret = trace_seq_printf(s, "%s: ", #call);			\
	if (ret)							\
		ret = trace_seq_printf(s, print);			\
391
	put_cpu();							\
392 393 394 395 396
	if (!ret)							\
		return TRACE_TYPE_PARTIAL_LINE;				\
									\
	return TRACE_TYPE_HANDLED;					\
}
397

398 399
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

400 401
#undef __field_ext
#define __field_ext(type, item, filter_type)				\
402 403
	ret = trace_define_field(event_call, #type, #item,		\
				 offsetof(typeof(field), item),		\
404 405
				 sizeof(field.item),			\
				 is_signed_type(type), filter_type);	\
406 407 408
	if (ret)							\
		return ret;

409 410 411
#undef __field
#define __field(type, item)	__field_ext(type, item, FILTER_OTHER)

412 413 414 415 416
#undef __array
#define __array(type, item, len)					\
	BUILD_BUG_ON(len > MAX_FILTER_STR_VAL);				\
	ret = trace_define_field(event_call, #type "[" #len "]", #item,	\
				 offsetof(typeof(field), item),		\
417
				 sizeof(field.item), 0, FILTER_OTHER);	\
418 419 420
	if (ret)							\
		return ret;

421 422
#undef __dynamic_array
#define __dynamic_array(type, item, len)				       \
423
	ret = trace_define_field(event_call, "__data_loc " #type "[]", #item,  \
424 425 426
				 offsetof(typeof(field), __data_loc_##item),   \
				 sizeof(field.__data_loc_##item), 0,	       \
				 FILTER_OTHER);
427

428
#undef __string
429
#define __string(item, src) __dynamic_array(char, item, -1)
430

431 432
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print)	\
433
static int								\
434
ftrace_define_fields_##call(struct ftrace_event_call *event_call)	\
435 436 437 438 439 440 441 442 443
{									\
	struct ftrace_raw_##call field;					\
	int ret;							\
									\
	tstruct;							\
									\
	return ret;							\
}

444 445 446
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

447 448 449 450
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

451 452
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

453 454 455 456 457 458 459 460 461 462
/*
 * remember the offset of each array from the beginning of the event.
 */

#undef __entry
#define __entry entry

#undef __field
#define __field(type, item)

463 464 465
#undef __field_ext
#define __field_ext(type, item, filter_type)

466 467 468 469 470 471 472
#undef __array
#define __array(type, item, len)

#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
	__data_offsets->item = __data_size +				\
			       offsetof(typeof(*entry), __data);	\
473
	__data_offsets->item |= (len * sizeof(type)) << 16;		\
474 475 476
	__data_size += (len) * sizeof(type);

#undef __string
477
#define __string(item, src) __dynamic_array(char, item, strlen(src) + 1)
478

479 480
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
481 482 483 484 485 486 487 488 489 490 491
static inline int ftrace_get_offsets_##call(				\
	struct ftrace_data_offsets_##call *__data_offsets, proto)       \
{									\
	int __data_size = 0;						\
	struct ftrace_raw_##call __maybe_unused *entry;			\
									\
	tstruct;							\
									\
	return __data_size;						\
}

492 493 494
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

495 496 497 498
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

499 500
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

501 502 503
#ifdef CONFIG_EVENT_PROFILE

/*
504
 * Generate the functions needed for tracepoint perf_event support.
505
 *
506
 * NOTE: The insertion profile callback (ftrace_profile_<call>) is defined later
507
 *
508
 * static int ftrace_profile_enable_<call>(void)
509
 * {
510
 * 	return register_trace_<call>(ftrace_profile_<call>);
511 512
 * }
 *
513
 * static void ftrace_profile_disable_<call>(void)
514
 * {
515
 * 	unregister_trace_<call>(ftrace_profile_<call>);
516 517 518 519
 * }
 *
 */

520 521
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)
522 523 524

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)			\
525
									\
526
static void ftrace_profile_##name(proto);				\
527
									\
528
static int ftrace_profile_enable_##name(struct ftrace_event_call *unused)\
529
{									\
530
	return register_trace_##name(ftrace_profile_##name);		\
531 532
}									\
									\
533
static void ftrace_profile_disable_##name(struct ftrace_event_call *unused)\
534
{									\
535
	unregister_trace_##name(ftrace_profile_##name);			\
536 537
}

538 539 540 541
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

542 543 544 545
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

#endif

546
/*
547
 * Stage 4 of the trace events.
548
 *
549
 * Override the macros in <trace/trace_events.h> to include the following:
550 551 552
 *
 * static void ftrace_event_<call>(proto)
 * {
553
 *	event_trace_printk(_RET_IP_, "<call>: " <fmt>);
554 555
 * }
 *
556
 * static int ftrace_reg_event_<call>(struct ftrace_event_call *unused)
557
 * {
558
 *	int ret;
559
 *
560 561 562 563 564
 *	ret = register_trace_<call>(ftrace_event_<call>);
 *	if (!ret)
 *		pr_info("event trace: Could not activate trace point "
 *			"probe to  <call>");
 *	return ret;
565 566
 * }
 *
567
 * static void ftrace_unreg_event_<call>(struct ftrace_event_call *unused)
568
 * {
569
 *	unregister_trace_<call>(ftrace_event_<call>);
570 571 572
 * }
 *
 *
573
 * For those macros defined with TRACE_EVENT:
574 575 576 577 578
 *
 * static struct ftrace_event_call event_<call>;
 *
 * static void ftrace_raw_event_<call>(proto)
 * {
579 580
 *	struct ring_buffer_event *event;
 *	struct ftrace_raw_<call> *entry; <-- defined in stage 1
581
 *	struct ring_buffer *buffer;
582 583 584 585 586 587
 *	unsigned long irq_flags;
 *	int pc;
 *
 *	local_save_flags(irq_flags);
 *	pc = preempt_count();
 *
588 589
 *	event = trace_current_buffer_lock_reserve(&buffer,
 *				  event_<call>.id,
590 591 592 593 594 595 596
 *				  sizeof(struct ftrace_raw_<call>),
 *				  irq_flags, pc);
 *	if (!event)
 *		return;
 *	entry	= ring_buffer_event_data(event);
 *
 *	<assign>;  <-- Here we assign the entries by the __field and
597
 *			__array macros.
598
 *
599
 *	trace_current_buffer_unlock_commit(buffer, event, irq_flags, pc);
600 601
 * }
 *
602
 * static int ftrace_raw_reg_event_<call>(struct ftrace_event_call *unused)
603
 * {
604
 *	int ret;
605
 *
606 607 608 609 610
 *	ret = register_trace_<call>(ftrace_raw_event_<call>);
 *	if (!ret)
 *		pr_info("event trace: Could not activate trace point "
 *			"probe to <call>");
 *	return ret;
611 612
 * }
 *
613
 * static void ftrace_unreg_event_<call>(struct ftrace_event_call *unused)
614
 * {
615
 *	unregister_trace_<call>(ftrace_raw_event_<call>);
616 617 618
 * }
 *
 * static struct trace_event ftrace_event_type_<call> = {
619
 *	.trace			= ftrace_raw_output_<call>, <-- stage 2
620 621 622 623 624
 * };
 *
 * static struct ftrace_event_call __used
 * __attribute__((__aligned__(4)))
 * __attribute__((section("_ftrace_events"))) event_<call> = {
625
 *	.name			= "<call>",
626
 *	.system			= "<system>",
627
 *	.raw_init		= trace_event_raw_init,
628 629
 *	.regfunc		= ftrace_reg_event_<call>,
 *	.unregfunc		= ftrace_unreg_event_<call>,
630
 *	.show_format		= ftrace_format_<call>,
631 632 633 634
 * }
 *
 */

P
Peter Zijlstra 已提交
635 636 637 638 639 640 641 642 643 644 645
#ifdef CONFIG_EVENT_PROFILE

#define _TRACE_PROFILE_INIT(call)					\
	.profile_count = ATOMIC_INIT(-1),				\
	.profile_enable = ftrace_profile_enable_##call,			\
	.profile_disable = ftrace_profile_disable_##call,

#else
#define _TRACE_PROFILE_INIT(call)
#endif

646 647
#undef __entry
#define __entry entry
648

649 650 651 652 653 654
#undef __field
#define __field(type, item)

#undef __array
#define __array(type, item, len)

655 656 657 658
#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
	__entry->__data_loc_##item = __data_offsets.item;

659
#undef __string
660
#define __string(item, src) __dynamic_array(char, item, -1)       	\
661 662 663 664 665

#undef __assign_str
#define __assign_str(dst, src)						\
	strcpy(__get_str(dst), src);

666 667
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
668
									\
669 670
static void ftrace_raw_event_id_##call(struct ftrace_event_call *event_call, \
				       proto)				\
671
{									\
672
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
673 674
	struct ring_buffer_event *event;				\
	struct ftrace_raw_##call *entry;				\
675
	struct ring_buffer *buffer;					\
676
	unsigned long irq_flags;					\
677
	int __data_size;						\
678 679 680 681 682
	int pc;								\
									\
	local_save_flags(irq_flags);					\
	pc = preempt_count();						\
									\
683
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
684
									\
685
	event = trace_current_buffer_lock_reserve(&buffer,		\
686
				 event_call->id,			\
687
				 sizeof(*entry) + __data_size,		\
688
				 irq_flags, pc);			\
689 690 691 692
	if (!event)							\
		return;							\
	entry	= ring_buffer_event_data(event);			\
									\
693 694 695
									\
	tstruct								\
									\
696
	{ assign; }							\
697
									\
698 699 700
	if (!filter_current_check_discard(buffer, event_call, entry, event)) \
		trace_nowake_buffer_unlock_commit(buffer,		\
						  event, irq_flags, pc); \
701 702 703 704 705 706 707 708
}

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
									\
static void ftrace_raw_event_##call(proto)				\
{									\
	ftrace_raw_event_id_##template(&event_##call, args);		\
709 710
}									\
									\
711
static int ftrace_raw_reg_event_##call(struct ftrace_event_call *unused)\
712 713 714 715
{									\
	int ret;							\
									\
	ret = register_trace_##call(ftrace_raw_event_##call);		\
716
	if (ret)							\
717
		pr_info("event trace: Could not activate trace point "	\
718
			"probe to %s\n", #call);			\
719 720 721
	return ret;							\
}									\
									\
722
static void ftrace_raw_unreg_event_##call(struct ftrace_event_call *unused)\
723 724 725 726 727 728
{									\
	unregister_trace_##call(ftrace_raw_event_##call);		\
}									\
									\
static struct trace_event ftrace_event_type_##call = {			\
	.trace			= ftrace_raw_output_##call,		\
729
};
730 731 732 733 734 735 736

#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

737 738
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)
739 740 741

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
742 743 744 745
									\
static struct ftrace_event_call __used					\
__attribute__((__aligned__(4)))						\
__attribute__((section("_ftrace_events"))) event_##call = {		\
746
	.name			= #call,				\
747
	.system			= __stringify(TRACE_SYSTEM),		\
748
	.event			= &ftrace_event_type_##call,		\
749
	.raw_init		= trace_event_raw_init,			\
750 751
	.regfunc		= ftrace_raw_reg_event_##call,		\
	.unregfunc		= ftrace_raw_unreg_event_##call,	\
752 753
	.show_format		= ftrace_format_##template,		\
	.define_fields		= ftrace_define_fields_##template,	\
P
Peter Zijlstra 已提交
754
	_TRACE_PROFILE_INIT(call)					\
755
}
P
Peter Zijlstra 已提交
756

757 758
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, call, proto, args, print)		\
759 760 761 762
									\
static struct ftrace_event_call __used					\
__attribute__((__aligned__(4)))						\
__attribute__((section("_ftrace_events"))) event_##call = {		\
763
	.name			= #call,				\
764
	.system			= __stringify(TRACE_SYSTEM),		\
765
	.event			= &ftrace_event_type_##call,		\
766
	.raw_init		= trace_event_raw_init,			\
767 768
	.regfunc		= ftrace_raw_reg_event_##call,		\
	.unregfunc		= ftrace_raw_unreg_event_##call,	\
769
	.show_format		= ftrace_format_##call,			\
770
	.define_fields		= ftrace_define_fields_##template,	\
P
Peter Zijlstra 已提交
771
	_TRACE_PROFILE_INIT(call)					\
772
}
P
Peter Zijlstra 已提交
773

774
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
P
Peter Zijlstra 已提交
775

776 777 778 779 780 781 782 783 784 785
/*
 * Define the insertion callback to profile events
 *
 * The job is very similar to ftrace_raw_event_<call> except that we don't
 * insert in the ring buffer but in a perf counter.
 *
 * static void ftrace_profile_<call>(proto)
 * {
 *	struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
 *	struct ftrace_event_call *event_call = &event_<call>;
786
 *	extern void perf_tp_event(int, u64, u64, void *, int);
787
 *	struct ftrace_raw_##call *entry;
788
 *	struct perf_trace_buf *trace_buf;
789 790
 *	u64 __addr = 0, __count = 1;
 *	unsigned long irq_flags;
791
 *	struct trace_entry *ent;
792 793
 *	int __entry_size;
 *	int __data_size;
794
 *	int __cpu
795 796 797 798 799
 *	int pc;
 *
 *	pc = preempt_count();
 *
 *	__data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
800 801 802 803 804 805
 *
 *	// Below we want to get the aligned size by taking into account
 *	// the u32 field that will later store the buffer size
 *	__entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),
 *			     sizeof(u64));
 *	__entry_size -= sizeof(u32);
806
 *
807 808 809 810 811 812
 *	// Protect the non nmi buffer
 *	// This also protects the rcu read side
 *	local_irq_save(irq_flags);
 *	__cpu = smp_processor_id();
 *
 *	if (in_nmi())
813
 *		trace_buf = rcu_dereference(perf_trace_buf_nmi);
814
 *	else
815
 *		trace_buf = rcu_dereference(perf_trace_buf);
816
 *
817
 *	if (!trace_buf)
818
 *		goto end;
819
 *
820 821 822 823 824 825 826 827 828 829 830 831
 *	trace_buf = per_cpu_ptr(trace_buf, __cpu);
 *
 * 	// Avoid recursion from perf that could mess up the buffer
 * 	if (trace_buf->recursion++)
 *		goto end_recursion;
 *
 * 	raw_data = trace_buf->buf;
 *
 *	// Make recursion update visible before entering perf_tp_event
 *	// so that we protect from perf recursions.
 *
 *	barrier();
832
 *
833 834 835 836 837 838
 *	//zero dead bytes from alignment to avoid stack leak to userspace:
 *	*(u64 *)(&raw_data[__entry_size - sizeof(u64)]) = 0ULL;
 *	entry = (struct ftrace_raw_<call> *)raw_data;
 *	ent = &entry->ent;
 *	tracing_generic_entry_update(ent, irq_flags, pc);
 *	ent->type = event_call->id;
839
 *
840
 *	<tstruct> <- do some jobs with dynamic arrays
841
 *
842
 *	<assign>  <- affect our values
843
 *
844
 *	perf_tp_event(event_call->id, __addr, __count, entry,
845
 *		     __entry_size);  <- submit them to perf counter
846 847 848 849 850 851 852 853 854 855 856 857
 *
 * }
 */

#ifdef CONFIG_EVENT_PROFILE

#undef __perf_addr
#define __perf_addr(a) __addr = (a)

#undef __perf_count
#define __perf_count(c) __count = (c)

858 859
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
860 861 862
static void								\
ftrace_profile_templ_##call(struct ftrace_event_call *event_call,	\
			    proto)					\
863 864
{									\
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
865 866
	extern int perf_swevent_get_recursion_context(void);		\
	extern void perf_swevent_put_recursion_context(int rctx);	\
867
	extern void perf_tp_event(int, u64, u64, void *, int);		\
868 869 870
	struct ftrace_raw_##call *entry;				\
	u64 __addr = 0, __count = 1;					\
	unsigned long irq_flags;					\
871
	struct trace_entry *ent;					\
872 873
	int __entry_size;						\
	int __data_size;						\
874
	char *trace_buf;						\
875 876
	char *raw_data;							\
	int __cpu;							\
877
	int rctx;							\
878 879 880 881 882
	int pc;								\
									\
	pc = preempt_count();						\
									\
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
883 884
	__entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
			     sizeof(u64));				\
885
	__entry_size -= sizeof(u32);					\
886
									\
887 888 889 890 891
	if (WARN_ONCE(__entry_size > FTRACE_MAX_PROFILE_SIZE,		\
		      "profile buffer not large enough"))		\
		return;							\
									\
	local_irq_save(irq_flags);					\
892
									\
893 894 895
	rctx = perf_swevent_get_recursion_context();			\
	if (rctx < 0)							\
		goto end_recursion;					\
896
									\
897
	__cpu = smp_processor_id();					\
898
									\
899
	if (in_nmi())							\
900
		trace_buf = rcu_dereference(perf_trace_buf_nmi);	\
901
	else								\
902
		trace_buf = rcu_dereference(perf_trace_buf);		\
903
									\
904
	if (!trace_buf)							\
905
		goto end;						\
906
									\
907
	raw_data = per_cpu_ptr(trace_buf, __cpu);			\
908
									\
909 910 911 912 913 914 915 916 917 918
	*(u64 *)(&raw_data[__entry_size - sizeof(u64)]) = 0ULL;		\
	entry = (struct ftrace_raw_##call *)raw_data;			\
	ent = &entry->ent;						\
	tracing_generic_entry_update(ent, irq_flags, pc);		\
	ent->type = event_call->id;					\
									\
	tstruct								\
									\
	{ assign; }							\
									\
919
	perf_tp_event(event_call->id, __addr, __count, entry,		\
920
			     __entry_size);				\
921 922
									\
end:									\
923 924
	perf_swevent_put_recursion_context(rctx);			\
end_recursion:								\
925
	local_irq_restore(irq_flags);					\
926 927
}

928 929 930 931 932 933 934 935 936
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)		\
static void ftrace_profile_##call(proto)			\
{								\
	struct ftrace_event_call *event_call = &event_##call;	\
								\
	ftrace_profile_templ_##template(event_call, args);	\
}

937 938 939 940
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

941 942 943
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
#endif /* CONFIG_EVENT_PROFILE */

P
Peter Zijlstra 已提交
944 945
#undef _TRACE_PROFILE_INIT