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