Tracepoint API namespacing ust-endian
[lttng-ust.git] / include / lttng / ust-events.h
CommitLineData
8020ceb5 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
8020ceb5 3 *
c0c0989a 4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8020ceb5
MD
5 *
6 * Holds LTTng per-session event registry.
8020ceb5
MD
7 */
8
c0c0989a
MJ
9#ifndef _LTTNG_UST_EVENTS_H
10#define _LTTNG_UST_EVENTS_H
11
b4051ad8 12#include <stddef.h>
9f3fdbc6 13#include <stdint.h>
4318ae1b
MD
14#include <lttng/ust-abi.h>
15#include <lttng/ust-tracer.h>
2ae57758 16#include <lttng/ust-endian.h>
20f1eee7 17#include <float.h>
d58d1454
MD
18#include <errno.h>
19#include <urcu/ref.h>
20#include <pthread.h>
9af5d97a 21#include <limits.h>
8020ceb5 22
6453d237
MD
23#ifdef __cplusplus
24extern "C" {
25#endif
26
19d8b1b3
MD
27#define LTTNG_UST_UUID_LEN 16
28
71d31690
MD
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 */
04f0b55a 35#define LTTNG_UST_PROVIDER_MAJOR 2
71d31690
MD
36#define LTTNG_UST_PROVIDER_MINOR 0
37
e7bc0ef6 38struct lttng_ust_channel_buffer;
f69fe5fb 39struct lttng_ust_session;
b5457df5 40struct lttng_ust_ring_buffer_ctx;
25cff019 41struct lttng_ust_event_field;
4e48b5d2 42struct lttng_ust_registered_probe;
8020ceb5 43
37d5e202
MD
44/*
45 * Data structures used by tracepoint event declarations, and by the
a084756d 46 * tracer.
37d5e202
MD
47 */
48
8020ceb5
MD
49/* Type description */
50
a084756d
MD
51enum 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,
8020ceb5
MD
61};
62
a084756d
MD
63enum 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,
8020ceb5
MD
68};
69
1a37a873 70struct lttng_ust_enum_value {
a6f80644
MD
71 unsigned long long value;
72 unsigned int signedness:1;
73};
74
1a37a873
MD
75enum lttng_ust_enum_entry_option {
76 LTTNG_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
3e762260
PP
77};
78
891d6b55
MD
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
91struct lttng_ust_enum_entry {
92 uint32_t struct_size;
93
1a37a873 94 struct lttng_ust_enum_value start, end; /* start and end are inclusive */
8020ceb5 95 const char *string;
891d6b55
MD
96 unsigned int options;
97
98 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
99};
100
a084756d
MD
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 */
105struct lttng_ust_type_common {
106 enum lttng_ust_type type;
107};
108
109struct lttng_ust_type_integer {
110 struct lttng_ust_type_common parent;
111 uint32_t struct_size;
8020ceb5
MD
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 */
a084756d
MD
117};
118
119#define lttng_ust_type_integer_define(_type, _byte_order, _base) \
5defa774 120 ((struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(struct lttng_ust_type_integer, { \
a084756d
MD
121 .parent = { \
122 .type = lttng_ust_type_integer, \
123 }, \
124 .struct_size = sizeof(struct lttng_ust_type_integer), \
125 .size = sizeof(_type) * CHAR_BIT, \
dc325c1d 126 .alignment = lttng_ust_rb_alignof(_type) * CHAR_BIT, \
eae3c729 127 .signedness = lttng_ust_is_signed_type(_type), \
baa8acf3 128 .reverse_byte_order = _byte_order != LTTNG_UST_BYTE_ORDER, \
a084756d
MD
129 .base = _base, \
130 }))
131
132struct 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;
8020ceb5
MD
139};
140
d3ed854b
MD
141/*
142 * Only float and double are supported. long double is not supported at
143 * the moment.
144 */
89080a49 145#define lttng_ust_float_mant_dig(_type) \
20f1eee7
MD
146 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
147 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
d3ed854b 148 : 0))
20f1eee7 149
a084756d 150#define lttng_ust_type_float_define(_type) \
5defa774 151 ((struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(struct lttng_ust_type_float, { \
a084756d
MD
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 \
89080a49
MD
157 - lttng_ust_float_mant_dig(_type), \
158 .mant_dig = lttng_ust_float_mant_dig(_type), \
dc325c1d 159 .alignment = lttng_ust_rb_alignof(_type) * CHAR_BIT, \
baa8acf3 160 .reverse_byte_order = LTTNG_UST_BYTE_ORDER != LTTNG_UST_FLOAT_WORD_ORDER, \
a084756d
MD
161 }))
162
163
164struct lttng_ust_type_string {
165 struct lttng_ust_type_common parent;
166 uint32_t struct_size;
167 enum lttng_ust_string_encoding encoding;
20f1eee7
MD
168};
169
a084756d
MD
170struct lttng_ust_type_enum {
171 struct lttng_ust_type_common parent;
172 uint32_t struct_size;
4e48b5d2
MD
173 const struct lttng_ust_enum_desc *desc; /* Enumeration mapping */
174 const struct lttng_ust_type_common *container_type;
a084756d
MD
175};
176
b29dc239
MD
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
a084756d
MD
184struct lttng_ust_type_array {
185 struct lttng_ust_type_common parent;
186 uint32_t struct_size;
4e48b5d2 187 const struct lttng_ust_type_common *elem_type;
b29dc239
MD
188 unsigned int length; /* Num. elems. */
189 unsigned int alignment; /* Minimum alignment for this type. */
a084756d
MD
190 enum lttng_ust_string_encoding encoding;
191};
192
193struct lttng_ust_type_sequence {
194 struct lttng_ust_type_common parent;
195 uint32_t struct_size;
196 const char *length_name; /* Length field name. */
4e48b5d2 197 const struct lttng_ust_type_common *elem_type;
b29dc239 198 unsigned int alignment; /* Minimum alignment before elements. */
a084756d
MD
199 enum lttng_ust_string_encoding encoding;
200};
201
202struct lttng_ust_type_struct {
203 struct lttng_ust_type_common parent;
204 uint32_t struct_size;
205 unsigned int nr_fields;
3d33ca1d
MD
206 const struct lttng_ust_event_field * const *fields; /* Array of pointers to fields. */
207 unsigned int alignment; /* Minimum alignment for this type. */
8020ceb5
MD
208};
209
891d6b55
MD
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
222struct lttng_ust_enum_desc {
223 uint32_t struct_size;
224
8020ceb5 225 const char *name;
3d33ca1d 226 const struct lttng_ust_enum_entry * const *entries;
c785c634 227 unsigned int nr_entries;
891d6b55
MD
228
229 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
230};
231
180901e6
MD
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.
25cff019
MD
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.
180901e6 242 */
8020ceb5 243
25cff019
MD
244struct lttng_ust_event_field {
245 uint32_t struct_size;
246
8020ceb5 247 const char *name;
4e48b5d2 248 const struct lttng_ust_type_common *type;
25cff019
MD
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. */
8020ceb5
MD
253};
254
37d5e202 255
dc11f93f
MD
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 */
265struct lttng_ust_event_desc {
4e48b5d2 266 uint32_t struct_size; /* Size of this structure. */
dc177d11 267
5b4c6da4 268 const char *event_name;
4e48b5d2 269 const struct lttng_ust_probe_desc *probe_desc;
fbdeb5ec 270 void (*probe_callback)(void);
3d33ca1d 271 const struct lttng_ust_event_field * const *fields; /* event payload */
37d5e202
MD
272 unsigned int nr_fields;
273 const int **loglevel;
4e48b5d2 274 const char *signature; /* Argument types/names received */
dc11f93f
MD
275 const char **model_emf_uri;
276
277 /* End of base ABI. Fields below should be used after checking struct_size. */
37d5e202
MD
278};
279
dc11f93f
MD
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 */
289struct lttng_ust_probe_desc {
290 uint32_t struct_size; /* Size of this structure. */
291
5b4c6da4 292 const char *provider_name;
3d33ca1d 293 const struct lttng_ust_event_desc * const *event_desc;
37d5e202 294 unsigned int nr_events;
71d31690
MD
295 uint32_t major;
296 uint32_t minor;
dc11f93f
MD
297
298 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
299};
300
37d5e202
MD
301/* Data structures used by the tracer. */
302
8020ceb5 303/*
7dd08bec
MD
304 * lttng_event structure is referred to by the tracing fast path. It
305 * must be kept small.
180901e6
MD
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.
8020ceb5 310 */
68bb7559 311
80333dfa
MD
312struct lttng_ust_event_common_private;
313
808edfc8
MD
314enum lttng_ust_event_type {
315 LTTNG_UST_EVENT_TYPE_RECORDER = 0,
316 LTTNG_UST_EVENT_TYPE_NOTIFIER = 1,
317};
318
a2e4d05e
MD
319/*
320 * Result of the run_filter() callback.
321 */
322enum lttng_ust_event_filter_result {
323 LTTNG_UST_EVENT_FILTER_ACCEPT = 0,
324 LTTNG_UST_EVENT_FILTER_REJECT = 1,
325};
326
93cfd247 327/*
6d35572a
MD
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 *
93cfd247
MD
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 */
7ee76145 342struct lttng_ust_event_common {
80333dfa 343 uint32_t struct_size; /* Size of this structure. */
dc177d11 344
80333dfa
MD
345 struct lttng_ust_event_common_private *priv; /* Private event interface */
346
808edfc8 347 enum lttng_ust_event_type type;
ba99fbe2
MD
348 void *child; /* Pointer to child, for inheritance by aggregation. */
349
80333dfa 350 int enabled;
a2e4d05e 351 int eval_filter; /* Need to evaluate filters */
9c098f23 352 int (*run_filter)(const struct lttng_ust_event_common *event,
a2e4d05e
MD
353 const char *stack_data,
354 void *filter_ctx);
93cfd247
MD
355
356 /* End of base ABI. Fields below should be used after checking struct_size. */
80333dfa
MD
357};
358
2e70391c 359struct lttng_ust_event_recorder_private;
68bb7559 360
93cfd247 361/*
6d35572a
MD
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 *
93cfd247
MD
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 */
2e70391c
MD
375struct lttng_ust_event_recorder {
376 uint32_t struct_size; /* Size of this structure. */
dc177d11 377
ba99fbe2 378 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
2e70391c 379 struct lttng_ust_event_recorder_private *priv; /* Private event record interface */
68bb7559 380
e7bc0ef6 381 struct lttng_ust_channel_buffer *chan;
93cfd247
MD
382
383 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
384};
385
a2e4d05e
MD
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 */
395struct 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
115db533
MD
402struct lttng_ust_event_notifier_private;
403
93cfd247 404/*
6d35572a
MD
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 *
93cfd247
MD
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 */
d7d45c0d 418struct lttng_ust_event_notifier {
115db533 419 uint32_t struct_size; /* Size of this structure. */
105cf2eb 420
ba99fbe2 421 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
115db533
MD
422 struct lttng_ust_event_notifier_private *priv; /* Private event notifier interface */
423
a2e4d05e 424 int eval_capture; /* Need to evaluate capture */
cda77256 425 void (*notification_send)(const struct lttng_ust_event_notifier *event_notifier,
a2e4d05e
MD
426 const char *stack_data,
427 struct lttng_ust_notification_ctx *notif_ctx);
93cfd247
MD
428
429 /* End of base ABI. Fields below should be used after checking struct_size. */
d8d2416d
FD
430};
431
b5457df5 432struct lttng_ust_ring_buffer_channel;
14b6f891 433struct lttng_ust_channel_buffer_ops_private;
8d8a24c8 434
180901e6
MD
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.
49926dbd
MD
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.
180901e6 443 */
14b6f891 444struct lttng_ust_channel_buffer_ops {
49926dbd
MD
445 uint32_t struct_size;
446
14b6f891 447 struct lttng_ust_channel_buffer_ops_private *priv; /* Private channel buffer ops interface */
a880bae5 448
b5457df5
MD
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,
8936b6c0 452 const void *src, size_t len, size_t alignment);
b5457df5 453 void (*event_strcpy)(struct lttng_ust_ring_buffer_ctx *ctx,
a44c74d9 454 const char *src, size_t len);
b5457df5 455 void (*event_pstrcpy_pad)(struct lttng_ust_ring_buffer_ctx *ctx,
27927814 456 const char *src, size_t len);
49926dbd
MD
457
458 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
459};
460
e7bc0ef6
MD
461enum lttng_ust_channel_type {
462 LTTNG_UST_CHANNEL_TYPE_BUFFER = 0,
463};
464
465struct lttng_ust_channel_common_private;
466
180901e6
MD
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.
e7bc0ef6
MD
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.
180901e6 475 */
e7bc0ef6
MD
476struct 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
976fe9ea 484 int enabled;
f69fe5fb 485 struct lttng_ust_session *session;
e7bc0ef6
MD
486
487 /* End of base ABI. Fields below should be used after checking struct_size. */
488};
489
490struct 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 */
501struct 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
14b6f891 507 struct lttng_ust_channel_buffer_ops *ops;
a3f61e7f 508
e7bc0ef6 509 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
510};
511
2a9d9339
MD
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 */
521struct lttng_ust_stack_ctx {
522 uint32_t struct_size; /* Size of this structure */
523
2e70391c 524 struct lttng_ust_event_recorder *event_recorder;
2a9d9339
MD
525
526 /* End of base ABI. Fields below should be used after checking struct_size. */
53569322
MD
527};
528
bdb12629
MD
529struct lttng_ust_session_private;
530
180901e6
MD
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.
6d35572a
MD
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.
180901e6 539 */
f69fe5fb 540struct lttng_ust_session {
bd640d74 541 uint32_t struct_size; /* Size of this structure */
dc177d11 542
bdb12629
MD
543 struct lttng_ust_session_private *priv; /* Private session interface */
544
e58095ef 545 int active; /* Is trace session active ? */
6d35572a
MD
546
547 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
548};
549
4e48b5d2
MD
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 */
556struct lttng_ust_registered_probe *lttng_ust_probe_register(const struct lttng_ust_probe_desc *desc);
557
558void lttng_ust_probe_unregister(struct lttng_ust_registered_probe *reg_probe);
9f3fdbc6 559
fc80554e 560/*
0af0bdb2
MJ
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.
fc80554e 565 */
0af0bdb2 566void lttng_ust_context_procname_reset(void);
d58d1454 567
6453d237
MD
568#ifdef __cplusplus
569}
570#endif
571
51489cad 572#endif /* _LTTNG_UST_EVENTS_H */
This page took 0.075823 seconds and 4 git commands to generate.