2 * Copyright (c) 2011-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 #include <urcu/compiler.h>
26 #include <urcu/rculist.h>
27 #include <lttng/ust-events.h>
28 #include <lttng/ringbuffer-config.h>
29 #include <lttng/ust-compiler.h>
30 #include <lttng/tracepoint.h>
34 #define __LTTNG_UST_NULL_STRING "(null)"
36 #undef tp_list_for_each_entry_rcu
37 #define tp_list_for_each_entry_rcu(pos, head, member) \
38 for (pos = cds_list_entry(tp_rcu_dereference_bp((head)->next), __typeof__(*pos), member); \
39 &pos->member != (head); \
40 pos = cds_list_entry(tp_rcu_dereference_bp(pos->member.next), __typeof__(*pos), member))
43 * TRACEPOINT_EVENT_CLASS declares a class of tracepoints receiving the
44 * same arguments and having the same field layout.
46 * TRACEPOINT_EVENT_INSTANCE declares an instance of a tracepoint, with
47 * its own provider and name. It refers to a class (template).
49 * TRACEPOINT_EVENT declared both a class and an instance and does a
50 * direct mapping from the instance to the class.
53 #undef TRACEPOINT_EVENT
54 #define TRACEPOINT_EVENT(_provider, _name, _args, _fields) \
55 TRACEPOINT_EVENT_CLASS(_provider, _name, \
57 _TP_PARAMS(_fields)) \
58 TRACEPOINT_EVENT_INSTANCE(_provider, _name, _name, \
62 #define _TP_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
64 #define _tp_max_t(type, x, y) \
68 __max1 > __max2 ? __max1: __max2; \
72 * Stage 0 of tracepoint event generation.
74 * Check that each TRACEPOINT_EVENT provider argument match the
75 * TRACEPOINT_PROVIDER by creating dummy callbacks.
78 /* Reset all macros within TRACEPOINT_EVENT */
79 #include <lttng/ust-tracepoint-event-reset.h>
81 static inline lttng_ust_notrace
82 void _TP_COMBINE_TOKENS(__tracepoint_provider_mismatch_
, TRACEPOINT_PROVIDER
)(void);
84 void _TP_COMBINE_TOKENS(__tracepoint_provider_mismatch_
, TRACEPOINT_PROVIDER
)(void)
88 #undef TRACEPOINT_EVENT_CLASS
89 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
90 __tracepoint_provider_mismatch_##_provider();
92 #undef TRACEPOINT_EVENT_INSTANCE
93 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
94 __tracepoint_provider_mismatch_##_provider();
96 static inline lttng_ust_notrace
97 void _TP_COMBINE_TOKENS(__tracepoint_provider_check_
, TRACEPOINT_PROVIDER
)(void);
99 void _TP_COMBINE_TOKENS(__tracepoint_provider_check_
, TRACEPOINT_PROVIDER
)(void)
101 #include TRACEPOINT_INCLUDE
105 * Stage 0.1 of tracepoint event generation.
107 * Check that each TRACEPOINT_EVENT provider:name does not exceed the
108 * tracepoint name length limit.
111 /* Reset all macros within TRACEPOINT_EVENT */
112 #include <lttng/ust-tracepoint-event-reset.h>
114 #undef TRACEPOINT_EVENT_INSTANCE
115 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
117 __tp_name_len_check##_provider##___##_name[LTTNG_UST_SYM_NAME_LEN] \
118 __attribute__((unused)) = \
119 #_provider ":" #_name;
121 #include TRACEPOINT_INCLUDE
124 * Stage 0.9 of tracepoint event generation
126 * Unfolding the enums
128 #include <lttng/ust-tracepoint-event-reset.h>
130 /* Enumeration entry (single value) */
131 #undef ctf_enum_value
132 #define ctf_enum_value(_string, _value) \
135 .signedness = lttng_is_signed_type(__typeof__(_value)), \
136 .value = lttng_is_signed_type(__typeof__(_value)) ? \
137 (long long) (_value) : (_value), \
140 .signedness = lttng_is_signed_type(__typeof__(_value)), \
141 .value = lttng_is_signed_type(__typeof__(_value)) ? \
142 (long long) (_value) : (_value), \
144 .string = (_string), \
147 /* Enumeration entry (range) */
148 #undef ctf_enum_range
149 #define ctf_enum_range(_string, _range_start, _range_end) \
152 .signedness = lttng_is_signed_type(__typeof__(_range_start)), \
153 .value = lttng_is_signed_type(__typeof__(_range_start)) ? \
154 (long long) (_range_start) : (_range_start), \
157 .signedness = lttng_is_signed_type(__typeof__(_range_end)), \
158 .value = lttng_is_signed_type(__typeof__(_range_end)) ? \
159 (long long) (_range_end) : (_range_end), \
161 .string = (_string), \
164 #undef TP_ENUM_VALUES
165 #define TP_ENUM_VALUES(...) \
168 #undef TRACEPOINT_ENUM
169 #define TRACEPOINT_ENUM(_provider, _name, _values) \
170 const struct lttng_enum_entry __enum_values__##_provider##_##_name[] = { \
172 ctf_enum_value("", 0) /* Dummy, 0-len array forbidden by C99. */ \
175 #include TRACEPOINT_INCLUDE
178 * Stage 1 of tracepoint event generation.
180 * Create event field type metadata section.
181 * Each event produce an array of fields.
184 /* Reset all macros within TRACEPOINT_EVENT */
185 #include <lttng/ust-tracepoint-event-reset.h>
186 #include <lttng/ust-tracepoint-event-write.h>
187 #include <lttng/ust-tracepoint-event-nowrite.h>
189 #undef _ctf_integer_ext
190 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
193 .type = __type_integer(_type, _byte_order, _base, none),\
194 .nowrite = _nowrite, \
198 #define _ctf_float(_type, _item, _src, _nowrite) \
201 .type = __type_float(_type), \
202 .nowrite = _nowrite, \
205 #undef _ctf_array_encoded
206 #define _ctf_array_encoded(_type, _item, _src, _byte_order, \
207 _length, _encoding, _nowrite, \
213 .atype = atype_array, \
218 .elem_type = __type_integer(_type, _byte_order, _elem_type_base, _encoding), \
223 .nowrite = _nowrite, \
226 #undef _ctf_sequence_encoded
227 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, \
228 _length_type, _src_length, _encoding, _nowrite, \
234 .atype = atype_sequence, \
239 .length_type = __type_integer(_length_type, BYTE_ORDER, 10, none), \
240 .elem_type = __type_integer(_type, _byte_order, _elem_type_base, _encoding), \
244 .nowrite = _nowrite, \
248 #define _ctf_string(_item, _src, _nowrite) \
253 .atype = atype_string, \
256 .basic = { .string = { .encoding = lttng_encode_UTF8 } } \
259 .nowrite = _nowrite, \
263 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
267 .atype = atype_enum, \
271 .desc = &__enum_##_provider##_##_name, \
272 .container_type = { \
273 .size = sizeof(_type) * CHAR_BIT, \
274 .alignment = lttng_alignof(_type) * CHAR_BIT, \
275 .signedness = lttng_is_signed_type(_type), \
276 .reverse_byte_order = 0, \
278 .encoding = lttng_encode_none, \
284 .nowrite = _nowrite, \
288 #define TP_FIELDS(...) __VA_ARGS__ /* Only one used in this phase */
290 #undef TRACEPOINT_EVENT_CLASS
291 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
292 static const struct lttng_event_field __event_fields___##_provider##___##_name[] = { \
294 ctf_integer(int, dummy, 0) /* Dummy, C99 forbids 0-len array. */ \
297 #undef TRACEPOINT_ENUM
298 #define TRACEPOINT_ENUM(_provider, _name, _values) \
299 static const struct lttng_enum_desc __enum_##_provider##_##_name = { \
300 .name = #_provider "_" #_name, \
301 .entries = __enum_values__##_provider##_##_name, \
302 .nr_entries = _TP_ARRAY_SIZE(__enum_values__##_provider##_##_name) - 1, \
305 #include TRACEPOINT_INCLUDE
308 * Stage 2 of tracepoint event generation.
310 * Create probe callback prototypes.
313 /* Reset all macros within TRACEPOINT_EVENT */
314 #include <lttng/ust-tracepoint-event-reset.h>
317 #define TP_ARGS(...) __VA_ARGS__
319 #undef TRACEPOINT_EVENT_CLASS
320 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
321 static void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args));
323 #include TRACEPOINT_INCLUDE
326 * Stage 3.0 of tracepoint event generation.
328 * Create static inline function that calculates event size.
331 /* Reset all macros within TRACEPOINT_EVENT */
332 #include <lttng/ust-tracepoint-event-reset.h>
333 #include <lttng/ust-tracepoint-event-write.h>
335 #undef _ctf_integer_ext
336 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
337 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
338 __event_len += sizeof(_type);
341 #define _ctf_float(_type, _item, _src, _nowrite) \
342 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
343 __event_len += sizeof(_type);
345 #undef _ctf_array_encoded
346 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, _encoding, \
347 _nowrite, _elem_type_base) \
348 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
349 __event_len += sizeof(_type) * (_length);
351 #undef _ctf_sequence_encoded
352 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
353 _src_length, _encoding, _nowrite, _elem_type_base) \
354 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_length_type)); \
355 __event_len += sizeof(_length_type); \
356 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
357 __dynamic_len[__dynamic_len_idx] = (_src_length); \
358 __event_len += sizeof(_type) * __dynamic_len[__dynamic_len_idx]; \
362 #define _ctf_string(_item, _src, _nowrite) \
363 __event_len += __dynamic_len[__dynamic_len_idx++] = \
364 strlen((_src) ? (_src) : __LTTNG_UST_NULL_STRING) + 1;
367 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
368 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
371 #define TP_ARGS(...) __VA_ARGS__
374 #define TP_FIELDS(...) __VA_ARGS__
376 #undef TRACEPOINT_EVENT_CLASS
377 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
378 static inline lttng_ust_notrace \
379 size_t __event_get_size__##_provider##___##_name(size_t *__dynamic_len, _TP_ARGS_DATA_PROTO(_args)); \
381 size_t __event_get_size__##_provider##___##_name(size_t *__dynamic_len, _TP_ARGS_DATA_PROTO(_args)) \
383 size_t __event_len = 0; \
384 unsigned int __dynamic_len_idx = 0; \
387 (void) __dynamic_len_idx; /* don't warn if unused */ \
389 return __event_len; \
392 #include TRACEPOINT_INCLUDE
395 * Stage 3.1 of tracepoint event generation.
397 * Create static inline function that layout the filter stack data.
398 * We make both write and nowrite data available to the filter.
401 /* Reset all macros within TRACEPOINT_EVENT */
402 #include <lttng/ust-tracepoint-event-reset.h>
403 #include <lttng/ust-tracepoint-event-write.h>
404 #include <lttng/ust-tracepoint-event-nowrite.h>
406 #undef _ctf_integer_ext
407 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
408 if (lttng_is_signed_type(_type)) { \
409 int64_t __ctf_tmp_int64; \
410 switch (sizeof(_type)) { \
413 union { _type t; int8_t v; } __tmp = { (_type) (_src) }; \
414 __ctf_tmp_int64 = (int64_t) __tmp.v; \
419 union { _type t; int16_t v; } __tmp = { (_type) (_src) }; \
420 if (_byte_order != BYTE_ORDER) \
421 __tmp.v = bswap_16(__tmp.v); \
422 __ctf_tmp_int64 = (int64_t) __tmp.v; \
427 union { _type t; int32_t v; } __tmp = { (_type) (_src) }; \
428 if (_byte_order != BYTE_ORDER) \
429 __tmp.v = bswap_32(__tmp.v); \
430 __ctf_tmp_int64 = (int64_t) __tmp.v; \
435 union { _type t; int64_t v; } __tmp = { (_type) (_src) }; \
436 if (_byte_order != BYTE_ORDER) \
437 __tmp.v = bswap_64(__tmp.v); \
438 __ctf_tmp_int64 = (int64_t) __tmp.v; \
444 memcpy(__stack_data, &__ctf_tmp_int64, sizeof(int64_t)); \
446 uint64_t __ctf_tmp_uint64; \
447 switch (sizeof(_type)) { \
450 union { _type t; uint8_t v; } __tmp = { (_type) (_src) }; \
451 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
456 union { _type t; uint16_t v; } __tmp = { (_type) (_src) }; \
457 if (_byte_order != BYTE_ORDER) \
458 __tmp.v = bswap_16(__tmp.v); \
459 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
464 union { _type t; uint32_t v; } __tmp = { (_type) (_src) }; \
465 if (_byte_order != BYTE_ORDER) \
466 __tmp.v = bswap_32(__tmp.v); \
467 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
472 union { _type t; uint64_t v; } __tmp = { (_type) (_src) }; \
473 if (_byte_order != BYTE_ORDER) \
474 __tmp.v = bswap_64(__tmp.v); \
475 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
481 memcpy(__stack_data, &__ctf_tmp_uint64, sizeof(uint64_t)); \
483 __stack_data += sizeof(int64_t);
486 #define _ctf_float(_type, _item, _src, _nowrite) \
488 double __ctf_tmp_double = (double) (_type) (_src); \
489 memcpy(__stack_data, &__ctf_tmp_double, sizeof(double)); \
490 __stack_data += sizeof(double); \
493 #undef _ctf_array_encoded
494 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
495 _encoding, _nowrite, _elem_type_base) \
497 unsigned long __ctf_tmp_ulong = (unsigned long) (_length); \
498 const void *__ctf_tmp_ptr = (_src); \
499 memcpy(__stack_data, &__ctf_tmp_ulong, sizeof(unsigned long)); \
500 __stack_data += sizeof(unsigned long); \
501 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
502 __stack_data += sizeof(void *); \
505 #undef _ctf_sequence_encoded
506 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
507 _src_length, _encoding, _nowrite, _elem_type_base) \
509 unsigned long __ctf_tmp_ulong = (unsigned long) (_src_length); \
510 const void *__ctf_tmp_ptr = (_src); \
511 memcpy(__stack_data, &__ctf_tmp_ulong, sizeof(unsigned long)); \
512 __stack_data += sizeof(unsigned long); \
513 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
514 __stack_data += sizeof(void *); \
518 #define _ctf_string(_item, _src, _nowrite) \
520 const void *__ctf_tmp_ptr = \
521 ((_src) ? (_src) : __LTTNG_UST_NULL_STRING); \
522 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
523 __stack_data += sizeof(void *); \
527 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
528 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
531 #define TP_ARGS(...) __VA_ARGS__
534 #define TP_FIELDS(...) __VA_ARGS__
536 #undef TRACEPOINT_EVENT_CLASS
537 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
539 void __event_prepare_filter_stack__##_provider##___##_name(char *__stack_data,\
540 _TP_ARGS_DATA_PROTO(_args)) \
545 #include TRACEPOINT_INCLUDE
548 * Stage 4 of tracepoint event generation.
550 * Create static inline function that calculates event payload alignment.
553 /* Reset all macros within TRACEPOINT_EVENT */
554 #include <lttng/ust-tracepoint-event-reset.h>
555 #include <lttng/ust-tracepoint-event-write.h>
557 #undef _ctf_integer_ext
558 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
559 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
562 #define _ctf_float(_type, _item, _src, _nowrite) \
563 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
565 #undef _ctf_array_encoded
566 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
567 _encoding, _nowrite, _elem_type_base) \
568 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
570 #undef _ctf_sequence_encoded
571 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
572 _src_length, _encoding, _nowrite, _elem_type_base) \
573 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_length_type)); \
574 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
577 #define _ctf_string(_item, _src, _nowrite)
580 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
581 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
584 #define TP_ARGS(...) __VA_ARGS__
587 #define TP_FIELDS(...) __VA_ARGS__
589 #undef TRACEPOINT_EVENT_CLASS
590 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
591 static inline lttng_ust_notrace \
592 size_t __event_get_align__##_provider##___##_name(_TP_ARGS_PROTO(_args)); \
594 size_t __event_get_align__##_provider##___##_name(_TP_ARGS_PROTO(_args)) \
596 size_t __event_align = 1; \
598 return __event_align; \
601 #include TRACEPOINT_INCLUDE
605 * Stage 5 of tracepoint event generation.
607 * Create the probe function. This function calls event size calculation
608 * and writes event data into the buffer.
611 /* Reset all macros within TRACEPOINT_EVENT */
612 #include <lttng/ust-tracepoint-event-reset.h>
613 #include <lttng/ust-tracepoint-event-write.h>
615 #undef _ctf_integer_ext
616 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
618 _type __tmp = (_src); \
619 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(__tmp));\
620 __chan->ops->event_write(&__ctx, &__tmp, sizeof(__tmp));\
624 #define _ctf_float(_type, _item, _src, _nowrite) \
626 _type __tmp = (_src); \
627 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(__tmp));\
628 __chan->ops->event_write(&__ctx, &__tmp, sizeof(__tmp));\
631 #undef _ctf_array_encoded
632 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
633 _encoding, _nowrite, _elem_type_base) \
634 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(_type)); \
635 __chan->ops->event_write(&__ctx, _src, sizeof(_type) * (_length));
637 #undef _ctf_sequence_encoded
638 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
639 _src_length, _encoding, _nowrite, _elem_type_base) \
641 _length_type __tmpl = __stackvar.__dynamic_len[__dynamic_len_idx]; \
642 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(_length_type));\
643 __chan->ops->event_write(&__ctx, &__tmpl, sizeof(_length_type));\
645 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(_type)); \
646 __chan->ops->event_write(&__ctx, _src, \
647 sizeof(_type) * __get_dynamic_len(dest));
650 * __chan->ops->u.has_strcpy is a flag letting us know if the LTTng-UST
651 * tracepoint provider ABI implements event_strcpy. This dynamic check
652 * can be removed when the tracepoint provider ABI moves to 2.
654 #if (LTTNG_UST_PROVIDER_MAJOR > 1)
655 #error "Tracepoint probe provider major version has changed. Please remove dynamic check for has_strcpy."
659 #define _ctf_string(_item, _src, _nowrite) \
661 const char *__ctf_tmp_string = \
662 ((_src) ? (_src) : __LTTNG_UST_NULL_STRING); \
663 lib_ring_buffer_align_ctx(&__ctx, \
664 lttng_alignof(*__ctf_tmp_string)); \
665 if (__chan->ops->u.has_strcpy) \
666 __chan->ops->event_strcpy(&__ctx, __ctf_tmp_string, \
667 __get_dynamic_len(dest)); \
669 __chan->ops->event_write(&__ctx, __ctf_tmp_string, \
670 __get_dynamic_len(dest)); \
675 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
676 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
678 /* Beware: this get len actually consumes the len value */
679 #undef __get_dynamic_len
680 #define __get_dynamic_len(field) __stackvar.__dynamic_len[__dynamic_len_idx++]
683 #define TP_ARGS(...) __VA_ARGS__
686 #define TP_FIELDS(...) __VA_ARGS__
689 * For state dump, check that "session" argument (mandatory) matches the
690 * session this event belongs to. Ensures that we write state dump data only
691 * into the started session, not into all sessions.
693 #undef _TP_SESSION_CHECK
694 #ifdef TP_SESSION_CHECK
695 #define _TP_SESSION_CHECK(session, csession) (session == csession)
696 #else /* TP_SESSION_CHECK */
697 #define _TP_SESSION_CHECK(session, csession) 1
698 #endif /* TP_SESSION_CHECK */
701 * Use of __builtin_return_address(0) sometimes seems to cause stack
702 * corruption on 32-bit PowerPC. Disable this feature on that
703 * architecture for now by always using the NULL value for the ip
708 #define _TP_IP_PARAM(x) (x)
709 #else /* TP_IP_PARAM */
711 #if defined(__PPC__) && !defined(__PPC64__)
712 #define _TP_IP_PARAM(x) NULL
713 #else /* #if defined(__PPC__) && !defined(__PPC64__) */
714 #define _TP_IP_PARAM(x) __builtin_return_address(0)
715 #endif /* #else #if defined(__PPC__) && !defined(__PPC64__) */
717 #endif /* TP_IP_PARAM */
720 * Using twice size for filter stack data to hold size and pointer for
721 * each field (worse case). For integers, max size required is 64-bit.
722 * Same for double-precision floats. Those fit within
723 * 2*sizeof(unsigned long) for all supported architectures.
724 * Perform UNION (||) of filter runtime list.
726 #undef TRACEPOINT_EVENT_CLASS
727 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
728 static lttng_ust_notrace \
729 void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args)); \
731 void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args)) \
733 struct lttng_event *__event = (struct lttng_event *) __tp_data; \
734 struct lttng_channel *__chan = __event->chan; \
735 struct lttng_ust_lib_ring_buffer_ctx __ctx; \
736 struct lttng_stack_ctx __lttng_ctx; \
737 size_t __event_len, __event_align; \
738 size_t __dynamic_len_idx = 0; \
740 size_t __dynamic_len[_TP_ARRAY_SIZE(__event_fields___##_provider##___##_name) - 1]; \
741 char __filter_stack_data[2 * sizeof(unsigned long) * (_TP_ARRAY_SIZE(__event_fields___##_provider##___##_name) - 1)]; \
746 (void) __dynamic_len_idx; /* don't warn if unused */ \
747 if (!_TP_SESSION_CHECK(session, __chan->session)) \
749 if (caa_unlikely(!CMM_ACCESS_ONCE(__chan->session->active))) \
751 if (caa_unlikely(!CMM_ACCESS_ONCE(__chan->enabled))) \
753 if (caa_unlikely(!CMM_ACCESS_ONCE(__event->enabled))) \
755 if (caa_unlikely(!TP_RCU_LINK_TEST())) \
757 if (caa_unlikely(!cds_list_empty(&__event->bytecode_runtime_head))) { \
758 struct lttng_bytecode_runtime *bc_runtime; \
759 int __filter_record = __event->has_enablers_without_bytecode; \
761 __event_prepare_filter_stack__##_provider##___##_name(__stackvar.__filter_stack_data, \
762 _TP_ARGS_DATA_VAR(_args)); \
763 tp_list_for_each_entry_rcu(bc_runtime, &__event->bytecode_runtime_head, node) { \
764 if (caa_unlikely(bc_runtime->filter(bc_runtime, \
765 __stackvar.__filter_stack_data) & LTTNG_FILTER_RECORD_FLAG)) \
766 __filter_record = 1; \
768 if (caa_likely(!__filter_record)) \
771 __event_len = __event_get_size__##_provider##___##_name(__stackvar.__dynamic_len, \
772 _TP_ARGS_DATA_VAR(_args)); \
773 __event_align = __event_get_align__##_provider##___##_name(_TP_ARGS_VAR(_args)); \
774 memset(&__lttng_ctx, 0, sizeof(__lttng_ctx)); \
775 __lttng_ctx.event = __event; \
776 __lttng_ctx.chan_ctx = tp_rcu_dereference_bp(__chan->ctx); \
777 __lttng_ctx.event_ctx = tp_rcu_dereference_bp(__event->ctx); \
778 lib_ring_buffer_ctx_init(&__ctx, __chan->chan, __event, __event_len, \
779 __event_align, -1, __chan->handle, &__lttng_ctx); \
780 __ctx.ip = _TP_IP_PARAM(TP_IP_PARAM); \
781 __ret = __chan->ops->event_reserve(&__ctx, __event->id); \
785 __chan->ops->event_commit(&__ctx); \
788 #include TRACEPOINT_INCLUDE
790 #undef __get_dynamic_len
793 * Stage 5.1 of tracepoint event generation.
795 * Create probe signature
798 /* Reset all macros within TRACEPOINT_EVENT */
799 #include <lttng/ust-tracepoint-event-reset.h>
802 #define TP_ARGS(...) __VA_ARGS__
804 #define _TP_EXTRACT_STRING2(...) #__VA_ARGS__
806 #undef TRACEPOINT_EVENT_CLASS
807 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
808 static const char __tp_event_signature___##_provider##___##_name[] = \
809 _TP_EXTRACT_STRING2(_args);
811 #include TRACEPOINT_INCLUDE
813 #undef _TP_EXTRACT_STRING2
816 * Stage 6 of tracepoint event generation.
818 * Tracepoint loglevel mapping definition generation. We generate a
819 * symbol for each mapping for a provider/event to ensure at most a 1 to
820 * 1 mapping between events and loglevels. If the symbol is repeated,
821 * the compiler will complain.
824 /* Reset all macros within TRACEPOINT_EVENT */
825 #include <lttng/ust-tracepoint-event-reset.h>
827 #undef TRACEPOINT_LOGLEVEL
828 #define TRACEPOINT_LOGLEVEL(__provider, __name, __loglevel) \
829 static const int _loglevel_value___##__provider##___##__name = __loglevel; \
830 static const int *_loglevel___##__provider##___##__name = \
831 &_loglevel_value___##__provider##___##__name;
833 #include TRACEPOINT_INCLUDE
836 * Stage 6.1 of tracepoint event generation.
838 * Tracepoint UML URI info.
841 /* Reset all macros within TRACEPOINT_EVENT */
842 #include <lttng/ust-tracepoint-event-reset.h>
844 #undef TRACEPOINT_MODEL_EMF_URI
845 #define TRACEPOINT_MODEL_EMF_URI(__provider, __name, __uri) \
846 static const char *_model_emf_uri___##__provider##___##__name = __uri;
848 #include TRACEPOINT_INCLUDE
851 * Stage 7.1 of tracepoint event generation.
853 * Create events description structures. We use a weakref because
854 * loglevels are optional. If not declared, the event will point to the
855 * a loglevel that contains NULL.
858 /* Reset all macros within TRACEPOINT_EVENT */
859 #include <lttng/ust-tracepoint-event-reset.h>
861 #undef TRACEPOINT_EVENT_INSTANCE
862 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
864 __ref_loglevel___##_provider##___##_name \
865 __attribute__((weakref ("_loglevel___" #_provider "___" #_name))); \
866 static const char * \
867 __ref_model_emf_uri___##_provider##___##_name \
868 __attribute__((weakref ("_model_emf_uri___" #_provider "___" #_name)));\
869 static const struct lttng_event_desc __event_desc___##_provider##_##_name = { \
870 .name = #_provider ":" #_name, \
871 .probe_callback = (void (*)(void)) &__event_probe__##_provider##___##_template,\
873 .fields = __event_fields___##_provider##___##_template, \
874 .nr_fields = _TP_ARRAY_SIZE(__event_fields___##_provider##___##_template) - 1, \
875 .loglevel = &__ref_loglevel___##_provider##___##_name, \
876 .signature = __tp_event_signature___##_provider##___##_template, \
879 .model_emf_uri = &__ref_model_emf_uri___##_provider##___##_name, \
884 #include TRACEPOINT_INCLUDE
887 * Stage 7.2 of tracepoint event generation.
889 * Create array of events.
892 /* Reset all macros within TRACEPOINT_EVENT */
893 #include <lttng/ust-tracepoint-event-reset.h>
895 #undef TRACEPOINT_EVENT_INSTANCE
896 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
897 &__event_desc___##_provider##_##_name,
899 static const struct lttng_event_desc
*_TP_COMBINE_TOKENS(__event_desc___
, TRACEPOINT_PROVIDER
)[] = {
900 #include TRACEPOINT_INCLUDE
901 NULL
, /* Dummy, C99 forbids 0-len array. */
906 * Stage 8 of tracepoint event generation.
908 * Create a toplevel descriptor for the whole probe.
911 /* non-const because list head will be modified when registered. */
912 static struct lttng_probe_desc
_TP_COMBINE_TOKENS(__probe_desc___
, TRACEPOINT_PROVIDER
) = {
913 .provider
= __tp_stringify(TRACEPOINT_PROVIDER
),
914 .event_desc
= _TP_COMBINE_TOKENS(__event_desc___
, TRACEPOINT_PROVIDER
),
915 .nr_events
= _TP_ARRAY_SIZE(_TP_COMBINE_TOKENS(__event_desc___
, TRACEPOINT_PROVIDER
)) - 1,
916 .head
= { NULL
, NULL
},
917 .lazy_init_head
= { NULL
, NULL
},
919 .major
= LTTNG_UST_PROVIDER_MAJOR
,
920 .minor
= LTTNG_UST_PROVIDER_MINOR
,
923 static int _TP_COMBINE_TOKENS(__probe_register_refcount___
, TRACEPOINT_PROVIDER
);
926 * Stage 9 of tracepoint event generation.
928 * Register/unregister probes at module load/unload.
930 * Generate the constructor as an externally visible symbol for use when
931 * linking the probe statically.
933 * Register refcount is protected by libc dynamic loader mutex.
936 /* Reset all macros within TRACEPOINT_EVENT */
937 #include <lttng/ust-tracepoint-event-reset.h>
938 static void lttng_ust_notrace
__attribute__((constructor
))
939 _TP_COMBINE_TOKENS(__lttng_events_init__
, TRACEPOINT_PROVIDER
)(void);
941 _TP_COMBINE_TOKENS(__lttng_events_init__
, TRACEPOINT_PROVIDER
)(void)
945 if (_TP_COMBINE_TOKENS(__probe_register_refcount___
,
946 TRACEPOINT_PROVIDER
)++) {
950 * __tracepoint_provider_check_ ## TRACEPOINT_PROVIDER() is a
951 * static inline function that ensures every probe PROVIDER
952 * argument match the provider within which they appear. It
953 * calls empty static inline functions, and therefore has no
954 * runtime effect. However, if it detects an error, a linker
957 _TP_COMBINE_TOKENS(__tracepoint_provider_check_
, TRACEPOINT_PROVIDER
)();
958 ret
= lttng_probe_register(&_TP_COMBINE_TOKENS(__probe_desc___
, TRACEPOINT_PROVIDER
));
960 fprintf(stderr
, "LTTng-UST: Error (%d) while registering tracepoint probe. Duplicate registration of tracepoint probes having the same name is not allowed.\n", ret
);
965 static void lttng_ust_notrace
__attribute__((destructor
))
966 _TP_COMBINE_TOKENS(__lttng_events_exit__
, TRACEPOINT_PROVIDER
)(void);
968 _TP_COMBINE_TOKENS(__lttng_events_exit__
, TRACEPOINT_PROVIDER
)(void)
970 if (--_TP_COMBINE_TOKENS(__probe_register_refcount___
,
971 TRACEPOINT_PROVIDER
)) {
974 lttng_probe_unregister(&_TP_COMBINE_TOKENS(__probe_desc___
, TRACEPOINT_PROVIDER
));
977 int _TP_COMBINE_TOKENS(__tracepoint_provider_
, TRACEPOINT_PROVIDER
);