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