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