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