Go to the documentation of this file.
31 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
32 DECLARE_EVENT_CLASS(name, \
38 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));
42 #define __field(type, item) type item;
45 #define __field_ext(type, item, filter_type) type item;
48 #define __array(type, item, len) type item[len];
50 #undef __dynamic_array
51 #define __dynamic_array(type, item, len) u32 __data_loc_##item;
54 #define __string(item, src) __dynamic_array(char, item, -1)
56 #undef TP_STRUCT__entry
57 #define TP_STRUCT__entry(args...) args
59 #undef DECLARE_EVENT_CLASS
60 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
61 struct ftrace_raw_##name { \
62 struct trace_entry ent; \
67 static struct ftrace_event_class event_class_##name;
70 #define DEFINE_EVENT(template, name, proto, args) \
71 static struct ftrace_event_call __used \
72 __attribute__((__aligned__(4))) event_##name
74 #undef DEFINE_EVENT_PRINT
75 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
76 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
80 #define TRACE_EVENT_FN(name, proto, args, tstruct, \
81 assign, print, reg, unreg) \
82 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
83 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
85 #undef TRACE_EVENT_FLAGS
86 #define TRACE_EVENT_FLAGS(name, value) \
87 __TRACE_EVENT_FLAGS(name, value)
89 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
109 #define __field(type, item)
112 #define __field_ext(type, item, filter_type)
115 #define __array(type, item, len)
117 #undef __dynamic_array
118 #define __dynamic_array(type, item, len) u32 item;
121 #define __string(item, src) __dynamic_array(char, item, -1)
123 #undef DECLARE_EVENT_CLASS
124 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
125 struct ftrace_data_offsets_##call { \
130 #define DEFINE_EVENT(template, name, proto, args)
132 #undef DEFINE_EVENT_PRINT
133 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
134 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
136 #undef TRACE_EVENT_FLAGS
137 #define TRACE_EVENT_FLAGS(event, flag)
139 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
180 #define __entry field
183 #define TP_printk(fmt, args...) fmt "\n", args
185 #undef __get_dynamic_array
186 #define __get_dynamic_array(field) \
187 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
190 #define __get_str(field) (char *)__get_dynamic_array(field)
193 #define __print_flags(flag, delim, flag_array...) \
195 static const struct trace_print_flags __flags[] = \
196 { flag_array, { -1, NULL }}; \
197 ftrace_print_flags_seq(p, delim, flag, __flags); \
200 #undef __print_symbolic
201 #define __print_symbolic(value, symbol_array...) \
203 static const struct trace_print_flags symbols[] = \
204 { symbol_array, { -1, NULL }}; \
205 ftrace_print_symbols_seq(p, value, symbols); \
208 #undef __print_symbolic_u64
209 #if BITS_PER_LONG == 32
210 #define __print_symbolic_u64(value, symbol_array...) \
212 static const struct trace_print_flags_u64 symbols[] = \
213 { symbol_array, { -1, NULL } }; \
214 ftrace_print_symbols_seq_u64(p, value, symbols); \
217 #define __print_symbolic_u64(value, symbol_array...) \
218 __print_symbolic(value, symbol_array)
222 #define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)
224 #undef DECLARE_EVENT_CLASS
225 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
226 static notrace enum print_line_t \
227 ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
228 struct trace_event *trace_event) \
230 struct ftrace_event_call *event; \
231 struct trace_seq *s = &iter->seq; \
232 struct ftrace_raw_##call *field; \
233 struct trace_entry *entry; \
234 struct trace_seq *p = &iter->tmp_seq; \
237 event = container_of(trace_event, struct ftrace_event_call, \
242 if (entry->type != event->event.type) { \
244 return TRACE_TYPE_UNHANDLED; \
247 field = (typeof(field))entry; \
250 ret = trace_seq_printf(s, "%s: ", event->name); \
252 ret = trace_seq_printf(s, print); \
254 return TRACE_TYPE_PARTIAL_LINE; \
256 return TRACE_TYPE_HANDLED; \
258 static struct trace_event_functions ftrace_event_type_funcs_##call = { \
259 .trace = ftrace_raw_output_##call, \
262 #undef DEFINE_EVENT_PRINT
263 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
264 static notrace enum print_line_t \
265 ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
266 struct trace_event *event) \
268 struct trace_seq *s = &iter->seq; \
269 struct ftrace_raw_##template *field; \
270 struct trace_entry *entry; \
271 struct trace_seq *p = &iter->tmp_seq; \
276 if (entry->type != event_##call.event.type) { \
278 return TRACE_TYPE_UNHANDLED; \
281 field = (typeof(field))entry; \
284 ret = trace_seq_printf(s, "%s: ", #call); \
286 ret = trace_seq_printf(s, print); \
288 return TRACE_TYPE_PARTIAL_LINE; \
290 return TRACE_TYPE_HANDLED; \
292 static struct trace_event_functions ftrace_event_type_funcs_##call = { \
293 .trace = ftrace_raw_output_##call, \
296 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
299 #define __field_ext(type, item, filter_type) \
300 ret = trace_define_field(event_call, #type, #item, \
301 offsetof(typeof(field), item), \
302 sizeof(field.item), \
303 is_signed_type(type), filter_type); \
308 #define __field(type, item) __field_ext(type, item, FILTER_OTHER)
311 #define __array(type, item, len) \
313 mutex_lock(&event_storage_mutex); \
314 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
315 snprintf(event_storage, sizeof(event_storage), \
316 "%s[%d]", #type, len); \
317 ret = trace_define_field(event_call, event_storage, #item, \
318 offsetof(typeof(field), item), \
319 sizeof(field.item), \
320 is_signed_type(type), FILTER_OTHER); \
321 mutex_unlock(&event_storage_mutex); \
326 #undef __dynamic_array
327 #define __dynamic_array(type, item, len) \
328 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
329 offsetof(typeof(field), __data_loc_##item), \
330 sizeof(field.__data_loc_##item), \
331 is_signed_type(type), FILTER_OTHER);
334 #define __string(item, src) __dynamic_array(char, item, -1)
336 #undef DECLARE_EVENT_CLASS
337 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
339 ftrace_define_fields_##call(struct ftrace_event_call *event_call) \
341 struct ftrace_raw_##call field; \
350 #define DEFINE_EVENT(template, name, proto, args)
352 #undef DEFINE_EVENT_PRINT
353 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
354 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
356 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
363 #define __entry entry
366 #define __field(type, item)
369 #define __field_ext(type, item, filter_type)
372 #define __array(type, item, len)
374 #undef __dynamic_array
375 #define __dynamic_array(type, item, len) \
376 __data_offsets->item = __data_size + \
377 offsetof(typeof(*entry), __data); \
378 __data_offsets->item |= (len * sizeof(type)) << 16; \
379 __data_size += (len) * sizeof(type);
382 #define __string(item, src) __dynamic_array(char, item, strlen(src) + 1)
384 #undef DECLARE_EVENT_CLASS
385 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
386 static inline notrace int ftrace_get_offsets_##call( \
387 struct ftrace_data_offsets_##call *__data_offsets, proto) \
389 int __data_size = 0; \
390 struct ftrace_raw_##call __maybe_unused *entry; \
394 return __data_size; \
398 #define DEFINE_EVENT(template, name, proto, args)
400 #undef DEFINE_EVENT_PRINT
401 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
402 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
404 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
475 #ifdef CONFIG_PERF_EVENTS
477 #define _TRACE_PERF_PROTO(call, proto) \
478 static notrace void \
479 perf_trace_##call(void *__data, proto);
481 #define _TRACE_PERF_INIT(call) \
482 .perf_probe = perf_trace_##call,
485 #define _TRACE_PERF_PROTO(call, proto)
486 #define _TRACE_PERF_INIT(call)
490 #define __entry entry
493 #define __field(type, item)
496 #define __array(type, item, len)
498 #undef __dynamic_array
499 #define __dynamic_array(type, item, len) \
500 __entry->__data_loc_##item = __data_offsets.item;
503 #define __string(item, src) __dynamic_array(char, item, -1) \
506 #define __assign_str(dst, src) \
507 strcpy(__get_str(dst), src);
509 #undef TP_fast_assign
510 #define TP_fast_assign(args...) args
512 #undef TP_perf_assign
513 #define TP_perf_assign(args...)
515 #undef DECLARE_EVENT_CLASS
516 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
518 static notrace void \
519 ftrace_raw_event_##call(void *__data, proto) \
521 struct ftrace_event_call *event_call = __data; \
522 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
523 struct ring_buffer_event *event; \
524 struct ftrace_raw_##call *entry; \
525 struct ring_buffer *buffer; \
526 unsigned long irq_flags; \
530 local_save_flags(irq_flags); \
531 pc = preempt_count(); \
533 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
535 event = trace_current_buffer_lock_reserve(&buffer, \
536 event_call->event.type, \
537 sizeof(*entry) + __data_size, \
541 entry = ring_buffer_event_data(event); \
547 if (!filter_current_check_discard(buffer, event_call, entry, event)) \
548 trace_nowake_buffer_unlock_commit(buffer, \
549 event, irq_flags, pc); \
558 #define DEFINE_EVENT(template, call, proto, args) \
559 static inline void ftrace_test_probe_##call(void) \
561 check_trace_callback_type_##call(ftrace_raw_event_##template); \
564 #undef DEFINE_EVENT_PRINT
565 #define DEFINE_EVENT_PRINT(template, name, proto, args, print)
567 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
573 #undef __print_symbolic
575 #undef __get_dynamic_array
579 #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
581 #undef DECLARE_EVENT_CLASS
582 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
583 _TRACE_PERF_PROTO(call, PARAMS(proto)); \
584 static const char print_fmt_##call[] = print; \
585 static struct ftrace_event_class __used event_class_##call = { \
586 .system = __stringify(TRACE_SYSTEM), \
587 .define_fields = ftrace_define_fields_##call, \
588 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
589 .raw_init = trace_event_raw_init, \
590 .probe = ftrace_raw_event_##call, \
591 .reg = ftrace_event_reg, \
592 _TRACE_PERF_INIT(call) \
596 #define DEFINE_EVENT(template, call, proto, args) \
598 static struct ftrace_event_call __used event_##call = { \
600 .class = &event_class_##template, \
601 .event.funcs = &ftrace_event_type_funcs_##template, \
602 .print_fmt = print_fmt_##template, \
604 static struct ftrace_event_call __used \
605 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
607 #undef DEFINE_EVENT_PRINT
608 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
610 static const char print_fmt_##call[] = print; \
612 static struct ftrace_event_call __used event_##call = { \
614 .class = &event_class_##template, \
615 .event.funcs = &ftrace_event_type_funcs_##call, \
616 .print_fmt = print_fmt_##call, \
618 static struct ftrace_event_call __used \
619 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
621 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
697 #ifdef CONFIG_PERF_EVENTS
700 #define __entry entry
702 #undef __get_dynamic_array
703 #define __get_dynamic_array(field) \
704 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
707 #define __get_str(field) (char *)__get_dynamic_array(field)
710 #define __perf_addr(a) __addr = (a)
713 #define __perf_count(c) __count = (c)
716 #define __perf_task(t) __task = (t)
718 #undef TP_perf_assign
719 #define TP_perf_assign(args...) args
721 #undef DECLARE_EVENT_CLASS
722 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
723 static notrace void \
724 perf_trace_##call(void *__data, proto) \
726 struct ftrace_event_call *event_call = __data; \
727 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
728 struct ftrace_raw_##call *entry; \
729 struct pt_regs __regs; \
730 u64 __addr = 0, __count = 1; \
731 struct task_struct *__task = NULL; \
732 struct hlist_head *head; \
737 perf_fetch_caller_regs(&__regs); \
739 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
740 __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
742 __entry_size -= sizeof(u32); \
744 if (WARN_ONCE(__entry_size > PERF_MAX_TRACE_SIZE, \
745 "profile buffer not large enough")) \
748 entry = (struct ftrace_raw_##call *)perf_trace_buf_prepare( \
749 __entry_size, event_call->event.type, &__regs, &rctx); \
757 head = this_cpu_ptr(event_call->perf_events); \
758 perf_trace_buf_submit(entry, __entry_size, rctx, __addr, \
759 __count, &__regs, head, __task); \
768 #define DEFINE_EVENT(template, call, proto, args) \
769 static inline void perf_test_probe_##call(void) \
771 check_trace_callback_type_##call(perf_trace_##template); \
775 #undef DEFINE_EVENT_PRINT
776 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
777 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
779 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
782 #undef _TRACE_PROFILE_INIT