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