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