Avoid undefined behavior in Guile exception handling
[deliverable/binutils-gdb.git] / gdb / common / common-exceptions.h
CommitLineData
ff55e1b5
GB
1/* Exception (throw catch) mechanism, for GDB, the GNU debugger.
2
42a4f53d 3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
ff55e1b5
GB
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
1a5c2598
TT
20#ifndef COMMON_COMMON_EXCEPTIONS_H
21#define COMMON_COMMON_EXCEPTIONS_H
ff55e1b5 22
173981bc 23#include <setjmp.h>
503b1c39 24#include <new>
3d6e9d23 25#include <memory>
56be6ea8 26#include <string>
ff55e1b5
GB
27
28/* Reasons for calling throw_exceptions(). NOTE: all reason values
65630365
PA
29 must be different from zero. enum value 0 is reserved for internal
30 use as the return value from an initial setjmp(). */
ff55e1b5
GB
31
32enum return_reason
33 {
34 /* User interrupt. */
35 RETURN_QUIT = -2,
36 /* Any other error. */
37 RETURN_ERROR
38 };
39
40#define RETURN_MASK(reason) (1 << (int)(-reason))
41
42typedef enum
43{
44 RETURN_MASK_QUIT = RETURN_MASK (RETURN_QUIT),
45 RETURN_MASK_ERROR = RETURN_MASK (RETURN_ERROR),
46 RETURN_MASK_ALL = (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
47} return_mask;
48
49/* Describe all exceptions. */
50
51enum errors {
52 GDB_NO_ERROR,
53
54 /* Any generic error, the corresponding text is in
55 exception.message. */
56 GENERIC_ERROR,
57
58 /* Something requested was not found. */
59 NOT_FOUND_ERROR,
60
61 /* Thread library lacks support necessary for finding thread local
62 storage. */
63 TLS_NO_LIBRARY_SUPPORT_ERROR,
64
65 /* Load module not found while attempting to find thread local storage. */
66 TLS_LOAD_MODULE_NOT_FOUND_ERROR,
67
68 /* Thread local storage has not been allocated yet. */
69 TLS_NOT_ALLOCATED_YET_ERROR,
70
71 /* Something else went wrong while attempting to find thread local
72 storage. The ``struct gdb_exception'' message field provides
73 more detail. */
74 TLS_GENERIC_ERROR,
75
76 /* Problem parsing an XML document. */
77 XML_PARSE_ERROR,
78
79 /* Error accessing memory. */
80 MEMORY_ERROR,
81
82 /* Value not available. E.g., a register was not collected in a
83 traceframe. */
84 NOT_AVAILABLE_ERROR,
85
86 /* Value was optimized out. Note: if the value was a register, this
87 means the register was not saved in the frame. */
88 OPTIMIZED_OUT_ERROR,
89
216f72a1 90 /* DW_OP_entry_value resolving failed. */
ff55e1b5
GB
91 NO_ENTRY_VALUE_ERROR,
92
93 /* Target throwing an error has been closed. Current command should be
94 aborted as the inferior state is no longer valid. */
95 TARGET_CLOSE_ERROR,
96
97 /* An undefined command was executed. */
98 UNDEFINED_COMMAND_ERROR,
99
100 /* Requested feature, method, mechanism, etc. is not supported. */
101 NOT_SUPPORTED_ERROR,
102
ef0b411a
GB
103 /* The number of candidates generated during line completion has
104 reached the user's specified limit. This isn't an error, this exception
105 is used to halt searching for more completions, but for consistency
106 "_ERROR" is appended to the name. */
107 MAX_COMPLETIONS_REACHED_ERROR,
108
ff55e1b5
GB
109 /* Add more errors here. */
110 NR_ERRORS
111};
112
113struct gdb_exception
114{
3d6e9d23
TT
115 gdb_exception ()
116 : reason ((enum return_reason) 0),
117 error (GDB_NO_ERROR)
118 {
119 }
120
121 gdb_exception (enum return_reason r, enum errors e)
122 : reason (r),
123 error (e)
124 {
125 }
126
56be6ea8
PA
127 gdb_exception (enum return_reason r, enum errors e,
128 const char *fmt, va_list ap)
129 ATTRIBUTE_PRINTF (4, 0)
130 : reason (r),
131 error (e),
132 message (std::make_shared<std::string> (string_vprintf (fmt, ap)))
133 {
134 }
135
3d6e9d23
TT
136 /* The copy constructor exists so that we can mark it "noexcept",
137 which is a good practice for any sort of exception object. */
138 gdb_exception (const gdb_exception &other) noexcept
139 : reason (other.reason),
140 error (other.error),
141 message (other.message)
142 {
143 }
144
145 /* The assignment operator exists so that we can mark it "noexcept",
146 which is a good practice for any sort of exception object. */
147 gdb_exception &operator= (const gdb_exception &other) noexcept
148 {
149 reason = other.reason;
150 error = other.error;
151 message = other.message;
152 return *this;
153 }
154
c6fdd8b2
TT
155 gdb_exception &operator= (gdb_exception &&other) noexcept = default;
156
3d6e9d23
TT
157 /* Return the contents of the exception message, as a C string. The
158 string remains owned by the exception object. */
159 const char *what () const noexcept
160 {
161 return message->c_str ();
162 }
163
ff55e1b5
GB
164 enum return_reason reason;
165 enum errors error;
3d6e9d23 166 std::shared_ptr<std::string> message;
ff55e1b5
GB
167};
168
89525768
PA
169/* Functions to drive the sjlj-based exceptions state machine. Though
170 declared here by necessity, these functions should be considered
171 internal to the exceptions subsystem and not used other than via
172 the TRY/CATCH (or TRY_SJLJ/CATCH_SJLJ) macros defined below. */
ff55e1b5 173
173981bc 174extern jmp_buf *exceptions_state_mc_init (void);
ff55e1b5
GB
175extern int exceptions_state_mc_action_iter (void);
176extern int exceptions_state_mc_action_iter_1 (void);
492d29ea 177extern int exceptions_state_mc_catch (struct gdb_exception *, int);
89525768 178
ff55e1b5
GB
179/* Macro to wrap up standard try/catch behavior.
180
181 The double loop lets us correctly handle code "break"ing out of the
182 try catch block. (It works as the "break" only exits the inner
183 "while" loop, the outer for loop detects this handling it
184 correctly.) Of course "return" and "goto" are not so lucky.
185
186 For instance:
187
188 *INDENT-OFF*
189
d272eb37 190 TRY_SJLJ
ff55e1b5
GB
191 {
192 }
d272eb37 193 CATCH_SJLJ (e, RETURN_MASK_ERROR)
ff55e1b5 194 {
492d29ea
PA
195 switch (e.reason)
196 {
197 case RETURN_ERROR: ...
198 }
ff55e1b5 199 }
d272eb37 200 END_CATCH_SJLJ
ff55e1b5 201
d272eb37
TT
202 The SJLJ variants are needed in some cases where gdb exceptions
203 need to cross third-party library code compiled without exceptions
204 support (e.g., readline). */
ff55e1b5 205
89525768 206#define TRY_SJLJ \
ff55e1b5 207 { \
173981bc 208 jmp_buf *buf = \
492d29ea 209 exceptions_state_mc_init (); \
173981bc 210 setjmp (*buf); \
ff55e1b5
GB
211 } \
212 while (exceptions_state_mc_action_iter ()) \
213 while (exceptions_state_mc_action_iter_1 ())
214
89525768 215#define CATCH_SJLJ(EXCEPTION, MASK) \
492d29ea
PA
216 { \
217 struct gdb_exception EXCEPTION; \
218 if (exceptions_state_mc_catch (&(EXCEPTION), MASK))
219
89525768 220#define END_CATCH_SJLJ \
492d29ea
PA
221 }
222
72df25b2
PA
223/* The exception types client code may catch. They're just shims
224 around gdb_exception that add nothing but type info. Which is used
225 is selected depending on the MASK argument passed to CATCH. */
226
230d2906 227struct gdb_exception_error : public gdb_exception
72df25b2 228{
56be6ea8
PA
229 gdb_exception_error (enum errors e, const char *fmt, va_list ap)
230 ATTRIBUTE_PRINTF (3, 0)
231 : gdb_exception (RETURN_ERROR, e, fmt, ap)
26003a20
TT
232 {
233 }
234
230d2906 235 explicit gdb_exception_error (const gdb_exception &ex) noexcept
3d6e9d23
TT
236 : gdb_exception (ex)
237 {
56be6ea8 238 gdb_assert (ex.reason == RETURN_ERROR);
3d6e9d23 239 }
72df25b2
PA
240};
241
230d2906 242struct gdb_exception_quit : public gdb_exception
72df25b2 243{
56be6ea8
PA
244 gdb_exception_quit (const char *fmt, va_list ap)
245 ATTRIBUTE_PRINTF (2, 0)
246 : gdb_exception (RETURN_QUIT, GDB_NO_ERROR, fmt, ap)
26003a20
TT
247 {
248 }
249
230d2906
TT
250 explicit gdb_exception_quit (const gdb_exception &ex) noexcept
251 : gdb_exception (ex)
3d6e9d23 252 {
56be6ea8 253 gdb_assert (ex.reason == RETURN_QUIT);
3d6e9d23 254 }
72df25b2
PA
255};
256
503b1c39
PA
257/* An exception type that inherits from both std::bad_alloc and a gdb
258 exception. This is necessary because operator new can only throw
259 std::bad_alloc, and OTOH, we want exceptions thrown due to memory
260 allocation error to be caught by all the CATCH/RETURN_MASK_ALL
261 spread around the codebase. */
262
263struct gdb_quit_bad_alloc
230d2906 264 : public gdb_exception_quit,
503b1c39
PA
265 public std::bad_alloc
266{
3d6e9d23 267 explicit gdb_quit_bad_alloc (const gdb_exception &ex) noexcept
230d2906 268 : gdb_exception_quit (ex),
3d6e9d23 269 std::bad_alloc ()
503b1c39 270 {
503b1c39
PA
271 }
272};
273
ff55e1b5
GB
274/* *INDENT-ON* */
275
ddb6d633
PA
276/* Throw an exception (as described by "struct gdb_exception"),
277 landing in the inner most containing exception handler established
278 using TRY/CATCH. */
26003a20 279extern void throw_exception (const gdb_exception &exception)
ff55e1b5 280 ATTRIBUTE_NORETURN;
89525768
PA
281
282/* Throw an exception by executing a LONG JUMP to the inner most
ddb6d633
PA
283 containing exception handler established using TRY_SJLJ. Necessary
284 in some cases where we need to throw GDB exceptions across
285 third-party library code (e.g., readline). */
c6fdd8b2 286extern void throw_exception_sjlj (const struct gdb_exception &exception)
89525768
PA
287 ATTRIBUTE_NORETURN;
288
289/* Convenience wrappers around throw_exception that throw GDB
290 errors. */
ff55e1b5
GB
291extern void throw_verror (enum errors, const char *fmt, va_list ap)
292 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (2, 0);
293extern void throw_vquit (const char *fmt, va_list ap)
294 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 0);
295extern void throw_error (enum errors error, const char *fmt, ...)
296 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (2, 3);
297extern void throw_quit (const char *fmt, ...)
298 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 2);
299
1a5c2598 300#endif /* COMMON_COMMON_EXCEPTIONS_H */
This page took 0.366347 seconds and 4 git commands to generate.