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