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