ABI refactoring: sequence and array of text: copy input as string
[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
6453d237
MD
24#ifdef __cplusplus
25extern "C" {
26#endif
27
19d8b1b3
MD
28#define LTTNG_UST_UUID_LEN 16
29
71d31690
MD
30/*
31 * Tracepoint provider version. Compatibility based on the major number.
32 * Older tracepoint providers can always register to newer lttng-ust
33 * library, but the opposite is rejected: a newer tracepoint provider is
34 * rejected by an older lttng-ust library.
35 */
04f0b55a 36#define LTTNG_UST_PROVIDER_MAJOR 2
71d31690
MD
37#define LTTNG_UST_PROVIDER_MINOR 0
38
e7bc0ef6 39struct lttng_ust_channel_buffer;
f69fe5fb 40struct lttng_ust_session;
4cfec15c 41struct lttng_ust_lib_ring_buffer_ctx;
25cff019 42struct lttng_ust_event_field;
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) \
120 ((struct lttng_ust_type_common *) __LTTNG_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_alignof(_type) * CHAR_BIT, \
127 .signedness = lttng_is_signed_type(_type), \
128 .reverse_byte_order = _byte_order != BYTE_ORDER, \
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
MD
150#define lttng_ust_type_float_define(_type) \
151 ((struct lttng_ust_type_common *) __LTTNG_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 \
89080a49
MD
157 - lttng_ust_float_mant_dig(_type), \
158 .mant_dig = lttng_ust_float_mant_dig(_type), \
a084756d
MD
159 .alignment = lttng_alignof(_type) * CHAR_BIT, \
160 .reverse_byte_order = BYTE_ORDER != FLOAT_WORD_ORDER, \
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;
173 struct lttng_ust_enum_desc *desc; /* Enumeration mapping */
174 struct lttng_ust_type_common *container_type;
175};
176
177struct lttng_ust_type_array {
178 struct lttng_ust_type_common parent;
179 uint32_t struct_size;
180 struct lttng_ust_type_common *elem_type;
181 unsigned int length; /* Num. elems. */
182 unsigned int alignment;
183 enum lttng_ust_string_encoding encoding;
184};
185
186struct lttng_ust_type_sequence {
187 struct lttng_ust_type_common parent;
188 uint32_t struct_size;
189 const char *length_name; /* Length field name. */
190 struct lttng_ust_type_common *elem_type;
191 unsigned int alignment; /* Alignment before elements. */
192 enum lttng_ust_string_encoding encoding;
193};
194
195struct lttng_ust_type_struct {
196 struct lttng_ust_type_common parent;
197 uint32_t struct_size;
198 unsigned int nr_fields;
199 struct lttng_ust_event_field **fields; /* Array of pointers to fields. */
200 unsigned int alignment;
8020ceb5
MD
201};
202
891d6b55
MD
203/*
204 * Enumeration description
205 *
206 * IMPORTANT: this structure is part of the ABI between the probe and
207 * UST. Fields need to be only added at the end, never reordered, never
208 * removed.
209 *
210 * The field @struct_size should be used to determine the size of the
211 * structure. It should be queried before using additional fields added
212 * at the end of the structure.
213 */
214
215struct lttng_ust_enum_desc {
216 uint32_t struct_size;
217
8020ceb5 218 const char *name;
a084756d 219 struct lttng_ust_enum_entry **entries;
c785c634 220 unsigned int nr_entries;
891d6b55
MD
221
222 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
223};
224
180901e6
MD
225/*
226 * Event field description
227 *
228 * IMPORTANT: this structure is part of the ABI between the probe and
229 * UST. Fields need to be only added at the end, never reordered, never
230 * removed.
25cff019
MD
231 *
232 * The field @struct_size should be used to determine the size of the
233 * structure. It should be queried before using additional fields added
234 * at the end of the structure.
180901e6 235 */
8020ceb5 236
25cff019
MD
237struct lttng_ust_event_field {
238 uint32_t struct_size;
239
8020ceb5 240 const char *name;
a084756d 241 struct lttng_ust_type_common *type;
25cff019
MD
242 unsigned int nowrite:1, /* do not write into trace */
243 nofilter:1; /* do not consider for filter */
244
245 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
246};
247
37d5e202 248
dc11f93f
MD
249/*
250 * IMPORTANT: this structure is part of the ABI between the probe and
251 * UST. Fields need to be only added at the end, never reordered, never
252 * removed.
253 *
254 * The field @struct_size should be used to determine the size of the
255 * structure. It should be queried before using additional fields added
256 * at the end of the structure.
257 */
258struct lttng_ust_event_desc {
259 uint32_t struct_size; /* Size of this structure. */
dc177d11 260
37d5e202 261 const char *name;
fbdeb5ec 262 void (*probe_callback)(void);
a084756d
MD
263 struct lttng_event_ctx *ctx; /* context */
264 struct lttng_ust_event_field **fields; /* event payload */
37d5e202
MD
265 unsigned int nr_fields;
266 const int **loglevel;
dc11f93f
MD
267 const char *signature; /* Argument types/names received */
268 const char **model_emf_uri;
269
270 /* End of base ABI. Fields below should be used after checking struct_size. */
37d5e202
MD
271};
272
dc11f93f
MD
273/*
274 * IMPORTANT: this structure is part of the ABI between the probe and
275 * UST. Fields need to be only added at the end, never reordered, never
276 * removed.
277 *
278 * The field @struct_size should be used to determine the size of the
279 * structure. It should be queried before using additional fields added
280 * at the end of the structure.
281 */
282struct lttng_ust_probe_desc {
283 uint32_t struct_size; /* Size of this structure. */
284
37d5e202 285 const char *provider;
a084756d 286 struct lttng_ust_event_desc **event_desc;
37d5e202
MD
287 unsigned int nr_events;
288 struct cds_list_head head; /* chain registered probes */
6715d7d1
MD
289 struct cds_list_head lazy_init_head;
290 int lazy; /* lazy registration */
71d31690
MD
291 uint32_t major;
292 uint32_t minor;
dc11f93f
MD
293
294 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
295};
296
37d5e202
MD
297/* Data structures used by the tracer. */
298
8020ceb5 299/*
7dd08bec
MD
300 * lttng_event structure is referred to by the tracing fast path. It
301 * must be kept small.
180901e6
MD
302 *
303 * IMPORTANT: this structure is part of the ABI between the probe and
304 * UST. Fields need to be only added at the end, never reordered, never
305 * removed.
8020ceb5 306 */
68bb7559 307
daacdbfc 308struct lttng_ust_ctx;
80333dfa
MD
309struct lttng_ust_event_common_private;
310
808edfc8
MD
311enum lttng_ust_event_type {
312 LTTNG_UST_EVENT_TYPE_RECORDER = 0,
313 LTTNG_UST_EVENT_TYPE_NOTIFIER = 1,
314};
315
a2e4d05e
MD
316/*
317 * Result of the run_filter() callback.
318 */
319enum lttng_ust_event_filter_result {
320 LTTNG_UST_EVENT_FILTER_ACCEPT = 0,
321 LTTNG_UST_EVENT_FILTER_REJECT = 1,
322};
323
93cfd247 324/*
6d35572a
MD
325 * IMPORTANT: this structure is part of the ABI between the probe and
326 * UST. Fields need to be only added at the end, never reordered, never
327 * removed.
328 *
93cfd247
MD
329 * struct lttng_ust_event_common is the common ancestor of the various
330 * public event actions. Inheritance is done by composition: The parent
331 * has a pointer to its child, and the child has a pointer to its
332 * parent. Inheritance of those public structures is done by composition
333 * to ensure both parent and child structures can be extended.
334 *
335 * The field @struct_size should be used to determine the size of the
336 * structure. It should be queried before using additional fields added
337 * at the end of the structure.
338 */
7ee76145 339struct lttng_ust_event_common {
80333dfa 340 uint32_t struct_size; /* Size of this structure. */
dc177d11 341
80333dfa
MD
342 struct lttng_ust_event_common_private *priv; /* Private event interface */
343
808edfc8 344 enum lttng_ust_event_type type;
ba99fbe2
MD
345 void *child; /* Pointer to child, for inheritance by aggregation. */
346
80333dfa 347 int enabled;
a2e4d05e
MD
348 int eval_filter; /* Need to evaluate filters */
349 int (*run_filter)(struct lttng_ust_event_common *event,
350 const char *stack_data,
351 void *filter_ctx);
93cfd247
MD
352
353 /* End of base ABI. Fields below should be used after checking struct_size. */
80333dfa
MD
354};
355
2e70391c 356struct lttng_ust_event_recorder_private;
68bb7559 357
93cfd247 358/*
6d35572a
MD
359 * IMPORTANT: this structure is part of the ABI between the probe and
360 * UST. Fields need to be only added at the end, never reordered, never
361 * removed.
362 *
93cfd247
MD
363 * struct lttng_ust_event_recorder is the action for recording events
364 * into a ring buffer. It inherits from struct lttng_ust_event_common
365 * by composition to ensure both parent and child structure are
366 * extensible.
367 *
368 * The field @struct_size should be used to determine the size of the
369 * structure. It should be queried before using additional fields added
370 * at the end of the structure.
371 */
2e70391c
MD
372struct lttng_ust_event_recorder {
373 uint32_t struct_size; /* Size of this structure. */
dc177d11 374
ba99fbe2 375 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
2e70391c 376 struct lttng_ust_event_recorder_private *priv; /* Private event record interface */
68bb7559 377
8020ceb5 378 unsigned int id;
e7bc0ef6 379 struct lttng_ust_channel_buffer *chan;
93cfd247
MD
380
381 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
382};
383
a2e4d05e
MD
384/*
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 *
389 * The field @struct_size should be used to determine the size of the
390 * structure. It should be queried before using additional fields added
391 * at the end of the structure.
392 */
393struct lttng_ust_notification_ctx {
394 uint32_t struct_size; /* Size of this structure. */
395 int eval_capture; /* Capture evaluation available. */
396
397 /* End of base ABI. Fields below should be used after checking struct_size. */
398};
399
115db533
MD
400struct lttng_ust_event_notifier_private;
401
93cfd247 402/*
6d35572a
MD
403 * IMPORTANT: this structure is part of the ABI between the probe and
404 * UST. Fields need to be only added at the end, never reordered, never
405 * removed.
406 *
93cfd247
MD
407 * struct lttng_ust_event_notifier is the action for sending
408 * notifications. It inherits from struct lttng_ust_event_common
409 * by composition to ensure both parent and child structure are
410 * extensible.
411 *
412 * The field @struct_size should be used to determine the size of the
413 * structure. It should be queried before using additional fields added
414 * at the end of the structure.
415 */
d7d45c0d 416struct lttng_ust_event_notifier {
115db533 417 uint32_t struct_size; /* Size of this structure. */
105cf2eb 418
ba99fbe2 419 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
115db533
MD
420 struct lttng_ust_event_notifier_private *priv; /* Private event notifier interface */
421
a2e4d05e 422 int eval_capture; /* Need to evaluate capture */
d7d45c0d 423 void (*notification_send)(struct lttng_ust_event_notifier *event_notifier,
a2e4d05e
MD
424 const char *stack_data,
425 struct lttng_ust_notification_ctx *notif_ctx);
93cfd247
MD
426
427 /* End of base ABI. Fields below should be used after checking struct_size. */
d8d2416d
FD
428};
429
5198080d 430struct lttng_ust_lib_ring_buffer_channel;
a880bae5 431struct lttng_ust_channel_ops_private;
8d8a24c8 432
180901e6
MD
433/*
434 * IMPORTANT: this structure is part of the ABI between the probe and
435 * UST. Fields need to be only added at the end, never reordered, never
436 * removed.
49926dbd
MD
437 *
438 * The field @struct_size should be used to determine the size of the
439 * structure. It should be queried before using additional fields added
440 * at the end of the structure.
180901e6 441 */
49926dbd
MD
442struct lttng_ust_channel_ops {
443 uint32_t struct_size;
444
a880bae5
MD
445 struct lttng_ust_channel_ops_private *priv; /* Private channel ops interface */
446
4cfec15c 447 int (*event_reserve)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
8020ceb5 448 uint32_t event_id);
4cfec15c 449 void (*event_commit)(struct lttng_ust_lib_ring_buffer_ctx *ctx);
74d81a6c
MD
450 void (*event_write)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
451 const void *src, size_t len);
a44c74d9
MD
452 void (*event_strcpy)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
453 const char *src, size_t len);
27927814
MD
454 void (*event_strcpy_pad)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
455 const char *src, size_t len);
49926dbd
MD
456
457 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
458};
459
e7bc0ef6
MD
460enum lttng_ust_channel_type {
461 LTTNG_UST_CHANNEL_TYPE_BUFFER = 0,
462};
463
464struct lttng_ust_channel_common_private;
465
180901e6
MD
466/*
467 * IMPORTANT: this structure is part of the ABI between the probe and
468 * UST. Fields need to be only added at the end, never reordered, never
469 * removed.
e7bc0ef6
MD
470 *
471 * The field @struct_size should be used to determine the size of the
472 * structure. It should be queried before using additional fields added
473 * at the end of the structure.
180901e6 474 */
e7bc0ef6
MD
475struct lttng_ust_channel_common {
476 uint32_t struct_size; /* Size of this structure. */
477
478 struct lttng_ust_channel_common_private *priv; /* Private channel interface */
479
480 enum lttng_ust_channel_type type;
481 void *child; /* Pointer to child, for inheritance by aggregation. */
482
976fe9ea 483 int enabled;
f69fe5fb 484 struct lttng_ust_session *session;
e7bc0ef6
MD
485
486 /* End of base ABI. Fields below should be used after checking struct_size. */
487};
488
489struct lttng_ust_channel_buffer_private;
490
491/*
492 * IMPORTANT: this structure is part of the ABI between the probe and
493 * UST. Fields need to be only added at the end, never reordered, never
494 * removed.
495 *
496 * The field @struct_size should be used to determine the size of the
497 * structure. It should be queried before using additional fields added
498 * at the end of the structure.
499 */
500struct lttng_ust_channel_buffer {
501 uint32_t struct_size; /* Size of this structure. */
502
503 struct lttng_ust_channel_common *parent; /* Inheritance by aggregation. */
504 struct lttng_ust_channel_buffer_private *priv; /* Private channel buffer interface */
505
a084756d 506 struct lttng_ust_channel_ops *ops;
e7bc0ef6
MD
507 struct lttng_ust_lib_ring_buffer_channel *chan; /* Channel buffers */
508 struct lttng_ust_shm_handle *handle; /* shared-memory handle */
a3f61e7f 509
e7bc0ef6 510 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
511};
512
2a9d9339
MD
513/*
514 * IMPORTANT: this structure is part of the ABI between the probe and
515 * UST. Fields need to be only added at the end, never reordered, never
516 * removed.
517 *
518 * The field @struct_size should be used to determine the size of the
519 * structure. It should be queried before using additional fields added
520 * at the end of the structure.
521 */
522struct lttng_ust_stack_ctx {
523 uint32_t struct_size; /* Size of this structure */
524
2e70391c 525 struct lttng_ust_event_recorder *event_recorder;
2a9d9339
MD
526
527 /* End of base ABI. Fields below should be used after checking struct_size. */
53569322
MD
528};
529
bdb12629
MD
530struct lttng_ust_session_private;
531
180901e6
MD
532/*
533 * IMPORTANT: this structure is part of the ABI between the probe and
534 * UST. Fields need to be only added at the end, never reordered, never
535 * removed.
6d35572a
MD
536 *
537 * The field @struct_size should be used to determine the size of the
538 * structure. It should be queried before using additional fields added
539 * at the end of the structure.
180901e6 540 */
f69fe5fb 541struct lttng_ust_session {
bd640d74 542 uint32_t struct_size; /* Size of this structure */
dc177d11 543
bdb12629
MD
544 struct lttng_ust_session_private *priv; /* Private session interface */
545
e58095ef 546 int active; /* Is trace session active ? */
6d35572a
MD
547
548 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
549};
550
dc11f93f
MD
551int lttng_ust_probe_register(struct lttng_ust_probe_desc *desc);
552void lttng_ust_probe_unregister(struct lttng_ust_probe_desc *desc);
9f3fdbc6 553
fc80554e 554/*
0af0bdb2
MJ
555 * Applications that change their procname and need the new value to be
556 * reflected in the procname event context have to call this function to clear
557 * the internally cached value. This should not be called from a signal
558 * handler.
fc80554e 559 */
0af0bdb2 560void lttng_ust_context_procname_reset(void);
d58d1454 561
6453d237
MD
562#ifdef __cplusplus
563}
564#endif
565
51489cad 566#endif /* _LTTNG_UST_EVENTS_H */
This page took 0.06922 seconds and 4 git commands to generate.