Regenerate AArch64 opcodes files
[binutils-gdb.git] / gdb / event-top.c
blobef4ceedccfaa184c6d1f6e8766e62daf0f6e6804
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
526 && !ui->keep_prompt_blocked)
528 target_terminal::ours ();
529 ui->register_file_handler ();
530 ui->prompt_state = PROMPT_NEEDED;
534 /* Disable reads from stdin (the console) marking the command as
535 synchronous. */
537 void
538 async_disable_stdin (void)
540 struct ui *ui = current_ui;
542 ui->prompt_state = PROMPT_BLOCKED;
543 ui->unregister_file_handler ();
547 /* Handle a gdb command line. This function is called when
548 handle_line_of_input has concatenated one or more input lines into
549 a whole command. */
551 void
552 command_handler (const char *command)
554 struct ui *ui = current_ui;
555 const char *c;
557 if (ui->instream == ui->stdin_stream)
558 reinitialize_more_filter ();
560 scoped_command_stats stat_reporter (true);
562 /* Do not execute commented lines. */
563 for (c = command; *c == ' ' || *c == '\t'; c++)
565 if (c[0] != '#')
567 execute_command (command, ui->instream == ui->stdin_stream);
569 /* Do any commands attached to breakpoint we stopped at. */
570 bpstat_do_actions ();
574 /* Append RL, an input line returned by readline or one of its emulations, to
575 CMD_LINE_BUFFER. Return true if we have a whole command line ready to be
576 processed by the command interpreter or false if the command line isn't
577 complete yet (input line ends in a backslash). */
579 static bool
580 command_line_append_input_line (std::string &cmd_line_buffer, const char *rl)
582 size_t len = strlen (rl);
584 if (len > 0 && rl[len - 1] == '\\')
586 /* Don't copy the backslash and wait for more. */
587 cmd_line_buffer.append (rl, len - 1);
588 return false;
590 else
592 /* Copy whole line including terminating null, and we're
593 done. */
594 cmd_line_buffer.append (rl, len + 1);
595 return true;
599 /* Handle a line of input coming from readline.
601 If the read line ends with a continuation character (backslash), return
602 nullptr. Otherwise, return a pointer to the command line, indicating a whole
603 command line is ready to be executed.
605 The returned pointer may or may not point to CMD_LINE_BUFFER's internal
606 buffer.
608 Return EOF on end of file.
610 If REPEAT, handle command repetitions:
612 - If the input command line is NOT empty, the command returned is
613 saved using save_command_line () so that it can be repeated later.
615 - OTOH, if the input command line IS empty, return the saved
616 command instead of the empty input line.
619 const char *
620 handle_line_of_input (std::string &cmd_line_buffer,
621 const char *rl, int repeat,
622 const char *annotation_suffix)
624 struct ui *ui = current_ui;
625 int from_tty = ui->instream == ui->stdin_stream;
627 if (rl == NULL)
628 return (char *) EOF;
630 bool complete = command_line_append_input_line (cmd_line_buffer, rl);
631 if (!complete)
632 return NULL;
634 if (from_tty && annotation_level > 1)
635 printf_unfiltered (("\n\032\032post-%s\n"), annotation_suffix);
637 #define SERVER_COMMAND_PREFIX "server "
638 server_command = startswith (cmd_line_buffer.c_str (), SERVER_COMMAND_PREFIX);
639 if (server_command)
641 /* Note that we don't call `save_command_line'. Between this
642 and the check in dont_repeat, this insures that repeating
643 will still do the right thing. */
644 return cmd_line_buffer.c_str () + strlen (SERVER_COMMAND_PREFIX);
647 /* Do history expansion if that is wished. */
648 if (history_expansion_p && from_tty && current_ui->input_interactive_p ())
650 char *cmd_expansion;
651 int expanded;
653 /* Note: here, we pass a pointer to the std::string's internal buffer as
654 a `char *`. At the time of writing, readline's history_expand does
655 not modify the passed-in string. Ideally, readline should be modified
656 to make that parameter `const char *`. */
657 expanded = history_expand (&cmd_line_buffer[0], &cmd_expansion);
658 gdb::unique_xmalloc_ptr<char> history_value (cmd_expansion);
659 if (expanded)
661 /* Print the changes. */
662 printf_unfiltered ("%s\n", history_value.get ());
664 /* If there was an error, call this function again. */
665 if (expanded < 0)
666 return cmd_line_buffer.c_str ();
668 cmd_line_buffer = history_value.get ();
672 /* If we just got an empty line, and that is supposed to repeat the
673 previous command, return the previously saved command. */
674 const char *p1;
675 for (p1 = cmd_line_buffer.c_str (); *p1 == ' ' || *p1 == '\t'; p1++)
677 if (repeat && *p1 == '\0')
678 return get_saved_command_line ();
680 /* Add command to history if appropriate. Note: lines consisting
681 solely of comments are also added to the command history. This
682 is useful when you type a command, and then realize you don't
683 want to execute it quite yet. You can comment out the command
684 and then later fetch it from the value history and remove the
685 '#'. The kill ring is probably better, but some people are in
686 the habit of commenting things out. */
687 if (cmd_line_buffer[0] != '\0' && from_tty && current_ui->input_interactive_p ())
688 gdb_add_history (cmd_line_buffer.c_str ());
690 /* Save into global buffer if appropriate. */
691 if (repeat)
693 save_command_line (cmd_line_buffer.c_str ());
695 /* It is important that we return a pointer to the saved command line
696 here, for the `cmd_start == saved_command_line` check in
697 execute_command to work. */
698 return get_saved_command_line ();
701 return cmd_line_buffer.c_str ();
704 /* See event-top.h. */
706 void
707 gdb_rl_deprep_term_function (void)
709 #ifdef RL_STATE_EOF
710 std::optional<scoped_restore_tmpl<int>> restore_eof_found;
712 if (RL_ISSTATE (RL_STATE_EOF))
714 printf_unfiltered ("quit\n");
715 restore_eof_found.emplace (&rl_eof_found, 0);
718 #endif /* RL_STATE_EOF */
720 rl_deprep_terminal ();
723 /* Handle a complete line of input. This is called by the callback
724 mechanism within the readline library. Deal with incomplete
725 commands as well, by saving the partial input in a global
726 buffer.
728 NOTE: This is the asynchronous version of the command_line_input
729 function. */
731 void
732 command_line_handler (gdb::unique_xmalloc_ptr<char> &&rl)
734 std::string &line_buffer = get_command_line_buffer ();
735 struct ui *ui = current_ui;
737 const char *cmd = handle_line_of_input (line_buffer, rl.get (), 1, "prompt");
738 if (cmd == (char *) EOF)
740 /* stdin closed. The connection with the terminal is gone.
741 This happens at the end of a testsuite run, after Expect has
742 hung up but GDB is still alive. In such a case, we just quit
743 gdb killing the inferior program too. This also happens if the
744 user sends EOF, which is usually bound to ctrl+d. */
746 #ifndef RL_STATE_EOF
747 /* When readline is using bracketed paste mode, then, when eof is
748 received, readline will emit the control sequence to leave
749 bracketed paste mode.
751 This control sequence ends with \r, which means that the "quit" we
752 are about to print will overwrite the prompt on this line.
754 The solution to this problem is to actually print the "quit"
755 message from gdb_rl_deprep_term_function (see above), however, we
756 can only do that if we can know, in that function, when eof was
757 received.
759 Unfortunately, with older versions of readline, it is not possible
760 in the gdb_rl_deprep_term_function to know if eof was received or
761 not, and, as GDB can be built against the system readline, which
762 could be older than the readline in GDB's repository, then we
763 can't be sure that we can work around this prompt corruption in
764 the gdb_rl_deprep_term_function function.
766 If we get here, RL_STATE_EOF is not defined. This indicates that
767 we are using an older readline, and couldn't print the quit
768 message in gdb_rl_deprep_term_function. So, what we do here is
769 check to see if bracketed paste mode is on or not. If it's on
770 then we print a \n and then the quit, this means the user will
771 see:
773 (gdb)
774 quit
776 Rather than the usual:
778 (gdb) quit
780 Which we will get with a newer readline, but this really is the
781 best we can do with older versions of readline. */
782 const char *value = rl_variable_value ("enable-bracketed-paste");
783 if (value != nullptr && strcmp (value, "on") == 0
784 && ((rl_readline_version >> 8) & 0xff) > 0x07)
785 printf_unfiltered ("\n");
786 printf_unfiltered ("quit\n");
787 #endif
789 execute_command ("quit", 1);
791 else if (cmd == NULL)
793 /* We don't have a full line yet. Print an empty prompt. */
794 display_gdb_prompt ("");
796 else
798 ui->prompt_state = PROMPT_NEEDED;
800 /* Ensure the UI's line buffer is empty for the next command. */
801 SCOPE_EXIT { line_buffer.clear (); };
803 command_handler (cmd);
805 if (ui->prompt_state != PROMPTED)
806 display_gdb_prompt (0);
810 /* Does reading of input from terminal w/o the editing features
811 provided by the readline library. Calls the line input handler
812 once we have a whole input line. */
814 void
815 gdb_readline_no_editing_callback (gdb_client_data client_data)
817 int c;
818 std::string line_buffer;
819 struct ui *ui = current_ui;
821 FILE *stream = ui->instream != nullptr ? ui->instream : ui->stdin_stream;
822 gdb_assert (stream != nullptr);
824 /* We still need the while loop here, even though it would seem
825 obvious to invoke gdb_readline_no_editing_callback at every
826 character entered. If not using the readline library, the
827 terminal is in cooked mode, which sends the characters all at
828 once. Poll will notice that the input fd has changed state only
829 after enter is pressed. At this point we still need to fetch all
830 the chars entered. */
832 while (1)
834 /* Read from stdin if we are executing a user defined command.
835 This is the right thing for prompt_for_continue, at least. */
836 c = fgetc (stream);
838 if (c == EOF)
840 if (!line_buffer.empty ())
842 /* The last line does not end with a newline. Return it, and
843 if we are called again fgetc will still return EOF and
844 we'll return NULL then. */
845 break;
847 ui->input_handler (NULL);
848 return;
851 if (c == '\n')
853 if (!line_buffer.empty () && line_buffer.back () == '\r')
854 line_buffer.pop_back ();
855 break;
858 line_buffer += c;
861 ui->input_handler (make_unique_xstrdup (line_buffer.c_str ()));
865 /* Attempt to unblock signal SIG, return true if the signal was unblocked,
866 otherwise, return false. */
868 static bool
869 unblock_signal (int sig)
871 #if HAVE_SIGPROCMASK
872 sigset_t sigset;
873 sigemptyset (&sigset);
874 sigaddset (&sigset, sig);
875 gdb_sigmask (SIG_UNBLOCK, &sigset, 0);
876 return true;
877 #endif
879 return false;
882 /* Called to handle fatal signals. SIG is the signal number. */
884 static void ATTRIBUTE_NORETURN
885 handle_fatal_signal (int sig)
887 #ifdef TUI
888 tui_disable ();
889 #endif
891 #ifdef GDB_PRINT_INTERNAL_BACKTRACE
892 const auto sig_write = [] (const char *msg) -> void
894 gdb_stderr->write_async_safe (msg, strlen (msg));
897 if (bt_on_fatal_signal)
899 sig_write ("\n\n");
900 sig_write (_("Fatal signal: "));
901 sig_write (strsignal (sig));
902 sig_write ("\n");
904 gdb_internal_backtrace ();
906 sig_write (_("A fatal error internal to GDB has been detected, "
907 "further\ndebugging is not possible. GDB will now "
908 "terminate.\n\n"));
909 sig_write (_("This is a bug, please report it."));
910 if (REPORT_BUGS_TO[0] != '\0')
912 sig_write (_(" For instructions, see:\n"));
913 sig_write (REPORT_BUGS_TO);
914 sig_write (".");
916 sig_write ("\n\n");
918 gdb_stderr->flush ();
920 #endif
922 /* If possible arrange for SIG to have its default behaviour (which
923 should be to terminate the current process), unblock SIG, and reraise
924 the signal. This ensures GDB terminates with the expected signal. */
925 if (signal (sig, SIG_DFL) != SIG_ERR
926 && unblock_signal (sig))
927 raise (sig);
929 /* The above failed, so try to use SIGABRT to terminate GDB. */
930 #ifdef SIGABRT
931 signal (SIGABRT, SIG_DFL);
932 #endif
933 abort (); /* ARI: abort */
936 /* The SIGSEGV handler for this thread, or NULL if there is none. GDB
937 always installs a global SIGSEGV handler, and then lets threads
938 indicate their interest in handling the signal by setting this
939 thread-local variable.
941 This is a static variable instead of extern because on various platforms
942 (notably Cygwin) extern thread_local variables cause link errors. So
943 instead, we have scoped_segv_handler_restore, which also makes it impossible
944 to accidentally forget to restore it to the original value. */
946 static thread_local void (*thread_local_segv_handler) (int);
948 static void handle_sigsegv (int sig);
950 /* Install the SIGSEGV handler. */
951 static void
952 install_handle_sigsegv ()
954 #if defined (HAVE_SIGACTION)
955 struct sigaction sa;
956 sa.sa_handler = handle_sigsegv;
957 sigemptyset (&sa.sa_mask);
958 #ifdef HAVE_SIGALTSTACK
959 sa.sa_flags = SA_ONSTACK;
960 #else
961 sa.sa_flags = 0;
962 #endif
963 sigaction (SIGSEGV, &sa, nullptr);
964 #else
965 signal (SIGSEGV, handle_sigsegv);
966 #endif
969 /* Handler for SIGSEGV. */
971 static void
972 handle_sigsegv (int sig)
974 install_handle_sigsegv ();
976 if (thread_local_segv_handler == nullptr)
977 handle_fatal_signal (sig);
978 thread_local_segv_handler (sig);
983 /* The serial event associated with the QUIT flag. set_quit_flag sets
984 this, and check_quit_flag clears it. Used by interruptible_select
985 to be able to do interruptible I/O with no race with the SIGINT
986 handler. */
987 static struct serial_event *quit_serial_event;
989 /* Initialization of signal handlers and tokens. There are a number of
990 different strategies for handling different signals here.
992 For SIGINT, SIGTERM, SIGQUIT, SIGHUP, SIGTSTP, there is a function
993 handle_sig* for each of these signals. These functions are the actual
994 signal handlers associated to the signals via calls to signal(). The
995 only job for these functions is to enqueue the appropriate
996 event/procedure with the event loop. The event loop will take care of
997 invoking the queued procedures to perform the usual tasks associated
998 with the reception of the signal.
1000 For SIGSEGV the handle_sig* function does all the work for handling this
1001 signal.
1003 For SIGFPE, SIGBUS, and SIGABRT, these signals will all cause GDB to
1004 terminate immediately. */
1005 void
1006 gdb_init_signals (void)
1008 initialize_async_signal_handlers ();
1010 quit_serial_event = make_serial_event ();
1012 sigint_token =
1013 create_async_signal_handler (async_request_quit, NULL, "sigint");
1014 install_sigint_handler (handle_sigint);
1016 async_sigterm_token
1017 = create_async_signal_handler (async_sigterm_handler, NULL, "sigterm");
1018 signal (SIGTERM, handle_sigterm);
1020 #ifdef SIGQUIT
1021 sigquit_token =
1022 create_async_signal_handler (async_do_nothing, NULL, "sigquit");
1023 signal (SIGQUIT, handle_sigquit);
1024 #endif
1026 #ifdef SIGHUP
1027 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
1028 sighup_token =
1029 create_async_signal_handler (async_disconnect, NULL, "sighup");
1030 else
1031 sighup_token =
1032 create_async_signal_handler (async_do_nothing, NULL, "sighup");
1033 #endif
1035 #ifdef SIGTSTP
1036 sigtstp_token =
1037 create_async_signal_handler (async_sigtstp_handler, NULL, "sigtstp");
1038 #endif
1040 #ifdef SIGFPE
1041 signal (SIGFPE, handle_fatal_signal);
1042 #endif
1044 #ifdef SIGBUS
1045 signal (SIGBUS, handle_fatal_signal);
1046 #endif
1048 #ifdef SIGABRT
1049 signal (SIGABRT, handle_fatal_signal);
1050 #endif
1052 install_handle_sigsegv ();
1055 /* See defs.h. */
1057 void
1058 quit_serial_event_set (void)
1060 serial_event_set (quit_serial_event);
1063 /* See defs.h. */
1065 void
1066 quit_serial_event_clear (void)
1068 serial_event_clear (quit_serial_event);
1071 /* Return the selectable file descriptor of the serial event
1072 associated with the quit flag. */
1074 static int
1075 quit_serial_event_fd (void)
1077 return serial_event_fd (quit_serial_event);
1080 /* See defs.h. */
1082 void
1083 default_quit_handler (void)
1085 if (check_quit_flag ())
1087 if (target_terminal::is_ours ())
1088 quit ();
1089 else
1090 target_pass_ctrlc ();
1094 /* See defs.h. */
1095 quit_handler_ftype *quit_handler = default_quit_handler;
1097 /* Handle a SIGINT. */
1099 void
1100 handle_sigint (int sig)
1102 signal (sig, handle_sigint);
1104 /* We could be running in a loop reading in symfiles or something so
1105 it may be quite a while before we get back to the event loop. So
1106 set quit_flag to 1 here. Then if QUIT is called before we get to
1107 the event loop, we will unwind as expected. */
1108 set_quit_flag ();
1110 /* In case nothing calls QUIT before the event loop is reached, the
1111 event loop handles it. */
1112 mark_async_signal_handler (sigint_token);
1115 /* See gdb_select.h. */
1118 interruptible_select (int n,
1119 fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
1120 struct timeval *timeout)
1122 fd_set my_readfds;
1123 int fd;
1124 int res;
1126 if (readfds == NULL)
1128 readfds = &my_readfds;
1129 FD_ZERO (&my_readfds);
1132 fd = quit_serial_event_fd ();
1133 FD_SET (fd, readfds);
1134 if (n <= fd)
1135 n = fd + 1;
1139 res = gdb_select (n, readfds, writefds, exceptfds, timeout);
1141 while (res == -1 && errno == EINTR);
1143 if (res == 1 && FD_ISSET (fd, readfds))
1145 errno = EINTR;
1146 return -1;
1148 return res;
1151 /* Handle GDB exit upon receiving SIGTERM if target_can_async_p (). */
1153 static void
1154 async_sigterm_handler (gdb_client_data arg)
1156 quit_force (NULL, 0);
1159 /* See defs.h. */
1160 volatile bool sync_quit_force_run;
1162 /* See defs.h. */
1163 void
1164 set_force_quit_flag ()
1166 sync_quit_force_run = true;
1167 set_quit_flag ();
1170 /* Quit GDB if SIGTERM is received.
1171 GDB would quit anyway, but this way it will clean up properly. */
1172 void
1173 handle_sigterm (int sig)
1175 signal (sig, handle_sigterm);
1177 set_force_quit_flag ();
1179 mark_async_signal_handler (async_sigterm_token);
1182 /* Do the quit. All the checks have been done by the caller. */
1183 void
1184 async_request_quit (gdb_client_data arg)
1186 /* If the quit_flag has gotten reset back to 0 by the time we get
1187 back here, that means that an exception was thrown to unwind the
1188 current command before we got back to the event loop. So there
1189 is no reason to call quit again here. */
1190 QUIT;
1193 #ifdef SIGQUIT
1194 /* Tell the event loop what to do if SIGQUIT is received.
1195 See event-signal.c. */
1196 static void
1197 handle_sigquit (int sig)
1199 mark_async_signal_handler (sigquit_token);
1200 signal (sig, handle_sigquit);
1202 #endif
1204 #if defined (SIGQUIT) || defined (SIGHUP)
1205 /* Called by the event loop in response to a SIGQUIT or an
1206 ignored SIGHUP. */
1207 static void
1208 async_do_nothing (gdb_client_data arg)
1210 /* Empty function body. */
1212 #endif
1214 #ifdef SIGHUP
1215 /* Tell the event loop what to do if SIGHUP is received.
1216 See event-signal.c. */
1217 static void
1218 handle_sighup (int sig)
1220 mark_async_signal_handler (sighup_token);
1221 signal (sig, handle_sighup);
1224 /* Called by the event loop to process a SIGHUP. */
1225 static void
1226 async_disconnect (gdb_client_data arg)
1231 quit_cover ();
1234 catch (const gdb_exception &exception)
1236 gdb_puts ("Could not kill the program being debugged",
1237 gdb_stderr);
1238 exception_print (gdb_stderr, exception);
1239 if (exception.reason == RETURN_FORCED_QUIT)
1240 throw;
1243 for (inferior *inf : all_inferiors ())
1247 inf->pop_all_targets ();
1249 catch (const gdb_exception &exception)
1254 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
1255 raise (SIGHUP);
1257 #endif
1259 #ifdef SIGTSTP
1260 void
1261 handle_sigtstp (int sig)
1263 mark_async_signal_handler (sigtstp_token);
1264 signal (sig, handle_sigtstp);
1267 static void
1268 async_sigtstp_handler (gdb_client_data arg)
1270 const std::string &prompt = get_prompt ();
1272 signal (SIGTSTP, SIG_DFL);
1273 unblock_signal (SIGTSTP);
1274 raise (SIGTSTP);
1275 signal (SIGTSTP, handle_sigtstp);
1276 printf_unfiltered ("%s", prompt.c_str ());
1277 gdb_flush (gdb_stdout);
1279 /* Forget about any previous command -- null line now will do
1280 nothing. */
1281 dont_repeat ();
1283 #endif /* SIGTSTP */
1287 /* Set things up for readline to be invoked via the alternate
1288 interface, i.e. via a callback function
1289 (gdb_rl_callback_read_char), and hook up instream to the event
1290 loop. */
1292 void
1293 gdb_setup_readline (int editing)
1295 struct ui *ui = current_ui;
1297 /* If the input stream is connected to a terminal, turn on editing.
1298 However, that is only allowed on the main UI, as we can only have
1299 one instance of readline. Also, INSTREAM might be nullptr when
1300 executing a user-defined command. */
1301 if (ui->instream != nullptr && ISATTY (ui->instream)
1302 && editing && ui == main_ui)
1304 /* Tell gdb that we will be using the readline library. This
1305 could be overwritten by a command in .gdbinit like 'set
1306 editing on' or 'off'. */
1307 ui->command_editing = 1;
1309 /* When a character is detected on instream by select or poll,
1310 readline will be invoked via this callback function. */
1311 ui->call_readline = gdb_rl_callback_read_char_wrapper;
1313 /* Tell readline to use the same input stream that gdb uses. */
1314 rl_instream = ui->instream;
1316 else
1318 ui->command_editing = 0;
1319 ui->call_readline = gdb_readline_no_editing_callback;
1322 /* Now create the event source for this UI's input file descriptor.
1323 Another source is going to be the target program (inferior), but
1324 that must be registered only when it actually exists (I.e. after
1325 we say 'run' or after we connect to a remote target. */
1326 ui->register_file_handler ();
1329 /* Disable command input through the standard CLI channels. Used in
1330 the suspend proc for interpreters that use the standard gdb readline
1331 interface, like the cli & the mi. */
1333 void
1334 gdb_disable_readline (void)
1336 struct ui *ui = current_ui;
1338 if (ui->command_editing)
1339 gdb_rl_callback_handler_remove ();
1340 ui->unregister_file_handler ();
1343 scoped_segv_handler_restore::scoped_segv_handler_restore (segv_handler_t new_handler)
1345 m_old_handler = thread_local_segv_handler;
1346 thread_local_segv_handler = new_handler;
1349 scoped_segv_handler_restore::~scoped_segv_handler_restore()
1351 thread_local_segv_handler = m_old_handler;
1354 static const char debug_event_loop_off[] = "off";
1355 static const char debug_event_loop_all_except_ui[] = "all-except-ui";
1356 static const char debug_event_loop_all[] = "all";
1358 static const char *debug_event_loop_enum[] = {
1359 debug_event_loop_off,
1360 debug_event_loop_all_except_ui,
1361 debug_event_loop_all,
1362 nullptr
1365 static const char *debug_event_loop_value = debug_event_loop_off;
1367 static void
1368 set_debug_event_loop_command (const char *args, int from_tty,
1369 cmd_list_element *c)
1371 if (debug_event_loop_value == debug_event_loop_off)
1372 debug_event_loop = debug_event_loop_kind::OFF;
1373 else if (debug_event_loop_value == debug_event_loop_all_except_ui)
1374 debug_event_loop = debug_event_loop_kind::ALL_EXCEPT_UI;
1375 else if (debug_event_loop_value == debug_event_loop_all)
1376 debug_event_loop = debug_event_loop_kind::ALL;
1377 else
1378 gdb_assert_not_reached ("Invalid debug event look kind value.");
1381 static void
1382 show_debug_event_loop_command (struct ui_file *file, int from_tty,
1383 struct cmd_list_element *cmd, const char *value)
1385 gdb_printf (file, _("Event loop debugging is %s.\n"), value);
1388 void _initialize_event_top ();
1389 void
1390 _initialize_event_top ()
1392 add_setshow_enum_cmd ("event-loop", class_maintenance,
1393 debug_event_loop_enum,
1394 &debug_event_loop_value,
1395 _("Set event-loop debugging."),
1396 _("Show event-loop debugging."),
1397 _("\
1398 Control whether to show event loop-related debug messages."),
1399 set_debug_event_loop_command,
1400 show_debug_event_loop_command,
1401 &setdebuglist, &showdebuglist);
1403 add_setshow_boolean_cmd ("backtrace-on-fatal-signal", class_maintenance,
1404 &bt_on_fatal_signal, _("\
1405 Set whether to produce a backtrace if GDB receives a fatal signal."), _("\
1406 Show whether GDB will produce a backtrace if it receives a fatal signal."), _("\
1407 Use \"on\" to enable, \"off\" to disable.\n\
1408 If enabled, GDB will produce a minimal backtrace if it encounters a fatal\n\
1409 signal from within GDB itself. This is a mechanism to help diagnose\n\
1410 crashes within GDB, not a mechanism for debugging inferiors."),
1411 gdb_internal_backtrace_set_cmd,
1412 show_bt_on_fatal_signal,
1413 &maintenance_set_cmdlist,
1414 &maintenance_show_cmdlist);