1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
|
/* Definitions for frame unwinder, for GDB, the GNU debugger.
Copyright (C) 2003-2024 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "extract-store-integer.h"
#include "frame.h"
#include "frame-unwind.h"
#include "dummy-frame.h"
#include "inline-frame.h"
#include "value.h"
#include "regcache.h"
#include "gdbsupport/gdb_obstack.h"
#include "target.h"
#include "gdbarch.h"
#include "dwarf2/frame-tailcall.h"
#include "cli/cli-cmds.h"
#include "cli/cli-option.h"
#include "inferior.h"
/* Conversion list between the enum for frame_unwind_class and
string. */
static const char * unwind_class_conversion[] =
{
"GDB",
"EXTENSION",
"DEBUGINFO",
"ARCH",
nullptr
};
/* Default sniffers, that must always be the first in the unwinder list,
no matter the architecture. */
static constexpr std::initializer_list<const frame_unwind *>
standard_unwinders =
{
&dummy_frame_unwind,
/* The DWARF tailcall sniffer must come before the inline sniffer.
Otherwise, we can end up in a situation where a DWARF frame finds
tailcall information, but then the inline sniffer claims a frame
before the tailcall sniffer, resulting in confusion. This is
safe to do always because the tailcall sniffer can only ever be
activated if the newer frame was created using the DWARF
unwinder, and it also found tailcall information. */
&dwarf2_tailcall_frame_unwind,
&inline_frame_unwind,
};
/* If an unwinder should be prepended to the list, this is the
index in which it should be inserted. */
static constexpr int prepend_unwinder_index = standard_unwinders.size ();
static const registry<gdbarch>::key<std::vector<const frame_unwind *>>
frame_unwind_data;
/* Retrieve the list of frame unwinders available in GDBARCH.
If this list is empty, it is initialized before being returned. */
static std::vector<const frame_unwind *> &
get_frame_unwind_table (struct gdbarch *gdbarch)
{
std::vector<const frame_unwind *> *table = frame_unwind_data.get (gdbarch);
if (table == nullptr)
table = frame_unwind_data.emplace (gdbarch,
standard_unwinders.begin (),
standard_unwinders.end ());
return *table;
}
static const char *
frame_unwinder_class_str (frame_unwind_class uclass)
{
gdb_assert (uclass < UNWIND_CLASS_NUMBER);
return unwind_class_conversion[uclass];
}
/* Case insensitive search for a frame_unwind_class based on the given
string. */
static enum frame_unwind_class
str_to_frame_unwind_class (const char *class_str)
{
for (int i = 0; i < UNWIND_CLASS_NUMBER; i++)
{
if (strcasecmp (unwind_class_conversion[i], class_str) == 0)
return (frame_unwind_class) i;
}
error (_("Unknown frame unwind class: %s"), class_str);
}
void
frame_unwind_prepend_unwinder (struct gdbarch *gdbarch,
const struct frame_unwind *unwinder)
{
std::vector<const frame_unwind *> &table = get_frame_unwind_table (gdbarch);
table.insert (table.begin () + prepend_unwinder_index, unwinder);
}
void
frame_unwind_append_unwinder (struct gdbarch *gdbarch,
const struct frame_unwind *unwinder)
{
get_frame_unwind_table (gdbarch).push_back (unwinder);
}
/* Call SNIFFER from UNWINDER. If it succeeded set UNWINDER for
THIS_FRAME and return true. Otherwise the function keeps THIS_FRAME
unchanged and returns false. */
static bool
frame_unwind_try_unwinder (const frame_info_ptr &this_frame, void **this_cache,
const struct frame_unwind *unwinder)
{
int res = 0;
unsigned int entry_generation = get_frame_cache_generation ();
frame_prepare_for_sniffer (this_frame, unwinder);
try
{
frame_debug_printf ("trying unwinder \"%s\"", unwinder->name ());
res = unwinder->sniff (this_frame, this_cache);
}
catch (const gdb_exception &ex)
{
frame_debug_printf ("caught exception: %s", ex.message->c_str ());
/* Catch all exceptions, caused by either interrupt or error.
Reset *THIS_CACHE, unless something reinitialized the frame
cache meanwhile, in which case THIS_FRAME/THIS_CACHE are now
dangling. */
if (get_frame_cache_generation () == entry_generation)
{
*this_cache = NULL;
frame_cleanup_after_sniffer (this_frame);
}
if (ex.error == NOT_AVAILABLE_ERROR)
{
/* This usually means that not even the PC is available,
thus most unwinders aren't able to determine if they're
the best fit. Keep trying. Fallback prologue unwinders
should always accept the frame. */
return false;
}
throw;
}
if (res)
{
frame_debug_printf ("yes");
return true;
}
else
{
frame_debug_printf ("no");
/* Don't set *THIS_CACHE to NULL here, because sniffer has to do
so. */
frame_cleanup_after_sniffer (this_frame);
return false;
}
gdb_assert_not_reached ("frame_unwind_try_unwinder");
}
/* Iterate through sniffers for THIS_FRAME frame until one returns with an
unwinder implementation. THIS_FRAME->UNWIND must be NULL, it will get set
by this function. Possibly initialize THIS_CACHE. */
void
frame_unwind_find_by_frame (const frame_info_ptr &this_frame, void **this_cache)
{
FRAME_SCOPED_DEBUG_ENTER_EXIT;
frame_debug_printf ("this_frame=%d", frame_relative_level (this_frame));
/* If we see a disabled unwinder, we assume some test is being run on
GDB, and we don't want to internal_error at the end of this function. */
bool seen_disabled_unwinder = false;
/* Lambda to factor out the logic of checking if an unwinder is enabled,
testing it and otherwise recording if we saw a disable unwinder. */
auto test_unwinder = [&] (const struct frame_unwind *unwinder)
{
if (unwinder == nullptr)
return false;
if (!unwinder->enabled ())
{
seen_disabled_unwinder = true;
return false;
}
return frame_unwind_try_unwinder (this_frame,
this_cache,
unwinder);
};
if (test_unwinder (target_get_unwinder ()))
return;
if (test_unwinder (target_get_tailcall_unwinder ()))
return;
struct gdbarch *gdbarch = get_frame_arch (this_frame);
std::vector<const frame_unwind *> &table = get_frame_unwind_table (gdbarch);
for (const auto &unwinder : table)
{
if (test_unwinder (unwinder))
return;
}
if (seen_disabled_unwinder)
error (_("Required frame unwinder may have been disabled"
", see 'maint info frame-unwinders'"));
else
internal_error (_("frame_unwind_find_by_frame failed"));
}
/* A default frame sniffer which always accepts the frame. Used by
fallback prologue unwinders. */
int
default_frame_sniffer (const struct frame_unwind *self,
const frame_info_ptr &this_frame,
void **this_prologue_cache)
{
return 1;
}
/* The default frame unwinder stop_reason callback. */
enum unwind_stop_reason
default_frame_unwind_stop_reason (const frame_info_ptr &this_frame,
void **this_cache)
{
struct frame_id this_id = get_frame_id (this_frame);
if (this_id == outer_frame_id)
return UNWIND_OUTERMOST;
else
return UNWIND_NO_REASON;
}
/* See frame-unwind.h. */
CORE_ADDR
default_unwind_pc (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
{
int pc_regnum = gdbarch_pc_regnum (gdbarch);
CORE_ADDR pc = frame_unwind_register_unsigned (next_frame, pc_regnum);
pc = gdbarch_addr_bits_remove (gdbarch, pc);
return pc;
}
/* See frame-unwind.h. */
CORE_ADDR
default_unwind_sp (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
{
int sp_regnum = gdbarch_sp_regnum (gdbarch);
return frame_unwind_register_unsigned (next_frame, sp_regnum);
}
/* Helper functions for value-based register unwinding. These return
a (possibly lazy) value of the appropriate type. */
/* Return a value which indicates that FRAME did not save REGNUM. */
struct value *
frame_unwind_got_optimized (const frame_info_ptr &frame, int regnum)
{
struct gdbarch *gdbarch = frame_unwind_arch (frame);
struct type *type = register_type (gdbarch, regnum);
return value::allocate_optimized_out (type);
}
/* Return a value which indicates that FRAME copied REGNUM into
register NEW_REGNUM. */
struct value *
frame_unwind_got_register (const frame_info_ptr &frame,
int regnum, int new_regnum)
{
return value_of_register_lazy (get_next_frame_sentinel_okay (frame),
new_regnum);
}
/* Return a value which indicates that FRAME saved REGNUM in memory at
ADDR. */
struct value *
frame_unwind_got_memory (const frame_info_ptr &frame, int regnum, CORE_ADDR addr)
{
struct gdbarch *gdbarch = frame_unwind_arch (frame);
struct value *v = value_at_lazy (register_type (gdbarch, regnum), addr);
v->set_stack (true);
return v;
}
/* Return a value which indicates that FRAME's saved version of
REGNUM has a known constant (computed) value of VAL. */
struct value *
frame_unwind_got_constant (const frame_info_ptr &frame, int regnum,
ULONGEST val)
{
struct gdbarch *gdbarch = frame_unwind_arch (frame);
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
struct value *reg_val;
reg_val = value::zero (register_type (gdbarch, regnum), not_lval);
store_unsigned_integer (reg_val->contents_writeable ().data (),
register_size (gdbarch, regnum), byte_order, val);
return reg_val;
}
struct value *
frame_unwind_got_bytes (const frame_info_ptr &frame, int regnum,
gdb::array_view<const gdb_byte> buf)
{
struct gdbarch *gdbarch = frame_unwind_arch (frame);
struct value *reg_val;
reg_val = value::zero (register_type (gdbarch, regnum), not_lval);
gdb::array_view<gdb_byte> val_contents = reg_val->contents_raw ();
/* The value's contents buffer is zeroed on allocation so if buf is
smaller, the remaining space will be filled with zero.
This can happen when unwinding through signal frames. For example, if
an AArch64 program doesn't use SVE, then the Linux kernel will only
save in the signal frame the first 128 bits of the vector registers,
which is their minimum size, even if the vector length says they're
bigger. */
gdb_assert (buf.size () <= val_contents.size ());
memcpy (val_contents.data (), buf.data (), buf.size ());
return reg_val;
}
/* Return a value which indicates that FRAME's saved version of REGNUM
has a known constant (computed) value of ADDR. Convert the
CORE_ADDR to a target address if necessary. */
struct value *
frame_unwind_got_address (const frame_info_ptr &frame, int regnum,
CORE_ADDR addr)
{
struct gdbarch *gdbarch = frame_unwind_arch (frame);
struct value *reg_val;
reg_val = value::zero (register_type (gdbarch, regnum), not_lval);
pack_long (reg_val->contents_writeable ().data (),
register_type (gdbarch, regnum), addr);
return reg_val;
}
/* See frame-unwind.h. */
enum unwind_stop_reason
frame_unwind_legacy::stop_reason (const frame_info_ptr &this_frame,
void **this_prologue_cache) const
{
return m_stop_reason (this_frame, this_prologue_cache);
}
/* See frame-unwind.h. */
void
frame_unwind_legacy::this_id (const frame_info_ptr &this_frame,
void **this_prologue_cache,
struct frame_id *id) const
{
return m_this_id (this_frame, this_prologue_cache, id);
}
/* See frame-unwind.h. */
struct value *
frame_unwind_legacy::prev_register (const frame_info_ptr &this_frame,
void **this_prologue_cache,
int regnum) const
{
return m_prev_register (this_frame, this_prologue_cache, regnum);
}
/* See frame-unwind.h. */
int
frame_unwind_legacy::sniff (const frame_info_ptr &this_frame,
void **this_prologue_cache) const
{
return m_sniffer (this, this_frame, this_prologue_cache);
}
/* See frame-unwind.h. */
void
frame_unwind_legacy::dealloc_cache (frame_info *self, void *this_cache) const
{
if (m_dealloc_cache != nullptr)
m_dealloc_cache (self, this_cache);
}
/* See frame-unwind.h. */
struct gdbarch *
frame_unwind_legacy::prev_arch (const frame_info_ptr &this_frame,
void **this_prologue_cache) const
{
if (m_prev_arch == nullptr)
return frame_unwind::prev_arch (this_frame, this_prologue_cache);
return m_prev_arch (this_frame, this_prologue_cache);
}
/* Implement "maintenance info frame-unwinders" command. */
static void
maintenance_info_frame_unwinders (const char *args, int from_tty)
{
gdbarch *gdbarch = current_inferior ()->arch ();
std::vector<const frame_unwind *> &table = get_frame_unwind_table (gdbarch);
ui_out *uiout = current_uiout;
ui_out_emit_table table_emitter (uiout, 4, -1, "FrameUnwinders");
uiout->table_header (27, ui_left, "name", "Name");
uiout->table_header (25, ui_left, "type", "Type");
uiout->table_header (9, ui_left, "class", "Class");
uiout->table_header (8, ui_left, "enabled", "Enabled");
uiout->table_body ();
for (const auto &unwinder : table)
{
ui_out_emit_list tuple_emitter (uiout, nullptr);
uiout->field_string ("name", unwinder->name ());
uiout->field_string ("type", frame_type_str (unwinder->type ()));
uiout->field_string ("class", frame_unwinder_class_str (
unwinder->unwinder_class ()));
uiout->field_string ("enabled", unwinder->enabled () ? "Y" : "N");
uiout->text ("\n");
}
}
/* Options for disabling frame unwinders. */
struct maint_frame_unwind_options
{
std::string unwinder_name;
const char *unwinder_class = nullptr;
bool all = false;
};
static const gdb::option::option_def maint_frame_unwind_opt_defs[] = {
gdb::option::flag_option_def<maint_frame_unwind_options> {
"all",
[] (maint_frame_unwind_options *opt) { return &opt->all; },
N_("Change the state of all unwinders")
},
gdb::option::string_option_def<maint_frame_unwind_options> {
"name",
[] (maint_frame_unwind_options *opt) { return &opt->unwinder_name; },
nullptr,
N_("The name of the unwinder to have its state changed")
},
gdb::option::enum_option_def<maint_frame_unwind_options> {
"class",
unwind_class_conversion,
[] (maint_frame_unwind_options *opt) { return &opt->unwinder_class; },
nullptr,
N_("The class of unwinders to have their states changed")
}
};
static inline gdb::option::option_def_group
make_frame_unwind_enable_disable_options (maint_frame_unwind_options *opts)
{
return {{maint_frame_unwind_opt_defs}, opts};
}
/* Helper function to both enable and disable frame unwinders.
If ENABLE is true, this call will be enabling unwinders,
otherwise the unwinders will be disabled. */
static void
enable_disable_frame_unwinders (const char *args, int from_tty, bool enable)
{
if (args == nullptr)
{
if (enable)
error (_("Specify which frame unwinder(s) should be enabled"));
else
error (_("Specify which frame unwinder(s) should be disabled"));
}
struct gdbarch* gdbarch = current_inferior ()->arch ();
std::vector<const frame_unwind *> unwinder_list
= get_frame_unwind_table (gdbarch);
maint_frame_unwind_options opts;
gdb::option::process_options
(&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_ERROR,
make_frame_unwind_enable_disable_options (&opts));
if ((opts.all && !opts.unwinder_name.empty ())
|| (opts.all && opts.unwinder_class != nullptr)
|| (!opts.unwinder_name.empty () && opts.unwinder_class != nullptr))
error (_("Options are mutually exclusive"));
/* First see if the user wants to change all unwinders. */
if (opts.all)
{
for (const frame_unwind *u : unwinder_list)
u->set_enabled (enable);
reinit_frame_cache ();
return;
}
/* If user entered a specific unwinder name, handle it here. If the
unwinder is already at the expected state, error out. */
if (!opts.unwinder_name.empty ())
{
bool did_something = false;
for (const frame_unwind *unwinder : unwinder_list)
{
if (strcasecmp (unwinder->name (),
opts.unwinder_name.c_str ()) == 0)
{
if (unwinder->enabled () == enable)
{
if (unwinder->enabled ())
error (_("unwinder %s is already enabled"),
unwinder->name ());
else
error (_("unwinder %s is already disabled"),
unwinder->name ());
}
unwinder->set_enabled (enable);
did_something = true;
break;
}
}
if (!did_something)
error (_("couldn't find unwinder named %s"),
opts.unwinder_name.c_str ());
}
else
{
if (opts.unwinder_class == nullptr)
opts.unwinder_class = args;
enum frame_unwind_class dclass = str_to_frame_unwind_class
(opts.unwinder_class);
for (const frame_unwind *unwinder: unwinder_list)
{
if (unwinder->unwinder_class () == dclass)
unwinder->set_enabled (enable);
}
}
reinit_frame_cache ();
}
/* Completer for the "maint frame-unwinder enable|disable" commands. */
static void
enable_disable_frame_unwinders_completer (struct cmd_list_element *ignore,
completion_tracker &tracker,
const char *text,
const char * /*word*/)
{
maint_frame_unwind_options opts;
const auto group = make_frame_unwind_enable_disable_options (&opts);
const char *start = text;
if (gdb::option::complete_options
(tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
return;
/* Only complete a class name as a stand-alone operand when no options
are given. */
if (start == text)
complete_on_enum (tracker, unwind_class_conversion, text, text);
return;
}
/* Implement "maint frame-unwinder disable" command. */
static void
maintenance_disable_frame_unwinders (const char *args, int from_tty)
{
enable_disable_frame_unwinders (args, from_tty, false);
}
/* Implement "maint frame-unwinder enable" command. */
static void
maintenance_enable_frame_unwinders (const char *args, int from_tty)
{
enable_disable_frame_unwinders (args, from_tty, true);
}
void _initialize_frame_unwind ();
void
_initialize_frame_unwind ()
{
/* Add "maint info frame-unwinders". */
add_cmd ("frame-unwinders",
class_maintenance,
maintenance_info_frame_unwinders,
_("\
List the frame unwinders currently in effect.\n\
Unwinders are listed starting with the highest priority."),
&maintenanceinfolist);
/* Add "maint frame-unwinder disable/enable". */
static struct cmd_list_element *maint_frame_unwinder;
add_basic_prefix_cmd ("frame-unwinder", class_maintenance,
_("Commands handling frame unwinders."),
&maint_frame_unwinder, 0, &maintenancelist);
cmd_list_element *c
= add_cmd ("disable", class_maintenance, maintenance_disable_frame_unwinders,
_("\
Disable one or more frame unwinder(s).\n\
Usage: maint frame-unwinder disable [-all | -name NAME | [-class] CLASS]\n\
\n\
These are the meanings of the options:\n\
\t-all - All available unwinders will be disabled\n\
\t-name - NAME is the exact name of the frame unwinder to be disabled\n\
\t-class - CLASS is the class of unwinders to be disabled. Valid classes are:\n\
\t\tGDB - Unwinders added by GDB core;\n\
\t\tEXTENSION - Unwinders added by extension languages;\n\
\t\tDEBUGINFO - Unwinders that handle debug information;\n\
\t\tARCH - Unwinders that use architecture-specific information;\n\
\n\
UNWINDER and NAME are case insensitive."),
&maint_frame_unwinder);
set_cmd_completer_handle_brkchars (c,
enable_disable_frame_unwinders_completer);
c =
add_cmd ("enable", class_maintenance, maintenance_enable_frame_unwinders,
_("\
Enable one or more frame unwinder(s).\n\
Usage: maint frame-unwinder enable [-all | -name NAME | [-class] CLASS]\n\
\n\
These are the meanings of the options:\n\
\t-all - All available unwinders will be enabled\n\
\t-name - NAME is the exact name of the frame unwinder to be enabled\n\
\t-class - CLASS is the class of unwinders to be enabled. Valid classes are:\n\
\t\tGDB - Unwinders added by GDB core;\n\
\t\tEXTENSION - Unwinders added by extension languages;\n\
\t\tDEBUGINFO - Unwinders that handle debug information;\n\
\t\tARCH - Unwinders that use architecture-specific information;\n\
\n\
UNWINDER and NAME are case insensitive."),
&maint_frame_unwinder);
set_cmd_completer_handle_brkchars (c,
enable_disable_frame_unwinders_completer);
}
|