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"
21 struct lttng_ust_abi_obj
;
22 struct lttng_event_notifier_group
;
24 union lttng_ust_abi_args
{
34 struct lttng_ust_abi_field_iter entry
;
40 int event_notifier_notif_fd
;
41 } event_notifier_handle
;
50 struct lttng_ust_abi_objd_ops
{
51 long (*cmd
)(int objd
, unsigned int cmd
, unsigned long arg
,
52 union lttng_ust_abi_args
*args
, void *owner
);
53 int (*release
)(int objd
);
56 enum lttng_enabler_format_type
{
57 LTTNG_ENABLER_FORMAT_STAR_GLOB
,
58 LTTNG_ENABLER_FORMAT_EVENT
,
62 * Enabler field, within whatever object is enabling an event. Target of
65 struct lttng_enabler
{
66 enum lttng_enabler_format_type format_type
;
68 /* head list of struct lttng_ust_filter_bytecode_node */
69 struct cds_list_head filter_bytecode_head
;
70 /* head list of struct lttng_ust_excluder_node */
71 struct cds_list_head excluder_head
;
73 struct lttng_ust_abi_event event_param
;
74 unsigned int enabled
:1;
77 struct lttng_event_enabler
{
78 struct lttng_enabler base
;
79 struct cds_list_head node
; /* per-session list of enablers */
80 struct lttng_ust_channel_buffer
*chan
;
82 * Unused, but kept around to make it explicit that the tracer can do
85 struct lttng_ust_ctx
*ctx
;
88 struct lttng_event_notifier_enabler
{
89 struct lttng_enabler base
;
90 uint64_t error_counter_index
;
91 struct cds_list_head node
; /* per-app list of event_notifier enablers */
92 struct cds_list_head capture_bytecode_head
;
93 struct lttng_event_notifier_group
*group
; /* weak ref */
94 uint64_t user_token
; /* User-provided token */
95 uint64_t num_captures
;
98 enum lttng_ust_bytecode_type
{
99 LTTNG_UST_BYTECODE_TYPE_FILTER
,
100 LTTNG_UST_BYTECODE_TYPE_CAPTURE
,
103 struct lttng_ust_bytecode_node
{
104 enum lttng_ust_bytecode_type type
;
105 struct cds_list_head node
;
106 struct lttng_enabler
*enabler
;
109 uint32_t reloc_offset
;
116 * Bytecode interpreter return value.
118 enum lttng_ust_bytecode_interpreter_ret
{
119 LTTNG_UST_BYTECODE_INTERPRETER_ERROR
= -1,
120 LTTNG_UST_BYTECODE_INTERPRETER_OK
= 0,
123 struct lttng_interpreter_output
;
124 struct lttng_ust_bytecode_runtime_private
;
126 enum lttng_ust_bytecode_filter_result
{
127 LTTNG_UST_BYTECODE_FILTER_ACCEPT
= 0,
128 LTTNG_UST_BYTECODE_FILTER_REJECT
= 1,
131 struct lttng_ust_bytecode_filter_ctx
{
132 enum lttng_ust_bytecode_filter_result result
;
135 struct lttng_ust_excluder_node
{
136 struct cds_list_head node
;
137 struct lttng_enabler
*enabler
;
139 * struct lttng_ust_event_exclusion had variable sized array,
140 * must be last field.
142 struct lttng_ust_abi_event_exclusion excluder
;
145 /* Data structures used by the tracer. */
147 struct tp_list_entry
{
148 struct lttng_ust_abi_tracepoint_iter tp
;
149 struct cds_list_head head
;
152 struct lttng_ust_tracepoint_list
{
153 struct tp_list_entry
*iter
;
154 struct cds_list_head head
;
157 struct tp_field_list_entry
{
158 struct lttng_ust_abi_field_iter field
;
159 struct cds_list_head head
;
162 struct lttng_ust_field_list
{
163 struct tp_field_list_entry
*iter
;
164 struct cds_list_head head
;
168 * Objects in a linked-list of enablers, owned by an event or event_notifier.
169 * This is used because an event (or a event_notifier) can be enabled by more
170 * than one enabler and we want a quick way to iterate over all enablers of an
173 * For example, event rules "my_app:a*" and "my_app:ab*" will both match the
174 * event with the name "my_app:abc".
176 struct lttng_enabler_ref
{
177 struct cds_list_head node
; /* enabler ref list */
178 struct lttng_enabler
*ref
; /* backward ref */
181 #define LTTNG_COUNTER_DIMENSION_MAX 8
182 struct lttng_counter_dimension
{
184 uint64_t underflow_index
;
185 uint64_t overflow_index
;
186 uint8_t has_underflow
;
187 uint8_t has_overflow
;
190 struct lttng_counter_ops
{
191 struct lib_counter
*(*counter_create
)(size_t nr_dimensions
,
192 const struct lttng_counter_dimension
*dimensions
,
193 int64_t global_sum_step
,
194 int global_counter_fd
,
195 int nr_counter_cpu_fds
,
196 const int *counter_cpu_fds
,
198 void (*counter_destroy
)(struct lib_counter
*counter
);
199 int (*counter_add
)(struct lib_counter
*counter
,
200 const size_t *dimension_indexes
, int64_t v
);
201 int (*counter_read
)(struct lib_counter
*counter
,
202 const size_t *dimension_indexes
, int cpu
,
203 int64_t *value
, bool *overflow
, bool *underflow
);
204 int (*counter_aggregate
)(struct lib_counter
*counter
,
205 const size_t *dimension_indexes
, int64_t *value
,
206 bool *overflow
, bool *underflow
);
207 int (*counter_clear
)(struct lib_counter
*counter
, const size_t *dimension_indexes
);
210 struct lttng_counter
{
212 struct lttng_event_notifier_group
*event_notifier_group
; /* owner */
213 struct lttng_counter_transport
*transport
;
214 struct lib_counter
*counter
;
215 struct lttng_counter_ops
*ops
;
218 #define LTTNG_UST_EVENT_HT_BITS 12
219 #define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
221 struct lttng_ust_event_ht
{
222 struct cds_hlist_head table
[LTTNG_UST_EVENT_HT_SIZE
];
225 #define LTTNG_UST_EVENT_NOTIFIER_HT_BITS 12
226 #define LTTNG_UST_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_UST_EVENT_NOTIFIER_HT_BITS)
227 struct lttng_ust_event_notifier_ht
{
228 struct cds_hlist_head table
[LTTNG_UST_EVENT_NOTIFIER_HT_SIZE
];
231 #define LTTNG_UST_ENUM_HT_BITS 12
232 #define LTTNG_UST_ENUM_HT_SIZE (1U << LTTNG_UST_ENUM_HT_BITS)
234 struct lttng_ust_enum_ht
{
235 struct cds_hlist_head table
[LTTNG_UST_ENUM_HT_SIZE
];
238 struct lttng_event_notifier_group
{
242 struct cds_list_head node
; /* Event notifier group handle list */
243 struct cds_list_head enablers_head
;
244 struct cds_list_head event_notifiers_head
; /* list of event_notifiers */
245 struct lttng_ust_event_notifier_ht event_notifiers_ht
; /* hashtable of event_notifiers */
246 struct lttng_ust_ctx
*ctx
; /* contexts for filters. */
248 struct lttng_counter
*error_counter
;
249 size_t error_counter_len
;
252 struct lttng_transport
{
254 struct cds_list_head node
;
255 struct lttng_ust_channel_buffer_ops ops
;
256 const struct lttng_ust_ring_buffer_config
*client_config
;
259 struct lttng_counter_transport
{
261 struct cds_list_head node
;
262 struct lttng_counter_ops ops
;
263 const struct lib_counter_config
*client_config
;
266 struct lttng_ust_event_common_private
{
267 struct lttng_ust_event_common
*pub
; /* Public event interface */
269 const struct lttng_ust_event_desc
*desc
;
270 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
271 struct cds_list_head enablers_ref_head
;
272 int registered
; /* has reg'd tracepoint probe */
275 int has_enablers_without_filter_bytecode
;
276 /* list of struct lttng_ust_bytecode_runtime, sorted by seqnum */
277 struct cds_list_head filter_bytecode_runtime_head
;
280 struct lttng_ust_event_recorder_private
{
281 struct lttng_ust_event_common_private parent
;
283 struct lttng_ust_event_recorder
*pub
; /* Public event interface */
284 struct cds_list_head node
; /* Event recorder list */
285 struct cds_hlist_node hlist
; /* Hash table of event recorders */
286 struct lttng_ust_ctx
*ctx
;
290 struct lttng_ust_event_notifier_private
{
291 struct lttng_ust_event_common_private parent
;
293 struct lttng_ust_event_notifier
*pub
; /* Public event notifier interface */
294 struct lttng_event_notifier_group
*group
; /* weak ref */
295 size_t num_captures
; /* Needed to allocate the msgpack array. */
296 uint64_t error_counter_index
;
297 struct cds_list_head node
; /* Event notifier list */
298 struct cds_hlist_node hlist
; /* Hash table of event notifiers */
299 struct cds_list_head capture_bytecode_runtime_head
;
302 struct lttng_ust_bytecode_runtime
{
303 enum lttng_ust_bytecode_type type
;
304 struct lttng_ust_bytecode_node
*bc
;
306 int (*interpreter_func
)(struct lttng_ust_bytecode_runtime
*bytecode_runtime
,
307 const char *interpreter_stack_data
,
308 struct lttng_ust_probe_ctx
*probe_ctx
,
310 struct cds_list_head node
; /* list of bytecode runtime in event */
312 * Pointer to a URCU-protected pointer owned by an `struct
313 * lttng_session`or `struct lttng_event_notifier_group`.
315 struct lttng_ust_ctx
**pctx
;
318 struct lttng_ust_session_private
{
319 struct lttng_ust_session
*pub
; /* Public session interface */
321 int been_active
; /* Been active ? */
322 int objd
; /* Object associated */
323 struct cds_list_head chan_head
; /* Channel list head */
324 struct cds_list_head events_head
; /* list of events */
325 struct cds_list_head node
; /* Session list */
327 /* List of enablers */
328 struct cds_list_head enablers_head
;
329 struct lttng_ust_event_ht events_ht
; /* ht of events */
330 void *owner
; /* object owner */
331 int tstate
:1; /* Transient enable state */
333 int statedump_pending
:1;
335 struct lttng_ust_enum_ht enums_ht
; /* ht of enumerations */
336 struct cds_list_head enums_head
;
337 struct lttng_ust_ctx
*ctx
; /* contexts for filters. */
339 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
340 bool uuid_set
; /* Is uuid set ? */
344 const struct lttng_ust_enum_desc
*desc
;
345 struct lttng_ust_session
*session
;
346 struct cds_list_head node
; /* Enum list in session */
347 struct cds_hlist_node hlist
; /* Session ht of enums */
348 uint64_t id
; /* Enumeration ID in sessiond */
351 struct lttng_ust_shm_handle
;
353 struct lttng_ust_channel_buffer_ops_private
{
354 struct lttng_ust_channel_buffer_ops
*pub
; /* Public channel buffer ops interface */
356 struct lttng_ust_channel_buffer
*(*channel_create
)(const char *name
,
358 size_t subbuf_size
, size_t num_subbuf
,
359 unsigned int switch_timer_interval
,
360 unsigned int read_timer_interval
,
363 const int *stream_fds
, int nr_stream_fds
,
364 int64_t blocking_timeout
);
365 void (*channel_destroy
)(struct lttng_ust_channel_buffer
*chan
);
367 * packet_avail_size returns the available size in the current
368 * packet. Note that the size returned is only a hint, since it
369 * may change due to concurrent writes.
371 size_t (*packet_avail_size
)(struct lttng_ust_channel_buffer
*chan
);
372 int (*is_finalized
)(struct lttng_ust_channel_buffer
*chan
);
373 int (*is_disabled
)(struct lttng_ust_channel_buffer
*chan
);
374 int (*flush_buffer
)(struct lttng_ust_channel_buffer
*chan
);
377 struct lttng_ust_channel_common_private
{
378 struct lttng_ust_channel_common
*pub
; /* Public channel interface */
380 int objd
; /* Object associated with channel. */
381 int tstate
:1; /* Transient enable state */
384 struct lttng_ust_channel_buffer_private
{
385 struct lttng_ust_channel_common_private parent
;
387 struct lttng_ust_channel_buffer
*pub
; /* Public channel buffer interface */
388 struct cds_list_head node
; /* Channel list in session */
389 int header_type
; /* 0: unset, 1: compact, 2: large */
390 unsigned int id
; /* Channel ID */
391 enum lttng_ust_abi_chan_type type
;
392 struct lttng_ust_ctx
*ctx
;
393 struct lttng_ust_ring_buffer_channel
*rb_chan
; /* Ring buffer channel */
394 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
398 * IMPORTANT: this structure is part of the ABI between the consumer
399 * daemon and the UST library within traced applications. Changing it
400 * breaks the UST communication protocol.
402 * TODO: remove unused fields on next UST communication protocol
405 struct lttng_ust_abi_channel_config
{
411 unsigned int _deprecated1
;
412 unsigned int _deprecated2
;
413 struct cds_list_head unused6
;
417 unsigned int _deprecated3
:1;
421 enum lttng_ust_abi_chan_type unused10
;
422 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
426 /* Global (filter), event and channel contexts. */
427 struct lttng_ust_ctx
{
428 struct lttng_ust_ctx_field
*fields
;
429 unsigned int nr_fields
;
430 unsigned int allocated_fields
;
431 unsigned int largest_align
;
434 struct lttng_ust_registered_probe
{
435 const struct lttng_ust_probe_desc
*desc
;
437 struct cds_list_head head
; /* chain registered probes */
438 struct cds_list_head lazy_init_head
;
439 int lazy
; /* lazy registration */
446 struct lttng_ust_ctx_field
{
447 const struct lttng_ust_event_field
*event_field
;
448 size_t (*get_size
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
450 void (*record
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
451 struct lttng_ust_ring_buffer_ctx
*ctx
,
452 struct lttng_ust_channel_buffer
*chan
);
453 void (*get_value
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
454 struct lttng_ust_ctx_value
*value
);
455 void (*destroy
)(void *priv
);
460 const struct lttng_ust_type_integer
*lttng_ust_get_type_integer(const struct lttng_ust_type_common
*type
)
462 if (type
->type
!= lttng_ust_type_integer
)
464 return caa_container_of(type
, const struct lttng_ust_type_integer
, parent
);
468 const struct lttng_ust_type_float
*lttng_ust_get_type_float(const struct lttng_ust_type_common
*type
)
470 if (type
->type
!= lttng_ust_type_float
)
472 return caa_container_of(type
, const struct lttng_ust_type_float
, parent
);
476 const struct lttng_ust_type_string
*lttng_ust_get_type_string(const struct lttng_ust_type_common
*type
)
478 if (type
->type
!= lttng_ust_type_string
)
480 return caa_container_of(type
, const struct lttng_ust_type_string
, parent
);
484 const struct lttng_ust_type_enum
*lttng_ust_get_type_enum(const struct lttng_ust_type_common
*type
)
486 if (type
->type
!= lttng_ust_type_enum
)
488 return caa_container_of(type
, const struct lttng_ust_type_enum
, parent
);
492 const struct lttng_ust_type_array
*lttng_ust_get_type_array(const struct lttng_ust_type_common
*type
)
494 if (type
->type
!= lttng_ust_type_array
)
496 return caa_container_of(type
, const struct lttng_ust_type_array
, parent
);
500 const struct lttng_ust_type_sequence
*lttng_ust_get_type_sequence(const struct lttng_ust_type_common
*type
)
502 if (type
->type
!= lttng_ust_type_sequence
)
504 return caa_container_of(type
, const struct lttng_ust_type_sequence
, parent
);
508 const struct lttng_ust_type_struct
*lttng_ust_get_type_struct(const struct lttng_ust_type_common
*type
)
510 if (type
->type
!= lttng_ust_type_struct
)
512 return caa_container_of(type
, const struct lttng_ust_type_struct
, parent
);
515 #define lttng_ust_static_type_integer(_size, _alignment, _signedness, _byte_order, _base) \
516 ((const struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_type_integer, { \
518 .type = lttng_ust_type_integer, \
520 .struct_size = sizeof(struct lttng_ust_type_integer), \
522 .alignment = (_alignment), \
523 .signedness = (_signedness), \
524 .reverse_byte_order = (_byte_order) != LTTNG_UST_BYTE_ORDER, \
528 #define lttng_ust_static_type_array_text(_length) \
529 ((const struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_type_array, { \
531 .type = lttng_ust_type_array, \
533 .struct_size = sizeof(struct lttng_ust_type_array), \
534 .length = (_length), \
536 .encoding = lttng_ust_string_encoding_UTF8, \
537 .elem_type = lttng_ust_static_type_integer(sizeof(char) * CHAR_BIT, \
538 lttng_ust_rb_alignof(char) * CHAR_BIT, lttng_ust_is_signed_type(char), \
539 LTTNG_UST_BYTE_ORDER, 10), \
542 #define lttng_ust_static_event_field(_name, _type, _nowrite, _nofilter) \
543 LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_event_field, { \
544 .struct_size = sizeof(struct lttng_ust_event_field), \
547 .nowrite = (_nowrite), \
548 .nofilter = (_nofilter), \
551 #define lttng_ust_static_ctx_field(_event_field, _get_size, _record, _get_value, _destroy, _priv) \
552 LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_ctx_field, { \
553 .event_field = (_event_field), \
554 .get_size = (_get_size), \
555 .record = (_record), \
556 .get_value = (_get_value), \
557 .destroy = (_destroy), \
562 struct lttng_enabler
*lttng_event_enabler_as_enabler(
563 struct lttng_event_enabler
*event_enabler
)
565 return &event_enabler
->base
;
569 struct lttng_enabler
*lttng_event_notifier_enabler_as_enabler(
570 struct lttng_event_notifier_enabler
*event_notifier_enabler
)
572 return &event_notifier_enabler
->base
;
577 /* This is ABI between liblttng-ust and liblttng-ust-dl */
578 void lttng_ust_dl_update(void *ip
);
580 struct lttng_enum
*lttng_ust_enum_get_from_desc(struct lttng_ust_session
*session
,
581 const struct lttng_ust_enum_desc
*enum_desc
)
582 __attribute__((visibility("hidden")));
585 #endif /* _UST_COMMON_UST_EVENTS_H */