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