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