Priority heap: fix insert
[babeltrace.git] / formats / ctf / ctf.c
1 /*
2 * BabelTrace - Common Trace Format (CTF)
3 *
4 * Format registration.
5 *
6 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 */
18
19 #include <babeltrace/format.h>
20 #include <babeltrace/ctf/types.h>
21 #include <babeltrace/ctf/metadata.h>
22 #include <babeltrace/babeltrace.h>
23 #include <inttypes.h>
24 #include <stdio.h>
25 #include <uuid/uuid.h>
26 #include <sys/mman.h>
27 #include <errno.h>
28 #include <endian.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <fcntl.h>
32 #include <dirent.h>
33 #include <glib.h>
34 #include <unistd.h>
35 #include <stdlib.h>
36
37 #include "metadata/ctf-scanner.h"
38 #include "metadata/ctf-parser.h"
39 #include "metadata/ctf-ast.h"
40
41 /*
42 * We currently simply map a page to read the packet header and packet
43 * context to get the packet length and content length. (in bits)
44 */
45 #define MAX_PACKET_HEADER_LEN (getpagesize() * CHAR_BIT)
46 #define WRITE_PACKET_LEN (getpagesize() * 8 * CHAR_BIT)
47 #define UUID_LEN 16 /* uuid by value len */
48
49 #ifndef min
50 #define min(a, b) (((a) < (b)) ? (a) : (b))
51 #endif
52
53 extern int yydebug;
54
55 static
56 struct trace_descriptor *ctf_open_trace(const char *path, int flags);
57 static
58 void ctf_close_trace(struct trace_descriptor *descriptor);
59
60 static
61 rw_dispatch read_dispatch_table[] = {
62 [ CTF_TYPE_INTEGER ] = ctf_integer_read,
63 [ CTF_TYPE_FLOAT ] = ctf_float_read,
64 [ CTF_TYPE_ENUM ] = ctf_enum_read,
65 [ CTF_TYPE_STRING ] = ctf_string_read,
66 [ CTF_TYPE_STRUCT ] = ctf_struct_rw,
67 [ CTF_TYPE_VARIANT ] = ctf_variant_rw,
68 [ CTF_TYPE_ARRAY ] = ctf_array_read,
69 [ CTF_TYPE_SEQUENCE ] = ctf_sequence_read,
70 };
71
72 static
73 rw_dispatch write_dispatch_table[] = {
74 [ CTF_TYPE_INTEGER ] = ctf_integer_write,
75 [ CTF_TYPE_FLOAT ] = ctf_float_write,
76 [ CTF_TYPE_ENUM ] = ctf_enum_write,
77 [ CTF_TYPE_STRING ] = ctf_string_write,
78 [ CTF_TYPE_STRUCT ] = ctf_struct_rw,
79 [ CTF_TYPE_VARIANT ] = ctf_variant_rw,
80 [ CTF_TYPE_ARRAY ] = ctf_array_write,
81 [ CTF_TYPE_SEQUENCE ] = ctf_sequence_write,
82 };
83
84 static
85 struct format ctf_format = {
86 .open_trace = ctf_open_trace,
87 .close_trace = ctf_close_trace,
88 };
89
90 static
91 void ctf_update_timestamp(struct ctf_stream *stream,
92 struct definition_integer *integer_definition)
93 {
94 struct declaration_integer *integer_declaration =
95 integer_definition->declaration;
96 uint64_t oldval, newval, updateval;
97
98 if (integer_declaration->len == 64) {
99 stream->timestamp = integer_definition->value._unsigned;
100 return;
101 }
102 /* keep low bits */
103 oldval = stream->timestamp;
104 oldval &= (1ULL << integer_declaration->len) - 1;
105 newval = integer_definition->value._unsigned;
106 /* Test for overflow by comparing low bits */
107 if (newval < oldval)
108 newval += 1ULL << integer_declaration->len;
109 /* updateval contains old high bits, and new low bits (sum) */
110 updateval = stream->timestamp;
111 updateval &= ~((1ULL << integer_declaration->len) - 1);
112 updateval += newval;
113 stream->timestamp = updateval;
114 }
115
116 static
117 int ctf_read_event(struct stream_pos *ppos, struct ctf_stream *stream)
118 {
119 struct ctf_stream_pos *pos =
120 container_of(ppos, struct ctf_stream_pos, parent);
121 struct ctf_stream_class *stream_class = stream->stream_class;
122 struct ctf_event *event_class;
123 uint64_t id = 0;
124 int ret;
125
126 if (pos->offset == EOF)
127 return EOF;
128
129 /* Read event header */
130 if (stream_class->event_header) {
131 struct definition_integer *integer_definition;
132 struct definition *variant;
133
134 ret = generic_rw(ppos, &stream_class->event_header->p);
135 if (ret)
136 goto error;
137 /* lookup event id */
138 integer_definition = lookup_integer(&stream_class->event_header->p, "id", FALSE);
139 if (integer_definition) {
140 id = integer_definition->value._unsigned;
141 } else {
142 struct definition_enum *enum_definition;
143
144 enum_definition = lookup_enum(&stream_class->event_header->p, "id", FALSE);
145 if (enum_definition) {
146 id = enum_definition->integer->value._unsigned;
147 }
148 }
149
150 variant = lookup_variant(&stream_class->event_header->p, "v");
151 if (variant) {
152 integer_definition = lookup_integer(variant, "id", FALSE);
153 if (integer_definition) {
154 id = integer_definition->value._unsigned;
155 }
156 }
157
158 /* lookup timestamp */
159 integer_definition = lookup_integer(&stream_class->event_header->p, "timestamp", FALSE);
160 if (integer_definition) {
161 ctf_update_timestamp(stream, integer_definition);
162 } else {
163 if (variant) {
164 integer_definition = lookup_integer(variant, "timestamp", FALSE);
165 if (integer_definition) {
166 ctf_update_timestamp(stream, integer_definition);
167 }
168 }
169 }
170 }
171
172 /* Read stream-declared event context */
173 if (stream_class->event_context) {
174 ret = generic_rw(ppos, &stream_class->event_context->p);
175 if (ret)
176 goto error;
177 }
178
179 if (id >= stream_class->events_by_id->len) {
180 fprintf(stdout, "[error] Event id %" PRIu64 " is outside range.\n", id);
181 return -EINVAL;
182 }
183 event_class = g_ptr_array_index(stream_class->events_by_id, id);
184 if (!event_class) {
185 fprintf(stdout, "[error] Event id %" PRIu64 " is unknown.\n", id);
186 return -EINVAL;
187 }
188
189 /* Read event-declared event context */
190 if (event_class->context) {
191 ret = generic_rw(ppos, &event_class->context->p);
192 if (ret)
193 goto error;
194 }
195
196 /* Read event payload */
197 if (event_class->fields) {
198 ret = generic_rw(ppos, &event_class->fields->p);
199 if (ret)
200 goto error;
201 }
202
203 return 0;
204
205 error:
206 fprintf(stdout, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
207 return ret;
208 }
209
210 static
211 int ctf_write_event(struct stream_pos *pos, struct ctf_stream *stream)
212 {
213 struct ctf_stream_class *stream_class = stream->stream_class;
214 struct ctf_event *event_class;
215 uint64_t id = 0;
216 int ret;
217
218 /* print event header */
219 if (stream_class->event_header) {
220 struct definition_integer *integer_definition;
221 struct definition *variant;
222
223 /* lookup event id */
224 integer_definition = lookup_integer(&stream_class->event_header->p, "id", FALSE);
225 if (integer_definition) {
226 id = integer_definition->value._unsigned;
227 } else {
228 struct definition_enum *enum_definition;
229
230 enum_definition = lookup_enum(&stream_class->event_header->p, "id", FALSE);
231 if (enum_definition) {
232 id = enum_definition->integer->value._unsigned;
233 }
234 }
235
236 variant = lookup_variant(&stream_class->event_header->p, "v");
237 if (variant) {
238 integer_definition = lookup_integer(variant, "id", FALSE);
239 if (integer_definition) {
240 id = integer_definition->value._unsigned;
241 }
242 }
243
244 ret = generic_rw(pos, &stream_class->event_header->p);
245 if (ret)
246 goto error;
247 }
248
249 /* print stream-declared event context */
250 if (stream_class->event_context) {
251 ret = generic_rw(pos, &stream_class->event_context->p);
252 if (ret)
253 goto error;
254 }
255
256 if (id >= stream_class->events_by_id->len) {
257 fprintf(stdout, "[error] Event id %" PRIu64 " is outside range.\n", id);
258 return -EINVAL;
259 }
260 event_class = g_ptr_array_index(stream_class->events_by_id, id);
261 if (!event_class) {
262 fprintf(stdout, "[error] Event id %" PRIu64 " is unknown.\n", id);
263 return -EINVAL;
264 }
265
266 /* print event-declared event context */
267 if (event_class->context) {
268 ret = generic_rw(pos, &event_class->context->p);
269 if (ret)
270 goto error;
271 }
272
273 /* Read and print event payload */
274 if (event_class->fields) {
275 ret = generic_rw(pos, &event_class->fields->p);
276 if (ret)
277 goto error;
278 }
279
280 return 0;
281
282 error:
283 fprintf(stdout, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
284 return ret;
285 }
286
287 void ctf_init_pos(struct ctf_stream_pos *pos, int fd, int open_flags)
288 {
289 pos->fd = fd;
290 pos->mmap_offset = 0;
291 pos->packet_size = 0;
292 pos->content_size = 0;
293 pos->content_size_loc = NULL;
294 pos->base = NULL;
295 pos->offset = 0;
296 pos->dummy = false;
297 pos->cur_index = 0;
298 if (fd >= 0)
299 pos->packet_index = g_array_new(FALSE, TRUE,
300 sizeof(struct packet_index));
301 else
302 pos->packet_index = NULL;
303 switch (open_flags & O_ACCMODE) {
304 case O_RDONLY:
305 pos->prot = PROT_READ;
306 pos->flags = MAP_PRIVATE;
307 pos->parent.rw_table = read_dispatch_table;
308 pos->parent.event_cb = ctf_read_event;
309 break;
310 case O_RDWR:
311 pos->prot = PROT_WRITE; /* Write has priority */
312 pos->flags = MAP_SHARED;
313 pos->parent.rw_table = write_dispatch_table;
314 pos->parent.event_cb = ctf_write_event;
315 if (fd >= 0)
316 ctf_move_pos_slow(pos, 0, SEEK_SET); /* position for write */
317 break;
318 default:
319 assert(0);
320 }
321 }
322
323 void ctf_fini_pos(struct ctf_stream_pos *pos)
324 {
325 int ret;
326
327 if (pos->prot == PROT_WRITE && pos->content_size_loc)
328 *pos->content_size_loc = pos->offset;
329 if (pos->base) {
330 /* unmap old base */
331 ret = munmap(pos->base, pos->packet_size / CHAR_BIT);
332 if (ret) {
333 fprintf(stdout, "[error] Unable to unmap old base: %s.\n",
334 strerror(errno));
335 assert(0);
336 }
337 }
338 (void) g_array_free(pos->packet_index, TRUE);
339 }
340
341 void ctf_move_pos_slow(struct ctf_stream_pos *pos, size_t offset, int whence)
342 {
343 int ret;
344 off_t off;
345 struct packet_index *index;
346
347 if (pos->prot == PROT_WRITE && pos->content_size_loc)
348 *pos->content_size_loc = pos->offset;
349
350 if (pos->base) {
351 /* unmap old base */
352 ret = munmap(pos->base, pos->packet_size / CHAR_BIT);
353 if (ret) {
354 fprintf(stdout, "[error] Unable to unmap old base: %s.\n",
355 strerror(errno));
356 assert(0);
357 }
358 pos->base = NULL;
359 }
360
361 /*
362 * The caller should never ask for ctf_move_pos across packets,
363 * except to get exactly at the beginning of the next packet.
364 */
365 if (pos->prot == PROT_WRITE) {
366 switch (whence) {
367 case SEEK_CUR:
368 /* The writer will add padding */
369 assert(pos->offset + offset == pos->packet_size);
370 pos->mmap_offset += WRITE_PACKET_LEN / CHAR_BIT;
371 break;
372 case SEEK_SET:
373 assert(offset == 0); /* only seek supported for now */
374 pos->cur_index = 0;
375 break;
376 default:
377 assert(0);
378 }
379 pos->content_size = -1U; /* Unknown at this point */
380 pos->packet_size = WRITE_PACKET_LEN;
381 off = posix_fallocate(pos->fd, pos->mmap_offset,
382 pos->packet_size / CHAR_BIT);
383 assert(off >= 0);
384 pos->offset = 0;
385 } else {
386 switch (whence) {
387 case SEEK_CUR:
388 /* The reader will expect us to skip padding */
389 assert(pos->offset + offset == pos->content_size);
390 ++pos->cur_index;
391 break;
392 case SEEK_SET:
393 assert(offset == 0); /* only seek supported for now */
394 pos->cur_index = 0;
395 break;
396 default:
397 assert(0);
398 }
399 if (pos->cur_index >= pos->packet_index->len) {
400 pos->offset = EOF;
401 return;
402 }
403 index = &g_array_index(pos->packet_index, struct packet_index,
404 pos->cur_index);
405 pos->mmap_offset = index->offset;
406
407 /* Lookup context/packet size in index */
408 pos->content_size = index->content_size;
409 pos->packet_size = index->packet_size;
410 if (index->data_offset < index->content_size)
411 pos->offset = index->data_offset;
412 else {
413 pos->offset = EOF;
414 return;
415 }
416 }
417 /* map new base. Need mapping length from header. */
418 pos->base = mmap(NULL, pos->packet_size / CHAR_BIT, pos->prot,
419 pos->flags, pos->fd, pos->mmap_offset);
420 if (pos->base == MAP_FAILED) {
421 fprintf(stdout, "[error] mmap error %s.\n",
422 strerror(errno));
423 assert(0);
424 }
425 }
426
427 static
428 int packet_metadata(struct ctf_trace *td, FILE *fp)
429 {
430 uint32_t magic;
431 size_t len;
432 int ret = 0;
433
434 len = fread(&magic, sizeof(magic), 1, fp);
435 if (len != 1) {
436 goto end;
437 }
438 if (magic == TSDL_MAGIC) {
439 ret = 1;
440 td->byte_order = BYTE_ORDER;
441 } else if (magic == GUINT32_SWAP_LE_BE(TSDL_MAGIC)) {
442 ret = 1;
443 td->byte_order = (BYTE_ORDER == BIG_ENDIAN) ?
444 LITTLE_ENDIAN : BIG_ENDIAN;
445 }
446 CTF_TRACE_SET_FIELD(td, byte_order);
447 end:
448 rewind(fp);
449 return ret;
450 }
451
452 static
453 int ctf_open_trace_metadata_packet_read(struct ctf_trace *td, FILE *in,
454 FILE *out)
455 {
456 struct metadata_packet_header header;
457 size_t readlen, writelen, toread;
458 char buf[4096];
459 int ret = 0;
460
461 readlen = fread(&header, header_sizeof(header), 1, in);
462 if (readlen < 1)
463 return -EINVAL;
464
465 if (td->byte_order != BYTE_ORDER) {
466 header.magic = GUINT32_SWAP_LE_BE(header.magic);
467 header.checksum = GUINT32_SWAP_LE_BE(header.checksum);
468 header.content_size = GUINT32_SWAP_LE_BE(header.content_size);
469 header.packet_size = GUINT32_SWAP_LE_BE(header.packet_size);
470 }
471 if (header.checksum)
472 fprintf(stdout, "[warning] checksum verification not supported yet.\n");
473 if (header.compression_scheme) {
474 fprintf(stdout, "[error] compression (%u) not supported yet.\n",
475 header.compression_scheme);
476 return -EINVAL;
477 }
478 if (header.encryption_scheme) {
479 fprintf(stdout, "[error] encryption (%u) not supported yet.\n",
480 header.encryption_scheme);
481 return -EINVAL;
482 }
483 if (header.checksum_scheme) {
484 fprintf(stdout, "[error] checksum (%u) not supported yet.\n",
485 header.checksum_scheme);
486 return -EINVAL;
487 }
488 if (!CTF_TRACE_FIELD_IS_SET(td, uuid)) {
489 memcpy(td->uuid, header.uuid, sizeof(header.uuid));
490 CTF_TRACE_SET_FIELD(td, uuid);
491 } else {
492 if (uuid_compare(header.uuid, td->uuid))
493 return -EINVAL;
494 }
495
496 toread = header.content_size / CHAR_BIT;
497
498 for (;;) {
499 readlen = fread(buf, sizeof(char), min(sizeof(buf), toread), in);
500 if (ferror(in)) {
501 ret = -EINVAL;
502 break;
503 }
504 if (babeltrace_debug) {
505 fprintf(stdout, "[debug] metadata packet read: %s\n",
506 buf);
507 }
508
509 writelen = fwrite(buf, sizeof(char), readlen, out);
510 if (writelen < readlen) {
511 ret = -EIO;
512 break;
513 }
514 if (ferror(out)) {
515 ret = -EINVAL;
516 break;
517 }
518 toread -= readlen;
519 if (!toread) {
520 ret = 0; /* continue reading next packet */
521 break;
522 }
523 }
524 return ret;
525 }
526
527 static
528 int ctf_open_trace_metadata_stream_read(struct ctf_trace *td, FILE **fp,
529 char **buf)
530 {
531 FILE *in, *out;
532 size_t size;
533 int ret;
534
535 in = *fp;
536 /*
537 * Using strlen on *buf instead of size of open_memstream
538 * because its size includes garbage at the end (after final
539 * \0). This is the allocated size, not the actual string size.
540 */
541 out = open_memstream(buf, &size);
542 if (out == NULL)
543 return -errno;
544
545 for (;;) {
546 ret = ctf_open_trace_metadata_packet_read(td, in, out);
547 if (ret) {
548 break;
549 }
550 if (feof(in)) {
551 ret = 0;
552 break;
553 }
554 }
555 fclose(out); /* flush the buffer */
556 fclose(in);
557 /* open for reading */
558 *fp = fmemopen(*buf, strlen(*buf), "rb");
559 return 0;
560 }
561
562 static
563 int ctf_open_trace_metadata_read(struct ctf_trace *td)
564 {
565 struct ctf_scanner *scanner;
566 FILE *fp;
567 char *buf = NULL;
568 int ret = 0;
569
570 td->metadata.pos.fd = openat(td->dirfd, "metadata", O_RDONLY);
571 if (td->metadata.pos.fd < 0) {
572 fprintf(stdout, "Unable to open metadata.\n");
573 return td->metadata.pos.fd;
574 }
575
576 if (babeltrace_debug)
577 yydebug = 1;
578
579 fp = fdopen(td->metadata.pos.fd, "r");
580 if (!fp) {
581 fprintf(stdout, "[error] Unable to open metadata stream.\n");
582 ret = -errno;
583 goto end_stream;
584 }
585
586 if (packet_metadata(td, fp)) {
587 ret = ctf_open_trace_metadata_stream_read(td, &fp, &buf);
588 if (ret)
589 goto end_packet_read;
590 }
591
592 scanner = ctf_scanner_alloc(fp);
593 if (!scanner) {
594 fprintf(stdout, "[error] Error allocating scanner\n");
595 ret = -ENOMEM;
596 goto end_scanner_alloc;
597 }
598 ret = ctf_scanner_append_ast(scanner);
599 if (ret) {
600 fprintf(stdout, "[error] Error creating AST\n");
601 goto end;
602 }
603
604 if (babeltrace_debug) {
605 ret = ctf_visitor_print_xml(stdout, 0, &scanner->ast->root);
606 if (ret) {
607 fprintf(stdout, "[error] Error visiting AST for XML output\n");
608 goto end;
609 }
610 }
611
612 ret = ctf_visitor_semantic_check(stdout, 0, &scanner->ast->root);
613 if (ret) {
614 fprintf(stdout, "[error] Error in CTF semantic validation %d\n", ret);
615 goto end;
616 }
617 ret = ctf_visitor_construct_metadata(stdout, 0, &scanner->ast->root,
618 td, BYTE_ORDER);
619 if (ret) {
620 fprintf(stdout, "[error] Error in CTF metadata constructor %d\n", ret);
621 goto end;
622 }
623 end:
624 ctf_scanner_free(scanner);
625 end_scanner_alloc:
626 end_packet_read:
627 fclose(fp);
628 free(buf);
629 end_stream:
630 close(td->metadata.pos.fd);
631 return ret;
632 }
633
634
635 static
636 int create_stream_packet_index(struct ctf_trace *td,
637 struct ctf_file_stream *file_stream)
638 {
639 struct ctf_stream_class *stream;
640 int len_index;
641 struct ctf_stream_pos *pos;
642 struct stat filestats;
643 struct packet_index packet_index;
644 int first_packet = 1;
645 int ret;
646
647 pos = &file_stream->pos;
648
649 ret = fstat(pos->fd, &filestats);
650 if (ret < 0)
651 return ret;
652
653 for (pos->mmap_offset = 0; pos->mmap_offset < filestats.st_size; ) {
654 uint64_t stream_id = 0;
655
656 if (pos->base) {
657 /* unmap old base */
658 ret = munmap(pos->base, pos->packet_size / CHAR_BIT);
659 if (ret) {
660 fprintf(stdout, "[error] Unable to unmap old base: %s.\n",
661 strerror(errno));
662 return ret;
663 }
664 pos->base = NULL;
665 }
666 /* map new base. Need mapping length from header. */
667 pos->base = mmap(NULL, MAX_PACKET_HEADER_LEN / CHAR_BIT, PROT_READ,
668 MAP_PRIVATE, pos->fd, pos->mmap_offset);
669 pos->content_size = MAX_PACKET_HEADER_LEN; /* Unknown at this point */
670 pos->packet_size = MAX_PACKET_HEADER_LEN; /* Unknown at this point */
671 pos->offset = 0; /* Position of the packet header */
672
673 packet_index.offset = pos->mmap_offset;
674 packet_index.content_size = 0;
675 packet_index.packet_size = 0;
676
677 /* read and check header, set stream id (and check) */
678 if (td->packet_header) {
679 /* Read packet header */
680 ret = generic_rw(&pos->parent, &td->packet_header->p);
681 if (ret)
682 return ret;
683 len_index = struct_declaration_lookup_field_index(td->packet_header->declaration, g_quark_from_static_string("magic"));
684 if (len_index >= 0) {
685 struct definition_integer *defint;
686 struct definition *field;
687
688 field = struct_definition_get_field_from_index(td->packet_header, len_index);
689 assert(field->declaration->id == CTF_TYPE_INTEGER);
690 defint = container_of(field, struct definition_integer, p);
691 assert(defint->declaration->signedness == FALSE);
692 if (defint->value._unsigned != CTF_MAGIC) {
693 fprintf(stdout, "[error] Invalid magic number 0x%" PRIX64 " at packet %u (file offset %zd).\n",
694 defint->value._unsigned,
695 file_stream->pos.packet_index->len,
696 (ssize_t) pos->mmap_offset);
697 return -EINVAL;
698 }
699 }
700
701 /* check uuid */
702 len_index = struct_declaration_lookup_field_index(td->packet_header->declaration, g_quark_from_static_string("uuid"));
703 if (len_index >= 0) {
704 struct definition_array *defarray;
705 struct definition *field;
706 uint64_t i;
707 uint8_t uuidval[UUID_LEN];
708
709 field = struct_definition_get_field_from_index(td->packet_header, len_index);
710 assert(field->declaration->id == CTF_TYPE_ARRAY);
711 defarray = container_of(field, struct definition_array, p);
712 assert(array_len(defarray) == UUID_LEN);
713 assert(defarray->declaration->elem->id == CTF_TYPE_INTEGER);
714
715 for (i = 0; i < UUID_LEN; i++) {
716 struct definition *elem;
717 struct definition_integer *defint;
718
719 elem = array_index(defarray, i);
720 assert(elem);
721 defint = container_of(elem, struct definition_integer, p);
722 uuidval[i] = defint->value._unsigned;
723 }
724 ret = uuid_compare(td->uuid, uuidval);
725 if (ret) {
726 fprintf(stdout, "[error] Unique Universal Identifiers do not match.\n");
727 return -EINVAL;
728 }
729 }
730
731
732 len_index = struct_declaration_lookup_field_index(td->packet_header->declaration, g_quark_from_static_string("stream_id"));
733 if (len_index >= 0) {
734 struct definition_integer *defint;
735 struct definition *field;
736
737 field = struct_definition_get_field_from_index(td->packet_header, len_index);
738 assert(field->declaration->id == CTF_TYPE_INTEGER);
739 defint = container_of(field, struct definition_integer, p);
740 assert(defint->declaration->signedness == FALSE);
741 stream_id = defint->value._unsigned;
742 }
743 }
744
745 if (!first_packet && file_stream->stream_id != stream_id) {
746 fprintf(stdout, "[error] Stream ID is changing within a stream.\n");
747 return -EINVAL;
748 }
749 if (first_packet) {
750 file_stream->stream_id = stream_id;
751 if (stream_id >= td->streams->len) {
752 fprintf(stdout, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
753 return -EINVAL;
754 }
755 stream = g_ptr_array_index(td->streams, stream_id);
756 if (!stream) {
757 fprintf(stdout, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
758 return -EINVAL;
759 }
760 file_stream->stream.stream_class = stream;
761 }
762 first_packet = 0;
763
764 if (stream->packet_context) {
765 /* Read packet context */
766 ret = generic_rw(&pos->parent, &stream->packet_context->p);
767 if (ret)
768 return ret;
769 /* read content size from header */
770 len_index = struct_declaration_lookup_field_index(stream->packet_context->declaration, g_quark_from_static_string("content_size"));
771 if (len_index >= 0) {
772 struct definition_integer *defint;
773 struct definition *field;
774
775 field = struct_definition_get_field_from_index(stream->packet_context, len_index);
776 assert(field->declaration->id == CTF_TYPE_INTEGER);
777 defint = container_of(field, struct definition_integer, p);
778 assert(defint->declaration->signedness == FALSE);
779 packet_index.content_size = defint->value._unsigned;
780 } else {
781 /* Use file size for packet size */
782 packet_index.content_size = filestats.st_size * CHAR_BIT;
783 }
784
785 /* read packet size from header */
786 len_index = struct_declaration_lookup_field_index(stream->packet_context->declaration, g_quark_from_static_string("packet_size"));
787 if (len_index >= 0) {
788 struct definition_integer *defint;
789 struct definition *field;
790
791 field = struct_definition_get_field_from_index(stream->packet_context, len_index);
792 assert(field->declaration->id == CTF_TYPE_INTEGER);
793 defint = container_of(field, struct definition_integer, p);
794 assert(defint->declaration->signedness == FALSE);
795 packet_index.packet_size = defint->value._unsigned;
796 } else {
797 /* Use content size if non-zero, else file size */
798 packet_index.packet_size = packet_index.content_size ? : filestats.st_size * CHAR_BIT;
799 }
800 } else {
801 /* Use file size for packet size */
802 packet_index.content_size = filestats.st_size * CHAR_BIT;
803 /* Use content size if non-zero, else file size */
804 packet_index.packet_size = packet_index.content_size ? : filestats.st_size * CHAR_BIT;
805 }
806
807 /* Validate content size and packet size values */
808 if (packet_index.content_size > packet_index.packet_size) {
809 fprintf(stdout, "[error] Content size (%zu bits) is larger than packet size (%zu bits).\n",
810 packet_index.content_size, packet_index.packet_size);
811 return -EINVAL;
812 }
813
814 if (packet_index.packet_size > (filestats.st_size - packet_index.offset) * CHAR_BIT) {
815 fprintf(stdout, "[error] Packet size (%zu bits) is larger than remaining file size (%zu bits).\n",
816 packet_index.content_size, (filestats.st_size - packet_index.offset) * CHAR_BIT);
817 return -EINVAL;
818 }
819
820 /* Save position after header and context */
821 packet_index.data_offset = pos->offset;
822
823 /* add index to packet array */
824 g_array_append_val(file_stream->pos.packet_index, packet_index);
825
826 pos->mmap_offset += packet_index.packet_size / CHAR_BIT;
827 }
828
829 /* Move pos back to beginning of file */
830 ctf_move_pos_slow(pos, 0, SEEK_SET); /* position for write */
831
832 return 0;
833 }
834
835 /*
836 * Note: many file streams can inherit from the same stream class
837 * description (metadata).
838 */
839 static
840 int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags)
841 {
842 int ret;
843 struct ctf_file_stream *file_stream;
844
845 ret = openat(td->dirfd, path, flags);
846 if (ret < 0)
847 goto error;
848 file_stream = g_new0(struct ctf_file_stream, 1);
849 ctf_init_pos(&file_stream->pos, ret, flags);
850 ret = create_stream_packet_index(td, file_stream);
851 if (ret)
852 goto error_index;
853 /* Add stream file to stream class */
854 g_ptr_array_add(file_stream->stream.stream_class->files, file_stream);
855 return 0;
856
857 error_index:
858 ctf_fini_pos(&file_stream->pos);
859 close(file_stream->pos.fd);
860 g_free(file_stream);
861 error:
862 return ret;
863 }
864
865 static
866 int ctf_open_trace_read(struct ctf_trace *td, const char *path, int flags)
867 {
868 int ret;
869 struct dirent *dirent;
870 struct dirent *diriter;
871 size_t dirent_len;
872
873 td->flags = flags;
874
875 /* Open trace directory */
876 td->dir = opendir(path);
877 if (!td->dir) {
878 fprintf(stdout, "[error] Unable to open trace directory.\n");
879 ret = -ENOENT;
880 goto error;
881 }
882
883 td->dirfd = open(path, 0);
884 if (td->dirfd < 0) {
885 fprintf(stdout, "[error] Unable to open trace directory file descriptor.\n");
886 ret = -ENOENT;
887 goto error_dirfd;
888 }
889
890 /*
891 * Keep the metadata file separate.
892 */
893
894 ret = ctf_open_trace_metadata_read(td);
895 if (ret) {
896 goto error_metadata;
897 }
898
899 /*
900 * Open each stream: for each file, try to open, check magic
901 * number, and get the stream ID to add to the right location in
902 * the stream array.
903 */
904
905 dirent_len = offsetof(struct dirent, d_name) +
906 fpathconf(td->dirfd, _PC_NAME_MAX) + 1;
907
908 dirent = malloc(dirent_len);
909
910 for (;;) {
911 ret = readdir_r(td->dir, dirent, &diriter);
912 if (ret) {
913 fprintf(stdout, "[error] Readdir error.\n");
914 goto readdir_error;
915 }
916 if (!diriter)
917 break;
918 /* Ignore hidden files, ., .. and metadata. */
919 if (!strncmp(diriter->d_name, ".", 1)
920 || !strcmp(diriter->d_name, "..")
921 || !strcmp(diriter->d_name, "metadata"))
922 continue;
923 ret = ctf_open_file_stream_read(td, diriter->d_name, flags);
924 if (ret) {
925 fprintf(stdout, "[error] Open file stream error.\n");
926 goto readdir_error;
927 }
928 }
929
930 free(dirent);
931 return 0;
932
933 readdir_error:
934 free(dirent);
935 error_metadata:
936 close(td->dirfd);
937 error_dirfd:
938 closedir(td->dir);
939 error:
940 return ret;
941 }
942
943 static
944 struct trace_descriptor *ctf_open_trace(const char *path, int flags)
945 {
946 struct ctf_trace *td;
947 int ret;
948
949 td = g_new0(struct ctf_trace, 1);
950
951 switch (flags & O_ACCMODE) {
952 case O_RDONLY:
953 if (!path) {
954 fprintf(stdout, "[error] Path missing for input CTF trace.\n");
955 goto error;
956 }
957 ret = ctf_open_trace_read(td, path, flags);
958 if (ret)
959 goto error;
960 break;
961 case O_RDWR:
962 fprintf(stdout, "[error] Opening CTF traces for output is not supported yet.\n");
963 goto error;
964 default:
965 fprintf(stdout, "[error] Incorrect open flags.\n");
966 goto error;
967 }
968
969 return &td->parent;
970 error:
971 g_free(td);
972 return NULL;
973 }
974
975 static
976 void ctf_close_file_stream(struct ctf_file_stream *file_stream)
977 {
978 ctf_fini_pos(&file_stream->pos);
979 close(file_stream->pos.fd);
980 }
981
982 static
983 void ctf_close_trace(struct trace_descriptor *tdp)
984 {
985 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
986 int i;
987
988 if (td->streams) {
989 for (i = 0; i < td->streams->len; i++) {
990 struct ctf_stream_class *stream;
991 int j;
992
993 stream = g_ptr_array_index(td->streams, i);
994 if (!stream)
995 continue;
996 for (j = 0; j < stream->files->len; j++) {
997 struct ctf_file_stream *file_stream;
998 file_stream = g_ptr_array_index(stream->files, j);
999 ctf_close_file_stream(file_stream);
1000 }
1001
1002 }
1003 g_ptr_array_free(td->streams, TRUE);
1004 }
1005 closedir(td->dir);
1006 g_free(td);
1007 }
1008
1009 void __attribute__((constructor)) ctf_init(void)
1010 {
1011 int ret;
1012
1013 ctf_format.name = g_quark_from_static_string("ctf");
1014 ret = bt_register_format(&ctf_format);
1015 assert(!ret);
1016 }
1017
1018 /* TODO: finalize */
This page took 0.048962 seconds and 5 git commands to generate.