Fix: Close traces on context destruction
[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"
68ef7952 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.
34b8fff6 673 * for SEEK_SET: go to packet numer (index).
20d0dcf9 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:
847bf71a
MD
732 switch (whence) {
733 case SEEK_CUR:
41e82e00 734 {
4c4ba021 735 uint64_t events_discarded_diff;
41e82e00 736
7d97fad9
MD
737 if (pos->offset == EOF) {
738 return;
739 }
c309df1c
MD
740 assert(pos->cur_index < pos->packet_cycles_index->len);
741 assert(pos->cur_index < pos->packet_real_index->len);
742
3217ac37 743 /* For printing discarded event count */
03798a93 744 packet_index = &g_array_index(pos->packet_cycles_index,
41e82e00 745 struct packet_index, pos->cur_index);
03798a93
JD
746 file_stream->parent.prev_cycles_timestamp_end =
747 packet_index->timestamp_end;
748 file_stream->parent.prev_cycles_timestamp =
749 packet_index->timestamp_begin;
750
751 packet_index = &g_array_index(pos->packet_real_index,
752 struct packet_index, pos->cur_index);
753 file_stream->parent.prev_real_timestamp_end =
20d0dcf9 754 packet_index->timestamp_end;
03798a93
JD
755 file_stream->parent.prev_real_timestamp =
756 packet_index->timestamp_begin;
757
758 events_discarded_diff = packet_index->events_discarded;
41e82e00 759 if (pos->cur_index > 0) {
03798a93 760 packet_index = &g_array_index(pos->packet_real_index,
41e82e00
MD
761 struct packet_index,
762 pos->cur_index - 1);
20d0dcf9 763 events_discarded_diff -= packet_index->events_discarded;
4c4ba021
MD
764 /*
765 * Deal with 32-bit wrap-around if the
766 * tracer provided a 32-bit field.
767 */
768 if (packet_index->events_discarded_len == 32) {
769 events_discarded_diff = (uint32_t) events_discarded_diff;
770 }
41e82e00 771 }
fca04958 772 file_stream->parent.events_discarded = events_discarded_diff;
03798a93
JD
773 file_stream->parent.prev_real_timestamp = file_stream->parent.real_timestamp;
774 file_stream->parent.prev_cycles_timestamp = file_stream->parent.cycles_timestamp;
847bf71a 775 /* The reader will expect us to skip padding */
8c572eba 776 ++pos->cur_index;
847bf71a 777 break;
41e82e00 778 }
847bf71a 779 case SEEK_SET:
c309df1c
MD
780 if (index >= pos->packet_cycles_index->len) {
781 pos->offset = EOF;
782 return;
783 }
f60efc0e
JD
784 packet_index = &g_array_index(pos->packet_cycles_index,
785 struct packet_index, index);
786 pos->last_events_discarded = packet_index->events_discarded;
20d0dcf9 787 pos->cur_index = index;
03798a93
JD
788 file_stream->parent.prev_real_timestamp = 0;
789 file_stream->parent.prev_real_timestamp_end = 0;
790 file_stream->parent.prev_cycles_timestamp = 0;
791 file_stream->parent.prev_cycles_timestamp_end = 0;
847bf71a
MD
792 break;
793 default:
794 assert(0);
795 }
03798a93 796 if (pos->cur_index >= pos->packet_real_index->len) {
7d97fad9 797 /*
87148dc7
MD
798 * We need to check if we are in trace read or
799 * called from packet indexing. In this last
800 * case, the collection is not there, so we
801 * cannot print the timestamps.
7d97fad9 802 */
4c62e2d8 803 if ((&file_stream->parent)->stream_class->trace->parent.collection) {
badea1a2 804 /*
87148dc7
MD
805 * When a stream reaches the end of the
806 * file, we need to show the number of
807 * events discarded ourselves, because
808 * there is no next event scheduled to
809 * be printed in the output.
badea1a2 810 */
87148dc7 811 if (file_stream->parent.events_discarded) {
badea1a2 812 fflush(stdout);
c829a65c
MD
813 ctf_print_discarded(stderr,
814 &file_stream->parent,
815 1);
87148dc7 816 file_stream->parent.events_discarded = 0;
badea1a2 817 }
7d97fad9 818 }
670977d3 819 pos->offset = EOF;
847bf71a
MD
820 return;
821 }
03798a93
JD
822 packet_index = &g_array_index(pos->packet_cycles_index,
823 struct packet_index,
824 pos->cur_index);
825 file_stream->parent.cycles_timestamp = packet_index->timestamp_begin;
826
827 packet_index = &g_array_index(pos->packet_real_index,
828 struct packet_index,
829 pos->cur_index);
830 file_stream->parent.real_timestamp = packet_index->timestamp_begin;
20d0dcf9 831 pos->mmap_offset = packet_index->offset;
8c572eba
MD
832
833 /* Lookup context/packet size in index */
20d0dcf9
MD
834 pos->content_size = packet_index->content_size;
835 pos->packet_size = packet_index->packet_size;
836 if (packet_index->data_offset < packet_index->content_size) {
75cc2c35 837 pos->offset = 0; /* will read headers */
20d0dcf9 838 } else if (packet_index->data_offset == packet_index->content_size) {
5f643ed7 839 /* empty packet */
20d0dcf9 840 pos->offset = packet_index->data_offset;
3abe83c7 841 whence = SEEK_CUR;
5f643ed7 842 goto read_next_packet;
7eda6fc7 843 } else {
2b9a764d
MD
844 pos->offset = EOF;
845 return;
846 }
8c572eba 847 }
0f980a35 848 /* map new base. Need mapping length from header. */
aee35fcc
MD
849 pos->base_mma = mmap_align(pos->packet_size / CHAR_BIT, pos->prot,
850 pos->flags, pos->fd, pos->mmap_offset);
851 if (pos->base_mma == MAP_FAILED) {
3394d22e 852 fprintf(stderr, "[error] mmap error %s.\n",
847bf71a
MD
853 strerror(errno));
854 assert(0);
855 }
75cc2c35
MD
856
857 /* update trace_packet_header and stream_packet_context */
2d0bea29 858 if (pos->prot != PROT_WRITE && file_stream->parent.trace_packet_header) {
75cc2c35 859 /* Read packet header */
2d0bea29 860 ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p);
75cc2c35
MD
861 assert(!ret);
862 }
2d0bea29 863 if (pos->prot != PROT_WRITE && file_stream->parent.stream_packet_context) {
75cc2c35 864 /* Read packet context */
2d0bea29 865 ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p);
75cc2c35
MD
866 assert(!ret);
867 }
0f980a35
MD
868}
869
b4c19c1e
MD
870static
871int packet_metadata(struct ctf_trace *td, FILE *fp)
872{
873 uint32_t magic;
874 size_t len;
875 int ret = 0;
876
877 len = fread(&magic, sizeof(magic), 1, fp);
a0fe7d97 878 if (len != 1) {
b4c19c1e
MD
879 goto end;
880 }
881 if (magic == TSDL_MAGIC) {
882 ret = 1;
883 td->byte_order = BYTE_ORDER;
0d336fdf 884 CTF_TRACE_SET_FIELD(td, byte_order);
b4c19c1e
MD
885 } else if (magic == GUINT32_SWAP_LE_BE(TSDL_MAGIC)) {
886 ret = 1;
887 td->byte_order = (BYTE_ORDER == BIG_ENDIAN) ?
888 LITTLE_ENDIAN : BIG_ENDIAN;
0d336fdf 889 CTF_TRACE_SET_FIELD(td, byte_order);
b4c19c1e
MD
890 }
891end:
892 rewind(fp);
893 return ret;
894}
895
5c262147
MD
896/*
897 * Returns 0 on success, -1 on error.
898 */
899static
900int check_version(unsigned int major, unsigned int minor)
901{
902 switch (major) {
903 case 1:
904 switch (minor) {
905 case 8:
906 return 0;
907 default:
908 goto warning;
909 }
910 default:
911 goto warning;
912
913 }
914
915 /* eventually return an error instead of warning */
916warning:
3394d22e 917 fprintf(stderr, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n",
5c262147
MD
918 major, minor);
919 return 0;
920}
921
b4c19c1e
MD
922static
923int ctf_open_trace_metadata_packet_read(struct ctf_trace *td, FILE *in,
924 FILE *out)
925{
926 struct metadata_packet_header header;
a0fe7d97 927 size_t readlen, writelen, toread;
f8254867 928 char buf[4096 + 1]; /* + 1 for debug-mode \0 */
b4c19c1e
MD
929 int ret = 0;
930
a91a962e 931 readlen = fread(&header, header_sizeof(header), 1, in);
a0fe7d97 932 if (readlen < 1)
b4c19c1e
MD
933 return -EINVAL;
934
935 if (td->byte_order != BYTE_ORDER) {
936 header.magic = GUINT32_SWAP_LE_BE(header.magic);
937 header.checksum = GUINT32_SWAP_LE_BE(header.checksum);
938 header.content_size = GUINT32_SWAP_LE_BE(header.content_size);
939 header.packet_size = GUINT32_SWAP_LE_BE(header.packet_size);
940 }
941 if (header.checksum)
3394d22e 942 fprintf(stderr, "[warning] checksum verification not supported yet.\n");
b4c19c1e 943 if (header.compression_scheme) {
3394d22e 944 fprintf(stderr, "[error] compression (%u) not supported yet.\n",
b4c19c1e
MD
945 header.compression_scheme);
946 return -EINVAL;
947 }
948 if (header.encryption_scheme) {
3394d22e 949 fprintf(stderr, "[error] encryption (%u) not supported yet.\n",
b4c19c1e
MD
950 header.encryption_scheme);
951 return -EINVAL;
952 }
953 if (header.checksum_scheme) {
3394d22e 954 fprintf(stderr, "[error] checksum (%u) not supported yet.\n",
b4c19c1e
MD
955 header.checksum_scheme);
956 return -EINVAL;
957 }
5c262147
MD
958 if (check_version(header.major, header.minor) < 0)
959 return -EINVAL;
b4c19c1e
MD
960 if (!CTF_TRACE_FIELD_IS_SET(td, uuid)) {
961 memcpy(td->uuid, header.uuid, sizeof(header.uuid));
962 CTF_TRACE_SET_FIELD(td, uuid);
963 } else {
43e34335 964 if (babeltrace_uuid_compare(header.uuid, td->uuid))
b4c19c1e
MD
965 return -EINVAL;
966 }
967
b1ccd079
MD
968 if ((header.content_size / CHAR_BIT) < header_sizeof(header))
969 return -EINVAL;
970
255b2138 971 toread = (header.content_size / CHAR_BIT) - header_sizeof(header);
a0fe7d97
MD
972
973 for (;;) {
f8254867 974 readlen = fread(buf, sizeof(char), min(sizeof(buf) - 1, toread), in);
b4c19c1e
MD
975 if (ferror(in)) {
976 ret = -EINVAL;
977 break;
978 }
4152822b 979 if (babeltrace_debug) {
f8254867 980 buf[readlen] = '\0';
3394d22e 981 fprintf(stderr, "[debug] metadata packet read: %s\n",
4152822b
MD
982 buf);
983 }
984
b4c19c1e
MD
985 writelen = fwrite(buf, sizeof(char), readlen, out);
986 if (writelen < readlen) {
987 ret = -EIO;
988 break;
989 }
990 if (ferror(out)) {
991 ret = -EINVAL;
992 break;
993 }
a0fe7d97
MD
994 toread -= readlen;
995 if (!toread) {
7f4b5c4d 996 ret = 0; /* continue reading next packet */
ddbc52af 997 goto read_padding;
a0fe7d97 998 }
b4c19c1e
MD
999 }
1000 return ret;
ddbc52af
MD
1001
1002read_padding:
1003 toread = (header.packet_size - header.content_size) / CHAR_BIT;
1004 ret = fseek(in, toread, SEEK_CUR);
1005 if (ret < 0) {
3394d22e 1006 fprintf(stderr, "[warning] Missing padding at end of file\n");
ddbc52af
MD
1007 ret = 0;
1008 }
1009 return ret;
b4c19c1e
MD
1010}
1011
1012static
1013int ctf_open_trace_metadata_stream_read(struct ctf_trace *td, FILE **fp,
1014 char **buf)
1015{
1016 FILE *in, *out;
abc40d24 1017 size_t size, buflen;
b4c19c1e
MD
1018 int ret;
1019
1020 in = *fp;
c4f5487e
MD
1021 /*
1022 * Using strlen on *buf instead of size of open_memstream
1023 * because its size includes garbage at the end (after final
1024 * \0). This is the allocated size, not the actual string size.
1025 */
f8370579 1026 out = babeltrace_open_memstream(buf, &size);
a569a564
MD
1027 if (out == NULL) {
1028 perror("Metadata open_memstream");
b4c19c1e 1029 return -errno;
a569a564 1030 }
b4c19c1e
MD
1031 for (;;) {
1032 ret = ctf_open_trace_metadata_packet_read(td, in, out);
7f4b5c4d 1033 if (ret) {
b4c19c1e 1034 break;
7f4b5c4d
MD
1035 }
1036 if (feof(in)) {
1037 ret = 0;
b4c19c1e
MD
1038 break;
1039 }
1040 }
f8370579
MD
1041 /* close to flush the buffer */
1042 ret = babeltrace_close_memstream(buf, &size, out);
1043 if (ret < 0) {
f824ae04
MD
1044 int closeret;
1045
f8370579 1046 perror("babeltrace_flush_memstream");
f824ae04
MD
1047 ret = -errno;
1048 closeret = fclose(in);
1049 if (closeret) {
1050 perror("Error in fclose");
1051 }
1052 return ret;
1053 }
1054 ret = fclose(in);
1055 if (ret) {
1056 perror("Error in fclose");
f8370579 1057 }
b4c19c1e 1058 /* open for reading */
abc40d24
MD
1059 buflen = strlen(*buf);
1060 if (!buflen) {
1061 *fp = NULL;
493330cb 1062 return -ENOENT;
abc40d24
MD
1063 }
1064 *fp = babeltrace_fmemopen(*buf, buflen, "rb");
a569a564
MD
1065 if (!*fp) {
1066 perror("Metadata fmemopen");
1067 return -errno;
1068 }
b4c19c1e
MD
1069 return 0;
1070}
1071
65102a8c 1072static
b086c01a 1073int ctf_open_trace_metadata_read(struct ctf_trace *td,
1cf393f6 1074 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
ae23d232 1075 int whence), FILE *metadata_fp)
65102a8c
MD
1076{
1077 struct ctf_scanner *scanner;
2d0bea29 1078 struct ctf_file_stream *metadata_stream;
65102a8c 1079 FILE *fp;
b4c19c1e 1080 char *buf = NULL;
f824ae04 1081 int ret = 0, closeret;
65102a8c 1082
2d0bea29 1083 metadata_stream = g_new0(struct ctf_file_stream, 1);
3a25e036 1084 metadata_stream->pos.last_offset = LAST_OFFSET_POISON;
b086c01a 1085
06789ffd
MD
1086 if (packet_seek) {
1087 metadata_stream->pos.packet_seek = packet_seek;
b086c01a 1088 } else {
06789ffd 1089 fprintf(stderr, "[error] packet_seek function undefined.\n");
b086c01a 1090 ret = -1;
f824ae04 1091 goto end_free;
b086c01a
JD
1092 }
1093
ae23d232
JD
1094 if (metadata_fp) {
1095 fp = metadata_fp;
bcbfb8bf 1096 metadata_stream->pos.fd = -1;
ae23d232
JD
1097 } else {
1098 td->metadata = &metadata_stream->parent;
1099 metadata_stream->pos.fd = openat(td->dirfd, "metadata", O_RDONLY);
1100 if (metadata_stream->pos.fd < 0) {
3394d22e 1101 fprintf(stderr, "Unable to open metadata.\n");
f824ae04
MD
1102 ret = -1;
1103 goto end_free;
ae23d232 1104 }
65102a8c 1105
ae23d232
JD
1106 fp = fdopen(metadata_stream->pos.fd, "r");
1107 if (!fp) {
3394d22e 1108 fprintf(stderr, "[error] Unable to open metadata stream.\n");
a569a564 1109 perror("Metadata stream open");
ae23d232
JD
1110 ret = -errno;
1111 goto end_stream;
1112 }
f824ae04
MD
1113 /* fd now belongs to fp */
1114 metadata_stream->pos.fd = -1;
ae23d232 1115 }
65102a8c
MD
1116 if (babeltrace_debug)
1117 yydebug = 1;
1118
b4c19c1e
MD
1119 if (packet_metadata(td, fp)) {
1120 ret = ctf_open_trace_metadata_stream_read(td, &fp, &buf);
abc40d24
MD
1121 if (ret) {
1122 /* Warn about empty metadata */
1123 fprintf(stderr, "[warning] Empty metadata.\n");
b4c19c1e 1124 goto end_packet_read;
abc40d24 1125 }
7237592a
MD
1126 td->metadata_string = buf;
1127 td->metadata_packetized = 1;
da75b0f7 1128 } else {
5c262147
MD
1129 unsigned int major, minor;
1130 ssize_t nr_items;
8c2df3f5 1131
da75b0f7 1132 td->byte_order = BYTE_ORDER;
8c2df3f5 1133
5c262147
MD
1134 /* Check text-only metadata header and version */
1135 nr_items = fscanf(fp, "/* CTF %u.%u", &major, &minor);
1136 if (nr_items < 2)
3394d22e 1137 fprintf(stderr, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n");
5c262147
MD
1138 if (check_version(major, minor) < 0) {
1139 ret = -EINVAL;
1140 goto end_packet_read;
1141 }
8c2df3f5 1142 rewind(fp);
b4c19c1e
MD
1143 }
1144
65102a8c
MD
1145 scanner = ctf_scanner_alloc(fp);
1146 if (!scanner) {
3394d22e 1147 fprintf(stderr, "[error] Error allocating scanner\n");
65102a8c
MD
1148 ret = -ENOMEM;
1149 goto end_scanner_alloc;
1150 }
1151 ret = ctf_scanner_append_ast(scanner);
1152 if (ret) {
3394d22e 1153 fprintf(stderr, "[error] Error creating AST\n");
65102a8c
MD
1154 goto end;
1155 }
1156
1157 if (babeltrace_debug) {
3394d22e 1158 ret = ctf_visitor_print_xml(stderr, 0, &scanner->ast->root);
65102a8c 1159 if (ret) {
3394d22e 1160 fprintf(stderr, "[error] Error visiting AST for XML output\n");
65102a8c
MD
1161 goto end;
1162 }
1163 }
1164
3394d22e 1165 ret = ctf_visitor_semantic_check(stderr, 0, &scanner->ast->root);
65102a8c 1166 if (ret) {
3394d22e 1167 fprintf(stderr, "[error] Error in CTF semantic validation %d\n", ret);
65102a8c
MD
1168 goto end;
1169 }
3394d22e 1170 ret = ctf_visitor_construct_metadata(stderr, 0, &scanner->ast->root,
ac5c6ca0 1171 td, td->byte_order);
65102a8c 1172 if (ret) {
3394d22e 1173 fprintf(stderr, "[error] Error in CTF metadata constructor %d\n", ret);
65102a8c
MD
1174 goto end;
1175 }
1176end:
1177 ctf_scanner_free(scanner);
1178end_scanner_alloc:
b4c19c1e 1179end_packet_read:
f824ae04
MD
1180 if (fp) {
1181 closeret = fclose(fp);
1182 if (closeret) {
1183 perror("Error on fclose");
1184 }
1185 }
65102a8c 1186end_stream:
f824ae04
MD
1187 if (metadata_stream->pos.fd >= 0) {
1188 closeret = close(metadata_stream->pos.fd);
1189 if (closeret) {
1190 perror("Error on metadata stream fd close");
1191 }
1192 }
1193end_free:
2d0bea29
MD
1194 if (ret)
1195 g_free(metadata_stream);
0f980a35
MD
1196 return ret;
1197}
1198
e28d4618 1199static
c716f83b 1200struct ctf_event_definition *create_event_definitions(struct ctf_trace *td,
9e88d150 1201 struct ctf_stream_definition *stream,
4716614a 1202 struct ctf_event_declaration *event)
e28d4618 1203{
c716f83b 1204 struct ctf_event_definition *stream_event = g_new0(struct ctf_event_definition, 1);
e28d4618
MD
1205
1206 if (event->context_decl) {
0d69b916 1207 struct bt_definition *definition =
e28d4618
MD
1208 event->context_decl->p.definition_new(&event->context_decl->p,
1209 stream->parent_def_scope, 0, 0, "event.context");
1210 if (!definition) {
1211 goto error;
1212 }
42dc00b7 1213 stream_event->event_context = container_of(definition,
e28d4618 1214 struct definition_struct, p);
42dc00b7 1215 stream->parent_def_scope = stream_event->event_context->p.scope;
e28d4618
MD
1216 }
1217 if (event->fields_decl) {
0d69b916 1218 struct bt_definition *definition =
e28d4618
MD
1219 event->fields_decl->p.definition_new(&event->fields_decl->p,
1220 stream->parent_def_scope, 0, 0, "event.fields");
1221 if (!definition) {
1222 goto error;
1223 }
42dc00b7 1224 stream_event->event_fields = container_of(definition,
e28d4618 1225 struct definition_struct, p);
42dc00b7 1226 stream->parent_def_scope = stream_event->event_fields->p.scope;
e28d4618 1227 }
d3ded99d 1228 stream_event->stream = stream;
42dc00b7 1229 return stream_event;
e28d4618
MD
1230
1231error:
42dc00b7 1232 if (stream_event->event_fields)
13fad8b6 1233 bt_definition_unref(&stream_event->event_fields->p);
42dc00b7 1234 if (stream_event->event_context)
13fad8b6 1235 bt_definition_unref(&stream_event->event_context->p);
888ec52a
MD
1236 fprintf(stderr, "[error] Unable to create event definition for event \"%s\".\n",
1237 g_quark_to_string(event->name));
e28d4618
MD
1238 return NULL;
1239}
1240
1241static
9e88d150 1242int create_stream_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream)
e28d4618 1243{
f380e105 1244 struct ctf_stream_declaration *stream_class;
e28d4618
MD
1245 int ret;
1246 int i;
1247
1248 if (stream->stream_definitions_created)
1249 return 0;
1250
1251 stream_class = stream->stream_class;
1252
1253 if (stream_class->packet_context_decl) {
0d69b916 1254 struct bt_definition *definition =
e28d4618
MD
1255 stream_class->packet_context_decl->p.definition_new(&stream_class->packet_context_decl->p,
1256 stream->parent_def_scope, 0, 0, "stream.packet.context");
1257 if (!definition) {
1258 ret = -EINVAL;
1259 goto error;
1260 }
1261 stream->stream_packet_context = container_of(definition,
1262 struct definition_struct, p);
1263 stream->parent_def_scope = stream->stream_packet_context->p.scope;
1264 }
1265 if (stream_class->event_header_decl) {
0d69b916 1266 struct bt_definition *definition =
e28d4618
MD
1267 stream_class->event_header_decl->p.definition_new(&stream_class->event_header_decl->p,
1268 stream->parent_def_scope, 0, 0, "stream.event.header");
1269 if (!definition) {
1270 ret = -EINVAL;
1271 goto error;
1272 }
1273 stream->stream_event_header =
1274 container_of(definition, struct definition_struct, p);
1275 stream->parent_def_scope = stream->stream_event_header->p.scope;
1276 }
1277 if (stream_class->event_context_decl) {
0d69b916 1278 struct bt_definition *definition =
e28d4618
MD
1279 stream_class->event_context_decl->p.definition_new(&stream_class->event_context_decl->p,
1280 stream->parent_def_scope, 0, 0, "stream.event.context");
1281 if (!definition) {
1282 ret = -EINVAL;
1283 goto error;
1284 }
1285 stream->stream_event_context =
1286 container_of(definition, struct definition_struct, p);
1287 stream->parent_def_scope = stream->stream_event_context->p.scope;
1288 }
1289 stream->events_by_id = g_ptr_array_new();
1290 g_ptr_array_set_size(stream->events_by_id, stream_class->events_by_id->len);
1291 for (i = 0; i < stream->events_by_id->len; i++) {
4716614a 1292 struct ctf_event_declaration *event = g_ptr_array_index(stream_class->events_by_id, i);
c716f83b 1293 struct ctf_event_definition *stream_event;
e28d4618
MD
1294
1295 if (!event)
1296 continue;
42dc00b7 1297 stream_event = create_event_definitions(td, stream, event);
888ec52a
MD
1298 if (!stream_event) {
1299 ret = -EINVAL;
e28d4618 1300 goto error_event;
888ec52a 1301 }
42dc00b7 1302 g_ptr_array_index(stream->events_by_id, i) = stream_event;
e28d4618
MD
1303 }
1304 return 0;
1305
1306error_event:
1307 for (i = 0; i < stream->events_by_id->len; i++) {
c716f83b 1308 struct ctf_event_definition *stream_event = g_ptr_array_index(stream->events_by_id, i);
42dc00b7
MD
1309 if (stream_event)
1310 g_free(stream_event);
e28d4618
MD
1311 }
1312 g_ptr_array_free(stream->events_by_id, TRUE);
1313error:
1314 if (stream->stream_event_context)
13fad8b6 1315 bt_definition_unref(&stream->stream_event_context->p);
e28d4618 1316 if (stream->stream_event_header)
13fad8b6 1317 bt_definition_unref(&stream->stream_event_header->p);
e28d4618 1318 if (stream->stream_packet_context)
13fad8b6 1319 bt_definition_unref(&stream->stream_packet_context->p);
888ec52a
MD
1320 fprintf(stderr, "[error] Unable to create stream (%" PRIu64 ") definitions: %s\n",
1321 stream_class->stream_id, strerror(-ret));
e28d4618
MD
1322 return ret;
1323}
1324
5bfcad93
MD
1325static
1326int stream_assign_class(struct ctf_trace *td,
1327 struct ctf_file_stream *file_stream,
1328 uint64_t stream_id)
1329{
1330 struct ctf_stream_declaration *stream;
1331 int ret;
1332
1333 file_stream->parent.stream_id = stream_id;
1334 if (stream_id >= td->streams->len) {
1335 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
1336 return -EINVAL;
1337 }
1338 stream = g_ptr_array_index(td->streams, stream_id);
1339 if (!stream) {
1340 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id);
1341 return -EINVAL;
1342 }
1343 file_stream->parent.stream_class = stream;
1344 ret = create_stream_definitions(td, &file_stream->parent);
1345 if (ret)
1346 return ret;
1347 return 0;
1348}
1349
0f980a35 1350static
ec323464
MD
1351int create_stream_one_packet_index(struct ctf_stream_pos *pos,
1352 struct ctf_trace *td,
1353 struct ctf_file_stream *file_stream,
1354 size_t filesize)
0f980a35 1355{
ec323464 1356 struct packet_index packet_index;
ec323464 1357 uint64_t stream_id = 0;
653906a4 1358 uint64_t packet_map_len = DEFAULT_HEADER_LEN, tmp_map_len;
ec323464 1359 int first_packet = 0;
653906a4 1360 int len_index;
0f980a35
MD
1361 int ret;
1362
ec323464
MD
1363begin:
1364 if (!pos->mmap_offset) {
1365 first_packet = 1;
1366 }
8895362d 1367
ec323464
MD
1368 if (filesize - pos->mmap_offset < (packet_map_len >> LOG2_CHAR_BIT)) {
1369 packet_map_len = (filesize - pos->mmap_offset) << LOG2_CHAR_BIT;
1370 }
0f980a35 1371
ec323464
MD
1372 if (pos->base_mma) {
1373 /* unmap old base */
1374 ret = munmap_align(pos->base_mma);
1375 if (ret) {
1376 fprintf(stderr, "[error] Unable to unmap old base: %s.\n",
1377 strerror(errno));
1378 return ret;
0f980a35 1379 }
ec323464
MD
1380 pos->base_mma = NULL;
1381 }
1382 /* map new base. Need mapping length from header. */
1383 pos->base_mma = mmap_align(packet_map_len >> LOG2_CHAR_BIT, PROT_READ,
1384 MAP_PRIVATE, pos->fd, pos->mmap_offset);
1385 assert(pos->base_mma != MAP_FAILED);
1386 /*
1387 * Use current mapping size as temporary content and packet
1388 * size.
1389 */
1390 pos->content_size = packet_map_len;
1391 pos->packet_size = packet_map_len;
1392 pos->offset = 0; /* Position of the packet header */
1393
1394 packet_index.offset = pos->mmap_offset;
1395 packet_index.content_size = 0;
1396 packet_index.packet_size = 0;
1397 packet_index.timestamp_begin = 0;
1398 packet_index.timestamp_end = 0;
1399 packet_index.events_discarded = 0;
1400 packet_index.events_discarded_len = 0;
1401
1402 /* read and check header, set stream id (and check) */
1403 if (file_stream->parent.trace_packet_header) {
1404 /* Read packet header */
1405 ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p);
1406 if (ret) {
1407 if (ret == -EFAULT)
1408 goto retry;
888ec52a 1409 fprintf(stderr, "[error] Unable to read packet header: %s\n", strerror(-ret));
ec323464
MD
1410 return ret;
1411 }
1412 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("magic"));
1413 if (len_index >= 0) {
1414 struct bt_definition *field;
1415 uint64_t magic;
1416
1417 field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
1418 magic = bt_get_unsigned_int(field);
1419 if (magic != CTF_MAGIC) {
1420 fprintf(stderr, "[error] Invalid magic number 0x%" PRIX64 " at packet %u (file offset %zd).\n",
1421 magic,
1422 file_stream->pos.packet_cycles_index->len,
1423 (ssize_t) pos->mmap_offset);
1424 return -EINVAL;
0f980a35 1425 }
ec323464 1426 }
0f980a35 1427
ec323464
MD
1428 /* check uuid */
1429 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("uuid"));
1430 if (len_index >= 0) {
1431 struct definition_array *defarray;
1432 struct bt_definition *field;
1433 uint64_t i;
1434 uint8_t uuidval[BABELTRACE_UUID_LEN];
0f980a35 1435
ec323464
MD
1436 field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
1437 assert(field->declaration->id == CTF_TYPE_ARRAY);
1438 defarray = container_of(field, struct definition_array, p);
1439 assert(bt_array_len(defarray) == BABELTRACE_UUID_LEN);
0f980a35 1440
ec323464
MD
1441 for (i = 0; i < BABELTRACE_UUID_LEN; i++) {
1442 struct bt_definition *elem;
0f980a35 1443
ec323464
MD
1444 elem = bt_array_index(defarray, i);
1445 uuidval[i] = bt_get_unsigned_int(elem);
0f980a35 1446 }
ec323464
MD
1447 ret = babeltrace_uuid_compare(td->uuid, uuidval);
1448 if (ret) {
1449 fprintf(stderr, "[error] Unique Universal Identifiers do not match.\n");
1450 return -EINVAL;
1451 }
1452 }
0f980a35 1453
ec323464
MD
1454 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("stream_id"));
1455 if (len_index >= 0) {
1456 struct bt_definition *field;
0f980a35 1457
ec323464
MD
1458 field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index);
1459 stream_id = bt_get_unsigned_int(field);
0f980a35 1460 }
ec323464 1461 }
0f980a35 1462
ec323464
MD
1463 if (!first_packet && file_stream->parent.stream_id != stream_id) {
1464 fprintf(stderr, "[error] Stream ID is changing within a stream: expecting %" PRIu64 ", but packet has %" PRIu64 "\n",
1465 stream_id,
1466 file_stream->parent.stream_id);
1467 return -EINVAL;
1468 }
1469 if (first_packet) {
5bfcad93 1470 ret = stream_assign_class(td, file_stream, stream_id);
ec323464
MD
1471 if (ret)
1472 return ret;
1473 }
dc48ecad 1474
ec323464
MD
1475 if (file_stream->parent.stream_packet_context) {
1476 /* Read packet context */
1477 ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p);
1478 if (ret) {
1479 if (ret == -EFAULT)
1480 goto retry;
888ec52a 1481 fprintf(stderr, "[error] Unable to read packet context: %s\n", strerror(-ret));
ec323464
MD
1482 return ret;
1483 }
1484 /* read content size from header */
1485 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("content_size"));
1486 if (len_index >= 0) {
1487 struct bt_definition *field;
dc48ecad 1488
ec323464
MD
1489 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1490 packet_index.content_size = bt_get_unsigned_int(field);
1491 } else {
1492 /* Use file size for packet size */
1493 packet_index.content_size = filesize * CHAR_BIT;
1494 }
75cc2c35 1495
ec323464
MD
1496 /* read packet size from header */
1497 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("packet_size"));
1498 if (len_index >= 0) {
1499 struct bt_definition *field;
75cc2c35 1500
ec323464
MD
1501 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1502 packet_index.packet_size = bt_get_unsigned_int(field);
1503 } else {
1504 /* Use content size if non-zero, else file size */
1505 packet_index.packet_size = packet_index.content_size ? : filesize * CHAR_BIT;
1506 }
41e82e00 1507
ec323464
MD
1508 /* read timestamp begin from header */
1509 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_begin"));
1510 if (len_index >= 0) {
1511 struct bt_definition *field;
41e82e00 1512
ec323464
MD
1513 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1514 packet_index.timestamp_begin = bt_get_unsigned_int(field);
4c62e2d8 1515 if (file_stream->parent.stream_class->trace->parent.collection) {
ec323464
MD
1516 packet_index.timestamp_begin =
1517 ctf_get_real_timestamp(
1518 &file_stream->parent,
1519 packet_index.timestamp_begin);
41e82e00 1520 }
0f980a35 1521 }
546293fa 1522
ec323464
MD
1523 /* read timestamp end from header */
1524 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_end"));
1525 if (len_index >= 0) {
1526 struct bt_definition *field;
1527
1528 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1529 packet_index.timestamp_end = bt_get_unsigned_int(field);
4c62e2d8 1530 if (file_stream->parent.stream_class->trace->parent.collection) {
ec323464
MD
1531 packet_index.timestamp_end =
1532 ctf_get_real_timestamp(
1533 &file_stream->parent,
1534 packet_index.timestamp_end);
1535 }
546293fa
MD
1536 }
1537
ec323464
MD
1538 /* read events discarded from header */
1539 len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("events_discarded"));
1540 if (len_index >= 0) {
1541 struct bt_definition *field;
1542
1543 field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index);
1544 packet_index.events_discarded = bt_get_unsigned_int(field);
1545 packet_index.events_discarded_len = bt_get_int_len(field);
546293fa 1546 }
ec323464
MD
1547 } else {
1548 /* Use file size for packet size */
1549 packet_index.content_size = filesize * CHAR_BIT;
1550 /* Use content size if non-zero, else file size */
1551 packet_index.packet_size = packet_index.content_size ? : filesize * CHAR_BIT;
1552 }
1553
1554 /* Validate content size and packet size values */
1555 if (packet_index.content_size > packet_index.packet_size) {
1556 fprintf(stderr, "[error] Content size (%" PRIu64 " bits) is larger than packet size (%" PRIu64 " bits).\n",
1557 packet_index.content_size, packet_index.packet_size);
1558 return -EINVAL;
1559 }
1560
1561 if (packet_index.packet_size > ((uint64_t) filesize - packet_index.offset) * CHAR_BIT) {
1562 fprintf(stderr, "[error] Packet size (%" PRIu64 " bits) is larger than remaining file size (%" PRIu64 " bits).\n",
1563 packet_index.packet_size, ((uint64_t) filesize - packet_index.offset) * CHAR_BIT);
1564 return -EINVAL;
1565 }
546293fa 1566
ec323464
MD
1567 /* Save position after header and context */
1568 packet_index.data_offset = pos->offset;
0f980a35 1569
ec323464
MD
1570 /* add index to packet array */
1571 g_array_append_val(file_stream->pos.packet_cycles_index, packet_index);
0f980a35 1572
ec323464
MD
1573 pos->mmap_offset += packet_index.packet_size >> LOG2_CHAR_BIT;
1574
1575 return 0;
1576
1577 /* Retry with larger mapping */
1578retry:
1579 if (packet_map_len == ((filesize - pos->mmap_offset) << LOG2_CHAR_BIT)) {
1580 /*
1581 * Reached EOF, but still expecting header/context data.
1582 */
1583 fprintf(stderr, "[error] Reached end of file, but still expecting header or context fields.\n");
1584 return -EFAULT;
1585 }
1586 /* Double the mapping len, and retry */
1587 tmp_map_len = packet_map_len << 1;
1588 if (tmp_map_len >> 1 != packet_map_len) {
1589 /* Overflow */
888ec52a 1590 fprintf(stderr, "[error] Packet mapping length overflow\n");
ec323464 1591 return -EFAULT;
0f980a35 1592 }
ec323464
MD
1593 packet_map_len = tmp_map_len;
1594 goto begin;
1595}
1596
1597static
1598int create_stream_packet_index(struct ctf_trace *td,
1599 struct ctf_file_stream *file_stream)
1600{
1601 struct ctf_stream_pos *pos;
1602 struct stat filestats;
1603 int ret;
1604
1605 pos = &file_stream->pos;
0f980a35 1606
ec323464
MD
1607 ret = fstat(pos->fd, &filestats);
1608 if (ret < 0)
1609 return ret;
1610
5bfcad93
MD
1611 /* Deal with empty files */
1612 if (!filestats.st_size) {
1613 if (file_stream->parent.trace_packet_header
1614 || file_stream->parent.stream_packet_context) {
1615 /*
1616 * We expect a trace packet header and/or stream packet
1617 * context. Since a trace needs to have at least one
1618 * packet, empty files are therefore not accepted.
1619 */
1620 fprintf(stderr, "[error] Encountered an empty file, but expecting a trace packet header.\n");
1621 return -EINVAL;
1622 } else {
1623 /*
1624 * Without trace packet header nor stream packet
1625 * context, a one-packet trace can indeed be empty. This
1626 * is only valid if there is only one stream class: 0.
1627 */
1628 ret = stream_assign_class(td, file_stream, 0);
1629 if (ret)
1630 return ret;
1631 return 0;
1632 }
1633 }
1634
ec323464
MD
1635 for (pos->mmap_offset = 0; pos->mmap_offset < filestats.st_size; ) {
1636 ret = create_stream_one_packet_index(pos, td, file_stream,
1637 filestats.st_size);
1638 if (ret)
1639 return ret;
1640 }
0f980a35
MD
1641 return 0;
1642}
1643
e28d4618 1644static
9e88d150 1645int create_trace_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream)
e28d4618
MD
1646{
1647 int ret;
1648
1649 if (td->packet_header_decl) {
0d69b916 1650 struct bt_definition *definition =
e28d4618
MD
1651 td->packet_header_decl->p.definition_new(&td->packet_header_decl->p,
1652 stream->parent_def_scope, 0, 0, "trace.packet.header");
1653 if (!definition) {
1654 ret = -EINVAL;
1655 goto error;
1656 }
1657 stream->trace_packet_header =
1658 container_of(definition, struct definition_struct, p);
1659 stream->parent_def_scope = stream->trace_packet_header->p.scope;
1660 }
1661
1662 return 0;
1663
1664error:
888ec52a 1665 fprintf(stderr, "[error] Unable to create trace definitions: %s\n", strerror(-ret));
e28d4618
MD
1666 return ret;
1667}
1668
0f980a35
MD
1669/*
1670 * Note: many file streams can inherit from the same stream class
1671 * description (metadata).
1672 */
1673static
b086c01a 1674int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags,
1cf393f6 1675 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
b086c01a 1676 int whence))
0f980a35 1677{
f824ae04 1678 int ret, fd, closeret;
0f980a35 1679 struct ctf_file_stream *file_stream;
ff075710 1680 struct stat statbuf;
0f980a35 1681
ff075710
MD
1682 fd = openat(td->dirfd, path, flags);
1683 if (fd < 0) {
a569a564 1684 perror("File stream openat()");
ff075710 1685 ret = fd;
0f980a35 1686 goto error;
a569a564 1687 }
ff075710
MD
1688
1689 /* Don't try to mmap subdirectories. Skip them, return success. */
1690 ret = fstat(fd, &statbuf);
1691 if (ret) {
1692 perror("File stream fstat()");
1693 goto fstat_error;
1694 }
1695 if (S_ISDIR(statbuf.st_mode)) {
1696 fprintf(stderr, "[warning] Skipping directory '%s' found in trace\n", path);
1697 ret = 0;
1698 goto fd_is_dir_ok;
1699 }
1700
0f980a35 1701 file_stream = g_new0(struct ctf_file_stream, 1);
3a25e036 1702 file_stream->pos.last_offset = LAST_OFFSET_POISON;
b086c01a 1703
87148dc7
MD
1704 strncpy(file_stream->parent.path, path, PATH_MAX);
1705 file_stream->parent.path[PATH_MAX - 1] = '\0';
1706
06789ffd
MD
1707 if (packet_seek) {
1708 file_stream->pos.packet_seek = packet_seek;
b086c01a 1709 } else {
06789ffd 1710 fprintf(stderr, "[error] packet_seek function undefined.\n");
b086c01a
JD
1711 ret = -1;
1712 goto error_def;
1713 }
1714
ca334c72 1715 ret = ctf_init_pos(&file_stream->pos, &td->parent, fd, flags);
f824ae04
MD
1716 if (ret)
1717 goto error_def;
2d0bea29 1718 ret = create_trace_definitions(td, &file_stream->parent);
e28d4618
MD
1719 if (ret)
1720 goto error_def;
25ccc85b 1721 /*
50052405 1722 * For now, only a single clock per trace is supported.
25ccc85b 1723 */
7ec78969 1724 file_stream->parent.current_clock = td->parent.single_clock;
0f980a35 1725 ret = create_stream_packet_index(td, file_stream);
888ec52a
MD
1726 if (ret) {
1727 fprintf(stderr, "[error] Stream index creation error.\n");
0f980a35 1728 goto error_index;
888ec52a 1729 }
0f980a35 1730 /* Add stream file to stream class */
2d0bea29
MD
1731 g_ptr_array_add(file_stream->parent.stream_class->streams,
1732 &file_stream->parent);
0f980a35
MD
1733 return 0;
1734
1735error_index:
2d0bea29 1736 if (file_stream->parent.trace_packet_header)
13fad8b6 1737 bt_definition_unref(&file_stream->parent.trace_packet_header->p);
e28d4618 1738error_def:
f824ae04
MD
1739 closeret = ctf_fini_pos(&file_stream->pos);
1740 if (closeret) {
1741 fprintf(stderr, "Error on ctf_fini_pos\n");
1742 }
0f980a35 1743 g_free(file_stream);
ff075710
MD
1744fd_is_dir_ok:
1745fstat_error:
f824ae04
MD
1746 closeret = close(fd);
1747 if (closeret) {
1748 perror("Error on fd close");
1749 }
0f980a35 1750error:
65102a8c
MD
1751 return ret;
1752}
1753
bbefb8dd 1754static
5b80ddfb 1755int ctf_open_trace_read(struct ctf_trace *td,
8c250d87 1756 const char *path, int flags,
1cf393f6 1757 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
ae23d232 1758 int whence), FILE *metadata_fp)
bbefb8dd 1759{
f824ae04 1760 int ret, closeret;
65102a8c
MD
1761 struct dirent *dirent;
1762 struct dirent *diriter;
1763 size_t dirent_len;
bbefb8dd 1764
46322b33 1765 td->flags = flags;
bbefb8dd
MD
1766
1767 /* Open trace directory */
46322b33
MD
1768 td->dir = opendir(path);
1769 if (!td->dir) {
6a6b384c 1770 fprintf(stderr, "[error] Unable to open trace directory \"%s\".\n", path);
bbefb8dd
MD
1771 ret = -ENOENT;
1772 goto error;
1773 }
1774
46322b33
MD
1775 td->dirfd = open(path, 0);
1776 if (td->dirfd < 0) {
6a6b384c 1777 fprintf(stderr, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path);
a569a564
MD
1778 perror("Trace directory open");
1779 ret = -errno;
65102a8c
MD
1780 goto error_dirfd;
1781 }
caf929fa
MD
1782 strncpy(td->parent.path, path, sizeof(td->parent.path));
1783 td->parent.path[sizeof(td->parent.path) - 1] = '\0';
0f980a35 1784
65102a8c
MD
1785 /*
1786 * Keep the metadata file separate.
1787 */
bbefb8dd 1788
06789ffd 1789 ret = ctf_open_trace_metadata_read(td, packet_seek, metadata_fp);
65102a8c 1790 if (ret) {
6a6b384c 1791 fprintf(stderr, "[warning] Unable to open trace metadata for path \"%s\".\n", path);
65102a8c
MD
1792 goto error_metadata;
1793 }
bbefb8dd
MD
1794
1795 /*
1796 * Open each stream: for each file, try to open, check magic
1797 * number, and get the stream ID to add to the right location in
1798 * the stream array.
bbefb8dd
MD
1799 */
1800
65102a8c 1801 dirent_len = offsetof(struct dirent, d_name) +
46322b33 1802 fpathconf(td->dirfd, _PC_NAME_MAX) + 1;
bbefb8dd 1803
65102a8c 1804 dirent = malloc(dirent_len);
bbefb8dd 1805
65102a8c 1806 for (;;) {
46322b33 1807 ret = readdir_r(td->dir, dirent, &diriter);
65102a8c 1808 if (ret) {
3394d22e 1809 fprintf(stderr, "[error] Readdir error.\n");
65102a8c 1810 goto readdir_error;
65102a8c
MD
1811 }
1812 if (!diriter)
1813 break;
d8ea2d29
MD
1814 /* Ignore hidden files, ., .. and metadata. */
1815 if (!strncmp(diriter->d_name, ".", 1)
65102a8c
MD
1816 || !strcmp(diriter->d_name, "..")
1817 || !strcmp(diriter->d_name, "metadata"))
1818 continue;
06789ffd
MD
1819 ret = ctf_open_file_stream_read(td, diriter->d_name,
1820 flags, packet_seek);
dc48ecad 1821 if (ret) {
3394d22e 1822 fprintf(stderr, "[error] Open file stream error.\n");
dc48ecad
MD
1823 goto readdir_error;
1824 }
65102a8c 1825 }
bbefb8dd 1826
65102a8c 1827 free(dirent);
bbefb8dd 1828 return 0;
65102a8c
MD
1829
1830readdir_error:
1831 free(dirent);
1832error_metadata:
f824ae04
MD
1833 closeret = close(td->dirfd);
1834 if (closeret) {
1835 perror("Error on fd close");
1836 }
65102a8c 1837error_dirfd:
f824ae04
MD
1838 closeret = closedir(td->dir);
1839 if (closeret) {
1840 perror("Error on closedir");
1841 }
bbefb8dd
MD
1842error:
1843 return ret;
1844}
1845
03798a93
JD
1846/*
1847 * ctf_open_trace: Open a CTF trace and index it.
1848 * Note that the user must seek the trace after the open (using the iterator)
1849 * since the index creation read it entirely.
1850 */
e9378815 1851static
1b8455b7 1852struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags,
1cf393f6 1853 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
ae23d232 1854 int whence), FILE *metadata_fp)
bbefb8dd 1855{
46322b33 1856 struct ctf_trace *td;
bbefb8dd
MD
1857 int ret;
1858
2715de36
MD
1859 /*
1860 * If packet_seek is NULL, we provide our default version.
1861 */
1862 if (!packet_seek)
1863 packet_seek = ctf_packet_seek;
1864
46322b33 1865 td = g_new0(struct ctf_trace, 1);
bbefb8dd 1866
8c572eba 1867 switch (flags & O_ACCMODE) {
bbefb8dd 1868 case O_RDONLY:
b61922b5 1869 if (!path) {
3394d22e 1870 fprintf(stderr, "[error] Path missing for input CTF trace.\n");
b61922b5
MD
1871 goto error;
1872 }
06789ffd 1873 ret = ctf_open_trace_read(td, path, flags, packet_seek, metadata_fp);
bbefb8dd
MD
1874 if (ret)
1875 goto error;
1876 break;
989c73bc 1877 case O_RDWR:
3394d22e 1878 fprintf(stderr, "[error] Opening CTF traces for output is not supported yet.\n");
46322b33 1879 goto error;
bbefb8dd 1880 default:
3394d22e 1881 fprintf(stderr, "[error] Incorrect open flags.\n");
bbefb8dd
MD
1882 goto error;
1883 }
1884
46322b33 1885 return &td->parent;
bbefb8dd
MD
1886error:
1887 g_free(td);
1888 return NULL;
1889}
1890
2e937fb4 1891static
f571dfb1 1892void ctf_init_mmap_pos(struct ctf_stream_pos *pos,
c150f912 1893 struct bt_mmap_stream *mmap_info)
f571dfb1
JD
1894{
1895 pos->mmap_offset = 0;
1896 pos->packet_size = 0;
1897 pos->content_size = 0;
1898 pos->content_size_loc = NULL;
1899 pos->fd = mmap_info->fd;
aee35fcc 1900 pos->base_mma = NULL;
f571dfb1
JD
1901 pos->offset = 0;
1902 pos->dummy = false;
1903 pos->cur_index = 0;
03798a93
JD
1904 pos->packet_cycles_index = NULL;
1905 pos->packet_real_index = NULL;
f571dfb1
JD
1906 pos->prot = PROT_READ;
1907 pos->flags = MAP_PRIVATE;
1908 pos->parent.rw_table = read_dispatch_table;
1909 pos->parent.event_cb = ctf_read_event;
1910}
1911
1912static
1913int prepare_mmap_stream_definition(struct ctf_trace *td,
1914 struct ctf_file_stream *file_stream)
1915{
f380e105 1916 struct ctf_stream_declaration *stream;
f571dfb1
JD
1917 uint64_t stream_id = 0;
1918 int ret;
1919
1920 file_stream->parent.stream_id = stream_id;
1921 if (stream_id >= td->streams->len) {
3394d22e 1922 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared "
f571dfb1
JD
1923 "in metadata.\n", stream_id);
1924 ret = -EINVAL;
1925 goto end;
1926 }
1927 stream = g_ptr_array_index(td->streams, stream_id);
1928 if (!stream) {
3394d22e 1929 fprintf(stderr, "[error] Stream %" PRIu64 " is not declared "
f571dfb1
JD
1930 "in metadata.\n", stream_id);
1931 ret = -EINVAL;
1932 goto end;
1933 }
1934 file_stream->parent.stream_class = stream;
1935 ret = create_stream_definitions(td, &file_stream->parent);
1936end:
1937 return ret;
1938}
1939
1940static
1941int ctf_open_mmap_stream_read(struct ctf_trace *td,
c150f912 1942 struct bt_mmap_stream *mmap_info,
1cf393f6 1943 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
f571dfb1
JD
1944 int whence))
1945{
1946 int ret;
1947 struct ctf_file_stream *file_stream;
1948
1949 file_stream = g_new0(struct ctf_file_stream, 1);
3a25e036 1950 file_stream->pos.last_offset = LAST_OFFSET_POISON;
f571dfb1
JD
1951 ctf_init_mmap_pos(&file_stream->pos, mmap_info);
1952
06789ffd 1953 file_stream->pos.packet_seek = packet_seek;
f571dfb1
JD
1954
1955 ret = create_trace_definitions(td, &file_stream->parent);
1956 if (ret) {
1957 goto error_def;
1958 }
1959
1960 ret = prepare_mmap_stream_definition(td, file_stream);
1961 if (ret)
1962 goto error_index;
1963
f7bbd502 1964 /*
50052405 1965 * For now, only a single clock per trace is supported.
f7bbd502 1966 */
7ec78969 1967 file_stream->parent.current_clock = td->parent.single_clock;
f7bbd502 1968
f571dfb1
JD
1969 /* Add stream file to stream class */
1970 g_ptr_array_add(file_stream->parent.stream_class->streams,
1971 &file_stream->parent);
1972 return 0;
1973
1974error_index:
1975 if (file_stream->parent.trace_packet_header)
13fad8b6 1976 bt_definition_unref(&file_stream->parent.trace_packet_header->p);
f571dfb1
JD
1977error_def:
1978 g_free(file_stream);
1979 return ret;
1980}
1981
2e937fb4 1982static
f571dfb1 1983int ctf_open_mmap_trace_read(struct ctf_trace *td,
c150f912 1984 struct bt_mmap_stream_list *mmap_list,
1cf393f6 1985 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
f571dfb1
JD
1986 int whence),
1987 FILE *metadata_fp)
1988{
1989 int ret;
c150f912 1990 struct bt_mmap_stream *mmap_info;
f571dfb1 1991
06789ffd 1992 ret = ctf_open_trace_metadata_read(td, ctf_packet_seek, metadata_fp);
f571dfb1
JD
1993 if (ret) {
1994 goto error;
1995 }
1996
1997 /*
1998 * for each stream, try to open, check magic number, and get the
1999 * stream ID to add to the right location in the stream array.
2000 */
3122e6f0 2001 bt_list_for_each_entry(mmap_info, &mmap_list->head, list) {
06789ffd 2002 ret = ctf_open_mmap_stream_read(td, mmap_info, packet_seek);
f571dfb1 2003 if (ret) {
3394d22e 2004 fprintf(stderr, "[error] Open file mmap stream error.\n");
f571dfb1
JD
2005 goto error;
2006 }
2007 }
2008
2009 return 0;
2010
2011error:
2012 return ret;
2013}
2014
2015static
1b8455b7 2016struct bt_trace_descriptor *ctf_open_mmap_trace(
c150f912 2017 struct bt_mmap_stream_list *mmap_list,
1cf393f6 2018 void (*packet_seek)(struct bt_stream_pos *pos, size_t index,
20d0dcf9 2019 int whence),
f571dfb1
JD
2020 FILE *metadata_fp)
2021{
2022 struct ctf_trace *td;
2023 int ret;
2024
2025 if (!metadata_fp) {
2026 fprintf(stderr, "[error] No metadata file pointer associated, "
2027 "required for mmap parsing\n");
2028 goto error;
2029 }
06789ffd
MD
2030 if (!packet_seek) {
2031 fprintf(stderr, "[error] packet_seek function undefined.\n");
f571dfb1
JD
2032 goto error;
2033 }
2034 td = g_new0(struct ctf_trace, 1);
06789ffd 2035 ret = ctf_open_mmap_trace_read(td, mmap_list, packet_seek, metadata_fp);
f571dfb1
JD
2036 if (ret)
2037 goto error_free;
2038
2039 return &td->parent;
2040
2041error_free:
2042 g_free(td);
2043error:
2044 return NULL;
2045}
2046
03798a93 2047static
1b8455b7 2048int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp)
03798a93
JD
2049{
2050 int i, j, k;
2051 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
2052
2053 /* for each stream_class */
2054 for (i = 0; i < td->streams->len; i++) {
2055 struct ctf_stream_declaration *stream_class;
2056
2057 stream_class = g_ptr_array_index(td->streams, i);
2058 if (!stream_class)
2059 continue;
2060 /* for each file_stream */
2061 for (j = 0; j < stream_class->streams->len; j++) {
2062 struct ctf_stream_definition *stream;
2063 struct ctf_stream_pos *stream_pos;
2064 struct ctf_file_stream *cfs;
2065
2066 stream = g_ptr_array_index(stream_class->streams, j);
2067 if (!stream)
2068 continue;
2069 cfs = container_of(stream, struct ctf_file_stream,
2070 parent);
2071 stream_pos = &cfs->pos;
afe9cd4a
JD
2072 if (!stream_pos->packet_cycles_index)
2073 continue;
2074
03798a93
JD
2075 for (k = 0; k < stream_pos->packet_cycles_index->len; k++) {
2076 struct packet_index *index;
2077 struct packet_index new_index;
2078
2079 index = &g_array_index(stream_pos->packet_cycles_index,
2080 struct packet_index, k);
2081 memcpy(&new_index, index,
2082 sizeof(struct packet_index));
2083 new_index.timestamp_begin =
2084 ctf_get_real_timestamp(stream,
2085 index->timestamp_begin);
2086 new_index.timestamp_end =
2087 ctf_get_real_timestamp(stream,
2088 index->timestamp_end);
2089 g_array_append_val(stream_pos->packet_real_index,
2090 new_index);
2091 }
2092 }
2093 }
2094 return 0;
2095}
2096
0f980a35 2097static
f824ae04 2098int ctf_close_file_stream(struct ctf_file_stream *file_stream)
0f980a35 2099{
f824ae04
MD
2100 int ret;
2101
2102 ret = ctf_fini_pos(&file_stream->pos);
2103 if (ret) {
2104 fprintf(stderr, "Error on ctf_fini_pos\n");
2105 return -1;
2106 }
2107 ret = close(file_stream->pos.fd);
2108 if (ret) {
2109 perror("Error closing file fd");
2110 return -1;
2111 }
2112 return 0;
0f980a35
MD
2113}
2114
e9378815 2115static
1b8455b7 2116int ctf_close_trace(struct bt_trace_descriptor *tdp)
bbefb8dd 2117{
46322b33 2118 struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent);
08c82b90 2119 int ret;
0f980a35 2120
46322b33 2121 if (td->streams) {
08c82b90
MD
2122 int i;
2123
46322b33 2124 for (i = 0; i < td->streams->len; i++) {
f380e105 2125 struct ctf_stream_declaration *stream;
0f980a35 2126 int j;
e9378815 2127
46322b33 2128 stream = g_ptr_array_index(td->streams, i);
e9378815
MD
2129 if (!stream)
2130 continue;
2d0bea29 2131 for (j = 0; j < stream->streams->len; j++) {
0f980a35 2132 struct ctf_file_stream *file_stream;
15d4fe3c
JD
2133 file_stream = container_of(g_ptr_array_index(stream->streams, j),
2134 struct ctf_file_stream, parent);
f824ae04
MD
2135 ret = ctf_close_file_stream(file_stream);
2136 if (ret)
2137 return ret;
0f980a35 2138 }
e003ab50 2139 }
e003ab50 2140 }
15d4fe3c 2141 ctf_destroy_metadata(td);
f824ae04
MD
2142 ret = close(td->dirfd);
2143 if (ret) {
2144 perror("Error closing dirfd");
2145 return ret;
2146 }
2147 ret = closedir(td->dir);
2148 if (ret) {
2149 perror("Error closedir");
2150 return ret;
2151 }
7237592a 2152 free(td->metadata_string);
bbefb8dd 2153 g_free(td);
f824ae04 2154 return 0;
bbefb8dd
MD
2155}
2156
98a04903 2157static
1b8455b7 2158void ctf_set_context(struct bt_trace_descriptor *descriptor,
98a04903
JD
2159 struct bt_context *ctx)
2160{
2161 struct ctf_trace *td = container_of(descriptor, struct ctf_trace,
2162 parent);
2163
45807148 2164 td->parent.ctx = ctx;
98a04903
JD
2165}
2166
2167static
1b8455b7 2168void ctf_set_handle(struct bt_trace_descriptor *descriptor,
98a04903
JD
2169 struct bt_trace_handle *handle)
2170{
2171 struct ctf_trace *td = container_of(descriptor, struct ctf_trace,
2172 parent);
2173
4d086981 2174 td->parent.handle = handle;
98a04903
JD
2175}
2176
95febab3 2177static
7fb21036 2178void __attribute__((constructor)) ctf_init(void)
fc93b2bd
MD
2179{
2180 int ret;
2181
4c8bfb7e 2182 ctf_format.name = g_quark_from_static_string("ctf");
fc93b2bd
MD
2183 ret = bt_register_format(&ctf_format);
2184 assert(!ret);
2185}
698f0fe4 2186
95febab3
MD
2187static
2188void __attribute__((destructor)) ctf_exit(void)
2189{
2190 bt_unregister_format(&ctf_format);
2191}
This page took 0.155056 seconds and 4 git commands to generate.