1 #ifndef _LTTNG_UST_EVENTS_H
2 #define _LTTNG_UST_EVENTS_H
7 * Copyright 2010-2012 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * Holds LTTng per-session event registry.
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:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
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
30 #include <urcu/list.h>
31 #include <urcu/hlist.h>
33 #include <lttng/ust-abi.h>
34 #include <lttng/ust-tracer.h>
35 #include <lttng/ust-endian.h>
38 #define LTTNG_UST_UUID_LEN 16
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.
46 #define LTTNG_UST_PROVIDER_MAJOR 1
47 #define LTTNG_UST_PROVIDER_MINOR 0
51 struct lttng_ust_lib_ring_buffer_ctx
;
54 * Data structures used by tracepoint event declarations, and by the
55 * tracer. Those structures have padding for future extension.
59 * LTTng client type enumeration. Used by the consumer to map the
60 * callbacks from its own address space.
62 enum lttng_client_types
{
63 LTTNG_CLIENT_METADATA
= 0,
64 LTTNG_CLIENT_DISCARD
= 1,
65 LTTNG_CLIENT_OVERWRITE
= 2,
66 LTTNG_CLIENT_DISCARD_RT
= 3,
67 LTTNG_CLIENT_OVERWRITE_RT
= 4,
68 LTTNG_NR_CLIENT_TYPES
,
71 /* Type description */
73 /* Update the astract_types name table in lttng-types.c along with this enum */
74 enum lttng_abstract_types
{
84 /* Update the string_encodings name table in lttng-types.c along with this enum */
85 enum lttng_string_encodings
{
86 lttng_encode_none
= 0,
87 lttng_encode_UTF8
= 1,
88 lttng_encode_ASCII
= 2,
92 #define LTTNG_UST_ENUM_ENTRY_PADDING 16
93 struct lttng_enum_entry
{
94 unsigned long long start
, end
; /* start and end are inclusive */
96 char padding
[LTTNG_UST_ENUM_ENTRY_PADDING
];
99 #define __type_integer(_type, _byte_order, _base, _encoding) \
101 .atype = atype_integer, \
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, \
113 .encoding = lttng_encode_##_encoding, \
119 #define LTTNG_UST_INTEGER_TYPE_PADDING 24
120 struct 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
;
127 char padding
[LTTNG_UST_INTEGER_TYPE_PADDING
];
131 * Only float and double are supported. long double is not supported at
134 #define _float_mant_dig(_type) \
135 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
136 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
139 #define __type_float(_type) \
141 .atype = atype_float, \
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, \
158 #define LTTNG_UST_FLOAT_TYPE_PADDING 24
159 struct 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;
164 char padding
[LTTNG_UST_FLOAT_TYPE_PADDING
];
167 #define LTTNG_UST_BASIC_TYPE_PADDING 128
168 union _lttng_basic_type
{
169 struct lttng_integer_type integer
;
174 enum lttng_string_encodings encoding
;
176 struct lttng_float_type _float
;
177 char padding
[LTTNG_UST_BASIC_TYPE_PADDING
];
180 struct lttng_basic_type
{
181 enum lttng_abstract_types atype
;
183 union _lttng_basic_type basic
;
187 #define LTTNG_UST_TYPE_PADDING 128
189 enum lttng_abstract_types atype
;
191 union _lttng_basic_type basic
;
193 struct lttng_basic_type elem_type
;
194 unsigned int length
; /* num. elems. */
197 struct lttng_basic_type length_type
;
198 struct lttng_basic_type elem_type
;
200 char padding
[LTTNG_UST_TYPE_PADDING
];
204 #define LTTNG_UST_ENUM_TYPE_PADDING 24
207 struct lttng_type container_type
;
208 const struct lttng_enum_entry
*entries
;
210 char padding
[LTTNG_UST_ENUM_TYPE_PADDING
];
214 * Event field description
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
221 #define LTTNG_UST_EVENT_FIELD_PADDING 28
222 struct lttng_event_field
{
224 struct lttng_type type
;
225 unsigned int nowrite
; /* do not write into trace */
226 char padding
[LTTNG_UST_EVENT_FIELD_PADDING
];
229 union lttng_ctx_value
{
235 #define LTTNG_UST_CTX_FIELD_PADDING 40
236 struct 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
,
240 struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
241 struct lttng_channel
*chan
);
242 void (*get_value
)(struct lttng_ctx_field
*field
,
243 union lttng_ctx_value
*value
);
245 char padding
[LTTNG_UST_CTX_FIELD_PADDING
];
247 void (*destroy
)(struct lttng_ctx_field
*field
);
250 #define LTTNG_UST_CTX_PADDING 24
252 struct lttng_ctx_field
*fields
;
253 unsigned int nr_fields
;
254 unsigned int allocated_fields
;
255 char padding
[LTTNG_UST_CTX_PADDING
];
258 #define LTTNG_UST_EVENT_DESC_PADDING 40
259 struct lttng_event_desc
{
261 void (*probe_callback
)(void);
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
;
266 const char *signature
; /* Argument types/names received */
269 const char **model_emf_uri
;
271 char padding
[LTTNG_UST_EVENT_DESC_PADDING
];
275 #define LTTNG_UST_PROBE_DESC_PADDING 12
276 struct 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 */
281 struct cds_list_head lazy_init_head
;
282 int lazy
; /* lazy registration */
285 char padding
[LTTNG_UST_PROBE_DESC_PADDING
];
288 /* Data structures used by the tracer. */
290 enum lttng_enabler_type
{
291 LTTNG_ENABLER_WILDCARD
,
296 * Enabler field, within whatever object is enabling an event. Target of
297 * backward reference.
299 struct lttng_enabler
{
300 enum lttng_enabler_type type
;
302 /* head list of struct lttng_ust_filter_bytecode_node */
303 struct cds_list_head filter_bytecode_head
;
304 /* head list of struct lttng_ust_excluder_node */
305 struct cds_list_head excluder_head
;
306 struct cds_list_head node
; /* per-session list of enablers */
308 struct lttng_ust_event event_param
;
309 struct lttng_channel
*chan
;
310 struct lttng_ctx
*ctx
;
311 unsigned int enabled
:1;
314 struct tp_list_entry
{
315 struct lttng_ust_tracepoint_iter tp
;
316 struct cds_list_head head
;
319 struct lttng_ust_tracepoint_list
{
320 struct tp_list_entry
*iter
;
321 struct cds_list_head head
;
324 struct tp_field_list_entry
{
325 struct lttng_ust_field_iter field
;
326 struct cds_list_head head
;
329 struct lttng_ust_field_list
{
330 struct tp_field_list_entry
*iter
;
331 struct cds_list_head head
;
334 struct ust_pending_probe
;
337 struct lttng_ust_filter_bytecode_node
{
338 struct cds_list_head node
;
339 struct lttng_enabler
*enabler
;
341 * struct lttng_ust_filter_bytecode has var. sized array, must
344 struct lttng_ust_filter_bytecode bc
;
347 struct lttng_ust_excluder_node
{
348 struct cds_list_head node
;
349 struct lttng_enabler
*enabler
;
351 * struct lttng_ust_event_exclusion had variable sized array,
352 * must be last field.
354 struct lttng_ust_event_exclusion excluder
;
357 * Filter return value masks.
359 enum lttng_filter_ret
{
360 LTTNG_FILTER_DISCARD
= 0,
361 LTTNG_FILTER_RECORD_FLAG
= (1ULL << 0),
362 /* Other bits are kept for future use. */
365 struct lttng_bytecode_runtime
{
366 /* Associated bytecode */
367 struct lttng_ust_filter_bytecode_node
*bc
;
368 uint64_t (*filter
)(void *filter_data
, const char *filter_stack_data
);
370 struct cds_list_head node
; /* list of bytecode runtime in event */
374 * Objects in a linked-list of enablers, owned by an event.
376 struct lttng_enabler_ref
{
377 struct cds_list_head node
; /* enabler ref list */
378 struct lttng_enabler
*ref
; /* backward ref */
382 * lttng_event structure is referred to by the tracing fast path. It
383 * must be kept small.
385 * IMPORTANT: this structure is part of the ABI between the probe and
386 * UST. Fields need to be only added at the end, never reordered, never
390 /* LTTng-UST 2.0 starts here */
392 struct lttng_channel
*chan
;
394 const struct lttng_event_desc
*desc
;
396 struct lttng_ctx
*ctx
;
397 enum lttng_ust_instrumentation instrumentation
;
400 struct cds_list_head node
; /* Event list in session */
401 struct cds_list_head _deprecated2
;
403 unsigned int _deprecated4
:1;
405 /* LTTng-UST 2.1 starts here */
406 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
407 struct cds_list_head bytecode_runtime_head
;
408 int has_enablers_without_bytecode
;
409 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
410 struct cds_list_head enablers_ref_head
;
411 struct cds_hlist_node hlist
; /* session ht of events */
412 int registered
; /* has reg'd tracepoint probe */
416 struct lttng_ust_shm_handle
;
419 * IMPORTANT: this structure is part of the ABI between the probe and
420 * UST. Fields need to be only added at the end, never reordered, never
423 struct lttng_channel_ops
{
424 struct lttng_channel
*(*channel_create
)(const char *name
,
426 size_t subbuf_size
, size_t num_subbuf
,
427 unsigned int switch_timer_interval
,
428 unsigned int read_timer_interval
,
431 void (*channel_destroy
)(struct lttng_channel
*chan
);
434 int (*event_reserve
)(struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
436 void (*event_commit
)(struct lttng_ust_lib_ring_buffer_ctx
*ctx
);
437 void (*event_write
)(struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
438 const void *src
, size_t len
);
440 * packet_avail_size returns the available size in the current
441 * packet. Note that the size returned is only a hint, since it
442 * may change due to concurrent writes.
444 size_t (*packet_avail_size
)(struct channel
*chan
,
445 struct lttng_ust_shm_handle
*handle
);
446 //wait_queue_head_t *(*get_reader_wait_queue)(struct channel *chan);
447 //wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
448 int (*is_finalized
)(struct channel
*chan
);
449 int (*is_disabled
)(struct channel
*chan
);
450 int (*flush_buffer
)(struct channel
*chan
, struct lttng_ust_shm_handle
*handle
);
454 * IMPORTANT: this structure is part of the ABI between the probe and
455 * UST. Fields need to be only added at the end, never reordered, never
458 struct lttng_channel
{
460 * The pointers located in this private data are NOT safe to be
461 * dereferenced by the consumer. The only operations the
462 * consumer process is designed to be allowed to do is to read
463 * and perform subbuffer flush.
465 struct channel
*chan
; /* Channel buffers */
467 struct lttng_ctx
*ctx
;
468 /* Event ID management */
469 struct lttng_session
*session
;
470 int objd
; /* Object associated to channel */
471 unsigned int _deprecated1
;
472 unsigned int _deprecated2
;
473 struct cds_list_head node
; /* Channel list in session */
474 const struct lttng_channel_ops
*ops
;
475 int header_type
; /* 0: unset, 1: compact, 2: large */
476 struct lttng_ust_shm_handle
*handle
; /* shared-memory handle */
477 unsigned int _deprecated3
:1;
481 enum lttng_ust_chan_type type
;
482 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
483 int tstate
:1; /* Transient enable state */
486 #define LTTNG_UST_EVENT_HT_BITS 12
487 #define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
489 struct lttng_ust_event_ht
{
490 struct cds_hlist_head table
[LTTNG_UST_EVENT_HT_SIZE
];
494 * IMPORTANT: this structure is part of the ABI between the probe and
495 * UST. Fields need to be only added at the end, never reordered, never
498 struct lttng_session
{
499 int active
; /* Is trace session active ? */
500 int been_active
; /* Been active ? */
501 int objd
; /* Object associated */
503 struct cds_list_head chan_head
; /* Channel list head */
504 struct cds_list_head events_head
; /* list of events */
505 struct cds_list_head _deprecated2
;
506 struct cds_list_head node
; /* Session list */
508 unsigned int _deprecated4
:1;
511 /* List of enablers */
512 struct cds_list_head enablers_head
;
513 struct lttng_ust_event_ht events_ht
; /* ht of events */
514 void *owner
; /* object owner */
515 int tstate
:1; /* Transient enable state */
518 int statedump_pending
:1;
521 struct lttng_transport
{
523 struct cds_list_head node
;
524 struct lttng_channel_ops ops
;
525 const struct lttng_ust_lib_ring_buffer_config
*client_config
;
528 struct lttng_session
*lttng_session_create(void);
529 int lttng_session_enable(struct lttng_session
*session
);
530 int lttng_session_disable(struct lttng_session
*session
);
531 void lttng_session_destroy(struct lttng_session
*session
);
533 struct lttng_channel
*lttng_channel_create(struct lttng_session
*session
,
534 const char *transport_name
,
536 size_t subbuf_size
, size_t num_subbuf
,
537 unsigned int switch_timer_interval
,
538 unsigned int read_timer_interval
,
539 int **shm_fd
, int **wait_fd
,
540 uint64_t **memory_map_size
,
541 struct lttng_channel
*chan_priv_init
);
543 int lttng_channel_enable(struct lttng_channel
*channel
);
544 int lttng_channel_disable(struct lttng_channel
*channel
);
546 struct lttng_enabler
*lttng_enabler_create(enum lttng_enabler_type type
,
547 struct lttng_ust_event
*event_param
,
548 struct lttng_channel
*chan
);
549 int lttng_enabler_enable(struct lttng_enabler
*enabler
);
550 int lttng_enabler_disable(struct lttng_enabler
*enabler
);
551 int lttng_enabler_attach_bytecode(struct lttng_enabler
*enabler
,
552 struct lttng_ust_filter_bytecode_node
*bytecode
);
553 int lttng_enabler_attach_context(struct lttng_enabler
*enabler
,
554 struct lttng_ust_context
*ctx
);
555 int lttng_enabler_attach_exclusion(struct lttng_enabler
*enabler
,
556 struct lttng_ust_excluder_node
*excluder
);
558 int lttng_attach_context(struct lttng_ust_context
*context_param
,
559 struct lttng_ctx
**ctx
, struct lttng_session
*session
);
560 void lttng_context_init(void);
561 void lttng_context_exit(void);
562 extern struct lttng_ctx
*lttng_static_ctx
; /* Used by filtering */
564 void lttng_transport_register(struct lttng_transport
*transport
);
565 void lttng_transport_unregister(struct lttng_transport
*transport
);
567 void synchronize_trace(void);
569 int lttng_probe_register(struct lttng_probe_desc
*desc
);
570 void lttng_probe_unregister(struct lttng_probe_desc
*desc
);
571 int lttng_fix_pending_events(void);
572 int lttng_probes_init(void);
573 void lttng_probes_exit(void);
574 int lttng_find_context(struct lttng_ctx
*ctx
, const char *name
);
575 int lttng_get_context_index(struct lttng_ctx
*ctx
, const char *name
);
576 struct lttng_ctx_field
*lttng_append_context(struct lttng_ctx
**ctx_p
);
577 void lttng_remove_context_field(struct lttng_ctx
**ctx_p
,
578 struct lttng_ctx_field
*field
);
579 void lttng_destroy_context(struct lttng_ctx
*ctx
);
580 int lttng_add_vtid_to_ctx(struct lttng_ctx
**ctx
);
581 int lttng_add_vpid_to_ctx(struct lttng_ctx
**ctx
);
582 int lttng_add_pthread_id_to_ctx(struct lttng_ctx
**ctx
);
583 int lttng_add_procname_to_ctx(struct lttng_ctx
**ctx
);
584 int lttng_add_ip_to_ctx(struct lttng_ctx
**ctx
);
585 void lttng_context_vtid_reset(void);
586 void lttng_context_vpid_reset(void);
588 extern const struct lttng_ust_client_lib_ring_buffer_client_cb
*lttng_client_callbacks_metadata
;
589 extern const struct lttng_ust_client_lib_ring_buffer_client_cb
*lttng_client_callbacks_discard
;
590 extern const struct lttng_ust_client_lib_ring_buffer_client_cb
*lttng_client_callbacks_overwrite
;
592 struct lttng_transport
*lttng_transport_find(const char *name
);
594 int lttng_probes_get_event_list(struct lttng_ust_tracepoint_list
*list
);
595 void lttng_probes_prune_event_list(struct lttng_ust_tracepoint_list
*list
);
596 struct lttng_ust_tracepoint_iter
*
597 lttng_ust_tracepoint_list_get_iter_next(struct lttng_ust_tracepoint_list
*list
);
598 int lttng_probes_get_field_list(struct lttng_ust_field_list
*list
);
599 void lttng_probes_prune_field_list(struct lttng_ust_field_list
*list
);
600 struct lttng_ust_field_iter
*
601 lttng_ust_field_list_get_iter_next(struct lttng_ust_field_list
*list
);
603 void lttng_filter_event_link_bytecode(struct lttng_event
*event
);
604 void lttng_enabler_event_link_bytecode(struct lttng_event
*event
,
605 struct lttng_enabler
*enabler
);
606 void lttng_free_event_filter_runtime(struct lttng_event
*event
);
607 void lttng_filter_sync_state(struct lttng_bytecode_runtime
*runtime
);
609 struct cds_list_head
*lttng_get_probe_list_head(void);
610 int lttng_session_active(void);
612 typedef int (*t_statedump_func_ptr
)(struct lttng_session
*session
);
613 int lttng_handle_pending_statedumps(t_statedump_func_ptr statedump_func_ptr
);
615 #endif /* _LTTNG_UST_EVENTS_H */