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