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