ctf: check version of LTTng trace index
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.c
CommitLineData
e98a2d6e 1/*
94cf822e 2 * Copyright 2016-2017 - Philippe Proulx <pproulx@efficios.com>
fc9a526c 3 * Copyright 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
e98a2d6e
PP
4 * Copyright 2010-2011 - EfficiOS Inc. and Linux Foundation
5 *
e98a2d6e
PP
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
f67894f9 25#define BT_COMP_LOG_SELF_COMP (ds_file->self_comp)
3d731ea9
PP
26#define BT_LOG_OUTPUT_LEVEL (ds_file->log_level)
27#define BT_LOG_TAG "PLUGIN/SRC.CTF.FS/DS"
3fa1b6a3 28#include "logging/comp-logging.h"
3d731ea9 29
0fbb9a9f 30#include <stdlib.h>
e98a2d6e
PP
31#include <stdio.h>
32#include <stdint.h>
33#include <stdlib.h>
e98a2d6e
PP
34#include <glib.h>
35#include <inttypes.h>
57952005
MJ
36#include "compat/mman.h"
37#include "compat/endian.h"
71c5da58 38#include <babeltrace2/babeltrace.h>
57952005 39#include "common/common.h"
78586d8a
JG
40#include "file.h"
41#include "metadata.h"
b09a5592 42#include "../common/msg-iter/msg-iter.h"
57952005 43#include "common/assert.h"
94cf822e 44#include "data-stream-file.h"
e9383dfd 45#include <string.h>
e98a2d6e 46
4f1f88a6 47static inline
94cf822e 48size_t remaining_mmap_bytes(struct ctf_fs_ds_file *ds_file)
e98a2d6e 49{
ec4a3354 50 BT_ASSERT_DBG(ds_file->mmap_len >= ds_file->request_offset);
52eb1a72 51 return ds_file->mmap_len - ds_file->request_offset;
e98a2d6e
PP
52}
53
5b29e799 54static
94cf822e 55int ds_file_munmap(struct ctf_fs_ds_file *ds_file)
e98a2d6e 56{
fc9a526c 57 int ret = 0;
e98a2d6e 58
d238196d 59 if (!ds_file || !ds_file->mmap_addr) {
94cf822e
PP
60 goto end;
61 }
62
a555e971 63 if (bt_munmap(ds_file->mmap_addr, ds_file->mmap_len)) {
f67894f9 64 BT_COMP_LOGE_ERRNO("Cannot memory-unmap file",
2a48e5ae 65 ": address=%p, size=%zu, file_path=\"%s\", file=%p",
94cf822e 66 ds_file->mmap_addr, ds_file->mmap_len,
bb230c9b 67 ds_file->file ? ds_file->file->path->str : "NULL",
2a48e5ae 68 ds_file->file ? ds_file->file->fp : NULL);
fc9a526c
JG
69 ret = -1;
70 goto end;
e98a2d6e 71 }
94cf822e
PP
72
73 ds_file->mmap_addr = NULL;
74
fc9a526c
JG
75end:
76 return ret;
e98a2d6e
PP
77}
78
5b29e799 79static
5d452e1f 80enum ctf_msg_iter_medium_status ds_file_mmap_next(
94cf822e 81 struct ctf_fs_ds_file *ds_file)
e98a2d6e 82{
5d452e1f
SM
83 enum ctf_msg_iter_medium_status ret =
84 CTF_MSG_ITER_MEDIUM_STATUS_OK;
e98a2d6e
PP
85
86 /* Unmap old region */
94cf822e
PP
87 if (ds_file->mmap_addr) {
88 if (ds_file_munmap(ds_file)) {
e98a2d6e
PP
89 goto error;
90 }
91
7b7d8091 92 /*
52eb1a72 93 * mmap_len is guaranteed to be page-aligned except on the
7b7d8091
JG
94 * last mapping where it may not be possible (since the file's
95 * size itself may not be a page multiple).
96 */
52eb1a72 97 ds_file->mmap_offset += ds_file->mmap_len;
94cf822e 98 ds_file->request_offset = 0;
e98a2d6e
PP
99 }
100
52eb1a72 101 ds_file->mmap_len = MIN(ds_file->file->size - ds_file->mmap_offset,
94cf822e 102 ds_file->mmap_max_len);
52eb1a72 103 if (ds_file->mmap_len == 0) {
5d452e1f 104 ret = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
e0f6a64a
JG
105 goto end;
106 }
e98a2d6e 107 /* Map new region */
8b45963b 108 BT_ASSERT(ds_file->mmap_len);
a555e971 109 ds_file->mmap_addr = bt_mmap((void *) 0, ds_file->mmap_len,
94cf822e 110 PROT_READ, MAP_PRIVATE, fileno(ds_file->file->fp),
c8d7667f 111 ds_file->mmap_offset, ds_file->log_level);
94cf822e 112 if (ds_file->mmap_addr == MAP_FAILED) {
f67894f9 113 BT_COMP_LOGE("Cannot memory-map address (size %zu) of file \"%s\" (%p) at offset %jd: %s",
94cf822e 114 ds_file->mmap_len, ds_file->file->path->str,
41342c71 115 ds_file->file->fp, (intmax_t) ds_file->mmap_offset,
78586d8a 116 strerror(errno));
e98a2d6e
PP
117 goto error;
118 }
119
120 goto end;
e98a2d6e 121error:
94cf822e 122 ds_file_munmap(ds_file);
5d452e1f 123 ret = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
e98a2d6e
PP
124end:
125 return ret;
126}
127
5b29e799 128static
5d452e1f 129enum ctf_msg_iter_medium_status medop_request_bytes(
e98a2d6e
PP
130 size_t request_sz, uint8_t **buffer_addr,
131 size_t *buffer_sz, void *data)
132{
5d452e1f
SM
133 enum ctf_msg_iter_medium_status status =
134 CTF_MSG_ITER_MEDIUM_STATUS_OK;
94cf822e 135 struct ctf_fs_ds_file *ds_file = data;
e98a2d6e
PP
136
137 if (request_sz == 0) {
138 goto end;
139 }
140
f102bfaa
FD
141 /*
142 * Check if we have at least one memory-mapped byte left. If we don't,
143 * mmap the next file.
144 */
94cf822e 145 if (remaining_mmap_bytes(ds_file) == 0) {
e98a2d6e 146 /* Are we at the end of the file? */
94cf822e 147 if (ds_file->mmap_offset >= ds_file->file->size) {
f67894f9 148 BT_COMP_LOGD("Reached end of file \"%s\" (%p)",
94cf822e 149 ds_file->file->path->str, ds_file->file->fp);
5d452e1f 150 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
e98a2d6e
PP
151 goto end;
152 }
153
94cf822e 154 status = ds_file_mmap_next(ds_file);
e0f6a64a 155 switch (status) {
5d452e1f 156 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
e0f6a64a 157 break;
5d452e1f 158 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
e0f6a64a
JG
159 goto end;
160 default:
f67894f9 161 BT_COMP_LOGE("Cannot memory-map next region of file \"%s\" (%p)",
94cf822e
PP
162 ds_file->file->path->str,
163 ds_file->file->fp);
e98a2d6e
PP
164 goto error;
165 }
166 }
167
94cf822e 168 *buffer_sz = MIN(remaining_mmap_bytes(ds_file), request_sz);
f102bfaa 169 BT_ASSERT(ds_file->mmap_addr);
94cf822e
PP
170 *buffer_addr = ((uint8_t *) ds_file->mmap_addr) + ds_file->request_offset;
171 ds_file->request_offset += *buffer_sz;
e98a2d6e
PP
172 goto end;
173
174error:
5d452e1f 175 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
e98a2d6e
PP
176
177end:
178 return status;
179}
180
5b29e799 181static
bbbd35bf 182bt_stream *medop_borrow_stream(bt_stream_class *stream_class, int64_t stream_id,
0659c536 183 void *data)
e98a2d6e 184{
94cf822e 185 struct ctf_fs_ds_file *ds_file = data;
8eee8ea2
PP
186 bt_stream_class *ds_file_stream_class;
187 bt_stream *stream = NULL;
9e550e5f 188
78cf9df6 189 ds_file_stream_class = bt_stream_borrow_class(
9e550e5f 190 ds_file->stream);
94cf822e 191
94cf822e
PP
192 if (stream_class != ds_file_stream_class) {
193 /*
194 * Not supported: two packets described by two different
195 * stream classes within the same data stream file.
196 */
197 goto end;
e98a2d6e
PP
198 }
199
94cf822e
PP
200 stream = ds_file->stream;
201
202end:
203 return stream;
e98a2d6e
PP
204}
205
bb230c9b 206static
5d452e1f 207enum ctf_msg_iter_medium_status medop_seek(enum ctf_msg_iter_seek_whence whence,
bbbd35bf 208 off_t offset, void *data)
bb230c9b 209{
5d452e1f
SM
210 enum ctf_msg_iter_medium_status ret =
211 CTF_MSG_ITER_MEDIUM_STATUS_OK;
bb230c9b 212 struct ctf_fs_ds_file *ds_file = data;
f102bfaa 213 off_t offset_in_mapping, file_size = ds_file->file->size;
bb230c9b 214
5d452e1f 215 if (whence != CTF_MSG_ITER_SEEK_WHENCE_SET ||
bb230c9b 216 offset < 0 || offset > file_size) {
f67894f9 217 BT_COMP_LOGE("Invalid medium seek request: whence=%d, offset=%jd, "
2655783b
JR
218 "file-size=%jd", (int) whence, (intmax_t) offset,
219 (intmax_t) file_size);
5d452e1f 220 ret = CTF_MSG_ITER_MEDIUM_STATUS_INVAL;
bb230c9b
JG
221 goto end;
222 }
223
f102bfaa
FD
224 /* If there is no current mapping, map the right file directly. */
225 if (!ds_file->mmap_addr) {
226 goto map_requested_offset;
227 }
228
bb230c9b
JG
229 /*
230 * Determine whether or not the destination is contained within the
231 * current mapping.
232 */
f102bfaa
FD
233 if (offset < ds_file->mmap_offset ||
234 offset >= ds_file->mmap_offset + ds_file->mmap_len) {
bb230c9b 235 int unmap_ret;
f67894f9 236 BT_COMP_LOGD("Medium seek request cannot be accomodated by the current "
af5e91e4 237 "file mapping: offset=%jd, mmap-offset=%jd, "
2655783b 238 "mmap-len=%zu", (intmax_t) offset, (intmax_t) ds_file->mmap_offset,
bb230c9b
JG
239 ds_file->mmap_len);
240 unmap_ret = ds_file_munmap(ds_file);
241 if (unmap_ret) {
5d452e1f 242 ret = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
bb230c9b
JG
243 goto end;
244 }
f102bfaa 245 goto map_requested_offset;
bb230c9b
JG
246 } else {
247 ds_file->request_offset = offset - ds_file->mmap_offset;
f102bfaa
FD
248 goto test_end;
249 }
250
251map_requested_offset:
252 offset_in_mapping = offset %
c8ebf034 253 bt_mmap_get_offset_align_size(ds_file->log_level);
f102bfaa
FD
254
255 ds_file->mmap_offset = offset - offset_in_mapping;
256 ds_file->request_offset = offset_in_mapping;
257 ret = ds_file_mmap_next(ds_file);
5d452e1f 258 if (ret != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
f102bfaa 259 goto end;
bb230c9b
JG
260 }
261
f102bfaa 262test_end:
bb230c9b
JG
263 ds_file->end_reached = (offset == file_size);
264end:
265 return ret;
266}
267
55fa6491 268BT_HIDDEN
5d452e1f 269struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops = {
e98a2d6e 270 .request_bytes = medop_request_bytes,
a6918753 271 .borrow_stream = medop_borrow_stream,
bb230c9b 272 .seek = medop_seek,
e98a2d6e 273};
55fa6491 274
97ade20b 275static
35fa110e 276int convert_cycles_to_ns(struct ctf_clock_class *clock_class,
97ade20b 277 uint64_t cycles, int64_t *ns)
b6c3dcb2 278{
35fa110e
PP
279 return bt_util_clock_cycles_to_ns_from_origin(cycles,
280 clock_class->frequency, clock_class->offset_seconds,
281 clock_class->offset_cycles, ns);
97ade20b
JG
282}
283
284static
285struct ctf_fs_ds_index *build_index_from_idx_file(
13772304
FD
286 struct ctf_fs_ds_file *ds_file,
287 struct ctf_fs_ds_file_info *file_info)
97ade20b
JG
288{
289 int ret;
b6c3dcb2
JG
290 gchar *directory = NULL;
291 gchar *basename = NULL;
292 GString *index_basename = NULL;
293 gchar *index_file_path = NULL;
294 GMappedFile *mapped_file = NULL;
295 gsize filesize;
97ade20b
JG
296 const char *mmap_begin = NULL, *file_pos = NULL;
297 const struct ctf_packet_index_file_hdr *header = NULL;
298 struct ctf_fs_ds_index *index = NULL;
e58dfd9c 299 struct ctf_fs_ds_index_entry *index_entry = NULL, *prev_index_entry = NULL;
b6c3dcb2
JG
300 uint64_t total_packets_size = 0;
301 size_t file_index_entry_size;
302 size_t file_entry_count;
303 size_t i;
7b33a0e0 304 struct ctf_stream_class *sc;
5d452e1f 305 struct ctf_msg_iter_packet_properties props;
2068d50b 306 uint32_t version_major, version_minor;
97ade20b 307
f67894f9 308 BT_COMP_LOGI("Building index from .idx file of stream file %s",
97ade20b 309 ds_file->file->path->str);
5d452e1f 310 ret = ctf_msg_iter_get_packet_properties(ds_file->msg_iter, &props);
97ade20b 311 if (ret) {
f67894f9 312 BT_COMP_LOGI_STR("Cannot read first packet's header and context fields.");
7b33a0e0
PP
313 goto error;
314 }
315
7b33a0e0
PP
316 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
317 props.stream_class_id);
318 BT_ASSERT(sc);
319 if (!sc->default_clock_class) {
f67894f9 320 BT_COMP_LOGI_STR("Cannot find stream class's default clock class.");
97ade20b
JG
321 goto error;
322 }
b6c3dcb2
JG
323
324 /* Look for index file in relative path index/name.idx. */
94cf822e 325 basename = g_path_get_basename(ds_file->file->path->str);
b6c3dcb2 326 if (!basename) {
f67894f9 327 BT_COMP_LOGE("Cannot get the basename of datastream file %s",
55314f2a 328 ds_file->file->path->str);
97ade20b 329 goto error;
b6c3dcb2
JG
330 }
331
94cf822e 332 directory = g_path_get_dirname(ds_file->file->path->str);
b6c3dcb2 333 if (!directory) {
f67894f9 334 BT_COMP_LOGE("Cannot get dirname of datastream file %s",
55314f2a 335 ds_file->file->path->str);
97ade20b 336 goto error;
b6c3dcb2
JG
337 }
338
339 index_basename = g_string_new(basename);
340 if (!index_basename) {
f67894f9 341 BT_COMP_LOGE_STR("Cannot allocate index file basename string");
97ade20b 342 goto error;
b6c3dcb2
JG
343 }
344
345 g_string_append(index_basename, ".idx");
346 index_file_path = g_build_filename(directory, "index",
347 index_basename->str, NULL);
348 mapped_file = g_mapped_file_new(index_file_path, FALSE, NULL);
06367fa3 349 if (!mapped_file) {
f67894f9 350 BT_COMP_LOGD("Cannot create new mapped file %s",
55314f2a 351 index_file_path);
97ade20b 352 goto error;
06367fa3 353 }
65cbebef
JG
354
355 /*
356 * The g_mapped_file API limits us to 4GB files on 32-bit.
357 * Traces with such large indexes have never been seen in the wild,
358 * but this would need to be adjusted to support them.
359 */
b6c3dcb2
JG
360 filesize = g_mapped_file_get_length(mapped_file);
361 if (filesize < sizeof(*header)) {
f67894f9 362 BT_COMP_LOGW("Invalid LTTng trace index file: "
65cbebef
JG
363 "file size (%zu bytes) < header size (%zu bytes)",
364 filesize, sizeof(*header));
97ade20b 365 goto error;
b6c3dcb2
JG
366 }
367
368 mmap_begin = g_mapped_file_get_contents(mapped_file);
369 header = (struct ctf_packet_index_file_hdr *) mmap_begin;
370
371 file_pos = g_mapped_file_get_contents(mapped_file) + sizeof(*header);
372 if (be32toh(header->magic) != CTF_INDEX_MAGIC) {
f67894f9 373 BT_COMP_LOGW_STR("Invalid LTTng trace index: \"magic\" field validation failed");
97ade20b 374 goto error;
b6c3dcb2 375 }
b6c3dcb2 376
2068d50b
SM
377 version_major = be32toh(header->index_major);
378 version_minor = be32toh(header->index_minor);
379 if (version_major != 1) {
380 BT_COMP_LOGW(
381 "Unknown LTTng trace index version: "
382 "major=%" PRIu32 ", minor=%" PRIu32,
383 version_major, version_minor);
384 goto error;
385 }
386
b6c3dcb2
JG
387 file_index_entry_size = be32toh(header->packet_index_len);
388 file_entry_count = (filesize - sizeof(*header)) / file_index_entry_size;
97ade20b 389 if ((filesize - sizeof(*header)) % file_index_entry_size) {
f67894f9 390 BT_COMP_LOGW("Invalid LTTng trace index: the index's size after the header "
65cbebef
JG
391 "(%zu bytes) is not a multiple of the index entry size "
392 "(%zu bytes)", (filesize - sizeof(*header)),
393 sizeof(*header));
97ade20b 394 goto error;
b6c3dcb2
JG
395 }
396
f67894f9 397 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
97ade20b
JG
398 if (!index) {
399 goto error;
b6c3dcb2 400 }
97ade20b 401
b6c3dcb2
JG
402 for (i = 0; i < file_entry_count; i++) {
403 struct ctf_packet_index *file_index =
404 (struct ctf_packet_index *) file_pos;
405 uint64_t packet_size = be64toh(file_index->packet_size);
406
407 if (packet_size % CHAR_BIT) {
f67894f9 408 BT_COMP_LOGW("Invalid packet size encountered in LTTng trace index file");
97ade20b 409 goto error;
b6c3dcb2
JG
410 }
411
779f4a23
FD
412 index_entry = g_new0(struct ctf_fs_ds_index_entry, 1);
413 if (!index_entry) {
414 goto error;
415 }
416
13772304
FD
417 /* Set path to stream file. */
418 index_entry->path = file_info->path->str;
419
b6c3dcb2
JG
420 /* Convert size in bits to bytes. */
421 packet_size /= CHAR_BIT;
97ade20b 422 index_entry->packet_size = packet_size;
b6c3dcb2 423
97ade20b 424 index_entry->offset = be64toh(file_index->offset);
e58dfd9c 425 if (i != 0 && index_entry->offset < prev_index_entry->offset) {
f67894f9 426 BT_COMP_LOGW("Invalid, non-monotonic, packet offset encountered in LTTng trace index file: "
65cbebef 427 "previous offset=%" PRIu64 ", current offset=%" PRIu64,
6cef4a7d 428 prev_index_entry->offset, index_entry->offset);
97ade20b 429 goto error;
b6c3dcb2
JG
430 }
431
97ade20b
JG
432 index_entry->timestamp_begin = be64toh(file_index->timestamp_begin);
433 index_entry->timestamp_end = be64toh(file_index->timestamp_end);
434 if (index_entry->timestamp_end < index_entry->timestamp_begin) {
f67894f9 435 BT_COMP_LOGW("Invalid packet time bounds encountered in LTTng trace index file (begin > end): "
65cbebef
JG
436 "timestamp_begin=%" PRIu64 "timestamp_end=%" PRIu64,
437 index_entry->timestamp_begin,
438 index_entry->timestamp_end);
97ade20b
JG
439 goto error;
440 }
441
442 /* Convert the packet's bound to nanoseconds since Epoch. */
7b33a0e0 443 ret = convert_cycles_to_ns(sc->default_clock_class,
97ade20b
JG
444 index_entry->timestamp_begin,
445 &index_entry->timestamp_begin_ns);
446 if (ret) {
f67894f9 447 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during index parsing");
97ade20b
JG
448 goto error;
449 }
7b33a0e0 450 ret = convert_cycles_to_ns(sc->default_clock_class,
97ade20b
JG
451 index_entry->timestamp_end,
452 &index_entry->timestamp_end_ns);
453 if (ret) {
f67894f9 454 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during LTTng trace index parsing");
97ade20b 455 goto error;
b6c3dcb2
JG
456 }
457
458 total_packets_size += packet_size;
459 file_pos += file_index_entry_size;
779f4a23 460
e58dfd9c 461 prev_index_entry = index_entry;
c0ba90e9
SM
462
463 /* Give ownership of `index_entry` to `index->entries`. */
464 g_ptr_array_add(index->entries, index_entry);
465 index_entry = NULL;
b6c3dcb2
JG
466 }
467
468 /* Validate that the index addresses the complete stream. */
94cf822e 469 if (ds_file->file->size != total_packets_size) {
f67894f9 470 BT_COMP_LOGW("Invalid LTTng trace index file; indexed size != stream file size: "
bb230c9b 471 "file-size=%" PRIu64 ", total-packets-size=%" PRIu64,
65cbebef 472 ds_file->file->size, total_packets_size);
97ade20b 473 goto error;
b6c3dcb2
JG
474 }
475end:
476 g_free(directory);
477 g_free(basename);
478 g_free(index_file_path);
06367fa3
JG
479 if (index_basename) {
480 g_string_free(index_basename, TRUE);
481 }
482 if (mapped_file) {
483 g_mapped_file_unref(mapped_file);
484 }
97ade20b
JG
485 return index;
486error:
487 ctf_fs_ds_index_destroy(index);
779f4a23 488 g_free(index_entry);
97ade20b 489 index = NULL;
b6c3dcb2
JG
490 goto end;
491}
492
bb230c9b
JG
493static
494int init_index_entry(struct ctf_fs_ds_index_entry *entry,
7b33a0e0 495 struct ctf_fs_ds_file *ds_file,
5d452e1f 496 struct ctf_msg_iter_packet_properties *props,
7b33a0e0 497 off_t packet_size, off_t packet_offset)
bb230c9b 498{
414ee0f4 499 int ret = 0;
7b33a0e0 500 struct ctf_stream_class *sc;
bb230c9b 501
7b33a0e0
PP
502 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
503 props->stream_class_id);
504 BT_ASSERT(sc);
8b45963b 505 BT_ASSERT(packet_offset >= 0);
bb230c9b 506 entry->offset = packet_offset;
8b45963b 507 BT_ASSERT(packet_size >= 0);
bb230c9b
JG
508 entry->packet_size = packet_size;
509
0476f6f7 510 if (props->snapshots.beginning_clock != UINT64_C(-1)) {
c2f37699
FD
511 entry->timestamp_begin = props->snapshots.beginning_clock;
512
0476f6f7
PP
513 /* Convert the packet's bound to nanoseconds since Epoch. */
514 ret = convert_cycles_to_ns(sc->default_clock_class,
515 props->snapshots.beginning_clock,
516 &entry->timestamp_begin_ns);
517 if (ret) {
f67894f9 518 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
0476f6f7
PP
519 goto end;
520 }
521 } else {
c2f37699 522 entry->timestamp_begin = UINT64_C(-1);
0476f6f7 523 entry->timestamp_begin_ns = UINT64_C(-1);
bb230c9b
JG
524 }
525
0476f6f7 526 if (props->snapshots.end_clock != UINT64_C(-1)) {
c2f37699
FD
527 entry->timestamp_end = props->snapshots.end_clock;
528
529 /* Convert the packet's bound to nanoseconds since Epoch. */
0476f6f7
PP
530 ret = convert_cycles_to_ns(sc->default_clock_class,
531 props->snapshots.end_clock,
532 &entry->timestamp_end_ns);
533 if (ret) {
f67894f9 534 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
0476f6f7
PP
535 goto end;
536 }
537 } else {
c2f37699 538 entry->timestamp_end = UINT64_C(-1);
0476f6f7 539 entry->timestamp_end_ns = UINT64_C(-1);
bb230c9b 540 }
c43f6ee2 541
bb230c9b 542end:
bb230c9b
JG
543 return ret;
544}
545
546static
547struct ctf_fs_ds_index *build_index_from_stream_file(
13772304
FD
548 struct ctf_fs_ds_file *ds_file,
549 struct ctf_fs_ds_file_info *file_info)
bb230c9b
JG
550{
551 int ret;
552 struct ctf_fs_ds_index *index = NULL;
5d452e1f 553 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
bbbd35bf 554 off_t current_packet_offset_bytes = 0;
bb230c9b 555
f67894f9 556 BT_COMP_LOGI("Indexing stream file %s", ds_file->file->path->str);
bb230c9b 557
f67894f9 558 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
bb230c9b
JG
559 if (!index) {
560 goto error;
561 }
562
5eb3f5e6 563 while (true) {
7b33a0e0 564 off_t current_packet_size_bytes;
779f4a23 565 struct ctf_fs_ds_index_entry *index_entry;
5d452e1f 566 struct ctf_msg_iter_packet_properties props;
bb230c9b 567
bbbd35bf 568 if (current_packet_offset_bytes < 0) {
f67894f9 569 BT_COMP_LOGE_STR("Cannot get the current packet's offset.");
bbbd35bf
PP
570 goto error;
571 } else if (current_packet_offset_bytes > ds_file->file->size) {
f67894f9 572 BT_COMP_LOGE_STR("Unexpected current packet's offset (larger than file).");
bbbd35bf
PP
573 goto error;
574 } else if (current_packet_offset_bytes == ds_file->file->size) {
575 /* No more data */
576 break;
577 }
578
5d452e1f 579 iter_status = ctf_msg_iter_seek(ds_file->msg_iter,
bbbd35bf 580 current_packet_offset_bytes);
5d452e1f 581 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
bb230c9b
JG
582 goto error;
583 }
a6918753 584
5d452e1f 585 iter_status = ctf_msg_iter_get_packet_properties(
bbbd35bf 586 ds_file->msg_iter, &props);
5d452e1f 587 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
bb230c9b
JG
588 goto error;
589 }
590
bbbd35bf
PP
591 if (props.exp_packet_total_size >= 0) {
592 current_packet_size_bytes =
593 (uint64_t) props.exp_packet_total_size / 8;
594 } else {
595 current_packet_size_bytes = ds_file->file->size;
596 }
bb230c9b 597
bbbd35bf 598 if (current_packet_offset_bytes + current_packet_size_bytes >
bb230c9b 599 ds_file->file->size) {
f67894f9 600 BT_COMP_LOGW("Invalid packet size reported in file: stream=\"%s\", "
bb230c9b
JG
601 "packet-offset=%jd, packet-size-bytes=%jd, "
602 "file-size=%jd",
603 ds_file->file->path->str,
2655783b
JR
604 (intmax_t) current_packet_offset_bytes,
605 (intmax_t) current_packet_size_bytes,
606 (intmax_t) ds_file->file->size);
bb230c9b
JG
607 goto error;
608 }
609
779f4a23
FD
610 index_entry = g_new0(struct ctf_fs_ds_index_entry, 1);
611 if (!index_entry) {
f67894f9 612 BT_COMP_LOGE_STR("Failed to allocate a new index entry.");
bb230c9b
JG
613 goto error;
614 }
615
13772304
FD
616 /* Set path to stream file. */
617 index_entry->path = file_info->path->str;
618
779f4a23 619 ret = init_index_entry(index_entry, ds_file, &props,
bbbd35bf 620 current_packet_size_bytes, current_packet_offset_bytes);
bb230c9b 621 if (ret) {
779f4a23 622 g_free(index_entry);
bb230c9b
JG
623 goto error;
624 }
779f4a23
FD
625
626 g_ptr_array_add(index->entries, index_entry);
627
9502dc00 628 current_packet_offset_bytes += current_packet_size_bytes;
f67894f9 629 BT_COMP_LOGD("Seeking to next packet: current-packet-offset=%jd, "
9502dc00 630 "next-packet-offset=%jd",
2655783b
JR
631 (intmax_t) (current_packet_offset_bytes - current_packet_size_bytes),
632 (intmax_t) current_packet_offset_bytes);
bb230c9b 633 }
a6918753 634
bb230c9b 635end:
bb230c9b 636 return index;
a6918753 637
bb230c9b
JG
638error:
639 ctf_fs_ds_index_destroy(index);
640 index = NULL;
641 goto end;
642}
643
e7a4393b 644BT_HIDDEN
94cf822e
PP
645struct ctf_fs_ds_file *ctf_fs_ds_file_create(
646 struct ctf_fs_trace *ctf_fs_trace,
b09a5592 647 bt_self_message_iterator *pc_msg_iter,
5d452e1f 648 struct ctf_msg_iter *msg_iter,
3d731ea9
PP
649 bt_stream *stream, const char *path,
650 bt_logging_level log_level)
e98a2d6e 651{
b6c3dcb2 652 int ret;
c8ebf034 653 const size_t offset_align = bt_mmap_get_offset_align_size(log_level);
94cf822e 654 struct ctf_fs_ds_file *ds_file = g_new0(struct ctf_fs_ds_file, 1);
e98a2d6e 655
94cf822e 656 if (!ds_file) {
e98a2d6e
PP
657 goto error;
658 }
659
3d731ea9 660 ds_file->log_level = log_level;
f67894f9 661 ds_file->self_comp = ctf_fs_trace->self_comp;
1d744019 662 ds_file->self_msg_iter = pc_msg_iter;
f67894f9 663 ds_file->file = ctf_fs_file_create(log_level, ds_file->self_comp);
94cf822e 664 if (!ds_file->file) {
4f1f88a6
PP
665 goto error;
666 }
667
4b70020d 668 ds_file->stream = stream;
8c6884d9 669 bt_stream_get_ref(ds_file->stream);
7b33a0e0 670 ds_file->metadata = ctf_fs_trace->metadata;
94cf822e 671 g_string_assign(ds_file->file->path, path);
55314f2a 672 ret = ctf_fs_file_open(ds_file->file, "rb");
4f1f88a6
PP
673 if (ret) {
674 goto error;
675 }
676
b09a5592 677 ds_file->msg_iter = msg_iter;
5d452e1f 678 ctf_msg_iter_set_medops_data(ds_file->msg_iter, ds_file);
b09a5592 679 if (!ds_file->msg_iter) {
e98a2d6e
PP
680 goto error;
681 }
5b29e799 682
c8ebf034 683 ds_file->mmap_max_len = offset_align * 2048;
94cf822e 684
e98a2d6e 685 goto end;
1a9f7075 686
e98a2d6e 687error:
78586d8a 688 /* Do not touch "borrowed" file. */
94cf822e
PP
689 ctf_fs_ds_file_destroy(ds_file);
690 ds_file = NULL;
1a9f7075 691
e98a2d6e 692end:
94cf822e 693 return ds_file;
e98a2d6e
PP
694}
695
97ade20b
JG
696BT_HIDDEN
697struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
13772304
FD
698 struct ctf_fs_ds_file *ds_file,
699 struct ctf_fs_ds_file_info *file_info)
97ade20b 700{
bb230c9b
JG
701 struct ctf_fs_ds_index *index;
702
13772304 703 index = build_index_from_idx_file(ds_file, file_info);
bb230c9b
JG
704 if (index) {
705 goto end;
706 }
707
f67894f9 708 BT_COMP_LOGI("Failed to build index from .index file; "
bb230c9b 709 "falling back to stream indexing.");
13772304 710 index = build_index_from_stream_file(ds_file, file_info);
bb230c9b
JG
711end:
712 return index;
97ade20b
JG
713}
714
779f4a23 715BT_HIDDEN
f67894f9
PP
716struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
717 bt_self_component *self_comp)
779f4a23
FD
718{
719 struct ctf_fs_ds_index *index = g_new0(struct ctf_fs_ds_index, 1);
720
721 if (!index) {
f67894f9 722 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
3d731ea9 723 "Failed to allocate index");
779f4a23
FD
724 goto error;
725 }
726
727 index->entries = g_ptr_array_new_with_free_func((GDestroyNotify) g_free);
728 if (!index->entries) {
f67894f9 729 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
3d731ea9 730 "Failed to allocate index entries.");
779f4a23
FD
731 goto error;
732 }
733
734 goto end;
735
736error:
737 ctf_fs_ds_index_destroy(index);
738 index = NULL;
739end:
740 return index;
741}
742
5b29e799 743BT_HIDDEN
94cf822e 744void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *ds_file)
e98a2d6e 745{
94cf822e 746 if (!ds_file) {
5b29e799 747 return;
043e2020
JG
748 }
749
8c6884d9 750 bt_stream_put_ref(ds_file->stream);
94cf822e 751 (void) ds_file_munmap(ds_file);
0982a26d 752
94cf822e
PP
753 if (ds_file->file) {
754 ctf_fs_file_destroy(ds_file->file);
e98a2d6e
PP
755 }
756
94cf822e 757 g_free(ds_file);
e98a2d6e 758}
4f1f88a6
PP
759
760BT_HIDDEN
fb25b9e3 761bt_component_class_message_iterator_next_method_status ctf_fs_ds_file_next(
3fd7b79d 762 struct ctf_fs_ds_file *ds_file,
b09a5592 763 bt_message **msg)
4f1f88a6 764{
5d452e1f 765 enum ctf_msg_iter_status msg_iter_status;
fb25b9e3 766 bt_component_class_message_iterator_next_method_status status;
4f1f88a6 767
5d452e1f 768 msg_iter_status = ctf_msg_iter_get_next_message(
2428e031 769 ds_file->msg_iter, msg);
4f1f88a6 770
b09a5592 771 switch (msg_iter_status) {
5d452e1f 772 case CTF_MSG_ITER_STATUS_EOF:
fb25b9e3 773 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END;
4f1f88a6 774 break;
5d452e1f 775 case CTF_MSG_ITER_STATUS_OK:
fb25b9e3 776 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
4f1f88a6 777 break;
5d452e1f 778 case CTF_MSG_ITER_STATUS_AGAIN:
4f1f88a6
PP
779 /*
780 * Should not make it this far as this is
781 * medium-specific; there is nothing for the user to do
782 * and it should have been handled upstream.
783 */
24847fc7 784 bt_common_abort();
5d452e1f
SM
785 case CTF_MSG_ITER_STATUS_INVAL:
786 case CTF_MSG_ITER_STATUS_ERROR:
4f1f88a6 787 default:
fb25b9e3 788 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
4f1f88a6
PP
789 break;
790 }
3fd7b79d 791 return status;
4f1f88a6 792}
94cf822e 793
97ade20b
JG
794BT_HIDDEN
795void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index)
796{
797 if (!index) {
798 return;
799 }
800
801 if (index->entries) {
779f4a23 802 g_ptr_array_free(index->entries, TRUE);
97ade20b
JG
803 }
804 g_free(index);
805}
This page took 0.106339 seconds and 4 git commands to generate.