When copying pe format files, copy the dos_message array, rather than re-initiialisin...
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
a752853e 2
42a4f53d 3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
21#include "gdbcmd.h"
210661e7
EZ
22#include "cli/cli-cmds.h"
23#include "cli/cli-script.h"
24#include "cli/cli-setshow.h"
18a642a1 25#include "cli/cli-decode.h"
c906108c
SS
26#include "symtab.h"
27#include "inferior.h"
45741a9c 28#include "infrun.h"
042be3a9 29#include <signal.h>
c906108c 30#include "target.h"
68c765e2 31#include "target-dcache.h"
c906108c
SS
32#include "breakpoint.h"
33#include "gdbtypes.h"
34#include "expression.h"
35#include "value.h"
36#include "language.h"
766f8836 37#include "terminal.h"
268a13a5 38#include "gdbsupport/job-control.h"
c906108c 39#include "annotate.h"
c5f0f3d0 40#include "completer.h"
c906108c 41#include "top.h"
268a13a5 42#include "gdbsupport/version.h"
210661e7 43#include "serial.h"
f17517ea 44#include "main.h"
2e03ee74 45#include "event-loop.h"
8ea051c5 46#include "gdbthread.h"
6dddc817 47#include "extension.h"
b4a14fd0 48#include "interps.h"
76727919 49#include "observable.h"
bd712aed 50#include "maint.h"
97c85fc6 51#include "filenames.h"
06096720 52#include "frame.h"
268a13a5 53#include "gdbsupport/buffer.h"
3212b858 54#include "gdb_select.h"
268a13a5 55#include "gdbsupport/scope-exit.h"
0d12e84c 56#include "gdbarch.h"
c906108c 57
371d5dec 58/* readline include files. */
dbda9972
AC
59#include "readline/readline.h"
60#include "readline/history.h"
c906108c
SS
61
62/* readline defines this. */
63#undef savestring
64
65#include <sys/types.h>
c906108c 66
c2c6d25f 67#include "event-top.h"
53ce3c39 68#include <sys/stat.h>
c906108c 69#include <ctype.h>
8b93c638
JM
70#include "ui-out.h"
71#include "cli-out.h"
2f9d54cf 72#include "tracepoint.h"
93d6eb10 73#include "inf-loop.h"
c906108c 74
18206ca3
PP
75#if defined(TUI)
76# include "tui/tui.h"
77#endif
78
60eb5395
PA
79#ifndef O_NOCTTY
80# define O_NOCTTY 0
81#endif
82
ca7b0bbc
TT
83extern void initialize_all_files (void);
84
95298e72
PM
85#define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
86#define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
87#define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
88
405feb71 89/* Default command line prompt. This is overridden in some configs. */
104c1213
JM
90
91#ifndef DEFAULT_PROMPT
92#define DEFAULT_PROMPT "(gdb) "
c906108c
SS
93#endif
94
79aa2fe8
PA
95/* Generate a function that exports a pointer to a field of the
96 current UI. */
97
98#define gen_ret_current_ui_field_ptr(type, name) \
99type * \
100current_ui_## name ## _ptr (void) \
101{ \
102 return &current_ui->m_ ## name; \
103}
104
105gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stdout)
106gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stdin)
107gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stderr)
108gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stdlog)
b6dcde57 109gen_ret_current_ui_field_ptr (struct ui_out *, current_uiout)
79aa2fe8 110
c906108c
SS
111int inhibit_gdbinit = 0;
112
050a2e1d
PA
113/* Flag for whether we want to confirm potentially dangerous
114 operations. Default is yes. */
115
491144b5 116bool confirm = true;
c906108c 117
920d2a44 118static void
e360902b 119show_confirm (struct ui_file *file, int from_tty,
920d2a44
AC
120 struct cmd_list_element *c, const char *value)
121{
3e43a32a
MS
122 fprintf_filtered (file, _("Whether to confirm potentially "
123 "dangerous operations is %s.\n"),
920d2a44
AC
124 value);
125}
c906108c 126
c906108c
SS
127/* Current working directory. */
128
129char *current_directory;
130
2669cade 131/* The last command line executed on the console. Used for command
68bb5386
PW
132 repetitions when the user enters an empty line. */
133
134static char *saved_command_line;
135
136/* If not NULL, the arguments that should be passed if
137 saved_command_line is repeated. */
138
139static const char *repeat_arguments;
140
141/* The previous last command line executed on the console. Used for command
142 repetitions when a command wants to relaunch the previously launched
143 command. We need this as when a command is running, saved_command_line
144 already contains the line of the currently executing command. */
145
146char *previous_saved_command_line;
147
148/* If not NULL, the arguments that should be passed if the
149 previous_saved_command_line is repeated. */
150
151static const char *previous_repeat_arguments;
c906108c
SS
152
153/* Nonzero if the current command is modified by "server ". This
c2d11a7d 154 affects things like recording into the command history, commands
c906108c
SS
155 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
156 whatever) can issue its own commands and also send along commands
157 from the user, and have the user not notice that the user interface
158 is issuing commands too. */
159int server_command;
160
371d5dec 161/* Timeout limit for response from target. */
c906108c 162
7734102d
EZ
163/* The default value has been changed many times over the years. It
164 was originally 5 seconds. But that was thought to be a long time
ce808e91 165 to sit and wait, so it was changed to 2 seconds. That was thought
7734102d 166 to be plenty unless the connection was going through some terminal
ce808e91
AC
167 server or multiplexer or other form of hairy serial connection.
168
7734102d 169 In mid-1996, remote_timeout was moved from remote.c to top.c and
ce808e91
AC
170 it began being used in other remote-* targets. It appears that the
171 default was changed to 20 seconds at that time, perhaps because the
85a453d5 172 Renesas E7000 ICE didn't always respond in a timely manner.
ce808e91
AC
173
174 But if 5 seconds is a long time to sit and wait for retransmissions,
7734102d 175 20 seconds is far worse. This demonstrates the difficulty of using
ce808e91
AC
176 a single variable for all protocol timeouts.
177
7734102d 178 As remote.c is used much more than remote-e7000.c, it was changed
371d5dec 179 back to 2 seconds in 1999. */
ce808e91
AC
180
181int remote_timeout = 2;
c906108c
SS
182
183/* Non-zero tells remote* modules to output debugging info. */
184
185int remote_debug = 0;
186
6dd77b81 187/* Sbrk location on entry to main. Used for statistics only. */
6242c6a6 188#ifdef HAVE_USEFUL_SBRK
6dd77b81
RH
189char *lim_at_start;
190#endif
191
c906108c
SS
192/* Hooks for alternate command interfaces. */
193
371d5dec
MS
194/* This hook is called from within gdb's many mini-event loops which
195 could steal control from a real user interface's event loop. It
196 returns non-zero if the user is requesting a detach, zero
197 otherwise. */
7a292a7a 198
98bbd631 199int (*deprecated_ui_loop_hook) (int);
c906108c 200
c906108c 201
c906108c
SS
202/* Called from print_frame_info to list the line we stopped in. */
203
7734102d 204void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
371d5dec 205 int line,
7734102d 206 int stopline,
371d5dec 207 int noerror);
c906108c
SS
208/* Replaces most of query. */
209
9a4105ab 210int (*deprecated_query_hook) (const char *, va_list);
c906108c
SS
211
212/* Replaces most of warning. */
213
9a4105ab 214void (*deprecated_warning_hook) (const char *, va_list);
c906108c 215
9a4105ab
AC
216/* These three functions support getting lines of text from the user.
217 They are used in sequence. First deprecated_readline_begin_hook is
218 called with a text string that might be (for example) a message for
219 the user to type in a sequence of commands to be executed at a
220 breakpoint. If this function calls back to a GUI, it might take
221 this opportunity to pop up a text interaction window with this
222 message. Next, deprecated_readline_hook is called with a prompt
223 that is emitted prior to collecting the user input. It can be
224 called multiple times. Finally, deprecated_readline_end_hook is
225 called to notify the GUI that we are done with the interaction
226 window and it can close it. */
c906108c 227
a121b7c1 228void (*deprecated_readline_begin_hook) (const char *, ...);
38bcc89d 229char *(*deprecated_readline_hook) (const char *);
9a4105ab 230void (*deprecated_readline_end_hook) (void);
c906108c 231
6426a772 232/* Called as appropriate to notify the interface that we have attached
371d5dec 233 to or detached from an already running process. */
6426a772 234
9a4105ab
AC
235void (*deprecated_attach_hook) (void);
236void (*deprecated_detach_hook) (void);
6426a772 237
371d5dec
MS
238/* Called when going to wait for the target. Usually allows the GUI
239 to run while waiting for target events. */
c906108c 240
9a4105ab 241ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
47608cb1
PA
242 struct target_waitstatus *status,
243 int options);
c906108c 244
371d5dec
MS
245/* Used by UI as a wrapper around command execution. May do various
246 things like enabling/disabling buttons, etc... */
c906108c 247
7734102d 248void (*deprecated_call_command_hook) (struct cmd_list_element * c,
95a6b0a1 249 const char *cmd, int from_tty);
c906108c
SS
250
251/* Called when the current thread changes. Argument is thread id. */
252
9a4105ab 253void (*deprecated_context_hook) (int id);
c906108c 254
98d9f24e
PA
255/* The highest UI number ever assigned. */
256static int highest_ui_num;
257
258/* See top.h. */
259
895b8f30
TT
260ui::ui (FILE *instream_, FILE *outstream_, FILE *errstream_)
261 : next (nullptr),
262 num (++highest_ui_num),
263 call_readline (nullptr),
264 input_handler (nullptr),
265 command_editing (0),
266 interp_info (nullptr),
267 async (0),
268 secondary_prompt_depth (0),
269 stdin_stream (instream_),
270 instream (instream_),
271 outstream (outstream_),
272 errstream (errstream_),
273 input_fd (fileno (instream)),
274 input_interactive_p (ISATTY (instream)),
275 prompt_state (PROMPT_NEEDED),
276 m_gdb_stdout (new stdio_file (outstream)),
277 m_gdb_stdin (new stdio_file (instream)),
278 m_gdb_stderr (new stderr_file (errstream)),
279 m_gdb_stdlog (m_gdb_stderr),
280 m_current_uiout (nullptr)
98d9f24e 281{
895b8f30 282 buffer_init (&line_buffer);
98d9f24e
PA
283
284 if (ui_list == NULL)
895b8f30 285 ui_list = this;
98d9f24e
PA
286 else
287 {
288 struct ui *last;
289
290 for (last = ui_list; last->next != NULL; last = last->next)
291 ;
895b8f30 292 last->next = this;
98d9f24e 293 }
07169ff7
PA
294}
295
895b8f30 296ui::~ui ()
07169ff7
PA
297{
298 struct ui *ui, *uiprev;
299
300 uiprev = NULL;
301
302 for (ui = ui_list; ui != NULL; uiprev = ui, ui = ui->next)
895b8f30 303 if (ui == this)
07169ff7
PA
304 break;
305
306 gdb_assert (ui != NULL);
307
308 if (uiprev != NULL)
895b8f30 309 uiprev->next = next;
07169ff7 310 else
895b8f30 311 ui_list = next;
07169ff7 312
895b8f30
TT
313 delete m_gdb_stdin;
314 delete m_gdb_stdout;
315 delete m_gdb_stderr;
8194e927
SM
316}
317
60eb5395
PA
318/* Open file named NAME for read/write, making sure not to make it the
319 controlling terminal. */
320
6e7bc05c 321static gdb_file_up
60eb5395
PA
322open_terminal_stream (const char *name)
323{
324 int fd;
325
6e7bc05c 326 fd = gdb_open_cloexec (name, O_RDWR | O_NOCTTY, 0);
60eb5395
PA
327 if (fd < 0)
328 perror_with_name (_("opening terminal failed"));
329
6e7bc05c 330 return gdb_file_up (fdopen (fd, "w+"));
60eb5395
PA
331}
332
333/* Implementation of the "new-ui" command. */
334
335static void
32faf971 336new_ui_command (const char *args, int from_tty)
60eb5395 337{
60eb5395 338 int argc;
60eb5395
PA
339 const char *interpreter_name;
340 const char *tty_name;
60eb5395
PA
341
342 dont_repeat ();
343
773a1edc
TT
344 gdb_argv argv (args);
345 argc = argv.count ();
60eb5395
PA
346
347 if (argc < 2)
65e65158 348 error (_("Usage: new-ui INTERPRETER TTY"));
60eb5395
PA
349
350 interpreter_name = argv[0];
351 tty_name = argv[1];
352
4b6749b9
TT
353 {
354 scoped_restore save_ui = make_scoped_restore (&current_ui);
8194e927 355
afe09f0b
GL
356 /* Open specified terminal. Note: we used to open it three times,
357 once for each of stdin/stdout/stderr, but that does not work
358 with Windows named pipes. */
359 gdb_file_up stream = open_terminal_stream (tty_name);
60eb5395 360
895b8f30 361 std::unique_ptr<ui> ui
afe09f0b 362 (new struct ui (stream.get (), stream.get (), stream.get ()));
60eb5395 363
4b6749b9 364 ui->async = 1;
60eb5395 365
895b8f30 366 current_ui = ui.get ();
60eb5395 367
4b6749b9 368 set_top_level_interpreter (interpreter_name);
60eb5395 369
4b6749b9 370 interp_pre_command_loop (top_level_interpreter ());
60eb5395 371
afe09f0b
GL
372 /* Make sure the file is not closed. */
373 stream.release ();
6e7bc05c 374
895b8f30 375 ui.release ();
4b6749b9 376 }
60eb5395
PA
377
378 printf_unfiltered ("New UI allocated\n");
379}
380
c906108c
SS
381/* Handler for SIGHUP. */
382
383#ifdef SIGHUP
392a587b 384/* NOTE 1999-04-29: This function will be static again, once we modify
cd0fc7c3 385 gdb to use the event loop as the default command loop and we merge
c378eb4e 386 event-top.c into this file, top.c. */
b2cd6b29
JM
387/* static */ void
388quit_cover (void)
c906108c 389{
e360902b
PA
390 /* Stop asking user for confirmation --- we're exiting. This
391 prevents asking the user dumb questions. */
392 confirm = 0;
c5aa993b 393 quit_command ((char *) 0, 0);
c906108c
SS
394}
395#endif /* defined SIGHUP */
396\f
7a9dd1b2 397/* Line number we are currently in, in a file which is being sourced. */
392a587b 398/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3 399 gdb to use the event loop as the default command loop and we merge
c378eb4e 400 event-top.c into this file, top.c. */
cd0fc7c3 401/* static */ int source_line_number;
c906108c
SS
402
403/* Name of the file we are sourcing. */
392a587b 404/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3 405 gdb to use the event loop as the default command loop and we merge
c378eb4e 406 event-top.c into this file, top.c. */
6caa91b6 407/* static */ std::string source_file_name;
c906108c 408
c906108c
SS
409/* Read commands from STREAM. */
410void
fba45db2 411read_command_file (FILE *stream)
c906108c 412{
f38d3ad1 413 struct ui *ui = current_ui;
c906108c 414
3c9ebddd
TT
415 scoped_restore save_instream
416 = make_scoped_restore (&ui->instream, stream);
faa4ebe1
PA
417
418 /* Read commands from `instream' and execute them until end of file
419 or error reading instream. */
420
f38d3ad1 421 while (ui->instream != NULL && !feof (ui->instream))
faa4ebe1
PA
422 {
423 char *command;
424
425 /* Get a command-line. This calls the readline package. */
89fbedf3 426 command = command_line_input (NULL, NULL);
faa4ebe1
PA
427 if (command == NULL)
428 break;
429 command_handler (command);
430 }
c906108c
SS
431}
432\f
507f3c78 433void (*pre_init_ui_hook) (void);
c906108c 434
e41a3b1a 435#ifdef __MSDOS__
70976b65 436static void
e41a3b1a
AC
437do_chdir_cleanup (void *old_dir)
438{
f515a1d6 439 chdir ((const char *) old_dir);
b8c9b27d 440 xfree (old_dir);
e41a3b1a
AC
441}
442#endif
443
54f70bc1
TT
444scoped_value_mark
445prepare_execute_command ()
4e5d721f 446{
371d5dec
MS
447 /* With multiple threads running while the one we're examining is
448 stopped, the dcache can get stale without us being able to detect
449 it. For the duration of the command, though, use the dcache to
450 help things like backtrace. */
4e5d721f
DE
451 if (non_stop)
452 target_dcache_invalidate ();
028d0ed5 453
54f70bc1 454 return scoped_value_mark ();
4e5d721f
DE
455}
456
77cce10f
PA
457/* Tell the user if the language has changed (except first time) after
458 executing a command. */
459
460void
461check_frame_language_change (void)
462{
463 static int warned = 0;
7ff38b1c 464 struct frame_info *frame;
77cce10f
PA
465
466 /* First make sure that a new frame has been selected, in case the
467 command or the hooks changed the program state. */
7ff38b1c 468 frame = deprecated_safe_get_selected_frame ();
77cce10f
PA
469 if (current_language != expected_language)
470 {
471 if (language_mode == language_mode_auto && info_verbose)
472 {
473 language_info (1); /* Print what changed. */
474 }
475 warned = 0;
476 }
477
478 /* Warn the user if the working language does not match the language
479 of the current frame. Only warn the user if we are actually
480 running the program, i.e. there is a stack. */
481 /* FIXME: This should be cacheing the frame and only running when
482 the frame changes. */
483
484 if (has_stack_frames ())
485 {
486 enum language flang;
487
7ff38b1c 488 flang = get_frame_language (frame);
77cce10f
PA
489 if (!warned
490 && flang != language_unknown
491 && flang != current_language->la_language)
492 {
34916edc 493 printf_filtered ("%s\n", _(lang_frame_mismatch_warn));
77cce10f
PA
494 warned = 1;
495 }
496 }
497}
498
98880d46
PA
499/* See top.h. */
500
0b333c5e
PA
501void
502wait_sync_command_done (void)
503{
4295e285 504 /* Processing events may change the current UI. */
4b6749b9 505 scoped_restore save_ui = make_scoped_restore (&current_ui);
4295e285
PA
506 struct ui *ui = current_ui;
507
0b333c5e 508 while (gdb_do_one_event () >= 0)
4295e285 509 if (ui->prompt_state != PROMPT_BLOCKED)
0b333c5e
PA
510 break;
511}
512
513/* See top.h. */
514
98880d46
PA
515void
516maybe_wait_sync_command_done (int was_sync)
517{
518 /* If the interpreter is in sync mode (we're running a user
519 command's list, running command hooks or similars), and we
520 just ran a synchronous command that started the target, wait
521 for that command to end. */
3b12939d
PA
522 if (!current_ui->async
523 && !was_sync
524 && current_ui->prompt_state == PROMPT_BLOCKED)
0b333c5e 525 wait_sync_command_done ();
98880d46
PA
526}
527
85c4be7c
TT
528/* See command.h. */
529
530void
531set_repeat_arguments (const char *args)
532{
533 repeat_arguments = args;
534}
535
648bf667 536/* Execute the line P as a command, in the current user context.
d318976c 537 Pass FROM_TTY as second argument to the defining function. */
c906108c 538
d318976c 539void
95a6b0a1 540execute_command (const char *p, int from_tty)
c906108c 541{
52f0bd74 542 struct cmd_list_element *c;
95a6b0a1
TT
543 const char *line;
544 const char *cmd_start = p;
4e5d721f 545
694c6bf5 546 auto cleanup_if_error = make_scope_exit (bpstat_clear_actions);
54f70bc1 547 scoped_value_mark cleanup = prepare_execute_command ();
c906108c 548
d318976c
FN
549 /* This can happen when command_line_input hits end of file. */
550 if (p == NULL)
5fe41fbf 551 {
694c6bf5 552 cleanup_if_error.release ();
5fe41fbf
TT
553 return;
554 }
c906108c 555
49d03eab 556 target_log_command (p);
8b93c638 557
d318976c
FN
558 while (*p == ' ' || *p == '\t')
559 p++;
560 if (*p)
8b93c638 561 {
6f937416 562 const char *cmd = p;
95a6b0a1 563 const char *arg;
3b12939d 564 int was_sync = current_ui->prompt_state == PROMPT_BLOCKED;
90e28950 565
d318976c 566 line = p;
8b93c638 567
16026cd7 568 /* If trace-commands is set then this will print this command. */
1263a9d5 569 print_command_trace ("%s", p);
16026cd7 570
6f937416 571 c = lookup_cmd (&cmd, cmdlist, "", 0, 1);
95a6b0a1 572 p = cmd;
8b93c638 573
85c4be7c
TT
574 scoped_restore save_repeat_args
575 = make_scoped_restore (&repeat_arguments, nullptr);
95a6b0a1 576 const char *args_pointer = p;
85c4be7c 577
d318976c
FN
578 /* Pass null arg rather than an empty one. */
579 arg = *p ? p : 0;
8b93c638 580
9f60d481
AC
581 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
582 while the is_complete_command(cfunc) test is just plain
583 bogus. They should both be replaced by a test of the form
584 c->strip_trailing_white_space_p. */
585 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
586 can't be replaced with func. This is because it is the
587 cfunc, and not the func, that has the value that the
588 is_complete_command hack is testing for. */
589 /* Clear off trailing whitespace, except for set and complete
590 command. */
95a6b0a1 591 std::string without_whitespace;
d318976c
FN
592 if (arg
593 && c->type != set_cmd
bbaca940 594 && !is_complete_command (c))
8b93c638 595 {
95a6b0a1
TT
596 const char *old_end = arg + strlen (arg) - 1;
597 p = old_end;
d318976c
FN
598 while (p >= arg && (*p == ' ' || *p == '\t'))
599 p--;
95a6b0a1
TT
600 if (p != old_end)
601 {
602 without_whitespace = std::string (arg, p + 1);
603 arg = without_whitespace.c_str ();
604 }
8b93c638
JM
605 }
606
371d5dec 607 /* If this command has been pre-hooked, run the hook first. */
5913bcb0 608 execute_cmd_pre_hook (c);
c906108c 609
1f2bdf09 610 if (c->deprecated_warn_user)
6f937416 611 deprecated_cmd_warning (line);
c906108c 612
7d74f244 613 /* c->user_commands would be NULL in the case of a python command. */
fe978cb0 614 if (c->theclass == class_user && c->user_commands)
d318976c 615 execute_user_command (c, arg);
5b9afe8a
YQ
616 else if (c->type == set_cmd)
617 do_set_command (arg, from_tty, c);
618 else if (c->type == show_cmd)
619 do_show_command (arg, from_tty, c);
f436dd25 620 else if (!cmd_func_p (c))
8a3fe4f8 621 error (_("That is not a command, just a help topic."));
9a4105ab 622 else if (deprecated_call_command_hook)
050a2e1d 623 deprecated_call_command_hook (c, arg, from_tty);
d318976c 624 else
050a2e1d 625 cmd_func (c, arg, from_tty);
b4a14fd0 626
98880d46 627 maybe_wait_sync_command_done (was_sync);
b4a14fd0 628
371d5dec 629 /* If this command has been post-hooked, run the hook last. */
5913bcb0 630 execute_cmd_post_hook (c);
c906108c 631
95a6b0a1 632 if (repeat_arguments != NULL && cmd_start == saved_command_line)
85c4be7c
TT
633 {
634 gdb_assert (strlen (args_pointer) >= strlen (repeat_arguments));
95a6b0a1
TT
635 strcpy (saved_command_line + (args_pointer - cmd_start),
636 repeat_arguments);
85c4be7c 637 }
c906108c
SS
638 }
639
0ca1fc29
JB
640 /* Only perform the frame-language-change check if the command
641 we just finished executing did not resume the inferior's execution.
642 If it did resume the inferior, we will do that check after
643 the inferior stopped. */
00431a78 644 if (has_stack_frames () && inferior_thread ()->state != THREAD_RUNNING)
0ca1fc29 645 check_frame_language_change ();
028d0ed5 646
694c6bf5 647 cleanup_if_error.release ();
c906108c
SS
648}
649
b8fd0918
PW
650/* Run execute_command for P and FROM_TTY. Sends its output to FILE,
651 do not display it to the screen. BATCH_FLAG will be
5da1313b
JK
652 temporarily set to true. */
653
b8fd0918
PW
654void
655execute_command_to_ui_file (struct ui_file *file, const char *p, int from_tty)
5da1313b 656{
5da1313b
JK
657 /* GDB_STDOUT should be better already restored during these
658 restoration callbacks. */
b95de2b7 659 set_batch_flag_and_restore_page_info save_page_info;
5da1313b 660
b7b633e9 661 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
b4a14fd0 662
ca5909c7 663 {
b8fd0918 664 current_uiout->redirect (file);
ca5909c7
TT
665 ui_out_redirect_pop redirect_popper (current_uiout);
666
667 scoped_restore save_stdout
b8fd0918 668 = make_scoped_restore (&gdb_stdout, file);
ca5909c7 669 scoped_restore save_stderr
b8fd0918 670 = make_scoped_restore (&gdb_stderr, file);
ca5909c7 671 scoped_restore save_stdlog
b8fd0918 672 = make_scoped_restore (&gdb_stdlog, file);
ca5909c7 673 scoped_restore save_stdtarg
b8fd0918 674 = make_scoped_restore (&gdb_stdtarg, file);
ca5909c7 675 scoped_restore save_stdtargerr
b8fd0918 676 = make_scoped_restore (&gdb_stdtargerr, file);
ca5909c7
TT
677
678 execute_command (p, from_tty);
679 }
b8fd0918
PW
680}
681
682/* Run execute_command for P and FROM_TTY. Capture its output into the
683 returned string, do not display it to the screen. BATCH_FLAG will be
684 temporarily set to true. */
685
686std::string
687execute_command_to_string (const char *p, int from_tty,
688 bool term_out)
689{
690 string_file str_file (term_out);
5da1313b 691
b8fd0918 692 execute_command_to_ui_file (&str_file, p, from_tty);
d7e74731 693 return std::move (str_file.string ());
5da1313b
JK
694}
695
d318976c 696\f
47a80e90
TT
697/* When nonzero, cause dont_repeat to do nothing. This should only be
698 set via prevent_dont_repeat. */
699
700static int suppress_dont_repeat = 0;
701
68bb5386 702/* See command.h */
9e0b60a8 703
d318976c
FN
704void
705dont_repeat (void)
9e0b60a8 706{
f38d3ad1
PA
707 struct ui *ui = current_ui;
708
47a80e90 709 if (suppress_dont_repeat || server_command)
d318976c 710 return;
9e0b60a8 711
d318976c 712 /* If we aren't reading from standard input, we are saving the last
371d5dec
MS
713 thing read from stdin in line and don't want to delete it. Null
714 lines won't repeat here in any case. */
268a799a 715 if (ui->instream == ui->stdin_stream)
68bb5386
PW
716 {
717 *saved_command_line = 0;
718 repeat_arguments = NULL;
719 }
720}
721
722/* See command.h */
723
fdbc9870 724const char *
68bb5386
PW
725repeat_previous ()
726{
727 /* Do not repeat this command, as this command is a repeating command. */
728 dont_repeat ();
729
730 /* We cannot free saved_command_line, as this line is being executed,
731 so swap it with previous_saved_command_line. */
732 std::swap (previous_saved_command_line, saved_command_line);
733 std::swap (previous_repeat_arguments, repeat_arguments);
fdbc9870
PA
734
735 const char *prev = skip_spaces (get_saved_command_line ());
736 if (*prev == '\0')
737 error (_("No previous command to relaunch"));
738 return prev;
9e0b60a8 739}
47a80e90 740
68bb5386 741/* See command.h. */
47a80e90 742
1ac32117 743scoped_restore_tmpl<int>
47a80e90
TT
744prevent_dont_repeat (void)
745{
1ac32117 746 return make_scoped_restore (&suppress_dont_repeat, 1);
47a80e90
TT
747}
748
68bb5386
PW
749/* See command.h. */
750
751char *
752get_saved_command_line ()
753{
754 return saved_command_line;
755}
756
757/* See command.h. */
758
759void
760save_command_line (const char *cmd)
761{
762 xfree (previous_saved_command_line);
763 previous_saved_command_line = saved_command_line;
764 previous_repeat_arguments = repeat_arguments;
765 saved_command_line = xstrdup (cmd);
766 repeat_arguments = NULL;
767}
768
d318976c
FN
769\f
770/* Read a line from the stream "instream" without command line editing.
9e0b60a8 771
7a3bde34 772 It prints PROMPT once at the start.
d318976c
FN
773 Action is compatible with "readline", e.g. space for the result is
774 malloc'd and should be freed by the caller.
9e0b60a8 775
d318976c 776 A NULL return means end of file. */
c5c136ea
PA
777
778static char *
7a3bde34 779gdb_readline_no_editing (const char *prompt)
9e0b60a8 780{
7a3bde34 781 struct buffer line_buffer;
f38d3ad1 782 struct ui *ui = current_ui;
3212b858
PA
783 /* Read from stdin if we are executing a user defined command. This
784 is the right thing for prompt_for_continue, at least. */
f38d3ad1 785 FILE *stream = ui->instream != NULL ? ui->instream : stdin;
3212b858 786 int fd = fileno (stream);
9e0b60a8 787
7a3bde34
PA
788 buffer_init (&line_buffer);
789
790 if (prompt != NULL)
9e0b60a8 791 {
d318976c
FN
792 /* Don't use a _filtered function here. It causes the assumed
793 character position to be off, since the newline we read from
794 the user is not accounted for. */
7a3bde34 795 fputs_unfiltered (prompt, gdb_stdout);
9e0b60a8
JM
796 gdb_flush (gdb_stdout);
797 }
798
9e0b60a8
JM
799 while (1)
800 {
7a3bde34 801 int c;
3212b858 802 fd_set readfds;
7a3bde34 803
3212b858
PA
804 QUIT;
805
806 /* Wait until at least one byte of data is available. Control-C
f0881b37 807 can interrupt interruptible_select, but not fgetc. */
3212b858
PA
808 FD_ZERO (&readfds);
809 FD_SET (fd, &readfds);
f0881b37 810 if (interruptible_select (fd + 1, &readfds, NULL, NULL, NULL) == -1)
3212b858
PA
811 {
812 if (errno == EINTR)
813 {
814 /* If this was ctrl-c, the QUIT above handles it. */
815 continue;
816 }
817 perror_with_name (("select"));
818 }
819
820 c = fgetc (stream);
9e0b60a8 821
d318976c 822 if (c == EOF)
9e0b60a8 823 {
7a3bde34 824 if (line_buffer.used_size > 0)
d318976c
FN
825 /* The last line does not end with a newline. Return it, and
826 if we are called again fgetc will still return EOF and
827 we'll return NULL then. */
9e0b60a8 828 break;
7a3bde34 829 xfree (buffer_finish (&line_buffer));
d318976c 830 return NULL;
9e0b60a8 831 }
c5aa993b 832
d318976c 833 if (c == '\n')
9e0b60a8 834 {
7a3bde34
PA
835 if (line_buffer.used_size > 0
836 && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
837 line_buffer.used_size--;
d318976c 838 break;
9e0b60a8 839 }
9e0b60a8 840
7a3bde34 841 buffer_grow_char (&line_buffer, c);
9e0b60a8
JM
842 }
843
7a3bde34
PA
844 buffer_grow_char (&line_buffer, '\0');
845 return buffer_finish (&line_buffer);
9e0b60a8
JM
846}
847
d318976c
FN
848/* Variables which control command line editing and history
849 substitution. These variables are given default values at the end
850 of this file. */
491144b5 851static bool command_editing_p;
920d2a44 852
d318976c
FN
853/* NOTE 1999-04-29: This variable will be static again, once we modify
854 gdb to use the event loop as the default command loop and we merge
c378eb4e 855 event-top.c into this file, top.c. */
920d2a44 856
491144b5 857/* static */ bool history_expansion_p;
920d2a44 858
491144b5 859static bool write_history_p;
920d2a44
AC
860static void
861show_write_history_p (struct ui_file *file, int from_tty,
862 struct cmd_list_element *c, const char *value)
863{
864 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
865 value);
866}
867
840a9a1f 868/* The variable associated with the "set/show history size"
ebfd00d2
PP
869 command. The value -1 means unlimited, and -2 means undefined. */
870static int history_size_setshow_var = -2;
840a9a1f 871
920d2a44
AC
872static void
873show_history_size (struct ui_file *file, int from_tty,
874 struct cmd_list_element *c, const char *value)
875{
876 fprintf_filtered (file, _("The size of the command history is %s.\n"),
877 value);
878}
879
fc637f04
PP
880/* Variable associated with the "history remove-duplicates" option.
881 The value -1 means unlimited. */
882static int history_remove_duplicates = 0;
883
884static void
885show_history_remove_duplicates (struct ui_file *file, int from_tty,
886 struct cmd_list_element *c, const char *value)
887{
888 fprintf_filtered (file,
889 _("The number of history entries to look back at for "
890 "duplicates is %s.\n"),
891 value);
892}
893
d318976c 894static char *history_filename;
920d2a44
AC
895static void
896show_history_filename (struct ui_file *file, int from_tty,
897 struct cmd_list_element *c, const char *value)
898{
3e43a32a
MS
899 fprintf_filtered (file, _("The filename in which to record "
900 "the command history is \"%s\".\n"),
920d2a44
AC
901 value);
902}
9e0b60a8 903
b4f5539f 904/* This is like readline(), but it has some gdb-specific behavior.
2e03ee74 905 gdb may want readline in both the synchronous and async modes during
b4f5539f
TT
906 a single gdb invocation. At the ordinary top-level prompt we might
907 be using the async readline. That means we can't use
908 rl_pre_input_hook, since it doesn't work properly in async mode.
909 However, for a secondary prompt (" >", such as occurs during a
2e03ee74
DJ
910 `define'), gdb wants a synchronous response.
911
912 We used to call readline() directly, running it in synchronous
913 mode. But mixing modes this way is not supported, and as of
914 readline 5.x it no longer works; the arrow keys come unbound during
915 the synchronous call. So we make a nested call into the event
916 loop. That's what gdb_readline_wrapper is for. */
917
918/* A flag set as soon as gdb_readline_wrapper_line is called; we can't
919 rely on gdb_readline_wrapper_result, which might still be NULL if
920 the user types Control-D for EOF. */
921static int gdb_readline_wrapper_done;
922
923/* The result of the current call to gdb_readline_wrapper, once a newline
924 is seen. */
925static char *gdb_readline_wrapper_result;
926
927/* Any intercepted hook. Operate-and-get-next sets this, expecting it
928 to be called after the newline is processed (which will redisplay
929 the prompt). But in gdb_readline_wrapper we will not get a new
930 prompt until the next call, or until we return to the event loop.
931 So we disable this hook around the newline and restore it before we
932 return. */
933static void (*saved_after_char_processing_hook) (void);
934
948578a9 935
948578a9
PP
936/* See top.h. */
937
938int
dbf30ca3 939gdb_in_secondary_prompt_p (struct ui *ui)
948578a9 940{
dbf30ca3 941 return ui->secondary_prompt_depth > 0;
948578a9
PP
942}
943
944
2e03ee74
DJ
945/* This function is called when readline has seen a complete line of
946 text. */
947
948static void
95bc9f0b 949gdb_readline_wrapper_line (gdb::unique_xmalloc_ptr<char> &&line)
2e03ee74
DJ
950{
951 gdb_assert (!gdb_readline_wrapper_done);
95bc9f0b 952 gdb_readline_wrapper_result = line.release ();
2e03ee74
DJ
953 gdb_readline_wrapper_done = 1;
954
955 /* Prevent operate-and-get-next from acting too early. */
956 saved_after_char_processing_hook = after_char_processing_hook;
957 after_char_processing_hook = NULL;
1b05479a
DJ
958
959 /* Prevent parts of the prompt from being redisplayed if annotations
0017922d 960 are enabled, and readline's state getting out of sync. We'll
d3d4baed
PA
961 reinstall the callback handler, which puts the terminal in raw
962 mode (or in readline lingo, in prepped state), when we're next
963 ready to process user input, either in display_gdb_prompt, or if
964 we're handling an asynchronous target event and running in the
965 background, just before returning to the event loop to process
966 further input (or more target events). */
3c216924 967 if (current_ui->command_editing)
d3d4baed 968 gdb_rl_callback_handler_remove ();
2e03ee74
DJ
969}
970
1dbeed45 971class gdb_readline_wrapper_cleanup
2e03ee74 972{
1dbeed45
TT
973public:
974 gdb_readline_wrapper_cleanup ()
975 : m_handler_orig (current_ui->input_handler),
976 m_already_prompted_orig (current_ui->command_editing
977 ? rl_already_prompted : 0),
978 m_target_is_async_orig (target_is_async_p ()),
979 m_save_ui (&current_ui)
980 {
981 current_ui->input_handler = gdb_readline_wrapper_line;
982 current_ui->secondary_prompt_depth++;
2e03ee74 983
1dbeed45
TT
984 if (m_target_is_async_orig)
985 target_async (0);
986 }
2e03ee74 987
1dbeed45
TT
988 ~gdb_readline_wrapper_cleanup ()
989 {
990 struct ui *ui = current_ui;
0017922d 991
1dbeed45
TT
992 if (ui->command_editing)
993 rl_already_prompted = m_already_prompted_orig;
0017922d 994
1dbeed45
TT
995 gdb_assert (ui->input_handler == gdb_readline_wrapper_line);
996 ui->input_handler = m_handler_orig;
2e03ee74 997
1dbeed45
TT
998 /* Don't restore our input handler in readline yet. That would make
999 readline prep the terminal (putting it in raw mode), while the
1000 line we just read may trigger execution of a command that expects
1001 the terminal in the default cooked/canonical mode, such as e.g.,
1002 running Python's interactive online help utility. See
1003 gdb_readline_wrapper_line for when we'll reinstall it. */
2e03ee74 1004
1dbeed45
TT
1005 gdb_readline_wrapper_result = NULL;
1006 gdb_readline_wrapper_done = 0;
1007 ui->secondary_prompt_depth--;
1008 gdb_assert (ui->secondary_prompt_depth >= 0);
93d6eb10 1009
1dbeed45
TT
1010 after_char_processing_hook = saved_after_char_processing_hook;
1011 saved_after_char_processing_hook = NULL;
2e03ee74 1012
1dbeed45
TT
1013 if (m_target_is_async_orig)
1014 target_async (1);
1015 }
2e03ee74 1016
1dbeed45 1017 DISABLE_COPY_AND_ASSIGN (gdb_readline_wrapper_cleanup);
2e03ee74 1018
1dbeed45 1019private:
2e03ee74 1020
95bc9f0b 1021 void (*m_handler_orig) (gdb::unique_xmalloc_ptr<char> &&);
1dbeed45 1022 int m_already_prompted_orig;
93d6eb10 1023
1dbeed45
TT
1024 /* Whether the target was async. */
1025 int m_target_is_async_orig;
2e03ee74 1026
4295e285 1027 /* Processing events may change the current UI. */
1dbeed45
TT
1028 scoped_restore_tmpl<struct ui *> m_save_ui;
1029};
1030
1031char *
1032gdb_readline_wrapper (const char *prompt)
1033{
1034 struct ui *ui = current_ui;
4295e285 1035
1dbeed45 1036 gdb_readline_wrapper_cleanup cleanup;
93d6eb10 1037
6e5d74e7
PA
1038 /* Display our prompt and prevent double prompt display. Don't pass
1039 down a NULL prompt, since that has special meaning for
1040 display_gdb_prompt -- it indicates a request to print the primary
1041 prompt, while we want a secondary prompt here. */
1042 display_gdb_prompt (prompt != NULL ? prompt : "");
3c216924
PA
1043 if (ui->command_editing)
1044 rl_already_prompted = 1;
2e03ee74 1045
362646f5 1046 if (after_char_processing_hook)
2e03ee74
DJ
1047 (*after_char_processing_hook) ();
1048 gdb_assert (after_char_processing_hook == NULL);
1049
e0dd0826 1050 while (gdb_do_one_event () >= 0)
2e03ee74
DJ
1051 if (gdb_readline_wrapper_done)
1052 break;
b4f5539f 1053
1dbeed45 1054 return gdb_readline_wrapper_result;
b4f5539f
TT
1055}
1056
9e0b60a8 1057\f
467d8519
TT
1058/* The current saved history number from operate-and-get-next.
1059 This is -1 if not valid. */
1060static int operate_saved_history = -1;
1061
1062/* This is put on the appropriate hook and helps operate-and-get-next
1063 do its work. */
b9362cc7 1064static void
5ae5f592 1065gdb_rl_operate_and_get_next_completion (void)
467d8519
TT
1066{
1067 int delta = where_history () - operate_saved_history;
5d502164 1068
467d8519
TT
1069 /* The `key' argument to rl_get_previous_history is ignored. */
1070 rl_get_previous_history (delta, 0);
1071 operate_saved_history = -1;
1072
1073 /* readline doesn't automatically update the display for us. */
12f4afab 1074 rl_redisplay ();
467d8519
TT
1075
1076 after_char_processing_hook = NULL;
1077 rl_pre_input_hook = NULL;
1078}
1079
1080/* This is a gdb-local readline command handler. It accepts the
1081 current command line (like RET does) and, if this command was taken
1082 from the history, arranges for the next command in the history to
1083 appear on the command line when the prompt returns.
1084 We ignore the arguments. */
1085static int
1086gdb_rl_operate_and_get_next (int count, int key)
1087{
b5686e99
MK
1088 int where;
1089
362646f5
AC
1090 /* Use the async hook. */
1091 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
467d8519 1092
b5686e99
MK
1093 /* Find the current line, and find the next line to use. */
1094 where = where_history();
1095
1fb2e2b5
PA
1096 if ((history_is_stifled () && (history_length >= history_max_entries))
1097 || (where >= history_length - 1))
b5686e99
MK
1098 operate_saved_history = where;
1099 else
1100 operate_saved_history = where + 1;
1101
467d8519
TT
1102 return rl_newline (1, key);
1103}
08b13bdd
PP
1104
1105/* Number of user commands executed during this session. */
1106
1107static int command_count = 0;
1108
1109/* Add the user command COMMAND to the input history list. */
1110
1111void
1112gdb_add_history (const char *command)
1113{
08b13bdd 1114 command_count++;
fc637f04
PP
1115
1116 if (history_remove_duplicates != 0)
1117 {
1118 int lookbehind;
1119 int lookbehind_threshold;
1120
1121 /* The lookbehind threshold for finding a duplicate history entry is
1122 bounded by command_count because we can't meaningfully delete
1123 history entries that are already stored in the history file since
1124 the history file is appended to. */
1125 if (history_remove_duplicates == -1
1126 || history_remove_duplicates > command_count)
1127 lookbehind_threshold = command_count;
1128 else
1129 lookbehind_threshold = history_remove_duplicates;
1130
1131 using_history ();
1132 for (lookbehind = 0; lookbehind < lookbehind_threshold; lookbehind++)
1133 {
1134 HIST_ENTRY *temp = previous_history ();
1135
1136 if (temp == NULL)
1137 break;
1138
1139 if (strcmp (temp->line, command) == 0)
1140 {
1141 HIST_ENTRY *prev = remove_history (where_history ());
1142 command_count--;
1143 free_history_entry (prev);
1144 break;
1145 }
1146 }
1147 using_history ();
1148 }
1149
1150 add_history (command);
08b13bdd
PP
1151}
1152
1153/* Safely append new history entries to the history file in a corruption-free
1154 way using an intermediate local history file. */
1155
1156static void
1157gdb_safe_append_history (void)
1158{
1159 int ret, saved_errno;
08b13bdd 1160
8cff8730
TT
1161 std::string local_history_filename
1162 = string_printf ("%s-gdb%ld~", history_filename, (long) getpid ());
08b13bdd 1163
8cff8730 1164 ret = rename (history_filename, local_history_filename.c_str ());
08b13bdd
PP
1165 saved_errno = errno;
1166 if (ret < 0 && saved_errno != ENOENT)
1167 {
1168 warning (_("Could not rename %s to %s: %s"),
8cff8730 1169 history_filename, local_history_filename.c_str (),
08b13bdd
PP
1170 safe_strerror (saved_errno));
1171 }
1172 else
1173 {
1174 if (ret < 0)
1175 {
1176 /* If the rename failed with ENOENT then either the global history
1177 file never existed in the first place or another GDB process is
1178 currently appending to it (and has thus temporarily renamed it).
1179 Since we can't distinguish between these two cases, we have to
1180 conservatively assume the first case and therefore must write out
1181 (not append) our known history to our local history file and try
1182 to move it back anyway. Otherwise a global history file would
1183 never get created! */
1184 gdb_assert (saved_errno == ENOENT);
8cff8730 1185 write_history (local_history_filename.c_str ());
08b13bdd
PP
1186 }
1187 else
1188 {
8cff8730 1189 append_history (command_count, local_history_filename.c_str ());
2093d2d3 1190 if (history_is_stifled ())
8cff8730
TT
1191 history_truncate_file (local_history_filename.c_str (),
1192 history_max_entries);
08b13bdd
PP
1193 }
1194
8cff8730 1195 ret = rename (local_history_filename.c_str (), history_filename);
08b13bdd
PP
1196 saved_errno = errno;
1197 if (ret < 0 && saved_errno != EEXIST)
1198 warning (_("Could not rename %s to %s: %s"),
8cff8730 1199 local_history_filename.c_str (), history_filename,
08b13bdd
PP
1200 safe_strerror (saved_errno));
1201 }
08b13bdd
PP
1202}
1203
b69d38af
PA
1204/* Read one line from the command input stream `instream' into a local
1205 static buffer. The buffer is made bigger as necessary. Returns
1206 the address of the start of the line.
9e0b60a8 1207
d318976c 1208 NULL is returned for end of file.
9e0b60a8 1209
b69d38af
PA
1210 This routine either uses fancy command line editing or simple input
1211 as the user has requested. */
10689f25 1212
d318976c 1213char *
89fbedf3 1214command_line_input (const char *prompt_arg, const char *annotation_suffix)
9e0b60a8 1215{
b69d38af
PA
1216 static struct buffer cmd_line_buffer;
1217 static int cmd_line_buffer_initialized;
f38d3ad1 1218 struct ui *ui = current_ui;
38bcc89d 1219 const char *prompt = prompt_arg;
b69d38af 1220 char *cmd;
268a799a 1221 int from_tty = ui->instream == ui->stdin_stream;
d318976c
FN
1222
1223 /* The annotation suffix must be non-NULL. */
1224 if (annotation_suffix == NULL)
1225 annotation_suffix = "";
9e0b60a8 1226
268a799a 1227 if (from_tty && annotation_level > 1)
d318976c 1228 {
38bcc89d
SM
1229 char *local_prompt;
1230
224c3ddb
SM
1231 local_prompt
1232 = (char *) alloca ((prompt == NULL ? 0 : strlen (prompt))
1233 + strlen (annotation_suffix) + 40);
38bcc89d 1234 if (prompt == NULL)
d318976c
FN
1235 local_prompt[0] = '\0';
1236 else
38bcc89d 1237 strcpy (local_prompt, prompt);
d318976c
FN
1238 strcat (local_prompt, "\n\032\032");
1239 strcat (local_prompt, annotation_suffix);
1240 strcat (local_prompt, "\n");
38bcc89d
SM
1241
1242 prompt = local_prompt;
d318976c 1243 }
9e0b60a8 1244
b69d38af 1245 if (!cmd_line_buffer_initialized)
9e0b60a8 1246 {
b69d38af
PA
1247 buffer_init (&cmd_line_buffer);
1248 cmd_line_buffer_initialized = 1;
9e0b60a8 1249 }
9e0b60a8 1250
b69d38af
PA
1251 /* Starting a new command line. */
1252 cmd_line_buffer.used_size = 0;
9e0b60a8 1253
6aa899ce 1254#ifdef SIGTSTP
d318976c 1255 if (job_control)
6aa899ce 1256 signal (SIGTSTP, handle_sigtstp);
d318976c
FN
1257#endif
1258
1259 while (1)
9e0b60a8 1260 {
2139e8dc 1261 gdb::unique_xmalloc_ptr<char> rl;
b69d38af 1262
371d5dec
MS
1263 /* Make sure that all output has been output. Some machines may
1264 let you get away with leaving out some of the gdb_flush, but
1265 not all. */
d318976c
FN
1266 wrap_here ("");
1267 gdb_flush (gdb_stdout);
1268 gdb_flush (gdb_stderr);
1269
6caa91b6 1270 if (!source_file_name.empty ())
637537d0 1271 ++source_line_number;
d318976c 1272
268a799a 1273 if (from_tty && annotation_level > 1)
d318976c 1274 {
306d9ac5
DC
1275 puts_unfiltered ("\n\032\032pre-");
1276 puts_unfiltered (annotation_suffix);
1277 puts_unfiltered ("\n");
d318976c
FN
1278 }
1279
1280 /* Don't use fancy stuff if not talking to stdin. */
268a799a
PA
1281 if (deprecated_readline_hook
1282 && from_tty
1283 && input_interactive_p (current_ui))
d318976c 1284 {
2139e8dc 1285 rl.reset ((*deprecated_readline_hook) (prompt));
d318976c 1286 }
268a799a
PA
1287 else if (command_editing_p
1288 && from_tty
1289 && input_interactive_p (current_ui))
d318976c 1290 {
2139e8dc 1291 rl.reset (gdb_readline_wrapper (prompt));
d318976c 1292 }
9e0b60a8 1293 else
d318976c 1294 {
2139e8dc 1295 rl.reset (gdb_readline_no_editing (prompt));
d318976c 1296 }
9e0b60a8 1297
2139e8dc 1298 cmd = handle_line_of_input (&cmd_line_buffer, rl.get (),
89fbedf3 1299 0, annotation_suffix);
b69d38af 1300 if (cmd == (char *) EOF)
d318976c 1301 {
b69d38af 1302 cmd = NULL;
d318976c 1303 break;
9e0b60a8 1304 }
b69d38af 1305 if (cmd != NULL)
d318976c 1306 break;
9e0b60a8 1307
6e5d74e7
PA
1308 /* Got partial input. I.e., got a line that ends with a
1309 continuation character (backslash). Suppress printing the
1310 prompt again. */
38bcc89d 1311 prompt = NULL;
d318976c 1312 }
9e0b60a8 1313
6aa899ce 1314#ifdef SIGTSTP
d318976c 1315 if (job_control)
6aa899ce 1316 signal (SIGTSTP, SIG_DFL);
d318976c 1317#endif
9e0b60a8 1318
b69d38af 1319 return cmd;
9e0b60a8
JM
1320}
1321\f
c61b06a1 1322/* See top.h. */
9e0b60a8 1323void
c61b06a1 1324print_gdb_version (struct ui_file *stream, bool interactive)
9e0b60a8
JM
1325{
1326 /* From GNU coding standards, first line is meant to be easy for a
1327 program to parse, and is just canonical program name and version
371d5dec 1328 number, which starts after last space. */
9e0b60a8 1329
d47032b7
TT
1330 ui_file_style style;
1331 if (interactive)
1332 {
1333 ui_file_style nstyle = { ui_file_style::MAGENTA, ui_file_style::NONE,
1334 ui_file_style::BOLD };
1335 style = nstyle;
1336 }
1337 fprintf_styled (stream, style, "GNU gdb %s%s\n", PKGVERSION, version);
9e0b60a8 1338
371d5dec 1339 /* Second line is a copyright notice. */
9e0b60a8 1340
3e43a32a 1341 fprintf_filtered (stream,
66d91b39 1342 "Copyright (C) 2019 Free Software Foundation, Inc.\n");
9e0b60a8
JM
1343
1344 /* Following the copyright is a brief statement that the program is
1345 free software, that users are free to copy and change it on
1346 certain conditions, that it is covered by the GNU GPL, and that
371d5dec 1347 there is no warranty. */
9e0b60a8
JM
1348
1349 fprintf_filtered (stream, "\
3e43a32a
MS
1350License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\
1351\nThis is free software: you are free to change and redistribute it.\n\
c61b06a1
TT
1352There is NO WARRANTY, to the extent permitted by law.");
1353
1354 if (!interactive)
1355 return;
1356
1357 fprintf_filtered (stream, ("\nType \"show copying\" and "
1358 "\"show warranty\" for details.\n"));
9e0b60a8 1359
371d5dec 1360 /* After the required info we print the configuration information. */
9e0b60a8
JM
1361
1362 fprintf_filtered (stream, "This GDB was configured as \"");
6314a349 1363 if (strcmp (host_name, target_name) != 0)
9e0b60a8 1364 {
3e43a32a
MS
1365 fprintf_filtered (stream, "--host=%s --target=%s",
1366 host_name, target_name);
9e0b60a8
JM
1367 }
1368 else
1369 {
1370 fprintf_filtered (stream, "%s", host_name);
1371 }
c61b06a1
TT
1372 fprintf_filtered (stream, "\".\n");
1373
1374 fprintf_filtered (stream, _("Type \"show configuration\" "
1375 "for configuration details.\n"));
c16158bc
JM
1376
1377 if (REPORT_BUGS_TO[0])
1378 {
6eaaf48b 1379 fprintf_filtered (stream,
c61b06a1 1380 _("For bug reporting instructions, please see:\n"));
1cf55f60 1381 fprintf_filtered (stream, "%s.\n", REPORT_BUGS_TO);
c16158bc 1382 }
1cf55f60
PM
1383 fprintf_filtered (stream,
1384 _("Find the GDB manual and other documentation \
c61b06a1
TT
1385resources online at:\n <http://www.gnu.org/software/gdb/documentation/>."));
1386 fprintf_filtered (stream, "\n\n");
1cf55f60 1387 fprintf_filtered (stream, _("For help, type \"help\".\n"));
7734102d
EZ
1388 fprintf_filtered (stream,
1389 _("Type \"apropos word\" to search for commands \
1390related to \"word\"."));
9e0b60a8 1391}
6eaaf48b
EZ
1392
1393/* Print the details of GDB build-time configuration. */
1394void
1395print_gdb_configuration (struct ui_file *stream)
1396{
1397 fprintf_filtered (stream, _("\
1398This GDB was configured as follows:\n\
1399 configure --host=%s --target=%s\n\
1400"), host_name, target_name);
1401 fprintf_filtered (stream, _("\
1402 --with-auto-load-dir=%s\n\
1403 --with-auto-load-safe-path=%s\n\
1404"), AUTO_LOAD_DIR, AUTO_LOAD_SAFE_PATH);
1405#if HAVE_LIBEXPAT
1406 fprintf_filtered (stream, _("\
1407 --with-expat\n\
1408"));
1409#else
1410 fprintf_filtered (stream, _("\
1411 --without-expat\n\
1412"));
1413#endif
1414 if (GDB_DATADIR[0])
1415 fprintf_filtered (stream, _("\
1416 --with-gdb-datadir=%s%s\n\
1417"), GDB_DATADIR, GDB_DATADIR_RELOCATABLE ? " (relocatable)" : "");
1418#ifdef ICONV_BIN
1419 fprintf_filtered (stream, _("\
1420 --with-iconv-bin=%s%s\n\
1421"), ICONV_BIN, ICONV_BIN_RELOCATABLE ? " (relocatable)" : "");
1422#endif
1423 if (JIT_READER_DIR[0])
1424 fprintf_filtered (stream, _("\
1425 --with-jit-reader-dir=%s%s\n\
1426"), JIT_READER_DIR, JIT_READER_DIR_RELOCATABLE ? " (relocatable)" : "");
1427#if HAVE_LIBUNWIND_IA64_H
1428 fprintf_filtered (stream, _("\
1429 --with-libunwind-ia64\n\
1430"));
1431#else
1432 fprintf_filtered (stream, _("\
1433 --without-libunwind-ia64\n\
1434"));
1435#endif
1436#if HAVE_LIBLZMA
1437 fprintf_filtered (stream, _("\
1438 --with-lzma\n\
1439"));
1440#else
1441 fprintf_filtered (stream, _("\
1442 --without-lzma\n\
1443"));
1444#endif
9bd8e0b0
EZ
1445#if HAVE_LIBBABELTRACE
1446 fprintf_filtered (stream, _("\
1447 --with-babeltrace\n\
1448"));
1449#else
1450 fprintf_filtered (stream, _("\
1451 --without-babeltrace\n\
1452"));
1453#endif
1454#if HAVE_LIBIPT
1455 fprintf_filtered (stream, _("\
1456 --with-intel-pt\n\
1457"));
1458#else
1459 fprintf_filtered (stream, _("\
1460 --without-intel-pt\n\
1461"));
1462#endif
9bd8e0b0
EZ
1463#if HAVE_LIBMPFR
1464 fprintf_filtered (stream, _("\
1465 --with-mpfr\n\
1466"));
1467#else
1468 fprintf_filtered (stream, _("\
1469 --without-mpfr\n\
1470"));
1471#endif
6eaaf48b
EZ
1472#ifdef WITH_PYTHON_PATH
1473 fprintf_filtered (stream, _("\
1474 --with-python=%s%s\n\
1475"), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
50c7c5b8
ДП
1476#else
1477 fprintf_filtered (stream, _("\
1478 --without-python\n\
1479"));
6eaaf48b 1480#endif
97d66cc6
EZ
1481#if HAVE_GUILE
1482 fprintf_filtered (stream, _("\
1483 --with-guile\n\
1484"));
1485#else
1486 fprintf_filtered (stream, _("\
1487 --without-guile\n\
1488"));
1489#endif
189b8c2e
ST
1490#if HAVE_SOURCE_HIGHLIGHT
1491 fprintf_filtered (stream, _("\
1492 --enable-source-highlight\n\
1493"));
1494#else
1495 fprintf_filtered (stream, _("\
1496 --disable-source-highlight\n\
1497"));
1498#endif
6eaaf48b
EZ
1499#ifdef RELOC_SRCDIR
1500 fprintf_filtered (stream, _("\
1501 --with-relocated-sources=%s\n\
1502"), RELOC_SRCDIR);
1503#endif
1504 if (DEBUGDIR[0])
1505 fprintf_filtered (stream, _("\
1506 --with-separate-debug-dir=%s%s\n\
1507"), DEBUGDIR, DEBUGDIR_RELOCATABLE ? " (relocatable)" : "");
1508 if (TARGET_SYSTEM_ROOT[0])
1509 fprintf_filtered (stream, _("\
1510 --with-sysroot=%s%s\n\
1511"), TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_RELOCATABLE ? " (relocatable)" : "");
1512 if (SYSTEM_GDBINIT[0])
1513 fprintf_filtered (stream, _("\
1514 --with-system-gdbinit=%s%s\n\
1515"), SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE ? " (relocatable)" : "");
48d1d6f5
EZ
1516 /* We assume "relocatable" will be printed at least once, thus we always
1517 print this text. It's a reasonably safe assumption for now. */
1518 fprintf_filtered (stream, _("\n\
1519(\"Relocatable\" means the directory can be moved with the GDB installation\n\
1520tree, and GDB will still find it.)\n\
1521"));
6eaaf48b 1522}
9e0b60a8 1523\f
95298e72 1524
ab821bc6
PA
1525/* The current top level prompt, settable with "set prompt", and/or
1526 with the python `gdb.prompt_hook' hook. */
1527static char *top_prompt;
9e0b60a8 1528
ab821bc6 1529/* Access method for the GDB prompt string. */
95298e72
PM
1530
1531char *
ab821bc6 1532get_prompt (void)
95298e72 1533{
ab821bc6 1534 return top_prompt;
95298e72
PM
1535}
1536
ab821bc6 1537/* Set method for the GDB prompt string. */
95298e72
PM
1538
1539void
ab821bc6 1540set_prompt (const char *s)
95298e72 1541{
ab821bc6 1542 char *p = xstrdup (s);
95298e72 1543
ab821bc6
PA
1544 xfree (top_prompt);
1545 top_prompt = p;
9e0b60a8 1546}
9e0b60a8 1547\f
c5aa993b 1548
b0abbc58 1549struct qt_args
9e0b60a8 1550{
b0abbc58
JJ
1551 int from_tty;
1552};
9e0b60a8 1553
54a012c9
PA
1554/* Callback for iterate_over_inferiors. Kills or detaches the given
1555 inferior, depending on how we originally gained control of it. */
1556
1557static int
1558kill_or_detach (struct inferior *inf, void *args)
1559{
19ba03f4 1560 struct qt_args *qt = (struct qt_args *) args;
54a012c9 1561
6c95b8df
PA
1562 if (inf->pid == 0)
1563 return 0;
1564
00431a78 1565 thread_info *thread = any_thread_of_inferior (inf);
b8fa0bfa 1566 if (thread != NULL)
9e0b60a8 1567 {
00431a78 1568 switch_to_thread (thread);
c35b1492
PA
1569
1570 /* Leave core files alone. */
1571 if (target_has_execution)
1572 {
1573 if (inf->attach_flag)
6e1e1966 1574 target_detach (inf, qt->from_tty);
c35b1492
PA
1575 else
1576 target_kill ();
1577 }
9e0b60a8
JM
1578 }
1579
54a012c9
PA
1580 return 0;
1581}
1582
b8fa0bfa
PA
1583/* Callback for iterate_over_inferiors. Prints info about what GDB
1584 will do to each inferior on a "quit". ARG points to a struct
1585 ui_out where output is to be collected. */
1586
1587static int
1588print_inferior_quit_action (struct inferior *inf, void *arg)
1589{
19ba03f4 1590 struct ui_file *stb = (struct ui_file *) arg;
b8fa0bfa 1591
6c95b8df
PA
1592 if (inf->pid == 0)
1593 return 0;
1594
b8fa0bfa
PA
1595 if (inf->attach_flag)
1596 fprintf_filtered (stb,
1597 _("\tInferior %d [%s] will be detached.\n"), inf->num,
a068643d 1598 target_pid_to_str (ptid_t (inf->pid)).c_str ());
b8fa0bfa
PA
1599 else
1600 fprintf_filtered (stb,
1601 _("\tInferior %d [%s] will be killed.\n"), inf->num,
a068643d 1602 target_pid_to_str (ptid_t (inf->pid)).c_str ());
b8fa0bfa
PA
1603
1604 return 0;
1605}
1606
1607/* If necessary, make the user confirm that we should quit. Return
1608 non-zero if we should quit, zero if we shouldn't. */
1609
1610int
1611quit_confirm (void)
1612{
b8fa0bfa
PA
1613 /* Don't even ask if we're only debugging a core file inferior. */
1614 if (!have_live_inferiors ())
1615 return 1;
1616
1617 /* Build the query string as a single string. */
d7e74731 1618 string_file stb;
b8fa0bfa 1619
d7e74731
PA
1620 stb.puts (_("A debugging session is active.\n\n"));
1621 iterate_over_inferiors (print_inferior_quit_action, &stb);
1622 stb.puts (_("\nQuit anyway? "));
7b01d34b 1623
d7e74731 1624 return query ("%s", stb.c_str ());
b8fa0bfa
PA
1625}
1626
18206ca3
PP
1627/* Prepare to exit GDB cleanly by undoing any changes made to the
1628 terminal so that we leave the terminal in the state we acquired it. */
1629
1630static void
1631undo_terminal_modifications_before_exit (void)
1632{
3c216924
PA
1633 struct ui *saved_top_level = current_ui;
1634
223ffa71 1635 target_terminal::ours ();
3c216924
PA
1636
1637 current_ui = main_ui;
1638
18206ca3
PP
1639#if defined(TUI)
1640 tui_disable ();
1641#endif
3c216924
PA
1642 gdb_disable_readline ();
1643
1644 current_ui = saved_top_level;
18206ca3
PP
1645}
1646
1647
b0abbc58
JJ
1648/* Quit without asking for confirmation. */
1649
1650void
36cf1806 1651quit_force (int *exit_arg, int from_tty)
b0abbc58
JJ
1652{
1653 int exit_code = 0;
365c70b1 1654 struct qt_args qt;
b0abbc58 1655
18206ca3
PP
1656 undo_terminal_modifications_before_exit ();
1657
7734102d 1658 /* An optional expression may be used to cause gdb to terminate with the
371d5dec 1659 value of that expression. */
36cf1806
TT
1660 if (exit_arg)
1661 exit_code = *exit_arg;
4b0ad762
AS
1662 else if (return_child_result)
1663 exit_code = return_child_result_value;
b0abbc58 1664
365c70b1
JJ
1665 qt.from_tty = from_tty;
1666
b0abbc58 1667 /* We want to handle any quit errors and exit regardless. */
2f9d54cf
PA
1668
1669 /* Get out of tfind mode, and kill or detach all inferiors. */
a70b8144 1670 try
2f9d54cf
PA
1671 {
1672 disconnect_tracing ();
1673 iterate_over_inferiors (kill_or_detach, &qt);
1674 }
230d2906 1675 catch (const gdb_exception &ex)
492d29ea
PA
1676 {
1677 exception_print (gdb_stderr, ex);
1678 }
2f9d54cf
PA
1679
1680 /* Give all pushed targets a chance to do minimal cleanup, and pop
1681 them all out. */
a70b8144 1682 try
2f9d54cf
PA
1683 {
1684 pop_all_targets ();
1685 }
230d2906 1686 catch (const gdb_exception &ex)
492d29ea
PA
1687 {
1688 exception_print (gdb_stderr, ex);
1689 }
2f9d54cf
PA
1690
1691 /* Save the history information if it is appropriate to do so. */
a70b8144 1692 try
2f9d54cf 1693 {
268a799a
PA
1694 if (write_history_p && history_filename)
1695 {
1696 struct ui *ui;
1697 int save = 0;
1698
1699 /* History is currently shared between all UIs. If there's
1700 any UI with a terminal, save history. */
1701 ALL_UIS (ui)
1702 {
1703 if (input_interactive_p (ui))
1704 {
1705 save = 1;
1706 break;
1707 }
1708 }
1709
1710 if (save)
1711 gdb_safe_append_history ();
1712 }
2f9d54cf 1713 }
230d2906 1714 catch (const gdb_exception &ex)
492d29ea
PA
1715 {
1716 exception_print (gdb_stderr, ex);
1717 }
2f9d54cf 1718
9d1447e0
SDJ
1719 /* Destroy any values currently allocated now instead of leaving it
1720 to global destructors, because that may be too late. For
1721 example, the destructors of xmethod values call into the Python
1722 runtime, which is finalized via a final cleanup. */
1723 finalize_values ();
1724
2f9d54cf 1725 /* Do any final cleanups before exiting. */
a70b8144 1726 try
2f9d54cf 1727 {
fe7b42e5 1728 do_final_cleanups ();
2f9d54cf 1729 }
230d2906 1730 catch (const gdb_exception &ex)
492d29ea
PA
1731 {
1732 exception_print (gdb_stderr, ex);
1733 }
b0abbc58 1734
9e0b60a8
JM
1735 exit (exit_code);
1736}
1737
268a799a
PA
1738/* The value of the "interactive-mode" setting. */
1739static enum auto_boolean interactive_mode = AUTO_BOOLEAN_AUTO;
9e0b60a8 1740
268a799a
PA
1741/* Implement the "show interactive-mode" option. */
1742
1743static void
1744show_interactive_mode (struct ui_file *file, int from_tty,
1745 struct cmd_list_element *c,
1746 const char *value)
9e0b60a8 1747{
268a799a
PA
1748 if (interactive_mode == AUTO_BOOLEAN_AUTO)
1749 fprintf_filtered (file, "Debugger's interactive mode "
1750 "is %s (currently %s).\n",
d9de1fe3 1751 value, input_interactive_p (current_ui) ? "on" : "off");
268a799a
PA
1752 else
1753 fprintf_filtered (file, "Debugger's interactive mode is %s.\n", value);
1754}
1755
1756/* Returns whether GDB is running on an interactive terminal. */
f38d3ad1 1757
268a799a
PA
1758int
1759input_interactive_p (struct ui *ui)
1760{
c63a1f86
JK
1761 if (batch_flag)
1762 return 0;
1763
268a799a
PA
1764 if (interactive_mode != AUTO_BOOLEAN_AUTO)
1765 return interactive_mode == AUTO_BOOLEAN_TRUE;
698ba934 1766
268a799a 1767 return ui->input_interactive_p;
9e0b60a8
JM
1768}
1769\f
9e0b60a8 1770static void
0b39b52e 1771dont_repeat_command (const char *ignored, int from_tty)
9e0b60a8 1772{
dc7eb48e
PA
1773 /* Can't call dont_repeat here because we're not necessarily reading
1774 from stdin. */
1775 *saved_command_line = 0;
9e0b60a8
JM
1776}
1777\f
1778/* Functions to manipulate command line editing control variables. */
1779
1780/* Number of commands to print in each call to show_commands. */
1781#define Hist_print 10
d318976c 1782void
85c4be7c 1783show_commands (const char *args, int from_tty)
9e0b60a8
JM
1784{
1785 /* Index for history commands. Relative to history_base. */
1786 int offset;
1787
1788 /* Number of the history entry which we are planning to display next.
1789 Relative to history_base. */
1790 static int num = 0;
1791
9e0b60a8 1792 /* Print out some of the commands from the command history. */
9e0b60a8
JM
1793
1794 if (args)
1795 {
1796 if (args[0] == '+' && args[1] == '\0')
1797 /* "info editing +" should print from the stored position. */
1798 ;
1799 else
1800 /* "info editing <exp>" should print around command number <exp>. */
0e828ed1 1801 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
9e0b60a8
JM
1802 }
1803 /* "show commands" means print the last Hist_print commands. */
1804 else
1805 {
840a9a1f 1806 num = history_length - Hist_print;
9e0b60a8
JM
1807 }
1808
1809 if (num < 0)
1810 num = 0;
1811
1812 /* If there are at least Hist_print commands, we want to display the last
1813 Hist_print rather than, say, the last 6. */
840a9a1f 1814 if (history_length - num < Hist_print)
9e0b60a8 1815 {
840a9a1f 1816 num = history_length - Hist_print;
9e0b60a8
JM
1817 if (num < 0)
1818 num = 0;
1819 }
1820
840a9a1f
PA
1821 for (offset = num;
1822 offset < num + Hist_print && offset < history_length;
1823 offset++)
9e0b60a8
JM
1824 {
1825 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 1826 (history_get (history_base + offset))->line);
9e0b60a8
JM
1827 }
1828
1829 /* The next command we want to display is the next one that we haven't
1830 displayed yet. */
1831 num += Hist_print;
1832
1833 /* If the user repeats this command with return, it should do what
1834 "show commands +" does. This is unnecessary if arg is null,
1835 because "show commands +" is not useful after "show commands". */
1836 if (from_tty && args)
85c4be7c 1837 set_repeat_arguments ("+");
9e0b60a8
JM
1838}
1839
ebfd00d2 1840/* Update the size of our command history file to HISTORY_SIZE.
840a9a1f 1841
ebfd00d2 1842 A HISTORY_SIZE of -1 stands for unlimited. */
840a9a1f 1843
ebfd00d2
PP
1844static void
1845set_readline_history_size (int history_size)
1846{
1847 gdb_assert (history_size >= -1);
840a9a1f 1848
ebfd00d2 1849 if (history_size == -1)
840a9a1f 1850 unstifle_history ();
883b9c6c 1851 else
ebfd00d2
PP
1852 stifle_history (history_size);
1853}
1854
1855/* Called by do_setshow_command. */
1856static void
eb4c3f4a
TT
1857set_history_size_command (const char *args,
1858 int from_tty, struct cmd_list_element *c)
ebfd00d2
PP
1859{
1860 set_readline_history_size (history_size_setshow_var);
9e0b60a8
JM
1861}
1862
d318976c 1863void
981a3fb3 1864set_history (const char *args, int from_tty)
9e0b60a8 1865{
3e43a32a
MS
1866 printf_unfiltered (_("\"set history\" must be followed "
1867 "by the name of a history subcommand.\n"));
635c7e8a 1868 help_list (sethistlist, "set history ", all_commands, gdb_stdout);
9e0b60a8
JM
1869}
1870
d318976c 1871void
981a3fb3 1872show_history (const char *args, int from_tty)
9e0b60a8
JM
1873{
1874 cmd_show_list (showhistlist, from_tty, "");
1875}
1876
491144b5 1877bool info_verbose = false; /* Default verbose msgs off. */
9e0b60a8 1878
94f2c730 1879/* Called by do_set_command. An elaborate joke. */
d318976c 1880void
eb4c3f4a 1881set_verbose (const char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8 1882{
6f937416 1883 const char *cmdname = "verbose";
9e0b60a8
JM
1884 struct cmd_list_element *showcmd;
1885
1886 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1427fe5e 1887 gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
9e0b60a8 1888
94f2c730
PW
1889 if (c->doc && c->doc_allocated)
1890 xfree ((char *) c->doc);
1891 if (showcmd->doc && showcmd->doc_allocated)
1892 xfree ((char *) showcmd->doc);
9e0b60a8
JM
1893 if (info_verbose)
1894 {
94f2c730
PW
1895 c->doc = _("Set verbose printing of informational messages.");
1896 showcmd->doc = _("Show verbose printing of informational messages.");
9e0b60a8
JM
1897 }
1898 else
1899 {
94f2c730
PW
1900 c->doc = _("Set verbosity.");
1901 showcmd->doc = _("Show verbosity.");
9e0b60a8 1902 }
94f2c730
PW
1903 c->doc_allocated = 0;
1904 showcmd->doc_allocated = 0;
9e0b60a8
JM
1905}
1906
9e0b60a8 1907/* Init the history buffer. Note that we are called after the init file(s)
371d5dec
MS
1908 have been read so that the user can change the history file via his
1909 .gdbinit file (for instance). The GDBHISTFILE environment variable
1910 overrides all of this. */
9e0b60a8
JM
1911
1912void
fba45db2 1913init_history (void)
9e0b60a8 1914{
b5a9bfbe 1915 const char *tmpenv;
9e0b60a8 1916
b58c513b 1917 tmpenv = getenv ("GDBHISTSIZE");
9e0b60a8 1918 if (tmpenv)
840a9a1f 1919 {
bc460514 1920 long var;
0fc26caf 1921 int saved_errno;
bc460514
PP
1922 char *endptr;
1923
1924 tmpenv = skip_spaces (tmpenv);
0fc26caf 1925 errno = 0;
bc460514 1926 var = strtol (tmpenv, &endptr, 10);
0fc26caf 1927 saved_errno = errno;
bc460514
PP
1928 endptr = skip_spaces (endptr);
1929
1930 /* If GDBHISTSIZE is non-numeric then ignore it. If GDBHISTSIZE is the
1931 empty string, a negative number or a huge positive number (larger than
1932 INT_MAX) then set the history size to unlimited. Otherwise set our
1933 history size to the number we have read. This behavior is consistent
1934 with how bash handles HISTSIZE. */
1935 if (*endptr != '\0')
1936 ;
1937 else if (*tmpenv == '\0'
1938 || var < 0
0fc26caf
PP
1939 || var > INT_MAX
1940 /* On targets where INT_MAX == LONG_MAX, we have to look at
1941 errno after calling strtol to distinguish between a value that
1942 is exactly INT_MAX and an overflowing value that was clamped
1943 to INT_MAX. */
1944 || (var == INT_MAX && saved_errno == ERANGE))
bc460514
PP
1945 history_size_setshow_var = -1;
1946 else
1947 history_size_setshow_var = var;
840a9a1f 1948 }
bc460514
PP
1949
1950 /* If neither the init file nor GDBHISTSIZE has set a size yet, pick the
1951 default. */
1952 if (history_size_setshow_var == -2)
840a9a1f 1953 history_size_setshow_var = 256;
9e0b60a8 1954
ebfd00d2 1955 set_readline_history_size (history_size_setshow_var);
9e0b60a8
JM
1956
1957 tmpenv = getenv ("GDBHISTFILE");
1958 if (tmpenv)
1b36a34b 1959 history_filename = xstrdup (tmpenv);
c5aa993b
JM
1960 else if (!history_filename)
1961 {
1962 /* We include the current directory so that if the user changes
1963 directories the file written will be the same as the one
1964 that was read. */
a0b3c4fd 1965#ifdef __MSDOS__
eb2f494a 1966 /* No leading dots in file names are allowed on MSDOS. */
1754f103
MK
1967 history_filename = concat (current_directory, "/_gdb_history",
1968 (char *)NULL);
a0b3c4fd 1969#else
1754f103
MK
1970 history_filename = concat (current_directory, "/.gdb_history",
1971 (char *)NULL);
a0b3c4fd 1972#endif
c5aa993b 1973 }
9e0b60a8
JM
1974 read_history (history_filename);
1975}
1976
920d2a44 1977static void
ab821bc6
PA
1978show_prompt (struct ui_file *file, int from_tty,
1979 struct cmd_list_element *c, const char *value)
920d2a44
AC
1980{
1981 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1982}
1983
3c216924
PA
1984/* "set editing" command. */
1985
1986static void
eb4c3f4a 1987set_editing (const char *args, int from_tty, struct cmd_list_element *c)
3c216924
PA
1988{
1989 change_line_handler (set_editing_cmd_var);
1990 /* Update the control variable so that MI's =cmd-param-changed event
1991 shows the correct value. */
1992 set_editing_cmd_var = current_ui->command_editing;
1993}
1994
920d2a44 1995static void
3c216924
PA
1996show_editing (struct ui_file *file, int from_tty,
1997 struct cmd_list_element *c, const char *value)
920d2a44 1998{
3e43a32a
MS
1999 fprintf_filtered (file, _("Editing of command lines as "
2000 "they are typed is %s.\n"),
3c216924 2001 current_ui->command_editing ? _("on") : _("off"));
920d2a44
AC
2002}
2003
2004static void
2005show_annotation_level (struct ui_file *file, int from_tty,
2006 struct cmd_list_element *c, const char *value)
2007{
2008 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
2009}
2010
2011static void
2012show_exec_done_display_p (struct ui_file *file, int from_tty,
2013 struct cmd_list_element *c, const char *value)
2014{
3e43a32a
MS
2015 fprintf_filtered (file, _("Notification of completion for "
2016 "asynchronous execution commands is %s.\n"),
920d2a44
AC
2017 value);
2018}
6dea1fbd 2019
8d551b02
DE
2020/* New values of the "data-directory" parameter are staged here. */
2021static char *staged_gdb_datadir;
2022
6dea1fbd
JK
2023/* "set" command for the gdb_datadir configuration variable. */
2024
2025static void
eb4c3f4a 2026set_gdb_datadir (const char *args, int from_tty, struct cmd_list_element *c)
6dea1fbd 2027{
8d551b02 2028 set_gdb_data_directory (staged_gdb_datadir);
76727919 2029 gdb::observers::gdb_datadir_changed.notify ();
6dea1fbd
JK
2030}
2031
8d551b02
DE
2032/* "show" command for the gdb_datadir configuration variable. */
2033
2034static void
2035show_gdb_datadir (struct ui_file *file, int from_tty,
2036 struct cmd_list_element *c, const char *value)
2037{
2038 fprintf_filtered (file, _("GDB's data directory is \"%s\".\n"),
f2aec7f6 2039 gdb_datadir.c_str ());
8d551b02
DE
2040}
2041
97c85fc6 2042static void
eb4c3f4a
TT
2043set_history_filename (const char *args,
2044 int from_tty, struct cmd_list_element *c)
97c85fc6
MB
2045{
2046 /* We include the current directory so that if the user changes
2047 directories the file written will be the same as the one
2048 that was read. */
2049 if (!IS_ABSOLUTE_PATH (history_filename))
2050 history_filename = reconcat (history_filename, current_directory, "/",
2051 history_filename, (char *) NULL);
2052}
2053
7734102d
EZ
2054static void
2055init_gdb_version_vars (void)
2056{
2057 struct internalvar *major_version_var = create_internalvar ("_gdb_major");
2058 struct internalvar *minor_version_var = create_internalvar ("_gdb_minor");
2059 int vmajor = 0, vminor = 0, vrevision = 0;
2060 sscanf (version, "%d.%d.%d", &vmajor, &vminor, &vrevision);
2061 set_internalvar_integer (major_version_var, vmajor);
2062 set_internalvar_integer (minor_version_var, vminor + (vrevision > 0));
2063}
2064
9e0b60a8 2065static void
fba45db2 2066init_main (void)
9e0b60a8 2067{
60eb5395
PA
2068 struct cmd_list_element *c;
2069
ab821bc6
PA
2070 /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
2071 the DEFAULT_PROMPT is. */
2072 set_prompt (DEFAULT_PROMPT);
2073
9e0b60a8
JM
2074 /* Set the important stuff up for command editing. */
2075 command_editing_p = 1;
9e0b60a8 2076 history_expansion_p = 0;
452a569e 2077 write_history_p = 0;
9e0b60a8
JM
2078
2079 /* Setup important stuff for command line editing. */
67c296a2 2080 rl_completion_word_break_hook = gdb_completion_word_break_characters;
eb3ff9a5 2081 rl_attempted_completion_function = gdb_rl_attempted_completion_function;
67cb5b2d 2082 set_rl_completer_word_break_characters (default_word_break_characters ());
d318976c 2083 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
82083d6d 2084 rl_completion_display_matches_hook = cli_display_match_list;
9e0b60a8 2085 rl_readline_name = "gdb";
7cb3ec5e 2086 rl_terminal_name = getenv ("TERM");
9e0b60a8 2087
467d8519
TT
2088 /* The name for this defun comes from Bash, where it originated.
2089 15 is Control-o, the same binding this function has in Bash. */
2090 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
2091
4d28ad1e 2092 add_setshow_string_cmd ("prompt", class_support,
ab821bc6 2093 &top_prompt,
590042fc
PW
2094 _("Set gdb's prompt."),
2095 _("Show gdb's prompt."),
ab821bc6
PA
2096 NULL, NULL,
2097 show_prompt,
4d28ad1e 2098 &setlist, &showlist);
9e0b60a8 2099
1bedd215 2100 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
3e43a32a
MS
2101Don't repeat this command.\nPrimarily \
2102used inside of user-defined commands that should not be repeated when\n\
1bedd215 2103hitting return."));
9e0b60a8 2104
5bf193a2 2105 add_setshow_boolean_cmd ("editing", class_support,
3c216924 2106 &set_editing_cmd_var, _("\
5bf193a2
AC
2107Set editing of command lines as they are typed."), _("\
2108Show editing of command lines as they are typed."), _("\
9e0b60a8
JM
2109Use \"on\" to enable the editing, and \"off\" to disable it.\n\
2110Without an argument, command line editing is enabled. To edit, use\n\
5bf193a2 2111EMACS-like or VI-like commands like control-P or ESC."),
3c216924
PA
2112 set_editing,
2113 show_editing,
5bf193a2
AC
2114 &setlist, &showlist);
2115
2116 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
2117Set saving of the history record on exit."), _("\
2118Show saving of the history record on exit."), _("\
9e0b60a8 2119Use \"on\" to enable the saving, and \"off\" to disable it.\n\
5bf193a2
AC
2120Without an argument, saving is enabled."),
2121 NULL,
920d2a44 2122 show_write_history_p,
5bf193a2 2123 &sethistlist, &showhistlist);
9e0b60a8 2124
ebfd00d2
PP
2125 add_setshow_zuinteger_unlimited_cmd ("size", no_class,
2126 &history_size_setshow_var, _("\
590042fc
PW
2127Set the size of the command history."), _("\
2128Show the size of the command history."), _("\
2129This is the number of previous commands to keep a record of.\n\
f81d1120
PA
2130If set to \"unlimited\", the number of commands kept in the history\n\
2131list is unlimited. This defaults to the value of the environment\n\
b58c513b 2132variable \"GDBHISTSIZE\", or to 256 if this variable is not set."),
883b9c6c
YQ
2133 set_history_size_command,
2134 show_history_size,
2135 &sethistlist, &showhistlist);
4d28ad1e 2136
fc637f04
PP
2137 add_setshow_zuinteger_unlimited_cmd ("remove-duplicates", no_class,
2138 &history_remove_duplicates, _("\
2139Set how far back in history to look for and remove duplicate entries."), _("\
2140Show how far back in history to look for and remove duplicate entries."), _("\
2141If set to a nonzero value N, GDB will look back at the last N history entries\n\
2142and remove the first history entry that is a duplicate of the most recent\n\
2143entry, each time a new history entry is added.\n\
2144If set to \"unlimited\", this lookbehind is unbounded.\n\
2145Only history entries added during this session are considered for removal.\n\
2146If set to 0, removal of duplicate history entries is disabled.\n\
2147By default this option is set to 0."),
2148 NULL,
2149 show_history_remove_duplicates,
2150 &sethistlist, &showhistlist);
2151
4d28ad1e 2152 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
590042fc
PW
2153Set the filename in which to record the command history."), _("\
2154Show the filename in which to record the command history."), _("\
4d28ad1e 2155(the list of previous commands of which a record is kept)."),
97c85fc6 2156 set_history_filename,
920d2a44 2157 show_history_filename,
4d28ad1e 2158 &sethistlist, &showhistlist);
9e0b60a8 2159
e360902b 2160 add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
5bf193a2
AC
2161Set whether to confirm potentially dangerous operations."), _("\
2162Show whether to confirm potentially dangerous operations."), NULL,
2163 NULL,
e360902b 2164 show_confirm,
5bf193a2 2165 &setlist, &showlist);
9e0b60a8 2166
85c07804
AC
2167 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
2168Set annotation_level."), _("\
2169Show annotation_level."), _("\
9e0b60a8 21700 == normal; 1 == fullname (for use when running under emacs)\n\
85c07804 21712 == output annotated suitably for use by programs that control GDB."),
ab821bc6 2172 NULL,
920d2a44 2173 show_annotation_level,
85c07804 2174 &setlist, &showlist);
362646f5 2175
5bf193a2
AC
2176 add_setshow_boolean_cmd ("exec-done-display", class_support,
2177 &exec_done_display_p, _("\
2178Set notification of completion for asynchronous execution commands."), _("\
2179Show notification of completion for asynchronous execution commands."), _("\
2180Use \"on\" to enable the notification, and \"off\" to disable it."),
2181 NULL,
920d2a44 2182 show_exec_done_display_p,
5bf193a2 2183 &setlist, &showlist);
b14b1491
TT
2184
2185 add_setshow_filename_cmd ("data-directory", class_maintenance,
8d551b02 2186 &staged_gdb_datadir, _("Set GDB's data directory."),
b14b1491
TT
2187 _("Show GDB's data directory."),
2188 _("\
2189When set, GDB uses the specified path to search for data files."),
8d551b02 2190 set_gdb_datadir, show_gdb_datadir,
b14b1491
TT
2191 &setlist,
2192 &showlist);
268a799a
PA
2193
2194 add_setshow_auto_boolean_cmd ("interactive-mode", class_support,
2195 &interactive_mode, _("\
2196Set whether GDB's standard input is a terminal."), _("\
2197Show whether GDB's standard input is a terminal."), _("\
2198If on, GDB assumes that standard input is a terminal. In practice, it\n\
2199means that GDB should wait for the user to answer queries associated to\n\
2200commands entered at the command prompt. If off, GDB assumes that standard\n\
2201input is not a terminal, and uses the default answer to all queries.\n\
2202If auto (the default), determine which mode to use based on the standard\n\
2203input settings."),
2204 NULL,
2205 show_interactive_mode,
2206 &setlist, &showlist);
60eb5395
PA
2207
2208 c = add_cmd ("new-ui", class_support, new_ui_command, _("\
590042fc
PW
2209Create a new UI.\n\
2210Usage: new-ui INTERPRETER TTY\n\
60eb5395 2211The first argument is the name of the interpreter to run.\n\
89549d7f 2212The second argument is the terminal the UI runs on."), &cmdlist);
60eb5395 2213 set_cmd_completer (c, interpreter_completer);
9e0b60a8 2214}
64cdedad
EZ
2215
2216void
2217gdb_init (char *argv0)
2218{
68bb5386
PW
2219 saved_command_line = xstrdup ("");
2220 previous_saved_command_line = xstrdup ("");
2221
64cdedad
EZ
2222 if (pre_init_ui_hook)
2223 pre_init_ui_hook ();
2224
371d5dec 2225 /* Run the init function of each source file. */
64cdedad 2226
64cdedad
EZ
2227#ifdef __MSDOS__
2228 /* Make sure we return to the original directory upon exit, come
2229 what may, since the OS doesn't do that for us. */
2230 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
2231#endif
2232
371d5dec
MS
2233 init_cmd_lists (); /* This needs to be done first. */
2234 initialize_targets (); /* Setup target_terminal macros for utils.c. */
9dea9163 2235
24b73f8e
PP
2236 init_page_info ();
2237
9dea9163 2238 /* Here is where we call all the _initialize_foo routines. */
64cdedad 2239 initialize_all_files ();
9dea9163 2240
6c95b8df
PA
2241 /* This creates the current_program_space. Do this after all the
2242 _initialize_foo routines have had a chance to install their
2243 per-sspace data keys. Also do this before
2244 initialize_current_architecture is called, because it accesses
2245 exec_bfd of the current program space. */
2246 initialize_progspace ();
2247 initialize_inferiors ();
64cdedad 2248 initialize_current_architecture ();
371d5dec 2249 init_main (); /* But that omits this file! Do it now. */
64cdedad 2250
0ea3f30e
DJ
2251 initialize_stdin_serial ();
2252
6a06d660
PP
2253 /* Take a snapshot of our tty state before readline/ncurses have had a chance
2254 to alter it. */
2255 set_initial_gdb_ttystate ();
2256
362646f5 2257 async_init_signals ();
64cdedad 2258
371d5dec
MS
2259 /* We need a default language for parsing expressions, so simple
2260 things like "set width 0" won't fail if no language is explicitly
2261 set in a config file or implicitly set by reading an executable
2262 during startup. */
64cdedad 2263 set_language (language_c);
371d5dec 2264 expected_language = current_language; /* Don't warn about the change. */
64cdedad 2265
6dddc817 2266 /* Python initialization, for example, can require various commands to be
371d5dec
MS
2267 installed. For example "info pretty-printer" needs the "info"
2268 prefix to be installed. Keep things simple and just do final
6dddc817
DE
2269 script initialization here. */
2270 finish_ext_lang_initialization ();
7734102d
EZ
2271
2272 /* Create $_gdb_major and $_gdb_minor convenience variables. */
2273 init_gdb_version_vars ();
64cdedad 2274}
This page took 3.348285 seconds and 4 git commands to generate.