2 * SPDX-License-Identifier: MIT
4 * Copyright 2019 (c) Francis Deslauriers <francis.deslauriers@efficios.com>
7 #ifndef _UST_COMMON_UST_EVENTS_H
8 #define _UST_COMMON_UST_EVENTS_H
13 #include <urcu/list.h>
14 #include <urcu/hlist.h>
16 #include <lttng/ust-events.h>
18 #include "common/macros.h"
19 #include "common/ust-context-provider.h"
22 * The context procname length is part of the LTTng-UST ABI.
23 * TODO: At the next breaking protocol bump, all users of this macro
24 * should instead use LTTNG_UST_ABI_PROCNAME_LEN.
26 #define LTTNG_UST_CONTEXT_PROCNAME_LEN 17
28 struct lttng_ust_abi_obj
;
29 struct lttng_event_notifier_group
;
31 union lttng_ust_abi_args
{
41 struct lttng_ust_abi_field_iter entry
;
47 int event_notifier_notif_fd
;
48 } event_notifier_handle
;
57 struct lttng_ust_abi_objd_ops
{
58 long (*cmd
)(int objd
, unsigned int cmd
, unsigned long arg
,
59 union lttng_ust_abi_args
*args
, void *owner
);
60 int (*release
)(int objd
);
63 enum lttng_enabler_format_type
{
64 LTTNG_ENABLER_FORMAT_STAR_GLOB
,
65 LTTNG_ENABLER_FORMAT_EVENT
,
69 * Enabler field, within whatever object is enabling an event. Target of
72 struct lttng_enabler
{
73 enum lttng_enabler_format_type format_type
;
75 /* head list of struct lttng_ust_filter_bytecode_node */
76 struct cds_list_head filter_bytecode_head
;
77 /* head list of struct lttng_ust_excluder_node */
78 struct cds_list_head excluder_head
;
80 struct lttng_ust_abi_event event_param
;
81 unsigned int enabled
:1;
84 struct lttng_event_enabler
{
85 struct lttng_enabler base
;
86 struct cds_list_head node
; /* per-session list of enablers */
87 struct lttng_ust_channel_buffer
*chan
;
89 * Unused, but kept around to make it explicit that the tracer can do
92 struct lttng_ust_ctx
*ctx
;
95 struct lttng_event_notifier_enabler
{
96 struct lttng_enabler base
;
97 uint64_t error_counter_index
;
98 struct cds_list_head node
; /* per-app list of event_notifier enablers */
99 struct cds_list_head capture_bytecode_head
;
100 struct lttng_event_notifier_group
*group
; /* weak ref */
101 uint64_t user_token
; /* User-provided token */
102 uint64_t num_captures
;
105 enum lttng_ust_bytecode_type
{
106 LTTNG_UST_BYTECODE_TYPE_FILTER
,
107 LTTNG_UST_BYTECODE_TYPE_CAPTURE
,
110 struct lttng_ust_bytecode_node
{
111 enum lttng_ust_bytecode_type type
;
112 struct cds_list_head node
;
113 struct lttng_enabler
*enabler
;
116 uint32_t reloc_offset
;
123 * Bytecode interpreter return value.
125 enum lttng_ust_bytecode_interpreter_ret
{
126 LTTNG_UST_BYTECODE_INTERPRETER_ERROR
= -1,
127 LTTNG_UST_BYTECODE_INTERPRETER_OK
= 0,
130 struct lttng_interpreter_output
;
131 struct lttng_ust_bytecode_runtime_private
;
133 enum lttng_ust_bytecode_filter_result
{
134 LTTNG_UST_BYTECODE_FILTER_ACCEPT
= 0,
135 LTTNG_UST_BYTECODE_FILTER_REJECT
= 1,
138 struct lttng_ust_bytecode_filter_ctx
{
139 enum lttng_ust_bytecode_filter_result result
;
142 struct lttng_ust_excluder_node
{
143 struct cds_list_head node
;
144 struct lttng_enabler
*enabler
;
146 * struct lttng_ust_event_exclusion had variable sized array,
147 * must be last field.
149 struct lttng_ust_abi_event_exclusion excluder
;
152 /* Data structures used by the tracer. */
154 struct tp_list_entry
{
155 struct lttng_ust_abi_tracepoint_iter tp
;
156 struct cds_list_head head
;
159 struct lttng_ust_tracepoint_list
{
160 struct tp_list_entry
*iter
;
161 struct cds_list_head head
;
164 struct tp_field_list_entry
{
165 struct lttng_ust_abi_field_iter field
;
166 struct cds_list_head head
;
169 struct lttng_ust_field_list
{
170 struct tp_field_list_entry
*iter
;
171 struct cds_list_head head
;
175 * Objects in a linked-list of enablers, owned by an event or event_notifier.
176 * This is used because an event (or a event_notifier) can be enabled by more
177 * than one enabler and we want a quick way to iterate over all enablers of an
180 * For example, event rules "my_app:a*" and "my_app:ab*" will both match the
181 * event with the name "my_app:abc".
183 struct lttng_enabler_ref
{
184 struct cds_list_head node
; /* enabler ref list */
185 struct lttng_enabler
*ref
; /* backward ref */
188 #define LTTNG_COUNTER_DIMENSION_MAX 8
189 struct lttng_counter_dimension
{
191 uint64_t underflow_index
;
192 uint64_t overflow_index
;
193 uint8_t has_underflow
;
194 uint8_t has_overflow
;
197 struct lttng_counter_ops
{
198 struct lib_counter
*(*counter_create
)(size_t nr_dimensions
,
199 const struct lttng_counter_dimension
*dimensions
,
200 int64_t global_sum_step
,
201 int global_counter_fd
,
202 int nr_counter_cpu_fds
,
203 const int *counter_cpu_fds
,
205 void (*counter_destroy
)(struct lib_counter
*counter
);
206 int (*counter_add
)(struct lib_counter
*counter
,
207 const size_t *dimension_indexes
, int64_t v
);
208 int (*counter_read
)(struct lib_counter
*counter
,
209 const size_t *dimension_indexes
, int cpu
,
210 int64_t *value
, bool *overflow
, bool *underflow
);
211 int (*counter_aggregate
)(struct lib_counter
*counter
,
212 const size_t *dimension_indexes
, int64_t *value
,
213 bool *overflow
, bool *underflow
);
214 int (*counter_clear
)(struct lib_counter
*counter
, const size_t *dimension_indexes
);
217 struct lttng_counter
{
219 struct lttng_event_notifier_group
*event_notifier_group
; /* owner */
220 struct lttng_counter_transport
*transport
;
221 struct lib_counter
*counter
;
222 struct lttng_counter_ops
*ops
;
225 #define LTTNG_UST_EVENT_HT_BITS 12
226 #define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
228 struct lttng_ust_event_ht
{
229 struct cds_hlist_head table
[LTTNG_UST_EVENT_HT_SIZE
];
232 #define LTTNG_UST_EVENT_NOTIFIER_HT_BITS 12
233 #define LTTNG_UST_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_UST_EVENT_NOTIFIER_HT_BITS)
234 struct lttng_ust_event_notifier_ht
{
235 struct cds_hlist_head table
[LTTNG_UST_EVENT_NOTIFIER_HT_SIZE
];
238 #define LTTNG_UST_ENUM_HT_BITS 12
239 #define LTTNG_UST_ENUM_HT_SIZE (1U << LTTNG_UST_ENUM_HT_BITS)
241 struct lttng_ust_enum_ht
{
242 struct cds_hlist_head table
[LTTNG_UST_ENUM_HT_SIZE
];
245 struct lttng_event_notifier_group
{
249 struct cds_list_head node
; /* Event notifier group handle list */
250 struct cds_list_head enablers_head
;
251 struct cds_list_head event_notifiers_head
; /* list of event_notifiers */
252 struct lttng_ust_event_notifier_ht event_notifiers_ht
; /* hashtable of event_notifiers */
253 struct lttng_ust_ctx
*ctx
; /* contexts for filters. */
255 struct lttng_counter
*error_counter
;
256 size_t error_counter_len
;
259 struct lttng_transport
{
261 struct cds_list_head node
;
262 struct lttng_ust_channel_buffer_ops ops
;
263 const struct lttng_ust_ring_buffer_config
*client_config
;
266 struct lttng_counter_transport
{
268 struct cds_list_head node
;
269 struct lttng_counter_ops ops
;
270 const struct lib_counter_config
*client_config
;
273 struct lttng_ust_event_common_private
{
274 struct lttng_ust_event_common
*pub
; /* Public event interface */
276 const struct lttng_ust_event_desc
*desc
;
277 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
278 struct cds_list_head enablers_ref_head
;
279 int registered
; /* has reg'd tracepoint probe */
282 int has_enablers_without_filter_bytecode
;
283 /* list of struct lttng_ust_bytecode_runtime, sorted by seqnum */
284 struct cds_list_head filter_bytecode_runtime_head
;
287 struct lttng_ust_event_recorder_private
{
288 struct lttng_ust_event_common_private parent
;
290 struct lttng_ust_event_recorder
*pub
; /* Public event interface */
291 struct cds_list_head node
; /* Event recorder list */
292 struct cds_hlist_node hlist
; /* Hash table of event recorders */
293 struct lttng_ust_ctx
*ctx
;
297 struct lttng_ust_event_notifier_private
{
298 struct lttng_ust_event_common_private parent
;
300 struct lttng_ust_event_notifier
*pub
; /* Public event notifier interface */
301 struct lttng_event_notifier_group
*group
; /* weak ref */
302 size_t num_captures
; /* Needed to allocate the msgpack array. */
303 uint64_t error_counter_index
;
304 struct cds_list_head node
; /* Event notifier list */
305 struct cds_hlist_node hlist
; /* Hash table of event notifiers */
306 struct cds_list_head capture_bytecode_runtime_head
;
309 struct lttng_ust_bytecode_runtime
{
310 enum lttng_ust_bytecode_type type
;
311 struct lttng_ust_bytecode_node
*bc
;
313 int (*interpreter_func
)(struct lttng_ust_bytecode_runtime
*bytecode_runtime
,
314 const char *interpreter_stack_data
,
315 struct lttng_ust_probe_ctx
*probe_ctx
,
317 struct cds_list_head node
; /* list of bytecode runtime in event */
319 * Pointer to a URCU-protected pointer owned by an `struct
320 * lttng_session`or `struct lttng_event_notifier_group`.
322 struct lttng_ust_ctx
**pctx
;
325 struct lttng_ust_session_private
{
326 struct lttng_ust_session
*pub
; /* Public session interface */
328 int been_active
; /* Been active ? */
329 int objd
; /* Object associated */
330 struct cds_list_head chan_head
; /* Channel list head */
331 struct cds_list_head events_head
; /* list of events */
332 struct cds_list_head node
; /* Session list */
334 /* List of enablers */
335 struct cds_list_head enablers_head
;
336 struct lttng_ust_event_ht events_ht
; /* ht of events */
337 void *owner
; /* object owner */
338 int tstate
:1; /* Transient enable state */
340 int statedump_pending
:1;
342 struct lttng_ust_enum_ht enums_ht
; /* ht of enumerations */
343 struct cds_list_head enums_head
;
344 struct lttng_ust_ctx
*ctx
; /* contexts for filters. */
346 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
347 bool uuid_set
; /* Is uuid set ? */
351 const struct lttng_ust_enum_desc
*desc
;
352 struct lttng_ust_session
*session
;
353 struct cds_list_head node
; /* Enum list in session */
354 struct cds_hlist_node hlist
; /* Session ht of enums */
355 uint64_t id
; /* Enumeration ID in sessiond */
358 struct lttng_ust_shm_handle
;
360 struct lttng_ust_channel_buffer_ops_private
{
361 struct lttng_ust_channel_buffer_ops
*pub
; /* Public channel buffer ops interface */
363 struct lttng_ust_channel_buffer
*(*channel_create
)(const char *name
,
365 size_t subbuf_size
, size_t num_subbuf
,
366 unsigned int switch_timer_interval
,
367 unsigned int read_timer_interval
,
370 const int *stream_fds
, int nr_stream_fds
,
371 int64_t blocking_timeout
);
372 void (*channel_destroy
)(struct lttng_ust_channel_buffer
*chan
);
374 * packet_avail_size returns the available size in the current
375 * packet. Note that the size returned is only a hint, since it
376 * may change due to concurrent writes.
378 size_t (*packet_avail_size
)(struct lttng_ust_channel_buffer
*chan
);
379 int (*is_finalized
)(struct lttng_ust_channel_buffer
*chan
);
380 int (*is_disabled
)(struct lttng_ust_channel_buffer
*chan
);
381 int (*flush_buffer
)(struct lttng_ust_channel_buffer
*chan
);
384 struct lttng_ust_channel_common_private
{
385 struct lttng_ust_channel_common
*pub
; /* Public channel interface */
387 int objd
; /* Object associated with channel. */
388 int tstate
:1; /* Transient enable state */
391 struct lttng_ust_channel_buffer_private
{
392 struct lttng_ust_channel_common_private parent
;
394 struct lttng_ust_channel_buffer
*pub
; /* Public channel buffer interface */
395 struct cds_list_head node
; /* Channel list in session */
396 int header_type
; /* 0: unset, 1: compact, 2: large */
397 unsigned int id
; /* Channel ID */
398 enum lttng_ust_abi_chan_type type
;
399 struct lttng_ust_ctx
*ctx
;
400 struct lttng_ust_ring_buffer_channel
*rb_chan
; /* Ring buffer channel */
401 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
405 * IMPORTANT: this structure is part of the ABI between the consumer
406 * daemon and the UST library within traced applications. Changing it
407 * breaks the UST communication protocol.
409 * TODO: remove unused fields on next UST communication protocol
412 struct lttng_ust_abi_channel_config
{
418 unsigned int _deprecated1
;
419 unsigned int _deprecated2
;
420 struct cds_list_head unused6
;
424 unsigned int _deprecated3
:1;
428 enum lttng_ust_abi_chan_type unused10
;
429 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
433 /* Global (filter), event and channel contexts. */
434 struct lttng_ust_ctx
{
435 struct lttng_ust_ctx_field
*fields
;
436 unsigned int nr_fields
;
437 unsigned int allocated_fields
;
438 unsigned int largest_align
;
441 struct lttng_ust_registered_probe
{
442 const struct lttng_ust_probe_desc
*desc
;
444 struct cds_list_head head
; /* chain registered probes */
445 struct cds_list_head lazy_init_head
;
446 int lazy
; /* lazy registration */
453 struct lttng_ust_ctx_field
{
454 const struct lttng_ust_event_field
*event_field
;
455 size_t (*get_size
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
457 void (*record
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
458 struct lttng_ust_ring_buffer_ctx
*ctx
,
459 struct lttng_ust_channel_buffer
*chan
);
460 void (*get_value
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
461 struct lttng_ust_ctx_value
*value
);
462 void (*destroy
)(void *priv
);
467 const struct lttng_ust_type_integer
*lttng_ust_get_type_integer(const struct lttng_ust_type_common
*type
)
469 if (type
->type
!= lttng_ust_type_integer
)
471 return caa_container_of(type
, const struct lttng_ust_type_integer
, parent
);
475 const struct lttng_ust_type_float
*lttng_ust_get_type_float(const struct lttng_ust_type_common
*type
)
477 if (type
->type
!= lttng_ust_type_float
)
479 return caa_container_of(type
, const struct lttng_ust_type_float
, parent
);
483 const struct lttng_ust_type_string
*lttng_ust_get_type_string(const struct lttng_ust_type_common
*type
)
485 if (type
->type
!= lttng_ust_type_string
)
487 return caa_container_of(type
, const struct lttng_ust_type_string
, parent
);
491 const struct lttng_ust_type_enum
*lttng_ust_get_type_enum(const struct lttng_ust_type_common
*type
)
493 if (type
->type
!= lttng_ust_type_enum
)
495 return caa_container_of(type
, const struct lttng_ust_type_enum
, parent
);
499 const struct lttng_ust_type_array
*lttng_ust_get_type_array(const struct lttng_ust_type_common
*type
)
501 if (type
->type
!= lttng_ust_type_array
)
503 return caa_container_of(type
, const struct lttng_ust_type_array
, parent
);
507 const struct lttng_ust_type_sequence
*lttng_ust_get_type_sequence(const struct lttng_ust_type_common
*type
)
509 if (type
->type
!= lttng_ust_type_sequence
)
511 return caa_container_of(type
, const struct lttng_ust_type_sequence
, parent
);
515 const struct lttng_ust_type_struct
*lttng_ust_get_type_struct(const struct lttng_ust_type_common
*type
)
517 if (type
->type
!= lttng_ust_type_struct
)
519 return caa_container_of(type
, const struct lttng_ust_type_struct
, parent
);
522 #define lttng_ust_static_type_integer(_size, _alignment, _signedness, _byte_order, _base) \
523 ((const struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_type_integer, { \
525 .type = lttng_ust_type_integer, \
527 .struct_size = sizeof(struct lttng_ust_type_integer), \
529 .alignment = (_alignment), \
530 .signedness = (_signedness), \
531 .reverse_byte_order = (_byte_order) != LTTNG_UST_BYTE_ORDER, \
535 #define lttng_ust_static_type_array_text(_length) \
536 ((const struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_type_array, { \
538 .type = lttng_ust_type_array, \
540 .struct_size = sizeof(struct lttng_ust_type_array), \
541 .length = (_length), \
543 .encoding = lttng_ust_string_encoding_UTF8, \
544 .elem_type = lttng_ust_static_type_integer(sizeof(char) * CHAR_BIT, \
545 lttng_ust_rb_alignof(char) * CHAR_BIT, lttng_ust_is_signed_type(char), \
546 LTTNG_UST_BYTE_ORDER, 10), \
549 #define lttng_ust_static_event_field(_name, _type, _nowrite, _nofilter) \
550 LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_event_field, { \
551 .struct_size = sizeof(struct lttng_ust_event_field), \
554 .nowrite = (_nowrite), \
555 .nofilter = (_nofilter), \
558 #define lttng_ust_static_ctx_field(_event_field, _get_size, _record, _get_value, _destroy, _priv) \
559 LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_ctx_field, { \
560 .event_field = (_event_field), \
561 .get_size = (_get_size), \
562 .record = (_record), \
563 .get_value = (_get_value), \
564 .destroy = (_destroy), \
569 struct lttng_enabler
*lttng_event_enabler_as_enabler(
570 struct lttng_event_enabler
*event_enabler
)
572 return &event_enabler
->base
;
576 struct lttng_enabler
*lttng_event_notifier_enabler_as_enabler(
577 struct lttng_event_notifier_enabler
*event_notifier_enabler
)
579 return &event_notifier_enabler
->base
;
584 /* This is ABI between liblttng-ust and liblttng-ust-dl */
585 void lttng_ust_dl_update(void *ip
);
587 struct lttng_enum
*lttng_ust_enum_get_from_desc(struct lttng_ust_session
*session
,
588 const struct lttng_ust_enum_desc
*enum_desc
)
589 __attribute__((visibility("hidden")));
592 #endif /* _UST_COMMON_UST_EVENTS_H */