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