]>
Commit | Line | Data |
---|---|---|
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 | ||
f42c85e7 SR |
47 | #undef __array |
48 | #define __array(type, item, len) type item[len]; | |
49 | ||
7fcb7c47 | 50 | #undef __dynamic_array |
7d536cb3 | 51 | #define __dynamic_array(type, item, len) u32 __data_loc_##item; |
f42c85e7 | 52 | |
9cbf1176 | 53 | #undef __string |
7fcb7c47 | 54 | #define __string(item, src) __dynamic_array(char, item, -1) |
9cbf1176 | 55 | |
f42c85e7 SR |
56 | #undef TP_STRUCT__entry |
57 | #define TP_STRUCT__entry(args...) args | |
58 | ||
091ad365 IM |
59 | #undef DECLARE_EVENT_CLASS |
60 | #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ | |
ff038f5c SR |
61 | struct ftrace_raw_##name { \ |
62 | struct trace_entry ent; \ | |
63 | tstruct \ | |
64 | char __data[0]; \ | |
8f082018 SR |
65 | }; \ |
66 | \ | |
67 | static struct ftrace_event_class event_class_##name; | |
68 | ||
ff038f5c SR |
69 | #undef DEFINE_EVENT |
70 | #define DEFINE_EVENT(template, name, proto, args) \ | |
86c38a31 JM |
71 | static struct ftrace_event_call \ |
72 | __attribute__((__aligned__(4))) event_##name | |
f42c85e7 | 73 | |
e5bc9721 SR |
74 | #undef DEFINE_EVENT_PRINT |
75 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | |
76 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | |
77 | ||
0dd7b747 FW |
78 | #undef __cpparg |
79 | #define __cpparg(arg...) arg | |
80 | ||
97419875 JS |
81 | /* Callbacks are meaningless to ftrace. */ |
82 | #undef TRACE_EVENT_FN | |
0dd7b747 FW |
83 | #define TRACE_EVENT_FN(name, proto, args, tstruct, \ |
84 | assign, print, reg, unreg) \ | |
85 | TRACE_EVENT(name, __cpparg(proto), __cpparg(args), \ | |
86 | __cpparg(tstruct), __cpparg(assign), __cpparg(print)) \ | |
97419875 | 87 | |
f42c85e7 SR |
88 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
89 | ||
9cbf1176 | 90 | |
f42c85e7 SR |
91 | /* |
92 | * Stage 2 of the trace events. | |
93 | * | |
9cbf1176 FW |
94 | * Include the following: |
95 | * | |
7fcb7c47 | 96 | * struct ftrace_data_offsets_<call> { |
7d536cb3 LZ |
97 | * u32 <item1>; |
98 | * u32 <item2>; | |
9cbf1176 FW |
99 | * [...] |
100 | * }; | |
101 | * | |
7d536cb3 | 102 | * The __dynamic_array() macro will create each u32 <item>, this is |
7fcb7c47 | 103 | * to keep the offset of each array from the beginning of the event. |
7d536cb3 | 104 | * The size of an array is also encoded, in the higher 16 bits of <item>. |
9cbf1176 FW |
105 | */ |
106 | ||
7fcb7c47 | 107 | #undef __field |
43b51ead LZ |
108 | #define __field(type, item) |
109 | ||
110 | #undef __field_ext | |
111 | #define __field_ext(type, item, filter_type) | |
7fcb7c47 | 112 | |
9cbf1176 FW |
113 | #undef __array |
114 | #define __array(type, item, len) | |
115 | ||
7fcb7c47 | 116 | #undef __dynamic_array |
7d536cb3 | 117 | #define __dynamic_array(type, item, len) u32 item; |
9cbf1176 FW |
118 | |
119 | #undef __string | |
7fcb7c47 | 120 | #define __string(item, src) __dynamic_array(char, item, -1) |
9cbf1176 | 121 | |
091ad365 IM |
122 | #undef DECLARE_EVENT_CLASS |
123 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | |
7fcb7c47 | 124 | struct ftrace_data_offsets_##call { \ |
9cbf1176 FW |
125 | tstruct; \ |
126 | }; | |
127 | ||
ff038f5c SR |
128 | #undef DEFINE_EVENT |
129 | #define DEFINE_EVENT(template, name, proto, args) | |
130 | ||
e5bc9721 SR |
131 | #undef DEFINE_EVENT_PRINT |
132 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | |
133 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | |
134 | ||
9cbf1176 FW |
135 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
136 | ||
137 | /* | |
138 | * Stage 3 of the trace events. | |
139 | * | |
f42c85e7 SR |
140 | * Override the macros in <trace/trace_events.h> to include the following: |
141 | * | |
142 | * enum print_line_t | |
143 | * ftrace_raw_output_<call>(struct trace_iterator *iter, int flags) | |
144 | * { | |
145 | * struct trace_seq *s = &iter->seq; | |
146 | * struct ftrace_raw_<call> *field; <-- defined in stage 1 | |
147 | * struct trace_entry *entry; | |
be74b73a | 148 | * struct trace_seq *p; |
f42c85e7 SR |
149 | * int ret; |
150 | * | |
151 | * entry = iter->ent; | |
152 | * | |
153 | * if (entry->type != event_<call>.id) { | |
154 | * WARN_ON_ONCE(1); | |
155 | * return TRACE_TYPE_UNHANDLED; | |
156 | * } | |
157 | * | |
158 | * field = (typeof(field))entry; | |
159 | * | |
50354a8a | 160 | * p = &get_cpu_var(ftrace_event_seq); |
56d8bd3f | 161 | * trace_seq_init(p); |
50354a8a LZ |
162 | * ret = trace_seq_printf(s, "%s: ", <call>); |
163 | * if (ret) | |
164 | * ret = trace_seq_printf(s, <TP_printk> "\n"); | |
be74b73a | 165 | * put_cpu(); |
f42c85e7 SR |
166 | * if (!ret) |
167 | * return TRACE_TYPE_PARTIAL_LINE; | |
168 | * | |
169 | * return TRACE_TYPE_HANDLED; | |
170 | * } | |
171 | * | |
172 | * This is the method used to print the raw event to the trace | |
173 | * output format. Note, this is not needed if the data is read | |
174 | * in binary. | |
175 | */ | |
176 | ||
177 | #undef __entry | |
178 | #define __entry field | |
179 | ||
180 | #undef TP_printk | |
181 | #define TP_printk(fmt, args...) fmt "\n", args | |
182 | ||
7fcb7c47 LZ |
183 | #undef __get_dynamic_array |
184 | #define __get_dynamic_array(field) \ | |
7d536cb3 | 185 | ((void *)__entry + (__entry->__data_loc_##field & 0xffff)) |
7fcb7c47 | 186 | |
9cbf1176 | 187 | #undef __get_str |
7fcb7c47 | 188 | #define __get_str(field) (char *)__get_dynamic_array(field) |
9cbf1176 | 189 | |
be74b73a SR |
190 | #undef __print_flags |
191 | #define __print_flags(flag, delim, flag_array...) \ | |
192 | ({ \ | |
a48f494e | 193 | static const struct trace_print_flags __flags[] = \ |
be74b73a | 194 | { flag_array, { -1, NULL }}; \ |
a48f494e | 195 | ftrace_print_flags_seq(p, delim, flag, __flags); \ |
be74b73a SR |
196 | }) |
197 | ||
0f4fc29d SR |
198 | #undef __print_symbolic |
199 | #define __print_symbolic(value, symbol_array...) \ | |
200 | ({ \ | |
201 | static const struct trace_print_flags symbols[] = \ | |
202 | { symbol_array, { -1, NULL }}; \ | |
203 | ftrace_print_symbols_seq(p, value, symbols); \ | |
204 | }) | |
205 | ||
091ad365 IM |
206 | #undef DECLARE_EVENT_CLASS |
207 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | |
83f0d539 | 208 | static notrace enum print_line_t \ |
ff038f5c SR |
209 | ftrace_raw_output_id_##call(int event_id, const char *name, \ |
210 | struct trace_iterator *iter, int flags) \ | |
f42c85e7 SR |
211 | { \ |
212 | struct trace_seq *s = &iter->seq; \ | |
213 | struct ftrace_raw_##call *field; \ | |
214 | struct trace_entry *entry; \ | |
be74b73a | 215 | struct trace_seq *p; \ |
f42c85e7 SR |
216 | int ret; \ |
217 | \ | |
218 | entry = iter->ent; \ | |
219 | \ | |
ff038f5c | 220 | if (entry->type != event_id) { \ |
f42c85e7 SR |
221 | WARN_ON_ONCE(1); \ |
222 | return TRACE_TYPE_UNHANDLED; \ | |
223 | } \ | |
224 | \ | |
225 | field = (typeof(field))entry; \ | |
226 | \ | |
be74b73a | 227 | p = &get_cpu_var(ftrace_event_seq); \ |
56d8bd3f | 228 | trace_seq_init(p); \ |
ff038f5c SR |
229 | ret = trace_seq_printf(s, "%s: ", name); \ |
230 | if (ret) \ | |
231 | ret = trace_seq_printf(s, print); \ | |
be74b73a | 232 | put_cpu(); \ |
f42c85e7 SR |
233 | if (!ret) \ |
234 | return TRACE_TYPE_PARTIAL_LINE; \ | |
235 | \ | |
236 | return TRACE_TYPE_HANDLED; \ | |
237 | } | |
ff038f5c SR |
238 | |
239 | #undef DEFINE_EVENT | |
240 | #define DEFINE_EVENT(template, name, proto, args) \ | |
83f0d539 | 241 | static notrace enum print_line_t \ |
a9a57763 SR |
242 | ftrace_raw_output_##name(struct trace_iterator *iter, int flags, \ |
243 | struct trace_event *event) \ | |
ff038f5c SR |
244 | { \ |
245 | return ftrace_raw_output_id_##template(event_##name.id, \ | |
246 | #name, iter, flags); \ | |
247 | } | |
248 | ||
e5bc9721 SR |
249 | #undef DEFINE_EVENT_PRINT |
250 | #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \ | |
83f0d539 | 251 | static notrace enum print_line_t \ |
a9a57763 SR |
252 | ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \ |
253 | struct trace_event *event) \ | |
e5bc9721 SR |
254 | { \ |
255 | struct trace_seq *s = &iter->seq; \ | |
256 | struct ftrace_raw_##template *field; \ | |
257 | struct trace_entry *entry; \ | |
258 | struct trace_seq *p; \ | |
f42c85e7 SR |
259 | int ret; \ |
260 | \ | |
261 | entry = iter->ent; \ | |
262 | \ | |
263 | if (entry->type != event_##call.id) { \ | |
264 | WARN_ON_ONCE(1); \ | |
265 | return TRACE_TYPE_UNHANDLED; \ | |
266 | } \ | |
267 | \ | |
268 | field = (typeof(field))entry; \ | |
269 | \ | |
be74b73a | 270 | p = &get_cpu_var(ftrace_event_seq); \ |
56d8bd3f | 271 | trace_seq_init(p); \ |
e5bc9721 SR |
272 | ret = trace_seq_printf(s, "%s: ", #call); \ |
273 | if (ret) \ | |
274 | ret = trace_seq_printf(s, print); \ | |
be74b73a | 275 | put_cpu(); \ |
f42c85e7 SR |
276 | if (!ret) \ |
277 | return TRACE_TYPE_PARTIAL_LINE; \ | |
278 | \ | |
279 | return TRACE_TYPE_HANDLED; \ | |
280 | } | |
e5bc9721 | 281 | |
f42c85e7 SR |
282 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
283 | ||
43b51ead LZ |
284 | #undef __field_ext |
285 | #define __field_ext(type, item, filter_type) \ | |
f42c85e7 SR |
286 | ret = trace_define_field(event_call, #type, #item, \ |
287 | offsetof(typeof(field), item), \ | |
43b51ead LZ |
288 | sizeof(field.item), \ |
289 | is_signed_type(type), filter_type); \ | |
f42c85e7 SR |
290 | if (ret) \ |
291 | return ret; | |
292 | ||
43b51ead LZ |
293 | #undef __field |
294 | #define __field(type, item) __field_ext(type, item, FILTER_OTHER) | |
295 | ||
f42c85e7 SR |
296 | #undef __array |
297 | #define __array(type, item, len) \ | |
298 | BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \ | |
299 | ret = trace_define_field(event_call, #type "[" #len "]", #item, \ | |
300 | offsetof(typeof(field), item), \ | |
fb7ae981 LJ |
301 | sizeof(field.item), \ |
302 | is_signed_type(type), FILTER_OTHER); \ | |
f42c85e7 SR |
303 | if (ret) \ |
304 | return ret; | |
305 | ||
7fcb7c47 LZ |
306 | #undef __dynamic_array |
307 | #define __dynamic_array(type, item, len) \ | |
68fd60a8 | 308 | ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \ |
43b51ead | 309 | offsetof(typeof(field), __data_loc_##item), \ |
fb7ae981 LJ |
310 | sizeof(field.__data_loc_##item), \ |
311 | is_signed_type(type), FILTER_OTHER); | |
7fcb7c47 | 312 | |
9cbf1176 | 313 | #undef __string |
7fcb7c47 | 314 | #define __string(item, src) __dynamic_array(char, item, -1) |
9cbf1176 | 315 | |
091ad365 IM |
316 | #undef DECLARE_EVENT_CLASS |
317 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \ | |
83f0d539 | 318 | static int notrace \ |
14be96c9 | 319 | ftrace_define_fields_##call(struct ftrace_event_call *event_call) \ |
f42c85e7 SR |
320 | { \ |
321 | struct ftrace_raw_##call field; \ | |
f42c85e7 SR |
322 | int ret; \ |
323 | \ | |
f42c85e7 SR |
324 | tstruct; \ |
325 | \ | |
326 | return ret; \ | |
327 | } | |
328 | ||
ff038f5c SR |
329 | #undef DEFINE_EVENT |
330 | #define DEFINE_EVENT(template, name, proto, args) | |
331 | ||
e5bc9721 SR |
332 | #undef DEFINE_EVENT_PRINT |
333 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | |
334 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | |
335 | ||
f42c85e7 SR |
336 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
337 | ||
7fcb7c47 LZ |
338 | /* |
339 | * remember the offset of each array from the beginning of the event. | |
340 | */ | |
341 | ||
342 | #undef __entry | |
343 | #define __entry entry | |
344 | ||
345 | #undef __field | |
346 | #define __field(type, item) | |
347 | ||
43b51ead LZ |
348 | #undef __field_ext |
349 | #define __field_ext(type, item, filter_type) | |
350 | ||
7fcb7c47 LZ |
351 | #undef __array |
352 | #define __array(type, item, len) | |
353 | ||
354 | #undef __dynamic_array | |
355 | #define __dynamic_array(type, item, len) \ | |
356 | __data_offsets->item = __data_size + \ | |
357 | offsetof(typeof(*entry), __data); \ | |
7d536cb3 | 358 | __data_offsets->item |= (len * sizeof(type)) << 16; \ |
7fcb7c47 LZ |
359 | __data_size += (len) * sizeof(type); |
360 | ||
361 | #undef __string | |
ff038f5c | 362 | #define __string(item, src) __dynamic_array(char, item, strlen(src) + 1) |
7fcb7c47 | 363 | |
091ad365 IM |
364 | #undef DECLARE_EVENT_CLASS |
365 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | |
83f0d539 | 366 | static inline notrace int ftrace_get_offsets_##call( \ |
7fcb7c47 LZ |
367 | struct ftrace_data_offsets_##call *__data_offsets, proto) \ |
368 | { \ | |
369 | int __data_size = 0; \ | |
370 | struct ftrace_raw_##call __maybe_unused *entry; \ | |
371 | \ | |
372 | tstruct; \ | |
373 | \ | |
374 | return __data_size; \ | |
375 | } | |
376 | ||
ff038f5c SR |
377 | #undef DEFINE_EVENT |
378 | #define DEFINE_EVENT(template, name, proto, args) | |
379 | ||
e5bc9721 SR |
380 | #undef DEFINE_EVENT_PRINT |
381 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | |
382 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | |
383 | ||
7fcb7c47 LZ |
384 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
385 | ||
c32e827b | 386 | /* |
9cbf1176 | 387 | * Stage 4 of the trace events. |
c32e827b | 388 | * |
ea20d929 | 389 | * Override the macros in <trace/trace_events.h> to include the following: |
c32e827b | 390 | * |
157587d7 | 391 | * For those macros defined with TRACE_EVENT: |
c32e827b SR |
392 | * |
393 | * static struct ftrace_event_call event_<call>; | |
394 | * | |
2239291a | 395 | * static void ftrace_raw_event_<call>(void *__data, proto) |
c32e827b | 396 | * { |
2239291a | 397 | * struct ftrace_event_call *event_call = __data; |
50354a8a | 398 | * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets; |
ef18012b SR |
399 | * struct ring_buffer_event *event; |
400 | * struct ftrace_raw_<call> *entry; <-- defined in stage 1 | |
e77405ad | 401 | * struct ring_buffer *buffer; |
ef18012b | 402 | * unsigned long irq_flags; |
50354a8a | 403 | * int __data_size; |
ef18012b SR |
404 | * int pc; |
405 | * | |
406 | * local_save_flags(irq_flags); | |
407 | * pc = preempt_count(); | |
408 | * | |
50354a8a LZ |
409 | * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args); |
410 | * | |
e77405ad SR |
411 | * event = trace_current_buffer_lock_reserve(&buffer, |
412 | * event_<call>.id, | |
50354a8a | 413 | * sizeof(*entry) + __data_size, |
ef18012b SR |
414 | * irq_flags, pc); |
415 | * if (!event) | |
416 | * return; | |
417 | * entry = ring_buffer_event_data(event); | |
418 | * | |
50354a8a LZ |
419 | * { <assign>; } <-- Here we assign the entries by the __field and |
420 | * __array macros. | |
c32e827b | 421 | * |
50354a8a LZ |
422 | * if (!filter_current_check_discard(buffer, event_call, entry, event)) |
423 | * trace_current_buffer_unlock_commit(buffer, | |
424 | * event, irq_flags, pc); | |
c32e827b SR |
425 | * } |
426 | * | |
c32e827b | 427 | * static struct trace_event ftrace_event_type_<call> = { |
ef18012b | 428 | * .trace = ftrace_raw_output_<call>, <-- stage 2 |
c32e827b SR |
429 | * }; |
430 | * | |
50354a8a LZ |
431 | * static const char print_fmt_<call>[] = <TP_printk>; |
432 | * | |
8f082018 SR |
433 | * static struct ftrace_event_class __used event_class_<template> = { |
434 | * .system = "<system>", | |
2e33af02 | 435 | * .define_fields = ftrace_define_fields_<call>, |
0405ab80 SR |
436 | * .fields = LIST_HEAD_INIT(event_class_##call.fields), |
437 | * .raw_init = trace_event_raw_init, | |
438 | * .probe = ftrace_raw_event_##call, | |
8f082018 SR |
439 | * }; |
440 | * | |
c32e827b SR |
441 | * static struct ftrace_event_call __used |
442 | * __attribute__((__aligned__(4))) | |
443 | * __attribute__((section("_ftrace_events"))) event_<call> = { | |
ef18012b | 444 | * .name = "<call>", |
8f082018 | 445 | * .class = event_class_<template>, |
2e33af02 | 446 | * .event = &ftrace_event_type_<call>, |
50354a8a | 447 | * .print_fmt = print_fmt_<call>, |
8f082018 | 448 | * }; |
c32e827b SR |
449 | * |
450 | */ | |
451 | ||
07b139c8 | 452 | #ifdef CONFIG_PERF_EVENTS |
ac199db0 | 453 | |
2239291a SR |
454 | #define _TRACE_PERF_PROTO(call, proto) \ |
455 | static notrace void \ | |
456 | perf_trace_##call(void *__data, proto); | |
457 | ||
97d5a220 | 458 | #define _TRACE_PERF_INIT(call) \ |
2239291a | 459 | .perf_probe = perf_trace_##call, |
ac199db0 PZ |
460 | |
461 | #else | |
2239291a | 462 | #define _TRACE_PERF_PROTO(call, proto) |
97d5a220 | 463 | #define _TRACE_PERF_INIT(call) |
07b139c8 | 464 | #endif /* CONFIG_PERF_EVENTS */ |
ac199db0 | 465 | |
da4d0302 SR |
466 | #undef __entry |
467 | #define __entry entry | |
d20e3b03 | 468 | |
9cbf1176 FW |
469 | #undef __field |
470 | #define __field(type, item) | |
471 | ||
472 | #undef __array | |
473 | #define __array(type, item, len) | |
474 | ||
7fcb7c47 LZ |
475 | #undef __dynamic_array |
476 | #define __dynamic_array(type, item, len) \ | |
477 | __entry->__data_loc_##item = __data_offsets.item; | |
478 | ||
9cbf1176 | 479 | #undef __string |
7fcb7c47 | 480 | #define __string(item, src) __dynamic_array(char, item, -1) \ |
9cbf1176 FW |
481 | |
482 | #undef __assign_str | |
483 | #define __assign_str(dst, src) \ | |
9cbf1176 FW |
484 | strcpy(__get_str(dst), src); |
485 | ||
0fa0edaf LJ |
486 | #undef TP_fast_assign |
487 | #define TP_fast_assign(args...) args | |
488 | ||
489 | #undef TP_perf_assign | |
490 | #define TP_perf_assign(args...) | |
491 | ||
091ad365 IM |
492 | #undef DECLARE_EVENT_CLASS |
493 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | |
c32e827b | 494 | \ |
83f0d539 | 495 | static notrace void \ |
2239291a | 496 | ftrace_raw_event_##call(void *__data, proto) \ |
c32e827b | 497 | { \ |
2239291a | 498 | struct ftrace_event_call *event_call = __data; \ |
7fcb7c47 | 499 | struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\ |
c32e827b SR |
500 | struct ring_buffer_event *event; \ |
501 | struct ftrace_raw_##call *entry; \ | |
e77405ad | 502 | struct ring_buffer *buffer; \ |
c32e827b | 503 | unsigned long irq_flags; \ |
7fcb7c47 | 504 | int __data_size; \ |
c32e827b SR |
505 | int pc; \ |
506 | \ | |
507 | local_save_flags(irq_flags); \ | |
508 | pc = preempt_count(); \ | |
509 | \ | |
7fcb7c47 | 510 | __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \ |
9cbf1176 | 511 | \ |
e77405ad | 512 | event = trace_current_buffer_lock_reserve(&buffer, \ |
ff038f5c | 513 | event_call->id, \ |
7fcb7c47 | 514 | sizeof(*entry) + __data_size, \ |
9cbf1176 | 515 | irq_flags, pc); \ |
c32e827b SR |
516 | if (!event) \ |
517 | return; \ | |
518 | entry = ring_buffer_event_data(event); \ | |
519 | \ | |
7fcb7c47 LZ |
520 | tstruct \ |
521 | \ | |
a9c1c3ab | 522 | { assign; } \ |
c32e827b | 523 | \ |
e77405ad SR |
524 | if (!filter_current_check_discard(buffer, event_call, entry, event)) \ |
525 | trace_nowake_buffer_unlock_commit(buffer, \ | |
526 | event, irq_flags, pc); \ | |
ff038f5c | 527 | } |
2239291a SR |
528 | /* |
529 | * The ftrace_test_probe is compiled out, it is only here as a build time check | |
530 | * to make sure that if the tracepoint handling changes, the ftrace probe will | |
531 | * fail to compile unless it too is updated. | |
532 | */ | |
ff038f5c SR |
533 | |
534 | #undef DEFINE_EVENT | |
535 | #define DEFINE_EVENT(template, call, proto, args) \ | |
a9a57763 | 536 | static struct trace_event_functions ftrace_event_type_funcs_##call = { \ |
c32e827b | 537 | .trace = ftrace_raw_output_##call, \ |
2239291a | 538 | }; \ |
a9a57763 SR |
539 | static struct trace_event ftrace_event_type_##call = { \ |
540 | .funcs = &ftrace_event_type_funcs_##call, \ | |
541 | }; \ | |
2239291a SR |
542 | static inline void ftrace_test_probe_##call(void) \ |
543 | { \ | |
544 | check_trace_callback_type_##call(ftrace_raw_event_##template); \ | |
545 | } | |
e5bc9721 SR |
546 | |
547 | #undef DEFINE_EVENT_PRINT | |
548 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | |
549 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | |
550 | ||
551 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) | |
552 | ||
509e760c LJ |
553 | #undef __entry |
554 | #define __entry REC | |
555 | ||
556 | #undef __print_flags | |
557 | #undef __print_symbolic | |
558 | #undef __get_dynamic_array | |
559 | #undef __get_str | |
560 | ||
561 | #undef TP_printk | |
562 | #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args) | |
563 | ||
091ad365 | 564 | #undef DECLARE_EVENT_CLASS |
509e760c | 565 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
2239291a | 566 | _TRACE_PERF_PROTO(call, PARAMS(proto)); \ |
8f082018 SR |
567 | static const char print_fmt_##call[] = print; \ |
568 | static struct ftrace_event_class __used event_class_##call = { \ | |
2239291a | 569 | .system = __stringify(TRACE_SYSTEM), \ |
2e33af02 SR |
570 | .define_fields = ftrace_define_fields_##call, \ |
571 | .fields = LIST_HEAD_INIT(event_class_##call.fields),\ | |
0405ab80 | 572 | .raw_init = trace_event_raw_init, \ |
2239291a SR |
573 | .probe = ftrace_raw_event_##call, \ |
574 | _TRACE_PERF_INIT(call) \ | |
8f082018 | 575 | }; |
e5bc9721 SR |
576 | |
577 | #undef DEFINE_EVENT | |
578 | #define DEFINE_EVENT(template, call, proto, args) \ | |
c32e827b SR |
579 | \ |
580 | static struct ftrace_event_call __used \ | |
581 | __attribute__((__aligned__(4))) \ | |
582 | __attribute__((section("_ftrace_events"))) event_##call = { \ | |
ef18012b | 583 | .name = #call, \ |
8f082018 | 584 | .class = &event_class_##template, \ |
6d723736 | 585 | .event = &ftrace_event_type_##call, \ |
509e760c | 586 | .print_fmt = print_fmt_##template, \ |
8f082018 | 587 | }; |
ac199db0 | 588 | |
e5bc9721 SR |
589 | #undef DEFINE_EVENT_PRINT |
590 | #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \ | |
c32e827b | 591 | \ |
509e760c LJ |
592 | static const char print_fmt_##call[] = print; \ |
593 | \ | |
c32e827b SR |
594 | static struct ftrace_event_call __used \ |
595 | __attribute__((__aligned__(4))) \ | |
596 | __attribute__((section("_ftrace_events"))) event_##call = { \ | |
ef18012b | 597 | .name = #call, \ |
8f082018 | 598 | .class = &event_class_##template, \ |
6d723736 | 599 | .event = &ftrace_event_type_##call, \ |
509e760c | 600 | .print_fmt = print_fmt_##call, \ |
c32e827b | 601 | } |
ac199db0 | 602 | |
f42c85e7 | 603 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
ac199db0 | 604 | |
f413cdb8 | 605 | /* |
97d5a220 | 606 | * Define the insertion callback to perf events |
f413cdb8 FW |
607 | * |
608 | * The job is very similar to ftrace_raw_event_<call> except that we don't | |
609 | * insert in the ring buffer but in a perf counter. | |
610 | * | |
97d5a220 | 611 | * static void ftrace_perf_<call>(proto) |
f413cdb8 FW |
612 | * { |
613 | * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets; | |
614 | * struct ftrace_event_call *event_call = &event_<call>; | |
cdd6c482 | 615 | * extern void perf_tp_event(int, u64, u64, void *, int); |
f413cdb8 | 616 | * struct ftrace_raw_##call *entry; |
444a2a3b | 617 | * struct perf_trace_buf *trace_buf; |
f413cdb8 FW |
618 | * u64 __addr = 0, __count = 1; |
619 | * unsigned long irq_flags; | |
20ab4425 | 620 | * struct trace_entry *ent; |
f413cdb8 FW |
621 | * int __entry_size; |
622 | * int __data_size; | |
20ab4425 | 623 | * int __cpu |
f413cdb8 FW |
624 | * int pc; |
625 | * | |
f413cdb8 FW |
626 | * pc = preempt_count(); |
627 | * | |
628 | * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args); | |
304703ab FW |
629 | * |
630 | * // Below we want to get the aligned size by taking into account | |
631 | * // the u32 field that will later store the buffer size | |
632 | * __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32), | |
633 | * sizeof(u64)); | |
634 | * __entry_size -= sizeof(u32); | |
f413cdb8 | 635 | * |
20ab4425 FW |
636 | * // Protect the non nmi buffer |
637 | * // This also protects the rcu read side | |
638 | * local_irq_save(irq_flags); | |
639 | * __cpu = smp_processor_id(); | |
640 | * | |
641 | * if (in_nmi()) | |
8d53dd54 | 642 | * trace_buf = rcu_dereference_sched(perf_trace_buf_nmi); |
20ab4425 | 643 | * else |
8d53dd54 | 644 | * trace_buf = rcu_dereference_sched(perf_trace_buf); |
20ab4425 | 645 | * |
444a2a3b | 646 | * if (!trace_buf) |
20ab4425 | 647 | * goto end; |
f413cdb8 | 648 | * |
444a2a3b FW |
649 | * trace_buf = per_cpu_ptr(trace_buf, __cpu); |
650 | * | |
651 | * // Avoid recursion from perf that could mess up the buffer | |
652 | * if (trace_buf->recursion++) | |
653 | * goto end_recursion; | |
654 | * | |
655 | * raw_data = trace_buf->buf; | |
656 | * | |
657 | * // Make recursion update visible before entering perf_tp_event | |
658 | * // so that we protect from perf recursions. | |
659 | * | |
660 | * barrier(); | |
1853db0e | 661 | * |
20ab4425 FW |
662 | * //zero dead bytes from alignment to avoid stack leak to userspace: |
663 | * *(u64 *)(&raw_data[__entry_size - sizeof(u64)]) = 0ULL; | |
664 | * entry = (struct ftrace_raw_<call> *)raw_data; | |
665 | * ent = &entry->ent; | |
666 | * tracing_generic_entry_update(ent, irq_flags, pc); | |
667 | * ent->type = event_call->id; | |
f413cdb8 | 668 | * |
20ab4425 | 669 | * <tstruct> <- do some jobs with dynamic arrays |
f413cdb8 | 670 | * |
20ab4425 | 671 | * <assign> <- affect our values |
f413cdb8 | 672 | * |
43c1266c | 673 | * perf_tp_event(event_call->id, __addr, __count, entry, |
20ab4425 | 674 | * __entry_size); <- submit them to perf counter |
f413cdb8 FW |
675 | * |
676 | * } | |
677 | */ | |
678 | ||
07b139c8 | 679 | #ifdef CONFIG_PERF_EVENTS |
f413cdb8 | 680 | |
509e760c LJ |
681 | #undef __entry |
682 | #define __entry entry | |
683 | ||
684 | #undef __get_dynamic_array | |
685 | #define __get_dynamic_array(field) \ | |
686 | ((void *)__entry + (__entry->__data_loc_##field & 0xffff)) | |
687 | ||
688 | #undef __get_str | |
689 | #define __get_str(field) (char *)__get_dynamic_array(field) | |
690 | ||
f413cdb8 FW |
691 | #undef __perf_addr |
692 | #define __perf_addr(a) __addr = (a) | |
693 | ||
694 | #undef __perf_count | |
695 | #define __perf_count(c) __count = (c) | |
696 | ||
091ad365 IM |
697 | #undef DECLARE_EVENT_CLASS |
698 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | |
83f0d539 | 699 | static notrace void \ |
2239291a | 700 | perf_trace_##call(void *__data, proto) \ |
f413cdb8 | 701 | { \ |
2239291a | 702 | struct ftrace_event_call *event_call = __data; \ |
f413cdb8 | 703 | struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\ |
f413cdb8 FW |
704 | struct ftrace_raw_##call *entry; \ |
705 | u64 __addr = 0, __count = 1; \ | |
706 | unsigned long irq_flags; \ | |
c530665c | 707 | struct pt_regs *__regs; \ |
f413cdb8 FW |
708 | int __entry_size; \ |
709 | int __data_size; \ | |
4ed7c92d | 710 | int rctx; \ |
f413cdb8 FW |
711 | \ |
712 | __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \ | |
a044560c PZ |
713 | __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\ |
714 | sizeof(u64)); \ | |
304703ab | 715 | __entry_size -= sizeof(u32); \ |
f413cdb8 | 716 | \ |
97d5a220 | 717 | if (WARN_ONCE(__entry_size > PERF_MAX_TRACE_SIZE, \ |
20ab4425 FW |
718 | "profile buffer not large enough")) \ |
719 | return; \ | |
97d5a220 | 720 | entry = (struct ftrace_raw_##call *)perf_trace_buf_prepare( \ |
430ad5a6 XG |
721 | __entry_size, event_call->id, &rctx, &irq_flags); \ |
722 | if (!entry) \ | |
723 | return; \ | |
20ab4425 FW |
724 | tstruct \ |
725 | \ | |
726 | { assign; } \ | |
727 | \ | |
c530665c FW |
728 | __regs = &__get_cpu_var(perf_trace_regs); \ |
729 | perf_fetch_caller_regs(__regs, 2); \ | |
730 | \ | |
97d5a220 | 731 | perf_trace_buf_submit(entry, __entry_size, rctx, __addr, \ |
c530665c | 732 | __count, irq_flags, __regs); \ |
f413cdb8 FW |
733 | } |
734 | ||
2239291a SR |
735 | /* |
736 | * This part is compiled out, it is only here as a build time check | |
737 | * to make sure that if the tracepoint handling changes, the | |
738 | * perf probe will fail to compile unless it too is updated. | |
739 | */ | |
ff038f5c | 740 | #undef DEFINE_EVENT |
2239291a SR |
741 | #define DEFINE_EVENT(template, call, proto, args) \ |
742 | static inline void perf_test_probe_##call(void) \ | |
743 | { \ | |
744 | check_trace_callback_type_##call(perf_trace_##template); \ | |
745 | \ | |
ff038f5c SR |
746 | } |
747 | ||
2239291a | 748 | |
e5bc9721 SR |
749 | #undef DEFINE_EVENT_PRINT |
750 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | |
751 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | |
752 | ||
f413cdb8 | 753 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
07b139c8 | 754 | #endif /* CONFIG_PERF_EVENTS */ |
f413cdb8 | 755 | |
ac199db0 PZ |
756 | #undef _TRACE_PROFILE_INIT |
757 |