2008-02-21 Pedro Alves <pedro@codesorcery.com>
[deliverable/binutils-gdb.git] / gdb / exceptions.c
1 /* Exception (throw catch) mechanism, for GDB, the GNU debugger.
2
3 Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 2009 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "exceptions.h"
24 #include "breakpoint.h"
25 #include "target.h"
26 #include "inferior.h"
27 #include "annotate.h"
28 #include "ui-out.h"
29 #include "gdb_assert.h"
30 #include "gdb_string.h"
31 #include "serial.h"
32 #include "gdbthread.h"
33
34 const struct gdb_exception exception_none = { 0, GDB_NO_ERROR, NULL };
35
36 /* Possible catcher states. */
37 enum catcher_state {
38 /* Initial state, a new catcher has just been created. */
39 CATCHER_CREATED,
40 /* The catch code is running. */
41 CATCHER_RUNNING,
42 CATCHER_RUNNING_1,
43 /* The catch code threw an exception. */
44 CATCHER_ABORTING
45 };
46
47 /* Possible catcher actions. */
48 enum catcher_action {
49 CATCH_ITER,
50 CATCH_ITER_1,
51 CATCH_THROWING
52 };
53
54 struct catcher
55 {
56 enum catcher_state state;
57 /* Jump buffer pointing back at the exception handler. */
58 EXCEPTIONS_SIGJMP_BUF buf;
59 /* Status buffer belonging to the exception handler. */
60 volatile struct gdb_exception *exception;
61 /* Saved/current state. */
62 int mask;
63 struct ui_out *saved_uiout;
64 struct cleanup *saved_cleanup_chain;
65 /* Back link. */
66 struct catcher *prev;
67 };
68
69 /* Where to go for throw_exception(). */
70 static struct catcher *current_catcher;
71
72 EXCEPTIONS_SIGJMP_BUF *
73 exceptions_state_mc_init (struct ui_out *func_uiout,
74 volatile struct gdb_exception *exception,
75 return_mask mask)
76 {
77 struct catcher *new_catcher = XZALLOC (struct catcher);
78
79 /* Start with no exception, save it's address. */
80 exception->reason = 0;
81 exception->error = GDB_NO_ERROR;
82 exception->message = NULL;
83 new_catcher->exception = exception;
84
85 new_catcher->mask = mask;
86
87 /* Override the global ``struct ui_out'' builder. */
88 new_catcher->saved_uiout = uiout;
89 uiout = func_uiout;
90
91 /* Prevent error/quit during FUNC from calling cleanups established
92 prior to here. */
93 new_catcher->saved_cleanup_chain = save_cleanups ();
94
95 /* Push this new catcher on the top. */
96 new_catcher->prev = current_catcher;
97 current_catcher = new_catcher;
98 new_catcher->state = CATCHER_CREATED;
99
100 return &new_catcher->buf;
101 }
102
103 static void
104 catcher_pop (void)
105 {
106 struct catcher *old_catcher = current_catcher;
107 current_catcher = old_catcher->prev;
108
109 /* Restore the cleanup chain, the error/quit messages, and the uiout
110 builder, to their original states. */
111
112 restore_cleanups (old_catcher->saved_cleanup_chain);
113
114 uiout = old_catcher->saved_uiout;
115
116 xfree (old_catcher);
117 }
118
119 /* Catcher state machine. Returns non-zero if the m/c should be run
120 again, zero if it should abort. */
121
122 static int
123 exceptions_state_mc (enum catcher_action action)
124 {
125 switch (current_catcher->state)
126 {
127 case CATCHER_CREATED:
128 switch (action)
129 {
130 case CATCH_ITER:
131 /* Allow the code to run the catcher. */
132 current_catcher->state = CATCHER_RUNNING;
133 return 1;
134 default:
135 internal_error (__FILE__, __LINE__, _("bad state"));
136 }
137 case CATCHER_RUNNING:
138 switch (action)
139 {
140 case CATCH_ITER:
141 /* No error/quit has occured. Just clean up. */
142 catcher_pop ();
143 return 0;
144 case CATCH_ITER_1:
145 current_catcher->state = CATCHER_RUNNING_1;
146 return 1;
147 case CATCH_THROWING:
148 current_catcher->state = CATCHER_ABORTING;
149 /* See also throw_exception. */
150 return 1;
151 default:
152 internal_error (__FILE__, __LINE__, _("bad switch"));
153 }
154 case CATCHER_RUNNING_1:
155 switch (action)
156 {
157 case CATCH_ITER:
158 /* The did a "break" from the inner while loop. */
159 catcher_pop ();
160 return 0;
161 case CATCH_ITER_1:
162 current_catcher->state = CATCHER_RUNNING;
163 return 0;
164 case CATCH_THROWING:
165 current_catcher->state = CATCHER_ABORTING;
166 /* See also throw_exception. */
167 return 1;
168 default:
169 internal_error (__FILE__, __LINE__, _("bad switch"));
170 }
171 case CATCHER_ABORTING:
172 switch (action)
173 {
174 case CATCH_ITER:
175 {
176 struct gdb_exception exception = *current_catcher->exception;
177 if (current_catcher->mask & RETURN_MASK (exception.reason))
178 {
179 /* Exit normally if this catcher can handle this
180 exception. The caller analyses the func return
181 values. */
182 catcher_pop ();
183 return 0;
184 }
185 /* The caller didn't request that the event be caught,
186 relay the event to the next containing
187 catch_errors(). */
188 catcher_pop ();
189 throw_exception (exception);
190 }
191 default:
192 internal_error (__FILE__, __LINE__, _("bad state"));
193 }
194 default:
195 internal_error (__FILE__, __LINE__, _("bad switch"));
196 }
197 }
198
199 int
200 exceptions_state_mc_action_iter (void)
201 {
202 return exceptions_state_mc (CATCH_ITER);
203 }
204
205 int
206 exceptions_state_mc_action_iter_1 (void)
207 {
208 return exceptions_state_mc (CATCH_ITER_1);
209 }
210
211 /* Return EXCEPTION to the nearest containing catch_errors(). */
212
213 NORETURN void
214 throw_exception (struct gdb_exception exception)
215 {
216 struct thread_info *tp = NULL;
217
218 quit_flag = 0;
219 immediate_quit = 0;
220
221 if (!ptid_equal (inferior_ptid, null_ptid))
222 tp = find_thread_pid (inferior_ptid);
223
224 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
225 I can think of a reason why that is vital, though). */
226 if (tp != NULL)
227 bpstat_clear_actions (tp->stop_bpstat); /* Clear queued breakpoint commands */
228
229 disable_current_display ();
230 do_cleanups (ALL_CLEANUPS);
231
232 /* Jump to the containing catch_errors() call, communicating REASON
233 to that call via setjmp's return value. Note that REASON can't
234 be zero, by definition in defs.h. */
235 exceptions_state_mc (CATCH_THROWING);
236 *current_catcher->exception = exception;
237 EXCEPTIONS_SIGLONGJMP (current_catcher->buf, exception.reason);
238 }
239
240 static char *last_message;
241
242 NORETURN void
243 deprecated_throw_reason (enum return_reason reason)
244 {
245 struct gdb_exception exception;
246 memset (&exception, 0, sizeof exception);
247
248 exception.reason = reason;
249 switch (reason)
250 {
251 case RETURN_QUIT:
252 break;
253 case RETURN_ERROR:
254 exception.error = GENERIC_ERROR;
255 break;
256 default:
257 internal_error (__FILE__, __LINE__, _("bad switch"));
258 }
259
260 throw_exception (exception);
261 }
262
263 static void
264 print_flush (void)
265 {
266 struct serial *gdb_stdout_serial;
267
268 if (deprecated_error_begin_hook)
269 deprecated_error_begin_hook ();
270 target_terminal_ours ();
271
272 /* We want all output to appear now, before we print the error. We
273 have 3 levels of buffering we have to flush (it's possible that
274 some of these should be changed to flush the lower-level ones
275 too): */
276
277 /* 1. The _filtered buffer. */
278 wrap_here ("");
279
280 /* 2. The stdio buffer. */
281 gdb_flush (gdb_stdout);
282 gdb_flush (gdb_stderr);
283
284 /* 3. The system-level buffer. */
285 gdb_stdout_serial = serial_fdopen (1);
286 if (gdb_stdout_serial)
287 {
288 serial_drain_output (gdb_stdout_serial);
289 serial_un_fdopen (gdb_stdout_serial);
290 }
291
292 annotate_error_begin ();
293 }
294
295 static void
296 print_exception (struct ui_file *file, struct gdb_exception e)
297 {
298 /* KLUGE: cagney/2005-01-13: Write the string out one line at a time
299 as that way the MI's behavior is preserved. */
300 const char *start;
301 const char *end;
302 for (start = e.message; start != NULL; start = end)
303 {
304 end = strchr (start, '\n');
305 if (end == NULL)
306 fputs_filtered (start, file);
307 else
308 {
309 end++;
310 ui_file_write (file, start, end - start);
311 }
312 }
313 fprintf_filtered (file, "\n");
314
315 /* Now append the annotation. */
316 switch (e.reason)
317 {
318 case RETURN_QUIT:
319 annotate_quit ();
320 break;
321 case RETURN_ERROR:
322 /* Assume that these are all errors. */
323 annotate_error ();
324 break;
325 default:
326 internal_error (__FILE__, __LINE__, _("Bad switch."));
327 }
328 }
329
330 void
331 exception_print (struct ui_file *file, struct gdb_exception e)
332 {
333 if (e.reason < 0 && e.message != NULL)
334 {
335 print_flush ();
336 print_exception (file, e);
337 }
338 }
339
340 void
341 exception_fprintf (struct ui_file *file, struct gdb_exception e,
342 const char *prefix, ...)
343 {
344 if (e.reason < 0 && e.message != NULL)
345 {
346 va_list args;
347
348 print_flush ();
349
350 /* Print the prefix. */
351 va_start (args, prefix);
352 vfprintf_filtered (file, prefix, args);
353 va_end (args);
354
355 print_exception (file, e);
356 }
357 }
358
359 static void
360 print_any_exception (struct ui_file *file, const char *prefix,
361 struct gdb_exception e)
362 {
363 if (e.reason < 0 && e.message != NULL)
364 {
365 target_terminal_ours ();
366 wrap_here (""); /* Force out any buffered output */
367 gdb_flush (gdb_stdout);
368 annotate_error_begin ();
369
370 /* Print the prefix. */
371 if (prefix != NULL && prefix[0] != '\0')
372 fputs_filtered (prefix, file);
373 print_exception (file, e);
374 }
375 }
376
377 NORETURN static void ATTR_NORETURN ATTR_FORMAT (printf, 3, 0)
378 throw_it (enum return_reason reason, enum errors error, const char *fmt,
379 va_list ap)
380 {
381 struct gdb_exception e;
382 char *new_message;
383
384 /* Save the message. Create the new message before deleting the
385 old, the new message may include the old message text. */
386 new_message = xstrvprintf (fmt, ap);
387 xfree (last_message);
388 last_message = new_message;
389
390 /* Create the exception. */
391 e.reason = reason;
392 e.error = error;
393 e.message = last_message;
394
395 /* Throw the exception. */
396 throw_exception (e);
397 }
398
399 NORETURN void
400 throw_verror (enum errors error, const char *fmt, va_list ap)
401 {
402 throw_it (RETURN_ERROR, error, fmt, ap);
403 }
404
405 NORETURN void
406 throw_vfatal (const char *fmt, va_list ap)
407 {
408 throw_it (RETURN_QUIT, GDB_NO_ERROR, fmt, ap);
409 }
410
411 NORETURN void
412 throw_error (enum errors error, const char *fmt, ...)
413 {
414 va_list args;
415 va_start (args, fmt);
416 throw_it (RETURN_ERROR, error, fmt, args);
417 va_end (args);
418 }
419
420 /* Call FUNC() with args FUNC_UIOUT and FUNC_ARGS, catching any
421 errors. Set FUNC_CAUGHT to an ``enum return_reason'' if the
422 function is aborted (using throw_exception() or zero if the
423 function returns normally. Set FUNC_VAL to the value returned by
424 the function or 0 if the function was aborted.
425
426 Must not be called with immediate_quit in effect (bad things might
427 happen, say we got a signal in the middle of a memcpy to quit_return).
428 This is an OK restriction; with very few exceptions immediate_quit can
429 be replaced by judicious use of QUIT.
430
431 MASK specifies what to catch; it is normally set to
432 RETURN_MASK_ALL, if for no other reason than that the code which
433 calls catch_errors might not be set up to deal with a quit which
434 isn't caught. But if the code can deal with it, it generally
435 should be RETURN_MASK_ERROR, unless for some reason it is more
436 useful to abort only the portion of the operation inside the
437 catch_errors. Note that quit should return to the command line
438 fairly quickly, even if some further processing is being done. */
439
440 /* MAYBE: cagney/1999-11-05: catch_errors() in conjunction with
441 error() et.al. could maintain a set of flags that indicate the the
442 current state of each of the longjmp buffers. This would give the
443 longjmp code the chance to detect a longjmp botch (before it gets
444 to longjmperror()). Prior to 1999-11-05 this wasn't possible as
445 code also randomly used a SET_TOP_LEVEL macro that directly
446 initialize the longjmp buffers. */
447
448 /* MAYBE: cagney/1999-11-05: Should the catch_errors and cleanups code
449 be consolidated into a single file instead of being distributed
450 between utils.c and top.c? */
451
452 int
453 catch_exceptions (struct ui_out *uiout,
454 catch_exceptions_ftype *func,
455 void *func_args,
456 return_mask mask)
457 {
458 return catch_exceptions_with_msg (uiout, func, func_args, NULL, mask);
459 }
460
461 struct gdb_exception
462 catch_exception (struct ui_out *uiout,
463 catch_exception_ftype *func,
464 void *func_args,
465 return_mask mask)
466 {
467 volatile struct gdb_exception exception;
468 TRY_CATCH (exception, mask)
469 {
470 (*func) (uiout, func_args);
471 }
472 return exception;
473 }
474
475 int
476 catch_exceptions_with_msg (struct ui_out *uiout,
477 catch_exceptions_ftype *func,
478 void *func_args,
479 char **gdberrmsg,
480 return_mask mask)
481 {
482 volatile struct gdb_exception exception;
483 volatile int val = 0;
484 TRY_CATCH (exception, mask)
485 {
486 val = (*func) (uiout, func_args);
487 }
488 print_any_exception (gdb_stderr, NULL, exception);
489 gdb_assert (val >= 0);
490 gdb_assert (exception.reason <= 0);
491 if (exception.reason < 0)
492 {
493 /* If caller wants a copy of the low-level error message, make
494 one. This is used in the case of a silent error whereby the
495 caller may optionally want to issue the message. */
496 if (gdberrmsg != NULL)
497 {
498 if (exception.message != NULL)
499 *gdberrmsg = xstrdup (exception.message);
500 else
501 *gdberrmsg = NULL;
502 }
503 return exception.reason;
504 }
505 return val;
506 }
507
508 int
509 catch_errors (catch_errors_ftype *func, void *func_args, char *errstring,
510 return_mask mask)
511 {
512 volatile int val = 0;
513 volatile struct gdb_exception exception;
514 TRY_CATCH (exception, mask)
515 {
516 val = func (func_args);
517 }
518 print_any_exception (gdb_stderr, errstring, exception);
519 if (exception.reason != 0)
520 return 0;
521 return val;
522 }
523
524 int
525 catch_command_errors (catch_command_errors_ftype * command,
526 char *arg, int from_tty, return_mask mask)
527 {
528 volatile struct gdb_exception e;
529 TRY_CATCH (e, mask)
530 {
531 command (arg, from_tty);
532 }
533 print_any_exception (gdb_stderr, NULL, e);
534 if (e.reason < 0)
535 return 0;
536 return 1;
537 }
This page took 0.060913 seconds and 5 git commands to generate.