Cleanup: public type macros coding style
[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
9f3fdbc6 12#include <urcu/list.h>
1f18504e 13#include <urcu/hlist.h>
b4051ad8 14#include <stddef.h>
9f3fdbc6 15#include <stdint.h>
4318ae1b
MD
16#include <lttng/ust-abi.h>
17#include <lttng/ust-tracer.h>
2ae57758 18#include <lttng/ust-endian.h>
20f1eee7 19#include <float.h>
d58d1454
MD
20#include <errno.h>
21#include <urcu/ref.h>
22#include <pthread.h>
8020ceb5 23
db56acaf
MD
24#ifndef LTTNG_PACKED
25#error "LTTNG_PACKED should be defined"
26#endif
27
6453d237
MD
28#ifdef __cplusplus
29extern "C" {
30#endif
31
19d8b1b3
MD
32#define LTTNG_UST_UUID_LEN 16
33
71d31690
MD
34/*
35 * Tracepoint provider version. Compatibility based on the major number.
36 * Older tracepoint providers can always register to newer lttng-ust
37 * library, but the opposite is rejected: a newer tracepoint provider is
38 * rejected by an older lttng-ust library.
39 */
04f0b55a 40#define LTTNG_UST_PROVIDER_MAJOR 2
71d31690
MD
41#define LTTNG_UST_PROVIDER_MINOR 0
42
7dd08bec
MD
43struct lttng_channel;
44struct lttng_session;
4cfec15c 45struct lttng_ust_lib_ring_buffer_ctx;
25cff019 46struct lttng_ust_event_field;
ebabbf58 47struct lttng_event_notifier_group;
8020ceb5 48
37d5e202
MD
49/*
50 * Data structures used by tracepoint event declarations, and by the
51 * tracer. Those structures have padding for future extension.
52 */
53
8020ceb5
MD
54/* Type description */
55
56/* Update the astract_types name table in lttng-types.c along with this enum */
7dd08bec 57enum lttng_abstract_types {
8020ceb5 58 atype_integer,
8020ceb5 59 atype_string,
20f1eee7 60 atype_float,
53569322 61 atype_dynamic,
218deb69
MD
62 atype_enum_nestable,
63 atype_array_nestable,
64 atype_sequence_nestable,
65 atype_struct_nestable,
8020ceb5
MD
66 NR_ABSTRACT_TYPES,
67};
68
69/* Update the string_encodings name table in lttng-types.c along with this enum */
70enum lttng_string_encodings {
71 lttng_encode_none = 0,
72 lttng_encode_UTF8 = 1,
73 lttng_encode_ASCII = 2,
74 NR_STRING_ENCODINGS,
75};
76
a6f80644
MD
77struct lttng_enum_value {
78 unsigned long long value;
79 unsigned int signedness:1;
80};
81
3e762260
PP
82enum lttng_enum_entry_options {
83 LTTNG_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
84};
85
891d6b55
MD
86/*
87 * Enumeration entry description
88 *
89 * IMPORTANT: this structure is part of the ABI between the probe and
90 * UST. Fields need to be only added at the end, never reordered, never
91 * removed.
92 *
93 * The field @struct_size should be used to determine the size of the
94 * structure. It should be queried before using additional fields added
95 * at the end of the structure.
96 */
97
98struct lttng_ust_enum_entry {
99 uint32_t struct_size;
100
a6f80644 101 struct lttng_enum_value start, end; /* start and end are inclusive */
8020ceb5 102 const char *string;
891d6b55
MD
103 unsigned int options;
104
105 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
106};
107
68f88266
MD
108#define __type_integer(_type, _byte_order, _base, _encoding) \
109 { \
110 .atype = atype_integer, \
111 .u = { \
112 .integer = { \
113 .size = sizeof(_type) * CHAR_BIT, \
114 .alignment = lttng_alignof(_type) * CHAR_BIT, \
115 .signedness = lttng_is_signed_type(_type), \
116 .reverse_byte_order = _byte_order != BYTE_ORDER, \
117 .base = _base, \
118 .encoding = lttng_encode_##_encoding, \
46d52200 119 } \
8020ceb5
MD
120 }, \
121 } \
122
37d5e202 123#define LTTNG_UST_INTEGER_TYPE_PADDING 24
8020ceb5
MD
124struct lttng_integer_type {
125 unsigned int size; /* in bits */
126 unsigned short alignment; /* in bits */
127 unsigned int signedness:1;
128 unsigned int reverse_byte_order:1;
129 unsigned int base; /* 2, 8, 10, 16, for pretty print */
130 enum lttng_string_encodings encoding;
37d5e202 131 char padding[LTTNG_UST_INTEGER_TYPE_PADDING];
8020ceb5
MD
132};
133
d3ed854b
MD
134/*
135 * Only float and double are supported. long double is not supported at
136 * the moment.
137 */
20f1eee7
MD
138#define _float_mant_dig(_type) \
139 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
140 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
d3ed854b 141 : 0))
20f1eee7 142
68f88266
MD
143#define __type_float(_type) \
144 { \
145 .atype = atype_float, \
146 .u = { \
147 ._float = { \
148 .exp_dig = sizeof(_type) * CHAR_BIT \
149 - _float_mant_dig(_type), \
150 .mant_dig = _float_mant_dig(_type), \
151 .alignment = lttng_alignof(_type) * CHAR_BIT, \
152 .reverse_byte_order = BYTE_ORDER != FLOAT_WORD_ORDER, \
153 } \
154 } \
155 } \
20f1eee7 156
37d5e202 157#define LTTNG_UST_FLOAT_TYPE_PADDING 24
20f1eee7
MD
158struct lttng_float_type {
159 unsigned int exp_dig; /* exponent digits, in bits */
160 unsigned int mant_dig; /* mantissa digits, in bits */
161 unsigned short alignment; /* in bits */
162 unsigned int reverse_byte_order:1;
37d5e202 163 char padding[LTTNG_UST_FLOAT_TYPE_PADDING];
20f1eee7
MD
164};
165
37d5e202 166#define LTTNG_UST_TYPE_PADDING 128
8020ceb5 167struct lttng_type {
7dd08bec 168 enum lttng_abstract_types atype;
8020ceb5 169 union {
218deb69
MD
170 /* provider ABI 2.0 */
171 struct lttng_integer_type integer;
172 struct lttng_float_type _float;
173 struct {
174 enum lttng_string_encodings encoding;
175 } string;
176 struct {
891d6b55 177 const struct lttng_ust_enum_desc *desc; /* Enumeration mapping */
218deb69
MD
178 struct lttng_type *container_type;
179 } enum_nestable;
8020ceb5 180 struct {
218deb69
MD
181 const struct lttng_type *elem_type;
182 unsigned int length; /* Num. elems. */
183 unsigned int alignment;
184 } array_nestable;
8020ceb5 185 struct {
218deb69
MD
186 const char *length_name; /* Length field name. */
187 const struct lttng_type *elem_type;
188 unsigned int alignment; /* Alignment before elements. */
189 } sequence_nestable;
53569322 190 struct {
218deb69 191 unsigned int nr_fields;
25cff019 192 const struct lttng_ust_event_field **fields; /* Array of pointers to fields. */
218deb69
MD
193 unsigned int alignment;
194 } struct_nestable;
195
37d5e202 196 char padding[LTTNG_UST_TYPE_PADDING];
8020ceb5
MD
197 } u;
198};
199
891d6b55
MD
200/*
201 * Enumeration description
202 *
203 * IMPORTANT: this structure is part of the ABI between the probe and
204 * UST. Fields need to be only added at the end, never reordered, never
205 * removed.
206 *
207 * The field @struct_size should be used to determine the size of the
208 * structure. It should be queried before using additional fields added
209 * at the end of the structure.
210 */
211
212struct lttng_ust_enum_desc {
213 uint32_t struct_size;
214
8020ceb5 215 const char *name;
891d6b55 216 const struct lttng_ust_enum_entry **entries;
c785c634 217 unsigned int nr_entries;
891d6b55
MD
218
219 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
220};
221
180901e6
MD
222/*
223 * Event field description
224 *
225 * IMPORTANT: this structure is part of the ABI between the probe and
226 * UST. Fields need to be only added at the end, never reordered, never
227 * removed.
25cff019
MD
228 *
229 * The field @struct_size should be used to determine the size of the
230 * structure. It should be queried before using additional fields added
231 * at the end of the structure.
180901e6 232 */
8020ceb5 233
25cff019
MD
234struct lttng_ust_event_field {
235 uint32_t struct_size;
236
8020ceb5
MD
237 const char *name;
238 struct lttng_type type;
25cff019
MD
239 unsigned int nowrite:1, /* do not write into trace */
240 nofilter:1; /* do not consider for filter */
241
242 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
243};
244
37d5e202 245
dc11f93f
MD
246/*
247 * IMPORTANT: this structure is part of the ABI between the probe and
248 * UST. Fields need to be only added at the end, never reordered, never
249 * removed.
250 *
251 * The field @struct_size should be used to determine the size of the
252 * structure. It should be queried before using additional fields added
253 * at the end of the structure.
254 */
255struct lttng_ust_event_desc {
256 uint32_t struct_size; /* Size of this structure. */
dc177d11 257
37d5e202 258 const char *name;
fbdeb5ec 259 void (*probe_callback)(void);
37d5e202 260 const struct lttng_event_ctx *ctx; /* context */
25cff019 261 const struct lttng_ust_event_field **fields; /* event payload */
37d5e202
MD
262 unsigned int nr_fields;
263 const int **loglevel;
dc11f93f
MD
264 const char *signature; /* Argument types/names received */
265 const char **model_emf_uri;
266
267 /* End of base ABI. Fields below should be used after checking struct_size. */
37d5e202
MD
268};
269
dc11f93f
MD
270/*
271 * IMPORTANT: this structure is part of the ABI between the probe and
272 * UST. Fields need to be only added at the end, never reordered, never
273 * removed.
274 *
275 * The field @struct_size should be used to determine the size of the
276 * structure. It should be queried before using additional fields added
277 * at the end of the structure.
278 */
279struct lttng_ust_probe_desc {
280 uint32_t struct_size; /* Size of this structure. */
281
37d5e202 282 const char *provider;
dc11f93f 283 const struct lttng_ust_event_desc **event_desc;
37d5e202
MD
284 unsigned int nr_events;
285 struct cds_list_head head; /* chain registered probes */
6715d7d1
MD
286 struct cds_list_head lazy_init_head;
287 int lazy; /* lazy registration */
71d31690
MD
288 uint32_t major;
289 uint32_t minor;
dc11f93f
MD
290
291 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
292};
293
37d5e202
MD
294/* Data structures used by the tracer. */
295
8a92ed2a 296/*
04aa13f8 297 * Bytecode interpreter return value masks.
8a92ed2a 298 */
04aa13f8
FD
299enum lttng_bytecode_interpreter_ret {
300 LTTNG_INTERPRETER_DISCARD = 0,
301 LTTNG_INTERPRETER_RECORD_FLAG = (1ULL << 0),
8a92ed2a
MD
302 /* Other bits are kept for future use. */
303};
304
d37ecb3f 305struct lttng_interpreter_output;
362a65de 306struct lttng_ust_bytecode_runtime_private;
d37ecb3f 307
73d37531 308/*
5469a374
MD
309 * IMPORTANT: this structure is part of the ABI between the probe and
310 * UST. Fields need to be only added at the end, never reordered, never
311 * removed.
312 *
313 * The field @struct_size should be used to determine the size of the
314 * structure. It should be queried before using additional fields added
315 * at the end of the structure.
73d37531 316 */
5469a374
MD
317struct lttng_ust_bytecode_runtime {
318 uint32_t struct_size; /* Size of this structure. */
362a65de 319
5469a374 320 struct lttng_ust_bytecode_runtime_private *priv;
f488575f 321 /* Associated bytecode */
c42416df
FD
322 union {
323 uint64_t (*filter)(void *interpreter_data,
324 const char *interpreter_stack_data);
d37ecb3f
FD
325 uint64_t (*capture)(void *interpreter_data,
326 const char *interpreter_stack_data,
327 struct lttng_interpreter_output *interpreter_output);
c42416df 328 } interpreter_funcs;
e58095ef 329 struct cds_list_head node; /* list of bytecode runtime in event */
5469a374
MD
330
331 /* End of base ABI. Fields below should be used after checking struct_size. */
e58095ef
MD
332};
333
8020ceb5 334/*
7dd08bec
MD
335 * lttng_event structure is referred to by the tracing fast path. It
336 * must be kept small.
180901e6
MD
337 *
338 * IMPORTANT: this structure is part of the ABI between the probe and
339 * UST. Fields need to be only added at the end, never reordered, never
340 * removed.
8020ceb5 341 */
68bb7559 342
daacdbfc 343struct lttng_ust_ctx;
80333dfa
MD
344struct lttng_ust_event_common_private;
345
808edfc8
MD
346enum lttng_ust_event_type {
347 LTTNG_UST_EVENT_TYPE_RECORDER = 0,
348 LTTNG_UST_EVENT_TYPE_NOTIFIER = 1,
349};
350
93cfd247 351/*
6d35572a
MD
352 * IMPORTANT: this structure is part of the ABI between the probe and
353 * UST. Fields need to be only added at the end, never reordered, never
354 * removed.
355 *
93cfd247
MD
356 * struct lttng_ust_event_common is the common ancestor of the various
357 * public event actions. Inheritance is done by composition: The parent
358 * has a pointer to its child, and the child has a pointer to its
359 * parent. Inheritance of those public structures is done by composition
360 * to ensure both parent and child structures can be extended.
361 *
362 * The field @struct_size should be used to determine the size of the
363 * structure. It should be queried before using additional fields added
364 * at the end of the structure.
365 */
7ee76145 366struct lttng_ust_event_common {
80333dfa 367 uint32_t struct_size; /* Size of this structure. */
dc177d11 368
80333dfa
MD
369 struct lttng_ust_event_common_private *priv; /* Private event interface */
370
808edfc8 371 enum lttng_ust_event_type type;
ba99fbe2
MD
372 void *child; /* Pointer to child, for inheritance by aggregation. */
373
80333dfa
MD
374 int enabled;
375 int has_enablers_without_bytecode;
5469a374 376 /* list of struct lttng_ust_bytecode_runtime, sorted by seqnum */
80333dfa 377 struct cds_list_head filter_bytecode_runtime_head;
93cfd247
MD
378
379 /* End of base ABI. Fields below should be used after checking struct_size. */
80333dfa
MD
380};
381
2e70391c 382struct lttng_ust_event_recorder_private;
68bb7559 383
93cfd247 384/*
6d35572a
MD
385 * IMPORTANT: this structure is part of the ABI between the probe and
386 * UST. Fields need to be only added at the end, never reordered, never
387 * removed.
388 *
93cfd247
MD
389 * struct lttng_ust_event_recorder is the action for recording events
390 * into a ring buffer. It inherits from struct lttng_ust_event_common
391 * by composition to ensure both parent and child structure are
392 * extensible.
393 *
394 * The field @struct_size should be used to determine the size of the
395 * structure. It should be queried before using additional fields added
396 * at the end of the structure.
397 */
2e70391c
MD
398struct lttng_ust_event_recorder {
399 uint32_t struct_size; /* Size of this structure. */
dc177d11 400
ba99fbe2 401 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
2e70391c 402 struct lttng_ust_event_recorder_private *priv; /* Private event record interface */
68bb7559 403
8020ceb5 404 unsigned int id;
68bb7559 405 struct lttng_channel *chan;
daacdbfc 406 struct lttng_ust_ctx *ctx;
93cfd247
MD
407
408 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
409};
410
115db533
MD
411struct lttng_ust_event_notifier_private;
412
93cfd247 413/*
6d35572a
MD
414 * IMPORTANT: this structure is part of the ABI between the probe and
415 * UST. Fields need to be only added at the end, never reordered, never
416 * removed.
417 *
93cfd247
MD
418 * struct lttng_ust_event_notifier is the action for sending
419 * notifications. It inherits from struct lttng_ust_event_common
420 * by composition to ensure both parent and child structure are
421 * extensible.
422 *
423 * The field @struct_size should be used to determine the size of the
424 * structure. It should be queried before using additional fields added
425 * at the end of the structure.
426 */
d7d45c0d 427struct lttng_ust_event_notifier {
115db533 428 uint32_t struct_size; /* Size of this structure. */
105cf2eb 429
ba99fbe2 430 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
115db533
MD
431 struct lttng_ust_event_notifier_private *priv; /* Private event notifier interface */
432
d7d45c0d 433 void (*notification_send)(struct lttng_ust_event_notifier *event_notifier,
cab88ff8 434 const char *stack_data);
d37ecb3f 435 struct cds_list_head capture_bytecode_runtime_head;
93cfd247
MD
436
437 /* End of base ABI. Fields below should be used after checking struct_size. */
d8d2416d
FD
438};
439
5198080d 440struct lttng_ust_lib_ring_buffer_channel;
38fae1d3 441struct lttng_ust_shm_handle;
8d8a24c8 442
180901e6
MD
443/*
444 * IMPORTANT: this structure is part of the ABI between the probe and
445 * UST. Fields need to be only added at the end, never reordered, never
446 * removed.
49926dbd
MD
447 *
448 * The field @struct_size should be used to determine the size of the
449 * structure. It should be queried before using additional fields added
450 * at the end of the structure.
180901e6 451 */
49926dbd
MD
452struct lttng_ust_channel_ops {
453 uint32_t struct_size;
454
7dd08bec 455 struct lttng_channel *(*channel_create)(const char *name,
74d81a6c
MD
456 void *buf_addr,
457 size_t subbuf_size, size_t num_subbuf,
458 unsigned int switch_timer_interval,
459 unsigned int read_timer_interval,
6ca18e66 460 unsigned char *uuid,
a9ff648c 461 uint32_t chan_id,
b2c5f61a
MD
462 const int *stream_fds, int nr_stream_fds,
463 int64_t blocking_timeout);
74d81a6c 464 void (*channel_destroy)(struct lttng_channel *chan);
4cfec15c 465 int (*event_reserve)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
8020ceb5 466 uint32_t event_id);
4cfec15c 467 void (*event_commit)(struct lttng_ust_lib_ring_buffer_ctx *ctx);
74d81a6c
MD
468 void (*event_write)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
469 const void *src, size_t len);
8020ceb5
MD
470 /*
471 * packet_avail_size returns the available size in the current
472 * packet. Note that the size returned is only a hint, since it
473 * may change due to concurrent writes.
474 */
5198080d 475 size_t (*packet_avail_size)(struct lttng_ust_lib_ring_buffer_channel *chan,
38fae1d3 476 struct lttng_ust_shm_handle *handle);
5198080d
MJ
477 int (*is_finalized)(struct lttng_ust_lib_ring_buffer_channel *chan);
478 int (*is_disabled)(struct lttng_ust_lib_ring_buffer_channel *chan);
479 int (*flush_buffer)(struct lttng_ust_lib_ring_buffer_channel *chan,
480 struct lttng_ust_shm_handle *handle);
a44c74d9
MD
481 void (*event_strcpy)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
482 const char *src, size_t len);
49926dbd
MD
483
484 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
485};
486
180901e6
MD
487/*
488 * IMPORTANT: this structure is part of the ABI between the probe and
489 * UST. Fields need to be only added at the end, never reordered, never
490 * removed.
491 */
7dd08bec 492struct lttng_channel {
a3f61e7f
MD
493 /*
494 * The pointers located in this private data are NOT safe to be
495 * dereferenced by the consumer. The only operations the
496 * consumer process is designed to be allowed to do is to read
497 * and perform subbuffer flush.
498 */
5198080d 499 struct lttng_ust_lib_ring_buffer_channel *chan; /* Channel buffers */
976fe9ea 500 int enabled;
daacdbfc 501 struct lttng_ust_ctx *ctx;
8020ceb5 502 /* Event ID management */
7dd08bec 503 struct lttng_session *session;
0a42beb6 504 int objd; /* Object associated to channel */
e58095ef 505 struct cds_list_head node; /* Channel list in session */
49926dbd 506 const struct lttng_ust_channel_ops *ops;
8020ceb5 507 int header_type; /* 0: unset, 1: compact, 2: large */
38fae1d3 508 struct lttng_ust_shm_handle *handle; /* shared-memory handle */
a3f61e7f 509
74d81a6c 510 /* Channel ID */
a3f61e7f 511 unsigned int id;
fd17d7ce 512 enum lttng_ust_abi_chan_type type;
19d8b1b3 513 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
ac6b4ac6 514 int tstate:1; /* Transient enable state */
8020ceb5
MD
515};
516
2a9d9339
MD
517/*
518 * IMPORTANT: this structure is part of the ABI between the probe and
519 * UST. Fields need to be only added at the end, never reordered, never
520 * removed.
521 *
522 * The field @struct_size should be used to determine the size of the
523 * structure. It should be queried before using additional fields added
524 * at the end of the structure.
525 */
526struct lttng_ust_stack_ctx {
527 uint32_t struct_size; /* Size of this structure */
528
2e70391c 529 struct lttng_ust_event_recorder *event_recorder;
daacdbfc
MD
530 struct lttng_ust_ctx *chan_ctx; /* RCU dereferenced. */
531 struct lttng_ust_ctx *event_ctx; /* RCU dereferenced. */
2a9d9339
MD
532
533 /* End of base ABI. Fields below should be used after checking struct_size. */
53569322
MD
534};
535
bdb12629
MD
536struct lttng_ust_session_private;
537
180901e6
MD
538/*
539 * IMPORTANT: this structure is part of the ABI between the probe and
540 * UST. Fields need to be only added at the end, never reordered, never
541 * removed.
6d35572a
MD
542 *
543 * The field @struct_size should be used to determine the size of the
544 * structure. It should be queried before using additional fields added
545 * at the end of the structure.
180901e6 546 */
7dd08bec 547struct lttng_session {
bd640d74 548 uint32_t struct_size; /* Size of this structure */
dc177d11 549
bdb12629
MD
550 struct lttng_ust_session_private *priv; /* Private session interface */
551
e58095ef 552 int active; /* Is trace session active ? */
6d35572a
MD
553
554 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
555};
556
dc11f93f
MD
557int lttng_ust_probe_register(struct lttng_ust_probe_desc *desc);
558void lttng_ust_probe_unregister(struct lttng_ust_probe_desc *desc);
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.071662 seconds and 4 git commands to generate.