4 * Holds LTTng per-session event registry.
6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include <urcu/list.h>
26 #include <urcu/hlist.h>
35 #include <lttng/ust-endian.h>
39 #include <urcu/compiler.h>
40 #include <urcu/uatomic.h>
41 #include <urcu/arch.h>
43 #include <lttng/tracepoint.h>
44 #include <lttng/ust-events.h>
46 #include <usterr-signal-safe.h>
50 #include "lttng-ust-uuid.h"
52 #include "tracepoint-internal.h"
53 #include "ltt-tracer.h"
54 #include "ltt-tracer-core.h"
56 #include "../libringbuffer/shm.h"
60 * The sessions mutex is the centralized mutex across UST tracing
61 * control and probe registration. All operations within this file are
62 * called by the communication thread, under ust_lock protection.
64 static pthread_mutex_t sessions_mutex
= PTHREAD_MUTEX_INITIALIZER
;
68 pthread_mutex_lock(&sessions_mutex
);
73 pthread_mutex_unlock(&sessions_mutex
);
76 static CDS_LIST_HEAD(sessions
);
79 * Wildcard list, containing the active wildcards.
80 * Protected by ust lock.
82 static CDS_LIST_HEAD(wildcard_list
);
85 * Pending probes hash table, containing the registered ltt events for
86 * which tracepoint probes are still missing. Protected by the sessions
89 #define PENDING_PROBE_HASH_BITS 6
90 #define PENDING_PROBE_HASH_SIZE (1 << PENDING_PROBE_HASH_BITS)
91 static struct cds_hlist_head pending_probe_table
[PENDING_PROBE_HASH_SIZE
];
93 struct ust_pending_probe
{
94 struct ltt_event
*event
;
95 struct cds_hlist_node node
;
96 enum lttng_ust_loglevel_type loglevel_type
;
101 static void _ltt_event_destroy(struct ltt_event
*event
);
102 static void _ltt_wildcard_destroy(struct session_wildcard
*sw
);
103 static void _ltt_channel_destroy(struct ltt_channel
*chan
);
104 static int _ltt_event_unregister(struct ltt_event
*event
);
106 int _ltt_event_metadata_statedump(struct ltt_session
*session
,
107 struct ltt_channel
*chan
,
108 struct ltt_event
*event
);
110 int _ltt_session_metadata_statedump(struct ltt_session
*session
);
112 int ltt_loglevel_match(const struct lttng_event_desc
*desc
,
113 enum lttng_ust_loglevel_type req_type
,
118 if (req_type
== LTTNG_UST_LOGLEVEL_ALL
)
121 ev_loglevel
= TRACE_DEFAULT
;
123 ev_loglevel
= *(*desc
->loglevel
);
125 case LTTNG_UST_LOGLEVEL_RANGE
:
126 if (ev_loglevel
<= req_loglevel
|| req_loglevel
== -1)
130 case LTTNG_UST_LOGLEVEL_SINGLE
:
131 if (ev_loglevel
== req_loglevel
|| req_loglevel
== -1)
135 case LTTNG_UST_LOGLEVEL_ALL
:
142 * Return wildcard for a given event name if the event name match the
143 * one of the wildcards.
144 * Must be called with ust lock held.
145 * Returns NULL if not present.
148 struct wildcard_entry
*match_wildcard(const struct lttng_event_desc
*desc
)
150 struct wildcard_entry
*e
;
152 cds_list_for_each_entry(e
, &wildcard_list
, list
) {
153 /* If only contain '*' */
154 if (strlen(e
->name
) == 1)
156 /* Compare excluding final '*' */
157 if (!strncmp(desc
->name
, e
->name
, strlen(e
->name
) - 1))
159 continue; /* goto next, no match */
161 if (ltt_loglevel_match(desc
,
166 /* no match, loop to next */
172 * called at event creation if probe is missing.
173 * called with session mutex held.
176 int add_pending_probe(struct ltt_event
*event
, const char *name
,
177 enum lttng_ust_loglevel_type loglevel_type
,
180 struct cds_hlist_head
*head
;
181 struct ust_pending_probe
*e
;
182 size_t name_len
= strlen(name
) + 1;
185 if (name_len
> LTTNG_UST_SYM_NAME_LEN
) {
186 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name
, LTTNG_UST_SYM_NAME_LEN
);
187 name_len
= LTTNG_UST_SYM_NAME_LEN
;
189 hash
= jhash(name
, name_len
- 1, 0);
190 head
= &pending_probe_table
[hash
& (PENDING_PROBE_HASH_SIZE
- 1)];
191 e
= zmalloc(sizeof(struct ust_pending_probe
) + name_len
);
194 memcpy(&e
->name
[0], name
, name_len
);
195 e
->name
[name_len
- 1] = '\0';
196 e
->loglevel_type
= loglevel_type
;
197 e
->loglevel
= loglevel
;
198 cds_hlist_add_head(&e
->node
, head
);
200 event
->pending_probe
= e
;
205 * remove a pending probe. called when at event teardown and when an
206 * event is fixed (probe is loaded).
207 * called with session mutex held.
210 void remove_pending_probe(struct ust_pending_probe
*e
)
214 cds_hlist_del(&e
->node
);
219 * Called at library load: connect the probe on the events pending on
221 * called with session mutex held.
223 int pending_probe_fix_events(const struct lttng_event_desc
*desc
)
225 struct cds_hlist_head
*head
;
226 struct cds_hlist_node
*node
, *p
;
227 struct ust_pending_probe
*e
;
228 const char *name
= desc
->name
;
230 struct lttng_ust_event event_param
;
231 size_t name_len
= strlen(name
) + 1;
236 struct wildcard_entry
*wildcard
;
238 wildcard
= match_wildcard(desc
);
239 if (strcmp(desc
->name
, "lttng_ust:metadata") && wildcard
) {
240 struct session_wildcard
*sw
;
242 cds_list_for_each_entry(sw
, &wildcard
->session_list
,
244 struct ltt_event
*ev
;
247 memcpy(&event_param
, &sw
->event_param
,
248 sizeof(event_param
));
249 memcpy(event_param
.name
,
251 sizeof(event_param
.name
));
253 ret
= ltt_event_create(sw
->chan
,
257 DBG("Error creating event");
260 cds_list_add(&ev
->wildcard_list
,
266 if (name_len
> LTTNG_UST_SYM_NAME_LEN
) {
267 WARN("Truncating tracepoint name %s which exceeds size limits of %u chars", name
, LTTNG_UST_SYM_NAME_LEN
);
268 name_len
= LTTNG_UST_SYM_NAME_LEN
;
270 hash
= jhash(name
, name_len
- 1, 0);
271 head
= &pending_probe_table
[hash
& (PENDING_PROBE_HASH_SIZE
- 1)];
272 cds_hlist_for_each_entry_safe(e
, node
, p
, head
, node
) {
273 struct ltt_event
*event
;
274 struct ltt_channel
*chan
;
276 if (!ltt_loglevel_match(desc
,
281 if (strncmp(name
, e
->name
, LTTNG_UST_SYM_NAME_LEN
- 1)) {
286 assert(!event
->desc
);
288 event
->pending_probe
= NULL
;
289 remove_pending_probe(e
);
290 ret
|= __tracepoint_probe_register(name
,
291 event
->desc
->probe_callback
,
292 event
, event
->desc
->signature
);
295 event
->id
= chan
->free_event_id
++;
296 ret
|= _ltt_event_metadata_statedump(chan
->session
, chan
,
302 void synchronize_trace(void)
307 struct ltt_session
*ltt_session_create(void)
309 struct ltt_session
*session
;
312 session
= zmalloc(sizeof(struct ltt_session
));
315 CDS_INIT_LIST_HEAD(&session
->chan
);
316 CDS_INIT_LIST_HEAD(&session
->events
);
317 CDS_INIT_LIST_HEAD(&session
->wildcards
);
318 ret
= lttng_ust_uuid_generate(session
->uuid
);
320 session
->uuid
[0] = '\0';
322 cds_list_add(&session
->list
, &sessions
);
326 void ltt_session_destroy(struct ltt_session
*session
)
328 struct ltt_channel
*chan
, *tmpchan
;
329 struct ltt_event
*event
, *tmpevent
;
330 struct session_wildcard
*wildcard
, *tmpwildcard
;
333 CMM_ACCESS_ONCE(session
->active
) = 0;
334 cds_list_for_each_entry(event
, &session
->events
, list
) {
335 ret
= _ltt_event_unregister(event
);
338 synchronize_trace(); /* Wait for in-flight events to complete */
339 cds_list_for_each_entry_safe(wildcard
, tmpwildcard
, &session
->wildcards
, list
)
340 _ltt_wildcard_destroy(wildcard
);
341 cds_list_for_each_entry_safe(event
, tmpevent
, &session
->events
, list
)
342 _ltt_event_destroy(event
);
343 cds_list_for_each_entry_safe(chan
, tmpchan
, &session
->chan
, list
)
344 _ltt_channel_destroy(chan
);
345 cds_list_del(&session
->list
);
349 int ltt_session_enable(struct ltt_session
*session
)
352 struct ltt_channel
*chan
;
354 if (session
->active
) {
360 * Snapshot the number of events per channel to know the type of header
363 cds_list_for_each_entry(chan
, &session
->chan
, list
) {
364 if (chan
->header_type
)
365 continue; /* don't change it if session stop/restart */
366 if (chan
->free_event_id
< 31)
367 chan
->header_type
= 1; /* compact */
369 chan
->header_type
= 2; /* large */
372 CMM_ACCESS_ONCE(session
->active
) = 1;
373 CMM_ACCESS_ONCE(session
->been_active
) = 1;
374 ret
= _ltt_session_metadata_statedump(session
);
376 CMM_ACCESS_ONCE(session
->active
) = 0;
381 int ltt_session_disable(struct ltt_session
*session
)
385 if (!session
->active
) {
389 CMM_ACCESS_ONCE(session
->active
) = 0;
394 int ltt_channel_enable(struct ltt_channel
*channel
)
398 if (channel
== channel
->session
->metadata
)
400 old
= uatomic_xchg(&channel
->enabled
, 1);
406 int ltt_channel_disable(struct ltt_channel
*channel
)
410 if (channel
== channel
->session
->metadata
)
412 old
= uatomic_xchg(&channel
->enabled
, 0);
418 int ltt_event_enable(struct ltt_event
*event
)
422 if (event
->chan
== event
->chan
->session
->metadata
)
424 old
= uatomic_xchg(&event
->enabled
, 1);
430 int ltt_event_disable(struct ltt_event
*event
)
434 if (event
->chan
== event
->chan
->session
->metadata
)
436 old
= uatomic_xchg(&event
->enabled
, 0);
442 struct ltt_channel
*ltt_channel_create(struct ltt_session
*session
,
443 const char *transport_name
,
445 size_t subbuf_size
, size_t num_subbuf
,
446 unsigned int switch_timer_interval
,
447 unsigned int read_timer_interval
,
448 int **shm_fd
, int **wait_fd
,
449 uint64_t **memory_map_size
,
450 struct ltt_channel
*chan_priv_init
)
452 struct ltt_channel
*chan
= NULL
;
453 struct ltt_transport
*transport
;
455 if (session
->been_active
)
456 goto active
; /* Refuse to add channel to active session */
457 transport
= ltt_transport_find(transport_name
);
459 DBG("LTTng transport %s not found\n",
463 chan_priv_init
->id
= session
->free_chan_id
++;
464 chan_priv_init
->session
= session
;
466 * Note: the channel creation op already writes into the packet
467 * headers. Therefore the "chan" information used as input
468 * should be already accessible.
470 chan
= transport
->ops
.channel_create(transport_name
, buf_addr
,
471 subbuf_size
, num_subbuf
, switch_timer_interval
,
472 read_timer_interval
, shm_fd
, wait_fd
,
473 memory_map_size
, chan_priv_init
);
477 chan
->ops
= &transport
->ops
;
478 cds_list_add(&chan
->list
, &session
->chan
);
488 * Only used internally at session destruction.
491 void _ltt_channel_destroy(struct ltt_channel
*chan
)
493 cds_list_del(&chan
->list
);
494 lttng_destroy_context(chan
->ctx
);
495 chan
->ops
->channel_destroy(chan
);
499 * Supports event creation while tracing session is active.
501 int ltt_event_create(struct ltt_channel
*chan
,
502 struct lttng_ust_event
*event_param
,
504 struct ltt_event
**_event
)
506 const struct lttng_event_desc
*desc
= NULL
; /* silence gcc */
507 struct ltt_event
*event
;
510 if (chan
->used_event_id
== -1U) {
515 * This is O(n^2) (for each event, the loop is called at event
516 * creation). Might require a hash if we have lots of events.
518 cds_list_for_each_entry(event
, &chan
->session
->events
, list
) {
519 if (event
->desc
&& !strncmp(event
->desc
->name
,
521 LTTNG_UST_SYM_NAME_LEN
- 1)) {
528 * Check if loglevel match. Refuse to connect event if not.
530 if (event_param
->instrumentation
== LTTNG_UST_TRACEPOINT
) {
531 desc
= ltt_event_get(event_param
->name
);
533 if (!ltt_loglevel_match(desc
,
534 event_param
->loglevel_type
,
535 event_param
->loglevel
)) {
537 goto no_loglevel_match
;
541 * If descriptor is not there, it will be added to
545 event
= zmalloc(sizeof(struct ltt_event
));
551 event
->filter
= filter
;
553 * used_event_id counts the maximum number of event IDs that can
554 * register if all probes register.
556 chan
->used_event_id
++;
558 event
->instrumentation
= event_param
->instrumentation
;
559 /* Populate ltt_event structure before tracepoint registration. */
561 switch (event_param
->instrumentation
) {
562 case LTTNG_UST_TRACEPOINT
:
565 ret
= __tracepoint_probe_register(event_param
->name
,
566 event
->desc
->probe_callback
,
567 event
, event
->desc
->signature
);
570 event
->id
= chan
->free_event_id
++;
573 * If the probe is not present, event->desc stays NULL,
574 * waiting for the probe to register, and the event->id
577 ret
= add_pending_probe(event
, event_param
->name
,
578 event_param
->loglevel_type
,
579 event_param
->loglevel
);
581 goto add_pending_error
;
588 ret
= _ltt_event_metadata_statedump(chan
->session
, chan
, event
);
590 goto statedump_error
;
592 cds_list_add(&event
->list
, &chan
->session
->events
);
598 WARN_ON_ONCE(__tracepoint_probe_unregister(event_param
->name
,
599 event
->desc
->probe_callback
,
601 ltt_event_put(event
->desc
);
614 * Only used internally at session destruction.
616 int _ltt_event_unregister(struct ltt_event
*event
)
620 switch (event
->instrumentation
) {
621 case LTTNG_UST_TRACEPOINT
:
623 ret
= __tracepoint_probe_unregister(event
->desc
->name
,
624 event
->desc
->probe_callback
,
629 remove_pending_probe(event
->pending_probe
);
640 * Only used internally at session destruction.
643 void _ltt_event_destroy(struct ltt_event
*event
)
645 switch (event
->instrumentation
) {
646 case LTTNG_UST_TRACEPOINT
:
648 ltt_event_put(event
->desc
);
654 cds_list_del(&event
->list
);
655 lttng_destroy_context(event
->ctx
);
660 * We have exclusive access to our metadata buffer (protected by the
661 * ust_lock), so we can do racy operations such as looking for
662 * remaining space left in packet and write, since mutual exclusion
663 * protects us from concurrent writes.
665 int lttng_metadata_printf(struct ltt_session
*session
,
666 const char *fmt
, ...)
668 struct lttng_ust_lib_ring_buffer_ctx ctx
;
669 struct ltt_channel
*chan
= session
->metadata
;
671 int ret
= 0, waitret
;
672 size_t len
, reserve_len
, pos
;
675 WARN_ON_ONCE(!CMM_ACCESS_ONCE(session
->active
));
678 ret
= vasprintf(&str
, fmt
, ap
);
686 for (pos
= 0; pos
< len
; pos
+= reserve_len
) {
687 reserve_len
= min_t(size_t,
688 chan
->ops
->packet_avail_size(chan
->chan
, chan
->handle
),
690 lib_ring_buffer_ctx_init(&ctx
, chan
->chan
, NULL
, reserve_len
,
691 sizeof(char), -1, chan
->handle
);
693 * We don't care about metadata buffer's records lost
694 * count, because we always retry here. Report error if
695 * we need to bail out after timeout or being
698 waitret
= wait_cond_interruptible_timeout(
700 ret
= chan
->ops
->event_reserve(&ctx
, 0);
701 ret
!= -ENOBUFS
|| !ret
;
703 LTTNG_METADATA_TIMEOUT_MSEC
);
704 if (waitret
== -ETIMEDOUT
|| waitret
== -EINTR
|| ret
) {
705 DBG("LTTng: Failure to write metadata to buffers (%s)\n",
706 waitret
== -EINTR
? "interrupted" :
707 (ret
== -ENOBUFS
? "timeout" : "I/O error"));
708 if (waitret
== -EINTR
)
712 chan
->ops
->event_write(&ctx
, &str
[pos
], reserve_len
);
713 chan
->ops
->event_commit(&ctx
);
721 int _ltt_field_statedump(struct ltt_session
*session
,
722 const struct lttng_event_field
*field
)
726 switch (field
->type
.atype
) {
728 ret
= lttng_metadata_printf(session
,
729 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s;\n",
730 field
->type
.u
.basic
.integer
.size
,
731 field
->type
.u
.basic
.integer
.alignment
,
732 field
->type
.u
.basic
.integer
.signedness
,
733 (field
->type
.u
.basic
.integer
.encoding
== lttng_encode_none
)
735 : (field
->type
.u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
738 field
->type
.u
.basic
.integer
.base
,
739 #if (BYTE_ORDER == BIG_ENDIAN)
740 field
->type
.u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
742 field
->type
.u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
747 ret
= lttng_metadata_printf(session
,
748 " floating_point { exp_dig = %u; mant_dig = %u; align = %u;%s } _%s;\n",
749 field
->type
.u
.basic
._float
.exp_dig
,
750 field
->type
.u
.basic
._float
.mant_dig
,
751 field
->type
.u
.basic
._float
.alignment
,
752 #if (BYTE_ORDER == BIG_ENDIAN)
753 field
->type
.u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
755 field
->type
.u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
760 ret
= lttng_metadata_printf(session
,
762 field
->type
.u
.basic
.enumeration
.name
,
767 const struct lttng_basic_type
*elem_type
;
769 elem_type
= &field
->type
.u
.array
.elem_type
;
770 ret
= lttng_metadata_printf(session
,
771 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[%u];\n",
772 elem_type
->u
.basic
.integer
.size
,
773 elem_type
->u
.basic
.integer
.alignment
,
774 elem_type
->u
.basic
.integer
.signedness
,
775 (elem_type
->u
.basic
.integer
.encoding
== lttng_encode_none
)
777 : (elem_type
->u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
780 elem_type
->u
.basic
.integer
.base
,
781 #if (BYTE_ORDER == BIG_ENDIAN)
782 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
784 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
786 field
->name
, field
->type
.u
.array
.length
);
791 const struct lttng_basic_type
*elem_type
;
792 const struct lttng_basic_type
*length_type
;
794 elem_type
= &field
->type
.u
.sequence
.elem_type
;
795 length_type
= &field
->type
.u
.sequence
.length_type
;
796 ret
= lttng_metadata_printf(session
,
797 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } __%s_length;\n",
798 length_type
->u
.basic
.integer
.size
,
799 (unsigned int) length_type
->u
.basic
.integer
.alignment
,
800 length_type
->u
.basic
.integer
.signedness
,
801 (length_type
->u
.basic
.integer
.encoding
== lttng_encode_none
)
803 : ((length_type
->u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
806 length_type
->u
.basic
.integer
.base
,
807 #if (BYTE_ORDER == BIG_ENDIAN)
808 length_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
810 length_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
816 ret
= lttng_metadata_printf(session
,
817 " integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[ __%s_length ];\n",
818 elem_type
->u
.basic
.integer
.size
,
819 (unsigned int) elem_type
->u
.basic
.integer
.alignment
,
820 elem_type
->u
.basic
.integer
.signedness
,
821 (elem_type
->u
.basic
.integer
.encoding
== lttng_encode_none
)
823 : ((elem_type
->u
.basic
.integer
.encoding
== lttng_encode_UTF8
)
826 elem_type
->u
.basic
.integer
.base
,
827 #if (BYTE_ORDER == BIG_ENDIAN)
828 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = le;" : "",
830 elem_type
->u
.basic
.integer
.reverse_byte_order
? " byte_order = be;" : "",
838 /* Default encoding is UTF8 */
839 ret
= lttng_metadata_printf(session
,
841 field
->type
.u
.basic
.string
.encoding
== lttng_encode_ASCII
?
842 " { encoding = ASCII; }" : "",
853 int _ltt_context_metadata_statedump(struct ltt_session
*session
,
854 struct lttng_ctx
*ctx
)
861 for (i
= 0; i
< ctx
->nr_fields
; i
++) {
862 const struct lttng_ctx_field
*field
= &ctx
->fields
[i
];
864 ret
= _ltt_field_statedump(session
, &field
->event_field
);
872 int _ltt_fields_metadata_statedump(struct ltt_session
*session
,
873 struct ltt_event
*event
)
875 const struct lttng_event_desc
*desc
= event
->desc
;
879 for (i
= 0; i
< desc
->nr_fields
; i
++) {
880 const struct lttng_event_field
*field
= &desc
->fields
[i
];
882 ret
= _ltt_field_statedump(session
, field
);
890 int _ltt_event_metadata_statedump(struct ltt_session
*session
,
891 struct ltt_channel
*chan
,
892 struct ltt_event
*event
)
895 int loglevel
= TRACE_DEFAULT
;
897 if (event
->metadata_dumped
|| !CMM_ACCESS_ONCE(session
->active
))
899 if (chan
== session
->metadata
)
902 * Don't print events for which probe load is pending.
907 ret
= lttng_metadata_printf(session
,
911 " stream_id = %u;\n",
918 if (event
->desc
->loglevel
)
919 loglevel
= *(*event
->desc
->loglevel
);
921 ret
= lttng_metadata_printf(session
,
928 ret
= lttng_metadata_printf(session
,
929 " context := struct {\n");
933 ret
= _ltt_context_metadata_statedump(session
, event
->ctx
);
937 ret
= lttng_metadata_printf(session
,
943 ret
= lttng_metadata_printf(session
,
944 " fields := struct {\n"
949 ret
= _ltt_fields_metadata_statedump(session
, event
);
954 * LTTng space reservation can only reserve multiples of the
957 ret
= lttng_metadata_printf(session
,
963 event
->metadata_dumped
= 1;
970 int _ltt_channel_metadata_statedump(struct ltt_session
*session
,
971 struct ltt_channel
*chan
)
975 if (chan
->metadata_dumped
|| !CMM_ACCESS_ONCE(session
->active
))
977 if (chan
== session
->metadata
)
980 WARN_ON_ONCE(!chan
->header_type
);
981 ret
= lttng_metadata_printf(session
,
984 " event.header := %s;\n"
985 " packet.context := struct packet_context;\n",
987 chan
->header_type
== 1 ? "struct event_header_compact" :
988 "struct event_header_large");
993 ret
= lttng_metadata_printf(session
,
994 " event.context := struct {\n");
998 ret
= _ltt_context_metadata_statedump(session
, chan
->ctx
);
1002 ret
= lttng_metadata_printf(session
,
1008 ret
= lttng_metadata_printf(session
,
1011 chan
->metadata_dumped
= 1;
1017 int _ltt_stream_packet_context_declare(struct ltt_session
*session
)
1019 return lttng_metadata_printf(session
,
1020 "struct packet_context {\n"
1021 " uint64_clock_monotonic_t timestamp_begin;\n"
1022 " uint64_clock_monotonic_t timestamp_end;\n"
1023 " uint32_t events_discarded;\n"
1024 " uint32_t content_size;\n"
1025 " uint32_t packet_size;\n"
1026 " uint32_t cpu_id;\n"
1033 * id: range: 0 - 30.
1034 * id 31 is reserved to indicate an extended header.
1037 * id: range: 0 - 65534.
1038 * id 65535 is reserved to indicate an extended header.
1041 int _ltt_event_header_declare(struct ltt_session
*session
)
1043 return lttng_metadata_printf(session
,
1044 "struct event_header_compact {\n"
1045 " enum : uint5_t { compact = 0 ... 30, extended = 31 } id;\n"
1048 " uint27_clock_monotonic_t timestamp;\n"
1052 " uint64_clock_monotonic_t timestamp;\n"
1057 "struct event_header_large {\n"
1058 " enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;\n"
1061 " uint32_clock_monotonic_t timestamp;\n"
1065 " uint64_clock_monotonic_t timestamp;\n"
1069 lttng_alignof(uint32_t) * CHAR_BIT
,
1070 lttng_alignof(uint16_t) * CHAR_BIT
1075 * Approximation of NTP time of day to clock monotonic correlation,
1076 * taken at start of trace.
1077 * Yes, this is only an approximation. Yes, we can (and will) do better
1078 * in future versions.
1081 uint64_t measure_clock_offset(void)
1083 uint64_t offset
, monotonic
[2], realtime
;
1084 struct timespec rts
= { 0, 0 };
1087 monotonic
[0] = trace_clock_read64();
1088 ret
= clock_gettime(CLOCK_REALTIME
, &rts
);
1091 monotonic
[1] = trace_clock_read64();
1092 offset
= (monotonic
[0] + monotonic
[1]) >> 1;
1093 realtime
= (uint64_t) rts
.tv_sec
* 1000000000ULL;
1094 realtime
+= rts
.tv_nsec
;
1095 offset
= realtime
- offset
;
1100 * Output metadata into this session's metadata buffers.
1103 int _ltt_session_metadata_statedump(struct ltt_session
*session
)
1105 unsigned char *uuid_c
= session
->uuid
;
1106 char uuid_s
[LTTNG_UST_UUID_STR_LEN
],
1107 clock_uuid_s
[LTTNG_UST_UUID_STR_LEN
];
1108 struct ltt_channel
*chan
;
1109 struct ltt_event
*event
;
1111 char procname
[LTTNG_UST_PROCNAME_LEN
] = "";
1113 if (!CMM_ACCESS_ONCE(session
->active
))
1115 if (session
->metadata_dumped
)
1117 if (!session
->metadata
) {
1118 DBG("LTTng: attempt to start tracing, but metadata channel is not found. Operation abort.\n");
1122 snprintf(uuid_s
, sizeof(uuid_s
),
1123 "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
1124 uuid_c
[0], uuid_c
[1], uuid_c
[2], uuid_c
[3],
1125 uuid_c
[4], uuid_c
[5], uuid_c
[6], uuid_c
[7],
1126 uuid_c
[8], uuid_c
[9], uuid_c
[10], uuid_c
[11],
1127 uuid_c
[12], uuid_c
[13], uuid_c
[14], uuid_c
[15]);
1129 ret
= lttng_metadata_printf(session
,
1130 "typealias integer { size = 8; align = %u; signed = false; } := uint8_t;\n"
1131 "typealias integer { size = 16; align = %u; signed = false; } := uint16_t;\n"
1132 "typealias integer { size = 32; align = %u; signed = false; } := uint32_t;\n"
1133 "typealias integer { size = 64; align = %u; signed = false; } := uint64_t;\n"
1134 "typealias integer { size = 5; align = 1; signed = false; } := uint5_t;\n"
1135 "typealias integer { size = 27; align = 1; signed = false; } := uint27_t;\n"
1141 " byte_order = %s;\n"
1142 " packet.header := struct {\n"
1143 " uint32_t magic;\n"
1144 " uint8_t uuid[16];\n"
1145 " uint32_t stream_id;\n"
1148 lttng_alignof(uint8_t) * CHAR_BIT
,
1149 lttng_alignof(uint16_t) * CHAR_BIT
,
1150 lttng_alignof(uint32_t) * CHAR_BIT
,
1151 lttng_alignof(uint64_t) * CHAR_BIT
,
1155 #if (BYTE_ORDER == BIG_ENDIAN)
1164 /* ignore error, just use empty string if error. */
1165 lttng_ust_getprocname(procname
);
1166 procname
[LTTNG_UST_PROCNAME_LEN
- 1] = '\0';
1167 ret
= lttng_metadata_printf(session
,
1170 " procname = \"%s\";\n"
1171 " domain = \"ust\";\n"
1172 " tracer_name = \"lttng-ust\";\n"
1173 " tracer_major = %u;\n"
1174 " tracer_minor = %u;\n"
1175 " tracer_patchlevel = %u;\n"
1179 LTTNG_UST_MAJOR_VERSION
,
1180 LTTNG_UST_MINOR_VERSION
,
1181 LTTNG_UST_PATCHLEVEL_VERSION
1186 ret
= lttng_metadata_printf(session
,
1194 if (!trace_clock_uuid(clock_uuid_s
)) {
1195 ret
= lttng_metadata_printf(session
,
1196 " uuid = \"%s\";\n",
1203 ret
= lttng_metadata_printf(session
,
1204 " description = \"Monotonic Clock\";\n"
1205 " freq = %" PRIu64
"; /* Frequency, in Hz */\n"
1206 " /* clock value offset from Epoch is: offset * (1/freq) */\n"
1207 " offset = %" PRIu64
";\n"
1210 measure_clock_offset()
1215 ret
= lttng_metadata_printf(session
,
1216 "typealias integer {\n"
1217 " size = 27; align = 1; signed = false;\n"
1218 " map = clock.monotonic.value;\n"
1219 "} := uint27_clock_monotonic_t;\n"
1221 "typealias integer {\n"
1222 " size = 32; align = %u; signed = false;\n"
1223 " map = clock.monotonic.value;\n"
1224 "} := uint32_clock_monotonic_t;\n"
1226 "typealias integer {\n"
1227 " size = 64; align = %u; signed = false;\n"
1228 " map = clock.monotonic.value;\n"
1229 "} := uint64_clock_monotonic_t;\n\n",
1230 lttng_alignof(uint32_t) * CHAR_BIT
,
1231 lttng_alignof(uint64_t) * CHAR_BIT
1236 ret
= _ltt_stream_packet_context_declare(session
);
1240 ret
= _ltt_event_header_declare(session
);
1245 cds_list_for_each_entry(chan
, &session
->chan
, list
) {
1246 ret
= _ltt_channel_metadata_statedump(session
, chan
);
1251 cds_list_for_each_entry(event
, &session
->events
, list
) {
1252 ret
= _ltt_event_metadata_statedump(session
, event
->chan
, event
);
1256 session
->metadata_dumped
= 1;
1261 void lttng_ust_events_exit(void)
1263 struct ltt_session
*session
, *tmpsession
;
1265 cds_list_for_each_entry_safe(session
, tmpsession
, &sessions
, list
)
1266 ltt_session_destroy(session
);
1272 int wildcard_same_loglevel(struct wildcard_entry
*e
,
1273 enum lttng_ust_loglevel_type loglevel_type
,
1276 if (e
->loglevel_type
== loglevel_type
&& e
->loglevel
== loglevel
)
1284 int wildcard_is_within(struct wildcard_entry
*e
,
1285 enum lttng_ust_loglevel_type loglevel_type
,
1288 if (e
->loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
1289 || e
->loglevel
== -1)
1291 switch (e
->loglevel_type
) {
1292 case LTTNG_UST_LOGLEVEL_RANGE
:
1293 switch (loglevel_type
) {
1294 case LTTNG_UST_LOGLEVEL_RANGE
:
1295 if (e
->loglevel
>= loglevel
)
1299 case LTTNG_UST_LOGLEVEL_SINGLE
:
1300 if (e
->loglevel
<= 0 && loglevel
== 0)
1305 case LTTNG_UST_LOGLEVEL_SINGLE
:
1306 switch (loglevel_type
) {
1307 case LTTNG_UST_LOGLEVEL_RANGE
:
1312 case LTTNG_UST_LOGLEVEL_SINGLE
:
1313 if (e
->loglevel
== loglevel
)
1323 * Add the wildcard to the wildcard list. Must be called with
1327 struct session_wildcard
*add_wildcard(struct ltt_channel
*chan
,
1328 struct lttng_ust_event
*event_param
)
1330 struct wildcard_entry
*e
;
1331 struct session_wildcard
*sw
;
1332 size_t name_len
= strlen(event_param
->name
) + 1;
1336 * Try to find global wildcard entry. Given that this is shared
1337 * across all sessions, we need to check for exact loglevel
1338 * match, not just whether contained within the existing ones.
1340 cds_list_for_each_entry(e
, &wildcard_list
, list
) {
1341 if (!strncmp(event_param
->name
, e
->name
,
1342 LTTNG_UST_SYM_NAME_LEN
- 1)) {
1343 if (wildcard_same_loglevel(e
,
1344 event_param
->loglevel_type
,
1345 event_param
->loglevel
)) {
1354 * Create global wildcard entry if not found. Using
1355 * zmalloc here to allocate a variable length element.
1356 * Could cause some memory fragmentation if overused.
1358 e
= zmalloc(sizeof(struct wildcard_entry
) + name_len
);
1360 return ERR_PTR(-ENOMEM
);
1361 memcpy(&e
->name
[0], event_param
->name
, name_len
);
1362 e
->loglevel_type
= event_param
->loglevel_type
;
1363 e
->loglevel
= event_param
->loglevel
;
1364 cds_list_add(&e
->list
, &wildcard_list
);
1365 CDS_INIT_LIST_HEAD(&e
->session_list
);
1368 /* session wildcard */
1369 cds_list_for_each_entry(sw
, &e
->session_list
, session_list
) {
1370 if (chan
== sw
->chan
) {
1371 DBG("wildcard %s busy for this channel",
1373 return ERR_PTR(-EEXIST
); /* Already there */
1376 sw
= zmalloc(sizeof(struct session_wildcard
));
1378 return ERR_PTR(-ENOMEM
);
1381 memcpy(&sw
->event_param
, event_param
, sizeof(sw
->event_param
));
1382 sw
->event_param
.instrumentation
= LTTNG_UST_TRACEPOINT
;
1383 sw
->event_param
.loglevel_type
= event_param
->loglevel_type
;
1384 sw
->event_param
.loglevel
= event_param
->loglevel
;
1385 CDS_INIT_LIST_HEAD(&sw
->events
);
1386 cds_list_add(&sw
->list
, &chan
->session
->wildcards
);
1387 cds_list_add(&sw
->session_list
, &e
->session_list
);
1389 ltt_probes_create_wildcard_events(e
, sw
);
1394 * Remove the wildcard from the wildcard list. Must be called with
1395 * ust_lock held. Only called at session teardown.
1398 void _remove_wildcard(struct session_wildcard
*wildcard
)
1400 struct ltt_event
*ev
, *tmp
;
1403 * Just remove the events owned (for enable/disable) by this
1404 * wildcard from the list. The session teardown will take care
1405 * of freeing the event memory.
1407 cds_list_for_each_entry_safe(ev
, tmp
, &wildcard
->events
,
1409 cds_list_del(&ev
->wildcard_list
);
1411 cds_list_del(&wildcard
->session_list
);
1412 cds_list_del(&wildcard
->list
);
1413 if (cds_list_empty(&wildcard
->entry
->session_list
)) {
1414 cds_list_del(&wildcard
->entry
->list
);
1415 free(wildcard
->entry
);
1420 int ltt_wildcard_create(struct ltt_channel
*chan
,
1421 struct lttng_ust_event
*event_param
,
1422 struct session_wildcard
**_sw
)
1424 struct session_wildcard
*sw
;
1426 sw
= add_wildcard(chan
, event_param
);
1427 if (!sw
|| IS_ERR(sw
)) {
1435 void _ltt_wildcard_destroy(struct session_wildcard
*sw
)
1437 _remove_wildcard(sw
);
1440 int ltt_wildcard_enable(struct session_wildcard
*wildcard
)
1442 struct ltt_event
*ev
;
1445 if (wildcard
->enabled
)
1447 cds_list_for_each_entry(ev
, &wildcard
->events
, wildcard_list
) {
1448 ret
= ltt_event_enable(ev
);
1450 DBG("Error: enable error.\n");
1454 wildcard
->enabled
= 1;
1458 int ltt_wildcard_disable(struct session_wildcard
*wildcard
)
1460 struct ltt_event
*ev
;
1463 if (!wildcard
->enabled
)
1465 cds_list_for_each_entry(ev
, &wildcard
->events
, wildcard_list
) {
1466 ret
= ltt_event_disable(ev
);
1468 DBG("Error: disable error.\n");
1472 wildcard
->enabled
= 0;
1477 * Take the TLS "fault" in libuuid if dlopen'd, which can take the
1478 * dynamic linker mutex, outside of the UST lock, since the UST lock is
1479 * taken in constructors, which are called with dynamic linker mutex
1482 void lttng_fixup_event_tls(void)
1484 unsigned char uuid
[LTTNG_UST_UUID_STR_LEN
];
1486 (void) lttng_ust_uuid_generate(uuid
);