flt.lttng-utils.debug-info: Implement file descriptor cache
[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
951 status = bt_field_string_append(curr_field, ":");
952 if (status != BT_FIELD_STATUS_OK) {
953 BT_LOGE("Cannot set colon component of \"bin\" "
954 "curr_field field's value: str-fc-addr=%p",
955 curr_field);
956 }
957
958 status = bt_field_string_append(curr_field, dbg_info_src->bin_loc);
959 if (status != BT_FIELD_STATUS_OK) {
960 BT_LOGE("Cannot set bin location component of \"bin\" "
961 "curr_field field's value: str-fc-addr=%p",
962 curr_field);
963 }
964 } else {
965 status = bt_field_string_set_value(curr_field, "");
966 if (status != BT_FIELD_STATUS_OK) {
967 BT_LOGE("Cannot set \"bin\" curr_field field's value: "
968 "str-fc-addr=%p", curr_field);
969 }
970 }
971}
972
973static
974void fill_debug_info_func_field(struct debug_info_source *dbg_info_src,
975 bt_field *curr_field)
976{
977 bt_field_status status;
978
979 BT_ASSERT(bt_field_get_class_type(curr_field) ==
980 BT_FIELD_CLASS_TYPE_STRING);
981 if (dbg_info_src && dbg_info_src->func) {
982 status = bt_field_string_set_value(curr_field,
983 dbg_info_src->func);
984 } else {
985 status = bt_field_string_set_value(curr_field, "");
986 }
987 if (status != BT_FIELD_STATUS_OK) {
988 BT_LOGE("Cannot set \"func\" curr_field field's value: "
989 "str-fc-addr=%p", curr_field);
990 }
991}
992
993static
994void fill_debug_info_src_field(struct debug_info_source *dbg_info_src,
995 bool full_path, bt_field *curr_field)
996{
997 bt_field_status status;
998
999 BT_ASSERT(bt_field_get_class_type(curr_field) ==
1000 BT_FIELD_CLASS_TYPE_STRING);
1001
1002 if (dbg_info_src && dbg_info_src->src_path) {
1003 if (full_path) {
1004 status = bt_field_string_set_value(curr_field,
1005 dbg_info_src->src_path);
1006 } else {
1007 status = bt_field_string_set_value(curr_field,
1008 dbg_info_src->short_src_path);
1009 }
1010 if (status != BT_FIELD_STATUS_OK) {
1011 BT_LOGE("Cannot set path 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, ":");
1017 if (status != BT_FIELD_STATUS_OK) {
1018 BT_LOGE("Cannot set colon component of \"src\" "
1019 "curr_field field's value: str-fc-addr=%p",
1020 curr_field);
1021 }
1022
1023 status = bt_field_string_append(curr_field, dbg_info_src->line_no);
1024 if (status != BT_FIELD_STATUS_OK) {
1025 BT_LOGE("Cannot set line number component of \"src\" "
1026 "curr_field field's value: str-fc-addr=%p",
1027 curr_field);
1028 }
1029 } else {
1030 status = bt_field_string_set_value(curr_field, "");
1031 if (status != BT_FIELD_STATUS_OK) {
1032 BT_LOGE("Cannot set \"src\" curr_field field's value: "
1033 "str-fc-addr=%p", curr_field);
1034 }
1035 }
1036}
1037
1038void fill_debug_info_field_empty(bt_field *debug_info_field)
1039{
1040 bt_field_status status;
1041 bt_field *bin_field, *func_field, *src_field;
1042
1043 BT_ASSERT(bt_field_get_class_type(debug_info_field) ==
1044 BT_FIELD_CLASS_TYPE_STRUCTURE);
1045
1046 bin_field = bt_field_structure_borrow_member_field_by_name(
1047 debug_info_field, "bin");
1048 func_field = bt_field_structure_borrow_member_field_by_name(
1049 debug_info_field, "func");
1050 src_field = bt_field_structure_borrow_member_field_by_name(
1051 debug_info_field, "src");
1052
1053 BT_ASSERT(bt_field_get_class_type(bin_field) ==
1054 BT_FIELD_CLASS_TYPE_STRING);
1055 BT_ASSERT(bt_field_get_class_type(func_field) ==
1056 BT_FIELD_CLASS_TYPE_STRING);
1057 BT_ASSERT(bt_field_get_class_type(src_field) ==
1058 BT_FIELD_CLASS_TYPE_STRING);
1059
1060 status = bt_field_string_set_value(bin_field, "");
1061 if (status != BT_FIELD_STATUS_OK) {
1062 BT_LOGE("Cannot set \"bin\" bin_field field's value: "
1063 "str-fc-addr=%p", bin_field);
1064 }
1065
1066 status = bt_field_string_set_value(func_field, "");
1067 if (status != BT_FIELD_STATUS_OK) {
1068 BT_LOGE("Cannot set \"func\" func_field field's value: "
1069 "str-fc-addr=%p", func_field);
1070 }
1071
1072 status = bt_field_string_set_value(src_field, "");
1073 if (status != BT_FIELD_STATUS_OK) {
1074 BT_LOGE("Cannot set \"src\" src_field field's value: "
1075 "str-fc-addr=%p", src_field);
1076 }
1077}
1078static
1079void fill_debug_info_field(struct debug_info *debug_info, int64_t vpid,
1080 uint64_t ip, bt_field *debug_info_field)
1081{
1082 struct debug_info_source *dbg_info_src;
1083 const bt_field_class *debug_info_fc;
1084
1085 BT_ASSERT(bt_field_get_class_type(debug_info_field) ==
1086 BT_FIELD_CLASS_TYPE_STRUCTURE);
1087
1088 debug_info_fc = bt_field_borrow_class_const(debug_info_field);
1089
1090 BT_ASSERT(bt_field_class_structure_get_member_count(debug_info_fc) == 3);
1091
1092 dbg_info_src = debug_info_query(debug_info, vpid, ip);
1093
1094 fill_debug_info_bin_field(dbg_info_src, debug_info->comp->arg_full_path,
1095 bt_field_structure_borrow_member_field_by_name(
1096 debug_info_field, "bin"));
1097 fill_debug_info_func_field(dbg_info_src,
1098 bt_field_structure_borrow_member_field_by_name(
1099 debug_info_field, "func"));
1100 fill_debug_info_src_field(dbg_info_src, debug_info->comp->arg_full_path,
1101 bt_field_structure_borrow_member_field_by_name(
1102 debug_info_field, "src"));
1103}
1104
1105static
1106void fill_debug_info_event_if_needed(struct debug_info_msg_iter *debug_it,
1107 const bt_event *in_event, bt_event *out_event)
1108{
1109 bt_field *out_common_ctx_field, *out_debug_info_field;
1110 const bt_field *vpid_field, *ip_field, *in_common_ctx_field;
1111 const bt_field_class *in_common_ctx_fc;
1112 struct debug_info *debug_info;
1113 uint64_t vpid;
1114 int64_t ip;
06d1cf5d 1115 gchar *debug_info_field_name =
ca9f27f3
FD
1116 debug_it->debug_info_component->arg_debug_info_field_name;
1117
1118 in_common_ctx_field = bt_event_borrow_common_context_field_const(
1119 in_event);
1120 if (!in_common_ctx_field) {
1121 /*
1122 * There is no event common context so no need to add debug
1123 * info field.
1124 */
1125 goto end;
1126 }
1127
1128 in_common_ctx_fc = bt_field_borrow_class_const(in_common_ctx_field);
1129 if (!is_event_common_ctx_dbg_info_compatible(in_common_ctx_fc,
1130 debug_it->ir_maps->debug_info_field_class_name)) {
1131 /*
1132 * The input event common context does not have the necessary
1133 * fields to resolve debug information.
1134 */
1135 goto end;
1136 }
1137
1138 /* Borrow the debug-info field. */
1139 out_common_ctx_field = bt_event_borrow_common_context_field(out_event);
1140 if (!out_common_ctx_field) {
1141 goto end;
4f45f9bb
JD
1142 }
1143
ca9f27f3
FD
1144 out_debug_info_field = bt_field_structure_borrow_member_field_by_name(
1145 out_common_ctx_field, debug_info_field_name);
1146
1147 vpid_field = bt_field_structure_borrow_member_field_by_name_const(
1148 out_common_ctx_field, VPID_FIELD_NAME);
1149 ip_field = bt_field_structure_borrow_member_field_by_name_const(
1150 out_common_ctx_field, IP_FIELD_NAME);
1151
1152 vpid = bt_field_signed_integer_get_value(vpid_field);
1153 ip = bt_field_unsigned_integer_get_value(ip_field);
1154
1155 /*
1156 * Borrow the debug_info structure needed for the source
1157 * resolving.
1158 */
1159 debug_info = g_hash_table_lookup(debug_it->debug_info_map,
1160 bt_stream_borrow_trace_const(
1161 bt_event_borrow_stream_const(in_event)));
1162
1163 if (debug_info) {
1164 /*
1165 * Perform the debug-info resolving and set the event fields
1166 * accordingly.
1167 */
1168 fill_debug_info_field(debug_info, vpid, ip, out_debug_info_field);
1169 } else {
1170 BT_LOGD("No debug information for this trace. Setting debug "
1171 "info fields to empty strings.");
1172 fill_debug_info_field_empty(out_debug_info_field);
1173 }
4f45f9bb
JD
1174end:
1175 return;
1176}
ca9f27f3
FD
1177
1178static
1179void update_event_statedump_if_needed(struct debug_info_msg_iter *debug_it,
1180 const bt_event *in_event)
1181{
1182 const bt_field *event_common_ctx;
1183 const bt_field_class *event_common_ctx_fc;
1184 const bt_event_class *in_event_class = bt_event_borrow_class_const(in_event);
1185
1186 /*
1187 * If the event is an lttng_ust_statedump event AND has the right event
1188 * common context fields update the debug-info view for this process.
1189 */
1190 event_common_ctx = bt_event_borrow_common_context_field_const(in_event);
1191 if (!event_common_ctx) {
1192 goto end;
1193 }
1194
1195 event_common_ctx_fc = bt_field_borrow_class_const(event_common_ctx);
1196 if (is_event_common_ctx_dbg_info_compatible(event_common_ctx_fc,
1197 debug_it->ir_maps->debug_info_field_class_name)) {
1198 /* Checkout if it might be a one of lttng ust statedump events. */
1199 const char *in_event_name = bt_event_class_get_name(in_event_class);
1200 if (strncmp(in_event_name, LTTNG_UST_STATEDUMP_PREFIX,
1201 strlen(LTTNG_UST_STATEDUMP_PREFIX)) == 0) {
1202 /* Handle statedump events. */
1203 handle_event_statedump(debug_it, in_event);
1204 }
1205 }
1206end:
1207 return;
1208}
1209
1210static
1211bt_message *handle_event_message(struct debug_info_msg_iter *debug_it,
1212 const bt_message *in_message)
1213{
1214 const bt_clock_snapshot *cs;
1215 const bt_clock_class *default_cc;
1216 const bt_packet *in_packet;
1217 bt_clock_snapshot_state cs_state;
1218 bt_event_class *out_event_class;
1219 bt_packet *out_packet;
1220 bt_event *out_event;
1221
1222 bt_message *out_message = NULL;
1223
1224 /* Borrow the input event and its event class. */
1225 const bt_event *in_event =
1226 bt_message_event_borrow_event_const(in_message);
1227 const bt_event_class *in_event_class =
1228 bt_event_borrow_class_const(in_event);
1229
1230 update_event_statedump_if_needed(debug_it, in_event);
1231
1232 out_event_class = trace_ir_mapping_borrow_mapped_event_class(
1233 debug_it->ir_maps, in_event_class);
1234 if (!out_event_class) {
1235 out_event_class = trace_ir_mapping_create_new_mapped_event_class(
1236 debug_it->ir_maps, in_event_class);
1237 }
1238 BT_ASSERT(out_event_class);
1239
1240 /* Borrow the input and output packets. */
1241 in_packet = bt_event_borrow_packet_const(in_event);
1242 out_packet = trace_ir_mapping_borrow_mapped_packet(debug_it->ir_maps,
1243 in_packet);
1244
1245 default_cc = bt_stream_class_borrow_default_clock_class_const(
1246 bt_event_class_borrow_stream_class_const(in_event_class));
1247 if (default_cc) {
1248 /* Borrow event clock snapshot. */
1249 cs_state =
1250 bt_message_event_borrow_default_clock_snapshot_const(
1251 in_message, &cs);
1252
1253 /* Create an output event message. */
1254 BT_ASSERT (cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN);
1255 out_message = bt_message_event_create_with_default_clock_snapshot(
1256 debug_it->input_iterator,
1257 out_event_class, out_packet,
1258 bt_clock_snapshot_get_value(cs));
1259 } else {
1260 out_message = bt_message_event_create(debug_it->input_iterator,
1261 out_event_class, out_packet);
1262 }
1263
1264 if (!out_message) {
1265 BT_LOGE("Error creating output event message.");
1266 goto error;
1267 }
1268
1269 out_event = bt_message_event_borrow_event(out_message);
1270
1271 /* Copy the original fields to the output event. */
1272 copy_event_content(in_event, out_event);
1273
1274 /*
1275 * Try to set the debug-info fields based on debug information that is
1276 * gathered so far.
1277 */
1278 fill_debug_info_event_if_needed(debug_it, in_event, out_event);
1279
1280error:
1281 return out_message;
1282}
1283
1284static
1285bt_message *handle_stream_begin_message(struct debug_info_msg_iter *debug_it,
1286 const bt_message *in_message)
1287{
1288 const bt_stream *in_stream;
1289 bt_message *out_message;
1290 bt_stream *out_stream;
1291
1292 in_stream = bt_message_stream_beginning_borrow_stream_const(in_message);
1293 BT_ASSERT(in_stream);
1294
1295 /* Create a duplicated output stream. */
1296 out_stream = trace_ir_mapping_create_new_mapped_stream(
1297 debug_it->ir_maps, in_stream);
1298 if (!out_stream) {
1299 out_message = NULL;
1300 goto error;
1301 }
1302
1303 /* Create an output stream beginning message. */
1304 out_message = bt_message_stream_beginning_create(
1305 debug_it->input_iterator, out_stream);
1306 if (!out_message) {
1307 BT_LOGE("Error creating output stream beginning message: "
1308 "out-s-addr=%p", out_stream);
1309 }
1310error:
1311 return out_message;
1312}
1313
1314static
1315bt_message *handle_stream_end_message(struct debug_info_msg_iter *debug_it,
1316 const bt_message *in_message)
1317{
1318 const bt_stream *in_stream;
1319 bt_message *out_message = NULL;
1320 bt_stream *out_stream;
1321
1322 in_stream = bt_message_stream_end_borrow_stream_const(in_message);
1323 BT_ASSERT(in_stream);
1324
1325 out_stream = trace_ir_mapping_borrow_mapped_stream(
1326 debug_it->ir_maps, in_stream);
1327 BT_ASSERT(out_stream);
1328
1329 /* Create an output stream end message. */
1330 out_message = bt_message_stream_end_create(debug_it->input_iterator,
1331 out_stream);
1332 if (!out_message) {
1333 BT_LOGE("Error creating output stream end message: out-s-addr=%p",
1334 out_stream);
1335 }
1336
1337 /* Remove stream from trace mapping hashtable. */
1338 trace_ir_mapping_remove_mapped_stream(debug_it->ir_maps, in_stream);
1339
1340 return out_message;
1341}
1342
1343static
1344bt_message *handle_packet_begin_message(struct debug_info_msg_iter *debug_it,
1345 const bt_message *in_message)
1346{
1347 const bt_clock_class *default_cc;
1348 bt_clock_snapshot_state cs_state;
1349 const bt_clock_snapshot *cs;
1350 bt_message *out_message = NULL;
1351 bt_packet *out_packet;
1352
1353 const bt_packet *in_packet =
1354 bt_message_packet_beginning_borrow_packet_const(in_message);
1355 BT_ASSERT(in_packet);
1356
1357 /* This packet should not be already mapped. */
1358 BT_ASSERT(!trace_ir_mapping_borrow_mapped_packet(
1359 debug_it->ir_maps, in_packet));
1360
1361 out_packet = trace_ir_mapping_create_new_mapped_packet(debug_it->ir_maps,
1362 in_packet);
1363
1364 BT_ASSERT(out_packet);
1365
1366 default_cc = bt_stream_class_borrow_default_clock_class_const(
1367 bt_stream_borrow_class_const(
1368 bt_packet_borrow_stream_const(in_packet)));
1369 if (default_cc) {
1370 /* Borrow clock snapshot. */
1371 cs_state =
1372 bt_message_packet_beginning_borrow_default_clock_snapshot_const(
1373 in_message, &cs);
1374
1375 /* Create an output packet beginning message. */
1376 BT_ASSERT(cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN);
1377 out_message = bt_message_packet_beginning_create_with_default_clock_snapshot(
1378 debug_it->input_iterator, out_packet,
1379 bt_clock_snapshot_get_value(cs));
1380 } else {
1381 out_message = bt_message_packet_beginning_create(
1382 debug_it->input_iterator, out_packet);
1383 }
1384 if (!out_message) {
1385 BT_LOGE("Error creating output packet beginning message: "
1386 "out-p-addr=%p", out_packet);
1387 }
1388
1389 return out_message;
1390}
1391
1392static
1393bt_message *handle_packet_end_message(struct debug_info_msg_iter *debug_it,
1394 const bt_message *in_message)
1395{
1396 const bt_clock_snapshot *cs;
1397 const bt_packet *in_packet;
1398 const bt_clock_class *default_cc;
1399 bt_clock_snapshot_state cs_state;
1400 bt_message *out_message = NULL;
1401 bt_packet *out_packet;
1402
1403 in_packet = bt_message_packet_end_borrow_packet_const(in_message);
1404 BT_ASSERT(in_packet);
1405
1406 out_packet = trace_ir_mapping_borrow_mapped_packet(debug_it->ir_maps, in_packet);
1407 BT_ASSERT(out_packet);
1408
1409 default_cc = bt_stream_class_borrow_default_clock_class_const(
1410 bt_stream_borrow_class_const(
1411 bt_packet_borrow_stream_const(in_packet)));
1412 if (default_cc) {
1413 /* Borrow clock snapshot. */
1414 cs_state =
1415 bt_message_packet_end_borrow_default_clock_snapshot_const(
1416 in_message, &cs);
1417
1418 /* Create an outpute packet end message. */
1419 BT_ASSERT(cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN);
1420 out_message = bt_message_packet_end_create_with_default_clock_snapshot(
1421 debug_it->input_iterator, out_packet,
1422 bt_clock_snapshot_get_value(cs));
1423 } else {
1424 out_message = bt_message_packet_end_create(
1425 debug_it->input_iterator, out_packet);
1426 }
1427
1428 if (!out_message) {
1429 BT_LOGE("Error creating output packet end message: "
1430 "out-p-addr=%p", out_packet);
1431 }
1432
1433 /* Remove packet from data mapping hashtable. */
1434 trace_ir_mapping_remove_mapped_packet(debug_it->ir_maps, in_packet);
1435
1436 return out_message;
1437}
1438
1439static
1440bt_message *handle_msg_iterator_inactivity(struct debug_info_msg_iter *debug_it,
1441 const bt_message *in_message)
1442{
1443 /*
1444 * This message type can be forwarded directly because it does
1445 * not refer to any objects in the trace class.
1446 */
1447 bt_message_get_ref(in_message);
1448 return (bt_message*) in_message;
1449}
1450
1451static
1452bt_message *handle_stream_act_begin_message(struct debug_info_msg_iter *debug_it,
1453 const bt_message *in_message)
1454{
1455 const bt_clock_snapshot *cs;
1456 const bt_clock_class *default_cc;
1457 bt_message *out_message = NULL;
1458 bt_stream *out_stream;
1459 uint64_t cs_value;
1460 bt_message_stream_activity_clock_snapshot_state cs_state;
1461
1462 const bt_stream *in_stream =
1463 bt_message_stream_activity_beginning_borrow_stream_const(
1464 in_message);
1465 BT_ASSERT(in_stream);
1466
1467 out_stream = trace_ir_mapping_borrow_mapped_stream(debug_it->ir_maps,
1468 in_stream);
1469 BT_ASSERT(out_stream);
1470
1471 out_message = bt_message_stream_activity_beginning_create(
1472 debug_it->input_iterator, out_stream);
1473 if (!out_message) {
1474 BT_LOGE("Error creating output stream activity beginning "
1475 "message: out-s-addr=%p", out_stream);
1476 goto error;
1477 }
1478
1479 default_cc = bt_stream_class_borrow_default_clock_class_const(
1480 bt_stream_borrow_class_const(in_stream));
1481 if (default_cc) {
1482 /* Borrow clock snapshot. */
1483 cs_state =
1484 bt_message_stream_activity_beginning_borrow_default_clock_snapshot_const(
1485 in_message, &cs);
1486
1487 if (cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN) {
1488 cs_value = bt_clock_snapshot_get_value(cs);
1489 bt_message_stream_activity_beginning_set_default_clock_snapshot(
1490 out_message, cs_value);
1491 } else {
1492 bt_message_stream_activity_beginning_set_default_clock_snapshot_state(
1493 out_message, cs_state);
1494 }
1495 }
1496
1497error:
1498 return out_message;
1499}
1500
1501static
1502bt_message *handle_stream_act_end_message(struct debug_info_msg_iter *debug_it,
1503 const bt_message *in_message)
1504{
1505 const bt_clock_snapshot *cs;
1506 const bt_clock_class *default_cc;
1507 const bt_stream *in_stream;
1508 bt_message *out_message;
1509 bt_stream *out_stream;
1510 uint64_t cs_value;
1511 bt_message_stream_activity_clock_snapshot_state cs_state;
1512
1513 in_stream = bt_message_stream_activity_end_borrow_stream_const(
1514 in_message);
1515 BT_ASSERT(in_stream);
1516
1517 out_stream = trace_ir_mapping_borrow_mapped_stream(debug_it->ir_maps, in_stream);
1518 BT_ASSERT(out_stream);
1519
1520 out_message = bt_message_stream_activity_end_create(
1521 debug_it->input_iterator, out_stream);
1522 if (!out_message) {
1523 BT_LOGE("Error creating output stream activity end message: "
1524 "out-s-addr=%p", out_stream);
1525 goto error;
1526 }
1527
1528 default_cc = bt_stream_class_borrow_default_clock_class_const(
1529 bt_stream_borrow_class_const(in_stream));
1530
1531 if (default_cc) {
1532 cs_state =
1533 bt_message_stream_activity_end_borrow_default_clock_snapshot_const(
1534 in_message, &cs);
1535
1536 if (cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN ) {
1537 cs_value = bt_clock_snapshot_get_value(cs);
1538 bt_message_stream_activity_end_set_default_clock_snapshot(
1539 out_message, cs_value);
1540 } else {
1541 bt_message_stream_activity_end_set_default_clock_snapshot_state(
1542 out_message, cs_state);
1543 }
1544 }
1545
1546error:
1547 return out_message;
1548}
1549
1550static
1551bt_message *handle_discarded_events_message(struct debug_info_msg_iter *debug_it,
1552 const bt_message *in_message)
1553{
1554 const bt_clock_snapshot *begin_cs, *end_cs;
1555 const bt_stream *in_stream;
1556 const bt_clock_class *default_cc;
1557 uint64_t discarded_events, begin_cs_value, end_cs_value;
1558 bt_clock_snapshot_state begin_cs_state, end_cs_state;
1559 bt_property_availability prop_avail;
1560 bt_message *out_message = NULL;
1561 bt_stream *out_stream;
1562
1563 in_stream = bt_message_discarded_events_borrow_stream_const(
1564 in_message);
1565 BT_ASSERT(in_stream);
1566
1567 out_stream = trace_ir_mapping_borrow_mapped_stream(
1568 debug_it->ir_maps, in_stream);
1569 BT_ASSERT(out_stream);
1570
1571 default_cc = bt_stream_class_borrow_default_clock_class_const(
1572 bt_stream_borrow_class_const(in_stream));
1573 if (default_cc) {
1574 begin_cs_state =
1575 bt_message_discarded_events_borrow_default_beginning_clock_snapshot_const(
1576 in_message, &begin_cs);
1577 end_cs_state =
1578 bt_message_discarded_events_borrow_default_end_clock_snapshot_const(
1579 in_message, &end_cs);
1580 /*
1581 * Both clock snapshots should be known as we check that the
1582 * all input stream classes have an always known clock. Unknown
1583 * clock is not yet supported.
1584 */
1585 BT_ASSERT(begin_cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN &&
1586 end_cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN);
1587
1588 begin_cs_value = bt_clock_snapshot_get_value(begin_cs);
1589 end_cs_value = bt_clock_snapshot_get_value(end_cs);
1590
1591 out_message =
1592 bt_message_discarded_events_create_with_default_clock_snapshots(
1593 debug_it->input_iterator, out_stream,
1594 begin_cs_value, end_cs_value);
1595 } else {
1596 out_message = bt_message_discarded_events_create(
1597 debug_it->input_iterator, out_stream);
1598 }
1599 if (!out_message) {
1600 BT_LOGE("Error creating output discarded events message: "
1601 "out-s-addr=%p", out_stream);
1602 goto error;
1603 }
1604
1605 prop_avail = bt_message_discarded_events_get_count(in_message,
1606 &discarded_events);
1607
1608 if (prop_avail == BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE) {
1609 bt_message_discarded_events_set_count(out_message,
1610 discarded_events);
1611 }
1612
1613error:
1614 return out_message;
1615}
1616
1617static
1618bt_message *handle_discarded_packets_message(struct debug_info_msg_iter *debug_it,
1619 const bt_message *in_message)
1620{
1621 const bt_clock_snapshot *begin_cs, *end_cs;
1622 const bt_clock_class *default_cc;
1623 const bt_stream *in_stream;
1624 uint64_t discarded_packets, begin_cs_value, end_cs_value;
1625 bt_clock_snapshot_state begin_cs_state, end_cs_state;
1626 bt_property_availability prop_avail;
1627 bt_message *out_message = NULL;
1628 bt_stream *out_stream;
1629
1630 in_stream = bt_message_discarded_packets_borrow_stream_const(
1631 in_message);
1632 BT_ASSERT(in_stream);
1633
1634 out_stream = trace_ir_mapping_borrow_mapped_stream(
1635 debug_it->ir_maps, in_stream);
1636 BT_ASSERT(out_stream);
1637
1638 default_cc = bt_stream_class_borrow_default_clock_class_const(
1639 bt_stream_borrow_class_const(in_stream));
1640 if (default_cc) {
1641 begin_cs_state =
1642 bt_message_discarded_packets_borrow_default_beginning_clock_snapshot_const(
1643 in_message, &begin_cs);
1644
1645 end_cs_state =
1646 bt_message_discarded_packets_borrow_default_end_clock_snapshot_const(
1647 in_message, &end_cs);
1648
1649 /*
1650 * Both clock snapshots should be known as we check that the
1651 * all input stream classes have an always known clock. Unknown
1652 * clock is not yet supported.
1653 */
1654 BT_ASSERT(begin_cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN &&
1655 end_cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN);
1656
1657 begin_cs_value = bt_clock_snapshot_get_value(begin_cs);
1658 end_cs_value = bt_clock_snapshot_get_value(end_cs);
1659
1660 out_message = bt_message_discarded_packets_create_with_default_clock_snapshots(
1661 debug_it->input_iterator, out_stream,
1662 begin_cs_value, end_cs_value);
1663 } else {
1664 out_message = bt_message_discarded_packets_create(
1665 debug_it->input_iterator, out_stream);
1666 }
1667 if (!out_message) {
1668 BT_LOGE("Error creating output discarded packet message: "
1669 "out-s-addr=%p", out_stream);
1670 goto error;
1671 }
1672
1673 prop_avail = bt_message_discarded_packets_get_count(in_message,
1674 &discarded_packets);
1675 if (prop_avail == BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE) {
1676 bt_message_discarded_packets_set_count(out_message,
1677 discarded_packets);
1678 }
1679
1680error:
1681 return out_message;
1682}
1683
1684static
1685const bt_message *handle_message(struct debug_info_msg_iter *debug_it,
1686 const bt_message *in_message)
1687{
1688 bt_message *out_message = NULL;
1689
1690 switch (bt_message_get_type(in_message)) {
1691 case BT_MESSAGE_TYPE_EVENT:
1692 out_message = handle_event_message(debug_it,
1693 in_message);
1694 break;
1695 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
1696 out_message = handle_packet_begin_message(debug_it,
1697 in_message);
1698 break;
1699 case BT_MESSAGE_TYPE_PACKET_END:
1700 out_message = handle_packet_end_message(debug_it,
1701 in_message);
1702 break;
1703 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
1704 out_message = handle_stream_begin_message(debug_it,
1705 in_message);
1706 break;
1707 case BT_MESSAGE_TYPE_STREAM_END:
1708 out_message = handle_stream_end_message(debug_it,
1709 in_message);
1710 break;
1711 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
1712 out_message = handle_msg_iterator_inactivity(debug_it,
1713 in_message);
1714 break;
1715 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
1716 out_message = handle_stream_act_begin_message(debug_it,
1717 in_message);
1718 break;
1719 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
1720 out_message = handle_stream_act_end_message(debug_it,
1721 in_message);
1722 break;
1723 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1724 out_message = handle_discarded_events_message(debug_it,
1725 in_message);
1726 break;
1727 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
1728 out_message = handle_discarded_packets_message(debug_it,
1729 in_message);
1730 break;
1731 default:
1732 abort();
1733 break;
1734 }
1735
1736 return out_message;
1737}
1738
1739static
1740int init_from_params(struct debug_info_component *debug_info_component,
1741 const bt_value *params)
1742{
1743 const bt_value *value = NULL;
1744 int ret = 0;
1745
1746 BT_ASSERT(params);
1747
1748 value = bt_value_map_borrow_entry_value_const(params,
1749 "debug-info-field-name");
1750 if (value) {
ca9f27f3 1751 debug_info_component->arg_debug_info_field_name =
06d1cf5d 1752 g_strdup(bt_value_string_get(value));
ca9f27f3
FD
1753 } else {
1754 debug_info_component->arg_debug_info_field_name =
06d1cf5d 1755 g_strdup(DEFAULT_DEBUG_INFO_FIELD_NAME);
ca9f27f3
FD
1756 }
1757
1758 value = bt_value_map_borrow_entry_value_const(params, "debug-info-dir");
1759 if (value) {
06d1cf5d
FD
1760 debug_info_component->arg_debug_dir =
1761 g_strdup(bt_value_string_get(value));
1762 } else {
1763 debug_info_component->arg_debug_dir = NULL;
ca9f27f3
FD
1764 }
1765
06d1cf5d 1766
ca9f27f3
FD
1767 value = bt_value_map_borrow_entry_value_const(params, "target-prefix");
1768 if (value) {
1769 debug_info_component->arg_target_prefix =
06d1cf5d
FD
1770 g_strdup(bt_value_string_get(value));
1771 } else {
1772 debug_info_component->arg_target_prefix = NULL;
ca9f27f3
FD
1773 }
1774
1775 value = bt_value_map_borrow_entry_value_const(params, "full-path");
1776 if (value) {
1777 debug_info_component->arg_full_path = bt_value_bool_get(value);
06d1cf5d
FD
1778 } else {
1779 debug_info_component->arg_full_path = BT_FALSE;
ca9f27f3
FD
1780 }
1781
ca9f27f3
FD
1782 return ret;
1783}
1784
1785BT_HIDDEN
1786bt_self_component_status debug_info_comp_init(
1787 bt_self_component_filter *self_comp,
1788 const bt_value *params, UNUSED_VAR void *init_method_data)
1789{
1790 int ret;
1791 struct debug_info_component *debug_info_comp;
1792 bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK;
1793
1794 BT_LOGD("Initializing debug_info component: "
1795 "comp-addr=%p, params-addr=%p", self_comp, params);
1796
1797 debug_info_comp = g_new0(struct debug_info_component, 1);
1798 if (!debug_info_comp) {
1799 BT_LOGE_STR("Failed to allocate one debug_info component.");
1800 goto error;
1801 }
1802
1803 bt_self_component_set_data(
1804 bt_self_component_filter_as_self_component(self_comp),
1805 debug_info_comp);
1806
1807 status = bt_self_component_filter_add_input_port(self_comp, "in",
1808 NULL, NULL);
1809 if (status != BT_SELF_COMPONENT_STATUS_OK) {
1810 goto error;
1811 }
1812
1813 status = bt_self_component_filter_add_output_port(self_comp, "out",
1814 NULL, NULL);
1815 if (status != BT_SELF_COMPONENT_STATUS_OK) {
1816 goto error;
1817 }
1818
1819 ret = init_from_params(debug_info_comp, params);
1820 if (ret) {
1821 BT_LOGE("Cannot configure debug_info component: "
1822 "debug_info-comp-addr=%p, params-addr=%p",
1823 debug_info_comp, params);
1824 goto error;
1825 }
1826
1827 goto end;
1828
1829error:
1830 destroy_debug_info_comp(debug_info_comp);
1831 bt_self_component_set_data(
1832 bt_self_component_filter_as_self_component(self_comp),
1833 NULL);
1834
1835 if (status == BT_SELF_COMPONENT_STATUS_OK) {
1836 status = BT_SELF_COMPONENT_STATUS_ERROR;
1837 }
1838end:
1839 return status;
1840}
1841
1842BT_HIDDEN
1843void debug_info_comp_finalize(bt_self_component_filter *self_comp)
1844{
1845 struct debug_info_component *debug_info =
1846 bt_self_component_get_data(
1847 bt_self_component_filter_as_self_component(
1848 self_comp));
1849 BT_LOGD("Finalizing debug_info self_component: comp-addr=%p",
1850 self_comp);
1851
1852 destroy_debug_info_comp(debug_info);
1853}
1854
1855BT_HIDDEN
1856bt_self_message_iterator_status debug_info_msg_iter_next(
1857 bt_self_message_iterator *self_msg_iter,
1858 const bt_message_array_const msgs, uint64_t capacity,
1859 uint64_t *count)
1860{
1861 bt_self_component_port_input_message_iterator *upstream_iterator = NULL;
1862 bt_message_iterator_status upstream_iterator_ret_status;
1863 struct debug_info_msg_iter *debug_info_msg_iter;
1864 struct debug_info_component *debug_info = NULL;
1865 bt_self_message_iterator_status status;
1866 bt_self_component *self_comp = NULL;
1867 bt_message_array_const input_msgs;
1868 const bt_message *out_message;
1869 uint64_t curr_msg_idx, i;
1870
1871 status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
1872
1873 self_comp = bt_self_message_iterator_borrow_component(self_msg_iter);
1874 BT_ASSERT(self_comp);
1875
1876 debug_info = bt_self_component_get_data(self_comp);
1877 BT_ASSERT(debug_info);
1878
1879 debug_info_msg_iter = bt_self_message_iterator_get_data(self_msg_iter);
1880 BT_ASSERT(debug_info_msg_iter);
1881
1882 upstream_iterator = debug_info_msg_iter->msg_iter;
1883 BT_ASSERT(upstream_iterator);
1884
1885 upstream_iterator_ret_status =
1886 bt_self_component_port_input_message_iterator_next(
1887 upstream_iterator, &input_msgs, count);
1888 if (upstream_iterator_ret_status != BT_MESSAGE_ITERATOR_STATUS_OK) {
1889 /*
1890 * No messages were returned. Not necessarily an error. Convert
1891 * the upstream message iterator status to a self status.
1892 */
1893 status = bt_common_message_iterator_status_to_self(
1894 upstream_iterator_ret_status);
1895 goto end;
1896 }
1897
1898 /*
1899 * There should never be more received messages than the capacity we
1900 * provided.
1901 */
1902 BT_ASSERT(*count <= capacity);
1903
1904 for (curr_msg_idx = 0; curr_msg_idx < *count; curr_msg_idx++) {
1905 out_message = handle_message(debug_info_msg_iter,
1906 input_msgs[curr_msg_idx]);
1907 if (!out_message) {
1908 goto handle_msg_error;
1909 }
1910
1911 msgs[curr_msg_idx] = out_message;
1912 /*
1913 * Drop our reference of the input message as we are done with
1914 * it and created a output copy.
1915 */
1916 bt_message_put_ref(input_msgs[curr_msg_idx]);
1917 }
1918
1919 goto end;
1920
1921handle_msg_error:
1922 /*
1923 * Drop references of all the output messages created before the
1924 * failure.
1925 */
1926 for (i = 0; i < curr_msg_idx; i++) {
1927 bt_message_put_ref(msgs[i]);
1928 }
1929
1930 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
1931end:
1932 return status;
1933}
1934
1935BT_HIDDEN
1936bt_self_message_iterator_status debug_info_msg_iter_init(
1937 bt_self_message_iterator *self_msg_iter,
1938 bt_self_component_filter *self_comp,
1939 bt_self_component_port_output *self_port)
1940{
1941 bt_self_message_iterator_status status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
1942 struct bt_self_component_port_input *input_port;
1943 bt_self_component_port_input_message_iterator *upstream_iterator;
1944 struct debug_info_msg_iter *debug_info_msg_iter;
06d1cf5d 1945 gchar *debug_info_field_name;
1e638f98 1946 int ret;
ca9f27f3
FD
1947
1948 /* Borrow the upstream input port. */
1949 input_port = bt_self_component_filter_borrow_input_port_by_name(
1950 self_comp, "in");
1951 if (!input_port) {
1952 status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
1953 goto end;
1954 }
1955
1956 /* Create an iterator on the upstream component. */
1957 upstream_iterator = bt_self_component_port_input_message_iterator_create(
1958 input_port);
1959 if (!upstream_iterator) {
1960 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
1961 goto end;
1962 }
1963
1964 debug_info_msg_iter = g_new0(struct debug_info_msg_iter, 1);
1965 if (!debug_info_msg_iter) {
1966 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
1967 goto end;
1968 }
1969
06d1cf5d 1970 /* Create hashtable to will contain debug info mapping. */
ca9f27f3
FD
1971 debug_info_msg_iter->debug_info_map = g_hash_table_new_full(
1972 g_direct_hash, g_direct_equal,
1973 (GDestroyNotify) NULL,
1974 (GDestroyNotify) debug_info_destroy);
1975 if (!debug_info_msg_iter->debug_info_map) {
1976 g_free(debug_info_msg_iter);
1977 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
1978 goto end;
1979 }
1980
1981 debug_info_msg_iter->self_comp =
1982 bt_self_component_filter_as_self_component(self_comp);
1983
1984 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
1985 debug_info_msg_iter->msg_iter, upstream_iterator);
1986
1987 debug_info_msg_iter->debug_info_component = bt_self_component_get_data(
1988 bt_self_component_filter_as_self_component(
1989 self_comp));
1990
06d1cf5d
FD
1991 debug_info_field_name =
1992 debug_info_msg_iter->debug_info_component->arg_debug_info_field_name;
1993
ca9f27f3
FD
1994 debug_info_msg_iter->ir_maps = trace_ir_maps_create(
1995 bt_self_component_filter_as_self_component(self_comp),
06d1cf5d 1996 debug_info_field_name);
ca9f27f3
FD
1997 if (!debug_info_msg_iter->ir_maps) {
1998 g_hash_table_destroy(debug_info_msg_iter->debug_info_map);
1999 g_free(debug_info_msg_iter);
2000 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
2001 goto end;
2002 }
2003
1e638f98
FD
2004 ret = bt_fd_cache_init(&debug_info_msg_iter->fd_cache);
2005 if (ret) {
2006 trace_ir_maps_destroy(debug_info_msg_iter->ir_maps);
2007 g_hash_table_destroy(debug_info_msg_iter->debug_info_map);
2008 g_free(debug_info_msg_iter);
2009 status = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
2010 goto end;
2011 }
2012
2013
ca9f27f3
FD
2014 bt_self_message_iterator_set_data(self_msg_iter, debug_info_msg_iter);
2015
2016 debug_info_msg_iter->input_iterator = self_msg_iter;
2017
2018end:
2019 return status;
2020}
2021
2022BT_HIDDEN
2023bt_bool debug_info_msg_iter_can_seek_beginning(
2024 bt_self_message_iterator *self_msg_iter)
2025{
2026 struct debug_info_msg_iter *debug_info_msg_iter =
2027 bt_self_message_iterator_get_data(self_msg_iter);
2028 BT_ASSERT(debug_info_msg_iter);
2029
2030 return bt_self_component_port_input_message_iterator_can_seek_beginning(
2031 debug_info_msg_iter->msg_iter);
2032}
2033
2034BT_HIDDEN
2035bt_self_message_iterator_status debug_info_msg_iter_seek_beginning(
2036 bt_self_message_iterator *self_msg_iter)
2037{
2038 struct debug_info_msg_iter *debug_info_msg_iter =
2039 bt_self_message_iterator_get_data(self_msg_iter);
2040 bt_message_iterator_status status = BT_MESSAGE_ITERATOR_STATUS_OK;
2041
2042 BT_ASSERT(debug_info_msg_iter);
2043
2044 /* Ask the upstream component to seek to the beginning. */
2045 status = bt_self_component_port_input_message_iterator_seek_beginning(
2046 debug_info_msg_iter->msg_iter);
2047 if (status != BT_MESSAGE_ITERATOR_STATUS_OK) {
2048 goto end;
2049 }
2050
2051 /* Clear this iterator data. */
2052 trace_ir_maps_clear(debug_info_msg_iter->ir_maps);
2053 g_hash_table_remove_all(debug_info_msg_iter->debug_info_map);
2054end:
2055 return bt_common_message_iterator_status_to_self(status);
2056}
2057
2058BT_HIDDEN
2059void debug_info_msg_iter_finalize(bt_self_message_iterator *it)
2060{
2061 struct debug_info_msg_iter *debug_info_msg_iter;
2062
2063 debug_info_msg_iter = bt_self_message_iterator_get_data(it);
2064 BT_ASSERT(debug_info_msg_iter);
2065
2066 bt_self_component_port_input_message_iterator_put_ref(
2067 debug_info_msg_iter->msg_iter);
2068
2069 trace_ir_maps_destroy(debug_info_msg_iter->ir_maps);
2070 g_hash_table_destroy(debug_info_msg_iter->debug_info_map);
2071
1e638f98
FD
2072 bt_fd_cache_fini(&debug_info_msg_iter->fd_cache);
2073
ca9f27f3
FD
2074 g_free(debug_info_msg_iter);
2075}
This page took 0.117896 seconds and 4 git commands to generate.