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