From: Philippe Waroquiers Date: Sat, 13 Apr 2019 08:22:41 +0000 (+0200) Subject: Fix GDB crash when registers cannot be modified. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2ae8bc88390f91cca8531823db51a8e35f0a0a0;p=binutils-gdb.git Fix GDB crash when registers cannot be modified. This crash was detected when using GDB with the valgrind gdbserver. To reproduce: valgrind sleep 10000 In another window: gdb target remote | vgdb p printf("make sleep print something\n") => terminate called after throwing an instance of 'gdb_exception_error' Aborted The problem is that the valgrind gdbserver does not allow to change registers when the inferior is blocked in a system call. GDB then raises an exception. The exception causes the destructor of typedef std::unique_ptr infcall_suspend_state_up; to be called. This destructor itself tries to restore the value of the registers, and fails similarly. We must catch the exception in the destructor to avoid crashing GDB. If the destructor encounters a problem, no warning is produced if there is an uncaught exception, as in this case, the user will already be informed of a problem via this exception. With this change, no crash anymore, and all the valgrind 3.15 tests pass succesfully. gdb/ChangeLog 2019-04-19 Philippe Waroquiers * inferior.h (struct infcall_suspend_state_deleter): Catch exception in destructor to avoid crash. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 80f18cd4c7f..0bd363ef57c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -77,6 +77,11 @@ * source.c (print_source_lines_base): Advance "iter" when a control character is seen. +2019-04-19 Philippe Waroquiers + + * inferior.h (struct infcall_suspend_state_deleter): + Catch exception in destructor to avoid crash. + 2019-04-19 Philippe Waroquiers * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias