Fix: check packet index len
[babeltrace.git] / formats / ctf / ctf.c
... / ...
CommitLineData
1/*
2 * BabelTrace - Common Trace Format (CTF)
3 *
4 * Format registration.
5 *
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
7 *
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 *
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:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
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
26 * SOFTWARE.
27 */
28
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>
39#include <inttypes.h>
40#include <stdio.h>
41#include <sys/mman.h>
42#include <errno.h>
43#include <sys/types.h>
44#include <sys/stat.h>
45#include <fcntl.h>
46#include <dirent.h>
47#include <glib.h>
48#include <unistd.h>
49#include <stdlib.h>
50
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
57#define LOG2_CHAR_BIT 3
58
59/*
60 * Length of first attempt at mapping a packet header, in bits.
61 */
62#define DEFAULT_HEADER_LEN (getpagesize() * CHAR_BIT)
63
64/*
65 * Lenght of packet to write, in bits.
66 */
67#define WRITE_PACKET_LEN (getpagesize() * 8 * CHAR_BIT)
68
69#ifndef min
70#define min(a, b) (((a) < (b)) ? (a) : (b))
71#endif
72
73#define NSEC_PER_SEC 1000000000ULL
74
75#define INDEX_PATH "./index/%s.idx"
76
77int opt_clock_cycles,
78 opt_clock_seconds,
79 opt_clock_date,
80 opt_clock_gmt;
81
82uint64_t opt_clock_offset;
83uint64_t opt_clock_offset_ns;
84
85extern int yydebug;
86
87static
88struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags,
89 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
90 int whence),
91 FILE *metadata_fp);
92static
93struct bt_trace_descriptor *ctf_open_mmap_trace(
94 struct bt_mmap_stream_list *mmap_list,
95 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
96 int whence),
97 FILE *metadata_fp);
98static
99void ctf_set_context(struct bt_trace_descriptor *descriptor,
100 struct bt_context *ctx);
101static
102void ctf_set_handle(struct bt_trace_descriptor *descriptor,
103 struct bt_trace_handle *handle);
104
105static
106int ctf_close_trace(struct bt_trace_descriptor *descriptor);
107static
108uint64_t ctf_timestamp_begin(struct bt_trace_descriptor *descriptor,
109 struct bt_trace_handle *handle, enum bt_clock_type type);
110static
111uint64_t ctf_timestamp_end(struct bt_trace_descriptor *descriptor,
112 struct bt_trace_handle *handle, enum bt_clock_type type);
113static
114int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp);
115
116static
117rw_dispatch read_dispatch_table[] = {
118 [ CTF_TYPE_INTEGER ] = ctf_integer_read,
119 [ CTF_TYPE_FLOAT ] = ctf_float_read,
120 [ CTF_TYPE_ENUM ] = ctf_enum_read,
121 [ CTF_TYPE_STRING ] = ctf_string_read,
122 [ CTF_TYPE_STRUCT ] = ctf_struct_rw,
123 [ CTF_TYPE_VARIANT ] = ctf_variant_rw,
124 [ CTF_TYPE_ARRAY ] = ctf_array_read,
125 [ CTF_TYPE_SEQUENCE ] = ctf_sequence_read,
126};
127
128static
129rw_dispatch write_dispatch_table[] = {
130 [ CTF_TYPE_INTEGER ] = ctf_integer_write,
131 [ CTF_TYPE_FLOAT ] = ctf_float_write,
132 [ CTF_TYPE_ENUM ] = ctf_enum_write,
133 [ CTF_TYPE_STRING ] = ctf_string_write,
134 [ CTF_TYPE_STRUCT ] = ctf_struct_rw,
135 [ CTF_TYPE_VARIANT ] = ctf_variant_rw,
136 [ CTF_TYPE_ARRAY ] = ctf_array_write,
137 [ CTF_TYPE_SEQUENCE ] = ctf_sequence_write,
138};
139
140static
141struct bt_format ctf_format = {
142 .open_trace = ctf_open_trace,
143 .open_mmap_trace = ctf_open_mmap_trace,
144 .close_trace = ctf_close_trace,
145 .set_context = ctf_set_context,
146 .set_handle = ctf_set_handle,
147 .timestamp_begin = ctf_timestamp_begin,
148 .timestamp_end = ctf_timestamp_end,
149 .convert_index_timestamp = ctf_convert_index_timestamp,
150};
151
152static
153uint64_t ctf_timestamp_begin(struct bt_trace_descriptor *descriptor,
154 struct bt_trace_handle *handle, enum bt_clock_type type)
155{
156 struct ctf_trace *tin;
157 uint64_t begin = ULLONG_MAX;
158 int i, j;
159
160 tin = container_of(descriptor, struct ctf_trace, parent);
161
162 if (!tin)
163 goto error;
164
165 /* for each stream_class */
166 for (i = 0; i < tin->streams->len; i++) {
167 struct ctf_stream_declaration *stream_class;
168
169 stream_class = g_ptr_array_index(tin->streams, i);
170 if (!stream_class)
171 continue;
172 /* for each file_stream */
173 for (j = 0; j < stream_class->streams->len; j++) {
174 struct ctf_stream_definition *stream;
175 struct ctf_file_stream *cfs;
176 struct ctf_stream_pos *stream_pos;
177 struct packet_index *index;
178
179 stream = g_ptr_array_index(stream_class->streams, j);
180 cfs = container_of(stream, struct ctf_file_stream,
181 parent);
182 stream_pos = &cfs->pos;
183
184 if (!stream_pos->packet_real_index)
185 goto error;
186
187 if (stream_pos->packet_real_index->len <= 0)
188 continue;
189
190 if (type == BT_CLOCK_REAL) {
191 index = &g_array_index(stream_pos->packet_real_index,
192 struct packet_index,
193 stream_pos->packet_real_index->len - 1);
194 } else if (type == BT_CLOCK_CYCLES) {
195 index = &g_array_index(stream_pos->packet_cycles_index,
196 struct packet_index,
197 stream_pos->packet_real_index->len - 1);
198
199 } else {
200 goto error;
201 }
202 if (index->timestamp_begin < begin)
203 begin = index->timestamp_begin;
204 }
205 }
206
207 return begin;
208
209error:
210 return -1ULL;
211}
212
213static
214uint64_t ctf_timestamp_end(struct bt_trace_descriptor *descriptor,
215 struct bt_trace_handle *handle, enum bt_clock_type type)
216{
217 struct ctf_trace *tin;
218 uint64_t end = 0;
219 int i, j;
220
221 tin = container_of(descriptor, struct ctf_trace, parent);
222
223 if (!tin)
224 goto error;
225
226 /* for each stream_class */
227 for (i = 0; i < tin->streams->len; i++) {
228 struct ctf_stream_declaration *stream_class;
229
230 stream_class = g_ptr_array_index(tin->streams, i);
231 if (!stream_class)
232 continue;
233 /* for each file_stream */
234 for (j = 0; j < stream_class->streams->len; j++) {
235 struct ctf_stream_definition *stream;
236 struct ctf_file_stream *cfs;
237 struct ctf_stream_pos *stream_pos;
238 struct packet_index *index;
239
240 stream = g_ptr_array_index(stream_class->streams, j);
241 cfs = container_of(stream, struct ctf_file_stream,
242 parent);
243 stream_pos = &cfs->pos;
244
245 if (!stream_pos->packet_real_index)
246 goto error;
247
248 if (stream_pos->packet_real_index->len <= 0)
249 continue;
250
251 if (type == BT_CLOCK_REAL) {
252 index = &g_array_index(stream_pos->packet_real_index,
253 struct packet_index,
254 stream_pos->packet_real_index->len - 1);
255 } else if (type == BT_CLOCK_CYCLES) {
256 index = &g_array_index(stream_pos->packet_cycles_index,
257 struct packet_index,
258 stream_pos->packet_real_index->len - 1);
259
260 } else {
261 goto error;
262 }
263 if (index->timestamp_end > end)
264 end = index->timestamp_end;
265 }
266 }
267
268 return end;
269
270error:
271 return -1ULL;
272}
273
274/*
275 * Update stream current timestamp
276 */
277static
278void ctf_update_timestamp(struct ctf_stream_definition *stream,
279 struct definition_integer *integer_definition)
280{
281 struct declaration_integer *integer_declaration =
282 integer_definition->declaration;
283 uint64_t oldval, newval, updateval;
284
285 if (unlikely(integer_declaration->len == 64)) {
286 stream->prev_cycles_timestamp = stream->cycles_timestamp;
287 stream->cycles_timestamp = integer_definition->value._unsigned;
288 stream->prev_real_timestamp = ctf_get_real_timestamp(stream,
289 stream->prev_cycles_timestamp);
290 stream->real_timestamp = ctf_get_real_timestamp(stream,
291 stream->cycles_timestamp);
292 return;
293 }
294 /* keep low bits */
295 oldval = stream->cycles_timestamp;
296 oldval &= (1ULL << integer_declaration->len) - 1;
297 newval = integer_definition->value._unsigned;
298 /* Test for overflow by comparing low bits */
299 if (newval < oldval)
300 newval += 1ULL << integer_declaration->len;
301 /* updateval contains old high bits, and new low bits (sum) */
302 updateval = stream->cycles_timestamp;
303 updateval &= ~((1ULL << integer_declaration->len) - 1);
304 updateval += newval;
305 stream->prev_cycles_timestamp = stream->cycles_timestamp;
306 stream->cycles_timestamp = updateval;
307
308 /* convert to real timestamp */
309 stream->prev_real_timestamp = ctf_get_real_timestamp(stream,
310 stream->prev_cycles_timestamp);
311 stream->real_timestamp = ctf_get_real_timestamp(stream,
312 stream->cycles_timestamp);
313}
314
315/*
316 * Print timestamp, rescaling clock frequency to nanoseconds and
317 * applying offsets as needed (unix time).
318 */
319static
320void ctf_print_timestamp_real(FILE *fp,
321 struct ctf_stream_definition *stream,
322 uint64_t timestamp)
323{
324 uint64_t ts_sec = 0, ts_nsec;
325
326 ts_nsec = timestamp;
327
328 /* Add command-line offset in ns*/
329 ts_nsec += opt_clock_offset_ns;
330
331 /* Add command-line offset */
332 ts_sec += opt_clock_offset;
333
334 ts_sec += ts_nsec / NSEC_PER_SEC;
335 ts_nsec = ts_nsec % NSEC_PER_SEC;
336
337 if (!opt_clock_seconds) {
338 struct tm tm;
339 time_t time_s = (time_t) ts_sec;
340
341 if (!opt_clock_gmt) {
342 struct tm *res;
343
344 res = localtime_r(&time_s, &tm);
345 if (!res) {
346 fprintf(stderr, "[warning] Unable to get localtime.\n");
347 goto seconds;
348 }
349 } else {
350 struct tm *res;
351
352 res = gmtime_r(&time_s, &tm);
353 if (!res) {
354 fprintf(stderr, "[warning] Unable to get gmtime.\n");
355 goto seconds;
356 }
357 }
358 if (opt_clock_date) {
359 char timestr[26];
360 size_t res;
361
362 /* Print date and time */
363 res = strftime(timestr, sizeof(timestr),
364 "%F ", &tm);
365 if (!res) {
366 fprintf(stderr, "[warning] Unable to print ascii time.\n");
367 goto seconds;
368 }
369 fprintf(fp, "%s", timestr);
370 }
371 /* Print time in HH:MM:SS.ns */
372 fprintf(fp, "%02d:%02d:%02d.%09" PRIu64,
373 tm.tm_hour, tm.tm_min, tm.tm_sec, ts_nsec);
374 goto end;
375 }
376seconds:
377 fprintf(fp, "%3" PRIu64 ".%09" PRIu64,
378 ts_sec, ts_nsec);
379
380end:
381 return;
382}
383
384/*
385 * Print timestamp, in cycles
386 */
387static
388void ctf_print_timestamp_cycles(FILE *fp,
389 struct ctf_stream_definition *stream,
390 uint64_t timestamp)
391{
392 fprintf(fp, "%020" PRIu64, timestamp);
393}
394
395void ctf_print_timestamp(FILE *fp,
396 struct ctf_stream_definition *stream,
397 uint64_t timestamp)
398{
399 if (opt_clock_cycles) {
400 ctf_print_timestamp_cycles(fp, stream, timestamp);
401 } else {
402 ctf_print_timestamp_real(fp, stream, timestamp);
403 }
404}
405
406static
407void print_uuid(FILE *fp, unsigned char *uuid)
408{
409 int i;
410
411 for (i = 0; i < BABELTRACE_UUID_LEN; i++)
412 fprintf(fp, "%x", (unsigned int) uuid[i]);
413}
414
415void ctf_print_discarded(FILE *fp, struct ctf_stream_definition *stream,
416 int end_stream)
417{
418 fprintf(fp, "[warning] Tracer discarded %" PRIu64 " events %sbetween [",
419 stream->events_discarded,
420 end_stream ? "at end of stream " : "");
421 if (opt_clock_cycles) {
422 ctf_print_timestamp(fp, stream,
423 stream->prev_cycles_timestamp);
424 fprintf(fp, "] and [");
425 ctf_print_timestamp(fp, stream,
426 stream->prev_cycles_timestamp_end);
427 } else {
428 ctf_print_timestamp(fp, stream,
429 stream->prev_real_timestamp);
430 fprintf(fp, "] and [");
431 ctf_print_timestamp(fp, stream,
432 stream->prev_real_timestamp_end);
433 }
434 fprintf(fp, "] in trace UUID ");
435 print_uuid(fp, stream->stream_class->trace->uuid);
436 if (stream->stream_class->trace->parent.path[0])
437 fprintf(fp, ", at path: \"%s\"",
438 stream->stream_class->trace->parent.path);
439
440 fprintf(fp, ", within stream id %" PRIu64, stream->stream_id);
441 if (stream->path[0])
442 fprintf(fp, ", at relative path: \"%s\"", stream->path);
443 fprintf(fp, ". ");
444 fprintf(fp, "You should consider recording a new trace with larger "
445 "buffers or with fewer events enabled.\n");
446 fflush(fp);
447}
448
449static
450int ctf_read_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *stream)
451{
452 struct ctf_stream_pos *pos =
453 container_of(ppos, struct ctf_stream_pos, parent);
454 struct ctf_stream_declaration *stream_class = stream->stream_class;
455 struct ctf_event_definition *event;
456 uint64_t id = 0;
457 int ret;
458
459 /* We need to check for EOF here for empty files. */
460 if (unlikely(pos->offset == EOF))
461 return EOF;
462
463 ctf_pos_get_event(pos);
464
465 /* save the current position as a restore point */
466 pos->last_offset = pos->offset;
467
468 /*
469 * This is the EOF check after we've advanced the position in
470 * ctf_pos_get_event.
471 */
472 if (unlikely(pos->offset == EOF))
473 return EOF;
474 assert(pos->offset < pos->content_size);
475
476 /* Read event header */
477 if (likely(stream->stream_event_header)) {
478 struct definition_integer *integer_definition;
479 struct bt_definition *variant;
480
481 ret = generic_rw(ppos, &stream->stream_event_header->p);
482 if (unlikely(ret))
483 goto error;
484 /* lookup event id */
485 integer_definition = bt_lookup_integer(&stream->stream_event_header->p, "id", FALSE);
486 if (integer_definition) {
487 id = integer_definition->value._unsigned;
488 } else {
489 struct definition_enum *enum_definition;
490
491 enum_definition = bt_lookup_enum(&stream->stream_event_header->p, "id", FALSE);
492 if (enum_definition) {
493 id = enum_definition->integer->value._unsigned;
494 }
495 }
496
497 variant = bt_lookup_variant(&stream->stream_event_header->p, "v");
498 if (variant) {
499 integer_definition = bt_lookup_integer(variant, "id", FALSE);
500 if (integer_definition) {
501 id = integer_definition->value._unsigned;
502 }
503 }
504 stream->event_id = id;
505
506 /* lookup timestamp */
507 stream->has_timestamp = 0;
508 integer_definition = bt_lookup_integer(&stream->stream_event_header->p, "timestamp", FALSE);
509 if (integer_definition) {
510 ctf_update_timestamp(stream, integer_definition);
511 stream->has_timestamp = 1;
512 } else {
513 if (variant) {
514 integer_definition = bt_lookup_integer(variant, "timestamp", FALSE);
515 if (integer_definition) {
516 ctf_update_timestamp(stream, integer_definition);
517 stream->has_timestamp = 1;
518 }
519 }
520 }
521 }
522
523 /* Read stream-declared event context */
524 if (stream->stream_event_context) {
525 ret = generic_rw(ppos, &stream->stream_event_context->p);
526 if (ret)
527 goto error;
528 }
529
530 if (unlikely(id >= stream_class->events_by_id->len)) {
531 fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id);
532 return -EINVAL;
533 }
534 event = g_ptr_array_index(stream->events_by_id, id);
535 if (unlikely(!event)) {
536 fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id);
537 return -EINVAL;
538 }
539
540 /* Read event-declared event context */
541 if (event->event_context) {
542 ret = generic_rw(ppos, &event->event_context->p);
543 if (ret)
544 goto error;
545 }
546
547 /* Read event payload */
548 if (likely(event->event_fields)) {
549 ret = generic_rw(ppos, &event->event_fields->p);
550 if (ret)
551 goto error;
552 }
553
554 if (pos->last_offset == pos->offset) {
555 fprintf(stderr, "[error] Invalid 0 byte event encountered.\n");
556 return -EINVAL;
557 }
558
559 return 0;
560
561error:
562 fprintf(stderr, "[error] Unexpected end of packet. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
563 return ret;
564}
565
566static
567int ctf_write_event(struct bt_stream_pos *pos, struct ctf_stream_definition *stream)
568{
569 struct ctf_stream_declaration *stream_class = stream->stream_class;
570 struct ctf_event_definition *event;
571 uint64_t id;
572 int ret;
573
574 id = stream->event_id;
575
576 /* print event header */
577 if (likely(stream->stream_event_header)) {
578 ret = generic_rw(pos, &stream->stream_event_header->p);
579 if (ret)
580 goto error;
581 }
582
583 /* print stream-declared event context */
584 if (stream->stream_event_context) {
585 ret = generic_rw(pos, &stream->stream_event_context->p);
586 if (ret)
587 goto error;
588 }
589
590 if (unlikely(id >= stream_class->events_by_id->len)) {
591 fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id);
592 return -EINVAL;
593 }
594 event = g_ptr_array_index(stream->events_by_id, id);
595 if (unlikely(!event)) {
596 fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id);
597 return -EINVAL;
598 }
599
600 /* print event-declared event context */
601 if (event->event_context) {
602 ret = generic_rw(pos, &event->event_context->p);
603 if (ret)
604 goto error;
605 }
606
607 /* Read and print event payload */
608 if (likely(event->event_fields)) {
609 ret = generic_rw(pos, &event->event_fields->p);
610 if (ret)
611 goto error;
612 }
613
614 return 0;
615
616error:
617 fprintf(stderr, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
618 return ret;
619}
620
621int ctf_init_pos(struct ctf_stream_pos *pos, struct bt_trace_descriptor *trace,
622 int fd, int open_flags)
623{
624 pos->fd = fd;
625 if (fd >= 0) {
626 pos->packet_cycles_index = g_array_new(FALSE, TRUE,
627 sizeof(struct packet_index));
628 pos->packet_real_index = g_array_new(FALSE, TRUE,
629 sizeof(struct packet_index));
630 } else {
631 pos->packet_cycles_index = NULL;
632 pos->packet_real_index = NULL;
633 }
634 switch (open_flags & O_ACCMODE) {
635 case O_RDONLY:
636 pos->prot = PROT_READ;
637 pos->flags = MAP_PRIVATE;
638 pos->parent.rw_table = read_dispatch_table;
639 pos->parent.event_cb = ctf_read_event;
640 pos->parent.trace = trace;
641 break;
642 case O_RDWR:
643 pos->prot = PROT_WRITE; /* Write has priority */
644 pos->flags = MAP_SHARED;
645 pos->parent.rw_table = write_dispatch_table;
646 pos->parent.event_cb = ctf_write_event;
647 pos->parent.trace = trace;
648 if (fd >= 0)
649 ctf_packet_seek(&pos->parent, 0, SEEK_SET); /* position for write */
650 break;
651 default:
652 assert(0);
653 }
654 return 0;
655}
656
657int ctf_fini_pos(struct ctf_stream_pos *pos)
658{
659 if (pos->prot == PROT_WRITE && pos->content_size_loc)
660 *pos->content_size_loc = pos->offset;
661 if (pos->base_mma) {
662 int ret;
663
664 /* unmap old base */
665 ret = munmap_align(pos->base_mma);
666 if (ret) {
667 fprintf(stderr, "[error] Unable to unmap old base: %s.\n",
668 strerror(errno));
669 return -1;
670 }
671 }
672 if (pos->packet_cycles_index)
673 (void) g_array_free(pos->packet_cycles_index, TRUE);
674 if (pos->packet_real_index)
675 (void) g_array_free(pos->packet_real_index, TRUE);
676 return 0;
677}
678
679/*
680 * for SEEK_CUR: go to next packet.
681 * for SEEK_SET: go to packet numer (index).
682 */
683void ctf_packet_seek(struct bt_stream_pos *stream_pos, size_t index, int whence)
684{
685 struct ctf_stream_pos *pos =
686 container_of(stream_pos, struct ctf_stream_pos, parent);
687 struct ctf_file_stream *file_stream =
688 container_of(pos, struct ctf_file_stream, pos);
689 int ret;
690 off_t off;
691 struct packet_index *packet_index;
692
693 switch (whence) {
694 case SEEK_CUR:
695 case SEEK_SET: /* Fall-through */
696 break; /* OK */
697 default:
698 assert(0);
699 }
700
701 if (pos->prot == PROT_WRITE && pos->content_size_loc)
702 *pos->content_size_loc = pos->offset;
703
704 if (pos->base_mma) {
705 /* unmap old base */
706 ret = munmap_align(pos->base_mma);
707 if (ret) {
708 fprintf(stderr, "[error] Unable to unmap old base: %s.\n",
709 strerror(errno));
710 assert(0);
711 }
712 pos->base_mma = NULL;
713 }
714
715 /*
716 * The caller should never ask for ctf_move_pos across packets,
717 * except to get exactly at the beginning of the next packet.
718 */
719 if (pos->prot == PROT_WRITE) {
720 switch (whence) {
721 case SEEK_CUR:
722 /* The writer will add padding */
723 pos->mmap_offset += pos->packet_size / CHAR_BIT;
724 break;
725 case SEEK_SET:
726 assert(index == 0); /* only seek supported for now */
727 pos->cur_index = 0;
728 break;
729 default:
730 assert(0);
731 }
732 pos->content_size = -1U; /* Unknown at this point */
733 pos->packet_size = WRITE_PACKET_LEN;
734 off = posix_fallocate(pos->fd, pos->mmap_offset,
735 pos->packet_size / CHAR_BIT);
736 assert(off >= 0);
737 pos->offset = 0;
738 } else {
739 read_next_packet:
740 switch (whence) {
741 case SEEK_CUR:
742 {
743 uint64_t events_discarded_diff;
744
745 if (pos->offset == EOF) {
746 return;
747 }
748 assert(pos->cur_index < pos->packet_cycles_index->len);
749 assert(pos->cur_index < pos->packet_real_index->len);
750
751 /* For printing discarded event count */
752 packet_index = &g_array_index(pos->packet_cycles_index,
753 struct packet_index, pos->cur_index);
754 file_stream->parent.prev_cycles_timestamp_end =
755 packet_index->timestamp_end;
756 file_stream->parent.prev_cycles_timestamp =
757 packet_index->timestamp_begin;
758
759 packet_index = &g_array_index(pos->packet_real_index,
760 struct packet_index, pos->cur_index);
761 file_stream->parent.prev_real_timestamp_end =
762 packet_index->timestamp_end;
763 file_stream->parent.prev_real_timestamp =
764 packet_index->timestamp_begin;
765
766 events_discarded_diff = packet_index->events_discarded;
767 if (pos->cur_index > 0) {
768 packet_index = &g_array_index(pos->packet_real_index,
769 struct packet_index,
770 pos->cur_index - 1);
771 events_discarded_diff -= packet_index->events_discarded;
772 /*
773 * Deal with 32-bit wrap-around if the
774 * tracer provided a 32-bit field.
775 */
776 if (packet_index->events_discarded_len == 32) {
777 events_discarded_diff = (uint32_t) events_discarded_diff;
778 }
779 }
780 file_stream->parent.events_discarded = events_discarded_diff;
781 file_stream->parent.prev_real_timestamp = file_stream->parent.real_timestamp;
782 file_stream->parent.prev_cycles_timestamp = file_stream->parent.cycles_timestamp;
783 /* The reader will expect us to skip padding */
784 ++pos->cur_index;
785 break;
786 }
787 case SEEK_SET:
788 if (index >= pos->packet_cycles_index->len) {
789 pos->offset = EOF;
790 return;
791 }
792 packet_index = &g_array_index(pos->packet_cycles_index,
793 struct packet_index, index);
794 pos->last_events_discarded = packet_index->events_discarded;
795 pos->cur_index = index;
796 file_stream->parent.prev_real_timestamp = 0;
797 file_stream->parent.prev_real_timestamp_end = 0;
798 file_stream->parent.prev_cycles_timestamp = 0;
799 file_stream->parent.prev_cycles_timestamp_end = 0;
800 break;
801 default:
802 assert(0);
803 }
804 if (pos->cur_index >= pos->packet_real_index->len) {
805 /*
806 * We need to check if we are in trace read or
807 * called from packet indexing. In this last
808 * case, the collection is not there, so we
809 * cannot print the timestamps.
810 */
811 if ((&file_stream->parent)->stream_class->trace->parent.collection) {
812 /*
813 * When a stream reaches the end of the
814 * file, we need to show the number of
815 * events discarded ourselves, because
816 * there is no next event scheduled to
817 * be printed in the output.
818 */
819 if (file_stream->parent.events_discarded) {
820 fflush(stdout);
821 ctf_print_discarded(stderr,
822 &file_stream->parent,
823 1);
824 file_stream->parent.events_discarded = 0;
825 }
826 }
827 pos->offset = EOF;
828 return;
829 }
830 packet_index = &g_array_index(pos->packet_cycles_index,
831 struct packet_index,
832 pos->cur_index);
833 file_stream->parent.cycles_timestamp = packet_index->timestamp_begin;
834
835 packet_index = &g_array_index(pos->packet_real_index,
836 struct packet_index,
837 pos->cur_index);
838 file_stream->parent.real_timestamp = packet_index->timestamp_begin;
839 pos->mmap_offset = packet_index->offset;
840
841 /* Lookup context/packet size in index */
842 pos->content_size = packet_index->content_size;
843 pos->packet_size = packet_index->packet_size;
844 if (packet_index->data_offset < packet_index->content_size) {
845 pos->offset = 0; /* will read headers */
846 } else if (packet_index->data_offset == packet_index->content_size) {
847 /* empty packet */
848 pos->offset = packet_index->data_offset;
849 whence = SEEK_CUR;
850 goto read_next_packet;
851 } else {
852 pos->offset = EOF;
853 return;
854 }
855 }
856 /* map new base. Need mapping length from header. */
857 pos->base_mma = mmap_align(pos->packet_size / CHAR_BIT, pos->prot,
858 pos->flags, pos->fd, pos->mmap_offset);
859 if (pos->base_mma == MAP_FAILED) {
860 fprintf(stderr, "[error] mmap error %s.\n",
861 strerror(errno));
862 assert(0);
863 }
864
865 /* update trace_packet_header and stream_packet_context */
866 if (pos->prot != PROT_WRITE && file_stream->parent.trace_packet_header) {
867 /* Read packet header */
868 ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p);
869 assert(!ret);
870 }
871 if (pos->prot != PROT_WRITE && file_stream->parent.stream_packet_context) {
872 /* Read packet context */
873 ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p);
874 assert(!ret);
875 }
876}
877
878static
879int packet_metadata(struct ctf_trace *td, FILE *fp)
880{
881 uint32_t magic;
882 size_t len;
883 int ret = 0;
884
885 len = fread(&magic, sizeof(magic), 1, fp);
886 if (len != 1) {
887 goto end;
888 }
889 if (magic == TSDL_MAGIC) {
890 ret = 1;
891 td->byte_order = BYTE_ORDER;
892 CTF_TRACE_SET_FIELD(td, byte_order);
893 } else if (magic == GUINT32_SWAP_LE_BE(TSDL_MAGIC)) {
894 ret = 1;
895 td->byte_order = (BYTE_ORDER == BIG_ENDIAN) ?
896 LITTLE_ENDIAN : BIG_ENDIAN;
897 CTF_TRACE_SET_FIELD(td, byte_order);
898 }
899end:
900 rewind(fp);
901 return ret;
902}
903
904/*
905 * Returns 0 on success, -1 on error.
906 */
907static
908int check_version(unsigned int major, unsigned int minor)
909{
910 switch (major) {
911 case 1:
912 switch (minor) {
913 case 8:
914 return 0;
915 default:
916 goto warning;
917 }
918 default:
919 goto warning;
920
921 }
922
923 /* eventually return an error instead of warning */
924warning:
925 fprintf(stderr, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n",
926 major, minor);
927 return 0;
928}
929
930static
931int ctf_open_trace_metadata_packet_read(struct ctf_trace *td, FILE *in,
932 FILE *out)
933{
934 struct metadata_packet_header header;
935 size_t readlen, writelen, toread;
936 char buf[4096 + 1]; /* + 1 for debug-mode \0 */
937 int ret = 0;
938
939 readlen = fread(&header, header_sizeof(header), 1, in);
940 if (readlen < 1)
941 return -EINVAL;
942
943 if (td->byte_order != BYTE_ORDER) {
944 header.magic = GUINT32_SWAP_LE_BE(header.magic);
945 header.checksum = GUINT32_SWAP_LE_BE(header.checksum);
946 header.content_size = GUINT32_SWAP_LE_BE(header.content_size);
947 header.packet_size = GUINT32_SWAP_LE_BE(header.packet_size);
948 }
949 if (header.checksum)
950 fprintf(stderr, "[warning] checksum verification not supported yet.\n");
951 if (header.compression_scheme) {
952 fprintf(stderr, "[error] compression (%u) not supported yet.\n",
953 header.compression_scheme);
954 return -EINVAL;
955 }
956 if (header.encryption_scheme) {
957 fprintf(stderr, "[error] encryption (%u) not supported yet.\n",
958 header.encryption_scheme);
959 return -EINVAL;
960 }
961 if (header.checksum_scheme) {
962 fprintf(stderr, "[error] checksum (%u) not supported yet.\n",
963 header.checksum_scheme);
964 return -EINVAL;
965 }
966 if (check_version(header.major, header.minor) < 0)
967 return -EINVAL;
968 if (!CTF_TRACE_FIELD_IS_SET(td, uuid)) {
969 memcpy(td->uuid, header.uuid, sizeof(header.uuid));
970 CTF_TRACE_SET_FIELD(td, uuid);
971 } else {
972 if (babeltrace_uuid_compare(header.uuid, td->uuid))
973 return -EINVAL;
974 }
975
976 if ((header.content_size / CHAR_BIT) < header_sizeof(header))
977 return -EINVAL;
978
979 toread = (header.content_size / CHAR_BIT) - header_sizeof(header);
980
981 for (;;) {
982 readlen = fread(buf, sizeof(char), min(sizeof(buf) - 1, toread), in);
983 if (ferror(in)) {
984 ret = -EINVAL;
985 break;
986 }
987 if (babeltrace_debug) {
988 buf[readlen] = '\0';
989 fprintf(stderr, "[debug] metadata packet read: %s\n",
990 buf);
991 }
992
993 writelen = fwrite(buf, sizeof(char), readlen, out);
994 if (writelen < readlen) {
995 ret = -EIO;
996 break;
997 }
998 if (ferror(out)) {
999 ret = -EINVAL;
1000 break;
1001 }
1002 toread -= readlen;
1003 if (!toread) {
1004 ret = 0; /* continue reading next packet */
1005 goto read_padding;
1006 }
1007 }
1008 return ret;
1009
1010read_padding:
1011 toread = (header.packet_size - header.content_size) / CHAR_BIT;
1012 ret = fseek(in, toread, SEEK_CUR);
1013 if (ret < 0) {
1014 fprintf(stderr, "[warning] Missing padding at end of file\n");
1015 ret = 0;
1016 }
1017 return ret;
1018}
1019
1020static
1021int ctf_open_trace_metadata_stream_read(struct ctf_trace *td, FILE **fp,
1022 char **buf)
1023{
1024 FILE *in, *out;
1025 size_t size, buflen;
1026 int ret;
1027
1028 in = *fp;
1029 /*
1030 * Using strlen on *buf instead of size of open_memstream
1031 * because its size includes garbage at the end (after final
1032 * \0). This is the allocated size, not the actual string size.
1033 */
1034 out = babeltrace_open_memstream(buf, &size);
1035 if (out == NULL) {
1036 perror("Metadata open_memstream");
1037 return -errno;
1038 }
1039 for (;;) {
1040 ret = ctf_open_trace_metadata_packet_read(td, in, out);
1041 if (ret) {
1042 break;
1043 }
1044 if (feof(in)) {
1045 ret = 0;
1046 break;
1047 }
1048 }
1049 /* close to flush the buffer */
1050 ret = babeltrace_close_memstream(buf, &size, out);
1051 if (ret < 0) {
1052 int closeret;
1053
1054 perror("babeltrace_flush_memstream");
1055 ret = -errno;
1056 closeret = fclose(in);
1057 if (closeret) {
1058 perror("Error in fclose");
1059 }
1060 return ret;
1061 }
1062 ret = fclose(in);
1063 if (ret) {
1064 perror("Error in fclose");
1065 }
1066 /* open for reading */
1067 buflen = strlen(*buf);
1068 if (!buflen) {
1069 *fp = NULL;
1070 return -ENOENT;
1071 }
1072 *fp = babeltrace_fmemopen(*buf, buflen, "rb");
1073 if (!*fp) {
1074 perror("Metadata fmemopen");
1075 return -errno;
1076 }
1077 return 0;
1078}
1079
1080static
1081int ctf_open_trace_metadata_read(struct ctf_trace *td,
1082 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
1083 int whence), FILE *metadata_fp)
1084{
1085 struct ctf_scanner *scanner;
1086 struct ctf_file_stream *metadata_stream;
1087 FILE *fp;
1088 char *buf = NULL;
1089 int ret = 0, closeret;
1090
1091 metadata_stream = g_new0(struct ctf_file_stream, 1);
1092 metadata_stream->pos.last_offset = LAST_OFFSET_POISON;
1093
1094 if (packet_seek) {
1095 metadata_stream->pos.packet_seek = packet_seek;
1096 } else {
1097 fprintf(stderr, "[error] packet_seek function undefined.\n");
1098 ret = -1;
1099 goto end_free;
1100 }
1101
1102 if (metadata_fp) {
1103 fp = metadata_fp;
1104 metadata_stream->pos.fd = -1;
1105 } else {
1106 td->metadata = &metadata_stream->parent;
1107 metadata_stream->pos.fd = openat(td->dirfd, "metadata", O_RDONLY);
1108 if (metadata_stream->pos.fd < 0) {
1109 fprintf(stderr, "Unable to open metadata.\n");
1110 ret = -1;
1111 goto end_free;
1112 }
1113
1114 fp = fdopen(metadata_stream->pos.fd, "r");
1115 if (!fp) {
1116 fprintf(stderr, "[error] Unable to open metadata stream.\n");
1117 perror("Metadata stream open");
1118 ret = -errno;
1119 goto end_stream;
1120 }
1121 /* fd now belongs to fp */
1122 metadata_stream->pos.fd = -1;
1123 }
1124 if (babeltrace_debug)
1125 yydebug = 1;
1126
1127 if (packet_metadata(td, fp)) {
1128 ret = ctf_open_trace_metadata_stream_read(td, &fp, &buf);
1129 if (ret) {
1130 /* Warn about empty metadata */
1131 fprintf(stderr, "[warning] Empty metadata.\n");
1132 goto end_packet_read;
1133 }
1134 td->metadata_string = buf;
1135 td->metadata_packetized = 1;
1136 } else {
1137 unsigned int major, minor;
1138 ssize_t nr_items;
1139
1140 td->byte_order = BYTE_ORDER;
1141
1142 /* Check text-only metadata header and version */
1143 nr_items = fscanf(fp, "/* CTF %u.%u", &major, &minor);
1144 if (nr_items < 2)
1145 fprintf(stderr, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n");
1146 if (check_version(major, minor) < 0) {
1147 ret = -EINVAL;
1148 goto end_packet_read;
1149 }
1150 rewind(fp);
1151 }
1152
1153 scanner = ctf_scanner_alloc(fp);
1154 if (!scanner) {
1155 fprintf(stderr, "[error] Error allocating scanner\n");
1156 ret = -ENOMEM;
1157 goto end_scanner_alloc;
1158 }
1159 ret = ctf_scanner_append_ast(scanner);
1160 if (ret) {
1161 fprintf(stderr, "[error] Error creating AST\n");
1162 goto end;
1163 }
1164
1165 if (babeltrace_debug) {
1166 ret = ctf_visitor_print_xml(stderr, 0, &scanner->ast->root);
1167 if (ret) {
1168 fprintf(stderr, "[error] Error visiting AST for XML output\n");
1169 goto end;
1170 }
1171 }
1172
1173 ret = ctf_visitor_semantic_check(stderr, 0, &scanner->ast->root);
1174 if (ret) {
1175 fprintf(stderr, "[error] Error in CTF semantic validation %d\n", ret);
1176 goto end;
1177 }
1178 ret = ctf_visitor_construct_metadata(stderr, 0, &scanner->ast->root,
1179 td, td->byte_order);
1180 if (ret) {
1181 fprintf(stderr, "[error] Error in CTF metadata constructor %d\n", ret);
1182 goto end;
1183 }
1184end:
1185 ctf_scanner_free(scanner);
1186end_scanner_alloc:
1187end_packet_read:
1188 if (fp) {
1189 closeret = fclose(fp);
1190 if (closeret) {
1191 perror("Error on fclose");
1192 }
1193 }
1194end_stream:
1195 if (metadata_stream->pos.fd >= 0) {
1196 closeret = close(metadata_stream->pos.fd);
1197 if (closeret) {
1198 perror("Error on metadata stream fd close");
1199 }
1200 }
1201end_free:
1202 if (ret)
1203 g_free(metadata_stream);
1204 return ret;
1205}
1206
1207static
1208struct ctf_event_definition *create_event_definitions(struct ctf_trace *td,
1209 struct ctf_stream_definition *stream,
1210 struct ctf_event_declaration *event)
1211{
1212 struct ctf_event_definition *stream_event = g_new0(struct ctf_event_definition, 1);
1213
1214 if (event->context_decl) {
1215 struct bt_definition *definition =
1216 event->context_decl->p.definition_new(&event->context_decl->p,
1217 stream->parent_def_scope, 0, 0, "event.context");
1218 if (!definition) {
1219 goto error;
1220 }
1221 stream_event->event_context = container_of(definition,
1222 struct definition_struct, p);
1223 stream->parent_def_scope = stream_event->event_context->p.scope;
1224 }
1225 if (event->fields_decl) {
1226 struct bt_definition *definition =
1227 event->fields_decl->p.definition_new(&event->fields_decl->p,
1228 stream->parent_def_scope, 0, 0, "event.fields");
1229 if (!definition) {
1230 goto error;
1231 }
1232 stream_event->event_fields = container_of(definition,
1233 struct definition_struct, p);
1234 stream->parent_def_scope = stream_event->event_fields->p.scope;
1235 }
1236 stream_event->stream = stream;
1237 return stream_event;
1238
1239error:
1240 if (stream_event->event_fields)
1241 bt_definition_unref(&stream_event->event_fields->p);
1242 if (stream_event->event_context)
1243 bt_definition_unref(&stream_event->event_context->p);
1244 fprintf(stderr, "[error] Unable to create event definition for event \"%s\".\n",
1245 g_quark_to_string(event->name));
1246 return NULL;
1247}
1248
1249static
1250int create_stream_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream)
1251{
1252 struct ctf_stream_declaration *stream_class;
1253 int ret;
1254 int i;
1255
1256 if (stream->stream_definitions_created)
1257 return 0;
1258
1259 stream_class = stream->stream_class;
1260
1261 if (stream_class->packet_context_decl) {
1262 struct bt_definition *definition =
1263 stream_class->packet_context_decl->p.definition_new(&stream_class->packet_context_decl->p,
1264 stream->parent_def_scope, 0, 0, "stream.packet.context");
1265 if (!definition) {
1266 ret = -EINVAL;
1267 goto error;
1268 }
1269 stream->stream_packet_context = container_of(definition,
1270 struct definition_struct, p);
1271 stream->parent_def_scope = stream->stream_packet_context->p.scope;
1272 }
1273 if (stream_class->event_header_decl) {
1274 struct bt_definition *definition =
1275 stream_class->event_header_decl->p.definition_new(&stream_class->event_header_decl->p,
1276 stream->parent_def_scope, 0, 0, "stream.event.header");
1277 if (!definition) {
1278 ret = -EINVAL;
1279 goto error;
1280 }
1281 stream->stream_event_header =
1282 container_of(definition, struct definition_struct, p);
1283 stream->parent_def_scope = stream->stream_event_header->p.scope;
1284 }
1285 if (stream_class->event_context_decl) {
1286 struct bt_definition *definition =
1287 stream_class->event_context_decl->p.definition_new(&stream_class->event_context_decl->p,
1288 stream->parent_def_scope, 0, 0, "stream.event.context");
1289 if (!definition) {
1290 ret = -EINVAL;
1291 goto error;
1292 }
1293 stream->stream_event_context =
1294 container_of(definition, struct definition_struct, p);
1295 stream->parent_def_scope = stream->stream_event_context->p.scope;
1296 }
1297 stream->events_by_id = g_ptr_array_new();
1298 g_ptr_array_set_size(stream->events_by_id, stream_class->events_by_id->len);
1299 for (i = 0; i < stream->events_by_id->len; i++) {
1300 struct ctf_event_declaration *event = g_ptr_array_index(stream_class->events_by_id, i);
1301 struct ctf_event_definition *stream_event;
1302
1303 if (!event)
1304 continue;
1305 stream_event = create_event_definitions(td, stream, event);
1306 if (!stream_event) {
1307 ret = -EINVAL;
1308 goto error_event;
1309 }
1310 g_ptr_array_index(stream->events_by_id, i) = stream_event;
1311 }
1312 return 0;
1313
1314error_event:
1315 for (i = 0; i < stream->events_by_id->len; i++) {
1316 struct ctf_event_definition *stream_event = g_ptr_array_index(stream->events_by_id, i);
1317 if (stream_event)
1318 g_free(stream_event);
1319 }
1320 g_ptr_array_free(stream->events_by_id, TRUE);
1321error:
1322 if (stream->stream_event_context)
1323 bt_definition_unref(&stream->stream_event_context->p);
1324 if (stream->stream_event_header)
1325 bt_definition_unref(&stream->stream_event_header->p);
1326 if (stream->stream_packet_context)
1327 bt_definition_unref(&stream->stream_packet_context->p);
1328 fprintf(stderr, "[error] Unable to create stream (%" PRIu64 ") definitions: %s\n",
1329 stream_class->stream_id, strerror(-ret));
1330 return ret;
1331}
1332
1333static
1334int stream_assign_class(struct ctf_trace *td,
1335 struct ctf_file_stream *file_stream,
1336 uint64_t stream_id)
1337{
1338 struct ctf_stream_declaration *stream;
1339 int ret;
1340
1341 file_stream->parent.stream_id = stream_id;
1342 if (stream_id >= td->streams->len) {
1343 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
1344 return -EINVAL;
1345 }
1346 stream = g_ptr_array_index(td->streams, stream_id);
1347 if (!stream) {
1348 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
1349 return -EINVAL;
1350 }
1351 file_stream->parent.stream_class = stream;
1352 ret = create_stream_definitions(td, &file_stream->parent);
1353 if (ret)
1354 return ret;
1355 return 0;
1356}
1357
1358static
1359int create_stream_one_packet_index(struct ctf_stream_pos *pos,
1360 struct ctf_trace *td,
1361 struct ctf_file_stream *file_stream,
1362 size_t filesize)
1363{
1364 struct packet_index packet_index;
1365 uint64_t stream_id = 0;
1366 uint64_t packet_map_len = DEFAULT_HEADER_LEN, tmp_map_len;
1367 int first_packet = 0;
1368 int len_index;
1369 int ret;
1370
1371begin:
1372 if (!pos->mmap_offset) {
1373 first_packet = 1;
1374 }
1375
1376 if (filesize - pos->mmap_offset < (packet_map_len >> LOG2_CHAR_BIT)) {
1377 packet_map_len = (filesize - pos->mmap_offset) << LOG2_CHAR_BIT;
1378 }
1379
1380 if (pos->base_mma) {
1381 /* unmap old base */
1382 ret = munmap_align(pos->base_mma);
1383 if (ret) {
1384 fprintf(stderr, "[error] Unable to unmap old base: %s.\n",
1385 strerror(errno));
1386 return ret;
1387 }
1388 pos->base_mma = NULL;
1389 }
1390 /* map new base. Need mapping length from header. */
1391 pos->base_mma = mmap_align(packet_map_len >> LOG2_CHAR_BIT, PROT_READ,
1392 MAP_PRIVATE, pos->fd, pos->mmap_offset);
1393 assert(pos->base_mma != MAP_FAILED);
1394 /*
1395 * Use current mapping size as temporary content and packet
1396 * size.
1397 */
1398 pos->content_size = packet_map_len;
1399 pos->packet_size = packet_map_len;
1400 pos->offset = 0; /* Position of the packet header */
1401
1402 packet_index.offset = pos->mmap_offset;
1403 packet_index.content_size = 0;
1404 packet_index.packet_size = 0;
1405 packet_index.timestamp_begin = 0;
1406 packet_index.timestamp_end = 0;
1407 packet_index.events_discarded = 0;
1408 packet_index.events_discarded_len = 0;
1409
1410 /* read and check header, set stream id (and check) */
1411 if (file_stream->parent.trace_packet_header) {
1412 /* Read packet header */
1413 ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p);
1414 if (ret) {
1415 if (ret == -EFAULT)
1416 goto retry;
1417 fprintf(stderr, "[error] Unable to read packet header: %s\n", strerror(-ret));
1418 return ret;
1419 }
1420 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("magic"));
1421 if (len_index >= 0) {
1422 struct bt_definition *field;
1423 uint64_t magic;
1424
1425 field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
1426 magic = bt_get_unsigned_int(field);
1427 if (magic != CTF_MAGIC) {
1428 fprintf(stderr, "[error] Invalid magic number 0x%" PRIX64 " at packet %u (file offset %zd).\n",
1429 magic,
1430 file_stream->pos.packet_cycles_index->len,
1431 (ssize_t) pos->mmap_offset);
1432 return -EINVAL;
1433 }
1434 }
1435
1436 /* check uuid */
1437 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("uuid"));
1438 if (len_index >= 0) {
1439 struct definition_array *defarray;
1440 struct bt_definition *field;
1441 uint64_t i;
1442 uint8_t uuidval[BABELTRACE_UUID_LEN];
1443
1444 field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
1445 assert(field->declaration->id == CTF_TYPE_ARRAY);
1446 defarray = container_of(field, struct definition_array, p);
1447 assert(bt_array_len(defarray) == BABELTRACE_UUID_LEN);
1448
1449 for (i = 0; i < BABELTRACE_UUID_LEN; i++) {
1450 struct bt_definition *elem;
1451
1452 elem = bt_array_index(defarray, i);
1453 uuidval[i] = bt_get_unsigned_int(elem);
1454 }
1455 ret = babeltrace_uuid_compare(td->uuid, uuidval);
1456 if (ret) {
1457 fprintf(stderr, "[error] Unique Universal Identifiers do not match.\n");
1458 return -EINVAL;
1459 }
1460 }
1461
1462 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("stream_id"));
1463 if (len_index >= 0) {
1464 struct bt_definition *field;
1465
1466 field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
1467 stream_id = bt_get_unsigned_int(field);
1468 }
1469 }
1470
1471 if (!first_packet && file_stream->parent.stream_id != stream_id) {
1472 fprintf(stderr, "[error] Stream ID is changing within a stream: expecting %" PRIu64 ", but packet has %" PRIu64 "\n",
1473 stream_id,
1474 file_stream->parent.stream_id);
1475 return -EINVAL;
1476 }
1477 if (first_packet) {
1478 ret = stream_assign_class(td, file_stream, stream_id);
1479 if (ret)
1480 return ret;
1481 }
1482
1483 if (file_stream->parent.stream_packet_context) {
1484 /* Read packet context */
1485 ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p);
1486 if (ret) {
1487 if (ret == -EFAULT)
1488 goto retry;
1489 fprintf(stderr, "[error] Unable to read packet context: %s\n", strerror(-ret));
1490 return ret;
1491 }
1492 /* read packet size from header */
1493 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("packet_size"));
1494 if (len_index >= 0) {
1495 struct bt_definition *field;
1496
1497 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1498 packet_index.packet_size = bt_get_unsigned_int(field);
1499 } else {
1500 /* Use file size for packet size */
1501 packet_index.packet_size = filesize * CHAR_BIT;
1502 }
1503
1504 /* read content size from header */
1505 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("content_size"));
1506 if (len_index >= 0) {
1507 struct bt_definition *field;
1508
1509 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1510 packet_index.content_size = bt_get_unsigned_int(field);
1511 } else {
1512 /* Use packet size if non-zero, else file size */
1513 packet_index.content_size = packet_index.packet_size ? : filesize * CHAR_BIT;
1514 }
1515
1516 /* read timestamp begin from header */
1517 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_begin"));
1518 if (len_index >= 0) {
1519 struct bt_definition *field;
1520
1521 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1522 packet_index.timestamp_begin = bt_get_unsigned_int(field);
1523 if (file_stream->parent.stream_class->trace->parent.collection) {
1524 packet_index.timestamp_begin =
1525 ctf_get_real_timestamp(
1526 &file_stream->parent,
1527 packet_index.timestamp_begin);
1528 }
1529 }
1530
1531 /* read timestamp end from header */
1532 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_end"));
1533 if (len_index >= 0) {
1534 struct bt_definition *field;
1535
1536 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1537 packet_index.timestamp_end = bt_get_unsigned_int(field);
1538 if (file_stream->parent.stream_class->trace->parent.collection) {
1539 packet_index.timestamp_end =
1540 ctf_get_real_timestamp(
1541 &file_stream->parent,
1542 packet_index.timestamp_end);
1543 }
1544 }
1545
1546 /* read events discarded from header */
1547 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("events_discarded"));
1548 if (len_index >= 0) {
1549 struct bt_definition *field;
1550
1551 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1552 packet_index.events_discarded = bt_get_unsigned_int(field);
1553 packet_index.events_discarded_len = bt_get_int_len(field);
1554 }
1555 } else {
1556 /* Use file size for packet size */
1557 packet_index.packet_size = filesize * CHAR_BIT;
1558 /* Use packet size if non-zero, else file size */
1559 packet_index.content_size = packet_index.packet_size ? : filesize * CHAR_BIT;
1560 }
1561
1562 /* Validate content size and packet size values */
1563 if (packet_index.content_size > packet_index.packet_size) {
1564 fprintf(stderr, "[error] Content size (%" PRIu64 " bits) is larger than packet size (%" PRIu64 " bits).\n",
1565 packet_index.content_size, packet_index.packet_size);
1566 return -EINVAL;
1567 }
1568
1569 if (packet_index.packet_size > ((uint64_t) filesize - packet_index.offset) * CHAR_BIT) {
1570 fprintf(stderr, "[error] Packet size (%" PRIu64 " bits) is larger than remaining file size (%" PRIu64 " bits).\n",
1571 packet_index.packet_size, ((uint64_t) filesize - packet_index.offset) * CHAR_BIT);
1572 return -EINVAL;
1573 }
1574
1575 if ((packet_index.packet_size >> LOG2_CHAR_BIT) == 0) {
1576 fprintf(stderr, "[error] Invalid CTF stream: packet size needs to be at least one byte\n");
1577 return -EINVAL;
1578 }
1579
1580 /* Save position after header and context */
1581 packet_index.data_offset = pos->offset;
1582
1583 /* add index to packet array */
1584 g_array_append_val(file_stream->pos.packet_cycles_index, packet_index);
1585
1586 pos->mmap_offset += packet_index.packet_size >> LOG2_CHAR_BIT;
1587
1588 return 0;
1589
1590 /* Retry with larger mapping */
1591retry:
1592 if (packet_map_len == ((filesize - pos->mmap_offset) << LOG2_CHAR_BIT)) {
1593 /*
1594 * Reached EOF, but still expecting header/context data.
1595 */
1596 fprintf(stderr, "[error] Reached end of file, but still expecting header or context fields.\n");
1597 return -EFAULT;
1598 }
1599 /* Double the mapping len, and retry */
1600 tmp_map_len = packet_map_len << 1;
1601 if (tmp_map_len >> 1 != packet_map_len) {
1602 /* Overflow */
1603 fprintf(stderr, "[error] Packet mapping length overflow\n");
1604 return -EFAULT;
1605 }
1606 packet_map_len = tmp_map_len;
1607 goto begin;
1608}
1609
1610static
1611int create_stream_packet_index(struct ctf_trace *td,
1612 struct ctf_file_stream *file_stream)
1613{
1614 struct ctf_stream_pos *pos;
1615 struct stat filestats;
1616 int ret;
1617
1618 pos = &file_stream->pos;
1619
1620 ret = fstat(pos->fd, &filestats);
1621 if (ret < 0)
1622 return ret;
1623
1624 /* Deal with empty files */
1625 if (!filestats.st_size) {
1626 if (file_stream->parent.trace_packet_header
1627 || file_stream->parent.stream_packet_context) {
1628 /*
1629 * We expect a trace packet header and/or stream packet
1630 * context. Since a trace needs to have at least one
1631 * packet, empty files are therefore not accepted.
1632 */
1633 fprintf(stderr, "[error] Encountered an empty file, but expecting a trace packet header.\n");
1634 return -EINVAL;
1635 } else {
1636 /*
1637 * Without trace packet header nor stream packet
1638 * context, a one-packet trace can indeed be empty. This
1639 * is only valid if there is only one stream class: 0.
1640 */
1641 ret = stream_assign_class(td, file_stream, 0);
1642 if (ret)
1643 return ret;
1644 return 0;
1645 }
1646 }
1647
1648 for (pos->mmap_offset = 0; pos->mmap_offset < filestats.st_size; ) {
1649 ret = create_stream_one_packet_index(pos, td, file_stream,
1650 filestats.st_size);
1651 if (ret)
1652 return ret;
1653 }
1654 return 0;
1655}
1656
1657static
1658int create_trace_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream)
1659{
1660 int ret;
1661
1662 if (td->packet_header_decl) {
1663 struct bt_definition *definition =
1664 td->packet_header_decl->p.definition_new(&td->packet_header_decl->p,
1665 stream->parent_def_scope, 0, 0, "trace.packet.header");
1666 if (!definition) {
1667 ret = -EINVAL;
1668 goto error;
1669 }
1670 stream->trace_packet_header =
1671 container_of(definition, struct definition_struct, p);
1672 stream->parent_def_scope = stream->trace_packet_header->p.scope;
1673 }
1674
1675 return 0;
1676
1677error:
1678 fprintf(stderr, "[error] Unable to create trace definitions: %s\n", strerror(-ret));
1679 return ret;
1680}
1681
1682static
1683int import_stream_packet_index(struct ctf_trace *td,
1684 struct ctf_file_stream *file_stream)
1685{
1686 struct ctf_stream_declaration *stream;
1687 struct ctf_stream_pos *pos;
1688 struct ctf_packet_index ctf_index;
1689 struct ctf_packet_index_file_hdr index_hdr;
1690 struct packet_index index;
1691 int index_read;
1692 int ret = 0;
1693 int first_packet = 1;
1694 size_t len;
1695
1696 pos = &file_stream->pos;
1697
1698 len = fread(&index_hdr, sizeof(index_hdr), 1, pos->index_fp);
1699 if (len != 1) {
1700 perror("read index file header");
1701 goto error;
1702 }
1703
1704 /* Check the index header */
1705 if (be32toh(index_hdr.magic) != CTF_INDEX_MAGIC) {
1706 fprintf(stderr, "[error] wrong index magic\n");
1707 ret = -1;
1708 goto error;
1709 }
1710 if (be32toh(index_hdr.index_major) != CTF_INDEX_MAJOR) {
1711 fprintf(stderr, "[error] Incompatible index file %" PRIu64
1712 ".%" PRIu64 ", supported %d.%d\n",
1713 be64toh(index_hdr.index_major),
1714 be64toh(index_hdr.index_minor), CTF_INDEX_MAJOR,
1715 CTF_INDEX_MINOR);
1716 ret = -1;
1717 goto error;
1718 }
1719 if (index_hdr.packet_index_len == 0) {
1720 fprintf(stderr, "[error] Packet index length cannot be 0.\n");
1721 ret = -1;
1722 goto error;
1723 }
1724
1725 while ((index_read = fread(&ctf_index, index_hdr.packet_index_len, 1,
1726 pos->index_fp)) == 1) {
1727 uint64_t stream_id;
1728
1729 memset(&index, 0, sizeof(index));
1730 index.offset = be64toh(ctf_index.offset);
1731 index.packet_size = be64toh(ctf_index.packet_size);
1732 index.content_size = be64toh(ctf_index.content_size);
1733 index.timestamp_begin = be64toh(ctf_index.timestamp_begin);
1734 index.timestamp_end = be64toh(ctf_index.timestamp_end);
1735 index.events_discarded = be64toh(ctf_index.events_discarded);
1736 index.events_discarded_len = 64;
1737 stream_id = be64toh(ctf_index.stream_id);
1738
1739 if (!first_packet) {
1740 /* add index to packet array */
1741 g_array_append_val(file_stream->pos.packet_cycles_index, index);
1742 continue;
1743 }
1744
1745 file_stream->parent.stream_id = stream_id;
1746 stream = g_ptr_array_index(td->streams, stream_id);
1747 if (!stream) {
1748 fprintf(stderr, "[error] Stream %" PRIu64
1749 " is not declared in metadata.\n",
1750 stream_id);
1751 ret = -EINVAL;
1752 goto error;
1753 }
1754 file_stream->parent.stream_class = stream;
1755 ret = create_stream_definitions(td, &file_stream->parent);
1756 if (ret)
1757 goto error;
1758 first_packet = 0;
1759 /* add index to packet array */
1760 g_array_append_val(file_stream->pos.packet_cycles_index, index);
1761 }
1762
1763 ret = 0;
1764
1765error:
1766 return ret;
1767}
1768
1769/*
1770 * Note: many file streams can inherit from the same stream class
1771 * description (metadata).
1772 */
1773static
1774int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags,
1775 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
1776 int whence))
1777{
1778 int ret, fd, closeret;
1779 struct ctf_file_stream *file_stream;
1780 struct stat statbuf;
1781 char *index_name;
1782
1783 fd = openat(td->dirfd, path, flags);
1784 if (fd < 0) {
1785 perror("File stream openat()");
1786 ret = fd;
1787 goto error;
1788 }
1789
1790 /* Don't try to mmap subdirectories. Skip them, return success. */
1791 ret = fstat(fd, &statbuf);
1792 if (ret) {
1793 perror("File stream fstat()");
1794 goto fstat_error;
1795 }
1796 if (S_ISDIR(statbuf.st_mode)) {
1797 if (strncmp(path, "index", 5) != 0) {
1798 fprintf(stderr, "[warning] Skipping directory '%s' "
1799 "found in trace\n", path);
1800 }
1801 ret = 0;
1802 goto fd_is_dir_ok;
1803 }
1804
1805 file_stream = g_new0(struct ctf_file_stream, 1);
1806 file_stream->pos.last_offset = LAST_OFFSET_POISON;
1807 file_stream->pos.fd = -1;
1808 file_stream->pos.index_fp = NULL;
1809
1810 strncpy(file_stream->parent.path, path, PATH_MAX);
1811 file_stream->parent.path[PATH_MAX - 1] = '\0';
1812
1813 if (packet_seek) {
1814 file_stream->pos.packet_seek = packet_seek;
1815 } else {
1816 fprintf(stderr, "[error] packet_seek function undefined.\n");
1817 ret = -1;
1818 goto error_def;
1819 }
1820
1821 ret = ctf_init_pos(&file_stream->pos, &td->parent, fd, flags);
1822 if (ret)
1823 goto error_def;
1824 ret = create_trace_definitions(td, &file_stream->parent);
1825 if (ret)
1826 goto error_def;
1827 /*
1828 * For now, only a single clock per trace is supported.
1829 */
1830 file_stream->parent.current_clock = td->parent.single_clock;
1831
1832 /*
1833 * Allocate the index name for this stream and try to open it.
1834 */
1835 index_name = malloc((strlen(path) + sizeof(INDEX_PATH)) * sizeof(char));
1836 if (!index_name) {
1837 fprintf(stderr, "[error] Cannot allocate index filename\n");
1838 goto error_def;
1839 }
1840 snprintf(index_name, strlen(path) + sizeof(INDEX_PATH),
1841 INDEX_PATH, path);
1842
1843 if (faccessat(td->dirfd, index_name, O_RDONLY, flags) < 0) {
1844 ret = create_stream_packet_index(td, file_stream);
1845 if (ret) {
1846 fprintf(stderr, "[error] Stream index creation error.\n");
1847 goto error_index;
1848 }
1849 } else {
1850 ret = openat(td->dirfd, index_name, flags);
1851 if (ret < 0) {
1852 perror("Index file openat()");
1853 ret = -1;
1854 goto error_free;
1855 }
1856 file_stream->pos.index_fp = fdopen(ret, "r");
1857 if (!file_stream->pos.index_fp) {
1858 perror("fdopen() error");
1859 goto error_free;
1860 }
1861 ret = import_stream_packet_index(td, file_stream);
1862 if (ret) {
1863 ret = -1;
1864 goto error_index;
1865 }
1866 ret = fclose(file_stream->pos.index_fp);
1867 if (ret < 0) {
1868 perror("close index");
1869 goto error_free;
1870 }
1871 }
1872 free(index_name);
1873
1874 /* Add stream file to stream class */
1875 g_ptr_array_add(file_stream->parent.stream_class->streams,
1876 &file_stream->parent);
1877 return 0;
1878
1879error_index:
1880 if (file_stream->pos.index_fp) {
1881 ret = fclose(file_stream->pos.index_fp);
1882 if (ret < 0) {
1883 perror("close index");
1884 }
1885 }
1886 if (file_stream->parent.trace_packet_header)
1887 bt_definition_unref(&file_stream->parent.trace_packet_header->p);
1888error_free:
1889 free(index_name);
1890error_def:
1891 closeret = ctf_fini_pos(&file_stream->pos);
1892 if (closeret) {
1893 fprintf(stderr, "Error on ctf_fini_pos\n");
1894 }
1895 g_free(file_stream);
1896fd_is_dir_ok:
1897fstat_error:
1898 closeret = close(fd);
1899 if (closeret) {
1900 perror("Error on fd close");
1901 }
1902error:
1903 return ret;
1904}
1905
1906static
1907int ctf_open_trace_read(struct ctf_trace *td,
1908 const char *path, int flags,
1909 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
1910 int whence), FILE *metadata_fp)
1911{
1912 int ret, closeret;
1913 struct dirent *dirent;
1914 struct dirent *diriter;
1915 size_t dirent_len;
1916 char *ext;
1917
1918 td->flags = flags;
1919
1920 /* Open trace directory */
1921 td->dir = opendir(path);
1922 if (!td->dir) {
1923 fprintf(stderr, "[error] Unable to open trace directory \"%s\".\n", path);
1924 ret = -ENOENT;
1925 goto error;
1926 }
1927
1928 td->dirfd = open(path, 0);
1929 if (td->dirfd < 0) {
1930 fprintf(stderr, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path);
1931 perror("Trace directory open");
1932 ret = -errno;
1933 goto error_dirfd;
1934 }
1935 strncpy(td->parent.path, path, sizeof(td->parent.path));
1936 td->parent.path[sizeof(td->parent.path) - 1] = '\0';
1937
1938 /*
1939 * Keep the metadata file separate.
1940 */
1941
1942 ret = ctf_open_trace_metadata_read(td, packet_seek, metadata_fp);
1943 if (ret) {
1944 fprintf(stderr, "[warning] Unable to open trace metadata for path \"%s\".\n", path);
1945 goto error_metadata;
1946 }
1947
1948 /*
1949 * Open each stream: for each file, try to open, check magic
1950 * number, and get the stream ID to add to the right location in
1951 * the stream array.
1952 */
1953
1954 dirent_len = offsetof(struct dirent, d_name) +
1955 fpathconf(td->dirfd, _PC_NAME_MAX) + 1;
1956
1957 dirent = malloc(dirent_len);
1958
1959 for (;;) {
1960 ret = readdir_r(td->dir, dirent, &diriter);
1961 if (ret) {
1962 fprintf(stderr, "[error] Readdir error.\n");
1963 goto readdir_error;
1964 }
1965 if (!diriter)
1966 break;
1967 /* Ignore hidden files, ., .. and metadata. */
1968 if (!strncmp(diriter->d_name, ".", 1)
1969 || !strcmp(diriter->d_name, "..")
1970 || !strcmp(diriter->d_name, "metadata"))
1971 continue;
1972
1973 /* Ignore index files : *.idx */
1974 ext = strrchr(diriter->d_name, '.');
1975 if (ext && (!strcmp(ext, ".idx"))) {
1976 continue;
1977 }
1978
1979 ret = ctf_open_file_stream_read(td, diriter->d_name,
1980 flags, packet_seek);
1981 if (ret) {
1982 fprintf(stderr, "[error] Open file stream error.\n");
1983 goto readdir_error;
1984 }
1985 }
1986
1987 free(dirent);
1988 return 0;
1989
1990readdir_error:
1991 free(dirent);
1992error_metadata:
1993 closeret = close(td->dirfd);
1994 if (closeret) {
1995 perror("Error on fd close");
1996 }
1997error_dirfd:
1998 closeret = closedir(td->dir);
1999 if (closeret) {
2000 perror("Error on closedir");
2001 }
2002error:
2003 return ret;
2004}
2005
2006/*
2007 * ctf_open_trace: Open a CTF trace and index it.
2008 * Note that the user must seek the trace after the open (using the iterator)
2009 * since the index creation read it entirely.
2010 */
2011static
2012struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags,
2013 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2014 int whence), FILE *metadata_fp)
2015{
2016 struct ctf_trace *td;
2017 int ret;
2018
2019 /*
2020 * If packet_seek is NULL, we provide our default version.
2021 */
2022 if (!packet_seek)
2023 packet_seek = ctf_packet_seek;
2024
2025 td = g_new0(struct ctf_trace, 1);
2026
2027 switch (flags & O_ACCMODE) {
2028 case O_RDONLY:
2029 if (!path) {
2030 fprintf(stderr, "[error] Path missing for input CTF trace.\n");
2031 goto error;
2032 }
2033 ret = ctf_open_trace_read(td, path, flags, packet_seek, metadata_fp);
2034 if (ret)
2035 goto error;
2036 break;
2037 case O_RDWR:
2038 fprintf(stderr, "[error] Opening CTF traces for output is not supported yet.\n");
2039 goto error;
2040 default:
2041 fprintf(stderr, "[error] Incorrect open flags.\n");
2042 goto error;
2043 }
2044
2045 return &td->parent;
2046error:
2047 g_free(td);
2048 return NULL;
2049}
2050
2051static
2052void ctf_init_mmap_pos(struct ctf_stream_pos *pos,
2053 struct bt_mmap_stream *mmap_info)
2054{
2055 pos->mmap_offset = 0;
2056 pos->packet_size = 0;
2057 pos->content_size = 0;
2058 pos->content_size_loc = NULL;
2059 pos->fd = mmap_info->fd;
2060 pos->base_mma = NULL;
2061 pos->offset = 0;
2062 pos->dummy = false;
2063 pos->cur_index = 0;
2064 pos->packet_cycles_index = NULL;
2065 pos->packet_real_index = NULL;
2066 pos->prot = PROT_READ;
2067 pos->flags = MAP_PRIVATE;
2068 pos->parent.rw_table = read_dispatch_table;
2069 pos->parent.event_cb = ctf_read_event;
2070}
2071
2072static
2073int prepare_mmap_stream_definition(struct ctf_trace *td,
2074 struct ctf_file_stream *file_stream)
2075{
2076 struct ctf_stream_declaration *stream;
2077 uint64_t stream_id = 0;
2078 int ret;
2079
2080 file_stream->parent.stream_id = stream_id;
2081 if (stream_id >= td->streams->len) {
2082 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared "
2083 "in metadata.\n", stream_id);
2084 ret = -EINVAL;
2085 goto end;
2086 }
2087 stream = g_ptr_array_index(td->streams, stream_id);
2088 if (!stream) {
2089 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared "
2090 "in metadata.\n", stream_id);
2091 ret = -EINVAL;
2092 goto end;
2093 }
2094 file_stream->parent.stream_class = stream;
2095 ret = create_stream_definitions(td, &file_stream->parent);
2096end:
2097 return ret;
2098}
2099
2100static
2101int ctf_open_mmap_stream_read(struct ctf_trace *td,
2102 struct bt_mmap_stream *mmap_info,
2103 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2104 int whence))
2105{
2106 int ret;
2107 struct ctf_file_stream *file_stream;
2108
2109 file_stream = g_new0(struct ctf_file_stream, 1);
2110 file_stream->pos.last_offset = LAST_OFFSET_POISON;
2111 ctf_init_mmap_pos(&file_stream->pos, mmap_info);
2112
2113 file_stream->pos.packet_seek = packet_seek;
2114
2115 ret = create_trace_definitions(td, &file_stream->parent);
2116 if (ret) {
2117 goto error_def;
2118 }
2119
2120 ret = prepare_mmap_stream_definition(td, file_stream);
2121 if (ret)
2122 goto error_index;
2123
2124 /*
2125 * For now, only a single clock per trace is supported.
2126 */
2127 file_stream->parent.current_clock = td->parent.single_clock;
2128
2129 /* Add stream file to stream class */
2130 g_ptr_array_add(file_stream->parent.stream_class->streams,
2131 &file_stream->parent);
2132 return 0;
2133
2134error_index:
2135 if (file_stream->parent.trace_packet_header)
2136 bt_definition_unref(&file_stream->parent.trace_packet_header->p);
2137error_def:
2138 g_free(file_stream);
2139 return ret;
2140}
2141
2142static
2143int ctf_open_mmap_trace_read(struct ctf_trace *td,
2144 struct bt_mmap_stream_list *mmap_list,
2145 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2146 int whence),
2147 FILE *metadata_fp)
2148{
2149 int ret;
2150 struct bt_mmap_stream *mmap_info;
2151
2152 ret = ctf_open_trace_metadata_read(td, ctf_packet_seek, metadata_fp);
2153 if (ret) {
2154 goto error;
2155 }
2156
2157 /*
2158 * for each stream, try to open, check magic number, and get the
2159 * stream ID to add to the right location in the stream array.
2160 */
2161 bt_list_for_each_entry(mmap_info, &mmap_list->head, list) {
2162 ret = ctf_open_mmap_stream_read(td, mmap_info, packet_seek);
2163 if (ret) {
2164 fprintf(stderr, "[error] Open file mmap stream error.\n");
2165 goto error;
2166 }
2167 }
2168
2169 return 0;
2170
2171error:
2172 return ret;
2173}
2174
2175static
2176struct bt_trace_descriptor *ctf_open_mmap_trace(
2177 struct bt_mmap_stream_list *mmap_list,
2178 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2179 int whence),
2180 FILE *metadata_fp)
2181{
2182 struct ctf_trace *td;
2183 int ret;
2184
2185 if (!metadata_fp) {
2186 fprintf(stderr, "[error] No metadata file pointer associated, "
2187 "required for mmap parsing\n");
2188 goto error;
2189 }
2190 if (!packet_seek) {
2191 fprintf(stderr, "[error] packet_seek function undefined.\n");
2192 goto error;
2193 }
2194 td = g_new0(struct ctf_trace, 1);
2195 ret = ctf_open_mmap_trace_read(td, mmap_list, packet_seek, metadata_fp);
2196 if (ret)
2197 goto error_free;
2198
2199 return &td->parent;
2200
2201error_free:
2202 g_free(td);
2203error:
2204 return NULL;
2205}
2206
2207static
2208int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp)
2209{
2210 int i, j, k;
2211 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
2212
2213 /* for each stream_class */
2214 for (i = 0; i < td->streams->len; i++) {
2215 struct ctf_stream_declaration *stream_class;
2216
2217 stream_class = g_ptr_array_index(td->streams, i);
2218 if (!stream_class)
2219 continue;
2220 /* for each file_stream */
2221 for (j = 0; j < stream_class->streams->len; j++) {
2222 struct ctf_stream_definition *stream;
2223 struct ctf_stream_pos *stream_pos;
2224 struct ctf_file_stream *cfs;
2225
2226 stream = g_ptr_array_index(stream_class->streams, j);
2227 if (!stream)
2228 continue;
2229 cfs = container_of(stream, struct ctf_file_stream,
2230 parent);
2231 stream_pos = &cfs->pos;
2232 if (!stream_pos->packet_cycles_index)
2233 continue;
2234
2235 for (k = 0; k < stream_pos->packet_cycles_index->len; k++) {
2236 struct packet_index *index;
2237 struct packet_index new_index;
2238
2239 index = &g_array_index(stream_pos->packet_cycles_index,
2240 struct packet_index, k);
2241 memcpy(&new_index, index,
2242 sizeof(struct packet_index));
2243 new_index.timestamp_begin =
2244 ctf_get_real_timestamp(stream,
2245 index->timestamp_begin);
2246 new_index.timestamp_end =
2247 ctf_get_real_timestamp(stream,
2248 index->timestamp_end);
2249 g_array_append_val(stream_pos->packet_real_index,
2250 new_index);
2251 }
2252 }
2253 }
2254 return 0;
2255}
2256
2257static
2258int ctf_close_file_stream(struct ctf_file_stream *file_stream)
2259{
2260 int ret;
2261
2262 ret = ctf_fini_pos(&file_stream->pos);
2263 if (ret) {
2264 fprintf(stderr, "Error on ctf_fini_pos\n");
2265 return -1;
2266 }
2267 ret = close(file_stream->pos.fd);
2268 if (ret) {
2269 perror("Error closing file fd");
2270 return -1;
2271 }
2272 return 0;
2273}
2274
2275static
2276int ctf_close_trace(struct bt_trace_descriptor *tdp)
2277{
2278 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
2279 int ret;
2280
2281 if (td->streams) {
2282 int i;
2283
2284 for (i = 0; i < td->streams->len; i++) {
2285 struct ctf_stream_declaration *stream;
2286 int j;
2287
2288 stream = g_ptr_array_index(td->streams, i);
2289 if (!stream)
2290 continue;
2291 for (j = 0; j < stream->streams->len; j++) {
2292 struct ctf_file_stream *file_stream;
2293 file_stream = container_of(g_ptr_array_index(stream->streams, j),
2294 struct ctf_file_stream, parent);
2295 ret = ctf_close_file_stream(file_stream);
2296 if (ret)
2297 return ret;
2298 }
2299 }
2300 }
2301 ctf_destroy_metadata(td);
2302 ret = close(td->dirfd);
2303 if (ret) {
2304 perror("Error closing dirfd");
2305 return ret;
2306 }
2307 ret = closedir(td->dir);
2308 if (ret) {
2309 perror("Error closedir");
2310 return ret;
2311 }
2312 free(td->metadata_string);
2313 g_free(td);
2314 return 0;
2315}
2316
2317static
2318void ctf_set_context(struct bt_trace_descriptor *descriptor,
2319 struct bt_context *ctx)
2320{
2321 struct ctf_trace *td = container_of(descriptor, struct ctf_trace,
2322 parent);
2323
2324 td->parent.ctx = ctx;
2325}
2326
2327static
2328void ctf_set_handle(struct bt_trace_descriptor *descriptor,
2329 struct bt_trace_handle *handle)
2330{
2331 struct ctf_trace *td = container_of(descriptor, struct ctf_trace,
2332 parent);
2333
2334 td->parent.handle = handle;
2335}
2336
2337static
2338void __attribute__((constructor)) ctf_init(void)
2339{
2340 int ret;
2341
2342 ctf_format.name = g_quark_from_static_string("ctf");
2343 ret = bt_register_format(&ctf_format);
2344 assert(!ret);
2345}
2346
2347static
2348void __attribute__((destructor)) ctf_exit(void)
2349{
2350 bt_unregister_format(&ctf_format);
2351}
This page took 0.059646 seconds and 4 git commands to generate.