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