Don't rely on immediate_quit in command_line_input
[external/binutils.git] / gdb / top.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3    Copyright (C) 1986-2016 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "gdbcmd.h"
22 #include "cli/cli-cmds.h"
23 #include "cli/cli-script.h"
24 #include "cli/cli-setshow.h"
25 #include "cli/cli-decode.h"
26 #include "symtab.h"
27 #include "inferior.h"
28 #include "infrun.h"
29 #include <signal.h>
30 #include "target.h"
31 #include "target-dcache.h"
32 #include "breakpoint.h"
33 #include "gdbtypes.h"
34 #include "expression.h"
35 #include "value.h"
36 #include "language.h"
37 #include "terminal.h"           /* For job_control.  */
38 #include "annotate.h"
39 #include "completer.h"
40 #include "top.h"
41 #include "version.h"
42 #include "serial.h"
43 #include "doublest.h"
44 #include "main.h"
45 #include "event-loop.h"
46 #include "gdbthread.h"
47 #include "extension.h"
48 #include "interps.h"
49 #include "observer.h"
50 #include "maint.h"
51 #include "filenames.h"
52 #include "frame.h"
53 #include "buffer.h"
54 #include "gdb_select.h"
55
56 /* readline include files.  */
57 #include "readline/readline.h"
58 #include "readline/history.h"
59
60 /* readline defines this.  */
61 #undef savestring
62
63 #include <sys/types.h>
64
65 #include "event-top.h"
66 #include <sys/stat.h>
67 #include <ctype.h>
68 #include "ui-out.h"
69 #include "cli-out.h"
70 #include "tracepoint.h"
71 #include "inf-loop.h"
72
73 #if defined(TUI)
74 # include "tui/tui.h"
75 #endif
76
77 extern void initialize_all_files (void);
78
79 #define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
80 #define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
81 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
82
83 /* Default command line prompt.  This is overriden in some configs.  */
84
85 #ifndef DEFAULT_PROMPT
86 #define DEFAULT_PROMPT  "(gdb) "
87 #endif
88
89 /* Initialization file name for gdb.  This is host-dependent.  */
90
91 const char gdbinit[] = GDBINIT;
92
93 int inhibit_gdbinit = 0;
94
95 extern char lang_frame_mismatch_warn[];         /* language.c */
96
97 /* Flag for whether we want to confirm potentially dangerous
98    operations.  Default is yes.  */
99
100 int confirm = 1;
101
102 static void
103 show_confirm (struct ui_file *file, int from_tty,
104               struct cmd_list_element *c, const char *value)
105 {
106   fprintf_filtered (file, _("Whether to confirm potentially "
107                             "dangerous operations is %s.\n"),
108                     value);
109 }
110
111 /* stdio stream that command input is being read from.  Set to stdin
112    normally.  Set by source_command to the file we are sourcing.  Set
113    to NULL if we are executing a user-defined command or interacting
114    via a GUI.  */
115
116 FILE *instream;
117
118 /* Flag to indicate whether a user defined command is currently running.  */
119
120 int in_user_command;
121
122 /* Current working directory.  */
123
124 char *current_directory;
125
126 /* The directory name is actually stored here (usually).  */
127 char gdb_dirbuf[1024];
128
129 /* The last command line executed on the console.  Used for command
130    repetitions.  */
131 char *saved_command_line;
132
133 /* Nonzero if the current command is modified by "server ".  This
134    affects things like recording into the command history, commands
135    repeating on RETURN, etc.  This is so a user interface (emacs, GUI,
136    whatever) can issue its own commands and also send along commands
137    from the user, and have the user not notice that the user interface
138    is issuing commands too.  */
139 int server_command;
140
141 /* Timeout limit for response from target.  */
142
143 /* The default value has been changed many times over the years.  It 
144    was originally 5 seconds.  But that was thought to be a long time 
145    to sit and wait, so it was changed to 2 seconds.  That was thought
146    to be plenty unless the connection was going through some terminal 
147    server or multiplexer or other form of hairy serial connection.
148
149    In mid-1996, remote_timeout was moved from remote.c to top.c and 
150    it began being used in other remote-* targets.  It appears that the
151    default was changed to 20 seconds at that time, perhaps because the
152    Renesas E7000 ICE didn't always respond in a timely manner.
153
154    But if 5 seconds is a long time to sit and wait for retransmissions,
155    20 seconds is far worse.  This demonstrates the difficulty of using 
156    a single variable for all protocol timeouts.
157
158    As remote.c is used much more than remote-e7000.c, it was changed 
159    back to 2 seconds in 1999.  */
160
161 int remote_timeout = 2;
162
163 /* Non-zero tells remote* modules to output debugging info.  */
164
165 int remote_debug = 0;
166
167 /* Sbrk location on entry to main.  Used for statistics only.  */
168 #ifdef HAVE_SBRK
169 char *lim_at_start;
170 #endif
171
172 /* Hooks for alternate command interfaces.  */
173
174 /* This hook is called from within gdb's many mini-event loops which
175    could steal control from a real user interface's event loop.  It
176    returns non-zero if the user is requesting a detach, zero
177    otherwise.  */
178
179 int (*deprecated_ui_loop_hook) (int);
180
181
182 /* Called from print_frame_info to list the line we stopped in.  */
183
184 void (*deprecated_print_frame_info_listing_hook) (struct symtab * s, 
185                                                   int line,
186                                                   int stopline, 
187                                                   int noerror);
188 /* Replaces most of query.  */
189
190 int (*deprecated_query_hook) (const char *, va_list);
191
192 /* Replaces most of warning.  */
193
194 void (*deprecated_warning_hook) (const char *, va_list);
195
196 /* These three functions support getting lines of text from the user.
197    They are used in sequence.  First deprecated_readline_begin_hook is
198    called with a text string that might be (for example) a message for
199    the user to type in a sequence of commands to be executed at a
200    breakpoint.  If this function calls back to a GUI, it might take
201    this opportunity to pop up a text interaction window with this
202    message.  Next, deprecated_readline_hook is called with a prompt
203    that is emitted prior to collecting the user input.  It can be
204    called multiple times.  Finally, deprecated_readline_end_hook is
205    called to notify the GUI that we are done with the interaction
206    window and it can close it.  */
207
208 void (*deprecated_readline_begin_hook) (char *, ...);
209 char *(*deprecated_readline_hook) (const char *);
210 void (*deprecated_readline_end_hook) (void);
211
212 /* Called as appropriate to notify the interface that we have attached
213    to or detached from an already running process.  */
214
215 void (*deprecated_attach_hook) (void);
216 void (*deprecated_detach_hook) (void);
217
218 /* Called during long calculations to allow GUI to repair window
219    damage, and to check for stop buttons, etc...  */
220
221 void (*deprecated_interactive_hook) (void);
222
223 /* Called when going to wait for the target.  Usually allows the GUI
224    to run while waiting for target events.  */
225
226 ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
227                                        struct target_waitstatus *status,
228                                        int options);
229
230 /* Used by UI as a wrapper around command execution.  May do various
231    things like enabling/disabling buttons, etc...  */
232
233 void (*deprecated_call_command_hook) (struct cmd_list_element * c, 
234                                       char *cmd, int from_tty);
235
236 /* Called when the current thread changes.  Argument is thread id.  */
237
238 void (*deprecated_context_hook) (int id);
239
240 /* Handler for SIGHUP.  */
241
242 #ifdef SIGHUP
243 /* NOTE 1999-04-29: This function will be static again, once we modify
244    gdb to use the event loop as the default command loop and we merge
245    event-top.c into this file, top.c.  */
246 /* static */ void
247 quit_cover (void)
248 {
249   /* Stop asking user for confirmation --- we're exiting.  This
250      prevents asking the user dumb questions.  */
251   confirm = 0;
252   quit_command ((char *) 0, 0);
253 }
254 #endif /* defined SIGHUP */
255 \f
256 /* Line number we are currently in, in a file which is being sourced.  */
257 /* NOTE 1999-04-29: This variable will be static again, once we modify
258    gdb to use the event loop as the default command loop and we merge
259    event-top.c into this file, top.c.  */
260 /* static */ int source_line_number;
261
262 /* Name of the file we are sourcing.  */
263 /* NOTE 1999-04-29: This variable will be static again, once we modify
264    gdb to use the event loop as the default command loop and we merge
265    event-top.c into this file, top.c.  */
266 /* static */ const char *source_file_name;
267
268 /* Clean up on error during a "source" command (or execution of a
269    user-defined command).  */
270
271 void
272 do_restore_instream_cleanup (void *stream)
273 {
274   /* Restore the previous input stream.  */
275   instream = (FILE *) stream;
276 }
277
278 /* Read commands from STREAM.  */
279 void
280 read_command_file (FILE *stream)
281 {
282   struct cleanup *cleanups;
283
284   cleanups = make_cleanup (do_restore_instream_cleanup, instream);
285   instream = stream;
286   command_loop ();
287   do_cleanups (cleanups);
288 }
289 \f
290 void (*pre_init_ui_hook) (void);
291
292 #ifdef __MSDOS__
293 static void
294 do_chdir_cleanup (void *old_dir)
295 {
296   chdir (old_dir);
297   xfree (old_dir);
298 }
299 #endif
300
301 struct cleanup *
302 prepare_execute_command (void)
303 {
304   struct value *mark;
305   struct cleanup *cleanup;
306
307   mark = value_mark ();
308   cleanup = make_cleanup_value_free_to_mark (mark);
309
310   /* With multiple threads running while the one we're examining is
311      stopped, the dcache can get stale without us being able to detect
312      it.  For the duration of the command, though, use the dcache to
313      help things like backtrace.  */
314   if (non_stop)
315     target_dcache_invalidate ();
316
317   return cleanup;
318 }
319
320 /* Tell the user if the language has changed (except first time) after
321    executing a command.  */
322
323 void
324 check_frame_language_change (void)
325 {
326   static int warned = 0;
327   struct frame_info *frame;
328
329   /* First make sure that a new frame has been selected, in case the
330      command or the hooks changed the program state.  */
331   frame = deprecated_safe_get_selected_frame ();
332   if (current_language != expected_language)
333     {
334       if (language_mode == language_mode_auto && info_verbose)
335         {
336           language_info (1);    /* Print what changed.  */
337         }
338       warned = 0;
339     }
340
341   /* Warn the user if the working language does not match the language
342      of the current frame.  Only warn the user if we are actually
343      running the program, i.e. there is a stack.  */
344   /* FIXME: This should be cacheing the frame and only running when
345      the frame changes.  */
346
347   if (has_stack_frames ())
348     {
349       enum language flang;
350
351       flang = get_frame_language (frame);
352       if (!warned
353           && flang != language_unknown
354           && flang != current_language->la_language)
355         {
356           printf_filtered ("%s\n", lang_frame_mismatch_warn);
357           warned = 1;
358         }
359     }
360 }
361
362 /* See top.h.  */
363
364 void
365 wait_sync_command_done (void)
366 {
367   while (gdb_do_one_event () >= 0)
368     if (!sync_execution)
369       break;
370 }
371
372 /* See top.h.  */
373
374 void
375 maybe_wait_sync_command_done (int was_sync)
376 {
377   /* If the interpreter is in sync mode (we're running a user
378      command's list, running command hooks or similars), and we
379      just ran a synchronous command that started the target, wait
380      for that command to end.  */
381   if (!interpreter_async && !was_sync && sync_execution)
382     wait_sync_command_done ();
383 }
384
385 /* Execute the line P as a command, in the current user context.
386    Pass FROM_TTY as second argument to the defining function.  */
387
388 void
389 execute_command (char *p, int from_tty)
390 {
391   struct cleanup *cleanup_if_error, *cleanup;
392   struct cmd_list_element *c;
393   char *line;
394
395   cleanup_if_error = make_bpstat_clear_actions_cleanup ();
396   cleanup = prepare_execute_command ();
397
398   /* Force cleanup of any alloca areas if using C alloca instead of
399      a builtin alloca.  */
400   alloca (0);
401
402   /* This can happen when command_line_input hits end of file.  */
403   if (p == NULL)
404     {
405       do_cleanups (cleanup);
406       discard_cleanups (cleanup_if_error);
407       return;
408     }
409
410   target_log_command (p);
411
412   while (*p == ' ' || *p == '\t')
413     p++;
414   if (*p)
415     {
416       const char *cmd = p;
417       char *arg;
418       int was_sync = sync_execution;
419
420       line = p;
421
422       /* If trace-commands is set then this will print this command.  */
423       print_command_trace (p);
424
425       c = lookup_cmd (&cmd, cmdlist, "", 0, 1);
426       p = (char *) cmd;
427
428       /* Pass null arg rather than an empty one.  */
429       arg = *p ? p : 0;
430
431       /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
432          while the is_complete_command(cfunc) test is just plain
433          bogus.  They should both be replaced by a test of the form
434          c->strip_trailing_white_space_p.  */
435       /* NOTE: cagney/2002-02-02: The function.cfunc in the below
436          can't be replaced with func.  This is because it is the
437          cfunc, and not the func, that has the value that the
438          is_complete_command hack is testing for.  */
439       /* Clear off trailing whitespace, except for set and complete
440          command.  */
441       if (arg
442           && c->type != set_cmd
443           && !is_complete_command (c))
444         {
445           p = arg + strlen (arg) - 1;
446           while (p >= arg && (*p == ' ' || *p == '\t'))
447             p--;
448           *(p + 1) = '\0';
449         }
450
451       /* If this command has been pre-hooked, run the hook first.  */
452       execute_cmd_pre_hook (c);
453
454       if (c->deprecated_warn_user)
455         deprecated_cmd_warning (line);
456
457       /* c->user_commands would be NULL in the case of a python command.  */
458       if (c->theclass == class_user && c->user_commands)
459         execute_user_command (c, arg);
460       else if (c->type == set_cmd)
461         do_set_command (arg, from_tty, c);
462       else if (c->type == show_cmd)
463         do_show_command (arg, from_tty, c);
464       else if (!cmd_func_p (c))
465         error (_("That is not a command, just a help topic."));
466       else if (deprecated_call_command_hook)
467         deprecated_call_command_hook (c, arg, from_tty);
468       else
469         cmd_func (c, arg, from_tty);
470
471       maybe_wait_sync_command_done (was_sync);
472
473       /* If this command has been post-hooked, run the hook last.  */
474       execute_cmd_post_hook (c);
475
476     }
477
478   check_frame_language_change ();
479
480   do_cleanups (cleanup);
481   discard_cleanups (cleanup_if_error);
482 }
483
484 /* Run execute_command for P and FROM_TTY.  Capture its output into the
485    returned string, do not display it to the screen.  BATCH_FLAG will be
486    temporarily set to true.  */
487
488 char *
489 execute_command_to_string (char *p, int from_tty)
490 {
491   struct ui_file *str_file;
492   struct cleanup *cleanup;
493   char *retval;
494
495   /* GDB_STDOUT should be better already restored during these
496      restoration callbacks.  */
497   cleanup = set_batch_flag_and_make_cleanup_restore_page_info ();
498
499   make_cleanup_restore_integer (&interpreter_async);
500   interpreter_async = 0;
501
502   str_file = mem_fileopen ();
503
504   make_cleanup_ui_file_delete (str_file);
505   make_cleanup_restore_ui_file (&gdb_stdout);
506   make_cleanup_restore_ui_file (&gdb_stderr);
507   make_cleanup_restore_ui_file (&gdb_stdlog);
508   make_cleanup_restore_ui_file (&gdb_stdtarg);
509   make_cleanup_restore_ui_file (&gdb_stdtargerr);
510
511   if (ui_out_redirect (current_uiout, str_file) < 0)
512     warning (_("Current output protocol does not support redirection"));
513   else
514     make_cleanup_ui_out_redirect_pop (current_uiout);
515
516   gdb_stdout = str_file;
517   gdb_stderr = str_file;
518   gdb_stdlog = str_file;
519   gdb_stdtarg = str_file;
520   gdb_stdtargerr = str_file;
521
522   execute_command (p, from_tty);
523
524   retval = ui_file_xstrdup (str_file, NULL);
525
526   do_cleanups (cleanup);
527
528   return retval;
529 }
530
531 /* Read commands from `instream' and execute them
532    until end of file or error reading instream.  */
533
534 void
535 command_loop (void)
536 {
537   while (instream && !feof (instream))
538     {
539       char *command;
540
541       /* Get a command-line.  This calls the readline package.  */
542       command = command_line_input (instream == stdin ?
543                                     get_prompt () : (char *) NULL,
544                                     instream == stdin, "prompt");
545       if (command == NULL)
546         return;
547       command_handler (command);
548     }
549 }
550 \f
551 /* When nonzero, cause dont_repeat to do nothing.  This should only be
552    set via prevent_dont_repeat.  */
553
554 static int suppress_dont_repeat = 0;
555
556 /* Commands call this if they do not want to be repeated by null lines.  */
557
558 void
559 dont_repeat (void)
560 {
561   if (suppress_dont_repeat || server_command)
562     return;
563
564   /* If we aren't reading from standard input, we are saving the last
565      thing read from stdin in line and don't want to delete it.  Null
566      lines won't repeat here in any case.  */
567   if (instream == stdin)
568     *saved_command_line = 0;
569 }
570
571 /* Prevent dont_repeat from working, and return a cleanup that
572    restores the previous state.  */
573
574 struct cleanup *
575 prevent_dont_repeat (void)
576 {
577   struct cleanup *result = make_cleanup_restore_integer (&suppress_dont_repeat);
578
579   suppress_dont_repeat = 1;
580   return result;
581 }
582
583 \f
584 /* Read a line from the stream "instream" without command line editing.
585
586    It prints PROMPT once at the start.
587    Action is compatible with "readline", e.g. space for the result is
588    malloc'd and should be freed by the caller.
589
590    A NULL return means end of file.  */
591
592 static char *
593 gdb_readline_no_editing (const char *prompt)
594 {
595   struct buffer line_buffer;
596   /* Read from stdin if we are executing a user defined command.  This
597      is the right thing for prompt_for_continue, at least.  */
598   FILE *stream = instream != NULL ? instream : stdin;
599   int fd = fileno (stream);
600
601   buffer_init (&line_buffer);
602
603   if (prompt != NULL)
604     {
605       /* Don't use a _filtered function here.  It causes the assumed
606          character position to be off, since the newline we read from
607          the user is not accounted for.  */
608       fputs_unfiltered (prompt, gdb_stdout);
609       gdb_flush (gdb_stdout);
610     }
611
612   while (1)
613     {
614       int c;
615       int numfds;
616       fd_set readfds;
617
618       QUIT;
619
620       /* Wait until at least one byte of data is available.  Control-C
621          can interrupt gdb_select, but not fgetc.  */
622       FD_ZERO (&readfds);
623       FD_SET (fd, &readfds);
624       if (gdb_select (fd + 1, &readfds, NULL, NULL, NULL) == -1)
625         {
626           if (errno == EINTR)
627             {
628               /* If this was ctrl-c, the QUIT above handles it.  */
629               continue;
630             }
631           perror_with_name (("select"));
632         }
633
634       c = fgetc (stream);
635
636       if (c == EOF)
637         {
638           if (line_buffer.used_size > 0)
639             /* The last line does not end with a newline.  Return it, and
640                if we are called again fgetc will still return EOF and
641                we'll return NULL then.  */
642             break;
643           xfree (buffer_finish (&line_buffer));
644           return NULL;
645         }
646
647       if (c == '\n')
648         {
649           if (line_buffer.used_size > 0
650               && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
651             line_buffer.used_size--;
652           break;
653         }
654
655       buffer_grow_char (&line_buffer, c);
656     }
657
658   buffer_grow_char (&line_buffer, '\0');
659   return buffer_finish (&line_buffer);
660 }
661
662 /* Variables which control command line editing and history
663    substitution.  These variables are given default values at the end
664    of this file.  */
665 static int command_editing_p;
666
667 /* NOTE 1999-04-29: This variable will be static again, once we modify
668    gdb to use the event loop as the default command loop and we merge
669    event-top.c into this file, top.c.  */
670
671 /* static */ int history_expansion_p;
672
673 static int write_history_p;
674 static void
675 show_write_history_p (struct ui_file *file, int from_tty,
676                       struct cmd_list_element *c, const char *value)
677 {
678   fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
679                     value);
680 }
681
682 /* The variable associated with the "set/show history size"
683    command.  The value -1 means unlimited, and -2 means undefined.  */
684 static int history_size_setshow_var = -2;
685
686 static void
687 show_history_size (struct ui_file *file, int from_tty,
688                    struct cmd_list_element *c, const char *value)
689 {
690   fprintf_filtered (file, _("The size of the command history is %s.\n"),
691                     value);
692 }
693
694 /* Variable associated with the "history remove-duplicates" option.
695    The value -1 means unlimited.  */
696 static int history_remove_duplicates = 0;
697
698 static void
699 show_history_remove_duplicates (struct ui_file *file, int from_tty,
700                                 struct cmd_list_element *c, const char *value)
701 {
702   fprintf_filtered (file,
703                     _("The number of history entries to look back at for "
704                       "duplicates is %s.\n"),
705                     value);
706 }
707
708 static char *history_filename;
709 static void
710 show_history_filename (struct ui_file *file, int from_tty,
711                        struct cmd_list_element *c, const char *value)
712 {
713   fprintf_filtered (file, _("The filename in which to record "
714                             "the command history is \"%s\".\n"),
715                     value);
716 }
717
718 /* This is like readline(), but it has some gdb-specific behavior.
719    gdb may want readline in both the synchronous and async modes during
720    a single gdb invocation.  At the ordinary top-level prompt we might
721    be using the async readline.  That means we can't use
722    rl_pre_input_hook, since it doesn't work properly in async mode.
723    However, for a secondary prompt (" >", such as occurs during a
724    `define'), gdb wants a synchronous response.
725
726    We used to call readline() directly, running it in synchronous
727    mode.  But mixing modes this way is not supported, and as of
728    readline 5.x it no longer works; the arrow keys come unbound during
729    the synchronous call.  So we make a nested call into the event
730    loop.  That's what gdb_readline_wrapper is for.  */
731
732 /* A flag set as soon as gdb_readline_wrapper_line is called; we can't
733    rely on gdb_readline_wrapper_result, which might still be NULL if
734    the user types Control-D for EOF.  */
735 static int gdb_readline_wrapper_done;
736
737 /* The result of the current call to gdb_readline_wrapper, once a newline
738    is seen.  */
739 static char *gdb_readline_wrapper_result;
740
741 /* Any intercepted hook.  Operate-and-get-next sets this, expecting it
742    to be called after the newline is processed (which will redisplay
743    the prompt).  But in gdb_readline_wrapper we will not get a new
744    prompt until the next call, or until we return to the event loop.
745    So we disable this hook around the newline and restore it before we
746    return.  */
747 static void (*saved_after_char_processing_hook) (void);
748
749
750 /* The number of nested readline secondary prompts that are currently
751    active.  */
752
753 static int gdb_secondary_prompt_depth = 0;
754
755 /* See top.h.  */
756
757 int
758 gdb_in_secondary_prompt_p (void)
759 {
760   return gdb_secondary_prompt_depth > 0;
761 }
762
763
764 /* This function is called when readline has seen a complete line of
765    text.  */
766
767 static void
768 gdb_readline_wrapper_line (char *line)
769 {
770   gdb_assert (!gdb_readline_wrapper_done);
771   gdb_readline_wrapper_result = line;
772   gdb_readline_wrapper_done = 1;
773
774   /* Prevent operate-and-get-next from acting too early.  */
775   saved_after_char_processing_hook = after_char_processing_hook;
776   after_char_processing_hook = NULL;
777
778   /* Prevent parts of the prompt from being redisplayed if annotations
779      are enabled, and readline's state getting out of sync.  We'll
780      reinstall the callback handler, which puts the terminal in raw
781      mode (or in readline lingo, in prepped state), when we're next
782      ready to process user input, either in display_gdb_prompt, or if
783      we're handling an asynchronous target event and running in the
784      background, just before returning to the event loop to process
785      further input (or more target events).  */
786   if (async_command_editing_p)
787     gdb_rl_callback_handler_remove ();
788 }
789
790 struct gdb_readline_wrapper_cleanup
791   {
792     void (*handler_orig) (char *);
793     int already_prompted_orig;
794
795     /* Whether the target was async.  */
796     int target_is_async_orig;
797   };
798
799 static void
800 gdb_readline_wrapper_cleanup (void *arg)
801 {
802   struct gdb_readline_wrapper_cleanup *cleanup
803     = (struct gdb_readline_wrapper_cleanup *) arg;
804
805   rl_already_prompted = cleanup->already_prompted_orig;
806
807   gdb_assert (input_handler == gdb_readline_wrapper_line);
808   input_handler = cleanup->handler_orig;
809
810   /* Don't restore our input handler in readline yet.  That would make
811      readline prep the terminal (putting it in raw mode), while the
812      line we just read may trigger execution of a command that expects
813      the terminal in the default cooked/canonical mode, such as e.g.,
814      running Python's interactive online help utility.  See
815      gdb_readline_wrapper_line for when we'll reinstall it.  */
816
817   gdb_readline_wrapper_result = NULL;
818   gdb_readline_wrapper_done = 0;
819   gdb_secondary_prompt_depth--;
820   gdb_assert (gdb_secondary_prompt_depth >= 0);
821
822   after_char_processing_hook = saved_after_char_processing_hook;
823   saved_after_char_processing_hook = NULL;
824
825   if (cleanup->target_is_async_orig)
826     target_async (1);
827
828   xfree (cleanup);
829 }
830
831 char *
832 gdb_readline_wrapper (const char *prompt)
833 {
834   struct cleanup *back_to;
835   struct gdb_readline_wrapper_cleanup *cleanup;
836   char *retval;
837
838   cleanup = XNEW (struct gdb_readline_wrapper_cleanup);
839   cleanup->handler_orig = input_handler;
840   input_handler = gdb_readline_wrapper_line;
841
842   cleanup->already_prompted_orig = rl_already_prompted;
843
844   cleanup->target_is_async_orig = target_is_async_p ();
845
846   gdb_secondary_prompt_depth++;
847   back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
848
849   if (cleanup->target_is_async_orig)
850     target_async (0);
851
852   /* Display our prompt and prevent double prompt display.  */
853   display_gdb_prompt (prompt);
854   rl_already_prompted = 1;
855
856   if (after_char_processing_hook)
857     (*after_char_processing_hook) ();
858   gdb_assert (after_char_processing_hook == NULL);
859
860   while (gdb_do_one_event () >= 0)
861     if (gdb_readline_wrapper_done)
862       break;
863
864   retval = gdb_readline_wrapper_result;
865   do_cleanups (back_to);
866   return retval;
867 }
868
869 \f
870 /* The current saved history number from operate-and-get-next.
871    This is -1 if not valid.  */
872 static int operate_saved_history = -1;
873
874 /* This is put on the appropriate hook and helps operate-and-get-next
875    do its work.  */
876 static void
877 gdb_rl_operate_and_get_next_completion (void)
878 {
879   int delta = where_history () - operate_saved_history;
880
881   /* The `key' argument to rl_get_previous_history is ignored.  */
882   rl_get_previous_history (delta, 0);
883   operate_saved_history = -1;
884
885   /* readline doesn't automatically update the display for us.  */
886   rl_redisplay ();
887
888   after_char_processing_hook = NULL;
889   rl_pre_input_hook = NULL;
890 }
891
892 /* This is a gdb-local readline command handler.  It accepts the
893    current command line (like RET does) and, if this command was taken
894    from the history, arranges for the next command in the history to
895    appear on the command line when the prompt returns.
896    We ignore the arguments.  */
897 static int
898 gdb_rl_operate_and_get_next (int count, int key)
899 {
900   int where;
901
902   /* Use the async hook.  */
903   after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
904
905   /* Find the current line, and find the next line to use.  */
906   where = where_history();
907
908   if ((history_is_stifled () && (history_length >= history_max_entries))
909       || (where >= history_length - 1))
910     operate_saved_history = where;
911   else
912     operate_saved_history = where + 1;
913
914   return rl_newline (1, key);
915 }
916
917 /* Number of user commands executed during this session.  */
918
919 static int command_count = 0;
920
921 /* Add the user command COMMAND to the input history list.  */
922
923 void
924 gdb_add_history (const char *command)
925 {
926   command_count++;
927
928   if (history_remove_duplicates != 0)
929     {
930       int lookbehind;
931       int lookbehind_threshold;
932
933       /* The lookbehind threshold for finding a duplicate history entry is
934          bounded by command_count because we can't meaningfully delete
935          history entries that are already stored in the history file since
936          the history file is appended to.  */
937       if (history_remove_duplicates == -1
938           || history_remove_duplicates > command_count)
939         lookbehind_threshold = command_count;
940       else
941         lookbehind_threshold = history_remove_duplicates;
942
943       using_history ();
944       for (lookbehind = 0; lookbehind < lookbehind_threshold; lookbehind++)
945         {
946           HIST_ENTRY *temp = previous_history ();
947
948           if (temp == NULL)
949             break;
950
951           if (strcmp (temp->line, command) == 0)
952             {
953               HIST_ENTRY *prev = remove_history (where_history ());
954               command_count--;
955               free_history_entry (prev);
956               break;
957             }
958         }
959       using_history ();
960     }
961
962   add_history (command);
963 }
964
965 /* Safely append new history entries to the history file in a corruption-free
966    way using an intermediate local history file.  */
967
968 static void
969 gdb_safe_append_history (void)
970 {
971   int ret, saved_errno;
972   char *local_history_filename;
973   struct cleanup *old_chain;
974
975   local_history_filename
976     = xstrprintf ("%s-gdb%d~", history_filename, getpid ());
977   old_chain = make_cleanup (xfree, local_history_filename);
978
979   ret = rename (history_filename, local_history_filename);
980   saved_errno = errno;
981   if (ret < 0 && saved_errno != ENOENT)
982     {
983       warning (_("Could not rename %s to %s: %s"),
984                history_filename, local_history_filename,
985                safe_strerror (saved_errno));
986     }
987   else
988     {
989       if (ret < 0)
990         {
991           /* If the rename failed with ENOENT then either the global history
992              file never existed in the first place or another GDB process is
993              currently appending to it (and has thus temporarily renamed it).
994              Since we can't distinguish between these two cases, we have to
995              conservatively assume the first case and therefore must write out
996              (not append) our known history to our local history file and try
997              to move it back anyway.  Otherwise a global history file would
998              never get created!  */
999            gdb_assert (saved_errno == ENOENT);
1000            write_history (local_history_filename);
1001         }
1002       else
1003         {
1004           append_history (command_count, local_history_filename);
1005           if (history_is_stifled ())
1006             history_truncate_file (local_history_filename, history_max_entries);
1007         }
1008
1009       ret = rename (local_history_filename, history_filename);
1010       saved_errno = errno;
1011       if (ret < 0 && saved_errno != EEXIST)
1012         warning (_("Could not rename %s to %s: %s"),
1013                  local_history_filename, history_filename,
1014                  safe_strerror (saved_errno));
1015     }
1016
1017   do_cleanups (old_chain);
1018 }
1019
1020 /* Read one line from the command input stream `instream' into a local
1021    static buffer.  The buffer is made bigger as necessary.  Returns
1022    the address of the start of the line.
1023
1024    NULL is returned for end of file.
1025
1026    *If* the instream == stdin & stdin is a terminal, the line read is
1027    copied into the global 'saved_command_line' so that it can be
1028    repeated.
1029
1030    This routine either uses fancy command line editing or simple input
1031    as the user has requested.  */
1032
1033 char *
1034 command_line_input (const char *prompt_arg, int repeat, char *annotation_suffix)
1035 {
1036   static struct buffer cmd_line_buffer;
1037   static int cmd_line_buffer_initialized;
1038   const char *prompt = prompt_arg;
1039   char *cmd;
1040
1041   /* The annotation suffix must be non-NULL.  */
1042   if (annotation_suffix == NULL)
1043     annotation_suffix = "";
1044
1045   if (annotation_level > 1 && instream == stdin)
1046     {
1047       char *local_prompt;
1048
1049       local_prompt
1050         = (char *) alloca ((prompt == NULL ? 0 : strlen (prompt))
1051                            + strlen (annotation_suffix) + 40);
1052       if (prompt == NULL)
1053         local_prompt[0] = '\0';
1054       else
1055         strcpy (local_prompt, prompt);
1056       strcat (local_prompt, "\n\032\032");
1057       strcat (local_prompt, annotation_suffix);
1058       strcat (local_prompt, "\n");
1059
1060       prompt = local_prompt;
1061     }
1062
1063   if (!cmd_line_buffer_initialized)
1064     {
1065       buffer_init (&cmd_line_buffer);
1066       cmd_line_buffer_initialized = 1;
1067     }
1068
1069   /* Starting a new command line.  */
1070   cmd_line_buffer.used_size = 0;
1071
1072 #ifdef STOP_SIGNAL
1073   if (job_control)
1074     signal (STOP_SIGNAL, handle_stop_sig);
1075 #endif
1076
1077   while (1)
1078     {
1079       char *rl;
1080
1081       /* Make sure that all output has been output.  Some machines may
1082          let you get away with leaving out some of the gdb_flush, but
1083          not all.  */
1084       wrap_here ("");
1085       gdb_flush (gdb_stdout);
1086       gdb_flush (gdb_stderr);
1087
1088       if (source_file_name != NULL)
1089         ++source_line_number;
1090
1091       if (annotation_level > 1 && instream == stdin)
1092         {
1093           puts_unfiltered ("\n\032\032pre-");
1094           puts_unfiltered (annotation_suffix);
1095           puts_unfiltered ("\n");
1096         }
1097
1098       /* Don't use fancy stuff if not talking to stdin.  */
1099       if (deprecated_readline_hook && input_from_terminal_p ())
1100         {
1101           rl = (*deprecated_readline_hook) (prompt);
1102         }
1103       else if (command_editing_p && input_from_terminal_p ())
1104         {
1105           rl = gdb_readline_wrapper (prompt);
1106         }
1107       else
1108         {
1109           rl = gdb_readline_no_editing (prompt);
1110         }
1111
1112       cmd = handle_line_of_input (&cmd_line_buffer, rl,
1113                                   repeat, annotation_suffix);
1114       if (cmd == (char *) EOF)
1115         {
1116           cmd = NULL;
1117           break;
1118         }
1119       if (cmd != NULL)
1120         break;
1121
1122       prompt = NULL;
1123     }
1124
1125 #ifdef STOP_SIGNAL
1126   if (job_control)
1127     signal (STOP_SIGNAL, SIG_DFL);
1128 #endif
1129
1130   return cmd;
1131 }
1132 \f
1133 /* Print the GDB banner.  */
1134 void
1135 print_gdb_version (struct ui_file *stream)
1136 {
1137   /* From GNU coding standards, first line is meant to be easy for a
1138      program to parse, and is just canonical program name and version
1139      number, which starts after last space.  */
1140
1141   fprintf_filtered (stream, "GNU gdb %s%s\n", PKGVERSION, version);
1142
1143   /* Second line is a copyright notice.  */
1144
1145   fprintf_filtered (stream,
1146                     "Copyright (C) 2016 Free Software Foundation, Inc.\n");
1147
1148   /* Following the copyright is a brief statement that the program is
1149      free software, that users are free to copy and change it on
1150      certain conditions, that it is covered by the GNU GPL, and that
1151      there is no warranty.  */
1152
1153   fprintf_filtered (stream, "\
1154 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\
1155 \nThis is free software: you are free to change and redistribute it.\n\
1156 There is NO WARRANTY, to the extent permitted by law.  Type \"show copying\"\n\
1157 and \"show warranty\" for details.\n");
1158
1159   /* After the required info we print the configuration information.  */
1160
1161   fprintf_filtered (stream, "This GDB was configured as \"");
1162   if (strcmp (host_name, target_name) != 0)
1163     {
1164       fprintf_filtered (stream, "--host=%s --target=%s",
1165                         host_name, target_name);
1166     }
1167   else
1168     {
1169       fprintf_filtered (stream, "%s", host_name);
1170     }
1171   fprintf_filtered (stream, "\".\n\
1172 Type \"show configuration\" for configuration details.");
1173
1174   if (REPORT_BUGS_TO[0])
1175     {
1176       fprintf_filtered (stream,
1177                         _("\nFor bug reporting instructions, please see:\n"));
1178       fprintf_filtered (stream, "%s.\n", REPORT_BUGS_TO);
1179     }
1180   fprintf_filtered (stream,
1181                     _("Find the GDB manual and other documentation \
1182 resources online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"));
1183   fprintf_filtered (stream, _("For help, type \"help\".\n"));
1184   fprintf_filtered (stream, _("Type \"apropos word\" to search for \
1185 commands related to \"word\"."));
1186 }
1187
1188 /* Print the details of GDB build-time configuration.  */
1189 void
1190 print_gdb_configuration (struct ui_file *stream)
1191 {
1192   fprintf_filtered (stream, _("\
1193 This GDB was configured as follows:\n\
1194    configure --host=%s --target=%s\n\
1195 "), host_name, target_name);
1196   fprintf_filtered (stream, _("\
1197              --with-auto-load-dir=%s\n\
1198              --with-auto-load-safe-path=%s\n\
1199 "), AUTO_LOAD_DIR, AUTO_LOAD_SAFE_PATH);
1200 #if HAVE_LIBEXPAT
1201   fprintf_filtered (stream, _("\
1202              --with-expat\n\
1203 "));
1204 #else
1205   fprintf_filtered (stream, _("\
1206              --without-expat\n\
1207 "));
1208 #endif
1209   if (GDB_DATADIR[0])
1210     fprintf_filtered (stream, _("\
1211              --with-gdb-datadir=%s%s\n\
1212 "), GDB_DATADIR, GDB_DATADIR_RELOCATABLE ? " (relocatable)" : "");
1213 #ifdef ICONV_BIN
1214   fprintf_filtered (stream, _("\
1215              --with-iconv-bin=%s%s\n\
1216 "), ICONV_BIN, ICONV_BIN_RELOCATABLE ? " (relocatable)" : "");
1217 #endif
1218   if (JIT_READER_DIR[0])
1219     fprintf_filtered (stream, _("\
1220              --with-jit-reader-dir=%s%s\n\
1221 "), JIT_READER_DIR, JIT_READER_DIR_RELOCATABLE ? " (relocatable)" : "");
1222 #if HAVE_LIBUNWIND_IA64_H
1223   fprintf_filtered (stream, _("\
1224              --with-libunwind-ia64\n\
1225 "));
1226 #else
1227   fprintf_filtered (stream, _("\
1228              --without-libunwind-ia64\n\
1229 "));
1230 #endif
1231 #if HAVE_LIBLZMA
1232   fprintf_filtered (stream, _("\
1233              --with-lzma\n\
1234 "));
1235 #else
1236   fprintf_filtered (stream, _("\
1237              --without-lzma\n\
1238 "));
1239 #endif
1240 #ifdef WITH_PYTHON_PATH
1241   fprintf_filtered (stream, _("\
1242              --with-python=%s%s\n\
1243 "), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
1244 #endif
1245 #if HAVE_GUILE
1246   fprintf_filtered (stream, _("\
1247              --with-guile\n\
1248 "));
1249 #else
1250   fprintf_filtered (stream, _("\
1251              --without-guile\n\
1252 "));
1253 #endif
1254 #ifdef RELOC_SRCDIR
1255   fprintf_filtered (stream, _("\
1256              --with-relocated-sources=%s\n\
1257 "), RELOC_SRCDIR);
1258 #endif
1259   if (DEBUGDIR[0])
1260     fprintf_filtered (stream, _("\
1261              --with-separate-debug-dir=%s%s\n\
1262 "), DEBUGDIR, DEBUGDIR_RELOCATABLE ? " (relocatable)" : "");
1263   if (TARGET_SYSTEM_ROOT[0])
1264     fprintf_filtered (stream, _("\
1265              --with-sysroot=%s%s\n\
1266 "), TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_RELOCATABLE ? " (relocatable)" : "");
1267   if (SYSTEM_GDBINIT[0])
1268     fprintf_filtered (stream, _("\
1269              --with-system-gdbinit=%s%s\n\
1270 "), SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE ? " (relocatable)" : "");
1271 #if HAVE_LIBBABELTRACE
1272     fprintf_filtered (stream, _("\
1273              --with-babeltrace\n\
1274 "));
1275 #else
1276     fprintf_filtered (stream, _("\
1277              --without-babeltrace\n\
1278 "));
1279 #endif
1280     /* We assume "relocatable" will be printed at least once, thus we always
1281        print this text.  It's a reasonably safe assumption for now.  */
1282     fprintf_filtered (stream, _("\n\
1283 (\"Relocatable\" means the directory can be moved with the GDB installation\n\
1284 tree, and GDB will still find it.)\n\
1285 "));
1286 }
1287 \f
1288
1289 /* The current top level prompt, settable with "set prompt", and/or
1290    with the python `gdb.prompt_hook' hook.  */
1291 static char *top_prompt;
1292
1293 /* Access method for the GDB prompt string.  */
1294
1295 char *
1296 get_prompt (void)
1297 {
1298   return top_prompt;
1299 }
1300
1301 /* Set method for the GDB prompt string.  */
1302
1303 void
1304 set_prompt (const char *s)
1305 {
1306   char *p = xstrdup (s);
1307
1308   xfree (top_prompt);
1309   top_prompt = p;
1310 }
1311 \f
1312
1313 struct qt_args
1314 {
1315   char *args;
1316   int from_tty;
1317 };
1318
1319 /* Callback for iterate_over_inferiors.  Kills or detaches the given
1320    inferior, depending on how we originally gained control of it.  */
1321
1322 static int
1323 kill_or_detach (struct inferior *inf, void *args)
1324 {
1325   struct qt_args *qt = (struct qt_args *) args;
1326   struct thread_info *thread;
1327
1328   if (inf->pid == 0)
1329     return 0;
1330
1331   thread = any_thread_of_process (inf->pid);
1332   if (thread != NULL)
1333     {
1334       switch_to_thread (thread->ptid);
1335
1336       /* Leave core files alone.  */
1337       if (target_has_execution)
1338         {
1339           if (inf->attach_flag)
1340             target_detach (qt->args, qt->from_tty);
1341           else
1342             target_kill ();
1343         }
1344     }
1345
1346   return 0;
1347 }
1348
1349 /* Callback for iterate_over_inferiors.  Prints info about what GDB
1350    will do to each inferior on a "quit".  ARG points to a struct
1351    ui_out where output is to be collected.  */
1352
1353 static int
1354 print_inferior_quit_action (struct inferior *inf, void *arg)
1355 {
1356   struct ui_file *stb = (struct ui_file *) arg;
1357
1358   if (inf->pid == 0)
1359     return 0;
1360
1361   if (inf->attach_flag)
1362     fprintf_filtered (stb,
1363                       _("\tInferior %d [%s] will be detached.\n"), inf->num,
1364                       target_pid_to_str (pid_to_ptid (inf->pid)));
1365   else
1366     fprintf_filtered (stb,
1367                       _("\tInferior %d [%s] will be killed.\n"), inf->num,
1368                       target_pid_to_str (pid_to_ptid (inf->pid)));
1369
1370   return 0;
1371 }
1372
1373 /* If necessary, make the user confirm that we should quit.  Return
1374    non-zero if we should quit, zero if we shouldn't.  */
1375
1376 int
1377 quit_confirm (void)
1378 {
1379   struct ui_file *stb;
1380   struct cleanup *old_chain;
1381   char *str;
1382   int qr;
1383
1384   /* Don't even ask if we're only debugging a core file inferior.  */
1385   if (!have_live_inferiors ())
1386     return 1;
1387
1388   /* Build the query string as a single string.  */
1389   stb = mem_fileopen ();
1390   old_chain = make_cleanup_ui_file_delete (stb);
1391
1392   fprintf_filtered (stb, _("A debugging session is active.\n\n"));
1393   iterate_over_inferiors (print_inferior_quit_action, stb);
1394   fprintf_filtered (stb, _("\nQuit anyway? "));
1395
1396   str = ui_file_xstrdup (stb, NULL);
1397   make_cleanup (xfree, str);
1398
1399   qr = query ("%s", str);
1400   do_cleanups (old_chain);
1401   return qr;
1402 }
1403
1404 /* Prepare to exit GDB cleanly by undoing any changes made to the
1405    terminal so that we leave the terminal in the state we acquired it.  */
1406
1407 static void
1408 undo_terminal_modifications_before_exit (void)
1409 {
1410   target_terminal_ours ();
1411 #if defined(TUI)
1412   tui_disable ();
1413 #endif
1414   if (async_command_editing_p)
1415     gdb_disable_readline ();
1416 }
1417
1418
1419 /* Quit without asking for confirmation.  */
1420
1421 void
1422 quit_force (char *args, int from_tty)
1423 {
1424   int exit_code = 0;
1425   struct qt_args qt;
1426
1427   undo_terminal_modifications_before_exit ();
1428
1429   /* An optional expression may be used to cause gdb to terminate with the 
1430      value of that expression.  */
1431   if (args)
1432     {
1433       struct value *val = parse_and_eval (args);
1434
1435       exit_code = (int) value_as_long (val);
1436     }
1437   else if (return_child_result)
1438     exit_code = return_child_result_value;
1439
1440   qt.args = args;
1441   qt.from_tty = from_tty;
1442
1443   /* We want to handle any quit errors and exit regardless.  */
1444
1445   /* Get out of tfind mode, and kill or detach all inferiors.  */
1446   TRY
1447     {
1448       disconnect_tracing ();
1449       iterate_over_inferiors (kill_or_detach, &qt);
1450     }
1451   CATCH (ex, RETURN_MASK_ALL)
1452     {
1453       exception_print (gdb_stderr, ex);
1454     }
1455   END_CATCH
1456
1457   /* Give all pushed targets a chance to do minimal cleanup, and pop
1458      them all out.  */
1459   TRY
1460     {
1461       pop_all_targets ();
1462     }
1463   CATCH (ex, RETURN_MASK_ALL)
1464     {
1465       exception_print (gdb_stderr, ex);
1466     }
1467   END_CATCH
1468
1469   /* Save the history information if it is appropriate to do so.  */
1470   TRY
1471     {
1472       if (write_history_p && history_filename
1473           && input_from_terminal_p ())
1474         gdb_safe_append_history ();
1475     }
1476   CATCH (ex, RETURN_MASK_ALL)
1477     {
1478       exception_print (gdb_stderr, ex);
1479     }
1480   END_CATCH
1481
1482   /* Do any final cleanups before exiting.  */
1483   TRY
1484     {
1485       do_final_cleanups (all_cleanups ());
1486     }
1487   CATCH (ex, RETURN_MASK_ALL)
1488     {
1489       exception_print (gdb_stderr, ex);
1490     }
1491   END_CATCH
1492
1493   exit (exit_code);
1494 }
1495
1496 /* Returns whether GDB is running on a terminal and input is
1497    currently coming from that terminal.  */
1498
1499 int
1500 input_from_terminal_p (void)
1501 {
1502   if (batch_flag)
1503     return 0;
1504
1505   if (gdb_has_a_terminal () && instream == stdin)
1506     return 1;
1507
1508   /* If INSTREAM is unset, and we are not in a user command, we
1509      must be in Insight.  That's like having a terminal, for our
1510      purposes.  */
1511   if (instream == NULL && !in_user_command)
1512     return 1;
1513
1514   return 0;
1515 }
1516 \f
1517 static void
1518 dont_repeat_command (char *ignored, int from_tty)
1519 {
1520   /* Can't call dont_repeat here because we're not necessarily reading
1521      from stdin.  */
1522   *saved_command_line = 0;
1523 }
1524 \f
1525 /* Functions to manipulate command line editing control variables.  */
1526
1527 /* Number of commands to print in each call to show_commands.  */
1528 #define Hist_print 10
1529 void
1530 show_commands (char *args, int from_tty)
1531 {
1532   /* Index for history commands.  Relative to history_base.  */
1533   int offset;
1534
1535   /* Number of the history entry which we are planning to display next.
1536      Relative to history_base.  */
1537   static int num = 0;
1538
1539   /* Print out some of the commands from the command history.  */
1540
1541   if (args)
1542     {
1543       if (args[0] == '+' && args[1] == '\0')
1544         /* "info editing +" should print from the stored position.  */
1545         ;
1546       else
1547         /* "info editing <exp>" should print around command number <exp>.  */
1548         num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1549     }
1550   /* "show commands" means print the last Hist_print commands.  */
1551   else
1552     {
1553       num = history_length - Hist_print;
1554     }
1555
1556   if (num < 0)
1557     num = 0;
1558
1559   /* If there are at least Hist_print commands, we want to display the last
1560      Hist_print rather than, say, the last 6.  */
1561   if (history_length - num < Hist_print)
1562     {
1563       num = history_length - Hist_print;
1564       if (num < 0)
1565         num = 0;
1566     }
1567
1568   for (offset = num;
1569        offset < num + Hist_print && offset < history_length;
1570        offset++)
1571     {
1572       printf_filtered ("%5d  %s\n", history_base + offset,
1573                        (history_get (history_base + offset))->line);
1574     }
1575
1576   /* The next command we want to display is the next one that we haven't
1577      displayed yet.  */
1578   num += Hist_print;
1579
1580   /* If the user repeats this command with return, it should do what
1581      "show commands +" does.  This is unnecessary if arg is null,
1582      because "show commands +" is not useful after "show commands".  */
1583   if (from_tty && args)
1584     {
1585       args[0] = '+';
1586       args[1] = '\0';
1587     }
1588 }
1589
1590 /* Update the size of our command history file to HISTORY_SIZE.
1591
1592    A HISTORY_SIZE of -1 stands for unlimited.  */
1593
1594 static void
1595 set_readline_history_size (int history_size)
1596 {
1597   gdb_assert (history_size >= -1);
1598
1599   if (history_size == -1)
1600     unstifle_history ();
1601   else
1602     stifle_history (history_size);
1603 }
1604
1605 /* Called by do_setshow_command.  */
1606 static void
1607 set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
1608 {
1609   set_readline_history_size (history_size_setshow_var);
1610 }
1611
1612 void
1613 set_history (char *args, int from_tty)
1614 {
1615   printf_unfiltered (_("\"set history\" must be followed "
1616                        "by the name of a history subcommand.\n"));
1617   help_list (sethistlist, "set history ", all_commands, gdb_stdout);
1618 }
1619
1620 void
1621 show_history (char *args, int from_tty)
1622 {
1623   cmd_show_list (showhistlist, from_tty, "");
1624 }
1625
1626 int info_verbose = 0;           /* Default verbose msgs off.  */
1627
1628 /* Called by do_setshow_command.  An elaborate joke.  */
1629 void
1630 set_verbose (char *args, int from_tty, struct cmd_list_element *c)
1631 {
1632   const char *cmdname = "verbose";
1633   struct cmd_list_element *showcmd;
1634
1635   showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1636   gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
1637
1638   if (info_verbose)
1639     {
1640       c->doc = "Set verbose printing of informational messages.";
1641       showcmd->doc = "Show verbose printing of informational messages.";
1642     }
1643   else
1644     {
1645       c->doc = "Set verbosity.";
1646       showcmd->doc = "Show verbosity.";
1647     }
1648 }
1649
1650 /* Init the history buffer.  Note that we are called after the init file(s)
1651    have been read so that the user can change the history file via his
1652    .gdbinit file (for instance).  The GDBHISTFILE environment variable
1653    overrides all of this.  */
1654
1655 void
1656 init_history (void)
1657 {
1658   char *tmpenv;
1659
1660   tmpenv = getenv ("GDBHISTSIZE");
1661   if (tmpenv)
1662     {
1663       long var;
1664       int saved_errno;
1665       char *endptr;
1666
1667       tmpenv = skip_spaces (tmpenv);
1668       errno = 0;
1669       var = strtol (tmpenv, &endptr, 10);
1670       saved_errno = errno;
1671       endptr = skip_spaces (endptr);
1672
1673       /* If GDBHISTSIZE is non-numeric then ignore it.  If GDBHISTSIZE is the
1674          empty string, a negative number or a huge positive number (larger than
1675          INT_MAX) then set the history size to unlimited.  Otherwise set our
1676          history size to the number we have read.  This behavior is consistent
1677          with how bash handles HISTSIZE.  */
1678       if (*endptr != '\0')
1679         ;
1680       else if (*tmpenv == '\0'
1681                || var < 0
1682                || var > INT_MAX
1683                /* On targets where INT_MAX == LONG_MAX, we have to look at
1684                   errno after calling strtol to distinguish between a value that
1685                   is exactly INT_MAX and an overflowing value that was clamped
1686                   to INT_MAX.  */
1687                || (var == INT_MAX && saved_errno == ERANGE))
1688         history_size_setshow_var = -1;
1689       else
1690         history_size_setshow_var = var;
1691     }
1692
1693   /* If neither the init file nor GDBHISTSIZE has set a size yet, pick the
1694      default.  */
1695   if (history_size_setshow_var == -2)
1696     history_size_setshow_var = 256;
1697
1698   set_readline_history_size (history_size_setshow_var);
1699
1700   tmpenv = getenv ("GDBHISTFILE");
1701   if (tmpenv)
1702     history_filename = xstrdup (tmpenv);
1703   else if (!history_filename)
1704     {
1705       /* We include the current directory so that if the user changes
1706          directories the file written will be the same as the one
1707          that was read.  */
1708 #ifdef __MSDOS__
1709       /* No leading dots in file names are allowed on MSDOS.  */
1710       history_filename = concat (current_directory, "/_gdb_history",
1711                                  (char *)NULL);
1712 #else
1713       history_filename = concat (current_directory, "/.gdb_history",
1714                                  (char *)NULL);
1715 #endif
1716     }
1717   read_history (history_filename);
1718 }
1719
1720 static void
1721 show_prompt (struct ui_file *file, int from_tty,
1722              struct cmd_list_element *c, const char *value)
1723 {
1724   fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1725 }
1726
1727 static void
1728 show_async_command_editing_p (struct ui_file *file, int from_tty,
1729                               struct cmd_list_element *c, const char *value)
1730 {
1731   fprintf_filtered (file, _("Editing of command lines as "
1732                             "they are typed is %s.\n"),
1733                     value);
1734 }
1735
1736 static void
1737 show_annotation_level (struct ui_file *file, int from_tty,
1738                        struct cmd_list_element *c, const char *value)
1739 {
1740   fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1741 }
1742
1743 static void
1744 show_exec_done_display_p (struct ui_file *file, int from_tty,
1745                           struct cmd_list_element *c, const char *value)
1746 {
1747   fprintf_filtered (file, _("Notification of completion for "
1748                             "asynchronous execution commands is %s.\n"),
1749                     value);
1750 }
1751
1752 /* New values of the "data-directory" parameter are staged here.  */
1753 static char *staged_gdb_datadir;
1754
1755 /* "set" command for the gdb_datadir configuration variable.  */
1756
1757 static void
1758 set_gdb_datadir (char *args, int from_tty, struct cmd_list_element *c)
1759 {
1760   set_gdb_data_directory (staged_gdb_datadir);
1761   observer_notify_gdb_datadir_changed ();
1762 }
1763
1764 /* "show" command for the gdb_datadir configuration variable.  */
1765
1766 static void
1767 show_gdb_datadir (struct ui_file *file, int from_tty,
1768                   struct cmd_list_element *c, const char *value)
1769 {
1770   fprintf_filtered (file, _("GDB's data directory is \"%s\".\n"),
1771                     gdb_datadir);
1772 }
1773
1774 static void
1775 set_history_filename (char *args, int from_tty, struct cmd_list_element *c)
1776 {
1777   /* We include the current directory so that if the user changes
1778      directories the file written will be the same as the one
1779      that was read.  */
1780   if (!IS_ABSOLUTE_PATH (history_filename))
1781     history_filename = reconcat (history_filename, current_directory, "/", 
1782                                  history_filename, (char *) NULL);
1783 }
1784
1785 static void
1786 init_main (void)
1787 {
1788   /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
1789      the DEFAULT_PROMPT is.  */
1790   set_prompt (DEFAULT_PROMPT);
1791
1792   /* Set the important stuff up for command editing.  */
1793   command_editing_p = 1;
1794   history_expansion_p = 0;
1795   write_history_p = 0;
1796
1797   /* Setup important stuff for command line editing.  */
1798   rl_completion_word_break_hook = gdb_completion_word_break_characters;
1799   rl_completion_entry_function = readline_line_completion_function;
1800   rl_completer_word_break_characters = default_word_break_characters ();
1801   rl_completer_quote_characters = get_gdb_completer_quote_characters ();
1802   rl_completion_display_matches_hook = cli_display_match_list;
1803   rl_readline_name = "gdb";
1804   rl_terminal_name = getenv ("TERM");
1805
1806   /* The name for this defun comes from Bash, where it originated.
1807      15 is Control-o, the same binding this function has in Bash.  */
1808   rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1809
1810   add_setshow_string_cmd ("prompt", class_support,
1811                           &top_prompt,
1812                           _("Set gdb's prompt"),
1813                           _("Show gdb's prompt"),
1814                           NULL, NULL,
1815                           show_prompt,
1816                           &setlist, &showlist);
1817
1818   add_com ("dont-repeat", class_support, dont_repeat_command, _("\
1819 Don't repeat this command.\nPrimarily \
1820 used inside of user-defined commands that should not be repeated when\n\
1821 hitting return."));
1822
1823   add_setshow_boolean_cmd ("editing", class_support,
1824                            &async_command_editing_p, _("\
1825 Set editing of command lines as they are typed."), _("\
1826 Show editing of command lines as they are typed."), _("\
1827 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1828 Without an argument, command line editing is enabled.  To edit, use\n\
1829 EMACS-like or VI-like commands like control-P or ESC."),
1830                            set_async_editing_command,
1831                            show_async_command_editing_p,
1832                            &setlist, &showlist);
1833
1834   add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1835 Set saving of the history record on exit."), _("\
1836 Show saving of the history record on exit."), _("\
1837 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
1838 Without an argument, saving is enabled."),
1839                            NULL,
1840                            show_write_history_p,
1841                            &sethistlist, &showhistlist);
1842
1843   add_setshow_zuinteger_unlimited_cmd ("size", no_class,
1844                                        &history_size_setshow_var, _("\
1845 Set the size of the command history,"), _("\
1846 Show the size of the command history,"), _("\
1847 ie. the number of previous commands to keep a record of.\n\
1848 If set to \"unlimited\", the number of commands kept in the history\n\
1849 list is unlimited.  This defaults to the value of the environment\n\
1850 variable \"GDBHISTSIZE\", or to 256 if this variable is not set."),
1851                             set_history_size_command,
1852                             show_history_size,
1853                             &sethistlist, &showhistlist);
1854
1855   add_setshow_zuinteger_unlimited_cmd ("remove-duplicates", no_class,
1856                                        &history_remove_duplicates, _("\
1857 Set how far back in history to look for and remove duplicate entries."), _("\
1858 Show how far back in history to look for and remove duplicate entries."), _("\
1859 If set to a nonzero value N, GDB will look back at the last N history entries\n\
1860 and remove the first history entry that is a duplicate of the most recent\n\
1861 entry, each time a new history entry is added.\n\
1862 If set to \"unlimited\", this lookbehind is unbounded.\n\
1863 Only history entries added during this session are considered for removal.\n\
1864 If set to 0, removal of duplicate history entries is disabled.\n\
1865 By default this option is set to 0."),
1866                            NULL,
1867                            show_history_remove_duplicates,
1868                            &sethistlist, &showhistlist);
1869
1870   add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1871 Set the filename in which to record the command history"), _("\
1872 Show the filename in which to record the command history"), _("\
1873 (the list of previous commands of which a record is kept)."),
1874                             set_history_filename,
1875                             show_history_filename,
1876                             &sethistlist, &showhistlist);
1877
1878   add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
1879 Set whether to confirm potentially dangerous operations."), _("\
1880 Show whether to confirm potentially dangerous operations."), NULL,
1881                            NULL,
1882                            show_confirm,
1883                            &setlist, &showlist);
1884
1885   add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1886 Set annotation_level."), _("\
1887 Show annotation_level."), _("\
1888 0 == normal;     1 == fullname (for use when running under emacs)\n\
1889 2 == output annotated suitably for use by programs that control GDB."),
1890                             NULL,
1891                             show_annotation_level,
1892                             &setlist, &showlist);
1893
1894   add_setshow_boolean_cmd ("exec-done-display", class_support,
1895                            &exec_done_display_p, _("\
1896 Set notification of completion for asynchronous execution commands."), _("\
1897 Show notification of completion for asynchronous execution commands."), _("\
1898 Use \"on\" to enable the notification, and \"off\" to disable it."),
1899                            NULL,
1900                            show_exec_done_display_p,
1901                            &setlist, &showlist);
1902
1903   add_setshow_filename_cmd ("data-directory", class_maintenance,
1904                            &staged_gdb_datadir, _("Set GDB's data directory."),
1905                            _("Show GDB's data directory."),
1906                            _("\
1907 When set, GDB uses the specified path to search for data files."),
1908                            set_gdb_datadir, show_gdb_datadir,
1909                            &setlist,
1910                            &showlist);
1911 }
1912
1913 void
1914 gdb_init (char *argv0)
1915 {
1916   if (pre_init_ui_hook)
1917     pre_init_ui_hook ();
1918
1919   /* Run the init function of each source file.  */
1920
1921 #ifdef __MSDOS__
1922   /* Make sure we return to the original directory upon exit, come
1923      what may, since the OS doesn't do that for us.  */
1924   make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1925 #endif
1926
1927   init_cmd_lists ();        /* This needs to be done first.  */
1928   initialize_targets ();    /* Setup target_terminal macros for utils.c.  */
1929   initialize_utils ();      /* Make errors and warnings possible.  */
1930
1931   init_page_info ();
1932
1933   /* Here is where we call all the _initialize_foo routines.  */
1934   initialize_all_files ();
1935
1936   /* This creates the current_program_space.  Do this after all the
1937      _initialize_foo routines have had a chance to install their
1938      per-sspace data keys.  Also do this before
1939      initialize_current_architecture is called, because it accesses
1940      exec_bfd of the current program space.  */
1941   initialize_progspace ();
1942   initialize_inferiors ();
1943   initialize_current_architecture ();
1944   init_cli_cmds();
1945   init_main ();                 /* But that omits this file!  Do it now.  */
1946
1947   initialize_stdin_serial ();
1948
1949   /* Take a snapshot of our tty state before readline/ncurses have had a chance
1950      to alter it.  */
1951   set_initial_gdb_ttystate ();
1952
1953   async_init_signals ();
1954
1955   /* We need a default language for parsing expressions, so simple
1956      things like "set width 0" won't fail if no language is explicitly
1957      set in a config file or implicitly set by reading an executable
1958      during startup.  */
1959   set_language (language_c);
1960   expected_language = current_language; /* Don't warn about the change.  */
1961
1962   /* Python initialization, for example, can require various commands to be
1963      installed.  For example "info pretty-printer" needs the "info"
1964      prefix to be installed.  Keep things simple and just do final
1965      script initialization here.  */
1966   finish_ext_lang_initialization ();
1967 }