5e94bafeb567789e827a1abfc6e35abe01dd38c7
[lttng-ust.git] / include / lttng / ust-events.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * Holds LTTng per-session event registry.
7 */
8
9 #ifndef _LTTNG_UST_EVENTS_H
10 #define _LTTNG_UST_EVENTS_H
11
12 #include <stddef.h>
13 #include <stdint.h>
14 #include <lttng/ust-abi.h>
15 #include <lttng/ust-tracer.h>
16 #include <lttng/ust-endian.h>
17 #include <float.h>
18 #include <errno.h>
19 #include <urcu/ref.h>
20 #include <pthread.h>
21 #include <limits.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 #define LTTNG_UST_UUID_LEN 16
28
29 /*
30 * Tracepoint provider version. Compatibility based on the major number.
31 * Older tracepoint providers can always register to newer lttng-ust
32 * library, but the opposite is rejected: a newer tracepoint provider is
33 * rejected by an older lttng-ust library.
34 */
35 #define LTTNG_UST_PROVIDER_MAJOR 2
36 #define LTTNG_UST_PROVIDER_MINOR 0
37
38 struct lttng_ust_channel_buffer;
39 struct lttng_ust_session;
40 struct lttng_ust_ring_buffer_ctx;
41 struct lttng_ust_event_field;
42 struct lttng_ust_registered_probe;
43
44 /*
45 * Data structures used by tracepoint event declarations, and by the
46 * tracer.
47 */
48
49 /* Type description */
50
51 enum lttng_ust_type {
52 lttng_ust_type_integer,
53 lttng_ust_type_string,
54 lttng_ust_type_float,
55 lttng_ust_type_dynamic,
56 lttng_ust_type_enum,
57 lttng_ust_type_array,
58 lttng_ust_type_sequence,
59 lttng_ust_type_struct,
60 NR_LTTNG_UST_TYPE,
61 };
62
63 enum lttng_ust_string_encoding {
64 lttng_ust_string_encoding_none = 0,
65 lttng_ust_string_encoding_UTF8 = 1,
66 lttng_ust_string_encoding_ASCII = 2,
67 NR_LTTNG_UST_STRING_ENCODING,
68 };
69
70 struct lttng_ust_enum_value {
71 unsigned long long value;
72 unsigned int signedness:1;
73 };
74
75 enum lttng_ust_enum_entry_option {
76 LTTNG_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
77 };
78
79 /*
80 * Enumeration entry description
81 *
82 * IMPORTANT: this structure is part of the ABI between the probe and
83 * UST. Fields need to be only added at the end, never reordered, never
84 * removed.
85 *
86 * The field @struct_size should be used to determine the size of the
87 * structure. It should be queried before using additional fields added
88 * at the end of the structure.
89 */
90
91 struct lttng_ust_enum_entry {
92 uint32_t struct_size;
93
94 struct lttng_ust_enum_value start, end; /* start and end are inclusive */
95 const char *string;
96 unsigned int options;
97
98 /* End of base ABI. Fields below should be used after checking struct_size. */
99 };
100
101 /*
102 * struct lttng_ust_type_common is fixed-size. Its children inherits
103 * from it by embedding struct lttng_ust_type_common as its first field.
104 */
105 struct lttng_ust_type_common {
106 enum lttng_ust_type type;
107 };
108
109 struct lttng_ust_type_integer {
110 struct lttng_ust_type_common parent;
111 uint32_t struct_size;
112 unsigned int size; /* in bits */
113 unsigned short alignment; /* in bits */
114 unsigned int signedness:1;
115 unsigned int reverse_byte_order:1;
116 unsigned int base; /* 2, 8, 10, 16, for pretty print */
117 };
118
119 #define lttng_ust_type_integer_define(_type, _byte_order, _base) \
120 ((struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(struct lttng_ust_type_integer, { \
121 .parent = { \
122 .type = lttng_ust_type_integer, \
123 }, \
124 .struct_size = sizeof(struct lttng_ust_type_integer), \
125 .size = sizeof(_type) * CHAR_BIT, \
126 .alignment = lttng_ust_rb_alignof(_type) * CHAR_BIT, \
127 .signedness = lttng_ust_is_signed_type(_type), \
128 .reverse_byte_order = _byte_order != LTTNG_UST_BYTE_ORDER, \
129 .base = _base, \
130 }))
131
132 struct lttng_ust_type_float {
133 struct lttng_ust_type_common parent;
134 uint32_t struct_size;
135 unsigned int exp_dig; /* exponent digits, in bits */
136 unsigned int mant_dig; /* mantissa digits, in bits */
137 unsigned short alignment; /* in bits */
138 unsigned int reverse_byte_order:1;
139 };
140
141 /*
142 * Only float and double are supported. long double is not supported at
143 * the moment.
144 */
145 #define lttng_ust_float_mant_dig(_type) \
146 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
147 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
148 : 0))
149
150 #define lttng_ust_type_float_define(_type) \
151 ((struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(struct lttng_ust_type_float, { \
152 .parent = { \
153 .type = lttng_ust_type_float, \
154 }, \
155 .struct_size = sizeof(struct lttng_ust_type_float), \
156 .exp_dig = sizeof(_type) * CHAR_BIT \
157 - lttng_ust_float_mant_dig(_type), \
158 .mant_dig = lttng_ust_float_mant_dig(_type), \
159 .alignment = lttng_ust_rb_alignof(_type) * CHAR_BIT, \
160 .reverse_byte_order = LTTNG_UST_BYTE_ORDER != LTTNG_UST_FLOAT_WORD_ORDER, \
161 }))
162
163
164 struct lttng_ust_type_string {
165 struct lttng_ust_type_common parent;
166 uint32_t struct_size;
167 enum lttng_ust_string_encoding encoding;
168 };
169
170 struct lttng_ust_type_enum {
171 struct lttng_ust_type_common parent;
172 uint32_t struct_size;
173 const struct lttng_ust_enum_desc *desc; /* Enumeration mapping */
174 const struct lttng_ust_type_common *container_type;
175 };
176
177 /*
178 * The alignment field in structure, array, and sequence types is a
179 * minimum alignment requirement. The actual alignment of a type may be
180 * larger than this explicit alignment value if its nested types have a
181 * larger alignment.
182 */
183
184 struct lttng_ust_type_array {
185 struct lttng_ust_type_common parent;
186 uint32_t struct_size;
187 const struct lttng_ust_type_common *elem_type;
188 unsigned int length; /* Num. elems. */
189 unsigned int alignment; /* Minimum alignment for this type. */
190 enum lttng_ust_string_encoding encoding;
191 };
192
193 struct lttng_ust_type_sequence {
194 struct lttng_ust_type_common parent;
195 uint32_t struct_size;
196 const char *length_name; /* Length field name. */
197 const struct lttng_ust_type_common *elem_type;
198 unsigned int alignment; /* Minimum alignment before elements. */
199 enum lttng_ust_string_encoding encoding;
200 };
201
202 struct lttng_ust_type_struct {
203 struct lttng_ust_type_common parent;
204 uint32_t struct_size;
205 unsigned int nr_fields;
206 const struct lttng_ust_event_field * const *fields; /* Array of pointers to fields. */
207 unsigned int alignment; /* Minimum alignment for this type. */
208 };
209
210 /*
211 * Enumeration description
212 *
213 * IMPORTANT: this structure is part of the ABI between the probe and
214 * UST. Fields need to be only added at the end, never reordered, never
215 * removed.
216 *
217 * The field @struct_size should be used to determine the size of the
218 * structure. It should be queried before using additional fields added
219 * at the end of the structure.
220 */
221
222 struct lttng_ust_enum_desc {
223 uint32_t struct_size;
224
225 const char *name;
226 const struct lttng_ust_enum_entry * const *entries;
227 unsigned int nr_entries;
228
229 /* End of base ABI. Fields below should be used after checking struct_size. */
230 };
231
232 /*
233 * Event field description
234 *
235 * IMPORTANT: this structure is part of the ABI between the probe and
236 * UST. Fields need to be only added at the end, never reordered, never
237 * removed.
238 *
239 * The field @struct_size should be used to determine the size of the
240 * structure. It should be queried before using additional fields added
241 * at the end of the structure.
242 */
243
244 struct lttng_ust_event_field {
245 uint32_t struct_size;
246
247 const char *name;
248 const struct lttng_ust_type_common *type;
249 unsigned int nowrite:1, /* do not write into trace */
250 nofilter:1; /* do not consider for filter */
251
252 /* End of base ABI. Fields below should be used after checking struct_size. */
253 };
254
255
256 /*
257 * IMPORTANT: this structure is part of the ABI between the probe and
258 * UST. Fields need to be only added at the end, never reordered, never
259 * removed.
260 *
261 * The field @struct_size should be used to determine the size of the
262 * structure. It should be queried before using additional fields added
263 * at the end of the structure.
264 */
265 struct lttng_ust_event_desc {
266 uint32_t struct_size; /* Size of this structure. */
267
268 const char *event_name;
269 const struct lttng_ust_probe_desc *probe_desc;
270 void (*probe_callback)(void);
271 const struct lttng_ust_event_field * const *fields; /* event payload */
272 unsigned int nr_fields;
273 const int **loglevel;
274 const char *signature; /* Argument types/names received */
275 const char **model_emf_uri;
276
277 /* End of base ABI. Fields below should be used after checking struct_size. */
278 };
279
280 /*
281 * IMPORTANT: this structure is part of the ABI between the probe and
282 * UST. Fields need to be only added at the end, never reordered, never
283 * removed.
284 *
285 * The field @struct_size should be used to determine the size of the
286 * structure. It should be queried before using additional fields added
287 * at the end of the structure.
288 */
289 struct lttng_ust_probe_desc {
290 uint32_t struct_size; /* Size of this structure. */
291
292 const char *provider_name;
293 const struct lttng_ust_event_desc * const *event_desc;
294 unsigned int nr_events;
295 uint32_t major;
296 uint32_t minor;
297
298 /* End of base ABI. Fields below should be used after checking struct_size. */
299 };
300
301 /* Data structures used by the tracer. */
302
303 /*
304 * lttng_event structure is referred to by the tracing fast path. It
305 * must be kept small.
306 *
307 * IMPORTANT: this structure is part of the ABI between the probe and
308 * UST. Fields need to be only added at the end, never reordered, never
309 * removed.
310 */
311
312 struct lttng_ust_event_common_private;
313
314 enum lttng_ust_event_type {
315 LTTNG_UST_EVENT_TYPE_RECORDER = 0,
316 LTTNG_UST_EVENT_TYPE_NOTIFIER = 1,
317 };
318
319 /*
320 * Result of the run_filter() callback.
321 */
322 enum lttng_ust_event_filter_result {
323 LTTNG_UST_EVENT_FILTER_ACCEPT = 0,
324 LTTNG_UST_EVENT_FILTER_REJECT = 1,
325 };
326
327 /*
328 * IMPORTANT: this structure is part of the ABI between the probe and
329 * UST. Fields need to be only added at the end, never reordered, never
330 * removed.
331 *
332 * struct lttng_ust_event_common is the common ancestor of the various
333 * public event actions. Inheritance is done by composition: The parent
334 * has a pointer to its child, and the child has a pointer to its
335 * parent. Inheritance of those public structures is done by composition
336 * to ensure both parent and child structures can be extended.
337 *
338 * The field @struct_size should be used to determine the size of the
339 * structure. It should be queried before using additional fields added
340 * at the end of the structure.
341 */
342 struct lttng_ust_event_common {
343 uint32_t struct_size; /* Size of this structure. */
344
345 struct lttng_ust_event_common_private *priv; /* Private event interface */
346
347 enum lttng_ust_event_type type;
348 void *child; /* Pointer to child, for inheritance by aggregation. */
349
350 int enabled;
351 int eval_filter; /* Need to evaluate filters */
352 int (*run_filter)(const struct lttng_ust_event_common *event,
353 const char *stack_data,
354 void *filter_ctx);
355
356 /* End of base ABI. Fields below should be used after checking struct_size. */
357 };
358
359 struct lttng_ust_event_recorder_private;
360
361 /*
362 * IMPORTANT: this structure is part of the ABI between the probe and
363 * UST. Fields need to be only added at the end, never reordered, never
364 * removed.
365 *
366 * struct lttng_ust_event_recorder is the action for recording events
367 * into a ring buffer. It inherits from struct lttng_ust_event_common
368 * by composition to ensure both parent and child structure are
369 * extensible.
370 *
371 * The field @struct_size should be used to determine the size of the
372 * structure. It should be queried before using additional fields added
373 * at the end of the structure.
374 */
375 struct lttng_ust_event_recorder {
376 uint32_t struct_size; /* Size of this structure. */
377
378 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
379 struct lttng_ust_event_recorder_private *priv; /* Private event record interface */
380
381 struct lttng_ust_channel_buffer *chan;
382
383 /* End of base ABI. Fields below should be used after checking struct_size. */
384 };
385
386 /*
387 * IMPORTANT: this structure is part of the ABI between the probe and
388 * UST. Fields need to be only added at the end, never reordered, never
389 * removed.
390 *
391 * The field @struct_size should be used to determine the size of the
392 * structure. It should be queried before using additional fields added
393 * at the end of the structure.
394 */
395 struct lttng_ust_notification_ctx {
396 uint32_t struct_size; /* Size of this structure. */
397 int eval_capture; /* Capture evaluation available. */
398
399 /* End of base ABI. Fields below should be used after checking struct_size. */
400 };
401
402 struct lttng_ust_event_notifier_private;
403
404 /*
405 * IMPORTANT: this structure is part of the ABI between the probe and
406 * UST. Fields need to be only added at the end, never reordered, never
407 * removed.
408 *
409 * struct lttng_ust_event_notifier is the action for sending
410 * notifications. It inherits from struct lttng_ust_event_common
411 * by composition to ensure both parent and child structure are
412 * extensible.
413 *
414 * The field @struct_size should be used to determine the size of the
415 * structure. It should be queried before using additional fields added
416 * at the end of the structure.
417 */
418 struct lttng_ust_event_notifier {
419 uint32_t struct_size; /* Size of this structure. */
420
421 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
422 struct lttng_ust_event_notifier_private *priv; /* Private event notifier interface */
423
424 int eval_capture; /* Need to evaluate capture */
425 void (*notification_send)(const struct lttng_ust_event_notifier *event_notifier,
426 const char *stack_data,
427 struct lttng_ust_notification_ctx *notif_ctx);
428
429 /* End of base ABI. Fields below should be used after checking struct_size. */
430 };
431
432 struct lttng_ust_ring_buffer_channel;
433 struct lttng_ust_channel_buffer_ops_private;
434
435 /*
436 * IMPORTANT: this structure is part of the ABI between the probe and
437 * UST. Fields need to be only added at the end, never reordered, never
438 * removed.
439 *
440 * The field @struct_size should be used to determine the size of the
441 * structure. It should be queried before using additional fields added
442 * at the end of the structure.
443 */
444 struct lttng_ust_channel_buffer_ops {
445 uint32_t struct_size;
446
447 struct lttng_ust_channel_buffer_ops_private *priv; /* Private channel buffer ops interface */
448
449 int (*event_reserve)(struct lttng_ust_ring_buffer_ctx *ctx);
450 void (*event_commit)(struct lttng_ust_ring_buffer_ctx *ctx);
451 void (*event_write)(struct lttng_ust_ring_buffer_ctx *ctx,
452 const void *src, size_t len, size_t alignment);
453 void (*event_strcpy)(struct lttng_ust_ring_buffer_ctx *ctx,
454 const char *src, size_t len);
455 void (*event_pstrcpy_pad)(struct lttng_ust_ring_buffer_ctx *ctx,
456 const char *src, size_t len);
457
458 /* End of base ABI. Fields below should be used after checking struct_size. */
459 };
460
461 enum lttng_ust_channel_type {
462 LTTNG_UST_CHANNEL_TYPE_BUFFER = 0,
463 };
464
465 struct lttng_ust_channel_common_private;
466
467 /*
468 * IMPORTANT: this structure is part of the ABI between the probe and
469 * UST. Fields need to be only added at the end, never reordered, never
470 * removed.
471 *
472 * The field @struct_size should be used to determine the size of the
473 * structure. It should be queried before using additional fields added
474 * at the end of the structure.
475 */
476 struct lttng_ust_channel_common {
477 uint32_t struct_size; /* Size of this structure. */
478
479 struct lttng_ust_channel_common_private *priv; /* Private channel interface */
480
481 enum lttng_ust_channel_type type;
482 void *child; /* Pointer to child, for inheritance by aggregation. */
483
484 int enabled;
485 struct lttng_ust_session *session;
486
487 /* End of base ABI. Fields below should be used after checking struct_size. */
488 };
489
490 struct lttng_ust_channel_buffer_private;
491
492 /*
493 * IMPORTANT: this structure is part of the ABI between the probe and
494 * UST. Fields need to be only added at the end, never reordered, never
495 * removed.
496 *
497 * The field @struct_size should be used to determine the size of the
498 * structure. It should be queried before using additional fields added
499 * at the end of the structure.
500 */
501 struct lttng_ust_channel_buffer {
502 uint32_t struct_size; /* Size of this structure. */
503
504 struct lttng_ust_channel_common *parent; /* Inheritance by aggregation. */
505 struct lttng_ust_channel_buffer_private *priv; /* Private channel buffer interface */
506
507 struct lttng_ust_channel_buffer_ops *ops;
508
509 /* End of base ABI. Fields below should be used after checking struct_size. */
510 };
511
512 /*
513 * IMPORTANT: this structure is part of the ABI between the probe and
514 * UST. Fields need to be only added at the end, never reordered, never
515 * removed.
516 *
517 * The field @struct_size should be used to determine the size of the
518 * structure. It should be queried before using additional fields added
519 * at the end of the structure.
520 */
521 struct lttng_ust_stack_ctx {
522 uint32_t struct_size; /* Size of this structure */
523
524 struct lttng_ust_event_recorder *event_recorder;
525
526 /* End of base ABI. Fields below should be used after checking struct_size. */
527 };
528
529 struct lttng_ust_session_private;
530
531 /*
532 * IMPORTANT: this structure is part of the ABI between the probe and
533 * UST. Fields need to be only added at the end, never reordered, never
534 * removed.
535 *
536 * The field @struct_size should be used to determine the size of the
537 * structure. It should be queried before using additional fields added
538 * at the end of the structure.
539 */
540 struct lttng_ust_session {
541 uint32_t struct_size; /* Size of this structure */
542
543 struct lttng_ust_session_private *priv; /* Private session interface */
544
545 int active; /* Is trace session active ? */
546
547 /* End of base ABI. Fields below should be used after checking struct_size. */
548 };
549
550 /*
551 * On successful registration of a probe, a pointer to an opaque
552 * structure is returned. This pointer should be passed to
553 * lttng_ust_probe_unregister for unregistration.
554 * lttng_ust_probe_register returns NULL on error.
555 */
556 struct lttng_ust_registered_probe *lttng_ust_probe_register(const struct lttng_ust_probe_desc *desc);
557
558 void lttng_ust_probe_unregister(struct lttng_ust_registered_probe *reg_probe);
559
560 /*
561 * Applications that change their procname and need the new value to be
562 * reflected in the procname event context have to call this function to clear
563 * the internally cached value. This should not be called from a signal
564 * handler.
565 */
566 void lttng_ust_context_procname_reset(void);
567
568 #ifdef __cplusplus
569 }
570 #endif
571
572 #endif /* _LTTNG_UST_EVENTS_H */
This page took 0.039021 seconds and 3 git commands to generate.