ftrace.h 20.1 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_FN
#define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

78 79 80 81
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

82 83
/* Callbacks are meaningless to ftrace. */
#undef TRACE_EVENT_FN
84 85
#define TRACE_EVENT_FN(name, proto, args, tstruct,			\
		assign, print, reg, unreg)				\
86 87
	TRACE_EVENT(name, PARAMS(proto), PARAMS(args),			\
		PARAMS(tstruct), PARAMS(assign), PARAMS(print))		\
88

89 90
#undef TRACE_EVENT_FLAGS
#define TRACE_EVENT_FLAGS(name, value)					\
91
	__TRACE_EVENT_FLAGS(name, value)
92

93 94 95 96
#undef TRACE_EVENT_PERF_PERM
#define TRACE_EVENT_PERF_PERM(name, expr...)				\
	__TRACE_EVENT_PERF_PERM(name, expr)

97 98
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

99

100 101 102
/*
 * Stage 2 of the trace events.
 *
103 104
 * Include the following:
 *
105
 * struct ftrace_data_offsets_<call> {
106 107
 *	u32				<item1>;
 *	u32				<item2>;
108 109 110
 *	[...]
 * };
 *
111
 * The __dynamic_array() macro will create each u32 <item>, this is
112
 * to keep the offset of each array from the beginning of the event.
113
 * The size of an array is also encoded, in the higher 16 bits of <item>.
114 115
 */

116
#undef __field
117 118 119 120
#define __field(type, item)

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

122 123 124
#undef __array
#define __array(type, item, len)

125
#undef __dynamic_array
126
#define __dynamic_array(type, item, len)	u32 item;
127 128

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

131 132
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
133
	struct ftrace_data_offsets_##call {				\
134 135 136
		tstruct;						\
	};

137 138 139
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

140 141 142 143
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

144 145 146
#undef TRACE_EVENT_FLAGS
#define TRACE_EVENT_FLAGS(event, flag)

147 148 149
#undef TRACE_EVENT_PERF_PERM
#define TRACE_EVENT_PERF_PERM(event, expr...)

150 151 152 153 154
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

/*
 * Stage 3 of the trace events.
 *
155 156 157 158 159 160 161 162
 * 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;
163
 *	struct trace_seq *p = &iter->tmp_seq;
164 165 166 167
 *	int ret;
 *
 *	entry = iter->ent;
 *
168
 *	if (entry->type != event_<call>->event.type) {
169 170 171 172 173 174
 *		WARN_ON_ONCE(1);
 *		return TRACE_TYPE_UNHANDLED;
 *	}
 *
 *	field = (typeof(field))entry;
 *
175
 *	trace_seq_init(p);
L
Li Zefan 已提交
176 177 178
 *	ret = trace_seq_printf(s, "%s: ", <call>);
 *	if (ret)
 *		ret = trace_seq_printf(s, <TP_printk> "\n");
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
 *	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

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

200
#undef __get_str
201
#define __get_str(field) (char *)__get_dynamic_array(field)
202

203 204 205
#undef __print_flags
#define __print_flags(flag, delim, flag_array...)			\
	({								\
206
		static const struct trace_print_flags __flags[] =	\
207
			{ flag_array, { -1, NULL }};			\
208
		ftrace_print_flags_seq(p, delim, flag, __flags);	\
209 210
	})

211 212 213 214 215 216 217 218
#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);		\
	})

219 220 221 222 223 224 225 226 227 228 229 230 231
#undef __print_symbolic_u64
#if BITS_PER_LONG == 32
#define __print_symbolic_u64(value, symbol_array...)			\
	({								\
		static const struct trace_print_flags_u64 symbols[] =	\
			{ symbol_array, { -1, NULL } };			\
		ftrace_print_symbols_seq_u64(p, value, symbols);	\
	})
#else
#define __print_symbolic_u64(value, symbol_array...)			\
			__print_symbolic(value, symbol_array)
#endif

K
Kei Tokunaga 已提交
232 233 234
#undef __print_hex
#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)

235 236
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
237
static notrace enum print_line_t					\
238 239
ftrace_raw_output_##call(struct trace_iterator *iter, int flags,	\
			 struct trace_event *trace_event)		\
240 241
{									\
	struct trace_seq *s = &iter->seq;				\
242
	struct trace_seq __maybe_unused *p = &iter->tmp_seq;		\
243 244 245
	struct ftrace_raw_##call *field;				\
	int ret;							\
									\
246
	field = (typeof(field))iter->ent;				\
247
									\
248
	ret = ftrace_raw_output_prep(iter, trace_event);		\
249
	if (ret)							\
250 251 252
		return ret;						\
									\
	ret = trace_seq_printf(s, print);				\
253 254 255 256
	if (!ret)							\
		return TRACE_TYPE_PARTIAL_LINE;				\
									\
	return TRACE_TYPE_HANDLED;					\
257 258 259 260
}									\
static struct trace_event_functions ftrace_event_type_funcs_##call = {	\
	.trace			= ftrace_raw_output_##call,		\
};
261

262 263
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, call, proto, args, print)		\
264
static notrace enum print_line_t					\
265 266
ftrace_raw_output_##call(struct trace_iterator *iter, int flags,	\
			 struct trace_event *event)			\
267 268 269
{									\
	struct ftrace_raw_##template *field;				\
	struct trace_entry *entry;					\
270
	struct trace_seq *p = &iter->tmp_seq;				\
271 272 273
									\
	entry = iter->ent;						\
									\
274
	if (entry->type != event_##call.event.type) {			\
275 276 277 278 279 280
		WARN_ON_ONCE(1);					\
		return TRACE_TYPE_UNHANDLED;				\
	}								\
									\
	field = (typeof(field))entry;					\
									\
281
	trace_seq_init(p);						\
282
	return ftrace_output_call(iter, #call, print);			\
283 284 285 286
}									\
static struct trace_event_functions ftrace_event_type_funcs_##call = {	\
	.trace			= ftrace_raw_output_##call,		\
};
287

288 289
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

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

299 300 301
#undef __field
#define __field(type, item)	__field_ext(type, item, FILTER_OTHER)

302 303
#undef __array
#define __array(type, item, len)					\
304
	do {								\
305
		mutex_lock(&event_storage_mutex);			\
306
		BUILD_BUG_ON(len > MAX_FILTER_STR_VAL);			\
307 308 309 310 311 312 313
		snprintf(event_storage, sizeof(event_storage),		\
			 "%s[%d]", #type, len);				\
		ret = trace_define_field(event_call, event_storage, #item, \
				 offsetof(typeof(field), item),		\
				 sizeof(field.item),			\
				 is_signed_type(type), FILTER_OTHER);	\
		mutex_unlock(&event_storage_mutex);			\
314 315 316
		if (ret)						\
			return ret;					\
	} while (0);
317

318 319
#undef __dynamic_array
#define __dynamic_array(type, item, len)				       \
320
	ret = trace_define_field(event_call, "__data_loc " #type "[]", #item,  \
321
				 offsetof(typeof(field), __data_loc_##item),   \
322 323
				 sizeof(field.__data_loc_##item),	       \
				 is_signed_type(type), FILTER_OTHER);
324

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

328 329
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print)	\
330
static int notrace __init						\
331
ftrace_define_fields_##call(struct ftrace_event_call *event_call)	\
332 333 334 335 336 337 338 339 340
{									\
	struct ftrace_raw_##call field;					\
	int ret;							\
									\
	tstruct;							\
									\
	return ret;							\
}

341 342 343
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

344 345 346 347
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

348 349
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

350 351 352 353 354 355 356 357 358 359
/*
 * remember the offset of each array from the beginning of the event.
 */

#undef __entry
#define __entry entry

#undef __field
#define __field(type, item)

360 361 362
#undef __field_ext
#define __field_ext(type, item, filter_type)

363 364 365 366 367
#undef __array
#define __array(type, item, len)

#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
368
	__item_length = (len) * sizeof(type);				\
369 370
	__data_offsets->item = __data_size +				\
			       offsetof(typeof(*entry), __data);	\
371 372
	__data_offsets->item |= __item_length << 16;			\
	__data_size += __item_length;
373 374

#undef __string
375 376
#define __string(item, src) __dynamic_array(char, item,			\
		    strlen((src) ? (const char *)(src) : "(null)") + 1)
377

378 379
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
380
static inline notrace int ftrace_get_offsets_##call(			\
381 382 383
	struct ftrace_data_offsets_##call *__data_offsets, proto)       \
{									\
	int __data_size = 0;						\
384
	int __maybe_unused __item_length;				\
385 386 387 388 389 390 391
	struct ftrace_raw_##call __maybe_unused *entry;			\
									\
	tstruct;							\
									\
	return __data_size;						\
}

392 393 394
#undef DEFINE_EVENT
#define DEFINE_EVENT(template, name, proto, args)

395 396 397 398
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

399 400
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

401
/*
402
 * Stage 4 of the trace events.
403
 *
404
 * Override the macros in <trace/trace_events.h> to include the following:
405
 *
406
 * For those macros defined with TRACE_EVENT:
407 408 409
 *
 * static struct ftrace_event_call event_<call>;
 *
410
 * static void ftrace_raw_event_<call>(void *__data, proto)
411
 * {
412 413
 *	struct ftrace_event_file *ftrace_file = __data;
 *	struct ftrace_event_call *event_call = ftrace_file->event_call;
L
Li Zefan 已提交
414
 *	struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
415 416
 *	unsigned long eflags = ftrace_file->flags;
 *	enum event_trigger_type __tt = ETT_NONE;
417 418
 *	struct ring_buffer_event *event;
 *	struct ftrace_raw_<call> *entry; <-- defined in stage 1
419
 *	struct ring_buffer *buffer;
420
 *	unsigned long irq_flags;
L
Li Zefan 已提交
421
 *	int __data_size;
422 423
 *	int pc;
 *
424 425 426 427 428 429
 *	if (!(eflags & FTRACE_EVENT_FL_TRIGGER_COND)) {
 *		if (eflags & FTRACE_EVENT_FL_TRIGGER_MODE)
 *			event_triggers_call(ftrace_file, NULL);
 *		if (eflags & FTRACE_EVENT_FL_SOFT_DISABLED)
 *			return;
 *	}
430
 *
431 432 433
 *	local_save_flags(irq_flags);
 *	pc = preempt_count();
 *
L
Li Zefan 已提交
434 435
 *	__data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
 *
436
 *	event = trace_event_buffer_lock_reserve(&buffer, ftrace_file,
437
 *				  event_<call>->event.type,
L
Li Zefan 已提交
438
 *				  sizeof(*entry) + __data_size,
439 440 441 442 443
 *				  irq_flags, pc);
 *	if (!event)
 *		return;
 *	entry	= ring_buffer_event_data(event);
 *
L
Li Zefan 已提交
444 445
 *	{ <assign>; }  <-- Here we assign the entries by the __field and
 *			   __array macros.
446
 *
447 448 449 450 451 452 453
 *	if (eflags & FTRACE_EVENT_FL_TRIGGER_COND)
 *		__tt = event_triggers_call(ftrace_file, entry);
 *
 *	if (test_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT,
 *		     &ftrace_file->flags))
 *		ring_buffer_discard_commit(buffer, event);
 *	else if (!filter_check_discard(ftrace_file, entry, buffer, event))
454
 *		trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
455 456 457
 *
 *	if (__tt)
 *		event_triggers_post_call(ftrace_file, __tt);
458 459 460
 * }
 *
 * static struct trace_event ftrace_event_type_<call> = {
461
 *	.trace			= ftrace_raw_output_<call>, <-- stage 2
462 463
 * };
 *
L
Li Zefan 已提交
464 465
 * static const char print_fmt_<call>[] = <TP_printk>;
 *
466 467
 * static struct ftrace_event_class __used event_class_<template> = {
 *	.system			= "<system>",
468
 *	.define_fields		= ftrace_define_fields_<call>,
469 470 471
 *	.fields			= LIST_HEAD_INIT(event_class_##call.fields),
 *	.raw_init		= trace_event_raw_init,
 *	.probe			= ftrace_raw_event_##call,
472
 *	.reg			= ftrace_event_reg,
473 474
 * };
 *
475
 * static struct ftrace_event_call event_<call> = {
476
 *	.name			= "<call>",
477
 *	.class			= event_class_<template>,
478
 *	.event			= &ftrace_event_type_<call>,
L
Li Zefan 已提交
479
 *	.print_fmt		= print_fmt_<call>,
480
 * };
481 482 483 484
 * // its only safe to use pointers when doing linker tricks to
 * // create an array.
 * static struct ftrace_event_call __used
 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
485 486 487
 *
 */

488
#ifdef CONFIG_PERF_EVENTS
P
Peter Zijlstra 已提交
489

490 491 492 493
#define _TRACE_PERF_PROTO(call, proto)					\
	static notrace void						\
	perf_trace_##call(void *__data, proto);

494
#define _TRACE_PERF_INIT(call)						\
495
	.perf_probe		= perf_trace_##call,
P
Peter Zijlstra 已提交
496 497

#else
498
#define _TRACE_PERF_PROTO(call, proto)
499
#define _TRACE_PERF_INIT(call)
500
#endif /* CONFIG_PERF_EVENTS */
P
Peter Zijlstra 已提交
501

502 503
#undef __entry
#define __entry entry
504

505 506 507 508 509 510
#undef __field
#define __field(type, item)

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

511 512 513 514
#undef __dynamic_array
#define __dynamic_array(type, item, len)				\
	__entry->__data_loc_##item = __data_offsets.item;

515
#undef __string
516
#define __string(item, src) __dynamic_array(char, item, -1)       	\
517 518 519

#undef __assign_str
#define __assign_str(dst, src)						\
520
	strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
521

522 523 524
#undef TP_fast_assign
#define TP_fast_assign(args...) args

525 526 527 528 529 530 531 532
#undef __perf_addr
#define __perf_addr(a)	(a)

#undef __perf_count
#define __perf_count(c)	(c)

#undef __perf_task
#define __perf_task(t)	(t)
533

534 535
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
536
									\
537
static notrace void							\
538
ftrace_raw_event_##call(void *__data, proto)				\
539
{									\
540
	struct ftrace_event_file *ftrace_file = __data;			\
541
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
542
	struct ftrace_event_buffer fbuffer;				\
543
	struct ftrace_raw_##call *entry;				\
544
	int __data_size;						\
545
									\
546 547
	if (ftrace_trigger_soft_disabled(ftrace_file))			\
		return;							\
548
									\
549
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
550
									\
551 552 553 554
	entry = ftrace_event_buffer_reserve(&fbuffer, ftrace_file,	\
				 sizeof(*entry) + __data_size);		\
									\
	if (!entry)							\
555 556
		return;							\
									\
557 558
	tstruct								\
									\
559
	{ assign; }							\
560
									\
561
	ftrace_event_buffer_commit(&fbuffer);				\
562
}
563 564 565 566 567
/*
 * 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.
 */
568 569 570

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
571
static inline void ftrace_test_probe_##call(void)			\
572
{									\
573 574
	check_trace_callback_type_##call(ftrace_raw_event_##template);	\
}
575 576

#undef DEFINE_EVENT_PRINT
577
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
578 579 580

#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)

L
Lai Jiangshan 已提交
581 582 583 584 585
#undef __entry
#define __entry REC

#undef __print_flags
#undef __print_symbolic
586
#undef __print_hex
L
Lai Jiangshan 已提交
587 588 589 590 591 592
#undef __get_dynamic_array
#undef __get_str

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

593
#undef DECLARE_EVENT_CLASS
L
Lai Jiangshan 已提交
594
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
595
_TRACE_PERF_PROTO(call, PARAMS(proto));					\
596
static const char print_fmt_##call[] = print;				\
597
static struct ftrace_event_class __used __refdata event_class_##call = { \
598
	.system			= __stringify(TRACE_SYSTEM),		\
599 600
	.define_fields		= ftrace_define_fields_##call,		\
	.fields			= LIST_HEAD_INIT(event_class_##call.fields),\
601
	.raw_init		= trace_event_raw_init,			\
602
	.probe			= ftrace_raw_event_##call,		\
603
	.reg			= ftrace_event_reg,			\
604
	_TRACE_PERF_INIT(call)						\
605
};
606 607 608

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
609
									\
610
static struct ftrace_event_call __used event_##call = {			\
611
	.name			= #call,				\
612
	.class			= &event_class_##template,		\
613
	.event.funcs		= &ftrace_event_type_funcs_##template,	\
L
Lai Jiangshan 已提交
614
	.print_fmt		= print_fmt_##template,			\
615 616 617
};									\
static struct ftrace_event_call __used					\
__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
P
Peter Zijlstra 已提交
618

619 620
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, call, proto, args, print)		\
621
									\
L
Lai Jiangshan 已提交
622 623
static const char print_fmt_##call[] = print;				\
									\
624
static struct ftrace_event_call __used event_##call = {			\
625
	.name			= #call,				\
626
	.class			= &event_class_##template,		\
627
	.event.funcs		= &ftrace_event_type_funcs_##call,	\
L
Lai Jiangshan 已提交
628
	.print_fmt		= print_fmt_##call,			\
629 630 631
};									\
static struct ftrace_event_call __used					\
__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
P
Peter Zijlstra 已提交
632

633
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
P
Peter Zijlstra 已提交
634

635

636
#ifdef CONFIG_PERF_EVENTS
637

L
Lai Jiangshan 已提交
638 639 640 641 642 643 644 645 646 647
#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)

648
#undef __perf_addr
649
#define __perf_addr(a)	(__addr = (a))
650 651

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

654
#undef __perf_task
655
#define __perf_task(t)	(__task = (t))
A
Andrew Vagin 已提交
656

657 658
#undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
659
static notrace void							\
660
perf_trace_##call(void *__data, proto)					\
661
{									\
662
	struct ftrace_event_call *event_call = __data;			\
663 664
	struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
	struct ftrace_raw_##call *entry;				\
S
Steven Rostedt 已提交
665
	struct pt_regs __regs;						\
666
	u64 __addr = 0, __count = 1;					\
667
	struct task_struct *__task = NULL;				\
668
	struct hlist_head *head;					\
669 670
	int __entry_size;						\
	int __data_size;						\
671
	int rctx;							\
672 673
									\
	__data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
674 675 676 677 678 679
									\
	head = this_cpu_ptr(event_call->perf_events);			\
	if (__builtin_constant_p(!__task) && !__task &&			\
				hlist_empty(head))			\
		return;							\
									\
680 681
	__entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
			     sizeof(u64));				\
682
	__entry_size -= sizeof(u32);					\
683
									\
684 685 686
	perf_fetch_caller_regs(&__regs);				\
	entry = perf_trace_buf_prepare(__entry_size,			\
			event_call->event.type, &__regs, &rctx);	\
687 688
	if (!entry)							\
		return;							\
689
									\
690 691 692 693
	tstruct								\
									\
	{ assign; }							\
									\
694
	perf_trace_buf_submit(entry, __entry_size, rctx, __addr,	\
695
		__count, &__regs, head, __task);			\
696 697
}

698 699 700 701 702
/*
 * 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.
 */
703
#undef DEFINE_EVENT
704
#define DEFINE_EVENT(template, call, proto, args)			\
705
static inline void perf_test_probe_##call(void)				\
706
{									\
707
	check_trace_callback_type_##call(perf_trace_##template);	\
708 709
}

710

711 712 713 714
#undef DEFINE_EVENT_PRINT
#define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))

715
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
716
#endif /* CONFIG_PERF_EVENTS */
717