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