tests: make test_trimmer use bt_cli
[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 *
102 * Set `ds_file->requested_offset_in_mapping` based on `request_offset_in_file`
103 *
104 * `requested_offset_in_file` must be a valid offset in the file.
105 */
5b29e799 106static
127e2341
SM
107enum ctf_msg_iter_medium_status ds_file_mmap(
108 struct ctf_fs_ds_file *ds_file, off_t requested_offset_in_file)
e98a2d6e 109{
887a9995 110 enum ctf_msg_iter_medium_status status;
2e42d046
SM
111 bt_self_component *self_comp = ds_file->self_comp;
112 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 113
127e2341
SM
114 /* Ensure the requested offset is in the file range. */
115 BT_ASSERT(requested_offset_in_file >= 0);
116 BT_ASSERT(requested_offset_in_file < ds_file->file->size);
e98a2d6e 117
127e2341
SM
118 /*
119 * If the mapping already contains the requested offset, just adjust
120 * requested_offset_in_mapping.
121 */
122 if (offset_ist_mapped(ds_file, requested_offset_in_file)) {
123 ds_file->request_offset_in_mapping =
124 requested_offset_in_file - ds_file->mmap_offset_in_file;
125 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
126 goto end;
e98a2d6e
PP
127 }
128
127e2341
SM
129 /* Unmap old region */
130 status = ds_file_munmap(ds_file);
131 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
e0f6a64a
JG
132 goto end;
133 }
127e2341
SM
134
135 /*
136 * Compute a mapping that has the required alignment properties and
137 * contains `requested_offset_in_file`.
138 */
139 ds_file->request_offset_in_mapping =
140 requested_offset_in_file % bt_mmap_get_offset_align_size(ds_file->log_level);
141 ds_file->mmap_offset_in_file =
142 requested_offset_in_file - ds_file->request_offset_in_mapping;
143 ds_file->mmap_len = MIN(ds_file->file->size - ds_file->mmap_offset_in_file,
144 ds_file->mmap_max_len);
145
146 BT_ASSERT(ds_file->mmap_len > 0);
147
04394229 148 ds_file->mmap_addr = bt_mmap((void *) 0, ds_file->mmap_len,
94cf822e 149 PROT_READ, MAP_PRIVATE, fileno(ds_file->file->fp),
e9bfbfe0 150 ds_file->mmap_offset_in_file, ds_file->log_level);
94cf822e 151 if (ds_file->mmap_addr == MAP_FAILED) {
4c65a157 152 BT_COMP_LOGE("Cannot memory-map address (size %zu) of file \"%s\" (%p) at offset %jd: %s",
94cf822e 153 ds_file->mmap_len, ds_file->file->path->str,
e9bfbfe0 154 ds_file->file->fp, (intmax_t) ds_file->mmap_offset_in_file,
78586d8a 155 strerror(errno));
887a9995
SM
156 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
157 goto end;
e98a2d6e
PP
158 }
159
887a9995 160 status = CTF_MSG_ITER_MEDIUM_STATUS_OK;
127e2341
SM
161
162end:
163 return status;
164}
165
166/*
167 * Change the mapping of the file to read the region that follows the current
168 * mapping.
169 *
170 * If the file hasn't been mapped yet, then everything (mmap_offset_in_file,
171 * mmap_len, request_offset_in_mapping) should have the value 0, which will
172 * result in the beginning of the file getting mapped.
173 *
174 * return _EOF if the current mapping is the end of the file.
175 */
176
177static
178enum ctf_msg_iter_medium_status ds_file_mmap_next(
179 struct ctf_fs_ds_file *ds_file)
180{
181 enum ctf_msg_iter_medium_status status;
182
183 /*
184 * If we're called, it's because more bytes are requested but we have
185 * given all the bytes of the current mapping.
186 */
187 BT_ASSERT(ds_file->request_offset_in_mapping == ds_file->mmap_len);
188
189 /*
190 * If the current mapping coincides with the end of the file, there is
191 * no next mapping.
192 */
193 if (ds_file->mmap_offset_in_file + ds_file->mmap_len == ds_file->file->size) {
194 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
195 goto end;
196 }
197
198 status = ds_file_mmap(ds_file,
199 ds_file->mmap_offset_in_file + ds_file->mmap_len);
200
e98a2d6e 201end:
887a9995 202 return status;
e98a2d6e
PP
203}
204
5b29e799 205static
18a1979b 206enum ctf_msg_iter_medium_status medop_request_bytes(
e98a2d6e
PP
207 size_t request_sz, uint8_t **buffer_addr,
208 size_t *buffer_sz, void *data)
209{
18a1979b
SM
210 enum ctf_msg_iter_medium_status status =
211 CTF_MSG_ITER_MEDIUM_STATUS_OK;
94cf822e 212 struct ctf_fs_ds_file *ds_file = data;
2e42d046
SM
213 bt_self_component *self_comp = ds_file->self_comp;
214 bt_logging_level log_level = ds_file->log_level;
e98a2d6e 215
c9694de4 216 BT_ASSERT(request_sz > 0);
e98a2d6e 217
de2abea4
FD
218 /*
219 * Check if we have at least one memory-mapped byte left. If we don't,
220 * mmap the next file.
221 */
94cf822e 222 if (remaining_mmap_bytes(ds_file) == 0) {
e98a2d6e 223 /* Are we at the end of the file? */
e9bfbfe0 224 if (ds_file->mmap_offset_in_file >= ds_file->file->size) {
4c65a157 225 BT_COMP_LOGD("Reached end of file \"%s\" (%p)",
94cf822e 226 ds_file->file->path->str, ds_file->file->fp);
18a1979b 227 status = CTF_MSG_ITER_MEDIUM_STATUS_EOF;
e98a2d6e
PP
228 goto end;
229 }
230
94cf822e 231 status = ds_file_mmap_next(ds_file);
e0f6a64a 232 switch (status) {
18a1979b 233 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
e0f6a64a 234 break;
18a1979b 235 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
e0f6a64a
JG
236 goto end;
237 default:
4c65a157 238 BT_COMP_LOGE("Cannot memory-map next region of file \"%s\" (%p)",
94cf822e
PP
239 ds_file->file->path->str,
240 ds_file->file->fp);
e98a2d6e
PP
241 goto error;
242 }
243 }
244
c9694de4 245 BT_ASSERT(remaining_mmap_bytes(ds_file) > 0);
94cf822e 246 *buffer_sz = MIN(remaining_mmap_bytes(ds_file), request_sz);
c9694de4 247
de2abea4 248 BT_ASSERT(ds_file->mmap_addr);
e9bfbfe0 249 *buffer_addr = ((uint8_t *) ds_file->mmap_addr) + ds_file->request_offset_in_mapping;
c9694de4 250
e9bfbfe0 251 ds_file->request_offset_in_mapping += *buffer_sz;
e98a2d6e
PP
252 goto end;
253
254error:
18a1979b 255 status = CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
e98a2d6e
PP
256
257end:
258 return status;
259}
260
5b29e799 261static
fc917f65 262bt_stream *medop_borrow_stream(bt_stream_class *stream_class, int64_t stream_id,
b92735af 263 void *data)
e98a2d6e 264{
94cf822e 265 struct ctf_fs_ds_file *ds_file = data;
b19ff26f
PP
266 bt_stream_class *ds_file_stream_class;
267 bt_stream *stream = NULL;
e5be10ef 268
40f4ba76 269 ds_file_stream_class = bt_stream_borrow_class(
e5be10ef 270 ds_file->stream);
94cf822e 271
94cf822e
PP
272 if (stream_class != ds_file_stream_class) {
273 /*
274 * Not supported: two packets described by two different
275 * stream classes within the same data stream file.
276 */
277 goto end;
e98a2d6e
PP
278 }
279
94cf822e
PP
280 stream = ds_file->stream;
281
282end:
283 return stream;
e98a2d6e
PP
284}
285
9e0c8dbb 286static
701a0903 287enum ctf_msg_iter_medium_status medop_seek(off_t offset, void *data)
9e0c8dbb 288{
9e0c8dbb 289 struct ctf_fs_ds_file *ds_file = data;
9e0c8dbb 290
30174f59 291 BT_ASSERT(offset >= 0);
127e2341 292 BT_ASSERT(offset < ds_file->file->size);
9e0c8dbb 293
127e2341 294 return ds_file_mmap(ds_file, offset);
9e0c8dbb
JG
295}
296
6de92955 297BT_HIDDEN
18a1979b 298struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops = {
e98a2d6e 299 .request_bytes = medop_request_bytes,
312c056a 300 .borrow_stream = medop_borrow_stream,
9e0c8dbb 301 .seek = medop_seek,
e98a2d6e 302};
6de92955 303
6834784d
SM
304static
305struct ctf_fs_ds_index_entry *ctf_fs_ds_index_entry_create(
306 bt_self_component *self_comp, bt_logging_level log_level)
307{
308 struct ctf_fs_ds_index_entry *entry;
309
310 entry = g_new0(struct ctf_fs_ds_index_entry, 1);
311 if (!entry) {
312 BT_COMP_LOGE_APPEND_CAUSE(self_comp, "Failed to allocate a ctf_fs_ds_index_entry.");
313 goto end;
314 }
315
316 entry->packet_seq_num = UINT64_MAX;
317
318end:
319 return entry;
320}
321
97ade20b 322static
0f2d58c9 323int convert_cycles_to_ns(struct ctf_clock_class *clock_class,
97ade20b 324 uint64_t cycles, int64_t *ns)
b6c3dcb2 325{
0f2d58c9
PP
326 return bt_util_clock_cycles_to_ns_from_origin(cycles,
327 clock_class->frequency, clock_class->offset_seconds,
328 clock_class->offset_cycles, ns);
97ade20b
JG
329}
330
331static
332struct ctf_fs_ds_index *build_index_from_idx_file(
bf012bde 333 struct ctf_fs_ds_file *ds_file,
6d54260a
SM
334 struct ctf_fs_ds_file_info *file_info,
335 struct ctf_msg_iter *msg_iter)
97ade20b
JG
336{
337 int ret;
b6c3dcb2
JG
338 gchar *directory = NULL;
339 gchar *basename = NULL;
340 GString *index_basename = NULL;
341 gchar *index_file_path = NULL;
342 GMappedFile *mapped_file = NULL;
343 gsize filesize;
97ade20b
JG
344 const char *mmap_begin = NULL, *file_pos = NULL;
345 const struct ctf_packet_index_file_hdr *header = NULL;
346 struct ctf_fs_ds_index *index = NULL;
de38c26a 347 struct ctf_fs_ds_index_entry *index_entry = NULL, *prev_index_entry = NULL;
b6c3dcb2
JG
348 uint64_t total_packets_size = 0;
349 size_t file_index_entry_size;
350 size_t file_entry_count;
351 size_t i;
44c440bc 352 struct ctf_stream_class *sc;
18a1979b 353 struct ctf_msg_iter_packet_properties props;
1984ac2b 354 uint32_t version_major, version_minor;
2e42d046
SM
355 bt_self_component *self_comp = ds_file->self_comp;
356 bt_logging_level log_level = ds_file->log_level;
97ade20b 357
4c65a157 358 BT_COMP_LOGI("Building index from .idx file of stream file %s",
97ade20b 359 ds_file->file->path->str);
6d54260a 360 ret = ctf_msg_iter_get_packet_properties(msg_iter, &props);
97ade20b 361 if (ret) {
4c65a157 362 BT_COMP_LOGI_STR("Cannot read first packet's header and context fields.");
44c440bc
PP
363 goto error;
364 }
365
44c440bc
PP
366 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
367 props.stream_class_id);
368 BT_ASSERT(sc);
369 if (!sc->default_clock_class) {
4c65a157 370 BT_COMP_LOGI_STR("Cannot find stream class's default clock class.");
97ade20b
JG
371 goto error;
372 }
b6c3dcb2
JG
373
374 /* Look for index file in relative path index/name.idx. */
94cf822e 375 basename = g_path_get_basename(ds_file->file->path->str);
b6c3dcb2 376 if (!basename) {
4c65a157 377 BT_COMP_LOGE("Cannot get the basename of datastream file %s",
55314f2a 378 ds_file->file->path->str);
97ade20b 379 goto error;
b6c3dcb2
JG
380 }
381
94cf822e 382 directory = g_path_get_dirname(ds_file->file->path->str);
b6c3dcb2 383 if (!directory) {
4c65a157 384 BT_COMP_LOGE("Cannot get dirname of datastream file %s",
55314f2a 385 ds_file->file->path->str);
97ade20b 386 goto error;
b6c3dcb2
JG
387 }
388
389 index_basename = g_string_new(basename);
390 if (!index_basename) {
4c65a157 391 BT_COMP_LOGE_STR("Cannot allocate index file basename string");
97ade20b 392 goto error;
b6c3dcb2
JG
393 }
394
395 g_string_append(index_basename, ".idx");
396 index_file_path = g_build_filename(directory, "index",
397 index_basename->str, NULL);
398 mapped_file = g_mapped_file_new(index_file_path, FALSE, NULL);
06367fa3 399 if (!mapped_file) {
4c65a157 400 BT_COMP_LOGD("Cannot create new mapped file %s",
55314f2a 401 index_file_path);
97ade20b 402 goto error;
06367fa3 403 }
d14940a7
JG
404
405 /*
406 * The g_mapped_file API limits us to 4GB files on 32-bit.
407 * Traces with such large indexes have never been seen in the wild,
408 * but this would need to be adjusted to support them.
409 */
b6c3dcb2
JG
410 filesize = g_mapped_file_get_length(mapped_file);
411 if (filesize < sizeof(*header)) {
4c65a157 412 BT_COMP_LOGW("Invalid LTTng trace index file: "
d14940a7
JG
413 "file size (%zu bytes) < header size (%zu bytes)",
414 filesize, sizeof(*header));
97ade20b 415 goto error;
b6c3dcb2
JG
416 }
417
418 mmap_begin = g_mapped_file_get_contents(mapped_file);
419 header = (struct ctf_packet_index_file_hdr *) mmap_begin;
420
421 file_pos = g_mapped_file_get_contents(mapped_file) + sizeof(*header);
422 if (be32toh(header->magic) != CTF_INDEX_MAGIC) {
4c65a157 423 BT_COMP_LOGW_STR("Invalid LTTng trace index: \"magic\" field validation failed");
97ade20b 424 goto error;
b6c3dcb2 425 }
b6c3dcb2 426
1984ac2b
SM
427 version_major = be32toh(header->index_major);
428 version_minor = be32toh(header->index_minor);
429 if (version_major != 1) {
430 BT_COMP_LOGW(
431 "Unknown LTTng trace index version: "
432 "major=%" PRIu32 ", minor=%" PRIu32,
433 version_major, version_minor);
434 goto error;
435 }
436
b6c3dcb2
JG
437 file_index_entry_size = be32toh(header->packet_index_len);
438 file_entry_count = (filesize - sizeof(*header)) / file_index_entry_size;
97ade20b 439 if ((filesize - sizeof(*header)) % file_index_entry_size) {
4c65a157 440 BT_COMP_LOGW("Invalid LTTng trace index: the index's size after the header "
d14940a7
JG
441 "(%zu bytes) is not a multiple of the index entry size "
442 "(%zu bytes)", (filesize - sizeof(*header)),
443 sizeof(*header));
97ade20b 444 goto error;
b6c3dcb2
JG
445 }
446
4c65a157 447 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
97ade20b
JG
448 if (!index) {
449 goto error;
b6c3dcb2 450 }
97ade20b 451
b6c3dcb2
JG
452 for (i = 0; i < file_entry_count; i++) {
453 struct ctf_packet_index *file_index =
454 (struct ctf_packet_index *) file_pos;
455 uint64_t packet_size = be64toh(file_index->packet_size);
456
457 if (packet_size % CHAR_BIT) {
4c65a157 458 BT_COMP_LOGW("Invalid packet size encountered in LTTng trace index file");
97ade20b 459 goto error;
b6c3dcb2
JG
460 }
461
6834784d
SM
462 index_entry = ctf_fs_ds_index_entry_create(
463 ds_file->self_comp, ds_file->log_level);
7ed5243a 464 if (!index_entry) {
6834784d
SM
465 BT_COMP_LOGE_APPEND_CAUSE(ds_file->self_comp,
466 "Failed to create a ctf_fs_ds_index_entry.");
7ed5243a
FD
467 goto error;
468 }
469
bf012bde
FD
470 /* Set path to stream file. */
471 index_entry->path = file_info->path->str;
472
b6c3dcb2
JG
473 /* Convert size in bits to bytes. */
474 packet_size /= CHAR_BIT;
97ade20b 475 index_entry->packet_size = packet_size;
b6c3dcb2 476
97ade20b 477 index_entry->offset = be64toh(file_index->offset);
de38c26a 478 if (i != 0 && index_entry->offset < prev_index_entry->offset) {
4c65a157 479 BT_COMP_LOGW("Invalid, non-monotonic, packet offset encountered in LTTng trace index file: "
d14940a7 480 "previous offset=%" PRIu64 ", current offset=%" PRIu64,
9dd33658 481 prev_index_entry->offset, index_entry->offset);
97ade20b 482 goto error;
b6c3dcb2
JG
483 }
484
97ade20b
JG
485 index_entry->timestamp_begin = be64toh(file_index->timestamp_begin);
486 index_entry->timestamp_end = be64toh(file_index->timestamp_end);
487 if (index_entry->timestamp_end < index_entry->timestamp_begin) {
4c65a157 488 BT_COMP_LOGW("Invalid packet time bounds encountered in LTTng trace index file (begin > end): "
d14940a7
JG
489 "timestamp_begin=%" PRIu64 "timestamp_end=%" PRIu64,
490 index_entry->timestamp_begin,
491 index_entry->timestamp_end);
97ade20b
JG
492 goto error;
493 }
494
495 /* Convert the packet's bound to nanoseconds since Epoch. */
44c440bc 496 ret = convert_cycles_to_ns(sc->default_clock_class,
97ade20b
JG
497 index_entry->timestamp_begin,
498 &index_entry->timestamp_begin_ns);
499 if (ret) {
4c65a157 500 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during index parsing");
97ade20b
JG
501 goto error;
502 }
44c440bc 503 ret = convert_cycles_to_ns(sc->default_clock_class,
97ade20b
JG
504 index_entry->timestamp_end,
505 &index_entry->timestamp_end_ns);
506 if (ret) {
4c65a157 507 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch during LTTng trace index parsing");
97ade20b 508 goto error;
b6c3dcb2
JG
509 }
510
6834784d
SM
511 if (version_minor >= 1) {
512 index_entry->packet_seq_num = be64toh(file_index->packet_seq_num);
513 }
514
b6c3dcb2
JG
515 total_packets_size += packet_size;
516 file_pos += file_index_entry_size;
7ed5243a 517
de38c26a 518 prev_index_entry = index_entry;
f35a48bc
SM
519
520 /* Give ownership of `index_entry` to `index->entries`. */
521 g_ptr_array_add(index->entries, index_entry);
522 index_entry = NULL;
b6c3dcb2
JG
523 }
524
525 /* Validate that the index addresses the complete stream. */
94cf822e 526 if (ds_file->file->size != total_packets_size) {
4c65a157 527 BT_COMP_LOGW("Invalid LTTng trace index file; indexed size != stream file size: "
9e0c8dbb 528 "file-size=%" PRIu64 ", total-packets-size=%" PRIu64,
d14940a7 529 ds_file->file->size, total_packets_size);
97ade20b 530 goto error;
b6c3dcb2
JG
531 }
532end:
533 g_free(directory);
534 g_free(basename);
535 g_free(index_file_path);
06367fa3
JG
536 if (index_basename) {
537 g_string_free(index_basename, TRUE);
538 }
539 if (mapped_file) {
540 g_mapped_file_unref(mapped_file);
541 }
97ade20b
JG
542 return index;
543error:
544 ctf_fs_ds_index_destroy(index);
7ed5243a 545 g_free(index_entry);
97ade20b 546 index = NULL;
b6c3dcb2
JG
547 goto end;
548}
549
9e0c8dbb
JG
550static
551int init_index_entry(struct ctf_fs_ds_index_entry *entry,
44c440bc 552 struct ctf_fs_ds_file *ds_file,
18a1979b 553 struct ctf_msg_iter_packet_properties *props,
44c440bc 554 off_t packet_size, off_t packet_offset)
9e0c8dbb 555{
ca79a87c 556 int ret = 0;
44c440bc 557 struct ctf_stream_class *sc;
2e42d046
SM
558 bt_self_component *self_comp = ds_file->self_comp;
559 bt_logging_level log_level = ds_file->log_level;
9e0c8dbb 560
44c440bc
PP
561 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
562 props->stream_class_id);
563 BT_ASSERT(sc);
f6ccaed9 564 BT_ASSERT(packet_offset >= 0);
9e0c8dbb 565 entry->offset = packet_offset;
f6ccaed9 566 BT_ASSERT(packet_size >= 0);
9e0c8dbb
JG
567 entry->packet_size = packet_size;
568
83ebb7f1 569 if (props->snapshots.beginning_clock != UINT64_C(-1)) {
41bd46eb
FD
570 entry->timestamp_begin = props->snapshots.beginning_clock;
571
83ebb7f1
PP
572 /* Convert the packet's bound to nanoseconds since Epoch. */
573 ret = convert_cycles_to_ns(sc->default_clock_class,
574 props->snapshots.beginning_clock,
575 &entry->timestamp_begin_ns);
576 if (ret) {
4c65a157 577 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
83ebb7f1
PP
578 goto end;
579 }
580 } else {
41bd46eb 581 entry->timestamp_begin = UINT64_C(-1);
83ebb7f1 582 entry->timestamp_begin_ns = UINT64_C(-1);
9e0c8dbb
JG
583 }
584
83ebb7f1 585 if (props->snapshots.end_clock != UINT64_C(-1)) {
41bd46eb
FD
586 entry->timestamp_end = props->snapshots.end_clock;
587
588 /* Convert the packet's bound to nanoseconds since Epoch. */
83ebb7f1
PP
589 ret = convert_cycles_to_ns(sc->default_clock_class,
590 props->snapshots.end_clock,
591 &entry->timestamp_end_ns);
592 if (ret) {
4c65a157 593 BT_COMP_LOGI_STR("Failed to convert raw timestamp to nanoseconds since Epoch.");
83ebb7f1
PP
594 goto end;
595 }
596 } else {
41bd46eb 597 entry->timestamp_end = UINT64_C(-1);
83ebb7f1 598 entry->timestamp_end_ns = UINT64_C(-1);
9e0c8dbb 599 }
0b29603d 600
9e0c8dbb 601end:
9e0c8dbb
JG
602 return ret;
603}
604
605static
606struct ctf_fs_ds_index *build_index_from_stream_file(
bf012bde 607 struct ctf_fs_ds_file *ds_file,
6d54260a
SM
608 struct ctf_fs_ds_file_info *file_info,
609 struct ctf_msg_iter *msg_iter)
9e0c8dbb
JG
610{
611 int ret;
612 struct ctf_fs_ds_index *index = NULL;
18a1979b 613 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
fc917f65 614 off_t current_packet_offset_bytes = 0;
2e42d046
SM
615 bt_self_component *self_comp = ds_file->self_comp;
616 bt_logging_level log_level = ds_file->log_level;
9e0c8dbb 617
4c65a157 618 BT_COMP_LOGI("Indexing stream file %s", ds_file->file->path->str);
9e0c8dbb 619
4c65a157 620 index = ctf_fs_ds_index_create(ds_file->log_level, ds_file->self_comp);
9e0c8dbb
JG
621 if (!index) {
622 goto error;
623 }
624
2b601d0c 625 while (true) {
44c440bc 626 off_t current_packet_size_bytes;
7ed5243a 627 struct ctf_fs_ds_index_entry *index_entry;
18a1979b 628 struct ctf_msg_iter_packet_properties props;
9e0c8dbb 629
fc917f65 630 if (current_packet_offset_bytes < 0) {
4c65a157 631 BT_COMP_LOGE_STR("Cannot get the current packet's offset.");
fc917f65
PP
632 goto error;
633 } else if (current_packet_offset_bytes > ds_file->file->size) {
4c65a157 634 BT_COMP_LOGE_STR("Unexpected current packet's offset (larger than file).");
fc917f65
PP
635 goto error;
636 } else if (current_packet_offset_bytes == ds_file->file->size) {
637 /* No more data */
638 break;
639 }
640
6d54260a 641 iter_status = ctf_msg_iter_seek(msg_iter,
fc917f65 642 current_packet_offset_bytes);
18a1979b 643 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
9e0c8dbb
JG
644 goto error;
645 }
312c056a 646
18a1979b 647 iter_status = ctf_msg_iter_get_packet_properties(
6d54260a 648 msg_iter, &props);
18a1979b 649 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
9e0c8dbb
JG
650 goto error;
651 }
652
fc917f65
PP
653 if (props.exp_packet_total_size >= 0) {
654 current_packet_size_bytes =
655 (uint64_t) props.exp_packet_total_size / 8;
656 } else {
657 current_packet_size_bytes = ds_file->file->size;
658 }
9e0c8dbb 659
fc917f65 660 if (current_packet_offset_bytes + current_packet_size_bytes >
9e0c8dbb 661 ds_file->file->size) {
4c65a157 662 BT_COMP_LOGW("Invalid packet size reported in file: stream=\"%s\", "
9e0c8dbb
JG
663 "packet-offset=%jd, packet-size-bytes=%jd, "
664 "file-size=%jd",
665 ds_file->file->path->str,
df0fc0bf
JR
666 (intmax_t) current_packet_offset_bytes,
667 (intmax_t) current_packet_size_bytes,
668 (intmax_t) ds_file->file->size);
9e0c8dbb
JG
669 goto error;
670 }
671
6834784d
SM
672 index_entry = ctf_fs_ds_index_entry_create(
673 ds_file->self_comp, ds_file->log_level);
7ed5243a 674 if (!index_entry) {
6834784d
SM
675 BT_COMP_LOGE_APPEND_CAUSE(ds_file->self_comp,
676 "Failed to create a ctf_fs_ds_index_entry.");
9e0c8dbb
JG
677 goto error;
678 }
679
bf012bde
FD
680 /* Set path to stream file. */
681 index_entry->path = file_info->path->str;
682
7ed5243a 683 ret = init_index_entry(index_entry, ds_file, &props,
fc917f65 684 current_packet_size_bytes, current_packet_offset_bytes);
9e0c8dbb 685 if (ret) {
7ed5243a 686 g_free(index_entry);
9e0c8dbb
JG
687 goto error;
688 }
7ed5243a
FD
689
690 g_ptr_array_add(index->entries, index_entry);
691
ca633588 692 current_packet_offset_bytes += current_packet_size_bytes;
4c65a157 693 BT_COMP_LOGD("Seeking to next packet: current-packet-offset=%jd, "
ca633588 694 "next-packet-offset=%jd",
df0fc0bf
JR
695 (intmax_t) (current_packet_offset_bytes - current_packet_size_bytes),
696 (intmax_t) current_packet_offset_bytes);
9e0c8dbb 697 }
312c056a 698
9e0c8dbb 699end:
9e0c8dbb 700 return index;
312c056a 701
9e0c8dbb
JG
702error:
703 ctf_fs_ds_index_destroy(index);
704 index = NULL;
705 goto end;
706}
707
e7a4393b 708BT_HIDDEN
94cf822e
PP
709struct ctf_fs_ds_file *ctf_fs_ds_file_create(
710 struct ctf_fs_trace *ctf_fs_trace,
f5f7e8df 711 bt_self_message_iterator *self_msg_iter,
98903a3e
PP
712 bt_stream *stream, const char *path,
713 bt_logging_level log_level)
e98a2d6e 714{
b6c3dcb2 715 int ret;
3b16a19b 716 const size_t offset_align = bt_mmap_get_offset_align_size(log_level);
94cf822e 717 struct ctf_fs_ds_file *ds_file = g_new0(struct ctf_fs_ds_file, 1);
e98a2d6e 718
94cf822e 719 if (!ds_file) {
e98a2d6e
PP
720 goto error;
721 }
722
98903a3e 723 ds_file->log_level = log_level;
4c65a157 724 ds_file->self_comp = ctf_fs_trace->self_comp;
f5f7e8df 725 ds_file->self_msg_iter = self_msg_iter;
4c65a157 726 ds_file->file = ctf_fs_file_create(log_level, ds_file->self_comp);
94cf822e 727 if (!ds_file->file) {
4f1f88a6
PP
728 goto error;
729 }
730
398454ed 731 ds_file->stream = stream;
c5b9b441 732 bt_stream_get_ref(ds_file->stream);
44c440bc 733 ds_file->metadata = ctf_fs_trace->metadata;
94cf822e 734 g_string_assign(ds_file->file->path, path);
55314f2a 735 ret = ctf_fs_file_open(ds_file->file, "rb");
4f1f88a6
PP
736 if (ret) {
737 goto error;
738 }
739
3b16a19b 740 ds_file->mmap_max_len = offset_align * 2048;
94cf822e 741
e98a2d6e 742 goto end;
1a9f7075 743
e98a2d6e 744error:
78586d8a 745 /* Do not touch "borrowed" file. */
94cf822e
PP
746 ctf_fs_ds_file_destroy(ds_file);
747 ds_file = NULL;
1a9f7075 748
e98a2d6e 749end:
94cf822e 750 return ds_file;
e98a2d6e
PP
751}
752
97ade20b
JG
753BT_HIDDEN
754struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
bf012bde 755 struct ctf_fs_ds_file *ds_file,
6d54260a
SM
756 struct ctf_fs_ds_file_info *file_info,
757 struct ctf_msg_iter *msg_iter)
97ade20b 758{
9e0c8dbb 759 struct ctf_fs_ds_index *index;
2e42d046
SM
760 bt_self_component *self_comp = ds_file->self_comp;
761 bt_logging_level log_level = ds_file->log_level;
9e0c8dbb 762
6d54260a 763 index = build_index_from_idx_file(ds_file, file_info, msg_iter);
9e0c8dbb
JG
764 if (index) {
765 goto end;
766 }
767
4c65a157 768 BT_COMP_LOGI("Failed to build index from .index file; "
9e0c8dbb 769 "falling back to stream indexing.");
6d54260a 770 index = build_index_from_stream_file(ds_file, file_info, msg_iter);
9e0c8dbb
JG
771end:
772 return index;
97ade20b
JG
773}
774
7ed5243a 775BT_HIDDEN
4c65a157
PP
776struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
777 bt_self_component *self_comp)
7ed5243a
FD
778{
779 struct ctf_fs_ds_index *index = g_new0(struct ctf_fs_ds_index, 1);
780
781 if (!index) {
4c65a157 782 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
98903a3e 783 "Failed to allocate index");
7ed5243a
FD
784 goto error;
785 }
786
787 index->entries = g_ptr_array_new_with_free_func((GDestroyNotify) g_free);
788 if (!index->entries) {
4c65a157 789 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
98903a3e 790 "Failed to allocate index entries.");
7ed5243a
FD
791 goto error;
792 }
793
794 goto end;
795
796error:
797 ctf_fs_ds_index_destroy(index);
798 index = NULL;
799end:
800 return index;
801}
802
5b29e799 803BT_HIDDEN
94cf822e 804void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *ds_file)
e98a2d6e 805{
94cf822e 806 if (!ds_file) {
5b29e799 807 return;
043e2020
JG
808 }
809
c5b9b441 810 bt_stream_put_ref(ds_file->stream);
94cf822e 811 (void) ds_file_munmap(ds_file);
0982a26d 812
94cf822e
PP
813 if (ds_file->file) {
814 ctf_fs_file_destroy(ds_file->file);
e98a2d6e
PP
815 }
816
94cf822e 817 g_free(ds_file);
e98a2d6e 818}
4f1f88a6 819
97ade20b
JG
820BT_HIDDEN
821void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index)
822{
823 if (!index) {
824 return;
825 }
826
827 if (index->entries) {
7ed5243a 828 g_ptr_array_free(index->entries, TRUE);
97ade20b
JG
829 }
830 g_free(index);
831}
This page took 0.113265 seconds and 4 git commands to generate.