4 * LTTng-UST metadata generation
6 * Copyright (C) 2010-2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License, version 2 only,
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include <common/common.h>
32 #include "ust-registry.h"
33 #include "ust-clock.h"
37 #define max_t(type, a, b) ((type) ((a) > (b) ? (a) : (b)))
40 #define NSEC_PER_SEC 1000000000ULL
41 #define NR_CLOCK_OFFSET_SAMPLES 10
43 struct offset_sample
{
44 int64_t offset
; /* correlation offset */
45 uint64_t measure_delta
; /* lower is better */
49 int _lttng_field_statedump(struct ust_registry_session
*session
,
50 const struct ustctl_field
*fields
, size_t nr_fields
,
51 size_t *iter_field
, size_t nesting
);
54 int fls(unsigned int x
)
60 if (!(x
& 0xFFFF0000U
)) {
64 if (!(x
& 0xFF000000U
)) {
68 if (!(x
& 0xF0000000U
)) {
72 if (!(x
& 0xC0000000U
)) {
76 if (!(x
& 0x80000000U
)) {
84 int get_count_order(unsigned int count
)
88 order
= fls(count
) - 1;
89 if (count
& (count
- 1))
95 * Returns offset where to write in metadata array, or negative error value on error.
98 ssize_t
metadata_reserve(struct ust_registry_session
*session
, size_t len
)
100 size_t new_len
= session
->metadata_len
+ len
;
101 size_t new_alloc_len
= new_len
;
102 size_t old_alloc_len
= session
->metadata_alloc_len
;
105 if (new_alloc_len
> (UINT32_MAX
>> 1))
107 if ((old_alloc_len
<< 1) > (UINT32_MAX
>> 1))
110 if (new_alloc_len
> old_alloc_len
) {
114 max_t(size_t, 1U << get_count_order(new_alloc_len
), old_alloc_len
<< 1);
115 newptr
= realloc(session
->metadata
, new_alloc_len
);
118 session
->metadata
= newptr
;
119 /* We zero directly the memory from start of allocation. */
120 memset(&session
->metadata
[old_alloc_len
], 0, new_alloc_len
- old_alloc_len
);
121 session
->metadata_alloc_len
= new_alloc_len
;
123 ret
= session
->metadata_len
;
124 session
->metadata_len
+= len
;
129 int metadata_file_append(struct ust_registry_session
*session
,
130 const char *str
, size_t len
)
134 if (session
->metadata_fd
< 0) {
137 /* Write to metadata file */
138 written
= lttng_write(session
->metadata_fd
, str
, len
);
139 if (written
!= len
) {
146 * We have exclusive access to our metadata buffer (protected by the
147 * ust_lock), so we can do racy operations such as looking for
148 * remaining space left in packet and write, since mutual exclusion
149 * protects us from concurrent writes.
152 int lttng_metadata_printf(struct ust_registry_session
*session
,
153 const char *fmt
, ...)
162 ret
= vasprintf(&str
, fmt
, ap
);
168 offset
= metadata_reserve(session
, len
);
173 memcpy(&session
->metadata
[offset
], str
, len
);
174 ret
= metadata_file_append(session
, str
, len
);
176 PERROR("Error appending to metadata file");
179 DBG3("Append to metadata: \"%s\"", str
);
188 int print_tabs(struct ust_registry_session
*session
, size_t nesting
)
192 for (i
= 0; i
< nesting
; i
++) {
195 ret
= lttng_metadata_printf(session
, " ");
204 void sanitize_ctf_identifier(char *out
, const char *in
)
208 for (i
= 0; i
< LTTNG_UST_SYM_NAME_LEN
; i
++) {
221 /* Called with session registry mutex held. */
223 int ust_metadata_enum_statedump(struct ust_registry_session
*session
,
224 const char *enum_name
,
226 const struct ustctl_integer_type
*container_type
,
227 const char *field_name
, size_t *iter_field
, size_t nesting
)
229 struct ust_registry_enum
*reg_enum
;
230 const struct ustctl_enum_entry
*entries
;
234 char identifier
[LTTNG_UST_SYM_NAME_LEN
];
237 reg_enum
= ust_registry_lookup_enum_by_id(session
, enum_name
, enum_id
);
239 /* reg_enum can still be used because session registry mutex is held. */
244 entries
= reg_enum
->entries
;
245 nr_entries
= reg_enum
->nr_entries
;
247 ret
= print_tabs(session
, nesting
);
251 ret
= lttng_metadata_printf(session
,
252 "enum : integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u; } {\n",
253 container_type
->size
,
254 container_type
->alignment
,
255 container_type
->signedness
,
256 (container_type
->encoding
== ustctl_encode_none
)
258 : (container_type
->encoding
== ustctl_encode_UTF8
)
261 container_type
->base
);
265 /* Dump all entries */
266 for (i
= 0; i
< nr_entries
; i
++) {
267 const struct ustctl_enum_entry
*entry
= &entries
[i
];
270 ret
= print_tabs(session
, nesting
);
274 ret
= lttng_metadata_printf(session
,
279 len
= strlen(entry
->string
);
280 /* Escape the character '"' */
281 for (j
= 0; j
< len
; j
++) {
282 char c
= entry
->string
[j
];
286 ret
= lttng_metadata_printf(session
,
290 ret
= lttng_metadata_printf(session
,
294 ret
= lttng_metadata_printf(session
,
302 ret
= lttng_metadata_printf(session
,
307 if (entry
->start
== entry
->end
) {
308 ret
= lttng_metadata_printf(session
,
312 ret
= lttng_metadata_printf(session
,
314 entry
->start
, entry
->end
);
320 sanitize_ctf_identifier(identifier
, field_name
);
321 ret
= print_tabs(session
, nesting
);
325 ret
= lttng_metadata_printf(session
, "} _%s;\n",
333 int _lttng_variant_statedump(struct ust_registry_session
*session
,
334 const struct ustctl_field
*fields
, size_t nr_fields
,
335 size_t *iter_field
, size_t nesting
)
337 const struct ustctl_field
*variant
= &fields
[*iter_field
];
338 uint32_t nr_choices
, i
;
340 char identifier
[LTTNG_UST_SYM_NAME_LEN
];
342 if (variant
->type
.atype
!= ustctl_atype_variant
) {
346 nr_choices
= variant
->type
.u
.variant
.nr_choices
;
348 sanitize_ctf_identifier(identifier
, variant
->type
.u
.variant
.tag_name
);
349 ret
= print_tabs(session
, nesting
);
353 ret
= lttng_metadata_printf(session
,
360 for (i
= 0; i
< nr_choices
; i
++) {
361 if (*iter_field
>= nr_fields
) {
365 ret
= _lttng_field_statedump(session
,
367 iter_field
, nesting
+ 1);
372 sanitize_ctf_identifier(identifier
, variant
->name
);
373 ret
= print_tabs(session
, nesting
);
374 ret
= lttng_metadata_printf(session
,
385 int _lttng_field_statedump(struct ust_registry_session
*session
,
386 const struct ustctl_field
*fields
, size_t nr_fields
,
387 size_t *iter_field
, size_t nesting
)
390 const char *bo_be
= " byte_order = be;";
391 const char *bo_le
= " byte_order = le;";
392 const char *bo_native
= "";
393 const char *bo_reverse
;
394 const struct ustctl_field
*field
;
396 if (*iter_field
>= nr_fields
) {
400 field
= &fields
[*iter_field
];
402 if (session
->byte_order
== BIG_ENDIAN
) {
408 switch (field
->type
.atype
) {
409 case ustctl_atype_integer
:
410 ret
= print_tabs(session
, nesting
);
414 ret
= lttng_metadata_printf(session
,
415 "integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s;\n",
416 field
->type
.u
.basic
.integer
.size
,
417 field
->type
.u
.basic
.integer
.alignment
,
418 field
->type
.u
.basic
.integer
.signedness
,
419 (field
->type
.u
.basic
.integer
.encoding
== ustctl_encode_none
)
421 : (field
->type
.u
.basic
.integer
.encoding
== ustctl_encode_UTF8
)
424 field
->type
.u
.basic
.integer
.base
,
425 field
->type
.u
.basic
.integer
.reverse_byte_order
? bo_reverse
: bo_native
,
429 case ustctl_atype_enum
:
430 ret
= ust_metadata_enum_statedump(session
,
431 field
->type
.u
.basic
.enumeration
.name
,
432 field
->type
.u
.basic
.enumeration
.id
,
433 &field
->type
.u
.basic
.enumeration
.container_type
,
434 field
->name
, iter_field
, nesting
);
436 case ustctl_atype_float
:
437 ret
= print_tabs(session
, nesting
);
441 ret
= lttng_metadata_printf(session
,
442 "floating_point { exp_dig = %u; mant_dig = %u; align = %u;%s } _%s;\n",
443 field
->type
.u
.basic
._float
.exp_dig
,
444 field
->type
.u
.basic
._float
.mant_dig
,
445 field
->type
.u
.basic
._float
.alignment
,
446 field
->type
.u
.basic
.integer
.reverse_byte_order
? bo_reverse
: bo_native
,
450 case ustctl_atype_array
:
452 const struct ustctl_basic_type
*elem_type
;
454 ret
= print_tabs(session
, nesting
);
458 elem_type
= &field
->type
.u
.array
.elem_type
;
459 ret
= lttng_metadata_printf(session
,
460 "integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[%u];\n",
461 elem_type
->u
.basic
.integer
.size
,
462 elem_type
->u
.basic
.integer
.alignment
,
463 elem_type
->u
.basic
.integer
.signedness
,
464 (elem_type
->u
.basic
.integer
.encoding
== ustctl_encode_none
)
466 : (elem_type
->u
.basic
.integer
.encoding
== ustctl_encode_UTF8
)
469 elem_type
->u
.basic
.integer
.base
,
470 elem_type
->u
.basic
.integer
.reverse_byte_order
? bo_reverse
: bo_native
,
471 field
->name
, field
->type
.u
.array
.length
);
475 case ustctl_atype_sequence
:
477 const struct ustctl_basic_type
*elem_type
;
478 const struct ustctl_basic_type
*length_type
;
480 elem_type
= &field
->type
.u
.sequence
.elem_type
;
481 length_type
= &field
->type
.u
.sequence
.length_type
;
482 ret
= print_tabs(session
, nesting
);
486 ret
= lttng_metadata_printf(session
,
487 "integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } __%s_length;\n",
488 length_type
->u
.basic
.integer
.size
,
489 (unsigned int) length_type
->u
.basic
.integer
.alignment
,
490 length_type
->u
.basic
.integer
.signedness
,
491 (length_type
->u
.basic
.integer
.encoding
== ustctl_encode_none
)
493 : ((length_type
->u
.basic
.integer
.encoding
== ustctl_encode_UTF8
)
496 length_type
->u
.basic
.integer
.base
,
497 length_type
->u
.basic
.integer
.reverse_byte_order
? bo_reverse
: bo_native
,
503 ret
= print_tabs(session
, nesting
);
507 ret
= lttng_metadata_printf(session
,
508 "integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } _%s[ __%s_length ];\n",
509 elem_type
->u
.basic
.integer
.size
,
510 (unsigned int) elem_type
->u
.basic
.integer
.alignment
,
511 elem_type
->u
.basic
.integer
.signedness
,
512 (elem_type
->u
.basic
.integer
.encoding
== ustctl_encode_none
)
514 : ((elem_type
->u
.basic
.integer
.encoding
== ustctl_encode_UTF8
)
517 elem_type
->u
.basic
.integer
.base
,
518 elem_type
->u
.basic
.integer
.reverse_byte_order
? bo_reverse
: bo_native
,
525 case ustctl_atype_string
:
526 /* Default encoding is UTF8 */
527 ret
= print_tabs(session
, nesting
);
531 ret
= lttng_metadata_printf(session
,
533 field
->type
.u
.basic
.string
.encoding
== ustctl_encode_ASCII
?
534 " { encoding = ASCII; }" : "",
538 case ustctl_atype_variant
:
539 ret
= _lttng_variant_statedump(session
, fields
, nr_fields
, iter_field
, nesting
);
544 case ustctl_atype_struct
:
545 ret
= print_tabs(session
, nesting
);
549 ret
= lttng_metadata_printf(session
,
562 int _lttng_context_metadata_statedump(struct ust_registry_session
*session
,
563 size_t nr_ctx_fields
,
564 struct ustctl_field
*ctx
)
572 if (i
>= nr_ctx_fields
) {
575 ret
= _lttng_field_statedump(session
, ctx
,
576 nr_ctx_fields
, &i
, 2);
585 int _lttng_fields_metadata_statedump(struct ust_registry_session
*session
,
586 struct ust_registry_event
*event
)
592 if (i
>= event
->nr_fields
) {
595 ret
= _lttng_field_statedump(session
, event
->fields
,
596 event
->nr_fields
, &i
, 2);
605 * Should be called with session registry mutex held.
607 int ust_metadata_event_statedump(struct ust_registry_session
*session
,
608 struct ust_registry_channel
*chan
,
609 struct ust_registry_event
*event
)
613 /* Don't dump metadata events */
614 if (chan
->chan_id
== -1U)
617 ret
= lttng_metadata_printf(session
,
621 " stream_id = %u;\n",
628 ret
= lttng_metadata_printf(session
,
630 event
->loglevel_value
);
634 if (event
->model_emf_uri
) {
635 ret
= lttng_metadata_printf(session
,
636 " model.emf.uri = \"%s\";\n",
637 event
->model_emf_uri
);
642 ret
= lttng_metadata_printf(session
,
643 " fields := struct {\n"
648 ret
= _lttng_fields_metadata_statedump(session
, event
);
652 ret
= lttng_metadata_printf(session
,
657 event
->metadata_dumped
= 1;
664 * Should be called with session registry mutex held.
666 int ust_metadata_channel_statedump(struct ust_registry_session
*session
,
667 struct ust_registry_channel
*chan
)
671 /* Don't dump metadata events */
672 if (chan
->chan_id
== -1U)
675 if (!chan
->header_type
)
678 ret
= lttng_metadata_printf(session
,
681 " event.header := %s;\n"
682 " packet.context := struct packet_context;\n",
684 chan
->header_type
== USTCTL_CHANNEL_HEADER_COMPACT
?
685 "struct event_header_compact" :
686 "struct event_header_large");
690 if (chan
->ctx_fields
) {
691 ret
= lttng_metadata_printf(session
,
692 " event.context := struct {\n");
696 ret
= _lttng_context_metadata_statedump(session
,
701 if (chan
->ctx_fields
) {
702 ret
= lttng_metadata_printf(session
,
708 ret
= lttng_metadata_printf(session
,
710 /* Flag success of metadata dump. */
711 chan
->metadata_dumped
= 1;
718 int _lttng_stream_packet_context_declare(struct ust_registry_session
*session
)
720 return lttng_metadata_printf(session
,
721 "struct packet_context {\n"
722 " uint64_clock_monotonic_t timestamp_begin;\n"
723 " uint64_clock_monotonic_t timestamp_end;\n"
724 " uint64_t content_size;\n"
725 " uint64_t packet_size;\n"
726 " uint64_t packet_seq_num;\n"
727 " unsigned long events_discarded;\n"
728 " uint32_t cpu_id;\n"
736 * id 31 is reserved to indicate an extended header.
739 * id: range: 0 - 65534.
740 * id 65535 is reserved to indicate an extended header.
743 int _lttng_event_header_declare(struct ust_registry_session
*session
)
745 return lttng_metadata_printf(session
,
746 "struct event_header_compact {\n"
747 " enum : uint5_t { compact = 0 ... 30, extended = 31 } id;\n"
750 " uint27_clock_monotonic_t timestamp;\n"
754 " uint64_clock_monotonic_t timestamp;\n"
759 "struct event_header_large {\n"
760 " enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;\n"
763 " uint32_clock_monotonic_t timestamp;\n"
767 " uint64_clock_monotonic_t timestamp;\n"
771 session
->uint32_t_alignment
,
772 session
->uint16_t_alignment
777 * The offset between monotonic and realtime clock can be negative if
778 * the system sets the REALTIME clock to 0 after boot.
781 int measure_single_clock_offset(struct offset_sample
*sample
)
783 uint64_t monotonic_avg
, monotonic
[2], measure_delta
, realtime
;
784 uint64_t tcf
= trace_clock_freq();
785 struct timespec rts
= { 0, 0 };
788 monotonic
[0] = trace_clock_read64();
789 ret
= clock_gettime(CLOCK_REALTIME
, &rts
);
793 monotonic
[1] = trace_clock_read64();
794 measure_delta
= monotonic
[1] - monotonic
[0];
795 if (measure_delta
> sample
->measure_delta
) {
797 * Discard value if it took longer to read than the best
802 monotonic_avg
= (monotonic
[0] + monotonic
[1]) >> 1;
803 realtime
= (uint64_t) rts
.tv_sec
* tcf
;
804 if (tcf
== NSEC_PER_SEC
) {
805 realtime
+= rts
.tv_nsec
;
807 realtime
+= (uint64_t) rts
.tv_nsec
* tcf
/ NSEC_PER_SEC
;
809 sample
->offset
= (int64_t) realtime
- monotonic_avg
;
810 sample
->measure_delta
= measure_delta
;
815 * Approximation of NTP time of day to clock monotonic correlation,
816 * taken at start of trace. Keep the measurement that took the less time
817 * to complete, thus removing imprecision caused by preemption.
818 * May return a negative offset.
821 int64_t measure_clock_offset(void)
824 struct offset_sample offset_best_sample
= {
826 .measure_delta
= UINT64_MAX
,
829 for (i
= 0; i
< NR_CLOCK_OFFSET_SAMPLES
; i
++) {
830 if (measure_single_clock_offset(&offset_best_sample
)) {
834 return offset_best_sample
.offset
;
838 * Should be called with session registry mutex held.
840 int ust_metadata_session_statedump(struct ust_registry_session
*session
,
845 unsigned char *uuid_c
;
846 char uuid_s
[UUID_STR_LEN
],
847 clock_uuid_s
[UUID_STR_LEN
];
849 char hostname
[HOST_NAME_MAX
];
853 uuid_c
= session
->uuid
;
855 snprintf(uuid_s
, sizeof(uuid_s
),
856 "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
857 uuid_c
[0], uuid_c
[1], uuid_c
[2], uuid_c
[3],
858 uuid_c
[4], uuid_c
[5], uuid_c
[6], uuid_c
[7],
859 uuid_c
[8], uuid_c
[9], uuid_c
[10], uuid_c
[11],
860 uuid_c
[12], uuid_c
[13], uuid_c
[14], uuid_c
[15]);
863 ret
= lttng_metadata_printf(session
,
864 "/* CTF %u.%u */\n\n",
871 ret
= lttng_metadata_printf(session
,
872 "typealias integer { size = 8; align = %u; signed = false; } := uint8_t;\n"
873 "typealias integer { size = 16; align = %u; signed = false; } := uint16_t;\n"
874 "typealias integer { size = 32; align = %u; signed = false; } := uint32_t;\n"
875 "typealias integer { size = 64; align = %u; signed = false; } := uint64_t;\n"
876 "typealias integer { size = %u; align = %u; signed = false; } := unsigned long;\n"
877 "typealias integer { size = 5; align = 1; signed = false; } := uint5_t;\n"
878 "typealias integer { size = 27; align = 1; signed = false; } := uint27_t;\n"
884 " byte_order = %s;\n"
885 " packet.header := struct {\n"
887 " uint8_t uuid[16];\n"
888 " uint32_t stream_id;\n"
889 " uint64_t stream_instance_id;\n"
892 session
->uint8_t_alignment
,
893 session
->uint16_t_alignment
,
894 session
->uint32_t_alignment
,
895 session
->uint64_t_alignment
,
896 session
->bits_per_long
,
897 session
->long_alignment
,
901 session
->byte_order
== BIG_ENDIAN
? "be" : "le"
906 /* ignore error, just use empty string if error. */
908 ret
= gethostname(hostname
, sizeof(hostname
));
909 if (ret
&& errno
== ENAMETOOLONG
)
910 hostname
[HOST_NAME_MAX
- 1] = '\0';
911 ret
= lttng_metadata_printf(session
,
913 " hostname = \"%s\";\n"
914 " domain = \"ust\";\n"
915 " tracer_name = \"lttng-ust\";\n"
916 " tracer_major = %u;\n"
917 " tracer_minor = %u;\n",
926 * If per-application registry, we can output extra information
927 * about the application.
930 ret
= lttng_metadata_printf(session
,
931 " tracer_patchlevel = %u;\n"
933 " procname = \"%s\";\n",
934 app
->version
.patchlevel
,
942 ret
= lttng_metadata_printf(session
,
949 ret
= lttng_metadata_printf(session
,
957 if (!trace_clock_uuid(clock_uuid_s
)) {
958 ret
= lttng_metadata_printf(session
,
966 ret
= lttng_metadata_printf(session
,
967 " description = \"%s\";\n"
968 " freq = %" PRIu64
"; /* Frequency, in Hz */\n"
969 " /* clock value offset from Epoch is: offset * (1/freq) */\n"
970 " offset = %" PRId64
";\n"
972 trace_clock_description(),
974 measure_clock_offset()
979 ret
= lttng_metadata_printf(session
,
980 "typealias integer {\n"
981 " size = 27; align = 1; signed = false;\n"
982 " map = clock.%s.value;\n"
983 "} := uint27_clock_monotonic_t;\n"
985 "typealias integer {\n"
986 " size = 32; align = %u; signed = false;\n"
987 " map = clock.%s.value;\n"
988 "} := uint32_clock_monotonic_t;\n"
990 "typealias integer {\n"
991 " size = 64; align = %u; signed = false;\n"
992 " map = clock.%s.value;\n"
993 "} := uint64_clock_monotonic_t;\n\n",
995 session
->uint32_t_alignment
,
997 session
->uint64_t_alignment
,
1003 ret
= _lttng_stream_packet_context_declare(session
);
1007 ret
= _lttng_event_header_declare(session
);