]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/trace/ftrace.h
Merge tag 'regulator-v4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[mirror_ubuntu-artful-kernel.git] / include / trace / ftrace.h
CommitLineData
f42c85e7
SR
1/*
2 * Stage 1 of the trace events.
3 *
4 * Override the macros in <trace/trace_events.h> to include the following:
5 *
6 * struct ftrace_raw_<call> {
7 * struct trace_entry ent;
8 * <type> <item>;
9 * <type2> <item2>[<len>];
10 * [...]
11 * };
12 *
13 * The <type> <item> is created by the __field(type, item) macro or
14 * the __array(type2, item2, len) macro.
15 * We simply do "type item;", and that will create the fields
16 * in the structure.
17 */
18
19#include <linux/ftrace_event.h>
20
ff038f5c 21/*
091ad365 22 * DECLARE_EVENT_CLASS can be used to add a generic function
ff038f5c
SR
23 * handlers for events. That is, if all events have the same
24 * parameters and just have distinct trace points.
25 * Each tracepoint can be defined with DEFINE_EVENT and that
091ad365 26 * will map the DECLARE_EVENT_CLASS to the tracepoint.
ff038f5c
SR
27 *
28 * TRACE_EVENT is a one to one mapping between tracepoint and template.
29 */
30#undef TRACE_EVENT
31#define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
091ad365 32 DECLARE_EVENT_CLASS(name, \
ff038f5c
SR
33 PARAMS(proto), \
34 PARAMS(args), \
35 PARAMS(tstruct), \
36 PARAMS(assign), \
37 PARAMS(print)); \
38 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));
39
40
7fcb7c47
LZ
41#undef __field
42#define __field(type, item) type item;
43
43b51ead
LZ
44#undef __field_ext
45#define __field_ext(type, item, filter_type) type item;
46
4d4c9cc8
SR
47#undef __field_struct
48#define __field_struct(type, item) type item;
49
50#undef __field_struct_ext
51#define __field_struct_ext(type, item, filter_type) type item;
52
f42c85e7
SR
53#undef __array
54#define __array(type, item, len) type item[len];
55
7fcb7c47 56#undef __dynamic_array
7d536cb3 57#define __dynamic_array(type, item, len) u32 __data_loc_##item;
f42c85e7 58
9cbf1176 59#undef __string
7fcb7c47 60#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 61
4449bf92
SRRH
62#undef __bitmask
63#define __bitmask(item, nr_bits) __dynamic_array(char, item, -1)
64
f42c85e7
SR
65#undef TP_STRUCT__entry
66#define TP_STRUCT__entry(args...) args
67
091ad365
IM
68#undef DECLARE_EVENT_CLASS
69#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
ff038f5c
SR
70 struct ftrace_raw_##name { \
71 struct trace_entry ent; \
72 tstruct \
73 char __data[0]; \
8f082018
SR
74 }; \
75 \
76 static struct ftrace_event_class event_class_##name;
77
ff038f5c
SR
78#undef DEFINE_EVENT
79#define DEFINE_EVENT(template, name, proto, args) \
49c17746 80 static struct ftrace_event_call __used \
86c38a31 81 __attribute__((__aligned__(4))) event_##name
f42c85e7 82
f5abaa1b
SR
83#undef DEFINE_EVENT_FN
84#define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
85 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
86
e5bc9721
SR
87#undef DEFINE_EVENT_PRINT
88#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
89 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
90
97419875
JS
91/* Callbacks are meaningless to ftrace. */
92#undef TRACE_EVENT_FN
0dd7b747
FW
93#define TRACE_EVENT_FN(name, proto, args, tstruct, \
94 assign, print, reg, unreg) \
819ce45a
FW
95 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
96 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
97419875 97
1ed0c597
FW
98#undef TRACE_EVENT_FLAGS
99#define TRACE_EVENT_FLAGS(name, value) \
53cf810b 100 __TRACE_EVENT_FLAGS(name, value)
1ed0c597 101
d5b5f391
PZ
102#undef TRACE_EVENT_PERF_PERM
103#define TRACE_EVENT_PERF_PERM(name, expr...) \
104 __TRACE_EVENT_PERF_PERM(name, expr)
105
f42c85e7
SR
106#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
107
9cbf1176 108
f42c85e7
SR
109/*
110 * Stage 2 of the trace events.
111 *
9cbf1176
FW
112 * Include the following:
113 *
7fcb7c47 114 * struct ftrace_data_offsets_<call> {
7d536cb3
LZ
115 * u32 <item1>;
116 * u32 <item2>;
9cbf1176
FW
117 * [...]
118 * };
119 *
7d536cb3 120 * The __dynamic_array() macro will create each u32 <item>, this is
7fcb7c47 121 * to keep the offset of each array from the beginning of the event.
7d536cb3 122 * The size of an array is also encoded, in the higher 16 bits of <item>.
9cbf1176
FW
123 */
124
7fcb7c47 125#undef __field
43b51ead
LZ
126#define __field(type, item)
127
128#undef __field_ext
129#define __field_ext(type, item, filter_type)
7fcb7c47 130
4d4c9cc8
SR
131#undef __field_struct
132#define __field_struct(type, item)
133
134#undef __field_struct_ext
135#define __field_struct_ext(type, item, filter_type)
136
9cbf1176
FW
137#undef __array
138#define __array(type, item, len)
139
7fcb7c47 140#undef __dynamic_array
7d536cb3 141#define __dynamic_array(type, item, len) u32 item;
9cbf1176
FW
142
143#undef __string
7fcb7c47 144#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 145
4449bf92
SRRH
146#undef __bitmask
147#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
148
091ad365
IM
149#undef DECLARE_EVENT_CLASS
150#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
7fcb7c47 151 struct ftrace_data_offsets_##call { \
9cbf1176
FW
152 tstruct; \
153 };
154
ff038f5c
SR
155#undef DEFINE_EVENT
156#define DEFINE_EVENT(template, name, proto, args)
157
e5bc9721
SR
158#undef DEFINE_EVENT_PRINT
159#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
160 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
161
1ed0c597
FW
162#undef TRACE_EVENT_FLAGS
163#define TRACE_EVENT_FLAGS(event, flag)
164
d5b5f391
PZ
165#undef TRACE_EVENT_PERF_PERM
166#define TRACE_EVENT_PERF_PERM(event, expr...)
167
9cbf1176
FW
168#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
169
170/*
171 * Stage 3 of the trace events.
172 *
f42c85e7
SR
173 * Override the macros in <trace/trace_events.h> to include the following:
174 *
175 * enum print_line_t
176 * ftrace_raw_output_<call>(struct trace_iterator *iter, int flags)
177 * {
178 * struct trace_seq *s = &iter->seq;
179 * struct ftrace_raw_<call> *field; <-- defined in stage 1
180 * struct trace_entry *entry;
bc289ae9 181 * struct trace_seq *p = &iter->tmp_seq;
f42c85e7
SR
182 * int ret;
183 *
184 * entry = iter->ent;
185 *
32c0edae 186 * if (entry->type != event_<call>->event.type) {
f42c85e7
SR
187 * WARN_ON_ONCE(1);
188 * return TRACE_TYPE_UNHANDLED;
189 * }
190 *
191 * field = (typeof(field))entry;
192 *
56d8bd3f 193 * trace_seq_init(p);
50354a8a
LZ
194 * ret = trace_seq_printf(s, "%s: ", <call>);
195 * if (ret)
196 * ret = trace_seq_printf(s, <TP_printk> "\n");
f42c85e7
SR
197 * if (!ret)
198 * return TRACE_TYPE_PARTIAL_LINE;
199 *
200 * return TRACE_TYPE_HANDLED;
201 * }
202 *
203 * This is the method used to print the raw event to the trace
204 * output format. Note, this is not needed if the data is read
205 * in binary.
206 */
207
208#undef __entry
209#define __entry field
210
211#undef TP_printk
212#define TP_printk(fmt, args...) fmt "\n", args
213
7fcb7c47
LZ
214#undef __get_dynamic_array
215#define __get_dynamic_array(field) \
7d536cb3 216 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
7fcb7c47 217
beba4bb0
SRRH
218#undef __get_dynamic_array_len
219#define __get_dynamic_array_len(field) \
220 ((__entry->__data_loc_##field >> 16) & 0xffff)
221
9cbf1176 222#undef __get_str
7fcb7c47 223#define __get_str(field) (char *)__get_dynamic_array(field)
9cbf1176 224
4449bf92
SRRH
225#undef __get_bitmask
226#define __get_bitmask(field) \
227 ({ \
228 void *__bitmask = __get_dynamic_array(field); \
229 unsigned int __bitmask_size; \
beba4bb0 230 __bitmask_size = __get_dynamic_array_len(field); \
4449bf92
SRRH
231 ftrace_print_bitmask_seq(p, __bitmask, __bitmask_size); \
232 })
233
be74b73a
SR
234#undef __print_flags
235#define __print_flags(flag, delim, flag_array...) \
236 ({ \
a48f494e 237 static const struct trace_print_flags __flags[] = \
be74b73a 238 { flag_array, { -1, NULL }}; \
a48f494e 239 ftrace_print_flags_seq(p, delim, flag, __flags); \
be74b73a
SR
240 })
241
0f4fc29d
SR
242#undef __print_symbolic
243#define __print_symbolic(value, symbol_array...) \
244 ({ \
245 static const struct trace_print_flags symbols[] = \
246 { symbol_array, { -1, NULL }}; \
247 ftrace_print_symbols_seq(p, value, symbols); \
248 })
249
2fc1b6f0 250#undef __print_symbolic_u64
251#if BITS_PER_LONG == 32
252#define __print_symbolic_u64(value, symbol_array...) \
253 ({ \
254 static const struct trace_print_flags_u64 symbols[] = \
255 { symbol_array, { -1, NULL } }; \
256 ftrace_print_symbols_seq_u64(p, value, symbols); \
257 })
258#else
259#define __print_symbolic_u64(value, symbol_array...) \
260 __print_symbolic(value, symbol_array)
261#endif
262
5a2e3995
KT
263#undef __print_hex
264#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)
265
6ea22486
DM
266#undef __print_array
267#define __print_array(array, count, el_size) \
268 ({ \
269 BUILD_BUG_ON(el_size != 1 && el_size != 2 && \
270 el_size != 4 && el_size != 8); \
271 ftrace_print_array_seq(p, array, count, el_size); \
272 })
273
091ad365
IM
274#undef DECLARE_EVENT_CLASS
275#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 276static notrace enum print_line_t \
80decc70
SR
277ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
278 struct trace_event *trace_event) \
f42c85e7
SR
279{ \
280 struct trace_seq *s = &iter->seq; \
f71130de 281 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
f42c85e7 282 struct ftrace_raw_##call *field; \
f42c85e7
SR
283 int ret; \
284 \
f71130de 285 field = (typeof(field))iter->ent; \
80decc70 286 \
f71130de 287 ret = ftrace_raw_output_prep(iter, trace_event); \
8e2e095c 288 if (ret != TRACE_TYPE_HANDLED) \
f71130de
LZ
289 return ret; \
290 \
19a7fe20 291 trace_seq_printf(s, print); \
f42c85e7 292 \
19a7fe20 293 return trace_handle_return(s); \
80decc70
SR
294} \
295static struct trace_event_functions ftrace_event_type_funcs_##call = { \
296 .trace = ftrace_raw_output_##call, \
297};
ff038f5c 298
e5bc9721
SR
299#undef DEFINE_EVENT_PRINT
300#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
83f0d539 301static notrace enum print_line_t \
a9a57763
SR
302ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
303 struct trace_event *event) \
e5bc9721 304{ \
e5bc9721
SR
305 struct ftrace_raw_##template *field; \
306 struct trace_entry *entry; \
bc289ae9 307 struct trace_seq *p = &iter->tmp_seq; \
f42c85e7
SR
308 \
309 entry = iter->ent; \
310 \
32c0edae 311 if (entry->type != event_##call.event.type) { \
f42c85e7
SR
312 WARN_ON_ONCE(1); \
313 return TRACE_TYPE_UNHANDLED; \
314 } \
315 \
316 field = (typeof(field))entry; \
317 \
56d8bd3f 318 trace_seq_init(p); \
1d6bae96 319 return ftrace_output_call(iter, #call, print); \
80decc70
SR
320} \
321static struct trace_event_functions ftrace_event_type_funcs_##call = { \
322 .trace = ftrace_raw_output_##call, \
323};
e5bc9721 324
f42c85e7
SR
325#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
326
43b51ead
LZ
327#undef __field_ext
328#define __field_ext(type, item, filter_type) \
f42c85e7
SR
329 ret = trace_define_field(event_call, #type, #item, \
330 offsetof(typeof(field), item), \
43b51ead
LZ
331 sizeof(field.item), \
332 is_signed_type(type), filter_type); \
f42c85e7
SR
333 if (ret) \
334 return ret;
335
4d4c9cc8
SR
336#undef __field_struct_ext
337#define __field_struct_ext(type, item, filter_type) \
338 ret = trace_define_field(event_call, #type, #item, \
339 offsetof(typeof(field), item), \
340 sizeof(field.item), \
341 0, filter_type); \
342 if (ret) \
343 return ret;
344
43b51ead
LZ
345#undef __field
346#define __field(type, item) __field_ext(type, item, FILTER_OTHER)
347
4d4c9cc8
SR
348#undef __field_struct
349#define __field_struct(type, item) __field_struct_ext(type, item, FILTER_OTHER)
350
f42c85e7
SR
351#undef __array
352#define __array(type, item, len) \
04295780 353 do { \
87291347 354 char *type_str = #type"["__stringify(len)"]"; \
04295780 355 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
87291347 356 ret = trace_define_field(event_call, type_str, #item, \
f42c85e7 357 offsetof(typeof(field), item), \
fb7ae981
LJ
358 sizeof(field.item), \
359 is_signed_type(type), FILTER_OTHER); \
04295780
SR
360 if (ret) \
361 return ret; \
362 } while (0);
f42c85e7 363
7fcb7c47
LZ
364#undef __dynamic_array
365#define __dynamic_array(type, item, len) \
68fd60a8 366 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
43b51ead 367 offsetof(typeof(field), __data_loc_##item), \
fb7ae981
LJ
368 sizeof(field.__data_loc_##item), \
369 is_signed_type(type), FILTER_OTHER);
7fcb7c47 370
9cbf1176 371#undef __string
7fcb7c47 372#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 373
4449bf92
SRRH
374#undef __bitmask
375#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
376
091ad365
IM
377#undef DECLARE_EVENT_CLASS
378#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
7e4f44b1 379static int notrace __init \
14be96c9 380ftrace_define_fields_##call(struct ftrace_event_call *event_call) \
f42c85e7
SR
381{ \
382 struct ftrace_raw_##call field; \
f42c85e7
SR
383 int ret; \
384 \
f42c85e7
SR
385 tstruct; \
386 \
387 return ret; \
388}
389
ff038f5c
SR
390#undef DEFINE_EVENT
391#define DEFINE_EVENT(template, name, proto, args)
392
e5bc9721
SR
393#undef DEFINE_EVENT_PRINT
394#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
395 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
396
f42c85e7
SR
397#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
398
7fcb7c47
LZ
399/*
400 * remember the offset of each array from the beginning of the event.
401 */
402
403#undef __entry
404#define __entry entry
405
406#undef __field
407#define __field(type, item)
408
43b51ead
LZ
409#undef __field_ext
410#define __field_ext(type, item, filter_type)
411
4d4c9cc8
SR
412#undef __field_struct
413#define __field_struct(type, item)
414
415#undef __field_struct_ext
416#define __field_struct_ext(type, item, filter_type)
417
7fcb7c47
LZ
418#undef __array
419#define __array(type, item, len)
420
421#undef __dynamic_array
422#define __dynamic_array(type, item, len) \
114e7b52 423 __item_length = (len) * sizeof(type); \
7fcb7c47
LZ
424 __data_offsets->item = __data_size + \
425 offsetof(typeof(*entry), __data); \
114e7b52
FB
426 __data_offsets->item |= __item_length << 16; \
427 __data_size += __item_length;
7fcb7c47
LZ
428
429#undef __string
4e58e547
SRRH
430#define __string(item, src) __dynamic_array(char, item, \
431 strlen((src) ? (const char *)(src) : "(null)") + 1)
7fcb7c47 432
4449bf92
SRRH
433/*
434 * __bitmask_size_in_bytes_raw is the number of bytes needed to hold
435 * num_possible_cpus().
436 */
437#define __bitmask_size_in_bytes_raw(nr_bits) \
438 (((nr_bits) + 7) / 8)
439
440#define __bitmask_size_in_longs(nr_bits) \
441 ((__bitmask_size_in_bytes_raw(nr_bits) + \
442 ((BITS_PER_LONG / 8) - 1)) / (BITS_PER_LONG / 8))
443
444/*
445 * __bitmask_size_in_bytes is the number of bytes needed to hold
446 * num_possible_cpus() padded out to the nearest long. This is what
447 * is saved in the buffer, just to be consistent.
448 */
449#define __bitmask_size_in_bytes(nr_bits) \
450 (__bitmask_size_in_longs(nr_bits) * (BITS_PER_LONG / 8))
451
452#undef __bitmask
453#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, \
454 __bitmask_size_in_longs(nr_bits))
455
091ad365
IM
456#undef DECLARE_EVENT_CLASS
457#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 458static inline notrace int ftrace_get_offsets_##call( \
7fcb7c47
LZ
459 struct ftrace_data_offsets_##call *__data_offsets, proto) \
460{ \
461 int __data_size = 0; \
114e7b52 462 int __maybe_unused __item_length; \
7fcb7c47
LZ
463 struct ftrace_raw_##call __maybe_unused *entry; \
464 \
465 tstruct; \
466 \
467 return __data_size; \
468}
469
ff038f5c
SR
470#undef DEFINE_EVENT
471#define DEFINE_EVENT(template, name, proto, args)
472
e5bc9721
SR
473#undef DEFINE_EVENT_PRINT
474#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
475 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
476
7fcb7c47
LZ
477#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
478
c32e827b 479/*
9cbf1176 480 * Stage 4 of the trace events.
c32e827b 481 *
ea20d929 482 * Override the macros in <trace/trace_events.h> to include the following:
c32e827b 483 *
157587d7 484 * For those macros defined with TRACE_EVENT:
c32e827b
SR
485 *
486 * static struct ftrace_event_call event_<call>;
487 *
2239291a 488 * static void ftrace_raw_event_<call>(void *__data, proto)
c32e827b 489 * {
ccb469a1
SR
490 * struct ftrace_event_file *ftrace_file = __data;
491 * struct ftrace_event_call *event_call = ftrace_file->event_call;
50354a8a 492 * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
bac5fb97
TZ
493 * unsigned long eflags = ftrace_file->flags;
494 * enum event_trigger_type __tt = ETT_NONE;
ef18012b
SR
495 * struct ring_buffer_event *event;
496 * struct ftrace_raw_<call> *entry; <-- defined in stage 1
e77405ad 497 * struct ring_buffer *buffer;
ef18012b 498 * unsigned long irq_flags;
50354a8a 499 * int __data_size;
ef18012b
SR
500 * int pc;
501 *
bac5fb97
TZ
502 * if (!(eflags & FTRACE_EVENT_FL_TRIGGER_COND)) {
503 * if (eflags & FTRACE_EVENT_FL_TRIGGER_MODE)
504 * event_triggers_call(ftrace_file, NULL);
505 * if (eflags & FTRACE_EVENT_FL_SOFT_DISABLED)
506 * return;
507 * }
417944c4 508 *
ef18012b
SR
509 * local_save_flags(irq_flags);
510 * pc = preempt_count();
511 *
50354a8a
LZ
512 * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
513 *
ccb469a1 514 * event = trace_event_buffer_lock_reserve(&buffer, ftrace_file,
32c0edae 515 * event_<call>->event.type,
50354a8a 516 * sizeof(*entry) + __data_size,
ef18012b
SR
517 * irq_flags, pc);
518 * if (!event)
519 * return;
520 * entry = ring_buffer_event_data(event);
521 *
50354a8a
LZ
522 * { <assign>; } <-- Here we assign the entries by the __field and
523 * __array macros.
c32e827b 524 *
bac5fb97
TZ
525 * if (eflags & FTRACE_EVENT_FL_TRIGGER_COND)
526 * __tt = event_triggers_call(ftrace_file, entry);
527 *
528 * if (test_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT,
529 * &ftrace_file->flags))
530 * ring_buffer_discard_commit(buffer, event);
531 * else if (!filter_check_discard(ftrace_file, entry, buffer, event))
f306cc82 532 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
bac5fb97
TZ
533 *
534 * if (__tt)
535 * event_triggers_post_call(ftrace_file, __tt);
c32e827b
SR
536 * }
537 *
c32e827b 538 * static struct trace_event ftrace_event_type_<call> = {
ef18012b 539 * .trace = ftrace_raw_output_<call>, <-- stage 2
c32e827b
SR
540 * };
541 *
50354a8a
LZ
542 * static const char print_fmt_<call>[] = <TP_printk>;
543 *
8f082018
SR
544 * static struct ftrace_event_class __used event_class_<template> = {
545 * .system = "<system>",
2e33af02 546 * .define_fields = ftrace_define_fields_<call>,
0405ab80
SR
547 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
548 * .raw_init = trace_event_raw_init,
549 * .probe = ftrace_raw_event_##call,
a1d0ce82 550 * .reg = ftrace_event_reg,
8f082018
SR
551 * };
552 *
e4a9ea5e 553 * static struct ftrace_event_call event_<call> = {
8f082018 554 * .class = event_class_<template>,
abb43f69
MD
555 * {
556 * .tp = &__tracepoint_<call>,
557 * },
2e33af02 558 * .event = &ftrace_event_type_<call>,
50354a8a 559 * .print_fmt = print_fmt_<call>,
de7b2973 560 * .flags = TRACE_EVENT_FL_TRACEPOINT,
8f082018 561 * };
e4a9ea5e
SR
562 * // its only safe to use pointers when doing linker tricks to
563 * // create an array.
564 * static struct ftrace_event_call __used
565 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
c32e827b
SR
566 *
567 */
568
07b139c8 569#ifdef CONFIG_PERF_EVENTS
ac199db0 570
2239291a
SR
571#define _TRACE_PERF_PROTO(call, proto) \
572 static notrace void \
573 perf_trace_##call(void *__data, proto);
574
97d5a220 575#define _TRACE_PERF_INIT(call) \
2239291a 576 .perf_probe = perf_trace_##call,
ac199db0
PZ
577
578#else
2239291a 579#define _TRACE_PERF_PROTO(call, proto)
97d5a220 580#define _TRACE_PERF_INIT(call)
07b139c8 581#endif /* CONFIG_PERF_EVENTS */
ac199db0 582
da4d0302
SR
583#undef __entry
584#define __entry entry
d20e3b03 585
9cbf1176
FW
586#undef __field
587#define __field(type, item)
588
4d4c9cc8
SR
589#undef __field_struct
590#define __field_struct(type, item)
591
9cbf1176
FW
592#undef __array
593#define __array(type, item, len)
594
7fcb7c47
LZ
595#undef __dynamic_array
596#define __dynamic_array(type, item, len) \
597 __entry->__data_loc_##item = __data_offsets.item;
598
9cbf1176 599#undef __string
4449bf92 600#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176
FW
601
602#undef __assign_str
603#define __assign_str(dst, src) \
4e58e547 604 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
9cbf1176 605
4449bf92
SRRH
606#undef __bitmask
607#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
608
609#undef __get_bitmask
610#define __get_bitmask(field) (char *)__get_dynamic_array(field)
611
612#undef __assign_bitmask
613#define __assign_bitmask(dst, src, nr_bits) \
614 memcpy(__get_bitmask(dst), (src), __bitmask_size_in_bytes(nr_bits))
615
0fa0edaf
LJ
616#undef TP_fast_assign
617#define TP_fast_assign(args...) args
618
12473965
ON
619#undef __perf_addr
620#define __perf_addr(a) (a)
621
622#undef __perf_count
623#define __perf_count(c) (c)
624
625#undef __perf_task
626#define __perf_task(t) (t)
0fa0edaf 627
091ad365
IM
628#undef DECLARE_EVENT_CLASS
629#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
c32e827b 630 \
83f0d539 631static notrace void \
2239291a 632ftrace_raw_event_##call(void *__data, proto) \
c32e827b 633{ \
ae63b31e 634 struct ftrace_event_file *ftrace_file = __data; \
7fcb7c47 635 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
3fd40d1e 636 struct ftrace_event_buffer fbuffer; \
c32e827b 637 struct ftrace_raw_##call *entry; \
7fcb7c47 638 int __data_size; \
c32e827b 639 \
13a1e4ae
SRRH
640 if (ftrace_trigger_soft_disabled(ftrace_file)) \
641 return; \
417944c4 642 \
7fcb7c47 643 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
9cbf1176 644 \
3fd40d1e
SR
645 entry = ftrace_event_buffer_reserve(&fbuffer, ftrace_file, \
646 sizeof(*entry) + __data_size); \
647 \
648 if (!entry) \
c32e827b 649 return; \
c32e827b 650 \
7fcb7c47
LZ
651 tstruct \
652 \
a9c1c3ab 653 { assign; } \
c32e827b 654 \
3fd40d1e 655 ftrace_event_buffer_commit(&fbuffer); \
ff038f5c 656}
2239291a
SR
657/*
658 * The ftrace_test_probe is compiled out, it is only here as a build time check
659 * to make sure that if the tracepoint handling changes, the ftrace probe will
660 * fail to compile unless it too is updated.
661 */
ff038f5c
SR
662
663#undef DEFINE_EVENT
664#define DEFINE_EVENT(template, call, proto, args) \
2239291a 665static inline void ftrace_test_probe_##call(void) \
c32e827b 666{ \
2239291a
SR
667 check_trace_callback_type_##call(ftrace_raw_event_##template); \
668}
e5bc9721
SR
669
670#undef DEFINE_EVENT_PRINT
80decc70 671#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
e5bc9721
SR
672
673#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
674
509e760c
LJ
675#undef __entry
676#define __entry REC
677
678#undef __print_flags
679#undef __print_symbolic
b102f1d0 680#undef __print_hex
509e760c 681#undef __get_dynamic_array
beba4bb0 682#undef __get_dynamic_array_len
509e760c 683#undef __get_str
4449bf92 684#undef __get_bitmask
6ea22486 685#undef __print_array
509e760c
LJ
686
687#undef TP_printk
688#define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
689
091ad365 690#undef DECLARE_EVENT_CLASS
509e760c 691#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
2239291a 692_TRACE_PERF_PROTO(call, PARAMS(proto)); \
8f082018 693static const char print_fmt_##call[] = print; \
523c8113 694static struct ftrace_event_class __used __refdata event_class_##call = { \
2239291a 695 .system = __stringify(TRACE_SYSTEM), \
2e33af02
SR
696 .define_fields = ftrace_define_fields_##call, \
697 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
0405ab80 698 .raw_init = trace_event_raw_init, \
2239291a 699 .probe = ftrace_raw_event_##call, \
a1d0ce82 700 .reg = ftrace_event_reg, \
2239291a 701 _TRACE_PERF_INIT(call) \
8f082018 702};
e5bc9721
SR
703
704#undef DEFINE_EVENT
705#define DEFINE_EVENT(template, call, proto, args) \
c32e827b 706 \
e4a9ea5e 707static struct ftrace_event_call __used event_##call = { \
8f082018 708 .class = &event_class_##template, \
abb43f69
MD
709 { \
710 .tp = &__tracepoint_##call, \
711 }, \
80decc70 712 .event.funcs = &ftrace_event_type_funcs_##template, \
509e760c 713 .print_fmt = print_fmt_##template, \
de7b2973 714 .flags = TRACE_EVENT_FL_TRACEPOINT, \
e4a9ea5e
SR
715}; \
716static struct ftrace_event_call __used \
717__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
ac199db0 718
e5bc9721
SR
719#undef DEFINE_EVENT_PRINT
720#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
c32e827b 721 \
509e760c
LJ
722static const char print_fmt_##call[] = print; \
723 \
e4a9ea5e 724static struct ftrace_event_call __used event_##call = { \
8f082018 725 .class = &event_class_##template, \
abb43f69
MD
726 { \
727 .tp = &__tracepoint_##call, \
728 }, \
80decc70 729 .event.funcs = &ftrace_event_type_funcs_##call, \
509e760c 730 .print_fmt = print_fmt_##call, \
de7b2973 731 .flags = TRACE_EVENT_FL_TRACEPOINT, \
e4a9ea5e
SR
732}; \
733static struct ftrace_event_call __used \
734__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
ac199db0 735
f42c85e7 736#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
ac199db0 737
f413cdb8 738
07b139c8 739#ifdef CONFIG_PERF_EVENTS
f413cdb8 740
509e760c
LJ
741#undef __entry
742#define __entry entry
743
744#undef __get_dynamic_array
745#define __get_dynamic_array(field) \
746 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
747
beba4bb0
SRRH
748#undef __get_dynamic_array_len
749#define __get_dynamic_array_len(field) \
750 ((__entry->__data_loc_##field >> 16) & 0xffff)
751
509e760c
LJ
752#undef __get_str
753#define __get_str(field) (char *)__get_dynamic_array(field)
754
4449bf92
SRRH
755#undef __get_bitmask
756#define __get_bitmask(field) (char *)__get_dynamic_array(field)
757
f413cdb8 758#undef __perf_addr
12473965 759#define __perf_addr(a) (__addr = (a))
f413cdb8
FW
760
761#undef __perf_count
12473965 762#define __perf_count(c) (__count = (c))
f413cdb8 763
e6dab5ff 764#undef __perf_task
12473965 765#define __perf_task(t) (__task = (t))
92e51938 766
091ad365
IM
767#undef DECLARE_EVENT_CLASS
768#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 769static notrace void \
2239291a 770perf_trace_##call(void *__data, proto) \
f413cdb8 771{ \
2239291a 772 struct ftrace_event_call *event_call = __data; \
f413cdb8 773 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
f413cdb8 774 struct ftrace_raw_##call *entry; \
86038c5e 775 struct pt_regs *__regs; \
f413cdb8 776 u64 __addr = 0, __count = 1; \
e6dab5ff 777 struct task_struct *__task = NULL; \
1c024eca 778 struct hlist_head *head; \
f413cdb8
FW
779 int __entry_size; \
780 int __data_size; \
4ed7c92d 781 int rctx; \
f413cdb8
FW
782 \
783 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
d027e6a9
ON
784 \
785 head = this_cpu_ptr(event_call->perf_events); \
786 if (__builtin_constant_p(!__task) && !__task && \
787 hlist_empty(head)) \
788 return; \
789 \
a044560c
PZ
790 __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
791 sizeof(u64)); \
304703ab 792 __entry_size -= sizeof(u32); \
f413cdb8 793 \
36009d07
ON
794 entry = perf_trace_buf_prepare(__entry_size, \
795 event_call->event.type, &__regs, &rctx); \
430ad5a6
XG
796 if (!entry) \
797 return; \
b7e2ecef 798 \
86038c5e
PZI
799 perf_fetch_caller_regs(__regs); \
800 \
20ab4425
FW
801 tstruct \
802 \
803 { assign; } \
804 \
97d5a220 805 perf_trace_buf_submit(entry, __entry_size, rctx, __addr, \
86038c5e 806 __count, __regs, head, __task); \
f413cdb8
FW
807}
808
2239291a
SR
809/*
810 * This part is compiled out, it is only here as a build time check
811 * to make sure that if the tracepoint handling changes, the
812 * perf probe will fail to compile unless it too is updated.
813 */
ff038f5c 814#undef DEFINE_EVENT
6cc8a7c1 815#define DEFINE_EVENT(template, call, proto, args) \
2239291a 816static inline void perf_test_probe_##call(void) \
6cc8a7c1 817{ \
2239291a 818 check_trace_callback_type_##call(perf_trace_##template); \
ff038f5c
SR
819}
820
2239291a 821
e5bc9721
SR
822#undef DEFINE_EVENT_PRINT
823#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
824 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
825
f413cdb8 826#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
07b139c8 827#endif /* CONFIG_PERF_EVENTS */
f413cdb8 828