blob: 5c06f4af8323032f78ba447f5f66cd31bcb28282 [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
Denis Kirjanov27011212015-12-14 23:18:05 +0300126#undef TRACE_EVENT_FN_COND
127#define TRACE_EVENT_FN_COND(name, proto, args, cond, tstruct, \
128 assign, print, reg, unreg) \
129 TRACE_EVENT_CONDITION(name, PARAMS(proto), PARAMS(args), PARAMS(cond), \
130 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
131
Frederic Weisbecker1ed0c592010-11-18 01:46:57 +0100132#undef TRACE_EVENT_FLAGS
133#define TRACE_EVENT_FLAGS(name, value) \
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100134 __TRACE_EVENT_FLAGS(name, value)
Frederic Weisbecker1ed0c592010-11-18 01:46:57 +0100135
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100136#undef TRACE_EVENT_PERF_PERM
137#define TRACE_EVENT_PERF_PERM(name, expr...) \
138 __TRACE_EVENT_PERF_PERM(name, expr)
139
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400140#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
141
142/*
143 * Stage 2 of the trace events.
144 *
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200145 * Include the following:
146 *
Steven Rostedt (Red Hat)62323a12015-05-13 15:33:52 -0400147 * struct trace_event_data_offsets_<call> {
Li Zefan7d536cb2009-07-16 10:54:02 +0800148 * u32 <item1>;
149 * u32 <item2>;
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200150 * [...]
151 * };
152 *
Li Zefan7d536cb2009-07-16 10:54:02 +0800153 * The __dynamic_array() macro will create each u32 <item>, this is
Li Zefan7fcb7c42009-06-01 15:35:46 +0800154 * to keep the offset of each array from the beginning of the event.
Li Zefan7d536cb2009-07-16 10:54:02 +0800155 * The size of an array is also encoded, in the higher 16 bits of <item>.
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200156 */
157
Steven Rostedt (Red Hat)0c564a52015-03-24 17:58:09 -0400158#undef TRACE_DEFINE_ENUM
159#define TRACE_DEFINE_ENUM(a)
160
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200161#undef __field
Li Zefan43b51ea2009-08-07 10:33:22 +0800162#define __field(type, item)
163
164#undef __field_ext
165#define __field_ext(type, item, filter_type)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200166
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400167#undef __field_struct
168#define __field_struct(type, item)
169
170#undef __field_struct_ext
171#define __field_struct_ext(type, item, filter_type)
172
Li Zefan7fcb7c42009-06-01 15:35:46 +0800173#undef __array
174#define __array(type, item, len)
175
176#undef __dynamic_array
Li Zefan7d536cb2009-07-16 10:54:02 +0800177#define __dynamic_array(type, item, len) u32 item;
Li Zefan7fcb7c42009-06-01 15:35:46 +0800178
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200179#undef __string
Li Zefan7fcb7c42009-06-01 15:35:46 +0800180#define __string(item, src) __dynamic_array(char, item, -1)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200181
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400182#undef __bitmask
183#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
184
Ingo Molnar091ad362009-11-26 09:04:55 +0100185#undef DECLARE_EVENT_CLASS
186#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
Steven Rostedt (Red Hat)62323a12015-05-13 15:33:52 -0400187 struct trace_event_data_offsets_##call { \
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200188 tstruct; \
189 };
190
Steven Rostedtff038f52009-11-18 20:27:27 -0500191#undef DEFINE_EVENT
192#define DEFINE_EVENT(template, name, proto, args)
193
Steven Rostedte5bc9722009-11-18 20:36:26 -0500194#undef DEFINE_EVENT_PRINT
195#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
196 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
197
Frederic Weisbecker1ed0c592010-11-18 01:46:57 +0100198#undef TRACE_EVENT_FLAGS
199#define TRACE_EVENT_FLAGS(event, flag)
200
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100201#undef TRACE_EVENT_PERF_PERM
202#define TRACE_EVENT_PERF_PERM(event, expr...)
203
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200204#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
205
206/*
207 * Stage 3 of the trace events.
208 *
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400209 * Override the macros in <trace/trace_events.h> to include the following:
210 *
211 * enum print_line_t
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400212 * trace_raw_output_<call>(struct trace_iterator *iter, int flags)
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400213 * {
214 * struct trace_seq *s = &iter->seq;
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400215 * struct trace_event_raw_<call> *field; <-- defined in stage 1
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400216 * struct trace_entry *entry;
Lai Jiangshanbc289ae2010-06-03 18:26:24 +0800217 * struct trace_seq *p = &iter->tmp_seq;
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400218 * int ret;
219 *
220 * entry = iter->ent;
221 *
Steven Rostedt32c0eda2010-04-23 10:38:03 -0400222 * if (entry->type != event_<call>->event.type) {
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400223 * WARN_ON_ONCE(1);
224 * return TRACE_TYPE_UNHANDLED;
225 * }
226 *
227 * field = (typeof(field))entry;
228 *
Steven Whitehouse56d8bd32009-06-03 14:52:03 +0100229 * trace_seq_init(p);
Li Zefan50354a82010-03-24 10:58:24 +0800230 * ret = trace_seq_printf(s, "%s: ", <call>);
231 * if (ret)
232 * ret = trace_seq_printf(s, <TP_printk> "\n");
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400233 * if (!ret)
234 * return TRACE_TYPE_PARTIAL_LINE;
235 *
236 * return TRACE_TYPE_HANDLED;
237 * }
238 *
239 * This is the method used to print the raw event to the trace
240 * output format. Note, this is not needed if the data is read
241 * in binary.
242 */
243
244#undef __entry
245#define __entry field
246
247#undef TP_printk
248#define TP_printk(fmt, args...) fmt "\n", args
249
Li Zefan7fcb7c42009-06-01 15:35:46 +0800250#undef __get_dynamic_array
251#define __get_dynamic_array(field) \
Li Zefan7d536cb2009-07-16 10:54:02 +0800252 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
Li Zefan7fcb7c42009-06-01 15:35:46 +0800253
Steven Rostedt (Red Hat)beba4bb2014-06-04 14:29:33 -0400254#undef __get_dynamic_array_len
255#define __get_dynamic_array_len(field) \
256 ((__entry->__data_loc_##field >> 16) & 0xffff)
257
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200258#undef __get_str
Daniel Bristot de Oliveira934de5f2016-07-01 20:44:34 -0300259#define __get_str(field) ((char *)__get_dynamic_array(field))
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200260
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400261#undef __get_bitmask
262#define __get_bitmask(field) \
263 ({ \
264 void *__bitmask = __get_dynamic_array(field); \
265 unsigned int __bitmask_size; \
Steven Rostedt (Red Hat)beba4bb2014-06-04 14:29:33 -0400266 __bitmask_size = __get_dynamic_array_len(field); \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400267 trace_print_bitmask_seq(p, __bitmask, __bitmask_size); \
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400268 })
269
Steven Rostedtbe74b732009-05-26 20:25:22 +0200270#undef __print_flags
271#define __print_flags(flag, delim, flag_array...) \
272 ({ \
Steven Rostedta48f4942009-09-14 11:18:02 -0400273 static const struct trace_print_flags __flags[] = \
Steven Rostedtbe74b732009-05-26 20:25:22 +0200274 { flag_array, { -1, NULL }}; \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400275 trace_print_flags_seq(p, delim, flag, __flags); \
Steven Rostedtbe74b732009-05-26 20:25:22 +0200276 })
277
Steven Rostedt0f4fc292009-05-20 19:21:47 -0400278#undef __print_symbolic
279#define __print_symbolic(value, symbol_array...) \
280 ({ \
281 static const struct trace_print_flags symbols[] = \
282 { symbol_array, { -1, NULL }}; \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400283 trace_print_symbols_seq(p, value, symbols); \
Steven Rostedt0f4fc292009-05-20 19:21:47 -0400284 })
285
liubo2fc1b6f2011-04-19 09:35:28 +0800286#undef __print_symbolic_u64
287#if BITS_PER_LONG == 32
288#define __print_symbolic_u64(value, symbol_array...) \
289 ({ \
290 static const struct trace_print_flags_u64 symbols[] = \
291 { symbol_array, { -1, NULL } }; \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400292 trace_print_symbols_seq_u64(p, value, symbols); \
liubo2fc1b6f2011-04-19 09:35:28 +0800293 })
294#else
295#define __print_symbolic_u64(value, symbol_array...) \
296 __print_symbolic(value, symbol_array)
297#endif
298
Kei Tokunaga5a2e3992010-04-01 20:40:58 +0900299#undef __print_hex
Daniel Borkmann2acae0d2017-01-25 02:28:16 +0100300#define __print_hex(buf, buf_len) \
Daniel Borkmann3898fac2017-02-02 17:09:54 +0100301 trace_print_hex_seq(p, buf, buf_len, false)
Daniel Borkmann2acae0d2017-01-25 02:28:16 +0100302
303#undef __print_hex_str
304#define __print_hex_str(buf, buf_len) \
Daniel Borkmann3898fac2017-02-02 17:09:54 +0100305 trace_print_hex_seq(p, buf, buf_len, true)
Kei Tokunaga5a2e3992010-04-01 20:40:58 +0900306
Dave Martin6ea22482015-01-28 12:48:53 +0000307#undef __print_array
308#define __print_array(array, count, el_size) \
309 ({ \
310 BUILD_BUG_ON(el_size != 1 && el_size != 2 && \
311 el_size != 4 && el_size != 8); \
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -0400312 trace_print_array_seq(p, array, count, el_size); \
Dave Martin6ea22482015-01-28 12:48:53 +0000313 })
314
Ingo Molnar091ad362009-11-26 09:04:55 +0100315#undef DECLARE_EVENT_CLASS
316#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
Steven Rostedt83f0d532010-02-16 10:38:47 -0500317static notrace enum print_line_t \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400318trace_raw_output_##call(struct trace_iterator *iter, int flags, \
319 struct trace_event *trace_event) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400320{ \
321 struct trace_seq *s = &iter->seq; \
Li Zefanf71130d2013-02-21 10:32:38 +0800322 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400323 struct trace_event_raw_##call *field; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400324 int ret; \
325 \
Li Zefanf71130d2013-02-21 10:32:38 +0800326 field = (typeof(field))iter->ent; \
Steven Rostedt80decc72010-04-23 10:00:22 -0400327 \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400328 ret = trace_raw_output_prep(iter, trace_event); \
Steven Rostedt (Red Hat)8e2e0952014-11-14 11:42:06 -0500329 if (ret != TRACE_TYPE_HANDLED) \
Li Zefanf71130d2013-02-21 10:32:38 +0800330 return ret; \
331 \
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500332 trace_seq_printf(s, print); \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400333 \
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500334 return trace_handle_return(s); \
Steven Rostedt80decc72010-04-23 10:00:22 -0400335} \
Steven Rostedt (Red Hat)3ad017b2015-05-13 15:35:44 -0400336static struct trace_event_functions trace_event_type_funcs_##call = { \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400337 .trace = trace_raw_output_##call, \
Steven Rostedt80decc72010-04-23 10:00:22 -0400338};
Steven Rostedtff038f52009-11-18 20:27:27 -0500339
Steven Rostedte5bc9722009-11-18 20:36:26 -0500340#undef DEFINE_EVENT_PRINT
341#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
Steven Rostedt83f0d532010-02-16 10:38:47 -0500342static notrace enum print_line_t \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400343trace_raw_output_##call(struct trace_iterator *iter, int flags, \
Steven Rostedta9a57762010-04-22 18:46:14 -0400344 struct trace_event *event) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400345{ \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400346 struct trace_event_raw_##template *field; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400347 struct trace_entry *entry; \
Lai Jiangshanbc289ae2010-06-03 18:26:24 +0800348 struct trace_seq *p = &iter->tmp_seq; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400349 \
350 entry = iter->ent; \
351 \
Steven Rostedt32c0eda2010-04-23 10:38:03 -0400352 if (entry->type != event_##call.event.type) { \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400353 WARN_ON_ONCE(1); \
354 return TRACE_TYPE_UNHANDLED; \
355 } \
356 \
357 field = (typeof(field))entry; \
358 \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400359 trace_seq_init(p); \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400360 return trace_output_call(iter, #call, print); \
Steven Rostedt80decc72010-04-23 10:00:22 -0400361} \
Steven Rostedt (Red Hat)3ad017b2015-05-13 15:35:44 -0400362static struct trace_event_functions trace_event_type_funcs_##call = { \
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400363 .trace = trace_raw_output_##call, \
Steven Rostedt80decc72010-04-23 10:00:22 -0400364};
Steven Rostedte5bc9722009-11-18 20:36:26 -0500365
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400366#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
367
Li Zefan43b51ea2009-08-07 10:33:22 +0800368#undef __field_ext
369#define __field_ext(type, item, filter_type) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400370 ret = trace_define_field(event_call, #type, #item, \
371 offsetof(typeof(field), item), \
Li Zefan43b51ea2009-08-07 10:33:22 +0800372 sizeof(field.item), \
373 is_signed_type(type), filter_type); \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400374 if (ret) \
375 return ret;
376
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400377#undef __field_struct_ext
378#define __field_struct_ext(type, item, filter_type) \
379 ret = trace_define_field(event_call, #type, #item, \
380 offsetof(typeof(field), item), \
381 sizeof(field.item), \
382 0, filter_type); \
383 if (ret) \
384 return ret;
385
Li Zefan43b51ea2009-08-07 10:33:22 +0800386#undef __field
387#define __field(type, item) __field_ext(type, item, FILTER_OTHER)
388
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400389#undef __field_struct
390#define __field_struct(type, item) __field_struct_ext(type, item, FILTER_OTHER)
391
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400392#undef __array
393#define __array(type, item, len) \
Steven Rostedt04295782010-11-12 22:32:11 -0500394 do { \
Vaibhav Nagarnaik87291342014-02-13 19:51:48 -0800395 char *type_str = #type"["__stringify(len)"]"; \
Steven Rostedt04295782010-11-12 22:32:11 -0500396 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
Vaibhav Nagarnaik87291342014-02-13 19:51:48 -0800397 ret = trace_define_field(event_call, type_str, #item, \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400398 offsetof(typeof(field), item), \
Lai Jiangshanfb7ae982009-12-15 15:39:38 +0800399 sizeof(field.item), \
400 is_signed_type(type), FILTER_OTHER); \
Steven Rostedt04295782010-11-12 22:32:11 -0500401 if (ret) \
402 return ret; \
403 } while (0);
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400404
Li Zefan7fcb7c42009-06-01 15:35:46 +0800405#undef __dynamic_array
406#define __dynamic_array(type, item, len) \
Lai Jiangshan68fd60a2009-07-16 10:53:34 +0800407 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
Li Zefan43b51ea2009-08-07 10:33:22 +0800408 offsetof(typeof(field), __data_loc_##item), \
Lai Jiangshanfb7ae982009-12-15 15:39:38 +0800409 sizeof(field.__data_loc_##item), \
410 is_signed_type(type), FILTER_OTHER);
Li Zefan7fcb7c42009-06-01 15:35:46 +0800411
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200412#undef __string
Li Zefan7fcb7c42009-06-01 15:35:46 +0800413#define __string(item, src) __dynamic_array(char, item, -1)
Frederic Weisbecker9cbf1172009-04-19 04:51:29 +0200414
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400415#undef __bitmask
416#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
417
Ingo Molnar091ad362009-11-26 09:04:55 +0100418#undef DECLARE_EVENT_CLASS
419#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
Li Zefan7e4f44b2013-02-21 10:33:33 +0800420static int notrace __init \
Steven Rostedt (Red Hat)33d0f352015-05-13 15:37:57 -0400421trace_event_define_fields_##call(struct trace_event_call *event_call) \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400422{ \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400423 struct trace_event_raw_##call field; \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400424 int ret; \
425 \
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400426 tstruct; \
427 \
428 return ret; \
429}
430
Steven Rostedtff038f52009-11-18 20:27:27 -0500431#undef DEFINE_EVENT
432#define DEFINE_EVENT(template, name, proto, args)
433
Steven Rostedte5bc9722009-11-18 20:36:26 -0500434#undef DEFINE_EVENT_PRINT
435#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
436 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
437
Steven Rostedtf42c85e2009-04-13 12:25:37 -0400438#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
439
440/*
Li Zefan7fcb7c42009-06-01 15:35:46 +0800441 * remember the offset of each array from the beginning of the event.
442 */
443
444#undef __entry
445#define __entry entry
446
447#undef __field
448#define __field(type, item)
449
Li Zefan43b51ea2009-08-07 10:33:22 +0800450#undef __field_ext
451#define __field_ext(type, item, filter_type)
452
Steven Rostedt4d4c9cc2014-06-17 08:59:16 -0400453#undef __field_struct
454#define __field_struct(type, item)
455
456#undef __field_struct_ext
457#define __field_struct_ext(type, item, filter_type)
458
Li Zefan7fcb7c42009-06-01 15:35:46 +0800459#undef __array
460#define __array(type, item, len)
461
462#undef __dynamic_array
463#define __dynamic_array(type, item, len) \
Filipe Brandenburger114e7b52014-02-28 21:32:17 -0800464 __item_length = (len) * sizeof(type); \
Li Zefan7fcb7c42009-06-01 15:35:46 +0800465 __data_offsets->item = __data_size + \
466 offsetof(typeof(*entry), __data); \
Filipe Brandenburger114e7b52014-02-28 21:32:17 -0800467 __data_offsets->item |= __item_length << 16; \
468 __data_size += __item_length;
Li Zefan7fcb7c42009-06-01 15:35:46 +0800469
470#undef __string
Steven Rostedt (Red Hat)4e58e542013-11-26 09:22:54 -0500471#define __string(item, src) __dynamic_array(char, item, \
472 strlen((src) ? (const char *)(src) : "(null)") + 1)
Li Zefan7fcb7c42009-06-01 15:35:46 +0800473
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -0400474/*
475 * __bitmask_size_in_bytes_raw is the number of bytes needed to hold
476 * num_possible_cpus().
477 */
478#define __bitmask_size_in_bytes_raw(nr_bits) \
479 (((nr_bits) + 7) / 8)
480
481#define __bitmask_size_in_longs(nr_bits) \
482 ((__bitmask_size_in_bytes_raw(nr_bits) + \
483 ((BITS_PER_LONG / 8) - 1)) / (BITS_PER_LONG / 8))
484
485/*
486 * __bitmask_size_in_bytes is the number of bytes needed to hold
487 * num_possible_cpus() padded out to the nearest long. This is what
488 * is saved in the buffer, just to be consistent.
489 */
490#define __bitmask_size_in_bytes(nr_bits) \
491 (__bitmask_size_in_longs(nr_bits) * (BITS_PER_LONG / 8))
492
493#undef __bitmask
494#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, \
495 __bitmask_size_in_longs(nr_bits))
496
Ingo Molnar091ad362009-11-26 09:04:55 +0100497#undef DECLARE_EVENT_CLASS
498#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
Steven Rostedt (Red Hat)d0ee8f42015-05-13 15:40:23 -0400499static inline notrace int trace_event_get_offsets_##call( \
Steven Rostedt (Red Hat)62323a12015-05-13 15:33:52 -0400500 struct trace_event_data_offsets_##call *__data_offsets, proto) \
Li Zefan7fcb7c42009-06-01 15:35:46 +0800501{ \
502 int __data_size = 0; \
Filipe Brandenburger114e7b52014-02-28 21:32:17 -0800503 int __maybe_unused __item_length; \
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -0400504 struct trace_event_raw_##call __maybe_unused *entry; \
Li Zefan7fcb7c42009-06-01 15:35:46 +0800505 \
506 tstruct; \
507 \
508 return __data_size; \
509}
510
Steven Rostedtff038f52009-11-18 20:27:27 -0500511#undef DEFINE_EVENT
512#define DEFINE_EVENT(template, name, proto, args)
513
Steven Rostedte5bc9722009-11-18 20:36:26 -0500514#undef DEFINE_EVENT_PRINT
515#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
516 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
517
Li Zefan7fcb7c42009-06-01 15:35:46 +0800518#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
519
Steven Rostedt (Red Hat)46ac5182015-09-23 09:26:27 -0400520/*
521 * Stage 4 of the trace events.
522 *
523 * Override the macros in <trace/trace_events.h> to include the following:
524 *
525 * For those macros defined with TRACE_EVENT:
526 *
527 * static struct trace_event_call event_<call>;
528 *
529 * static void trace_event_raw_event_<call>(void *__data, proto)
530 * {
531 * struct trace_event_file *trace_file = __data;
532 * struct trace_event_call *event_call = trace_file->event_call;
533 * struct trace_event_data_offsets_<call> __maybe_unused __data_offsets;
534 * unsigned long eflags = trace_file->flags;
535 * enum event_trigger_type __tt = ETT_NONE;
536 * struct ring_buffer_event *event;
537 * struct trace_event_raw_<call> *entry; <-- defined in stage 1
538 * struct ring_buffer *buffer;
539 * unsigned long irq_flags;
540 * int __data_size;
541 * int pc;
542 *
543 * if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
544 * if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
545 * event_triggers_call(trace_file, NULL);
546 * if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
547 * return;
548 * }
549 *
550 * local_save_flags(irq_flags);
551 * pc = preempt_count();
552 *
553 * __data_size = trace_event_get_offsets_<call>(&__data_offsets, args);
554 *
555 * event = trace_event_buffer_lock_reserve(&buffer, trace_file,
556 * event_<call>->event.type,
557 * sizeof(*entry) + __data_size,
558 * irq_flags, pc);
559 * if (!event)
560 * return;
561 * entry = ring_buffer_event_data(event);
562 *
563 * { <assign>; } <-- Here we assign the entries by the __field and
564 * __array macros.
565 *
566 * if (eflags & EVENT_FILE_FL_TRIGGER_COND)
567 * __tt = event_triggers_call(trace_file, entry);
568 *
569 * if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT,
570 * &trace_file->flags))
571 * ring_buffer_discard_commit(buffer, event);
572 * else if (!filter_check_discard(trace_file, entry, buffer, event))
573 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
574 *
575 * if (__tt)
576 * event_triggers_post_call(trace_file, __tt);
577 * }
578 *
579 * static struct trace_event ftrace_event_type_<call> = {
580 * .trace = trace_raw_output_<call>, <-- stage 2
581 * };
582 *
583 * static char print_fmt_<call>[] = <TP_printk>;
584 *
585 * static struct trace_event_class __used event_class_<template> = {
586 * .system = "<system>",
587 * .define_fields = trace_event_define_fields_<call>,
588 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
589 * .raw_init = trace_event_raw_init,
590 * .probe = trace_event_raw_event_##call,
591 * .reg = trace_event_reg,
592 * };
593 *
594 * static struct trace_event_call event_<call> = {
595 * .class = event_class_<template>,
596 * {
597 * .tp = &__tracepoint_<call>,
598 * },
599 * .event = &ftrace_event_type_<call>,
600 * .print_fmt = print_fmt_<call>,
601 * .flags = TRACE_EVENT_FL_TRACEPOINT,
602 * };
603 * // its only safe to use pointers when doing linker tricks to
604 * // create an array.
605 * static struct trace_event_call __used
606 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
607 *
608 */
609
610#ifdef CONFIG_PERF_EVENTS
611
612#define _TRACE_PERF_PROTO(call, proto) \
613 static notrace void \
614 perf_trace_##call(void *__data, proto);
615
616#define _TRACE_PERF_INIT(call) \
617 .perf_probe = perf_trace_##call,
618
619#else
620#define _TRACE_PERF_PROTO(call, proto)
621#define _TRACE_PERF_INIT(call)
622#endif /* CONFIG_PERF_EVENTS */
623
624#undef __entry
625#define __entry entry
626
627#undef __field
628#define __field(type, item)
629
630#undef __field_struct
631#define __field_struct(type, item)
632
633#undef __array
634#define __array(type, item, len)
635
636#undef __dynamic_array
637#define __dynamic_array(type, item, len) \
638 __entry->__data_loc_##item = __data_offsets.item;
639
640#undef __string
641#define __string(item, src) __dynamic_array(char, item, -1)
642
643#undef __assign_str
644#define __assign_str(dst, src) \
645 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
646
647#undef __bitmask
648#define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
649
650#undef __get_bitmask
651#define __get_bitmask(field) (char *)__get_dynamic_array(field)
652
653#undef __assign_bitmask
654#define __assign_bitmask(dst, src, nr_bits) \
655 memcpy(__get_bitmask(dst), (src), __bitmask_size_in_bytes(nr_bits))
656
657#undef TP_fast_assign
658#define TP_fast_assign(args...) args
659
Steven Rostedt (Red Hat)46ac5182015-09-23 09:26:27 -0400660#undef __perf_count
661#define __perf_count(c) (c)
662
663#undef __perf_task
664#define __perf_task(t) (t)
665
666#undef DECLARE_EVENT_CLASS
667#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
668 \
669static notrace void \
670trace_event_raw_event_##call(void *__data, proto) \
671{ \
672 struct trace_event_file *trace_file = __data; \
673 struct trace_event_data_offsets_##call __maybe_unused __data_offsets;\
674 struct trace_event_buffer fbuffer; \
675 struct trace_event_raw_##call *entry; \
676 int __data_size; \
677 \
678 if (trace_trigger_soft_disabled(trace_file)) \
679 return; \
680 \
681 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \
682 \
683 entry = trace_event_buffer_reserve(&fbuffer, trace_file, \
684 sizeof(*entry) + __data_size); \
685 \
686 if (!entry) \
687 return; \
688 \
689 tstruct \
690 \
691 { assign; } \
692 \
693 trace_event_buffer_commit(&fbuffer); \
694}
695/*
696 * The ftrace_test_probe is compiled out, it is only here as a build time check
697 * to make sure that if the tracepoint handling changes, the ftrace probe will
698 * fail to compile unless it too is updated.
699 */
700
701#undef DEFINE_EVENT
702#define DEFINE_EVENT(template, call, proto, args) \
703static inline void ftrace_test_probe_##call(void) \
704{ \
705 check_trace_callback_type_##call(trace_event_raw_event_##template); \
706}
707
708#undef DEFINE_EVENT_PRINT
709#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
710
711#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
712
713#undef __entry
714#define __entry REC
715
716#undef __print_flags
717#undef __print_symbolic
718#undef __print_hex
Daniel Borkmann2acae0d2017-01-25 02:28:16 +0100719#undef __print_hex_str
Steven Rostedt (Red Hat)46ac5182015-09-23 09:26:27 -0400720#undef __get_dynamic_array
721#undef __get_dynamic_array_len
722#undef __get_str
723#undef __get_bitmask
724#undef __print_array
725
726#undef TP_printk
727#define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
728
729#undef DECLARE_EVENT_CLASS
730#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
731_TRACE_PERF_PROTO(call, PARAMS(proto)); \
732static char print_fmt_##call[] = print; \
733static struct trace_event_class __used __refdata event_class_##call = { \
734 .system = TRACE_SYSTEM_STRING, \
735 .define_fields = trace_event_define_fields_##call, \
736 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
737 .raw_init = trace_event_raw_init, \
738 .probe = trace_event_raw_event_##call, \
739 .reg = trace_event_reg, \
740 _TRACE_PERF_INIT(call) \
741};
742
743#undef DEFINE_EVENT
744#define DEFINE_EVENT(template, call, proto, args) \
745 \
746static struct trace_event_call __used event_##call = { \
747 .class = &event_class_##template, \
748 { \
749 .tp = &__tracepoint_##call, \
750 }, \
751 .event.funcs = &trace_event_type_funcs_##template, \
752 .print_fmt = print_fmt_##template, \
753 .flags = TRACE_EVENT_FL_TRACEPOINT, \
754}; \
755static struct trace_event_call __used \
756__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
757
758#undef DEFINE_EVENT_PRINT
759#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
760 \
761static char print_fmt_##call[] = print; \
762 \
763static struct trace_event_call __used event_##call = { \
764 .class = &event_class_##template, \
765 { \
766 .tp = &__tracepoint_##call, \
767 }, \
768 .event.funcs = &trace_event_type_funcs_##call, \
769 .print_fmt = print_fmt_##call, \
770 .flags = TRACE_EVENT_FL_TRACEPOINT, \
771}; \
772static struct trace_event_call __used \
773__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
774
775#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)