1 #ifndef _LTTNG_UST_EVENTS_H
2 #define _LTTNG_UST_EVENTS_H
7 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * Holds LTTng per-session event registry.
11 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
12 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
14 * Permission is hereby granted to use or copy this program
15 * for any purpose, provided the above notices are retained on all copies.
16 * Permission to modify the code and to distribute modified code is granted,
17 * provided the above notices are retained, and a notice that the code was
18 * modified is included with the above copyright notice.
21 #include <urcu/list.h>
22 #include <urcu/hlist.h>
23 #include <uuid/uuid.h>
25 #include <lttng/ust-abi.h>
26 #include <lttng/ust-tracer.h>
32 struct lttng_ust_lib_ring_buffer_ctx
;
35 * LTTng client type enumeration. Used by the consumer to map the
36 * callbacks from its own address space.
38 enum lttng_client_types
{
39 LTTNG_CLIENT_METADATA
= 0,
40 LTTNG_CLIENT_DISCARD
= 1,
41 LTTNG_CLIENT_OVERWRITE
= 2,
42 LTTNG_NR_CLIENT_TYPES
,
45 /* Type description */
47 /* Update the astract_types name table in lttng-types.c along with this enum */
58 /* Update the string_encodings name table in lttng-types.c along with this enum */
59 enum lttng_string_encodings
{
60 lttng_encode_none
= 0,
61 lttng_encode_UTF8
= 1,
62 lttng_encode_ASCII
= 2,
66 struct lttng_enum_entry
{
67 unsigned long long start
, end
; /* start and end are inclusive */
71 #define __type_integer(_type, _byte_order, _base, _encoding) \
73 .atype = atype_integer, \
76 .size = sizeof(_type) * CHAR_BIT, \
77 .alignment = lttng_alignof(_type) * CHAR_BIT, \
78 .signedness = lttng_is_signed_type(_type), \
79 .reverse_byte_order = _byte_order != __BYTE_ORDER, \
81 .encoding = lttng_encode_##_encoding, \
85 struct lttng_integer_type {
86 unsigned int size
; /* in bits */
87 unsigned short alignment
; /* in bits */
88 unsigned int signedness
:1;
89 unsigned int reverse_byte_order
:1;
90 unsigned int base
; /* 2, 8, 10, 16, for pretty print */
91 enum lttng_string_encodings encoding
;
95 * Only float and double are supported. long double is not supported at
98 #define _float_mant_dig(_type) \
99 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
100 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
103 #define __type_float(_type) \
105 .atype = atype_float, \
108 .exp_dig = sizeof(_type) * CHAR_BIT \
109 - _float_mant_dig(_type), \
110 .mant_dig = _float_mant_dig(_type), \
111 .alignment = lttng_alignof(_type) * CHAR_BIT, \
112 .reverse_byte_order = __BYTE_ORDER != __FLOAT_WORD_ORDER, \
116 struct lttng_float_type {
117 unsigned int exp_dig
; /* exponent digits, in bits */
118 unsigned int mant_dig
; /* mantissa digits, in bits */
119 unsigned short alignment
; /* in bits */
120 unsigned int reverse_byte_order
:1;
123 union _lttng_basic_type
{
124 struct lttng_integer_type integer
;
129 enum lttng_string_encodings encoding
;
131 struct lttng_float_type _float
;
134 struct lttng_basic_type
{
135 enum abstract_types atype
;
137 union _lttng_basic_type basic
;
142 enum abstract_types atype
;
144 union _lttng_basic_type basic
;
146 struct lttng_basic_type elem_type
;
147 unsigned int length
; /* num. elems. */
150 struct lttng_basic_type length_type
;
151 struct lttng_basic_type elem_type
;
158 struct lttng_type container_type
;
159 const struct lttng_enum_entry
*entries
;
163 /* Event field description */
165 struct lttng_event_field
{
167 struct lttng_type type
;
170 struct lttng_ctx_field
{
171 struct lttng_event_field event_field
;
172 size_t (*get_size
)(size_t offset
);
173 void (*record
)(struct lttng_ctx_field
*field
,
174 struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
175 struct ltt_channel
*chan
);
178 void (*destroy
)(struct lttng_ctx_field
*field
);
182 struct lttng_ctx_field
*fields
;
183 unsigned int nr_fields
;
184 unsigned int allocated_fields
;
187 struct tracepoint_loglevel_entry
{
188 const char *identifier
;
192 struct loglevel_entry
;
195 * Entry describing a per-session active loglevel, along with the event
196 * attribute and channel information configuring the events that need to
199 struct session_loglevel
{
200 struct ltt_channel
*chan
;
201 struct lttng_ctx
*ctx
; /* TODO */
202 struct lttng_ust_event event_param
;
203 struct cds_list_head events
; /* list of events enabled */
204 struct cds_list_head list
; /* per-session list of loglevels */
205 struct cds_list_head session_list
;
206 struct loglevel_entry
*entry
;
207 unsigned int enabled
:1;
211 * Entry describing an active loglevel (per name) for all sessions.
213 struct loglevel_entry
{
214 struct cds_hlist_node hlist
;
215 struct cds_list_head session_list
;
220 * Entry describing a per-session active wildcard, along with the event
221 * attribute and channel information configuring the events that need to
224 struct session_wildcard
{
225 struct ltt_channel
*chan
;
226 struct lttng_ctx
*ctx
; /* TODO */
227 struct lttng_ust_event event_param
;
228 struct cds_list_head events
; /* list of events enabled */
229 struct cds_list_head list
; /* per-session list of wildcards */
230 struct cds_list_head session_list
;
231 struct wildcard_entry
*entry
;
232 unsigned int enabled
:1;
236 * Entry describing an active wildcard (per name) for all sessions.
238 struct wildcard_entry
{
239 struct cds_list_head list
;
240 struct cds_list_head session_list
;
244 struct lttng_event_desc
{
246 void *probe_callback
;
247 const struct lttng_event_ctx
*ctx
; /* context */
248 const struct lttng_event_field
*fields
; /* event payload */
249 unsigned int nr_fields
;
250 const struct tracepoint_loglevel_entry
**loglevel
;
253 struct lttng_probe_desc
{
254 const char *provider
;
255 const struct lttng_event_desc
**event_desc
;
256 unsigned int nr_events
;
257 const struct tracepoint_loglevel_entry
**loglevels
;
258 unsigned int nr_loglevels
;
259 struct cds_list_head head
; /* chain registered probes */
262 struct tp_list_entry
{
263 struct lttng_ust_tracepoint_iter tp
;
264 struct cds_list_head head
;
267 struct lttng_ust_tracepoint_list
{
268 struct tp_list_entry
*iter
;
269 struct cds_list_head head
;
272 struct ust_pending_probe
;
275 * ltt_event structure is referred to by the tracing fast path. It must be
277 * Note about loglevel_list: this list is only used to enable/disable
278 * events on a per-loglevel basis. The events created internally by the
279 * loglevel are only freed when the session is destroyed.
283 struct ltt_channel
*chan
;
285 const struct lttng_event_desc
*desc
;
287 struct lttng_ctx
*ctx
;
288 enum lttng_ust_instrumentation instrumentation
;
291 struct cds_list_head list
; /* Event list */
292 struct cds_list_head loglevel_list
; /* Event list for loglevel */
293 struct cds_list_head wildcard_list
; /* Event list for wildcard */
294 struct ust_pending_probe
*pending_probe
;
295 unsigned int metadata_dumped
:1;
299 struct lttng_ust_shm_handle
;
301 struct ltt_channel_ops
{
302 struct ltt_channel
*(*channel_create
)(const char *name
,
304 size_t subbuf_size
, size_t num_subbuf
,
305 unsigned int switch_timer_interval
,
306 unsigned int read_timer_interval
,
307 int **shm_fd
, int **wait_fd
,
308 uint64_t **memory_map_size
,
309 struct ltt_channel
*chan_priv_init
);
310 void (*channel_destroy
)(struct ltt_channel
*ltt_chan
);
311 struct lttng_ust_lib_ring_buffer
*(*buffer_read_open
)(struct channel
*chan
,
312 struct lttng_ust_shm_handle
*handle
,
313 int **shm_fd
, int **wait_fd
,
314 uint64_t **memory_map_size
);
315 void (*buffer_read_close
)(struct lttng_ust_lib_ring_buffer
*buf
,
316 struct lttng_ust_shm_handle
*handle
);
317 int (*event_reserve
)(struct lttng_ust_lib_ring_buffer_ctx
*ctx
,
319 void (*event_commit
)(struct lttng_ust_lib_ring_buffer_ctx
*ctx
);
320 void (*event_write
)(struct lttng_ust_lib_ring_buffer_ctx
*ctx
, const void *src
,
323 * packet_avail_size returns the available size in the current
324 * packet. Note that the size returned is only a hint, since it
325 * may change due to concurrent writes.
327 size_t (*packet_avail_size
)(struct channel
*chan
,
328 struct lttng_ust_shm_handle
*handle
);
329 //wait_queue_head_t *(*get_reader_wait_queue)(struct channel *chan);
330 //wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
331 int (*is_finalized
)(struct channel
*chan
);
332 int (*is_disabled
)(struct channel
*chan
);
333 int (*flush_buffer
)(struct channel
*chan
, struct lttng_ust_shm_handle
*handle
);
338 * The pointers located in this private data are NOT safe to be
339 * dereferenced by the consumer. The only operations the
340 * consumer process is designed to be allowed to do is to read
341 * and perform subbuffer flush.
343 struct channel
*chan
; /* Channel buffers */
345 struct lttng_ctx
*ctx
;
346 /* Event ID management */
347 struct ltt_session
*session
;
348 int objd
; /* Object associated to channel */
349 unsigned int free_event_id
; /* Next event ID to allocate */
350 unsigned int used_event_id
; /* Max allocated event IDs */
351 struct cds_list_head list
; /* Channel list */
352 struct ltt_channel_ops
*ops
;
353 int header_type
; /* 0: unset, 1: compact, 2: large */
354 struct lttng_ust_shm_handle
*handle
; /* shared-memory handle */
355 unsigned int metadata_dumped
:1;
357 /* Channel ID, available for consumer too */
359 /* Copy of session UUID for consumer (availability through shm) */
360 uuid_t uuid
; /* Trace session unique ID */
364 int active
; /* Is trace session active ? */
365 int been_active
; /* Has trace session been active ? */
366 int objd
; /* Object associated to session */
367 struct ltt_channel
*metadata
; /* Metadata channel */
368 struct cds_list_head chan
; /* Channel list head */
369 struct cds_list_head events
; /* Event list head */
370 struct cds_list_head loglevels
; /* Loglevel list head */
371 struct cds_list_head wildcards
; /* Wildcard list head */
372 struct cds_list_head list
; /* Session list */
373 unsigned int free_chan_id
; /* Next chan ID to allocate */
374 uuid_t uuid
; /* Trace session unique ID */
375 unsigned int metadata_dumped
:1;
378 struct ltt_transport
{
380 struct cds_list_head node
;
381 struct ltt_channel_ops ops
;
384 struct ltt_session
*ltt_session_create(void);
385 int ltt_session_enable(struct ltt_session
*session
);
386 int ltt_session_disable(struct ltt_session
*session
);
387 void ltt_session_destroy(struct ltt_session
*session
);
389 struct ltt_channel
*ltt_channel_create(struct ltt_session
*session
,
390 const char *transport_name
,
392 size_t subbuf_size
, size_t num_subbuf
,
393 unsigned int switch_timer_interval
,
394 unsigned int read_timer_interval
,
395 int **shm_fd
, int **wait_fd
,
396 uint64_t **memory_map_size
,
397 struct ltt_channel
*chan_priv_init
);
398 struct ltt_channel
*ltt_global_channel_create(struct ltt_session
*session
,
399 int overwrite
, void *buf_addr
,
400 size_t subbuf_size
, size_t num_subbuf
,
401 unsigned int switch_timer_interval
,
402 unsigned int read_timer_interval
,
403 int **shm_fd
, int **wait_fd
,
404 uint64_t **memory_map_size
);
406 int ltt_event_create(struct ltt_channel
*chan
,
407 struct lttng_ust_event
*event_param
,
409 struct ltt_event
**event
);
411 int ltt_channel_enable(struct ltt_channel
*channel
);
412 int ltt_channel_disable(struct ltt_channel
*channel
);
413 int ltt_event_enable(struct ltt_event
*event
);
414 int ltt_event_disable(struct ltt_event
*event
);
416 void ltt_transport_register(struct ltt_transport
*transport
);
417 void ltt_transport_unregister(struct ltt_transport
*transport
);
419 void synchronize_trace(void);
421 int ltt_probe_register(struct lttng_probe_desc
*desc
);
422 void ltt_probe_unregister(struct lttng_probe_desc
*desc
);
423 int pending_probe_fix_events(const struct lttng_event_desc
*desc
);
424 const struct lttng_event_desc
*ltt_event_get(const char *name
);
425 void ltt_event_put(const struct lttng_event_desc
*desc
);
426 int ltt_probes_init(void);
427 void ltt_probes_exit(void);
428 int lttng_find_context(struct lttng_ctx
*ctx
, const char *name
);
429 struct lttng_ctx_field
*lttng_append_context(struct lttng_ctx
**ctx_p
);
430 void lttng_remove_context_field(struct lttng_ctx
**ctx_p
,
431 struct lttng_ctx_field
*field
);
432 void lttng_destroy_context(struct lttng_ctx
*ctx
);
433 int lttng_add_vtid_to_ctx(struct lttng_ctx
**ctx
);
434 int lttng_add_vpid_to_ctx(struct lttng_ctx
**ctx
);
435 int lttng_add_pthread_id_to_ctx(struct lttng_ctx
**ctx
);
436 int lttng_add_procname_to_ctx(struct lttng_ctx
**ctx
);
437 void lttng_context_vtid_reset(void);
438 void lttng_context_vpid_reset(void);
440 const struct lttng_ust_lib_ring_buffer_client_cb
*lttng_client_callbacks_metadata
;
441 const struct lttng_ust_lib_ring_buffer_client_cb
*lttng_client_callbacks_discard
;
442 const struct lttng_ust_lib_ring_buffer_client_cb
*lttng_client_callbacks_overwrite
;
444 struct ltt_transport
*ltt_transport_find(const char *name
);
446 int ltt_probes_get_event_list(struct lttng_ust_tracepoint_list
*list
);
447 void ltt_probes_prune_event_list(struct lttng_ust_tracepoint_list
*list
);
448 struct lttng_ust_tracepoint_iter
*
449 lttng_ust_tracepoint_list_get_iter_next(struct lttng_ust_tracepoint_list
*list
);
451 struct loglevel_entry
*get_loglevel(const char *name
);
452 struct loglevel_entry
*get_loglevel_value(int64_t value
);
453 struct session_loglevel
*add_loglevel(const char *name
,
454 struct ltt_channel
*chan
,
455 struct lttng_ust_event
*event_param
);
456 void _remove_loglevel(struct session_loglevel
*loglevel
);
457 int ltt_loglevel_enable(struct session_loglevel
*loglevel
);
458 int ltt_loglevel_disable(struct session_loglevel
*loglevel
);
459 int ltt_loglevel_create(struct ltt_channel
*chan
,
460 struct lttng_ust_event
*event_param
,
461 struct session_loglevel
**sl
);
463 struct wildcard_entry
*match_wildcard(const char *name
);
464 struct session_wildcard
*add_wildcard(const char *name
,
465 struct ltt_channel
*chan
,
466 struct lttng_ust_event
*event_param
);
467 void _remove_wildcard(struct session_wildcard
*wildcard
);
468 int ltt_wildcard_enable(struct session_wildcard
*wildcard
);
469 int ltt_wildcard_disable(struct session_wildcard
*wildcard
);
470 int ltt_wildcard_create(struct ltt_channel
*chan
,
471 struct lttng_ust_event
*event_param
,
472 struct session_wildcard
**sl
);
474 #endif /* _LTTNG_UST_EVENTS_H */