src.ctf.fs: rename ctf_fs_ds_file_destroy to ~ctf_fs_ds_file
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.cpp
CommitLineData
e98a2d6e 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
e98a2d6e 3 *
0235b0db
MJ
4 * Copyright 2016-2017 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
e98a2d6e
PP
7 */
8
c802cacb 9#include <glib.h>
c802cacb
SM
10#include <stdint.h>
11#include <stdio.h>
c802cacb 12
83ad336c 13#include "compat/endian.h" /* IWYU pragma: keep */
0f5c5d5c 14#include "compat/mman.h" /* IWYU: pragma keep */
2cef6403 15#include "cpp-common/bt2s/make-unique.hpp"
0f5c5d5c 16#include "cpp-common/vendor/fmt/format.h"
c802cacb 17
5656cea5 18#include "../common/src/msg-iter/msg-iter.hpp"
087cd0f5 19#include "data-stream-file.hpp"
c802cacb 20#include "file.hpp"
c7e1be4b
SM
21#include "fs.hpp"
22#include "lttng-index.hpp"
e98a2d6e 23
4164020e 24static inline size_t remaining_mmap_bytes(struct ctf_fs_ds_file *ds_file)
e98a2d6e 25{
4164020e
SM
26 BT_ASSERT_DBG(ds_file->mmap_len >= ds_file->request_offset_in_mapping);
27 return ds_file->mmap_len - ds_file->request_offset_in_mapping;
e98a2d6e
PP
28}
29
127e2341
SM
30/*
31 * Return true if `offset_in_file` is in the current mapping.
32 */
33
4164020e 34static bool offset_ist_mapped(struct ctf_fs_ds_file *ds_file, off_t offset_in_file)
127e2341 35{
4164020e
SM
36 return offset_in_file >= ds_file->mmap_offset_in_file &&
37 offset_in_file < (ds_file->mmap_offset_in_file + ds_file->mmap_len);
127e2341
SM
38}
39
4164020e 40static enum ctf_msg_iter_medium_status ds_file_munmap(struct ctf_fs_ds_file *ds_file)
e98a2d6e 41{
4164020e 42 enum ctf_msg_iter_medium_status status;
4164020e
SM
43
44 BT_ASSERT(ds_file);
45
46 if (!ds_file->mmap_addr) {
47 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
48 goto end;
49 }
50
51 if (bt_munmap(ds_file->mmap_addr, ds_file->mmap_len)) {
0f5c5d5c
SM
52 BT_CPPLOGE_ERRNO_SPEC(ds_file->logger, "Cannot memory-unmap file",
53 ": address={}, size={}, file_path=\"{}\", file={}",
54 fmt::ptr(ds_file->mmap_addr), ds_file->mmap_len,
a39d9817 55 ds_file->file ? ds_file->file->path : "NULL",
0f5c5d5c 56 ds_file->file ? fmt::ptr(ds_file->file->fp) : NULL);
4164020e
SM
57 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
58 goto end;
59 }
60
61 ds_file->mmap_addr = NULL;
62
63 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
fc9a526c 64end:
4164020e 65 return status;
e98a2d6e
PP
66}
67
127e2341
SM
68/*
69 * mmap a region of `ds_file` such that `requested_offset_in_file` is in the
70 * mapping. If the currently mmap-ed region already contains
71 * `requested_offset_in_file`, the mapping is kept.
72 *
f6e68e70
SM
73 * Set `ds_file->requested_offset_in_mapping` based on `request_offset_in_file`,
74 * such that the next call to `request_bytes` will return bytes starting at that
75 * position.
127e2341
SM
76 *
77 * `requested_offset_in_file` must be a valid offset in the file.
78 */
4164020e
SM
79static enum ctf_msg_iter_medium_status ds_file_mmap(struct ctf_fs_ds_file *ds_file,
80 off_t requested_offset_in_file)
e98a2d6e 81{
4164020e 82 enum ctf_msg_iter_medium_status status;
4164020e
SM
83
84 /* Ensure the requested offset is in the file range. */
85 BT_ASSERT(requested_offset_in_file >= 0);
86 BT_ASSERT(requested_offset_in_file < ds_file->file->size);
87
88 /*
89 * If the mapping already contains the requested offset, just adjust
90 * requested_offset_in_mapping.
91 */
92 if (offset_ist_mapped(ds_file, requested_offset_in_file)) {
93 ds_file->request_offset_in_mapping =
94 requested_offset_in_file - ds_file->mmap_offset_in_file;
95 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
96 goto end;
97 }
98
99 /* Unmap old region */
100 status = ds_file_munmap(ds_file);
101 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
102 goto end;
103 }
104
105 /*
106 * Compute a mapping that has the required alignment properties and
107 * contains `requested_offset_in_file`.
108 */
109 ds_file->request_offset_in_mapping =
0f5c5d5c
SM
110 requested_offset_in_file %
111 bt_mmap_get_offset_align_size(static_cast<int>(ds_file->logger.level()));
4164020e
SM
112 ds_file->mmap_offset_in_file = requested_offset_in_file - ds_file->request_offset_in_mapping;
113 ds_file->mmap_len =
114 MIN(ds_file->file->size - ds_file->mmap_offset_in_file, ds_file->mmap_max_len);
115
116 BT_ASSERT(ds_file->mmap_len > 0);
117
118 ds_file->mmap_addr =
85a25425 119 bt_mmap(ds_file->mmap_len, PROT_READ, MAP_PRIVATE, fileno(ds_file->file->fp.get()),
0f5c5d5c 120 ds_file->mmap_offset_in_file, static_cast<int>(ds_file->logger.level()));
4164020e 121 if (ds_file->mmap_addr == MAP_FAILED) {
0f5c5d5c
SM
122 BT_CPPLOGE_SPEC(ds_file->logger,
123 "Cannot memory-map address (size {}) of file \"{}\" ({}) at offset {}: {}",
a39d9817 124 ds_file->mmap_len, ds_file->file->path, fmt::ptr(ds_file->file->fp),
0f5c5d5c 125 (intmax_t) ds_file->mmap_offset_in_file, strerror(errno));
4164020e
SM
126 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
127 goto end;
128 }
129
130 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
127e2341
SM
131
132end:
4164020e 133 return status;
127e2341
SM
134}
135
136/*
137 * Change the mapping of the file to read the region that follows the current
138 * mapping.
139 *
140 * If the file hasn't been mapped yet, then everything (mmap_offset_in_file,
141 * mmap_len, request_offset_in_mapping) should have the value 0, which will
142 * result in the beginning of the file getting mapped.
143 *
144 * return _EOF if the current mapping is the end of the file.
145 */
146
4164020e 147static enum ctf_msg_iter_medium_status ds_file_mmap_next(struct ctf_fs_ds_file *ds_file)
127e2341 148{
4164020e
SM
149 enum ctf_msg_iter_medium_status status;
150
151 /*
152 * If we're called, it's because more bytes are requested but we have
153 * given all the bytes of the current mapping.
154 */
155 BT_ASSERT(ds_file->request_offset_in_mapping == ds_file->mmap_len);
156
157 /*
158 * If the current mapping coincides with the end of the file, there is
159 * no next mapping.
160 */
161 if (ds_file->mmap_offset_in_file + ds_file->mmap_len == ds_file->file->size) {
162 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
163 goto end;
164 }
165
166 status = ds_file_mmap(ds_file, ds_file->mmap_offset_in_file + ds_file->mmap_len);
127e2341 167
e98a2d6e 168end:
4164020e 169 return status;
e98a2d6e
PP
170}
171
4164020e
SM
172static enum ctf_msg_iter_medium_status medop_request_bytes(size_t request_sz, uint8_t **buffer_addr,
173 size_t *buffer_sz, void *data)
e98a2d6e 174{
4164020e
SM
175 enum ctf_msg_iter_medium_status status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
176 struct ctf_fs_ds_file *ds_file = (struct ctf_fs_ds_file *) data;
4164020e
SM
177
178 BT_ASSERT(request_sz > 0);
179
180 /*
181 * Check if we have at least one memory-mapped byte left. If we don't,
182 * mmap the next file.
183 */
184 if (remaining_mmap_bytes(ds_file) == 0) {
185 /* Are we at the end of the file? */
186 if (ds_file->mmap_offset_in_file >= ds_file->file->size) {
a39d9817
SM
187 BT_CPPLOGD_SPEC(ds_file->logger, "Reached end of file \"{}\" ({})", ds_file->file->path,
188 fmt::ptr(ds_file->file->fp));
4164020e
SM
189 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
190 goto end;
191 }
192
193 status = ds_file_mmap_next(ds_file);
194 switch (status) {
195 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
196 break;
197 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
198 goto end;
199 default:
0f5c5d5c 200 BT_CPPLOGE_SPEC(ds_file->logger, "Cannot memory-map next region of file \"{}\" ({})",
a39d9817 201 ds_file->file->path, fmt::ptr(ds_file->file->fp));
4164020e
SM
202 goto error;
203 }
204 }
205
206 BT_ASSERT(remaining_mmap_bytes(ds_file) > 0);
207 *buffer_sz = MIN(remaining_mmap_bytes(ds_file), request_sz);
208
209 BT_ASSERT(ds_file->mmap_addr);
210 *buffer_addr = ((uint8_t *) ds_file->mmap_addr) + ds_file->request_offset_in_mapping;
211
212 ds_file->request_offset_in_mapping += *buffer_sz;
213 goto end;
e98a2d6e
PP
214
215error:
4164020e 216 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
e98a2d6e
PP
217
218end:
4164020e 219 return status;
e98a2d6e
PP
220}
221
ecd7492f 222static bt_stream *medop_borrow_stream(bt_stream_class *stream_class, int64_t, void *data)
e98a2d6e 223{
4164020e
SM
224 struct ctf_fs_ds_file *ds_file = (struct ctf_fs_ds_file *) data;
225 bt_stream_class *ds_file_stream_class;
226 bt_stream *stream = NULL;
e5be10ef 227
265d4ba2 228 ds_file_stream_class = ds_file->stream->cls().libObjPtr();
94cf822e 229
4164020e
SM
230 if (stream_class != ds_file_stream_class) {
231 /*
232 * Not supported: two packets described by two different
233 * stream classes within the same data stream file.
234 */
235 goto end;
236 }
e98a2d6e 237
265d4ba2 238 stream = ds_file->stream->libObjPtr();
94cf822e
PP
239
240end:
4164020e 241 return stream;
e98a2d6e
PP
242}
243
4164020e 244static enum ctf_msg_iter_medium_status medop_seek(off_t offset, void *data)
9e0c8dbb 245{
4164020e 246 struct ctf_fs_ds_file *ds_file = (struct ctf_fs_ds_file *) data;
9e0c8dbb 247
4164020e
SM
248 BT_ASSERT(offset >= 0);
249 BT_ASSERT(offset < ds_file->file->size);
9e0c8dbb 250
4164020e 251 return ds_file_mmap(ds_file, offset);
9e0c8dbb
JG
252}
253
18a1979b 254struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops = {
4164020e
SM
255 medop_request_bytes,
256 medop_seek,
257 nullptr,
258 medop_borrow_stream,
e98a2d6e 259};
6de92955 260
4164020e
SM
261struct ctf_fs_ds_group_medops_data
262{
0f5c5d5c
SM
263 explicit ctf_fs_ds_group_medops_data(const bt2c::Logger& parentLogger) :
264 logger {parentLogger, "PLUGIN/SRC.CTF.FS/DS-GROUP-MEDOPS"}
265 {
266 }
267
268 bt2c::Logger logger;
269
4164020e 270 /* Weak, set once at creation time. */
afb0f12b 271 struct ctf_fs_ds_file_group *ds_file_group = nullptr;
4164020e
SM
272
273 /*
274 * Index (as in element rank) of the index entry of ds_file_groups'
275 * index we will read next (so, the one after the one we are reading
276 * right now).
277 */
afb0f12b 278 guint next_index_entry_index = 0;
4164020e
SM
279
280 /*
281 * File we are currently reading. Changes whenever we switch to
282 * reading another data file.
283 *
284 * Owned by this.
285 */
afb0f12b 286 struct ctf_fs_ds_file *file = nullptr;
4164020e
SM
287
288 /* Weak, for context / logging / appending causes. */
afb0f12b 289 bt_self_message_iterator *self_msg_iter = nullptr;
f6e68e70
SM
290};
291
4164020e
SM
292static enum ctf_msg_iter_medium_status medop_group_request_bytes(size_t request_sz,
293 uint8_t **buffer_addr,
294 size_t *buffer_sz, void *void_data)
f6e68e70 295{
4164020e 296 struct ctf_fs_ds_group_medops_data *data = (struct ctf_fs_ds_group_medops_data *) void_data;
f6e68e70 297
4164020e
SM
298 /* Return bytes from the current file. */
299 return medop_request_bytes(request_sz, buffer_addr, buffer_sz, data->file);
f6e68e70
SM
300}
301
4164020e
SM
302static bt_stream *medop_group_borrow_stream(bt_stream_class *stream_class, int64_t stream_id,
303 void *void_data)
f6e68e70 304{
4164020e 305 struct ctf_fs_ds_group_medops_data *data = (struct ctf_fs_ds_group_medops_data *) void_data;
f6e68e70 306
4164020e 307 return medop_borrow_stream(stream_class, stream_id, data->file);
f6e68e70
SM
308}
309
310/*
311 * Set `data->file` to prepare it to read the packet described
312 * by `index_entry`.
313 */
314
4164020e
SM
315static enum ctf_msg_iter_medium_status
316ctf_fs_ds_group_medops_set_file(struct ctf_fs_ds_group_medops_data *data,
0f5c5d5c 317 struct ctf_fs_ds_index_entry *index_entry)
f6e68e70 318{
4164020e
SM
319 enum ctf_msg_iter_medium_status status;
320
321 BT_ASSERT(data);
322 BT_ASSERT(index_entry);
323
324 /* Check if that file is already the one mapped. */
a39d9817 325 if (!data->file || data->file->file->path != index_entry->path) {
4164020e 326 /* Destroy the previously used file. */
3199f1ba 327 delete data->file;
4164020e
SM
328
329 /* Create the new file. */
265d4ba2
SM
330 data->file =
331 ctf_fs_ds_file_create(data->ds_file_group->ctf_fs_trace, data->ds_file_group->stream,
332 index_entry->path, data->logger);
4164020e 333 if (!data->file) {
0f5c5d5c 334 BT_CPPLOGE_APPEND_CAUSE_SPEC(data->logger, "failed to create ctf_fs_ds_file.");
4164020e
SM
335 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
336 goto end;
337 }
338 }
339
340 /*
341 * Ensure the right portion of the file will be returned on the next
342 * request_bytes call.
343 */
ef7d7ac2 344 status = ds_file_mmap(data->file, index_entry->offset.bytes());
4164020e
SM
345 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
346 goto end;
347 }
348
349 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
f6e68e70
SM
350
351end:
4164020e 352 return status;
f6e68e70
SM
353}
354
4164020e 355static enum ctf_msg_iter_medium_status medop_group_switch_packet(void *void_data)
f6e68e70 356{
4164020e
SM
357 struct ctf_fs_ds_group_medops_data *data = (struct ctf_fs_ds_group_medops_data *) void_data;
358 struct ctf_fs_ds_index_entry *index_entry;
359 enum ctf_msg_iter_medium_status status;
360
361 /* If we have gone through all index entries, we are done. */
2fb7af12 362 if (data->next_index_entry_index >= data->ds_file_group->index->entries.size()) {
4164020e
SM
363 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
364 goto end;
365 }
366
367 /*
368 * Otherwise, look up the next index entry / packet and prepare it
369 * for reading.
370 */
2fb7af12 371 index_entry = data->ds_file_group->index->entries[data->next_index_entry_index].get();
4164020e 372
0f5c5d5c 373 status = ctf_fs_ds_group_medops_set_file(data, index_entry);
4164020e
SM
374 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
375 goto end;
376 }
377
378 data->next_index_entry_index++;
379
380 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
f6e68e70 381end:
4164020e 382 return status;
f6e68e70
SM
383}
384
4164020e 385void ctf_fs_ds_group_medops_data_destroy(struct ctf_fs_ds_group_medops_data *data)
f6e68e70 386{
4164020e
SM
387 if (!data) {
388 goto end;
389 }
f6e68e70 390
3199f1ba 391 delete data->file;
f6e68e70 392
afb0f12b 393 delete data;
f6e68e70
SM
394
395end:
4164020e 396 return;
f6e68e70
SM
397}
398
399enum ctf_msg_iter_medium_status ctf_fs_ds_group_medops_data_create(
4164020e 400 struct ctf_fs_ds_file_group *ds_file_group, bt_self_message_iterator *self_msg_iter,
0f5c5d5c 401 const bt2c::Logger& parentLogger, struct ctf_fs_ds_group_medops_data **out)
f6e68e70 402{
4164020e
SM
403 BT_ASSERT(self_msg_iter);
404 BT_ASSERT(ds_file_group);
405 BT_ASSERT(ds_file_group->index);
2fb7af12 406 BT_ASSERT(!ds_file_group->index->entries.empty());
4164020e 407
0f5c5d5c 408 ctf_fs_ds_group_medops_data *data = new ctf_fs_ds_group_medops_data {parentLogger};
4164020e
SM
409 data->ds_file_group = ds_file_group;
410 data->self_msg_iter = self_msg_iter;
4164020e
SM
411
412 /*
413 * No need to prepare the first file. ctf_msg_iter will call
414 * switch_packet before reading the first packet, it will be
415 * done then.
416 */
417
418 *out = data;
afb0f12b 419 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
f6e68e70
SM
420}
421
422void ctf_fs_ds_group_medops_data_reset(struct ctf_fs_ds_group_medops_data *data)
423{
4164020e 424 data->next_index_entry_index = 0;
f6e68e70
SM
425}
426
427struct ctf_msg_iter_medium_ops ctf_fs_ds_group_medops = {
4164020e 428 .request_bytes = medop_group_request_bytes,
f6e68e70 429
4164020e
SM
430 /*
431 * We don't support seeking using this medops. It would probably be
432 * possible, but it's not needed at the moment.
433 */
434 .seek = NULL,
087cd0f5 435
4164020e
SM
436 .switch_packet = medop_group_switch_packet,
437 .borrow_stream = medop_group_borrow_stream,
f6e68e70
SM
438};
439
c05e1405
SM
440static ctf_fs_ds_index_entry::UP ctf_fs_ds_index_entry_create(const bt2c::DataLen offset,
441 const bt2c::DataLen packetSize)
afb0f12b 442{
c05e1405 443 ctf_fs_ds_index_entry::UP entry = bt2s::make_unique<ctf_fs_ds_index_entry>(offset, packetSize);
ef7d7ac2 444
4164020e 445 entry->packet_seq_num = UINT64_MAX;
6834784d 446
4164020e 447 return entry;
6834784d
SM
448}
449
4164020e 450static int convert_cycles_to_ns(struct ctf_clock_class *clock_class, uint64_t cycles, int64_t *ns)
b6c3dcb2 451{
4164020e
SM
452 return bt_util_clock_cycles_to_ns_from_origin(cycles, clock_class->frequency,
453 clock_class->offset_seconds,
454 clock_class->offset_cycles, ns);
97ade20b
JG
455}
456
441fa755
SM
457static ctf_fs_ds_index::UP build_index_from_idx_file(struct ctf_fs_ds_file *ds_file,
458 struct ctf_fs_ds_file_info *file_info,
459 struct ctf_msg_iter *msg_iter)
97ade20b 460{
4164020e
SM
461 int ret;
462 gchar *directory = NULL;
463 gchar *basename = NULL;
464 GString *index_basename = NULL;
465 gchar *index_file_path = NULL;
466 GMappedFile *mapped_file = NULL;
467 gsize filesize;
468 const char *mmap_begin = NULL, *file_pos = NULL;
469 const struct ctf_packet_index_file_hdr *header = NULL;
441fa755 470 ctf_fs_ds_index::UP index;
c05e1405
SM
471 ctf_fs_ds_index_entry::UP index_entry;
472 ctf_fs_ds_index_entry *prev_index_entry = NULL;
ef7d7ac2 473 auto totalPacketsSize = bt2c::DataLen::fromBytes(0);
4164020e
SM
474 size_t file_index_entry_size;
475 size_t file_entry_count;
476 size_t i;
477 struct ctf_stream_class *sc;
478 struct ctf_msg_iter_packet_properties props;
479 uint32_t version_major, version_minor;
4164020e 480
0f5c5d5c 481 BT_CPPLOGI_SPEC(ds_file->logger, "Building index from .idx file of stream file {}",
a39d9817 482 ds_file->file->path);
4164020e
SM
483 ret = ctf_msg_iter_get_packet_properties(msg_iter, &props);
484 if (ret) {
0f5c5d5c
SM
485 BT_CPPLOGI_STR_SPEC(ds_file->logger,
486 "Cannot read first packet's header and context fields.");
4164020e
SM
487 goto error;
488 }
489
490 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, props.stream_class_id);
491 BT_ASSERT(sc);
492 if (!sc->default_clock_class) {
0f5c5d5c 493 BT_CPPLOGI_STR_SPEC(ds_file->logger, "Cannot find stream class's default clock class.");
4164020e
SM
494 goto error;
495 }
496
497 /* Look for index file in relative path index/name.idx. */
a39d9817 498 basename = g_path_get_basename(ds_file->file->path.c_str());
4164020e 499 if (!basename) {
0f5c5d5c 500 BT_CPPLOGE_SPEC(ds_file->logger, "Cannot get the basename of datastream file {}",
a39d9817 501 ds_file->file->path);
4164020e
SM
502 goto error;
503 }
504
a39d9817 505 directory = g_path_get_dirname(ds_file->file->path.c_str());
4164020e 506 if (!directory) {
0f5c5d5c 507 BT_CPPLOGE_SPEC(ds_file->logger, "Cannot get dirname of datastream file {}",
a39d9817 508 ds_file->file->path);
4164020e
SM
509 goto error;
510 }
511
512 index_basename = g_string_new(basename);
513 if (!index_basename) {
0f5c5d5c 514 BT_CPPLOGE_STR_SPEC(ds_file->logger, "Cannot allocate index file basename string");
4164020e
SM
515 goto error;
516 }
517
518 g_string_append(index_basename, ".idx");
519 index_file_path = g_build_filename(directory, "index", index_basename->str, NULL);
520 mapped_file = g_mapped_file_new(index_file_path, FALSE, NULL);
521 if (!mapped_file) {
0f5c5d5c 522 BT_CPPLOGD_SPEC(ds_file->logger, "Cannot create new mapped file {}", index_file_path);
4164020e
SM
523 goto error;
524 }
525
526 /*
527 * The g_mapped_file API limits us to 4GB files on 32-bit.
528 * Traces with such large indexes have never been seen in the wild,
529 * but this would need to be adjusted to support them.
530 */
531 filesize = g_mapped_file_get_length(mapped_file);
532 if (filesize < sizeof(*header)) {
0f5c5d5c
SM
533 BT_CPPLOGW_SPEC(ds_file->logger,
534 "Invalid LTTng trace index file: "
535 "file size ({} bytes) < header size ({} bytes)",
536 filesize, sizeof(*header));
4164020e
SM
537 goto error;
538 }
539
540 mmap_begin = g_mapped_file_get_contents(mapped_file);
541 header = (struct ctf_packet_index_file_hdr *) mmap_begin;
542
543 file_pos = g_mapped_file_get_contents(mapped_file) + sizeof(*header);
544 if (be32toh(header->magic) != CTF_INDEX_MAGIC) {
0f5c5d5c
SM
545 BT_CPPLOGW_STR_SPEC(ds_file->logger,
546 "Invalid LTTng trace index: \"magic\" field validation failed");
4164020e
SM
547 goto error;
548 }
549
550 version_major = be32toh(header->index_major);
551 version_minor = be32toh(header->index_minor);
552 if (version_major != 1) {
0f5c5d5c
SM
553 BT_CPPLOGW_SPEC(ds_file->logger, "Unknown LTTng trace index version: major={}, minor={}",
554 version_major, version_minor);
4164020e
SM
555 goto error;
556 }
557
558 file_index_entry_size = be32toh(header->packet_index_len);
559 if (file_index_entry_size < CTF_INDEX_1_0_SIZE) {
0f5c5d5c
SM
560 BT_CPPLOGW_SPEC(
561 ds_file->logger,
4164020e 562 "Invalid `packet_index_len` in LTTng trace index file (`packet_index_len` < CTF index 1.0 index entry size): "
0f5c5d5c 563 "packet_index_len={}, CTF_INDEX_1_0_SIZE={}",
4164020e
SM
564 file_index_entry_size, CTF_INDEX_1_0_SIZE);
565 goto error;
566 }
567
568 file_entry_count = (filesize - sizeof(*header)) / file_index_entry_size;
569 if ((filesize - sizeof(*header)) % file_index_entry_size) {
0f5c5d5c
SM
570 BT_CPPLOGW_SPEC(ds_file->logger,
571 "Invalid LTTng trace index: the index's size after the header "
572 "({} bytes) is not a multiple of the index entry size "
573 "({} bytes)",
574 (filesize - sizeof(*header)), sizeof(*header));
4164020e
SM
575 goto error;
576 }
577
2fb7af12 578 index = ctf_fs_ds_index_create();
4164020e
SM
579 if (!index) {
580 goto error;
581 }
582
583 for (i = 0; i < file_entry_count; i++) {
584 struct ctf_packet_index *file_index = (struct ctf_packet_index *) file_pos;
ef7d7ac2 585 const auto packetSize = bt2c::DataLen::fromBits(be64toh(file_index->packet_size));
4164020e 586
ef7d7ac2 587 if (packetSize.hasExtraBits()) {
0f5c5d5c
SM
588 BT_CPPLOGW_SPEC(ds_file->logger,
589 "Invalid packet size encountered in LTTng trace index file");
4164020e
SM
590 goto error;
591 }
592
ef7d7ac2
SM
593 const auto offset = bt2c::DataLen::fromBytes(be64toh(file_index->offset));
594
595 if (i != 0 && offset < prev_index_entry->offset) {
596 BT_CPPLOGW_SPEC(
597 ds_file->logger,
598 "Invalid, non-monotonic, packet offset encountered in LTTng trace index file: "
599 "previous offset={} bytes, current offset={} bytes",
600 prev_index_entry->offset.bytes(), offset.bytes());
601 goto error;
602 }
603
604 index_entry = ctf_fs_ds_index_entry_create(offset, packetSize);
4164020e 605 if (!index_entry) {
0f5c5d5c
SM
606 BT_CPPLOGE_APPEND_CAUSE_SPEC(ds_file->logger,
607 "Failed to create a ctf_fs_ds_index_entry.");
4164020e
SM
608 goto error;
609 }
610
611 /* Set path to stream file. */
4d199954 612 index_entry->path = file_info->path.c_str();
4164020e 613
4164020e
SM
614 index_entry->timestamp_begin = be64toh(file_index->timestamp_begin);
615 index_entry->timestamp_end = be64toh(file_index->timestamp_end);
616 if (index_entry->timestamp_end < index_entry->timestamp_begin) {
0f5c5d5c
SM
617 BT_CPPLOGW_SPEC(
618 ds_file->logger,
4164020e 619 "Invalid packet time bounds encountered in LTTng trace index file (begin > end): "
0f5c5d5c 620 "timestamp_begin={}, timestamp_end={}",
4164020e
SM
621 index_entry->timestamp_begin, index_entry->timestamp_end);
622 goto error;
623 }
624
625 /* Convert the packet's bound to nanoseconds since Epoch. */
626 ret = convert_cycles_to_ns(sc->default_clock_class, index_entry->timestamp_begin,
627 &index_entry->timestamp_begin_ns);
628 if (ret) {
0f5c5d5c
SM
629 BT_CPPLOGI_STR_SPEC(
630 ds_file->logger,
4164020e
SM
631 "Failed to convert raw timestamp to nanoseconds since Epoch during index parsing");
632 goto error;
633 }
634 ret = convert_cycles_to_ns(sc->default_clock_class, index_entry->timestamp_end,
635 &index_entry->timestamp_end_ns);
636 if (ret) {
0f5c5d5c
SM
637 BT_CPPLOGI_STR_SPEC(
638 ds_file->logger,
4164020e
SM
639 "Failed to convert raw timestamp to nanoseconds since Epoch during LTTng trace index parsing");
640 goto error;
641 }
642
643 if (version_minor >= 1) {
644 index_entry->packet_seq_num = be64toh(file_index->packet_seq_num);
645 }
646
ef7d7ac2 647 totalPacketsSize += packetSize;
4164020e
SM
648 file_pos += file_index_entry_size;
649
c05e1405 650 prev_index_entry = index_entry.get();
4164020e 651
2fb7af12 652 index->entries.emplace_back(std::move(index_entry));
4164020e
SM
653 }
654
655 /* Validate that the index addresses the complete stream. */
ef7d7ac2 656 if (ds_file->file->size != totalPacketsSize.bytes()) {
0f5c5d5c
SM
657 BT_CPPLOGW_SPEC(ds_file->logger,
658 "Invalid LTTng trace index file; indexed size != stream file size: "
ef7d7ac2
SM
659 "file-size={} bytes, total-packets-size={} bytes",
660 ds_file->file->size, totalPacketsSize.bytes());
4164020e
SM
661 goto error;
662 }
b6c3dcb2 663end:
4164020e
SM
664 g_free(directory);
665 g_free(basename);
666 g_free(index_file_path);
667 if (index_basename) {
668 g_string_free(index_basename, TRUE);
669 }
670 if (mapped_file) {
671 g_mapped_file_unref(mapped_file);
672 }
673 return index;
97ade20b 674error:
441fa755 675 index.reset();
4164020e 676 goto end;
b6c3dcb2
JG
677}
678
4164020e 679static int init_index_entry(struct ctf_fs_ds_index_entry *entry, struct ctf_fs_ds_file *ds_file,
ef7d7ac2 680 struct ctf_msg_iter_packet_properties *props)
9e0c8dbb 681{
4164020e
SM
682 int ret = 0;
683 struct ctf_stream_class *sc;
4164020e
SM
684
685 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, props->stream_class_id);
686 BT_ASSERT(sc);
4164020e
SM
687
688 if (props->snapshots.beginning_clock != UINT64_C(-1)) {
689 entry->timestamp_begin = props->snapshots.beginning_clock;
690
691 /* Convert the packet's bound to nanoseconds since Epoch. */
692 ret = convert_cycles_to_ns(sc->default_clock_class, props->snapshots.beginning_clock,
693 &entry->timestamp_begin_ns);
694 if (ret) {
0f5c5d5c
SM
695 BT_CPPLOGI_STR_SPEC(ds_file->logger,
696 "Failed to convert raw timestamp to nanoseconds since Epoch.");
4164020e
SM
697 goto end;
698 }
699 } else {
700 entry->timestamp_begin = UINT64_C(-1);
701 entry->timestamp_begin_ns = UINT64_C(-1);
702 }
703
704 if (props->snapshots.end_clock != UINT64_C(-1)) {
705 entry->timestamp_end = props->snapshots.end_clock;
706
707 /* Convert the packet's bound to nanoseconds since Epoch. */
708 ret = convert_cycles_to_ns(sc->default_clock_class, props->snapshots.end_clock,
709 &entry->timestamp_end_ns);
710 if (ret) {
0f5c5d5c
SM
711 BT_CPPLOGI_STR_SPEC(ds_file->logger,
712 "Failed to convert raw timestamp to nanoseconds since Epoch.");
4164020e
SM
713 goto end;
714 }
715 } else {
716 entry->timestamp_end = UINT64_C(-1);
717 entry->timestamp_end_ns = UINT64_C(-1);
718 }
0b29603d 719
9e0c8dbb 720end:
4164020e 721 return ret;
9e0c8dbb
JG
722}
723
441fa755
SM
724static ctf_fs_ds_index::UP build_index_from_stream_file(struct ctf_fs_ds_file *ds_file,
725 struct ctf_fs_ds_file_info *file_info,
726 struct ctf_msg_iter *msg_iter)
9e0c8dbb 727{
4164020e 728 int ret;
441fa755 729 ctf_fs_ds_index::UP index;
4164020e 730 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
ef7d7ac2 731 auto currentPacketOffset = bt2c::DataLen::fromBytes(0);
4164020e 732
a39d9817 733 BT_CPPLOGI_SPEC(ds_file->logger, "Indexing stream file {}", ds_file->file->path);
4164020e 734
2fb7af12 735 index = ctf_fs_ds_index_create();
4164020e
SM
736 if (!index) {
737 goto error;
738 }
739
740 while (true) {
4164020e
SM
741 struct ctf_msg_iter_packet_properties props;
742
ef7d7ac2 743 if (currentPacketOffset.bytes() > ds_file->file->size) {
0f5c5d5c
SM
744 BT_CPPLOGE_STR_SPEC(ds_file->logger,
745 "Unexpected current packet's offset (larger than file).");
4164020e 746 goto error;
ef7d7ac2 747 } else if (currentPacketOffset.bytes() == ds_file->file->size) {
4164020e
SM
748 /* No more data */
749 break;
750 }
751
ef7d7ac2 752 iter_status = ctf_msg_iter_seek(msg_iter, currentPacketOffset.bytes());
4164020e
SM
753 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
754 goto error;
755 }
756
757 iter_status = ctf_msg_iter_get_packet_properties(msg_iter, &props);
758 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
759 goto error;
760 }
761
ef7d7ac2
SM
762 /*
763 * Get the current packet size from the packet header, if set. Else,
764 * assume there is a single packet in the file, so take the file size
765 * as the packet size.
766 */
767 const auto currentPacketSize = props.exp_packet_total_size >= 0 ?
768 bt2c::DataLen::fromBits(props.exp_packet_total_size) :
769 bt2c::DataLen::fromBytes(ds_file->file->size);
4164020e 770
ef7d7ac2 771 if ((currentPacketOffset + currentPacketSize).bytes() > ds_file->file->size) {
0f5c5d5c
SM
772 BT_CPPLOGW_SPEC(ds_file->logger,
773 "Invalid packet size reported in file: stream=\"{}\", "
ef7d7ac2
SM
774 "packet-offset-bytes={}, packet-size-bytes={}, "
775 "file-size-bytes={}",
a39d9817 776 ds_file->file->path, currentPacketOffset.bytes(),
ef7d7ac2 777 currentPacketSize.bytes(), ds_file->file->size);
4164020e
SM
778 goto error;
779 }
780
c05e1405 781 auto index_entry = ctf_fs_ds_index_entry_create(currentPacketOffset, currentPacketSize);
4164020e 782 if (!index_entry) {
0f5c5d5c
SM
783 BT_CPPLOGE_APPEND_CAUSE_SPEC(ds_file->logger,
784 "Failed to create a ctf_fs_ds_index_entry.");
4164020e
SM
785 goto error;
786 }
787
788 /* Set path to stream file. */
4d199954 789 index_entry->path = file_info->path.c_str();
4164020e 790
c05e1405 791 ret = init_index_entry(index_entry.get(), ds_file, &props);
4164020e 792 if (ret) {
4164020e
SM
793 goto error;
794 }
795
2fb7af12 796 index->entries.emplace_back(std::move(index_entry));
4164020e 797
ef7d7ac2 798 currentPacketOffset += currentPacketSize;
0f5c5d5c 799 BT_CPPLOGD_SPEC(ds_file->logger,
ef7d7ac2
SM
800 "Seeking to next packet: current-packet-offset-bytes={}, "
801 "next-packet-offset-bytes={}",
802 (currentPacketOffset - currentPacketSize).bytes(),
803 currentPacketOffset.bytes());
4164020e 804 }
312c056a 805
9e0c8dbb 806end:
4164020e 807 return index;
312c056a 808
9e0c8dbb 809error:
441fa755 810 index.reset();
4164020e 811 goto end;
9e0c8dbb
JG
812}
813
265d4ba2
SM
814struct ctf_fs_ds_file *ctf_fs_ds_file_create(struct ctf_fs_trace *ctf_fs_trace,
815 bt2::Stream::Shared stream, const char *path,
816 const bt2c::Logger& parentLogger)
e98a2d6e 817{
4164020e 818 int ret;
0f5c5d5c
SM
819 size_t offset_align;
820 ctf_fs_ds_file *ds_file = new ctf_fs_ds_file {parentLogger};
4164020e
SM
821
822 if (!ds_file) {
823 goto error;
824 }
825
c44dc433 826 ds_file->file = ctf_fs_file_create(parentLogger);
4164020e
SM
827 if (!ds_file->file) {
828 goto error;
829 }
830
265d4ba2 831 ds_file->stream = std::move(stream);
4164020e 832 ds_file->metadata = ctf_fs_trace->metadata;
a39d9817 833 ds_file->file->path = path;
c44dc433 834 ret = ctf_fs_file_open(ds_file->file.get(), "rb");
4164020e
SM
835 if (ret) {
836 goto error;
837 }
838
0f5c5d5c 839 offset_align = bt_mmap_get_offset_align_size(static_cast<int>(ds_file->logger.level()));
4164020e
SM
840 ds_file->mmap_max_len = offset_align * 2048;
841
842 goto end;
1a9f7075 843
e98a2d6e 844error:
4164020e 845 /* Do not touch "borrowed" file. */
3199f1ba 846 delete ds_file;
4164020e 847 ds_file = NULL;
1a9f7075 848
e98a2d6e 849end:
4164020e 850 return ds_file;
e98a2d6e
PP
851}
852
441fa755
SM
853ctf_fs_ds_index::UP ctf_fs_ds_file_build_index(struct ctf_fs_ds_file *ds_file,
854 struct ctf_fs_ds_file_info *file_info,
855 struct ctf_msg_iter *msg_iter)
97ade20b 856{
441fa755 857 auto index = build_index_from_idx_file(ds_file, file_info, msg_iter);
4164020e
SM
858 if (index) {
859 goto end;
860 }
861
0f5c5d5c
SM
862 BT_CPPLOGI_SPEC(ds_file->logger, "Failed to build index from .index file; "
863 "falling back to stream indexing.");
4164020e 864 index = build_index_from_stream_file(ds_file, file_info, msg_iter);
9e0c8dbb 865end:
4164020e 866 return index;
97ade20b
JG
867}
868
2fb7af12 869ctf_fs_ds_index::UP ctf_fs_ds_index_create()
7ed5243a 870{
bfd852f0 871 return bt2s::make_unique<ctf_fs_ds_index>();
7ed5243a
FD
872}
873
3199f1ba 874ctf_fs_ds_file::~ctf_fs_ds_file()
e98a2d6e 875{
3199f1ba 876 (void) ds_file_munmap(this);
e98a2d6e 877}
4f1f88a6 878
2cef6403 879ctf_fs_ds_file_info::UP ctf_fs_ds_file_info_create(const char *path, int64_t begin_ns)
873c329a 880{
2cef6403 881 ctf_fs_ds_file_info::UP ds_file_info = bt2s::make_unique<ctf_fs_ds_file_info>();
873c329a 882
4d199954 883 ds_file_info->path = path;
873c329a 884 ds_file_info->begin_ns = begin_ns;
873c329a
SM
885 return ds_file_info;
886}
887
fe2e19c4
SM
888ctf_fs_ds_file_group::UP ctf_fs_ds_file_group_create(struct ctf_fs_trace *ctf_fs_trace,
889 struct ctf_stream_class *sc,
890 uint64_t stream_instance_id,
fe2f9cda 891 ctf_fs_ds_index::UP index)
fe2e19c4
SM
892{
893 ctf_fs_ds_file_group::UP ds_file_group {new ctf_fs_ds_file_group};
894
fe2f9cda 895 ds_file_group->index = std::move(index);
873c329a
SM
896
897 ds_file_group->stream_id = stream_instance_id;
898 BT_ASSERT(sc);
899 ds_file_group->sc = sc;
900 ds_file_group->ctf_fs_trace = ctf_fs_trace;
873c329a 901
873c329a
SM
902 return ds_file_group;
903}
This page took 0.152536 seconds and 4 git commands to generate.