Cleanup: apply `include-what-you-use` guideline for `uint*_t`
[lttng-ust.git] / include / lttng / ust-tracepoint-event.h
1 /*
2 * Copyright (c) 2011-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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
20 * SOFTWARE.
21 */
22
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <urcu/compiler.h>
27 #include <urcu/rculist.h>
28 #include <lttng/ust-events.h>
29 #include <lttng/ringbuffer-config.h>
30 #include <lttng/ust-compiler.h>
31 #include <lttng/tracepoint.h>
32 #include <byteswap.h>
33 #include <string.h>
34
35 #define __LTTNG_UST_NULL_STRING "(null)"
36
37 #undef tp_list_for_each_entry_rcu
38 #define tp_list_for_each_entry_rcu(pos, head, member) \
39 for (pos = cds_list_entry(tp_rcu_dereference_bp((head)->next), __typeof__(*pos), member); \
40 &pos->member != (head); \
41 pos = cds_list_entry(tp_rcu_dereference_bp(pos->member.next), __typeof__(*pos), member))
42
43 /*
44 * TRACEPOINT_EVENT_CLASS declares a class of tracepoints receiving the
45 * same arguments and having the same field layout.
46 *
47 * TRACEPOINT_EVENT_INSTANCE declares an instance of a tracepoint, with
48 * its own provider and name. It refers to a class (template).
49 *
50 * TRACEPOINT_EVENT declared both a class and an instance and does a
51 * direct mapping from the instance to the class.
52 */
53
54 #undef TRACEPOINT_EVENT
55 #define TRACEPOINT_EVENT(_provider, _name, _args, _fields) \
56 TRACEPOINT_EVENT_CLASS(_provider, _name, \
57 _TP_PARAMS(_args), \
58 _TP_PARAMS(_fields)) \
59 TRACEPOINT_EVENT_INSTANCE(_provider, _name, _name, \
60 _TP_PARAMS(_args))
61
62 /* Helpers */
63 #define _TP_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
64
65 #define _tp_max_t(type, x, y) \
66 ({ \
67 type __max1 = (x); \
68 type __max2 = (y); \
69 __max1 > __max2 ? __max1: __max2; \
70 })
71
72 /*
73 * Stage 0 of tracepoint event generation.
74 *
75 * Check that each TRACEPOINT_EVENT provider argument match the
76 * TRACEPOINT_PROVIDER by creating dummy callbacks.
77 */
78
79 /* Reset all macros within TRACEPOINT_EVENT */
80 #include <lttng/ust-tracepoint-event-reset.h>
81
82 static inline lttng_ust_notrace
83 void _TP_COMBINE_TOKENS(__tracepoint_provider_mismatch_, TRACEPOINT_PROVIDER)(void);
84 static inline
85 void _TP_COMBINE_TOKENS(__tracepoint_provider_mismatch_, TRACEPOINT_PROVIDER)(void)
86 {
87 }
88
89 #undef TRACEPOINT_EVENT_CLASS
90 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
91 __tracepoint_provider_mismatch_##_provider();
92
93 #undef TRACEPOINT_EVENT_INSTANCE
94 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
95 __tracepoint_provider_mismatch_##_provider();
96
97 static inline lttng_ust_notrace
98 void _TP_COMBINE_TOKENS(__tracepoint_provider_check_, TRACEPOINT_PROVIDER)(void);
99 static inline
100 void _TP_COMBINE_TOKENS(__tracepoint_provider_check_, TRACEPOINT_PROVIDER)(void)
101 {
102 #include TRACEPOINT_INCLUDE
103 }
104
105 /*
106 * Stage 0.1 of tracepoint event generation.
107 *
108 * Check that each TRACEPOINT_EVENT provider:name does not exceed the
109 * tracepoint name length limit.
110 */
111
112 /* Reset all macros within TRACEPOINT_EVENT */
113 #include <lttng/ust-tracepoint-event-reset.h>
114
115 #undef TRACEPOINT_EVENT_INSTANCE
116 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
117 static const char \
118 __tp_name_len_check##_provider##___##_name[LTTNG_UST_SYM_NAME_LEN] \
119 __attribute__((unused)) = \
120 #_provider ":" #_name;
121
122 #include TRACEPOINT_INCLUDE
123
124 /*
125 * Stage 0.2 of tracepoint event generation.
126 *
127 * Create dummy trace prototypes for each event class, and for each used
128 * template. This will allow checking whether the prototypes from the
129 * class and the instance using the class actually match.
130 */
131
132 /* Reset all macros within TRACEPOINT_EVENT */
133 #include <lttng/ust-tracepoint-event-reset.h>
134
135 #undef TP_ARGS
136 #define TP_ARGS(...) __VA_ARGS__
137
138 #undef TRACEPOINT_EVENT_INSTANCE
139 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
140 void __event_template_proto___##_provider##___##_template(_TP_ARGS_DATA_PROTO(_args));
141
142 #undef TRACEPOINT_EVENT_CLASS
143 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
144 void __event_template_proto___##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args));
145
146 #include TRACEPOINT_INCLUDE
147
148 /*
149 * Stage 0.9 of tracepoint event generation
150 *
151 * Unfolding the enums
152 */
153 #include <lttng/ust-tracepoint-event-reset.h>
154
155 /* Enumeration entry (single value) */
156 #undef ctf_enum_value
157 #define ctf_enum_value(_string, _value) \
158 { \
159 .start = { \
160 .value = lttng_is_signed_type(__typeof__(_value)) ? \
161 (long long) (_value) : (_value), \
162 .signedness = lttng_is_signed_type(__typeof__(_value)), \
163 }, \
164 .end = { \
165 .value = lttng_is_signed_type(__typeof__(_value)) ? \
166 (long long) (_value) : (_value), \
167 .signedness = lttng_is_signed_type(__typeof__(_value)), \
168 }, \
169 .string = (_string), \
170 },
171
172 /* Enumeration entry (range) */
173 #undef ctf_enum_range
174 #define ctf_enum_range(_string, _range_start, _range_end) \
175 { \
176 .start = { \
177 .value = lttng_is_signed_type(__typeof__(_range_start)) ? \
178 (long long) (_range_start) : (_range_start), \
179 .signedness = lttng_is_signed_type(__typeof__(_range_start)), \
180 }, \
181 .end = { \
182 .value = lttng_is_signed_type(__typeof__(_range_end)) ? \
183 (long long) (_range_end) : (_range_end), \
184 .signedness = lttng_is_signed_type(__typeof__(_range_end)), \
185 }, \
186 .string = (_string), \
187 },
188
189 /* Enumeration entry (automatic value; follows the rules of CTF) */
190 #undef ctf_enum_auto
191 #define ctf_enum_auto(_string) \
192 { \
193 .start = { \
194 .value = -1ULL, \
195 .signedness = 0, \
196 }, \
197 .end = { \
198 .value = -1ULL, \
199 .signedness = 0, \
200 }, \
201 .string = (_string), \
202 .u = { \
203 .extra = { \
204 .options = LTTNG_ENUM_ENTRY_OPTION_IS_AUTO, \
205 }, \
206 }, \
207 },
208
209 #undef TP_ENUM_VALUES
210 #define TP_ENUM_VALUES(...) \
211 __VA_ARGS__
212
213 #undef TRACEPOINT_ENUM
214 #define TRACEPOINT_ENUM(_provider, _name, _values) \
215 const struct lttng_enum_entry __enum_values__##_provider##_##_name[] = { \
216 _values \
217 ctf_enum_value("", 0) /* Dummy, 0-len array forbidden by C99. */ \
218 };
219
220 #include TRACEPOINT_INCLUDE
221
222 /*
223 * Stage 1 of tracepoint event generation.
224 *
225 * Create event field type metadata section.
226 * Each event produce an array of fields.
227 */
228
229 /* Reset all macros within TRACEPOINT_EVENT */
230 #include <lttng/ust-tracepoint-event-reset.h>
231 #include <lttng/ust-tracepoint-event-write.h>
232 #include <lttng/ust-tracepoint-event-nowrite.h>
233
234 #undef _ctf_integer_ext
235 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
236 { \
237 .name = #_item, \
238 .type = __type_integer(_type, _byte_order, _base, none),\
239 .nowrite = _nowrite, \
240 },
241
242 #undef _ctf_float
243 #define _ctf_float(_type, _item, _src, _nowrite) \
244 { \
245 .name = #_item, \
246 .type = __type_float(_type), \
247 .nowrite = _nowrite, \
248 },
249
250 #undef _ctf_array_encoded
251 #define _ctf_array_encoded(_type, _item, _src, _byte_order, \
252 _length, _encoding, _nowrite, \
253 _elem_type_base) \
254 { \
255 .name = #_item, \
256 .type = \
257 { \
258 .atype = atype_array, \
259 .u = \
260 { \
261 .array = \
262 { \
263 .elem_type = __type_integer(_type, _byte_order, _elem_type_base, _encoding), \
264 .length = _length, \
265 } \
266 } \
267 }, \
268 .nowrite = _nowrite, \
269 },
270
271 #undef _ctf_sequence_encoded
272 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, \
273 _length_type, _src_length, _encoding, _nowrite, \
274 _elem_type_base) \
275 { \
276 .name = #_item, \
277 .type = \
278 { \
279 .atype = atype_sequence, \
280 .u = \
281 { \
282 .sequence = \
283 { \
284 .length_type = __type_integer(_length_type, BYTE_ORDER, 10, none), \
285 .elem_type = __type_integer(_type, _byte_order, _elem_type_base, _encoding), \
286 }, \
287 }, \
288 }, \
289 .nowrite = _nowrite, \
290 },
291
292 #undef _ctf_string
293 #define _ctf_string(_item, _src, _nowrite) \
294 { \
295 .name = #_item, \
296 .type = \
297 { \
298 .atype = atype_string, \
299 .u = \
300 { \
301 .basic = { .string = { .encoding = lttng_encode_UTF8 } } \
302 }, \
303 }, \
304 .nowrite = _nowrite, \
305 },
306
307 #undef _ctf_enum
308 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
309 { \
310 .name = #_item, \
311 .type = { \
312 .atype = atype_enum, \
313 .u = { \
314 .basic = { \
315 .enumeration = { \
316 .desc = &__enum_##_provider##_##_name, \
317 .container_type = { \
318 .size = sizeof(_type) * CHAR_BIT, \
319 .alignment = lttng_alignof(_type) * CHAR_BIT, \
320 .signedness = lttng_is_signed_type(_type), \
321 .reverse_byte_order = 0, \
322 .base = 10, \
323 .encoding = lttng_encode_none, \
324 }, \
325 }, \
326 }, \
327 }, \
328 }, \
329 .nowrite = _nowrite, \
330 },
331
332 #undef TP_FIELDS
333 #define TP_FIELDS(...) __VA_ARGS__ /* Only one used in this phase */
334
335 #undef TRACEPOINT_EVENT_CLASS
336 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
337 static const struct lttng_event_field __event_fields___##_provider##___##_name[] = { \
338 _fields \
339 ctf_integer(int, dummy, 0) /* Dummy, C99 forbids 0-len array. */ \
340 };
341
342 #undef TRACEPOINT_ENUM
343 #define TRACEPOINT_ENUM(_provider, _name, _values) \
344 static const struct lttng_enum_desc __enum_##_provider##_##_name = { \
345 .name = #_provider "_" #_name, \
346 .entries = __enum_values__##_provider##_##_name, \
347 .nr_entries = _TP_ARRAY_SIZE(__enum_values__##_provider##_##_name) - 1, \
348 };
349
350 #include TRACEPOINT_INCLUDE
351
352 /*
353 * Stage 2 of tracepoint event generation.
354 *
355 * Create probe callback prototypes.
356 */
357
358 /* Reset all macros within TRACEPOINT_EVENT */
359 #include <lttng/ust-tracepoint-event-reset.h>
360
361 #undef TP_ARGS
362 #define TP_ARGS(...) __VA_ARGS__
363
364 #undef TRACEPOINT_EVENT_CLASS
365 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
366 static void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args));
367
368 #include TRACEPOINT_INCLUDE
369
370 /*
371 * Stage 3.0 of tracepoint event generation.
372 *
373 * Create static inline function that calculates event size.
374 */
375
376 /* Reset all macros within TRACEPOINT_EVENT */
377 #include <lttng/ust-tracepoint-event-reset.h>
378 #include <lttng/ust-tracepoint-event-write.h>
379
380 #undef _ctf_integer_ext
381 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
382 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
383 __event_len += sizeof(_type);
384
385 #undef _ctf_float
386 #define _ctf_float(_type, _item, _src, _nowrite) \
387 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
388 __event_len += sizeof(_type);
389
390 #undef _ctf_array_encoded
391 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, _encoding, \
392 _nowrite, _elem_type_base) \
393 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
394 __event_len += sizeof(_type) * (_length);
395
396 #undef _ctf_sequence_encoded
397 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
398 _src_length, _encoding, _nowrite, _elem_type_base) \
399 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_length_type)); \
400 __event_len += sizeof(_length_type); \
401 __event_len += lib_ring_buffer_align(__event_len, lttng_alignof(_type)); \
402 __dynamic_len[__dynamic_len_idx] = (_src_length); \
403 __event_len += sizeof(_type) * __dynamic_len[__dynamic_len_idx]; \
404 __dynamic_len_idx++;
405
406 #undef _ctf_string
407 #define _ctf_string(_item, _src, _nowrite) \
408 __event_len += __dynamic_len[__dynamic_len_idx++] = \
409 strlen((_src) ? (_src) : __LTTNG_UST_NULL_STRING) + 1;
410
411 #undef _ctf_enum
412 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
413 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
414
415 #undef TP_ARGS
416 #define TP_ARGS(...) __VA_ARGS__
417
418 #undef TP_FIELDS
419 #define TP_FIELDS(...) __VA_ARGS__
420
421 #undef TRACEPOINT_EVENT_CLASS
422 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
423 static inline lttng_ust_notrace \
424 size_t __event_get_size__##_provider##___##_name(size_t *__dynamic_len, _TP_ARGS_DATA_PROTO(_args)); \
425 static inline \
426 size_t __event_get_size__##_provider##___##_name(size_t *__dynamic_len, _TP_ARGS_DATA_PROTO(_args)) \
427 { \
428 size_t __event_len = 0; \
429 unsigned int __dynamic_len_idx = 0; \
430 \
431 if (0) \
432 (void) __dynamic_len_idx; /* don't warn if unused */ \
433 _fields \
434 return __event_len; \
435 }
436
437 #include TRACEPOINT_INCLUDE
438
439 /*
440 * Stage 3.1 of tracepoint event generation.
441 *
442 * Create static inline function that layout the filter stack data.
443 * We make both write and nowrite data available to the filter.
444 */
445
446 /* Reset all macros within TRACEPOINT_EVENT */
447 #include <lttng/ust-tracepoint-event-reset.h>
448 #include <lttng/ust-tracepoint-event-write.h>
449 #include <lttng/ust-tracepoint-event-nowrite.h>
450
451 #undef _ctf_integer_ext
452 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
453 if (lttng_is_signed_type(_type)) { \
454 int64_t __ctf_tmp_int64; \
455 switch (sizeof(_type)) { \
456 case 1: \
457 { \
458 union { _type t; int8_t v; } __tmp = { (_type) (_src) }; \
459 __ctf_tmp_int64 = (int64_t) __tmp.v; \
460 break; \
461 } \
462 case 2: \
463 { \
464 union { _type t; int16_t v; } __tmp = { (_type) (_src) }; \
465 if (_byte_order != BYTE_ORDER) \
466 __tmp.v = bswap_16(__tmp.v); \
467 __ctf_tmp_int64 = (int64_t) __tmp.v; \
468 break; \
469 } \
470 case 4: \
471 { \
472 union { _type t; int32_t v; } __tmp = { (_type) (_src) }; \
473 if (_byte_order != BYTE_ORDER) \
474 __tmp.v = bswap_32(__tmp.v); \
475 __ctf_tmp_int64 = (int64_t) __tmp.v; \
476 break; \
477 } \
478 case 8: \
479 { \
480 union { _type t; int64_t v; } __tmp = { (_type) (_src) }; \
481 if (_byte_order != BYTE_ORDER) \
482 __tmp.v = bswap_64(__tmp.v); \
483 __ctf_tmp_int64 = (int64_t) __tmp.v; \
484 break; \
485 } \
486 default: \
487 abort(); \
488 }; \
489 memcpy(__stack_data, &__ctf_tmp_int64, sizeof(int64_t)); \
490 } else { \
491 uint64_t __ctf_tmp_uint64; \
492 switch (sizeof(_type)) { \
493 case 1: \
494 { \
495 union { _type t; uint8_t v; } __tmp = { (_type) (_src) }; \
496 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
497 break; \
498 } \
499 case 2: \
500 { \
501 union { _type t; uint16_t v; } __tmp = { (_type) (_src) }; \
502 if (_byte_order != BYTE_ORDER) \
503 __tmp.v = bswap_16(__tmp.v); \
504 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
505 break; \
506 } \
507 case 4: \
508 { \
509 union { _type t; uint32_t v; } __tmp = { (_type) (_src) }; \
510 if (_byte_order != BYTE_ORDER) \
511 __tmp.v = bswap_32(__tmp.v); \
512 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
513 break; \
514 } \
515 case 8: \
516 { \
517 union { _type t; uint64_t v; } __tmp = { (_type) (_src) }; \
518 if (_byte_order != BYTE_ORDER) \
519 __tmp.v = bswap_64(__tmp.v); \
520 __ctf_tmp_uint64 = (uint64_t) __tmp.v; \
521 break; \
522 } \
523 default: \
524 abort(); \
525 }; \
526 memcpy(__stack_data, &__ctf_tmp_uint64, sizeof(uint64_t)); \
527 } \
528 __stack_data += sizeof(int64_t);
529
530 #undef _ctf_float
531 #define _ctf_float(_type, _item, _src, _nowrite) \
532 { \
533 double __ctf_tmp_double = (double) (_type) (_src); \
534 memcpy(__stack_data, &__ctf_tmp_double, sizeof(double)); \
535 __stack_data += sizeof(double); \
536 }
537
538 #undef _ctf_array_encoded
539 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
540 _encoding, _nowrite, _elem_type_base) \
541 { \
542 unsigned long __ctf_tmp_ulong = (unsigned long) (_length); \
543 const void *__ctf_tmp_ptr = (_src); \
544 memcpy(__stack_data, &__ctf_tmp_ulong, sizeof(unsigned long)); \
545 __stack_data += sizeof(unsigned long); \
546 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
547 __stack_data += sizeof(void *); \
548 }
549
550 #undef _ctf_sequence_encoded
551 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
552 _src_length, _encoding, _nowrite, _elem_type_base) \
553 { \
554 unsigned long __ctf_tmp_ulong = (unsigned long) (_src_length); \
555 const void *__ctf_tmp_ptr = (_src); \
556 memcpy(__stack_data, &__ctf_tmp_ulong, sizeof(unsigned long)); \
557 __stack_data += sizeof(unsigned long); \
558 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
559 __stack_data += sizeof(void *); \
560 }
561
562 #undef _ctf_string
563 #define _ctf_string(_item, _src, _nowrite) \
564 { \
565 const void *__ctf_tmp_ptr = \
566 ((_src) ? (_src) : __LTTNG_UST_NULL_STRING); \
567 memcpy(__stack_data, &__ctf_tmp_ptr, sizeof(void *)); \
568 __stack_data += sizeof(void *); \
569 }
570
571 #undef _ctf_enum
572 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
573 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
574
575 #undef TP_ARGS
576 #define TP_ARGS(...) __VA_ARGS__
577
578 #undef TP_FIELDS
579 #define TP_FIELDS(...) __VA_ARGS__
580
581 #undef TRACEPOINT_EVENT_CLASS
582 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
583 static inline \
584 void __event_prepare_filter_stack__##_provider##___##_name(char *__stack_data,\
585 _TP_ARGS_DATA_PROTO(_args)) \
586 { \
587 _fields \
588 }
589
590 #include TRACEPOINT_INCLUDE
591
592 /*
593 * Stage 4 of tracepoint event generation.
594 *
595 * Create static inline function that calculates event payload alignment.
596 */
597
598 /* Reset all macros within TRACEPOINT_EVENT */
599 #include <lttng/ust-tracepoint-event-reset.h>
600 #include <lttng/ust-tracepoint-event-write.h>
601
602 #undef _ctf_integer_ext
603 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
604 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
605
606 #undef _ctf_float
607 #define _ctf_float(_type, _item, _src, _nowrite) \
608 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
609
610 #undef _ctf_array_encoded
611 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
612 _encoding, _nowrite, _elem_type_base) \
613 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
614
615 #undef _ctf_sequence_encoded
616 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
617 _src_length, _encoding, _nowrite, _elem_type_base) \
618 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_length_type)); \
619 __event_align = _tp_max_t(size_t, __event_align, lttng_alignof(_type));
620
621 #undef _ctf_string
622 #define _ctf_string(_item, _src, _nowrite)
623
624 #undef _ctf_enum
625 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
626 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
627
628 #undef TP_ARGS
629 #define TP_ARGS(...) __VA_ARGS__
630
631 #undef TP_FIELDS
632 #define TP_FIELDS(...) __VA_ARGS__
633
634 #undef TRACEPOINT_EVENT_CLASS
635 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
636 static inline lttng_ust_notrace \
637 size_t __event_get_align__##_provider##___##_name(_TP_ARGS_PROTO(_args)); \
638 static inline \
639 size_t __event_get_align__##_provider##___##_name(_TP_ARGS_PROTO(_args)) \
640 { \
641 size_t __event_align = 1; \
642 _fields \
643 return __event_align; \
644 }
645
646 #include TRACEPOINT_INCLUDE
647
648
649 /*
650 * Stage 5 of tracepoint event generation.
651 *
652 * Create the probe function. This function calls event size calculation
653 * and writes event data into the buffer.
654 */
655
656 /* Reset all macros within TRACEPOINT_EVENT */
657 #include <lttng/ust-tracepoint-event-reset.h>
658 #include <lttng/ust-tracepoint-event-write.h>
659
660 #undef _ctf_integer_ext
661 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, _nowrite) \
662 { \
663 _type __tmp = (_src); \
664 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(__tmp));\
665 __chan->ops->event_write(&__ctx, &__tmp, sizeof(__tmp));\
666 }
667
668 #undef _ctf_float
669 #define _ctf_float(_type, _item, _src, _nowrite) \
670 { \
671 _type __tmp = (_src); \
672 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(__tmp));\
673 __chan->ops->event_write(&__ctx, &__tmp, sizeof(__tmp));\
674 }
675
676 #undef _ctf_array_encoded
677 #define _ctf_array_encoded(_type, _item, _src, _byte_order, _length, \
678 _encoding, _nowrite, _elem_type_base) \
679 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(_type)); \
680 __chan->ops->event_write(&__ctx, _src, sizeof(_type) * (_length));
681
682 #undef _ctf_sequence_encoded
683 #define _ctf_sequence_encoded(_type, _item, _src, _byte_order, _length_type, \
684 _src_length, _encoding, _nowrite, _elem_type_base) \
685 { \
686 _length_type __tmpl = __stackvar.__dynamic_len[__dynamic_len_idx]; \
687 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(_length_type));\
688 __chan->ops->event_write(&__ctx, &__tmpl, sizeof(_length_type));\
689 } \
690 lib_ring_buffer_align_ctx(&__ctx, lttng_alignof(_type)); \
691 __chan->ops->event_write(&__ctx, _src, \
692 sizeof(_type) * __get_dynamic_len(dest));
693
694 /*
695 * __chan->ops->u.has_strcpy is a flag letting us know if the LTTng-UST
696 * tracepoint provider ABI implements event_strcpy. This dynamic check
697 * can be removed when the tracepoint provider ABI moves to 2.
698 */
699 #if (LTTNG_UST_PROVIDER_MAJOR > 1)
700 #error "Tracepoint probe provider major version has changed. Please remove dynamic check for has_strcpy."
701 #endif
702
703 #undef _ctf_string
704 #define _ctf_string(_item, _src, _nowrite) \
705 { \
706 const char *__ctf_tmp_string = \
707 ((_src) ? (_src) : __LTTNG_UST_NULL_STRING); \
708 lib_ring_buffer_align_ctx(&__ctx, \
709 lttng_alignof(*__ctf_tmp_string)); \
710 if (__chan->ops->u.has_strcpy) \
711 __chan->ops->event_strcpy(&__ctx, __ctf_tmp_string, \
712 __get_dynamic_len(dest)); \
713 else \
714 __chan->ops->event_write(&__ctx, __ctf_tmp_string, \
715 __get_dynamic_len(dest)); \
716 }
717
718
719 #undef _ctf_enum
720 #define _ctf_enum(_provider, _name, _type, _item, _src, _nowrite) \
721 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, _nowrite)
722
723 /* Beware: this get len actually consumes the len value */
724 #undef __get_dynamic_len
725 #define __get_dynamic_len(field) __stackvar.__dynamic_len[__dynamic_len_idx++]
726
727 #undef TP_ARGS
728 #define TP_ARGS(...) __VA_ARGS__
729
730 #undef TP_FIELDS
731 #define TP_FIELDS(...) __VA_ARGS__
732
733 /*
734 * For state dump, check that "session" argument (mandatory) matches the
735 * session this event belongs to. Ensures that we write state dump data only
736 * into the started session, not into all sessions.
737 */
738 #undef _TP_SESSION_CHECK
739 #ifdef TP_SESSION_CHECK
740 #define _TP_SESSION_CHECK(session, csession) (session == csession)
741 #else /* TP_SESSION_CHECK */
742 #define _TP_SESSION_CHECK(session, csession) 1
743 #endif /* TP_SESSION_CHECK */
744
745 /*
746 * Use of __builtin_return_address(0) sometimes seems to cause stack
747 * corruption on 32-bit PowerPC. Disable this feature on that
748 * architecture for now by always using the NULL value for the ip
749 * context.
750 */
751 #undef _TP_IP_PARAM
752 #ifdef TP_IP_PARAM
753 #define _TP_IP_PARAM(x) (x)
754 #else /* TP_IP_PARAM */
755
756 #if defined(__PPC__) && !defined(__PPC64__)
757 #define _TP_IP_PARAM(x) NULL
758 #else /* #if defined(__PPC__) && !defined(__PPC64__) */
759 #define _TP_IP_PARAM(x) __builtin_return_address(0)
760 #endif /* #else #if defined(__PPC__) && !defined(__PPC64__) */
761
762 #endif /* TP_IP_PARAM */
763
764 /*
765 * Using twice size for filter stack data to hold size and pointer for
766 * each field (worse case). For integers, max size required is 64-bit.
767 * Same for double-precision floats. Those fit within
768 * 2*sizeof(unsigned long) for all supported architectures.
769 * Perform UNION (||) of filter runtime list.
770 */
771 #undef TRACEPOINT_EVENT_CLASS
772 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
773 static lttng_ust_notrace \
774 void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args)); \
775 static \
776 void __event_probe__##_provider##___##_name(_TP_ARGS_DATA_PROTO(_args)) \
777 { \
778 struct lttng_event *__event = (struct lttng_event *) __tp_data; \
779 struct lttng_channel *__chan = __event->chan; \
780 struct lttng_ust_lib_ring_buffer_ctx __ctx; \
781 struct lttng_stack_ctx __lttng_ctx; \
782 size_t __event_len, __event_align; \
783 size_t __dynamic_len_idx = 0; \
784 union { \
785 size_t __dynamic_len[_TP_ARRAY_SIZE(__event_fields___##_provider##___##_name) - 1]; \
786 char __filter_stack_data[2 * sizeof(unsigned long) * (_TP_ARRAY_SIZE(__event_fields___##_provider##___##_name) - 1)]; \
787 } __stackvar; \
788 int __ret; \
789 \
790 if (0) \
791 (void) __dynamic_len_idx; /* don't warn if unused */ \
792 if (!_TP_SESSION_CHECK(session, __chan->session)) \
793 return; \
794 if (caa_unlikely(!CMM_ACCESS_ONCE(__chan->session->active))) \
795 return; \
796 if (caa_unlikely(!CMM_ACCESS_ONCE(__chan->enabled))) \
797 return; \
798 if (caa_unlikely(!CMM_ACCESS_ONCE(__event->enabled))) \
799 return; \
800 if (caa_unlikely(!TP_RCU_LINK_TEST())) \
801 return; \
802 if (caa_unlikely(!cds_list_empty(&__event->bytecode_runtime_head))) { \
803 struct lttng_bytecode_runtime *bc_runtime; \
804 int __filter_record = __event->has_enablers_without_bytecode; \
805 \
806 __event_prepare_filter_stack__##_provider##___##_name(__stackvar.__filter_stack_data, \
807 _TP_ARGS_DATA_VAR(_args)); \
808 tp_list_for_each_entry_rcu(bc_runtime, &__event->bytecode_runtime_head, node) { \
809 if (caa_unlikely(bc_runtime->filter(bc_runtime, \
810 __stackvar.__filter_stack_data) & LTTNG_FILTER_RECORD_FLAG)) \
811 __filter_record = 1; \
812 } \
813 if (caa_likely(!__filter_record)) \
814 return; \
815 } \
816 __event_len = __event_get_size__##_provider##___##_name(__stackvar.__dynamic_len, \
817 _TP_ARGS_DATA_VAR(_args)); \
818 __event_align = __event_get_align__##_provider##___##_name(_TP_ARGS_VAR(_args)); \
819 memset(&__lttng_ctx, 0, sizeof(__lttng_ctx)); \
820 __lttng_ctx.event = __event; \
821 __lttng_ctx.chan_ctx = tp_rcu_dereference_bp(__chan->ctx); \
822 __lttng_ctx.event_ctx = tp_rcu_dereference_bp(__event->ctx); \
823 lib_ring_buffer_ctx_init(&__ctx, __chan->chan, __event, __event_len, \
824 __event_align, -1, __chan->handle, &__lttng_ctx); \
825 __ctx.ip = _TP_IP_PARAM(TP_IP_PARAM); \
826 __ret = __chan->ops->event_reserve(&__ctx, __event->id); \
827 if (__ret < 0) \
828 return; \
829 _fields \
830 __chan->ops->event_commit(&__ctx); \
831 }
832
833 #include TRACEPOINT_INCLUDE
834
835 #undef __get_dynamic_len
836
837 /*
838 * Stage 5.1 of tracepoint event generation.
839 *
840 * Create probe signature
841 */
842
843 /* Reset all macros within TRACEPOINT_EVENT */
844 #include <lttng/ust-tracepoint-event-reset.h>
845
846 #undef TP_ARGS
847 #define TP_ARGS(...) __VA_ARGS__
848
849 #define _TP_EXTRACT_STRING2(...) #__VA_ARGS__
850
851 #undef TRACEPOINT_EVENT_CLASS
852 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) \
853 static const char __tp_event_signature___##_provider##___##_name[] = \
854 _TP_EXTRACT_STRING2(_args);
855
856 #include TRACEPOINT_INCLUDE
857
858 #undef _TP_EXTRACT_STRING2
859
860 /*
861 * Stage 6 of tracepoint event generation.
862 *
863 * Tracepoint loglevel mapping definition generation. We generate a
864 * symbol for each mapping for a provider/event to ensure at most a 1 to
865 * 1 mapping between events and loglevels. If the symbol is repeated,
866 * the compiler will complain.
867 */
868
869 /* Reset all macros within TRACEPOINT_EVENT */
870 #include <lttng/ust-tracepoint-event-reset.h>
871
872 /*
873 * Declare _loglevel___##__provider##___##__name as non-static, with
874 * hidden visibility for c++ handling of weakref. We do a weakref to the
875 * symbol in a later stage, which requires that the symbol is not
876 * mangled.
877 */
878 #ifdef __cplusplus
879 #define LTTNG_TP_EXTERN_C extern "C"
880 #else
881 #define LTTNG_TP_EXTERN_C
882 #endif
883
884 #undef TRACEPOINT_LOGLEVEL
885 #define TRACEPOINT_LOGLEVEL(__provider, __name, __loglevel) \
886 static const int _loglevel_value___##__provider##___##__name = __loglevel; \
887 LTTNG_TP_EXTERN_C const int *_loglevel___##__provider##___##__name \
888 __attribute__((visibility("hidden"))) = \
889 &_loglevel_value___##__provider##___##__name;
890
891 #include TRACEPOINT_INCLUDE
892
893 #undef LTTNG_TP_EXTERN_C
894
895 /*
896 * Stage 6.1 of tracepoint event generation.
897 *
898 * Tracepoint UML URI info.
899 */
900
901 /* Reset all macros within TRACEPOINT_EVENT */
902 #include <lttng/ust-tracepoint-event-reset.h>
903
904 /*
905 * Declare _model_emf_uri___##__provider##___##__name as non-static,
906 * with hidden visibility for c++ handling of weakref. We do a weakref
907 * to the symbol in a later stage, which requires that the symbol is not
908 * mangled.
909 */
910 #ifdef __cplusplus
911 #define LTTNG_TP_EXTERN_C extern "C"
912 #else
913 #define LTTNG_TP_EXTERN_C
914 #endif
915
916 #undef TRACEPOINT_MODEL_EMF_URI
917 #define TRACEPOINT_MODEL_EMF_URI(__provider, __name, __uri) \
918 LTTNG_TP_EXTERN_C const char *_model_emf_uri___##__provider##___##__name \
919 __attribute__((visibility("hidden"))) = __uri; \
920
921 #include TRACEPOINT_INCLUDE
922
923 #undef LTTNG_TP_EXTERN_C
924
925 /*
926 * Stage 7.1 of tracepoint event generation.
927 *
928 * Create events description structures. We use a weakref because
929 * loglevels are optional. If not declared, the event will point to the
930 * a loglevel that contains NULL.
931 */
932
933 /* Reset all macros within TRACEPOINT_EVENT */
934 #include <lttng/ust-tracepoint-event-reset.h>
935
936 #undef TRACEPOINT_EVENT_INSTANCE
937 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
938 static const int * \
939 __ref_loglevel___##_provider##___##_name \
940 __attribute__((weakref ("_loglevel___" #_provider "___" #_name))); \
941 static const char * \
942 __ref_model_emf_uri___##_provider##___##_name \
943 __attribute__((weakref ("_model_emf_uri___" #_provider "___" #_name)));\
944 static const struct lttng_event_desc __event_desc___##_provider##_##_name = { \
945 .name = #_provider ":" #_name, \
946 .probe_callback = (void (*)(void)) &__event_probe__##_provider##___##_template,\
947 .ctx = NULL, \
948 .fields = __event_fields___##_provider##___##_template, \
949 .nr_fields = _TP_ARRAY_SIZE(__event_fields___##_provider##___##_template) - 1, \
950 .loglevel = &__ref_loglevel___##_provider##___##_name, \
951 .signature = __tp_event_signature___##_provider##___##_template, \
952 .u = { \
953 .ext = { \
954 .model_emf_uri = &__ref_model_emf_uri___##_provider##___##_name, \
955 }, \
956 }, \
957 };
958
959 #include TRACEPOINT_INCLUDE
960
961 /*
962 * Stage 7.2 of tracepoint event generation.
963 *
964 * Create array of events.
965 */
966
967 /* Reset all macros within TRACEPOINT_EVENT */
968 #include <lttng/ust-tracepoint-event-reset.h>
969
970 #undef TRACEPOINT_EVENT_INSTANCE
971 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
972 &__event_desc___##_provider##_##_name,
973
974 static const struct lttng_event_desc *_TP_COMBINE_TOKENS(__event_desc___, TRACEPOINT_PROVIDER)[] = {
975 #include TRACEPOINT_INCLUDE
976 NULL, /* Dummy, C99 forbids 0-len array. */
977 };
978
979
980 /*
981 * Stage 8 of tracepoint event generation.
982 *
983 * Create a toplevel descriptor for the whole probe.
984 */
985
986 /* non-const because list head will be modified when registered. */
987 static struct lttng_probe_desc _TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER) = {
988 .provider = __tp_stringify(TRACEPOINT_PROVIDER),
989 .event_desc = _TP_COMBINE_TOKENS(__event_desc___, TRACEPOINT_PROVIDER),
990 .nr_events = _TP_ARRAY_SIZE(_TP_COMBINE_TOKENS(__event_desc___, TRACEPOINT_PROVIDER)) - 1,
991 .head = { NULL, NULL },
992 .lazy_init_head = { NULL, NULL },
993 .lazy = 0,
994 .major = LTTNG_UST_PROVIDER_MAJOR,
995 .minor = LTTNG_UST_PROVIDER_MINOR,
996 };
997
998 static int _TP_COMBINE_TOKENS(__probe_register_refcount___, TRACEPOINT_PROVIDER);
999
1000 /*
1001 * Stage 9 of tracepoint event generation.
1002 *
1003 * Register/unregister probes at module load/unload.
1004 *
1005 * Generate the constructor as an externally visible symbol for use when
1006 * linking the probe statically.
1007 *
1008 * Register refcount is protected by libc dynamic loader mutex.
1009 */
1010
1011 /* Reset all macros within TRACEPOINT_EVENT */
1012 #include <lttng/ust-tracepoint-event-reset.h>
1013 static void lttng_ust_notrace __attribute__((constructor))
1014 _TP_COMBINE_TOKENS(__lttng_events_init__, TRACEPOINT_PROVIDER)(void);
1015 static void
1016 _TP_COMBINE_TOKENS(__lttng_events_init__, TRACEPOINT_PROVIDER)(void)
1017 {
1018 int ret;
1019
1020 if (_TP_COMBINE_TOKENS(__probe_register_refcount___,
1021 TRACEPOINT_PROVIDER)++) {
1022 return;
1023 }
1024 /*
1025 * __tracepoint_provider_check_ ## TRACEPOINT_PROVIDER() is a
1026 * static inline function that ensures every probe PROVIDER
1027 * argument match the provider within which they appear. It
1028 * calls empty static inline functions, and therefore has no
1029 * runtime effect. However, if it detects an error, a linker
1030 * error will appear.
1031 */
1032 _TP_COMBINE_TOKENS(__tracepoint_provider_check_, TRACEPOINT_PROVIDER)();
1033 ret = lttng_probe_register(&_TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER));
1034 if (ret) {
1035 fprintf(stderr, "LTTng-UST: Error (%d) while registering tracepoint probe.\n", ret);
1036 abort();
1037 }
1038 }
1039
1040 static void lttng_ust_notrace __attribute__((destructor))
1041 _TP_COMBINE_TOKENS(__lttng_events_exit__, TRACEPOINT_PROVIDER)(void);
1042 static void
1043 _TP_COMBINE_TOKENS(__lttng_events_exit__, TRACEPOINT_PROVIDER)(void)
1044 {
1045 if (--_TP_COMBINE_TOKENS(__probe_register_refcount___,
1046 TRACEPOINT_PROVIDER)) {
1047 return;
1048 }
1049 lttng_probe_unregister(&_TP_COMBINE_TOKENS(__probe_desc___, TRACEPOINT_PROVIDER));
1050 }
1051
1052 int _TP_COMBINE_TOKENS(__tracepoint_provider_, TRACEPOINT_PROVIDER);
This page took 0.079116 seconds and 4 git commands to generate.