Simplify saved_command_line handling
[external/binutils.git] / gdb / event-top.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3    Copyright (C) 1999-2016 Free Software Foundation, Inc.
4
5    Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 #include "defs.h"
23 #include "top.h"
24 #include "inferior.h"
25 #include "infrun.h"
26 #include "target.h"
27 #include "terminal.h"           /* for job_control */
28 #include "event-loop.h"
29 #include "event-top.h"
30 #include "interps.h"
31 #include <signal.h>
32 #include "cli/cli-script.h"     /* for reset_command_nest_depth */
33 #include "main.h"
34 #include "gdbthread.h"
35 #include "observer.h"
36 #include "continuations.h"
37 #include "gdbcmd.h"             /* for dont_repeat() */
38 #include "annotate.h"
39 #include "maint.h"
40 #include "buffer.h"
41
42 /* readline include files.  */
43 #include "readline/readline.h"
44 #include "readline/history.h"
45
46 /* readline defines this.  */
47 #undef savestring
48
49 static void rl_callback_read_char_wrapper (gdb_client_data client_data);
50 static void command_line_handler (char *rl);
51 static void change_line_handler (void);
52 static void command_handler (char *command);
53 static char *top_level_prompt (void);
54
55 /* Signal handlers.  */
56 #ifdef SIGQUIT
57 static void handle_sigquit (int sig);
58 #endif
59 #ifdef SIGHUP
60 static void handle_sighup (int sig);
61 #endif
62 static void handle_sigfpe (int sig);
63
64 /* Functions to be invoked by the event loop in response to
65    signals.  */
66 #if defined (SIGQUIT) || defined (SIGHUP)
67 static void async_do_nothing (gdb_client_data);
68 #endif
69 #ifdef SIGHUP
70 static void async_disconnect (gdb_client_data);
71 #endif
72 static void async_float_handler (gdb_client_data);
73 #ifdef STOP_SIGNAL
74 static void async_stop_sig (gdb_client_data);
75 #endif
76 static void async_sigterm_handler (gdb_client_data arg);
77
78 /* Readline offers an alternate interface, via callback
79    functions.  These are all included in the file callback.c in the
80    readline distribution.  This file provides (mainly) a function, which
81    the event loop uses as callback (i.e. event handler) whenever an event
82    is detected on the standard input file descriptor.
83    readline_callback_read_char is called (by the GDB event loop) whenever
84    there is a new character ready on the input stream.  This function
85    incrementally builds a buffer internal to readline where it
86    accumulates the line read up to the point of invocation.  In the
87    special case in which the character read is newline, the function
88    invokes a GDB supplied callback routine, which does the processing of
89    a full command line.  This latter routine is the asynchronous analog
90    of the old command_line_input in gdb.  Instead of invoking (and waiting
91    for) readline to read the command line and pass it back to
92    command_loop for processing, the new command_line_handler function has
93    the command line already available as its parameter.  INPUT_HANDLER is
94    to be set to the function that readline will invoke when a complete
95    line of input is ready.  CALL_READLINE is to be set to the function
96    that readline offers as callback to the event_loop.  */
97
98 void (*input_handler) (char *);
99 void (*call_readline) (gdb_client_data);
100
101 /* Important variables for the event loop.  */
102
103 /* This is used to determine if GDB is using the readline library or
104    its own simplified form of readline.  It is used by the asynchronous
105    form of the set editing command.
106    ezannoni: as of 1999-04-29 I expect that this
107    variable will not be used after gdb is changed to use the event
108    loop as default engine, and event-top.c is merged into top.c.  */
109 int async_command_editing_p;
110
111 /* This is used to display the notification of the completion of an
112    asynchronous execution command.  */
113 int exec_done_display_p = 0;
114
115 /* This is the file descriptor for the input stream that GDB uses to
116    read commands from.  */
117 int input_fd;
118
119 /* Used by the stdin event handler to compensate for missed stdin events.
120    Setting this to a non-zero value inside an stdin callback makes the callback
121    run again.  */
122 int call_stdin_event_handler_again_p;
123
124 /* Signal handling variables.  */
125 /* Each of these is a pointer to a function that the event loop will
126    invoke if the corresponding signal has received.  The real signal
127    handlers mark these functions as ready to be executed and the event
128    loop, in a later iteration, calls them.  See the function
129    invoke_async_signal_handler.  */
130 static struct async_signal_handler *sigint_token;
131 #ifdef SIGHUP
132 static struct async_signal_handler *sighup_token;
133 #endif
134 #ifdef SIGQUIT
135 static struct async_signal_handler *sigquit_token;
136 #endif
137 static struct async_signal_handler *sigfpe_token;
138 #ifdef STOP_SIGNAL
139 static struct async_signal_handler *sigtstp_token;
140 #endif
141 static struct async_signal_handler *async_sigterm_token;
142
143 /* Structure to save a partially entered command.  This is used when
144    the user types '\' at the end of a command line.  This is necessary
145    because each line of input is handled by a different call to
146    command_line_handler, and normally there is no state retained
147    between different calls.  */
148 static int more_to_come = 0;
149
150 struct readline_input_state
151   {
152     char *linebuffer;
153     char *linebuffer_ptr;
154   }
155 readline_input_state;
156
157 /* This hook is called by rl_callback_read_char_wrapper after each
158    character is processed.  */
159 void (*after_char_processing_hook) (void);
160 \f
161
162 /* Wrapper function for calling into the readline library.  The event
163    loop expects the callback function to have a paramter, while
164    readline expects none.  */
165 static void
166 rl_callback_read_char_wrapper (gdb_client_data client_data)
167 {
168   rl_callback_read_char ();
169   if (after_char_processing_hook)
170     (*after_char_processing_hook) ();
171 }
172
173 /* Initialize all the necessary variables, start the event loop,
174    register readline, and stdin, start the loop.  The DATA is the
175    interpreter data cookie, ignored for now.  */
176
177 void
178 cli_command_loop (void *data)
179 {
180   display_gdb_prompt (0);
181
182   /* Now it's time to start the event loop.  */
183   start_event_loop ();
184 }
185
186 /* Change the function to be invoked every time there is a character
187    ready on stdin.  This is used when the user sets the editing off,
188    therefore bypassing readline, and letting gdb handle the input
189    itself, via gdb_readline_no_editing_callback.  Also it is used in
190    the opposite case in which the user sets editing on again, by
191    restoring readline handling of the input.  */
192 static void
193 change_line_handler (void)
194 {
195   /* NOTE: this operates on input_fd, not instream.  If we are reading
196      commands from a file, instream will point to the file.  However in
197      async mode, we always read commands from a file with editing
198      off.  This means that the 'set editing on/off' will have effect
199      only on the interactive session.  */
200
201   if (async_command_editing_p)
202     {
203       /* Turn on editing by using readline.  */
204       call_readline = rl_callback_read_char_wrapper;
205       input_handler = command_line_handler;
206     }
207   else
208     {
209       /* Turn off editing by using gdb_readline_no_editing_callback.  */
210       gdb_rl_callback_handler_remove ();
211       call_readline = gdb_readline_no_editing_callback;
212
213       /* Set up the command handler as well, in case we are called as
214          first thing from .gdbinit.  */
215       input_handler = command_line_handler;
216     }
217 }
218
219 /* The functions below are wrappers for rl_callback_handler_remove and
220    rl_callback_handler_install that keep track of whether the callback
221    handler is installed in readline.  This is necessary because after
222    handling a target event of a background execution command, we may
223    need to reinstall the callback handler if it was removed due to a
224    secondary prompt.  See gdb_readline_wrapper_line.  We don't
225    unconditionally install the handler for every target event because
226    that also clears the line buffer, thus installing it while the user
227    is typing would lose input.  */
228
229 /* Whether we've registered a callback handler with readline.  */
230 static int callback_handler_installed;
231
232 /* See event-top.h, and above.  */
233
234 void
235 gdb_rl_callback_handler_remove (void)
236 {
237   rl_callback_handler_remove ();
238   callback_handler_installed = 0;
239 }
240
241 /* See event-top.h, and above.  Note this wrapper doesn't have an
242    actual callback parameter because we always install
243    INPUT_HANDLER.  */
244
245 void
246 gdb_rl_callback_handler_install (const char *prompt)
247 {
248   /* Calling rl_callback_handler_install resets readline's input
249      buffer.  Calling this when we were already processing input
250      therefore loses input.  */
251   gdb_assert (!callback_handler_installed);
252
253   rl_callback_handler_install (prompt, input_handler);
254   callback_handler_installed = 1;
255 }
256
257 /* See event-top.h, and above.  */
258
259 void
260 gdb_rl_callback_handler_reinstall (void)
261 {
262   if (!callback_handler_installed)
263     {
264       /* Passing NULL as prompt argument tells readline to not display
265          a prompt.  */
266       gdb_rl_callback_handler_install (NULL);
267     }
268 }
269
270 /* Displays the prompt.  If the argument NEW_PROMPT is NULL, the
271    prompt that is displayed is the current top level prompt.
272    Otherwise, it displays whatever NEW_PROMPT is as a local/secondary
273    prompt.
274
275    This is used after each gdb command has completed, and in the
276    following cases:
277
278    1. When the user enters a command line which is ended by '\'
279    indicating that the command will continue on the next line.  In
280    that case the prompt that is displayed is the empty string.
281
282    2. When the user is entering 'commands' for a breakpoint, or
283    actions for a tracepoint.  In this case the prompt will be '>'
284
285    3. On prompting for pagination.  */
286
287 void
288 display_gdb_prompt (const char *new_prompt)
289 {
290   char *actual_gdb_prompt = NULL;
291   struct cleanup *old_chain;
292
293   annotate_display_prompt ();
294
295   /* Reset the nesting depth used when trace-commands is set.  */
296   reset_command_nest_depth ();
297
298   old_chain = make_cleanup (free_current_contents, &actual_gdb_prompt);
299
300   /* Do not call the python hook on an explicit prompt change as
301      passed to this function, as this forms a secondary/local prompt,
302      IE, displayed but not set.  */
303   if (! new_prompt)
304     {
305       if (sync_execution)
306         {
307           /* This is to trick readline into not trying to display the
308              prompt.  Even though we display the prompt using this
309              function, readline still tries to do its own display if
310              we don't call rl_callback_handler_install and
311              rl_callback_handler_remove (which readline detects
312              because a global variable is not set).  If readline did
313              that, it could mess up gdb signal handlers for SIGINT.
314              Readline assumes that between calls to rl_set_signals and
315              rl_clear_signals gdb doesn't do anything with the signal
316              handlers.  Well, that's not the case, because when the
317              target executes we change the SIGINT signal handler.  If
318              we allowed readline to display the prompt, the signal
319              handler change would happen exactly between the calls to
320              the above two functions.  Calling
321              rl_callback_handler_remove(), does the job.  */
322
323           gdb_rl_callback_handler_remove ();
324           do_cleanups (old_chain);
325           return;
326         }
327       else
328         {
329           /* Display the top level prompt.  */
330           actual_gdb_prompt = top_level_prompt ();
331         }
332     }
333   else
334     actual_gdb_prompt = xstrdup (new_prompt);
335
336   if (async_command_editing_p)
337     {
338       gdb_rl_callback_handler_remove ();
339       gdb_rl_callback_handler_install (actual_gdb_prompt);
340     }
341   /* new_prompt at this point can be the top of the stack or the one
342      passed in.  It can't be NULL.  */
343   else
344     {
345       /* Don't use a _filtered function here.  It causes the assumed
346          character position to be off, since the newline we read from
347          the user is not accounted for.  */
348       fputs_unfiltered (actual_gdb_prompt, gdb_stdout);
349       gdb_flush (gdb_stdout);
350     }
351
352   do_cleanups (old_chain);
353 }
354
355 /* Return the top level prompt, as specified by "set prompt", possibly
356    overriden by the python gdb.prompt_hook hook, and then composed
357    with the prompt prefix and suffix (annotations).  The caller is
358    responsible for freeing the returned string.  */
359
360 static char *
361 top_level_prompt (void)
362 {
363   char *prompt;
364
365   /* Give observers a chance of changing the prompt.  E.g., the python
366      `gdb.prompt_hook' is installed as an observer.  */
367   observer_notify_before_prompt (get_prompt ());
368
369   prompt = get_prompt ();
370
371   if (annotation_level >= 2)
372     {
373       /* Prefix needs to have new line at end.  */
374       const char prefix[] = "\n\032\032pre-prompt\n";
375
376       /* Suffix needs to have a new line at end and \032 \032 at
377          beginning.  */
378       const char suffix[] = "\n\032\032prompt\n";
379
380       return concat (prefix, prompt, suffix, NULL);
381     }
382
383   return xstrdup (prompt);
384 }
385
386 /* When there is an event ready on the stdin file descriptor, instead
387    of calling readline directly throught the callback function, or
388    instead of calling gdb_readline_no_editing_callback, give gdb a
389    chance to detect errors and do something.  */
390
391 void
392 stdin_event_handler (int error, gdb_client_data client_data)
393 {
394   if (error)
395     {
396       printf_unfiltered (_("error detected on stdin\n"));
397       delete_file_handler (input_fd);
398       /* If stdin died, we may as well kill gdb.  */
399       quit_command ((char *) 0, stdin == instream);
400     }
401   else
402     {
403       do
404         {
405           call_stdin_event_handler_again_p = 0;
406           (*call_readline) (client_data);
407         } while (call_stdin_event_handler_again_p != 0);
408     }
409 }
410
411 /* Re-enable stdin after the end of an execution command in
412    synchronous mode, or after an error from the target, and we aborted
413    the exec operation.  */
414
415 void
416 async_enable_stdin (void)
417 {
418   if (sync_execution)
419     {
420       /* See NOTE in async_disable_stdin().  */
421       /* FIXME: cagney/1999-09-27: Call this before clearing
422          sync_execution.  Current target_terminal_ours() implementations
423          check for sync_execution before switching the terminal.  */
424       target_terminal_ours ();
425       sync_execution = 0;
426     }
427 }
428
429 /* Disable reads from stdin (the console) marking the command as
430    synchronous.  */
431
432 void
433 async_disable_stdin (void)
434 {
435   sync_execution = 1;
436 }
437 \f
438
439 /* Handles a gdb command.  This function is called by
440    command_line_handler, which has processed one or more input lines
441    into COMMAND.  */
442 /* NOTE: 1999-04-30 This is the asynchronous version of the command_loop
443    function.  The command_loop function will be obsolete when we
444    switch to use the event loop at every execution of gdb.  */
445 static void
446 command_handler (char *command)
447 {
448   struct cleanup *stat_chain;
449
450   clear_quit_flag ();
451   if (instream == stdin)
452     reinitialize_more_filter ();
453
454   /* If readline returned a NULL command, it means that the connection
455      with the terminal is gone.  This happens at the end of a
456      testsuite run, after Expect has hung up but GDB is still alive.
457      In such a case, we just quit gdb killing the inferior program
458      too.  */
459   if (command == 0)
460     {
461       printf_unfiltered ("quit\n");
462       execute_command ("quit", stdin == instream);
463     }
464
465   stat_chain = make_command_stats_cleanup (1);
466
467   execute_command (command, instream == stdin);
468
469   /* Do any commands attached to breakpoint we stopped at.  */
470   bpstat_do_actions ();
471
472   do_cleanups (stat_chain);
473 }
474
475 /* Handle a complete line of input.  This is called by the callback
476    mechanism within the readline library.  Deal with incomplete
477    commands as well, by saving the partial input in a global
478    buffer.  */
479
480 /* NOTE: 1999-04-30 This is the asynchronous version of the
481    command_line_input function; command_line_input will become
482    obsolete once we use the event loop as the default mechanism in
483    GDB.  */
484 static void
485 command_line_handler (char *rl)
486 {
487   static char *linebuffer = 0;
488   static unsigned linelength = 0;
489   char *p;
490   char *p1;
491   char *nline;
492   int repeat = (instream == stdin);
493
494   if (annotation_level > 1 && instream == stdin)
495     printf_unfiltered (("\n\032\032post-prompt\n"));
496
497   if (linebuffer == 0)
498     {
499       linelength = 80;
500       linebuffer = (char *) xmalloc (linelength);
501       linebuffer[0] = '\0';
502     }
503
504   p = linebuffer;
505
506   if (more_to_come)
507     {
508       strcpy (linebuffer, readline_input_state.linebuffer);
509       p = readline_input_state.linebuffer_ptr;
510       xfree (readline_input_state.linebuffer);
511       more_to_come = 0;
512     }
513
514 #ifdef STOP_SIGNAL
515   if (job_control)
516     signal (STOP_SIGNAL, handle_stop_sig);
517 #endif
518
519   /* Make sure that all output has been output.  Some machines may let
520      you get away with leaving out some of the gdb_flush, but not
521      all.  */
522   wrap_here ("");
523   gdb_flush (gdb_stdout);
524   gdb_flush (gdb_stderr);
525
526   if (source_file_name != NULL)
527     ++source_line_number;
528
529   /* If we are in this case, then command_handler will call quit 
530      and exit from gdb.  */
531   if (!rl || rl == (char *) EOF)
532     {
533       command_handler (0);
534       return;                   /* Lint.  */
535     }
536   if (strlen (rl) + 1 + (p - linebuffer) > linelength)
537     {
538       linelength = strlen (rl) + 1 + (p - linebuffer);
539       nline = (char *) xrealloc (linebuffer, linelength);
540       p += nline - linebuffer;
541       linebuffer = nline;
542     }
543   p1 = rl;
544   /* Copy line.  Don't copy null at end.  (Leaves line alone
545      if this was just a newline).  */
546   while (*p1)
547     *p++ = *p1++;
548
549   xfree (rl);                   /* Allocated in readline.  */
550
551   if (p > linebuffer && *(p - 1) == '\\')
552     {
553       *p = '\0';
554       p--;                      /* Put on top of '\'.  */
555
556       readline_input_state.linebuffer = xstrdup (linebuffer);
557       readline_input_state.linebuffer_ptr = p;
558
559       /* We will not invoke a execute_command if there is more
560          input expected to complete the command.  So, we need to
561          print an empty prompt here.  */
562       more_to_come = 1;
563       display_gdb_prompt ("");
564       return;
565     }
566
567 #ifdef STOP_SIGNAL
568   if (job_control)
569     signal (STOP_SIGNAL, SIG_DFL);
570 #endif
571
572 #define SERVER_COMMAND_LENGTH 7
573   server_command =
574     (p - linebuffer > SERVER_COMMAND_LENGTH)
575     && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
576   if (server_command)
577     {
578       /* Note that we don't set `line'.  Between this and the check in
579          dont_repeat, this insures that repeating will still do the
580          right thing.  */
581       *p = '\0';
582       command_handler (linebuffer + SERVER_COMMAND_LENGTH);
583       display_gdb_prompt (0);
584       return;
585     }
586
587   /* Do history expansion if that is wished.  */
588   if (history_expansion_p && instream == stdin
589       && ISATTY (instream))
590     {
591       char *history_value;
592       int expanded;
593
594       *p = '\0';                /* Insert null now.  */
595       expanded = history_expand (linebuffer, &history_value);
596       if (expanded)
597         {
598           /* Print the changes.  */
599           printf_unfiltered ("%s\n", history_value);
600
601           /* If there was an error, call this function again.  */
602           if (expanded < 0)
603             {
604               xfree (history_value);
605               return;
606             }
607           if (strlen (history_value) > linelength)
608             {
609               linelength = strlen (history_value) + 1;
610               linebuffer = (char *) xrealloc (linebuffer, linelength);
611             }
612           strcpy (linebuffer, history_value);
613           p = linebuffer + strlen (linebuffer);
614         }
615       xfree (history_value);
616     }
617
618   /* If we just got an empty line, and that is supposed to repeat the
619      previous command, return the value in the global buffer.  */
620   if (repeat && p == linebuffer && *p != '\\')
621     {
622       command_handler (saved_command_line);
623       display_gdb_prompt (0);
624       return;
625     }
626
627   for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
628   if (repeat && !*p1)
629     {
630       command_handler (saved_command_line);
631       display_gdb_prompt (0);
632       return;
633     }
634
635   *p = 0;
636
637   /* Add line to history if appropriate.  */
638   if (*linebuffer && input_from_terminal_p ())
639     gdb_add_history (linebuffer);
640
641   /* Note: lines consisting solely of comments are added to the command
642      history.  This is useful when you type a command, and then
643      realize you don't want to execute it quite yet.  You can comment
644      out the command and then later fetch it from the value history
645      and remove the '#'.  The kill ring is probably better, but some
646      people are in the habit of commenting things out.  */
647   if (*p1 == '#')
648     *p1 = '\0';                 /* Found a comment.  */
649
650   /* Save into global buffer if appropriate.  */
651   if (repeat)
652     {
653       xfree (saved_command_line);
654       saved_command_line = xstrdup (linebuffer);
655       if (!more_to_come)
656         {
657           command_handler (saved_command_line);
658           display_gdb_prompt (0);
659         }
660       return;
661     }
662
663   command_handler (linebuffer);
664   display_gdb_prompt (0);
665   return;
666 }
667
668 /* Does reading of input from terminal w/o the editing features
669    provided by the readline library.  Calls the line input handler
670    once we have a whole input line.  */
671
672 void
673 gdb_readline_no_editing_callback (gdb_client_data client_data)
674 {
675   int c;
676   char *result;
677   struct buffer line_buffer;
678   static int done_once = 0;
679
680   buffer_init (&line_buffer);
681
682   /* Unbuffer the input stream, so that, later on, the calls to fgetc
683      fetch only one char at the time from the stream.  The fgetc's will
684      get up to the first newline, but there may be more chars in the
685      stream after '\n'.  If we buffer the input and fgetc drains the
686      stream, getting stuff beyond the newline as well, a select, done
687      afterwards will not trigger.  */
688   if (!done_once && !ISATTY (instream))
689     {
690       setbuf (instream, NULL);
691       done_once = 1;
692     }
693
694   /* We still need the while loop here, even though it would seem
695      obvious to invoke gdb_readline_no_editing_callback at every
696      character entered.  If not using the readline library, the
697      terminal is in cooked mode, which sends the characters all at
698      once.  Poll will notice that the input fd has changed state only
699      after enter is pressed.  At this point we still need to fetch all
700      the chars entered.  */
701
702   while (1)
703     {
704       /* Read from stdin if we are executing a user defined command.
705          This is the right thing for prompt_for_continue, at least.  */
706       c = fgetc (instream ? instream : stdin);
707
708       if (c == EOF)
709         {
710           if (line_buffer.used_size > 0)
711             {
712               /* The last line does not end with a newline.  Return it, and
713                  if we are called again fgetc will still return EOF and
714                  we'll return NULL then.  */
715               break;
716             }
717           xfree (buffer_finish (&line_buffer));
718           (*input_handler) (0);
719           return;
720         }
721
722       if (c == '\n')
723         {
724           if (line_buffer.used_size > 0
725               && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
726             line_buffer.used_size--;
727           break;
728         }
729
730       buffer_grow_char (&line_buffer, c);
731     }
732
733   buffer_grow_char (&line_buffer, '\0');
734   result = buffer_finish (&line_buffer);
735   (*input_handler) (result);
736 }
737 \f
738
739 /* Initialization of signal handlers and tokens.  There is a function
740    handle_sig* for each of the signals GDB cares about.  Specifically:
741    SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH.  These
742    functions are the actual signal handlers associated to the signals
743    via calls to signal().  The only job for these functions is to
744    enqueue the appropriate event/procedure with the event loop.  Such
745    procedures are the old signal handlers.  The event loop will take
746    care of invoking the queued procedures to perform the usual tasks
747    associated with the reception of the signal.  */
748 /* NOTE: 1999-04-30 This is the asynchronous version of init_signals.
749    init_signals will become obsolete as we move to have to event loop
750    as the default for gdb.  */
751 void
752 async_init_signals (void)
753 {
754   signal (SIGINT, handle_sigint);
755   sigint_token =
756     create_async_signal_handler (async_request_quit, NULL);
757   signal (SIGTERM, handle_sigterm);
758   async_sigterm_token
759     = create_async_signal_handler (async_sigterm_handler, NULL);
760
761   /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
762      to the inferior and breakpoints will be ignored.  */
763 #ifdef SIGTRAP
764   signal (SIGTRAP, SIG_DFL);
765 #endif
766
767 #ifdef SIGQUIT
768   /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
769      passed to the inferior, which we don't want.  It would be
770      possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
771      on BSD4.3 systems using vfork, that can affect the
772      GDB process as well as the inferior (the signal handling tables
773      might be in memory, shared between the two).  Since we establish
774      a handler for SIGQUIT, when we call exec it will set the signal
775      to SIG_DFL for us.  */
776   signal (SIGQUIT, handle_sigquit);
777   sigquit_token =
778     create_async_signal_handler (async_do_nothing, NULL);
779 #endif
780 #ifdef SIGHUP
781   if (signal (SIGHUP, handle_sighup) != SIG_IGN)
782     sighup_token =
783       create_async_signal_handler (async_disconnect, NULL);
784   else
785     sighup_token =
786       create_async_signal_handler (async_do_nothing, NULL);
787 #endif
788   signal (SIGFPE, handle_sigfpe);
789   sigfpe_token =
790     create_async_signal_handler (async_float_handler, NULL);
791
792 #ifdef STOP_SIGNAL
793   sigtstp_token =
794     create_async_signal_handler (async_stop_sig, NULL);
795 #endif
796 }
797
798 /* Tell the event loop what to do if SIGINT is received.
799    See event-signal.c.  */
800 void
801 handle_sigint (int sig)
802 {
803   signal (sig, handle_sigint);
804
805   /* We could be running in a loop reading in symfiles or something so
806      it may be quite a while before we get back to the event loop.  So
807      set quit_flag to 1 here.  Then if QUIT is called before we get to
808      the event loop, we will unwind as expected.  */
809
810   set_quit_flag ();
811
812   /* If immediate_quit is set, we go ahead and process the SIGINT right
813      away, even if we usually would defer this to the event loop.  The
814      assumption here is that it is safe to process ^C immediately if
815      immediate_quit is set.  If we didn't, SIGINT would be really
816      processed only the next time through the event loop.  To get to
817      that point, though, the command that we want to interrupt needs to
818      finish first, which is unacceptable.  If immediate quit is not set,
819      we process SIGINT the next time through the loop, which is fine.  */
820   gdb_call_async_signal_handler (sigint_token, immediate_quit);
821 }
822
823 /* Handle GDB exit upon receiving SIGTERM if target_can_async_p ().  */
824
825 static void
826 async_sigterm_handler (gdb_client_data arg)
827 {
828   quit_force (NULL, stdin == instream);
829 }
830
831 /* See defs.h.  */
832 volatile int sync_quit_force_run;
833
834 /* Quit GDB if SIGTERM is received.
835    GDB would quit anyway, but this way it will clean up properly.  */
836 void
837 handle_sigterm (int sig)
838 {
839   signal (sig, handle_sigterm);
840
841   sync_quit_force_run = 1;
842   set_quit_flag ();
843
844   mark_async_signal_handler (async_sigterm_token);
845 }
846
847 /* Do the quit.  All the checks have been done by the caller.  */
848 void
849 async_request_quit (gdb_client_data arg)
850 {
851   /* If the quit_flag has gotten reset back to 0 by the time we get
852      back here, that means that an exception was thrown to unwind the
853      current command before we got back to the event loop.  So there
854      is no reason to call quit again here.  */
855
856   if (check_quit_flag ())
857     quit ();
858 }
859
860 #ifdef SIGQUIT
861 /* Tell the event loop what to do if SIGQUIT is received.
862    See event-signal.c.  */
863 static void
864 handle_sigquit (int sig)
865 {
866   mark_async_signal_handler (sigquit_token);
867   signal (sig, handle_sigquit);
868 }
869 #endif
870
871 #if defined (SIGQUIT) || defined (SIGHUP)
872 /* Called by the event loop in response to a SIGQUIT or an
873    ignored SIGHUP.  */
874 static void
875 async_do_nothing (gdb_client_data arg)
876 {
877   /* Empty function body.  */
878 }
879 #endif
880
881 #ifdef SIGHUP
882 /* Tell the event loop what to do if SIGHUP is received.
883    See event-signal.c.  */
884 static void
885 handle_sighup (int sig)
886 {
887   mark_async_signal_handler (sighup_token);
888   signal (sig, handle_sighup);
889 }
890
891 /* Called by the event loop to process a SIGHUP.  */
892 static void
893 async_disconnect (gdb_client_data arg)
894 {
895
896   TRY
897     {
898       quit_cover ();
899     }
900
901   CATCH (exception, RETURN_MASK_ALL)
902     {
903       fputs_filtered ("Could not kill the program being debugged",
904                       gdb_stderr);
905       exception_print (gdb_stderr, exception);
906     }
907   END_CATCH
908
909   TRY
910     {
911       pop_all_targets ();
912     }
913   CATCH (exception, RETURN_MASK_ALL)
914     {
915     }
916   END_CATCH
917
918   signal (SIGHUP, SIG_DFL);     /*FIXME: ???????????  */
919   raise (SIGHUP);
920 }
921 #endif
922
923 #ifdef STOP_SIGNAL
924 void
925 handle_stop_sig (int sig)
926 {
927   mark_async_signal_handler (sigtstp_token);
928   signal (sig, handle_stop_sig);
929 }
930
931 static void
932 async_stop_sig (gdb_client_data arg)
933 {
934   char *prompt = get_prompt ();
935
936 #if STOP_SIGNAL == SIGTSTP
937   signal (SIGTSTP, SIG_DFL);
938 #if HAVE_SIGPROCMASK
939   {
940     sigset_t zero;
941
942     sigemptyset (&zero);
943     sigprocmask (SIG_SETMASK, &zero, 0);
944   }
945 #elif HAVE_SIGSETMASK
946   sigsetmask (0);
947 #endif
948   raise (SIGTSTP);
949   signal (SIGTSTP, handle_stop_sig);
950 #else
951   signal (STOP_SIGNAL, handle_stop_sig);
952 #endif
953   printf_unfiltered ("%s", prompt);
954   gdb_flush (gdb_stdout);
955
956   /* Forget about any previous command -- null line now will do
957      nothing.  */
958   dont_repeat ();
959 }
960 #endif /* STOP_SIGNAL */
961
962 /* Tell the event loop what to do if SIGFPE is received.
963    See event-signal.c.  */
964 static void
965 handle_sigfpe (int sig)
966 {
967   mark_async_signal_handler (sigfpe_token);
968   signal (sig, handle_sigfpe);
969 }
970
971 /* Event loop will call this functin to process a SIGFPE.  */
972 static void
973 async_float_handler (gdb_client_data arg)
974 {
975   /* This message is based on ANSI C, section 4.7.  Note that integer
976      divide by zero causes this, so "float" is a misnomer.  */
977   error (_("Erroneous arithmetic operation."));
978 }
979 \f
980
981 /* Called by do_setshow_command.  */
982 void
983 set_async_editing_command (char *args, int from_tty,
984                            struct cmd_list_element *c)
985 {
986   change_line_handler ();
987 }
988
989 /* Set things up for readline to be invoked via the alternate
990    interface, i.e. via a callback function (rl_callback_read_char),
991    and hook up instream to the event loop.  */
992 void
993 gdb_setup_readline (void)
994 {
995   /* This function is a noop for the sync case.  The assumption is
996      that the sync setup is ALL done in gdb_init, and we would only
997      mess it up here.  The sync stuff should really go away over
998      time.  */
999   if (!batch_silent)
1000     gdb_stdout = stdio_fileopen (stdout);
1001   gdb_stderr = stderr_fileopen ();
1002   gdb_stdlog = gdb_stderr;  /* for moment */
1003   gdb_stdtarg = gdb_stderr; /* for moment */
1004   gdb_stdtargerr = gdb_stderr; /* for moment */
1005
1006   /* If the input stream is connected to a terminal, turn on
1007      editing.  */
1008   if (ISATTY (instream))
1009     {
1010       /* Tell gdb that we will be using the readline library.  This
1011          could be overwritten by a command in .gdbinit like 'set
1012          editing on' or 'off'.  */
1013       async_command_editing_p = 1;
1014           
1015       /* When a character is detected on instream by select or poll,
1016          readline will be invoked via this callback function.  */
1017       call_readline = rl_callback_read_char_wrapper;
1018     }
1019   else
1020     {
1021       async_command_editing_p = 0;
1022       call_readline = gdb_readline_no_editing_callback;
1023     }
1024   
1025   /* When readline has read an end-of-line character, it passes the
1026      complete line to gdb for processing; command_line_handler is the
1027      function that does this.  */
1028   input_handler = command_line_handler;
1029       
1030   /* Tell readline to use the same input stream that gdb uses.  */
1031   rl_instream = instream;
1032
1033   /* Get a file descriptor for the input stream, so that we can
1034      register it with the event loop.  */
1035   input_fd = fileno (instream);
1036
1037   /* Now we need to create the event sources for the input file
1038      descriptor.  */
1039   /* At this point in time, this is the only event source that we
1040      register with the even loop.  Another source is going to be the
1041      target program (inferior), but that must be registered only when
1042      it actually exists (I.e. after we say 'run' or after we connect
1043      to a remote target.  */
1044   add_file_handler (input_fd, stdin_event_handler, 0);
1045 }
1046
1047 /* Disable command input through the standard CLI channels.  Used in
1048    the suspend proc for interpreters that use the standard gdb readline
1049    interface, like the cli & the mi.  */
1050 void
1051 gdb_disable_readline (void)
1052 {
1053   /* FIXME - It is too heavyweight to delete and remake these every
1054      time you run an interpreter that needs readline.  It is probably
1055      better to have the interpreters cache these, which in turn means
1056      that this needs to be moved into interpreter specific code.  */
1057
1058 #if 0
1059   ui_file_delete (gdb_stdout);
1060   ui_file_delete (gdb_stderr);
1061   gdb_stdlog = NULL;
1062   gdb_stdtarg = NULL;
1063   gdb_stdtargerr = NULL;
1064 #endif
1065
1066   gdb_rl_callback_handler_remove ();
1067   delete_file_handler (input_fd);
1068 }