blob: de996cf610536ee0da0657f2a4e9aae071793755 [file] [log] [blame]
Steven Rostedtf42c85e2009-04-13 12:25:37 -04001/*
2 * Stage 1 of the trace events.
3 *
4 * Override the macros in <trace/trace_events.h> to include the following:
5 *
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -04006 * struct trace_event_raw_<call> {
Steven Rostedtf42c85e2009-04-13 12:25:37 -04007 * 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
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040019#include <linux/trace_events.h>
Steven Rostedtf42c85e2009-04-13 12:25:37 -040020
Steven Rostedt (Red Hat)acd388f2015-03-31 14:37:12 -040021#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
Steven Rostedt (Red Hat)0c564a52015-03-24 17:58:09 -040036#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
Steven Rostedtff038f52009-11-18 20:27:27 -050049/*
Ingo Molnar091ad362009-11-26 09:04:55 +010050 * DECLARE_EVENT_CLASS can be used to add a generic function
Steven Rostedtff038f52009-11-18 20:27:27 -050051 * 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
Ingo Molnar091ad362009-11-26 09:04:55 +010054 * will map the DECLARE_EVENT_CLASS to the tracepoint.
Steven Rostedtff038f52009-11-18 20:27:27 -050055 *
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) \
Ingo Molnar091ad362009-11-26 09:04:55 +010060 DECLARE_EVENT_CLASS(name, \
Steven Rostedtff038f52009-11-18 20:27:27 -050061 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
Steven Rostedtf42c85e2009-04-13 12:25:37 -040069#undef __field
70#define __field(type, item) type item;
71
Li Zefan43b51ea2009-08-07 10:33:22 +080072#undef __field_ext
73#define __field_ext(type, item, filter_type) type item;
74
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -040075#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
Li Zefan7fcb7c42009-06-01 15:35:46 +080081#undef __array
82#define __array(type, item, len) type item[len];
83
84#undef __dynamic_array
Li Zefan7d536cb2009-07-16 10:54:02 +080085#define __dynamic_array(type, item, len) u32 __data_loc_##item;
Li Zefan7fcb7c42009-06-01 15:35:46 +080086
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +020087#undef __string
Li Zefan7fcb7c42009-06-01 15:35:46 +080088#define __string(item, src) __dynamic_array(char, item, -1)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +020089
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -040090#undef __bitmask
91#define __bitmask(item, nr_bits) __dynamic_array(char, item, -1)
92
Steven Rostedtf42c85e2009-04-13 12:25:37 -040093#undef TP_STRUCT__entry
94#define TP_STRUCT__entry(args...) args
95
Ingo Molnar091ad362009-11-26 09:04:55 +010096#undef DECLARE_EVENT_CLASS
97#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -040098 struct trace_event_raw_##name { \
Steven Rostedtff038f52009-11-18 20:27:27 -050099 struct trace_entry ent; \
100 tstruct \
101 char __data[0]; \
Steven Rostedt8f082012010-04-20 10:47:33 -0400102 }; \
103 \
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400104 static struct trace_event_class event_class_##name;
Steven Rostedt8f082012010-04-20 10:47:33 -0400105
Steven Rostedtff038f52009-11-18 20:27:27 -0500106#undef DEFINE_EVENT
107#define DEFINE_EVENT(template, name, proto, args) \
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400108 static struct trace_event_call __used \
Jeff Mahoney86c38a32010-02-24 13:59:23 -0500109 __attribute__((__aligned__(4))) event_##name
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400110
Steven Rostedtf5abaa12013-06-20 11:44:44 -0400111#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
Steven Rostedte5bc9722009-11-18 20:36:26 -0500115#undef DEFINE_EVENT_PRINT
116#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
117 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
118
Josh Stone97419872009-08-24 14:43:13 -0700119/* Callbacks are meaningless to ftrace. */
120#undef TRACE_EVENT_FN
Frederic Weisbecker0dd7b742009-08-28 00:50:06 +0200121#define TRACE_EVENT_FN(name, proto, args, tstruct, \
122 assign, print, reg, unreg) \
Frederic Weisbecker819ce452010-07-20 18:41:24 +0200123 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
124 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
Josh Stone97419872009-08-24 14:43:13 -0700125
Frederic Weisbecker1ed0c592010-11-18 01:46:57 +0100126#undef TRACE_EVENT_FLAGS
127#define TRACE_EVENT_FLAGS(name, value) \
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100128 __TRACE_EVENT_FLAGS(name, value)
Frederic Weisbecker1ed0c592010-11-18 01:46:57 +0100129
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100130#undef TRACE_EVENT_PERF_PERM
131#define TRACE_EVENT_PERF_PERM(name, expr...) \
132 __TRACE_EVENT_PERF_PERM(name, expr)
133
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400134#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
135
136/*
137 * Stage 2 of the trace events.
138 *
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200139 * Include the following:
140 *
Steven Rostedt (Red Hat)62323a12015-05-13 15:33:52 -0400141 * struct trace_event_data_offsets_<call> {
Li Zefan7d536cb2009-07-16 10:54:02 +0800142 * u32 <item1>;
143 * u32 <item2>;
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200144 * [...]
145 * };
146 *
Li Zefan7d536cb2009-07-16 10:54:02 +0800147 * The __dynamic_array() macro will create each u32 <item>, this is
Li Zefan7fcb7c42009-06-01 15:35:46 +0800148 * to keep the offset of each array from the beginning of the event.
Li Zefan7d536cb2009-07-16 10:54:02 +0800149 * The size of an array is also encoded, in the higher 16 bits of <item>.
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200150 */
151
Steven Rostedt (Red Hat)0c564a52015-03-24 17:58:09 -0400152#undef TRACE_DEFINE_ENUM
153#define TRACE_DEFINE_ENUM(a)
154
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200155#undef __field
Li Zefan43b51ea2009-08-07 10:33:22 +0800156#define __field(type, item)
157
158#undef __field_ext
159#define __field_ext(type, item, filter_type)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200160
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400161#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
Li Zefan7fcb7c42009-06-01 15:35:46 +0800167#undef __array
168#define __array(type, item, len)
169
170#undef __dynamic_array
Li Zefan7d536cb2009-07-16 10:54:02 +0800171#define __dynamic_array(type, item, len) u32 item;
Li Zefan7fcb7c42009-06-01 15:35:46 +0800172
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200173#undef __string
Li Zefan7fcb7c42009-06-01 15:35:46 +0800174#define __string(item, src) __dynamic_array(char, item, -1)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200175
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400176#undef __bitmask
177#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
178
Ingo Molnar091ad362009-11-26 09:04:55 +0100179#undef DECLARE_EVENT_CLASS
180#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
Steven Rostedt (Red Hat)62323a12015-05-13 15:33:52 -0400181 struct trace_event_data_offsets_##call { \
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200182 tstruct; \
183 };
184
Steven Rostedtff038f52009-11-18 20:27:27 -0500185#undef DEFINE_EVENT
186#define DEFINE_EVENT(template, name, proto, args)
187
Steven Rostedte5bc9722009-11-18 20:36:26 -0500188#undef DEFINE_EVENT_PRINT
189#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
190 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
191
Frederic Weisbecker1ed0c592010-11-18 01:46:57 +0100192#undef TRACE_EVENT_FLAGS
193#define TRACE_EVENT_FLAGS(event, flag)
194
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100195#undef TRACE_EVENT_PERF_PERM
196#define TRACE_EVENT_PERF_PERM(event, expr...)
197
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200198#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
199
200/*
201 * Stage 3 of the trace events.
202 *
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400203 * Override the macros in <trace/trace_events.h> to include the following:
204 *
205 * enum print_line_t
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400206 * trace_raw_output_<call>(struct trace_iterator *iter, int flags)
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400207 * {
208 * struct trace_seq *s = &iter->seq;
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400209 * struct trace_event_raw_<call> *field; <-- defined in stage 1
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400210 * struct trace_entry *entry;
Lai Jiangshanbc289ae2010-06-03 18:26:24 +0800211 * struct trace_seq *p = &iter->tmp_seq;
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400212 * int ret;
213 *
214 * entry = iter->ent;
215 *
Steven Rostedt32c0eda2010-04-23 10:38:03 -0400216 * if (entry->type != event_<call>->event.type) {
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400217 * WARN_ON_ONCE(1);
218 * return TRACE_TYPE_UNHANDLED;
219 * }
220 *
221 * field = (typeof(field))entry;
222 *
Steven Whitehouse56d8bd32009-06-03 14:52:03 +0100223 * trace_seq_init(p);
Li Zefan50354a82010-03-24 10:58:24 +0800224 * ret = trace_seq_printf(s, "%s: ", <call>);
225 * if (ret)
226 * ret = trace_seq_printf(s, <TP_printk> "\n");
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400227 * 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
Li Zefan7fcb7c42009-06-01 15:35:46 +0800244#undef __get_dynamic_array
245#define __get_dynamic_array(field) \
Li Zefan7d536cb2009-07-16 10:54:02 +0800246 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
Li Zefan7fcb7c42009-06-01 15:35:46 +0800247
Steven Rostedt (Red Hat)beba4bb2014-06-04 14:29:33 -0400248#undef __get_dynamic_array_len
249#define __get_dynamic_array_len(field) \
250 ((__entry->__data_loc_##field >> 16) & 0xffff)
251
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200252#undef __get_str
Li Zefan7fcb7c42009-06-01 15:35:46 +0800253#define __get_str(field) (char *)__get_dynamic_array(field)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200254
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400255#undef __get_bitmask
256#define __get_bitmask(field) \
257 ({ \
258 void *__bitmask = __get_dynamic_array(field); \
259 unsigned int __bitmask_size; \
Steven Rostedt (Red Hat)beba4bb2014-06-04 14:29:33 -0400260 __bitmask_size = __get_dynamic_array_len(field); \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400261 trace_print_bitmask_seq(p, __bitmask, __bitmask_size); \
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400262 })
263
Steven Rostedtbe74b73a2009-05-26 20:25:22 +0200264#undef __print_flags
265#define __print_flags(flag, delim, flag_array...) \
266 ({ \
Steven Rostedta48f4942009-09-14 11:18:02 -0400267 static const struct trace_print_flags __flags[] = \
Steven Rostedtbe74b73a2009-05-26 20:25:22 +0200268 { flag_array, { -1, NULL }}; \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400269 trace_print_flags_seq(p, delim, flag, __flags); \
Steven Rostedtbe74b73a2009-05-26 20:25:22 +0200270 })
271
Steven Rostedt0f4fc292009-05-20 19:21:47 -0400272#undef __print_symbolic
273#define __print_symbolic(value, symbol_array...) \
274 ({ \
275 static const struct trace_print_flags symbols[] = \
276 { symbol_array, { -1, NULL }}; \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400277 trace_print_symbols_seq(p, value, symbols); \
Steven Rostedt0f4fc292009-05-20 19:21:47 -0400278 })
279
liubo2fc1b6f2011-04-19 09:35:28 +0800280#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 } }; \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400286 trace_print_symbols_seq_u64(p, value, symbols); \
liubo2fc1b6f2011-04-19 09:35:28 +0800287 })
288#else
289#define __print_symbolic_u64(value, symbol_array...) \
290 __print_symbolic(value, symbol_array)
291#endif
292
Kei Tokunaga5a2e3992010-04-01 20:40:58 +0900293#undef __print_hex
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400294#define __print_hex(buf, buf_len) trace_print_hex_seq(p, buf, buf_len)
Kei Tokunaga5a2e3992010-04-01 20:40:58 +0900295
Dave Martin6ea22482015-01-28 12:48:53 +0000296#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); \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400301 trace_print_array_seq(p, array, count, el_size); \
Dave Martin6ea22482015-01-28 12:48:53 +0000302 })
303
Ingo Molnar091ad362009-11-26 09:04:55 +0100304#undef DECLARE_EVENT_CLASS
305#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
Steven Rostedt83f0d532010-02-16 10:38:47 -0500306static notrace enum print_line_t \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400307trace_raw_output_##call(struct trace_iterator *iter, int flags, \
308 struct trace_event *trace_event) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400309{ \
310 struct trace_seq *s = &iter->seq; \
Li Zefanf71130d2013-02-21 10:32:38 +0800311 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400312 struct trace_event_raw_##call *field; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400313 int ret; \
314 \
Li Zefanf71130d2013-02-21 10:32:38 +0800315 field = (typeof(field))iter->ent; \
Steven Rostedt80decc72010-04-23 10:00:22 -0400316 \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400317 ret = trace_raw_output_prep(iter, trace_event); \
Steven Rostedt (Red Hat)8e2e0952014-11-14 11:42:06 -0500318 if (ret != TRACE_TYPE_HANDLED) \
Li Zefanf71130d2013-02-21 10:32:38 +0800319 return ret; \
320 \
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500321 trace_seq_printf(s, print); \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400322 \
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500323 return trace_handle_return(s); \
Steven Rostedt80decc72010-04-23 10:00:22 -0400324} \
Steven Rostedt (Red Hat)3ad017b2015-05-13 15:35:44 -0400325static struct trace_event_functions trace_event_type_funcs_##call = { \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400326 .trace = trace_raw_output_##call, \
Steven Rostedt80decc72010-04-23 10:00:22 -0400327};
Steven Rostedtff038f52009-11-18 20:27:27 -0500328
Steven Rostedte5bc9722009-11-18 20:36:26 -0500329#undef DEFINE_EVENT_PRINT
330#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
Steven Rostedt83f0d532010-02-16 10:38:47 -0500331static notrace enum print_line_t \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400332trace_raw_output_##call(struct trace_iterator *iter, int flags, \
Steven Rostedta9a57762010-04-22 18:46:14 -0400333 struct trace_event *event) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400334{ \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400335 struct trace_event_raw_##template *field; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400336 struct trace_entry *entry; \
Lai Jiangshanbc289ae2010-06-03 18:26:24 +0800337 struct trace_seq *p = &iter->tmp_seq; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400338 \
339 entry = iter->ent; \
340 \
Steven Rostedt32c0eda2010-04-23 10:38:03 -0400341 if (entry->type != event_##call.event.type) { \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400342 WARN_ON_ONCE(1); \
343 return TRACE_TYPE_UNHANDLED; \
344 } \
345 \
346 field = (typeof(field))entry; \
347 \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400348 trace_seq_init(p); \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400349 return trace_output_call(iter, #call, print); \
Steven Rostedt80decc72010-04-23 10:00:22 -0400350} \
Steven Rostedt (Red Hat)3ad017b2015-05-13 15:35:44 -0400351static struct trace_event_functions trace_event_type_funcs_##call = { \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400352 .trace = trace_raw_output_##call, \
Steven Rostedt80decc72010-04-23 10:00:22 -0400353};
Steven Rostedte5bc9722009-11-18 20:36:26 -0500354
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400355#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
356
Li Zefan43b51ea2009-08-07 10:33:22 +0800357#undef __field_ext
358#define __field_ext(type, item, filter_type) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400359 ret = trace_define_field(event_call, #type, #item, \
360 offsetof(typeof(field), item), \
Li Zefan43b51ea2009-08-07 10:33:22 +0800361 sizeof(field.item), \
362 is_signed_type(type), filter_type); \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400363 if (ret) \
364 return ret;
365
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400366#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
Li Zefan43b51ea2009-08-07 10:33:22 +0800375#undef __field
376#define __field(type, item) __field_ext(type, item, FILTER_OTHER)
377
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400378#undef __field_struct
379#define __field_struct(type, item) __field_struct_ext(type, item, FILTER_OTHER)
380
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400381#undef __array
382#define __array(type, item, len) \
Steven Rostedt04295782010-11-12 22:32:11 -0500383 do { \
Vaibhav Nagarnaik87291342014-02-13 19:51:48 -0800384 char *type_str = #type"["__stringify(len)"]"; \
Steven Rostedt04295782010-11-12 22:32:11 -0500385 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
Vaibhav Nagarnaik87291342014-02-13 19:51:48 -0800386 ret = trace_define_field(event_call, type_str, #item, \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400387 offsetof(typeof(field), item), \
Lai Jiangshanfb7ae9812009-12-15 15:39:38 +0800388 sizeof(field.item), \
389 is_signed_type(type), FILTER_OTHER); \
Steven Rostedt04295782010-11-12 22:32:11 -0500390 if (ret) \
391 return ret; \
392 } while (0);
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400393
Li Zefan7fcb7c42009-06-01 15:35:46 +0800394#undef __dynamic_array
395#define __dynamic_array(type, item, len) \
Lai Jiangshan68fd60a2009-07-16 10:53:34 +0800396 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
Li Zefan43b51ea2009-08-07 10:33:22 +0800397 offsetof(typeof(field), __data_loc_##item), \
Lai Jiangshanfb7ae9812009-12-15 15:39:38 +0800398 sizeof(field.__data_loc_##item), \
399 is_signed_type(type), FILTER_OTHER);
Li Zefan7fcb7c42009-06-01 15:35:46 +0800400
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200401#undef __string
Li Zefan7fcb7c42009-06-01 15:35:46 +0800402#define __string(item, src) __dynamic_array(char, item, -1)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200403
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400404#undef __bitmask
405#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
406
Ingo Molnar091ad362009-11-26 09:04:55 +0100407#undef DECLARE_EVENT_CLASS
408#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
Li Zefan7e4f44b2013-02-21 10:33:33 +0800409static int notrace __init \
Steven Rostedt (Red Hat)33d0f352015-05-13 15:37:57 -0400410trace_event_define_fields_##call(struct trace_event_call *event_call) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400411{ \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400412 struct trace_event_raw_##call field; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400413 int ret; \
414 \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400415 tstruct; \
416 \
417 return ret; \
418}
419
Steven Rostedtff038f52009-11-18 20:27:27 -0500420#undef DEFINE_EVENT
421#define DEFINE_EVENT(template, name, proto, args)
422
Steven Rostedte5bc9722009-11-18 20:36:26 -0500423#undef DEFINE_EVENT_PRINT
424#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
425 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
426
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400427#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
428
429/*
Li Zefan7fcb7c42009-06-01 15:35:46 +0800430 * 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
Li Zefan43b51ea2009-08-07 10:33:22 +0800439#undef __field_ext
440#define __field_ext(type, item, filter_type)
441
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400442#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
Li Zefan7fcb7c42009-06-01 15:35:46 +0800448#undef __array
449#define __array(type, item, len)
450
451#undef __dynamic_array
452#define __dynamic_array(type, item, len) \
Filipe Brandenburger114e7b52014-02-28 21:32:17 -0800453 __item_length = (len) * sizeof(type); \
Li Zefan7fcb7c42009-06-01 15:35:46 +0800454 __data_offsets->item = __data_size + \
455 offsetof(typeof(*entry), __data); \
Filipe Brandenburger114e7b52014-02-28 21:32:17 -0800456 __data_offsets->item |= __item_length << 16; \
457 __data_size += __item_length;
Li Zefan7fcb7c42009-06-01 15:35:46 +0800458
459#undef __string
Steven Rostedt (Red Hat)4e58e542013-11-26 09:22:54 -0500460#define __string(item, src) __dynamic_array(char, item, \
461 strlen((src) ? (const char *)(src) : "(null)") + 1)
Li Zefan7fcb7c42009-06-01 15:35:46 +0800462
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400463/*
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
Ingo Molnar091ad362009-11-26 09:04:55 +0100486#undef DECLARE_EVENT_CLASS
487#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
Steven Rostedt (Red Hat)d0ee8f42015-05-13 15:40:23 -0400488static inline notrace int trace_event_get_offsets_##call( \
Steven Rostedt (Red Hat)62323a12015-05-13 15:33:52 -0400489 struct trace_event_data_offsets_##call *__data_offsets, proto) \
Li Zefan7fcb7c42009-06-01 15:35:46 +0800490{ \
491 int __data_size = 0; \
Filipe Brandenburger114e7b52014-02-28 21:32:17 -0800492 int __maybe_unused __item_length; \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400493 struct trace_event_raw_##call __maybe_unused *entry; \
Li Zefan7fcb7c42009-06-01 15:35:46 +0800494 \
495 tstruct; \
496 \
497 return __data_size; \
498}
499
Steven Rostedtff038f52009-11-18 20:27:27 -0500500#undef DEFINE_EVENT
501#define DEFINE_EVENT(template, name, proto, args)
502
Steven Rostedte5bc9722009-11-18 20:36:26 -0500503#undef DEFINE_EVENT_PRINT
504#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
505 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
506
Li Zefan7fcb7c42009-06-01 15:35:46 +0800507#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
508
Steven Rostedt (Red Hat)46ac5182015-09-23 09:26:27 -0400509/*
510 * Stage 4 of the trace events.
511 *
512 * Override the macros in <trace/trace_events.h> to include the following:
513 *
514 * For those macros defined with TRACE_EVENT:
515 *
516 * static struct trace_event_call event_<call>;
517 *
518 * static void trace_event_raw_event_<call>(void *__data, proto)
519 * {
520 * struct trace_event_file *trace_file = __data;
521 * struct trace_event_call *event_call = trace_file->event_call;
522 * struct trace_event_data_offsets_<call> __maybe_unused __data_offsets;
523 * unsigned long eflags = trace_file->flags;
524 * enum event_trigger_type __tt = ETT_NONE;
525 * struct ring_buffer_event *event;
526 * struct trace_event_raw_<call> *entry; <-- defined in stage 1
527 * struct ring_buffer *buffer;
528 * unsigned long irq_flags;
529 * int __data_size;
530 * int pc;
531 *
532 * if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
533 * if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
534 * event_triggers_call(trace_file, NULL);
535 * if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
536 * return;
537 * }
538 *
539 * local_save_flags(irq_flags);
540 * pc = preempt_count();
541 *
542 * __data_size = trace_event_get_offsets_<call>(&__data_offsets, args);
543 *
544 * event = trace_event_buffer_lock_reserve(&buffer, trace_file,
545 * event_<call>->event.type,
546 * sizeof(*entry) + __data_size,
547 * irq_flags, pc);
548 * if (!event)
549 * return;
550 * entry = ring_buffer_event_data(event);
551 *
552 * { <assign>; } <-- Here we assign the entries by the __field and
553 * __array macros.
554 *
555 * if (eflags & EVENT_FILE_FL_TRIGGER_COND)
556 * __tt = event_triggers_call(trace_file, entry);
557 *
558 * if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT,
559 * &trace_file->flags))
560 * ring_buffer_discard_commit(buffer, event);
561 * else if (!filter_check_discard(trace_file, entry, buffer, event))
562 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
563 *
564 * if (__tt)
565 * event_triggers_post_call(trace_file, __tt);
566 * }
567 *
568 * static struct trace_event ftrace_event_type_<call> = {
569 * .trace = trace_raw_output_<call>, <-- stage 2
570 * };
571 *
572 * static char print_fmt_<call>[] = <TP_printk>;
573 *
574 * static struct trace_event_class __used event_class_<template> = {
575 * .system = "<system>",
576 * .define_fields = trace_event_define_fields_<call>,
577 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
578 * .raw_init = trace_event_raw_init,
579 * .probe = trace_event_raw_event_##call,
580 * .reg = trace_event_reg,
581 * };
582 *
583 * static struct trace_event_call event_<call> = {
584 * .class = event_class_<template>,
585 * {
586 * .tp = &__tracepoint_<call>,
587 * },
588 * .event = &ftrace_event_type_<call>,
589 * .print_fmt = print_fmt_<call>,
590 * .flags = TRACE_EVENT_FL_TRACEPOINT,
591 * };
592 * // its only safe to use pointers when doing linker tricks to
593 * // create an array.
594 * static struct trace_event_call __used
595 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
596 *
597 */
598
599#ifdef CONFIG_PERF_EVENTS
600
601#define _TRACE_PERF_PROTO(call, proto) \
602 static notrace void \
603 perf_trace_##call(void *__data, proto);
604
605#define _TRACE_PERF_INIT(call) \
606 .perf_probe = perf_trace_##call,
607
608#else
609#define _TRACE_PERF_PROTO(call, proto)
610#define _TRACE_PERF_INIT(call)
611#endif /* CONFIG_PERF_EVENTS */
612
613#undef __entry
614#define __entry entry
615
616#undef __field
617#define __field(type, item)
618
619#undef __field_struct
620#define __field_struct(type, item)
621
622#undef __array
623#define __array(type, item, len)
624
625#undef __dynamic_array
626#define __dynamic_array(type, item, len) \
627 __entry->__data_loc_##item = __data_offsets.item;
628
629#undef __string
630#define __string(item, src) __dynamic_array(char, item, -1)
631
632#undef __assign_str
633#define __assign_str(dst, src) \
634 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
635
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
646#undef TP_fast_assign
647#define TP_fast_assign(args...) args
648
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)
657
658#undef DECLARE_EVENT_CLASS
659#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
660 \
661static notrace void \
662trace_event_raw_event_##call(void *__data, proto) \
663{ \
664 struct trace_event_file *trace_file = __data; \
665 struct trace_event_data_offsets_##call __maybe_unused __data_offsets;\
666 struct trace_event_buffer fbuffer; \
667 struct trace_event_raw_##call *entry; \
668 int __data_size; \
669 \
670 if (trace_trigger_soft_disabled(trace_file)) \
671 return; \
672 \
673 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \
674 \
675 entry = trace_event_buffer_reserve(&fbuffer, trace_file, \
676 sizeof(*entry) + __data_size); \
677 \
678 if (!entry) \
679 return; \
680 \
681 tstruct \
682 \
683 { assign; } \
684 \
685 trace_event_buffer_commit(&fbuffer); \
686}
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 */
692
693#undef DEFINE_EVENT
694#define DEFINE_EVENT(template, call, proto, args) \
695static inline void ftrace_test_probe_##call(void) \
696{ \
697 check_trace_callback_type_##call(trace_event_raw_event_##template); \
698}
699
700#undef DEFINE_EVENT_PRINT
701#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
702
703#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
704
705#undef __entry
706#define __entry REC
707
708#undef __print_flags
709#undef __print_symbolic
710#undef __print_hex
711#undef __get_dynamic_array
712#undef __get_dynamic_array_len
713#undef __get_str
714#undef __get_bitmask
715#undef __print_array
716
717#undef TP_printk
718#define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
719
720#undef DECLARE_EVENT_CLASS
721#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
722_TRACE_PERF_PROTO(call, PARAMS(proto)); \
723static char print_fmt_##call[] = print; \
724static struct trace_event_class __used __refdata event_class_##call = { \
725 .system = TRACE_SYSTEM_STRING, \
726 .define_fields = trace_event_define_fields_##call, \
727 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
728 .raw_init = trace_event_raw_init, \
729 .probe = trace_event_raw_event_##call, \
730 .reg = trace_event_reg, \
731 _TRACE_PERF_INIT(call) \
732};
733
734#undef DEFINE_EVENT
735#define DEFINE_EVENT(template, call, proto, args) \
736 \
737static struct trace_event_call __used event_##call = { \
738 .class = &event_class_##template, \
739 { \
740 .tp = &__tracepoint_##call, \
741 }, \
742 .event.funcs = &trace_event_type_funcs_##template, \
743 .print_fmt = print_fmt_##template, \
744 .flags = TRACE_EVENT_FL_TRACEPOINT, \
745}; \
746static struct trace_event_call __used \
747__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
748
749#undef DEFINE_EVENT_PRINT
750#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
751 \
752static char print_fmt_##call[] = print; \
753 \
754static struct trace_event_call __used event_##call = { \
755 .class = &event_class_##template, \
756 { \
757 .tp = &__tracepoint_##call, \
758 }, \
759 .event.funcs = &trace_event_type_funcs_##call, \
760 .print_fmt = print_fmt_##call, \
761 .flags = TRACE_EVENT_FL_TRACEPOINT, \
762}; \
763static struct trace_event_call __used \
764__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
765
766#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)