diff options
author | Pedro Alves <palves@redhat.com> | 2016-04-12 16:49:32 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-04-12 17:01:18 +0100 |
commit | 048094accce2110432bf7d44c34acc17865cf85a (patch) | |
tree | 3d6cf78a60d90e3f6b2f12358080096a825e8b4e /gdb/event-top.c | |
parent | a12ac51333cf97f4da0597d049cc694b4535e7dd (diff) | |
download | gdb-048094accce2110432bf7d44c34acc17865cf85a.zip gdb-048094accce2110432bf7d44c34acc17865cf85a.tar.gz gdb-048094accce2110432bf7d44c34acc17865cf85a.tar.bz2 |
target remote: Don't rely on immediate_quit (introduce quit handlers)
remote.c is the last user of immediate_quit. It's relied on to
immediately break the initial remote connection sync up, if the user
does Ctrl-C, assuming that was because the target isn't responding.
At that stage, since the connection isn't synced yet, disconnecting is
the only safe thing to do. This commit reworks that, to not rely on
throwing from the SIGINT signal handler.
So, this commit:
- Introduces the concept of a "quit handler". This is used to
override what does the QUIT macro do when the quit flag is set.
- Makes the "struct serial" reachar / write code call QUIT in the
partial read/write loops, so the current quit handler is invoked
whenever a serial->read_prim / serial->write_prim returns EINTR.
- Makes the "struct serial" reachar / write code call
interruptible_select instead of gdb_select, so that QUITs are
detected in a race-free manner.
- Stops remote.c from setting immediate_quit during the initial
connection.
- Instead, we install a custom quit handler whenever we're calling
into the serial code. This custom quit handler knows to immediately
throw a quit when we're in the initial connection setup, and
otherwise defer handling the quit/Ctrl-C request to later, when
we're safely out of a packet command/response sequence. This also
is what is now responsible for handling "double Ctrl-C because
target connection is stuck/wedged."
- remote.c no longer installs a specialized SIGINT handlers, and
instead re-uses the quit flag. Since we want to rely on the QUIT
macro, the SIGINT handler must also set the quit. And the easiest
is just to not install custom SIGINT handler in remote.c. Let the
standard SIGINT handler do its job of setting the quit flag.
Centralizing SIGINT handlers seems like a good thing to me, anyway.
gdb/ChangeLog:
2016-04-12 Pedro Alves <palves@redhat.com>
* defs.h (quit_handler_ftype, quit_handler)
(make_cleanup_override_quit_handler, default_quit_handler): New.
(QUIT): Adjust comments.
* event-top.c (default_quit_handler): New function.
(quit_handler): New global.
(struct quit_handler_cleanup_data): New.
(restore_quit_handler, restore_quit_handler_dtor)
(make_cleanup_override_quit_handler): New.
(async_request_quit): Call QUIT.
* remote.c (struct remote_state) <got_ctrlc_during_io>: New field.
(async_sigint_remote_twice_token, async_sigint_remote_token):
Delete.
(remote_close): Update comments.
(remote_start_remote): Don't set immediate_quit. Set starting_up
earlier.
(remote_serial_quit_handler, remote_unpush_and_throw): New
functions.
(remote_open_1): Clear got_ctrlc_during_io. Set
remote_async_terminal_ours_p unconditionally.
(async_initialize_sigint_signal_handler)
(async_handle_remote_sigint, async_handle_remote_sigint_twice)
(remote_check_pending_interrupt, async_remote_interrupt)
(async_remote_interrupt_twice)
(async_cleanup_sigint_signal_handler, ofunc)
(sync_remote_interrupt, sync_remote_interrupt_twice): Delete.
(remote_terminal_inferior, remote_terminal_ours): Remove async
checks.
(remote_wait_as): Don't install a SIGINT handler in sync mode.
(readchar, remote_serial_write): Override the quit handler with
remote_serial_quit_handler.
(getpkt_or_notif_sane_1): Don't call QUIT.
(initialize_remote_ops): Don't install
remote_check_pending_interrupt.
(_initialize_remote): Don't create async_sigint_remote_token and
async_sigint_remote_twice_token.
* ser-base.c (ser_base_wait_for): Call QUIT and use
interruptible_select.
(ser_base_write): Call QUIT.
* ser-go32.c (dos_readchar, dos_write): Call QUIT.
* ser-unix.c (wait_for): Don't use VTIME. Always take the
gdb_select path, but call QUIT and interruptible_select.
* utils.c (maybe_quit): Call the current quit handler. Don't call
target_check_pending_interrupt.
(defaulted_query, prompt_for_continue): Override the quit handler
with the default quit handler.
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r-- | gdb/event-top.c | 66 |
1 files changed, 63 insertions, 3 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index 69087cc..41d3aac 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -828,6 +828,68 @@ quit_serial_event_fd (void) return serial_event_fd (quit_serial_event); } +/* See defs.h. */ + +void +default_quit_handler (void) +{ + if (check_quit_flag ()) + { + if (target_terminal_is_ours ()) + quit (); + else + target_pass_ctrlc (); + } +} + +/* See defs.h. */ +quit_handler_ftype *quit_handler = default_quit_handler; + +/* Data for make_cleanup_override_quit_handler. Wrap the previous + handler pointer in a data struct because it's not portable to cast + a function pointer to a data pointer, which is what make_cleanup + expects. */ +struct quit_handler_cleanup_data +{ + /* The previous quit handler. */ + quit_handler_ftype *prev_handler; +}; + +/* Cleanup call that restores the previous quit handler. */ + +static void +restore_quit_handler (void *arg) +{ + struct quit_handler_cleanup_data *data + = (struct quit_handler_cleanup_data *) arg; + + quit_handler = data->prev_handler; +} + +/* Destructor for the quit handler cleanup. */ + +static void +restore_quit_handler_dtor (void *arg) +{ + xfree (arg); +} + +/* See defs.h. */ + +struct cleanup * +make_cleanup_override_quit_handler (quit_handler_ftype *new_quit_handler) +{ + struct cleanup *old_chain; + struct quit_handler_cleanup_data *data; + + data = XNEW (struct quit_handler_cleanup_data); + data->prev_handler = quit_handler; + old_chain = make_cleanup_dtor (restore_quit_handler, data, + restore_quit_handler_dtor); + quit_handler = new_quit_handler; + return old_chain; +} + /* Handle a SIGINT. */ void @@ -921,9 +983,7 @@ async_request_quit (gdb_client_data arg) back here, that means that an exception was thrown to unwind the current command before we got back to the event loop. So there is no reason to call quit again here. */ - - if (check_quit_flag ()) - quit (); + QUIT; } #ifdef SIGQUIT |