Fix: src.ctf.fs: initialize the other_entry variable
[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
2e42d046
SM
25#define BT_COMP_LOG_SELF_COMP (self_comp)
26#define BT_LOG_OUTPUT_LEVEL (log_level)
98903a3e 27#define BT_LOG_TAG "PLUGIN/SRC.CTF.FS/DS"
d9c39b0a 28#include "logging/comp-logging.h"
98903a3e 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>
578e048b
MJ
36#include "compat/mman.h"
37#include "compat/endian.h"
3fadfbc0 38#include <babeltrace2/babeltrace.h>
578e048b 39#include "common/common.h"
78586d8a
JG
40#include "file.h"
41#include "metadata.h"
d6e69534 42#include "../common/msg-iter/msg-iter.h"
578e048b 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{
e9bfbfe0
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
127e2341
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
887a9995
SM
66enum ctf_msg_iter_medium_status ds_file_munmap(
67 struct ctf_fs_ds_file *ds_file)
e98a2d6e 68{
887a9995 69 enum ctf_msg_iter_medium_status status;
2e42d046
SM
70 bt_self_component *self_comp = ds_file->self_comp;
71 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 72
9f5571db
SM
73 BT_ASSERT(ds_file);
74
75 if (!ds_file->mmap_addr) {
887a9995 76 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
94cf822e
PP
77 goto end;
78 }
79
04394229 80 if (bt_munmap(ds_file->mmap_addr, ds_file->mmap_len)) {
4c65a157 81 BT_COMP_LOGE_ERRNO("Cannot memory-unmap file",
cd232764 82 ": address=%p, size=%zu, file_path=\"%s\", file=%p",
94cf822e 83 ds_file->mmap_addr, ds_file->mmap_len,
9e0c8dbb 84 ds_file->file ? ds_file->file->path->str : "NULL",
cd232764 85 ds_file->file ? ds_file->file->fp : NULL);
887a9995 86 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
fc9a526c 87 goto end;
e98a2d6e 88 }
94cf822e
PP
89
90 ds_file->mmap_addr = NULL;
91
887a9995 92 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
fc9a526c 93end:
887a9995 94 return status;
e98a2d6e
PP
95}
96
127e2341
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 *
f6e68e70
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.
127e2341
SM
105 *
106 * `requested_offset_in_file` must be a valid offset in the file.
107 */
5b29e799 108static
127e2341
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{
887a9995 112 enum ctf_msg_iter_medium_status status;
2e42d046
SM
113 bt_self_component *self_comp = ds_file->self_comp;
114 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 115
127e2341
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
127e2341
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
127e2341
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 }
127e2341
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
04394229 150 ds_file->mmap_addr = bt_mmap((void *) 0, ds_file->mmap_len,
94cf822e 151 PROT_READ, MAP_PRIVATE, fileno(ds_file->file->fp),
e9bfbfe0 152 ds_file->mmap_offset_in_file, ds_file->log_level);
94cf822e 153 if (ds_file->mmap_addr == MAP_FAILED) {
4c65a157 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,
e9bfbfe0 156 ds_file->file->fp, (intmax_t) ds_file->mmap_offset_in_file,
78586d8a 157 strerror(errno));
887a9995
SM
158 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
159 goto end;
e98a2d6e
PP
160 }
161
887a9995 162 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
127e2341
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:
887a9995 204 return status;
e98a2d6e
PP
205}
206
5b29e799 207static
18a1979b 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{
18a1979b
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;
2e42d046
SM
215 bt_self_component *self_comp = ds_file->self_comp;
216 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 217
c9694de4 218 BT_ASSERT(request_sz > 0);
e98a2d6e 219
de2abea4
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? */
e9bfbfe0 226 if (ds_file->mmap_offset_in_file >= ds_file->file->size) {
4c65a157 227 BT_COMP_LOGD("Reached end of file \"%s\" (%p)",
94cf822e 228 ds_file->file->path->str, ds_file->file->fp);
18a1979b 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) {
18a1979b 235 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
e0f6a64a 236 break;
18a1979b 237 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
e0f6a64a
JG
238 goto end;
239 default:
4c65a157 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
c9694de4 247 BT_ASSERT(remaining_mmap_bytes(ds_file) > 0);
94cf822e 248 *buffer_sz = MIN(remaining_mmap_bytes(ds_file), request_sz);
c9694de4 249
de2abea4 250 BT_ASSERT(ds_file->mmap_addr);
e9bfbfe0 251 *buffer_addr = ((uint8_t *) ds_file->mmap_addr) + ds_file->request_offset_in_mapping;
c9694de4 252
e9bfbfe0 253 ds_file->request_offset_in_mapping += *buffer_sz;
e98a2d6e
PP
254 goto end;
255
256error:
18a1979b 257 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
e98a2d6e
PP
258
259end:
260 return status;
261}
262
5b29e799 263static
fc917f65 264bt_stream *medop_borrow_stream(bt_stream_class *stream_class, int64_t stream_id,
b92735af 265 void *data)
e98a2d6e 266{
94cf822e 267 struct ctf_fs_ds_file *ds_file = data;
b19ff26f
PP
268 bt_stream_class *ds_file_stream_class;
269 bt_stream *stream = NULL;
e5be10ef 270
40f4ba76 271 ds_file_stream_class = bt_stream_borrow_class(
e5be10ef 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
9e0c8dbb 288static
701a0903 289enum ctf_msg_iter_medium_status medop_seek(off_t offset, void *data)
9e0c8dbb 290{
9e0c8dbb 291 struct ctf_fs_ds_file *ds_file = data;
9e0c8dbb 292
30174f59 293 BT_ASSERT(offset >= 0);
127e2341 294 BT_ASSERT(offset < ds_file->file->size);
9e0c8dbb 295
127e2341 296 return ds_file_mmap(ds_file, offset);
9e0c8dbb
JG
297}
298
6de92955 299BT_HIDDEN
18a1979b 300struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops = {
e98a2d6e 301 .request_bytes = medop_request_bytes,
312c056a 302 .borrow_stream = medop_borrow_stream,
9e0c8dbb 303 .seek = medop_seek,
e98a2d6e 304};
6de92955 305
f6e68e70
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
6834784d
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
0f2d58c9 536int convert_cycles_to_ns(struct ctf_clock_class *clock_class,
97ade20b 537 uint64_t cycles, int64_t *ns)
b6c3dcb2 538{
0f2d58c9
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(
bf012bde 546 struct ctf_fs_ds_file *ds_file,
6d54260a
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;
de38c26a 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;
44c440bc 565 struct ctf_stream_class *sc;
18a1979b 566 struct ctf_msg_iter_packet_properties props;
1984ac2b 567 uint32_t version_major, version_minor;
2e42d046
SM
568 bt_self_component *self_comp = ds_file->self_comp;
569 bt_logging_level log_level = ds_file->log_level;
97ade20b 570
4c65a157 571 BT_COMP_LOGI("Building index from .idx file of stream file %s",
97ade20b 572 ds_file->file->path->str);
6d54260a 573 ret = ctf_msg_iter_get_packet_properties(msg_iter, &props);
97ade20b 574 if (ret) {
4c65a157 575 BT_COMP_LOGI_STR("Cannot read first packet's header and context fields.");
44c440bc
PP
576 goto error;
577 }
578
44c440bc
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) {
4c65a157 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) {
4c65a157 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) {
4c65a157 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) {
4c65a157 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) {
4c65a157 613 BT_COMP_LOGD("Cannot create new mapped file %s",
55314f2a 614 index_file_path);
97ade20b 615 goto error;
06367fa3 616 }
d14940a7
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)) {
4c65a157 625 BT_COMP_LOGW("Invalid LTTng trace index file: "
d14940a7
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) {
4c65a157 636 BT_COMP_LOGW_STR("Invalid LTTng trace index: \"magic\" field validation failed");
97ade20b 637 goto error;
b6c3dcb2 638 }
b6c3dcb2 639
1984ac2b
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) {
4c65a157 653 BT_COMP_LOGW("Invalid LTTng trace index: the index's size after the header "
d14940a7
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
4c65a157 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) {
4c65a157 671 BT_COMP_LOGW("Invalid packet size encountered in LTTng trace index file");
97ade20b 672 goto error;
b6c3dcb2
JG
673 }
674
6834784d
SM
675 index_entry = ctf_fs_ds_index_entry_create(
676 ds_file->self_comp, ds_file->log_level);
7ed5243a 677 if (!index_entry) {
6834784d
SM
678 BT_COMP_LOGE_APPEND_CAUSE(ds_file->self_comp,
679 "Failed to create a ctf_fs_ds_index_entry.");
7ed5243a
FD
680 goto error;
681 }
682
bf012bde
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);
de38c26a 691 if (i != 0 && index_entry->offset < prev_index_entry->offset) {
4c65a157 692 BT_COMP_LOGW("Invalid, non-monotonic, packet offset encountered in LTTng trace index file: "
d14940a7 693 "previous offset=%" PRIu64 ", current offset=%" PRIu64,
9dd33658 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) {
4c65a157 701 BT_COMP_LOGW("Invalid packet time bounds encountered in LTTng trace index file (begin > end): "
d14940a7
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. */
44c440bc 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) {
4c65a157 713 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during index parsing");
97ade20b
JG
714 goto error;
715 }
44c440bc 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) {
4c65a157 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
6834784d
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;
7ed5243a 730
de38c26a 731 prev_index_entry = index_entry;
f35a48bc
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) {
4c65a157 740 BT_COMP_LOGW("Invalid LTTng trace index file; indexed size != stream file size: "
9e0c8dbb 741 "file-size=%" PRIu64 ", total-packets-size=%" PRIu64,
d14940a7 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);
7ed5243a 758 g_free(index_entry);
97ade20b 759 index = NULL;
b6c3dcb2
JG
760 goto end;
761}
762
9e0c8dbb
JG
763static
764int init_index_entry(struct ctf_fs_ds_index_entry *entry,
44c440bc 765 struct ctf_fs_ds_file *ds_file,
18a1979b 766 struct ctf_msg_iter_packet_properties *props,
44c440bc 767 off_t packet_size, off_t packet_offset)
9e0c8dbb 768{
ca79a87c 769 int ret = 0;
44c440bc 770 struct ctf_stream_class *sc;
2e42d046
SM
771 bt_self_component *self_comp = ds_file->self_comp;
772 bt_logging_level log_level = ds_file->log_level;
9e0c8dbb 773
44c440bc
PP
774 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
775 props->stream_class_id);
776 BT_ASSERT(sc);
f6ccaed9 777 BT_ASSERT(packet_offset >= 0);
9e0c8dbb 778 entry->offset = packet_offset;
f6ccaed9 779 BT_ASSERT(packet_size >= 0);
9e0c8dbb
JG
780 entry->packet_size = packet_size;
781
83ebb7f1 782 if (props->snapshots.beginning_clock != UINT64_C(-1)) {
41bd46eb
FD
783 entry->timestamp_begin = props->snapshots.beginning_clock;
784
83ebb7f1
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) {
4c65a157 790 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
83ebb7f1
PP
791 goto end;
792 }
793 } else {
41bd46eb 794 entry->timestamp_begin = UINT64_C(-1);
83ebb7f1 795 entry->timestamp_begin_ns = UINT64_C(-1);
9e0c8dbb
JG
796 }
797
83ebb7f1 798 if (props->snapshots.end_clock != UINT64_C(-1)) {
41bd46eb
FD
799 entry->timestamp_end = props->snapshots.end_clock;
800
801 /* Convert the packet's bound to nanoseconds since Epoch. */
83ebb7f1
PP
802 ret = convert_cycles_to_ns(sc->default_clock_class,
803 props->snapshots.end_clock,
804 &entry->timestamp_end_ns);
805 if (ret) {
4c65a157 806 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
83ebb7f1
PP
807 goto end;
808 }
809 } else {
41bd46eb 810 entry->timestamp_end = UINT64_C(-1);
83ebb7f1 811 entry->timestamp_end_ns = UINT64_C(-1);
9e0c8dbb 812 }
0b29603d 813
9e0c8dbb 814end:
9e0c8dbb
JG
815 return ret;
816}
817
818static
819struct ctf_fs_ds_index *build_index_from_stream_file(
bf012bde 820 struct ctf_fs_ds_file *ds_file,
6d54260a
SM
821 struct ctf_fs_ds_file_info *file_info,
822 struct ctf_msg_iter *msg_iter)
9e0c8dbb
JG
823{
824 int ret;
825 struct ctf_fs_ds_index *index = NULL;
18a1979b 826 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
fc917f65 827 off_t current_packet_offset_bytes = 0;
2e42d046
SM
828 bt_self_component *self_comp = ds_file->self_comp;
829 bt_logging_level log_level = ds_file->log_level;
9e0c8dbb 830
4c65a157 831 BT_COMP_LOGI("Indexing stream file %s", ds_file->file->path->str);
9e0c8dbb 832
4c65a157 833 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
9e0c8dbb
JG
834 if (!index) {
835 goto error;
836 }
837
2b601d0c 838 while (true) {
44c440bc 839 off_t current_packet_size_bytes;
7ed5243a 840 struct ctf_fs_ds_index_entry *index_entry;
18a1979b 841 struct ctf_msg_iter_packet_properties props;
9e0c8dbb 842
fc917f65 843 if (current_packet_offset_bytes < 0) {
4c65a157 844 BT_COMP_LOGE_STR("Cannot get the current packet's offset.");
fc917f65
PP
845 goto error;
846 } else if (current_packet_offset_bytes > ds_file->file->size) {
4c65a157 847 BT_COMP_LOGE_STR("Unexpected current packet's offset (larger than file).");
fc917f65
PP
848 goto error;
849 } else if (current_packet_offset_bytes == ds_file->file->size) {
850 /* No more data */
851 break;
852 }
853
6d54260a 854 iter_status = ctf_msg_iter_seek(msg_iter,
fc917f65 855 current_packet_offset_bytes);
18a1979b 856 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
9e0c8dbb
JG
857 goto error;
858 }
312c056a 859
18a1979b 860 iter_status = ctf_msg_iter_get_packet_properties(
6d54260a 861 msg_iter, &props);
18a1979b 862 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
9e0c8dbb
JG
863 goto error;
864 }
865
fc917f65
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 }
9e0c8dbb 872
fc917f65 873 if (current_packet_offset_bytes + current_packet_size_bytes >
9e0c8dbb 874 ds_file->file->size) {
4c65a157 875 BT_COMP_LOGW("Invalid packet size reported in file: stream=\"%s\", "
9e0c8dbb
JG
876 "packet-offset=%jd, packet-size-bytes=%jd, "
877 "file-size=%jd",
878 ds_file->file->path->str,
df0fc0bf
JR
879 (intmax_t) current_packet_offset_bytes,
880 (intmax_t) current_packet_size_bytes,
881 (intmax_t) ds_file->file->size);
9e0c8dbb
JG
882 goto error;
883 }
884
6834784d
SM
885 index_entry = ctf_fs_ds_index_entry_create(
886 ds_file->self_comp, ds_file->log_level);
7ed5243a 887 if (!index_entry) {
6834784d
SM
888 BT_COMP_LOGE_APPEND_CAUSE(ds_file->self_comp,
889 "Failed to create a ctf_fs_ds_index_entry.");
9e0c8dbb
JG
890 goto error;
891 }
892
bf012bde
FD
893 /* Set path to stream file. */
894 index_entry->path = file_info->path->str;
895
7ed5243a 896 ret = init_index_entry(index_entry, ds_file, &props,
fc917f65 897 current_packet_size_bytes, current_packet_offset_bytes);
9e0c8dbb 898 if (ret) {
7ed5243a 899 g_free(index_entry);
9e0c8dbb
JG
900 goto error;
901 }
7ed5243a
FD
902
903 g_ptr_array_add(index->entries, index_entry);
904
ca633588 905 current_packet_offset_bytes += current_packet_size_bytes;
4c65a157 906 BT_COMP_LOGD("Seeking to next packet: current-packet-offset=%jd, "
ca633588 907 "next-packet-offset=%jd",
df0fc0bf
JR
908 (intmax_t) (current_packet_offset_bytes - current_packet_size_bytes),
909 (intmax_t) current_packet_offset_bytes);
9e0c8dbb 910 }
312c056a 911
9e0c8dbb 912end:
9e0c8dbb 913 return index;
312c056a 914
9e0c8dbb
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,
f5f7e8df 924 bt_self_message_iterator *self_msg_iter,
98903a3e
PP
925 bt_stream *stream, const char *path,
926 bt_logging_level log_level)
e98a2d6e 927{
b6c3dcb2 928 int ret;
3b16a19b 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
98903a3e 936 ds_file->log_level = log_level;
4c65a157 937 ds_file->self_comp = ctf_fs_trace->self_comp;
f5f7e8df 938 ds_file->self_msg_iter = self_msg_iter;
4c65a157 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
398454ed 944 ds_file->stream = stream;
c5b9b441 945 bt_stream_get_ref(ds_file->stream);
44c440bc 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
3b16a19b 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(
bf012bde 968 struct ctf_fs_ds_file *ds_file,
6d54260a
SM
969 struct ctf_fs_ds_file_info *file_info,
970 struct ctf_msg_iter *msg_iter)
97ade20b 971{
9e0c8dbb 972 struct ctf_fs_ds_index *index;
2e42d046
SM
973 bt_self_component *self_comp = ds_file->self_comp;
974 bt_logging_level log_level = ds_file->log_level;
9e0c8dbb 975
6d54260a 976 index = build_index_from_idx_file(ds_file, file_info, msg_iter);
9e0c8dbb
JG
977 if (index) {
978 goto end;
979 }
980
4c65a157 981 BT_COMP_LOGI("Failed to build index from .index file; "
9e0c8dbb 982 "falling back to stream indexing.");
6d54260a 983 index = build_index_from_stream_file(ds_file, file_info, msg_iter);
9e0c8dbb
JG
984end:
985 return index;
97ade20b
JG
986}
987
7ed5243a 988BT_HIDDEN
4c65a157
PP
989struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
990 bt_self_component *self_comp)
7ed5243a
FD
991{
992 struct ctf_fs_ds_index *index = g_new0(struct ctf_fs_ds_index, 1);
993
994 if (!index) {
4c65a157 995 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
98903a3e 996 "Failed to allocate index");
7ed5243a
FD
997 goto error;
998 }
999
1000 index->entries = g_ptr_array_new_with_free_func((GDestroyNotify) g_free);
1001 if (!index->entries) {
4c65a157 1002 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
98903a3e 1003 "Failed to allocate index entries.");
7ed5243a
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
c5b9b441 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) {
7ed5243a 1041 g_ptr_array_free(index->entries, TRUE);
97ade20b
JG
1042 }
1043 g_free(index);
1044}
This page took 0.125112 seconds and 4 git commands to generate.