Fix: pass private data to context callbacks
[lttng-ust.git] / liblttng-ust / ust-events-internal.h
CommitLineData
d871c65b 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
d871c65b 3 *
c0c0989a 4 * Copyright 2019 (c) Francis Deslauriers <francis.deslauriers@efficios.com>
d871c65b
FD
5 */
6
c0c0989a
MJ
7#ifndef _LTTNG_UST_EVENTS_INTERNAL_H
8#define _LTTNG_UST_EVENTS_INTERNAL_H
9
9af5d97a 10#include <limits.h>
d871c65b
FD
11#include <stdint.h>
12
13#include <urcu/list.h>
14#include <urcu/hlist.h>
15
d871c65b
FD
16#include <lttng/ust-events.h>
17
a084756d 18#include <ust-helper.h>
fa194c41 19#include "ust-context-provider.h"
fd17d7ce
MD
20
21struct lttng_ust_abi_obj;
06cd86a0 22struct lttng_event_notifier_group;
fd17d7ce
MD
23
24union lttng_ust_abi_args {
25 struct {
26 void *chan_data;
27 int wakeup_fd;
28 } channel;
29 struct {
30 int shm_fd;
31 int wakeup_fd;
32 } stream;
33 struct {
34 struct lttng_ust_abi_field_iter entry;
35 } field_list;
36 struct {
37 char *ctxname;
38 } app_context;
39 struct {
40 int event_notifier_notif_fd;
41 } event_notifier_handle;
42 struct {
43 void *counter_data;
44 } counter;
45 struct {
46 int shm_fd;
47 } counter_shm;
48};
49
50struct 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);
54};
55
8665f6a4
MJ
56enum lttng_enabler_format_type {
57 LTTNG_ENABLER_FORMAT_STAR_GLOB,
58 LTTNG_ENABLER_FORMAT_EVENT,
59};
60
61/*
62 * Enabler field, within whatever object is enabling an event. Target of
63 * backward reference.
64 */
65struct lttng_enabler {
66 enum lttng_enabler_format_type format_type;
67
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;
72
fd17d7ce 73 struct lttng_ust_abi_event event_param;
8665f6a4
MJ
74 unsigned int enabled:1;
75};
76
d871c65b
FD
77struct lttng_event_enabler {
78 struct lttng_enabler base;
79 struct cds_list_head node; /* per-session list of enablers */
e7bc0ef6 80 struct lttng_ust_channel_buffer *chan;
d871c65b
FD
81 /*
82 * Unused, but kept around to make it explicit that the tracer can do
83 * it.
84 */
daacdbfc 85 struct lttng_ust_ctx *ctx;
d871c65b
FD
86};
87
d8d2416d
FD
88struct lttng_event_notifier_enabler {
89 struct lttng_enabler base;
6566528b 90 uint64_t error_counter_index;
d37ecb3f
FD
91 struct cds_list_head node; /* per-app list of event_notifier enablers */
92 struct cds_list_head capture_bytecode_head;
d8d2416d
FD
93 struct lttng_event_notifier_group *group; /* weak ref */
94 uint64_t user_token; /* User-provided token */
d37ecb3f 95 uint64_t num_captures;
d8d2416d
FD
96};
97
22c30e27
MD
98enum lttng_ust_bytecode_type {
99 LTTNG_UST_BYTECODE_TYPE_FILTER,
100 LTTNG_UST_BYTECODE_TYPE_CAPTURE,
ab249ecf
FD
101};
102
103struct lttng_ust_bytecode_node {
22c30e27 104 enum lttng_ust_bytecode_type type;
92495593
FD
105 struct cds_list_head node;
106 struct lttng_enabler *enabler;
ab249ecf
FD
107 struct {
108 uint32_t len;
109 uint32_t reloc_offset;
110 uint64_t seqnum;
111 char data[];
112 } bc;
92495593
FD
113};
114
a2e4d05e
MD
115/*
116 * Bytecode interpreter return value.
117 */
118enum lttng_ust_bytecode_interpreter_ret {
119 LTTNG_UST_BYTECODE_INTERPRETER_ERROR = -1,
120 LTTNG_UST_BYTECODE_INTERPRETER_OK = 0,
121};
122
123struct lttng_interpreter_output;
124struct lttng_ust_bytecode_runtime_private;
125
126enum lttng_ust_bytecode_filter_result {
127 LTTNG_UST_BYTECODE_FILTER_ACCEPT = 0,
128 LTTNG_UST_BYTECODE_FILTER_REJECT = 1,
129};
130
131struct lttng_ust_bytecode_filter_ctx {
132 enum lttng_ust_bytecode_filter_result result;
133};
134
92495593
FD
135struct lttng_ust_excluder_node {
136 struct cds_list_head node;
137 struct lttng_enabler *enabler;
138 /*
139 * struct lttng_ust_event_exclusion had variable sized array,
140 * must be last field.
141 */
fd17d7ce 142 struct lttng_ust_abi_event_exclusion excluder;
92495593
FD
143};
144
bb7ad29d
MJ
145/* Data structures used by the tracer. */
146
147struct tp_list_entry {
fd17d7ce 148 struct lttng_ust_abi_tracepoint_iter tp;
bb7ad29d
MJ
149 struct cds_list_head head;
150};
151
152struct lttng_ust_tracepoint_list {
153 struct tp_list_entry *iter;
154 struct cds_list_head head;
155};
156
157struct tp_field_list_entry {
fd17d7ce 158 struct lttng_ust_abi_field_iter field;
bb7ad29d
MJ
159 struct cds_list_head head;
160};
161
162struct lttng_ust_field_list {
163 struct tp_field_list_entry *iter;
164 struct cds_list_head head;
165};
166
167/*
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
171 * object.
172 *
173 * For example, event rules "my_app:a*" and "my_app:ab*" will both match the
174 * event with the name "my_app:abc".
175 */
176struct lttng_enabler_ref {
177 struct cds_list_head node; /* enabler ref list */
178 struct lttng_enabler *ref; /* backward ref */
179};
180
181#define LTTNG_COUNTER_DIMENSION_MAX 8
182struct lttng_counter_dimension {
183 uint64_t size;
184 uint64_t underflow_index;
185 uint64_t overflow_index;
186 uint8_t has_underflow;
187 uint8_t has_overflow;
188};
189
b5863ea7
MD
190struct 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,
197 bool is_daemon);
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);
208};
209
bb7ad29d
MJ
210struct lttng_counter {
211 int objd;
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;
216};
217
681f6001
MD
218#define LTTNG_UST_EVENT_HT_BITS 12
219#define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
220
221struct lttng_ust_event_ht {
222 struct cds_hlist_head table[LTTNG_UST_EVENT_HT_SIZE];
223};
224
225#define LTTNG_UST_EVENT_NOTIFIER_HT_BITS 12
226#define LTTNG_UST_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_UST_EVENT_NOTIFIER_HT_BITS)
227struct lttng_ust_event_notifier_ht {
228 struct cds_hlist_head table[LTTNG_UST_EVENT_NOTIFIER_HT_SIZE];
229};
230
231#define LTTNG_UST_ENUM_HT_BITS 12
232#define LTTNG_UST_ENUM_HT_SIZE (1U << LTTNG_UST_ENUM_HT_BITS)
233
234struct lttng_ust_enum_ht {
235 struct cds_hlist_head table[LTTNG_UST_ENUM_HT_SIZE];
236};
237
bb7ad29d
MJ
238struct lttng_event_notifier_group {
239 int objd;
240 void *owner;
241 int notification_fd;
242 struct cds_list_head node; /* Event notifier group handle list */
243 struct cds_list_head enablers_head;
0c1264b0 244 struct cds_list_head event_notifiers_head; /* list of event_notifiers */
bb7ad29d 245 struct lttng_ust_event_notifier_ht event_notifiers_ht; /* hashtable of event_notifiers */
0c1264b0 246 struct lttng_ust_ctx *ctx; /* contexts for filters. */
bb7ad29d
MJ
247
248 struct lttng_counter *error_counter;
249 size_t error_counter_len;
250};
251
252struct lttng_transport {
74c3f8e2 253 const char *name;
bb7ad29d 254 struct cds_list_head node;
14b6f891 255 struct lttng_ust_channel_buffer_ops ops;
bb7ad29d
MJ
256 const struct lttng_ust_lib_ring_buffer_config *client_config;
257};
258
259struct lttng_counter_transport {
74c3f8e2 260 const char *name;
bb7ad29d
MJ
261 struct cds_list_head node;
262 struct lttng_counter_ops ops;
263 const struct lib_counter_config *client_config;
264};
265
80333dfa 266struct lttng_ust_event_common_private {
7ee76145 267 struct lttng_ust_event_common *pub; /* Public event interface */
68bb7559 268
4e48b5d2 269 const struct lttng_ust_event_desc *desc;
68bb7559
MD
270 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
271 struct cds_list_head enablers_ref_head;
0c1264b0 272 int registered; /* has reg'd tracepoint probe */
115db533 273 uint64_t user_token;
a2e4d05e
MD
274
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;
68bb7559
MD
278};
279
2e70391c 280struct lttng_ust_event_recorder_private {
80333dfa
MD
281 struct lttng_ust_event_common_private parent;
282
2e70391c 283 struct lttng_ust_event_recorder *pub; /* Public event interface */
ba99fbe2
MD
284 struct cds_list_head node; /* Event recorder list */
285 struct cds_hlist_node hlist; /* Hash table of event recorders */
a40b5b8c 286 struct lttng_ust_ctx *ctx;
8936b6c0 287 unsigned int id;
80333dfa
MD
288};
289
115db533
MD
290struct lttng_ust_event_notifier_private {
291 struct lttng_ust_event_common_private parent;
292
d7d45c0d 293 struct lttng_ust_event_notifier *pub; /* Public event notifier interface */
115db533
MD
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;
ba99fbe2
MD
297 struct cds_list_head node; /* Event notifier list */
298 struct cds_hlist_node hlist; /* Hash table of event notifiers */
a2e4d05e 299 struct cds_list_head capture_bytecode_runtime_head;
a2e4d05e 300};
362a65de 301
a2e4d05e 302struct lttng_ust_bytecode_runtime {
22c30e27 303 enum lttng_ust_bytecode_type type;
362a65de
MD
304 struct lttng_ust_bytecode_node *bc;
305 int link_failed;
a2e4d05e
MD
306 int (*interpreter_func)(struct lttng_ust_bytecode_runtime *bytecode_runtime,
307 const char *interpreter_stack_data,
308 void *ctx);
0c1264b0 309 struct cds_list_head node; /* list of bytecode runtime in event */
362a65de
MD
310 /*
311 * Pointer to a URCU-protected pointer owned by an `struct
312 * lttng_session`or `struct lttng_event_notifier_group`.
313 */
daacdbfc 314 struct lttng_ust_ctx **pctx;
362a65de
MD
315};
316
bdb12629 317struct lttng_ust_session_private {
f69fe5fb 318 struct lttng_ust_session *pub; /* Public session interface */
bdb12629
MD
319
320 int been_active; /* Been active ? */
321 int objd; /* Object associated */
322 struct cds_list_head chan_head; /* Channel list head */
323 struct cds_list_head events_head; /* list of events */
324 struct cds_list_head node; /* Session list */
325
bdb12629
MD
326 /* List of enablers */
327 struct cds_list_head enablers_head;
328 struct lttng_ust_event_ht events_ht; /* ht of events */
329 void *owner; /* object owner */
330 int tstate:1; /* Transient enable state */
331
bdb12629
MD
332 int statedump_pending:1;
333
bdb12629
MD
334 struct lttng_ust_enum_ht enums_ht; /* ht of enumerations */
335 struct cds_list_head enums_head;
0c1264b0 336 struct lttng_ust_ctx *ctx; /* contexts for filters. */
9daacd1a
MD
337
338 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
339 bool uuid_set; /* Is uuid set ? */
bdb12629
MD
340};
341
036d17fb 342struct lttng_enum {
4e48b5d2 343 const struct lttng_ust_enum_desc *desc;
f69fe5fb 344 struct lttng_ust_session *session;
0c1264b0
MD
345 struct cds_list_head node; /* Enum list in session */
346 struct cds_hlist_node hlist; /* Session ht of enums */
347 uint64_t id; /* Enumeration ID in sessiond */
036d17fb
MD
348};
349
e7bc0ef6
MD
350struct lttng_ust_shm_handle;
351
14b6f891
MD
352struct lttng_ust_channel_buffer_ops_private {
353 struct lttng_ust_channel_buffer_ops *pub; /* Public channel buffer ops interface */
a880bae5 354
e7bc0ef6 355 struct lttng_ust_channel_buffer *(*channel_create)(const char *name,
a880bae5
MD
356 void *buf_addr,
357 size_t subbuf_size, size_t num_subbuf,
358 unsigned int switch_timer_interval,
359 unsigned int read_timer_interval,
360 unsigned char *uuid,
361 uint32_t chan_id,
362 const int *stream_fds, int nr_stream_fds,
363 int64_t blocking_timeout);
e7bc0ef6 364 void (*channel_destroy)(struct lttng_ust_channel_buffer *chan);
a880bae5
MD
365 /*
366 * packet_avail_size returns the available size in the current
367 * packet. Note that the size returned is only a hint, since it
368 * may change due to concurrent writes.
369 */
07539b34
MD
370 size_t (*packet_avail_size)(struct lttng_ust_channel_buffer *chan);
371 int (*is_finalized)(struct lttng_ust_channel_buffer *chan);
372 int (*is_disabled)(struct lttng_ust_channel_buffer *chan);
373 int (*flush_buffer)(struct lttng_ust_channel_buffer *chan);
a880bae5
MD
374};
375
e7bc0ef6
MD
376struct lttng_ust_channel_common_private {
377 struct lttng_ust_channel_common *pub; /* Public channel interface */
378
0c1264b0
MD
379 int objd; /* Object associated with channel. */
380 int tstate:1; /* Transient enable state */
e7bc0ef6
MD
381};
382
383struct lttng_ust_channel_buffer_private {
384 struct lttng_ust_channel_common_private parent;
385
386 struct lttng_ust_channel_buffer *pub; /* Public channel buffer interface */
0c1264b0
MD
387 struct cds_list_head node; /* Channel list in session */
388 int header_type; /* 0: unset, 1: compact, 2: large */
389 unsigned int id; /* Channel ID */
e7bc0ef6 390 enum lttng_ust_abi_chan_type type;
0950190a 391 struct lttng_ust_ctx *ctx;
07539b34 392 struct lttng_ust_lib_ring_buffer_channel *rb_chan; /* Ring buffer channel */
e7bc0ef6
MD
393 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
394};
395
f0fde1c3
MD
396/*
397 * IMPORTANT: this structure is part of the ABI between the consumer
398 * daemon and the UST library within traced applications. Changing it
399 * breaks the UST communication protocol.
400 *
401 * TODO: remove unused fields on next UST communication protocol
402 * breaking update.
403 */
404struct lttng_ust_abi_channel_config {
405 void *unused1;
406 int unused2;
407 void *unused3;
408 void *unused4;
409 int unused5;
410 struct cds_list_head unused6;
411 void *unused7;
412 int unused8;
413 void *unused9;
414
415 /* Channel ID */
416 unsigned int id;
417 enum lttng_ust_abi_chan_type unused10;
418 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
419 int unused11:1;
420};
421
4e48b5d2
MD
422/* Global (filter), event and channel contexts. */
423struct lttng_ust_ctx {
424 struct lttng_ust_ctx_field *fields;
425 unsigned int nr_fields;
426 unsigned int allocated_fields;
427 unsigned int largest_align;
428};
429
430struct lttng_ust_registered_probe {
431 const struct lttng_ust_probe_desc *desc;
432
433 struct cds_list_head head; /* chain registered probes */
434 struct cds_list_head lazy_init_head;
435 int lazy; /* lazy registration */
436};
437
438/*
439 * Context field
440 */
441
442struct lttng_ust_ctx_field {
443 const struct lttng_ust_event_field *event_field;
444 size_t (*get_size)(void *priv, size_t offset);
445 void (*record)(void *priv, struct lttng_ust_lib_ring_buffer_ctx *ctx,
446 struct lttng_ust_channel_buffer *chan);
447 void (*get_value)(void *priv, struct lttng_ust_ctx_value *value);
448 void (*destroy)(void *priv);
449 void *priv;
450};
451
a084756d 452static inline
4e48b5d2 453const struct lttng_ust_type_integer *lttng_ust_get_type_integer(const struct lttng_ust_type_common *type)
a084756d
MD
454{
455 if (type->type != lttng_ust_type_integer)
456 return NULL;
4e48b5d2 457 return caa_container_of(type, const struct lttng_ust_type_integer, parent);
a084756d
MD
458}
459
460static inline
4e48b5d2 461const struct lttng_ust_type_float *lttng_ust_get_type_float(const struct lttng_ust_type_common *type)
a084756d
MD
462{
463 if (type->type != lttng_ust_type_float)
464 return NULL;
4e48b5d2 465 return caa_container_of(type, const struct lttng_ust_type_float, parent);
a084756d
MD
466}
467
468static inline
4e48b5d2 469const struct lttng_ust_type_string *lttng_ust_get_type_string(const struct lttng_ust_type_common *type)
a084756d
MD
470{
471 if (type->type != lttng_ust_type_string)
472 return NULL;
4e48b5d2 473 return caa_container_of(type, const struct lttng_ust_type_string, parent);
a084756d
MD
474}
475
476static inline
4e48b5d2 477const struct lttng_ust_type_enum *lttng_ust_get_type_enum(const struct lttng_ust_type_common *type)
a084756d
MD
478{
479 if (type->type != lttng_ust_type_enum)
480 return NULL;
4e48b5d2 481 return caa_container_of(type, const struct lttng_ust_type_enum, parent);
a084756d
MD
482}
483
484static inline
4e48b5d2 485const struct lttng_ust_type_array *lttng_ust_get_type_array(const struct lttng_ust_type_common *type)
a084756d
MD
486{
487 if (type->type != lttng_ust_type_array)
488 return NULL;
4e48b5d2 489 return caa_container_of(type, const struct lttng_ust_type_array, parent);
a084756d
MD
490}
491
492static inline
4e48b5d2 493const struct lttng_ust_type_sequence *lttng_ust_get_type_sequence(const struct lttng_ust_type_common *type)
a084756d
MD
494{
495 if (type->type != lttng_ust_type_sequence)
496 return NULL;
4e48b5d2 497 return caa_container_of(type, const struct lttng_ust_type_sequence, parent);
a084756d
MD
498}
499
500static inline
4e48b5d2 501const struct lttng_ust_type_struct *lttng_ust_get_type_struct(const struct lttng_ust_type_common *type)
a084756d
MD
502{
503 if (type->type != lttng_ust_type_struct)
504 return NULL;
4e48b5d2 505 return caa_container_of(type, const struct lttng_ust_type_struct, parent);
a084756d
MD
506}
507
4e48b5d2
MD
508#define lttng_ust_static_type_integer(_size, _alignment, _signedness, _byte_order, _base) \
509 ((const struct lttng_ust_type_common *) __LTTNG_COMPOUND_LITERAL(const struct lttng_ust_type_integer, { \
510 .parent = { \
511 .type = lttng_ust_type_integer, \
512 }, \
513 .struct_size = sizeof(struct lttng_ust_type_integer), \
514 .size = (_size), \
515 .alignment = (_alignment), \
516 .signedness = (_signedness), \
517 .reverse_byte_order = (_byte_order) != BYTE_ORDER, \
518 .base = (_base), \
519 }))
520
521#define lttng_ust_static_type_array_text(_length) \
522 ((const struct lttng_ust_type_common *) __LTTNG_COMPOUND_LITERAL(const struct lttng_ust_type_array, { \
523 .parent = { \
524 .type = lttng_ust_type_array, \
525 }, \
526 .struct_size = sizeof(struct lttng_ust_type_array), \
527 .length = (_length), \
528 .alignment = 0, \
529 .encoding = lttng_ust_string_encoding_UTF8, \
530 .elem_type = lttng_ust_static_type_integer(sizeof(char) * CHAR_BIT, \
531 lttng_ust_rb_alignof(char) * CHAR_BIT, lttng_ust_is_signed_type(char), \
532 BYTE_ORDER, 10), \
533 }))
534
535#define lttng_ust_static_event_field(_name, _type, _nowrite, _nofilter) \
536 __LTTNG_COMPOUND_LITERAL(const struct lttng_ust_event_field, { \
537 .struct_size = sizeof(struct lttng_ust_event_field), \
538 .name = (_name), \
539 .type = (_type), \
540 .nowrite = (_nowrite), \
541 .nofilter = (_nofilter), \
542 })
543
544#define lttng_ust_static_ctx_field(_event_field, _get_size, _record, _get_value, _destroy, _priv) \
545 __LTTNG_COMPOUND_LITERAL(const struct lttng_ust_ctx_field, { \
546 .event_field = (_event_field), \
547 .get_size = (_get_size), \
548 .record = (_record), \
549 .get_value = (_get_value), \
550 .destroy = (_destroy), \
551 .priv = (_priv), \
552 })
a084756d 553
d871c65b
FD
554static inline
555struct lttng_enabler *lttng_event_enabler_as_enabler(
556 struct lttng_event_enabler *event_enabler)
557{
558 return &event_enabler->base;
559}
560
d8d2416d
FD
561static inline
562struct lttng_enabler *lttng_event_notifier_enabler_as_enabler(
563 struct lttng_event_notifier_enabler *event_notifier_enabler)
564{
565 return &event_notifier_enabler->base;
566}
d871c65b
FD
567
568/*
569 * Allocate and initialize a `struct lttng_event_enabler` object.
570 *
571 * On success, returns a `struct lttng_event_enabler`,
572 * On memory error, returns NULL.
573 */
d871c65b
FD
574struct lttng_event_enabler *lttng_event_enabler_create(
575 enum lttng_enabler_format_type format_type,
fd17d7ce 576 struct lttng_ust_abi_event *event_param,
1d18d519
MJ
577 struct lttng_ust_channel_buffer *chan)
578 __attribute__((visibility("hidden")));
d871c65b
FD
579
580/*
581 * Destroy a `struct lttng_event_enabler` object.
582 */
1d18d519
MJ
583void lttng_event_enabler_destroy(struct lttng_event_enabler *enabler)
584 __attribute__((visibility("hidden")));
d871c65b
FD
585
586/*
587 * Enable a `struct lttng_event_enabler` object and all events related to this
588 * enabler.
589 */
1d18d519
MJ
590int lttng_event_enabler_enable(struct lttng_event_enabler *enabler)
591 __attribute__((visibility("hidden")));
d871c65b
FD
592
593/*
594 * Disable a `struct lttng_event_enabler` object and all events related to this
595 * enabler.
596 */
1d18d519
MJ
597int lttng_event_enabler_disable(struct lttng_event_enabler *enabler)
598 __attribute__((visibility("hidden")));
d871c65b
FD
599
600/*
601 * Attach filter bytecode program to `struct lttng_event_enabler` and all
602 * events related to this enabler.
603 */
a56fd376
FD
604int lttng_event_enabler_attach_filter_bytecode(
605 struct lttng_event_enabler *enabler,
1d18d519
MJ
606 struct lttng_ust_bytecode_node **bytecode)
607 __attribute__((visibility("hidden")));
d871c65b
FD
608
609/*
610 * Attach an application context to an event enabler.
611 *
612 * Not implemented.
613 */
d871c65b 614int lttng_event_enabler_attach_context(struct lttng_event_enabler *enabler,
1d18d519
MJ
615 struct lttng_ust_abi_context *ctx)
616 __attribute__((visibility("hidden")));
d871c65b
FD
617
618/*
619 * Attach exclusion list to `struct lttng_event_enabler` and all
620 * events related to this enabler.
621 */
d871c65b 622int lttng_event_enabler_attach_exclusion(struct lttng_event_enabler *enabler,
1d18d519
MJ
623 struct lttng_ust_excluder_node **excluder)
624 __attribute__((visibility("hidden")));
d871c65b
FD
625
626/*
d37ecb3f
FD
627 * Synchronize bytecodes for the enabler and the instance (event or
628 * event_notifier).
d871c65b 629 *
621c07fc 630 * This function goes over all bytecode programs of the enabler (event or
d37ecb3f 631 * event_notifier enabler) to ensure each is linked to the provided instance.
d871c65b 632 */
4e48b5d2 633void lttng_enabler_link_bytecode(const struct lttng_ust_event_desc *event_desc,
daacdbfc 634 struct lttng_ust_ctx **ctx,
621c07fc 635 struct cds_list_head *instance_bytecode_runtime_head,
1d18d519
MJ
636 struct cds_list_head *enabler_bytecode_runtime_head)
637 __attribute__((visibility("hidden")));
d871c65b 638
d8d2416d
FD
639/*
640 * Allocate and initialize a `struct lttng_event_notifier_group` object.
641 *
642 * On success, returns a `struct lttng_triggre_group`,
643 * on memory error, returns NULL.
644 */
1d18d519
MJ
645struct lttng_event_notifier_group *lttng_event_notifier_group_create(void)
646 __attribute__((visibility("hidden")));
d8d2416d
FD
647
648/*
649 * Destroy a `struct lttng_event_notifier_group` object.
650 */
d8d2416d 651void lttng_event_notifier_group_destroy(
1d18d519
MJ
652 struct lttng_event_notifier_group *event_notifier_group)
653 __attribute__((visibility("hidden")));
d8d2416d
FD
654
655/*
656 * Allocate and initialize a `struct lttng_event_notifier_enabler` object.
657 *
658 * On success, returns a `struct lttng_event_notifier_enabler`,
659 * On memory error, returns NULL.
660 */
d8d2416d
FD
661struct lttng_event_notifier_enabler *lttng_event_notifier_enabler_create(
662 struct lttng_event_notifier_group *event_notifier_group,
663 enum lttng_enabler_format_type format_type,
1d18d519
MJ
664 struct lttng_ust_abi_event_notifier *event_notifier_param)
665 __attribute__((visibility("hidden")));
d8d2416d
FD
666
667/*
668 * Destroy a `struct lttng_event_notifier_enabler` object.
669 */
d8d2416d 670void lttng_event_notifier_enabler_destroy(
1d18d519
MJ
671 struct lttng_event_notifier_enabler *event_notifier_enabler)
672 __attribute__((visibility("hidden")));
d8d2416d
FD
673
674/*
675 * Enable a `struct lttng_event_notifier_enabler` object and all event
676 * notifiers related to this enabler.
677 */
d8d2416d 678int lttng_event_notifier_enabler_enable(
1d18d519
MJ
679 struct lttng_event_notifier_enabler *event_notifier_enabler)
680 __attribute__((visibility("hidden")));
d8d2416d
FD
681
682/*
683 * Disable a `struct lttng_event_notifier_enabler` object and all event
684 * notifiers related to this enabler.
685 */
d8d2416d 686int lttng_event_notifier_enabler_disable(
1d18d519
MJ
687 struct lttng_event_notifier_enabler *event_notifier_enabler)
688 __attribute__((visibility("hidden")));
d8d2416d
FD
689
690/*
691 * Attach filter bytecode program to `struct lttng_event_notifier_enabler` and
692 * all event notifiers related to this enabler.
693 */
a56fd376 694int lttng_event_notifier_enabler_attach_filter_bytecode(
d8d2416d 695 struct lttng_event_notifier_enabler *event_notifier_enabler,
1d18d519
MJ
696 struct lttng_ust_bytecode_node **bytecode)
697 __attribute__((visibility("hidden")));
d8d2416d 698
d37ecb3f
FD
699/*
700 * Attach capture bytecode program to `struct lttng_event_notifier_enabler` and
701 * all event_notifiers related to this enabler.
702 */
d37ecb3f
FD
703int lttng_event_notifier_enabler_attach_capture_bytecode(
704 struct lttng_event_notifier_enabler *event_notifier_enabler,
1d18d519
MJ
705 struct lttng_ust_bytecode_node **bytecode)
706 __attribute__((visibility("hidden")));
d37ecb3f 707
d8d2416d
FD
708/*
709 * Attach exclusion list to `struct lttng_event_notifier_enabler` and all
710 * event notifiers related to this enabler.
711 */
d8d2416d
FD
712int lttng_event_notifier_enabler_attach_exclusion(
713 struct lttng_event_notifier_enabler *event_notifier_enabler,
1d18d519
MJ
714 struct lttng_ust_excluder_node **excluder)
715 __attribute__((visibility("hidden")));
d8d2416d 716
1d18d519
MJ
717void lttng_free_event_filter_runtime(struct lttng_ust_event_common *event)
718 __attribute__((visibility("hidden")));
d8d2416d
FD
719
720/*
721 * Connect the probe on all enablers matching this event description.
722 * Called on library load.
723 */
1d18d519
MJ
724int lttng_fix_pending_event_notifiers(void)
725 __attribute__((visibility("hidden")));
d8d2416d 726
67d4e8f5
MJ
727struct lttng_counter *lttng_ust_counter_create(
728 const char *counter_transport_name,
1d18d519
MJ
729 size_t number_dimensions, const struct lttng_counter_dimension *dimensions)
730 __attribute__((visibility("hidden")));
67d4e8f5 731
eeef0055 732#ifdef HAVE_LINUX_PERF_EVENT_H
bd8c1787 733
bd8c1787
MJ
734int lttng_add_perf_counter_to_ctx(uint32_t type,
735 uint64_t config,
736 const char *name,
1d18d519
MJ
737 struct lttng_ust_ctx **ctx)
738 __attribute__((visibility("hidden")));
ddabe860 739
1d18d519
MJ
740int lttng_perf_counter_init(void)
741 __attribute__((visibility("hidden")));
ddabe860 742
1d18d519
MJ
743void lttng_perf_counter_exit(void)
744 __attribute__((visibility("hidden")));
bd8c1787 745
eeef0055 746#else /* #ifdef HAVE_LINUX_PERF_EVENT_H */
bd8c1787
MJ
747
748static inline
749int lttng_add_perf_counter_to_ctx(uint32_t type,
750 uint64_t config,
751 const char *name,
daacdbfc 752 struct lttng_ust_ctx **ctx)
bd8c1787
MJ
753{
754 return -ENOSYS;
755}
756static inline
757int lttng_perf_counter_init(void)
758{
759 return 0;
760}
761static inline
762void lttng_perf_counter_exit(void)
763{
764}
eeef0055 765#endif /* #else #ifdef HAVE_LINUX_PERF_EVENT_H */
bd8c1787 766
1d18d519
MJ
767int lttng_probes_get_event_list(struct lttng_ust_tracepoint_list *list)
768 __attribute__((visibility("hidden")));
ddabe860 769
1d18d519
MJ
770void lttng_probes_prune_event_list(struct lttng_ust_tracepoint_list *list)
771 __attribute__((visibility("hidden")));
7753d283 772
1d18d519
MJ
773int lttng_probes_get_field_list(struct lttng_ust_field_list *list)
774 __attribute__((visibility("hidden")));
ddabe860 775
1d18d519
MJ
776void lttng_probes_prune_field_list(struct lttng_ust_field_list *list)
777 __attribute__((visibility("hidden")));
7753d283 778
fd17d7ce 779struct lttng_ust_abi_tracepoint_iter *
1d18d519
MJ
780 lttng_ust_tracepoint_list_get_iter_next(struct lttng_ust_tracepoint_list *list)
781 __attribute__((visibility("hidden")));
ddabe860 782
fd17d7ce 783struct lttng_ust_abi_field_iter *
1d18d519
MJ
784 lttng_ust_field_list_get_iter_next(struct lttng_ust_field_list *list)
785 __attribute__((visibility("hidden")));
7753d283 786
1d18d519
MJ
787struct lttng_ust_session *lttng_session_create(void)
788 __attribute__((visibility("hidden")));
ddabe860 789
1d18d519
MJ
790int lttng_session_enable(struct lttng_ust_session *session)
791 __attribute__((visibility("hidden")));
ddabe860 792
1d18d519
MJ
793int lttng_session_disable(struct lttng_ust_session *session)
794 __attribute__((visibility("hidden")));
ddabe860 795
1d18d519
MJ
796int lttng_session_statedump(struct lttng_ust_session *session)
797 __attribute__((visibility("hidden")));
ddabe860 798
1d18d519
MJ
799void lttng_session_destroy(struct lttng_ust_session *session)
800 __attribute__((visibility("hidden")));
7753d283 801
a5ae46cc
MJ
802/*
803 * Called with ust lock held.
804 */
1d18d519
MJ
805int lttng_session_active(void)
806 __attribute__((visibility("hidden")));
a5ae46cc 807
1d18d519
MJ
808struct cds_list_head *lttng_get_sessions(void)
809 __attribute__((visibility("hidden")));
7753d283 810
1d18d519
MJ
811void lttng_handle_pending_statedump(void *owner)
812 __attribute__((visibility("hidden")));
7753d283 813
1d18d519
MJ
814int lttng_channel_enable(struct lttng_ust_channel_common *lttng_channel)
815 __attribute__((visibility("hidden")));
7753d283 816
1d18d519
MJ
817int lttng_channel_disable(struct lttng_ust_channel_common *lttng_channel)
818 __attribute__((visibility("hidden")));
7753d283 819
1d18d519
MJ
820void lttng_transport_register(struct lttng_transport *transport)
821 __attribute__((visibility("hidden")));
ddabe860 822
1d18d519
MJ
823void lttng_transport_unregister(struct lttng_transport *transport)
824 __attribute__((visibility("hidden")));
7753d283 825
65c48d6a
MJ
826/* This is ABI between liblttng-ust and liblttng-ust-ctl */
827struct lttng_transport *lttng_ust_transport_find(const char *name);
828
cbba5e04
MJ
829/* This is ABI between liblttng-ust and liblttng-ust-dl */
830void lttng_ust_dl_update(void *ip);
831
4e48b5d2 832void lttng_probe_provider_unregister_events(const struct lttng_ust_probe_desc *desc)
1d18d519 833 __attribute__((visibility("hidden")));
7753d283 834
1d18d519
MJ
835int lttng_fix_pending_events(void)
836 __attribute__((visibility("hidden")));
7753d283 837
1d18d519
MJ
838struct cds_list_head *lttng_get_probe_list_head(void)
839 __attribute__((visibility("hidden")));
7753d283 840
f69fe5fb 841struct lttng_enum *lttng_ust_enum_get_from_desc(struct lttng_ust_session *session,
4e48b5d2 842 const struct lttng_ust_enum_desc *enum_desc)
1d18d519 843 __attribute__((visibility("hidden")));
7753d283 844
1d18d519
MJ
845int lttng_abi_create_root_handle(void)
846 __attribute__((visibility("hidden")));
fd17d7ce 847
1d18d519
MJ
848const struct lttng_ust_abi_objd_ops *lttng_ust_abi_objd_ops(int id)
849 __attribute__((visibility("hidden")));
ddabe860 850
1d18d519
MJ
851int lttng_ust_abi_objd_unref(int id, int is_owner)
852 __attribute__((visibility("hidden")));
ddabe860 853
1d18d519
MJ
854void lttng_ust_abi_exit(void)
855 __attribute__((visibility("hidden")));
ddabe860 856
1d18d519
MJ
857void lttng_ust_abi_events_exit(void)
858 __attribute__((visibility("hidden")));
ddabe860 859
1d18d519
MJ
860void lttng_ust_abi_objd_table_owner_cleanup(void *owner)
861 __attribute__((visibility("hidden")));
fd17d7ce 862
1d18d519
MJ
863struct lttng_ust_channel_buffer *lttng_ust_alloc_channel_buffer(void)
864 __attribute__((visibility("hidden")));
e7bc0ef6 865
1d18d519
MJ
866void lttng_ust_free_channel_common(struct lttng_ust_channel_common *chan)
867 __attribute__((visibility("hidden")));
e7bc0ef6 868
a2e4d05e
MD
869int lttng_ust_interpret_event_filter(struct lttng_ust_event_common *event,
870 const char *interpreter_stack_data,
1d18d519
MJ
871 void *filter_ctx)
872 __attribute__((visibility("hidden")));
a2e4d05e 873
9daacd1a 874int lttng_ust_session_uuid_validate(struct lttng_ust_session *session,
1d18d519
MJ
875 unsigned char *uuid)
876 __attribute__((visibility("hidden")));
9daacd1a 877
1d18d519
MJ
878bool lttng_ust_validate_event_name(const struct lttng_ust_event_desc *desc)
879 __attribute__((visibility("hidden")));
5b4c6da4 880
5b4c6da4 881void lttng_ust_format_event_name(const struct lttng_ust_event_desc *desc,
1d18d519
MJ
882 char *name)
883 __attribute__((visibility("hidden")));
5b4c6da4 884
4e48b5d2
MD
885int lttng_ust_add_app_context_to_ctx_rcu(const char *name, struct lttng_ust_ctx **ctx)
886 __attribute__((visibility("hidden")));
887
888int lttng_ust_context_set_provider_rcu(struct lttng_ust_ctx **_ctx,
889 const char *name,
890 size_t (*get_size)(void *priv, size_t offset),
891 void (*record)(void *priv, struct lttng_ust_lib_ring_buffer_ctx *ctx,
892 struct lttng_ust_channel_buffer *chan),
893 void (*get_value)(void *priv, struct lttng_ust_ctx_value *value),
894 void *priv)
895 __attribute__((visibility("hidden")));
896
897void lttng_ust_context_set_session_provider(const char *name,
898 size_t (*get_size)(void *priv, size_t offset),
899 void (*record)(void *priv, struct lttng_ust_lib_ring_buffer_ctx *ctx,
900 struct lttng_ust_channel_buffer *chan),
901 void (*get_value)(void *priv, struct lttng_ust_ctx_value *value),
902 void *priv)
903 __attribute__((visibility("hidden")));
904
d871c65b 905#endif /* _LTTNG_UST_EVENTS_INTERNAL_H */
This page took 0.07271 seconds and 4 git commands to generate.