ftrace.h 20.8 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
	struct ftrace_raw_##name {					\
		struct trace_entry	ent;				\
		tstruct							\
		char			__data[0];			\
65 66 67 68
	};								\
									\
	static struct ftrace_event_class event_class_##name;

69 70
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)	\
71
	static struct ftrace_event_call	__used		\
72
	__attribute__((__aligned__(4))) event_##name
73

74 75 76 77
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

78 79 80
#undef __cpparg
#define __cpparg(arg...) arg

81 82
/* Callbacks are meaningless to ftrace. */
#undef TRACE_EVENT_FN
83 84 85 86
#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))	\
87

88 89
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

90

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

107
#undef __field
108 109 110 111
#define __field(type, item)

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

113 114 115
#undef __array
#define __array(type, item, len)

116
#undef __dynamic_array
117
#define __dynamic_array(type, item, len)	u32 item;
118 119

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

122 123
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
124
	struct ftrace_data_offsets_##call {				\
125 126 127
		tstruct;						\
	};

128 129 130
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

131 132 133 134
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

135 136 137 138 139
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

/*
 * Stage 3 of the trace events.
 *
140 141 142 143 144 145 146 147
 * 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;
148
 *	struct trace_seq *p = &iter->tmp_seq;
149 150 151 152
 *	int ret;
 *
 *	entry = iter->ent;
 *
153
 *	if (entry->type != event_<call>->event.type) {
154 155 156 157 158 159
 *		WARN_ON_ONCE(1);
 *		return TRACE_TYPE_UNHANDLED;
 *	}
 *
 *	field = (typeof(field))entry;
 *
160
 *	trace_seq_init(p);
L
Li Zefan 已提交
161 162 163
 *	ret = trace_seq_printf(s, "%s: ", <call>);
 *	if (ret)
 *		ret = trace_seq_printf(s, <TP_printk> "\n");
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
 *	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

181 182
#undef __get_dynamic_array
#define __get_dynamic_array(field)	\
183
		((void *)__entry + (__entry->__data_loc_##field & 0xffff))
184

185
#undef __get_str
186
#define __get_str(field) (char *)__get_dynamic_array(field)
187

188 189 190
#undef __print_flags
#define __print_flags(flag, delim, flag_array...)			\
	({								\
191
		static const struct trace_print_flags __flags[] =	\
192
			{ flag_array, { -1, NULL }};			\
193
		ftrace_print_flags_seq(p, delim, flag, __flags);	\
194 195
	})

196 197 198 199 200 201 202 203
#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);		\
	})

K
Kei Tokunaga 已提交
204 205 206
#undef __print_hex
#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)

207 208
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
209
static notrace enum print_line_t					\
210 211
ftrace_raw_output_##call(struct trace_iterator *iter, int flags,	\
			 struct trace_event *trace_event)		\
212
{									\
213
	struct ftrace_event_call *event;				\
214 215 216
	struct trace_seq *s = &iter->seq;				\
	struct ftrace_raw_##call *field;				\
	struct trace_entry *entry;					\
217
	struct trace_seq *p = &iter->tmp_seq;				\
218 219
	int ret;							\
									\
220 221 222
	event = container_of(trace_event, struct ftrace_event_call,	\
			     event);					\
									\
223 224
	entry = iter->ent;						\
									\
225
	if (entry->type != event->event.type) {				\
226 227 228 229 230 231
		WARN_ON_ONCE(1);					\
		return TRACE_TYPE_UNHANDLED;				\
	}								\
									\
	field = (typeof(field))entry;					\
									\
232
	trace_seq_init(p);						\
233
	ret = trace_seq_printf(s, "%s: ", event->name);			\
234 235
	if (ret)							\
		ret = trace_seq_printf(s, print);			\
236 237 238 239
	if (!ret)							\
		return TRACE_TYPE_PARTIAL_LINE;				\
									\
	return TRACE_TYPE_HANDLED;					\
240 241 242 243
}									\
static struct trace_event_functions ftrace_event_type_funcs_##call = {	\
	.trace			= ftrace_raw_output_##call,		\
};
244

245 246
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, call, proto, args, print)		\
247
static notrace enum print_line_t					\
248 249
ftrace_raw_output_##call(struct trace_iterator *iter, int flags,	\
			 struct trace_event *event)			\
250 251 252 253
{									\
	struct trace_seq *s = &iter->seq;				\
	struct ftrace_raw_##template *field;				\
	struct trace_entry *entry;					\
254
	struct trace_seq *p = &iter->tmp_seq;				\
255 256 257 258
	int ret;							\
									\
	entry = iter->ent;						\
									\
259
	if (entry->type != event_##call.event.type) {			\
260 261 262 263 264 265
		WARN_ON_ONCE(1);					\
		return TRACE_TYPE_UNHANDLED;				\
	}								\
									\
	field = (typeof(field))entry;					\
									\
266
	trace_seq_init(p);						\
267 268 269
	ret = trace_seq_printf(s, "%s: ", #call);			\
	if (ret)							\
		ret = trace_seq_printf(s, print);			\
270 271 272 273
	if (!ret)							\
		return TRACE_TYPE_PARTIAL_LINE;				\
									\
	return TRACE_TYPE_HANDLED;					\
274 275 276 277
}									\
static struct trace_event_functions ftrace_event_type_funcs_##call = {	\
	.trace			= ftrace_raw_output_##call,		\
};
278

279 280
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

281 282
#undef __field_ext
#define __field_ext(type, item, filter_type)				\
283 284
	ret = trace_define_field(event_call, #type, #item,		\
				 offsetof(typeof(field), item),		\
285 286
				 sizeof(field.item),			\
				 is_signed_type(type), filter_type);	\
287 288 289
	if (ret)							\
		return ret;

290 291 292
#undef __field
#define __field(type, item)	__field_ext(type, item, FILTER_OTHER)

293 294 295 296 297
#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),		\
298 299
				 sizeof(field.item),			\
				 is_signed_type(type), FILTER_OTHER);	\
300 301 302
	if (ret)							\
		return ret;

303 304
#undef __dynamic_array
#define __dynamic_array(type, item, len)				       \
305
	ret = trace_define_field(event_call, "__data_loc " #type "[]", #item,  \
306
				 offsetof(typeof(field), __data_loc_##item),   \
307 308
				 sizeof(field.__data_loc_##item),	       \
				 is_signed_type(type), FILTER_OTHER);
309

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

313 314
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print)	\
315
static int notrace							\
316
ftrace_define_fields_##call(struct ftrace_event_call *event_call)	\
317 318 319 320 321 322 323 324 325
{									\
	struct ftrace_raw_##call field;					\
	int ret;							\
									\
	tstruct;							\
									\
	return ret;							\
}

326 327 328
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

329 330 331 332
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

333 334
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

335 336 337 338 339 340 341 342 343 344
/*
 * remember the offset of each array from the beginning of the event.
 */

#undef __entry
#define __entry entry

#undef __field
#define __field(type, item)

345 346 347
#undef __field_ext
#define __field_ext(type, item, filter_type)

348 349 350 351 352 353 354
#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);	\
355
	__data_offsets->item |= (len * sizeof(type)) << 16;		\
356 357 358
	__data_size += (len) * sizeof(type);

#undef __string
359
#define __string(item, src) __dynamic_array(char, item, strlen(src) + 1)
360

361 362
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
363
static inline notrace int ftrace_get_offsets_##call(			\
364 365 366 367 368 369 370 371 372 373
	struct ftrace_data_offsets_##call *__data_offsets, proto)       \
{									\
	int __data_size = 0;						\
	struct ftrace_raw_##call __maybe_unused *entry;			\
									\
	tstruct;							\
									\
	return __data_size;						\
}

374 375 376
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

377 378 379 380
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

381 382
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

383
/*
384
 * Stage 4 of the trace events.
385
 *
386
 * Override the macros in <trace/trace_events.h> to include the following:
387
 *
388
 * For those macros defined with TRACE_EVENT:
389 390 391
 *
 * static struct ftrace_event_call event_<call>;
 *
392
 * static void ftrace_raw_event_<call>(void *__data, proto)
393
 * {
394
 *	struct ftrace_event_call *event_call = __data;
L
Li Zefan 已提交
395
 *	struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
396 397
 *	struct ring_buffer_event *event;
 *	struct ftrace_raw_<call> *entry; <-- defined in stage 1
398
 *	struct ring_buffer *buffer;
399
 *	unsigned long irq_flags;
L
Li Zefan 已提交
400
 *	int __data_size;
401 402 403 404 405
 *	int pc;
 *
 *	local_save_flags(irq_flags);
 *	pc = preempt_count();
 *
L
Li Zefan 已提交
406 407
 *	__data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
 *
408
 *	event = trace_current_buffer_lock_reserve(&buffer,
409
 *				  event_<call>->event.type,
L
Li Zefan 已提交
410
 *				  sizeof(*entry) + __data_size,
411 412 413 414 415
 *				  irq_flags, pc);
 *	if (!event)
 *		return;
 *	entry	= ring_buffer_event_data(event);
 *
L
Li Zefan 已提交
416 417
 *	{ <assign>; }  <-- Here we assign the entries by the __field and
 *			   __array macros.
418
 *
L
Li Zefan 已提交
419 420 421
 *	if (!filter_current_check_discard(buffer, event_call, entry, event))
 *		trace_current_buffer_unlock_commit(buffer,
 *						   event, irq_flags, pc);
422 423 424
 * }
 *
 * static struct trace_event ftrace_event_type_<call> = {
425
 *	.trace			= ftrace_raw_output_<call>, <-- stage 2
426 427
 * };
 *
L
Li Zefan 已提交
428 429
 * static const char print_fmt_<call>[] = <TP_printk>;
 *
430 431
 * static struct ftrace_event_class __used event_class_<template> = {
 *	.system			= "<system>",
432
 *	.define_fields		= ftrace_define_fields_<call>,
433 434 435
 *	.fields			= LIST_HEAD_INIT(event_class_##call.fields),
 *	.raw_init		= trace_event_raw_init,
 *	.probe			= ftrace_raw_event_##call,
436
 *	.reg			= ftrace_event_reg,
437 438
 * };
 *
439 440 441
 * static struct ftrace_event_call __used
 * __attribute__((__aligned__(4)))
 * __attribute__((section("_ftrace_events"))) event_<call> = {
442
 *	.name			= "<call>",
443
 *	.class			= event_class_<template>,
444
 *	.event			= &ftrace_event_type_<call>,
L
Li Zefan 已提交
445
 *	.print_fmt		= print_fmt_<call>,
446
 * };
447 448 449
 *
 */

450
#ifdef CONFIG_PERF_EVENTS
P
Peter Zijlstra 已提交
451

452 453 454 455
#define _TRACE_PERF_PROTO(call, proto)					\
	static notrace void						\
	perf_trace_##call(void *__data, proto);

456
#define _TRACE_PERF_INIT(call)						\
457
	.perf_probe		= perf_trace_##call,
P
Peter Zijlstra 已提交
458 459

#else
460
#define _TRACE_PERF_PROTO(call, proto)
461
#define _TRACE_PERF_INIT(call)
462
#endif /* CONFIG_PERF_EVENTS */
P
Peter Zijlstra 已提交
463

464 465
#undef __entry
#define __entry entry
466

467 468 469 470 471 472
#undef __field
#define __field(type, item)

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

473 474 475 476
#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
	__entry->__data_loc_##item = __data_offsets.item;

477
#undef __string
478
#define __string(item, src) __dynamic_array(char, item, -1)       	\
479 480 481 482 483

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

484 485 486 487 488 489
#undef TP_fast_assign
#define TP_fast_assign(args...) args

#undef TP_perf_assign
#define TP_perf_assign(args...)

490 491
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
492
									\
493
static notrace void							\
494
ftrace_raw_event_##call(void *__data, proto)				\
495
{									\
496
	struct ftrace_event_call *event_call = __data;			\
497
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
498 499
	struct ring_buffer_event *event;				\
	struct ftrace_raw_##call *entry;				\
500
	struct ring_buffer *buffer;					\
501
	unsigned long irq_flags;					\
502
	int __data_size;						\
503 504 505 506 507
	int pc;								\
									\
	local_save_flags(irq_flags);					\
	pc = preempt_count();						\
									\
508
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
509
									\
510
	event = trace_current_buffer_lock_reserve(&buffer,		\
511
				 event_call->event.type,		\
512
				 sizeof(*entry) + __data_size,		\
513
				 irq_flags, pc);			\
514 515 516 517
	if (!event)							\
		return;							\
	entry	= ring_buffer_event_data(event);			\
									\
518 519
	tstruct								\
									\
520
	{ assign; }							\
521
									\
522 523 524
	if (!filter_current_check_discard(buffer, event_call, entry, event)) \
		trace_nowake_buffer_unlock_commit(buffer,		\
						  event, irq_flags, pc); \
525
}
526 527 528 529 530
/*
 * The ftrace_test_probe is compiled out, it is only here as a build time check
 * to make sure that if the tracepoint handling changes, the ftrace probe will
 * fail to compile unless it too is updated.
 */
531 532 533

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
534
static inline void ftrace_test_probe_##call(void)			\
535
{									\
536 537
	check_trace_callback_type_##call(ftrace_raw_event_##template);	\
}
538 539

#undef DEFINE_EVENT_PRINT
540
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
541 542 543

#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

L
Lai Jiangshan 已提交
544 545 546 547 548 549 550 551 552 553 554
#undef __entry
#define __entry REC

#undef __print_flags
#undef __print_symbolic
#undef __get_dynamic_array
#undef __get_str

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

555
#undef DECLARE_EVENT_CLASS
L
Lai Jiangshan 已提交
556
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
557
_TRACE_PERF_PROTO(call, PARAMS(proto));					\
558 559
static const char print_fmt_##call[] = print;				\
static struct ftrace_event_class __used event_class_##call = {		\
560
	.system			= __stringify(TRACE_SYSTEM),		\
561 562
	.define_fields		= ftrace_define_fields_##call,		\
	.fields			= LIST_HEAD_INIT(event_class_##call.fields),\
563
	.raw_init		= trace_event_raw_init,			\
564
	.probe			= ftrace_raw_event_##call,		\
565
	.reg			= ftrace_event_reg,			\
566
	_TRACE_PERF_INIT(call)						\
567
};
568 569 570

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
571 572 573 574
									\
static struct ftrace_event_call __used					\
__attribute__((__aligned__(4)))						\
__attribute__((section("_ftrace_events"))) event_##call = {		\
575
	.name			= #call,				\
576
	.class			= &event_class_##template,		\
577
	.event.funcs		= &ftrace_event_type_funcs_##template,	\
L
Lai Jiangshan 已提交
578
	.print_fmt		= print_fmt_##template,			\
579
};
P
Peter Zijlstra 已提交
580

581 582
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, call, proto, args, print)		\
583
									\
L
Lai Jiangshan 已提交
584 585
static const char print_fmt_##call[] = print;				\
									\
586 587 588
static struct ftrace_event_call __used					\
__attribute__((__aligned__(4)))						\
__attribute__((section("_ftrace_events"))) event_##call = {		\
589
	.name			= #call,				\
590
	.class			= &event_class_##template,		\
591
	.event.funcs		= &ftrace_event_type_funcs_##call,	\
L
Lai Jiangshan 已提交
592
	.print_fmt		= print_fmt_##call,			\
593
}
P
Peter Zijlstra 已提交
594

595
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
P
Peter Zijlstra 已提交
596

597
/*
598
 * Define the insertion callback to perf events
599 600 601 602
 *
 * 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.
 *
603
 * static void ftrace_perf_<call>(proto)
604 605 606
 * {
 *	struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
 *	struct ftrace_event_call *event_call = &event_<call>;
607
 *	extern void perf_tp_event(int, u64, u64, void *, int);
608
 *	struct ftrace_raw_##call *entry;
609
 *	struct perf_trace_buf *trace_buf;
610 611
 *	u64 __addr = 0, __count = 1;
 *	unsigned long irq_flags;
612
 *	struct trace_entry *ent;
613 614
 *	int __entry_size;
 *	int __data_size;
615
 *	int __cpu
616 617 618 619 620
 *	int pc;
 *
 *	pc = preempt_count();
 *
 *	__data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
621 622 623 624 625 626
 *
 *	// 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);
627
 *
628 629 630 631 632 633
 *	// Protect the non nmi buffer
 *	// This also protects the rcu read side
 *	local_irq_save(irq_flags);
 *	__cpu = smp_processor_id();
 *
 *	if (in_nmi())
634
 *		trace_buf = rcu_dereference_sched(perf_trace_buf_nmi);
635
 *	else
636
 *		trace_buf = rcu_dereference_sched(perf_trace_buf);
637
 *
638
 *	if (!trace_buf)
639
 *		goto end;
640
 *
641 642 643 644 645 646 647 648 649 650 651 652
 *	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();
653
 *
654 655 656 657 658 659
 *	//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;
660
 *
661
 *	<tstruct> <- do some jobs with dynamic arrays
662
 *
663
 *	<assign>  <- affect our values
664
 *
665
 *	perf_tp_event(event_call->id, __addr, __count, entry,
666
 *		     __entry_size);  <- submit them to perf counter
667 668 669 670
 *
 * }
 */

671
#ifdef CONFIG_PERF_EVENTS
672

L
Lai Jiangshan 已提交
673 674 675 676 677 678 679 680 681 682
#undef __entry
#define __entry entry

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

#undef __get_str
#define __get_str(field) (char *)__get_dynamic_array(field)

683 684 685 686 687 688
#undef __perf_addr
#define __perf_addr(a) __addr = (a)

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

689 690
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
691
static notrace void							\
692
perf_trace_##call(void *__data, proto)					\
693
{									\
694
	struct ftrace_event_call *event_call = __data;			\
695 696
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
	struct ftrace_raw_##call *entry;				\
S
Steven Rostedt 已提交
697
	struct pt_regs __regs;						\
698
	u64 __addr = 0, __count = 1;					\
699
	struct hlist_head *head;					\
700 701
	int __entry_size;						\
	int __data_size;						\
702
	int rctx;							\
703
									\
704
	perf_fetch_caller_regs(&__regs);				\
S
Steven Rostedt 已提交
705
									\
706
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
707 708
	__entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
			     sizeof(u64));				\
709
	__entry_size -= sizeof(u32);					\
710
									\
711
	if (WARN_ONCE(__entry_size > PERF_MAX_TRACE_SIZE,		\
712 713
		      "profile buffer not large enough"))		\
		return;							\
714
									\
715
	entry = (struct ftrace_raw_##call *)perf_trace_buf_prepare(	\
S
Steven Rostedt 已提交
716
		__entry_size, event_call->event.type, &__regs, &rctx);	\
717 718
	if (!entry)							\
		return;							\
719
									\
720 721 722 723
	tstruct								\
									\
	{ assign; }							\
									\
724
	head = this_cpu_ptr(event_call->perf_events);			\
725
	perf_trace_buf_submit(entry, __entry_size, rctx, __addr,	\
S
Steven Rostedt 已提交
726
		__count, &__regs, head);				\
727 728
}

729 730 731 732 733
/*
 * This part is compiled out, it is only here as a build time check
 * to make sure that if the tracepoint handling changes, the
 * perf probe will fail to compile unless it too is updated.
 */
734
#undef DEFINE_EVENT
735
#define DEFINE_EVENT(template, call, proto, args)			\
736
static inline void perf_test_probe_##call(void)				\
737
{									\
738
	check_trace_callback_type_##call(perf_trace_##template);	\
739 740
}

741

742 743 744 745
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

746
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
747
#endif /* CONFIG_PERF_EVENTS */
748

P
Peter Zijlstra 已提交
749 750
#undef _TRACE_PROFILE_INIT