Implement file-backed ring buffer
[lttng-ust.git] / include / lttng / ust-events.h
CommitLineData
51489cad
MD
1#ifndef _LTTNG_UST_EVENTS_H
2#define _LTTNG_UST_EVENTS_H
8020ceb5
MD
3
4/*
51489cad 5 * lttng/ust-events.h
8020ceb5 6 *
e92f3e28 7 * Copyright 2010-2012 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8020ceb5
MD
8 *
9 * Holds LTTng per-session event registry.
10 *
e92f3e28
MD
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
a60d70e6 17 *
e92f3e28
MD
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
d2428e87
MD
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
8020ceb5
MD
28 */
29
9f3fdbc6 30#include <urcu/list.h>
1f18504e 31#include <urcu/hlist.h>
9f3fdbc6 32#include <stdint.h>
d58d1454 33#include <lttng/ust-config.h>
4318ae1b
MD
34#include <lttng/ust-abi.h>
35#include <lttng/ust-tracer.h>
2ae57758 36#include <lttng/ust-endian.h>
20f1eee7 37#include <float.h>
d58d1454
MD
38#include <errno.h>
39#include <urcu/ref.h>
40#include <pthread.h>
8020ceb5 41
6453d237
MD
42#ifdef __cplusplus
43extern "C" {
44#endif
45
19d8b1b3
MD
46#define LTTNG_UST_UUID_LEN 16
47
71d31690
MD
48/*
49 * Tracepoint provider version. Compatibility based on the major number.
50 * Older tracepoint providers can always register to newer lttng-ust
51 * library, but the opposite is rejected: a newer tracepoint provider is
52 * rejected by an older lttng-ust library.
53 */
54#define LTTNG_UST_PROVIDER_MAJOR 1
55#define LTTNG_UST_PROVIDER_MINOR 0
56
7dd08bec
MD
57struct lttng_channel;
58struct lttng_session;
4cfec15c 59struct lttng_ust_lib_ring_buffer_ctx;
8020ceb5 60
37d5e202
MD
61/*
62 * Data structures used by tracepoint event declarations, and by the
63 * tracer. Those structures have padding for future extension.
64 */
65
c1fca457
MD
66/*
67 * LTTng client type enumeration. Used by the consumer to map the
68 * callbacks from its own address space.
69 */
70enum lttng_client_types {
71 LTTNG_CLIENT_METADATA = 0,
72 LTTNG_CLIENT_DISCARD = 1,
73 LTTNG_CLIENT_OVERWRITE = 2,
34a91bdb
MD
74 LTTNG_CLIENT_DISCARD_RT = 3,
75 LTTNG_CLIENT_OVERWRITE_RT = 4,
c1fca457
MD
76 LTTNG_NR_CLIENT_TYPES,
77};
78
8020ceb5
MD
79/* Type description */
80
81/* Update the astract_types name table in lttng-types.c along with this enum */
7dd08bec 82enum lttng_abstract_types {
8020ceb5
MD
83 atype_integer,
84 atype_enum,
85 atype_array,
86 atype_sequence,
87 atype_string,
20f1eee7 88 atype_float,
8020ceb5
MD
89 NR_ABSTRACT_TYPES,
90};
91
92/* Update the string_encodings name table in lttng-types.c along with this enum */
93enum lttng_string_encodings {
94 lttng_encode_none = 0,
95 lttng_encode_UTF8 = 1,
96 lttng_encode_ASCII = 2,
97 NR_STRING_ENCODINGS,
98};
99
37d5e202 100#define LTTNG_UST_ENUM_ENTRY_PADDING 16
8020ceb5
MD
101struct lttng_enum_entry {
102 unsigned long long start, end; /* start and end are inclusive */
103 const char *string;
37d5e202 104 char padding[LTTNG_UST_ENUM_ENTRY_PADDING];
8020ceb5
MD
105};
106
107#define __type_integer(_type, _byte_order, _base, _encoding) \
108 { \
46d52200
ZT
109 .atype = atype_integer, \
110 .u = \
8020ceb5 111 { \
46d52200
ZT
112 .basic = \
113 { \
114 .integer = \
115 { \
116 .size = sizeof(_type) * CHAR_BIT, \
117 .alignment = lttng_alignof(_type) * CHAR_BIT, \
118 .signedness = lttng_is_signed_type(_type), \
119 .reverse_byte_order = _byte_order != BYTE_ORDER, \
120 .base = _base, \
121 .encoding = lttng_encode_##_encoding, \
122 } \
123 } \
8020ceb5
MD
124 }, \
125 } \
126
37d5e202 127#define LTTNG_UST_INTEGER_TYPE_PADDING 24
8020ceb5
MD
128struct lttng_integer_type {
129 unsigned int size; /* in bits */
130 unsigned short alignment; /* in bits */
131 unsigned int signedness:1;
132 unsigned int reverse_byte_order:1;
133 unsigned int base; /* 2, 8, 10, 16, for pretty print */
134 enum lttng_string_encodings encoding;
37d5e202 135 char padding[LTTNG_UST_INTEGER_TYPE_PADDING];
8020ceb5
MD
136};
137
d3ed854b
MD
138/*
139 * Only float and double are supported. long double is not supported at
140 * the moment.
141 */
20f1eee7
MD
142#define _float_mant_dig(_type) \
143 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
144 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
d3ed854b 145 : 0))
20f1eee7
MD
146
147#define __type_float(_type) \
148 { \
46d52200
ZT
149 .atype = atype_float, \
150 .u = \
20f1eee7 151 { \
46d52200
ZT
152 .basic = \
153 { \
154 ._float = \
155 { \
156 .exp_dig = sizeof(_type) * CHAR_BIT \
157 - _float_mant_dig(_type), \
158 .mant_dig = _float_mant_dig(_type), \
159 .alignment = lttng_alignof(_type) * CHAR_BIT, \
160 .reverse_byte_order = BYTE_ORDER != FLOAT_WORD_ORDER, \
161 } \
162 } \
20f1eee7
MD
163 }, \
164 } \
165
37d5e202 166#define LTTNG_UST_FLOAT_TYPE_PADDING 24
20f1eee7
MD
167struct lttng_float_type {
168 unsigned int exp_dig; /* exponent digits, in bits */
169 unsigned int mant_dig; /* mantissa digits, in bits */
170 unsigned short alignment; /* in bits */
171 unsigned int reverse_byte_order:1;
37d5e202 172 char padding[LTTNG_UST_FLOAT_TYPE_PADDING];
20f1eee7
MD
173};
174
37d5e202 175#define LTTNG_UST_BASIC_TYPE_PADDING 128
8020ceb5
MD
176union _lttng_basic_type {
177 struct lttng_integer_type integer;
178 struct {
179 const char *name;
180 } enumeration;
181 struct {
182 enum lttng_string_encodings encoding;
183 } string;
20f1eee7 184 struct lttng_float_type _float;
37d5e202 185 char padding[LTTNG_UST_BASIC_TYPE_PADDING];
8020ceb5
MD
186};
187
188struct lttng_basic_type {
7dd08bec 189 enum lttng_abstract_types atype;
8020ceb5
MD
190 union {
191 union _lttng_basic_type basic;
192 } u;
193};
194
37d5e202 195#define LTTNG_UST_TYPE_PADDING 128
8020ceb5 196struct lttng_type {
7dd08bec 197 enum lttng_abstract_types atype;
8020ceb5
MD
198 union {
199 union _lttng_basic_type basic;
200 struct {
201 struct lttng_basic_type elem_type;
202 unsigned int length; /* num. elems. */
203 } array;
204 struct {
205 struct lttng_basic_type length_type;
206 struct lttng_basic_type elem_type;
207 } sequence;
37d5e202 208 char padding[LTTNG_UST_TYPE_PADDING];
8020ceb5
MD
209 } u;
210};
211
37d5e202 212#define LTTNG_UST_ENUM_TYPE_PADDING 24
8020ceb5
MD
213struct lttng_enum {
214 const char *name;
215 struct lttng_type container_type;
216 const struct lttng_enum_entry *entries;
23c8854a 217 unsigned int len;
37d5e202 218 char padding[LTTNG_UST_ENUM_TYPE_PADDING];
8020ceb5
MD
219};
220
180901e6
MD
221/*
222 * Event field description
223 *
224 * IMPORTANT: this structure is part of the ABI between the probe and
225 * UST. Fields need to be only added at the end, never reordered, never
226 * removed.
227 */
8020ceb5 228
4774c8f3 229#define LTTNG_UST_EVENT_FIELD_PADDING 28
8020ceb5
MD
230struct lttng_event_field {
231 const char *name;
232 struct lttng_type type;
180901e6 233 unsigned int nowrite; /* do not write into trace */
37d5e202 234 char padding[LTTNG_UST_EVENT_FIELD_PADDING];
8020ceb5
MD
235};
236
77aa5901
MD
237union lttng_ctx_value {
238 int64_t s64;
239 const char *str;
240 double d;
241};
242
d58d1454
MD
243struct lttng_perf_counter_field;
244
37d5e202 245#define LTTNG_UST_CTX_FIELD_PADDING 40
8020ceb5
MD
246struct lttng_ctx_field {
247 struct lttng_event_field event_field;
248 size_t (*get_size)(size_t offset);
249 void (*record)(struct lttng_ctx_field *field,
4cfec15c 250 struct lttng_ust_lib_ring_buffer_ctx *ctx,
7dd08bec 251 struct lttng_channel *chan);
77aa5901
MD
252 void (*get_value)(struct lttng_ctx_field *field,
253 union lttng_ctx_value *value);
8020ceb5 254 union {
d58d1454 255 struct lttng_perf_counter_field *perf_counter;
37d5e202 256 char padding[LTTNG_UST_CTX_FIELD_PADDING];
8020ceb5
MD
257 } u;
258 void (*destroy)(struct lttng_ctx_field *field);
259};
260
b2cc986a 261#define LTTNG_UST_CTX_PADDING 20
8020ceb5
MD
262struct lttng_ctx {
263 struct lttng_ctx_field *fields;
264 unsigned int nr_fields;
265 unsigned int allocated_fields;
b2cc986a 266 unsigned int largest_align;
37d5e202
MD
267 char padding[LTTNG_UST_CTX_PADDING];
268};
269
270#define LTTNG_UST_EVENT_DESC_PADDING 40
271struct lttng_event_desc {
272 const char *name;
fbdeb5ec 273 void (*probe_callback)(void);
37d5e202
MD
274 const struct lttng_event_ctx *ctx; /* context */
275 const struct lttng_event_field *fields; /* event payload */
276 unsigned int nr_fields;
277 const int **loglevel;
68755429 278 const char *signature; /* Argument types/names received */
6ddc916d
MD
279 union {
280 struct {
281 const char **model_emf_uri;
282 } ext;
283 char padding[LTTNG_UST_EVENT_DESC_PADDING];
284 } u;
37d5e202
MD
285};
286
71d31690 287#define LTTNG_UST_PROBE_DESC_PADDING 12
37d5e202
MD
288struct lttng_probe_desc {
289 const char *provider;
290 const struct lttng_event_desc **event_desc;
291 unsigned int nr_events;
292 struct cds_list_head head; /* chain registered probes */
6715d7d1
MD
293 struct cds_list_head lazy_init_head;
294 int lazy; /* lazy registration */
71d31690
MD
295 uint32_t major;
296 uint32_t minor;
37d5e202 297 char padding[LTTNG_UST_PROBE_DESC_PADDING];
8020ceb5
MD
298};
299
37d5e202
MD
300/* Data structures used by the tracer. */
301
e58095ef
MD
302enum lttng_enabler_type {
303 LTTNG_ENABLER_WILDCARD,
304 LTTNG_ENABLER_EVENT,
e6c12e3d
MD
305};
306
307/*
e58095ef
MD
308 * Enabler field, within whatever object is enabling an event. Target of
309 * backward reference.
e6c12e3d 310 */
e58095ef
MD
311struct lttng_enabler {
312 enum lttng_enabler_type type;
313
314 /* head list of struct lttng_ust_filter_bytecode_node */
315 struct cds_list_head filter_bytecode_head;
0f63324a
JI
316 /* head list of struct lttng_ust_excluder_node */
317 struct cds_list_head excluder_head;
e58095ef
MD
318 struct cds_list_head node; /* per-session list of enablers */
319
320 struct lttng_ust_event event_param;
321 struct lttng_channel *chan;
322 struct lttng_ctx *ctx;
323 unsigned int enabled:1;
e6c12e3d
MD
324};
325
c8fcf224
MD
326struct tp_list_entry {
327 struct lttng_ust_tracepoint_iter tp;
328 struct cds_list_head head;
329};
330
331struct lttng_ust_tracepoint_list {
332 struct tp_list_entry *iter;
333 struct cds_list_head head;
8020ceb5
MD
334};
335
06d4f27e
MD
336struct tp_field_list_entry {
337 struct lttng_ust_field_iter field;
338 struct cds_list_head head;
339};
340
341struct lttng_ust_field_list {
342 struct tp_field_list_entry *iter;
343 struct cds_list_head head;
344};
345
8165c8da 346struct ust_pending_probe;
7dd08bec 347struct lttng_event;
f488575f
MD
348
349struct lttng_ust_filter_bytecode_node {
350 struct cds_list_head node;
e58095ef 351 struct lttng_enabler *enabler;
a543151c
MD
352 /*
353 * struct lttng_ust_filter_bytecode has var. sized array, must
354 * be last field.
355 */
356 struct lttng_ust_filter_bytecode bc;
f488575f
MD
357};
358
0f63324a
JI
359struct lttng_ust_excluder_node {
360 struct cds_list_head node;
361 struct lttng_enabler *enabler;
362 /*
363 * struct lttng_ust_event_exclusion had variable sized array,
364 * must be last field.
365 */
366 struct lttng_ust_event_exclusion excluder;
367};
8a92ed2a
MD
368/*
369 * Filter return value masks.
370 */
371enum lttng_filter_ret {
372 LTTNG_FILTER_DISCARD = 0,
373 LTTNG_FILTER_RECORD_FLAG = (1ULL << 0),
374 /* Other bits are kept for future use. */
375};
376
f488575f
MD
377struct lttng_bytecode_runtime {
378 /* Associated bytecode */
379 struct lttng_ust_filter_bytecode_node *bc;
8a92ed2a 380 uint64_t (*filter)(void *filter_data, const char *filter_stack_data);
21af05a9 381 int link_failed;
e58095ef
MD
382 struct cds_list_head node; /* list of bytecode runtime in event */
383};
384
385/*
386 * Objects in a linked-list of enablers, owned by an event.
387 */
388struct lttng_enabler_ref {
389 struct cds_list_head node; /* enabler ref list */
390 struct lttng_enabler *ref; /* backward ref */
f488575f 391};
8165c8da 392
8020ceb5 393/*
7dd08bec
MD
394 * lttng_event structure is referred to by the tracing fast path. It
395 * must be kept small.
180901e6
MD
396 *
397 * IMPORTANT: this structure is part of the ABI between the probe and
398 * UST. Fields need to be only added at the end, never reordered, never
399 * removed.
8020ceb5 400 */
7dd08bec 401struct lttng_event {
180901e6 402 /* LTTng-UST 2.0 starts here */
8020ceb5 403 unsigned int id;
7dd08bec 404 struct lttng_channel *chan;
976fe9ea 405 int enabled;
8020ceb5 406 const struct lttng_event_desc *desc;
e58095ef 407 void *_deprecated1;
8020ceb5 408 struct lttng_ctx *ctx;
9f3fdbc6 409 enum lttng_ust_instrumentation instrumentation;
8020ceb5 410 union {
8020ceb5 411 } u;
e58095ef
MD
412 struct cds_list_head node; /* Event list in session */
413 struct cds_list_head _deprecated2;
414 void *_deprecated3;
13b21cd6 415 unsigned int _deprecated4:1;
e58095ef 416
180901e6 417 /* LTTng-UST 2.1 starts here */
e58095ef
MD
418 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
419 struct cds_list_head bytecode_runtime_head;
dcdeaff0 420 int has_enablers_without_bytecode;
e58095ef
MD
421 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
422 struct cds_list_head enablers_ref_head;
d56fa719 423 struct cds_hlist_node hlist; /* session ht of events */
ac6b4ac6 424 int registered; /* has reg'd tracepoint probe */
8020ceb5
MD
425};
426
8d8a24c8 427struct channel;
38fae1d3 428struct lttng_ust_shm_handle;
8d8a24c8 429
180901e6
MD
430/*
431 * IMPORTANT: this structure is part of the ABI between the probe and
432 * UST. Fields need to be only added at the end, never reordered, never
433 * removed.
434 */
7dd08bec
MD
435struct lttng_channel_ops {
436 struct lttng_channel *(*channel_create)(const char *name,
74d81a6c
MD
437 void *buf_addr,
438 size_t subbuf_size, size_t num_subbuf,
439 unsigned int switch_timer_interval,
440 unsigned int read_timer_interval,
6ca18e66 441 unsigned char *uuid,
a9ff648c
MD
442 uint32_t chan_id,
443 const char *shm_path);
74d81a6c 444 void (*channel_destroy)(struct lttng_channel *chan);
a44c74d9
MD
445 union {
446 void *_deprecated1;
447 unsigned long has_strcpy:1; /* ABI has strcpy */
448 } u;
9e917229 449 void *_deprecated2;
4cfec15c 450 int (*event_reserve)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
8020ceb5 451 uint32_t event_id);
4cfec15c 452 void (*event_commit)(struct lttng_ust_lib_ring_buffer_ctx *ctx);
74d81a6c
MD
453 void (*event_write)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
454 const void *src, size_t len);
8020ceb5
MD
455 /*
456 * packet_avail_size returns the available size in the current
457 * packet. Note that the size returned is only a hint, since it
458 * may change due to concurrent writes.
459 */
1d498196 460 size_t (*packet_avail_size)(struct channel *chan,
38fae1d3 461 struct lttng_ust_shm_handle *handle);
9f3fdbc6
MD
462 //wait_queue_head_t *(*get_reader_wait_queue)(struct channel *chan);
463 //wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
8020ceb5
MD
464 int (*is_finalized)(struct channel *chan);
465 int (*is_disabled)(struct channel *chan);
38fae1d3 466 int (*flush_buffer)(struct channel *chan, struct lttng_ust_shm_handle *handle);
a44c74d9
MD
467 void (*event_strcpy)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
468 const char *src, size_t len);
8020ceb5
MD
469};
470
180901e6
MD
471/*
472 * IMPORTANT: this structure is part of the ABI between the probe and
473 * UST. Fields need to be only added at the end, never reordered, never
474 * removed.
475 */
7dd08bec 476struct lttng_channel {
a3f61e7f
MD
477 /*
478 * The pointers located in this private data are NOT safe to be
479 * dereferenced by the consumer. The only operations the
480 * consumer process is designed to be allowed to do is to read
481 * and perform subbuffer flush.
482 */
8020ceb5 483 struct channel *chan; /* Channel buffers */
976fe9ea 484 int enabled;
8020ceb5
MD
485 struct lttng_ctx *ctx;
486 /* Event ID management */
7dd08bec 487 struct lttng_session *session;
0a42beb6 488 int objd; /* Object associated to channel */
32ce8569
MD
489 unsigned int _deprecated1;
490 unsigned int _deprecated2;
e58095ef 491 struct cds_list_head node; /* Channel list in session */
74d81a6c 492 const struct lttng_channel_ops *ops;
8020ceb5 493 int header_type; /* 0: unset, 1: compact, 2: large */
38fae1d3 494 struct lttng_ust_shm_handle *handle; /* shared-memory handle */
13b21cd6 495 unsigned int _deprecated3:1;
a3f61e7f 496
74d81a6c 497 /* Channel ID */
a3f61e7f 498 unsigned int id;
74d81a6c 499 enum lttng_ust_chan_type type;
19d8b1b3 500 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
ac6b4ac6 501 int tstate:1; /* Transient enable state */
8020ceb5
MD
502};
503
71a9d034 504#define LTTNG_UST_EVENT_HT_BITS 12
e58095ef
MD
505#define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
506
507struct lttng_ust_event_ht {
508 struct cds_hlist_head table[LTTNG_UST_EVENT_HT_SIZE];
509};
510
180901e6
MD
511/*
512 * IMPORTANT: this structure is part of the ABI between the probe and
513 * UST. Fields need to be only added at the end, never reordered, never
514 * removed.
515 */
7dd08bec 516struct lttng_session {
e58095ef
MD
517 int active; /* Is trace session active ? */
518 int been_active; /* Been active ? */
519 int objd; /* Object associated */
13b21cd6 520 void *_deprecated1;
e58095ef
MD
521 struct cds_list_head chan_head; /* Channel list head */
522 struct cds_list_head events_head; /* list of events */
13b21cd6 523 struct cds_list_head _deprecated2;
e58095ef 524 struct cds_list_head node; /* Session list */
13b21cd6
MD
525 int _deprecated3;
526 unsigned int _deprecated4:1;
e58095ef
MD
527
528 /* New UST 2.1 */
529 /* List of enablers */
530 struct cds_list_head enablers_head;
d56fa719 531 struct lttng_ust_event_ht events_ht; /* ht of events */
32ce8569 532 void *owner; /* object owner */
ac6b4ac6 533 int tstate:1; /* Transient enable state */
246be17e
PW
534
535 /* New UST 2.4 */
536 int statedump_pending:1;
8020ceb5
MD
537};
538
7dd08bec 539struct lttng_transport {
8020ceb5 540 char *name;
9f3fdbc6 541 struct cds_list_head node;
7dd08bec 542 struct lttng_channel_ops ops;
74d81a6c 543 const struct lttng_ust_lib_ring_buffer_config *client_config;
8020ceb5
MD
544};
545
7dd08bec
MD
546struct lttng_session *lttng_session_create(void);
547int lttng_session_enable(struct lttng_session *session);
548int lttng_session_disable(struct lttng_session *session);
549void lttng_session_destroy(struct lttng_session *session);
8020ceb5 550
7dd08bec 551struct lttng_channel *lttng_channel_create(struct lttng_session *session,
8020ceb5
MD
552 const char *transport_name,
553 void *buf_addr,
554 size_t subbuf_size, size_t num_subbuf,
555 unsigned int switch_timer_interval,
193183fb 556 unsigned int read_timer_interval,
ef9ff354
MD
557 int **shm_fd, int **wait_fd,
558 uint64_t **memory_map_size,
7dd08bec 559 struct lttng_channel *chan_priv_init);
8020ceb5 560
7dd08bec
MD
561int lttng_channel_enable(struct lttng_channel *channel);
562int lttng_channel_disable(struct lttng_channel *channel);
e58095ef
MD
563
564struct lttng_enabler *lttng_enabler_create(enum lttng_enabler_type type,
565 struct lttng_ust_event *event_param,
566 struct lttng_channel *chan);
567int lttng_enabler_enable(struct lttng_enabler *enabler);
568int lttng_enabler_disable(struct lttng_enabler *enabler);
569int lttng_enabler_attach_bytecode(struct lttng_enabler *enabler,
570 struct lttng_ust_filter_bytecode_node *bytecode);
571int lttng_enabler_attach_context(struct lttng_enabler *enabler,
572 struct lttng_ust_context *ctx);
0bfb5cbd
JI
573int lttng_enabler_attach_exclusion(struct lttng_enabler *enabler,
574 struct lttng_ust_excluder_node *excluder);
e58095ef
MD
575
576int lttng_attach_context(struct lttng_ust_context *context_param,
577 struct lttng_ctx **ctx, struct lttng_session *session);
a0a3bef9
MD
578void lttng_context_init(void);
579void lttng_context_exit(void);
0478bb8c 580extern struct lttng_ctx *lttng_static_ctx; /* Used by filtering */
976fe9ea 581
7dd08bec
MD
582void lttng_transport_register(struct lttng_transport *transport);
583void lttng_transport_unregister(struct lttng_transport *transport);
8020ceb5 584
4b4de73e 585void synchronize_trace(void);
8020ceb5 586
7dd08bec
MD
587int lttng_probe_register(struct lttng_probe_desc *desc);
588void lttng_probe_unregister(struct lttng_probe_desc *desc);
5f733922 589int lttng_fix_pending_events(void);
7dd08bec
MD
590int lttng_probes_init(void);
591void lttng_probes_exit(void);
8173ec7c 592int lttng_find_context(struct lttng_ctx *ctx, const char *name);
77aa5901 593int lttng_get_context_index(struct lttng_ctx *ctx, const char *name);
8173ec7c 594struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx_p);
b2cc986a 595void lttng_context_update(struct lttng_ctx *ctx);
8173ec7c 596void lttng_remove_context_field(struct lttng_ctx **ctx_p,
8020ceb5
MD
597 struct lttng_ctx_field *field);
598void lttng_destroy_context(struct lttng_ctx *ctx);
3b402b40 599int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx);
c1ef86f0 600int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx);
8173ec7c 601int lttng_add_pthread_id_to_ctx(struct lttng_ctx **ctx);
4847e9bb 602int lttng_add_procname_to_ctx(struct lttng_ctx **ctx);
96f85541 603int lttng_add_ip_to_ctx(struct lttng_ctx **ctx);
a93bfc45 604void lttng_context_vtid_reset(void);
c1ef86f0 605void lttng_context_vpid_reset(void);
9f3fdbc6 606
d58d1454
MD
607#ifdef LTTNG_UST_HAVE_PERF_EVENT
608int lttng_add_perf_counter_to_ctx(uint32_t type,
609 uint64_t config,
610 const char *name,
611 struct lttng_ctx **ctx);
612int lttng_perf_counter_init(void);
613void lttng_perf_counter_exit(void);
614#else /* #ifdef LTTNG_UST_HAVE_PERF_EVENT */
615static inline
616int lttng_add_perf_counter_to_ctx(uint32_t type,
617 uint64_t config,
618 const char *name,
619 struct lttng_ctx **ctx)
620{
621 return -ENOSYS;
622}
623static inline
624int lttng_perf_counter_init(void)
625{
626 return 0;
627}
628static inline
629void lttng_perf_counter_exit(void)
630{
631}
632#endif /* #else #ifdef LTTNG_UST_HAVE_PERF_EVENT */
633
82b9bde8
JD
634extern const struct lttng_ust_client_lib_ring_buffer_client_cb *lttng_client_callbacks_metadata;
635extern const struct lttng_ust_client_lib_ring_buffer_client_cb *lttng_client_callbacks_discard;
636extern const struct lttng_ust_client_lib_ring_buffer_client_cb *lttng_client_callbacks_overwrite;
c1fca457 637
7dd08bec 638struct lttng_transport *lttng_transport_find(const char *name);
c1fca457 639
7dd08bec
MD
640int lttng_probes_get_event_list(struct lttng_ust_tracepoint_list *list);
641void lttng_probes_prune_event_list(struct lttng_ust_tracepoint_list *list);
c8fcf224
MD
642struct lttng_ust_tracepoint_iter *
643 lttng_ust_tracepoint_list_get_iter_next(struct lttng_ust_tracepoint_list *list);
7dd08bec
MD
644int lttng_probes_get_field_list(struct lttng_ust_field_list *list);
645void lttng_probes_prune_field_list(struct lttng_ust_field_list *list);
06d4f27e
MD
646struct lttng_ust_field_iter *
647 lttng_ust_field_list_get_iter_next(struct lttng_ust_field_list *list);
c8fcf224 648
7dd08bec 649void lttng_filter_event_link_bytecode(struct lttng_event *event);
e58095ef
MD
650void lttng_enabler_event_link_bytecode(struct lttng_event *event,
651 struct lttng_enabler *enabler);
7dd08bec 652void lttng_free_event_filter_runtime(struct lttng_event *event);
e58095ef
MD
653void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime);
654
655struct cds_list_head *lttng_get_probe_list_head(void);
6715d7d1 656int lttng_session_active(void);
e6c12e3d 657
246be17e 658typedef int (*t_statedump_func_ptr)(struct lttng_session *session);
3327ac33 659void lttng_handle_pending_statedump(void *owner);
37dddb65 660struct cds_list_head *_lttng_get_sessions(void);
246be17e 661
6453d237
MD
662#ifdef __cplusplus
663}
664#endif
665
51489cad 666#endif /* _LTTNG_UST_EVENTS_H */
This page took 0.06499 seconds and 4 git commands to generate.