configure.ac: add check for popt library
[babeltrace.git] / formats / ctf / ctf.c
CommitLineData
fc93b2bd
MD
1/*
2 * BabelTrace - Common Trace Format (CTF)
3 *
4 * Format registration.
5 *
64fa3fec
MD
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
7 *
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
fc93b2bd 9 *
ccd7e1c8
MD
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:
fc93b2bd 16 *
ccd7e1c8
MD
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
fc93b2bd
MD
19 */
20
21#include <babeltrace/format.h>
22#include <babeltrace/ctf/types.h>
bbefb8dd 23#include <babeltrace/ctf/metadata.h>
70bd0a12 24#include <babeltrace/babeltrace-internal.h>
0f980a35 25#include <inttypes.h>
b4c19c1e 26#include <stdio.h>
0f980a35
MD
27#include <uuid/uuid.h>
28#include <sys/mman.h>
bbefb8dd 29#include <errno.h>
b4c19c1e 30#include <endian.h>
bbefb8dd 31#include <sys/types.h>
65102a8c 32#include <sys/stat.h>
bbefb8dd 33#include <fcntl.h>
65102a8c 34#include <dirent.h>
bbefb8dd 35#include <glib.h>
65102a8c
MD
36#include <unistd.h>
37#include <stdlib.h>
38
65102a8c
MD
39#include "metadata/ctf-scanner.h"
40#include "metadata/ctf-parser.h"
41#include "metadata/ctf-ast.h"
42
0f980a35
MD
43/*
44 * We currently simply map a page to read the packet header and packet
8c572eba 45 * context to get the packet length and content length. (in bits)
0f980a35 46 */
8c572eba
MD
47#define MAX_PACKET_HEADER_LEN (getpagesize() * CHAR_BIT)
48#define WRITE_PACKET_LEN (getpagesize() * 8 * CHAR_BIT)
0f980a35
MD
49#define UUID_LEN 16 /* uuid by value len */
50
a0fe7d97
MD
51#ifndef min
52#define min(a, b) (((a) < (b)) ? (a) : (b))
53#endif
54
65102a8c 55extern int yydebug;
bbefb8dd 56
e9378815 57static
b086c01a
JD
58struct trace_descriptor *ctf_open_trace(const char *path, int flags,
59 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
ae23d232 60 int whence), FILE *metadata_fp);
e9378815 61static
f571dfb1
JD
62struct trace_descriptor *ctf_open_mmap_trace(
63 struct mmap_stream_list *mmap_list,
64 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset, int whence),
65 FILE *metadata_fp);
66
67static
bbefb8dd 68void ctf_close_trace(struct trace_descriptor *descriptor);
fc93b2bd 69
1ae19169
MD
70static
71rw_dispatch read_dispatch_table[] = {
d11e9c49
MD
72 [ CTF_TYPE_INTEGER ] = ctf_integer_read,
73 [ CTF_TYPE_FLOAT ] = ctf_float_read,
74 [ CTF_TYPE_ENUM ] = ctf_enum_read,
75 [ CTF_TYPE_STRING ] = ctf_string_read,
76 [ CTF_TYPE_STRUCT ] = ctf_struct_rw,
77 [ CTF_TYPE_VARIANT ] = ctf_variant_rw,
81dee1bb
MD
78 [ CTF_TYPE_ARRAY ] = ctf_array_read,
79 [ CTF_TYPE_SEQUENCE ] = ctf_sequence_read,
d11e9c49
MD
80};
81
1ae19169
MD
82static
83rw_dispatch write_dispatch_table[] = {
d11e9c49
MD
84 [ CTF_TYPE_INTEGER ] = ctf_integer_write,
85 [ CTF_TYPE_FLOAT ] = ctf_float_write,
86 [ CTF_TYPE_ENUM ] = ctf_enum_write,
87 [ CTF_TYPE_STRING ] = ctf_string_write,
88 [ CTF_TYPE_STRUCT ] = ctf_struct_rw,
89 [ CTF_TYPE_VARIANT ] = ctf_variant_rw,
81dee1bb
MD
90 [ CTF_TYPE_ARRAY ] = ctf_array_write,
91 [ CTF_TYPE_SEQUENCE ] = ctf_sequence_write,
d11e9c49
MD
92};
93
1ae19169 94static
d11e9c49 95struct format ctf_format = {
bbefb8dd 96 .open_trace = ctf_open_trace,
f571dfb1 97 .open_mmap_trace = ctf_open_mmap_trace,
bbefb8dd 98 .close_trace = ctf_close_trace,
fc93b2bd
MD
99};
100
2b9a764d
MD
101static
102void ctf_update_timestamp(struct ctf_stream *stream,
103 struct definition_integer *integer_definition)
104{
105 struct declaration_integer *integer_declaration =
106 integer_definition->declaration;
107 uint64_t oldval, newval, updateval;
108
7f3f572b 109 if (unlikely(integer_declaration->len == 64)) {
2b9a764d
MD
110 stream->timestamp = integer_definition->value._unsigned;
111 return;
112 }
113 /* keep low bits */
114 oldval = stream->timestamp;
115 oldval &= (1ULL << integer_declaration->len) - 1;
116 newval = integer_definition->value._unsigned;
117 /* Test for overflow by comparing low bits */
118 if (newval < oldval)
119 newval += 1ULL << integer_declaration->len;
120 /* updateval contains old high bits, and new low bits (sum) */
121 updateval = stream->timestamp;
122 updateval &= ~((1ULL << integer_declaration->len) - 1);
123 updateval += newval;
124 stream->timestamp = updateval;
125}
126
31262354 127static
764af3f4 128int ctf_read_event(struct stream_pos *ppos, struct ctf_stream *stream)
31262354
MD
129{
130 struct ctf_stream_pos *pos =
131 container_of(ppos, struct ctf_stream_pos, parent);
764af3f4 132 struct ctf_stream_class *stream_class = stream->stream_class;
42dc00b7 133 struct ctf_stream_event *event;
31262354 134 uint64_t id = 0;
31262354
MD
135 int ret;
136
3abe83c7
MD
137 /* We need to check for EOF here for empty files. */
138 if (unlikely(pos->offset == EOF))
139 return EOF;
140
5f643ed7
MD
141 ctf_pos_get_event(pos);
142
3abe83c7
MD
143 /*
144 * This is the EOF check after we've advanced the position in
145 * ctf_pos_get_event.
146 */
7f3f572b 147 if (unlikely(pos->offset == EOF))
31262354 148 return EOF;
5f643ed7 149 assert(pos->offset < pos->content_size);
31262354
MD
150
151 /* Read event header */
7f3f572b 152 if (likely(stream->stream_event_header)) {
a35173fe 153 struct definition_integer *integer_definition;
ccdb988e 154 struct definition *variant;
a35173fe 155
e28d4618 156 ret = generic_rw(ppos, &stream->stream_event_header->p);
7f3f572b 157 if (unlikely(ret))
31262354
MD
158 goto error;
159 /* lookup event id */
e28d4618 160 integer_definition = lookup_integer(&stream->stream_event_header->p, "id", FALSE);
a35173fe
MD
161 if (integer_definition) {
162 id = integer_definition->value._unsigned;
163 } else {
164 struct definition_enum *enum_definition;
165
e28d4618 166 enum_definition = lookup_enum(&stream->stream_event_header->p, "id", FALSE);
a35173fe
MD
167 if (enum_definition) {
168 id = enum_definition->integer->value._unsigned;
169 }
31262354 170 }
764af3f4 171
e28d4618 172 variant = lookup_variant(&stream->stream_event_header->p, "v");
ccdb988e
MD
173 if (variant) {
174 integer_definition = lookup_integer(variant, "id", FALSE);
175 if (integer_definition) {
176 id = integer_definition->value._unsigned;
177 }
178 }
c87a8eb2 179 stream->event_id = id;
ccdb988e 180
764af3f4 181 /* lookup timestamp */
5e2eb0ae 182 stream->has_timestamp = 0;
e28d4618 183 integer_definition = lookup_integer(&stream->stream_event_header->p, "timestamp", FALSE);
a35173fe 184 if (integer_definition) {
2b9a764d 185 ctf_update_timestamp(stream, integer_definition);
5e2eb0ae 186 stream->has_timestamp = 1;
a35173fe 187 } else {
ccdb988e
MD
188 if (variant) {
189 integer_definition = lookup_integer(variant, "timestamp", FALSE);
a35173fe 190 if (integer_definition) {
2b9a764d 191 ctf_update_timestamp(stream, integer_definition);
5e2eb0ae 192 stream->has_timestamp = 1;
a35173fe
MD
193 }
194 }
764af3f4 195 }
31262354
MD
196 }
197
198 /* Read stream-declared event context */
e28d4618
MD
199 if (stream->stream_event_context) {
200 ret = generic_rw(ppos, &stream->stream_event_context->p);
31262354
MD
201 if (ret)
202 goto error;
203 }
204
7f3f572b 205 if (unlikely(id >= stream_class->events_by_id->len)) {
31262354
MD
206 fprintf(stdout, "[error] Event id %" PRIu64 " is outside range.\n", id);
207 return -EINVAL;
208 }
e28d4618 209 event = g_ptr_array_index(stream->events_by_id, id);
7f3f572b 210 if (unlikely(!event)) {
31262354
MD
211 fprintf(stdout, "[error] Event id %" PRIu64 " is unknown.\n", id);
212 return -EINVAL;
213 }
214
215 /* Read event-declared event context */
e28d4618
MD
216 if (event->event_context) {
217 ret = generic_rw(ppos, &event->event_context->p);
31262354
MD
218 if (ret)
219 goto error;
220 }
221
222 /* Read event payload */
7f3f572b 223 if (likely(event->event_fields)) {
e28d4618 224 ret = generic_rw(ppos, &event->event_fields->p);
31262354
MD
225 if (ret)
226 goto error;
227 }
228
229 return 0;
230
231error:
232 fprintf(stdout, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
233 return ret;
234}
235
236static
764af3f4 237int ctf_write_event(struct stream_pos *pos, struct ctf_stream *stream)
31262354 238{
764af3f4 239 struct ctf_stream_class *stream_class = stream->stream_class;
42dc00b7 240 struct ctf_stream_event *event;
c87a8eb2 241 uint64_t id;
31262354
MD
242 int ret;
243
c87a8eb2
MD
244 id = stream->event_id;
245
31262354 246 /* print event header */
7f3f572b 247 if (likely(stream->stream_event_header)) {
e28d4618 248 ret = generic_rw(pos, &stream->stream_event_header->p);
31262354
MD
249 if (ret)
250 goto error;
251 }
252
253 /* print stream-declared event context */
e28d4618
MD
254 if (stream->stream_event_context) {
255 ret = generic_rw(pos, &stream->stream_event_context->p);
31262354
MD
256 if (ret)
257 goto error;
258 }
259
7f3f572b 260 if (unlikely(id >= stream_class->events_by_id->len)) {
31262354
MD
261 fprintf(stdout, "[error] Event id %" PRIu64 " is outside range.\n", id);
262 return -EINVAL;
263 }
e28d4618 264 event = g_ptr_array_index(stream->events_by_id, id);
7f3f572b 265 if (unlikely(!event)) {
31262354
MD
266 fprintf(stdout, "[error] Event id %" PRIu64 " is unknown.\n", id);
267 return -EINVAL;
268 }
269
270 /* print event-declared event context */
e28d4618
MD
271 if (event->event_context) {
272 ret = generic_rw(pos, &event->event_context->p);
31262354
MD
273 if (ret)
274 goto error;
275 }
276
277 /* Read and print event payload */
7f3f572b 278 if (likely(event->event_fields)) {
e28d4618 279 ret = generic_rw(pos, &event->event_fields->p);
31262354
MD
280 if (ret)
281 goto error;
282 }
283
284 return 0;
285
286error:
287 fprintf(stdout, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n");
288 return ret;
289}
290
8563e754 291void ctf_init_pos(struct ctf_stream_pos *pos, int fd, int open_flags)
8c572eba
MD
292{
293 pos->fd = fd;
294 pos->mmap_offset = 0;
295 pos->packet_size = 0;
296 pos->content_size = 0;
297 pos->content_size_loc = NULL;
298 pos->base = NULL;
299 pos->offset = 0;
300 pos->dummy = false;
8c572eba 301 pos->cur_index = 0;
8563e754
MD
302 if (fd >= 0)
303 pos->packet_index = g_array_new(FALSE, TRUE,
304 sizeof(struct packet_index));
305 else
306 pos->packet_index = NULL;
8563e754
MD
307 switch (open_flags & O_ACCMODE) {
308 case O_RDONLY:
309 pos->prot = PROT_READ;
310 pos->flags = MAP_PRIVATE;
311 pos->parent.rw_table = read_dispatch_table;
31262354 312 pos->parent.event_cb = ctf_read_event;
8563e754 313 break;
8563e754
MD
314 case O_RDWR:
315 pos->prot = PROT_WRITE; /* Write has priority */
316 pos->flags = MAP_SHARED;
317 pos->parent.rw_table = write_dispatch_table;
31262354 318 pos->parent.event_cb = ctf_write_event;
8563e754 319 if (fd >= 0)
847bf71a 320 ctf_move_pos_slow(pos, 0, SEEK_SET); /* position for write */
8563e754
MD
321 break;
322 default:
323 assert(0);
8c572eba
MD
324 }
325}
326
46322b33 327void ctf_fini_pos(struct ctf_stream_pos *pos)
8c572eba
MD
328{
329 int ret;
330
331 if (pos->prot == PROT_WRITE && pos->content_size_loc)
332 *pos->content_size_loc = pos->offset;
333 if (pos->base) {
334 /* unmap old base */
335 ret = munmap(pos->base, pos->packet_size / CHAR_BIT);
336 if (ret) {
46322b33 337 fprintf(stdout, "[error] Unable to unmap old base: %s.\n",
8c572eba
MD
338 strerror(errno));
339 assert(0);
340 }
341 }
342 (void) g_array_free(pos->packet_index, TRUE);
343}
344
847bf71a 345void ctf_move_pos_slow(struct ctf_stream_pos *pos, size_t offset, int whence)
0f980a35 346{
75cc2c35
MD
347 struct ctf_file_stream *file_stream =
348 container_of(pos, struct ctf_file_stream, pos);
0f980a35 349 int ret;
8c572eba
MD
350 off_t off;
351 struct packet_index *index;
0f980a35 352
8c572eba
MD
353 if (pos->prot == PROT_WRITE && pos->content_size_loc)
354 *pos->content_size_loc = pos->offset;
0f980a35
MD
355
356 if (pos->base) {
357 /* unmap old base */
8c572eba 358 ret = munmap(pos->base, pos->packet_size / CHAR_BIT);
0f980a35 359 if (ret) {
46322b33 360 fprintf(stdout, "[error] Unable to unmap old base: %s.\n",
0f980a35
MD
361 strerror(errno));
362 assert(0);
363 }
847bf71a 364 pos->base = NULL;
0f980a35
MD
365 }
366
8c572eba 367 /*
46322b33 368 * The caller should never ask for ctf_move_pos across packets,
8c572eba
MD
369 * except to get exactly at the beginning of the next packet.
370 */
371 if (pos->prot == PROT_WRITE) {
989c73bc
MD
372 switch (whence) {
373 case SEEK_CUR:
374 /* The writer will add padding */
375 assert(pos->offset + offset == pos->packet_size);
8c572eba 376 pos->mmap_offset += WRITE_PACKET_LEN / CHAR_BIT;
989c73bc
MD
377 break;
378 case SEEK_SET:
379 assert(offset == 0); /* only seek supported for now */
380 pos->cur_index = 0;
381 break;
382 default:
383 assert(0);
384 }
8c572eba
MD
385 pos->content_size = -1U; /* Unknown at this point */
386 pos->packet_size = WRITE_PACKET_LEN;
989c73bc
MD
387 off = posix_fallocate(pos->fd, pos->mmap_offset,
388 pos->packet_size / CHAR_BIT);
8c572eba 389 assert(off >= 0);
847bf71a 390 pos->offset = 0;
8c572eba 391 } else {
5f643ed7 392 read_next_packet:
847bf71a
MD
393 switch (whence) {
394 case SEEK_CUR:
5f643ed7
MD
395 if (pos->offset == EOF)
396 return;
847bf71a
MD
397 /* The reader will expect us to skip padding */
398 assert(pos->offset + offset == pos->content_size);
8c572eba 399 ++pos->cur_index;
847bf71a
MD
400 break;
401 case SEEK_SET:
402 assert(offset == 0); /* only seek supported for now */
403 pos->cur_index = 0;
404 break;
405 default:
406 assert(0);
407 }
408 if (pos->cur_index >= pos->packet_index->len) {
670977d3 409 pos->offset = EOF;
847bf71a
MD
410 return;
411 }
8c572eba
MD
412 index = &g_array_index(pos->packet_index, struct packet_index,
413 pos->cur_index);
414 pos->mmap_offset = index->offset;
415
416 /* Lookup context/packet size in index */
2d0bea29 417 file_stream->parent.timestamp = index->timestamp_begin;
8c572eba
MD
418 pos->content_size = index->content_size;
419 pos->packet_size = index->packet_size;
5f643ed7 420 if (index->data_offset < index->content_size) {
75cc2c35 421 pos->offset = 0; /* will read headers */
5f643ed7
MD
422 } else if (index->data_offset == index->content_size) {
423 /* empty packet */
424 pos->offset = index->data_offset;
425 offset = 0;
3abe83c7 426 whence = SEEK_CUR;
5f643ed7 427 goto read_next_packet;
7eda6fc7 428 } else {
2b9a764d
MD
429 pos->offset = EOF;
430 return;
431 }
8c572eba 432 }
0f980a35 433 /* map new base. Need mapping length from header. */
8c572eba
MD
434 pos->base = mmap(NULL, pos->packet_size / CHAR_BIT, pos->prot,
435 pos->flags, pos->fd, pos->mmap_offset);
847bf71a
MD
436 if (pos->base == MAP_FAILED) {
437 fprintf(stdout, "[error] mmap error %s.\n",
438 strerror(errno));
439 assert(0);
440 }
75cc2c35
MD
441
442 /* update trace_packet_header and stream_packet_context */
2d0bea29 443 if (pos->prot != PROT_WRITE && file_stream->parent.trace_packet_header) {
75cc2c35 444 /* Read packet header */
2d0bea29 445 ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p);
75cc2c35
MD
446 assert(!ret);
447 }
2d0bea29 448 if (pos->prot != PROT_WRITE && file_stream->parent.stream_packet_context) {
75cc2c35 449 /* Read packet context */
2d0bea29 450 ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p);
75cc2c35
MD
451 assert(!ret);
452 }
0f980a35
MD
453}
454
b4c19c1e
MD
455static
456int packet_metadata(struct ctf_trace *td, FILE *fp)
457{
458 uint32_t magic;
459 size_t len;
460 int ret = 0;
461
462 len = fread(&magic, sizeof(magic), 1, fp);
a0fe7d97 463 if (len != 1) {
b4c19c1e
MD
464 goto end;
465 }
466 if (magic == TSDL_MAGIC) {
467 ret = 1;
468 td->byte_order = BYTE_ORDER;
0d336fdf 469 CTF_TRACE_SET_FIELD(td, byte_order);
b4c19c1e
MD
470 } else if (magic == GUINT32_SWAP_LE_BE(TSDL_MAGIC)) {
471 ret = 1;
472 td->byte_order = (BYTE_ORDER == BIG_ENDIAN) ?
473 LITTLE_ENDIAN : BIG_ENDIAN;
0d336fdf 474 CTF_TRACE_SET_FIELD(td, byte_order);
b4c19c1e
MD
475 }
476end:
477 rewind(fp);
478 return ret;
479}
480
5c262147
MD
481/*
482 * Returns 0 on success, -1 on error.
483 */
484static
485int check_version(unsigned int major, unsigned int minor)
486{
487 switch (major) {
488 case 1:
489 switch (minor) {
490 case 8:
491 return 0;
492 default:
493 goto warning;
494 }
495 default:
496 goto warning;
497
498 }
499
500 /* eventually return an error instead of warning */
501warning:
502 fprintf(stdout, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n",
503 major, minor);
504 return 0;
505}
506
b4c19c1e
MD
507static
508int ctf_open_trace_metadata_packet_read(struct ctf_trace *td, FILE *in,
509 FILE *out)
510{
511 struct metadata_packet_header header;
a0fe7d97 512 size_t readlen, writelen, toread;
f8254867 513 char buf[4096 + 1]; /* + 1 for debug-mode \0 */
b4c19c1e
MD
514 int ret = 0;
515
a91a962e 516 readlen = fread(&header, header_sizeof(header), 1, in);
a0fe7d97 517 if (readlen < 1)
b4c19c1e
MD
518 return -EINVAL;
519
520 if (td->byte_order != BYTE_ORDER) {
521 header.magic = GUINT32_SWAP_LE_BE(header.magic);
522 header.checksum = GUINT32_SWAP_LE_BE(header.checksum);
523 header.content_size = GUINT32_SWAP_LE_BE(header.content_size);
524 header.packet_size = GUINT32_SWAP_LE_BE(header.packet_size);
525 }
526 if (header.checksum)
527 fprintf(stdout, "[warning] checksum verification not supported yet.\n");
528 if (header.compression_scheme) {
529 fprintf(stdout, "[error] compression (%u) not supported yet.\n",
530 header.compression_scheme);
531 return -EINVAL;
532 }
533 if (header.encryption_scheme) {
534 fprintf(stdout, "[error] encryption (%u) not supported yet.\n",
535 header.encryption_scheme);
536 return -EINVAL;
537 }
538 if (header.checksum_scheme) {
539 fprintf(stdout, "[error] checksum (%u) not supported yet.\n",
540 header.checksum_scheme);
541 return -EINVAL;
542 }
5c262147
MD
543 if (check_version(header.major, header.minor) < 0)
544 return -EINVAL;
b4c19c1e
MD
545 if (!CTF_TRACE_FIELD_IS_SET(td, uuid)) {
546 memcpy(td->uuid, header.uuid, sizeof(header.uuid));
547 CTF_TRACE_SET_FIELD(td, uuid);
548 } else {
549 if (uuid_compare(header.uuid, td->uuid))
550 return -EINVAL;
551 }
552
255b2138 553 toread = (header.content_size / CHAR_BIT) - header_sizeof(header);
a0fe7d97
MD
554
555 for (;;) {
f8254867 556 readlen = fread(buf, sizeof(char), min(sizeof(buf) - 1, toread), in);
b4c19c1e
MD
557 if (ferror(in)) {
558 ret = -EINVAL;
559 break;
560 }
4152822b 561 if (babeltrace_debug) {
f8254867 562 buf[readlen] = '\0';
4152822b
MD
563 fprintf(stdout, "[debug] metadata packet read: %s\n",
564 buf);
565 }
566
b4c19c1e
MD
567 writelen = fwrite(buf, sizeof(char), readlen, out);
568 if (writelen < readlen) {
569 ret = -EIO;
570 break;
571 }
572 if (ferror(out)) {
573 ret = -EINVAL;
574 break;
575 }
a0fe7d97
MD
576 toread -= readlen;
577 if (!toread) {
7f4b5c4d 578 ret = 0; /* continue reading next packet */
ddbc52af 579 goto read_padding;
a0fe7d97 580 }
b4c19c1e
MD
581 }
582 return ret;
ddbc52af
MD
583
584read_padding:
585 toread = (header.packet_size - header.content_size) / CHAR_BIT;
586 ret = fseek(in, toread, SEEK_CUR);
587 if (ret < 0) {
588 fprintf(stdout, "[warning] Missing padding at end of file\n");
589 ret = 0;
590 }
591 return ret;
b4c19c1e
MD
592}
593
594static
595int ctf_open_trace_metadata_stream_read(struct ctf_trace *td, FILE **fp,
596 char **buf)
597{
598 FILE *in, *out;
599 size_t size;
600 int ret;
601
602 in = *fp;
c4f5487e
MD
603 /*
604 * Using strlen on *buf instead of size of open_memstream
605 * because its size includes garbage at the end (after final
606 * \0). This is the allocated size, not the actual string size.
607 */
b4c19c1e
MD
608 out = open_memstream(buf, &size);
609 if (out == NULL)
610 return -errno;
611
612 for (;;) {
613 ret = ctf_open_trace_metadata_packet_read(td, in, out);
7f4b5c4d 614 if (ret) {
b4c19c1e 615 break;
7f4b5c4d
MD
616 }
617 if (feof(in)) {
618 ret = 0;
b4c19c1e
MD
619 break;
620 }
621 }
622 fclose(out); /* flush the buffer */
623 fclose(in);
624 /* open for reading */
c4f5487e 625 *fp = fmemopen(*buf, strlen(*buf), "rb");
b4c19c1e
MD
626 return 0;
627}
628
65102a8c 629static
b086c01a
JD
630int ctf_open_trace_metadata_read(struct ctf_trace *td,
631 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
ae23d232 632 int whence), FILE *metadata_fp)
65102a8c
MD
633{
634 struct ctf_scanner *scanner;
2d0bea29 635 struct ctf_file_stream *metadata_stream;
65102a8c 636 FILE *fp;
b4c19c1e 637 char *buf = NULL;
65102a8c
MD
638 int ret = 0;
639
2d0bea29 640 metadata_stream = g_new0(struct ctf_file_stream, 1);
b086c01a
JD
641
642 if (move_pos_slow) {
643 metadata_stream->pos.move_pos_slow = move_pos_slow;
644 } else {
645 fprintf(stderr, "[error] move_pos_slow function undefined.\n");
646 ret = -1;
647 goto end_stream;
648 }
649
ae23d232
JD
650 if (metadata_fp) {
651 fp = metadata_fp;
652 } else {
653 td->metadata = &metadata_stream->parent;
654 metadata_stream->pos.fd = openat(td->dirfd, "metadata", O_RDONLY);
655 if (metadata_stream->pos.fd < 0) {
656 fprintf(stdout, "Unable to open metadata.\n");
657 return metadata_stream->pos.fd;
658 }
65102a8c 659
ae23d232
JD
660 fp = fdopen(metadata_stream->pos.fd, "r");
661 if (!fp) {
662 fprintf(stdout, "[error] Unable to open metadata stream.\n");
663 ret = -errno;
664 goto end_stream;
665 }
666 }
65102a8c
MD
667 if (babeltrace_debug)
668 yydebug = 1;
669
b4c19c1e
MD
670 if (packet_metadata(td, fp)) {
671 ret = ctf_open_trace_metadata_stream_read(td, &fp, &buf);
672 if (ret)
673 goto end_packet_read;
da75b0f7 674 } else {
5c262147
MD
675 unsigned int major, minor;
676 ssize_t nr_items;
8c2df3f5 677
da75b0f7 678 td->byte_order = BYTE_ORDER;
8c2df3f5 679
5c262147
MD
680 /* Check text-only metadata header and version */
681 nr_items = fscanf(fp, "/* CTF %u.%u", &major, &minor);
682 if (nr_items < 2)
683 fprintf(stdout, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n");
684 if (check_version(major, minor) < 0) {
685 ret = -EINVAL;
686 goto end_packet_read;
687 }
8c2df3f5 688 rewind(fp);
b4c19c1e
MD
689 }
690
65102a8c
MD
691 scanner = ctf_scanner_alloc(fp);
692 if (!scanner) {
46322b33 693 fprintf(stdout, "[error] Error allocating scanner\n");
65102a8c
MD
694 ret = -ENOMEM;
695 goto end_scanner_alloc;
696 }
697 ret = ctf_scanner_append_ast(scanner);
698 if (ret) {
46322b33 699 fprintf(stdout, "[error] Error creating AST\n");
65102a8c
MD
700 goto end;
701 }
702
703 if (babeltrace_debug) {
704 ret = ctf_visitor_print_xml(stdout, 0, &scanner->ast->root);
705 if (ret) {
46322b33 706 fprintf(stdout, "[error] Error visiting AST for XML output\n");
65102a8c
MD
707 goto end;
708 }
709 }
710
711 ret = ctf_visitor_semantic_check(stdout, 0, &scanner->ast->root);
712 if (ret) {
46322b33 713 fprintf(stdout, "[error] Error in CTF semantic validation %d\n", ret);
65102a8c
MD
714 goto end;
715 }
716 ret = ctf_visitor_construct_metadata(stdout, 0, &scanner->ast->root,
ac5c6ca0 717 td, td->byte_order);
65102a8c 718 if (ret) {
46322b33 719 fprintf(stdout, "[error] Error in CTF metadata constructor %d\n", ret);
65102a8c
MD
720 goto end;
721 }
722end:
723 ctf_scanner_free(scanner);
724end_scanner_alloc:
b4c19c1e 725end_packet_read:
65102a8c 726 fclose(fp);
b4c19c1e 727 free(buf);
65102a8c 728end_stream:
2d0bea29
MD
729 close(metadata_stream->pos.fd);
730 if (ret)
731 g_free(metadata_stream);
0f980a35
MD
732 return ret;
733}
734
e28d4618 735static
42dc00b7
MD
736struct ctf_stream_event *create_event_definitions(struct ctf_trace *td,
737 struct ctf_stream *stream,
738 struct ctf_event *event)
e28d4618 739{
42dc00b7 740 struct ctf_stream_event *stream_event = g_new0(struct ctf_stream_event, 1);
e28d4618
MD
741
742 if (event->context_decl) {
743 struct definition *definition =
744 event->context_decl->p.definition_new(&event->context_decl->p,
745 stream->parent_def_scope, 0, 0, "event.context");
746 if (!definition) {
747 goto error;
748 }
42dc00b7 749 stream_event->event_context = container_of(definition,
e28d4618 750 struct definition_struct, p);
42dc00b7 751 stream->parent_def_scope = stream_event->event_context->p.scope;
e28d4618
MD
752 }
753 if (event->fields_decl) {
754 struct definition *definition =
755 event->fields_decl->p.definition_new(&event->fields_decl->p,
756 stream->parent_def_scope, 0, 0, "event.fields");
757 if (!definition) {
758 goto error;
759 }
42dc00b7 760 stream_event->event_fields = container_of(definition,
e28d4618 761 struct definition_struct, p);
42dc00b7 762 stream->parent_def_scope = stream_event->event_fields->p.scope;
e28d4618 763 }
42dc00b7 764 return stream_event;
e28d4618
MD
765
766error:
42dc00b7
MD
767 if (stream_event->event_fields)
768 definition_unref(&stream_event->event_fields->p);
769 if (stream_event->event_context)
770 definition_unref(&stream_event->event_context->p);
e28d4618
MD
771 return NULL;
772}
773
774static
775int create_stream_definitions(struct ctf_trace *td, struct ctf_stream *stream)
776{
777 struct ctf_stream_class *stream_class;
778 int ret;
779 int i;
780
781 if (stream->stream_definitions_created)
782 return 0;
783
784 stream_class = stream->stream_class;
785
786 if (stream_class->packet_context_decl) {
787 struct definition *definition =
788 stream_class->packet_context_decl->p.definition_new(&stream_class->packet_context_decl->p,
789 stream->parent_def_scope, 0, 0, "stream.packet.context");
790 if (!definition) {
791 ret = -EINVAL;
792 goto error;
793 }
794 stream->stream_packet_context = container_of(definition,
795 struct definition_struct, p);
796 stream->parent_def_scope = stream->stream_packet_context->p.scope;
797 }
798 if (stream_class->event_header_decl) {
799 struct definition *definition =
800 stream_class->event_header_decl->p.definition_new(&stream_class->event_header_decl->p,
801 stream->parent_def_scope, 0, 0, "stream.event.header");
802 if (!definition) {
803 ret = -EINVAL;
804 goto error;
805 }
806 stream->stream_event_header =
807 container_of(definition, struct definition_struct, p);
808 stream->parent_def_scope = stream->stream_event_header->p.scope;
809 }
810 if (stream_class->event_context_decl) {
811 struct definition *definition =
812 stream_class->event_context_decl->p.definition_new(&stream_class->event_context_decl->p,
813 stream->parent_def_scope, 0, 0, "stream.event.context");
814 if (!definition) {
815 ret = -EINVAL;
816 goto error;
817 }
818 stream->stream_event_context =
819 container_of(definition, struct definition_struct, p);
820 stream->parent_def_scope = stream->stream_event_context->p.scope;
821 }
822 stream->events_by_id = g_ptr_array_new();
823 g_ptr_array_set_size(stream->events_by_id, stream_class->events_by_id->len);
824 for (i = 0; i < stream->events_by_id->len; i++) {
825 struct ctf_event *event = g_ptr_array_index(stream_class->events_by_id, i);
42dc00b7 826 struct ctf_stream_event *stream_event;
e28d4618
MD
827
828 if (!event)
829 continue;
42dc00b7
MD
830 stream_event = create_event_definitions(td, stream, event);
831 if (!stream_event)
e28d4618 832 goto error_event;
42dc00b7 833 g_ptr_array_index(stream->events_by_id, i) = stream_event;
e28d4618
MD
834 }
835 return 0;
836
837error_event:
838 for (i = 0; i < stream->events_by_id->len; i++) {
42dc00b7
MD
839 struct ctf_stream_event *stream_event = g_ptr_array_index(stream->events_by_id, i);
840 if (stream_event)
841 g_free(stream_event);
e28d4618
MD
842 }
843 g_ptr_array_free(stream->events_by_id, TRUE);
844error:
845 if (stream->stream_event_context)
846 definition_unref(&stream->stream_event_context->p);
847 if (stream->stream_event_header)
848 definition_unref(&stream->stream_event_header->p);
849 if (stream->stream_packet_context)
850 definition_unref(&stream->stream_packet_context->p);
851 return ret;
852}
853
0f980a35
MD
854
855static
46322b33 856int create_stream_packet_index(struct ctf_trace *td,
0f980a35
MD
857 struct ctf_file_stream *file_stream)
858{
aa6bffae 859 struct ctf_stream_class *stream;
0f980a35 860 int len_index;
46322b33 861 struct ctf_stream_pos *pos;
0f980a35
MD
862 struct stat filestats;
863 struct packet_index packet_index;
864 int first_packet = 1;
865 int ret;
866
867 pos = &file_stream->pos;
868
869 ret = fstat(pos->fd, &filestats);
870 if (ret < 0)
871 return ret;
872
8895362d
MD
873 if (filestats.st_size < MAX_PACKET_HEADER_LEN / CHAR_BIT)
874 return -EINVAL;
875
0f980a35
MD
876 for (pos->mmap_offset = 0; pos->mmap_offset < filestats.st_size; ) {
877 uint64_t stream_id = 0;
878
879 if (pos->base) {
880 /* unmap old base */
8c572eba 881 ret = munmap(pos->base, pos->packet_size / CHAR_BIT);
0f980a35 882 if (ret) {
46322b33 883 fprintf(stdout, "[error] Unable to unmap old base: %s.\n",
0f980a35
MD
884 strerror(errno));
885 return ret;
886 }
8c572eba 887 pos->base = NULL;
0f980a35
MD
888 }
889 /* map new base. Need mapping length from header. */
8c572eba 890 pos->base = mmap(NULL, MAX_PACKET_HEADER_LEN / CHAR_BIT, PROT_READ,
0f980a35 891 MAP_PRIVATE, pos->fd, pos->mmap_offset);
dc48ecad
MD
892 pos->content_size = MAX_PACKET_HEADER_LEN; /* Unknown at this point */
893 pos->packet_size = MAX_PACKET_HEADER_LEN; /* Unknown at this point */
0f980a35
MD
894 pos->offset = 0; /* Position of the packet header */
895
8c572eba
MD
896 packet_index.offset = pos->mmap_offset;
897 packet_index.content_size = 0;
898 packet_index.packet_size = 0;
75cc2c35
MD
899 packet_index.timestamp_begin = 0;
900 packet_index.timestamp_end = 0;
8c572eba 901
0f980a35 902 /* read and check header, set stream id (and check) */
2d0bea29 903 if (file_stream->parent.trace_packet_header) {
0f980a35 904 /* Read packet header */
2d0bea29 905 ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p);
c5e74408
MD
906 if (ret)
907 return ret;
2d0bea29 908 len_index = struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("magic"));
0f980a35 909 if (len_index >= 0) {
b1a2f580 910 struct definition *field;
f4c56ac2 911 uint64_t magic;
0f980a35 912
2d0bea29 913 field = struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
f4c56ac2
MD
914 magic = get_unsigned_int(field);
915 if (magic != CTF_MAGIC) {
d8ea2d29 916 fprintf(stdout, "[error] Invalid magic number 0x%" PRIX64 " at packet %u (file offset %zd).\n",
f4c56ac2 917 magic,
8c572eba
MD
918 file_stream->pos.packet_index->len,
919 (ssize_t) pos->mmap_offset);
0f980a35
MD
920 return -EINVAL;
921 }
922 }
923
924 /* check uuid */
2d0bea29 925 len_index = struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("uuid"));
0f980a35
MD
926 if (len_index >= 0) {
927 struct definition_array *defarray;
b1a2f580 928 struct definition *field;
0f980a35
MD
929 uint64_t i;
930 uint8_t uuidval[UUID_LEN];
931
2d0bea29 932 field = struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
b1a2f580
MD
933 assert(field->declaration->id == CTF_TYPE_ARRAY);
934 defarray = container_of(field, struct definition_array, p);
3838df27 935 assert(array_len(defarray) == UUID_LEN);
0f980a35
MD
936
937 for (i = 0; i < UUID_LEN; i++) {
938 struct definition *elem;
0f980a35
MD
939
940 elem = array_index(defarray, i);
f4c56ac2 941 uuidval[i] = get_unsigned_int(elem);
0f980a35 942 }
46322b33 943 ret = uuid_compare(td->uuid, uuidval);
0f980a35
MD
944 if (ret) {
945 fprintf(stdout, "[error] Unique Universal Identifiers do not match.\n");
946 return -EINVAL;
947 }
948 }
949
950
2d0bea29 951 len_index = struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("stream_id"));
0f980a35 952 if (len_index >= 0) {
b1a2f580 953 struct definition *field;
0f980a35 954
2d0bea29 955 field = struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
f4c56ac2 956 stream_id = get_unsigned_int(field);
0f980a35
MD
957 }
958 }
959
2d0bea29 960 if (!first_packet && file_stream->parent.stream_id != stream_id) {
0f980a35
MD
961 fprintf(stdout, "[error] Stream ID is changing within a stream.\n");
962 return -EINVAL;
963 }
964 if (first_packet) {
2d0bea29 965 file_stream->parent.stream_id = stream_id;
46322b33 966 if (stream_id >= td->streams->len) {
0f980a35
MD
967 fprintf(stdout, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
968 return -EINVAL;
969 }
46322b33 970 stream = g_ptr_array_index(td->streams, stream_id);
0f980a35
MD
971 if (!stream) {
972 fprintf(stdout, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
973 return -EINVAL;
974 }
2d0bea29 975 file_stream->parent.stream_class = stream;
01c76b24 976 ret = create_stream_definitions(td, &file_stream->parent);
862434ec
MD
977 if (ret)
978 return ret;
0f980a35
MD
979 }
980 first_packet = 0;
981
2d0bea29 982 if (file_stream->parent.stream_packet_context) {
dc48ecad 983 /* Read packet context */
2d0bea29 984 ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p);
c5e74408
MD
985 if (ret)
986 return ret;
dc48ecad 987 /* read content size from header */
2d0bea29 988 len_index = struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("content_size"));
dc48ecad 989 if (len_index >= 0) {
b1a2f580 990 struct definition *field;
dc48ecad 991
2d0bea29 992 field = struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
f4c56ac2 993 packet_index.content_size = get_unsigned_int(field);
dc48ecad
MD
994 } else {
995 /* Use file size for packet size */
8c572eba 996 packet_index.content_size = filestats.st_size * CHAR_BIT;
dc48ecad
MD
997 }
998
999 /* read packet size from header */
2d0bea29 1000 len_index = struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("packet_size"));
dc48ecad 1001 if (len_index >= 0) {
b1a2f580 1002 struct definition *field;
dc48ecad 1003
2d0bea29 1004 field = struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
f4c56ac2 1005 packet_index.packet_size = get_unsigned_int(field);
dc48ecad
MD
1006 } else {
1007 /* Use content size if non-zero, else file size */
8c572eba 1008 packet_index.packet_size = packet_index.content_size ? : filestats.st_size * CHAR_BIT;
dc48ecad 1009 }
75cc2c35
MD
1010
1011 /* read timestamp begin from header */
2d0bea29 1012 len_index = struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_begin"));
75cc2c35 1013 if (len_index >= 0) {
75cc2c35
MD
1014 struct definition *field;
1015
2d0bea29 1016 field = struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
f4c56ac2 1017 packet_index.timestamp_begin = get_unsigned_int(field);
75cc2c35
MD
1018 }
1019
1020 /* read timestamp end from header */
2d0bea29 1021 len_index = struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_end"));
75cc2c35 1022 if (len_index >= 0) {
75cc2c35
MD
1023 struct definition *field;
1024
2d0bea29 1025 field = struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
f4c56ac2 1026 packet_index.timestamp_end = get_unsigned_int(field);
75cc2c35 1027 }
0f980a35
MD
1028 } else {
1029 /* Use file size for packet size */
8c572eba 1030 packet_index.content_size = filestats.st_size * CHAR_BIT;
0f980a35 1031 /* Use content size if non-zero, else file size */
8c572eba 1032 packet_index.packet_size = packet_index.content_size ? : filestats.st_size * CHAR_BIT;
0f980a35 1033 }
546293fa
MD
1034
1035 /* Validate content size and packet size values */
1036 if (packet_index.content_size > packet_index.packet_size) {
1037 fprintf(stdout, "[error] Content size (%zu bits) is larger than packet size (%zu bits).\n",
1038 packet_index.content_size, packet_index.packet_size);
1039 return -EINVAL;
1040 }
1041
58b0b883
MD
1042 if (packet_index.packet_size > (filestats.st_size - packet_index.offset) * CHAR_BIT) {
1043 fprintf(stdout, "[error] Packet size (%zu bits) is larger than remaining file size (%zu bits).\n",
5aebb2ee 1044 packet_index.content_size, (size_t) (filestats.st_size - packet_index.offset) * CHAR_BIT);
546293fa
MD
1045 return -EINVAL;
1046 }
1047
847bf71a
MD
1048 /* Save position after header and context */
1049 packet_index.data_offset = pos->offset;
0f980a35 1050
0f980a35
MD
1051 /* add index to packet array */
1052 g_array_append_val(file_stream->pos.packet_index, packet_index);
1053
8c572eba 1054 pos->mmap_offset += packet_index.packet_size / CHAR_BIT;
0f980a35
MD
1055 }
1056
847bf71a
MD
1057 /* Move pos back to beginning of file */
1058 ctf_move_pos_slow(pos, 0, SEEK_SET); /* position for write */
1059
0f980a35
MD
1060 return 0;
1061}
1062
e28d4618
MD
1063static
1064int create_trace_definitions(struct ctf_trace *td, struct ctf_stream *stream)
1065{
1066 int ret;
1067
1068 if (td->packet_header_decl) {
1069 struct definition *definition =
1070 td->packet_header_decl->p.definition_new(&td->packet_header_decl->p,
1071 stream->parent_def_scope, 0, 0, "trace.packet.header");
1072 if (!definition) {
1073 ret = -EINVAL;
1074 goto error;
1075 }
1076 stream->trace_packet_header =
1077 container_of(definition, struct definition_struct, p);
1078 stream->parent_def_scope = stream->trace_packet_header->p.scope;
1079 }
1080
1081 return 0;
1082
1083error:
1084 return ret;
1085}
1086
0f980a35
MD
1087/*
1088 * Note: many file streams can inherit from the same stream class
1089 * description (metadata).
1090 */
1091static
b086c01a
JD
1092int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags,
1093 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
1094 int whence))
0f980a35
MD
1095{
1096 int ret;
1097 struct ctf_file_stream *file_stream;
1098
46322b33 1099 ret = openat(td->dirfd, path, flags);
0f980a35
MD
1100 if (ret < 0)
1101 goto error;
1102 file_stream = g_new0(struct ctf_file_stream, 1);
b086c01a
JD
1103
1104 if (move_pos_slow) {
1105 file_stream->pos.move_pos_slow = move_pos_slow;
1106 } else {
1107 fprintf(stderr, "[error] move_pos_slow function undefined.\n");
1108 ret = -1;
1109 goto error_def;
1110 }
1111
8563e754 1112 ctf_init_pos(&file_stream->pos, ret, flags);
2d0bea29 1113 ret = create_trace_definitions(td, &file_stream->parent);
e28d4618
MD
1114 if (ret)
1115 goto error_def;
0f980a35
MD
1116 ret = create_stream_packet_index(td, file_stream);
1117 if (ret)
1118 goto error_index;
1119 /* Add stream file to stream class */
2d0bea29
MD
1120 g_ptr_array_add(file_stream->parent.stream_class->streams,
1121 &file_stream->parent);
0f980a35
MD
1122 return 0;
1123
1124error_index:
2d0bea29
MD
1125 if (file_stream->parent.trace_packet_header)
1126 definition_unref(&file_stream->parent.trace_packet_header->p);
e28d4618 1127error_def:
46322b33 1128 ctf_fini_pos(&file_stream->pos);
0f980a35
MD
1129 close(file_stream->pos.fd);
1130 g_free(file_stream);
1131error:
65102a8c
MD
1132 return ret;
1133}
1134
bbefb8dd 1135static
b086c01a
JD
1136int ctf_open_trace_read(struct ctf_trace *td, const char *path, int flags,
1137 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
ae23d232 1138 int whence), FILE *metadata_fp)
bbefb8dd
MD
1139{
1140 int ret;
65102a8c
MD
1141 struct dirent *dirent;
1142 struct dirent *diriter;
1143 size_t dirent_len;
bbefb8dd 1144
46322b33 1145 td->flags = flags;
bbefb8dd
MD
1146
1147 /* Open trace directory */
46322b33
MD
1148 td->dir = opendir(path);
1149 if (!td->dir) {
dc48ecad 1150 fprintf(stdout, "[error] Unable to open trace directory.\n");
bbefb8dd
MD
1151 ret = -ENOENT;
1152 goto error;
1153 }
1154
46322b33
MD
1155 td->dirfd = open(path, 0);
1156 if (td->dirfd < 0) {
dc48ecad 1157 fprintf(stdout, "[error] Unable to open trace directory file descriptor.\n");
65102a8c
MD
1158 ret = -ENOENT;
1159 goto error_dirfd;
1160 }
0f980a35 1161
65102a8c
MD
1162 /*
1163 * Keep the metadata file separate.
1164 */
bbefb8dd 1165
ae23d232 1166 ret = ctf_open_trace_metadata_read(td, move_pos_slow, metadata_fp);
65102a8c
MD
1167 if (ret) {
1168 goto error_metadata;
1169 }
bbefb8dd
MD
1170
1171 /*
1172 * Open each stream: for each file, try to open, check magic
1173 * number, and get the stream ID to add to the right location in
1174 * the stream array.
bbefb8dd
MD
1175 */
1176
65102a8c 1177 dirent_len = offsetof(struct dirent, d_name) +
46322b33 1178 fpathconf(td->dirfd, _PC_NAME_MAX) + 1;
bbefb8dd 1179
65102a8c 1180 dirent = malloc(dirent_len);
bbefb8dd 1181
65102a8c 1182 for (;;) {
46322b33 1183 ret = readdir_r(td->dir, dirent, &diriter);
65102a8c 1184 if (ret) {
dc48ecad 1185 fprintf(stdout, "[error] Readdir error.\n");
65102a8c 1186 goto readdir_error;
65102a8c
MD
1187 }
1188 if (!diriter)
1189 break;
d8ea2d29
MD
1190 /* Ignore hidden files, ., .. and metadata. */
1191 if (!strncmp(diriter->d_name, ".", 1)
65102a8c
MD
1192 || !strcmp(diriter->d_name, "..")
1193 || !strcmp(diriter->d_name, "metadata"))
1194 continue;
b086c01a 1195 ret = ctf_open_file_stream_read(td, diriter->d_name, flags, move_pos_slow);
dc48ecad
MD
1196 if (ret) {
1197 fprintf(stdout, "[error] Open file stream error.\n");
1198 goto readdir_error;
1199 }
65102a8c 1200 }
bbefb8dd 1201
65102a8c 1202 free(dirent);
bbefb8dd 1203 return 0;
65102a8c
MD
1204
1205readdir_error:
1206 free(dirent);
1207error_metadata:
46322b33 1208 close(td->dirfd);
65102a8c 1209error_dirfd:
46322b33 1210 closedir(td->dir);
bbefb8dd
MD
1211error:
1212 return ret;
1213}
1214
e9378815 1215static
b086c01a
JD
1216struct trace_descriptor *ctf_open_trace(const char *path, int flags,
1217 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
ae23d232 1218 int whence), FILE *metadata_fp)
bbefb8dd 1219{
46322b33 1220 struct ctf_trace *td;
bbefb8dd
MD
1221 int ret;
1222
46322b33 1223 td = g_new0(struct ctf_trace, 1);
bbefb8dd 1224
8c572eba 1225 switch (flags & O_ACCMODE) {
bbefb8dd 1226 case O_RDONLY:
b61922b5
MD
1227 if (!path) {
1228 fprintf(stdout, "[error] Path missing for input CTF trace.\n");
1229 goto error;
1230 }
ae23d232 1231 ret = ctf_open_trace_read(td, path, flags, move_pos_slow, metadata_fp);
bbefb8dd
MD
1232 if (ret)
1233 goto error;
1234 break;
989c73bc 1235 case O_RDWR:
46322b33
MD
1236 fprintf(stdout, "[error] Opening CTF traces for output is not supported yet.\n");
1237 goto error;
bbefb8dd 1238 default:
46322b33 1239 fprintf(stdout, "[error] Incorrect open flags.\n");
bbefb8dd
MD
1240 goto error;
1241 }
1242
46322b33 1243 return &td->parent;
bbefb8dd
MD
1244error:
1245 g_free(td);
1246 return NULL;
1247}
1248
f571dfb1
JD
1249
1250void ctf_init_mmap_pos(struct ctf_stream_pos *pos,
1251 struct mmap_stream *mmap_info)
1252{
1253 pos->mmap_offset = 0;
1254 pos->packet_size = 0;
1255 pos->content_size = 0;
1256 pos->content_size_loc = NULL;
1257 pos->fd = mmap_info->fd;
1258 pos->base = 0;
1259 pos->offset = 0;
1260 pos->dummy = false;
1261 pos->cur_index = 0;
1262 pos->packet_index = NULL;
1263 pos->prot = PROT_READ;
1264 pos->flags = MAP_PRIVATE;
1265 pos->parent.rw_table = read_dispatch_table;
1266 pos->parent.event_cb = ctf_read_event;
1267}
1268
1269static
1270int prepare_mmap_stream_definition(struct ctf_trace *td,
1271 struct ctf_file_stream *file_stream)
1272{
1273 struct ctf_stream_class *stream;
1274 uint64_t stream_id = 0;
1275 int ret;
1276
1277 file_stream->parent.stream_id = stream_id;
1278 if (stream_id >= td->streams->len) {
1279 fprintf(stdout, "[error] Stream %" PRIu64 " is not declared "
1280 "in metadata.\n", stream_id);
1281 ret = -EINVAL;
1282 goto end;
1283 }
1284 stream = g_ptr_array_index(td->streams, stream_id);
1285 if (!stream) {
1286 fprintf(stdout, "[error] Stream %" PRIu64 " is not declared "
1287 "in metadata.\n", stream_id);
1288 ret = -EINVAL;
1289 goto end;
1290 }
1291 file_stream->parent.stream_class = stream;
1292 ret = create_stream_definitions(td, &file_stream->parent);
1293end:
1294 return ret;
1295}
1296
1297static
1298int ctf_open_mmap_stream_read(struct ctf_trace *td,
1299 struct mmap_stream *mmap_info,
1300 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
1301 int whence))
1302{
1303 int ret;
1304 struct ctf_file_stream *file_stream;
1305
1306 file_stream = g_new0(struct ctf_file_stream, 1);
1307 ctf_init_mmap_pos(&file_stream->pos, mmap_info);
1308
1309 file_stream->pos.move_pos_slow = move_pos_slow;
1310
1311 ret = create_trace_definitions(td, &file_stream->parent);
1312 if (ret) {
1313 goto error_def;
1314 }
1315
1316 ret = prepare_mmap_stream_definition(td, file_stream);
1317 if (ret)
1318 goto error_index;
1319
1320 /* Add stream file to stream class */
1321 g_ptr_array_add(file_stream->parent.stream_class->streams,
1322 &file_stream->parent);
1323 return 0;
1324
1325error_index:
1326 if (file_stream->parent.trace_packet_header)
1327 definition_unref(&file_stream->parent.trace_packet_header->p);
1328error_def:
1329 g_free(file_stream);
1330 return ret;
1331}
1332
1333int ctf_open_mmap_trace_read(struct ctf_trace *td,
1334 struct mmap_stream_list *mmap_list,
1335 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset,
1336 int whence),
1337 FILE *metadata_fp)
1338{
1339 int ret;
1340 struct mmap_stream *mmap_info;
1341
1342 ret = ctf_open_trace_metadata_read(td, ctf_move_pos_slow, metadata_fp);
1343 if (ret) {
1344 goto error;
1345 }
1346
1347 /*
1348 * for each stream, try to open, check magic number, and get the
1349 * stream ID to add to the right location in the stream array.
1350 */
1351 cds_list_for_each_entry(mmap_info, &mmap_list->head, list) {
1352 ret = ctf_open_mmap_stream_read(td, mmap_info, move_pos_slow);
1353 if (ret) {
1354 fprintf(stdout, "[error] Open file mmap stream error.\n");
1355 goto error;
1356 }
1357 }
1358
1359 return 0;
1360
1361error:
1362 return ret;
1363}
1364
1365static
1366struct trace_descriptor *ctf_open_mmap_trace(
1367 struct mmap_stream_list *mmap_list,
1368 void (*move_pos_slow)(struct ctf_stream_pos *pos, size_t offset, int whence),
1369 FILE *metadata_fp)
1370{
1371 struct ctf_trace *td;
1372 int ret;
1373
1374 if (!metadata_fp) {
1375 fprintf(stderr, "[error] No metadata file pointer associated, "
1376 "required for mmap parsing\n");
1377 goto error;
1378 }
1379 if (!move_pos_slow) {
1380 fprintf(stderr, "[error] move_pos_slow function undefined.\n");
1381 goto error;
1382 }
1383 td = g_new0(struct ctf_trace, 1);
1384 ret = ctf_open_mmap_trace_read(td, mmap_list, move_pos_slow, metadata_fp);
1385 if (ret)
1386 goto error_free;
1387
1388 return &td->parent;
1389
1390error_free:
1391 g_free(td);
1392error:
1393 return NULL;
1394}
1395
0f980a35
MD
1396static
1397void ctf_close_file_stream(struct ctf_file_stream *file_stream)
1398{
46322b33 1399 ctf_fini_pos(&file_stream->pos);
0f980a35
MD
1400 close(file_stream->pos.fd);
1401}
1402
e9378815 1403static
46322b33 1404void ctf_close_trace(struct trace_descriptor *tdp)
bbefb8dd 1405{
46322b33 1406 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
0f980a35
MD
1407 int i;
1408
46322b33
MD
1409 if (td->streams) {
1410 for (i = 0; i < td->streams->len; i++) {
aa6bffae 1411 struct ctf_stream_class *stream;
0f980a35 1412 int j;
e9378815 1413
46322b33 1414 stream = g_ptr_array_index(td->streams, i);
e9378815
MD
1415 if (!stream)
1416 continue;
2d0bea29 1417 for (j = 0; j < stream->streams->len; j++) {
0f980a35 1418 struct ctf_file_stream *file_stream;
2d0bea29 1419 file_stream = container_of(g_ptr_array_index(stream->streams, j), struct ctf_file_stream, parent);
0f980a35
MD
1420 ctf_close_file_stream(file_stream);
1421 }
1422
1423 }
46322b33 1424 g_ptr_array_free(td->streams, TRUE);
0f980a35 1425 }
46322b33 1426 closedir(td->dir);
bbefb8dd
MD
1427 g_free(td);
1428}
1429
7fb21036 1430void __attribute__((constructor)) ctf_init(void)
fc93b2bd
MD
1431{
1432 int ret;
1433
4c8bfb7e 1434 ctf_format.name = g_quark_from_static_string("ctf");
fc93b2bd
MD
1435 ret = bt_register_format(&ctf_format);
1436 assert(!ret);
1437}
698f0fe4
MD
1438
1439/* TODO: finalize */
This page took 0.095323 seconds and 4 git commands to generate.