1 /* Copyright (C) 2021-2022 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/>. */
23 #include "cli/cli-decode.h"
28 gdb_internal_backtrace_set_cmd (const char *args
, int from_tty
,
31 gdb_assert (c
->type
== set_cmd
);
32 gdb_assert (c
->var
.has_value ());
33 gdb_assert (c
->var
->type () == var_boolean
);
35 #ifndef GDB_PRINT_INTERNAL_BACKTRACE
36 if (c
->var
->get
<bool> ())
38 c
->var
->set
<bool> (false);
39 error (_("support for this feature is not compiled into GDB"));
44 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
45 #ifdef GDB_PRINT_INTERNAL_BACKTRACE_USING_LIBBACKTRACE
47 /* Callback used by libbacktrace if it encounters an error. */
50 libbacktrace_error (void *data
, const char *errmsg
, int errnum
)
52 /* A negative errnum indicates no debug info was available, just
53 skip printing a backtrace in this case. */
57 const auto sig_write
= [] (const char *msg
) -> void
59 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
62 sig_write ("error creating backtrace: ");
67 snprintf (buf
, sizeof (buf
), ": %d", errnum
);
68 buf
[sizeof (buf
) - 1] = '\0';
75 /* Callback used by libbacktrace to print a single stack frame. */
78 libbacktrace_print (void *data
, uintptr_t pc
, const char *filename
,
79 int lineno
, const char *function
)
81 const auto sig_write
= [] (const char *msg
) -> void
83 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
86 /* Buffer to print addresses and line numbers into. An 8-byte address
87 with '0x' prefix and a null terminator requires 20 characters. This
88 also feels like it should be enough to represent line numbers in most
89 files. We are also careful to ensure we don't overflow this buffer. */
92 snprintf (buf
, sizeof (buf
), "0x%" PRIxPTR
" ", pc
);
93 buf
[sizeof (buf
) - 1] = '\0';
95 sig_write (function
== nullptr ? "???" : function
);
96 if (filename
!= nullptr)
101 snprintf (buf
, sizeof (buf
), "%d", lineno
);
102 buf
[sizeof (buf
) - 1] = '\0';
107 return function
!= nullptr && strcmp (function
, "main") == 0;
110 /* Write a backtrace to GDB's stderr in an async safe manner. This is a
111 backtrace of GDB, not any running inferior, and is to be used when GDB
112 crashes or hits some other error condition. */
115 gdb_internal_backtrace_1 ()
117 static struct backtrace_state
*state
= nullptr;
119 if (state
== nullptr)
120 state
= backtrace_create_state (nullptr, 0, libbacktrace_error
, nullptr);
122 backtrace_full (state
, 0, libbacktrace_print
, libbacktrace_error
, nullptr);
125 #elif defined GDB_PRINT_INTERNAL_BACKTRACE_USING_EXECINFO
127 /* See the comment on previous version of this function. */
130 gdb_internal_backtrace_1 ()
132 const auto sig_write
= [] (const char *msg
) -> void
134 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
137 /* Allow up to 25 frames of backtrace. */
139 int frames
= backtrace (buffer
, ARRAY_SIZE (buffer
));
141 backtrace_symbols_fd (buffer
, frames
, gdb_stderr
->fd ());
142 if (frames
== ARRAY_SIZE (buffer
))
143 sig_write (_("Backtrace might be incomplete.\n"));
147 #error "unexpected internal backtrace policy"
149 #endif /* GDB_PRINT_INTERNAL_BACKTRACE */
151 /* See bt-utils.h. */
154 gdb_internal_backtrace ()
156 if (current_ui
== nullptr)
159 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
160 const auto sig_write
= [] (const char *msg
) -> void
162 gdb_stderr
->write_async_safe (msg
, strlen (msg
));
165 sig_write (_("----- Backtrace -----\n"));
167 if (gdb_stderr
->fd () > -1)
168 gdb_internal_backtrace_1 ();
170 sig_write (_("Backtrace unavailable\n"));
172 sig_write ("---------------------\n");