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 1000000000ULL
76 #define INDEX_PATH "./index/%s.idx"
83 uint64_t opt_clock_offset
;
84 uint64_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 uint64_t ctf_timestamp_begin(struct bt_trace_descriptor
*descriptor
,
117 struct bt_trace_handle
*handle
, enum bt_clock_type type
);
119 uint64_t ctf_timestamp_end(struct bt_trace_descriptor
*descriptor
,
120 struct bt_trace_handle
*handle
, enum bt_clock_type type
);
122 int ctf_convert_index_timestamp(struct bt_trace_descriptor
*tdp
);
125 rw_dispatch read_dispatch_table
[] = {
126 [ CTF_TYPE_INTEGER
] = ctf_integer_read
,
127 [ CTF_TYPE_FLOAT
] = ctf_float_read
,
128 [ CTF_TYPE_ENUM
] = ctf_enum_read
,
129 [ CTF_TYPE_STRING
] = ctf_string_read
,
130 [ CTF_TYPE_STRUCT
] = ctf_struct_rw
,
131 [ CTF_TYPE_VARIANT
] = ctf_variant_rw
,
132 [ CTF_TYPE_ARRAY
] = ctf_array_read
,
133 [ CTF_TYPE_SEQUENCE
] = ctf_sequence_read
,
137 rw_dispatch write_dispatch_table
[] = {
138 [ CTF_TYPE_INTEGER
] = ctf_integer_write
,
139 [ CTF_TYPE_FLOAT
] = ctf_float_write
,
140 [ CTF_TYPE_ENUM
] = ctf_enum_write
,
141 [ CTF_TYPE_STRING
] = ctf_string_write
,
142 [ CTF_TYPE_STRUCT
] = ctf_struct_rw
,
143 [ CTF_TYPE_VARIANT
] = ctf_variant_rw
,
144 [ CTF_TYPE_ARRAY
] = ctf_array_write
,
145 [ CTF_TYPE_SEQUENCE
] = ctf_sequence_write
,
149 struct bt_format ctf_format
= {
150 .open_trace
= ctf_open_trace
,
151 .open_mmap_trace
= ctf_open_mmap_trace
,
152 .close_trace
= ctf_close_trace
,
153 .set_context
= ctf_set_context
,
154 .set_handle
= ctf_set_handle
,
155 .timestamp_begin
= ctf_timestamp_begin
,
156 .timestamp_end
= ctf_timestamp_end
,
157 .convert_index_timestamp
= ctf_convert_index_timestamp
,
161 uint64_t ctf_timestamp_begin(struct bt_trace_descriptor
*descriptor
,
162 struct bt_trace_handle
*handle
, enum bt_clock_type type
)
164 struct ctf_trace
*tin
;
165 uint64_t begin
= ULLONG_MAX
;
168 tin
= container_of(descriptor
, struct ctf_trace
, parent
);
173 /* for each stream_class */
174 for (i
= 0; i
< tin
->streams
->len
; i
++) {
175 struct ctf_stream_declaration
*stream_class
;
177 stream_class
= g_ptr_array_index(tin
->streams
, i
);
180 /* for each file_stream */
181 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
182 struct ctf_stream_definition
*stream
;
183 struct ctf_file_stream
*cfs
;
184 struct ctf_stream_pos
*stream_pos
;
185 struct packet_index
*index
;
187 stream
= g_ptr_array_index(stream_class
->streams
, j
);
188 cfs
= container_of(stream
, struct ctf_file_stream
,
190 stream_pos
= &cfs
->pos
;
192 if (!stream_pos
->packet_index
)
195 if (stream_pos
->packet_index
->len
<= 0)
198 index
= &g_array_index(stream_pos
->packet_index
,
200 stream_pos
->packet_index
->len
- 1);
201 if (type
== BT_CLOCK_REAL
) {
202 if (index
->ts_real
.timestamp_begin
< begin
)
203 begin
= index
->ts_real
.timestamp_begin
;
204 } else if (type
== BT_CLOCK_CYCLES
) {
205 if (index
->ts_cycles
.timestamp_begin
< begin
)
206 begin
= index
->ts_cycles
.timestamp_begin
;
220 uint64_t ctf_timestamp_end(struct bt_trace_descriptor
*descriptor
,
221 struct bt_trace_handle
*handle
, enum bt_clock_type type
)
223 struct ctf_trace
*tin
;
227 tin
= container_of(descriptor
, struct ctf_trace
, parent
);
232 /* for each stream_class */
233 for (i
= 0; i
< tin
->streams
->len
; i
++) {
234 struct ctf_stream_declaration
*stream_class
;
236 stream_class
= g_ptr_array_index(tin
->streams
, i
);
239 /* for each file_stream */
240 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
241 struct ctf_stream_definition
*stream
;
242 struct ctf_file_stream
*cfs
;
243 struct ctf_stream_pos
*stream_pos
;
244 struct packet_index
*index
;
246 stream
= g_ptr_array_index(stream_class
->streams
, j
);
247 cfs
= container_of(stream
, struct ctf_file_stream
,
249 stream_pos
= &cfs
->pos
;
251 if (!stream_pos
->packet_index
)
254 if (stream_pos
->packet_index
->len
<= 0)
257 index
= &g_array_index(stream_pos
->packet_index
,
259 stream_pos
->packet_index
->len
- 1);
260 if (type
== BT_CLOCK_REAL
) {
261 if (index
->ts_real
.timestamp_end
> end
)
262 end
= index
->ts_real
.timestamp_end
;
263 } else if (type
== BT_CLOCK_CYCLES
) {
264 if (index
->ts_cycles
.timestamp_end
> end
)
265 end
= index
->ts_cycles
.timestamp_end
;
279 * Update stream current timestamp
282 void ctf_update_timestamp(struct ctf_stream_definition
*stream
,
283 struct definition_integer
*integer_definition
)
285 struct declaration_integer
*integer_declaration
=
286 integer_definition
->declaration
;
287 uint64_t oldval
, newval
, updateval
;
289 if (unlikely(integer_declaration
->len
== 64)) {
290 stream
->cycles_timestamp
= integer_definition
->value
._unsigned
;
291 stream
->real_timestamp
= ctf_get_real_timestamp(stream
,
292 stream
->cycles_timestamp
);
296 oldval
= stream
->cycles_timestamp
;
297 oldval
&= (1ULL << integer_declaration
->len
) - 1;
298 newval
= integer_definition
->value
._unsigned
;
299 /* Test for overflow by comparing low bits */
301 newval
+= 1ULL << integer_declaration
->len
;
302 /* updateval contains old high bits, and new low bits (sum) */
303 updateval
= stream
->cycles_timestamp
;
304 updateval
&= ~((1ULL << integer_declaration
->len
) - 1);
306 stream
->cycles_timestamp
= updateval
;
308 /* convert to real timestamp */
309 stream
->real_timestamp
= ctf_get_real_timestamp(stream
,
310 stream
->cycles_timestamp
);
314 * Print timestamp, rescaling clock frequency to nanoseconds and
315 * applying offsets as needed (unix time).
318 void ctf_print_timestamp_real(FILE *fp
,
319 struct ctf_stream_definition
*stream
,
322 uint64_t ts_sec
= 0, ts_nsec
;
326 /* Add command-line offset in ns*/
327 ts_nsec
+= opt_clock_offset_ns
;
329 /* Add command-line offset */
330 ts_sec
+= opt_clock_offset
;
332 ts_sec
+= ts_nsec
/ NSEC_PER_SEC
;
333 ts_nsec
= ts_nsec
% NSEC_PER_SEC
;
335 if (!opt_clock_seconds
) {
337 time_t time_s
= (time_t) ts_sec
;
339 if (!opt_clock_gmt
) {
342 res
= localtime_r(&time_s
, &tm
);
344 fprintf(stderr
, "[warning] Unable to get localtime.\n");
350 res
= gmtime_r(&time_s
, &tm
);
352 fprintf(stderr
, "[warning] Unable to get gmtime.\n");
356 if (opt_clock_date
) {
360 /* Print date and time */
361 res
= strftime(timestr
, sizeof(timestr
),
364 fprintf(stderr
, "[warning] Unable to print ascii time.\n");
367 fprintf(fp
, "%s", timestr
);
369 /* Print time in HH:MM:SS.ns */
370 fprintf(fp
, "%02d:%02d:%02d.%09" PRIu64
,
371 tm
.tm_hour
, tm
.tm_min
, tm
.tm_sec
, ts_nsec
);
375 fprintf(fp
, "%3" PRIu64
".%09" PRIu64
,
383 * Print timestamp, in cycles
386 void ctf_print_timestamp_cycles(FILE *fp
,
387 struct ctf_stream_definition
*stream
,
390 fprintf(fp
, "%020" PRIu64
, timestamp
);
393 void ctf_print_timestamp(FILE *fp
,
394 struct ctf_stream_definition
*stream
,
397 if (opt_clock_cycles
) {
398 ctf_print_timestamp_cycles(fp
, stream
, timestamp
);
400 ctf_print_timestamp_real(fp
, stream
, timestamp
);
405 void print_uuid(FILE *fp
, unsigned char *uuid
)
409 for (i
= 0; i
< BABELTRACE_UUID_LEN
; i
++)
410 fprintf(fp
, "%x", (unsigned int) uuid
[i
]);
414 * Discarded events can be either:
415 * - discarded after end of previous buffer due to buffer full:
416 * happened within range: [ prev_timestamp_end, timestamp_begin ]
417 * - discarded within current buffer due to either event too large or
418 * nested wrap-around:
419 * happened within range: [ timestamp_begin, timestamp_end ]
421 * Given we have discarded counters of those two types merged into the
422 * events_discarded counter, we need to use the union of those ranges:
423 * [ prev_timestamp_end, timestamp_end ]
425 * Lost packets occur if the tracer overwrote some subbuffer(s) before the
426 * consumer had time to extract them. We keep track of those gaps with the
427 * packet sequence number in each packet.
430 void ctf_print_discarded_lost(FILE *fp
, struct ctf_stream_definition
*stream
)
432 if ((!stream
->events_discarded
&& !stream
->packets_lost
) ||
433 !babeltrace_ctf_console_output
) {
437 if (stream
->events_discarded
) {
438 fprintf(fp
, "[warning] Tracer discarded %" PRIu64
" events between [",
439 stream
->events_discarded
);
440 } else if (stream
->packets_lost
) {
441 fprintf(fp
, "[warning] Tracer lost %" PRIu64
" trace packets between [",
442 stream
->packets_lost
);
444 if (opt_clock_cycles
) {
445 ctf_print_timestamp(fp
, stream
,
446 stream
->prev
.cycles
.end
);
447 fprintf(fp
, "] and [");
448 ctf_print_timestamp(fp
, stream
,
449 stream
->current
.cycles
.end
);
451 ctf_print_timestamp(fp
, stream
,
452 stream
->prev
.real
.end
);
453 fprintf(fp
, "] and [");
454 ctf_print_timestamp(fp
, stream
,
455 stream
->current
.real
.end
);
457 fprintf(fp
, "] in trace UUID ");
458 print_uuid(fp
, stream
->stream_class
->trace
->uuid
);
459 if (stream
->stream_class
->trace
->parent
.path
[0])
460 fprintf(fp
, ", at path: \"%s\"",
461 stream
->stream_class
->trace
->parent
.path
);
463 fprintf(fp
, ", within stream id %" PRIu64
, stream
->stream_id
);
465 fprintf(fp
, ", at relative path: \"%s\"", stream
->path
);
467 fprintf(fp
, "You should consider recording a new trace with larger "
468 "buffers or with fewer events enabled.\n");
473 int ctf_read_event(struct bt_stream_pos
*ppos
, struct ctf_stream_definition
*stream
)
475 struct ctf_stream_pos
*pos
=
476 container_of(ppos
, struct ctf_stream_pos
, parent
);
477 struct ctf_stream_declaration
*stream_class
= stream
->stream_class
;
478 struct ctf_event_definition
*event
;
482 /* We need to check for EOF here for empty files. */
483 if (unlikely(pos
->offset
== EOF
))
486 ctf_pos_get_event(pos
);
488 /* save the current position as a restore point */
489 pos
->last_offset
= pos
->offset
;
492 * This is the EOF check after we've advanced the position in
495 if (unlikely(pos
->offset
== EOF
))
498 /* Stream is inactive for now (live reading). */
499 if (unlikely(pos
->content_size
== 0))
503 * Packet seeked to by ctf_pos_get_event() only contains
504 * headers, no event. Consider stream as inactive (live
507 if (unlikely(pos
->data_offset
== pos
->content_size
))
510 assert(pos
->offset
< pos
->content_size
);
512 /* Read event header */
513 if (likely(stream
->stream_event_header
)) {
514 struct definition_integer
*integer_definition
;
515 struct bt_definition
*variant
;
517 ret
= generic_rw(ppos
, &stream
->stream_event_header
->p
);
520 /* lookup event id */
521 integer_definition
= bt_lookup_integer(&stream
->stream_event_header
->p
, "id", FALSE
);
522 if (integer_definition
) {
523 id
= integer_definition
->value
._unsigned
;
525 struct definition_enum
*enum_definition
;
527 enum_definition
= bt_lookup_enum(&stream
->stream_event_header
->p
, "id", FALSE
);
528 if (enum_definition
) {
529 id
= enum_definition
->integer
->value
._unsigned
;
533 variant
= bt_lookup_variant(&stream
->stream_event_header
->p
, "v");
535 integer_definition
= bt_lookup_integer(variant
, "id", FALSE
);
536 if (integer_definition
) {
537 id
= integer_definition
->value
._unsigned
;
540 stream
->event_id
= id
;
542 /* lookup timestamp */
543 stream
->has_timestamp
= 0;
544 integer_definition
= bt_lookup_integer(&stream
->stream_event_header
->p
, "timestamp", FALSE
);
545 if (integer_definition
) {
546 ctf_update_timestamp(stream
, integer_definition
);
547 stream
->has_timestamp
= 1;
550 integer_definition
= bt_lookup_integer(variant
, "timestamp", FALSE
);
551 if (integer_definition
) {
552 ctf_update_timestamp(stream
, integer_definition
);
553 stream
->has_timestamp
= 1;
559 /* Read stream-declared event context */
560 if (stream
->stream_event_context
) {
561 ret
= generic_rw(ppos
, &stream
->stream_event_context
->p
);
566 if (unlikely(id
>= stream_class
->events_by_id
->len
)) {
567 fprintf(stderr
, "[error] Event id %" PRIu64
" is outside range.\n", id
);
570 event
= g_ptr_array_index(stream
->events_by_id
, id
);
571 if (unlikely(!event
)) {
572 fprintf(stderr
, "[error] Event id %" PRIu64
" is unknown.\n", id
);
576 /* Read event-declared event context */
577 if (event
->event_context
) {
578 ret
= generic_rw(ppos
, &event
->event_context
->p
);
583 /* Read event payload */
584 if (likely(event
->event_fields
)) {
585 ret
= generic_rw(ppos
, &event
->event_fields
->p
);
590 if (pos
->last_offset
== pos
->offset
) {
591 fprintf(stderr
, "[error] Invalid 0 byte event encountered.\n");
598 fprintf(stderr
, "[error] Unexpected end of packet. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
603 int ctf_write_event(struct bt_stream_pos
*pos
, struct ctf_stream_definition
*stream
)
605 struct ctf_stream_declaration
*stream_class
= stream
->stream_class
;
606 struct ctf_event_definition
*event
;
610 id
= stream
->event_id
;
612 /* print event header */
613 if (likely(stream
->stream_event_header
)) {
614 ret
= generic_rw(pos
, &stream
->stream_event_header
->p
);
619 /* print stream-declared event context */
620 if (stream
->stream_event_context
) {
621 ret
= generic_rw(pos
, &stream
->stream_event_context
->p
);
626 if (unlikely(id
>= stream_class
->events_by_id
->len
)) {
627 fprintf(stderr
, "[error] Event id %" PRIu64
" is outside range.\n", id
);
630 event
= g_ptr_array_index(stream
->events_by_id
, id
);
631 if (unlikely(!event
)) {
632 fprintf(stderr
, "[error] Event id %" PRIu64
" is unknown.\n", id
);
636 /* print event-declared event context */
637 if (event
->event_context
) {
638 ret
= generic_rw(pos
, &event
->event_context
->p
);
643 /* Read and print event payload */
644 if (likely(event
->event_fields
)) {
645 ret
= generic_rw(pos
, &event
->event_fields
->p
);
653 fprintf(stderr
, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
658 * One side-effect of this function is to unmap pos mmap base if one is
662 int find_data_offset(struct ctf_stream_pos
*pos
,
663 struct ctf_file_stream
*file_stream
,
664 struct packet_index
*packet_index
)
666 uint64_t packet_map_len
= DEFAULT_HEADER_LEN
, tmp_map_len
;
667 struct stat filestats
;
671 pos
= &file_stream
->pos
;
673 ret
= fstat(pos
->fd
, &filestats
);
676 filesize
= filestats
.st_size
;
678 /* Deal with empty files */
684 if (filesize
- pos
->mmap_offset
< (packet_map_len
>> LOG2_CHAR_BIT
)) {
685 packet_map_len
= (filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
;
690 ret
= munmap_align(pos
->base_mma
);
692 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
696 pos
->base_mma
= NULL
;
698 /* map new base. Need mapping length from header. */
699 pos
->base_mma
= mmap_align(packet_map_len
>> LOG2_CHAR_BIT
, PROT_READ
,
700 MAP_PRIVATE
, pos
->fd
, pos
->mmap_offset
);
701 assert(pos
->base_mma
!= MAP_FAILED
);
703 pos
->content_size
= packet_map_len
;
704 pos
->packet_size
= packet_map_len
;
705 pos
->offset
= 0; /* Position of the packet header */
707 /* update trace_packet_header and stream_packet_context */
708 if (pos
->prot
== PROT_READ
&& file_stream
->parent
.trace_packet_header
) {
709 /* Read packet header */
710 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.trace_packet_header
->p
);
716 if (pos
->prot
== PROT_READ
&& file_stream
->parent
.stream_packet_context
) {
717 /* Read packet context */
718 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.stream_packet_context
->p
);
724 packet_index
->data_offset
= pos
->offset
;
727 ret
= munmap_align(pos
->base_mma
);
729 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
733 pos
->base_mma
= NULL
;
737 /* Retry with larger mapping */
739 if (packet_map_len
== ((filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
)) {
741 * Reached EOF, but still expecting header/context data.
743 fprintf(stderr
, "[error] Reached end of file, but still expecting header or context fields.\n");
746 /* Double the mapping len, and retry */
747 tmp_map_len
= packet_map_len
<< 1;
748 if (tmp_map_len
>> 1 != packet_map_len
) {
750 fprintf(stderr
, "[error] Packet mapping length overflow\n");
753 packet_map_len
= tmp_map_len
;
758 int ctf_init_pos(struct ctf_stream_pos
*pos
, struct bt_trace_descriptor
*trace
,
759 int fd
, int open_flags
)
763 pos
->packet_index
= g_array_new(FALSE
, TRUE
,
764 sizeof(struct packet_index
));
766 pos
->packet_index
= NULL
;
768 switch (open_flags
& O_ACCMODE
) {
770 pos
->prot
= PROT_READ
;
771 pos
->flags
= MAP_PRIVATE
;
772 pos
->parent
.rw_table
= read_dispatch_table
;
773 pos
->parent
.event_cb
= ctf_read_event
;
774 pos
->parent
.trace
= trace
;
777 pos
->prot
= PROT_READ
| PROT_WRITE
;
778 pos
->flags
= MAP_SHARED
;
779 pos
->parent
.rw_table
= write_dispatch_table
;
780 pos
->parent
.event_cb
= ctf_write_event
;
781 pos
->parent
.trace
= trace
;
789 int ctf_fini_pos(struct ctf_stream_pos
*pos
)
791 if ((pos
->prot
& PROT_WRITE
) && pos
->content_size_loc
)
792 *pos
->content_size_loc
= pos
->offset
;
797 ret
= munmap_align(pos
->base_mma
);
799 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
804 if (pos
->packet_index
)
805 (void) g_array_free(pos
->packet_index
, TRUE
);
809 void ctf_update_current_packet_index(struct ctf_stream_definition
*stream
,
810 struct packet_index
*prev_index
,
811 struct packet_index
*cur_index
)
813 uint64_t events_discarded_diff
;
814 uint64_t packets_lost_diff
= 0;
816 /* Update packet index time information */
818 /* Current packet begin/end */
819 stream
->current
.real
.begin
=
820 cur_index
->ts_real
.timestamp_begin
;
821 stream
->current
.cycles
.begin
=
822 cur_index
->ts_cycles
.timestamp_begin
;
823 stream
->current
.real
.end
=
824 cur_index
->ts_real
.timestamp_end
;
825 stream
->current
.cycles
.end
=
826 cur_index
->ts_cycles
.timestamp_end
;
828 /* Update packet index discarded event information */
829 events_discarded_diff
= cur_index
->events_discarded
;
831 /* Previous packet begin/end */
832 stream
->prev
.cycles
.begin
=
833 prev_index
->ts_cycles
.timestamp_begin
;
834 stream
->prev
.real
.begin
=
835 prev_index
->ts_real
.timestamp_begin
;
836 stream
->prev
.cycles
.end
=
837 prev_index
->ts_cycles
.timestamp_end
;
838 stream
->prev
.real
.end
=
839 prev_index
->ts_real
.timestamp_end
;
841 events_discarded_diff
-= prev_index
->events_discarded
;
842 /* packet_seq_num stays at 0 if not produced by the tracer */
843 if (cur_index
->packet_seq_num
) {
844 packets_lost_diff
= cur_index
->packet_seq_num
-
845 prev_index
->packet_seq_num
- 1;
848 * Deal with 32-bit wrap-around if the tracer provided a
851 if (prev_index
->events_discarded_len
== 32) {
852 events_discarded_diff
= (uint32_t) events_discarded_diff
;
856 * First packet: use current packet info as limits for
859 stream
->prev
.cycles
.begin
=
860 stream
->prev
.cycles
.end
=
861 stream
->current
.cycles
.begin
;
862 stream
->prev
.real
.begin
=
863 stream
->prev
.real
.end
=
864 stream
->current
.real
.begin
;
866 stream
->events_discarded
= events_discarded_diff
;
867 stream
->packets_lost
= packets_lost_diff
;
871 * for SEEK_CUR: go to next packet.
872 * for SEEK_SET: go to packet numer (index).
874 void ctf_packet_seek(struct bt_stream_pos
*stream_pos
, size_t index
, int whence
)
876 struct ctf_stream_pos
*pos
=
877 container_of(stream_pos
, struct ctf_stream_pos
, parent
);
878 struct ctf_file_stream
*file_stream
=
879 container_of(pos
, struct ctf_file_stream
, pos
);
881 struct packet_index
*packet_index
, *prev_index
;
885 case SEEK_SET
: /* Fall-through */
891 if ((pos
->prot
& PROT_WRITE
) && pos
->content_size_loc
)
892 *pos
->content_size_loc
= pos
->offset
;
896 ret
= munmap_align(pos
->base_mma
);
898 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
902 pos
->base_mma
= NULL
;
906 * The caller should never ask for ctf_move_pos across packets,
907 * except to get exactly at the beginning of the next packet.
909 if (pos
->prot
& PROT_WRITE
) {
912 /* The writer will add padding */
913 pos
->mmap_offset
+= pos
->packet_size
/ CHAR_BIT
;
916 assert(index
== 0); /* only seek supported for now */
922 pos
->content_size
= -1U; /* Unknown at this point */
923 pos
->packet_size
= WRITE_PACKET_LEN
;
925 ret
= bt_posix_fallocate(pos
->fd
, pos
->mmap_offset
,
926 pos
->packet_size
/ CHAR_BIT
);
927 } while (ret
== EINTR
);
935 if (pos
->offset
== EOF
) {
938 assert(pos
->cur_index
< pos
->packet_index
->len
);
939 /* The reader will expect us to skip padding */
944 if (index
>= pos
->packet_index
->len
) {
948 pos
->cur_index
= index
;
954 packet_index
= &g_array_index(pos
->packet_index
,
955 struct packet_index
, pos
->cur_index
);
956 if (pos
->cur_index
> 0) {
957 prev_index
= &g_array_index(pos
->packet_index
,
963 ctf_update_current_packet_index(&file_stream
->parent
,
964 prev_index
, packet_index
);
966 if (pos
->cur_index
>= pos
->packet_index
->len
) {
972 * We need to check if we are in trace read or called
973 * from packet indexing. In this last case, the
974 * collection is not there, so we cannot print the
977 if ((&file_stream
->parent
)->stream_class
->trace
->parent
.collection
) {
978 ctf_print_discarded_lost(stderr
, &file_stream
->parent
);
981 packet_index
= &g_array_index(pos
->packet_index
,
984 file_stream
->parent
.cycles_timestamp
= packet_index
->ts_cycles
.timestamp_begin
;
986 file_stream
->parent
.real_timestamp
= packet_index
->ts_real
.timestamp_begin
;
988 /* Lookup context/packet size in index */
989 if (packet_index
->data_offset
== -1) {
990 ret
= find_data_offset(pos
, file_stream
, packet_index
);
995 pos
->content_size
= packet_index
->content_size
;
996 pos
->packet_size
= packet_index
->packet_size
;
997 pos
->mmap_offset
= packet_index
->offset
;
998 pos
->data_offset
= packet_index
->data_offset
;
999 if (pos
->data_offset
< packet_index
->content_size
) {
1000 pos
->offset
= 0; /* will read headers */
1001 } else if (pos
->data_offset
== packet_index
->content_size
) {
1003 pos
->offset
= packet_index
->data_offset
;
1005 goto read_next_packet
;
1011 /* map new base. Need mapping length from header. */
1012 pos
->base_mma
= mmap_align(pos
->packet_size
/ CHAR_BIT
, pos
->prot
,
1013 pos
->flags
, pos
->fd
, pos
->mmap_offset
);
1014 if (pos
->base_mma
== MAP_FAILED
) {
1015 fprintf(stderr
, "[error] mmap error %s.\n",
1020 /* update trace_packet_header and stream_packet_context */
1021 if (!(pos
->prot
& PROT_WRITE
) &&
1022 file_stream
->parent
.trace_packet_header
) {
1023 /* Read packet header */
1024 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.trace_packet_header
->p
);
1027 if (!(pos
->prot
& PROT_WRITE
) &&
1028 file_stream
->parent
.stream_packet_context
) {
1029 /* Read packet context */
1030 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.stream_packet_context
->p
);
1036 int packet_metadata(struct ctf_trace
*td
, FILE *fp
)
1042 len
= fread(&magic
, sizeof(magic
), 1, fp
);
1046 if (magic
== TSDL_MAGIC
) {
1048 td
->byte_order
= BYTE_ORDER
;
1049 CTF_TRACE_SET_FIELD(td
, byte_order
);
1050 } else if (magic
== GUINT32_SWAP_LE_BE(TSDL_MAGIC
)) {
1052 td
->byte_order
= (BYTE_ORDER
== BIG_ENDIAN
) ?
1053 LITTLE_ENDIAN
: BIG_ENDIAN
;
1054 CTF_TRACE_SET_FIELD(td
, byte_order
);
1062 * Returns 0 on success, -1 on error.
1065 int check_version(unsigned int major
, unsigned int minor
)
1080 /* eventually return an error instead of warning */
1082 fprintf(stderr
, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n",
1088 int ctf_trace_metadata_packet_read(struct ctf_trace
*td
, FILE *in
,
1091 struct metadata_packet_header header
;
1092 size_t readlen
, writelen
, toread
;
1093 char buf
[4096 + 1]; /* + 1 for debug-mode \0 */
1096 readlen
= fread(&header
, header_sizeof(header
), 1, in
);
1100 if (td
->byte_order
!= BYTE_ORDER
) {
1101 header
.magic
= GUINT32_SWAP_LE_BE(header
.magic
);
1102 header
.checksum
= GUINT32_SWAP_LE_BE(header
.checksum
);
1103 header
.content_size
= GUINT32_SWAP_LE_BE(header
.content_size
);
1104 header
.packet_size
= GUINT32_SWAP_LE_BE(header
.packet_size
);
1106 if (header
.checksum
)
1107 fprintf(stderr
, "[warning] checksum verification not supported yet.\n");
1108 if (header
.compression_scheme
) {
1109 fprintf(stderr
, "[error] compression (%u) not supported yet.\n",
1110 header
.compression_scheme
);
1113 if (header
.encryption_scheme
) {
1114 fprintf(stderr
, "[error] encryption (%u) not supported yet.\n",
1115 header
.encryption_scheme
);
1118 if (header
.checksum_scheme
) {
1119 fprintf(stderr
, "[error] checksum (%u) not supported yet.\n",
1120 header
.checksum_scheme
);
1123 if (check_version(header
.major
, header
.minor
) < 0)
1125 if (!CTF_TRACE_FIELD_IS_SET(td
, uuid
)) {
1126 memcpy(td
->uuid
, header
.uuid
, sizeof(header
.uuid
));
1127 CTF_TRACE_SET_FIELD(td
, uuid
);
1129 if (bt_uuid_compare(header
.uuid
, td
->uuid
))
1133 if ((header
.content_size
/ CHAR_BIT
) < header_sizeof(header
))
1136 toread
= (header
.content_size
/ CHAR_BIT
) - header_sizeof(header
);
1139 readlen
= fread(buf
, sizeof(char), min(sizeof(buf
) - 1, toread
), in
);
1144 if (babeltrace_debug
) {
1145 buf
[readlen
] = '\0';
1146 fprintf(stderr
, "[debug] metadata packet read: %s\n",
1150 writelen
= fwrite(buf
, sizeof(char), readlen
, out
);
1151 if (writelen
< readlen
) {
1161 ret
= 0; /* continue reading next packet */
1168 toread
= (header
.packet_size
- header
.content_size
) / CHAR_BIT
;
1169 ret
= fseek(in
, toread
, SEEK_CUR
);
1171 fprintf(stderr
, "[warning] Missing padding at end of file\n");
1178 int ctf_trace_metadata_stream_read(struct ctf_trace
*td
, FILE **fp
,
1182 size_t size
, buflen
;
1187 * Using strlen on *buf instead of size of open_memstream
1188 * because its size includes garbage at the end (after final
1189 * \0). This is the allocated size, not the actual string size.
1191 out
= babeltrace_open_memstream(buf
, &size
);
1193 perror("Metadata open_memstream");
1197 ret
= ctf_trace_metadata_packet_read(td
, in
, out
);
1206 /* close to flush the buffer */
1207 ret
= babeltrace_close_memstream(buf
, &size
, out
);
1211 perror("babeltrace_flush_memstream");
1213 closeret
= fclose(in
);
1215 perror("Error in fclose");
1221 perror("Error in fclose");
1223 /* open for reading */
1224 buflen
= strlen(*buf
);
1229 *fp
= babeltrace_fmemopen(*buf
, buflen
, "rb");
1231 perror("Metadata fmemopen");
1238 int ctf_trace_metadata_read(struct ctf_trace
*td
, FILE *metadata_fp
,
1239 struct ctf_scanner
*scanner
, int append
)
1241 struct ctf_file_stream
*metadata_stream
;
1244 int ret
= 0, closeret
;
1246 metadata_stream
= g_new0(struct ctf_file_stream
, 1);
1247 metadata_stream
->pos
.last_offset
= LAST_OFFSET_POISON
;
1251 metadata_stream
->pos
.fd
= -1;
1253 td
->metadata
= &metadata_stream
->parent
;
1254 metadata_stream
->pos
.fd
= openat(td
->dirfd
, "metadata", O_RDONLY
);
1255 if (metadata_stream
->pos
.fd
< 0) {
1256 fprintf(stderr
, "Unable to open metadata.\n");
1261 fp
= fdopen(metadata_stream
->pos
.fd
, "r");
1263 fprintf(stderr
, "[error] Unable to open metadata stream.\n");
1264 perror("Metadata stream open");
1268 /* fd now belongs to fp */
1269 metadata_stream
->pos
.fd
= -1;
1271 if (babeltrace_debug
)
1274 if (packet_metadata(td
, fp
)) {
1275 ret
= ctf_trace_metadata_stream_read(td
, &fp
, &buf
);
1279 td
->metadata_string
= buf
;
1280 td
->metadata_packetized
= 1;
1283 unsigned int major
, minor
;
1286 td
->byte_order
= BYTE_ORDER
;
1288 /* Check text-only metadata header and version */
1289 nr_items
= fscanf(fp
, "/* CTF %10u.%10u", &major
, &minor
);
1291 fprintf(stderr
, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n");
1292 if (check_version(major
, minor
) < 0) {
1300 ret
= ctf_scanner_append_ast(scanner
, fp
);
1302 fprintf(stderr
, "[error] Error creating AST\n");
1306 if (babeltrace_debug
) {
1307 ret
= ctf_visitor_print_xml(stderr
, 0, &scanner
->ast
->root
);
1309 fprintf(stderr
, "[error] Error visiting AST for XML output\n");
1314 ret
= ctf_visitor_semantic_check(stderr
, 0, &scanner
->ast
->root
);
1316 fprintf(stderr
, "[error] Error in CTF semantic validation %d\n", ret
);
1319 ret
= ctf_visitor_construct_metadata(stderr
, 0, &scanner
->ast
->root
,
1320 td
, td
->byte_order
);
1322 fprintf(stderr
, "[error] Error in CTF metadata constructor %d\n", ret
);
1327 closeret
= fclose(fp
);
1329 perror("Error on fclose");
1333 if (metadata_stream
->pos
.fd
>= 0) {
1334 closeret
= close(metadata_stream
->pos
.fd
);
1336 perror("Error on metadata stream fd close");
1341 g_free(metadata_stream
);
1346 struct ctf_event_definition
*create_event_definitions(struct ctf_trace
*td
,
1347 struct ctf_stream_definition
*stream
,
1348 struct ctf_event_declaration
*event
)
1350 struct ctf_event_definition
*stream_event
= g_new0(struct ctf_event_definition
, 1);
1352 if (event
->context_decl
) {
1353 struct bt_definition
*definition
=
1354 event
->context_decl
->p
.definition_new(&event
->context_decl
->p
,
1355 stream
->parent_def_scope
, 0, 0, "event.context");
1359 stream_event
->event_context
= container_of(definition
,
1360 struct definition_struct
, p
);
1361 stream
->parent_def_scope
= stream_event
->event_context
->p
.scope
;
1363 if (event
->fields_decl
) {
1364 struct bt_definition
*definition
=
1365 event
->fields_decl
->p
.definition_new(&event
->fields_decl
->p
,
1366 stream
->parent_def_scope
, 0, 0, "event.fields");
1370 stream_event
->event_fields
= container_of(definition
,
1371 struct definition_struct
, p
);
1372 stream
->parent_def_scope
= stream_event
->event_fields
->p
.scope
;
1374 stream_event
->stream
= stream
;
1375 return stream_event
;
1378 if (stream_event
->event_fields
)
1379 bt_definition_unref(&stream_event
->event_fields
->p
);
1380 if (stream_event
->event_context
)
1381 bt_definition_unref(&stream_event
->event_context
->p
);
1382 fprintf(stderr
, "[error] Unable to create event definition for event \"%s\".\n",
1383 g_quark_to_string(event
->name
));
1388 int copy_event_declarations_stream_class_to_stream(struct ctf_trace
*td
,
1389 struct ctf_stream_declaration
*stream_class
,
1390 struct ctf_stream_definition
*stream
)
1392 size_t def_size
, class_size
, i
;
1395 def_size
= stream
->events_by_id
->len
;
1396 class_size
= stream_class
->events_by_id
->len
;
1398 g_ptr_array_set_size(stream
->events_by_id
, class_size
);
1399 for (i
= def_size
; i
< class_size
; i
++) {
1400 struct ctf_event_declaration
*event
=
1401 g_ptr_array_index(stream_class
->events_by_id
, i
);
1402 struct ctf_event_definition
*stream_event
;
1406 stream_event
= create_event_definitions(td
, stream
, event
);
1407 if (!stream_event
) {
1411 g_ptr_array_index(stream
->events_by_id
, i
) = stream_event
;
1418 int create_stream_definitions(struct ctf_trace
*td
, struct ctf_stream_definition
*stream
)
1420 struct ctf_stream_declaration
*stream_class
;
1424 if (stream
->stream_definitions_created
)
1427 stream_class
= stream
->stream_class
;
1429 if (stream_class
->packet_context_decl
) {
1430 struct bt_definition
*definition
=
1431 stream_class
->packet_context_decl
->p
.definition_new(&stream_class
->packet_context_decl
->p
,
1432 stream
->parent_def_scope
, 0, 0, "stream.packet.context");
1437 stream
->stream_packet_context
= container_of(definition
,
1438 struct definition_struct
, p
);
1439 stream
->parent_def_scope
= stream
->stream_packet_context
->p
.scope
;
1441 if (stream_class
->event_header_decl
) {
1442 struct bt_definition
*definition
=
1443 stream_class
->event_header_decl
->p
.definition_new(&stream_class
->event_header_decl
->p
,
1444 stream
->parent_def_scope
, 0, 0, "stream.event.header");
1449 stream
->stream_event_header
=
1450 container_of(definition
, struct definition_struct
, p
);
1451 stream
->parent_def_scope
= stream
->stream_event_header
->p
.scope
;
1453 if (stream_class
->event_context_decl
) {
1454 struct bt_definition
*definition
=
1455 stream_class
->event_context_decl
->p
.definition_new(&stream_class
->event_context_decl
->p
,
1456 stream
->parent_def_scope
, 0, 0, "stream.event.context");
1461 stream
->stream_event_context
=
1462 container_of(definition
, struct definition_struct
, p
);
1463 stream
->parent_def_scope
= stream
->stream_event_context
->p
.scope
;
1465 stream
->events_by_id
= g_ptr_array_new();
1466 ret
= copy_event_declarations_stream_class_to_stream(td
,
1467 stream_class
, stream
);
1473 for (i
= 0; i
< stream
->events_by_id
->len
; i
++) {
1474 struct ctf_event_definition
*stream_event
= g_ptr_array_index(stream
->events_by_id
, i
);
1476 g_free(stream_event
);
1478 g_ptr_array_free(stream
->events_by_id
, TRUE
);
1480 if (stream
->stream_event_context
)
1481 bt_definition_unref(&stream
->stream_event_context
->p
);
1482 if (stream
->stream_event_header
)
1483 bt_definition_unref(&stream
->stream_event_header
->p
);
1484 if (stream
->stream_packet_context
)
1485 bt_definition_unref(&stream
->stream_packet_context
->p
);
1486 fprintf(stderr
, "[error] Unable to create stream (%" PRIu64
") definitions: %s\n",
1487 stream_class
->stream_id
, strerror(-ret
));
1492 int stream_assign_class(struct ctf_trace
*td
,
1493 struct ctf_file_stream
*file_stream
,
1496 struct ctf_stream_declaration
*stream
;
1499 file_stream
->parent
.stream_id
= stream_id
;
1500 if (stream_id
>= td
->streams
->len
) {
1501 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared in metadata.\n", stream_id
);
1504 stream
= g_ptr_array_index(td
->streams
, stream_id
);
1506 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared in metadata.\n", stream_id
);
1509 file_stream
->parent
.stream_class
= stream
;
1510 ret
= create_stream_definitions(td
, &file_stream
->parent
);
1517 int create_stream_one_packet_index(struct ctf_stream_pos
*pos
,
1518 struct ctf_trace
*td
,
1519 struct ctf_file_stream
*file_stream
,
1522 struct packet_index packet_index
;
1523 uint64_t stream_id
= 0;
1524 uint64_t packet_map_len
= DEFAULT_HEADER_LEN
, tmp_map_len
;
1525 int first_packet
= 0;
1530 memset(&packet_index
, 0, sizeof(packet_index
));
1531 if (!pos
->mmap_offset
) {
1535 if (filesize
- pos
->mmap_offset
< (packet_map_len
>> LOG2_CHAR_BIT
)) {
1536 packet_map_len
= (filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
;
1539 if (pos
->base_mma
) {
1540 /* unmap old base */
1541 ret
= munmap_align(pos
->base_mma
);
1543 fprintf(stderr
, "[error] Unable to unmap old base: %s.\n",
1547 pos
->base_mma
= NULL
;
1549 /* map new base. Need mapping length from header. */
1550 pos
->base_mma
= mmap_align(packet_map_len
>> LOG2_CHAR_BIT
, PROT_READ
,
1551 MAP_PRIVATE
, pos
->fd
, pos
->mmap_offset
);
1552 assert(pos
->base_mma
!= MAP_FAILED
);
1554 * Use current mapping size as temporary content and packet
1557 pos
->content_size
= packet_map_len
;
1558 pos
->packet_size
= packet_map_len
;
1559 pos
->offset
= 0; /* Position of the packet header */
1561 packet_index
.offset
= pos
->mmap_offset
;
1563 /* read and check header, set stream id (and check) */
1564 if (file_stream
->parent
.trace_packet_header
) {
1565 /* Read packet header */
1566 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.trace_packet_header
->p
);
1570 fprintf(stderr
, "[error] Unable to read packet header: %s\n", strerror(-ret
));
1573 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.trace_packet_header
->declaration
, g_quark_from_static_string("magic"));
1574 if (len_index
>= 0) {
1575 struct bt_definition
*field
;
1578 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.trace_packet_header
, len_index
);
1579 magic
= bt_get_unsigned_int(field
);
1580 if (magic
!= CTF_MAGIC
) {
1581 fprintf(stderr
, "[error] Invalid magic number 0x%" PRIX64
" at packet %u (file offset %zd).\n",
1583 file_stream
->pos
.packet_index
->len
,
1584 (ssize_t
) pos
->mmap_offset
);
1590 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.trace_packet_header
->declaration
, g_quark_from_static_string("uuid"));
1591 if (len_index
>= 0) {
1592 struct definition_array
*defarray
;
1593 struct bt_definition
*field
;
1595 uint8_t uuidval
[BABELTRACE_UUID_LEN
];
1597 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.trace_packet_header
, len_index
);
1598 assert(field
->declaration
->id
== CTF_TYPE_ARRAY
);
1599 defarray
= container_of(field
, struct definition_array
, p
);
1600 assert(bt_array_len(defarray
) == BABELTRACE_UUID_LEN
);
1602 for (i
= 0; i
< BABELTRACE_UUID_LEN
; i
++) {
1603 struct bt_definition
*elem
;
1605 elem
= bt_array_index(defarray
, i
);
1606 uuidval
[i
] = bt_get_unsigned_int(elem
);
1608 ret
= bt_uuid_compare(td
->uuid
, uuidval
);
1610 fprintf(stderr
, "[error] Unique Universal Identifiers do not match.\n");
1615 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.trace_packet_header
->declaration
, g_quark_from_static_string("stream_id"));
1616 if (len_index
>= 0) {
1617 struct bt_definition
*field
;
1619 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.trace_packet_header
, len_index
);
1620 stream_id
= bt_get_unsigned_int(field
);
1624 if (!first_packet
&& file_stream
->parent
.stream_id
!= stream_id
) {
1625 fprintf(stderr
, "[error] Stream ID is changing within a stream: expecting %" PRIu64
", but packet has %" PRIu64
"\n",
1627 file_stream
->parent
.stream_id
);
1631 ret
= stream_assign_class(td
, file_stream
, stream_id
);
1636 if (file_stream
->parent
.stream_packet_context
) {
1637 /* Read packet context */
1638 ret
= generic_rw(&pos
->parent
, &file_stream
->parent
.stream_packet_context
->p
);
1642 fprintf(stderr
, "[error] Unable to read packet context: %s\n", strerror(-ret
));
1645 /* read packet size from header */
1646 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("packet_size"));
1647 if (len_index
>= 0) {
1648 struct bt_definition
*field
;
1650 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1651 packet_index
.packet_size
= bt_get_unsigned_int(field
);
1653 /* Use file size for packet size */
1654 packet_index
.packet_size
= filesize
* CHAR_BIT
;
1657 /* read content size from header */
1658 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("content_size"));
1659 if (len_index
>= 0) {
1660 struct bt_definition
*field
;
1662 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1663 packet_index
.content_size
= bt_get_unsigned_int(field
);
1665 /* Use packet size if non-zero, else file size */
1666 packet_index
.content_size
= packet_index
.packet_size
? : filesize
* CHAR_BIT
;
1669 /* read timestamp begin from header */
1670 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("timestamp_begin"));
1671 if (len_index
>= 0) {
1672 struct bt_definition
*field
;
1674 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1675 packet_index
.ts_cycles
.timestamp_begin
= bt_get_unsigned_int(field
);
1676 if (file_stream
->parent
.stream_class
->trace
->parent
.collection
) {
1677 packet_index
.ts_real
.timestamp_begin
=
1678 ctf_get_real_timestamp(
1679 &file_stream
->parent
,
1680 packet_index
.ts_cycles
.timestamp_begin
);
1684 /* read timestamp end from header */
1685 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("timestamp_end"));
1686 if (len_index
>= 0) {
1687 struct bt_definition
*field
;
1689 field
= bt_struct_definition_get_field_from_index(file_stream
->parent
.stream_packet_context
, len_index
);
1690 packet_index
.ts_cycles
.timestamp_end
= bt_get_unsigned_int(field
);
1691 if (file_stream
->parent
.stream_class
->trace
->parent
.collection
) {
1692 packet_index
.ts_real
.timestamp_end
=
1693 ctf_get_real_timestamp(
1694 &file_stream
->parent
,
1695 packet_index
.ts_cycles
.timestamp_end
);
1699 /* read events discarded from header */
1700 len_index
= bt_struct_declaration_lookup_field_index(file_stream
->parent
.stream_packet_context
->declaration
, g_quark_from_static_string("events_discarded"));
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
.events_discarded
= bt_get_unsigned_int(field
);
1706 packet_index
.events_discarded_len
= bt_get_int_len(field
);
1709 /* read packet_seq_num from header */
1710 len_index
= bt_struct_declaration_lookup_field_index(
1711 file_stream
->parent
.stream_packet_context
->declaration
,
1712 g_quark_from_static_string("packet_seq_num"));
1713 if (len_index
>= 0) {
1714 struct bt_definition
*field
;
1716 field
= bt_struct_definition_get_field_from_index(
1717 file_stream
->parent
.stream_packet_context
,
1719 packet_index
.packet_seq_num
= bt_get_unsigned_int(field
);
1722 /* Use file size for packet size */
1723 packet_index
.packet_size
= filesize
* CHAR_BIT
;
1724 /* Use packet size if non-zero, else file size */
1725 packet_index
.content_size
= packet_index
.packet_size
? : filesize
* CHAR_BIT
;
1728 /* Validate content size and packet size values */
1729 if (packet_index
.content_size
> packet_index
.packet_size
) {
1730 fprintf(stderr
, "[error] Content size (%" PRIu64
" bits) is larger than packet size (%" PRIu64
" bits).\n",
1731 packet_index
.content_size
, packet_index
.packet_size
);
1735 if (packet_index
.packet_size
> ((uint64_t) filesize
- packet_index
.offset
) * CHAR_BIT
) {
1736 fprintf(stderr
, "[error] Packet size (%" PRIu64
" bits) is larger than remaining file size (%" PRIu64
" bits).\n",
1737 packet_index
.packet_size
, ((uint64_t) filesize
- packet_index
.offset
) * CHAR_BIT
);
1741 if (packet_index
.content_size
< pos
->offset
) {
1742 fprintf(stderr
, "[error] Invalid CTF stream: content size is smaller than packet headers.\n");
1746 if ((packet_index
.packet_size
>> LOG2_CHAR_BIT
) == 0) {
1747 fprintf(stderr
, "[error] Invalid CTF stream: packet size needs to be at least one byte\n");
1751 /* Save position after header and context */
1752 packet_index
.data_offset
= pos
->offset
;
1754 /* add index to packet array */
1755 g_array_append_val(file_stream
->pos
.packet_index
, packet_index
);
1757 pos
->mmap_offset
+= packet_index
.packet_size
>> LOG2_CHAR_BIT
;
1761 /* Retry with larger mapping */
1763 if (packet_map_len
== ((filesize
- pos
->mmap_offset
) << LOG2_CHAR_BIT
)) {
1765 * Reached EOF, but still expecting header/context data.
1767 fprintf(stderr
, "[error] Reached end of file, but still expecting header or context fields.\n");
1770 /* Double the mapping len, and retry */
1771 tmp_map_len
= packet_map_len
<< 1;
1772 if (tmp_map_len
>> 1 != packet_map_len
) {
1774 fprintf(stderr
, "[error] Packet mapping length overflow\n");
1777 packet_map_len
= tmp_map_len
;
1782 int create_stream_packet_index(struct ctf_trace
*td
,
1783 struct ctf_file_stream
*file_stream
)
1785 struct ctf_stream_pos
*pos
;
1786 struct stat filestats
;
1789 pos
= &file_stream
->pos
;
1791 ret
= fstat(pos
->fd
, &filestats
);
1795 /* Deal with empty files */
1796 if (!filestats
.st_size
) {
1797 if (file_stream
->parent
.trace_packet_header
1798 || file_stream
->parent
.stream_packet_context
) {
1800 * We expect a trace packet header and/or stream packet
1801 * context. Since a trace needs to have at least one
1802 * packet, empty files are therefore not accepted.
1804 fprintf(stderr
, "[error] Encountered an empty file, but expecting a trace packet header.\n");
1808 * Without trace packet header nor stream packet
1809 * context, a one-packet trace can indeed be empty. This
1810 * is only valid if there is only one stream class: 0.
1812 ret
= stream_assign_class(td
, file_stream
, 0);
1819 for (pos
->mmap_offset
= 0; pos
->mmap_offset
< filestats
.st_size
; ) {
1820 ret
= create_stream_one_packet_index(pos
, td
, file_stream
,
1829 int create_trace_definitions(struct ctf_trace
*td
, struct ctf_stream_definition
*stream
)
1833 if (td
->packet_header_decl
) {
1834 struct bt_definition
*definition
=
1835 td
->packet_header_decl
->p
.definition_new(&td
->packet_header_decl
->p
,
1836 stream
->parent_def_scope
, 0, 0, "trace.packet.header");
1841 stream
->trace_packet_header
=
1842 container_of(definition
, struct definition_struct
, p
);
1843 stream
->parent_def_scope
= stream
->trace_packet_header
->p
.scope
;
1849 fprintf(stderr
, "[error] Unable to create trace definitions: %s\n", strerror(-ret
));
1854 int import_stream_packet_index(struct ctf_trace
*td
,
1855 struct ctf_file_stream
*file_stream
)
1857 struct ctf_stream_pos
*pos
;
1858 struct ctf_packet_index
*ctf_index
= NULL
;
1859 struct ctf_packet_index_file_hdr index_hdr
;
1860 struct packet_index index
;
1861 uint32_t packet_index_len
, index_minor
;
1863 int first_packet
= 1;
1866 pos
= &file_stream
->pos
;
1868 len
= fread(&index_hdr
, sizeof(index_hdr
), 1, pos
->index_fp
);
1870 perror("read index file header");
1874 /* Check the index header */
1875 if (be32toh(index_hdr
.magic
) != CTF_INDEX_MAGIC
) {
1876 fprintf(stderr
, "[error] wrong index magic\n");
1880 if (be32toh(index_hdr
.index_major
) != CTF_INDEX_MAJOR
) {
1881 fprintf(stderr
, "[error] Incompatible index file %" PRIu32
1882 ".%" PRIu32
", supported %d.%d\n",
1883 be32toh(index_hdr
.index_major
),
1884 be32toh(index_hdr
.index_minor
), CTF_INDEX_MAJOR
,
1889 index_minor
= be32toh(index_hdr
.index_minor
);
1891 packet_index_len
= be32toh(index_hdr
.packet_index_len
);
1892 if (packet_index_len
== 0) {
1893 fprintf(stderr
, "[error] Packet index length cannot be 0.\n");
1898 * Allocate the index length found in header, not internal
1901 ctf_index
= g_malloc0(packet_index_len
);
1902 while (fread(ctf_index
, packet_index_len
, 1,
1903 pos
->index_fp
) == 1) {
1905 struct ctf_stream_declaration
*stream
= NULL
;
1907 memset(&index
, 0, sizeof(index
));
1908 index
.offset
= be64toh(ctf_index
->offset
);
1909 index
.packet_size
= be64toh(ctf_index
->packet_size
);
1910 index
.content_size
= be64toh(ctf_index
->content_size
);
1911 index
.ts_cycles
.timestamp_begin
= be64toh(ctf_index
->timestamp_begin
);
1912 index
.ts_cycles
.timestamp_end
= be64toh(ctf_index
->timestamp_end
);
1913 index
.events_discarded
= be64toh(ctf_index
->events_discarded
);
1914 index
.events_discarded_len
= 64;
1915 index
.data_offset
= -1;
1916 stream_id
= be64toh(ctf_index
->stream_id
);
1917 if (index_minor
>= 1) {
1918 index
.stream_instance_id
= be64toh(ctf_index
->stream_instance_id
);
1919 index
.packet_seq_num
= be64toh(ctf_index
->packet_seq_num
);
1922 if (!first_packet
) {
1923 /* add index to packet array */
1924 g_array_append_val(file_stream
->pos
.packet_index
, index
);
1928 file_stream
->parent
.stream_id
= stream_id
;
1929 if (stream_id
< td
->streams
->len
) {
1930 stream
= g_ptr_array_index(td
->streams
, stream_id
);
1933 fprintf(stderr
, "[error] Stream %" PRIu64
1934 " is not declared in metadata.\n",
1939 file_stream
->parent
.stream_class
= stream
;
1940 ret
= create_stream_definitions(td
, &file_stream
->parent
);
1944 /* add index to packet array */
1945 g_array_append_val(file_stream
->pos
.packet_index
, index
);
1948 /* Index containing only the header. */
1949 if (!file_stream
->parent
.stream_class
) {
1962 * Note: many file streams can inherit from the same stream class
1963 * description (metadata).
1966 int ctf_open_file_stream_read(struct ctf_trace
*td
, const char *path
, int flags
,
1967 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
1970 int ret
, fd
, closeret
;
1971 struct ctf_file_stream
*file_stream
;
1972 struct stat statbuf
;
1975 fd
= openat(td
->dirfd
, path
, flags
);
1977 perror("File stream openat()");
1982 /* Don't try to mmap subdirectories. Skip them, return success. */
1983 ret
= fstat(fd
, &statbuf
);
1985 perror("File stream fstat()");
1988 if (S_ISDIR(statbuf
.st_mode
)) {
1989 if (strncmp(path
, "index", 5) != 0) {
1990 fprintf(stderr
, "[warning] Skipping directory '%s' "
1991 "found in trace\n", path
);
1996 if (!statbuf
.st_size
) {
1997 /** Skip empty files. */
1999 goto fd_is_empty_file
;
2002 file_stream
= g_new0(struct ctf_file_stream
, 1);
2003 file_stream
->pos
.last_offset
= LAST_OFFSET_POISON
;
2004 file_stream
->pos
.fd
= -1;
2005 file_stream
->pos
.index_fp
= NULL
;
2007 strncpy(file_stream
->parent
.path
, path
, PATH_MAX
);
2008 file_stream
->parent
.path
[PATH_MAX
- 1] = '\0';
2011 file_stream
->pos
.packet_seek
= packet_seek
;
2013 fprintf(stderr
, "[error] packet_seek function undefined.\n");
2018 ret
= ctf_init_pos(&file_stream
->pos
, &td
->parent
, fd
, flags
);
2021 ret
= create_trace_definitions(td
, &file_stream
->parent
);
2025 * For now, only a single clock per trace is supported.
2027 file_stream
->parent
.current_clock
= td
->parent
.single_clock
;
2030 * Allocate the index name for this stream and try to open it.
2032 index_name
= malloc((strlen(path
) + sizeof(INDEX_PATH
)) * sizeof(char));
2034 fprintf(stderr
, "[error] Cannot allocate index filename\n");
2038 snprintf(index_name
, strlen(path
) + sizeof(INDEX_PATH
),
2041 if (bt_faccessat(td
->dirfd
, td
->parent
.path
, index_name
, O_RDONLY
, 0) < 0) {
2042 ret
= create_stream_packet_index(td
, file_stream
);
2044 fprintf(stderr
, "[error] Stream index creation error.\n");
2048 ret
= openat(td
->dirfd
, index_name
, flags
);
2050 perror("Index file openat()");
2054 file_stream
->pos
.index_fp
= fdopen(ret
, "r");
2055 if (!file_stream
->pos
.index_fp
) {
2056 perror("fdopen() error");
2059 ret
= import_stream_packet_index(td
, file_stream
);
2064 ret
= fclose(file_stream
->pos
.index_fp
);
2066 perror("close index");
2072 /* Add stream file to stream class */
2073 g_ptr_array_add(file_stream
->parent
.stream_class
->streams
,
2074 &file_stream
->parent
);
2078 if (file_stream
->pos
.index_fp
) {
2079 ret
= fclose(file_stream
->pos
.index_fp
);
2081 perror("close index");
2084 if (file_stream
->parent
.trace_packet_header
)
2085 bt_definition_unref(&file_stream
->parent
.trace_packet_header
->p
);
2089 closeret
= ctf_fini_pos(&file_stream
->pos
);
2091 fprintf(stderr
, "Error on ctf_fini_pos\n");
2093 g_free(file_stream
);
2097 closeret
= close(fd
);
2099 perror("Error on fd close");
2106 int ctf_open_trace_read(struct ctf_trace
*td
,
2107 const char *path
, int flags
,
2108 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2109 int whence
), FILE *metadata_fp
)
2111 struct ctf_scanner
*scanner
;
2113 struct dirent
*dirent
;
2114 struct dirent
*diriter
;
2120 /* Open trace directory */
2121 td
->dir
= opendir(path
);
2123 fprintf(stderr
, "[error] Unable to open trace directory \"%s\".\n", path
);
2128 td
->dirfd
= open(path
, 0);
2129 if (td
->dirfd
< 0) {
2130 fprintf(stderr
, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path
);
2131 perror("Trace directory open");
2135 strncpy(td
->parent
.path
, path
, sizeof(td
->parent
.path
));
2136 td
->parent
.path
[sizeof(td
->parent
.path
) - 1] = '\0';
2139 * Keep the metadata file separate.
2140 * Keep scanner object local to the open. We don't support
2141 * incremental metadata append for on-disk traces.
2143 scanner
= ctf_scanner_alloc();
2145 fprintf(stderr
, "[error] Error allocating scanner\n");
2147 goto error_metadata
;
2149 ret
= ctf_trace_metadata_read(td
, metadata_fp
, scanner
, 0);
2150 ctf_scanner_free(scanner
);
2152 if (ret
== -ENOENT
) {
2153 fprintf(stderr
, "[warning] Empty metadata.\n");
2155 fprintf(stderr
, "[warning] Unable to open trace metadata for path \"%s\".\n", path
);
2156 goto error_metadata
;
2160 * Open each stream: for each file, try to open, check magic
2161 * number, and get the stream ID to add to the right location in
2165 dirent_len
= offsetof(struct dirent
, d_name
) +
2166 fpathconf(td
->dirfd
, _PC_NAME_MAX
) + 1;
2168 dirent
= malloc(dirent_len
);
2171 ret
= readdir_r(td
->dir
, dirent
, &diriter
);
2173 fprintf(stderr
, "[error] Readdir error.\n");
2178 /* Ignore hidden files, ., .. and metadata. */
2179 if (!strncmp(diriter
->d_name
, ".", 1)
2180 || !strcmp(diriter
->d_name
, "..")
2181 || !strcmp(diriter
->d_name
, "metadata"))
2184 /* Ignore index files : *.idx */
2185 ext
= strrchr(diriter
->d_name
, '.');
2186 if (ext
&& (!strcmp(ext
, ".idx"))) {
2190 ret
= ctf_open_file_stream_read(td
, diriter
->d_name
,
2191 flags
, packet_seek
);
2193 fprintf(stderr
, "[error] Open file stream error.\n");
2204 closeret
= close(td
->dirfd
);
2206 perror("Error on fd close");
2209 closeret
= closedir(td
->dir
);
2211 perror("Error on closedir");
2218 * ctf_open_trace: Open a CTF trace and index it.
2219 * Note that the user must seek the trace after the open (using the iterator)
2220 * since the index creation read it entirely.
2223 struct bt_trace_descriptor
*ctf_open_trace(const char *path
, int flags
,
2224 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2225 int whence
), FILE *metadata_fp
)
2227 struct ctf_trace
*td
;
2231 * If packet_seek is NULL, we provide our default version.
2234 packet_seek
= ctf_packet_seek
;
2236 td
= g_new0(struct ctf_trace
, 1);
2238 switch (flags
& O_ACCMODE
) {
2241 fprintf(stderr
, "[error] Path missing for input CTF trace.\n");
2244 ret
= ctf_open_trace_read(td
, path
, flags
, packet_seek
, metadata_fp
);
2249 fprintf(stderr
, "[error] Opening CTF traces for output is not supported yet.\n");
2252 fprintf(stderr
, "[error] Incorrect open flags.\n");
2263 void ctf_init_mmap_pos(struct ctf_stream_pos
*pos
,
2264 struct bt_mmap_stream
*mmap_info
)
2266 pos
->mmap_offset
= 0;
2267 pos
->packet_size
= 0;
2268 pos
->content_size
= 0;
2269 pos
->content_size_loc
= NULL
;
2270 pos
->fd
= mmap_info
->fd
;
2271 pos
->base_mma
= NULL
;
2275 pos
->prot
= PROT_READ
;
2276 pos
->flags
= MAP_PRIVATE
;
2277 pos
->parent
.rw_table
= read_dispatch_table
;
2278 pos
->parent
.event_cb
= ctf_read_event
;
2279 pos
->priv
= mmap_info
->priv
;
2280 pos
->packet_index
= g_array_new(FALSE
, TRUE
,
2281 sizeof(struct packet_index
));
2285 int prepare_mmap_stream_definition(struct ctf_trace
*td
,
2286 struct ctf_file_stream
*file_stream
,
2287 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2290 struct ctf_stream_declaration
*stream
;
2294 /* Ask for the first packet to get the stream_id. */
2295 packet_seek(&file_stream
->pos
.parent
, 0, SEEK_SET
);
2296 stream_id
= file_stream
->parent
.stream_id
;
2297 if (stream_id
>= td
->streams
->len
) {
2298 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared "
2299 "in metadata.\n", stream_id
);
2303 stream
= g_ptr_array_index(td
->streams
, stream_id
);
2305 fprintf(stderr
, "[error] Stream %" PRIu64
" is not declared "
2306 "in metadata.\n", stream_id
);
2310 file_stream
->parent
.stream_class
= stream
;
2311 ret
= create_stream_definitions(td
, &file_stream
->parent
);
2317 int ctf_open_mmap_stream_read(struct ctf_trace
*td
,
2318 struct bt_mmap_stream
*mmap_info
,
2319 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2323 struct ctf_file_stream
*file_stream
;
2325 file_stream
= g_new0(struct ctf_file_stream
, 1);
2326 file_stream
->parent
.stream_id
= -1ULL;
2327 file_stream
->pos
.last_offset
= LAST_OFFSET_POISON
;
2328 ctf_init_mmap_pos(&file_stream
->pos
, mmap_info
);
2330 file_stream
->pos
.packet_seek
= packet_seek
;
2332 ret
= create_trace_definitions(td
, &file_stream
->parent
);
2337 ret
= prepare_mmap_stream_definition(td
, file_stream
, packet_seek
);
2342 * For now, only a single clock per trace is supported.
2344 file_stream
->parent
.current_clock
= td
->parent
.single_clock
;
2346 /* Add stream file to stream class */
2347 g_ptr_array_add(file_stream
->parent
.stream_class
->streams
,
2348 &file_stream
->parent
);
2352 if (file_stream
->parent
.trace_packet_header
)
2353 bt_definition_unref(&file_stream
->parent
.trace_packet_header
->p
);
2355 g_free(file_stream
);
2360 int ctf_open_mmap_trace_read(struct ctf_trace
*td
,
2361 struct bt_mmap_stream_list
*mmap_list
,
2362 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2367 struct bt_mmap_stream
*mmap_info
;
2369 td
->scanner
= ctf_scanner_alloc();
2371 fprintf(stderr
, "[error] Error allocating scanner\n");
2375 ret
= ctf_trace_metadata_read(td
, metadata_fp
, td
->scanner
, 0);
2377 if (ret
== -ENOENT
) {
2378 fprintf(stderr
, "[warning] Empty metadata.\n");
2384 * for each stream, try to open, check magic number, and get the
2385 * stream ID to add to the right location in the stream array.
2387 bt_list_for_each_entry(mmap_info
, &mmap_list
->head
, list
) {
2388 ret
= ctf_open_mmap_stream_read(td
, mmap_info
, packet_seek
);
2390 fprintf(stderr
, "[error] Open file mmap stream error.\n");
2397 ctf_scanner_free(td
->scanner
);
2402 struct bt_trace_descriptor
*ctf_open_mmap_trace(
2403 struct bt_mmap_stream_list
*mmap_list
,
2404 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
2408 struct ctf_trace
*td
;
2412 fprintf(stderr
, "[error] No metadata file pointer associated, "
2413 "required for mmap parsing\n");
2417 fprintf(stderr
, "[error] packet_seek function undefined.\n");
2420 td
= g_new0(struct ctf_trace
, 1);
2422 ret
= ctf_open_mmap_trace_read(td
, mmap_list
, packet_seek
, metadata_fp
);
2434 int ctf_append_trace_metadata(struct bt_trace_descriptor
*tdp
,
2437 struct ctf_trace
*td
= container_of(tdp
, struct ctf_trace
, parent
);
2443 ret
= ctf_trace_metadata_read(td
, metadata_fp
, td
->scanner
, 1);
2446 /* for each stream_class */
2447 for (i
= 0; i
< td
->streams
->len
; i
++) {
2448 struct ctf_stream_declaration
*stream_class
;
2450 stream_class
= g_ptr_array_index(td
->streams
, i
);
2453 /* for each stream */
2454 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
2455 struct ctf_stream_definition
*stream
;
2457 stream
= g_ptr_array_index(stream_class
->streams
, j
);
2460 ret
= copy_event_declarations_stream_class_to_stream(td
,
2461 stream_class
, stream
);
2470 int ctf_convert_index_timestamp(struct bt_trace_descriptor
*tdp
)
2473 struct ctf_trace
*td
= container_of(tdp
, struct ctf_trace
, parent
);
2475 /* for each stream_class */
2476 for (i
= 0; i
< td
->streams
->len
; i
++) {
2477 struct ctf_stream_declaration
*stream_class
;
2479 stream_class
= g_ptr_array_index(td
->streams
, i
);
2482 /* for each file_stream */
2483 for (j
= 0; j
< stream_class
->streams
->len
; j
++) {
2484 struct ctf_stream_definition
*stream
;
2485 struct ctf_stream_pos
*stream_pos
;
2486 struct ctf_file_stream
*cfs
;
2488 stream
= g_ptr_array_index(stream_class
->streams
, j
);
2491 cfs
= container_of(stream
, struct ctf_file_stream
,
2493 stream_pos
= &cfs
->pos
;
2494 if (!stream_pos
->packet_index
)
2497 for (k
= 0; k
< stream_pos
->packet_index
->len
; k
++) {
2498 struct packet_index
*index
;
2500 index
= &g_array_index(stream_pos
->packet_index
,
2501 struct packet_index
, k
);
2502 index
->ts_real
.timestamp_begin
=
2503 ctf_get_real_timestamp(stream
,
2504 index
->ts_cycles
.timestamp_begin
);
2505 index
->ts_real
.timestamp_end
=
2506 ctf_get_real_timestamp(stream
,
2507 index
->ts_cycles
.timestamp_end
);
2515 int ctf_close_file_stream(struct ctf_file_stream
*file_stream
)
2519 ret
= ctf_fini_pos(&file_stream
->pos
);
2521 fprintf(stderr
, "Error on ctf_fini_pos\n");
2524 if (file_stream
->pos
.fd
>= 0) {
2525 ret
= close(file_stream
->pos
.fd
);
2527 perror("Error closing file fd");
2535 int ctf_close_trace(struct bt_trace_descriptor
*tdp
)
2537 struct ctf_trace
*td
= container_of(tdp
, struct ctf_trace
, parent
);
2543 for (i
= 0; i
< td
->streams
->len
; i
++) {
2544 struct ctf_stream_declaration
*stream
;
2547 stream
= g_ptr_array_index(td
->streams
, i
);
2550 for (j
= 0; j
< stream
->streams
->len
; j
++) {
2551 struct ctf_file_stream
*file_stream
;
2552 file_stream
= container_of(g_ptr_array_index(stream
->streams
, j
),
2553 struct ctf_file_stream
, parent
);
2554 ret
= ctf_close_file_stream(file_stream
);
2560 ctf_destroy_metadata(td
);
2561 ctf_scanner_free(td
->scanner
);
2562 if (td
->dirfd
>= 0) {
2563 ret
= close(td
->dirfd
);
2565 perror("Error closing dirfd");
2570 ret
= closedir(td
->dir
);
2572 perror("Error closedir");
2576 free(td
->metadata_string
);
2582 void ctf_set_context(struct bt_trace_descriptor
*descriptor
,
2583 struct bt_context
*ctx
)
2585 struct ctf_trace
*td
= container_of(descriptor
, struct ctf_trace
,
2588 td
->parent
.ctx
= ctx
;
2592 void ctf_set_handle(struct bt_trace_descriptor
*descriptor
,
2593 struct bt_trace_handle
*handle
)
2595 struct ctf_trace
*td
= container_of(descriptor
, struct ctf_trace
,
2598 td
->parent
.handle
= handle
;
2602 void __attribute__((constructor
)) ctf_init(void)
2606 ctf_format
.name
= g_quark_from_static_string("ctf");
2607 ret
= bt_register_format(&ctf_format
);
2612 void __attribute__((destructor
)) ctf_exit(void)
2614 bt_unregister_format(&ctf_format
);