Fix: flt.lttng-utils.debug-info: memory leak bt_dwarf_die struct
[babeltrace.git] / plugins / lttng-utils / debug-info / debug-info.c
CommitLineData
4f45f9bb
JD
1/*
2 * Babeltrace - Debug Information State Tracker
3 *
4 * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
5 * Copyright (c) 2015 Philippe Proulx <pproulx@efficios.com>
6 * Copyright (c) 2015 Antoine Busque <abusque@efficios.com>
7 * Copyright (c) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
ca9f27f3 8 * Copyright (c) 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
4f45f9bb
JD
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
b4565e8b
PP
29#define BT_LOG_TAG "PLUGIN-CTF-LTTNG-UTILS-DEBUG-INFO-FLT"
30#include "logging.h"
31
4f45f9bb 32#include <glib.h>
ca9f27f3
FD
33#include <plugins-common.h>
34
35#include <babeltrace/assert-internal.h>
36#include <babeltrace/common-internal.h>
1e638f98 37#include <babeltrace/fd-cache-internal.h>
ca9f27f3 38
4f45f9bb 39#include "bin-info.h"
ca9f27f3
FD
40#include "debug-info.h"
41#include "trace-ir-data-copy.h"
42#include "trace-ir-mapping.h"
43#include "trace-ir-metadata-copy.h"
4f45f9bb 44#include "utils.h"
ca9f27f3
FD
45
46#define DEFAULT_DEBUG_INFO_FIELD_NAME "debug_info"
47#define LTTNG_UST_STATEDUMP_PREFIX "lttng_ust"
48#define VPID_FIELD_NAME "vpid"
49#define IP_FIELD_NAME "ip"
50#define BADDR_FIELD_NAME "baddr"
51#define CRC32_FIELD_NAME "crc"
52#define BUILD_ID_FIELD_NAME "build_id"
53#define FILENAME_FIELD_NAME "filename"
54#define IS_PIC_FIELD_NAME "is_pic"
55#define MEMSZ_FIELD_NAME "memsz"
56#define PATH_FIELD_NAME "path"
57
58struct debug_info_component {
06d1cf5d
FD
59 gchar *arg_debug_dir;
60 gchar *arg_debug_info_field_name;
61 gchar *arg_target_prefix;
62 bt_bool arg_full_path;
ca9f27f3
FD
63};
64
65struct debug_info_msg_iter {
66 struct debug_info_component *debug_info_component;
67 bt_self_message_iterator *input_iterator;
68 bt_self_component *self_comp;
69 bt_self_component_port_input_message_iterator *msg_iter;
70
71 struct trace_ir_maps *ir_maps;
72 /* in_trace -> debug_info_mapping. */
73 GHashTable *debug_info_map;
1e638f98
FD
74
75 struct bt_fd_cache fd_cache;
ca9f27f3
FD
76};
77
78struct debug_info_source {
79 /* Strings are owned by debug_info_source. */
06d1cf5d 80 gchar *func;
ca9f27f3
FD
81 /*
82 * Store the line number as a string so that the allocation and
83 * conversion to string is only done once.
84 */
06d1cf5d
FD
85 gchar *line_no;
86 gchar *src_path;
ca9f27f3 87 /* short_src_path points inside src_path, no need to free. */
06d1cf5d
FD
88 const gchar *short_src_path;
89 gchar *bin_path;
ca9f27f3 90 /* short_bin_path points inside bin_path, no need to free. */
06d1cf5d 91 const gchar *short_bin_path;
ca9f27f3
FD
92 /*
93 * Location within the binary. Either absolute (@0x1234) or
94 * relative (+0x4321).
95 */
06d1cf5d 96 gchar *bin_loc;
ca9f27f3 97};
4f45f9bb
JD
98
99struct proc_debug_info_sources {
100 /*
101 * Hash table: base address (pointer to uint64_t) to bin info; owned by
102 * proc_debug_info_sources.
103 */
104 GHashTable *baddr_to_bin_info;
105
106 /*
107 * Hash table: IP (pointer to uint64_t) to (struct debug_info_source *);
108 * owned by proc_debug_info_sources.
109 */
110 GHashTable *ip_to_debug_info_src;
111};
112
113struct debug_info {
9d325e17 114 struct debug_info_component *comp;
ca9f27f3
FD
115 const bt_trace *input_trace;
116 uint64_t destruction_listener_id;
9d325e17 117
4f45f9bb
JD
118 /*
119 * Hash table of VPIDs (pointer to int64_t) to
f9597f41 120 * (struct proc_debug_info_sources*); owned by debug_info.
4f45f9bb
JD
121 */
122 GHashTable *vpid_to_proc_dbg_info_src;
123 GQuark q_statedump_bin_info;
124 GQuark q_statedump_debug_link;
125 GQuark q_statedump_build_id;
126 GQuark q_statedump_start;
127 GQuark q_dl_open;
128 GQuark q_lib_load;
129 GQuark q_lib_unload;
1e638f98 130 struct bt_fd_cache *fd_cache; /* Weak ref. Owned by the iterator. */
4f45f9bb
JD
131};
132
133static
134int debug_info_init(struct debug_info *info)
135{
136 info->q_statedump_bin_info = g_quark_from_string(
137 "lttng_ust_statedump:bin_info");
138 info->q_statedump_debug_link = g_quark_from_string(
ca9f27f3 139 "lttng_ust_statedump:debug_link");
4f45f9bb
JD
140 info->q_statedump_build_id = g_quark_from_string(
141 "lttng_ust_statedump:build_id");
142 info->q_statedump_start = g_quark_from_string(
143 "lttng_ust_statedump:start");
144 info->q_dl_open = g_quark_from_string("lttng_ust_dl:dlopen");
145 info->q_lib_load = g_quark_from_string("lttng_ust_lib:load");
146 info->q_lib_unload = g_quark_from_string("lttng_ust_lib:unload");
147
148 return bin_info_init();
149}
150
151static
152void debug_info_source_destroy(struct debug_info_source *debug_info_src)
153{
154 if (!debug_info_src) {
155 return;
156 }
157
06d1cf5d
FD
158 g_free(debug_info_src->func);
159 g_free(debug_info_src->line_no);
160 g_free(debug_info_src->src_path);
161 g_free(debug_info_src->bin_path);
162 g_free(debug_info_src->bin_loc);
4f45f9bb
JD
163 g_free(debug_info_src);
164}
165
166static
ca9f27f3
FD
167struct debug_info_source *debug_info_source_create_from_bin(
168 struct bin_info *bin, uint64_t ip)
4f45f9bb
JD
169{
170 int ret;
171 struct debug_info_source *debug_info_src = NULL;
172 struct source_location *src_loc = NULL;
173
174 debug_info_src = g_new0(struct debug_info_source, 1);
175
176 if (!debug_info_src) {
177 goto end;
178 }
179
180 /* Lookup function name */
181 ret = bin_info_lookup_function_name(bin, ip, &debug_info_src->func);
182 if (ret) {
183 goto error;
184 }
185
186 /* Can't retrieve src_loc from ELF, or could not find binary, skip. */
187 if (!bin->is_elf_only || !debug_info_src->func) {
188 /* Lookup source location */
189 ret = bin_info_lookup_source_location(bin, ip, &src_loc);
ca9f27f3
FD
190 if (ret) {
191 BT_LOGD("Failed to lookup source location: ret=%d", ret);
192 }
4f45f9bb
JD
193 }
194
195 if (src_loc) {
06d1cf5d
FD
196 debug_info_src->line_no =
197 g_strdup_printf("%"PRId64, src_loc->line_no);
198 if (!debug_info_src->line_no) {
ca9f27f3
FD
199 BT_LOGD("Error occured when setting line_no field.");
200 goto error;
201 }
4f45f9bb
JD
202
203 if (src_loc->filename) {
06d1cf5d 204 debug_info_src->src_path = g_strdup(src_loc->filename);
4f45f9bb
JD
205 if (!debug_info_src->src_path) {
206 goto error;
207 }
208
209 debug_info_src->short_src_path = get_filename_from_path(
210 debug_info_src->src_path);
211 }
4f45f9bb
JD
212 source_location_destroy(src_loc);
213 }
214
215 if (bin->elf_path) {
06d1cf5d 216 debug_info_src->bin_path = g_strdup(bin->elf_path);
4f45f9bb
JD
217 if (!debug_info_src->bin_path) {
218 goto error;
219 }
220
221 debug_info_src->short_bin_path = get_filename_from_path(
222 debug_info_src->bin_path);
223
224 ret = bin_info_get_bin_loc(bin, ip, &(debug_info_src->bin_loc));
225 if (ret) {
226 goto error;
227 }
228 }
229
230end:
231 return debug_info_src;
232
233error:
234 debug_info_source_destroy(debug_info_src);
235 return NULL;
236}
237
238static
239void proc_debug_info_sources_destroy(
240 struct proc_debug_info_sources *proc_dbg_info_src)
241{
242 if (!proc_dbg_info_src) {
243 return;
244 }
245
246 if (proc_dbg_info_src->baddr_to_bin_info) {
247 g_hash_table_destroy(proc_dbg_info_src->baddr_to_bin_info);
248 }
249
250 if (proc_dbg_info_src->ip_to_debug_info_src) {
251 g_hash_table_destroy(proc_dbg_info_src->ip_to_debug_info_src);
252 }
253
254 g_free(proc_dbg_info_src);
255}
256
257static
258struct proc_debug_info_sources *proc_debug_info_sources_create(void)
259{
260 struct proc_debug_info_sources *proc_dbg_info_src = NULL;
261
262 proc_dbg_info_src = g_new0(struct proc_debug_info_sources, 1);
263 if (!proc_dbg_info_src) {
264 goto end;
265 }
266
267 proc_dbg_info_src->baddr_to_bin_info = g_hash_table_new_full(
268 g_int64_hash, g_int64_equal, (GDestroyNotify) g_free,
269 (GDestroyNotify) bin_info_destroy);
270 if (!proc_dbg_info_src->baddr_to_bin_info) {
271 goto error;
272 }
273
274 proc_dbg_info_src->ip_to_debug_info_src = g_hash_table_new_full(
275 g_int64_hash, g_int64_equal, (GDestroyNotify) g_free,
276 (GDestroyNotify) debug_info_source_destroy);
277 if (!proc_dbg_info_src->ip_to_debug_info_src) {
278 goto error;
279 }
280
281end:
282 return proc_dbg_info_src;
283
284error:
285 proc_debug_info_sources_destroy(proc_dbg_info_src);
286 return NULL;
287}
288
289static
290struct proc_debug_info_sources *proc_debug_info_sources_ht_get_entry(
291 GHashTable *ht, int64_t vpid)
292{
293 gpointer key = g_new0(int64_t, 1);
294 struct proc_debug_info_sources *proc_dbg_info_src = NULL;
295
296 if (!key) {
297 goto end;
298 }
299
300 *((int64_t *) key) = vpid;
301
302 /* Exists? Return it */
303 proc_dbg_info_src = g_hash_table_lookup(ht, key);
304 if (proc_dbg_info_src) {
305 goto end;
306 }
307
308 /* Otherwise, create and return it */
309 proc_dbg_info_src = proc_debug_info_sources_create();
310 if (!proc_dbg_info_src) {
311 goto end;
312 }
313
314 g_hash_table_insert(ht, key, proc_dbg_info_src);
315 /* Ownership passed to ht */
316 key = NULL;
317end:
318 g_free(key);
319 return proc_dbg_info_src;
320}
321
ca9f27f3
FD
322static inline
323const bt_field *event_borrow_payload_field(const bt_event *event,
324 const char *field_name)
325{
326 const bt_field *event_payload, *field;
327
328 event_payload = bt_event_borrow_payload_field_const(event);
329 BT_ASSERT(event_payload);
330
331 field = bt_field_structure_borrow_member_field_by_name_const(
332 event_payload, field_name);
333 return field;
334}
335
336static inline
337const bt_field *event_borrow_common_context_field(const bt_event *event,
338 const char *field_name)
339{
340 const bt_field *event_common_ctx, *field = NULL;
341
342 event_common_ctx = bt_event_borrow_common_context_field_const(event);
343 if (!event_common_ctx) {
344 goto end;
345 }
346
347 field = bt_field_structure_borrow_member_field_by_name_const(
348 event_common_ctx, field_name);
349
350end:
351 return field;
352}
353
354static inline
355void event_get_common_context_signed_integer_field_value(
356 const bt_event *event, const char *field_name, int64_t *value)
357{
358 *value = bt_field_signed_integer_get_value(
359 event_borrow_common_context_field(event, field_name));
360}
361
362static inline
363int event_get_payload_build_id_length(const bt_event *event,
364 const char *field_name, uint64_t *build_id_len)
365{
366 const bt_field *build_id_field;
367 const bt_field_class *build_id_field_class;
368
369 build_id_field = event_borrow_payload_field(event, field_name);
370 build_id_field_class = bt_field_borrow_class_const(build_id_field);
371
372 BT_ASSERT(bt_field_class_get_type(build_id_field_class) ==
373 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY);
374 BT_ASSERT(bt_field_class_get_type(
375 bt_field_class_array_borrow_element_field_class_const(
376 build_id_field_class)) ==
377 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER);
378
379 *build_id_len = bt_field_array_get_length(build_id_field);
380
381 return 0;
382}
383
384static inline
385int event_get_payload_build_id_value(const bt_event *event,
386 const char *field_name, uint8_t *build_id)
387{
388 const bt_field *curr_field, *build_id_field;
389 const bt_field_class *build_id_field_class;
390 uint64_t i, build_id_len;
391 int ret;
392
393 ret = 0;
394
395 build_id_field = event_borrow_payload_field(event, field_name);
396 build_id_field_class = bt_field_borrow_class_const(build_id_field);
397
398 BT_ASSERT(bt_field_class_get_type(build_id_field_class) ==
399 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY);
400 BT_ASSERT(bt_field_class_get_type(
401 bt_field_class_array_borrow_element_field_class_const(
402 build_id_field_class)) ==
403 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER);
404
405 build_id_len = bt_field_array_get_length(build_id_field);
406
407 for (i = 0; i < build_id_len; i++) {
408 curr_field =
409 bt_field_array_borrow_element_field_by_index_const(
410 build_id_field, i);
411
412 build_id[i] = bt_field_unsigned_integer_get_value(curr_field);
413 }
414
415 return ret;
416}
417
418static
419void event_get_payload_unsigned_integer_field_value(const bt_event *event,
420 const char *field_name, uint64_t *value)
421{
422 *value = bt_field_unsigned_integer_get_value(
423 event_borrow_payload_field(event, field_name));
424}
425
426static
427void event_get_payload_string_field_value(const bt_event *event,
428 const char *field_name, const char **value)
429{
430 *value = bt_field_string_get_value(
431 event_borrow_payload_field(event, field_name));
432}
433
434static inline
435bool event_has_payload_field(const bt_event *event,
436 const char *field_name)
437{
438 return event_borrow_payload_field(event, field_name) != NULL;
439}
440
4f45f9bb
JD
441static
442struct debug_info_source *proc_debug_info_sources_get_entry(
443 struct proc_debug_info_sources *proc_dbg_info_src, uint64_t ip)
444{
445 struct debug_info_source *debug_info_src = NULL;
446 gpointer key = g_new0(uint64_t, 1);
447 GHashTableIter iter;
448 gpointer baddr, value;
449
450 if (!key) {
451 goto end;
452 }
453
454 *((uint64_t *) key) = ip;
455
456 /* Look in IP to debug infos hash table first. */
457 debug_info_src = g_hash_table_lookup(
458 proc_dbg_info_src->ip_to_debug_info_src,
459 key);
460 if (debug_info_src) {
461 goto end;
462 }
463
464 /* Check in all bin_infos. */
465 g_hash_table_iter_init(&iter, proc_dbg_info_src->baddr_to_bin_info);
466
467 while (g_hash_table_iter_next(&iter, &baddr, &value))
468 {
469 struct bin_info *bin = value;
470
471 if (!bin_info_has_address(value, ip)) {
472 continue;
473 }
474
475 /*
476 * Found; add it to cache.
477 *
478 * FIXME: this should be bounded in size (and implement
479 * a caching policy), and entries should be prunned when
480 * libraries are unmapped.
481 */
482 debug_info_src = debug_info_source_create_from_bin(bin, ip);
483 if (debug_info_src) {
484 g_hash_table_insert(
485 proc_dbg_info_src->ip_to_debug_info_src,
486 key, debug_info_src);
487 /* Ownership passed to ht. */
488 key = NULL;
489 }
490 break;
491 }
492
493end:
494 free(key);
495 return debug_info_src;
496}
497
1e638f98 498static
4f45f9bb
JD
499struct debug_info_source *debug_info_query(struct debug_info *debug_info,
500 int64_t vpid, uint64_t ip)
501{
502 struct debug_info_source *dbg_info_src = NULL;
503 struct proc_debug_info_sources *proc_dbg_info_src;
504
505 proc_dbg_info_src = proc_debug_info_sources_ht_get_entry(
506 debug_info->vpid_to_proc_dbg_info_src, vpid);
507 if (!proc_dbg_info_src) {
508 goto end;
509 }
510
511 dbg_info_src = proc_debug_info_sources_get_entry(proc_dbg_info_src, ip);
512
513end:
514 return dbg_info_src;
515}
516
1e638f98 517static
ca9f27f3 518struct debug_info *debug_info_create(struct debug_info_component *comp,
1e638f98 519 const bt_trace *trace, struct bt_fd_cache *fdc)
4f45f9bb
JD
520{
521 int ret;
522 struct debug_info *debug_info;
523
1e638f98
FD
524 BT_ASSERT(comp);
525 BT_ASSERT(trace);
526 BT_ASSERT(fdc);
527
4f45f9bb
JD
528 debug_info = g_new0(struct debug_info, 1);
529 if (!debug_info) {
530 goto end;
531 }
532
533 debug_info->vpid_to_proc_dbg_info_src = g_hash_table_new_full(
534 g_int64_hash, g_int64_equal, (GDestroyNotify) g_free,
535 (GDestroyNotify) proc_debug_info_sources_destroy);
536 if (!debug_info->vpid_to_proc_dbg_info_src) {
537 goto error;
538 }
539
9d325e17 540 debug_info->comp = comp;
4f45f9bb
JD
541 ret = debug_info_init(debug_info);
542 if (ret) {
543 goto error;
544 }
545
ca9f27f3 546 debug_info->input_trace = trace;
1e638f98 547 debug_info->fd_cache = fdc;
ca9f27f3 548
4f45f9bb
JD
549end:
550 return debug_info;
551error:
552 g_free(debug_info);
553 return NULL;
554}
555
1e638f98 556static
4f45f9bb
JD
557void debug_info_destroy(struct debug_info *debug_info)
558{
ca9f27f3 559 bt_trace_status status;
4f45f9bb
JD
560 if (!debug_info) {
561 goto end;
562 }
563
564 if (debug_info->vpid_to_proc_dbg_info_src) {
565 g_hash_table_destroy(debug_info->vpid_to_proc_dbg_info_src);
566 }
567
ca9f27f3
FD
568 status = bt_trace_remove_destruction_listener(debug_info->input_trace,
569 debug_info->destruction_listener_id);
3b40fbf9
FD
570 if (status != BT_TRACE_STATUS_OK) {
571 BT_LOGD("Trace destruction listener removal failed.");
572 }
ca9f27f3 573
4f45f9bb
JD
574 g_free(debug_info);
575end:
576 return;
577}
578
579static
ca9f27f3 580void handle_event_statedump_build_id(struct debug_info *debug_info,
b19ff26f 581 const bt_event *event)
4f45f9bb
JD
582{
583 struct proc_debug_info_sources *proc_dbg_info_src;
ca9f27f3
FD
584 uint64_t build_id_len, baddr;
585 uint8_t *build_id = NULL;
586 struct bin_info *bin;
4f45f9bb 587 int64_t vpid;
ca9f27f3 588 int ret = 0;
4f45f9bb 589
ca9f27f3
FD
590 event_get_common_context_signed_integer_field_value(event,
591 VPID_FIELD_NAME, &vpid);
592 event_get_payload_unsigned_integer_field_value(event,
593 BADDR_FIELD_NAME, &baddr);
4f45f9bb
JD
594
595 proc_dbg_info_src = proc_debug_info_sources_ht_get_entry(
596 debug_info->vpid_to_proc_dbg_info_src, vpid);
597 if (!proc_dbg_info_src) {
598 goto end;
599 }
600
601 bin = g_hash_table_lookup(proc_dbg_info_src->baddr_to_bin_info,
602 (gpointer) &baddr);
603 if (!bin) {
604 /*
605 * The build_id event comes after the bin has been
606 * created. If it isn't found, just ignore this event.
607 */
608 goto end;
609 }
ca9f27f3
FD
610 ret = event_get_payload_build_id_length(event, BUILD_ID_FIELD_NAME,
611 &build_id_len);
612
613 build_id = g_new0(uint8_t, build_id_len);
614 if (!build_id) {
615 goto end;
616 }
4f45f9bb 617
ca9f27f3
FD
618 ret = event_get_payload_build_id_value(event, BUILD_ID_FIELD_NAME,
619 build_id);
4f45f9bb 620 if (ret) {
4f45f9bb
JD
621 goto end;
622 }
ca9f27f3
FD
623
624 ret = bin_info_set_build_id(bin, build_id, build_id_len);
625 if (ret) {
626 goto end;
445e79d6 627 }
4f45f9bb
JD
628
629 /*
630 * Reset the is_elf_only flag in case it had been set
631 * previously, because we might find separate debug info using
632 * the new build id information.
633 */
634 bin->is_elf_only = false;
635
4f45f9bb 636end:
ca9f27f3 637 g_free(build_id);
4f45f9bb
JD
638 return;
639}
640
641static
ca9f27f3 642void handle_event_statedump_debug_link(struct debug_info *debug_info,
b19ff26f 643 const bt_event *event)
4f45f9bb
JD
644{
645 struct proc_debug_info_sources *proc_dbg_info_src;
646 struct bin_info *bin = NULL;
647 int64_t vpid;
648 uint64_t baddr;
649 const char *filename = NULL;
650 uint32_t crc32;
ca9f27f3 651 uint64_t crc_field_value;
4f45f9bb 652
ca9f27f3 653 event_get_common_context_signed_integer_field_value(event,
c4838cef 654 VPID_FIELD_NAME, &vpid);
4f45f9bb 655
ca9f27f3
FD
656 event_get_payload_unsigned_integer_field_value(event,
657 BADDR_FIELD_NAME, &baddr);
4f45f9bb 658
ca9f27f3
FD
659 event_get_payload_unsigned_integer_field_value(event,
660 CRC32_FIELD_NAME, &crc_field_value);
4f45f9bb 661
ca9f27f3
FD
662 crc32 = (uint32_t) crc_field_value;
663
664 event_get_payload_string_field_value(event,
665 FILENAME_FIELD_NAME, &filename);
4f45f9bb
JD
666
667 proc_dbg_info_src = proc_debug_info_sources_ht_get_entry(
668 debug_info->vpid_to_proc_dbg_info_src, vpid);
669 if (!proc_dbg_info_src) {
670 goto end;
671 }
672
673 bin = g_hash_table_lookup(proc_dbg_info_src->baddr_to_bin_info,
674 (gpointer) &baddr);
675 if (!bin) {
676 /*
677 * The debug_link event comes after the bin has been
678 * created. If it isn't found, just ignore this event.
679 */
680 goto end;
681 }
682
683 bin_info_set_debug_link(bin, filename, crc32);
684
685end:
686 return;
687}
688
689static
ca9f27f3 690void handle_bin_info_event(struct debug_info *debug_info,
b19ff26f 691 const bt_event *event, bool has_pic_field)
4f45f9bb
JD
692{
693 struct proc_debug_info_sources *proc_dbg_info_src;
694 struct bin_info *bin;
695 uint64_t baddr, memsz;
696 int64_t vpid;
697 const char *path;
698 gpointer key = NULL;
699 bool is_pic;
4f45f9bb 700
ca9f27f3
FD
701 event_get_payload_unsigned_integer_field_value(event,
702 MEMSZ_FIELD_NAME, &memsz);
703 if (memsz == 0) {
704 /* Ignore VDSO. */
4f45f9bb
JD
705 goto end;
706 }
707
ca9f27f3
FD
708 event_get_payload_unsigned_integer_field_value(event,
709 BADDR_FIELD_NAME, &baddr);
4f45f9bb 710
65db8b88
JD
711 /*
712 * This field is not produced by the dlopen event emitted before
713 * lttng-ust 2.9.
714 */
ca9f27f3 715 if (!event_has_payload_field(event, PATH_FIELD_NAME)) {
4f45f9bb
JD
716 goto end;
717 }
ca9f27f3 718 event_get_payload_string_field_value(event, PATH_FIELD_NAME, &path);
4f45f9bb
JD
719
720 if (has_pic_field) {
ca9f27f3 721 uint64_t is_pic_field_value;
4f45f9bb 722
ca9f27f3 723 event_get_payload_unsigned_integer_field_value(event,
1e638f98 724 IS_PIC_FIELD_NAME, &is_pic_field_value);
ca9f27f3 725 is_pic = is_pic_field_value == 1;
4f45f9bb
JD
726 } else {
727 /*
728 * dlopen has no is_pic field, because the shared
729 * object is always PIC.
730 */
731 is_pic = true;
732 }
733
ca9f27f3 734 event_get_common_context_signed_integer_field_value(event,
c4838cef 735 VPID_FIELD_NAME, &vpid);
4f45f9bb
JD
736
737 proc_dbg_info_src = proc_debug_info_sources_ht_get_entry(
1e638f98 738 debug_info->vpid_to_proc_dbg_info_src, vpid);
4f45f9bb
JD
739 if (!proc_dbg_info_src) {
740 goto end;
741 }
742
743 key = g_new0(uint64_t, 1);
744 if (!key) {
745 goto end;
746 }
747
748 *((uint64_t *) key) = baddr;
749
1e638f98 750 bin = g_hash_table_lookup(proc_dbg_info_src->baddr_to_bin_info, key);
4f45f9bb
JD
751 if (bin) {
752 goto end;
753 }
754
1e638f98 755 bin = bin_info_create(debug_info->fd_cache, path, baddr, memsz, is_pic,
9d325e17
PP
756 debug_info->comp->arg_debug_dir,
757 debug_info->comp->arg_target_prefix);
4f45f9bb
JD
758 if (!bin) {
759 goto end;
760 }
761
1e638f98 762 g_hash_table_insert(proc_dbg_info_src->baddr_to_bin_info, key, bin);
4f45f9bb
JD
763 /* Ownership passed to ht. */
764 key = NULL;
765
766end:
767 g_free(key);
768 return;
769}
770
771static inline
ca9f27f3 772void handle_event_statedump_bin_info(struct debug_info *debug_info,
b19ff26f 773 const bt_event *event)
4f45f9bb 774{
ca9f27f3 775 handle_bin_info_event(debug_info, event, true);
4f45f9bb
JD
776}
777
778static inline
ca9f27f3 779void handle_event_lib_load(struct debug_info *debug_info,
b19ff26f 780 const bt_event *event)
4f45f9bb 781{
ca9f27f3 782 handle_bin_info_event(debug_info, event, false);
4f45f9bb
JD
783}
784
ca9f27f3
FD
785static
786void handle_event_lib_unload(struct debug_info *debug_info,
b19ff26f 787 const bt_event *event)
4f45f9bb 788{
ca9f27f3 789 gboolean ret;
4f45f9bb
JD
790 struct proc_debug_info_sources *proc_dbg_info_src;
791 uint64_t baddr;
792 int64_t vpid;
4f45f9bb 793
ca9f27f3
FD
794 event_get_payload_unsigned_integer_field_value(event, BADDR_FIELD_NAME,
795 &baddr);
4f45f9bb 796
ca9f27f3
FD
797 event_get_common_context_signed_integer_field_value(event,
798 VPID_FIELD_NAME, &vpid);
4f45f9bb
JD
799
800 proc_dbg_info_src = proc_debug_info_sources_ht_get_entry(
801 debug_info->vpid_to_proc_dbg_info_src, vpid);
802 if (!proc_dbg_info_src) {
ca9f27f3
FD
803 /*
804 * It's an unload event for a library for which no load event
805 * was previously received.
806 */
4f45f9bb
JD
807 goto end;
808 }
809
ca9f27f3
FD
810 ret = g_hash_table_remove(proc_dbg_info_src->baddr_to_bin_info,
811 (gpointer) &baddr);
812 BT_ASSERT(ret);
4f45f9bb
JD
813end:
814 return;
815}
816
817static
ca9f27f3 818void handle_event_statedump_start(struct debug_info *debug_info,
b19ff26f 819 const bt_event *event)
4f45f9bb
JD
820{
821 struct proc_debug_info_sources *proc_dbg_info_src;
822 int64_t vpid;
4f45f9bb 823
ca9f27f3
FD
824 event_get_common_context_signed_integer_field_value(
825 event, VPID_FIELD_NAME, &vpid);
4f45f9bb
JD
826
827 proc_dbg_info_src = proc_debug_info_sources_ht_get_entry(
828 debug_info->vpid_to_proc_dbg_info_src, vpid);
829 if (!proc_dbg_info_src) {
830 goto end;
831 }
832
833 g_hash_table_remove_all(proc_dbg_info_src->baddr_to_bin_info);
834 g_hash_table_remove_all(proc_dbg_info_src->ip_to_debug_info_src);
835
836end:
837 return;
838}
839
ca9f27f3
FD
840void trace_debug_info_remove_func(const bt_trace *in_trace, void *data)
841{
842 struct debug_info_msg_iter *debug_it = data;
843 if (debug_it->debug_info_map) {
844 gboolean ret;
845 ret = g_hash_table_remove(debug_it->debug_info_map,
846 (gpointer) in_trace);
847 BT_ASSERT(ret);
848 }
849}
850
851static
852void handle_event_statedump(struct debug_info_msg_iter *debug_it,
853 const bt_event *event)
4f45f9bb 854{
b19ff26f 855 const bt_event_class *event_class;
4f45f9bb
JD
856 const char *event_name;
857 GQuark q_event_name;
ca9f27f3
FD
858 const bt_trace *trace;
859 struct debug_info *debug_info;
860
861 BT_ASSERT(debug_it);
862 BT_ASSERT(event);
863
864 event_class = bt_event_borrow_class_const(event);
4f45f9bb 865
50842bdc 866 event_name = bt_event_class_get_name(event_class);
ca9f27f3
FD
867
868 trace = bt_stream_borrow_trace_const(
869 bt_event_borrow_stream_const(event));
870
871 debug_info = g_hash_table_lookup(debug_it->debug_info_map, trace);
872 if (!debug_info) {
873 debug_info = debug_info_create(debug_it->debug_info_component,
1e638f98 874 trace, &debug_it->fd_cache);
ca9f27f3
FD
875 g_hash_table_insert(debug_it->debug_info_map, (gpointer) trace,
876 debug_info);
877 bt_trace_add_destruction_listener(trace,
878 trace_debug_info_remove_func, debug_it,
879 &debug_info->destruction_listener_id);
4f45f9bb 880 }
ca9f27f3 881
4f45f9bb
JD
882 q_event_name = g_quark_try_string(event_name);
883
884 if (q_event_name == debug_info->q_statedump_bin_info) {
885 /* State dump */
ca9f27f3 886 handle_event_statedump_bin_info(debug_info, event);
4f45f9bb
JD
887 } else if (q_event_name == debug_info->q_dl_open ||
888 q_event_name == debug_info->q_lib_load) {
889 /*
890 * dl_open and lib_load events are both checked for since
891 * only dl_open was produced as of lttng-ust 2.8.
892 *
893 * lib_load, which is produced from lttng-ust 2.9+, is a lot
894 * more reliable since it will be emitted when other functions
895 * of the dlopen family are called (e.g. dlmopen) and when
896 * library are transitively loaded.
897 */
ca9f27f3 898 handle_event_lib_load(debug_info, event);
4f45f9bb
JD
899 } else if (q_event_name == debug_info->q_statedump_start) {
900 /* Start state dump */
ca9f27f3 901 handle_event_statedump_start(debug_info, event);
4f45f9bb
JD
902 } else if (q_event_name == debug_info->q_statedump_debug_link) {
903 /* Debug link info */
ca9f27f3 904 handle_event_statedump_debug_link(debug_info, event);
4f45f9bb
JD
905 } else if (q_event_name == debug_info->q_statedump_build_id) {
906 /* Build ID info */
ca9f27f3 907 handle_event_statedump_build_id(debug_info, event);
4f45f9bb 908 } else if (q_event_name == debug_info-> q_lib_unload) {
ca9f27f3
FD
909 handle_event_lib_unload(debug_info, event);
910 }
911
912 return;
913}
914
915static
916void destroy_debug_info_comp(struct debug_info_component *debug_info)
917{
06d1cf5d
FD
918 if (!debug_info) {
919 return;
920 }
921
922 g_free(debug_info->arg_debug_dir);
923 g_free(debug_info->arg_debug_info_field_name);
924 g_free(debug_info->arg_target_prefix);
ca9f27f3
FD
925 g_free(debug_info);
926}
927
928static
929void fill_debug_info_bin_field(struct debug_info_source *dbg_info_src,
930 bool full_path, bt_field *curr_field)
931{
932 bt_field_status status;
933
934 BT_ASSERT(bt_field_get_class_type(curr_field) ==
935 BT_FIELD_CLASS_TYPE_STRING);
936
937 if (dbg_info_src) {
938 if (full_path) {
939 status = bt_field_string_set_value(curr_field,
940 dbg_info_src->bin_path);
941 } else {
942 status = bt_field_string_set_value(curr_field,
943 dbg_info_src->short_bin_path);
944 }
945 if (status != BT_FIELD_STATUS_OK) {
946 BT_LOGE("Cannot set path component of \"bin\" "
947 "curr_field field's value: str-fc-addr=%p",
948 curr_field);
949 }
950
ca9f27f3
FD
951 status = bt_field_string_append(curr_field, dbg_info_src->bin_loc);
952 if (status != BT_FIELD_STATUS_OK) {
953 BT_LOGE("Cannot set bin location component of \"bin\" "
954 "curr_field field's value: str-fc-addr=%p",
955 curr_field);
956 }
957 } else {
958 status = bt_field_string_set_value(curr_field, "");
959 if (status != BT_FIELD_STATUS_OK) {
960 BT_LOGE("Cannot set \"bin\" curr_field field's value: "
961 "str-fc-addr=%p", curr_field);
962 }
963 }
964}
965
966static
967void fill_debug_info_func_field(struct debug_info_source *dbg_info_src,
968 bt_field *curr_field)
969{
970 bt_field_status status;
971
972 BT_ASSERT(bt_field_get_class_type(curr_field) ==
973 BT_FIELD_CLASS_TYPE_STRING);
974 if (dbg_info_src && dbg_info_src->func) {
975 status = bt_field_string_set_value(curr_field,
976 dbg_info_src->func);
977 } else {
978 status = bt_field_string_set_value(curr_field, "");
979 }
980 if (status != BT_FIELD_STATUS_OK) {
981 BT_LOGE("Cannot set \"func\" curr_field field's value: "
982 "str-fc-addr=%p", curr_field);
983 }
984}
985
986static
987void fill_debug_info_src_field(struct debug_info_source *dbg_info_src,
988 bool full_path, bt_field *curr_field)
989{
990 bt_field_status status;
991
992 BT_ASSERT(bt_field_get_class_type(curr_field) ==
993 BT_FIELD_CLASS_TYPE_STRING);
994
995 if (dbg_info_src && dbg_info_src->src_path) {
996 if (full_path) {
997 status = bt_field_string_set_value(curr_field,
998 dbg_info_src->src_path);
999 } else {
1000 status = bt_field_string_set_value(curr_field,
1001 dbg_info_src->short_src_path);
1002 }
1003 if (status != BT_FIELD_STATUS_OK) {
1004 BT_LOGE("Cannot set path component of \"src\" "
1005 "curr_field field's value: str-fc-addr=%p",
1006 curr_field);
1007 }
1008
1009 status = bt_field_string_append(curr_field, ":");
1010 if (status != BT_FIELD_STATUS_OK) {
1011 BT_LOGE("Cannot set colon component of \"src\" "
1012 "curr_field field's value: str-fc-addr=%p",
1013 curr_field);
1014 }
1015
1016 status = bt_field_string_append(curr_field, dbg_info_src->line_no);
1017 if (status != BT_FIELD_STATUS_OK) {
1018 BT_LOGE("Cannot set line number component of \"src\" "
1019 "curr_field field's value: str-fc-addr=%p",
1020 curr_field);
1021 }
1022 } else {
1023 status = bt_field_string_set_value(curr_field, "");
1024 if (status != BT_FIELD_STATUS_OK) {
1025 BT_LOGE("Cannot set \"src\" curr_field field's value: "
1026 "str-fc-addr=%p", curr_field);
1027 }
1028 }
1029}
1030
1031void fill_debug_info_field_empty(bt_field *debug_info_field)
1032{
1033 bt_field_status status;
1034 bt_field *bin_field, *func_field, *src_field;
1035
1036 BT_ASSERT(bt_field_get_class_type(debug_info_field) ==
1037 BT_FIELD_CLASS_TYPE_STRUCTURE);
1038
1039 bin_field = bt_field_structure_borrow_member_field_by_name(
1040 debug_info_field, "bin");
1041 func_field = bt_field_structure_borrow_member_field_by_name(
1042 debug_info_field, "func");
1043 src_field = bt_field_structure_borrow_member_field_by_name(
1044 debug_info_field, "src");
1045
1046 BT_ASSERT(bt_field_get_class_type(bin_field) ==
1047 BT_FIELD_CLASS_TYPE_STRING);
1048 BT_ASSERT(bt_field_get_class_type(func_field) ==
1049 BT_FIELD_CLASS_TYPE_STRING);
1050 BT_ASSERT(bt_field_get_class_type(src_field) ==
1051 BT_FIELD_CLASS_TYPE_STRING);
1052
1053 status = bt_field_string_set_value(bin_field, "");
1054 if (status != BT_FIELD_STATUS_OK) {
1055 BT_LOGE("Cannot set \"bin\" bin_field field's value: "
1056 "str-fc-addr=%p", bin_field);
1057 }
1058
1059 status = bt_field_string_set_value(func_field, "");
1060 if (status != BT_FIELD_STATUS_OK) {
1061 BT_LOGE("Cannot set \"func\" func_field field's value: "
1062 "str-fc-addr=%p", func_field);
1063 }
1064
1065 status = bt_field_string_set_value(src_field, "");
1066 if (status != BT_FIELD_STATUS_OK) {
1067 BT_LOGE("Cannot set \"src\" src_field field's value: "
1068 "str-fc-addr=%p", src_field);
1069 }
1070}
1071static
1072void fill_debug_info_field(struct debug_info *debug_info, int64_t vpid,
1073 uint64_t ip, bt_field *debug_info_field)
1074{
1075 struct debug_info_source *dbg_info_src;
1076 const bt_field_class *debug_info_fc;
1077
1078 BT_ASSERT(bt_field_get_class_type(debug_info_field) ==
1079 BT_FIELD_CLASS_TYPE_STRUCTURE);
1080
1081 debug_info_fc = bt_field_borrow_class_const(debug_info_field);
1082
1083 BT_ASSERT(bt_field_class_structure_get_member_count(debug_info_fc) == 3);
1084
1085 dbg_info_src = debug_info_query(debug_info, vpid, ip);
1086
1087 fill_debug_info_bin_field(dbg_info_src, debug_info->comp->arg_full_path,
1088 bt_field_structure_borrow_member_field_by_name(
1089 debug_info_field, "bin"));
1090 fill_debug_info_func_field(dbg_info_src,
1091 bt_field_structure_borrow_member_field_by_name(
1092 debug_info_field, "func"));
1093 fill_debug_info_src_field(dbg_info_src, debug_info->comp->arg_full_path,
1094 bt_field_structure_borrow_member_field_by_name(
1095 debug_info_field, "src"));
1096}
1097
1098static
1099void fill_debug_info_event_if_needed(struct debug_info_msg_iter *debug_it,
1100 const bt_event *in_event, bt_event *out_event)
1101{
1102 bt_field *out_common_ctx_field, *out_debug_info_field;
1103 const bt_field *vpid_field, *ip_field, *in_common_ctx_field;
1104 const bt_field_class *in_common_ctx_fc;
1105 struct debug_info *debug_info;
1106 uint64_t vpid;
1107 int64_t ip;
06d1cf5d 1108 gchar *debug_info_field_name =
ca9f27f3
FD
1109 debug_it->debug_info_component->arg_debug_info_field_name;
1110
1111 in_common_ctx_field = bt_event_borrow_common_context_field_const(
1112 in_event);
1113 if (!in_common_ctx_field) {
1114 /*
1115 * There is no event common context so no need to add debug
1116 * info field.
1117 */
1118 goto end;
1119 }
1120
1121 in_common_ctx_fc = bt_field_borrow_class_const(in_common_ctx_field);
1122 if (!is_event_common_ctx_dbg_info_compatible(in_common_ctx_fc,
1123 debug_it->ir_maps->debug_info_field_class_name)) {
1124 /*
1125 * The input event common context does not have the necessary
1126 * fields to resolve debug information.
1127 */
1128 goto end;
1129 }
1130
1131 /* Borrow the debug-info field. */
1132 out_common_ctx_field = bt_event_borrow_common_context_field(out_event);
1133 if (!out_common_ctx_field) {
1134 goto end;
4f45f9bb
JD
1135 }
1136
ca9f27f3
FD
1137 out_debug_info_field = bt_field_structure_borrow_member_field_by_name(
1138 out_common_ctx_field, debug_info_field_name);
1139
1140 vpid_field = bt_field_structure_borrow_member_field_by_name_const(
1141 out_common_ctx_field, VPID_FIELD_NAME);
1142 ip_field = bt_field_structure_borrow_member_field_by_name_const(
1143 out_common_ctx_field, IP_FIELD_NAME);
1144
1145 vpid = bt_field_signed_integer_get_value(vpid_field);
1146 ip = bt_field_unsigned_integer_get_value(ip_field);
1147
1148 /*
1149 * Borrow the debug_info structure needed for the source
1150 * resolving.
1151 */
1152 debug_info = g_hash_table_lookup(debug_it->debug_info_map,
1153 bt_stream_borrow_trace_const(
1154 bt_event_borrow_stream_const(in_event)));
1155
1156 if (debug_info) {
1157 /*
1158 * Perform the debug-info resolving and set the event fields
1159 * accordingly.
1160 */
1161 fill_debug_info_field(debug_info, vpid, ip, out_debug_info_field);
1162 } else {
1163 BT_LOGD("No debug information for this trace. Setting debug "
1164 "info fields to empty strings.");
1165 fill_debug_info_field_empty(out_debug_info_field);
1166 }
4f45f9bb
JD
1167end:
1168 return;
1169}
ca9f27f3
FD
1170
1171static
1172void update_event_statedump_if_needed(struct debug_info_msg_iter *debug_it,
1173 const bt_event *in_event)
1174{
1175 const bt_field *event_common_ctx;
1176 const bt_field_class *event_common_ctx_fc;
1177 const bt_event_class *in_event_class = bt_event_borrow_class_const(in_event);
1178
1179 /*
1180 * If the event is an lttng_ust_statedump event AND has the right event
1181 * common context fields update the debug-info view for this process.
1182 */
1183 event_common_ctx = bt_event_borrow_common_context_field_const(in_event);
1184 if (!event_common_ctx) {
1185 goto end;
1186 }
1187
1188 event_common_ctx_fc = bt_field_borrow_class_const(event_common_ctx);
1189 if (is_event_common_ctx_dbg_info_compatible(event_common_ctx_fc,
1190 debug_it->ir_maps->debug_info_field_class_name)) {
1191 /* Checkout if it might be a one of lttng ust statedump events. */
1192 const char *in_event_name = bt_event_class_get_name(in_event_class);
1193 if (strncmp(in_event_name, LTTNG_UST_STATEDUMP_PREFIX,
1194 strlen(LTTNG_UST_STATEDUMP_PREFIX)) == 0) {
1195 /* Handle statedump events. */
1196 handle_event_statedump(debug_it, in_event);
1197 }
1198 }
1199end:
1200 return;
1201}
1202
1203static
1204bt_message *handle_event_message(struct debug_info_msg_iter *debug_it,
1205 const bt_message *in_message)
1206{
1207 const bt_clock_snapshot *cs;
1208 const bt_clock_class *default_cc;
1209 const bt_packet *in_packet;
ca9f27f3
FD
1210 bt_event_class *out_event_class;
1211 bt_packet *out_packet;
1212 bt_event *out_event;
1213
1214 bt_message *out_message = NULL;
1215
1216 /* Borrow the input event and its event class. */
1217 const bt_event *in_event =
1218 bt_message_event_borrow_event_const(in_message);
1219 const bt_event_class *in_event_class =
1220 bt_event_borrow_class_const(in_event);
1221
1222 update_event_statedump_if_needed(debug_it, in_event);
1223
1224 out_event_class = trace_ir_mapping_borrow_mapped_event_class(
1225 debug_it->ir_maps, in_event_class);
1226 if (!out_event_class) {
1227 out_event_class = trace_ir_mapping_create_new_mapped_event_class(
1228 debug_it->ir_maps, in_event_class);
1229 }
1230 BT_ASSERT(out_event_class);
1231
1232 /* Borrow the input and output packets. */
1233 in_packet = bt_event_borrow_packet_const(in_event);
1234 out_packet = trace_ir_mapping_borrow_mapped_packet(debug_it->ir_maps,
1235 in_packet);
1236
1237 default_cc = bt_stream_class_borrow_default_clock_class_const(
1238 bt_event_class_borrow_stream_class_const(in_event_class));
1239 if (default_cc) {
1240 /* Borrow event clock snapshot. */
0cbc2c33
PP
1241 cs = bt_message_event_borrow_default_clock_snapshot_const(
1242 in_message);
ca9f27f3
FD
1243
1244 /* Create an output event message. */
ca9f27f3
FD
1245 out_message = bt_message_event_create_with_default_clock_snapshot(
1246 debug_it->input_iterator,
1247 out_event_class, out_packet,
1248 bt_clock_snapshot_get_value(cs));
1249 } else {
1250 out_message = bt_message_event_create(debug_it->input_iterator,
1251 out_event_class, out_packet);
1252 }
1253
1254 if (!out_message) {
1255 BT_LOGE("Error creating output event message.");
1256 goto error;
1257 }
1258
1259 out_event = bt_message_event_borrow_event(out_message);
1260
1261 /* Copy the original fields to the output event. */
1262 copy_event_content(in_event, out_event);
1263
1264 /*
1265 * Try to set the debug-info fields based on debug information that is
1266 * gathered so far.
1267 */
1268 fill_debug_info_event_if_needed(debug_it, in_event, out_event);
1269
1270error:
1271 return out_message;
1272}
1273
1274static
1275bt_message *handle_stream_begin_message(struct debug_info_msg_iter *debug_it,
1276 const bt_message *in_message)
1277{
1278 const bt_stream *in_stream;
1279 bt_message *out_message;
1280 bt_stream *out_stream;
1281
1282 in_stream = bt_message_stream_beginning_borrow_stream_const(in_message);
1283 BT_ASSERT(in_stream);
1284
1285 /* Create a duplicated output stream. */
1286 out_stream = trace_ir_mapping_create_new_mapped_stream(
1287 debug_it->ir_maps, in_stream);
1288 if (!out_stream) {
1289 out_message = NULL;
1290 goto error;
1291 }
1292
1293 /* Create an output stream beginning message. */
1294 out_message = bt_message_stream_beginning_create(
1295 debug_it->input_iterator, out_stream);
1296 if (!out_message) {
1297 BT_LOGE("Error creating output stream beginning message: "
1298 "out-s-addr=%p", out_stream);
1299 }
1300error:
1301 return out_message;
1302}
1303
1304static
1305bt_message *handle_stream_end_message(struct debug_info_msg_iter *debug_it,
1306 const bt_message *in_message)
1307{
1308 const bt_stream *in_stream;
1309 bt_message *out_message = NULL;
1310 bt_stream *out_stream;
1311
1312 in_stream = bt_message_stream_end_borrow_stream_const(in_message);
1313 BT_ASSERT(in_stream);
1314
1315 out_stream = trace_ir_mapping_borrow_mapped_stream(
1316 debug_it->ir_maps, in_stream);
1317 BT_ASSERT(out_stream);
1318
1319 /* Create an output stream end message. */
1320 out_message = bt_message_stream_end_create(debug_it->input_iterator,
1321 out_stream);
1322 if (!out_message) {
1323 BT_LOGE("Error creating output stream end message: out-s-addr=%p",
1324 out_stream);
1325 }
1326
1327 /* Remove stream from trace mapping hashtable. */
1328 trace_ir_mapping_remove_mapped_stream(debug_it->ir_maps, in_stream);
1329
1330 return out_message;
1331}
1332
1333static
1334bt_message *handle_packet_begin_message(struct debug_info_msg_iter *debug_it,
1335 const bt_message *in_message)
1336{
1337 const bt_clock_class *default_cc;
ca9f27f3
FD
1338 const bt_clock_snapshot *cs;
1339 bt_message *out_message = NULL;
1340 bt_packet *out_packet;
1341
1342 const bt_packet *in_packet =
1343 bt_message_packet_beginning_borrow_packet_const(in_message);
1344 BT_ASSERT(in_packet);
1345
1346 /* This packet should not be already mapped. */
1347 BT_ASSERT(!trace_ir_mapping_borrow_mapped_packet(
1348 debug_it->ir_maps, in_packet));
1349
1350 out_packet = trace_ir_mapping_create_new_mapped_packet(debug_it->ir_maps,
1351 in_packet);
1352
1353 BT_ASSERT(out_packet);
1354
1355 default_cc = bt_stream_class_borrow_default_clock_class_const(
1356 bt_stream_borrow_class_const(
1357 bt_packet_borrow_stream_const(in_packet)));
1358 if (default_cc) {
1359 /* Borrow clock snapshot. */
0cbc2c33
PP
1360 cs = bt_message_packet_beginning_borrow_default_clock_snapshot_const(
1361 in_message);
ca9f27f3
FD
1362
1363 /* Create an output packet beginning message. */
ca9f27f3
FD
1364 out_message = bt_message_packet_beginning_create_with_default_clock_snapshot(
1365 debug_it->input_iterator, out_packet,
1366 bt_clock_snapshot_get_value(cs));
1367 } else {
1368 out_message = bt_message_packet_beginning_create(
1369 debug_it->input_iterator, out_packet);
1370 }
1371 if (!out_message) {
1372 BT_LOGE("Error creating output packet beginning message: "
1373 "out-p-addr=%p", out_packet);
1374 }
1375
1376 return out_message;
1377}
1378
1379static
1380bt_message *handle_packet_end_message(struct debug_info_msg_iter *debug_it,
1381 const bt_message *in_message)
1382{
1383 const bt_clock_snapshot *cs;
1384 const bt_packet *in_packet;
1385 const bt_clock_class *default_cc;
ca9f27f3
FD
1386 bt_message *out_message = NULL;
1387 bt_packet *out_packet;
1388
1389 in_packet = bt_message_packet_end_borrow_packet_const(in_message);
1390 BT_ASSERT(in_packet);
1391
1392 out_packet = trace_ir_mapping_borrow_mapped_packet(debug_it->ir_maps, in_packet);
1393 BT_ASSERT(out_packet);
1394
1395 default_cc = bt_stream_class_borrow_default_clock_class_const(
1396 bt_stream_borrow_class_const(
1397 bt_packet_borrow_stream_const(in_packet)));
1398 if (default_cc) {
1399 /* Borrow clock snapshot. */
0cbc2c33
PP
1400 cs = bt_message_packet_end_borrow_default_clock_snapshot_const(
1401 in_message);
ca9f27f3
FD
1402
1403 /* Create an outpute packet end message. */
ca9f27f3
FD
1404 out_message = bt_message_packet_end_create_with_default_clock_snapshot(
1405 debug_it->input_iterator, out_packet,
1406 bt_clock_snapshot_get_value(cs));
1407 } else {
1408 out_message = bt_message_packet_end_create(
1409 debug_it->input_iterator, out_packet);
1410 }
1411
1412 if (!out_message) {
1413 BT_LOGE("Error creating output packet end message: "
1414 "out-p-addr=%p", out_packet);
1415 }
1416
1417 /* Remove packet from data mapping hashtable. */
1418 trace_ir_mapping_remove_mapped_packet(debug_it->ir_maps, in_packet);
1419
1420 return out_message;
1421}
1422
1423static
1424bt_message *handle_msg_iterator_inactivity(struct debug_info_msg_iter *debug_it,
1425 const bt_message *in_message)
1426{
1427 /*
1428 * This message type can be forwarded directly because it does
1429 * not refer to any objects in the trace class.
1430 */
1431 bt_message_get_ref(in_message);
1432 return (bt_message*) in_message;
1433}
1434
1435static
1436bt_message *handle_stream_act_begin_message(struct debug_info_msg_iter *debug_it,
1437 const bt_message *in_message)
1438{
1439 const bt_clock_snapshot *cs;
1440 const bt_clock_class *default_cc;
1441 bt_message *out_message = NULL;
1442 bt_stream *out_stream;
1443 uint64_t cs_value;
1444 bt_message_stream_activity_clock_snapshot_state cs_state;
1445
1446 const bt_stream *in_stream =
1447 bt_message_stream_activity_beginning_borrow_stream_const(
1448 in_message);
1449 BT_ASSERT(in_stream);
1450
1451 out_stream = trace_ir_mapping_borrow_mapped_stream(debug_it->ir_maps,
1452 in_stream);
1453 BT_ASSERT(out_stream);
1454
1455 out_message = bt_message_stream_activity_beginning_create(
1456 debug_it->input_iterator, out_stream);
1457 if (!out_message) {
1458 BT_LOGE("Error creating output stream activity beginning "
1459 "message: out-s-addr=%p", out_stream);
1460 goto error;
1461 }
1462
1463 default_cc = bt_stream_class_borrow_default_clock_class_const(
1464 bt_stream_borrow_class_const(in_stream));
1465 if (default_cc) {
1466 /* Borrow clock snapshot. */
1467 cs_state =
1468 bt_message_stream_activity_beginning_borrow_default_clock_snapshot_const(
1469 in_message, &cs);
1470
1471 if (cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN) {
1472 cs_value = bt_clock_snapshot_get_value(cs);
1473 bt_message_stream_activity_beginning_set_default_clock_snapshot(
1474 out_message, cs_value);
1475 } else {
1476 bt_message_stream_activity_beginning_set_default_clock_snapshot_state(
1477 out_message, cs_state);
1478 }
1479 }
1480
1481error:
1482 return out_message;
1483}
1484
1485static
1486bt_message *handle_stream_act_end_message(struct debug_info_msg_iter *debug_it,
1487 const bt_message *in_message)
1488{
1489 const bt_clock_snapshot *cs;
1490 const bt_clock_class *default_cc;
1491 const bt_stream *in_stream;
1492 bt_message *out_message;
1493 bt_stream *out_stream;
1494 uint64_t cs_value;
1495 bt_message_stream_activity_clock_snapshot_state cs_state;
1496
1497 in_stream = bt_message_stream_activity_end_borrow_stream_const(
1498 in_message);
1499 BT_ASSERT(in_stream);
1500
cbba2996
FD
1501 out_stream = trace_ir_mapping_borrow_mapped_stream(debug_it->ir_maps,
1502 in_stream);
ca9f27f3
FD
1503 BT_ASSERT(out_stream);
1504
1505 out_message = bt_message_stream_activity_end_create(
1506 debug_it->input_iterator, out_stream);
1507 if (!out_message) {
1508 BT_LOGE("Error creating output stream activity end message: "
1509 "out-s-addr=%p", out_stream);
1510 goto error;
1511 }
1512
1513 default_cc = bt_stream_class_borrow_default_clock_class_const(
1514 bt_stream_borrow_class_const(in_stream));
1515
1516 if (default_cc) {
1517 cs_state =
1518 bt_message_stream_activity_end_borrow_default_clock_snapshot_const(
1519 in_message, &cs);
1520
1521 if (cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN ) {
1522 cs_value = bt_clock_snapshot_get_value(cs);
1523 bt_message_stream_activity_end_set_default_clock_snapshot(
1524 out_message, cs_value);
1525 } else {
1526 bt_message_stream_activity_end_set_default_clock_snapshot_state(
1527 out_message, cs_state);
1528 }
1529 }
1530
1531error:
1532 return out_message;
1533}
1534
1535static
1536bt_message *handle_discarded_events_message(struct debug_info_msg_iter *debug_it,
1537 const bt_message *in_message)
1538{
1539 const bt_clock_snapshot *begin_cs, *end_cs;
1540 const bt_stream *in_stream;
1541 const bt_clock_class *default_cc;
1542 uint64_t discarded_events, begin_cs_value, end_cs_value;
ca9f27f3
FD
1543 bt_property_availability prop_avail;
1544 bt_message *out_message = NULL;
1545 bt_stream *out_stream;
1546
1547 in_stream = bt_message_discarded_events_borrow_stream_const(
1548 in_message);
1549 BT_ASSERT(in_stream);
1550
1551 out_stream = trace_ir_mapping_borrow_mapped_stream(
1552 debug_it->ir_maps, in_stream);
1553 BT_ASSERT(out_stream);
1554
1555 default_cc = bt_stream_class_borrow_default_clock_class_const(
1556 bt_stream_borrow_class_const(in_stream));
1557 if (default_cc) {
0cbc2c33 1558 begin_cs =
ca9f27f3 1559 bt_message_discarded_events_borrow_default_beginning_clock_snapshot_const(
0cbc2c33
PP
1560 in_message);
1561 end_cs =
ca9f27f3 1562 bt_message_discarded_events_borrow_default_end_clock_snapshot_const(
0cbc2c33 1563 in_message);
ca9f27f3
FD
1564
1565 begin_cs_value = bt_clock_snapshot_get_value(begin_cs);
1566 end_cs_value = bt_clock_snapshot_get_value(end_cs);
1567
1568 out_message =
1569 bt_message_discarded_events_create_with_default_clock_snapshots(
1570 debug_it->input_iterator, out_stream,
1571 begin_cs_value, end_cs_value);
1572 } else {
1573 out_message = bt_message_discarded_events_create(
1574 debug_it->input_iterator, out_stream);
1575 }
1576 if (!out_message) {
1577 BT_LOGE("Error creating output discarded events message: "
1578 "out-s-addr=%p", out_stream);
1579 goto error;
1580 }
1581
1582 prop_avail = bt_message_discarded_events_get_count(in_message,
1583 &discarded_events);
1584
1585 if (prop_avail == BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE) {
1586 bt_message_discarded_events_set_count(out_message,
1587 discarded_events);
1588 }
1589
1590error:
1591 return out_message;
1592}
1593
1594static
1595bt_message *handle_discarded_packets_message(struct debug_info_msg_iter *debug_it,
1596 const bt_message *in_message)
1597{
1598 const bt_clock_snapshot *begin_cs, *end_cs;
1599 const bt_clock_class *default_cc;
1600 const bt_stream *in_stream;
1601 uint64_t discarded_packets, begin_cs_value, end_cs_value;
ca9f27f3
FD
1602 bt_property_availability prop_avail;
1603 bt_message *out_message = NULL;
1604 bt_stream *out_stream;
1605
1606 in_stream = bt_message_discarded_packets_borrow_stream_const(
1607 in_message);
1608 BT_ASSERT(in_stream);
1609
1610 out_stream = trace_ir_mapping_borrow_mapped_stream(
1611 debug_it->ir_maps, in_stream);
1612 BT_ASSERT(out_stream);
1613
1614 default_cc = bt_stream_class_borrow_default_clock_class_const(
1615 bt_stream_borrow_class_const(in_stream));
1616 if (default_cc) {
0cbc2c33 1617 begin_cs =
ca9f27f3 1618 bt_message_discarded_packets_borrow_default_beginning_clock_snapshot_const(
0cbc2c33 1619 in_message);
ca9f27f3 1620
0cbc2c33 1621 end_cs =
ca9f27f3 1622 bt_message_discarded_packets_borrow_default_end_clock_snapshot_const(
0cbc2c33 1623 in_message);
ca9f27f3
FD
1624
1625 begin_cs_value = bt_clock_snapshot_get_value(begin_cs);
1626 end_cs_value = bt_clock_snapshot_get_value(end_cs);
1627
1628 out_message = bt_message_discarded_packets_create_with_default_clock_snapshots(
1629 debug_it->input_iterator, out_stream,
1630 begin_cs_value, end_cs_value);
1631 } else {
1632 out_message = bt_message_discarded_packets_create(
1633 debug_it->input_iterator, out_stream);
1634 }
1635 if (!out_message) {
1636 BT_LOGE("Error creating output discarded packet message: "
1637 "out-s-addr=%p", out_stream);
1638 goto error;
1639 }
1640
1641 prop_avail = bt_message_discarded_packets_get_count(in_message,
1642 &discarded_packets);
1643 if (prop_avail == BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE) {
1644 bt_message_discarded_packets_set_count(out_message,
1645 discarded_packets);
1646 }
1647
1648error:
1649 return out_message;
1650}
1651
1652static
1653const bt_message *handle_message(struct debug_info_msg_iter *debug_it,
1654 const bt_message *in_message)
1655{
1656 bt_message *out_message = NULL;
1657
1658 switch (bt_message_get_type(in_message)) {
1659 case BT_MESSAGE_TYPE_EVENT:
1660 out_message = handle_event_message(debug_it,
1661 in_message);
1662 break;
1663 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
1664 out_message = handle_packet_begin_message(debug_it,
1665 in_message);
1666 break;
1667 case BT_MESSAGE_TYPE_PACKET_END:
1668 out_message = handle_packet_end_message(debug_it,
1669 in_message);
1670 break;
1671 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
1672 out_message = handle_stream_begin_message(debug_it,
1673 in_message);
1674 break;
1675 case BT_MESSAGE_TYPE_STREAM_END:
1676 out_message = handle_stream_end_message(debug_it,
1677 in_message);
1678 break;
1679 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
1680 out_message = handle_msg_iterator_inactivity(debug_it,
1681 in_message);
1682 break;
1683 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
1684 out_message = handle_stream_act_begin_message(debug_it,
1685 in_message);
1686 break;
1687 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
1688 out_message = handle_stream_act_end_message(debug_it,
1689 in_message);
1690 break;
1691 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1692 out_message = handle_discarded_events_message(debug_it,
1693 in_message);
1694 break;
1695 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
1696 out_message = handle_discarded_packets_message(debug_it,
1697 in_message);
1698 break;
1699 default:
1700 abort();
1701 break;
1702 }
1703
1704 return out_message;
1705}
1706
1707static
1708int init_from_params(struct debug_info_component *debug_info_component,
1709 const bt_value *params)
1710{
1711 const bt_value *value = NULL;
1712 int ret = 0;
1713
1714 BT_ASSERT(params);
1715
1716 value = bt_value_map_borrow_entry_value_const(params,
1717 "debug-info-field-name");
1718 if (value) {
ca9f27f3 1719 debug_info_component->arg_debug_info_field_name =
06d1cf5d 1720 g_strdup(bt_value_string_get(value));
ca9f27f3
FD
1721 } else {
1722 debug_info_component->arg_debug_info_field_name =
06d1cf5d 1723 g_strdup(DEFAULT_DEBUG_INFO_FIELD_NAME);
ca9f27f3
FD
1724 }
1725
1726 value = bt_value_map_borrow_entry_value_const(params, "debug-info-dir");
1727 if (value) {
06d1cf5d
FD
1728 debug_info_component->arg_debug_dir =
1729 g_strdup(bt_value_string_get(value));
1730 } else {
1731 debug_info_component->arg_debug_dir = NULL;
ca9f27f3
FD
1732 }
1733
06d1cf5d 1734
ca9f27f3
FD
1735 value = bt_value_map_borrow_entry_value_const(params, "target-prefix");
1736 if (value) {
1737 debug_info_component->arg_target_prefix =
06d1cf5d
FD
1738 g_strdup(bt_value_string_get(value));
1739 } else {
1740 debug_info_component->arg_target_prefix = NULL;
ca9f27f3
FD
1741 }
1742
1743 value = bt_value_map_borrow_entry_value_const(params, "full-path");
1744 if (value) {
1745 debug_info_component->arg_full_path = bt_value_bool_get(value);
06d1cf5d
FD
1746 } else {
1747 debug_info_component->arg_full_path = BT_FALSE;
ca9f27f3
FD
1748 }
1749
ca9f27f3
FD
1750 return ret;
1751}
1752
1753BT_HIDDEN
1754bt_self_component_status debug_info_comp_init(
1755 bt_self_component_filter *self_comp,
1756 const bt_value *params, UNUSED_VAR void *init_method_data)
1757{
1758 int ret;
1759 struct debug_info_component *debug_info_comp;
1760 bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK;
1761
1762 BT_LOGD("Initializing debug_info component: "
1763 "comp-addr=%p, params-addr=%p", self_comp, params);
1764
1765 debug_info_comp = g_new0(struct debug_info_component, 1);
1766 if (!debug_info_comp) {
1767 BT_LOGE_STR("Failed to allocate one debug_info component.");
1768 goto error;
1769 }
1770
1771 bt_self_component_set_data(
1772 bt_self_component_filter_as_self_component(self_comp),
1773 debug_info_comp);
1774
1775 status = bt_self_component_filter_add_input_port(self_comp, "in",
1776 NULL, NULL);
1777 if (status != BT_SELF_COMPONENT_STATUS_OK) {
1778 goto error;
1779 }
1780
1781 status = bt_self_component_filter_add_output_port(self_comp, "out",
1782 NULL, NULL);
1783 if (status != BT_SELF_COMPONENT_STATUS_OK) {
1784 goto error;
1785 }
1786
1787 ret = init_from_params(debug_info_comp, params);
1788 if (ret) {
1789 BT_LOGE("Cannot configure debug_info component: "
1790 "debug_info-comp-addr=%p, params-addr=%p",
1791 debug_info_comp, params);
1792 goto error;
1793 }
1794
1795 goto end;
1796
1797error:
1798 destroy_debug_info_comp(debug_info_comp);
1799 bt_self_component_set_data(
1800 bt_self_component_filter_as_self_component(self_comp),
1801 NULL);
1802
1803 if (status == BT_SELF_COMPONENT_STATUS_OK) {
1804 status = BT_SELF_COMPONENT_STATUS_ERROR;
1805 }
1806end:
1807 return status;
1808}
1809
1810BT_HIDDEN
1811void debug_info_comp_finalize(bt_self_component_filter *self_comp)
1812{
1813 struct debug_info_component *debug_info =
1814 bt_self_component_get_data(
1815 bt_self_component_filter_as_self_component(
1816 self_comp));
1817 BT_LOGD("Finalizing debug_info self_component: comp-addr=%p",
1818 self_comp);
1819
1820 destroy_debug_info_comp(debug_info);
1821}
1822
1823BT_HIDDEN
1824bt_self_message_iterator_status debug_info_msg_iter_next(
1825 bt_self_message_iterator *self_msg_iter,
1826 const bt_message_array_const msgs, uint64_t capacity,
1827 uint64_t *count)
1828{
1829 bt_self_component_port_input_message_iterator *upstream_iterator = NULL;
1830 bt_message_iterator_status upstream_iterator_ret_status;
1831 struct debug_info_msg_iter *debug_info_msg_iter;
1832 struct debug_info_component *debug_info = NULL;
1833 bt_self_message_iterator_status status;
1834 bt_self_component *self_comp = NULL;
1835 bt_message_array_const input_msgs;
1836 const bt_message *out_message;
1837 uint64_t curr_msg_idx, i;
1838
1839 status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
1840
1841 self_comp = bt_self_message_iterator_borrow_component(self_msg_iter);
1842 BT_ASSERT(self_comp);
1843
1844 debug_info = bt_self_component_get_data(self_comp);
1845 BT_ASSERT(debug_info);
1846
1847 debug_info_msg_iter = bt_self_message_iterator_get_data(self_msg_iter);
1848 BT_ASSERT(debug_info_msg_iter);
1849
1850 upstream_iterator = debug_info_msg_iter->msg_iter;
1851 BT_ASSERT(upstream_iterator);
1852
1853 upstream_iterator_ret_status =
1854 bt_self_component_port_input_message_iterator_next(
1855 upstream_iterator, &input_msgs, count);
1856 if (upstream_iterator_ret_status != BT_MESSAGE_ITERATOR_STATUS_OK) {
1857 /*
1858 * No messages were returned. Not necessarily an error. Convert
1859 * the upstream message iterator status to a self status.
1860 */
1861 status = bt_common_message_iterator_status_to_self(
1862 upstream_iterator_ret_status);
1863 goto end;
1864 }
1865
1866 /*
1867 * There should never be more received messages than the capacity we
1868 * provided.
1869 */
1870 BT_ASSERT(*count <= capacity);
1871
1872 for (curr_msg_idx = 0; curr_msg_idx < *count; curr_msg_idx++) {
1873 out_message = handle_message(debug_info_msg_iter,
1874 input_msgs[curr_msg_idx]);
1875 if (!out_message) {
1876 goto handle_msg_error;
1877 }
1878
1879 msgs[curr_msg_idx] = out_message;
1880 /*
1881 * Drop our reference of the input message as we are done with
1882 * it and created a output copy.
1883 */
1884 bt_message_put_ref(input_msgs[curr_msg_idx]);
1885 }
1886
1887 goto end;
1888
1889handle_msg_error:
1890 /*
1891 * Drop references of all the output messages created before the
1892 * failure.
1893 */
1894 for (i = 0; i < curr_msg_idx; i++) {
1895 bt_message_put_ref(msgs[i]);
1896 }
1897
1898 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
1899end:
1900 return status;
1901}
1902
cbba2996
FD
1903static
1904void debug_info_msg_iter_destroy(struct debug_info_msg_iter *debug_info_msg_iter)
1905{
1906 if (!debug_info_msg_iter) {
1907 goto end;
1908 }
1909
1910 if (debug_info_msg_iter->msg_iter) {
1911 bt_self_component_port_input_message_iterator_put_ref(
1912 debug_info_msg_iter->msg_iter);
1913 }
1914
1915 if (debug_info_msg_iter->ir_maps) {
1916 trace_ir_maps_destroy(debug_info_msg_iter->ir_maps);
1917 }
1918
1919 if (debug_info_msg_iter->debug_info_map) {
1920 g_hash_table_destroy(debug_info_msg_iter->debug_info_map);
1921 }
1922
1923 bt_fd_cache_fini(&debug_info_msg_iter->fd_cache);
1924 g_free(debug_info_msg_iter);
1925
1926end:
1927 return;
1928}
1929
ca9f27f3
FD
1930BT_HIDDEN
1931bt_self_message_iterator_status debug_info_msg_iter_init(
1932 bt_self_message_iterator *self_msg_iter,
1933 bt_self_component_filter *self_comp,
1934 bt_self_component_port_output *self_port)
1935{
1936 bt_self_message_iterator_status status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
cbba2996
FD
1937 struct bt_self_component_port_input *input_port = NULL;
1938 bt_self_component_port_input_message_iterator *upstream_iterator = NULL;
1939 struct debug_info_msg_iter *debug_info_msg_iter = NULL;
06d1cf5d 1940 gchar *debug_info_field_name;
1e638f98 1941 int ret;
ca9f27f3
FD
1942
1943 /* Borrow the upstream input port. */
1944 input_port = bt_self_component_filter_borrow_input_port_by_name(
cbba2996 1945 self_comp, "in");
ca9f27f3
FD
1946 if (!input_port) {
1947 status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
cbba2996
FD
1948 goto error;
1949 }
1950
1951 debug_info_msg_iter = g_new0(struct debug_info_msg_iter, 1);
1952 if (!debug_info_msg_iter) {
1953 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
1954 goto error;
ca9f27f3
FD
1955 }
1956
1957 /* Create an iterator on the upstream component. */
1958 upstream_iterator = bt_self_component_port_input_message_iterator_create(
1959 input_port);
1960 if (!upstream_iterator) {
1961 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
cbba2996 1962 goto error;
ca9f27f3
FD
1963 }
1964
cbba2996
FD
1965 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
1966 debug_info_msg_iter->msg_iter, upstream_iterator);
ca9f27f3 1967
cbba2996 1968 /* Create hashtable that will contain debug info mapping. */
ca9f27f3 1969 debug_info_msg_iter->debug_info_map = g_hash_table_new_full(
cbba2996
FD
1970 g_direct_hash, g_direct_equal, (GDestroyNotify) NULL,
1971 (GDestroyNotify) debug_info_destroy);
ca9f27f3 1972 if (!debug_info_msg_iter->debug_info_map) {
ca9f27f3 1973 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
cbba2996 1974 goto error;
ca9f27f3
FD
1975 }
1976
1977 debug_info_msg_iter->self_comp =
1978 bt_self_component_filter_as_self_component(self_comp);
1979
ca9f27f3 1980 debug_info_msg_iter->debug_info_component = bt_self_component_get_data(
cbba2996
FD
1981 bt_self_component_filter_as_self_component(
1982 self_comp));
ca9f27f3 1983
06d1cf5d
FD
1984 debug_info_field_name =
1985 debug_info_msg_iter->debug_info_component->arg_debug_info_field_name;
1986
ca9f27f3 1987 debug_info_msg_iter->ir_maps = trace_ir_maps_create(
cbba2996
FD
1988 bt_self_component_filter_as_self_component(self_comp),
1989 debug_info_field_name);
ca9f27f3 1990 if (!debug_info_msg_iter->ir_maps) {
ca9f27f3 1991 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
cbba2996 1992 goto error;
ca9f27f3
FD
1993 }
1994
1e638f98
FD
1995 ret = bt_fd_cache_init(&debug_info_msg_iter->fd_cache);
1996 if (ret) {
1e638f98 1997 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
cbba2996 1998 goto error;
1e638f98
FD
1999 }
2000
ca9f27f3 2001 bt_self_message_iterator_set_data(self_msg_iter, debug_info_msg_iter);
ca9f27f3
FD
2002 debug_info_msg_iter->input_iterator = self_msg_iter;
2003
cbba2996
FD
2004 goto end;
2005
2006error:
2007 debug_info_msg_iter_destroy(debug_info_msg_iter);
ca9f27f3
FD
2008end:
2009 return status;
2010}
2011
2012BT_HIDDEN
2013bt_bool debug_info_msg_iter_can_seek_beginning(
2014 bt_self_message_iterator *self_msg_iter)
2015{
2016 struct debug_info_msg_iter *debug_info_msg_iter =
2017 bt_self_message_iterator_get_data(self_msg_iter);
2018 BT_ASSERT(debug_info_msg_iter);
2019
2020 return bt_self_component_port_input_message_iterator_can_seek_beginning(
2021 debug_info_msg_iter->msg_iter);
2022}
2023
2024BT_HIDDEN
2025bt_self_message_iterator_status debug_info_msg_iter_seek_beginning(
2026 bt_self_message_iterator *self_msg_iter)
2027{
2028 struct debug_info_msg_iter *debug_info_msg_iter =
2029 bt_self_message_iterator_get_data(self_msg_iter);
2030 bt_message_iterator_status status = BT_MESSAGE_ITERATOR_STATUS_OK;
2031
2032 BT_ASSERT(debug_info_msg_iter);
2033
2034 /* Ask the upstream component to seek to the beginning. */
2035 status = bt_self_component_port_input_message_iterator_seek_beginning(
2036 debug_info_msg_iter->msg_iter);
2037 if (status != BT_MESSAGE_ITERATOR_STATUS_OK) {
2038 goto end;
2039 }
2040
2041 /* Clear this iterator data. */
2042 trace_ir_maps_clear(debug_info_msg_iter->ir_maps);
2043 g_hash_table_remove_all(debug_info_msg_iter->debug_info_map);
2044end:
2045 return bt_common_message_iterator_status_to_self(status);
2046}
2047
2048BT_HIDDEN
2049void debug_info_msg_iter_finalize(bt_self_message_iterator *it)
2050{
2051 struct debug_info_msg_iter *debug_info_msg_iter;
2052
2053 debug_info_msg_iter = bt_self_message_iterator_get_data(it);
2054 BT_ASSERT(debug_info_msg_iter);
2055
cbba2996 2056 debug_info_msg_iter_destroy(debug_info_msg_iter);
ca9f27f3 2057}
This page took 0.126222 seconds and 4 git commands to generate.