Fix: uncheck null pointer
[babeltrace.git] / formats / ctf / ctf.c
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
77 int opt_clock_cycles,
78 opt_clock_seconds,
79 opt_clock_date,
80 opt_clock_gmt;
81
82 uint64_t opt_clock_offset;
83 uint64_t opt_clock_offset_ns;
84
85 extern int yydebug;
86
87 static
88 struct 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);
92 static
93 struct 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);
98 static
99 void ctf_set_context(struct bt_trace_descriptor *descriptor,
100 struct bt_context *ctx);
101 static
102 void ctf_set_handle(struct bt_trace_descriptor *descriptor,
103 struct bt_trace_handle *handle);
104
105 static
106 int ctf_close_trace(struct bt_trace_descriptor *descriptor);
107 static
108 uint64_t ctf_timestamp_begin(struct bt_trace_descriptor *descriptor,
109 struct bt_trace_handle *handle, enum bt_clock_type type);
110 static
111 uint64_t ctf_timestamp_end(struct bt_trace_descriptor *descriptor,
112 struct bt_trace_handle *handle, enum bt_clock_type type);
113 static
114 int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp);
115
116 static
117 rw_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
128 static
129 rw_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
140 static
141 struct 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
152 static
153 uint64_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
209 error:
210 return -1ULL;
211 }
212
213 static
214 uint64_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
270 error:
271 return -1ULL;
272 }
273
274 /*
275 * Update stream current timestamp
276 */
277 static
278 void 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 */
319 static
320 void 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 }
376 seconds:
377 fprintf(fp, "%3" PRIu64 ".%09" PRIu64,
378 ts_sec, ts_nsec);
379
380 end:
381 return;
382 }
383
384 /*
385 * Print timestamp, in cycles
386 */
387 static
388 void 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
395 void 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
406 static
407 void 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
415 void 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
449 static
450 int 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
561 error:
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
566 static
567 int 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
616 error:
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
621 int 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
657 int 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 */
683 void 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
878 static
879 int 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 }
899 end:
900 rewind(fp);
901 return ret;
902 }
903
904 /*
905 * Returns 0 on success, -1 on error.
906 */
907 static
908 int 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 */
924 warning:
925 fprintf(stderr, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n",
926 major, minor);
927 return 0;
928 }
929
930 static
931 int 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
1010 read_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
1020 static
1021 int 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
1080 static
1081 int 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 }
1184 end:
1185 ctf_scanner_free(scanner);
1186 end_scanner_alloc:
1187 end_packet_read:
1188 if (fp) {
1189 closeret = fclose(fp);
1190 if (closeret) {
1191 perror("Error on fclose");
1192 }
1193 }
1194 end_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 }
1201 end_free:
1202 if (ret)
1203 g_free(metadata_stream);
1204 return ret;
1205 }
1206
1207 static
1208 struct 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
1239 error:
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
1249 static
1250 int 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
1314 error_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);
1321 error:
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
1333 static
1334 int 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
1358 static
1359 int 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
1371 begin:
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 */
1591 retry:
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
1610 static
1611 int 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
1657 static
1658 int 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
1677 error:
1678 fprintf(stderr, "[error] Unable to create trace definitions: %s\n", strerror(-ret));
1679 return ret;
1680 }
1681
1682 static
1683 int 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
1720 while ((index_read = fread(&ctf_index, index_hdr.packet_index_len, 1,
1721 pos->index_fp)) == 1) {
1722 uint64_t stream_id;
1723
1724 memset(&index, 0, sizeof(index));
1725 index.offset = be64toh(ctf_index.offset);
1726 index.packet_size = be64toh(ctf_index.packet_size);
1727 index.content_size = be64toh(ctf_index.content_size);
1728 index.timestamp_begin = be64toh(ctf_index.timestamp_begin);
1729 index.timestamp_end = be64toh(ctf_index.timestamp_end);
1730 index.events_discarded = be64toh(ctf_index.events_discarded);
1731 index.events_discarded_len = 64;
1732 stream_id = be64toh(ctf_index.stream_id);
1733
1734 if (!first_packet) {
1735 /* add index to packet array */
1736 g_array_append_val(file_stream->pos.packet_cycles_index, index);
1737 continue;
1738 }
1739
1740 file_stream->parent.stream_id = stream_id;
1741 stream = g_ptr_array_index(td->streams, stream_id);
1742 if (!stream) {
1743 fprintf(stderr, "[error] Stream %" PRIu64
1744 " is not declared in metadata.\n",
1745 stream_id);
1746 ret = -EINVAL;
1747 goto error;
1748 }
1749 file_stream->parent.stream_class = stream;
1750 ret = create_stream_definitions(td, &file_stream->parent);
1751 if (ret)
1752 goto error;
1753 first_packet = 0;
1754 /* add index to packet array */
1755 g_array_append_val(file_stream->pos.packet_cycles_index, index);
1756 }
1757
1758 ret = 0;
1759
1760 error:
1761 return ret;
1762 }
1763
1764 /*
1765 * Note: many file streams can inherit from the same stream class
1766 * description (metadata).
1767 */
1768 static
1769 int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags,
1770 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
1771 int whence))
1772 {
1773 int ret, fd, closeret;
1774 struct ctf_file_stream *file_stream;
1775 struct stat statbuf;
1776 char *index_name;
1777
1778 fd = openat(td->dirfd, path, flags);
1779 if (fd < 0) {
1780 perror("File stream openat()");
1781 ret = fd;
1782 goto error;
1783 }
1784
1785 /* Don't try to mmap subdirectories. Skip them, return success. */
1786 ret = fstat(fd, &statbuf);
1787 if (ret) {
1788 perror("File stream fstat()");
1789 goto fstat_error;
1790 }
1791 if (S_ISDIR(statbuf.st_mode)) {
1792 if (strncmp(path, "index", 5) != 0) {
1793 fprintf(stderr, "[warning] Skipping directory '%s' "
1794 "found in trace\n", path);
1795 }
1796 ret = 0;
1797 goto fd_is_dir_ok;
1798 }
1799
1800 file_stream = g_new0(struct ctf_file_stream, 1);
1801 file_stream->pos.last_offset = LAST_OFFSET_POISON;
1802 file_stream->pos.fd = -1;
1803 file_stream->pos.index_fp = NULL;
1804
1805 strncpy(file_stream->parent.path, path, PATH_MAX);
1806 file_stream->parent.path[PATH_MAX - 1] = '\0';
1807
1808 if (packet_seek) {
1809 file_stream->pos.packet_seek = packet_seek;
1810 } else {
1811 fprintf(stderr, "[error] packet_seek function undefined.\n");
1812 ret = -1;
1813 goto error_def;
1814 }
1815
1816 ret = ctf_init_pos(&file_stream->pos, &td->parent, fd, flags);
1817 if (ret)
1818 goto error_def;
1819 ret = create_trace_definitions(td, &file_stream->parent);
1820 if (ret)
1821 goto error_def;
1822 /*
1823 * For now, only a single clock per trace is supported.
1824 */
1825 file_stream->parent.current_clock = td->parent.single_clock;
1826
1827 /*
1828 * Allocate the index name for this stream and try to open it.
1829 */
1830 index_name = malloc((strlen(path) + sizeof(INDEX_PATH)) * sizeof(char));
1831 if (!index_name) {
1832 fprintf(stderr, "[error] Cannot allocate index filename\n");
1833 goto error_def;
1834 }
1835 snprintf(index_name, strlen(path) + sizeof(INDEX_PATH),
1836 INDEX_PATH, path);
1837
1838 if (faccessat(td->dirfd, index_name, O_RDONLY, flags) < 0) {
1839 ret = create_stream_packet_index(td, file_stream);
1840 if (ret) {
1841 fprintf(stderr, "[error] Stream index creation error.\n");
1842 goto error_index;
1843 }
1844 } else {
1845 ret = openat(td->dirfd, index_name, flags);
1846 if (ret < 0) {
1847 perror("Index file openat()");
1848 ret = -1;
1849 goto error_free;
1850 }
1851 file_stream->pos.index_fp = fdopen(ret, "r");
1852 if (!file_stream->pos.index_fp) {
1853 perror("fdopen() error");
1854 goto error_free;
1855 }
1856 ret = import_stream_packet_index(td, file_stream);
1857 if (ret) {
1858 ret = -1;
1859 goto error_index;
1860 }
1861 ret = fclose(file_stream->pos.index_fp);
1862 if (ret < 0) {
1863 perror("close index");
1864 goto error_free;
1865 }
1866 }
1867 free(index_name);
1868
1869 /* Add stream file to stream class */
1870 g_ptr_array_add(file_stream->parent.stream_class->streams,
1871 &file_stream->parent);
1872 return 0;
1873
1874 error_index:
1875 if (file_stream->pos.index_fp) {
1876 ret = fclose(file_stream->pos.index_fp);
1877 if (ret < 0) {
1878 perror("close index");
1879 }
1880 }
1881 if (file_stream->parent.trace_packet_header)
1882 bt_definition_unref(&file_stream->parent.trace_packet_header->p);
1883 error_free:
1884 free(index_name);
1885 error_def:
1886 closeret = ctf_fini_pos(&file_stream->pos);
1887 if (closeret) {
1888 fprintf(stderr, "Error on ctf_fini_pos\n");
1889 }
1890 g_free(file_stream);
1891 fd_is_dir_ok:
1892 fstat_error:
1893 closeret = close(fd);
1894 if (closeret) {
1895 perror("Error on fd close");
1896 }
1897 error:
1898 return ret;
1899 }
1900
1901 static
1902 int ctf_open_trace_read(struct ctf_trace *td,
1903 const char *path, int flags,
1904 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
1905 int whence), FILE *metadata_fp)
1906 {
1907 int ret, closeret;
1908 struct dirent *dirent;
1909 struct dirent *diriter;
1910 size_t dirent_len;
1911 char *ext;
1912
1913 td->flags = flags;
1914
1915 /* Open trace directory */
1916 td->dir = opendir(path);
1917 if (!td->dir) {
1918 fprintf(stderr, "[error] Unable to open trace directory \"%s\".\n", path);
1919 ret = -ENOENT;
1920 goto error;
1921 }
1922
1923 td->dirfd = open(path, 0);
1924 if (td->dirfd < 0) {
1925 fprintf(stderr, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path);
1926 perror("Trace directory open");
1927 ret = -errno;
1928 goto error_dirfd;
1929 }
1930 strncpy(td->parent.path, path, sizeof(td->parent.path));
1931 td->parent.path[sizeof(td->parent.path) - 1] = '\0';
1932
1933 /*
1934 * Keep the metadata file separate.
1935 */
1936
1937 ret = ctf_open_trace_metadata_read(td, packet_seek, metadata_fp);
1938 if (ret) {
1939 fprintf(stderr, "[warning] Unable to open trace metadata for path \"%s\".\n", path);
1940 goto error_metadata;
1941 }
1942
1943 /*
1944 * Open each stream: for each file, try to open, check magic
1945 * number, and get the stream ID to add to the right location in
1946 * the stream array.
1947 */
1948
1949 dirent_len = offsetof(struct dirent, d_name) +
1950 fpathconf(td->dirfd, _PC_NAME_MAX) + 1;
1951
1952 dirent = malloc(dirent_len);
1953
1954 for (;;) {
1955 ret = readdir_r(td->dir, dirent, &diriter);
1956 if (ret) {
1957 fprintf(stderr, "[error] Readdir error.\n");
1958 goto readdir_error;
1959 }
1960 if (!diriter)
1961 break;
1962 /* Ignore hidden files, ., .. and metadata. */
1963 if (!strncmp(diriter->d_name, ".", 1)
1964 || !strcmp(diriter->d_name, "..")
1965 || !strcmp(diriter->d_name, "metadata"))
1966 continue;
1967
1968 /* Ignore index files : *.idx */
1969 ext = strrchr(diriter->d_name, '.');
1970 if (ext && (!strcmp(ext, ".idx"))) {
1971 continue;
1972 }
1973
1974 ret = ctf_open_file_stream_read(td, diriter->d_name,
1975 flags, packet_seek);
1976 if (ret) {
1977 fprintf(stderr, "[error] Open file stream error.\n");
1978 goto readdir_error;
1979 }
1980 }
1981
1982 free(dirent);
1983 return 0;
1984
1985 readdir_error:
1986 free(dirent);
1987 error_metadata:
1988 closeret = close(td->dirfd);
1989 if (closeret) {
1990 perror("Error on fd close");
1991 }
1992 error_dirfd:
1993 closeret = closedir(td->dir);
1994 if (closeret) {
1995 perror("Error on closedir");
1996 }
1997 error:
1998 return ret;
1999 }
2000
2001 /*
2002 * ctf_open_trace: Open a CTF trace and index it.
2003 * Note that the user must seek the trace after the open (using the iterator)
2004 * since the index creation read it entirely.
2005 */
2006 static
2007 struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags,
2008 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2009 int whence), FILE *metadata_fp)
2010 {
2011 struct ctf_trace *td;
2012 int ret;
2013
2014 /*
2015 * If packet_seek is NULL, we provide our default version.
2016 */
2017 if (!packet_seek)
2018 packet_seek = ctf_packet_seek;
2019
2020 td = g_new0(struct ctf_trace, 1);
2021
2022 switch (flags & O_ACCMODE) {
2023 case O_RDONLY:
2024 if (!path) {
2025 fprintf(stderr, "[error] Path missing for input CTF trace.\n");
2026 goto error;
2027 }
2028 ret = ctf_open_trace_read(td, path, flags, packet_seek, metadata_fp);
2029 if (ret)
2030 goto error;
2031 break;
2032 case O_RDWR:
2033 fprintf(stderr, "[error] Opening CTF traces for output is not supported yet.\n");
2034 goto error;
2035 default:
2036 fprintf(stderr, "[error] Incorrect open flags.\n");
2037 goto error;
2038 }
2039
2040 return &td->parent;
2041 error:
2042 g_free(td);
2043 return NULL;
2044 }
2045
2046 static
2047 void ctf_init_mmap_pos(struct ctf_stream_pos *pos,
2048 struct bt_mmap_stream *mmap_info)
2049 {
2050 pos->mmap_offset = 0;
2051 pos->packet_size = 0;
2052 pos->content_size = 0;
2053 pos->content_size_loc = NULL;
2054 pos->fd = mmap_info->fd;
2055 pos->base_mma = NULL;
2056 pos->offset = 0;
2057 pos->dummy = false;
2058 pos->cur_index = 0;
2059 pos->packet_cycles_index = NULL;
2060 pos->packet_real_index = NULL;
2061 pos->prot = PROT_READ;
2062 pos->flags = MAP_PRIVATE;
2063 pos->parent.rw_table = read_dispatch_table;
2064 pos->parent.event_cb = ctf_read_event;
2065 }
2066
2067 static
2068 int prepare_mmap_stream_definition(struct ctf_trace *td,
2069 struct ctf_file_stream *file_stream)
2070 {
2071 struct ctf_stream_declaration *stream;
2072 uint64_t stream_id = 0;
2073 int ret;
2074
2075 file_stream->parent.stream_id = stream_id;
2076 if (stream_id >= td->streams->len) {
2077 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared "
2078 "in metadata.\n", stream_id);
2079 ret = -EINVAL;
2080 goto end;
2081 }
2082 stream = g_ptr_array_index(td->streams, stream_id);
2083 if (!stream) {
2084 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared "
2085 "in metadata.\n", stream_id);
2086 ret = -EINVAL;
2087 goto end;
2088 }
2089 file_stream->parent.stream_class = stream;
2090 ret = create_stream_definitions(td, &file_stream->parent);
2091 end:
2092 return ret;
2093 }
2094
2095 static
2096 int ctf_open_mmap_stream_read(struct ctf_trace *td,
2097 struct bt_mmap_stream *mmap_info,
2098 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2099 int whence))
2100 {
2101 int ret;
2102 struct ctf_file_stream *file_stream;
2103
2104 file_stream = g_new0(struct ctf_file_stream, 1);
2105 file_stream->pos.last_offset = LAST_OFFSET_POISON;
2106 ctf_init_mmap_pos(&file_stream->pos, mmap_info);
2107
2108 file_stream->pos.packet_seek = packet_seek;
2109
2110 ret = create_trace_definitions(td, &file_stream->parent);
2111 if (ret) {
2112 goto error_def;
2113 }
2114
2115 ret = prepare_mmap_stream_definition(td, file_stream);
2116 if (ret)
2117 goto error_index;
2118
2119 /*
2120 * For now, only a single clock per trace is supported.
2121 */
2122 file_stream->parent.current_clock = td->parent.single_clock;
2123
2124 /* Add stream file to stream class */
2125 g_ptr_array_add(file_stream->parent.stream_class->streams,
2126 &file_stream->parent);
2127 return 0;
2128
2129 error_index:
2130 if (file_stream->parent.trace_packet_header)
2131 bt_definition_unref(&file_stream->parent.trace_packet_header->p);
2132 error_def:
2133 g_free(file_stream);
2134 return ret;
2135 }
2136
2137 static
2138 int ctf_open_mmap_trace_read(struct ctf_trace *td,
2139 struct bt_mmap_stream_list *mmap_list,
2140 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2141 int whence),
2142 FILE *metadata_fp)
2143 {
2144 int ret;
2145 struct bt_mmap_stream *mmap_info;
2146
2147 ret = ctf_open_trace_metadata_read(td, ctf_packet_seek, metadata_fp);
2148 if (ret) {
2149 goto error;
2150 }
2151
2152 /*
2153 * for each stream, try to open, check magic number, and get the
2154 * stream ID to add to the right location in the stream array.
2155 */
2156 bt_list_for_each_entry(mmap_info, &mmap_list->head, list) {
2157 ret = ctf_open_mmap_stream_read(td, mmap_info, packet_seek);
2158 if (ret) {
2159 fprintf(stderr, "[error] Open file mmap stream error.\n");
2160 goto error;
2161 }
2162 }
2163
2164 return 0;
2165
2166 error:
2167 return ret;
2168 }
2169
2170 static
2171 struct bt_trace_descriptor *ctf_open_mmap_trace(
2172 struct bt_mmap_stream_list *mmap_list,
2173 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
2174 int whence),
2175 FILE *metadata_fp)
2176 {
2177 struct ctf_trace *td;
2178 int ret;
2179
2180 if (!metadata_fp) {
2181 fprintf(stderr, "[error] No metadata file pointer associated, "
2182 "required for mmap parsing\n");
2183 goto error;
2184 }
2185 if (!packet_seek) {
2186 fprintf(stderr, "[error] packet_seek function undefined.\n");
2187 goto error;
2188 }
2189 td = g_new0(struct ctf_trace, 1);
2190 ret = ctf_open_mmap_trace_read(td, mmap_list, packet_seek, metadata_fp);
2191 if (ret)
2192 goto error_free;
2193
2194 return &td->parent;
2195
2196 error_free:
2197 g_free(td);
2198 error:
2199 return NULL;
2200 }
2201
2202 static
2203 int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp)
2204 {
2205 int i, j, k;
2206 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
2207
2208 /* for each stream_class */
2209 for (i = 0; i < td->streams->len; i++) {
2210 struct ctf_stream_declaration *stream_class;
2211
2212 stream_class = g_ptr_array_index(td->streams, i);
2213 if (!stream_class)
2214 continue;
2215 /* for each file_stream */
2216 for (j = 0; j < stream_class->streams->len; j++) {
2217 struct ctf_stream_definition *stream;
2218 struct ctf_stream_pos *stream_pos;
2219 struct ctf_file_stream *cfs;
2220
2221 stream = g_ptr_array_index(stream_class->streams, j);
2222 if (!stream)
2223 continue;
2224 cfs = container_of(stream, struct ctf_file_stream,
2225 parent);
2226 stream_pos = &cfs->pos;
2227 if (!stream_pos->packet_cycles_index)
2228 continue;
2229
2230 for (k = 0; k < stream_pos->packet_cycles_index->len; k++) {
2231 struct packet_index *index;
2232 struct packet_index new_index;
2233
2234 index = &g_array_index(stream_pos->packet_cycles_index,
2235 struct packet_index, k);
2236 memcpy(&new_index, index,
2237 sizeof(struct packet_index));
2238 new_index.timestamp_begin =
2239 ctf_get_real_timestamp(stream,
2240 index->timestamp_begin);
2241 new_index.timestamp_end =
2242 ctf_get_real_timestamp(stream,
2243 index->timestamp_end);
2244 g_array_append_val(stream_pos->packet_real_index,
2245 new_index);
2246 }
2247 }
2248 }
2249 return 0;
2250 }
2251
2252 static
2253 int ctf_close_file_stream(struct ctf_file_stream *file_stream)
2254 {
2255 int ret;
2256
2257 ret = ctf_fini_pos(&file_stream->pos);
2258 if (ret) {
2259 fprintf(stderr, "Error on ctf_fini_pos\n");
2260 return -1;
2261 }
2262 ret = close(file_stream->pos.fd);
2263 if (ret) {
2264 perror("Error closing file fd");
2265 return -1;
2266 }
2267 return 0;
2268 }
2269
2270 static
2271 int ctf_close_trace(struct bt_trace_descriptor *tdp)
2272 {
2273 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
2274 int ret;
2275
2276 if (td->streams) {
2277 int i;
2278
2279 for (i = 0; i < td->streams->len; i++) {
2280 struct ctf_stream_declaration *stream;
2281 int j;
2282
2283 stream = g_ptr_array_index(td->streams, i);
2284 if (!stream)
2285 continue;
2286 for (j = 0; j < stream->streams->len; j++) {
2287 struct ctf_file_stream *file_stream;
2288 file_stream = container_of(g_ptr_array_index(stream->streams, j),
2289 struct ctf_file_stream, parent);
2290 ret = ctf_close_file_stream(file_stream);
2291 if (ret)
2292 return ret;
2293 }
2294 }
2295 }
2296 ctf_destroy_metadata(td);
2297 ret = close(td->dirfd);
2298 if (ret) {
2299 perror("Error closing dirfd");
2300 return ret;
2301 }
2302 ret = closedir(td->dir);
2303 if (ret) {
2304 perror("Error closedir");
2305 return ret;
2306 }
2307 free(td->metadata_string);
2308 g_free(td);
2309 return 0;
2310 }
2311
2312 static
2313 void ctf_set_context(struct bt_trace_descriptor *descriptor,
2314 struct bt_context *ctx)
2315 {
2316 struct ctf_trace *td = container_of(descriptor, struct ctf_trace,
2317 parent);
2318
2319 td->parent.ctx = ctx;
2320 }
2321
2322 static
2323 void ctf_set_handle(struct bt_trace_descriptor *descriptor,
2324 struct bt_trace_handle *handle)
2325 {
2326 struct ctf_trace *td = container_of(descriptor, struct ctf_trace,
2327 parent);
2328
2329 td->parent.handle = handle;
2330 }
2331
2332 static
2333 void __attribute__((constructor)) ctf_init(void)
2334 {
2335 int ret;
2336
2337 ctf_format.name = g_quark_from_static_string("ctf");
2338 ret = bt_register_format(&ctf_format);
2339 assert(!ret);
2340 }
2341
2342 static
2343 void __attribute__((destructor)) ctf_exit(void)
2344 {
2345 bt_unregister_format(&ctf_format);
2346 }
This page took 0.130061 seconds and 5 git commands to generate.