Remove has_strcpy check following probe provider version bump
[lttng-ust.git] / include / lttng / ust-events.h
... / ...
CommitLineData
1#ifndef _LTTNG_UST_EVENTS_H
2#define _LTTNG_UST_EVENTS_H
3
4/*
5 * lttng/ust-events.h
6 *
7 * Copyright 2010-2012 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Holds LTTng per-session event registry.
10 *
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:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
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.
28 */
29
30#include <urcu/list.h>
31#include <urcu/hlist.h>
32#include <stddef.h>
33#include <stdint.h>
34#include <lttng/ust-config.h>
35#include <lttng/ust-abi.h>
36#include <lttng/ust-tracer.h>
37#include <lttng/ust-endian.h>
38#include <float.h>
39#include <errno.h>
40#include <urcu/ref.h>
41#include <pthread.h>
42
43#ifndef LTTNG_PACKED
44#error "LTTNG_PACKED should be defined"
45#endif
46
47#ifdef __cplusplus
48extern "C" {
49#endif
50
51#define LTTNG_UST_UUID_LEN 16
52
53/*
54 * Tracepoint provider version. Compatibility based on the major number.
55 * Older tracepoint providers can always register to newer lttng-ust
56 * library, but the opposite is rejected: a newer tracepoint provider is
57 * rejected by an older lttng-ust library.
58 */
59#define LTTNG_UST_PROVIDER_MAJOR 2
60#define LTTNG_UST_PROVIDER_MINOR 0
61
62struct lttng_channel;
63struct lttng_session;
64struct lttng_ust_lib_ring_buffer_ctx;
65struct lttng_ust_context_app;
66struct lttng_event_field;
67
68/*
69 * Data structures used by tracepoint event declarations, and by the
70 * tracer. Those structures have padding for future extension.
71 */
72
73/*
74 * LTTng client type enumeration. Used by the consumer to map the
75 * callbacks from its own address space.
76 */
77enum lttng_client_types {
78 LTTNG_CLIENT_METADATA = 0,
79 LTTNG_CLIENT_DISCARD = 1,
80 LTTNG_CLIENT_OVERWRITE = 2,
81 LTTNG_CLIENT_DISCARD_RT = 3,
82 LTTNG_CLIENT_OVERWRITE_RT = 4,
83 LTTNG_NR_CLIENT_TYPES,
84};
85
86/* Type description */
87
88/* Update the astract_types name table in lttng-types.c along with this enum */
89enum lttng_abstract_types {
90 atype_integer,
91 atype_enum,
92 atype_array,
93 atype_sequence,
94 atype_string,
95 atype_float,
96 atype_dynamic,
97 atype_struct,
98 NR_ABSTRACT_TYPES,
99};
100
101/* Update the string_encodings name table in lttng-types.c along with this enum */
102enum lttng_string_encodings {
103 lttng_encode_none = 0,
104 lttng_encode_UTF8 = 1,
105 lttng_encode_ASCII = 2,
106 NR_STRING_ENCODINGS,
107};
108
109struct lttng_enum_value {
110 unsigned long long value;
111 unsigned int signedness:1;
112};
113
114enum lttng_enum_entry_options {
115 LTTNG_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
116};
117
118#define LTTNG_UST_ENUM_ENTRY_PADDING 16
119struct lttng_enum_entry {
120 struct lttng_enum_value start, end; /* start and end are inclusive */
121 const char *string;
122 union {
123 struct {
124 unsigned int options;
125 } LTTNG_PACKED extra;
126 char padding[LTTNG_UST_ENUM_ENTRY_PADDING];
127 } u;
128};
129
130#define __type_integer(_type, _byte_order, _base, _encoding) \
131 { \
132 .atype = atype_integer, \
133 .u = \
134 { \
135 .basic = \
136 { \
137 .integer = \
138 { \
139 .size = sizeof(_type) * CHAR_BIT, \
140 .alignment = lttng_alignof(_type) * CHAR_BIT, \
141 .signedness = lttng_is_signed_type(_type), \
142 .reverse_byte_order = _byte_order != BYTE_ORDER, \
143 .base = _base, \
144 .encoding = lttng_encode_##_encoding, \
145 } \
146 } \
147 }, \
148 } \
149
150#define LTTNG_UST_INTEGER_TYPE_PADDING 24
151struct lttng_integer_type {
152 unsigned int size; /* in bits */
153 unsigned short alignment; /* in bits */
154 unsigned int signedness:1;
155 unsigned int reverse_byte_order:1;
156 unsigned int base; /* 2, 8, 10, 16, for pretty print */
157 enum lttng_string_encodings encoding;
158 char padding[LTTNG_UST_INTEGER_TYPE_PADDING];
159};
160
161/*
162 * Only float and double are supported. long double is not supported at
163 * the moment.
164 */
165#define _float_mant_dig(_type) \
166 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
167 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
168 : 0))
169
170#define __type_float(_type) \
171 { \
172 .atype = atype_float, \
173 .u = \
174 { \
175 .basic = \
176 { \
177 ._float = \
178 { \
179 .exp_dig = sizeof(_type) * CHAR_BIT \
180 - _float_mant_dig(_type), \
181 .mant_dig = _float_mant_dig(_type), \
182 .alignment = lttng_alignof(_type) * CHAR_BIT, \
183 .reverse_byte_order = BYTE_ORDER != FLOAT_WORD_ORDER, \
184 } \
185 } \
186 }, \
187 } \
188
189#define LTTNG_UST_FLOAT_TYPE_PADDING 24
190struct lttng_float_type {
191 unsigned int exp_dig; /* exponent digits, in bits */
192 unsigned int mant_dig; /* mantissa digits, in bits */
193 unsigned short alignment; /* in bits */
194 unsigned int reverse_byte_order:1;
195 char padding[LTTNG_UST_FLOAT_TYPE_PADDING];
196};
197
198#define LTTNG_UST_BASIC_TYPE_PADDING 128
199union _lttng_basic_type {
200 struct lttng_integer_type integer;
201 struct {
202 const struct lttng_enum_desc *desc; /* Enumeration mapping */
203 struct lttng_integer_type container_type;
204 } enumeration;
205 struct {
206 enum lttng_string_encodings encoding;
207 } string;
208 struct lttng_float_type _float;
209 char padding[LTTNG_UST_BASIC_TYPE_PADDING];
210};
211
212struct lttng_basic_type {
213 enum lttng_abstract_types atype;
214 union {
215 union _lttng_basic_type basic;
216 } u;
217};
218
219#define LTTNG_UST_TYPE_PADDING 128
220struct lttng_type {
221 enum lttng_abstract_types atype;
222 union {
223 union _lttng_basic_type basic;
224 struct {
225 struct lttng_basic_type elem_type;
226 unsigned int length; /* num. elems. */
227 } array;
228 struct {
229 struct lttng_basic_type length_type;
230 struct lttng_basic_type elem_type;
231 } sequence;
232 struct {
233 uint32_t nr_fields;
234 struct lttng_event_field *fields; /* Array of fields. */
235 } _struct;
236 char padding[LTTNG_UST_TYPE_PADDING];
237 } u;
238};
239
240#define LTTNG_UST_ENUM_TYPE_PADDING 24
241struct lttng_enum_desc {
242 const char *name;
243 const struct lttng_enum_entry *entries;
244 unsigned int nr_entries;
245 char padding[LTTNG_UST_ENUM_TYPE_PADDING];
246};
247
248/*
249 * Event field description
250 *
251 * IMPORTANT: this structure is part of the ABI between the probe and
252 * UST. Fields need to be only added at the end, never reordered, never
253 * removed.
254 */
255
256#define LTTNG_UST_EVENT_FIELD_PADDING 28
257struct lttng_event_field {
258 const char *name;
259 struct lttng_type type;
260 unsigned int nowrite; /* do not write into trace */
261 char padding[LTTNG_UST_EVENT_FIELD_PADDING];
262};
263
264enum lttng_ust_dynamic_type {
265 LTTNG_UST_DYNAMIC_TYPE_NONE,
266 LTTNG_UST_DYNAMIC_TYPE_S8,
267 LTTNG_UST_DYNAMIC_TYPE_S16,
268 LTTNG_UST_DYNAMIC_TYPE_S32,
269 LTTNG_UST_DYNAMIC_TYPE_S64,
270 LTTNG_UST_DYNAMIC_TYPE_U8,
271 LTTNG_UST_DYNAMIC_TYPE_U16,
272 LTTNG_UST_DYNAMIC_TYPE_U32,
273 LTTNG_UST_DYNAMIC_TYPE_U64,
274 LTTNG_UST_DYNAMIC_TYPE_FLOAT,
275 LTTNG_UST_DYNAMIC_TYPE_DOUBLE,
276 LTTNG_UST_DYNAMIC_TYPE_STRING,
277 _NR_LTTNG_UST_DYNAMIC_TYPES,
278};
279
280struct lttng_ctx_value {
281 enum lttng_ust_dynamic_type sel;
282 union {
283 int64_t s64;
284 const char *str;
285 double d;
286 } u;
287};
288
289struct lttng_perf_counter_field;
290
291#define LTTNG_UST_CTX_FIELD_PADDING 40
292struct lttng_ctx_field {
293 struct lttng_event_field event_field;
294 size_t (*get_size)(struct lttng_ctx_field *field, size_t offset);
295 void (*record)(struct lttng_ctx_field *field,
296 struct lttng_ust_lib_ring_buffer_ctx *ctx,
297 struct lttng_channel *chan);
298 void (*get_value)(struct lttng_ctx_field *field,
299 struct lttng_ctx_value *value);
300 union {
301 struct lttng_perf_counter_field *perf_counter;
302 char padding[LTTNG_UST_CTX_FIELD_PADDING];
303 } u;
304 void (*destroy)(struct lttng_ctx_field *field);
305 char *field_name; /* Has ownership, dynamically allocated. */
306};
307
308#define LTTNG_UST_CTX_PADDING 20
309struct lttng_ctx {
310 struct lttng_ctx_field *fields;
311 unsigned int nr_fields;
312 unsigned int allocated_fields;
313 unsigned int largest_align;
314 char padding[LTTNG_UST_CTX_PADDING];
315};
316
317#define LTTNG_UST_EVENT_DESC_PADDING 40
318struct lttng_event_desc {
319 const char *name;
320 void (*probe_callback)(void);
321 const struct lttng_event_ctx *ctx; /* context */
322 const struct lttng_event_field *fields; /* event payload */
323 unsigned int nr_fields;
324 const int **loglevel;
325 const char *signature; /* Argument types/names received */
326 union {
327 struct {
328 const char **model_emf_uri;
329 } ext;
330 char padding[LTTNG_UST_EVENT_DESC_PADDING];
331 } u;
332};
333
334#define LTTNG_UST_PROBE_DESC_PADDING 12
335struct lttng_probe_desc {
336 const char *provider;
337 const struct lttng_event_desc **event_desc;
338 unsigned int nr_events;
339 struct cds_list_head head; /* chain registered probes */
340 struct cds_list_head lazy_init_head;
341 int lazy; /* lazy registration */
342 uint32_t major;
343 uint32_t minor;
344 char padding[LTTNG_UST_PROBE_DESC_PADDING];
345};
346
347/* Data structures used by the tracer. */
348
349enum lttng_enabler_type {
350 LTTNG_ENABLER_STAR_GLOB,
351 LTTNG_ENABLER_EVENT,
352};
353
354/*
355 * Enabler field, within whatever object is enabling an event. Target of
356 * backward reference.
357 */
358struct lttng_enabler {
359 enum lttng_enabler_type type;
360
361 /* head list of struct lttng_ust_filter_bytecode_node */
362 struct cds_list_head filter_bytecode_head;
363 /* head list of struct lttng_ust_excluder_node */
364 struct cds_list_head excluder_head;
365 struct cds_list_head node; /* per-session list of enablers */
366
367 struct lttng_ust_event event_param;
368 struct lttng_channel *chan;
369 /*
370 * Unused, but kept around to make it explicit that the tracer can do
371 * it.
372 */
373 struct lttng_ctx *ctx;
374 unsigned int enabled:1;
375};
376
377struct tp_list_entry {
378 struct lttng_ust_tracepoint_iter tp;
379 struct cds_list_head head;
380};
381
382struct lttng_ust_tracepoint_list {
383 struct tp_list_entry *iter;
384 struct cds_list_head head;
385};
386
387struct tp_field_list_entry {
388 struct lttng_ust_field_iter field;
389 struct cds_list_head head;
390};
391
392struct lttng_ust_field_list {
393 struct tp_field_list_entry *iter;
394 struct cds_list_head head;
395};
396
397struct ust_pending_probe;
398struct lttng_event;
399
400struct lttng_ust_filter_bytecode_node {
401 struct cds_list_head node;
402 struct lttng_enabler *enabler;
403 /*
404 * struct lttng_ust_filter_bytecode has var. sized array, must
405 * be last field.
406 */
407 struct lttng_ust_filter_bytecode bc;
408};
409
410struct lttng_ust_excluder_node {
411 struct cds_list_head node;
412 struct lttng_enabler *enabler;
413 /*
414 * struct lttng_ust_event_exclusion had variable sized array,
415 * must be last field.
416 */
417 struct lttng_ust_event_exclusion excluder;
418};
419/*
420 * Filter return value masks.
421 */
422enum lttng_filter_ret {
423 LTTNG_FILTER_DISCARD = 0,
424 LTTNG_FILTER_RECORD_FLAG = (1ULL << 0),
425 /* Other bits are kept for future use. */
426};
427
428struct lttng_bytecode_runtime {
429 /* Associated bytecode */
430 struct lttng_ust_filter_bytecode_node *bc;
431 uint64_t (*filter)(void *filter_data, const char *filter_stack_data);
432 int link_failed;
433 struct cds_list_head node; /* list of bytecode runtime in event */
434 struct lttng_session *session;
435};
436
437/*
438 * Objects in a linked-list of enablers, owned by an event.
439 */
440struct lttng_enabler_ref {
441 struct cds_list_head node; /* enabler ref list */
442 struct lttng_enabler *ref; /* backward ref */
443};
444
445/*
446 * lttng_event structure is referred to by the tracing fast path. It
447 * must be kept small.
448 *
449 * IMPORTANT: this structure is part of the ABI between the probe and
450 * UST. Fields need to be only added at the end, never reordered, never
451 * removed.
452 */
453struct lttng_event {
454 /* LTTng-UST 2.0 starts here */
455 unsigned int id;
456 struct lttng_channel *chan;
457 int enabled;
458 const struct lttng_event_desc *desc;
459 void *_deprecated1;
460 struct lttng_ctx *ctx;
461 enum lttng_ust_instrumentation instrumentation;
462 struct cds_list_head node; /* Event list in session */
463 struct cds_list_head _deprecated2;
464 void *_deprecated3;
465 unsigned int _deprecated4:1;
466
467 /* LTTng-UST 2.1 starts here */
468 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
469 struct cds_list_head bytecode_runtime_head;
470 int has_enablers_without_bytecode;
471 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
472 struct cds_list_head enablers_ref_head;
473 struct cds_hlist_node hlist; /* session ht of events */
474 int registered; /* has reg'd tracepoint probe */
475};
476
477struct lttng_enum {
478 const struct lttng_enum_desc *desc;
479 struct lttng_session *session;
480 struct cds_list_head node; /* Enum list in session */
481 struct cds_hlist_node hlist; /* Session ht of enums */
482 uint64_t id; /* Enumeration ID in sessiond */
483};
484
485struct channel;
486struct lttng_ust_shm_handle;
487
488/*
489 * IMPORTANT: this structure is part of the ABI between the probe and
490 * UST. Fields need to be only added at the end, never reordered, never
491 * removed.
492 */
493struct lttng_channel_ops {
494 struct lttng_channel *(*channel_create)(const char *name,
495 void *buf_addr,
496 size_t subbuf_size, size_t num_subbuf,
497 unsigned int switch_timer_interval,
498 unsigned int read_timer_interval,
499 unsigned char *uuid,
500 uint32_t chan_id,
501 const int *stream_fds, int nr_stream_fds,
502 int64_t blocking_timeout);
503 void (*channel_destroy)(struct lttng_channel *chan);
504 union {
505 void *_deprecated1;
506 /*
507 * has_strcpy is needed by probe providers version 1.0 to
508 * dynamically detect whether the LTTng-UST tracepoint
509 * provider ABI implements event_strcpy. Starting from
510 * probe providers version 2.0, the check is not needed,
511 * but backward compatibility is provided for older versions.
512 */
513 unsigned long has_strcpy:1; /* ABI has strcpy */
514 } u;
515 void *_deprecated2;
516 int (*event_reserve)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
517 uint32_t event_id);
518 void (*event_commit)(struct lttng_ust_lib_ring_buffer_ctx *ctx);
519 void (*event_write)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
520 const void *src, size_t len);
521 /*
522 * packet_avail_size returns the available size in the current
523 * packet. Note that the size returned is only a hint, since it
524 * may change due to concurrent writes.
525 */
526 size_t (*packet_avail_size)(struct channel *chan,
527 struct lttng_ust_shm_handle *handle);
528 //wait_queue_head_t *(*get_reader_wait_queue)(struct channel *chan);
529 //wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
530 int (*is_finalized)(struct channel *chan);
531 int (*is_disabled)(struct channel *chan);
532 int (*flush_buffer)(struct channel *chan, struct lttng_ust_shm_handle *handle);
533 void (*event_strcpy)(struct lttng_ust_lib_ring_buffer_ctx *ctx,
534 const char *src, size_t len);
535};
536
537/*
538 * IMPORTANT: this structure is part of the ABI between the probe and
539 * UST. Fields need to be only added at the end, never reordered, never
540 * removed.
541 */
542struct lttng_channel {
543 /*
544 * The pointers located in this private data are NOT safe to be
545 * dereferenced by the consumer. The only operations the
546 * consumer process is designed to be allowed to do is to read
547 * and perform subbuffer flush.
548 */
549 struct channel *chan; /* Channel buffers */
550 int enabled;
551 struct lttng_ctx *ctx;
552 /* Event ID management */
553 struct lttng_session *session;
554 int objd; /* Object associated to channel */
555 unsigned int _deprecated1;
556 unsigned int _deprecated2;
557 struct cds_list_head node; /* Channel list in session */
558 const struct lttng_channel_ops *ops;
559 int header_type; /* 0: unset, 1: compact, 2: large */
560 struct lttng_ust_shm_handle *handle; /* shared-memory handle */
561 unsigned int _deprecated3:1;
562
563 /* Channel ID */
564 unsigned int id;
565 enum lttng_ust_chan_type type;
566 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
567 int tstate:1; /* Transient enable state */
568};
569
570#define LTTNG_UST_STACK_CTX_PADDING 32
571struct lttng_stack_ctx {
572 struct lttng_event *event;
573 struct lttng_ctx *chan_ctx; /* RCU dereferenced. */
574 struct lttng_ctx *event_ctx; /* RCU dereferenced. */
575 char padding[LTTNG_UST_STACK_CTX_PADDING];
576};
577
578#define LTTNG_UST_EVENT_HT_BITS 12
579#define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
580
581struct lttng_ust_event_ht {
582 struct cds_hlist_head table[LTTNG_UST_EVENT_HT_SIZE];
583};
584
585#define LTTNG_UST_ENUM_HT_BITS 12
586#define LTTNG_UST_ENUM_HT_SIZE (1U << LTTNG_UST_ENUM_HT_BITS)
587
588struct lttng_ust_enum_ht {
589 struct cds_hlist_head table[LTTNG_UST_ENUM_HT_SIZE];
590};
591
592/*
593 * IMPORTANT: this structure is part of the ABI between the probe and
594 * UST. Fields need to be only added at the end, never reordered, never
595 * removed.
596 */
597struct lttng_session {
598 int active; /* Is trace session active ? */
599 int been_active; /* Been active ? */
600 int objd; /* Object associated */
601 void *_deprecated1;
602 struct cds_list_head chan_head; /* Channel list head */
603 struct cds_list_head events_head; /* list of events */
604 struct cds_list_head _deprecated2;
605 struct cds_list_head node; /* Session list */
606 int _deprecated3;
607 unsigned int _deprecated4:1;
608
609 /* New UST 2.1 */
610 /* List of enablers */
611 struct cds_list_head enablers_head;
612 struct lttng_ust_event_ht events_ht; /* ht of events */
613 void *owner; /* object owner */
614 int tstate:1; /* Transient enable state */
615
616 /* New UST 2.4 */
617 int statedump_pending:1;
618
619 /* New UST 2.8 */
620 struct lttng_ust_enum_ht enums_ht; /* ht of enumerations */
621 struct cds_list_head enums_head;
622 struct lttng_ctx *ctx; /* contexts for filters. */
623};
624
625struct lttng_transport {
626 char *name;
627 struct cds_list_head node;
628 struct lttng_channel_ops ops;
629 const struct lttng_ust_lib_ring_buffer_config *client_config;
630};
631
632struct lttng_session *lttng_session_create(void);
633int lttng_session_enable(struct lttng_session *session);
634int lttng_session_disable(struct lttng_session *session);
635int lttng_session_statedump(struct lttng_session *session);
636void lttng_session_destroy(struct lttng_session *session);
637
638struct lttng_channel *lttng_channel_create(struct lttng_session *session,
639 const char *transport_name,
640 void *buf_addr,
641 size_t subbuf_size, size_t num_subbuf,
642 unsigned int switch_timer_interval,
643 unsigned int read_timer_interval,
644 int **shm_fd, int **wait_fd,
645 uint64_t **memory_map_size,
646 struct lttng_channel *chan_priv_init);
647
648int lttng_channel_enable(struct lttng_channel *channel);
649int lttng_channel_disable(struct lttng_channel *channel);
650
651struct lttng_enabler *lttng_enabler_create(enum lttng_enabler_type type,
652 struct lttng_ust_event *event_param,
653 struct lttng_channel *chan);
654int lttng_enabler_enable(struct lttng_enabler *enabler);
655int lttng_enabler_disable(struct lttng_enabler *enabler);
656int lttng_enabler_attach_bytecode(struct lttng_enabler *enabler,
657 struct lttng_ust_filter_bytecode_node *bytecode);
658int lttng_enabler_attach_context(struct lttng_enabler *enabler,
659 struct lttng_ust_context *ctx);
660int lttng_enabler_attach_exclusion(struct lttng_enabler *enabler,
661 struct lttng_ust_excluder_node *excluder);
662
663int lttng_attach_context(struct lttng_ust_context *context_param,
664 union ust_args *uargs,
665 struct lttng_ctx **ctx, struct lttng_session *session);
666int lttng_session_context_init(struct lttng_ctx **ctx);
667
668void lttng_transport_register(struct lttng_transport *transport);
669void lttng_transport_unregister(struct lttng_transport *transport);
670
671void synchronize_trace(void);
672
673int lttng_probe_register(struct lttng_probe_desc *desc);
674void lttng_probe_unregister(struct lttng_probe_desc *desc);
675void lttng_probe_provider_unregister_events(struct lttng_probe_desc *desc);
676int lttng_fix_pending_events(void);
677int lttng_probes_init(void);
678void lttng_probes_exit(void);
679int lttng_find_context(struct lttng_ctx *ctx, const char *name);
680int lttng_get_context_index(struct lttng_ctx *ctx, const char *name);
681struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx_p);
682void lttng_context_update(struct lttng_ctx *ctx);
683void lttng_remove_context_field(struct lttng_ctx **ctx_p,
684 struct lttng_ctx_field *field);
685void lttng_destroy_context(struct lttng_ctx *ctx);
686int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx);
687int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx);
688int lttng_add_pthread_id_to_ctx(struct lttng_ctx **ctx);
689int lttng_add_procname_to_ctx(struct lttng_ctx **ctx);
690int lttng_add_ip_to_ctx(struct lttng_ctx **ctx);
691int lttng_add_cpu_id_to_ctx(struct lttng_ctx **ctx);
692int lttng_add_dyntest_to_ctx(struct lttng_ctx **ctx);
693int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx);
694int lttng_add_ipc_ns_to_ctx(struct lttng_ctx **ctx);
695int lttng_add_mnt_ns_to_ctx(struct lttng_ctx **ctx);
696int lttng_add_net_ns_to_ctx(struct lttng_ctx **ctx);
697int lttng_add_pid_ns_to_ctx(struct lttng_ctx **ctx);
698int lttng_add_user_ns_to_ctx(struct lttng_ctx **ctx);
699int lttng_add_uts_ns_to_ctx(struct lttng_ctx **ctx);
700int lttng_add_vuid_to_ctx(struct lttng_ctx **ctx);
701int lttng_add_veuid_to_ctx(struct lttng_ctx **ctx);
702int lttng_add_vsuid_to_ctx(struct lttng_ctx **ctx);
703int lttng_add_vgid_to_ctx(struct lttng_ctx **ctx);
704int lttng_add_vegid_to_ctx(struct lttng_ctx **ctx);
705int lttng_add_vsgid_to_ctx(struct lttng_ctx **ctx);
706void lttng_context_vtid_reset(void);
707void lttng_context_vpid_reset(void);
708void lttng_context_procname_reset(void);
709void lttng_context_cgroup_ns_reset(void);
710void lttng_context_ipc_ns_reset(void);
711void lttng_context_mnt_ns_reset(void);
712void lttng_context_net_ns_reset(void);
713void lttng_context_pid_ns_reset(void);
714void lttng_context_user_ns_reset(void);
715void lttng_context_uts_ns_reset(void);
716void lttng_context_vuid_reset(void);
717void lttng_context_veuid_reset(void);
718void lttng_context_vsuid_reset(void);
719void lttng_context_vgid_reset(void);
720void lttng_context_vegid_reset(void);
721void lttng_context_vsgid_reset(void);
722
723#ifdef LTTNG_UST_HAVE_PERF_EVENT
724int lttng_add_perf_counter_to_ctx(uint32_t type,
725 uint64_t config,
726 const char *name,
727 struct lttng_ctx **ctx);
728int lttng_perf_counter_init(void);
729void lttng_perf_counter_exit(void);
730#else /* #ifdef LTTNG_UST_HAVE_PERF_EVENT */
731static inline
732int lttng_add_perf_counter_to_ctx(uint32_t type,
733 uint64_t config,
734 const char *name,
735 struct lttng_ctx **ctx)
736{
737 return -ENOSYS;
738}
739static inline
740int lttng_perf_counter_init(void)
741{
742 return 0;
743}
744static inline
745void lttng_perf_counter_exit(void)
746{
747}
748#endif /* #else #ifdef LTTNG_UST_HAVE_PERF_EVENT */
749
750extern const struct lttng_ust_client_lib_ring_buffer_client_cb *lttng_client_callbacks_metadata;
751extern const struct lttng_ust_client_lib_ring_buffer_client_cb *lttng_client_callbacks_discard;
752extern const struct lttng_ust_client_lib_ring_buffer_client_cb *lttng_client_callbacks_overwrite;
753
754struct lttng_transport *lttng_transport_find(const char *name);
755
756int lttng_probes_get_event_list(struct lttng_ust_tracepoint_list *list);
757void lttng_probes_prune_event_list(struct lttng_ust_tracepoint_list *list);
758struct lttng_ust_tracepoint_iter *
759 lttng_ust_tracepoint_list_get_iter_next(struct lttng_ust_tracepoint_list *list);
760int lttng_probes_get_field_list(struct lttng_ust_field_list *list);
761void lttng_probes_prune_field_list(struct lttng_ust_field_list *list);
762struct lttng_ust_field_iter *
763 lttng_ust_field_list_get_iter_next(struct lttng_ust_field_list *list);
764
765void lttng_enabler_event_link_bytecode(struct lttng_event *event,
766 struct lttng_enabler *enabler);
767void lttng_free_event_filter_runtime(struct lttng_event *event);
768void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime);
769
770struct cds_list_head *lttng_get_probe_list_head(void);
771int lttng_session_active(void);
772
773typedef int (*t_statedump_func_ptr)(struct lttng_session *session);
774void lttng_handle_pending_statedump(void *owner);
775struct cds_list_head *_lttng_get_sessions(void);
776
777struct lttng_enum *lttng_ust_enum_get_from_desc(struct lttng_session *session,
778 const struct lttng_enum_desc *enum_desc);
779
780void lttng_ust_dl_update(void *ip);
781void lttng_ust_fixup_fd_tracker_tls(void);
782
783/* For backward compatibility. Leave those exported symbols in place. */
784extern struct lttng_ctx *lttng_static_ctx;
785void lttng_context_init(void);
786void lttng_context_exit(void);
787void lttng_filter_event_link_bytecode(struct lttng_event *event);
788
789#ifdef __cplusplus
790}
791#endif
792
793#endif /* _LTTNG_UST_EVENTS_H */
This page took 0.025139 seconds and 4 git commands to generate.