src.ctf.fs: add and use medops to iterate on a ds_file_group using the 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
d7bc0973
SM
25#define BT_COMP_LOG_SELF_COMP (self_comp)
26#define BT_LOG_OUTPUT_LEVEL (log_level)
3d731ea9 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{
43b07461
SM
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;
e98a2d6e
PP
52}
53
0eb6c8ee
SM
54/*
55 * Return true if `offset_in_file` is in the current mapping.
56 */
57
58static
59bool 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
5b29e799 65static
3baf7da0
SM
66enum ctf_msg_iter_medium_status ds_file_munmap(
67 struct ctf_fs_ds_file *ds_file)
e98a2d6e 68{
3baf7da0 69 enum ctf_msg_iter_medium_status status;
d7bc0973
SM
70 bt_self_component *self_comp = ds_file->self_comp;
71 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 72
4bbea805
SM
73 BT_ASSERT(ds_file);
74
75 if (!ds_file->mmap_addr) {
3baf7da0 76 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
94cf822e
PP
77 goto end;
78 }
79
a555e971 80 if (bt_munmap(ds_file->mmap_addr, ds_file->mmap_len)) {
f67894f9 81 BT_COMP_LOGE_ERRNO("Cannot memory-unmap file",
2a48e5ae 82 ": address=%p, size=%zu, file_path=\"%s\", file=%p",
94cf822e 83 ds_file->mmap_addr, ds_file->mmap_len,
bb230c9b 84 ds_file->file ? ds_file->file->path->str : "NULL",
2a48e5ae 85 ds_file->file ? ds_file->file->fp : NULL);
3baf7da0 86 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
fc9a526c 87 goto end;
e98a2d6e 88 }
94cf822e
PP
89
90 ds_file->mmap_addr = NULL;
91
3baf7da0 92 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
fc9a526c 93end:
3baf7da0 94 return status;
e98a2d6e
PP
95}
96
0eb6c8ee
SM
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 *
148f02cb
SM
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.
0eb6c8ee
SM
105 *
106 * `requested_offset_in_file` must be a valid offset in the file.
107 */
5b29e799 108static
0eb6c8ee
SM
109enum ctf_msg_iter_medium_status ds_file_mmap(
110 struct ctf_fs_ds_file *ds_file, off_t requested_offset_in_file)
e98a2d6e 111{
3baf7da0 112 enum ctf_msg_iter_medium_status status;
d7bc0973
SM
113 bt_self_component *self_comp = ds_file->self_comp;
114 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 115
0eb6c8ee
SM
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);
e98a2d6e 119
0eb6c8ee
SM
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;
e98a2d6e
PP
129 }
130
0eb6c8ee
SM
131 /* Unmap old region */
132 status = ds_file_munmap(ds_file);
133 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
e0f6a64a
JG
134 goto end;
135 }
0eb6c8ee
SM
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
a555e971 150 ds_file->mmap_addr = bt_mmap((void *) 0, ds_file->mmap_len,
94cf822e 151 PROT_READ, MAP_PRIVATE, fileno(ds_file->file->fp),
43b07461 152 ds_file->mmap_offset_in_file, ds_file->log_level);
94cf822e 153 if (ds_file->mmap_addr == MAP_FAILED) {
f67894f9 154 BT_COMP_LOGE("Cannot memory-map address (size %zu) of file \"%s\" (%p) at offset %jd: %s",
94cf822e 155 ds_file->mmap_len, ds_file->file->path->str,
43b07461 156 ds_file->file->fp, (intmax_t) ds_file->mmap_offset_in_file,
78586d8a 157 strerror(errno));
3baf7da0
SM
158 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
159 goto end;
e98a2d6e
PP
160 }
161
3baf7da0 162 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
0eb6c8ee
SM
163
164end:
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
179static
180enum 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
e98a2d6e 203end:
3baf7da0 204 return status;
e98a2d6e
PP
205}
206
5b29e799 207static
5d452e1f 208enum ctf_msg_iter_medium_status medop_request_bytes(
e98a2d6e
PP
209 size_t request_sz, uint8_t **buffer_addr,
210 size_t *buffer_sz, void *data)
211{
5d452e1f
SM
212 enum ctf_msg_iter_medium_status status =
213 CTF_MSG_ITER_MEDIUM_STATUS_OK;
94cf822e 214 struct ctf_fs_ds_file *ds_file = data;
d7bc0973
SM
215 bt_self_component *self_comp = ds_file->self_comp;
216 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 217
640a46fd 218 BT_ASSERT(request_sz > 0);
e98a2d6e 219
f102bfaa
FD
220 /*
221 * Check if we have at least one memory-mapped byte left. If we don't,
222 * mmap the next file.
223 */
94cf822e 224 if (remaining_mmap_bytes(ds_file) == 0) {
e98a2d6e 225 /* Are we at the end of the file? */
43b07461 226 if (ds_file->mmap_offset_in_file >= ds_file->file->size) {
f67894f9 227 BT_COMP_LOGD("Reached end of file \"%s\" (%p)",
94cf822e 228 ds_file->file->path->str, ds_file->file->fp);
5d452e1f 229 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
e98a2d6e
PP
230 goto end;
231 }
232
94cf822e 233 status = ds_file_mmap_next(ds_file);
e0f6a64a 234 switch (status) {
5d452e1f 235 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
e0f6a64a 236 break;
5d452e1f 237 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
e0f6a64a
JG
238 goto end;
239 default:
f67894f9 240 BT_COMP_LOGE("Cannot memory-map next region of file \"%s\" (%p)",
94cf822e
PP
241 ds_file->file->path->str,
242 ds_file->file->fp);
e98a2d6e
PP
243 goto error;
244 }
245 }
246
640a46fd 247 BT_ASSERT(remaining_mmap_bytes(ds_file) > 0);
94cf822e 248 *buffer_sz = MIN(remaining_mmap_bytes(ds_file), request_sz);
640a46fd 249
f102bfaa 250 BT_ASSERT(ds_file->mmap_addr);
43b07461 251 *buffer_addr = ((uint8_t *) ds_file->mmap_addr) + ds_file->request_offset_in_mapping;
640a46fd 252
43b07461 253 ds_file->request_offset_in_mapping += *buffer_sz;
e98a2d6e
PP
254 goto end;
255
256error:
5d452e1f 257 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
e98a2d6e
PP
258
259end:
260 return status;
261}
262
5b29e799 263static
bbbd35bf 264bt_stream *medop_borrow_stream(bt_stream_class *stream_class, int64_t stream_id,
0659c536 265 void *data)
e98a2d6e 266{
94cf822e 267 struct ctf_fs_ds_file *ds_file = data;
8eee8ea2
PP
268 bt_stream_class *ds_file_stream_class;
269 bt_stream *stream = NULL;
9e550e5f 270
78cf9df6 271 ds_file_stream_class = bt_stream_borrow_class(
9e550e5f 272 ds_file->stream);
94cf822e 273
94cf822e
PP
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;
e98a2d6e
PP
280 }
281
94cf822e
PP
282 stream = ds_file->stream;
283
284end:
285 return stream;
e98a2d6e
PP
286}
287
bb230c9b 288static
9a4c10a7 289enum ctf_msg_iter_medium_status medop_seek(off_t offset, void *data)
bb230c9b 290{
bb230c9b 291 struct ctf_fs_ds_file *ds_file = data;
bb230c9b 292
ebe4c684 293 BT_ASSERT(offset >= 0);
0eb6c8ee 294 BT_ASSERT(offset < ds_file->file->size);
bb230c9b 295
0eb6c8ee 296 return ds_file_mmap(ds_file, offset);
bb230c9b
JG
297}
298
55fa6491 299BT_HIDDEN
5d452e1f 300struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops = {
e98a2d6e 301 .request_bytes = medop_request_bytes,
a6918753 302 .borrow_stream = medop_borrow_stream,
bb230c9b 303 .seek = medop_seek,
e98a2d6e 304};
55fa6491 305
148f02cb
SM
306struct 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
330static
331enum 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
343static
344bt_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
359static
360enum 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
402end:
403 return status;
404}
405
406static
407enum 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;
437end:
438 return status;
439}
440
441BT_HIDDEN
442void 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
453end:
454 return;
455}
456
457enum 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
493error:
494 ctf_fs_ds_group_medops_data_destroy(data);
495
496end:
497 return status;
498}
499
500void 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
505struct 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
408c8c19
SM
517static
518struct 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
531end:
532 return entry;
533}
534
97ade20b 535static
35fa110e 536int convert_cycles_to_ns(struct ctf_clock_class *clock_class,
97ade20b 537 uint64_t cycles, int64_t *ns)
b6c3dcb2 538{
35fa110e
PP
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);
97ade20b
JG
542}
543
544static
545struct ctf_fs_ds_index *build_index_from_idx_file(
13772304 546 struct ctf_fs_ds_file *ds_file,
3b89958b
SM
547 struct ctf_fs_ds_file_info *file_info,
548 struct ctf_msg_iter *msg_iter)
97ade20b
JG
549{
550 int ret;
b6c3dcb2
JG
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;
97ade20b
JG
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;
e58dfd9c 560 struct ctf_fs_ds_index_entry *index_entry = NULL, *prev_index_entry = NULL;
b6c3dcb2
JG
561 uint64_t total_packets_size = 0;
562 size_t file_index_entry_size;
563 size_t file_entry_count;
564 size_t i;
7b33a0e0 565 struct ctf_stream_class *sc;
5d452e1f 566 struct ctf_msg_iter_packet_properties props;
2068d50b 567 uint32_t version_major, version_minor;
d7bc0973
SM
568 bt_self_component *self_comp = ds_file->self_comp;
569 bt_logging_level log_level = ds_file->log_level;
97ade20b 570
f67894f9 571 BT_COMP_LOGI("Building index from .idx file of stream file %s",
97ade20b 572 ds_file->file->path->str);
3b89958b 573 ret = ctf_msg_iter_get_packet_properties(msg_iter, &props);
97ade20b 574 if (ret) {
f67894f9 575 BT_COMP_LOGI_STR("Cannot read first packet's header and context fields.");
7b33a0e0
PP
576 goto error;
577 }
578
7b33a0e0
PP
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) {
f67894f9 583 BT_COMP_LOGI_STR("Cannot find stream class's default clock class.");
97ade20b
JG
584 goto error;
585 }
b6c3dcb2
JG
586
587 /* Look for index file in relative path index/name.idx. */
94cf822e 588 basename = g_path_get_basename(ds_file->file->path->str);
b6c3dcb2 589 if (!basename) {
f67894f9 590 BT_COMP_LOGE("Cannot get the basename of datastream file %s",
55314f2a 591 ds_file->file->path->str);
97ade20b 592 goto error;
b6c3dcb2
JG
593 }
594
94cf822e 595 directory = g_path_get_dirname(ds_file->file->path->str);
b6c3dcb2 596 if (!directory) {
f67894f9 597 BT_COMP_LOGE("Cannot get dirname of datastream file %s",
55314f2a 598 ds_file->file->path->str);
97ade20b 599 goto error;
b6c3dcb2
JG
600 }
601
602 index_basename = g_string_new(basename);
603 if (!index_basename) {
f67894f9 604 BT_COMP_LOGE_STR("Cannot allocate index file basename string");
97ade20b 605 goto error;
b6c3dcb2
JG
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);
06367fa3 612 if (!mapped_file) {
f67894f9 613 BT_COMP_LOGD("Cannot create new mapped file %s",
55314f2a 614 index_file_path);
97ade20b 615 goto error;
06367fa3 616 }
65cbebef
JG
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 */
b6c3dcb2
JG
623 filesize = g_mapped_file_get_length(mapped_file);
624 if (filesize < sizeof(*header)) {
f67894f9 625 BT_COMP_LOGW("Invalid LTTng trace index file: "
65cbebef
JG
626 "file size (%zu bytes) < header size (%zu bytes)",
627 filesize, sizeof(*header));
97ade20b 628 goto error;
b6c3dcb2
JG
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) {
f67894f9 636 BT_COMP_LOGW_STR("Invalid LTTng trace index: \"magic\" field validation failed");
97ade20b 637 goto error;
b6c3dcb2 638 }
b6c3dcb2 639
2068d50b
SM
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
b6c3dcb2
JG
650 file_index_entry_size = be32toh(header->packet_index_len);
651 file_entry_count = (filesize - sizeof(*header)) / file_index_entry_size;
97ade20b 652 if ((filesize - sizeof(*header)) % file_index_entry_size) {
f67894f9 653 BT_COMP_LOGW("Invalid LTTng trace index: the index's size after the header "
65cbebef
JG
654 "(%zu bytes) is not a multiple of the index entry size "
655 "(%zu bytes)", (filesize - sizeof(*header)),
656 sizeof(*header));
97ade20b 657 goto error;
b6c3dcb2
JG
658 }
659
f67894f9 660 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
97ade20b
JG
661 if (!index) {
662 goto error;
b6c3dcb2 663 }
97ade20b 664
b6c3dcb2
JG
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) {
f67894f9 671 BT_COMP_LOGW("Invalid packet size encountered in LTTng trace index file");
97ade20b 672 goto error;
b6c3dcb2
JG
673 }
674
408c8c19
SM
675 index_entry = ctf_fs_ds_index_entry_create(
676 ds_file->self_comp, ds_file->log_level);
779f4a23 677 if (!index_entry) {
408c8c19
SM
678 BT_COMP_LOGE_APPEND_CAUSE(ds_file->self_comp,
679 "Failed to create a ctf_fs_ds_index_entry.");
779f4a23
FD
680 goto error;
681 }
682
13772304
FD
683 /* Set path to stream file. */
684 index_entry->path = file_info->path->str;
685
b6c3dcb2
JG
686 /* Convert size in bits to bytes. */
687 packet_size /= CHAR_BIT;
97ade20b 688 index_entry->packet_size = packet_size;
b6c3dcb2 689
97ade20b 690 index_entry->offset = be64toh(file_index->offset);
e58dfd9c 691 if (i != 0 && index_entry->offset < prev_index_entry->offset) {
f67894f9 692 BT_COMP_LOGW("Invalid, non-monotonic, packet offset encountered in LTTng trace index file: "
65cbebef 693 "previous offset=%" PRIu64 ", current offset=%" PRIu64,
6cef4a7d 694 prev_index_entry->offset, index_entry->offset);
97ade20b 695 goto error;
b6c3dcb2
JG
696 }
697
97ade20b
JG
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) {
f67894f9 701 BT_COMP_LOGW("Invalid packet time bounds encountered in LTTng trace index file (begin > end): "
65cbebef
JG
702 "timestamp_begin=%" PRIu64 "timestamp_end=%" PRIu64,
703 index_entry->timestamp_begin,
704 index_entry->timestamp_end);
97ade20b
JG
705 goto error;
706 }
707
708 /* Convert the packet's bound to nanoseconds since Epoch. */
7b33a0e0 709 ret = convert_cycles_to_ns(sc->default_clock_class,
97ade20b
JG
710 index_entry->timestamp_begin,
711 &index_entry->timestamp_begin_ns);
712 if (ret) {
f67894f9 713 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during index parsing");
97ade20b
JG
714 goto error;
715 }
7b33a0e0 716 ret = convert_cycles_to_ns(sc->default_clock_class,
97ade20b
JG
717 index_entry->timestamp_end,
718 &index_entry->timestamp_end_ns);
719 if (ret) {
f67894f9 720 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during LTTng trace index parsing");
97ade20b 721 goto error;
b6c3dcb2
JG
722 }
723
408c8c19
SM
724 if (version_minor >= 1) {
725 index_entry->packet_seq_num = be64toh(file_index->packet_seq_num);
726 }
727
b6c3dcb2
JG
728 total_packets_size += packet_size;
729 file_pos += file_index_entry_size;
779f4a23 730
e58dfd9c 731 prev_index_entry = index_entry;
c0ba90e9
SM
732
733 /* Give ownership of `index_entry` to `index->entries`. */
734 g_ptr_array_add(index->entries, index_entry);
735 index_entry = NULL;
b6c3dcb2
JG
736 }
737
738 /* Validate that the index addresses the complete stream. */
94cf822e 739 if (ds_file->file->size != total_packets_size) {
f67894f9 740 BT_COMP_LOGW("Invalid LTTng trace index file; indexed size != stream file size: "
bb230c9b 741 "file-size=%" PRIu64 ", total-packets-size=%" PRIu64,
65cbebef 742 ds_file->file->size, total_packets_size);
97ade20b 743 goto error;
b6c3dcb2
JG
744 }
745end:
746 g_free(directory);
747 g_free(basename);
748 g_free(index_file_path);
06367fa3
JG
749 if (index_basename) {
750 g_string_free(index_basename, TRUE);
751 }
752 if (mapped_file) {
753 g_mapped_file_unref(mapped_file);
754 }
97ade20b
JG
755 return index;
756error:
757 ctf_fs_ds_index_destroy(index);
779f4a23 758 g_free(index_entry);
97ade20b 759 index = NULL;
b6c3dcb2
JG
760 goto end;
761}
762
bb230c9b
JG
763static
764int init_index_entry(struct ctf_fs_ds_index_entry *entry,
7b33a0e0 765 struct ctf_fs_ds_file *ds_file,
5d452e1f 766 struct ctf_msg_iter_packet_properties *props,
7b33a0e0 767 off_t packet_size, off_t packet_offset)
bb230c9b 768{
414ee0f4 769 int ret = 0;
7b33a0e0 770 struct ctf_stream_class *sc;
d7bc0973
SM
771 bt_self_component *self_comp = ds_file->self_comp;
772 bt_logging_level log_level = ds_file->log_level;
bb230c9b 773
7b33a0e0
PP
774 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
775 props->stream_class_id);
776 BT_ASSERT(sc);
8b45963b 777 BT_ASSERT(packet_offset >= 0);
bb230c9b 778 entry->offset = packet_offset;
8b45963b 779 BT_ASSERT(packet_size >= 0);
bb230c9b
JG
780 entry->packet_size = packet_size;
781
0476f6f7 782 if (props->snapshots.beginning_clock != UINT64_C(-1)) {
c2f37699
FD
783 entry->timestamp_begin = props->snapshots.beginning_clock;
784
0476f6f7
PP
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) {
f67894f9 790 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
0476f6f7
PP
791 goto end;
792 }
793 } else {
c2f37699 794 entry->timestamp_begin = UINT64_C(-1);
0476f6f7 795 entry->timestamp_begin_ns = UINT64_C(-1);
bb230c9b
JG
796 }
797
0476f6f7 798 if (props->snapshots.end_clock != UINT64_C(-1)) {
c2f37699
FD
799 entry->timestamp_end = props->snapshots.end_clock;
800
801 /* Convert the packet's bound to nanoseconds since Epoch. */
0476f6f7
PP
802 ret = convert_cycles_to_ns(sc->default_clock_class,
803 props->snapshots.end_clock,
804 &entry->timestamp_end_ns);
805 if (ret) {
f67894f9 806 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
0476f6f7
PP
807 goto end;
808 }
809 } else {
c2f37699 810 entry->timestamp_end = UINT64_C(-1);
0476f6f7 811 entry->timestamp_end_ns = UINT64_C(-1);
bb230c9b 812 }
c43f6ee2 813
bb230c9b 814end:
bb230c9b
JG
815 return ret;
816}
817
818static
819struct ctf_fs_ds_index *build_index_from_stream_file(
13772304 820 struct ctf_fs_ds_file *ds_file,
3b89958b
SM
821 struct ctf_fs_ds_file_info *file_info,
822 struct ctf_msg_iter *msg_iter)
bb230c9b
JG
823{
824 int ret;
825 struct ctf_fs_ds_index *index = NULL;
5d452e1f 826 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
bbbd35bf 827 off_t current_packet_offset_bytes = 0;
d7bc0973
SM
828 bt_self_component *self_comp = ds_file->self_comp;
829 bt_logging_level log_level = ds_file->log_level;
bb230c9b 830
f67894f9 831 BT_COMP_LOGI("Indexing stream file %s", ds_file->file->path->str);
bb230c9b 832
f67894f9 833 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
bb230c9b
JG
834 if (!index) {
835 goto error;
836 }
837
5eb3f5e6 838 while (true) {
7b33a0e0 839 off_t current_packet_size_bytes;
779f4a23 840 struct ctf_fs_ds_index_entry *index_entry;
5d452e1f 841 struct ctf_msg_iter_packet_properties props;
bb230c9b 842
bbbd35bf 843 if (current_packet_offset_bytes < 0) {
f67894f9 844 BT_COMP_LOGE_STR("Cannot get the current packet's offset.");
bbbd35bf
PP
845 goto error;
846 } else if (current_packet_offset_bytes > ds_file->file->size) {
f67894f9 847 BT_COMP_LOGE_STR("Unexpected current packet's offset (larger than file).");
bbbd35bf
PP
848 goto error;
849 } else if (current_packet_offset_bytes == ds_file->file->size) {
850 /* No more data */
851 break;
852 }
853
3b89958b 854 iter_status = ctf_msg_iter_seek(msg_iter,
bbbd35bf 855 current_packet_offset_bytes);
5d452e1f 856 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
bb230c9b
JG
857 goto error;
858 }
a6918753 859
5d452e1f 860 iter_status = ctf_msg_iter_get_packet_properties(
3b89958b 861 msg_iter, &props);
5d452e1f 862 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
bb230c9b
JG
863 goto error;
864 }
865
bbbd35bf
PP
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 }
bb230c9b 872
bbbd35bf 873 if (current_packet_offset_bytes + current_packet_size_bytes >
bb230c9b 874 ds_file->file->size) {
f67894f9 875 BT_COMP_LOGW("Invalid packet size reported in file: stream=\"%s\", "
bb230c9b
JG
876 "packet-offset=%jd, packet-size-bytes=%jd, "
877 "file-size=%jd",
878 ds_file->file->path->str,
2655783b
JR
879 (intmax_t) current_packet_offset_bytes,
880 (intmax_t) current_packet_size_bytes,
881 (intmax_t) ds_file->file->size);
bb230c9b
JG
882 goto error;
883 }
884
408c8c19
SM
885 index_entry = ctf_fs_ds_index_entry_create(
886 ds_file->self_comp, ds_file->log_level);
779f4a23 887 if (!index_entry) {
408c8c19
SM
888 BT_COMP_LOGE_APPEND_CAUSE(ds_file->self_comp,
889 "Failed to create a ctf_fs_ds_index_entry.");
bb230c9b
JG
890 goto error;
891 }
892
13772304
FD
893 /* Set path to stream file. */
894 index_entry->path = file_info->path->str;
895
779f4a23 896 ret = init_index_entry(index_entry, ds_file, &props,
bbbd35bf 897 current_packet_size_bytes, current_packet_offset_bytes);
bb230c9b 898 if (ret) {
779f4a23 899 g_free(index_entry);
bb230c9b
JG
900 goto error;
901 }
779f4a23
FD
902
903 g_ptr_array_add(index->entries, index_entry);
904
9502dc00 905 current_packet_offset_bytes += current_packet_size_bytes;
f67894f9 906 BT_COMP_LOGD("Seeking to next packet: current-packet-offset=%jd, "
9502dc00 907 "next-packet-offset=%jd",
2655783b
JR
908 (intmax_t) (current_packet_offset_bytes - current_packet_size_bytes),
909 (intmax_t) current_packet_offset_bytes);
bb230c9b 910 }
a6918753 911
bb230c9b 912end:
bb230c9b 913 return index;
a6918753 914
bb230c9b
JG
915error:
916 ctf_fs_ds_index_destroy(index);
917 index = NULL;
918 goto end;
919}
920
e7a4393b 921BT_HIDDEN
94cf822e
PP
922struct ctf_fs_ds_file *ctf_fs_ds_file_create(
923 struct ctf_fs_trace *ctf_fs_trace,
c7d8bfa1 924 bt_self_message_iterator *self_msg_iter,
3d731ea9
PP
925 bt_stream *stream, const char *path,
926 bt_logging_level log_level)
e98a2d6e 927{
b6c3dcb2 928 int ret;
c8ebf034 929 const size_t offset_align = bt_mmap_get_offset_align_size(log_level);
94cf822e 930 struct ctf_fs_ds_file *ds_file = g_new0(struct ctf_fs_ds_file, 1);
e98a2d6e 931
94cf822e 932 if (!ds_file) {
e98a2d6e
PP
933 goto error;
934 }
935
3d731ea9 936 ds_file->log_level = log_level;
f67894f9 937 ds_file->self_comp = ctf_fs_trace->self_comp;
c7d8bfa1 938 ds_file->self_msg_iter = self_msg_iter;
f67894f9 939 ds_file->file = ctf_fs_file_create(log_level, ds_file->self_comp);
94cf822e 940 if (!ds_file->file) {
4f1f88a6
PP
941 goto error;
942 }
943
4b70020d 944 ds_file->stream = stream;
8c6884d9 945 bt_stream_get_ref(ds_file->stream);
7b33a0e0 946 ds_file->metadata = ctf_fs_trace->metadata;
94cf822e 947 g_string_assign(ds_file->file->path, path);
55314f2a 948 ret = ctf_fs_file_open(ds_file->file, "rb");
4f1f88a6
PP
949 if (ret) {
950 goto error;
951 }
952
c8ebf034 953 ds_file->mmap_max_len = offset_align * 2048;
94cf822e 954
e98a2d6e 955 goto end;
1a9f7075 956
e98a2d6e 957error:
78586d8a 958 /* Do not touch "borrowed" file. */
94cf822e
PP
959 ctf_fs_ds_file_destroy(ds_file);
960 ds_file = NULL;
1a9f7075 961
e98a2d6e 962end:
94cf822e 963 return ds_file;
e98a2d6e
PP
964}
965
97ade20b
JG
966BT_HIDDEN
967struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
13772304 968 struct ctf_fs_ds_file *ds_file,
3b89958b
SM
969 struct ctf_fs_ds_file_info *file_info,
970 struct ctf_msg_iter *msg_iter)
97ade20b 971{
bb230c9b 972 struct ctf_fs_ds_index *index;
d7bc0973
SM
973 bt_self_component *self_comp = ds_file->self_comp;
974 bt_logging_level log_level = ds_file->log_level;
bb230c9b 975
3b89958b 976 index = build_index_from_idx_file(ds_file, file_info, msg_iter);
bb230c9b
JG
977 if (index) {
978 goto end;
979 }
980
f67894f9 981 BT_COMP_LOGI("Failed to build index from .index file; "
bb230c9b 982 "falling back to stream indexing.");
3b89958b 983 index = build_index_from_stream_file(ds_file, file_info, msg_iter);
bb230c9b
JG
984end:
985 return index;
97ade20b
JG
986}
987
779f4a23 988BT_HIDDEN
f67894f9
PP
989struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
990 bt_self_component *self_comp)
779f4a23
FD
991{
992 struct ctf_fs_ds_index *index = g_new0(struct ctf_fs_ds_index, 1);
993
994 if (!index) {
f67894f9 995 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
3d731ea9 996 "Failed to allocate index");
779f4a23
FD
997 goto error;
998 }
999
1000 index->entries = g_ptr_array_new_with_free_func((GDestroyNotify) g_free);
1001 if (!index->entries) {
f67894f9 1002 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
3d731ea9 1003 "Failed to allocate index entries.");
779f4a23
FD
1004 goto error;
1005 }
1006
1007 goto end;
1008
1009error:
1010 ctf_fs_ds_index_destroy(index);
1011 index = NULL;
1012end:
1013 return index;
1014}
1015
5b29e799 1016BT_HIDDEN
94cf822e 1017void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *ds_file)
e98a2d6e 1018{
94cf822e 1019 if (!ds_file) {
5b29e799 1020 return;
043e2020
JG
1021 }
1022
8c6884d9 1023 bt_stream_put_ref(ds_file->stream);
94cf822e 1024 (void) ds_file_munmap(ds_file);
0982a26d 1025
94cf822e
PP
1026 if (ds_file->file) {
1027 ctf_fs_file_destroy(ds_file->file);
e98a2d6e
PP
1028 }
1029
94cf822e 1030 g_free(ds_file);
e98a2d6e 1031}
4f1f88a6 1032
97ade20b
JG
1033BT_HIDDEN
1034void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index)
1035{
1036 if (!index) {
1037 return;
1038 }
1039
1040 if (index->entries) {
779f4a23 1041 g_ptr_array_free(index->entries, TRUE);
97ade20b
JG
1042 }
1043 g_free(index);
1044}
This page took 0.117474 seconds and 4 git commands to generate.