[gdb/tdep] Fix reverse execution of LDR(immediate) T4
[binutils-gdb.git] / gdb / event-top.c
blob33aef7d7cc58cacb75e94cff9754c7a9032a581d
1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1999-2024 Free Software Foundation, Inc.
5 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
7 This file is part of GDB.
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.
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.
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/>. */
22 #include "defs.h"
23 #include "top.h"
24 #include "ui.h"
25 #include "inferior.h"
26 #include "infrun.h"
27 #include "target.h"
28 #include "terminal.h"
29 #include "gdbsupport/event-loop.h"
30 #include "event-top.h"
31 #include "interps.h"
32 #include <signal.h>
33 #include "cli/cli-script.h"
34 #include "main.h"
35 #include "gdbthread.h"
36 #include "observable.h"
37 #include "gdbcmd.h"
38 #include "annotate.h"
39 #include "maint.h"
40 #include "ser-event.h"
41 #include "gdbsupport/gdb_select.h"
42 #include "gdbsupport/gdb-sigmask.h"
43 #include "async-event.h"
44 #include "bt-utils.h"
45 #include "pager.h"
47 /* readline include files. */
48 #include "readline/readline.h"
49 #include "readline/history.h"
51 #ifdef TUI
52 #include "tui/tui.h"
53 #endif
55 /* readline defines this. */
56 #undef savestring
58 static std::string top_level_prompt ();
60 /* Signal handlers. */
61 #ifdef SIGQUIT
62 static void handle_sigquit (int sig);
63 #endif
64 #ifdef SIGHUP
65 static void handle_sighup (int sig);
66 #endif
68 /* Functions to be invoked by the event loop in response to
69 signals. */
70 #if defined (SIGQUIT) || defined (SIGHUP)
71 static void async_do_nothing (gdb_client_data);
72 #endif
73 #ifdef SIGHUP
74 static void async_disconnect (gdb_client_data);
75 #endif
76 #ifdef SIGTSTP
77 static void async_sigtstp_handler (gdb_client_data);
78 #endif
79 static void async_sigterm_handler (gdb_client_data arg);
81 /* Instead of invoking (and waiting for) readline to read the command
82 line and pass it back for processing, we use readline's alternate
83 interface, via callback functions, so that the event loop can react
84 to other event sources while we wait for input. */
86 /* Important variables for the event loop. */
88 /* This is used to determine if GDB is using the readline library or
89 its own simplified form of readline. It is used by the asynchronous
90 form of the set editing command.
91 ezannoni: as of 1999-04-29 I expect that this
92 variable will not be used after gdb is changed to use the event
93 loop as default engine, and event-top.c is merged into top.c. */
94 bool set_editing_cmd_var;
96 /* This is used to display the notification of the completion of an
97 asynchronous execution command. */
98 bool exec_done_display_p = false;
100 /* Used by the stdin event handler to compensate for missed stdin events.
101 Setting this to a non-zero value inside an stdin callback makes the callback
102 run again. */
103 int call_stdin_event_handler_again_p;
105 /* When true GDB will produce a minimal backtrace when a fatal signal is
106 reached (within GDB code). */
107 static bool bt_on_fatal_signal = GDB_PRINT_INTERNAL_BACKTRACE_INIT_ON;
109 /* Implement 'maintenance show backtrace-on-fatal-signal'. */
111 static void
112 show_bt_on_fatal_signal (struct ui_file *file, int from_tty,
113 struct cmd_list_element *cmd, const char *value)
115 gdb_printf (file, _("Backtrace on a fatal signal is %s.\n"), value);
118 /* Signal handling variables. */
119 /* Each of these is a pointer to a function that the event loop will
120 invoke if the corresponding signal has received. The real signal
121 handlers mark these functions as ready to be executed and the event
122 loop, in a later iteration, calls them. See the function
123 invoke_async_signal_handler. */
124 static struct async_signal_handler *sigint_token;
125 #ifdef SIGHUP
126 static struct async_signal_handler *sighup_token;
127 #endif
128 #ifdef SIGQUIT
129 static struct async_signal_handler *sigquit_token;
130 #endif
131 #ifdef SIGTSTP
132 static struct async_signal_handler *sigtstp_token;
133 #endif
134 static struct async_signal_handler *async_sigterm_token;
136 /* This hook is called by gdb_rl_callback_read_char_wrapper after each
137 character is processed. */
138 void (*after_char_processing_hook) (void);
140 #if RL_VERSION_MAJOR == 7
141 extern "C" void _rl_signal_handler (int);
142 #endif
144 /* Wrapper function for calling into the readline library. This takes
145 care of a couple things:
147 - The event loop expects the callback function to have a parameter,
148 while readline expects none.
150 - Propagation of GDB exceptions/errors thrown from INPUT_HANDLER
151 across readline requires special handling.
153 On the exceptions issue:
155 DWARF-based unwinding cannot cross code built without -fexceptions.
156 Any exception that tries to propagate through such code will fail
157 and the result is a call to std::terminate. While some ABIs, such
158 as x86-64, require all code to be built with exception tables,
159 others don't.
161 This is a problem when GDB calls some non-EH-aware C library code,
162 that calls into GDB again through a callback, and that GDB callback
163 code throws a C++ exception. Turns out this is exactly what
164 happens with GDB's readline callback.
166 In such cases, we must catch and save any C++ exception that might
167 be thrown from the GDB callback before returning to the
168 non-EH-aware code. When the non-EH-aware function itself returns
169 back to GDB, we then rethrow the original C++ exception.
171 In the readline case however, the right thing to do is to longjmp
172 out of the callback, rather than do a normal return -- there's no
173 way for the callback to return to readline an indication that an
174 error happened, so a normal return would have rl_callback_read_char
175 potentially continue processing further input, redisplay the
176 prompt, etc. Instead of raw setjmp/longjmp however, we use our
177 sjlj-based TRY/CATCH mechanism, which knows to handle multiple
178 levels of active setjmp/longjmp frames, needed in order to handle
179 the readline callback recursing, as happens with e.g., secondary
180 prompts / queries, through gdb_readline_wrapper. This must be
181 noexcept in order to avoid problems with mixing sjlj and
182 (sjlj-based) C++ exceptions. */
184 static struct gdb_exception
185 gdb_rl_callback_read_char_wrapper_noexcept () noexcept
187 struct gdb_exception gdb_expt;
189 /* C++ exceptions can't normally be thrown across readline (unless
190 it is built with -fexceptions, but it won't by default on many
191 ABIs). So we instead wrap the readline call with a sjlj-based
192 TRY/CATCH, and rethrow the GDB exception once back in GDB. */
193 TRY_SJLJ
195 rl_callback_read_char ();
196 #if RL_VERSION_MAJOR >= 8
197 /* It can happen that readline (while in rl_callback_read_char)
198 received a signal, but didn't handle it yet. Make sure it's handled
199 now. If we don't do that we run into two related problems:
200 - we have to wait for another event triggering
201 rl_callback_read_char before the signal is handled
202 - there's no guarantee that the signal will be processed before the
203 event. */
204 while (rl_pending_signal () != 0)
205 /* Do this in a while loop, in case rl_check_signals also leaves a
206 pending signal. I'm not sure if that's possible, but it seems
207 better to handle the scenario than to assert. */
208 rl_check_signals ();
209 #elif RL_VERSION_MAJOR == 7
210 /* Unfortunately, rl_check_signals is not available. Use private
211 function _rl_signal_handler instead. */
213 while (rl_pending_signal () != 0)
214 _rl_signal_handler (rl_pending_signal ());
215 #else
216 #error "Readline major version >= 7 expected"
217 #endif
218 if (after_char_processing_hook)
219 (*after_char_processing_hook) ();
221 CATCH_SJLJ (ex, RETURN_MASK_ALL)
223 gdb_expt = std::move (ex);
225 END_CATCH_SJLJ
227 return gdb_expt;
230 static void
231 gdb_rl_callback_read_char_wrapper (gdb_client_data client_data)
233 struct gdb_exception gdb_expt
234 = gdb_rl_callback_read_char_wrapper_noexcept ();
236 /* Rethrow using the normal EH mechanism. */
237 if (gdb_expt.reason < 0)
238 throw_exception (std::move (gdb_expt));
241 /* GDB's readline callback handler. Calls the current INPUT_HANDLER,
242 and propagates GDB exceptions/errors thrown from INPUT_HANDLER back
243 across readline. See gdb_rl_callback_read_char_wrapper. This must
244 be noexcept in order to avoid problems with mixing sjlj and
245 (sjlj-based) C++ exceptions. */
247 static void
248 gdb_rl_callback_handler (char *rl) noexcept
250 /* This is static to avoid undefined behavior when calling longjmp
251 -- gdb_exception has a destructor with side effects. */
252 static struct gdb_exception gdb_rl_expt;
253 struct ui *ui = current_ui;
257 /* Ensure the exception is reset on each call. */
258 gdb_rl_expt = {};
259 ui->input_handler (gdb::unique_xmalloc_ptr<char> (rl));
261 catch (gdb_exception &ex)
263 gdb_rl_expt = std::move (ex);
266 /* If we caught a GDB exception, longjmp out of the readline
267 callback. There's no other way for the callback to signal to
268 readline that an error happened. A normal return would have
269 readline potentially continue processing further input, redisplay
270 the prompt, etc. (This is what GDB historically did when it was
271 a C program.) Note that since we're long jumping, local variable
272 dtors are NOT run automatically. */
273 if (gdb_rl_expt.reason < 0)
274 throw_exception_sjlj (gdb_rl_expt);
277 /* Change the function to be invoked every time there is a character
278 ready on stdin. This is used when the user sets the editing off,
279 therefore bypassing readline, and letting gdb handle the input
280 itself, via gdb_readline_no_editing_callback. Also it is used in
281 the opposite case in which the user sets editing on again, by
282 restoring readline handling of the input.
284 NOTE: this operates on input_fd, not instream. If we are reading
285 commands from a file, instream will point to the file. However, we
286 always read commands from a file with editing off. This means that
287 the 'set editing on/off' will have effect only on the interactive
288 session. */
290 void
291 change_line_handler (int editing)
293 struct ui *ui = current_ui;
295 /* We can only have one instance of readline, so we only allow
296 editing on the main UI. */
297 if (ui != main_ui)
298 return;
300 /* Don't try enabling editing if the interpreter doesn't support it
301 (e.g., MI). */
302 if (!top_level_interpreter ()->supports_command_editing ()
303 || !command_interp ()->supports_command_editing ())
304 return;
306 if (editing)
308 gdb_assert (ui == main_ui);
310 /* Turn on editing by using readline. */
311 ui->call_readline = gdb_rl_callback_read_char_wrapper;
313 else
315 /* Turn off editing by using gdb_readline_no_editing_callback. */
316 if (ui->command_editing)
317 gdb_rl_callback_handler_remove ();
318 ui->call_readline = gdb_readline_no_editing_callback;
320 ui->command_editing = editing;
323 /* The functions below are wrappers for rl_callback_handler_remove and
324 rl_callback_handler_install that keep track of whether the callback
325 handler is installed in readline. This is necessary because after
326 handling a target event of a background execution command, we may
327 need to reinstall the callback handler if it was removed due to a
328 secondary prompt. See gdb_readline_wrapper_line. We don't
329 unconditionally install the handler for every target event because
330 that also clears the line buffer, thus installing it while the user
331 is typing would lose input. */
333 /* Whether we've registered a callback handler with readline. */
334 static bool callback_handler_installed;
336 /* See event-top.h, and above. */
338 void
339 gdb_rl_callback_handler_remove (void)
341 gdb_assert (current_ui == main_ui);
343 rl_callback_handler_remove ();
344 callback_handler_installed = false;
347 /* See event-top.h, and above. Note this wrapper doesn't have an
348 actual callback parameter because we always install
349 INPUT_HANDLER. */
351 void
352 gdb_rl_callback_handler_install (const char *prompt)
354 gdb_assert (current_ui == main_ui);
356 /* Calling rl_callback_handler_install resets readline's input
357 buffer. Calling this when we were already processing input
358 therefore loses input. */
359 gdb_assert (!callback_handler_installed);
361 rl_callback_handler_install (prompt, gdb_rl_callback_handler);
362 callback_handler_installed = true;
365 /* See event-top.h, and above. */
367 void
368 gdb_rl_callback_handler_reinstall (void)
370 gdb_assert (current_ui == main_ui);
372 if (!callback_handler_installed)
374 /* Passing NULL as prompt argument tells readline to not display
375 a prompt. */
376 gdb_rl_callback_handler_install (NULL);
380 /* Displays the prompt. If the argument NEW_PROMPT is NULL, the
381 prompt that is displayed is the current top level prompt.
382 Otherwise, it displays whatever NEW_PROMPT is as a local/secondary
383 prompt.
385 This is used after each gdb command has completed, and in the
386 following cases:
388 1. When the user enters a command line which is ended by '\'
389 indicating that the command will continue on the next line. In
390 that case the prompt that is displayed is the empty string.
392 2. When the user is entering 'commands' for a breakpoint, or
393 actions for a tracepoint. In this case the prompt will be '>'
395 3. On prompting for pagination. */
397 void
398 display_gdb_prompt (const char *new_prompt)
400 std::string actual_gdb_prompt;
402 annotate_display_prompt ();
404 /* Reset the nesting depth used when trace-commands is set. */
405 reset_command_nest_depth ();
407 /* Do not call the python hook on an explicit prompt change as
408 passed to this function, as this forms a secondary/local prompt,
409 IE, displayed but not set. */
410 if (! new_prompt)
412 struct ui *ui = current_ui;
414 if (ui->prompt_state == PROMPTED)
415 internal_error (_("double prompt"));
416 else if (ui->prompt_state == PROMPT_BLOCKED)
418 /* This is to trick readline into not trying to display the
419 prompt. Even though we display the prompt using this
420 function, readline still tries to do its own display if
421 we don't call rl_callback_handler_install and
422 rl_callback_handler_remove (which readline detects
423 because a global variable is not set). If readline did
424 that, it could mess up gdb signal handlers for SIGINT.
425 Readline assumes that between calls to rl_set_signals and
426 rl_clear_signals gdb doesn't do anything with the signal
427 handlers. Well, that's not the case, because when the
428 target executes we change the SIGINT signal handler. If
429 we allowed readline to display the prompt, the signal
430 handler change would happen exactly between the calls to
431 the above two functions. Calling
432 rl_callback_handler_remove(), does the job. */
434 if (current_ui->command_editing)
435 gdb_rl_callback_handler_remove ();
436 return;
438 else if (ui->prompt_state == PROMPT_NEEDED)
440 /* Display the top level prompt. */
441 actual_gdb_prompt = top_level_prompt ();
442 ui->prompt_state = PROMPTED;
445 else
446 actual_gdb_prompt = new_prompt;
448 if (current_ui->command_editing)
450 gdb_rl_callback_handler_remove ();
451 gdb_rl_callback_handler_install (actual_gdb_prompt.c_str ());
453 /* new_prompt at this point can be the top of the stack or the one
454 passed in. It can't be NULL. */
455 else
457 /* Don't use a _filtered function here. It causes the assumed
458 character position to be off, since the newline we read from
459 the user is not accounted for. */
460 printf_unfiltered ("%s", actual_gdb_prompt.c_str ());
461 gdb_flush (gdb_stdout);
465 /* Notify the 'before_prompt' observer, and run any additional actions
466 that must be done before we display the prompt. */
467 static void
468 notify_before_prompt (const char *prompt)
470 /* Give observers a chance of changing the prompt. E.g., the python
471 `gdb.prompt_hook' is installed as an observer. */
472 gdb::observers::before_prompt.notify (prompt);
474 /* As we are about to display the prompt, and so GDB might be sitting
475 idle for some time, close all the cached BFDs. This ensures that
476 when we next start running a user command all BFDs will be reopened
477 as needed, and as a result, we will see any on-disk changes. */
478 bfd_cache_close_all ();
481 /* Return the top level prompt, as specified by "set prompt", possibly
482 overridden by the python gdb.prompt_hook hook, and then composed
483 with the prompt prefix and suffix (annotations). */
485 static std::string
486 top_level_prompt (void)
488 notify_before_prompt (get_prompt ().c_str ());
490 const std::string &prompt = get_prompt ();
492 if (annotation_level >= 2)
494 /* Prefix needs to have new line at end. */
495 const char prefix[] = "\n\032\032pre-prompt\n";
497 /* Suffix needs to have a new line at end and \032 \032 at
498 beginning. */
499 const char suffix[] = "\n\032\032prompt\n";
501 return std::string (prefix) + prompt.c_str () + suffix;
504 return prompt;
507 /* Get a reference to the current UI's line buffer. This is used to
508 construct a whole line of input from partial input. */
510 static std::string &
511 get_command_line_buffer (void)
513 return current_ui->line_buffer;
516 /* Re-enable stdin after the end of an execution command in
517 synchronous mode, or after an error from the target, and we aborted
518 the exec operation. */
520 void
521 async_enable_stdin (void)
523 struct ui *ui = current_ui;
525 if (ui->prompt_state == PROMPT_BLOCKED)
527 target_terminal::ours ();
528 ui->register_file_handler ();
529 ui->prompt_state = PROMPT_NEEDED;
533 /* Disable reads from stdin (the console) marking the command as
534 synchronous. */
536 void
537 async_disable_stdin (void)
539 struct ui *ui = current_ui;
541 ui->prompt_state = PROMPT_BLOCKED;
542 ui->unregister_file_handler ();
546 /* Handle a gdb command line. This function is called when
547 handle_line_of_input has concatenated one or more input lines into
548 a whole command. */
550 void
551 command_handler (const char *command)
553 struct ui *ui = current_ui;
554 const char *c;
556 if (ui->instream == ui->stdin_stream)
557 reinitialize_more_filter ();
559 scoped_command_stats stat_reporter (true);
561 /* Do not execute commented lines. */
562 for (c = command; *c == ' ' || *c == '\t'; c++)
564 if (c[0] != '#')
566 execute_command (command, ui->instream == ui->stdin_stream);
568 /* Do any commands attached to breakpoint we stopped at. */
569 bpstat_do_actions ();
573 /* Append RL, an input line returned by readline or one of its emulations, to
574 CMD_LINE_BUFFER. Return true if we have a whole command line ready to be
575 processed by the command interpreter or false if the command line isn't
576 complete yet (input line ends in a backslash). */
578 static bool
579 command_line_append_input_line (std::string &cmd_line_buffer, const char *rl)
581 size_t len = strlen (rl);
583 if (len > 0 && rl[len - 1] == '\\')
585 /* Don't copy the backslash and wait for more. */
586 cmd_line_buffer.append (rl, len - 1);
587 return false;
589 else
591 /* Copy whole line including terminating null, and we're
592 done. */
593 cmd_line_buffer.append (rl, len + 1);
594 return true;
598 /* Handle a line of input coming from readline.
600 If the read line ends with a continuation character (backslash), return
601 nullptr. Otherwise, return a pointer to the command line, indicating a whole
602 command line is ready to be executed.
604 The returned pointer may or may not point to CMD_LINE_BUFFER's internal
605 buffer.
607 Return EOF on end of file.
609 If REPEAT, handle command repetitions:
611 - If the input command line is NOT empty, the command returned is
612 saved using save_command_line () so that it can be repeated later.
614 - OTOH, if the input command line IS empty, return the saved
615 command instead of the empty input line.
618 const char *
619 handle_line_of_input (std::string &cmd_line_buffer,
620 const char *rl, int repeat,
621 const char *annotation_suffix)
623 struct ui *ui = current_ui;
624 int from_tty = ui->instream == ui->stdin_stream;
626 if (rl == NULL)
627 return (char *) EOF;
629 bool complete = command_line_append_input_line (cmd_line_buffer, rl);
630 if (!complete)
631 return NULL;
633 if (from_tty && annotation_level > 1)
634 printf_unfiltered (("\n\032\032post-%s\n"), annotation_suffix);
636 #define SERVER_COMMAND_PREFIX "server "
637 server_command = startswith (cmd_line_buffer.c_str (), SERVER_COMMAND_PREFIX);
638 if (server_command)
640 /* Note that we don't call `save_command_line'. Between this
641 and the check in dont_repeat, this insures that repeating
642 will still do the right thing. */
643 return cmd_line_buffer.c_str () + strlen (SERVER_COMMAND_PREFIX);
646 /* Do history expansion if that is wished. */
647 if (history_expansion_p && from_tty && current_ui->input_interactive_p ())
649 char *cmd_expansion;
650 int expanded;
652 /* Note: here, we pass a pointer to the std::string's internal buffer as
653 a `char *`. At the time of writing, readline's history_expand does
654 not modify the passed-in string. Ideally, readline should be modified
655 to make that parameter `const char *`. */
656 expanded = history_expand (&cmd_line_buffer[0], &cmd_expansion);
657 gdb::unique_xmalloc_ptr<char> history_value (cmd_expansion);
658 if (expanded)
660 /* Print the changes. */
661 printf_unfiltered ("%s\n", history_value.get ());
663 /* If there was an error, call this function again. */
664 if (expanded < 0)
665 return cmd_line_buffer.c_str ();
667 cmd_line_buffer = history_value.get ();
671 /* If we just got an empty line, and that is supposed to repeat the
672 previous command, return the previously saved command. */
673 const char *p1;
674 for (p1 = cmd_line_buffer.c_str (); *p1 == ' ' || *p1 == '\t'; p1++)
676 if (repeat && *p1 == '\0')
677 return get_saved_command_line ();
679 /* Add command to history if appropriate. Note: lines consisting
680 solely of comments are also added to the command history. This
681 is useful when you type a command, and then realize you don't
682 want to execute it quite yet. You can comment out the command
683 and then later fetch it from the value history and remove the
684 '#'. The kill ring is probably better, but some people are in
685 the habit of commenting things out. */
686 if (cmd_line_buffer[0] != '\0' && from_tty && current_ui->input_interactive_p ())
687 gdb_add_history (cmd_line_buffer.c_str ());
689 /* Save into global buffer if appropriate. */
690 if (repeat)
692 save_command_line (cmd_line_buffer.c_str ());
694 /* It is important that we return a pointer to the saved command line
695 here, for the `cmd_start == saved_command_line` check in
696 execute_command to work. */
697 return get_saved_command_line ();
700 return cmd_line_buffer.c_str ();
703 /* See event-top.h. */
705 void
706 gdb_rl_deprep_term_function (void)
708 #ifdef RL_STATE_EOF
709 std::optional<scoped_restore_tmpl<int>> restore_eof_found;
711 if (RL_ISSTATE (RL_STATE_EOF))
713 printf_unfiltered ("quit\n");
714 restore_eof_found.emplace (&rl_eof_found, 0);
717 #endif /* RL_STATE_EOF */
719 rl_deprep_terminal ();
722 /* Handle a complete line of input. This is called by the callback
723 mechanism within the readline library. Deal with incomplete
724 commands as well, by saving the partial input in a global
725 buffer.
727 NOTE: This is the asynchronous version of the command_line_input
728 function. */
730 void
731 command_line_handler (gdb::unique_xmalloc_ptr<char> &&rl)
733 std::string &line_buffer = get_command_line_buffer ();
734 struct ui *ui = current_ui;
736 const char *cmd = handle_line_of_input (line_buffer, rl.get (), 1, "prompt");
737 if (cmd == (char *) EOF)
739 /* stdin closed. The connection with the terminal is gone.
740 This happens at the end of a testsuite run, after Expect has
741 hung up but GDB is still alive. In such a case, we just quit
742 gdb killing the inferior program too. This also happens if the
743 user sends EOF, which is usually bound to ctrl+d. */
745 #ifndef RL_STATE_EOF
746 /* When readline is using bracketed paste mode, then, when eof is
747 received, readline will emit the control sequence to leave
748 bracketed paste mode.
750 This control sequence ends with \r, which means that the "quit" we
751 are about to print will overwrite the prompt on this line.
753 The solution to this problem is to actually print the "quit"
754 message from gdb_rl_deprep_term_function (see above), however, we
755 can only do that if we can know, in that function, when eof was
756 received.
758 Unfortunately, with older versions of readline, it is not possible
759 in the gdb_rl_deprep_term_function to know if eof was received or
760 not, and, as GDB can be built against the system readline, which
761 could be older than the readline in GDB's repository, then we
762 can't be sure that we can work around this prompt corruption in
763 the gdb_rl_deprep_term_function function.
765 If we get here, RL_STATE_EOF is not defined. This indicates that
766 we are using an older readline, and couldn't print the quit
767 message in gdb_rl_deprep_term_function. So, what we do here is
768 check to see if bracketed paste mode is on or not. If it's on
769 then we print a \n and then the quit, this means the user will
770 see:
772 (gdb)
773 quit
775 Rather than the usual:
777 (gdb) quit
779 Which we will get with a newer readline, but this really is the
780 best we can do with older versions of readline. */
781 const char *value = rl_variable_value ("enable-bracketed-paste");
782 if (value != nullptr && strcmp (value, "on") == 0
783 && ((rl_readline_version >> 8) & 0xff) > 0x07)
784 printf_unfiltered ("\n");
785 printf_unfiltered ("quit\n");
786 #endif
788 execute_command ("quit", 1);
790 else if (cmd == NULL)
792 /* We don't have a full line yet. Print an empty prompt. */
793 display_gdb_prompt ("");
795 else
797 ui->prompt_state = PROMPT_NEEDED;
799 /* Ensure the UI's line buffer is empty for the next command. */
800 SCOPE_EXIT { line_buffer.clear (); };
802 command_handler (cmd);
804 if (ui->prompt_state != PROMPTED)
805 display_gdb_prompt (0);
809 /* Does reading of input from terminal w/o the editing features
810 provided by the readline library. Calls the line input handler
811 once we have a whole input line. */
813 void
814 gdb_readline_no_editing_callback (gdb_client_data client_data)
816 int c;
817 std::string line_buffer;
818 struct ui *ui = current_ui;
820 FILE *stream = ui->instream != nullptr ? ui->instream : ui->stdin_stream;
821 gdb_assert (stream != nullptr);
823 /* We still need the while loop here, even though it would seem
824 obvious to invoke gdb_readline_no_editing_callback at every
825 character entered. If not using the readline library, the
826 terminal is in cooked mode, which sends the characters all at
827 once. Poll will notice that the input fd has changed state only
828 after enter is pressed. At this point we still need to fetch all
829 the chars entered. */
831 while (1)
833 /* Read from stdin if we are executing a user defined command.
834 This is the right thing for prompt_for_continue, at least. */
835 c = fgetc (stream);
837 if (c == EOF)
839 if (!line_buffer.empty ())
841 /* The last line does not end with a newline. Return it, and
842 if we are called again fgetc will still return EOF and
843 we'll return NULL then. */
844 break;
846 ui->input_handler (NULL);
847 return;
850 if (c == '\n')
852 if (!line_buffer.empty () && line_buffer.back () == '\r')
853 line_buffer.pop_back ();
854 break;
857 line_buffer += c;
860 ui->input_handler (make_unique_xstrdup (line_buffer.c_str ()));
864 /* Attempt to unblock signal SIG, return true if the signal was unblocked,
865 otherwise, return false. */
867 static bool
868 unblock_signal (int sig)
870 #if HAVE_SIGPROCMASK
871 sigset_t sigset;
872 sigemptyset (&sigset);
873 sigaddset (&sigset, sig);
874 gdb_sigmask (SIG_UNBLOCK, &sigset, 0);
875 return true;
876 #endif
878 return false;
881 /* Called to handle fatal signals. SIG is the signal number. */
883 static void ATTRIBUTE_NORETURN
884 handle_fatal_signal (int sig)
886 #ifdef TUI
887 tui_disable ();
888 #endif
890 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
891 const auto sig_write = [] (const char *msg) -> void
893 gdb_stderr->write_async_safe (msg, strlen (msg));
896 if (bt_on_fatal_signal)
898 sig_write ("\n\n");
899 sig_write (_("Fatal signal: "));
900 sig_write (strsignal (sig));
901 sig_write ("\n");
903 gdb_internal_backtrace ();
905 sig_write (_("A fatal error internal to GDB has been detected, "
906 "further\ndebugging is not possible. GDB will now "
907 "terminate.\n\n"));
908 sig_write (_("This is a bug, please report it."));
909 if (REPORT_BUGS_TO[0] != '\0')
911 sig_write (_(" For instructions, see:\n"));
912 sig_write (REPORT_BUGS_TO);
913 sig_write (".");
915 sig_write ("\n\n");
917 gdb_stderr->flush ();
919 #endif
921 /* If possible arrange for SIG to have its default behaviour (which
922 should be to terminate the current process), unblock SIG, and reraise
923 the signal. This ensures GDB terminates with the expected signal. */
924 if (signal (sig, SIG_DFL) != SIG_ERR
925 && unblock_signal (sig))
926 raise (sig);
928 /* The above failed, so try to use SIGABRT to terminate GDB. */
929 #ifdef SIGABRT
930 signal (SIGABRT, SIG_DFL);
931 #endif
932 abort (); /* ARI: abort */
935 /* The SIGSEGV handler for this thread, or NULL if there is none. GDB
936 always installs a global SIGSEGV handler, and then lets threads
937 indicate their interest in handling the signal by setting this
938 thread-local variable.
940 This is a static variable instead of extern because on various platforms
941 (notably Cygwin) extern thread_local variables cause link errors. So
942 instead, we have scoped_segv_handler_restore, which also makes it impossible
943 to accidentally forget to restore it to the original value. */
945 static thread_local void (*thread_local_segv_handler) (int);
947 static void handle_sigsegv (int sig);
949 /* Install the SIGSEGV handler. */
950 static void
951 install_handle_sigsegv ()
953 #if defined (HAVE_SIGACTION)
954 struct sigaction sa;
955 sa.sa_handler = handle_sigsegv;
956 sigemptyset (&sa.sa_mask);
957 #ifdef HAVE_SIGALTSTACK
958 sa.sa_flags = SA_ONSTACK;
959 #else
960 sa.sa_flags = 0;
961 #endif
962 sigaction (SIGSEGV, &sa, nullptr);
963 #else
964 signal (SIGSEGV, handle_sigsegv);
965 #endif
968 /* Handler for SIGSEGV. */
970 static void
971 handle_sigsegv (int sig)
973 install_handle_sigsegv ();
975 if (thread_local_segv_handler == nullptr)
976 handle_fatal_signal (sig);
977 thread_local_segv_handler (sig);
982 /* The serial event associated with the QUIT flag. set_quit_flag sets
983 this, and check_quit_flag clears it. Used by interruptible_select
984 to be able to do interruptible I/O with no race with the SIGINT
985 handler. */
986 static struct serial_event *quit_serial_event;
988 /* Initialization of signal handlers and tokens. There are a number of
989 different strategies for handling different signals here.
991 For SIGINT, SIGTERM, SIGQUIT, SIGHUP, SIGTSTP, there is a function
992 handle_sig* for each of these signals. These functions are the actual
993 signal handlers associated to the signals via calls to signal(). The
994 only job for these functions is to enqueue the appropriate
995 event/procedure with the event loop. The event loop will take care of
996 invoking the queued procedures to perform the usual tasks associated
997 with the reception of the signal.
999 For SIGSEGV the handle_sig* function does all the work for handling this
1000 signal.
1002 For SIGFPE, SIGBUS, and SIGABRT, these signals will all cause GDB to
1003 terminate immediately. */
1004 void
1005 gdb_init_signals (void)
1007 initialize_async_signal_handlers ();
1009 quit_serial_event = make_serial_event ();
1011 sigint_token =
1012 create_async_signal_handler (async_request_quit, NULL, "sigint");
1013 install_sigint_handler (handle_sigint);
1015 async_sigterm_token
1016 = create_async_signal_handler (async_sigterm_handler, NULL, "sigterm");
1017 signal (SIGTERM, handle_sigterm);
1019 #ifdef SIGQUIT
1020 sigquit_token =
1021 create_async_signal_handler (async_do_nothing, NULL, "sigquit");
1022 signal (SIGQUIT, handle_sigquit);
1023 #endif
1025 #ifdef SIGHUP
1026 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
1027 sighup_token =
1028 create_async_signal_handler (async_disconnect, NULL, "sighup");
1029 else
1030 sighup_token =
1031 create_async_signal_handler (async_do_nothing, NULL, "sighup");
1032 #endif
1034 #ifdef SIGTSTP
1035 sigtstp_token =
1036 create_async_signal_handler (async_sigtstp_handler, NULL, "sigtstp");
1037 #endif
1039 #ifdef SIGFPE
1040 signal (SIGFPE, handle_fatal_signal);
1041 #endif
1043 #ifdef SIGBUS
1044 signal (SIGBUS, handle_fatal_signal);
1045 #endif
1047 #ifdef SIGABRT
1048 signal (SIGABRT, handle_fatal_signal);
1049 #endif
1051 install_handle_sigsegv ();
1054 /* See defs.h. */
1056 void
1057 quit_serial_event_set (void)
1059 serial_event_set (quit_serial_event);
1062 /* See defs.h. */
1064 void
1065 quit_serial_event_clear (void)
1067 serial_event_clear (quit_serial_event);
1070 /* Return the selectable file descriptor of the serial event
1071 associated with the quit flag. */
1073 static int
1074 quit_serial_event_fd (void)
1076 return serial_event_fd (quit_serial_event);
1079 /* See defs.h. */
1081 void
1082 default_quit_handler (void)
1084 if (check_quit_flag ())
1086 if (target_terminal::is_ours ())
1087 quit ();
1088 else
1089 target_pass_ctrlc ();
1093 /* See defs.h. */
1094 quit_handler_ftype *quit_handler = default_quit_handler;
1096 /* Handle a SIGINT. */
1098 void
1099 handle_sigint (int sig)
1101 signal (sig, handle_sigint);
1103 /* We could be running in a loop reading in symfiles or something so
1104 it may be quite a while before we get back to the event loop. So
1105 set quit_flag to 1 here. Then if QUIT is called before we get to
1106 the event loop, we will unwind as expected. */
1107 set_quit_flag ();
1109 /* In case nothing calls QUIT before the event loop is reached, the
1110 event loop handles it. */
1111 mark_async_signal_handler (sigint_token);
1114 /* See gdb_select.h. */
1117 interruptible_select (int n,
1118 fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
1119 struct timeval *timeout)
1121 fd_set my_readfds;
1122 int fd;
1123 int res;
1125 if (readfds == NULL)
1127 readfds = &my_readfds;
1128 FD_ZERO (&my_readfds);
1131 fd = quit_serial_event_fd ();
1132 FD_SET (fd, readfds);
1133 if (n <= fd)
1134 n = fd + 1;
1138 res = gdb_select (n, readfds, writefds, exceptfds, timeout);
1140 while (res == -1 && errno == EINTR);
1142 if (res == 1 && FD_ISSET (fd, readfds))
1144 errno = EINTR;
1145 return -1;
1147 return res;
1150 /* Handle GDB exit upon receiving SIGTERM if target_can_async_p (). */
1152 static void
1153 async_sigterm_handler (gdb_client_data arg)
1155 quit_force (NULL, 0);
1158 /* See defs.h. */
1159 volatile bool sync_quit_force_run;
1161 /* See defs.h. */
1162 void
1163 set_force_quit_flag ()
1165 sync_quit_force_run = true;
1166 set_quit_flag ();
1169 /* Quit GDB if SIGTERM is received.
1170 GDB would quit anyway, but this way it will clean up properly. */
1171 void
1172 handle_sigterm (int sig)
1174 signal (sig, handle_sigterm);
1176 set_force_quit_flag ();
1178 mark_async_signal_handler (async_sigterm_token);
1181 /* Do the quit. All the checks have been done by the caller. */
1182 void
1183 async_request_quit (gdb_client_data arg)
1185 /* If the quit_flag has gotten reset back to 0 by the time we get
1186 back here, that means that an exception was thrown to unwind the
1187 current command before we got back to the event loop. So there
1188 is no reason to call quit again here. */
1189 QUIT;
1192 #ifdef SIGQUIT
1193 /* Tell the event loop what to do if SIGQUIT is received.
1194 See event-signal.c. */
1195 static void
1196 handle_sigquit (int sig)
1198 mark_async_signal_handler (sigquit_token);
1199 signal (sig, handle_sigquit);
1201 #endif
1203 #if defined (SIGQUIT) || defined (SIGHUP)
1204 /* Called by the event loop in response to a SIGQUIT or an
1205 ignored SIGHUP. */
1206 static void
1207 async_do_nothing (gdb_client_data arg)
1209 /* Empty function body. */
1211 #endif
1213 #ifdef SIGHUP
1214 /* Tell the event loop what to do if SIGHUP is received.
1215 See event-signal.c. */
1216 static void
1217 handle_sighup (int sig)
1219 mark_async_signal_handler (sighup_token);
1220 signal (sig, handle_sighup);
1223 /* Called by the event loop to process a SIGHUP. */
1224 static void
1225 async_disconnect (gdb_client_data arg)
1230 quit_cover ();
1233 catch (const gdb_exception &exception)
1235 gdb_puts ("Could not kill the program being debugged",
1236 gdb_stderr);
1237 exception_print (gdb_stderr, exception);
1238 if (exception.reason == RETURN_FORCED_QUIT)
1239 throw;
1242 for (inferior *inf : all_inferiors ())
1246 inf->pop_all_targets ();
1248 catch (const gdb_exception &exception)
1253 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
1254 raise (SIGHUP);
1256 #endif
1258 #ifdef SIGTSTP
1259 void
1260 handle_sigtstp (int sig)
1262 mark_async_signal_handler (sigtstp_token);
1263 signal (sig, handle_sigtstp);
1266 static void
1267 async_sigtstp_handler (gdb_client_data arg)
1269 const std::string &prompt = get_prompt ();
1271 signal (SIGTSTP, SIG_DFL);
1272 unblock_signal (SIGTSTP);
1273 raise (SIGTSTP);
1274 signal (SIGTSTP, handle_sigtstp);
1275 printf_unfiltered ("%s", prompt.c_str ());
1276 gdb_flush (gdb_stdout);
1278 /* Forget about any previous command -- null line now will do
1279 nothing. */
1280 dont_repeat ();
1282 #endif /* SIGTSTP */
1286 /* Set things up for readline to be invoked via the alternate
1287 interface, i.e. via a callback function
1288 (gdb_rl_callback_read_char), and hook up instream to the event
1289 loop. */
1291 void
1292 gdb_setup_readline (int editing)
1294 struct ui *ui = current_ui;
1296 /* If the input stream is connected to a terminal, turn on editing.
1297 However, that is only allowed on the main UI, as we can only have
1298 one instance of readline. Also, INSTREAM might be nullptr when
1299 executing a user-defined command. */
1300 if (ui->instream != nullptr && ISATTY (ui->instream)
1301 && editing && ui == main_ui)
1303 /* Tell gdb that we will be using the readline library. This
1304 could be overwritten by a command in .gdbinit like 'set
1305 editing on' or 'off'. */
1306 ui->command_editing = 1;
1308 /* When a character is detected on instream by select or poll,
1309 readline will be invoked via this callback function. */
1310 ui->call_readline = gdb_rl_callback_read_char_wrapper;
1312 /* Tell readline to use the same input stream that gdb uses. */
1313 rl_instream = ui->instream;
1315 else
1317 ui->command_editing = 0;
1318 ui->call_readline = gdb_readline_no_editing_callback;
1321 /* Now create the event source for this UI's input file descriptor.
1322 Another source is going to be the target program (inferior), but
1323 that must be registered only when it actually exists (I.e. after
1324 we say 'run' or after we connect to a remote target. */
1325 ui->register_file_handler ();
1328 /* Disable command input through the standard CLI channels. Used in
1329 the suspend proc for interpreters that use the standard gdb readline
1330 interface, like the cli & the mi. */
1332 void
1333 gdb_disable_readline (void)
1335 struct ui *ui = current_ui;
1337 if (ui->command_editing)
1338 gdb_rl_callback_handler_remove ();
1339 ui->unregister_file_handler ();
1342 scoped_segv_handler_restore::scoped_segv_handler_restore (segv_handler_t new_handler)
1344 m_old_handler = thread_local_segv_handler;
1345 thread_local_segv_handler = new_handler;
1348 scoped_segv_handler_restore::~scoped_segv_handler_restore()
1350 thread_local_segv_handler = m_old_handler;
1353 static const char debug_event_loop_off[] = "off";
1354 static const char debug_event_loop_all_except_ui[] = "all-except-ui";
1355 static const char debug_event_loop_all[] = "all";
1357 static const char *debug_event_loop_enum[] = {
1358 debug_event_loop_off,
1359 debug_event_loop_all_except_ui,
1360 debug_event_loop_all,
1361 nullptr
1364 static const char *debug_event_loop_value = debug_event_loop_off;
1366 static void
1367 set_debug_event_loop_command (const char *args, int from_tty,
1368 cmd_list_element *c)
1370 if (debug_event_loop_value == debug_event_loop_off)
1371 debug_event_loop = debug_event_loop_kind::OFF;
1372 else if (debug_event_loop_value == debug_event_loop_all_except_ui)
1373 debug_event_loop = debug_event_loop_kind::ALL_EXCEPT_UI;
1374 else if (debug_event_loop_value == debug_event_loop_all)
1375 debug_event_loop = debug_event_loop_kind::ALL;
1376 else
1377 gdb_assert_not_reached ("Invalid debug event look kind value.");
1380 static void
1381 show_debug_event_loop_command (struct ui_file *file, int from_tty,
1382 struct cmd_list_element *cmd, const char *value)
1384 gdb_printf (file, _("Event loop debugging is %s.\n"), value);
1387 void _initialize_event_top ();
1388 void
1389 _initialize_event_top ()
1391 add_setshow_enum_cmd ("event-loop", class_maintenance,
1392 debug_event_loop_enum,
1393 &debug_event_loop_value,
1394 _("Set event-loop debugging."),
1395 _("Show event-loop debugging."),
1396 _("\
1397 Control whether to show event loop-related debug messages."),
1398 set_debug_event_loop_command,
1399 show_debug_event_loop_command,
1400 &setdebuglist, &showdebuglist);
1402 add_setshow_boolean_cmd ("backtrace-on-fatal-signal", class_maintenance,
1403 &bt_on_fatal_signal, _("\
1404 Set whether to produce a backtrace if GDB receives a fatal signal."), _("\
1405 Show whether GDB will produce a backtrace if it receives a fatal signal."), _("\
1406 Use \"on\" to enable, \"off\" to disable.\n\
1407 If enabled, GDB will produce a minimal backtrace if it encounters a fatal\n\
1408 signal from within GDB itself. This is a mechanism to help diagnose\n\
1409 crashes within GDB, not a mechanism for debugging inferiors."),
1410 gdb_internal_backtrace_set_cmd,
1411 show_bt_on_fatal_signal,
1412 &maintenance_set_cmdlist,
1413 &maintenance_show_cmdlist);