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