Automatic date update in version.in
[binutils-gdb.git] / gdb / bt-utils.c
blob64d7701d5ae58395aa4e74aefb05eb7e06e5d461
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/>. */
18 #include "bt-utils.h"
19 #include "command.h"
20 #include "cli/cli-cmds.h"
21 #include "ui.h"
22 #include "cli/cli-decode.h"
24 /* See bt-utils.h. */
26 void
27 gdb_internal_backtrace_set_cmd (const char *args, int from_tty,
28 cmd_list_element *c)
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"));
40 #endif
43 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
44 #ifdef GDB_PRINT_INTERNAL_BACKTRACE_USING_LIBBACKTRACE
46 /* Callback used by libbacktrace if it encounters an error. */
48 static void
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. */
53 if (errnum < 0)
54 return;
56 const auto sig_write = [] (const char *msg) -> void
58 gdb_stderr->write_async_safe (msg, strlen (msg));
61 sig_write ("error creating backtrace: ");
62 sig_write (errmsg);
63 if (errnum > 0)
65 char buf[20];
66 snprintf (buf, sizeof (buf), ": %d", errnum);
67 buf[sizeof (buf) - 1] = '\0';
69 sig_write (buf);
71 sig_write ("\n");
74 /* Callback used by libbacktrace to print a single stack frame. */
76 static int
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. */
89 char buf[20];
91 snprintf (buf, sizeof (buf), "0x%" PRIxPTR " ", pc);
92 buf[sizeof (buf) - 1] = '\0';
93 sig_write (buf);
94 sig_write (function == nullptr ? "???" : function);
95 if (filename != nullptr)
97 sig_write ("\n\t");
98 sig_write (filename);
99 sig_write (":");
100 snprintf (buf, sizeof (buf), "%d", lineno);
101 buf[sizeof (buf) - 1] = '\0';
102 sig_write (buf);
104 sig_write ("\n");
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. */
113 static void
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. */
128 static void
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. */
137 void *buffer[25];
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"));
145 #else
146 #error "unexpected internal backtrace policy"
147 #endif
149 static const char *str_backtrace = "----- Backtrace -----\n";
150 static const char *str_backtrace_unavailable = "Backtrace unavailable\n";
152 #endif /* GDB_PRINT_INTERNAL_BACKTRACE */
154 /* See bt-utils.h. */
156 void
157 gdb_internal_backtrace_init_str ()
159 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
160 str_backtrace = _("----- Backtrace -----\n");
161 str_backtrace_unavailable = _("Backtrace unavailable\n");
162 #endif
165 /* See bt-utils.h. */
167 void
168 gdb_internal_backtrace ()
170 if (current_ui == nullptr)
171 return;
173 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
174 const auto sig_write = [] (const char *msg) -> void
176 gdb_stderr->write_async_safe (msg, strlen (msg));
179 sig_write (str_backtrace);
181 if (gdb_stderr->fd () > -1)
182 gdb_internal_backtrace_1 ();
183 else
184 sig_write (str_backtrace_unavailable);
186 sig_write ("---------------------\n");
187 #endif