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
/* Callbacks are meaningless to ftrace. */
#undef TRACE_EVENT_FN
80 81
#define TRACE_EVENT_FN(name, proto, args, tstruct,			\
		assign, print, reg, unreg)				\
82 83
	TRACE_EVENT(name, PARAMS(proto), PARAMS(args),			\
		PARAMS(tstruct), PARAMS(assign), PARAMS(print))		\
84

85 86
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

87

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

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

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

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

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

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

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

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

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

132 133 134 135 136
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

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

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

182
#undef __get_str
183
#define __get_str(field) (char *)__get_dynamic_array(field)
184

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

193 194 195 196 197 198 199 200
#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 已提交
201 202 203
#undef __print_hex
#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)

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

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

276 277
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

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

287 288 289
#undef __field
#define __field(type, item)	__field_ext(type, item, FILTER_OTHER)

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

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

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

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

323 324 325
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

326 327 328 329
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

330 331
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

332 333 334 335 336 337 338 339 340 341
/*
 * remember the offset of each array from the beginning of the event.
 */

#undef __entry
#define __entry entry

#undef __field
#define __field(type, item)

342 343 344
#undef __field_ext
#define __field_ext(type, item, filter_type)

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

#undef __string
356
#define __string(item, src) __dynamic_array(char, item, strlen(src) + 1)
357

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

371 372 373
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

374 375 376 377
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

378 379
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

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

447
#ifdef CONFIG_PERF_EVENTS
P
Peter Zijlstra 已提交
448

449 450 451 452
#define _TRACE_PERF_PROTO(call, proto)					\
	static notrace void						\
	perf_trace_##call(void *__data, proto);

453
#define _TRACE_PERF_INIT(call)						\
454
	.perf_probe		= perf_trace_##call,
P
Peter Zijlstra 已提交
455 456

#else
457
#define _TRACE_PERF_PROTO(call, proto)
458
#define _TRACE_PERF_INIT(call)
459
#endif /* CONFIG_PERF_EVENTS */
P
Peter Zijlstra 已提交
460

461 462
#undef __entry
#define __entry entry
463

464 465 466 467 468 469
#undef __field
#define __field(type, item)

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

470 471 472 473
#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
	__entry->__data_loc_##item = __data_offsets.item;

474
#undef __string
475
#define __string(item, src) __dynamic_array(char, item, -1)       	\
476 477 478 479 480

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

481 482 483 484 485 486
#undef TP_fast_assign
#define TP_fast_assign(args...) args

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

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

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

#undef DEFINE_EVENT_PRINT
537
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
538 539 540

#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

L
Lai Jiangshan 已提交
541 542 543 544 545 546 547 548 549 550 551
#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)

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

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

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

592
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
P
Peter Zijlstra 已提交
593

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

668
#ifdef CONFIG_PERF_EVENTS
669

L
Lai Jiangshan 已提交
670 671 672 673 674 675 676 677 678 679
#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)

680 681 682 683 684 685
#undef __perf_addr
#define __perf_addr(a) __addr = (a)

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

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

726 727 728 729 730
/*
 * 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.
 */
731
#undef DEFINE_EVENT
732
#define DEFINE_EVENT(template, call, proto, args)			\
733
static inline void perf_test_probe_##call(void)				\
734
{									\
735
	check_trace_callback_type_##call(perf_trace_##template);	\
736 737
}

738

739 740 741 742
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

743
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
744
#endif /* CONFIG_PERF_EVENTS */
745

P
Peter Zijlstra 已提交
746 747
#undef _TRACE_PROFILE_INIT