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