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