src.ctf.fs: remove ctf_fs_ds_index_create
[babeltrace.git] / src / plugins / ctf / fs-src / fs.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2015-2017 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Babeltrace CTF file system Reader Component
8 */
9
10 #include <sstream>
11
12 #include <glib.h>
13
14 #include <babeltrace2/babeltrace.h>
15
16 #include "common/assert.h"
17 #include "common/common.h"
18 #include "common/uuid.h"
19 #include "cpp-common/bt2c/glib-up.hpp"
20 #include "cpp-common/bt2s/make-unique.hpp"
21
22 #include "plugins/common/param-validation/param-validation.h"
23
24 #include "../common/src/metadata/tsdl/ctf-meta-configure-ir-trace.hpp"
25 #include "../common/src/msg-iter/msg-iter.hpp"
26 #include "data-stream-file.hpp"
27 #include "file.hpp"
28 #include "fs.hpp"
29 #include "metadata.hpp"
30 #include "query.hpp"
31
32 struct tracer_info
33 {
34 const char *name;
35 int64_t major;
36 int64_t minor;
37 int64_t patch;
38 };
39
40 static bt_message_iterator_class_next_method_status
41 ctf_fs_iterator_next_one(struct ctf_fs_msg_iter_data *msg_iter_data, const bt_message **out_msg)
42 {
43 bt_message_iterator_class_next_method_status status;
44 const auto msg_iter_status =
45 ctf_msg_iter_get_next_message(msg_iter_data->msg_iter.get(), out_msg);
46
47 switch (msg_iter_status) {
48 case CTF_MSG_ITER_STATUS_OK:
49 /* Cool, message has been written to *out_msg. */
50 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
51 break;
52
53 case CTF_MSG_ITER_STATUS_EOF:
54 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END;
55 break;
56
57 case CTF_MSG_ITER_STATUS_AGAIN:
58 /*
59 * Should not make it this far as this is
60 * medium-specific; there is nothing for the user to do
61 * and it should have been handled upstream.
62 */
63 bt_common_abort();
64
65 case CTF_MSG_ITER_STATUS_ERROR:
66 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
67 "Failed to get next message from CTF message iterator.");
68 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
69 break;
70
71 case CTF_MSG_ITER_STATUS_MEMORY_ERROR:
72 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
73 "Failed to get next message from CTF message iterator.");
74 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
75 break;
76
77 default:
78 bt_common_abort();
79 }
80
81 return status;
82 }
83
84 bt_message_iterator_class_next_method_status
85 ctf_fs_iterator_next(bt_self_message_iterator *iterator, bt_message_array_const msgs,
86 uint64_t capacity, uint64_t *count)
87 {
88 try {
89 bt_message_iterator_class_next_method_status status;
90 struct ctf_fs_msg_iter_data *msg_iter_data =
91 (struct ctf_fs_msg_iter_data *) bt_self_message_iterator_get_data(iterator);
92 uint64_t i = 0;
93
94 if (G_UNLIKELY(msg_iter_data->next_saved_error)) {
95 /*
96 * Last time we were called, we hit an error but had some
97 * messages to deliver, so we stashed the error here. Return
98 * it now.
99 */
100 BT_CURRENT_THREAD_MOVE_ERROR_AND_RESET(msg_iter_data->next_saved_error);
101 status = msg_iter_data->next_saved_status;
102 goto end;
103 }
104
105 do {
106 status = ctf_fs_iterator_next_one(msg_iter_data, &msgs[i]);
107 if (status == BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK) {
108 i++;
109 }
110 } while (i < capacity && status == BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK);
111
112 if (i > 0) {
113 /*
114 * Even if ctf_fs_iterator_next_one() returned something
115 * else than BT_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK, we
116 * accumulated message objects in the output
117 * message array, so we need to return
118 * BT_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK so that they are
119 * transferred to downstream. This other status occurs
120 * again the next time muxer_msg_iter_do_next() is
121 * called, possibly without any accumulated
122 * message, in which case we'll return it.
123 */
124 if (status < 0) {
125 /*
126 * Save this error for the next _next call. Assume that
127 * this component always appends error causes when
128 * returning an error status code, which will cause the
129 * current thread error to be non-NULL.
130 */
131 msg_iter_data->next_saved_error = bt_current_thread_take_error();
132 BT_ASSERT(msg_iter_data->next_saved_error);
133 msg_iter_data->next_saved_status = status;
134 }
135
136 *count = i;
137 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
138 }
139
140 end:
141 return status;
142 return status;
143 } catch (const std::bad_alloc&) {
144 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
145 } catch (const bt2::Error&) {
146 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
147 }
148 }
149
150 bt_message_iterator_class_seek_beginning_method_status
151 ctf_fs_iterator_seek_beginning(bt_self_message_iterator *it)
152 {
153 try {
154 struct ctf_fs_msg_iter_data *msg_iter_data =
155 (struct ctf_fs_msg_iter_data *) bt_self_message_iterator_get_data(it);
156
157 BT_ASSERT(msg_iter_data);
158
159 ctf_msg_iter_reset(msg_iter_data->msg_iter.get());
160 ctf_fs_ds_group_medops_data_reset(msg_iter_data->msg_iter_medops_data.get());
161
162 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_OK;
163 } catch (const std::bad_alloc&) {
164 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_MEMORY_ERROR;
165 } catch (const bt2::Error&) {
166 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_ERROR;
167 }
168 }
169
170 void ctf_fs_iterator_finalize(bt_self_message_iterator *it)
171 {
172 ctf_fs_msg_iter_data::UP {
173 (static_cast<ctf_fs_msg_iter_data *>(bt_self_message_iterator_get_data(it)))};
174 }
175
176 static bt_message_iterator_class_initialize_method_status
177 ctf_msg_iter_medium_status_to_msg_iter_initialize_status(enum ctf_msg_iter_medium_status status)
178 {
179 switch (status) {
180 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
181 case CTF_MSG_ITER_MEDIUM_STATUS_AGAIN:
182 case CTF_MSG_ITER_MEDIUM_STATUS_ERROR:
183 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
184 case CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR:
185 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
186 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
187 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK;
188 }
189
190 bt_common_abort();
191 }
192
193 bt_message_iterator_class_initialize_method_status
194 ctf_fs_iterator_init(bt_self_message_iterator *self_msg_iter,
195 bt_self_message_iterator_configuration *config,
196 bt_self_component_port_output *self_port)
197 {
198 try {
199 struct ctf_fs_port_data *port_data;
200 bt_message_iterator_class_initialize_method_status status;
201 enum ctf_msg_iter_medium_status medium_status;
202
203 port_data = (struct ctf_fs_port_data *) bt_self_component_port_get_data(
204 bt_self_component_port_output_as_self_component_port(self_port));
205 BT_ASSERT(port_data);
206
207 auto msg_iter_data = bt2s::make_unique<ctf_fs_msg_iter_data>(self_msg_iter);
208 msg_iter_data->ds_file_group = port_data->ds_file_group;
209
210 medium_status = ctf_fs_ds_group_medops_data_create(msg_iter_data->ds_file_group,
211 self_msg_iter, msg_iter_data->logger,
212 msg_iter_data->msg_iter_medops_data);
213 BT_ASSERT(medium_status == CTF_MSG_ITER_MEDIUM_STATUS_OK ||
214 medium_status == CTF_MSG_ITER_MEDIUM_STATUS_ERROR ||
215 medium_status == CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR);
216 if (medium_status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
217 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
218 "Failed to create ctf_fs_ds_group_medops");
219 status = ctf_msg_iter_medium_status_to_msg_iter_initialize_status(medium_status);
220 goto error;
221 }
222
223 msg_iter_data->msg_iter = ctf_msg_iter_create(
224 msg_iter_data->ds_file_group->ctf_fs_trace->metadata->tc,
225 bt_common_get_page_size(static_cast<int>(msg_iter_data->logger.level())) * 8,
226 ctf_fs_ds_group_medops, msg_iter_data->msg_iter_medops_data.get(), self_msg_iter,
227 msg_iter_data->logger);
228 if (!msg_iter_data->msg_iter) {
229 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
230 "Cannot create a CTF message iterator.");
231 status = BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
232 goto error;
233 }
234
235 /*
236 * This iterator can seek forward if its stream class has a default
237 * clock class.
238 */
239 if (msg_iter_data->ds_file_group->sc->default_clock_class) {
240 bt_self_message_iterator_configuration_set_can_seek_forward(config, true);
241 }
242
243 bt_self_message_iterator_set_data(self_msg_iter, msg_iter_data.release());
244
245 status = BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK;
246 goto end;
247
248 error:
249 bt_self_message_iterator_set_data(self_msg_iter, NULL);
250
251 end:
252 return status;
253 } catch (const std::bad_alloc&) {
254 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
255 } catch (const bt2::Error&) {
256 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
257 }
258 }
259
260 void ctf_fs_finalize(bt_self_component_source *component)
261 {
262 ctf_fs_component::UP {static_cast<ctf_fs_component *>(
263 bt_self_component_get_data(bt_self_component_source_as_self_component(component)))};
264 }
265
266 std::string ctf_fs_make_port_name(ctf_fs_ds_file_group *ds_file_group)
267 {
268 std::stringstream name;
269
270 /*
271 * The unique port name is generated by concatenating unique identifiers
272 * for:
273 *
274 * - the trace
275 * - the stream class
276 * - the stream
277 */
278
279 /* For the trace, use the uuid if present, else the path. */
280 if (ds_file_group->ctf_fs_trace->metadata->tc->is_uuid_set) {
281 char uuid_str[BT_UUID_STR_LEN + 1];
282
283 bt_uuid_to_str(ds_file_group->ctf_fs_trace->metadata->tc->uuid, uuid_str);
284 name << uuid_str;
285 } else {
286 name << ds_file_group->ctf_fs_trace->path;
287 }
288
289 /*
290 * For the stream class, use the id if present. We can omit this field
291 * otherwise, as there will only be a single stream class.
292 */
293 if (ds_file_group->sc->id != UINT64_C(-1)) {
294 name << " | " << ds_file_group->sc->id;
295 }
296
297 /* For the stream, use the id if present, else, use the path. */
298 if (ds_file_group->stream_id != UINT64_C(-1)) {
299 name << " | " << ds_file_group->stream_id;
300 } else {
301 BT_ASSERT(ds_file_group->ds_file_infos.size() == 1);
302 const auto& ds_file_info = *ds_file_group->ds_file_infos[0];
303 name << " | " << ds_file_info.path;
304 }
305
306 return name.str();
307 }
308
309 static int create_one_port_for_trace(struct ctf_fs_component *ctf_fs,
310 struct ctf_fs_ds_file_group *ds_file_group,
311 bt_self_component_source *self_comp_src)
312 {
313 int ret = 0;
314 ctf_fs_port_data::UP port_data;
315
316 const auto port_name = ctf_fs_make_port_name(ds_file_group);
317 BT_CPPLOGI_SPEC(ctf_fs->logger, "Creating one port named `{}`", port_name);
318
319 /* Create output port for this file */
320 port_data = bt2s::make_unique<ctf_fs_port_data>();
321 port_data->ctf_fs = ctf_fs;
322 port_data->ds_file_group = ds_file_group;
323 ret = bt_self_component_source_add_output_port(self_comp_src, port_name.c_str(),
324 port_data.get(), NULL);
325 if (ret) {
326 goto error;
327 }
328
329 ctf_fs->port_data.emplace_back(std::move(port_data));
330 goto end;
331
332 error:
333 ret = -1;
334
335 end:
336 return ret;
337 }
338
339 static int create_ports_for_trace(struct ctf_fs_component *ctf_fs,
340 struct ctf_fs_trace *ctf_fs_trace,
341 bt_self_component_source *self_comp_src)
342 {
343 int ret = 0;
344
345 /* Create one output port for each stream file group */
346 for (const auto& ds_file_group : ctf_fs_trace->ds_file_groups) {
347 ret = create_one_port_for_trace(ctf_fs, ds_file_group.get(), self_comp_src);
348 if (ret) {
349 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Cannot create output port.");
350 goto end;
351 }
352 }
353
354 end:
355 return ret;
356 }
357
358 /*
359 * Insert ds_file_info in ds_file_group's list of ds_file_infos at the right
360 * place to keep it sorted.
361 */
362
363 static void ds_file_group_insert_ds_file_info_sorted(struct ctf_fs_ds_file_group *ds_file_group,
364 ctf_fs_ds_file_info::UP ds_file_info)
365 {
366 /* Find the spot where to insert this ds_file_info. */
367 auto it = ds_file_group->ds_file_infos.begin();
368
369 for (; it != ds_file_group->ds_file_infos.end(); ++it) {
370 const ctf_fs_ds_file_info& other_ds_file_info = **it;
371
372 if (ds_file_info->begin_ns < other_ds_file_info.begin_ns) {
373 break;
374 }
375 }
376
377 ds_file_group->ds_file_infos.insert(it, std::move(ds_file_info));
378 }
379
380 static bool ds_index_entries_equal(const struct ctf_fs_ds_index_entry *left,
381 const struct ctf_fs_ds_index_entry *right)
382 {
383 if (left->packetSize != right->packetSize) {
384 return false;
385 }
386
387 if (left->timestamp_begin != right->timestamp_begin) {
388 return false;
389 }
390
391 if (left->timestamp_end != right->timestamp_end) {
392 return false;
393 }
394
395 if (left->packet_seq_num != right->packet_seq_num) {
396 return false;
397 }
398
399 return true;
400 }
401
402 /*
403 * Insert `entry` into `index`, without duplication.
404 *
405 * The entry is inserted only if there isn't an identical entry already.
406 *
407 * In any case, the ownership of `entry` is transferred to this function. So if
408 * the entry is not inserted, it is freed.
409 */
410
411 static void ds_index_insert_ds_index_entry_sorted(struct ctf_fs_ds_index *index,
412 ctf_fs_ds_index_entry::UP entry)
413 {
414 /* Find the spot where to insert this index entry. */
415 auto otherEntry = index->entries.begin();
416 for (; otherEntry != index->entries.end(); ++otherEntry) {
417 if (entry->timestamp_begin_ns <= (*otherEntry)->timestamp_begin_ns) {
418 break;
419 }
420 }
421
422 /*
423 * Insert the entry only if a duplicate doesn't already exist.
424 *
425 * There can be duplicate packets if reading multiple overlapping
426 * snapshots of the same trace. We then want the index to contain
427 * a reference to only one copy of that packet.
428 */
429 if (otherEntry == index->entries.end() ||
430 !ds_index_entries_equal(entry.get(), otherEntry->get())) {
431 index->entries.insert(otherEntry, std::move(entry));
432 }
433 }
434
435 static void merge_ctf_fs_ds_indexes(struct ctf_fs_ds_index *dest, ctf_fs_ds_index::UP src)
436 {
437 for (auto& entry : src->entries) {
438 ds_index_insert_ds_index_entry_sorted(dest, std::move(entry));
439 }
440 }
441
442 static int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace, const char *path)
443 {
444 int64_t stream_instance_id = -1;
445 int64_t begin_ns = -1;
446 struct ctf_fs_ds_file_group *ds_file_group = NULL;
447 ctf_fs_ds_file_group::UP new_ds_file_group;
448 int ret;
449 ctf_fs_ds_file_info::UP ds_file_info;
450 ctf_fs_ds_index::UP index;
451 ctf_msg_iter_up msg_iter;
452 struct ctf_stream_class *sc = NULL;
453 struct ctf_msg_iter_packet_properties props;
454
455 /*
456 * Create a temporary ds_file to read some properties about the data
457 * stream file.
458 */
459 const auto ds_file =
460 ctf_fs_ds_file_create(ctf_fs_trace, bt2::Stream::Shared {}, path, ctf_fs_trace->logger);
461 if (!ds_file) {
462 goto error;
463 }
464
465 /* Create a temporary iterator to read the ds_file. */
466 msg_iter = ctf_msg_iter_create(
467 ctf_fs_trace->metadata->tc,
468 bt_common_get_page_size(static_cast<int>(ctf_fs_trace->logger.level())) * 8,
469 ctf_fs_ds_file_medops, ds_file.get(), nullptr, ctf_fs_trace->logger);
470 if (!msg_iter) {
471 BT_CPPLOGE_STR_SPEC(ctf_fs_trace->logger, "Cannot create a CTF message iterator.");
472 goto error;
473 }
474
475 ctf_msg_iter_set_dry_run(msg_iter.get(), true);
476
477 ret = ctf_msg_iter_get_packet_properties(msg_iter.get(), &props);
478 if (ret) {
479 BT_CPPLOGE_APPEND_CAUSE_SPEC(
480 ctf_fs_trace->logger,
481 "Cannot get stream file's first packet's header and context fields (`{}`).", path);
482 goto error;
483 }
484
485 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, props.stream_class_id);
486 BT_ASSERT(sc);
487 stream_instance_id = props.data_stream_id;
488
489 if (props.snapshots.beginning_clock != UINT64_C(-1)) {
490 BT_ASSERT(sc->default_clock_class);
491 ret = bt_util_clock_cycles_to_ns_from_origin(
492 props.snapshots.beginning_clock, sc->default_clock_class->frequency,
493 sc->default_clock_class->offset_seconds, sc->default_clock_class->offset_cycles,
494 &begin_ns);
495 if (ret) {
496 BT_CPPLOGE_APPEND_CAUSE_SPEC(
497 ctf_fs_trace->logger,
498 "Cannot convert clock cycles to nanoseconds from origin (`{}`).", path);
499 goto error;
500 }
501 }
502
503 ds_file_info = ctf_fs_ds_file_info_create(path, begin_ns);
504 if (!ds_file_info) {
505 goto error;
506 }
507
508 index = ctf_fs_ds_file_build_index(ds_file.get(), ds_file_info.get(), msg_iter.get());
509 if (!index) {
510 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger, "Failed to index CTF stream file \'{}\'",
511 ds_file->file->path);
512 goto error;
513 }
514
515 if (begin_ns == -1) {
516 /*
517 * No beginning timestamp to sort the stream files
518 * within a stream file group, so consider that this
519 * file must be the only one within its group.
520 */
521 stream_instance_id = -1;
522 }
523
524 if (stream_instance_id == -1) {
525 /*
526 * No stream instance ID or no beginning timestamp:
527 * create a unique stream file group for this stream
528 * file because, even if there's a stream instance ID,
529 * there's no timestamp to order the file within its
530 * group.
531 */
532 new_ds_file_group =
533 ctf_fs_ds_file_group_create(ctf_fs_trace, sc, UINT64_C(-1), std::move(index));
534
535 if (!new_ds_file_group) {
536 goto error;
537 }
538
539 ds_file_group_insert_ds_file_info_sorted(new_ds_file_group.get(), std::move(ds_file_info));
540 ctf_fs_trace->ds_file_groups.emplace_back(std::move(new_ds_file_group));
541 goto end;
542 }
543
544 BT_ASSERT(stream_instance_id != -1);
545 BT_ASSERT(begin_ns != -1);
546
547 /* Find an existing stream file group with this ID */
548 for (const auto& candidate : ctf_fs_trace->ds_file_groups) {
549 if (candidate->sc == sc && candidate->stream_id == stream_instance_id) {
550 ds_file_group = candidate.get();
551 break;
552 }
553 }
554
555 if (!ds_file_group) {
556 new_ds_file_group =
557 ctf_fs_ds_file_group_create(ctf_fs_trace, sc, stream_instance_id, std::move(index));
558 if (!new_ds_file_group) {
559 goto error;
560 }
561
562 ds_file_group = new_ds_file_group.get();
563 ctf_fs_trace->ds_file_groups.emplace_back(std::move(new_ds_file_group));
564 } else {
565 merge_ctf_fs_ds_indexes(ds_file_group->index.get(), std::move(index));
566 }
567
568 ds_file_group_insert_ds_file_info_sorted(ds_file_group, std::move(ds_file_info));
569
570 goto end;
571
572 error:
573 ret = -1;
574
575 end:
576 return ret;
577 }
578
579 static int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
580 {
581 int ret = 0;
582 const char *basename;
583 GError *error = NULL;
584
585 /* Check each file in the path directory, except specific ones */
586 const bt2c::GDirUP dir {g_dir_open(ctf_fs_trace->path.c_str(), 0, &error)};
587 if (!dir) {
588 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
589 "Cannot open directory `{}`: {} (code {})", ctf_fs_trace->path,
590 error->message, error->code);
591 goto error;
592 }
593
594 while ((basename = g_dir_read_name(dir.get()))) {
595 if (strcmp(basename, CTF_FS_METADATA_FILENAME) == 0) {
596 /* Ignore the metadata stream. */
597 BT_CPPLOGI_SPEC(ctf_fs_trace->logger,
598 "Ignoring metadata file `{}" G_DIR_SEPARATOR_S "{}`",
599 ctf_fs_trace->path, basename);
600 continue;
601 }
602
603 if (basename[0] == '.') {
604 BT_CPPLOGI_SPEC(ctf_fs_trace->logger,
605 "Ignoring hidden file `{}" G_DIR_SEPARATOR_S "{}`", ctf_fs_trace->path,
606 basename);
607 continue;
608 }
609
610 /* Create the file. */
611 ctf_fs_file file {ctf_fs_trace->logger};
612
613 /* Create full path string. */
614 file.path = fmt::format("{}" G_DIR_SEPARATOR_S "{}", ctf_fs_trace->path, basename);
615
616 if (!g_file_test(file.path.c_str(), G_FILE_TEST_IS_REGULAR)) {
617 BT_CPPLOGI_SPEC(ctf_fs_trace->logger, "Ignoring non-regular file `{}`", file.path);
618 continue;
619 }
620
621 ret = ctf_fs_file_open(&file, "rb");
622 if (ret) {
623 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger, "Cannot open stream file `{}`",
624 file.path);
625 goto error;
626 }
627
628 if (file.size == 0) {
629 /* Skip empty stream. */
630 BT_CPPLOGI_SPEC(ctf_fs_trace->logger, "Ignoring empty file `{}`", file.path);
631 continue;
632 }
633
634 ret = add_ds_file_to_ds_file_group(ctf_fs_trace, file.path.c_str());
635 if (ret) {
636 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
637 "Cannot add stream file `{}` to stream file group",
638 file.path);
639 goto error;
640 }
641 }
642
643 goto end;
644
645 error:
646 ret = -1;
647
648 end:
649 if (error) {
650 g_error_free(error);
651 }
652
653 return ret;
654 }
655
656 static int set_trace_name(bt_trace *trace, const char *name_suffix)
657 {
658 int ret = 0;
659 const bt_value *val;
660 std::string name;
661
662 /*
663 * Check if we have a trace environment string value named `hostname`.
664 * If so, use it as the trace name's prefix.
665 */
666 val = bt_trace_borrow_environment_entry_value_by_name_const(trace, "hostname");
667 if (val && bt_value_is_string(val)) {
668 name += bt_value_string_get(val);
669
670 if (name_suffix) {
671 name += G_DIR_SEPARATOR;
672 }
673 }
674
675 if (name_suffix) {
676 name += name_suffix;
677 }
678
679 ret = bt_trace_set_name(trace, name.c_str());
680 if (ret) {
681 goto end;
682 }
683
684 goto end;
685
686 end:
687 return ret;
688 }
689
690 static ctf_fs_trace::UP ctf_fs_trace_create(const char *path, const char *name,
691 const ctf::src::ClkClsCfg& clkClsCfg,
692 bt_self_component *selfComp,
693 const bt2c::Logger& parentLogger)
694 {
695 int ret;
696 ctf_fs_trace::UP ctf_fs_trace {new struct ctf_fs_trace(parentLogger)};
697
698 ctf_fs_trace->path = path;
699 ctf_fs_trace->metadata = bt2s::make_unique<ctf_fs_metadata>();
700
701 ret = ctf_fs_metadata_set_trace_class(selfComp, ctf_fs_trace.get(), clkClsCfg);
702 if (ret) {
703 goto error;
704 }
705
706 if (ctf_fs_trace->metadata->trace_class) {
707 bt_trace *trace = bt_trace_create(ctf_fs_trace->metadata->trace_class->libObjPtr());
708 if (!trace) {
709 goto error;
710 }
711
712 ctf_fs_trace->trace = bt2::Trace::Shared::createWithoutRef(trace);
713 }
714
715 if (ctf_fs_trace->trace) {
716 ret = ctf_trace_class_configure_ir_trace(ctf_fs_trace->metadata->tc,
717 ctf_fs_trace->trace->libObjPtr());
718 if (ret) {
719 goto error;
720 }
721
722 ret = set_trace_name(ctf_fs_trace->trace->libObjPtr(), name);
723 if (ret) {
724 goto error;
725 }
726 }
727
728 ret = create_ds_file_groups(ctf_fs_trace.get());
729 if (ret) {
730 goto error;
731 }
732
733 goto end;
734
735 error:
736 ctf_fs_trace.reset();
737
738 end:
739 return ctf_fs_trace;
740 }
741
742 static int path_is_ctf_trace(const char *path)
743 {
744 return g_file_test(fmt::format("{}" G_DIR_SEPARATOR_S CTF_FS_METADATA_FILENAME, path).c_str(),
745 G_FILE_TEST_IS_REGULAR);
746 }
747
748 /* Helper for ctf_fs_component_create_ctf_fs_trace, to handle a single path. */
749
750 static int ctf_fs_component_create_ctf_fs_trace_one_path(struct ctf_fs_component *ctf_fs,
751 const char *path_param,
752 const char *trace_name,
753 std::vector<ctf_fs_trace::UP>& traces,
754 bt_self_component *selfComp)
755 {
756 ctf_fs_trace::UP ctf_fs_trace;
757 int ret;
758
759 bt2c::GStringUP norm_path {bt_common_normalize_path(path_param, NULL)};
760 if (!norm_path) {
761 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Failed to normalize path: `{}`.", path_param);
762 goto error;
763 }
764
765 ret = path_is_ctf_trace(norm_path->str);
766 if (ret < 0) {
767 BT_CPPLOGE_APPEND_CAUSE_SPEC(
768 ctf_fs->logger, "Failed to check if path is a CTF trace: path={}", norm_path->str);
769 goto error;
770 } else if (ret == 0) {
771 BT_CPPLOGE_APPEND_CAUSE_SPEC(
772 ctf_fs->logger, "Path is not a CTF trace (does not contain a metadata file): `{}`.",
773 norm_path->str);
774 goto error;
775 }
776
777 // FIXME: Remove or ifdef for __MINGW32__
778 if (strcmp(norm_path->str, "/") == 0) {
779 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Opening a trace in `/` is not supported.");
780 ret = -1;
781 goto end;
782 }
783
784 ctf_fs_trace = ctf_fs_trace_create(norm_path->str, trace_name, ctf_fs->clkClsCfg, selfComp,
785 ctf_fs->logger);
786 if (!ctf_fs_trace) {
787 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Cannot create trace for `{}`.",
788 norm_path->str);
789 goto error;
790 }
791
792 traces.emplace_back(std::move(ctf_fs_trace));
793
794 ret = 0;
795 goto end;
796
797 error:
798 ret = -1;
799
800 end:
801 return ret;
802 }
803
804 /*
805 * Count the number of stream and event classes defined by this trace's metadata.
806 *
807 * This is used to determine which metadata is the "latest", out of multiple
808 * traces sharing the same UUID. It is assumed that amongst all these metadatas,
809 * a bigger metadata is a superset of a smaller metadata. Therefore, it is
810 * enough to just count the classes.
811 */
812
813 static unsigned int metadata_count_stream_and_event_classes(struct ctf_fs_trace *trace)
814 {
815 unsigned int num = trace->metadata->tc->stream_classes->len;
816 guint i;
817
818 for (i = 0; i < trace->metadata->tc->stream_classes->len; i++) {
819 struct ctf_stream_class *sc =
820 (struct ctf_stream_class *) trace->metadata->tc->stream_classes->pdata[i];
821 num += sc->event_classes->len;
822 }
823
824 return num;
825 }
826
827 /*
828 * Merge the src ds_file_group into dest. This consists of merging their
829 * ds_file_infos, making sure to keep the result sorted.
830 */
831
832 static void merge_ctf_fs_ds_file_groups(struct ctf_fs_ds_file_group *dest,
833 ctf_fs_ds_file_group::UP src)
834 {
835 for (auto& ds_file_info : src->ds_file_infos) {
836 ds_file_group_insert_ds_file_info_sorted(dest, std::move(ds_file_info));
837 }
838
839 /* Merge both indexes. */
840 merge_ctf_fs_ds_indexes(dest->index.get(), std::move(src->index));
841 }
842
843 /* Merge src_trace's data stream file groups into dest_trace's. */
844
845 static int merge_matching_ctf_fs_ds_file_groups(struct ctf_fs_trace *dest_trace,
846 ctf_fs_trace::UP src_trace)
847 {
848 std::vector<ctf_fs_ds_file_group::UP>& dest = dest_trace->ds_file_groups;
849 std::vector<ctf_fs_ds_file_group::UP>& src = src_trace->ds_file_groups;
850 int ret = 0;
851
852 /*
853 * Save the initial length of dest: we only want to check against the
854 * original elements in the inner loop.
855 */
856 size_t dest_len = dest.size();
857
858 for (auto& src_group : src) {
859 struct ctf_fs_ds_file_group *dest_group = NULL;
860
861 /* A stream instance without ID can't match a stream in the other trace. */
862 if (src_group->stream_id != -1) {
863 /* Let's search for a matching ds_file_group in the destination. */
864 for (size_t d_i = 0; d_i < dest_len; ++d_i) {
865 ctf_fs_ds_file_group *candidate_dest = dest[d_i].get();
866
867 /* Can't match a stream instance without ID. */
868 if (candidate_dest->stream_id == -1) {
869 continue;
870 }
871
872 /*
873 * If the two groups have the same stream instance id
874 * and belong to the same stream class (stream instance
875 * ids are per-stream class), they represent the same
876 * stream instance.
877 */
878 if (candidate_dest->stream_id != src_group->stream_id ||
879 candidate_dest->sc->id != src_group->sc->id) {
880 continue;
881 }
882
883 dest_group = candidate_dest;
884 break;
885 }
886 }
887
888 /*
889 * Didn't find a friend in dest to merge our src_group into?
890 * Create a new empty one. This can happen if a stream was
891 * active in the source trace chunk but not in the destination
892 * trace chunk.
893 */
894 if (!dest_group) {
895 struct ctf_stream_class *sc;
896
897 sc = ctf_trace_class_borrow_stream_class_by_id(dest_trace->metadata->tc,
898 src_group->sc->id);
899 BT_ASSERT(sc);
900
901 auto new_dest_group = ctf_fs_ds_file_group_create(dest_trace, sc, src_group->stream_id,
902 bt2s::make_unique<ctf_fs_ds_index>());
903
904 if (!new_dest_group) {
905 ret = -1;
906 goto end;
907 }
908
909 dest_group = new_dest_group.get();
910 dest_trace->ds_file_groups.emplace_back(std::move(new_dest_group));
911 }
912
913 BT_ASSERT(dest_group);
914 merge_ctf_fs_ds_file_groups(dest_group, std::move(src_group));
915 }
916
917 end:
918 return ret;
919 }
920
921 /*
922 * Collapse the given traces, which must all share the same UUID, in a single
923 * one.
924 *
925 * The trace with the most expansive metadata is chosen and all other traces
926 * are merged into that one. On return, the elements of `traces` are nullptr
927 * and the merged trace is placed in `out_trace`.
928 */
929
930 static int merge_ctf_fs_traces(std::vector<ctf_fs_trace::UP> traces, ctf_fs_trace::UP& out_trace)
931 {
932 unsigned int winner_count;
933 struct ctf_fs_trace *winner;
934 guint i, winner_i;
935 int ret = 0;
936
937 BT_ASSERT(traces.size() >= 2);
938
939 winner_count = metadata_count_stream_and_event_classes(traces[0].get());
940 winner = traces[0].get();
941 winner_i = 0;
942
943 /* Find the trace with the largest metadata. */
944 for (i = 1; i < traces.size(); i++) {
945 ctf_fs_trace *candidate = traces[i].get();
946 unsigned int candidate_count;
947
948 /* A bit of sanity check. */
949 BT_ASSERT(bt_uuid_compare(winner->metadata->tc->uuid, candidate->metadata->tc->uuid) == 0);
950
951 candidate_count = metadata_count_stream_and_event_classes(candidate);
952
953 if (candidate_count > winner_count) {
954 winner_count = candidate_count;
955 winner = candidate;
956 winner_i = i;
957 }
958 }
959
960 /* Merge all the other traces in the winning trace. */
961 for (ctf_fs_trace::UP& trace : traces) {
962 /* Don't merge the winner into itself. */
963 if (trace.get() == winner) {
964 continue;
965 }
966
967 /* Merge trace's data stream file groups into winner's. */
968 ret = merge_matching_ctf_fs_ds_file_groups(winner, std::move(trace));
969 if (ret) {
970 goto end;
971 }
972 }
973
974 /*
975 * Move the winner out of the array, into `*out_trace`.
976 */
977 out_trace = std::move(traces[winner_i]);
978
979 end:
980 return ret;
981 }
982
983 enum target_event
984 {
985 FIRST_EVENT,
986 LAST_EVENT,
987 };
988
989 static int decode_clock_snapshot_after_event(struct ctf_fs_trace *ctf_fs_trace,
990 struct ctf_clock_class *default_cc,
991 struct ctf_fs_ds_index_entry *index_entry,
992 enum target_event target_event, uint64_t *cs,
993 int64_t *ts_ns)
994 {
995 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
996 ctf_msg_iter_up msg_iter;
997 int ret = 0;
998
999 BT_ASSERT(ctf_fs_trace);
1000 BT_ASSERT(index_entry);
1001 BT_ASSERT(index_entry->path);
1002
1003 const auto ds_file = ctf_fs_ds_file_create(ctf_fs_trace, bt2::Stream::Shared {},
1004 index_entry->path, ctf_fs_trace->logger);
1005 if (!ds_file) {
1006 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger, "Failed to create a ctf_fs_ds_file");
1007 ret = -1;
1008 goto end;
1009 }
1010
1011 BT_ASSERT(ctf_fs_trace->metadata);
1012 BT_ASSERT(ctf_fs_trace->metadata->tc);
1013
1014 msg_iter = ctf_msg_iter_create(
1015 ctf_fs_trace->metadata->tc,
1016 bt_common_get_page_size(static_cast<int>(ctf_fs_trace->logger.level())) * 8,
1017 ctf_fs_ds_file_medops, ds_file.get(), NULL, ctf_fs_trace->logger);
1018 if (!msg_iter) {
1019 /* ctf_msg_iter_create() logs errors. */
1020 ret = -1;
1021 goto end;
1022 }
1023
1024 /*
1025 * Turn on dry run mode to prevent the creation and usage of Babeltrace
1026 * library objects (bt_field, bt_message_*, etc.).
1027 */
1028 ctf_msg_iter_set_dry_run(msg_iter.get(), true);
1029
1030 /* Seek to the beginning of the target packet. */
1031 iter_status = ctf_msg_iter_seek(msg_iter.get(), index_entry->offset.bytes());
1032 if (iter_status) {
1033 /* ctf_msg_iter_seek() logs errors. */
1034 ret = -1;
1035 goto end;
1036 }
1037
1038 switch (target_event) {
1039 case FIRST_EVENT:
1040 /*
1041 * Start to decode the packet until we reach the end of
1042 * the first event. To extract the first event's clock
1043 * snapshot.
1044 */
1045 iter_status = ctf_msg_iter_curr_packet_first_event_clock_snapshot(msg_iter.get(), cs);
1046 break;
1047 case LAST_EVENT:
1048 /* Decode the packet to extract the last event's clock snapshot. */
1049 iter_status = ctf_msg_iter_curr_packet_last_event_clock_snapshot(msg_iter.get(), cs);
1050 break;
1051 default:
1052 bt_common_abort();
1053 }
1054 if (iter_status) {
1055 ret = -1;
1056 goto end;
1057 }
1058
1059 /* Convert clock snapshot to timestamp. */
1060 ret = bt_util_clock_cycles_to_ns_from_origin(
1061 *cs, default_cc->frequency, default_cc->offset_seconds, default_cc->offset_cycles, ts_ns);
1062 if (ret) {
1063 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
1064 "Failed to convert clock snapshot to timestamp");
1065 goto end;
1066 }
1067
1068 end:
1069 return ret;
1070 }
1071
1072 static int decode_packet_first_event_timestamp(struct ctf_fs_trace *ctf_fs_trace,
1073 struct ctf_clock_class *default_cc,
1074 struct ctf_fs_ds_index_entry *index_entry,
1075 uint64_t *cs, int64_t *ts_ns)
1076 {
1077 return decode_clock_snapshot_after_event(ctf_fs_trace, default_cc, index_entry, FIRST_EVENT, cs,
1078 ts_ns);
1079 }
1080
1081 static int decode_packet_last_event_timestamp(struct ctf_fs_trace *ctf_fs_trace,
1082 struct ctf_clock_class *default_cc,
1083 struct ctf_fs_ds_index_entry *index_entry,
1084 uint64_t *cs, int64_t *ts_ns)
1085 {
1086 return decode_clock_snapshot_after_event(ctf_fs_trace, default_cc, index_entry, LAST_EVENT, cs,
1087 ts_ns);
1088 }
1089
1090 /*
1091 * Fix up packet index entries for lttng's "event-after-packet" bug.
1092 * Some buggy lttng tracer versions may emit events with a timestamp that is
1093 * larger (after) than the timestamp_end of the their packets.
1094 *
1095 * To fix up this erroneous data we do the following:
1096 * 1. If it's not the stream file's last packet: set the packet index entry's
1097 * end time to the next packet's beginning time.
1098 * 2. If it's the stream file's last packet, set the packet index entry's end
1099 * time to the packet's last event's time, if any, or to the packet's
1100 * beginning time otherwise.
1101 *
1102 * Known buggy tracer versions:
1103 * - before lttng-ust 2.11.0
1104 * - before lttng-module 2.11.0
1105 * - before lttng-module 2.10.10
1106 * - before lttng-module 2.9.13
1107 */
1108 static int fix_index_lttng_event_after_packet_bug(struct ctf_fs_trace *trace)
1109 {
1110 int ret = 0;
1111
1112 for (const auto& ds_file_group : trace->ds_file_groups) {
1113 struct ctf_clock_class *default_cc;
1114
1115 BT_ASSERT(ds_file_group);
1116 const auto index = ds_file_group->index.get();
1117
1118 BT_ASSERT(index);
1119 BT_ASSERT(!index->entries.empty());
1120
1121 /*
1122 * Iterate over all entries but the last one. The last one is
1123 * fixed differently after.
1124 */
1125 for (size_t entry_i = 0; entry_i < index->entries.size() - 1; ++entry_i) {
1126 ctf_fs_ds_index_entry *curr_entry = index->entries[entry_i].get();
1127 ctf_fs_ds_index_entry *next_entry = index->entries[entry_i + 1].get();
1128
1129 /*
1130 * 1. Set the current index entry `end` timestamp to
1131 * the next index entry `begin` timestamp.
1132 */
1133 curr_entry->timestamp_end = next_entry->timestamp_begin;
1134 curr_entry->timestamp_end_ns = next_entry->timestamp_begin_ns;
1135 }
1136
1137 /*
1138 * 2. Fix the last entry by decoding the last event of the last
1139 * packet.
1140 */
1141 const auto last_entry = index->entries.back().get();
1142 BT_ASSERT(last_entry);
1143
1144 BT_ASSERT(ds_file_group->sc->default_clock_class);
1145 default_cc = ds_file_group->sc->default_clock_class;
1146
1147 /*
1148 * Decode packet to read the timestamp of the last event of the
1149 * entry.
1150 */
1151 ret = decode_packet_last_event_timestamp(trace, default_cc, last_entry,
1152 &last_entry->timestamp_end,
1153 &last_entry->timestamp_end_ns);
1154 if (ret) {
1155 BT_CPPLOGE_APPEND_CAUSE_SPEC(
1156 trace->logger,
1157 "Failed to decode stream's last packet to get its last event's clock snapshot.");
1158 goto end;
1159 }
1160 }
1161
1162 end:
1163 return ret;
1164 }
1165
1166 /*
1167 * Fix up packet index entries for barectf's "event-before-packet" bug.
1168 * Some buggy barectf tracer versions may emit events with a timestamp that is
1169 * less than the timestamp_begin of the their packets.
1170 *
1171 * To fix up this erroneous data we do the following:
1172 * 1. Starting at the second index entry, set the timestamp_begin of the
1173 * current entry to the timestamp of the first event of the packet.
1174 * 2. Set the previous entry's timestamp_end to the timestamp_begin of the
1175 * current packet.
1176 *
1177 * Known buggy tracer versions:
1178 * - before barectf 2.3.1
1179 */
1180 static int fix_index_barectf_event_before_packet_bug(struct ctf_fs_trace *trace)
1181 {
1182 int ret = 0;
1183
1184 for (const auto& ds_file_group : trace->ds_file_groups) {
1185 struct ctf_clock_class *default_cc;
1186 const auto index = ds_file_group->index.get();
1187
1188 BT_ASSERT(index);
1189 BT_ASSERT(!index->entries.empty());
1190
1191 BT_ASSERT(ds_file_group->sc->default_clock_class);
1192 default_cc = ds_file_group->sc->default_clock_class;
1193
1194 /*
1195 * 1. Iterate over the index, starting from the second entry
1196 * (index = 1).
1197 */
1198 for (size_t entry_i = 1; entry_i < index->entries.size(); ++entry_i) {
1199 ctf_fs_ds_index_entry *prev_entry = index->entries[entry_i - 1].get();
1200 ctf_fs_ds_index_entry *curr_entry = index->entries[entry_i].get();
1201 /*
1202 * 2. Set the current entry `begin` timestamp to the
1203 * timestamp of the first event of the current packet.
1204 */
1205 ret = decode_packet_first_event_timestamp(trace, default_cc, curr_entry,
1206 &curr_entry->timestamp_begin,
1207 &curr_entry->timestamp_begin_ns);
1208 if (ret) {
1209 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1210 "Failed to decode first event's clock snapshot");
1211 goto end;
1212 }
1213
1214 /*
1215 * 3. Set the previous entry `end` timestamp to the
1216 * timestamp of the first event of the current packet.
1217 */
1218 prev_entry->timestamp_end = curr_entry->timestamp_begin;
1219 prev_entry->timestamp_end_ns = curr_entry->timestamp_begin_ns;
1220 }
1221 }
1222 end:
1223 return ret;
1224 }
1225
1226 /*
1227 * When using the lttng-crash feature it's likely that the last packets of each
1228 * stream have their timestamp_end set to zero. This is caused by the fact that
1229 * the tracer crashed and was not able to properly close the packets.
1230 *
1231 * To fix up this erroneous data we do the following:
1232 * For each index entry, if the entry's timestamp_end is 0 and the
1233 * timestamp_begin is not 0:
1234 * - If it's the stream file's last packet: set the packet index entry's end
1235 * time to the packet's last event's time, if any, or to the packet's
1236 * beginning time otherwise.
1237 * - If it's not the stream file's last packet: set the packet index
1238 * entry's end time to the next packet's beginning time.
1239 *
1240 * Affected versions:
1241 * - All current and future lttng-ust and lttng-modules versions.
1242 */
1243 static int fix_index_lttng_crash_quirk(struct ctf_fs_trace *trace)
1244 {
1245 int ret = 0;
1246
1247 for (const auto& ds_file_group : trace->ds_file_groups) {
1248 struct ctf_clock_class *default_cc;
1249
1250 BT_ASSERT(ds_file_group);
1251 const auto index = ds_file_group->index.get();
1252
1253 BT_ASSERT(ds_file_group->sc->default_clock_class);
1254 default_cc = ds_file_group->sc->default_clock_class;
1255
1256 BT_ASSERT(index);
1257 BT_ASSERT(!index->entries.empty());
1258
1259 const auto last_entry = index->entries.back().get();
1260 BT_ASSERT(last_entry);
1261
1262 /* 1. Fix the last entry first. */
1263 if (last_entry->timestamp_end == 0 && last_entry->timestamp_begin != 0) {
1264 /*
1265 * Decode packet to read the timestamp of the
1266 * last event of the stream file.
1267 */
1268 ret = decode_packet_last_event_timestamp(trace, default_cc, last_entry,
1269 &last_entry->timestamp_end,
1270 &last_entry->timestamp_end_ns);
1271 if (ret) {
1272 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1273 "Failed to decode last event's clock snapshot");
1274 goto end;
1275 }
1276 }
1277
1278 /* Iterate over all entries but the last one. */
1279 for (size_t entry_idx = 0; entry_idx < index->entries.size() - 1; ++entry_idx) {
1280 ctf_fs_ds_index_entry *curr_entry = index->entries[entry_idx].get();
1281 ctf_fs_ds_index_entry *next_entry = index->entries[entry_idx + 1].get();
1282
1283 if (curr_entry->timestamp_end == 0 && curr_entry->timestamp_begin != 0) {
1284 /*
1285 * 2. Set the current index entry `end` timestamp to
1286 * the next index entry `begin` timestamp.
1287 */
1288 curr_entry->timestamp_end = next_entry->timestamp_begin;
1289 curr_entry->timestamp_end_ns = next_entry->timestamp_begin_ns;
1290 }
1291 }
1292 }
1293
1294 end:
1295 return ret;
1296 }
1297
1298 /*
1299 * Extract the tracer information necessary to compare versions.
1300 * Returns 0 on success, and -1 if the extraction is not successful because the
1301 * necessary fields are absents in the trace metadata.
1302 */
1303 static int extract_tracer_info(struct ctf_fs_trace *trace, struct tracer_info *current_tracer_info)
1304 {
1305 int ret = 0;
1306 struct ctf_trace_class_env_entry *entry;
1307
1308 /* Clear the current_tracer_info struct */
1309 memset(current_tracer_info, 0, sizeof(*current_tracer_info));
1310
1311 /*
1312 * To compare 2 tracer versions, at least the tracer name and it's
1313 * major version are needed. If one of these is missing, consider it an
1314 * extraction failure.
1315 */
1316 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_name");
1317 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_STR) {
1318 goto missing_bare_minimum;
1319 }
1320
1321 /* Set tracer name. */
1322 current_tracer_info->name = entry->value.str->str;
1323
1324 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_major");
1325 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) {
1326 goto missing_bare_minimum;
1327 }
1328
1329 /* Set major version number. */
1330 current_tracer_info->major = entry->value.i;
1331
1332 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_minor");
1333 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) {
1334 goto end;
1335 }
1336
1337 /* Set minor version number. */
1338 current_tracer_info->minor = entry->value.i;
1339
1340 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_patch");
1341 if (!entry) {
1342 /*
1343 * If `tracer_patch` doesn't exist `tracer_patchlevel` might.
1344 * For example, `lttng-modules` uses entry name
1345 * `tracer_patchlevel`.
1346 */
1347 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_patchlevel");
1348 }
1349
1350 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) {
1351 goto end;
1352 }
1353
1354 /* Set patch version number. */
1355 current_tracer_info->patch = entry->value.i;
1356
1357 goto end;
1358
1359 missing_bare_minimum:
1360 ret = -1;
1361 end:
1362 return ret;
1363 }
1364
1365 static bool is_tracer_affected_by_lttng_event_after_packet_bug(struct tracer_info *curr_tracer_info)
1366 {
1367 bool is_affected = false;
1368
1369 if (strcmp(curr_tracer_info->name, "lttng-ust") == 0) {
1370 if (curr_tracer_info->major < 2) {
1371 is_affected = true;
1372 } else if (curr_tracer_info->major == 2) {
1373 /* fixed in lttng-ust 2.11.0 */
1374 if (curr_tracer_info->minor < 11) {
1375 is_affected = true;
1376 }
1377 }
1378 } else if (strcmp(curr_tracer_info->name, "lttng-modules") == 0) {
1379 if (curr_tracer_info->major < 2) {
1380 is_affected = true;
1381 } else if (curr_tracer_info->major == 2) {
1382 /* fixed in lttng-modules 2.11.0 */
1383 if (curr_tracer_info->minor == 10) {
1384 /* fixed in lttng-modules 2.10.10 */
1385 if (curr_tracer_info->patch < 10) {
1386 is_affected = true;
1387 }
1388 } else if (curr_tracer_info->minor == 9) {
1389 /* fixed in lttng-modules 2.9.13 */
1390 if (curr_tracer_info->patch < 13) {
1391 is_affected = true;
1392 }
1393 } else if (curr_tracer_info->minor < 9) {
1394 is_affected = true;
1395 }
1396 }
1397 }
1398
1399 return is_affected;
1400 }
1401
1402 static bool
1403 is_tracer_affected_by_barectf_event_before_packet_bug(struct tracer_info *curr_tracer_info)
1404 {
1405 bool is_affected = false;
1406
1407 if (strcmp(curr_tracer_info->name, "barectf") == 0) {
1408 if (curr_tracer_info->major < 2) {
1409 is_affected = true;
1410 } else if (curr_tracer_info->major == 2) {
1411 if (curr_tracer_info->minor < 3) {
1412 is_affected = true;
1413 } else if (curr_tracer_info->minor == 3) {
1414 /* fixed in barectf 2.3.1 */
1415 if (curr_tracer_info->patch < 1) {
1416 is_affected = true;
1417 }
1418 }
1419 }
1420 }
1421
1422 return is_affected;
1423 }
1424
1425 static bool is_tracer_affected_by_lttng_crash_quirk(struct tracer_info *curr_tracer_info)
1426 {
1427 bool is_affected = false;
1428
1429 /* All LTTng tracer may be affected by this lttng crash quirk. */
1430 if (strcmp(curr_tracer_info->name, "lttng-ust") == 0) {
1431 is_affected = true;
1432 } else if (strcmp(curr_tracer_info->name, "lttng-modules") == 0) {
1433 is_affected = true;
1434 }
1435
1436 return is_affected;
1437 }
1438
1439 /*
1440 * Looks for trace produced by known buggy tracers and fix up the index
1441 * produced earlier.
1442 */
1443 static int fix_packet_index_tracer_bugs(ctf_fs_trace *trace)
1444 {
1445 int ret = 0;
1446 struct tracer_info current_tracer_info;
1447
1448 ret = extract_tracer_info(trace, &current_tracer_info);
1449 if (ret) {
1450 /*
1451 * A trace may not have all the necessary environment
1452 * entries to do the tracer version comparison.
1453 * At least, the tracer name and major version number
1454 * are needed. Failing to extract these entries is not
1455 * an error.
1456 */
1457 ret = 0;
1458 BT_CPPLOGI_STR_SPEC(
1459 trace->logger,
1460 "Cannot extract tracer information necessary to compare with buggy versions.");
1461 goto end;
1462 }
1463
1464 /* Check if the trace may be affected by old tracer bugs. */
1465 if (is_tracer_affected_by_lttng_event_after_packet_bug(&current_tracer_info)) {
1466 BT_CPPLOGI_STR_SPEC(
1467 trace->logger,
1468 "Trace may be affected by LTTng tracer packet timestamp bug. Fixing up.");
1469 ret = fix_index_lttng_event_after_packet_bug(trace);
1470 if (ret) {
1471 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1472 "Failed to fix LTTng event-after-packet bug.");
1473 goto end;
1474 }
1475 trace->metadata->tc->quirks.lttng_event_after_packet = true;
1476 }
1477
1478 if (is_tracer_affected_by_barectf_event_before_packet_bug(&current_tracer_info)) {
1479 BT_CPPLOGI_STR_SPEC(
1480 trace->logger,
1481 "Trace may be affected by barectf tracer packet timestamp bug. Fixing up.");
1482 ret = fix_index_barectf_event_before_packet_bug(trace);
1483 if (ret) {
1484 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1485 "Failed to fix barectf event-before-packet bug.");
1486 goto end;
1487 }
1488 trace->metadata->tc->quirks.barectf_event_before_packet = true;
1489 }
1490
1491 if (is_tracer_affected_by_lttng_crash_quirk(&current_tracer_info)) {
1492 ret = fix_index_lttng_crash_quirk(trace);
1493 if (ret) {
1494 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1495 "Failed to fix lttng-crash timestamp quirks.");
1496 goto end;
1497 }
1498 trace->metadata->tc->quirks.lttng_crash = true;
1499 }
1500
1501 end:
1502 return ret;
1503 }
1504
1505 static bool compare_ds_file_groups_by_first_path(const ctf_fs_ds_file_group::UP& ds_file_group_a,
1506 const ctf_fs_ds_file_group::UP& ds_file_group_b)
1507 {
1508 BT_ASSERT(!ds_file_group_a->ds_file_infos.empty());
1509 BT_ASSERT(!ds_file_group_b->ds_file_infos.empty());
1510
1511 const auto& first_ds_file_info_a = *ds_file_group_a->ds_file_infos[0];
1512 const auto& first_ds_file_info_b = *ds_file_group_b->ds_file_infos[0];
1513
1514 return first_ds_file_info_a.path < first_ds_file_info_b.path;
1515 }
1516
1517 int ctf_fs_component_create_ctf_fs_trace(struct ctf_fs_component *ctf_fs,
1518 const bt_value *paths_value,
1519 const bt_value *trace_name_value,
1520 bt_self_component *selfComp)
1521 {
1522 int ret = 0;
1523 std::vector<std::string> paths;
1524 std::vector<ctf_fs_trace::UP> traces;
1525 const char *trace_name;
1526
1527 BT_ASSERT(bt_value_get_type(paths_value) == BT_VALUE_TYPE_ARRAY);
1528 BT_ASSERT(!bt_value_array_is_empty(paths_value));
1529
1530 trace_name = trace_name_value ? bt_value_string_get(trace_name_value) : NULL;
1531
1532 /*
1533 * Create a sorted array of the paths, to make the execution of this
1534 * component deterministic.
1535 */
1536 for (std::uint64_t i = 0; i < bt_value_array_get_length(paths_value); i++) {
1537 const bt_value *path_value = bt_value_array_borrow_element_by_index_const(paths_value, i);
1538 const char *input = bt_value_string_get(path_value);
1539 paths.emplace_back(input);
1540 }
1541
1542 std::sort(paths.begin(), paths.end());
1543
1544 /* Create a separate ctf_fs_trace object for each path. */
1545 for (const auto& path : paths) {
1546 ret = ctf_fs_component_create_ctf_fs_trace_one_path(ctf_fs, path.c_str(), trace_name,
1547 traces, selfComp);
1548 if (ret) {
1549 goto end;
1550 }
1551 }
1552
1553 if (traces.size() > 1) {
1554 ctf_fs_trace *first_trace = traces[0].get();
1555 const uint8_t *first_trace_uuid = first_trace->metadata->tc->uuid;
1556
1557 /*
1558 * We have more than one trace, they must all share the same
1559 * UUID, verify that.
1560 */
1561 for (size_t i = 0; i < traces.size(); i++) {
1562 ctf_fs_trace *this_trace = traces[i].get();
1563 const uint8_t *this_trace_uuid = this_trace->metadata->tc->uuid;
1564
1565 if (!this_trace->metadata->tc->is_uuid_set) {
1566 BT_CPPLOGE_APPEND_CAUSE_SPEC(
1567 ctf_fs->logger,
1568 "Multiple traces given, but a trace does not have a UUID: path={}",
1569 this_trace->path);
1570 goto error;
1571 }
1572
1573 if (bt_uuid_compare(first_trace_uuid, this_trace_uuid) != 0) {
1574 char first_trace_uuid_str[BT_UUID_STR_LEN + 1];
1575 char this_trace_uuid_str[BT_UUID_STR_LEN + 1];
1576
1577 bt_uuid_to_str(first_trace_uuid, first_trace_uuid_str);
1578 bt_uuid_to_str(this_trace_uuid, this_trace_uuid_str);
1579
1580 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger,
1581 "Multiple traces given, but UUIDs don't match: "
1582 "first-trace-uuid={}, first-trace-path={}, "
1583 "trace-uuid={}, trace-path={}",
1584 first_trace_uuid_str, first_trace->path,
1585 this_trace_uuid_str, this_trace->path);
1586 goto error;
1587 }
1588 }
1589
1590 ret = merge_ctf_fs_traces(std::move(traces), ctf_fs->trace);
1591 if (ret) {
1592 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger,
1593 "Failed to merge traces with the same UUID.");
1594 goto error;
1595 }
1596 } else {
1597 /* Just one trace, it may or may not have a UUID, both are fine. */
1598 ctf_fs->trace = std::move(traces[0]);
1599 }
1600
1601 ret = fix_packet_index_tracer_bugs(ctf_fs->trace.get());
1602 if (ret) {
1603 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Failed to fix packet index tracer bugs.");
1604 }
1605
1606 /*
1607 * Sort data stream file groups by first data stream file info
1608 * path to get a deterministic order. This order influences the
1609 * order of the output ports. It also influences the order of
1610 * the automatic stream IDs if the trace's packet headers do not
1611 * contain a `stream_instance_id` field, in which case the data
1612 * stream file to stream ID association is always the same,
1613 * whatever the build and the system.
1614 *
1615 * Having a deterministic order here can help debugging and
1616 * testing.
1617 */
1618 std::sort(ctf_fs->trace->ds_file_groups.begin(), ctf_fs->trace->ds_file_groups.end(),
1619 compare_ds_file_groups_by_first_path);
1620 goto end;
1621
1622 error:
1623 ret = -1;
1624
1625 end:
1626 return ret;
1627 }
1628
1629 static const std::string&
1630 get_stream_instance_unique_name(struct ctf_fs_ds_file_group *ds_file_group)
1631 {
1632 /*
1633 * The first (earliest) stream file's path is used as the stream's unique
1634 * name.
1635 */
1636 BT_ASSERT(!ds_file_group->ds_file_infos.empty());
1637 return ds_file_group->ds_file_infos[0]->path;
1638 }
1639
1640 /* Create the IR stream objects for ctf_fs_trace. */
1641
1642 static int create_streams_for_trace(struct ctf_fs_trace *ctf_fs_trace)
1643 {
1644 int ret;
1645
1646 for (const auto& ds_file_group : ctf_fs_trace->ds_file_groups) {
1647 const std::string& name = get_stream_instance_unique_name(ds_file_group.get());
1648
1649 BT_ASSERT(ds_file_group->sc->ir_sc);
1650 BT_ASSERT(ctf_fs_trace->trace);
1651
1652 bt_stream *stream;
1653
1654 if (ds_file_group->stream_id == UINT64_C(-1)) {
1655 /* No stream ID: use 0 */
1656 stream =
1657 bt_stream_create_with_id(ds_file_group->sc->ir_sc, ctf_fs_trace->trace->libObjPtr(),
1658 ctf_fs_trace->next_stream_id);
1659 ctf_fs_trace->next_stream_id++;
1660 } else {
1661 /* Specific stream ID */
1662 stream =
1663 bt_stream_create_with_id(ds_file_group->sc->ir_sc, ctf_fs_trace->trace->libObjPtr(),
1664 (uint64_t) ds_file_group->stream_id);
1665 }
1666
1667 if (!stream) {
1668 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
1669 "Cannot create stream for DS file group: "
1670 "addr={}, stream-name=\"{}\"",
1671 fmt::ptr(ds_file_group), name);
1672 goto error;
1673 }
1674
1675 ds_file_group->stream = bt2::Stream::Shared::createWithoutRef(stream);
1676
1677 ret = bt_stream_set_name(ds_file_group->stream->libObjPtr(), name.c_str());
1678 if (ret) {
1679 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
1680 "Cannot set stream's name: "
1681 "addr={}, stream-name=\"{}\"",
1682 fmt::ptr(ds_file_group->stream->libObjPtr()), name);
1683 goto error;
1684 }
1685 }
1686
1687 ret = 0;
1688 goto end;
1689
1690 error:
1691 ret = -1;
1692
1693 end:
1694 return ret;
1695 }
1696
1697 static const bt_param_validation_value_descr inputs_elem_descr =
1698 bt_param_validation_value_descr::makeString();
1699
1700 static bt_param_validation_map_value_entry_descr fs_params_entries_descr[] = {
1701 {"inputs", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_MANDATORY,
1702 bt_param_validation_value_descr::makeArray(1, BT_PARAM_VALIDATION_INFINITE,
1703 inputs_elem_descr)},
1704 {"trace-name", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1705 bt_param_validation_value_descr::makeString()},
1706 {"clock-class-offset-s", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1707 bt_param_validation_value_descr::makeSignedInteger()},
1708 {"clock-class-offset-ns", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1709 bt_param_validation_value_descr::makeSignedInteger()},
1710 {"force-clock-class-origin-unix-epoch", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1711 bt_param_validation_value_descr::makeBool()},
1712 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END};
1713
1714 bool read_src_fs_parameters(const bt_value *params, const bt_value **inputs,
1715 const bt_value **trace_name, struct ctf_fs_component *ctf_fs)
1716 {
1717 bool ret;
1718 const bt_value *value;
1719 enum bt_param_validation_status validate_value_status;
1720 gchar *error = NULL;
1721
1722 validate_value_status = bt_param_validation_validate(params, fs_params_entries_descr, &error);
1723 if (validate_value_status != BT_PARAM_VALIDATION_STATUS_OK) {
1724 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "{}", error);
1725 ret = false;
1726 goto end;
1727 }
1728
1729 /* inputs parameter */
1730 *inputs = bt_value_map_borrow_entry_value_const(params, "inputs");
1731
1732 /* clock-class-offset-s parameter */
1733 value = bt_value_map_borrow_entry_value_const(params, "clock-class-offset-s");
1734 if (value) {
1735 ctf_fs->clkClsCfg.offsetSec = bt_value_integer_signed_get(value);
1736 }
1737
1738 /* clock-class-offset-ns parameter */
1739 value = bt_value_map_borrow_entry_value_const(params, "clock-class-offset-ns");
1740 if (value) {
1741 ctf_fs->clkClsCfg.offsetNanoSec = bt_value_integer_signed_get(value);
1742 }
1743
1744 /* force-clock-class-origin-unix-epoch parameter */
1745 value = bt_value_map_borrow_entry_value_const(params, "force-clock-class-origin-unix-epoch");
1746 if (value) {
1747 ctf_fs->clkClsCfg.forceOriginIsUnixEpoch = bt_value_bool_get(value);
1748 }
1749
1750 /* trace-name parameter */
1751 *trace_name = bt_value_map_borrow_entry_value_const(params, "trace-name");
1752
1753 ret = true;
1754
1755 end:
1756 g_free(error);
1757 return ret;
1758 }
1759
1760 static ctf_fs_component::UP ctf_fs_create(const bt_value *params,
1761 bt_self_component_source *self_comp_src)
1762 {
1763 const bt_value *inputs_value;
1764 const bt_value *trace_name_value;
1765 bt_self_component *self_comp = bt_self_component_source_as_self_component(self_comp_src);
1766
1767 ctf_fs_component::UP ctf_fs = bt2s::make_unique<ctf_fs_component>(
1768 bt2c::Logger {bt2::SelfSourceComponent {self_comp_src}, "PLUGIN/SRC.CTF.FS/COMP"});
1769
1770 if (!read_src_fs_parameters(params, &inputs_value, &trace_name_value, ctf_fs.get())) {
1771 return nullptr;
1772 }
1773
1774 if (ctf_fs_component_create_ctf_fs_trace(ctf_fs.get(), inputs_value, trace_name_value,
1775 self_comp)) {
1776 return nullptr;
1777 }
1778
1779 if (create_streams_for_trace(ctf_fs->trace.get())) {
1780 return nullptr;
1781 }
1782
1783 if (create_ports_for_trace(ctf_fs.get(), ctf_fs->trace.get(), self_comp_src)) {
1784 return nullptr;
1785 }
1786
1787 return ctf_fs;
1788 }
1789
1790 bt_component_class_initialize_method_status ctf_fs_init(bt_self_component_source *self_comp_src,
1791 bt_self_component_source_configuration *,
1792 const bt_value *params, void *)
1793 {
1794 try {
1795 bt_component_class_initialize_method_status ret =
1796 BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
1797
1798 ctf_fs_component::UP ctf_fs = ctf_fs_create(params, self_comp_src);
1799 if (!ctf_fs) {
1800 ret = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1801 }
1802
1803 bt_self_component_set_data(bt_self_component_source_as_self_component(self_comp_src),
1804 ctf_fs.release());
1805 return ret;
1806 } catch (const std::bad_alloc&) {
1807 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
1808 } catch (const bt2::Error&) {
1809 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1810 }
1811 }
1812
1813 bt_component_class_query_method_status ctf_fs_query(bt_self_component_class_source *comp_class_src,
1814 bt_private_query_executor *priv_query_exec,
1815 const char *object, const bt_value *params,
1816 __attribute__((unused)) void *method_data,
1817 const bt_value **result)
1818 {
1819 try {
1820 bt2c::Logger logger {bt2::SelfComponentClass {comp_class_src},
1821 bt2::PrivateQueryExecutor {priv_query_exec},
1822 "PLUGIN/SRC.CTF.FS/QUERY"};
1823 bt2::ConstMapValue paramsObj(params);
1824 bt2::Value::Shared resultObj;
1825
1826 if (strcmp(object, "metadata-info") == 0) {
1827 resultObj = metadata_info_query(paramsObj, logger);
1828 } else if (strcmp(object, "babeltrace.trace-infos") == 0) {
1829 resultObj = trace_infos_query(paramsObj, logger);
1830 } else if (!strcmp(object, "babeltrace.support-info")) {
1831 resultObj = support_info_query(paramsObj, logger);
1832 } else {
1833 BT_CPPLOGE_SPEC(logger, "Unknown query object `{}`", object);
1834 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_UNKNOWN_OBJECT;
1835 }
1836
1837 *result = resultObj.release().libObjPtr();
1838
1839 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK;
1840 } catch (const std::bad_alloc&) {
1841 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR;
1842 } catch (const bt2::Error&) {
1843 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR;
1844 }
1845 }
This page took 0.083793 seconds and 4 git commands to generate.