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