ftrace.h 20.9 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;
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;
 *
L
Li Zefan 已提交
160
 *	p = &get_cpu_var(ftrace_event_seq);
161
 *	trace_seq_init(p);
L
Li Zefan 已提交
162 163 164
 *	ret = trace_seq_printf(s, "%s: ", <call>);
 *	if (ret)
 *		ret = trace_seq_printf(s, <TP_printk> "\n");
165
 *	put_cpu();
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
 *	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

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

187
#undef __get_str
188
#define __get_str(field) (char *)__get_dynamic_array(field)
189

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

198 199 200 201 202 203 204 205
#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 已提交
206 207 208
#undef __print_hex
#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)

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

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

285 286
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

287 288
#undef __field_ext
#define __field_ext(type, item, filter_type)				\
289 290
	ret = trace_define_field(event_call, #type, #item,		\
				 offsetof(typeof(field), item),		\
291 292
				 sizeof(field.item),			\
				 is_signed_type(type), filter_type);	\
293 294 295
	if (ret)							\
		return ret;

296 297 298
#undef __field
#define __field(type, item)	__field_ext(type, item, FILTER_OTHER)

299 300 301 302 303
#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),		\
304 305
				 sizeof(field.item),			\
				 is_signed_type(type), FILTER_OTHER);	\
306 307 308
	if (ret)							\
		return ret;

309 310
#undef __dynamic_array
#define __dynamic_array(type, item, len)				       \
311
	ret = trace_define_field(event_call, "__data_loc " #type "[]", #item,  \
312
				 offsetof(typeof(field), __data_loc_##item),   \
313 314
				 sizeof(field.__data_loc_##item),	       \
				 is_signed_type(type), FILTER_OTHER);
315

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

319 320
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print)	\
321
static int notrace							\
322
ftrace_define_fields_##call(struct ftrace_event_call *event_call)	\
323 324 325 326 327 328 329 330 331
{									\
	struct ftrace_raw_##call field;					\
	int ret;							\
									\
	tstruct;							\
									\
	return ret;							\
}

332 333 334
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

335 336 337 338
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

339 340
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

341 342 343 344 345 346 347 348 349 350
/*
 * remember the offset of each array from the beginning of the event.
 */

#undef __entry
#define __entry entry

#undef __field
#define __field(type, item)

351 352 353
#undef __field_ext
#define __field_ext(type, item, filter_type)

354 355 356 357 358 359 360
#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);	\
361
	__data_offsets->item |= (len * sizeof(type)) << 16;		\
362 363 364
	__data_size += (len) * sizeof(type);

#undef __string
365
#define __string(item, src) __dynamic_array(char, item, strlen(src) + 1)
366

367 368
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
369
static inline notrace int ftrace_get_offsets_##call(			\
370 371 372 373 374 375 376 377 378 379
	struct ftrace_data_offsets_##call *__data_offsets, proto)       \
{									\
	int __data_size = 0;						\
	struct ftrace_raw_##call __maybe_unused *entry;			\
									\
	tstruct;							\
									\
	return __data_size;						\
}

380 381 382
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

383 384 385 386
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

387 388
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

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

455
#ifdef CONFIG_PERF_EVENTS
P
Peter Zijlstra 已提交
456

457 458 459 460
#define _TRACE_PERF_PROTO(call, proto)					\
	static notrace void						\
	perf_trace_##call(void *__data, proto);

461
#define _TRACE_PERF_INIT(call)						\
462
	.perf_probe		= perf_trace_##call,
P
Peter Zijlstra 已提交
463 464

#else
465
#define _TRACE_PERF_PROTO(call, proto)
466
#define _TRACE_PERF_INIT(call)
467
#endif /* CONFIG_PERF_EVENTS */
P
Peter Zijlstra 已提交
468

469 470
#undef __entry
#define __entry entry
471

472 473 474 475 476 477
#undef __field
#define __field(type, item)

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

478 479 480 481
#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
	__entry->__data_loc_##item = __data_offsets.item;

482
#undef __string
483
#define __string(item, src) __dynamic_array(char, item, -1)       	\
484 485 486 487 488

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

489 490 491 492 493 494
#undef TP_fast_assign
#define TP_fast_assign(args...) args

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

495 496
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
497
									\
498
static notrace void							\
499
ftrace_raw_event_##call(void *__data, proto)				\
500
{									\
501
	struct ftrace_event_call *event_call = __data;			\
502
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
503 504
	struct ring_buffer_event *event;				\
	struct ftrace_raw_##call *entry;				\
505
	struct ring_buffer *buffer;					\
506
	unsigned long irq_flags;					\
507
	int __data_size;						\
508 509 510 511 512
	int pc;								\
									\
	local_save_flags(irq_flags);					\
	pc = preempt_count();						\
									\
513
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
514
									\
515
	event = trace_current_buffer_lock_reserve(&buffer,		\
516
				 event_call->event.type,		\
517
				 sizeof(*entry) + __data_size,		\
518
				 irq_flags, pc);			\
519 520 521 522
	if (!event)							\
		return;							\
	entry	= ring_buffer_event_data(event);			\
									\
523 524
	tstruct								\
									\
525
	{ assign; }							\
526
									\
527 528 529
	if (!filter_current_check_discard(buffer, event_call, entry, event)) \
		trace_nowake_buffer_unlock_commit(buffer,		\
						  event, irq_flags, pc); \
530
}
531 532 533 534 535
/*
 * 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.
 */
536 537 538

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
539
static inline void ftrace_test_probe_##call(void)			\
540
{									\
541 542
	check_trace_callback_type_##call(ftrace_raw_event_##template);	\
}
543 544

#undef DEFINE_EVENT_PRINT
545
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
546 547 548

#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

L
Lai Jiangshan 已提交
549 550 551 552 553 554 555 556 557 558 559
#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)

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

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

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

599
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
P
Peter Zijlstra 已提交
600

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

675
#ifdef CONFIG_PERF_EVENTS
676

L
Lai Jiangshan 已提交
677 678 679 680 681 682 683 684 685 686
#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)

687 688 689 690 691 692
#undef __perf_addr
#define __perf_addr(a) __addr = (a)

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

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

733 734 735 736 737
/*
 * 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.
 */
738
#undef DEFINE_EVENT
739
#define DEFINE_EVENT(template, call, proto, args)			\
740
static inline void perf_test_probe_##call(void)				\
741
{									\
742
	check_trace_callback_type_##call(perf_trace_##template);	\
743 744
}

745

746 747 748 749
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

750
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
751
#endif /* CONFIG_PERF_EVENTS */
752

P
Peter Zijlstra 已提交
753 754
#undef _TRACE_PROFILE_INIT