Add grammar
[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.
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
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
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.
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
34 an event stream.
35 e.g. event: irq_entry.
36 - An event (or event record) relates to a specific instance of an event
37 class.
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.
41
42
432. High-level representation of a trace
44
45A trace is divided into multiple event streams. Each event stream contains a
46subset of the trace event types.
47
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.
53
54A metadata event stream contains information on trace event types. It describes:
55
56- Trace version.
57- Types available.
58- Per-stream event header description.
59- Per-stream event header selection.
60- Per-stream event context fields.
61- Per-event
62 - Event type to stream mapping.
63 - Event type to name mapping.
64 - Event type to ID mapping.
65 - Event fields description.
66
67
683. Event stream
69
70An event stream is divided in contiguous event packets of variable size. These
71subdivisions have a variable size. An event packet can contain a certain amount
72of padding at the end. The rationale for the event stream design choices is
73explained in Appendix B. Stream Header Rationale.
74
75An event stream is divided in contiguous event packets of variable size. These
76subdivisions have a variable size. An event packet can contain a certain amount
77of padding at the end. The stream header is repeated at the beginning of each
78event packet.
79
80The event stream header will therefore be referred to as the "event packet
81header" throughout the rest of this document.
82
83
844. Types
85
864.1 Basic types
87
88A basic type is a scalar type, as described in this section.
89
904.1.1 Type inheritance
91
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.
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.
103
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
107space, aligning each type on byte boundaries (8-bit). Architectures with slow
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.
111
112Metadata attribute representation of a specific alignment:
113
114 align = value; /* value in bits */
115
1164.1.3 Byte order
117
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.
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
175 integer {
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 */
180 }
181
182Example of type inheritance (creation of a uint32_t named type):
183
184typedef integer {
185 size = 32;
186 signed = false;
187 align = 32;
188} uint32_t;
189
190Definition of a named 5-bit signed bitfield:
191
192typedef integer {
193 size = 5;
194 signed = true;
195 align = 1;
196} int5_t;
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
202unit is padded and the bitfield starts at the following unit. The unit size is
203defined by the size of the type "unit_type".
204
205Metadata representation:
206
207 unit_type name:size:
208
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
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.
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
243floating_point {
244 exp_dig = value;
245 mant_dig = value;
246 byte_order = native OR network OR be OR le;
247}
248
249Example of type inheritance:
250
251typedef floating_point {
252 exp_dig = 8; /* sizeof(float) * CHAR_BIT - FLT_MANT_DIG */
253 mant_dig = 24; /* FLT_MANT_DIG */
254 byte_order = native;
255} float;
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
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
267"[ start_value ... end_value ] -> string", which map inclusive ranges of
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
271repeating the start and end values with the value = string declaration.
272
273If a numeric value is encountered between < >, it represents the integer type
274size used to hold the enumeration, in bits.
275
276enum <integer_type OR size> name {
277 string = start_value1 ... end_value1,
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
287enum <32> name {
288 ZERO,
289 ONE,
290 TWO,
291 TEN = 10,
292 ELEVEN,
293};
294
295Overlapping ranges within a single enumeration are implementation defined.
296
297A nameless enumeration can be declared as a field type or as part of a typedef:
298
299enum <integer_type> {
300 ...
301}
302
3034.2 Compound types
304
3054.2.1 Structures
306
307Structures are aligned on the largest alignment required by basic types
308contained within the structure. (This follows the ISO/C standard for structures)
309
310Metadata representation of a named structure:
311
312struct name {
313 field_type field_name;
314 field_type field_name;
315 ...
316};
317
318Example:
319
320struct example {
321 integer { /* Nameless type */
322 size = 16;
323 signed = true;
324 align = 16;
325 } first_field_name;
326 uint64_t second_field_name; /* Named type declared in the metadata */
327};
328
329The fields are placed in a sequence next to each other. They each possess a
330field name, which is a unique identifier within the structure.
331
332A nameless structure can be declared as a field type or as part of a typedef:
333
334struct {
335 ...
336}
337
3384.2.2 Variants (Discriminated/Tagged Unions)
339
340A CTF variant is a selection between different types. A CTF variant must always
341be defined within the scope of a structure or within fields contained within a
342structure (defined recursively). A "tag" enumeration field must appear in either
343the same lexical scope or an uppermost scope, prior to the variant field (in
344field declaration order). The type selection is indicated by the mapping from
345the enumeration value to the string used as variant type selector. The field to
346use as tag is specified by the "tag_field", specified between "< >" after the
347"variant" keyword for unnamed variants, and after "variant name" for named
348variants.
349
350The alignment of the variant is the alignment of the type as selected by the tag
351value for the specific instance of the variant. The alignment of the type
352containing the variant is independent of the variant alignment. The size of the
353variant is the size as selected by the tag value for the specific instance of
354the variant.
355
356A named variant declaration followed by its definition within a structure
357declaration:
358
359variant name {
360 field_type sel1;
361 field_type sel2;
362 field_type sel3;
363 ...
364};
365
366struct {
367 enum <integer_type or size> { sel1, sel2, sel3, ... } tag_field;
368 ...
369 variant name <tag_field> v;
370}
371
372An unnamed variant definition within a structure is expressed by the following
373metadata:
374
375struct {
376 enum <integer_type or size> { sel1, sel2, sel3, ... } tag_field;
377 ...
378 variant <tag_field> {
379 field_type sel1;
380 field_type sel2;
381 field_type sel3;
382 ...
383 } v;
384}
385
386Example of a named variant within a sequence that refers to a single tag field:
387
388variant example {
389 uint32_t a;
390 uint64_t b;
391 short c;
392};
393
394struct {
395 enum <uint2_t> { a, b, c } choice;
396 variant example <choice> v[unsigned int];
397}
398
399Example of an unnamed variant:
400
401struct {
402 enum <uint2_t> { a, b, c, d } choice;
403 /* Unrelated fields can be added between the variant and its tag */
404 int32_t somevalue;
405 variant <choice> {
406 uint32_t a;
407 uint64_t b;
408 short c;
409 struct {
410 unsigned int field1;
411 uint64_t field2;
412 } d;
413 } s;
414}
415
416Example of an unnamed variant within an array:
417
418struct {
419 enum <uint2_t> { a, b, c } choice;
420 variant <choice> {
421 uint32_t a;
422 uint64_t b;
423 short c;
424 } v[10];
425}
426
427Example of a variant type definition within a structure, where the defined type
428is then declared within an array of structures. This variant refers to a tag
429located in an upper lexical scope. This example clearly shows that a variant
430type definition referring to the tag "x" uses the closest preceding field from
431the lexical scope of the type definition.
432
433struct {
434 enum <uint2_t> { a, b, c, d } x;
435
436 typedef variant <x> { /*
437 * "x" refers to the preceding "x" enumeration in the
438 * lexical scope of the type definition.
439 */
440 uint32_t a;
441 uint64_t b;
442 short c;
443 } example_variant;
444
445 struct {
446 enum <int> { x, y, z } x; /* This enumeration is not used by "v". */
447 example_variant v; /*
448 * "v" uses the "enum <uint2_t> { a, b, c, d }"
449 * tag.
450 */
451 } a[10];
452}
453
4544.2.3 Arrays
455
456Arrays are fixed-length. Their length is declared in the type declaration within
457the metadata. They contain an array of "inner type" elements, which can refer to
458any type not containing the type of the array being declared (no circular
459dependency). The length is the number of elements in an array.
460
461Metadata representation of a named array:
462
463typedef elem_type name[length];
464
465A nameless array can be declared as a field type within a structure, e.g.:
466
467 uint8_t field_name[10];
468
469
4704.2.4 Sequences
471
472Sequences are dynamically-sized arrays. They start with an integer that specify
473the length of the sequence, followed by an array of "inner type" elements.
474The length is the number of elements in the sequence.
475
476Metadata representation for a named sequence:
477
478typedef elem_type name[length_type];
479
480A nameless sequence can be declared as a field type, e.g.:
481
482long field_name[int];
483
484The length type follows the integer types specifications, and the sequence
485elements follow the "array" specifications.
486
4874.2.5 Strings
488
489Strings are an array of bytes of variable size and are terminated by a '\0'
490"NULL" character. Their encoding is described in the metadata. In absence of
491encoding attribute information, the default encoding is UTF-8.
492
493Metadata representation of a named string type:
494
495typedef string {
496 encoding = UTF8 OR ASCII;
497} name;
498
499A nameless string type can be declared as a field type:
500
501string field_name; /* Use default UTF8 encoding */
502
5035. Event Packet Header
504
505The event packet header consists of two part: one is mandatory and have a fixed
506layout. The second part, the "event packet context", has its layout described in
507the metadata.
508
509- Aligned on page size. Fixed size. Fields either aligned or packed (depending
510 on the architecture preference).
511 No padding at the end of the event packet header. Native architecture byte
512 ordering.
513
514Fixed layout (event packet header):
515
516- Magic number (CTF magic numbers: 0xC1FC1FC1 and its reverse endianness
517 representation: 0xC11FFCC1) It needs to have a non-symmetric bytewise
518 representation. Used to distinguish between big and little endian traces (this
519 information is determined by knowing the endianness of the architecture
520 reading the trace and comparing the magic number against its value and the
521 reverse, 0xC11FFCC1). This magic number specifies that we use the CTF metadata
522 description language described in this document. Different magic numbers
523 should be used for other metadata description languages.
524- Trace UUID, used to ensure the event packet match the metadata used.
525 (note: we cannot use a metadata checksum because metadata can be appended to
526 while tracing is active)
527- Stream ID, used as reference to stream description in metadata.
528
529Metadata-defined layout (event packet context):
530
531- Event packet content size (in bytes).
532- Event packet size (in bytes, includes padding).
533- Event packet content checksum (optional). Checksum excludes the event packet
534 header.
535- Per-stream event packet sequence count (to deal with UDP packet loss). The
536 number of significant sequence counter bits should also be present, so
537 wrap-arounds are deal with correctly.
538- Timestamp at the beginning and timestamp at the end of the event packet.
539 Both timestamps are written in the packet header, but sampled respectively
540 while (or before) writing the first event and while (or after) writing the
541 last event in the packet. The inclusive range between these timestamps should
542 include all event timestamps assigned to events contained within the packet.
543- Events discarded count
544 - Snapshot of a per-stream free-running counter, counting the number of
545 events discarded that were supposed to be written in the stream prior to
546 the first event in the event packet.
547 * Note: producer-consumer buffer full condition should fill the current
548 event packet with padding so we know exactly where events have been
549 discarded.
550- Lossless compression scheme used for the event packet content. Applied
551 directly to raw data. New types of compression can be added in following
552 versions of the format.
553 0: no compression scheme
554 1: bzip2
555 2: gzip
556 3: xz
557- Cypher used for the event packet content. Applied after compression.
558 0: no encryption
559 1: AES
560- Checksum scheme used for the event packet content. Applied after encryption.
561 0: no checksum
562 1: md5
563 2: sha1
564 3: crc32
565
5665.1 Event Packet Header Fixed Layout Description
567
568struct event_packet_header {
569 uint32_t magic;
570 uint8_t trace_uuid[16];
571 uint32_t stream_id;
572};
573
5745.2 Event Packet Context Description
575
576Event packet context example. These are declared within the stream declaration
577in the metadata. All these fields are optional except for "content_size" and
578"packet_size", which must be present in the context.
579
580An example event packet context type:
581
582struct event_packet_context {
583 uint64_t timestamp_begin;
584 uint64_t timestamp_end;
585 uint32_t checksum;
586 uint32_t stream_packet_count;
587 uint32_t events_discarded;
588 uint32_t cpu_id;
589 uint32_t/uint16_t content_size;
590 uint32_t/uint16_t packet_size;
591 uint8_t stream_packet_count_bits; /* Significant counter bits */
592 uint8_t compression_scheme;
593 uint8_t encryption_scheme;
594 uint8_t checksum;
595};
596
597
5986. Event Structure
599
600The overall structure of an event is:
601
6021 - Stream Packet Context (as specified by the stream metadata)
6032 - Event Header (as specifed by the stream metadata)
6043 - Stream Event Context (as specified by the stream metadata)
6054 - Event Context (as specified by the event metadata)
6065 - Event Payload (as specified by the event metadata)
607
6086.1 Lexical Scope
609
610The lexical scope of each structure (stream packet context, header, stream event
611context, event context and payload) is extended in the following way: lower
612levels (e.g. 3) can refer to fields defined in prior levels (e.g. 2 and 1). The
613field in the closest level has priority in case of field name conflict.
614
615This allows, for instance, the event context to define a variant refering to the
616"id" field of the event header as selector.
617
6186.2 Event Header
619
620Event headers can be described within the metadata. We hereby propose, as an
621example, two types of events headers. Type 1 accommodates streams with less than
62231 event IDs. Type 2 accommodates streams with 31 or more event IDs.
623
624One major factor can vary between streams: the number of event IDs assigned to
625a stream. Luckily, this information tends to stay relatively constant (modulo
626event registration while trace is being recorded), so we can specify different
627representations for streams containing few event IDs and streams containing
628many event IDs, so we end up representing the event ID and timestamp as densely
629as possible in each case.
630
631The header is extended in the rare occasions where the information cannot be
632represented in the ranges available in the standard event header. They are also
633used in the rare occasions where the data required for a field could not be
634collected: the flag corresponding to the missing field within the missing_fields
635array is then set to 1.
636
637Types uintX_t represent an X-bit unsigned integer.
638
639
6406.2.1 Type 1 - Few event IDs
641
642 - Aligned on 32-bit (or 8-bit if byte-packed, depending on the architecture
643 preference).
644 - Native architecture byte ordering.
645 - For "compact" selection
646 - Fixed size: 32 bits.
647 - For "extended" selection
648 - Size depends on the architecture and variant alignment.
649
650struct event_header_1 {
651 /*
652 * id: range: 0 - 30.
653 * id 31 is reserved to indicate an extended header.
654 */
655 enum <uint5_t> { compact = 0 ... 30, extended = 31 } id;
656 variant <id> {
657 struct {
658 uint27_t timestamp;
659 } compact;
660 struct {
661 uint32_t id; /* 32-bit event IDs */
662 uint64_t timestamp; /* 64-bit timestamps */
663 } extended;
664 } v;
665};
666
667
6686.2.2 Type 2 - Many event IDs
669
670 - Aligned on 16-bit (or 8-bit if byte-packed, depending on the architecture
671 preference).
672 - Native architecture byte ordering.
673 - For "compact" selection
674 - Size depends on the architecture and variant alignment.
675 - For "extended" selection
676 - Size depends on the architecture and variant alignment.
677
678struct event_header_2 {
679 /*
680 * id: range: 0 - 65534.
681 * id 65535 is reserved to indicate an extended header.
682 */
683 enum <uint16_t> { compact = 0 ... 65534, extended = 65535 } id;
684 variant <id> {
685 struct {
686 uint32_t timestamp;
687 } compact;
688 struct {
689 uint32_t id; /* 32-bit event IDs */
690 uint64_t timestamp; /* 64-bit timestamps */
691 } extended;
692 } v;
693};
694
695
6966.2 Event Context
697
698The event context contains information relative to the current event. The choice
699and meaning of this information is specified by the metadata "stream" and
700"event" information. The "stream" context is applied to all events within the
701stream. The "stream" context structure follows the event header. The "event"
702context is applied to specific events. Its structure follows the "stream"
703context stucture.
704
705An example of stream-level event context is to save the event payload size with
706each event, or to save the current PID with each event. These are declared
707within the stream declaration within the metadata:
708
709 stream {
710 ...
711 event {
712 ...
713 context := struct {
714 uint pid;
715 uint16_t payload_size;
716 };
717 }
718 };
719
720An example of event-specific event context is to declare a bitmap of missing
721fields, only appended after the stream event context if the extended event
722header is selected. NR_FIELDS is the number of fields within the event (a
723numeric value).
724
725 event {
726 context = struct {
727 variant <id> {
728 struct { } compact;
729 struct {
730 uint1_t missing_fields[NR_FIELDS]; /* missing event fields bitmap */
731 } extended;
732 } v;
733 };
734 ...
735 }
736
7376.3 Event Payload
738
739An event payload contains fields specific to a given event type. The fields
740belonging to an event type are described in the event-specific metadata
741within a structure type.
742
7436.3.1 Padding
744
745No padding at the end of the event payload. This differs from the ISO/C standard
746for structures, but follows the CTF standard for structures. In a trace, even
747though it makes sense to align the beginning of a structure, it really makes no
748sense to add padding at the end of the structure, because structures are usually
749not followed by a structure of the same type.
750
751This trick can be done by adding a zero-length "end" field at the end of the C
752structures, and by using the offset of this field rather than using sizeof()
753when calculating the size of a structure (see Appendix "A. Helper macros").
754
7556.3.2 Alignment
756
757The event payload is aligned on the largest alignment required by types
758contained within the payload. (This follows the ISO/C standard for structures)
759
760
7617. Metadata
762
763The meta-data is located in a stream named "metadata". It is made of "event
764packets", which each start with an event packet header. The event type within
765the metadata stream have no event header nor event context. Each event only
766contains a null-terminated "string" payload, which is a metadata description
767entry. The events are packed one next to another. Each event packet start with
768an event packet header, which contains, amongst other fields, the magic number
769and trace UUID.
770
771The metadata can be parsed by reading through the metadata strings, skipping
772newlines and null-characters. Type names are made of a single identifier, and
773can be surrounded by prefix/postfix. Text contained within "/*" and "*/", as
774well as within "//" and end of line, are treated as comments. Boolean values can
775be represented as true, TRUE, or 1 for true, and false, FALSE, or 0 for false.
776
777The grammar representing the CTF metadata is presented in
778Appendix C. CTF Metadata Grammar.
779
780trace {
781 major = value; /* Trace format version */
782 minor = value;
783 uuid = value; /* Trace UUID */
784 word_size = value;
785};
786
787stream {
788 id = stream_id;
789 /* Type 1 - Few event IDs; Type 2 - Many event IDs. See section 6.2. */
790 event.header := event_header_1 OR event_header_2;
791 event.context := struct {
792 ...
793 };
794 packet.context := struct {
795 ...
796 };
797};
798
799event {
800 name = event_name;
801 id = value; /* Numeric identifier within the stream */
802 stream = stream_id;
803 context := struct {
804 ...
805 };
806 fields := struct {
807 ...
808 };
809};
810
811/* More detail on types in section 4. Types */
812
813/*
814 * Named types:
815 *
816 * Type declarations behave similarly to the C standard.
817 */
818
819typedef aliased_type_prefix aliased_type new_type aliased_type_postfix;
820
821/* e.g.: typedef struct example new_type_name[10]; */
822
823/*
824 * typealias
825 *
826 * The "typealias" declaration can be used to give a name (including
827 * prefix/postfix) to a type.
828 */
829
830typealias type_class {
831 ...
832} : new_type_prefix new_type new_type_postfix;
833
834/*
835 * e.g.:
836 * typealias integer {
837 * size = 32;
838 * align = 32;
839 * signed = false;
840 * } : struct page *;
841 */
842
843struct name {
844 ...
845};
846
847variant name {
848 ...
849};
850
851enum <integer_type or size> name {
852 ...
853};
854
855
856/*
857 * Unnamed types, contained within compound type fields, typedef or typealias.
858 */
859
860struct {
861 ...
862}
863
864variant {
865 ...
866}
867
868enum <integer_type or size> {
869 ...
870}
871
872typedef type new_type[length];
873
874struct {
875 type field_name[length];
876}
877
878typedef type new_type[length_type];
879
880struct {
881 type field_name[length_type];
882}
883
884integer {
885 ...
886}
887
888floating_point {
889 ...
890}
891
892struct {
893 integer_type field_name:size; /* GNU/C bitfield */
894}
895
896struct {
897 string field_name;
898}
899
900
901A. Helper macros
902
903The two following macros keep track of the size of a GNU/C structure without
904padding at the end by placing HEADER_END as the last field. A one byte end field
905is used for C90 compatibility (C99 flexible arrays could be used here). Note
906that this does not affect the effective structure size, which should always be
907calculated with the header_sizeof() helper.
908
909#define HEADER_END char end_field
910#define header_sizeof(type) offsetof(typeof(type), end_field)
911
912
913B. Stream Header Rationale
914
915An event stream is divided in contiguous event packets of variable size. These
916subdivisions allow the trace analyzer to perform a fast binary search by time
917within the stream (typically requiring to index only the event packet headers)
918without reading the whole stream. These subdivisions have a variable size to
919eliminate the need to transfer the event packet padding when partially filled
920event packets must be sent when streaming a trace for live viewing/analysis.
921An event packet can contain a certain amount of padding at the end. Dividing
922streams into event packets is also useful for network streaming over UDP and
923flight recorder mode tracing (a whole event packet can be swapped out of the
924buffer atomically for reading).
925
926The stream header is repeated at the beginning of each event packet to allow
927flexibility in terms of:
928
929 - streaming support,
930 - allowing arbitrary buffers to be discarded without making the trace
931 unreadable,
932 - allow UDP packet loss handling by either dealing with missing event packet
933 or asking for re-transmission.
934 - transparently support flight recorder mode,
935 - transparently support crash dump.
936
937The event stream header will therefore be referred to as the "event packet
938header" throughout the rest of this document.
939
940C. CTF Metadata Grammar
941
942/*
943 * Common Trace Format (CTF) Metadata Grammar.
944 *
945 * Inspired from the C99 grammar:
946 * http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf (Annex A)
947 *
948 * Specialized for CTF needs by including only constant and declarations from
949 * C99 (excluding function declarations), and by adding support for variants,
950 * sequences and CTF-specific specifiers.
951 */
952
9531) Lexical grammar
954
9551.1) Lexical elements
956
957token:
958 keyword
959 identifier
960 constant
961 string-literal
962 punctuator
963
9641.2) Keywords
965
966keyword: is one of
967
968const
969char
970double
971enum
972event
973floating_point
974float
975integer
976int
977long
978short
979signed
980stream
981string
982struct
983trace
984typedef
985unsigned
986variant
987void
988_Bool
989_Complex
990_Imaginary
991
992
9931.3) Identifiers
994
995identifier:
996 identifier-nondigit
997 identifier identifier-nondigit
998 identifier digit
999
1000identifier-nondigit:
1001 nondigit
1002 universal-character-name
1003 any other implementation-defined characters
1004
1005nondigit:
1006 _
1007 [a-zA-Z] /* regular expression */
1008
1009digit:
1010 [0-9] /* regular expression */
1011
10121.4) Universal character names
1013
1014universal-character-name:
1015 \u hex-quad
1016 \U hex-quad hex-quad
1017
1018hex-quad:
1019 hexadecimal-digit hexadecimal-digit hexadecimal-digit hexadecimal-digit
1020
10211.5) Constants
1022
1023constant:
1024 integer-constant
1025 enumeration-constant
1026 character-constant
1027
1028integer-constant:
1029 decimal-constant integer-suffix-opt
1030 octal-constant integer-suffix-opt
1031 hexadecimal-constant integer-suffix-opt
1032
1033decimal-constant:
1034 nonzero-digit
1035 decimal-constant digit
1036
1037octal-constant:
1038 0
1039 octal-constant octal-digit
1040
1041hexadecimal-constant:
1042 hexadecimal-prefix hexadecimal-digit
1043 hexadecimal-constant hexadecimal-digit
1044
1045hexadecimal-prefix:
1046 0x
1047 0X
1048
1049nonzero-digit:
1050 [1-9]
1051
1052integer-suffix:
1053 unsigned-suffix long-suffix-opt
1054 unsigned-suffix long-long-suffix
1055 long-suffix unsigned-suffix-opt
1056 long-long-suffix unsigned-suffix-opt
1057
1058unsigned-suffix:
1059 u
1060 U
1061
1062long-suffix:
1063 l
1064 L
1065
1066long-long-suffix:
1067 ll
1068 LL
1069
1070digit-sequence:
1071 digit
1072 digit-sequence digit
1073
1074hexadecimal-digit-sequence:
1075 hexadecimal-digit
1076 hexadecimal-digit-sequence hexadecimal-digit
1077
1078enumeration-constant:
1079 identifier
1080 string-literal
1081
1082character-constant:
1083 ' c-char-sequence '
1084 L' c-char-sequence '
1085
1086c-char-sequence:
1087 c-char
1088 c-char-sequence c-char
1089
1090c-char:
1091 any member of source charset except single-quote ('), backslash
1092 (\), or new-line character.
1093 escape-sequence
1094
1095escape-sequence:
1096 simple-escape-sequence
1097 octal-escape-sequence
1098 hexadecimal-escape-sequence
1099 universal-character-name
1100
1101simple-escape-sequence: one of
1102 \' \" \? \\ \a \b \f \n \r \t \v
1103
1104octal-escape-sequence:
1105 \ octal-digit
1106 \ octal-digit octal-digit
1107 \ octal-digit octal-digit octal-digit
1108
1109hexadecimal-escape-sequence:
1110 \x hexadecimal-digit
1111 hexadecimal-escape-sequence hexadecimal-digit
1112
11131.6) String literals
1114
1115string-literal:
1116 " s-char-sequence-opt "
1117 L" s-char-sequence-opt "
1118
1119s-char-sequence:
1120 s-char
1121 s-char-sequence s-char
1122
1123s-char:
1124 any member of source charset except double-quote ("), backslash
1125 (\), or new-line character.
1126 escape-sequence
1127
11281.7) Punctuators
1129
1130punctuator: one of
1131 [ ] ( ) { } . -> * + - < > : ; ... = ,
1132
1133
11342) Phrase structure grammar
1135
1136primary-expression:
1137 identifier
1138 constant
1139 string-literal
1140 ( unary-expression )
1141
1142postfix-expression:
1143 primary-expression
1144 postfix-expression [ unary-expression ]
1145 postfix-expression . identifier
1146 postfix-expressoin -> identifier
1147
1148unary-expression:
1149 postfix-expression
1150 unary-operator postfix-expression
1151
1152unary-operator: one of
1153 + -
1154
1155assignment-expression:
1156 unary-expression assignment-operator unary-expression
1157
1158assignment-operator:
1159 =
1160
1161constant-expression:
1162 unary-expression
1163
1164constant-expression-range:
1165 constant-expression ... constant-expression
1166
11672.2) Declarations:
1168
1169declaration:
1170 declaration-specifiers declarator-list-opt ;
1171 ctf-specifier ;
1172
1173declaration-specifiers:
1174 storage-class-specifier declaration-specifiers-opt
1175 type-specifier declaration-specifiers-opt
1176 type-qualifier declaration-specifiers-opt
1177
1178declarator-list:
1179 declarator
1180 declarator-list , declarator
1181
1182storage-class-specifier:
1183 typedef
1184
1185type-specifier:
1186 void
1187 char
1188 short
1189 int
1190 long
1191 float
1192 double
1193 signed
1194 unsigned
1195 _Bool
1196 _Complex
1197 struct-or-variant-specifier
1198 enum-specifier
1199 typedef-name
1200 ctf-type-specifier
1201
1202struct-specifier:
1203 struct identifier-opt { struct-or-variant-declaration-list }
1204 struct identifier
1205
1206struct-or-variant-declaration-list:
1207 struct-or-variant-declaration
1208 struct-or-variant-declaration-list struct-or-variant-declaration
1209
1210struct-or-variant-declaration:
1211 specifier-qualifier-list struct-or-variant-declarator-list ;
1212
1213specifier-qualifier-list:
1214 type-specifier specifier-qualifier-list-opt
1215 type-qualifier specifier-qualifier-list-opt
1216
1217struct-or-variant-declarator-list:
1218 struct-or-variant-declarator
1219 struct-or-variant-declarator-list , struct-or-variant-declarator
1220
1221struct-or-variant-declarator:
1222 declarator
1223 declarator-opt : constant-expression
1224
1225variant-specifier:
1226 variant identifier-opt variant-tag-opt { struct-or-variant-declaration-list }
1227 variant identifier variant-tag
1228
1229variant-tag:
1230 < identifier >
1231
1232enum-specifier:
1233 enum identifier-opt { enumerator-list }
1234 enum identifier-opt { enumerator-list , }
1235 enum identifier
1236 enum identifier-opt < type-specifier > { enumerator-list }
1237 enum identifier-opt < type-specifier > { enumerator-list , }
1238 enum identifier < type-specifier >
1239 enum identifier-opt < integer-constant > { enumerator-list }
1240 enum identifier-opt < integer-constant > { enumerator-list , }
1241 enum identifier < integer-constant >
1242
1243enumerator-list:
1244 enumerator
1245 enumerator-list , enumerator
1246
1247enumerator:
1248 enumeration-constant
1249 enumeration-constant = constant-expression
1250 enumeration-constant = constant-expression-range
1251
1252type-qualifier:
1253 const
1254
1255declarator:
1256 pointer-opt direct-declarator
1257
1258direct-declarator:
1259 identifier
1260 ( declarator )
1261 direct-declarator [ type-specifier ]
1262 direct-declarator [ constant-expression ]
1263
1264pointer:
1265 type-qualifier-list-opt
1266 type-qualifier-list-opt pointer
1267
1268type-qualifier-list:
1269 type-qualifier
1270 type-qualifier-list type-qualifier
1271
1272identifier-list:
1273 identifier
1274 identifier-list , identifier
1275
1276typedef-name:
1277 identifier
1278
12792.3) CTF-specific declarations
1280
1281ctf-specifier:
1282 event { ctf-assignment-expression-list-opt }
1283 stream { ctf-assignment-expression-list-opt }
1284 trace { ctf-assignment-expression-list-opt }
1285
1286ctf-type-specifier:
1287 floating_point { ctf-assignment-expression-list-opt }
1288 integer { ctf-assignment-expression-list-opt }
1289 string { ctf-assignment-expression-list-opt }
1290
1291ctf-assignment-expression-list:
1292 ctf-assignment-expression
1293 ctf-assignment-expression-list ; ctf-assignment-expression
1294
1295ctf-assignment-expression:
1296 unary-expression assignment-operator unary-expression
1297 unary-expression type-assignment-operator type-specifier
This page took 0.025214 seconds and 4 git commands to generate.