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