2 * BabelTrace - Common Trace Format (CTF)
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29 #include <babeltrace/format.h>
30 #include <babeltrace/ctf/types.h>
31 #include <babeltrace/ctf/metadata.h>
32 #include <babeltrace/babeltrace-internal.h>
33 #include <babeltrace/ctf/events-internal.h>
34 #include <babeltrace/trace-handle-internal.h>
35 #include <babeltrace/context-internal.h>
36 #include <babeltrace/compat/uuid.h>
37 #include <babeltrace/endian.h>
38 #include <babeltrace/ctf/ctf-index.h>
43 #include <sys/types.h>
51 #include "metadata/ctf-scanner.h"
52 #include "metadata/ctf-parser.h"
53 #include "metadata/ctf-ast.h"
54 #include "events-private.h"
55 #include <babeltrace/compat/memstream.h>
56 #include <babeltrace/compat/fcntl.h>
58 #define LOG2_CHAR_BIT 3
61 * Length of first attempt at mapping a packet header, in bits.
63 #define DEFAULT_HEADER_LEN (getpagesize() * CHAR_BIT)
66 * Lenght of packet to write, in bits.
68 #define WRITE_PACKET_LEN (getpagesize() * 8 * CHAR_BIT)
71 #define min(a, b) (((a) < (b)) ? (a) : (b))
74 #define NSEC_PER_SEC 1000000000LL
76 #define INDEX_PATH "./index/%s.idx"
83 int64_t opt_clock_offset
;
84 int64_t opt_clock_offset_ns
;
89 * TODO: babeltrace_ctf_console_output ensures that we only print
90 * discarded events when ctf-text plugin is used. Should be cleaned up
91 * with the plugin system redesign.
93 int babeltrace_ctf_console_output
;
96 struct bt_trace_descriptor
*ctf_open_trace(const char *path
, int flags
,
97 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
101 struct bt_trace_descriptor
*ctf_open_mmap_trace(
102 struct bt_mmap_stream_list
*mmap_list
,
103 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
107 void ctf_set_context(struct bt_trace_descriptor
*descriptor
,
108 struct bt_context
*ctx
);
110 void ctf_set_handle(struct bt_trace_descriptor
*descriptor
,
111 struct bt_trace_handle
*handle
);
114 int ctf_close_trace(struct bt_trace_descriptor
*descriptor
);
116 int ctf_timestamp_begin(struct bt_trace_descriptor
*descriptor
,
117 struct bt_trace_handle
*handle
, enum bt_clock_type type
,
120 int ctf_timestamp_end(struct bt_trace_descriptor
*descriptor
,
121 struct bt_trace_handle
*handle
, enum bt_clock_type type
,
124 int ctf_convert_index_timestamp(struct bt_trace_descriptor
*tdp
);
127 rw_dispatch read_dispatch_table
[] = {
128 [ CTF_TYPE_INTEGER
] = ctf_integer_read
,
129 [ CTF_TYPE_FLOAT
] = ctf_float_read
,
130 [ CTF_TYPE_ENUM
] = ctf_enum_read
,
131 [ CTF_TYPE_STRING
] = ctf_string_read
,
132 [ CTF_TYPE_STRUCT
] = ctf_struct_rw
,
133 [ CTF_TYPE_VARIANT
] = ctf_variant_rw
,
134 [ CTF_TYPE_ARRAY
] = ctf_array_read
,
135 [ CTF_TYPE_SEQUENCE
] = ctf_sequence_read
,
139 rw_dispatch write_dispatch_table
[] = {
140 [ CTF_TYPE_INTEGER
] = ctf_integer_write
,
141 [ CTF_TYPE_FLOAT
] = ctf_float_write
,
142 [ CTF_TYPE_ENUM
] = ctf_enum_write
,
143 [ CTF_TYPE_STRING
] = ctf_string_write
,
144 [ CTF_TYPE_STRUCT
] = ctf_struct_rw
,
145 [ CTF_TYPE_VARIANT
] = ctf_variant_rw
,
146 [ CTF_TYPE_ARRAY
] = ctf_array_write
,
147 [ CTF_TYPE_SEQUENCE
] = ctf_sequence_write
,
151 struct bt_format ctf_format
= {
152 .open_trace
= ctf_open_trace
,
153 .open_mmap_trace
= ctf_open_mmap_trace
,
154 .close_trace
= ctf_close_trace
,
155 .set_context
= ctf_set_context
,
156 .set_handle
= ctf_set_handle
,
157 .timestamp_begin
= ctf_timestamp_begin
,
158 .timestamp_end
= ctf_timestamp_end
,
159 .convert_index_timestamp
= ctf_convert_index_timestamp
,
163 int ctf_timestamp_begin(struct bt_trace_descriptor
*descriptor
,
164 struct bt_trace_handle
*handle
, enum bt_clock_type type
,
167 struct ctf_trace
*tin
;
168 int64_t begin
= LLONG_MAX
;
171 tin
= container_of(descriptor
, struct ctf_trace
, parent
);
173 if (!tin
|| !timestamp
) {
178 /* for each stream_class */
179 for (i
= 0; i
< tin
->streams
->len
; i
++) {
180 struct ctf_stream_declaration
*stream_class
;
182 stream_class
= g_ptr_array_index(tin
->streams
, i
);
185 /* for each file_stream */
186 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
187 struct ctf_stream_definition
*stream
;
188 struct ctf_file_stream
*cfs
;
189 struct ctf_stream_pos
*stream_pos
;
190 struct packet_index
*index
;
192 stream
= g_ptr_array_index(stream_class
->streams
, j
);
193 cfs
= container_of(stream
, struct ctf_file_stream
,
195 stream_pos
= &cfs
->pos
;
197 if (!stream_pos
->packet_index
) {
202 if (stream_pos
->packet_index
->len
<= 0)
205 index
= &g_array_index(stream_pos
->packet_index
,
207 stream_pos
->packet_index
->len
- 1);
208 if (type
== BT_CLOCK_REAL
) {
209 if (index
->ts_real
.timestamp_begin
< begin
)
210 begin
= index
->ts_real
.timestamp_begin
;
211 } else if (type
== BT_CLOCK_CYCLES
) {
212 if (index
->ts_cycles
.timestamp_begin
< begin
)
213 begin
= index
->ts_cycles
.timestamp_begin
;
220 if (begin
== LLONG_MAX
) {
232 int ctf_timestamp_end(struct bt_trace_descriptor
*descriptor
,
233 struct bt_trace_handle
*handle
, enum bt_clock_type type
,
236 struct ctf_trace
*tin
;
237 int64_t end
= LLONG_MIN
;
240 tin
= container_of(descriptor
, struct ctf_trace
, parent
);
242 if (!tin
|| !timestamp
) {
247 /* for each stream_class */
248 for (i
= 0; i
< tin
->streams
->len
; i
++) {
249 struct ctf_stream_declaration
*stream_class
;
251 stream_class
= g_ptr_array_index(tin
->streams
, i
);
254 /* for each file_stream */
255 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
256 struct ctf_stream_definition
*stream
;
257 struct ctf_file_stream
*cfs
;
258 struct ctf_stream_pos
*stream_pos
;
259 struct packet_index
*index
;
261 stream
= g_ptr_array_index(stream_class
->streams
, j
);
262 cfs
= container_of(stream
, struct ctf_file_stream
,
264 stream_pos
= &cfs
->pos
;
266 if (!stream_pos
->packet_index
) {
271 if (stream_pos
->packet_index
->len
<= 0)
274 index
= &g_array_index(stream_pos
->packet_index
,
276 stream_pos
->packet_index
->len
- 1);
277 if (type
== BT_CLOCK_REAL
) {
278 if (index
->ts_real
.timestamp_end
> end
)
279 end
= index
->ts_real
.timestamp_end
;
280 } else if (type
== BT_CLOCK_CYCLES
) {
281 if (index
->ts_cycles
.timestamp_end
> end
)
282 end
= index
->ts_cycles
.timestamp_end
;
289 if (end
== LLONG_MIN
) {
301 * Update stream current timestamp
304 void ctf_update_timestamp(struct ctf_stream_definition
*stream
,
305 struct definition_integer
*integer_definition
)
307 struct declaration_integer
*integer_declaration
=
308 integer_definition
->declaration
;
309 uint64_t oldval
, newval
, updateval
;
311 if (unlikely(integer_declaration
->len
== 64)) {
312 stream
->cycles_timestamp
= integer_definition
->value
._unsigned
;
313 stream
->real_timestamp
= ctf_get_real_timestamp(stream
,
314 stream
->cycles_timestamp
);
318 oldval
= stream
->cycles_timestamp
;
319 oldval
&= (1ULL << integer_declaration
->len
) - 1;
320 newval
= integer_definition
->value
._unsigned
;
321 /* Test for overflow by comparing low bits */
323 newval
+= 1ULL << integer_declaration
->len
;
324 /* updateval contains old high bits, and new low bits (sum) */
325 updateval
= stream
->cycles_timestamp
;
326 updateval
&= ~((1ULL << integer_declaration
->len
) - 1);
328 stream
->cycles_timestamp
= updateval
;
330 /* convert to real timestamp */
331 stream
->real_timestamp
= ctf_get_real_timestamp(stream
,
332 stream
->cycles_timestamp
);
336 * Print timestamp, rescaling clock frequency to nanoseconds and
337 * applying offsets as needed (unix time).
340 void ctf_print_timestamp_real(FILE *fp
,
341 struct ctf_stream_definition
*stream
,
344 int64_t ts_sec
= 0, ts_nsec
;
345 uint64_t ts_sec_abs
, ts_nsec_abs
;
350 /* Add command-line offset in ns */
351 ts_nsec
+= opt_clock_offset_ns
;
353 /* Add command-line offset */
354 ts_sec
+= opt_clock_offset
;
356 ts_sec
+= ts_nsec
/ NSEC_PER_SEC
;
357 ts_nsec
= ts_nsec
% NSEC_PER_SEC
;
358 if (ts_sec
>= 0 && ts_nsec
>= 0) {
361 ts_nsec_abs
= ts_nsec
;
362 } else if (ts_sec
> 0 && ts_nsec
< 0) {
364 ts_sec_abs
= ts_sec
- 1;
365 ts_nsec_abs
= NSEC_PER_SEC
+ ts_nsec
;
366 } else if (ts_sec
== 0 && ts_nsec
< 0) {
369 ts_nsec_abs
= -ts_nsec
;
370 } else if (ts_sec
< 0 && ts_nsec
> 0) {
372 ts_sec_abs
= -(ts_sec
+ 1);
373 ts_nsec_abs
= NSEC_PER_SEC
- ts_nsec
;
374 } else if (ts_sec
< 0 && ts_nsec
== 0) {
376 ts_sec_abs
= -ts_sec
;
377 ts_nsec_abs
= ts_nsec
;
378 } else { /* (ts_sec < 0 && ts_nsec < 0) */
380 ts_sec_abs
= -ts_sec
;
381 ts_nsec_abs
= -ts_nsec
;
384 if (!opt_clock_seconds
) {
386 time_t time_s
= (time_t) ts_sec_abs
;
389 fprintf(stderr
, "[warning] Fallback to [sec.ns] for printing negative time value. Use --clock-seconds.\n");
393 if (!opt_clock_gmt
) {
396 res
= localtime_r(&time_s
, &tm
);
398 fprintf(stderr
, "[warning] Unable to get localtime.\n");
404 res
= gmtime_r(&time_s
, &tm
);
406 fprintf(stderr
, "[warning] Unable to get gmtime.\n");
410 if (opt_clock_date
) {
414 /* Print date and time */
415 res
= strftime(timestr
, sizeof(timestr
),
418 fprintf(stderr
, "[warning] Unable to print ascii time.\n");
421 fprintf(fp
, "%s", timestr
);
423 /* Print time in HH:MM:SS.ns */
424 fprintf(fp
, "%02d:%02d:%02d.%09" PRIu64
,
425 tm
.tm_hour
, tm
.tm_min
, tm
.tm_sec
, ts_nsec_abs
);
429 fprintf(fp
, "%s%" PRId64
".%09" PRIu64
,
430 is_negative
? "-" : "", ts_sec_abs
, ts_nsec_abs
);
437 * Print timestamp, in cycles
440 void ctf_print_timestamp_cycles(FILE *fp
,
441 struct ctf_stream_definition
*stream
,
444 fprintf(fp
, "%020" PRIu64
, timestamp
);
447 void ctf_print_timestamp(FILE *fp
,
448 struct ctf_stream_definition
*stream
,
451 if (opt_clock_cycles
) {
452 ctf_print_timestamp_cycles(fp
, stream
, timestamp
);
454 ctf_print_timestamp_real(fp
, stream
, timestamp
);
459 void print_uuid(FILE *fp
, unsigned char *uuid
)
463 for (i
= 0; i
< BABELTRACE_UUID_LEN
; i
++)
464 fprintf(fp
, "%x", (unsigned int) uuid
[i
]);
468 * Discarded events can be either:
469 * - discarded after end of previous buffer due to buffer full:
470 * happened within range: [ prev_timestamp_end, timestamp_begin ]
471 * - discarded within current buffer due to either event too large or
472 * nested wrap-around:
473 * happened within range: [ timestamp_begin, timestamp_end ]
475 * Given we have discarded counters of those two types merged into the
476 * events_discarded counter, we need to use the union of those ranges:
477 * [ prev_timestamp_end, timestamp_end ]
479 * Lost packets occur if the tracer overwrote some subbuffer(s) before the
480 * consumer had time to extract them. We keep track of those gaps with the
481 * packet sequence number in each packet.
484 void ctf_print_discarded_lost(FILE *fp
, struct ctf_stream_definition
*stream
)
486 if ((!stream
->events_discarded
&& !stream
->packets_lost
) ||
487 !babeltrace_ctf_console_output
) {
491 if (stream
->events_discarded
) {
492 fprintf(fp
, "[warning] Tracer discarded %" PRIu64
" events between [",
493 stream
->events_discarded
);
494 } else if (stream
->packets_lost
) {
495 fprintf(fp
, "[warning] Tracer lost %" PRIu64
" trace packets between [",
496 stream
->packets_lost
);
498 if (opt_clock_cycles
) {
499 ctf_print_timestamp(fp
, stream
,
500 stream
->prev
.cycles
.end
);
501 fprintf(fp
, "] and [");
502 ctf_print_timestamp(fp
, stream
,
503 stream
->current
.cycles
.end
);
505 ctf_print_timestamp(fp
, stream
,
506 stream
->prev
.real
.end
);
507 fprintf(fp
, "] and [");
508 ctf_print_timestamp(fp
, stream
,
509 stream
->current
.real
.end
);
511 fprintf(fp
, "] in trace UUID ");
512 print_uuid(fp
, stream
->stream_class
->trace
->uuid
);
513 if (stream
->stream_class
->trace
->parent
.path
[0])
514 fprintf(fp
, ", at path: \"%s\"",
515 stream
->stream_class
->trace
->parent
.path
);
517 fprintf(fp
, ", within stream id %" PRIu64
, stream
->stream_id
);
519 fprintf(fp
, ", at relative path: \"%s\"", stream
->path
);
521 fprintf(fp
, "You should consider recording a new trace with larger "
522 "buffers or with fewer events enabled.\n");
527 int ctf_read_event(struct bt_stream_pos
*ppos
, struct ctf_stream_definition
*stream
)
529 struct ctf_stream_pos
*pos
=
530 container_of(ppos
, struct ctf_stream_pos
, parent
);
531 struct ctf_stream_declaration
*stream_class
= stream
->stream_class
;
532 struct ctf_event_definition
*event
;
536 /* We need to check for EOF here for empty files. */
537 if (unlikely(pos
->offset
== EOF
))
540 ctf_pos_get_event(pos
);
542 /* save the current position as a restore point */
543 pos
->last_offset
= pos
->offset
;
546 * This is the EOF check after we've advanced the position in
549 if (unlikely(pos
->offset
== EOF
))
552 /* Stream is inactive for now (live reading). */
553 if (unlikely(pos
->content_size
== 0))
557 * Packet seeked to by ctf_pos_get_event() only contains
558 * headers, no event. Consider stream as inactive (live
561 if (unlikely(pos
->data_offset
== pos
->content_size
))
564 assert(pos
->offset
< pos
->content_size
);
566 /* Read event header */
567 if (likely(stream
->stream_event_header
)) {
568 struct definition_integer
*integer_definition
;
569 struct bt_definition
*variant
;
571 ret
= generic_rw(ppos
, &stream
->stream_event_header
->p
);
574 /* lookup event id */
575 integer_definition
= bt_lookup_integer(&stream
->stream_event_header
->p
, "id", FALSE
);
576 if (integer_definition
) {
577 id
= integer_definition
->value
._unsigned
;
579 struct definition_enum
*enum_definition
;
581 enum_definition
= bt_lookup_enum(&stream
->stream_event_header
->p
, "id", FALSE
);
582 if (enum_definition
) {
583 id
= enum_definition
->integer
->value
._unsigned
;
587 variant
= bt_lookup_variant(&stream
->stream_event_header
->p
, "v");
589 integer_definition
= bt_lookup_integer(variant
, "id", FALSE
);
590 if (integer_definition
) {
591 id
= integer_definition
->value
._unsigned
;
594 stream
->event_id
= id
;
596 /* lookup timestamp */
597 stream
->has_timestamp
= 0;
598 integer_definition
= bt_lookup_integer(&stream
->stream_event_header
->p
, "timestamp", FALSE
);
599 if (integer_definition
) {
600 ctf_update_timestamp(stream
, integer_definition
);
601 stream
->has_timestamp
= 1;
604 integer_definition
= bt_lookup_integer(variant
, "timestamp", FALSE
);
605 if (integer_definition
) {
606 ctf_update_timestamp(stream
, integer_definition
);
607 stream
->has_timestamp
= 1;
613 /* Read stream-declared event context */
614 if (stream
->stream_event_context
) {
615 ret
= generic_rw(ppos
, &stream
->stream_event_context
->p
);
620 if (unlikely(id
>= stream_class
->events_by_id
->len
)) {
621 fprintf(stderr
, "[error] Event id %" PRIu64
" is outside range.\n", id
);
624 event
= g_ptr_array_index(stream
->events_by_id
, id
);
625 if (unlikely(!event
)) {
626 fprintf(stderr
, "[error] Event id %" PRIu64
" is unknown.\n", id
);
630 /* Read event-declared event context */
631 if (event
->event_context
) {
632 ret
= generic_rw(ppos
, &event
->event_context
->p
);
637 /* Read event payload */
638 if (likely(event
->event_fields
)) {
639 ret
= generic_rw(ppos
, &event
->event_fields
->p
);
644 if (pos
->last_offset
== pos
->offset
) {
645 fprintf(stderr
, "[error] Invalid 0 byte event encountered.\n");
652 fprintf(stderr
, "[error] Unexpected end of packet. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
657 int ctf_write_event(struct bt_stream_pos
*pos
, struct ctf_stream_definition
*stream
)
659 struct ctf_stream_declaration
*stream_class
= stream
->stream_class
;
660 struct ctf_event_definition
*event
;
664 id
= stream
->event_id
;
666 /* print event header */
667 if (likely(stream
->stream_event_header
)) {
668 ret
= generic_rw(pos
, &stream
->stream_event_header
->p
);
673 /* print stream-declared event context */
674 if (stream
->stream_event_context
) {
675 ret
= generic_rw(pos
, &stream
->stream_event_context
->p
);
680 if (unlikely(id
>= stream_class
->events_by_id
->len
)) {
681 fprintf(stderr
, "[error] Event id %" PRIu64
" is outside range.\n", id
);
684 event
= g_ptr_array_index(stream
->events_by_id
, id
);
685 if (unlikely(!event
)) {
686 fprintf(stderr
, "[error] Event id %" PRIu64
" is unknown.\n", id
);
690 /* print event-declared event context */
691 if (event
->event_context
) {
692 ret
= generic_rw(pos
, &event
->event_context
->p
);
697 /* Read and print event payload */
698 if (likely(event
->event_fields
)) {
699 ret
= generic_rw(pos
, &event
->event_fields
->p
);
707 fprintf(stderr
, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
712 * One side-effect of this function is to unmap pos mmap base if one is
716 int find_data_offset(struct ctf_stream_pos
*pos
,
717 struct ctf_file_stream
*file_stream
,
718 struct packet_index
*packet_index
)
720 uint64_t packet_map_len
= DEFAULT_HEADER_LEN
, tmp_map_len
;
721 struct stat filestats
;
725 pos
= &file_stream
->pos
;
727 ret
= fstat(pos
->fd
, &filestats
);
730 filesize
= filestats
.st_size
;
732 /* Deal with empty files */
738 if (filesize
- pos
->mmap_offset
< (packet_map_len
>> LOG2_CHAR_BIT
)) {
739 packet_map_len
= (filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
;
744 ret
= munmap_align(pos
->base_mma
);
746 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
750 pos
->base_mma
= NULL
;
752 /* map new base. Need mapping length from header. */
753 pos
->base_mma
= mmap_align(packet_map_len
>> LOG2_CHAR_BIT
, PROT_READ
,
754 MAP_PRIVATE
, pos
->fd
, pos
->mmap_offset
);
755 assert(pos
->base_mma
!= MAP_FAILED
);
757 pos
->content_size
= packet_map_len
;
758 pos
->packet_size
= packet_map_len
;
759 pos
->offset
= 0; /* Position of the packet header */
761 /* update trace_packet_header and stream_packet_context */
762 if (pos
->prot
== PROT_READ
&& file_stream
->parent
.trace_packet_header
) {
763 /* Read packet header */
764 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.trace_packet_header
->p
);
770 if (pos
->prot
== PROT_READ
&& file_stream
->parent
.stream_packet_context
) {
771 /* Read packet context */
772 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.stream_packet_context
->p
);
778 packet_index
->data_offset
= pos
->offset
;
781 ret
= munmap_align(pos
->base_mma
);
783 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
787 pos
->base_mma
= NULL
;
791 /* Retry with larger mapping */
793 if (packet_map_len
== ((filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
)) {
795 * Reached EOF, but still expecting header/context data.
797 fprintf(stderr
, "[error] Reached end of file, but still expecting header or context fields.\n");
800 /* Double the mapping len, and retry */
801 tmp_map_len
= packet_map_len
<< 1;
802 if (tmp_map_len
>> 1 != packet_map_len
) {
804 fprintf(stderr
, "[error] Packet mapping length overflow\n");
807 packet_map_len
= tmp_map_len
;
812 int ctf_init_pos(struct ctf_stream_pos
*pos
, struct bt_trace_descriptor
*trace
,
813 int fd
, int open_flags
)
817 pos
->packet_index
= g_array_new(FALSE
, TRUE
,
818 sizeof(struct packet_index
));
820 pos
->packet_index
= NULL
;
822 switch (open_flags
& O_ACCMODE
) {
824 pos
->prot
= PROT_READ
;
825 pos
->flags
= MAP_PRIVATE
;
826 pos
->parent
.rw_table
= read_dispatch_table
;
827 pos
->parent
.event_cb
= ctf_read_event
;
828 pos
->parent
.trace
= trace
;
831 pos
->prot
= PROT_READ
| PROT_WRITE
;
832 pos
->flags
= MAP_SHARED
;
833 pos
->parent
.rw_table
= write_dispatch_table
;
834 pos
->parent
.event_cb
= ctf_write_event
;
835 pos
->parent
.trace
= trace
;
843 int ctf_fini_pos(struct ctf_stream_pos
*pos
)
845 if ((pos
->prot
& PROT_WRITE
) && pos
->content_size_loc
)
846 *pos
->content_size_loc
= pos
->offset
;
851 ret
= munmap_align(pos
->base_mma
);
853 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
858 if (pos
->packet_index
)
859 (void) g_array_free(pos
->packet_index
, TRUE
);
863 void ctf_update_current_packet_index(struct ctf_stream_definition
*stream
,
864 struct packet_index
*prev_index
,
865 struct packet_index
*cur_index
)
867 uint64_t events_discarded_diff
;
868 uint64_t packets_lost_diff
= 0;
870 /* Update packet index time information */
872 /* Current packet begin/end */
873 stream
->current
.real
.begin
=
874 cur_index
->ts_real
.timestamp_begin
;
875 stream
->current
.cycles
.begin
=
876 cur_index
->ts_cycles
.timestamp_begin
;
877 stream
->current
.real
.end
=
878 cur_index
->ts_real
.timestamp_end
;
879 stream
->current
.cycles
.end
=
880 cur_index
->ts_cycles
.timestamp_end
;
882 /* Update packet index discarded event information */
883 events_discarded_diff
= cur_index
->events_discarded
;
885 /* Previous packet begin/end */
886 stream
->prev
.cycles
.begin
=
887 prev_index
->ts_cycles
.timestamp_begin
;
888 stream
->prev
.real
.begin
=
889 prev_index
->ts_real
.timestamp_begin
;
890 stream
->prev
.cycles
.end
=
891 prev_index
->ts_cycles
.timestamp_end
;
892 stream
->prev
.real
.end
=
893 prev_index
->ts_real
.timestamp_end
;
895 events_discarded_diff
-= prev_index
->events_discarded
;
896 /* packet_seq_num stays at 0 if not produced by the tracer */
897 if (cur_index
->packet_seq_num
) {
898 packets_lost_diff
= cur_index
->packet_seq_num
-
899 prev_index
->packet_seq_num
- 1;
902 * Deal with 32-bit wrap-around if the tracer provided a
905 if (prev_index
->events_discarded_len
== 32) {
906 events_discarded_diff
= (uint32_t) events_discarded_diff
;
910 * First packet: use current packet info as limits for
913 stream
->prev
.cycles
.begin
=
914 stream
->prev
.cycles
.end
=
915 stream
->current
.cycles
.begin
;
916 stream
->prev
.real
.begin
=
917 stream
->prev
.real
.end
=
918 stream
->current
.real
.begin
;
920 stream
->events_discarded
= events_discarded_diff
;
921 stream
->packets_lost
= packets_lost_diff
;
925 * for SEEK_CUR: go to next packet.
926 * for SEEK_SET: go to packet numer (index).
928 void ctf_packet_seek(struct bt_stream_pos
*stream_pos
, size_t index
, int whence
)
930 struct ctf_stream_pos
*pos
=
931 container_of(stream_pos
, struct ctf_stream_pos
, parent
);
932 struct ctf_file_stream
*file_stream
=
933 container_of(pos
, struct ctf_file_stream
, pos
);
935 struct packet_index
*packet_index
, *prev_index
;
939 case SEEK_SET
: /* Fall-through */
945 if ((pos
->prot
& PROT_WRITE
) && pos
->content_size_loc
)
946 *pos
->content_size_loc
= pos
->offset
;
950 ret
= munmap_align(pos
->base_mma
);
952 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
956 pos
->base_mma
= NULL
;
960 * The caller should never ask for ctf_move_pos across packets,
961 * except to get exactly at the beginning of the next packet.
963 if (pos
->prot
& PROT_WRITE
) {
966 /* The writer will add padding */
967 pos
->mmap_offset
+= pos
->packet_size
/ CHAR_BIT
;
970 assert(index
== 0); /* only seek supported for now */
976 pos
->content_size
= -1U; /* Unknown at this point */
977 pos
->packet_size
= WRITE_PACKET_LEN
;
979 ret
= bt_posix_fallocate(pos
->fd
, pos
->mmap_offset
,
980 pos
->packet_size
/ CHAR_BIT
);
981 } while (ret
== EINTR
);
989 if (pos
->offset
== EOF
) {
992 assert(pos
->cur_index
< pos
->packet_index
->len
);
993 /* The reader will expect us to skip padding */
998 if (index
>= pos
->packet_index
->len
) {
1002 pos
->cur_index
= index
;
1008 if (pos
->cur_index
>= pos
->packet_index
->len
) {
1013 packet_index
= &g_array_index(pos
->packet_index
,
1014 struct packet_index
, pos
->cur_index
);
1015 if (pos
->cur_index
> 0) {
1016 prev_index
= &g_array_index(pos
->packet_index
,
1017 struct packet_index
,
1018 pos
->cur_index
- 1);
1022 ctf_update_current_packet_index(&file_stream
->parent
,
1023 prev_index
, packet_index
);
1026 * We need to check if we are in trace read or called
1027 * from packet indexing. In this last case, the
1028 * collection is not there, so we cannot print the
1031 if ((&file_stream
->parent
)->stream_class
->trace
->parent
.collection
) {
1032 ctf_print_discarded_lost(stderr
, &file_stream
->parent
);
1035 packet_index
= &g_array_index(pos
->packet_index
,
1036 struct packet_index
,
1038 file_stream
->parent
.cycles_timestamp
= packet_index
->ts_cycles
.timestamp_begin
;
1040 file_stream
->parent
.real_timestamp
= packet_index
->ts_real
.timestamp_begin
;
1042 /* Lookup context/packet size in index */
1043 if (packet_index
->data_offset
== -1) {
1044 ret
= find_data_offset(pos
, file_stream
, packet_index
);
1049 pos
->content_size
= packet_index
->content_size
;
1050 pos
->packet_size
= packet_index
->packet_size
;
1051 pos
->mmap_offset
= packet_index
->offset
;
1052 pos
->data_offset
= packet_index
->data_offset
;
1053 if (pos
->data_offset
< packet_index
->content_size
) {
1054 pos
->offset
= 0; /* will read headers */
1055 } else if (pos
->data_offset
== packet_index
->content_size
) {
1057 pos
->offset
= packet_index
->data_offset
;
1059 goto read_next_packet
;
1065 /* map new base. Need mapping length from header. */
1066 pos
->base_mma
= mmap_align(pos
->packet_size
/ CHAR_BIT
, pos
->prot
,
1067 pos
->flags
, pos
->fd
, pos
->mmap_offset
);
1068 if (pos
->base_mma
== MAP_FAILED
) {
1069 fprintf(stderr
, "[error] mmap error %s.\n",
1074 /* update trace_packet_header and stream_packet_context */
1075 if (!(pos
->prot
& PROT_WRITE
) &&
1076 file_stream
->parent
.trace_packet_header
) {
1077 /* Read packet header */
1078 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.trace_packet_header
->p
);
1081 if (!(pos
->prot
& PROT_WRITE
) &&
1082 file_stream
->parent
.stream_packet_context
) {
1083 /* Read packet context */
1084 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.stream_packet_context
->p
);
1090 int packet_metadata(struct ctf_trace
*td
, FILE *fp
)
1096 len
= fread(&magic
, sizeof(magic
), 1, fp
);
1100 if (magic
== TSDL_MAGIC
) {
1102 td
->byte_order
= BYTE_ORDER
;
1103 CTF_TRACE_SET_FIELD(td
, byte_order
);
1104 } else if (magic
== GUINT32_SWAP_LE_BE(TSDL_MAGIC
)) {
1106 td
->byte_order
= (BYTE_ORDER
== BIG_ENDIAN
) ?
1107 LITTLE_ENDIAN
: BIG_ENDIAN
;
1108 CTF_TRACE_SET_FIELD(td
, byte_order
);
1116 * Returns 0 on success, -1 on error.
1119 int check_version(unsigned int major
, unsigned int minor
)
1134 /* eventually return an error instead of warning */
1136 fprintf(stderr
, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n",
1142 int ctf_trace_metadata_packet_read(struct ctf_trace
*td
, FILE *in
,
1145 struct metadata_packet_header header
;
1146 size_t readlen
, writelen
, toread
;
1147 char buf
[4096 + 1]; /* + 1 for debug-mode \0 */
1150 readlen
= fread(&header
, header_sizeof(header
), 1, in
);
1154 if (td
->byte_order
!= BYTE_ORDER
) {
1155 header
.magic
= GUINT32_SWAP_LE_BE(header
.magic
);
1156 header
.checksum
= GUINT32_SWAP_LE_BE(header
.checksum
);
1157 header
.content_size
= GUINT32_SWAP_LE_BE(header
.content_size
);
1158 header
.packet_size
= GUINT32_SWAP_LE_BE(header
.packet_size
);
1160 if (header
.checksum
)
1161 fprintf(stderr
, "[warning] checksum verification not supported yet.\n");
1162 if (header
.compression_scheme
) {
1163 fprintf(stderr
, "[error] compression (%u) not supported yet.\n",
1164 header
.compression_scheme
);
1167 if (header
.encryption_scheme
) {
1168 fprintf(stderr
, "[error] encryption (%u) not supported yet.\n",
1169 header
.encryption_scheme
);
1172 if (header
.checksum_scheme
) {
1173 fprintf(stderr
, "[error] checksum (%u) not supported yet.\n",
1174 header
.checksum_scheme
);
1177 if (check_version(header
.major
, header
.minor
) < 0)
1179 if (!CTF_TRACE_FIELD_IS_SET(td
, uuid
)) {
1180 memcpy(td
->uuid
, header
.uuid
, sizeof(header
.uuid
));
1181 CTF_TRACE_SET_FIELD(td
, uuid
);
1183 if (bt_uuid_compare(header
.uuid
, td
->uuid
))
1187 if ((header
.content_size
/ CHAR_BIT
) < header_sizeof(header
))
1190 toread
= (header
.content_size
/ CHAR_BIT
) - header_sizeof(header
);
1193 readlen
= fread(buf
, sizeof(char), min(sizeof(buf
) - 1, toread
), in
);
1198 if (babeltrace_debug
) {
1199 buf
[readlen
] = '\0';
1200 fprintf(stderr
, "[debug] metadata packet read: %s\n",
1204 writelen
= fwrite(buf
, sizeof(char), readlen
, out
);
1205 if (writelen
< readlen
) {
1215 ret
= 0; /* continue reading next packet */
1222 toread
= (header
.packet_size
- header
.content_size
) / CHAR_BIT
;
1223 ret
= fseek(in
, toread
, SEEK_CUR
);
1225 fprintf(stderr
, "[warning] Missing padding at end of file\n");
1232 int ctf_trace_metadata_stream_read(struct ctf_trace
*td
, FILE **fp
,
1236 size_t size
, buflen
;
1241 * Using strlen on *buf instead of size of open_memstream
1242 * because its size includes garbage at the end (after final
1243 * \0). This is the allocated size, not the actual string size.
1245 out
= babeltrace_open_memstream(buf
, &size
);
1247 perror("Metadata open_memstream");
1251 ret
= ctf_trace_metadata_packet_read(td
, in
, out
);
1260 /* close to flush the buffer */
1261 ret
= babeltrace_close_memstream(buf
, &size
, out
);
1265 perror("babeltrace_flush_memstream");
1267 closeret
= fclose(in
);
1269 perror("Error in fclose");
1275 perror("Error in fclose");
1277 /* open for reading */
1278 buflen
= strlen(*buf
);
1283 *fp
= babeltrace_fmemopen(*buf
, buflen
, "rb");
1285 perror("Metadata fmemopen");
1292 int ctf_trace_metadata_read(struct ctf_trace
*td
, FILE *metadata_fp
,
1293 struct ctf_scanner
*scanner
, int append
)
1295 struct ctf_file_stream
*metadata_stream
;
1298 int ret
= 0, closeret
;
1300 metadata_stream
= g_new0(struct ctf_file_stream
, 1);
1301 metadata_stream
->pos
.last_offset
= LAST_OFFSET_POISON
;
1305 metadata_stream
->pos
.fd
= -1;
1307 td
->metadata
= &metadata_stream
->parent
;
1308 metadata_stream
->pos
.fd
= openat(td
->dirfd
, "metadata", O_RDONLY
);
1309 if (metadata_stream
->pos
.fd
< 0) {
1310 fprintf(stderr
, "Unable to open metadata.\n");
1315 fp
= fdopen(metadata_stream
->pos
.fd
, "r");
1317 fprintf(stderr
, "[error] Unable to open metadata stream.\n");
1318 perror("Metadata stream open");
1322 /* fd now belongs to fp */
1323 metadata_stream
->pos
.fd
= -1;
1325 if (babeltrace_debug
)
1328 if (packet_metadata(td
, fp
)) {
1329 ret
= ctf_trace_metadata_stream_read(td
, &fp
, &buf
);
1333 td
->metadata_string
= buf
;
1334 td
->metadata_packetized
= 1;
1337 unsigned int major
, minor
;
1340 td
->byte_order
= BYTE_ORDER
;
1342 /* Check text-only metadata header and version */
1343 nr_items
= fscanf(fp
, "/* CTF %10u.%10u", &major
, &minor
);
1345 fprintf(stderr
, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n");
1346 if (check_version(major
, minor
) < 0) {
1354 ret
= ctf_scanner_append_ast(scanner
, fp
);
1356 fprintf(stderr
, "[error] Error creating AST\n");
1360 if (babeltrace_debug
) {
1361 ret
= ctf_visitor_print_xml(stderr
, 0, &scanner
->ast
->root
);
1363 fprintf(stderr
, "[error] Error visiting AST for XML output\n");
1368 ret
= ctf_visitor_semantic_check(stderr
, 0, &scanner
->ast
->root
);
1370 fprintf(stderr
, "[error] Error in CTF semantic validation %d\n", ret
);
1373 ret
= ctf_visitor_construct_metadata(stderr
, 0, &scanner
->ast
->root
,
1374 td
, td
->byte_order
);
1376 fprintf(stderr
, "[error] Error in CTF metadata constructor %d\n", ret
);
1381 closeret
= fclose(fp
);
1383 perror("Error on fclose");
1387 if (metadata_stream
->pos
.fd
>= 0) {
1388 closeret
= close(metadata_stream
->pos
.fd
);
1390 perror("Error on metadata stream fd close");
1395 g_free(metadata_stream
);
1400 struct ctf_event_definition
*create_event_definitions(struct ctf_trace
*td
,
1401 struct ctf_stream_definition
*stream
,
1402 struct ctf_event_declaration
*event
)
1404 struct ctf_event_definition
*stream_event
= g_new0(struct ctf_event_definition
, 1);
1406 if (event
->context_decl
) {
1407 struct bt_definition
*definition
=
1408 event
->context_decl
->p
.definition_new(&event
->context_decl
->p
,
1409 stream
->parent_def_scope
, 0, 0, "event.context");
1413 stream_event
->event_context
= container_of(definition
,
1414 struct definition_struct
, p
);
1415 stream
->parent_def_scope
= stream_event
->event_context
->p
.scope
;
1417 if (event
->fields_decl
) {
1418 struct bt_definition
*definition
=
1419 event
->fields_decl
->p
.definition_new(&event
->fields_decl
->p
,
1420 stream
->parent_def_scope
, 0, 0, "event.fields");
1424 stream_event
->event_fields
= container_of(definition
,
1425 struct definition_struct
, p
);
1426 stream
->parent_def_scope
= stream_event
->event_fields
->p
.scope
;
1428 stream_event
->stream
= stream
;
1429 return stream_event
;
1432 if (stream_event
->event_fields
)
1433 bt_definition_unref(&stream_event
->event_fields
->p
);
1434 if (stream_event
->event_context
)
1435 bt_definition_unref(&stream_event
->event_context
->p
);
1436 fprintf(stderr
, "[error] Unable to create event definition for event \"%s\".\n",
1437 g_quark_to_string(event
->name
));
1442 int copy_event_declarations_stream_class_to_stream(struct ctf_trace
*td
,
1443 struct ctf_stream_declaration
*stream_class
,
1444 struct ctf_stream_definition
*stream
)
1446 size_t def_size
, class_size
, i
;
1449 def_size
= stream
->events_by_id
->len
;
1450 class_size
= stream_class
->events_by_id
->len
;
1452 g_ptr_array_set_size(stream
->events_by_id
, class_size
);
1453 for (i
= def_size
; i
< class_size
; i
++) {
1454 struct ctf_event_declaration
*event
=
1455 g_ptr_array_index(stream_class
->events_by_id
, i
);
1456 struct ctf_event_definition
*stream_event
;
1460 stream_event
= create_event_definitions(td
, stream
, event
);
1461 if (!stream_event
) {
1465 g_ptr_array_index(stream
->events_by_id
, i
) = stream_event
;
1472 int create_stream_definitions(struct ctf_trace
*td
, struct ctf_stream_definition
*stream
)
1474 struct ctf_stream_declaration
*stream_class
;
1478 if (stream
->stream_definitions_created
)
1481 stream_class
= stream
->stream_class
;
1483 if (stream_class
->packet_context_decl
) {
1484 struct bt_definition
*definition
=
1485 stream_class
->packet_context_decl
->p
.definition_new(&stream_class
->packet_context_decl
->p
,
1486 stream
->parent_def_scope
, 0, 0, "stream.packet.context");
1491 stream
->stream_packet_context
= container_of(definition
,
1492 struct definition_struct
, p
);
1493 stream
->parent_def_scope
= stream
->stream_packet_context
->p
.scope
;
1495 if (stream_class
->event_header_decl
) {
1496 struct bt_definition
*definition
=
1497 stream_class
->event_header_decl
->p
.definition_new(&stream_class
->event_header_decl
->p
,
1498 stream
->parent_def_scope
, 0, 0, "stream.event.header");
1503 stream
->stream_event_header
=
1504 container_of(definition
, struct definition_struct
, p
);
1505 stream
->parent_def_scope
= stream
->stream_event_header
->p
.scope
;
1507 if (stream_class
->event_context_decl
) {
1508 struct bt_definition
*definition
=
1509 stream_class
->event_context_decl
->p
.definition_new(&stream_class
->event_context_decl
->p
,
1510 stream
->parent_def_scope
, 0, 0, "stream.event.context");
1515 stream
->stream_event_context
=
1516 container_of(definition
, struct definition_struct
, p
);
1517 stream
->parent_def_scope
= stream
->stream_event_context
->p
.scope
;
1519 stream
->events_by_id
= g_ptr_array_new();
1520 ret
= copy_event_declarations_stream_class_to_stream(td
,
1521 stream_class
, stream
);
1527 for (i
= 0; i
< stream
->events_by_id
->len
; i
++) {
1528 struct ctf_event_definition
*stream_event
= g_ptr_array_index(stream
->events_by_id
, i
);
1530 g_free(stream_event
);
1532 g_ptr_array_free(stream
->events_by_id
, TRUE
);
1534 if (stream
->stream_event_context
)
1535 bt_definition_unref(&stream
->stream_event_context
->p
);
1536 if (stream
->stream_event_header
)
1537 bt_definition_unref(&stream
->stream_event_header
->p
);
1538 if (stream
->stream_packet_context
)
1539 bt_definition_unref(&stream
->stream_packet_context
->p
);
1540 fprintf(stderr
, "[error] Unable to create stream (%" PRIu64
") definitions: %s\n",
1541 stream_class
->stream_id
, strerror(-ret
));
1546 int stream_assign_class(struct ctf_trace
*td
,
1547 struct ctf_file_stream
*file_stream
,
1550 struct ctf_stream_declaration
*stream
;
1553 file_stream
->parent
.stream_id
= stream_id
;
1554 if (stream_id
>= td
->streams
->len
) {
1555 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared in metadata.\n", stream_id
);
1558 stream
= g_ptr_array_index(td
->streams
, stream_id
);
1560 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared in metadata.\n", stream_id
);
1563 file_stream
->parent
.stream_class
= stream
;
1564 ret
= create_stream_definitions(td
, &file_stream
->parent
);
1571 int create_stream_one_packet_index(struct ctf_stream_pos
*pos
,
1572 struct ctf_trace
*td
,
1573 struct ctf_file_stream
*file_stream
,
1576 struct packet_index packet_index
;
1577 uint64_t stream_id
= 0;
1578 uint64_t packet_map_len
= DEFAULT_HEADER_LEN
, tmp_map_len
;
1579 int first_packet
= 0;
1584 memset(&packet_index
, 0, sizeof(packet_index
));
1585 if (!pos
->mmap_offset
) {
1589 if (filesize
- pos
->mmap_offset
< (packet_map_len
>> LOG2_CHAR_BIT
)) {
1590 packet_map_len
= (filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
;
1593 if (pos
->base_mma
) {
1594 /* unmap old base */
1595 ret
= munmap_align(pos
->base_mma
);
1597 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
1601 pos
->base_mma
= NULL
;
1603 /* map new base. Need mapping length from header. */
1604 pos
->base_mma
= mmap_align(packet_map_len
>> LOG2_CHAR_BIT
, PROT_READ
,
1605 MAP_PRIVATE
, pos
->fd
, pos
->mmap_offset
);
1606 assert(pos
->base_mma
!= MAP_FAILED
);
1608 * Use current mapping size as temporary content and packet
1611 pos
->content_size
= packet_map_len
;
1612 pos
->packet_size
= packet_map_len
;
1613 pos
->offset
= 0; /* Position of the packet header */
1615 packet_index
.offset
= pos
->mmap_offset
;
1617 /* read and check header, set stream id (and check) */
1618 if (file_stream
->parent
.trace_packet_header
) {
1619 /* Read packet header */
1620 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.trace_packet_header
->p
);
1624 fprintf(stderr
, "[error] Unable to read packet header: %s\n", strerror(-ret
));
1627 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.trace_packet_header
->declaration
, g_quark_from_static_string("magic"));
1628 if (len_index
>= 0) {
1629 struct bt_definition
*field
;
1632 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.trace_packet_header
, len_index
);
1633 magic
= bt_get_unsigned_int(field
);
1634 if (magic
!= CTF_MAGIC
) {
1635 fprintf(stderr
, "[error] Invalid magic number 0x%" PRIX64
" at packet %u (file offset %zd).\n",
1637 file_stream
->pos
.packet_index
->len
,
1638 (ssize_t
) pos
->mmap_offset
);
1644 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.trace_packet_header
->declaration
, g_quark_from_static_string("uuid"));
1645 if (len_index
>= 0) {
1646 struct definition_array
*defarray
;
1647 struct bt_definition
*field
;
1649 uint8_t uuidval
[BABELTRACE_UUID_LEN
];
1651 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.trace_packet_header
, len_index
);
1652 assert(field
->declaration
->id
== CTF_TYPE_ARRAY
);
1653 defarray
= container_of(field
, struct definition_array
, p
);
1654 assert(bt_array_len(defarray
) == BABELTRACE_UUID_LEN
);
1656 for (i
= 0; i
< BABELTRACE_UUID_LEN
; i
++) {
1657 struct bt_definition
*elem
;
1659 elem
= bt_array_index(defarray
, i
);
1660 uuidval
[i
] = bt_get_unsigned_int(elem
);
1662 ret
= bt_uuid_compare(td
->uuid
, uuidval
);
1664 fprintf(stderr
, "[error] Unique Universal Identifiers do not match.\n");
1669 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.trace_packet_header
->declaration
, g_quark_from_static_string("stream_id"));
1670 if (len_index
>= 0) {
1671 struct bt_definition
*field
;
1673 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.trace_packet_header
, len_index
);
1674 stream_id
= bt_get_unsigned_int(field
);
1678 if (!first_packet
&& file_stream
->parent
.stream_id
!= stream_id
) {
1679 fprintf(stderr
, "[error] Stream ID is changing within a stream: expecting %" PRIu64
", but packet has %" PRIu64
"\n",
1681 file_stream
->parent
.stream_id
);
1685 ret
= stream_assign_class(td
, file_stream
, stream_id
);
1690 if (file_stream
->parent
.stream_packet_context
) {
1691 /* Read packet context */
1692 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.stream_packet_context
->p
);
1696 fprintf(stderr
, "[error] Unable to read packet context: %s\n", strerror(-ret
));
1699 /* read packet size from header */
1700 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("packet_size"));
1701 if (len_index
>= 0) {
1702 struct bt_definition
*field
;
1704 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1705 packet_index
.packet_size
= bt_get_unsigned_int(field
);
1707 /* Use file size for packet size */
1708 packet_index
.packet_size
= filesize
* CHAR_BIT
;
1711 /* read content size from header */
1712 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("content_size"));
1713 if (len_index
>= 0) {
1714 struct bt_definition
*field
;
1716 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1717 packet_index
.content_size
= bt_get_unsigned_int(field
);
1719 /* Use packet size if non-zero, else file size */
1720 packet_index
.content_size
= packet_index
.packet_size
? : filesize
* CHAR_BIT
;
1723 /* read timestamp begin from header */
1724 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("timestamp_begin"));
1725 if (len_index
>= 0) {
1726 struct bt_definition
*field
;
1728 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1729 packet_index
.ts_cycles
.timestamp_begin
= bt_get_unsigned_int(field
);
1730 if (file_stream
->parent
.stream_class
->trace
->parent
.collection
) {
1731 packet_index
.ts_real
.timestamp_begin
=
1732 ctf_get_real_timestamp(
1733 &file_stream
->parent
,
1734 packet_index
.ts_cycles
.timestamp_begin
);
1738 /* read timestamp end from header */
1739 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("timestamp_end"));
1740 if (len_index
>= 0) {
1741 struct bt_definition
*field
;
1743 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1744 packet_index
.ts_cycles
.timestamp_end
= bt_get_unsigned_int(field
);
1745 if (file_stream
->parent
.stream_class
->trace
->parent
.collection
) {
1746 packet_index
.ts_real
.timestamp_end
=
1747 ctf_get_real_timestamp(
1748 &file_stream
->parent
,
1749 packet_index
.ts_cycles
.timestamp_end
);
1753 /* read events discarded from header */
1754 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("events_discarded"));
1755 if (len_index
>= 0) {
1756 struct bt_definition
*field
;
1758 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1759 packet_index
.events_discarded
= bt_get_unsigned_int(field
);
1760 packet_index
.events_discarded_len
= bt_get_int_len(field
);
1763 /* read packet_seq_num from header */
1764 len_index
= bt_struct_declaration_lookup_field_index(
1765 file_stream
->parent
.stream_packet_context
->declaration
,
1766 g_quark_from_static_string("packet_seq_num"));
1767 if (len_index
>= 0) {
1768 struct bt_definition
*field
;
1770 field
= bt_struct_definition_get_field_from_index(
1771 file_stream
->parent
.stream_packet_context
,
1773 packet_index
.packet_seq_num
= bt_get_unsigned_int(field
);
1776 /* Use file size for packet size */
1777 packet_index
.packet_size
= filesize
* CHAR_BIT
;
1778 /* Use packet size if non-zero, else file size */
1779 packet_index
.content_size
= packet_index
.packet_size
? : filesize
* CHAR_BIT
;
1782 /* Validate content size and packet size values */
1783 if (packet_index
.content_size
> packet_index
.packet_size
) {
1784 fprintf(stderr
, "[error] Content size (%" PRIu64
" bits) is larger than packet size (%" PRIu64
" bits).\n",
1785 packet_index
.content_size
, packet_index
.packet_size
);
1789 if (packet_index
.packet_size
> ((uint64_t) filesize
- packet_index
.offset
) * CHAR_BIT
) {
1790 fprintf(stderr
, "[error] Packet size (%" PRIu64
" bits) is larger than remaining file size (%" PRIu64
" bits).\n",
1791 packet_index
.packet_size
, ((uint64_t) filesize
- packet_index
.offset
) * CHAR_BIT
);
1795 if (packet_index
.content_size
< pos
->offset
) {
1796 fprintf(stderr
, "[error] Invalid CTF stream: content size is smaller than packet headers.\n");
1800 if ((packet_index
.packet_size
>> LOG2_CHAR_BIT
) == 0) {
1801 fprintf(stderr
, "[error] Invalid CTF stream: packet size needs to be at least one byte\n");
1805 /* Save position after header and context */
1806 packet_index
.data_offset
= pos
->offset
;
1808 /* add index to packet array */
1809 g_array_append_val(file_stream
->pos
.packet_index
, packet_index
);
1811 pos
->mmap_offset
+= packet_index
.packet_size
>> LOG2_CHAR_BIT
;
1815 /* Retry with larger mapping */
1817 if (packet_map_len
== ((filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
)) {
1819 * Reached EOF, but still expecting header/context data.
1821 fprintf(stderr
, "[error] Reached end of file, but still expecting header or context fields.\n");
1824 /* Double the mapping len, and retry */
1825 tmp_map_len
= packet_map_len
<< 1;
1826 if (tmp_map_len
>> 1 != packet_map_len
) {
1828 fprintf(stderr
, "[error] Packet mapping length overflow\n");
1831 packet_map_len
= tmp_map_len
;
1836 int create_stream_packet_index(struct ctf_trace
*td
,
1837 struct ctf_file_stream
*file_stream
)
1839 struct ctf_stream_pos
*pos
;
1840 struct stat filestats
;
1843 pos
= &file_stream
->pos
;
1845 ret
= fstat(pos
->fd
, &filestats
);
1849 /* Deal with empty files */
1850 if (!filestats
.st_size
) {
1851 if (file_stream
->parent
.trace_packet_header
1852 || file_stream
->parent
.stream_packet_context
) {
1854 * We expect a trace packet header and/or stream packet
1855 * context. Since a trace needs to have at least one
1856 * packet, empty files are therefore not accepted.
1858 fprintf(stderr
, "[error] Encountered an empty file, but expecting a trace packet header.\n");
1862 * Without trace packet header nor stream packet
1863 * context, a one-packet trace can indeed be empty. This
1864 * is only valid if there is only one stream class: 0.
1866 ret
= stream_assign_class(td
, file_stream
, 0);
1873 for (pos
->mmap_offset
= 0; pos
->mmap_offset
< filestats
.st_size
; ) {
1874 ret
= create_stream_one_packet_index(pos
, td
, file_stream
,
1883 int create_trace_definitions(struct ctf_trace
*td
, struct ctf_stream_definition
*stream
)
1887 if (td
->packet_header_decl
) {
1888 struct bt_definition
*definition
=
1889 td
->packet_header_decl
->p
.definition_new(&td
->packet_header_decl
->p
,
1890 stream
->parent_def_scope
, 0, 0, "trace.packet.header");
1895 stream
->trace_packet_header
=
1896 container_of(definition
, struct definition_struct
, p
);
1897 stream
->parent_def_scope
= stream
->trace_packet_header
->p
.scope
;
1903 fprintf(stderr
, "[error] Unable to create trace definitions: %s\n", strerror(-ret
));
1908 int import_stream_packet_index(struct ctf_trace
*td
,
1909 struct ctf_file_stream
*file_stream
)
1911 struct ctf_stream_pos
*pos
;
1912 struct ctf_packet_index
*ctf_index
= NULL
;
1913 struct ctf_packet_index_file_hdr index_hdr
;
1914 struct packet_index index
;
1915 uint32_t packet_index_len
, index_minor
;
1917 int first_packet
= 1;
1920 pos
= &file_stream
->pos
;
1922 len
= fread(&index_hdr
, sizeof(index_hdr
), 1, pos
->index_fp
);
1924 perror("read index file header");
1928 /* Check the index header */
1929 if (be32toh(index_hdr
.magic
) != CTF_INDEX_MAGIC
) {
1930 fprintf(stderr
, "[error] wrong index magic\n");
1934 if (be32toh(index_hdr
.index_major
) != CTF_INDEX_MAJOR
) {
1935 fprintf(stderr
, "[error] Incompatible index file %" PRIu32
1936 ".%" PRIu32
", supported %d.%d\n",
1937 be32toh(index_hdr
.index_major
),
1938 be32toh(index_hdr
.index_minor
), CTF_INDEX_MAJOR
,
1943 index_minor
= be32toh(index_hdr
.index_minor
);
1945 packet_index_len
= be32toh(index_hdr
.packet_index_len
);
1946 if (packet_index_len
== 0) {
1947 fprintf(stderr
, "[error] Packet index length cannot be 0.\n");
1952 * Allocate the index length found in header, not internal
1955 ctf_index
= g_malloc0(packet_index_len
);
1956 while (fread(ctf_index
, packet_index_len
, 1,
1957 pos
->index_fp
) == 1) {
1959 struct ctf_stream_declaration
*stream
= NULL
;
1961 memset(&index
, 0, sizeof(index
));
1962 index
.offset
= be64toh(ctf_index
->offset
);
1963 index
.packet_size
= be64toh(ctf_index
->packet_size
);
1964 index
.content_size
= be64toh(ctf_index
->content_size
);
1965 index
.ts_cycles
.timestamp_begin
= be64toh(ctf_index
->timestamp_begin
);
1966 index
.ts_cycles
.timestamp_end
= be64toh(ctf_index
->timestamp_end
);
1967 index
.events_discarded
= be64toh(ctf_index
->events_discarded
);
1968 index
.events_discarded_len
= 64;
1969 index
.data_offset
= -1;
1970 stream_id
= be64toh(ctf_index
->stream_id
);
1971 if (index_minor
>= 1) {
1972 index
.stream_instance_id
= be64toh(ctf_index
->stream_instance_id
);
1973 index
.packet_seq_num
= be64toh(ctf_index
->packet_seq_num
);
1976 if (!first_packet
) {
1977 /* add index to packet array */
1978 g_array_append_val(file_stream
->pos
.packet_index
, index
);
1982 file_stream
->parent
.stream_id
= stream_id
;
1983 if (stream_id
< td
->streams
->len
) {
1984 stream
= g_ptr_array_index(td
->streams
, stream_id
);
1987 fprintf(stderr
, "[error] Stream %" PRIu64
1988 " is not declared in metadata.\n",
1993 file_stream
->parent
.stream_class
= stream
;
1994 ret
= create_stream_definitions(td
, &file_stream
->parent
);
1998 /* add index to packet array */
1999 g_array_append_val(file_stream
->pos
.packet_index
, index
);
2002 /* Index containing only the header. */
2003 if (!file_stream
->parent
.stream_class
) {
2016 * Note: many file streams can inherit from the same stream class
2017 * description (metadata).
2020 int ctf_open_file_stream_read(struct ctf_trace
*td
, const char *path
, int flags
,
2021 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2024 int ret
, fd
, closeret
;
2025 struct ctf_file_stream
*file_stream
;
2026 struct stat statbuf
;
2029 fd
= openat(td
->dirfd
, path
, flags
);
2031 perror("File stream openat()");
2036 /* Don't try to mmap subdirectories. Skip them, return success. */
2037 ret
= fstat(fd
, &statbuf
);
2039 perror("File stream fstat()");
2042 if (S_ISDIR(statbuf
.st_mode
)) {
2043 if (strncmp(path
, "index", 5) != 0) {
2044 fprintf(stderr
, "[warning] Skipping directory '%s' "
2045 "found in trace\n", path
);
2050 if (!statbuf
.st_size
) {
2051 /** Skip empty files. */
2053 goto fd_is_empty_file
;
2056 file_stream
= g_new0(struct ctf_file_stream
, 1);
2057 file_stream
->pos
.last_offset
= LAST_OFFSET_POISON
;
2058 file_stream
->pos
.fd
= -1;
2059 file_stream
->pos
.index_fp
= NULL
;
2061 strncpy(file_stream
->parent
.path
, path
, PATH_MAX
);
2062 file_stream
->parent
.path
[PATH_MAX
- 1] = '\0';
2065 file_stream
->pos
.packet_seek
= packet_seek
;
2067 fprintf(stderr
, "[error] packet_seek function undefined.\n");
2072 ret
= ctf_init_pos(&file_stream
->pos
, &td
->parent
, fd
, flags
);
2075 ret
= create_trace_definitions(td
, &file_stream
->parent
);
2079 * For now, only a single clock per trace is supported.
2081 file_stream
->parent
.current_clock
= td
->parent
.single_clock
;
2084 * Allocate the index name for this stream and try to open it.
2086 index_name
= malloc((strlen(path
) + sizeof(INDEX_PATH
)) * sizeof(char));
2088 fprintf(stderr
, "[error] Cannot allocate index filename\n");
2092 snprintf(index_name
, strlen(path
) + sizeof(INDEX_PATH
),
2095 if (bt_faccessat(td
->dirfd
, td
->parent
.path
, index_name
, O_RDONLY
, 0) < 0) {
2096 ret
= create_stream_packet_index(td
, file_stream
);
2098 fprintf(stderr
, "[error] Stream index creation error.\n");
2102 ret
= openat(td
->dirfd
, index_name
, flags
);
2104 perror("Index file openat()");
2108 file_stream
->pos
.index_fp
= fdopen(ret
, "r");
2109 if (!file_stream
->pos
.index_fp
) {
2110 perror("fdopen() error");
2113 ret
= import_stream_packet_index(td
, file_stream
);
2118 ret
= fclose(file_stream
->pos
.index_fp
);
2120 perror("close index");
2126 /* Add stream file to stream class */
2127 g_ptr_array_add(file_stream
->parent
.stream_class
->streams
,
2128 &file_stream
->parent
);
2132 if (file_stream
->pos
.index_fp
) {
2133 ret
= fclose(file_stream
->pos
.index_fp
);
2135 perror("close index");
2138 if (file_stream
->parent
.trace_packet_header
)
2139 bt_definition_unref(&file_stream
->parent
.trace_packet_header
->p
);
2143 closeret
= ctf_fini_pos(&file_stream
->pos
);
2145 fprintf(stderr
, "Error on ctf_fini_pos\n");
2147 g_free(file_stream
);
2151 closeret
= close(fd
);
2153 perror("Error on fd close");
2160 int ctf_open_trace_read(struct ctf_trace
*td
,
2161 const char *path
, int flags
,
2162 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2163 int whence
), FILE *metadata_fp
)
2165 struct ctf_scanner
*scanner
;
2167 struct dirent
*dirent
;
2168 struct dirent
*diriter
;
2175 /* Open trace directory */
2176 td
->dir
= opendir(path
);
2178 fprintf(stderr
, "[error] Unable to open trace directory \"%s\".\n", path
);
2183 td
->dirfd
= open(path
, 0);
2184 if (td
->dirfd
< 0) {
2185 fprintf(stderr
, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path
);
2186 perror("Trace directory open");
2190 strncpy(td
->parent
.path
, path
, sizeof(td
->parent
.path
));
2191 td
->parent
.path
[sizeof(td
->parent
.path
) - 1] = '\0';
2194 * Keep the metadata file separate.
2195 * Keep scanner object local to the open. We don't support
2196 * incremental metadata append for on-disk traces.
2198 scanner
= ctf_scanner_alloc();
2200 fprintf(stderr
, "[error] Error allocating scanner\n");
2202 goto error_metadata
;
2204 ret
= ctf_trace_metadata_read(td
, metadata_fp
, scanner
, 0);
2205 ctf_scanner_free(scanner
);
2207 if (ret
== -ENOENT
) {
2208 fprintf(stderr
, "[warning] Empty metadata.\n");
2210 fprintf(stderr
, "[warning] Unable to open trace metadata for path \"%s\".\n", path
);
2211 goto error_metadata
;
2215 * Open each stream: for each file, try to open, check magic
2216 * number, and get the stream ID to add to the right location in
2220 pc_name_max
= fpathconf(td
->dirfd
, _PC_NAME_MAX
);
2221 if (pc_name_max
< 0) {
2222 perror("Error on fpathconf");
2223 fprintf(stderr
, "[error] Failed to get _PC_NAME_MAX for path \"%s\".\n", path
);
2225 goto error_metadata
;
2228 dirent_len
= offsetof(struct dirent
, d_name
) + pc_name_max
+ 1;
2230 dirent
= malloc(dirent_len
);
2233 ret
= readdir_r(td
->dir
, dirent
, &diriter
);
2235 fprintf(stderr
, "[error] Readdir error.\n");
2240 /* Ignore hidden files, ., .. and metadata. */
2241 if (!strncmp(diriter
->d_name
, ".", 1)
2242 || !strcmp(diriter
->d_name
, "..")
2243 || !strcmp(diriter
->d_name
, "metadata"))
2246 /* Ignore index files : *.idx */
2247 ext
= strrchr(diriter
->d_name
, '.');
2248 if (ext
&& (!strcmp(ext
, ".idx"))) {
2252 ret
= ctf_open_file_stream_read(td
, diriter
->d_name
,
2253 flags
, packet_seek
);
2255 fprintf(stderr
, "[error] Open file stream error.\n");
2266 closeret
= close(td
->dirfd
);
2268 perror("Error on fd close");
2271 closeret
= closedir(td
->dir
);
2273 perror("Error on closedir");
2280 * ctf_open_trace: Open a CTF trace and index it.
2281 * Note that the user must seek the trace after the open (using the iterator)
2282 * since the index creation read it entirely.
2285 struct bt_trace_descriptor
*ctf_open_trace(const char *path
, int flags
,
2286 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2287 int whence
), FILE *metadata_fp
)
2289 struct ctf_trace
*td
;
2293 * If packet_seek is NULL, we provide our default version.
2296 packet_seek
= ctf_packet_seek
;
2298 td
= g_new0(struct ctf_trace
, 1);
2300 switch (flags
& O_ACCMODE
) {
2303 fprintf(stderr
, "[error] Path missing for input CTF trace.\n");
2306 ret
= ctf_open_trace_read(td
, path
, flags
, packet_seek
, metadata_fp
);
2311 fprintf(stderr
, "[error] Opening CTF traces for output is not supported yet.\n");
2314 fprintf(stderr
, "[error] Incorrect open flags.\n");
2325 void ctf_init_mmap_pos(struct ctf_stream_pos
*pos
,
2326 struct bt_mmap_stream
*mmap_info
)
2328 pos
->mmap_offset
= 0;
2329 pos
->packet_size
= 0;
2330 pos
->content_size
= 0;
2331 pos
->content_size_loc
= NULL
;
2332 pos
->fd
= mmap_info
->fd
;
2333 pos
->base_mma
= NULL
;
2337 pos
->prot
= PROT_READ
;
2338 pos
->flags
= MAP_PRIVATE
;
2339 pos
->parent
.rw_table
= read_dispatch_table
;
2340 pos
->parent
.event_cb
= ctf_read_event
;
2341 pos
->priv
= mmap_info
->priv
;
2342 pos
->packet_index
= g_array_new(FALSE
, TRUE
,
2343 sizeof(struct packet_index
));
2347 int prepare_mmap_stream_definition(struct ctf_trace
*td
,
2348 struct ctf_file_stream
*file_stream
,
2349 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2352 struct ctf_stream_declaration
*stream
;
2356 /* Ask for the first packet to get the stream_id. */
2357 packet_seek(&file_stream
->pos
.parent
, 0, SEEK_SET
);
2358 stream_id
= file_stream
->parent
.stream_id
;
2359 if (stream_id
>= td
->streams
->len
) {
2360 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared "
2361 "in metadata.\n", stream_id
);
2365 stream
= g_ptr_array_index(td
->streams
, stream_id
);
2367 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared "
2368 "in metadata.\n", stream_id
);
2372 file_stream
->parent
.stream_class
= stream
;
2373 ret
= create_stream_definitions(td
, &file_stream
->parent
);
2379 int ctf_open_mmap_stream_read(struct ctf_trace
*td
,
2380 struct bt_mmap_stream
*mmap_info
,
2381 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2385 struct ctf_file_stream
*file_stream
;
2387 file_stream
= g_new0(struct ctf_file_stream
, 1);
2388 file_stream
->parent
.stream_id
= -1ULL;
2389 file_stream
->pos
.last_offset
= LAST_OFFSET_POISON
;
2390 ctf_init_mmap_pos(&file_stream
->pos
, mmap_info
);
2392 file_stream
->pos
.packet_seek
= packet_seek
;
2394 ret
= create_trace_definitions(td
, &file_stream
->parent
);
2399 ret
= prepare_mmap_stream_definition(td
, file_stream
, packet_seek
);
2404 * For now, only a single clock per trace is supported.
2406 file_stream
->parent
.current_clock
= td
->parent
.single_clock
;
2408 /* Add stream file to stream class */
2409 g_ptr_array_add(file_stream
->parent
.stream_class
->streams
,
2410 &file_stream
->parent
);
2414 if (file_stream
->parent
.trace_packet_header
)
2415 bt_definition_unref(&file_stream
->parent
.trace_packet_header
->p
);
2417 g_free(file_stream
);
2422 int ctf_open_mmap_trace_read(struct ctf_trace
*td
,
2423 struct bt_mmap_stream_list
*mmap_list
,
2424 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2429 struct bt_mmap_stream
*mmap_info
;
2431 td
->scanner
= ctf_scanner_alloc();
2433 fprintf(stderr
, "[error] Error allocating scanner\n");
2437 ret
= ctf_trace_metadata_read(td
, metadata_fp
, td
->scanner
, 0);
2439 if (ret
== -ENOENT
) {
2440 fprintf(stderr
, "[warning] Empty metadata.\n");
2446 * for each stream, try to open, check magic number, and get the
2447 * stream ID to add to the right location in the stream array.
2449 bt_list_for_each_entry(mmap_info
, &mmap_list
->head
, list
) {
2450 ret
= ctf_open_mmap_stream_read(td
, mmap_info
, packet_seek
);
2452 fprintf(stderr
, "[error] Open file mmap stream error.\n");
2459 ctf_scanner_free(td
->scanner
);
2464 struct bt_trace_descriptor
*ctf_open_mmap_trace(
2465 struct bt_mmap_stream_list
*mmap_list
,
2466 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2470 struct ctf_trace
*td
;
2474 fprintf(stderr
, "[error] No metadata file pointer associated, "
2475 "required for mmap parsing\n");
2479 fprintf(stderr
, "[error] packet_seek function undefined.\n");
2482 td
= g_new0(struct ctf_trace
, 1);
2484 ret
= ctf_open_mmap_trace_read(td
, mmap_list
, packet_seek
, metadata_fp
);
2496 int ctf_append_trace_metadata(struct bt_trace_descriptor
*tdp
,
2499 struct ctf_trace
*td
= container_of(tdp
, struct ctf_trace
, parent
);
2505 ret
= ctf_trace_metadata_read(td
, metadata_fp
, td
->scanner
, 1);
2508 /* for each stream_class */
2509 for (i
= 0; i
< td
->streams
->len
; i
++) {
2510 struct ctf_stream_declaration
*stream_class
;
2512 stream_class
= g_ptr_array_index(td
->streams
, i
);
2515 /* for each stream */
2516 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
2517 struct ctf_stream_definition
*stream
;
2519 stream
= g_ptr_array_index(stream_class
->streams
, j
);
2522 ret
= copy_event_declarations_stream_class_to_stream(td
,
2523 stream_class
, stream
);
2532 int ctf_convert_index_timestamp(struct bt_trace_descriptor
*tdp
)
2535 struct ctf_trace
*td
= container_of(tdp
, struct ctf_trace
, parent
);
2537 /* for each stream_class */
2538 for (i
= 0; i
< td
->streams
->len
; i
++) {
2539 struct ctf_stream_declaration
*stream_class
;
2541 stream_class
= g_ptr_array_index(td
->streams
, i
);
2544 /* for each file_stream */
2545 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
2546 struct ctf_stream_definition
*stream
;
2547 struct ctf_stream_pos
*stream_pos
;
2548 struct ctf_file_stream
*cfs
;
2550 stream
= g_ptr_array_index(stream_class
->streams
, j
);
2553 cfs
= container_of(stream
, struct ctf_file_stream
,
2555 stream_pos
= &cfs
->pos
;
2556 if (!stream_pos
->packet_index
)
2559 for (k
= 0; k
< stream_pos
->packet_index
->len
; k
++) {
2560 struct packet_index
*index
;
2562 index
= &g_array_index(stream_pos
->packet_index
,
2563 struct packet_index
, k
);
2564 index
->ts_real
.timestamp_begin
=
2565 ctf_get_real_timestamp(stream
,
2566 index
->ts_cycles
.timestamp_begin
);
2567 index
->ts_real
.timestamp_end
=
2568 ctf_get_real_timestamp(stream
,
2569 index
->ts_cycles
.timestamp_end
);
2577 int ctf_close_file_stream(struct ctf_file_stream
*file_stream
)
2581 ret
= ctf_fini_pos(&file_stream
->pos
);
2583 fprintf(stderr
, "Error on ctf_fini_pos\n");
2586 if (file_stream
->pos
.fd
>= 0) {
2587 ret
= close(file_stream
->pos
.fd
);
2589 perror("Error closing file fd");
2597 int ctf_close_trace(struct bt_trace_descriptor
*tdp
)
2599 struct ctf_trace
*td
= container_of(tdp
, struct ctf_trace
, parent
);
2605 for (i
= 0; i
< td
->streams
->len
; i
++) {
2606 struct ctf_stream_declaration
*stream
;
2609 stream
= g_ptr_array_index(td
->streams
, i
);
2612 for (j
= 0; j
< stream
->streams
->len
; j
++) {
2613 struct ctf_file_stream
*file_stream
;
2614 file_stream
= container_of(g_ptr_array_index(stream
->streams
, j
),
2615 struct ctf_file_stream
, parent
);
2616 ret
= ctf_close_file_stream(file_stream
);
2622 ctf_destroy_metadata(td
);
2623 ctf_scanner_free(td
->scanner
);
2624 if (td
->dirfd
>= 0) {
2625 ret
= close(td
->dirfd
);
2627 perror("Error closing dirfd");
2632 ret
= closedir(td
->dir
);
2634 perror("Error closedir");
2638 free(td
->metadata_string
);
2644 void ctf_set_context(struct bt_trace_descriptor
*descriptor
,
2645 struct bt_context
*ctx
)
2647 struct ctf_trace
*td
= container_of(descriptor
, struct ctf_trace
,
2650 td
->parent
.ctx
= ctx
;
2654 void ctf_set_handle(struct bt_trace_descriptor
*descriptor
,
2655 struct bt_trace_handle
*handle
)
2657 struct ctf_trace
*td
= container_of(descriptor
, struct ctf_trace
,
2660 td
->parent
.handle
= handle
;
2664 void __attribute__((constructor
)) ctf_init(void)
2668 ctf_format
.name
= g_quark_from_static_string("ctf");
2669 ret
= bt_register_format(&ctf_format
);
2674 void __attribute__((destructor
)) ctf_exit(void)
2676 bt_unregister_format(&ctf_format
);