update metadata packet header size vs content size
[ctf.git] / common-trace-format-proposal.txt
... / ...
CommitLineData
1
2RFC: Common Trace Format (CTF) Proposal (pre-v1.7)
3
4Mathieu Desnoyers, EfficiOS Inc.
5
6The goal of the present document is to propose a trace format that suits the
7needs of the embedded, telecom, high-performance and kernel communities. It is
8based on the Common Trace Format Requirements (v1.4) document. It is designed to
9allow traces to be natively generated by the Linux kernel, Linux user-space
10applications written in C/C++, and hardware components. One major element of
11CTF is the Trace Stream Description Language (TSDL) which flexibility
12enables description of various binary trace stream layouts.
13
14The latest version of this document can be found at:
15
16 git tree: git://git.efficios.com/ctf.git
17 gitweb: http://git.efficios.com/?p=ctf.git
18
19A reference implementation of a library to read and write this trace format is
20being implemented within the BabelTrace project, a converter between trace
21formats. The development tree is available at:
22
23 git tree: git://git.efficios.com/babeltrace.git
24 gitweb: http://git.efficios.com/?p=babeltrace.git
25
26
271. Preliminary definitions
28
29 - Event Trace: An ordered sequence of events.
30 - Event Stream: An ordered sequence of events, containing a subset of the
31 trace event types.
32 - Event Packet: A sequence of physically contiguous events within an event
33 stream.
34 - Event: This is the basic entry in a trace. (aka: a trace record).
35 - An event identifier (ID) relates to the class (a type) of event within
36 an event stream.
37 e.g. event: irq_entry.
38 - An event (or event record) relates to a specific instance of an event
39 class.
40 e.g. event: irq_entry, at time X, on CPU Y
41 - Source Architecture: Architecture writing the trace.
42 - Reader Architecture: Architecture reading the trace.
43
44
452. High-level representation of a trace
46
47A trace is divided into multiple event streams. Each event stream contains a
48subset of the trace event types.
49
50The final output of the trace, after its generation and optional transport over
51the network, is expected to be either on permanent or temporary storage in a
52virtual file system. Because each event stream is appended to while a trace is
53being recorded, each is associated with a separate file for output. Therefore,
54a stored trace can be represented as a directory containing one file per stream.
55
56Meta-data description associated with the trace contains information on
57trace event types expressed in the Trace Stream Description Language
58(TSDL). This language describes:
59
60- Trace version.
61- Types available.
62- Per-trace event header description.
63- Per-stream event header description.
64- Per-stream event context description.
65- Per-event
66 - Event type to stream mapping.
67 - Event type to name mapping.
68 - Event type to ID mapping.
69 - Event context description.
70 - Event fields description.
71
72
733. Event stream
74
75An event stream can be divided into contiguous event packets of variable
76size. These subdivisions have a variable size. An event packet can
77contain a certain amount of padding at the end. The stream header is
78repeated at the beginning of each event packet. The rationale for the
79event stream design choices is explained in Appendix B. Stream Header
80Rationale.
81
82The event stream header will therefore be referred to as the "event packet
83header" throughout the rest of this document.
84
85
864. Types
87
88Types are organized as type classes. Each type class belong to either of two
89kind of types: basic types or compound types.
90
914.1 Basic types
92
93A basic type is a scalar type, as described in this section. It includes
94integers, GNU/C bitfields, enumerations, and floating point values.
95
964.1.1 Type inheritance
97
98Type specifications can be inherited to allow deriving types from a
99type class. For example, see the uint32_t named type derived from the "integer"
100type class below ("Integers" section). Types have a precise binary
101representation in the trace. A type class has methods to read and write these
102types, but must be derived into a type to be usable in an event field.
103
1044.1.2 Alignment
105
106We define "byte-packed" types as aligned on the byte size, namely 8-bit.
107We define "bit-packed" types as following on the next bit, as defined by the
108"Integers" section.
109
110Each basic type must specify its alignment, in bits. Examples of
111possible alignments are: bit-packed (align = 1), byte-packed (align =
1128), or word-aligned (e.g. align = 32 or align = 64). The choice depends
113on the architecture preference and compactness vs performance trade-offs
114of the implementation. Architectures providing fast unaligned write
115byte-packed basic types to save space, aligning each type on byte
116boundaries (8-bit). Architectures with slow unaligned writes align types
117on specific alignment values. If no specific alignment is declared for a
118type, it is assumed to be bit-packed for integers with size not multiple
119of 8 bits and for gcc bitfields. All other basic types are byte-packed
120by default. It is however recommended to always specify the alignment
121explicitly. Alignment values must be power of two. Compound types are
122aligned as specified in their individual specification.
123
124TSDL meta-data attribute representation of a specific alignment:
125
126 align = value; /* value in bits */
127
1284.1.3 Byte order
129
130By default, the native endianness of the source architecture the trace is used.
131Byte order can be overridden for a basic type by specifying a "byte_order"
132attribute. Typical use-case is to specify the network byte order (big endian:
133"be") to save data captured from the network into the trace without conversion.
134If not specified, the byte order is native.
135
136TSDL meta-data representation:
137
138 byte_order = native OR network OR be OR le; /* network and be are aliases */
139
1404.1.4 Size
141
142Type size, in bits, for integers and floats is that returned by "sizeof()" in C
143multiplied by CHAR_BIT.
144We require the size of "char" and "unsigned char" types (CHAR_BIT) to be fixed
145to 8 bits for cross-endianness compatibility.
146
147TSDL meta-data representation:
148
149 size = value; (value is in bits)
150
1514.1.5 Integers
152
153Signed integers are represented in two-complement. Integer alignment,
154size, signedness and byte ordering are defined in the TSDL meta-data.
155Integers aligned on byte size (8-bit) and with length multiple of byte
156size (8-bit) correspond to the C99 standard integers. In addition,
157integers with alignment and/or size that are _not_ a multiple of the
158byte size are permitted; these correspond to the C99 standard bitfields,
159with the added specification that the CTF integer bitfields have a fixed
160binary representation. A MIT-licensed reference implementation of the
161CTF portable bitfields is available at:
162
163 http://git.efficios.com/?p=babeltrace.git;a=blob;f=include/babeltrace/bitfield.h
164
165Binary representation of integers:
166
167- On little and big endian:
168 - Within a byte, high bits correspond to an integer high bits, and low bits
169 correspond to low bits.
170- On little endian:
171 - Integer across multiple bytes are placed from the less significant to the
172 most significant.
173 - Consecutive integers are placed from lower bits to higher bits (even within
174 a byte).
175- On big endian:
176 - Integer across multiple bytes are placed from the most significant to the
177 less significant.
178 - Consecutive integers are placed from higher bits to lower bits (even within
179 a byte).
180
181This binary representation is derived from the bitfield implementation in GCC
182for little and big endian. However, contrary to what GCC does, integers can
183cross units boundaries (no padding is required). Padding can be explicitly
184added (see 4.1.6 GNU/C bitfields) to follow the GCC layout if needed.
185
186TSDL meta-data representation:
187
188 integer {
189 signed = true OR false; /* default false */
190 byte_order = native OR network OR be OR le; /* default native */
191 size = value; /* value in bits, no default */
192 align = value; /* value in bits */
193 /* based used for pretty-printing output, default: decimal. */
194 base = decimal OR dec OR OR d OR i OR u OR 10 OR hexadecimal OR hex OR x OR X OR p OR 16
195 OR octal OR oct OR o OR 8 OR binary OR b OR 2;
196 /* character encoding, default: none */
197 encoding = none or UTF8 or ASCII;
198 }
199
200Example of type inheritance (creation of a uint32_t named type):
201
202typealias integer {
203 size = 32;
204 signed = false;
205 align = 32;
206} := uint32_t;
207
208Definition of a named 5-bit signed bitfield:
209
210typealias integer {
211 size = 5;
212 signed = true;
213 align = 1;
214} := int5_t;
215
216The character encoding field can be used to specify that the integer
217must be printed as a text character when read. e.g.:
218
219typealias integer {
220 size = 8;
221 align = 8;
222 signed = false;
223 encoding = UTF8;
224} := utf_char;
225
226
2274.1.6 GNU/C bitfields
228
229The GNU/C bitfields follow closely the integer representation, with a
230particularity on alignment: if a bitfield cannot fit in the current unit, the
231unit is padded and the bitfield starts at the following unit. The unit size is
232defined by the size of the type "unit_type".
233
234TSDL meta-data representation:
235
236 unit_type name:size;
237
238As an example, the following structure declared in C compiled by GCC:
239
240struct example {
241 short a:12;
242 short b:5;
243};
244
245The example structure is aligned on the largest element (short). The second
246bitfield would be aligned on the next unit boundary, because it would not fit in
247the current unit.
248
2494.1.7 Floating point
250
251The floating point values byte ordering is defined in the TSDL meta-data.
252
253Floating point values follow the IEEE 754-2008 standard interchange formats.
254Description of the floating point values include the exponent and mantissa size
255in bits. Some requirements are imposed on the floating point values:
256
257- FLT_RADIX must be 2.
258- mant_dig is the number of digits represented in the mantissa. It is specified
259 by the ISO C99 standard, section 5.2.4, as FLT_MANT_DIG, DBL_MANT_DIG and
260 LDBL_MANT_DIG as defined by <float.h>.
261- exp_dig is the number of digits represented in the exponent. Given that
262 mant_dig is one bit more than its actual size in bits (leading 1 is not
263 needed) and also given that the sign bit always takes one bit, exp_dig can be
264 specified as:
265
266 - sizeof(float) * CHAR_BIT - FLT_MANT_DIG
267 - sizeof(double) * CHAR_BIT - DBL_MANT_DIG
268 - sizeof(long double) * CHAR_BIT - LDBL_MANT_DIG
269
270TSDL meta-data representation:
271
272floating_point {
273 exp_dig = value;
274 mant_dig = value;
275 byte_order = native OR network OR be OR le;
276 align = value;
277}
278
279Example of type inheritance:
280
281typealias floating_point {
282 exp_dig = 8; /* sizeof(float) * CHAR_BIT - FLT_MANT_DIG */
283 mant_dig = 24; /* FLT_MANT_DIG */
284 byte_order = native;
285 align = 32;
286} := float;
287
288TODO: define NaN, +inf, -inf behavior.
289
290Bit-packed, byte-packed or larger alignments can be used for floating
291point values, similarly to integers.
292
2934.1.8 Enumerations
294
295Enumerations are a mapping between an integer type and a table of strings. The
296numerical representation of the enumeration follows the integer type specified
297by the meta-data. The enumeration mapping table is detailed in the enumeration
298description within the meta-data. The mapping table maps inclusive value
299ranges (or single values) to strings. Instead of being limited to simple
300"value -> string" mappings, these enumerations map
301"[ start_value ... end_value ] -> string", which map inclusive ranges of
302values to strings. An enumeration from the C language can be represented in
303this format by having the same start_value and end_value for each element, which
304is in fact a range of size 1. This single-value range is supported without
305repeating the start and end values with the value = string declaration.
306
307enum name : integer_type {
308 somestring = start_value1 ... end_value1,
309 "other string" = start_value2 ... end_value2,
310 yet_another_string, /* will be assigned to end_value2 + 1 */
311 "some other string" = value,
312 ...
313};
314
315If the values are omitted, the enumeration starts at 0 and increment of 1 for
316each entry:
317
318enum name : unsigned int {
319 ZERO,
320 ONE,
321 TWO,
322 TEN = 10,
323 ELEVEN,
324};
325
326Overlapping ranges within a single enumeration are implementation defined.
327
328A nameless enumeration can be declared as a field type or as part of a typedef:
329
330enum : integer_type {
331 ...
332}
333
334Enumerations omitting the container type ": integer_type" use the "int"
335type (for compatibility with C99). The "int" type must be previously
336declared. E.g.:
337
338typealias integer { size = 32; align = 32; signed = true } := int;
339
340enum {
341 ...
342}
343
344
3454.2 Compound types
346
347Compound are aggregation of type declarations. Compound types include
348structures, variant, arrays, sequences, and strings.
349
3504.2.1 Structures
351
352Structures are aligned on the largest alignment required by basic types
353contained within the structure. (This follows the ISO/C standard for structures)
354
355TSDL meta-data representation of a named structure:
356
357struct name {
358 field_type field_name;
359 field_type field_name;
360 ...
361};
362
363Example:
364
365struct example {
366 integer { /* Nameless type */
367 size = 16;
368 signed = true;
369 align = 16;
370 } first_field_name;
371 uint64_t second_field_name; /* Named type declared in the meta-data */
372};
373
374The fields are placed in a sequence next to each other. They each possess a
375field name, which is a unique identifier within the structure.
376
377A nameless structure can be declared as a field type or as part of a typedef:
378
379struct {
380 ...
381}
382
383Alignment for a structure compound type can be forced to a minimum value
384by adding an "align" specifier after the declaration of a structure
385body. This attribute is read as: align(value). The value is specified in
386bits. The structure will be aligned on the maximum value between this
387attribute and the alignment required by the basic types contained within
388the structure. e.g.
389
390struct {
391 ...
392} align(32)
393
3944.2.2 Variants (Discriminated/Tagged Unions)
395
396A CTF variant is a selection between different types. A CTF variant must
397always be defined within the scope of a structure or within fields
398contained within a structure (defined recursively). A "tag" enumeration
399field must appear in either the same lexical scope, prior to the variant
400field (in field declaration order), in an upper lexical scope (see
401Section 7.3.1), or in an upper dynamic scope (see Section 7.3.2). The
402type selection is indicated by the mapping from the enumeration value to
403the string used as variant type selector. The field to use as tag is
404specified by the "tag_field", specified between "< >" after the
405"variant" keyword for unnamed variants, and after "variant name" for
406named variants.
407
408The alignment of the variant is the alignment of the type as selected by the tag
409value for the specific instance of the variant. The alignment of the type
410containing the variant is independent of the variant alignment. The size of the
411variant is the size as selected by the tag value for the specific instance of
412the variant.
413
414A named variant declaration followed by its definition within a structure
415declaration:
416
417variant name {
418 field_type sel1;
419 field_type sel2;
420 field_type sel3;
421 ...
422};
423
424struct {
425 enum : integer_type { sel1, sel2, sel3, ... } tag_field;
426 ...
427 variant name <tag_field> v;
428}
429
430An unnamed variant definition within a structure is expressed by the following
431TSDL meta-data:
432
433struct {
434 enum : integer_type { sel1, sel2, sel3, ... } tag_field;
435 ...
436 variant <tag_field> {
437 field_type sel1;
438 field_type sel2;
439 field_type sel3;
440 ...
441 } v;
442}
443
444Example of a named variant within a sequence that refers to a single tag field:
445
446variant example {
447 uint32_t a;
448 uint64_t b;
449 short c;
450};
451
452struct {
453 enum : uint2_t { a, b, c } choice;
454 unsigned int seqlen;
455 variant example <choice> v[seqlen];
456}
457
458Example of an unnamed variant:
459
460struct {
461 enum : uint2_t { a, b, c, d } choice;
462 /* Unrelated fields can be added between the variant and its tag */
463 int32_t somevalue;
464 variant <choice> {
465 uint32_t a;
466 uint64_t b;
467 short c;
468 struct {
469 unsigned int field1;
470 uint64_t field2;
471 } d;
472 } s;
473}
474
475Example of an unnamed variant within an array:
476
477struct {
478 enum : uint2_t { a, b, c } choice;
479 variant <choice> {
480 uint32_t a;
481 uint64_t b;
482 short c;
483 } v[10];
484}
485
486Example of a variant type definition within a structure, where the defined type
487is then declared within an array of structures. This variant refers to a tag
488located in an upper lexical scope. This example clearly shows that a variant
489type definition referring to the tag "x" uses the closest preceding field from
490the lexical scope of the type definition.
491
492struct {
493 enum : uint2_t { a, b, c, d } x;
494
495 typedef variant <x> { /*
496 * "x" refers to the preceding "x" enumeration in the
497 * lexical scope of the type definition.
498 */
499 uint32_t a;
500 uint64_t b;
501 short c;
502 } example_variant;
503
504 struct {
505 enum : int { x, y, z } x; /* This enumeration is not used by "v". */
506 example_variant v; /*
507 * "v" uses the "enum : uint2_t { a, b, c, d }"
508 * tag.
509 */
510 } a[10];
511}
512
5134.2.3 Arrays
514
515Arrays are fixed-length. Their length is declared in the type
516declaration within the meta-data. They contain an array of "inner type"
517elements, which can refer to any type not containing the type of the
518array being declared (no circular dependency). The length is the number
519of elements in an array.
520
521TSDL meta-data representation of a named array:
522
523typedef elem_type name[length];
524
525A nameless array can be declared as a field type within a structure, e.g.:
526
527 uint8_t field_name[10];
528
529Arrays are always aligned on their element alignment requirement.
530
5314.2.4 Sequences
532
533Sequences are dynamically-sized arrays. They refer to a a "length"
534unsigned integer field, which must appear in either the same lexical scope,
535prior to the sequence field (in field declaration order), in an upper
536lexical scope (see Section 7.3.1), or in an upper dynamic scope (see
537Section 7.3.2). This length field represents the number of elements in
538the sequence. The sequence per se is an array of "inner type" elements.
539
540TSDL meta-data representation for a sequence type definition:
541
542struct {
543 unsigned int length_field;
544 typedef elem_type typename[length_field];
545 typename seq_field_name;
546}
547
548A sequence can also be declared as a field type, e.g.:
549
550struct {
551 unsigned int length_field;
552 long seq_field_name[length_field];
553}
554
555Multiple sequences can refer to the same length field, and these length
556fields can be in a different upper dynamic scope:
557
558e.g., assuming the stream.event.header defines:
559
560stream {
561 ...
562 id = 1;
563 event.header := struct {
564 uint16_t seq_len;
565 };
566};
567
568event {
569 ...
570 stream_id = 1;
571 fields := struct {
572 long seq_a[stream.event.header.seq_len];
573 char seq_b[stream.event.header.seq_len];
574 };
575};
576
577The sequence elements follow the "array" specifications.
578
5794.2.5 Strings
580
581Strings are an array of bytes of variable size and are terminated by a '\0'
582"NULL" character. Their encoding is described in the TSDL meta-data. In
583absence of encoding attribute information, the default encoding is
584UTF-8.
585
586TSDL meta-data representation of a named string type:
587
588typealias string {
589 encoding = UTF8 OR ASCII;
590} := name;
591
592A nameless string type can be declared as a field type:
593
594string field_name; /* Use default UTF8 encoding */
595
596Strings are always aligned on byte size.
597
5985. Event Packet Header
599
600The event packet header consists of two parts: the "event packet header"
601is the same for all streams of a trace. The second part, the "event
602packet context", is described on a per-stream basis. Both are described
603in the TSDL meta-data. The packets are aligned on architecture-page-sized
604addresses.
605
606Event packet header (all fields are optional, specified by TSDL meta-data):
607
608- Magic number (CTF magic number: 0xC1FC1FC1) specifies that this is a
609 CTF packet. This magic number is optional, but when present, it should
610 come at the very beginning of the packet.
611- Trace UUID, used to ensure the event packet match the meta-data used.
612 (note: we cannot use a meta-data checksum in every cases instead of a
613 UUID because meta-data can be appended to while tracing is active)
614 This field is optional.
615- Stream ID, used as reference to stream description in meta-data.
616 This field is optional if there is only one stream description in the
617 meta-data, but becomes required if there are more than one stream in
618 the TSDL meta-data description.
619
620Event packet context (all fields are optional, specified by TSDL meta-data):
621
622- Event packet content size (in bytes).
623- Event packet size (in bytes, includes padding).
624- Event packet content checksum (optional). Checksum excludes the event packet
625 header.
626- Per-stream event packet sequence count (to deal with UDP packet loss). The
627 number of significant sequence counter bits should also be present, so
628 wrap-arounds are dealt with correctly.
629- Time-stamp at the beginning and time-stamp at the end of the event packet.
630 Both timestamps are written in the packet header, but sampled respectively
631 while (or before) writing the first event and while (or after) writing the
632 last event in the packet. The inclusive range between these timestamps should
633 include all event timestamps assigned to events contained within the packet.
634- Events discarded count
635 - Snapshot of a per-stream free-running counter, counting the number of
636 events discarded that were supposed to be written in the stream prior to
637 the first event in the event packet.
638 * Note: producer-consumer buffer full condition should fill the current
639 event packet with padding so we know exactly where events have been
640 discarded.
641- Lossless compression scheme used for the event packet content. Applied
642 directly to raw data. New types of compression can be added in following
643 versions of the format.
644 0: no compression scheme
645 1: bzip2
646 2: gzip
647 3: xz
648- Cypher used for the event packet content. Applied after compression.
649 0: no encryption
650 1: AES
651- Checksum scheme used for the event packet content. Applied after encryption.
652 0: no checksum
653 1: md5
654 2: sha1
655 3: crc32
656
6575.1 Event Packet Header Description
658
659The event packet header layout is indicated by the trace packet.header
660field. Here is a recommended structure type for the packet header with
661the fields typically expected (although these fields are each optional):
662
663struct event_packet_header {
664 uint32_t magic;
665 uint8_t uuid[16];
666 uint32_t stream_id;
667};
668
669trace {
670 ...
671 packet.header := struct event_packet_header;
672};
673
674If the magic number is not present, tools such as "file" will have no
675mean to discover the file type.
676
677If the uuid is not present, no validation that the meta-data actually
678corresponds to the stream is performed.
679
680If the stream_id packet header field is missing, the trace can only
681contain a single stream. Its "id" field can be left out, and its events
682don't need to declare a "stream_id" field.
683
684
6855.2 Event Packet Context Description
686
687Event packet context example. These are declared within the stream declaration
688in the meta-data. All these fields are optional. If the packet size field is
689missing, the whole stream only contains a single packet. If the content
690size field is missing, the packet is filled (no padding). The content
691and packet sizes include all headers.
692
693An example event packet context type:
694
695struct event_packet_context {
696 uint64_t timestamp_begin;
697 uint64_t timestamp_end;
698 uint32_t checksum;
699 uint32_t stream_packet_count;
700 uint32_t events_discarded;
701 uint32_t cpu_id;
702 uint32_t/uint16_t content_size;
703 uint32_t/uint16_t packet_size;
704 uint8_t stream_packet_count_bits; /* Significant counter bits */
705 uint8_t compression_scheme;
706 uint8_t encryption_scheme;
707 uint8_t checksum_scheme;
708};
709
710
7116. Event Structure
712
713The overall structure of an event is:
714
7151 - Stream Packet Context (as specified by the stream meta-data)
716 2 - Event Header (as specified by the stream meta-data)
717 3 - Stream Event Context (as specified by the stream meta-data)
718 4 - Event Context (as specified by the event meta-data)
719 5 - Event Payload (as specified by the event meta-data)
720
721This structure defines an implicit dynamic scoping, where variants
722located in inner structures (those with a higher number in the listing
723above) can refer to the fields of outer structures (with lower number in
724the listing above). See Section 7.3 TSDL Scopes for more detail.
725
7266.1 Event Header
727
728Event headers can be described within the meta-data. We hereby propose, as an
729example, two types of events headers. Type 1 accommodates streams with less than
73031 event IDs. Type 2 accommodates streams with 31 or more event IDs.
731
732One major factor can vary between streams: the number of event IDs assigned to
733a stream. Luckily, this information tends to stay relatively constant (modulo
734event registration while trace is being recorded), so we can specify different
735representations for streams containing few event IDs and streams containing
736many event IDs, so we end up representing the event ID and time-stamp as
737densely as possible in each case.
738
739The header is extended in the rare occasions where the information cannot be
740represented in the ranges available in the standard event header. They are also
741used in the rare occasions where the data required for a field could not be
742collected: the flag corresponding to the missing field within the missing_fields
743array is then set to 1.
744
745Types uintX_t represent an X-bit unsigned integer, as declared with
746either:
747
748 typealias integer { size = X; align = X; signed = false } := uintX_t;
749
750 or
751
752 typealias integer { size = X; align = 1; signed = false } := uintX_t;
753
7546.1.1 Type 1 - Few event IDs
755
756 - Aligned on 32-bit (or 8-bit if byte-packed, depending on the architecture
757 preference).
758 - Native architecture byte ordering.
759 - For "compact" selection
760 - Fixed size: 32 bits.
761 - For "extended" selection
762 - Size depends on the architecture and variant alignment.
763
764struct event_header_1 {
765 /*
766 * id: range: 0 - 30.
767 * id 31 is reserved to indicate an extended header.
768 */
769 enum : uint5_t { compact = 0 ... 30, extended = 31 } id;
770 variant <id> {
771 struct {
772 uint27_t timestamp;
773 } compact;
774 struct {
775 uint32_t id; /* 32-bit event IDs */
776 uint64_t timestamp; /* 64-bit timestamps */
777 } extended;
778 } v;
779} align(32); /* or align(8) */
780
781
7826.1.2 Type 2 - Many event IDs
783
784 - Aligned on 16-bit (or 8-bit if byte-packed, depending on the architecture
785 preference).
786 - Native architecture byte ordering.
787 - For "compact" selection
788 - Size depends on the architecture and variant alignment.
789 - For "extended" selection
790 - Size depends on the architecture and variant alignment.
791
792struct event_header_2 {
793 /*
794 * id: range: 0 - 65534.
795 * id 65535 is reserved to indicate an extended header.
796 */
797 enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;
798 variant <id> {
799 struct {
800 uint32_t timestamp;
801 } compact;
802 struct {
803 uint32_t id; /* 32-bit event IDs */
804 uint64_t timestamp; /* 64-bit timestamps */
805 } extended;
806 } v;
807} align(16); /* or align(8) */
808
809
8106.2 Event Context
811
812The event context contains information relative to the current event.
813The choice and meaning of this information is specified by the TSDL
814stream and event meta-data descriptions. The stream context is applied
815to all events within the stream. The stream context structure follows
816the event header. The event context is applied to specific events. Its
817structure follows the stream context structure.
818
819An example of stream-level event context is to save the event payload size with
820each event, or to save the current PID with each event. These are declared
821within the stream declaration within the meta-data:
822
823 stream {
824 ...
825 event.context := struct {
826 uint pid;
827 uint16_t payload_size;
828 };
829 };
830
831An example of event-specific event context is to declare a bitmap of missing
832fields, only appended after the stream event context if the extended event
833header is selected. NR_FIELDS is the number of fields within the event (a
834numeric value).
835
836 event {
837 context = struct {
838 variant <id> {
839 struct { } compact;
840 struct {
841 uint1_t missing_fields[NR_FIELDS]; /* missing event fields bitmap */
842 } extended;
843 } v;
844 };
845 ...
846 }
847
8486.3 Event Payload
849
850An event payload contains fields specific to a given event type. The fields
851belonging to an event type are described in the event-specific meta-data
852within a structure type.
853
8546.3.1 Padding
855
856No padding at the end of the event payload. This differs from the ISO/C standard
857for structures, but follows the CTF standard for structures. In a trace, even
858though it makes sense to align the beginning of a structure, it really makes no
859sense to add padding at the end of the structure, because structures are usually
860not followed by a structure of the same type.
861
862This trick can be done by adding a zero-length "end" field at the end of the C
863structures, and by using the offset of this field rather than using sizeof()
864when calculating the size of a structure (see Appendix "A. Helper macros").
865
8666.3.2 Alignment
867
868The event payload is aligned on the largest alignment required by types
869contained within the payload. (This follows the ISO/C standard for structures)
870
871
8727. Trace Stream Description Language (TSDL)
873
874The Trace Stream Description Language (TSDL) allows expression of the
875binary trace streams layout in a C99-like Domain Specific Language
876(DSL).
877
878
8797.1 Meta-data
880
881The trace stream layout description is located in the trace meta-data.
882The meta-data is itself located in a stream identified by its name:
883"metadata".
884
885The meta-data description can be expressed in two different formats:
886text-only and packet-based. The text-only description facilitates
887generation of meta-data and provides a convenient way to enter the
888meta-data information by hand. The packet-based meta-data provides the
889CTF stream packet facilities (checksumming, compression, encryption,
890network-readiness) for meta-data stream generated and transported by a
891tracer.
892
893The text-only meta-data file is a plain text TSDL description.
894
895The packet-based meta-data is made of "meta-data packets", which each
896start with a meta-data packet header. The packet-based meta-data
897description is detected by reading the magic number "0x75D11D57" at the
898beginning of the file. This magic number is also used to detect the
899endianness of the architecture by trying to read the CTF magic number
900and its counterpart in reversed endianness. The events within the
901meta-data stream have no event header nor event context. Each event only
902contains a "sequence" payload, which is a sequence of bits using the
903"trace.packet.header.content_size" field as a placeholder for its length
904(the packet header size should be substracted). The formatting of this
905sequence of bits is a plain-text representation of the TSDL description.
906Each meta-data packet start with a special packet header, specific to
907the meta-data stream, which contains, exactly:
908
909struct metadata_packet_header {
910 uint32_t magic; /* 0x75D11D57 */
911 uint8_t uuid[16]; /* Unique Universal Identifier */
912 uint32_t checksum; /* 0 if unused */
913 uint32_t content_size; /* in bits */
914 uint32_t packet_size; /* in bits */
915 uint8_t compression_scheme; /* 0 if unused */
916 uint8_t encryption_scheme; /* 0 if unused */
917 uint8_t checksum_scheme; /* 0 if unused */
918};
919
920The packet-based meta-data can be converted to a text-only meta-data by
921concatenating all the strings in contains.
922
923In the textual representation of the meta-data, the text contained
924within "/*" and "*/", as well as within "//" and end of line, are
925treated as comments. Boolean values can be represented as true, TRUE,
926or 1 for true, and false, FALSE, or 0 for false. Within the string-based
927meta-data description, the trace UUID is represented as a string of
928hexadecimal digits and dashes "-". In the event packet header, the trace
929UUID is represented as an array of bytes.
930
931
9327.2 Declaration vs Definition
933
934A declaration associates a layout to a type, without specifying where
935this type is located in the event structure hierarchy (see Section 6).
936This therefore includes typedef, typealias, as well as all type
937specifiers. In certain circumstances (typedef, structure field and
938variant field), a declaration is followed by a declarator, which specify
939the newly defined type name (for typedef), or the field name (for
940declarations located within structure and variants). Array and sequence,
941declared with square brackets ("[" "]"), are part of the declarator,
942similarly to C99. The enumeration base type is specified by
943": enum_base", which is part of the type specifier. The variant tag
944name, specified between "<" ">", is also part of the type specifier.
945
946A definition associates a type to a location in the event structure
947hierarchy (see Section 6). This association is denoted by ":=", as shown
948in Section 7.3.
949
950
9517.3 TSDL Scopes
952
953TSDL uses two different types of scoping: a lexical scope is used for
954declarations and type definitions, and a dynamic scope is used for
955variants references to tag fields and for sequence references to length
956fields.
957
9587.3.1 Lexical Scope
959
960Each of "trace", "stream", "event", "struct" and "variant" have their own
961nestable declaration scope, within which types can be declared using "typedef"
962and "typealias". A root declaration scope also contains all declarations
963located outside of any of the aforementioned declarations. An inner
964declaration scope can refer to type declared within its container
965lexical scope prior to the inner declaration scope. Redefinition of a
966typedef or typealias is not valid, although hiding an upper scope
967typedef or typealias is allowed within a sub-scope.
968
9697.3.2 Dynamic Scope
970
971A dynamic scope consists in the lexical scope augmented with the
972implicit event structure definition hierarchy presented at Section 6.
973The dynamic scope is used for variant tag and sequence length
974definitions. It is used at definition time to look up the location of
975the tag field associated with a variant, and to lookup up the location
976of the length field associated with a sequence.
977
978Therefore, variants (or sequences) in lower levels in the dynamic scope
979(e.g. event context) can refer to a tag (or length) field located in
980upper levels (e.g. in the event header) by specifying, in this case, the
981associated tag with <header.field_name>. This allows, for instance, the
982event context to define a variant referring to the "id" field of the
983event header as selector.
984
985The target dynamic scope must be specified explicitly when referring to
986a field outside of the local static scope. The dynamic scope prefixes
987are thus:
988
989 - Trace Packet Header: <trace.packet.header. >,
990 - Stream Packet Context: <stream.packet.context. >,
991 - Event Header: <stream.event.header. >,
992 - Stream Event Context: <stream.event.context. >,
993 - Event Context: <event.context. >,
994 - Event Payload: <event.fields. >.
995
996Multiple declarations of the same field name within a single scope is
997not valid. It is however valid to re-use the same field name in
998different scopes. There is no possible conflict, because the dynamic
999scope must be specified when a variant refers to a tag field located in
1000a different dynamic scope.
1001
1002The information available in the dynamic scopes can be thought of as the
1003current tracing context. At trace production, information about the
1004current context is saved into the specified scope field levels. At trace
1005consumption, for each event, the current trace context is therefore
1006readable by accessing the upper dynamic scopes.
1007
1008
10097.4 TSDL Examples
1010
1011The grammar representing the TSDL meta-data is presented in Appendix C.
1012TSDL Grammar. This section presents a rather lighter reading that
1013consists in examples of TSDL meta-data, with template values.
1014
1015The stream "id" can be left out if there is only one stream in the
1016trace. The event "id" field can be left out if there is only one event
1017in a stream.
1018
1019trace {
1020 major = value; /* Trace format version */
1021 minor = value;
1022 uuid = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"; /* Trace UUID */
1023 byte_order = be OR le; /* Endianness (required) */
1024 packet.header := struct {
1025 uint32_t magic;
1026 uint8_t uuid[16];
1027 uint32_t stream_id;
1028 };
1029};
1030
1031stream {
1032 id = stream_id;
1033 /* Type 1 - Few event IDs; Type 2 - Many event IDs. See section 6.1. */
1034 event.header := event_header_1 OR event_header_2;
1035 event.context := struct {
1036 ...
1037 };
1038 packet.context := struct {
1039 ...
1040 };
1041};
1042
1043event {
1044 name = event_name;
1045 id = value; /* Numeric identifier within the stream */
1046 stream_id = stream_id;
1047 context := struct {
1048 ...
1049 };
1050 fields := struct {
1051 ...
1052 };
1053};
1054
1055/* More detail on types in section 4. Types */
1056
1057/*
1058 * Named types:
1059 *
1060 * Type declarations behave similarly to the C standard.
1061 */
1062
1063typedef aliased_type_specifiers new_type_declarators;
1064
1065/* e.g.: typedef struct example new_type_name[10]; */
1066
1067/*
1068 * typealias
1069 *
1070 * The "typealias" declaration can be used to give a name (including
1071 * pointer declarator specifier) to a type. It should also be used to
1072 * map basic C types (float, int, unsigned long, ...) to a CTF type.
1073 * Typealias is a superset of "typedef": it also allows assignment of a
1074 * simple variable identifier to a type.
1075 */
1076
1077typealias type_class {
1078 ...
1079} := type_specifiers type_declarator;
1080
1081/*
1082 * e.g.:
1083 * typealias integer {
1084 * size = 32;
1085 * align = 32;
1086 * signed = false;
1087 * } := struct page *;
1088 *
1089 * typealias integer {
1090 * size = 32;
1091 * align = 32;
1092 * signed = true;
1093 * } := int;
1094 */
1095
1096struct name {
1097 ...
1098};
1099
1100variant name {
1101 ...
1102};
1103
1104enum name : integer_type {
1105 ...
1106};
1107
1108
1109/*
1110 * Unnamed types, contained within compound type fields, typedef or typealias.
1111 */
1112
1113struct {
1114 ...
1115}
1116
1117struct {
1118 ...
1119} align(value)
1120
1121variant {
1122 ...
1123}
1124
1125enum : integer_type {
1126 ...
1127}
1128
1129typedef type new_type[length];
1130
1131struct {
1132 type field_name[length];
1133}
1134
1135typedef type new_type[length_type];
1136
1137struct {
1138 type field_name[length_type];
1139}
1140
1141integer {
1142 ...
1143}
1144
1145floating_point {
1146 ...
1147}
1148
1149struct {
1150 integer_type field_name:size; /* GNU/C bitfield */
1151}
1152
1153struct {
1154 string field_name;
1155}
1156
1157
1158A. Helper macros
1159
1160The two following macros keep track of the size of a GNU/C structure without
1161padding at the end by placing HEADER_END as the last field. A one byte end field
1162is used for C90 compatibility (C99 flexible arrays could be used here). Note
1163that this does not affect the effective structure size, which should always be
1164calculated with the header_sizeof() helper.
1165
1166#define HEADER_END char end_field
1167#define header_sizeof(type) offsetof(typeof(type), end_field)
1168
1169
1170B. Stream Header Rationale
1171
1172An event stream is divided in contiguous event packets of variable size. These
1173subdivisions allow the trace analyzer to perform a fast binary search by time
1174within the stream (typically requiring to index only the event packet headers)
1175without reading the whole stream. These subdivisions have a variable size to
1176eliminate the need to transfer the event packet padding when partially filled
1177event packets must be sent when streaming a trace for live viewing/analysis.
1178An event packet can contain a certain amount of padding at the end. Dividing
1179streams into event packets is also useful for network streaming over UDP and
1180flight recorder mode tracing (a whole event packet can be swapped out of the
1181buffer atomically for reading).
1182
1183The stream header is repeated at the beginning of each event packet to allow
1184flexibility in terms of:
1185
1186 - streaming support,
1187 - allowing arbitrary buffers to be discarded without making the trace
1188 unreadable,
1189 - allow UDP packet loss handling by either dealing with missing event packet
1190 or asking for re-transmission.
1191 - transparently support flight recorder mode,
1192 - transparently support crash dump.
1193
1194
1195C. TSDL Grammar
1196
1197/*
1198 * Common Trace Format (CTF) Trace Stream Description Language (TSDL) Grammar.
1199 *
1200 * Inspired from the C99 grammar:
1201 * http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf (Annex A)
1202 * and c++1x grammar (draft)
1203 * http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3291.pdf (Annex A)
1204 *
1205 * Specialized for CTF needs by including only constant and declarations from
1206 * C99 (excluding function declarations), and by adding support for variants,
1207 * sequences and CTF-specific specifiers. Enumeration container types
1208 * semantic is inspired from c++1x enum-base.
1209 */
1210
12111) Lexical grammar
1212
12131.1) Lexical elements
1214
1215token:
1216 keyword
1217 identifier
1218 constant
1219 string-literal
1220 punctuator
1221
12221.2) Keywords
1223
1224keyword: is one of
1225
1226align
1227const
1228char
1229double
1230enum
1231event
1232floating_point
1233float
1234integer
1235int
1236long
1237short
1238signed
1239stream
1240string
1241struct
1242trace
1243typealias
1244typedef
1245unsigned
1246variant
1247void
1248_Bool
1249_Complex
1250_Imaginary
1251
1252
12531.3) Identifiers
1254
1255identifier:
1256 identifier-nondigit
1257 identifier identifier-nondigit
1258 identifier digit
1259
1260identifier-nondigit:
1261 nondigit
1262 universal-character-name
1263 any other implementation-defined characters
1264
1265nondigit:
1266 _
1267 [a-zA-Z] /* regular expression */
1268
1269digit:
1270 [0-9] /* regular expression */
1271
12721.4) Universal character names
1273
1274universal-character-name:
1275 \u hex-quad
1276 \U hex-quad hex-quad
1277
1278hex-quad:
1279 hexadecimal-digit hexadecimal-digit hexadecimal-digit hexadecimal-digit
1280
12811.5) Constants
1282
1283constant:
1284 integer-constant
1285 enumeration-constant
1286 character-constant
1287
1288integer-constant:
1289 decimal-constant integer-suffix-opt
1290 octal-constant integer-suffix-opt
1291 hexadecimal-constant integer-suffix-opt
1292
1293decimal-constant:
1294 nonzero-digit
1295 decimal-constant digit
1296
1297octal-constant:
1298 0
1299 octal-constant octal-digit
1300
1301hexadecimal-constant:
1302 hexadecimal-prefix hexadecimal-digit
1303 hexadecimal-constant hexadecimal-digit
1304
1305hexadecimal-prefix:
1306 0x
1307 0X
1308
1309nonzero-digit:
1310 [1-9]
1311
1312integer-suffix:
1313 unsigned-suffix long-suffix-opt
1314 unsigned-suffix long-long-suffix
1315 long-suffix unsigned-suffix-opt
1316 long-long-suffix unsigned-suffix-opt
1317
1318unsigned-suffix:
1319 u
1320 U
1321
1322long-suffix:
1323 l
1324 L
1325
1326long-long-suffix:
1327 ll
1328 LL
1329
1330enumeration-constant:
1331 identifier
1332 string-literal
1333
1334character-constant:
1335 ' c-char-sequence '
1336 L' c-char-sequence '
1337
1338c-char-sequence:
1339 c-char
1340 c-char-sequence c-char
1341
1342c-char:
1343 any member of source charset except single-quote ('), backslash
1344 (\), or new-line character.
1345 escape-sequence
1346
1347escape-sequence:
1348 simple-escape-sequence
1349 octal-escape-sequence
1350 hexadecimal-escape-sequence
1351 universal-character-name
1352
1353simple-escape-sequence: one of
1354 \' \" \? \\ \a \b \f \n \r \t \v
1355
1356octal-escape-sequence:
1357 \ octal-digit
1358 \ octal-digit octal-digit
1359 \ octal-digit octal-digit octal-digit
1360
1361hexadecimal-escape-sequence:
1362 \x hexadecimal-digit
1363 hexadecimal-escape-sequence hexadecimal-digit
1364
13651.6) String literals
1366
1367string-literal:
1368 " s-char-sequence-opt "
1369 L" s-char-sequence-opt "
1370
1371s-char-sequence:
1372 s-char
1373 s-char-sequence s-char
1374
1375s-char:
1376 any member of source charset except double-quote ("), backslash
1377 (\), or new-line character.
1378 escape-sequence
1379
13801.7) Punctuators
1381
1382punctuator: one of
1383 [ ] ( ) { } . -> * + - < > : ; ... = ,
1384
1385
13862) Phrase structure grammar
1387
1388primary-expression:
1389 identifier
1390 constant
1391 string-literal
1392 ( unary-expression )
1393
1394postfix-expression:
1395 primary-expression
1396 postfix-expression [ unary-expression ]
1397 postfix-expression . identifier
1398 postfix-expressoin -> identifier
1399
1400unary-expression:
1401 postfix-expression
1402 unary-operator postfix-expression
1403
1404unary-operator: one of
1405 + -
1406
1407assignment-operator:
1408 =
1409
1410type-assignment-operator:
1411 :=
1412
1413constant-expression-range:
1414 unary-expression ... unary-expression
1415
14162.2) Declarations:
1417
1418declaration:
1419 declaration-specifiers declarator-list-opt ;
1420 ctf-specifier ;
1421
1422declaration-specifiers:
1423 storage-class-specifier declaration-specifiers-opt
1424 type-specifier declaration-specifiers-opt
1425 type-qualifier declaration-specifiers-opt
1426
1427declarator-list:
1428 declarator
1429 declarator-list , declarator
1430
1431abstract-declarator-list:
1432 abstract-declarator
1433 abstract-declarator-list , abstract-declarator
1434
1435storage-class-specifier:
1436 typedef
1437
1438type-specifier:
1439 void
1440 char
1441 short
1442 int
1443 long
1444 float
1445 double
1446 signed
1447 unsigned
1448 _Bool
1449 _Complex
1450 _Imaginary
1451 struct-specifier
1452 variant-specifier
1453 enum-specifier
1454 typedef-name
1455 ctf-type-specifier
1456
1457align-attribute:
1458 align ( unary-expression )
1459
1460struct-specifier:
1461 struct identifier-opt { struct-or-variant-declaration-list-opt } align-attribute-opt
1462 struct identifier align-attribute-opt
1463
1464struct-or-variant-declaration-list:
1465 struct-or-variant-declaration
1466 struct-or-variant-declaration-list struct-or-variant-declaration
1467
1468struct-or-variant-declaration:
1469 specifier-qualifier-list struct-or-variant-declarator-list ;
1470 declaration-specifiers-opt storage-class-specifier declaration-specifiers-opt declarator-list ;
1471 typealias declaration-specifiers abstract-declarator-list type-assignment-operator declaration-specifiers abstract-declarator-list ;
1472 typealias declaration-specifiers abstract-declarator-list type-assignment-operator declarator-list ;
1473
1474specifier-qualifier-list:
1475 type-specifier specifier-qualifier-list-opt
1476 type-qualifier specifier-qualifier-list-opt
1477
1478struct-or-variant-declarator-list:
1479 struct-or-variant-declarator
1480 struct-or-variant-declarator-list , struct-or-variant-declarator
1481
1482struct-or-variant-declarator:
1483 declarator
1484 declarator-opt : unary-expression
1485
1486variant-specifier:
1487 variant identifier-opt variant-tag-opt { struct-or-variant-declaration-list }
1488 variant identifier variant-tag
1489
1490variant-tag:
1491 < identifier >
1492
1493enum-specifier:
1494 enum identifier-opt { enumerator-list }
1495 enum identifier-opt { enumerator-list , }
1496 enum identifier
1497 enum identifier-opt : declaration-specifiers { enumerator-list }
1498 enum identifier-opt : declaration-specifiers { enumerator-list , }
1499
1500enumerator-list:
1501 enumerator
1502 enumerator-list , enumerator
1503
1504enumerator:
1505 enumeration-constant
1506 enumeration-constant assignment-operator unary-expression
1507 enumeration-constant assignment-operator constant-expression-range
1508
1509type-qualifier:
1510 const
1511
1512declarator:
1513 pointer-opt direct-declarator
1514
1515direct-declarator:
1516 identifier
1517 ( declarator )
1518 direct-declarator [ unary-expression ]
1519
1520abstract-declarator:
1521 pointer-opt direct-abstract-declarator
1522
1523direct-abstract-declarator:
1524 identifier-opt
1525 ( abstract-declarator )
1526 direct-abstract-declarator [ unary-expression ]
1527 direct-abstract-declarator [ ]
1528
1529pointer:
1530 * type-qualifier-list-opt
1531 * type-qualifier-list-opt pointer
1532
1533type-qualifier-list:
1534 type-qualifier
1535 type-qualifier-list type-qualifier
1536
1537typedef-name:
1538 identifier
1539
15402.3) CTF-specific declarations
1541
1542ctf-specifier:
1543 event { ctf-assignment-expression-list-opt }
1544 stream { ctf-assignment-expression-list-opt }
1545 trace { ctf-assignment-expression-list-opt }
1546 typealias declaration-specifiers abstract-declarator-list type-assignment-operator declaration-specifiers abstract-declarator-list
1547 typealias declaration-specifiers abstract-declarator-list type-assignment-operator declarator-list
1548
1549ctf-type-specifier:
1550 floating_point { ctf-assignment-expression-list-opt }
1551 integer { ctf-assignment-expression-list-opt }
1552 string { ctf-assignment-expression-list-opt }
1553 string
1554
1555ctf-assignment-expression-list:
1556 ctf-assignment-expression ;
1557 ctf-assignment-expression-list ctf-assignment-expression ;
1558
1559ctf-assignment-expression:
1560 unary-expression assignment-operator unary-expression
1561 unary-expression type-assignment-operator type-specifier
1562 declaration-specifiers-opt storage-class-specifier declaration-specifiers-opt declarator-list
1563 typealias declaration-specifiers abstract-declarator-list type-assignment-operator declaration-specifiers abstract-declarator-list
1564 typealias declaration-specifiers abstract-declarator-list type-assignment-operator declarator-list
This page took 0.026344 seconds and 4 git commands to generate.