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