1 /* Copyright (C) 2021-2024 Free Software Foundation, Inc.
3 This file is part of GDB.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "cli/cli-cmds.h"
22 #include "cli/cli-decode.h"
27 gdb_internal_backtrace_set_cmd (const char *args
, int from_tty
,
30 gdb_assert (c
->type
== set_cmd
);
31 gdb_assert (c
->var
.has_value ());
32 gdb_assert (c
->var
->type () == var_boolean
);
34 #ifndef GDB_PRINT_INTERNAL_BACKTRACE
35 if (c
->var
->get
<bool> ())
37 c
->var
->set
<bool> (false);
38 error (_("support for this feature is not compiled into GDB"));
43 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
44 #ifdef GDB_PRINT_INTERNAL_BACKTRACE_USING_LIBBACKTRACE
46 /* Callback used by libbacktrace if it encounters an error. */
49 libbacktrace_error (void *data
, const char *errmsg
, int errnum
)
51 /* A negative errnum indicates no debug info was available, just
52 skip printing a backtrace in this case. */
56 const auto sig_write
= [] (const char *msg
) -> void
58 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
61 sig_write ("error creating backtrace: ");
66 snprintf (buf
, sizeof (buf
), ": %d", errnum
);
67 buf
[sizeof (buf
) - 1] = '\0';
74 /* Callback used by libbacktrace to print a single stack frame. */
77 libbacktrace_print (void *data
, uintptr_t pc
, const char *filename
,
78 int lineno
, const char *function
)
80 const auto sig_write
= [] (const char *msg
) -> void
82 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
85 /* Buffer to print addresses and line numbers into. An 8-byte address
86 with '0x' prefix and a null terminator requires 20 characters. This
87 also feels like it should be enough to represent line numbers in most
88 files. We are also careful to ensure we don't overflow this buffer. */
91 snprintf (buf
, sizeof (buf
), "0x%" PRIxPTR
" ", pc
);
92 buf
[sizeof (buf
) - 1] = '\0';
94 sig_write (function
== nullptr ? "???" : function
);
95 if (filename
!= nullptr)
100 snprintf (buf
, sizeof (buf
), "%d", lineno
);
101 buf
[sizeof (buf
) - 1] = '\0';
106 return function
!= nullptr && strcmp (function
, "main") == 0;
109 /* Write a backtrace to GDB's stderr in an async safe manner. This is a
110 backtrace of GDB, not any running inferior, and is to be used when GDB
111 crashes or hits some other error condition. */
114 gdb_internal_backtrace_1 ()
116 static struct backtrace_state
*state
= nullptr;
118 if (state
== nullptr)
119 state
= backtrace_create_state (nullptr, 0, libbacktrace_error
, nullptr);
121 backtrace_full (state
, 0, libbacktrace_print
, libbacktrace_error
, nullptr);
124 #elif defined GDB_PRINT_INTERNAL_BACKTRACE_USING_EXECINFO
126 /* See the comment on previous version of this function. */
129 gdb_internal_backtrace_1 ()
131 const auto sig_write
= [] (const char *msg
) -> void
133 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
136 /* Allow up to 25 frames of backtrace. */
138 int frames
= backtrace (buffer
, ARRAY_SIZE (buffer
));
140 backtrace_symbols_fd (buffer
, frames
, gdb_stderr
->fd ());
141 if (frames
== ARRAY_SIZE (buffer
))
142 sig_write (_("Backtrace might be incomplete.\n"));
146 #error "unexpected internal backtrace policy"
148 #endif /* GDB_PRINT_INTERNAL_BACKTRACE */
150 /* See bt-utils.h. */
153 gdb_internal_backtrace ()
155 if (current_ui
== nullptr)
158 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
159 const auto sig_write
= [] (const char *msg
) -> void
161 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
164 sig_write (_("----- Backtrace -----\n"));
166 if (gdb_stderr
->fd () > -1)
167 gdb_internal_backtrace_1 ();
169 sig_write (_("Backtrace unavailable\n"));
171 sig_write ("---------------------\n");