[gdb/cli] Add a progress meter
[deliverable/binutils-gdb.git] / gdb / main.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
4389a95a 2
b811d2c2 3 Copyright (C) 1986-2020 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"
c906108c
SS
21#include "top.h"
22#include "target.h"
23#include "inferior.h"
1adeb98a
FN
24#include "symfile.h"
25#include "gdbcore.h"
c906108c
SS
26#include "getopt.h"
27
28#include <sys/types.h>
53ce3c39 29#include <sys/stat.h>
c906108c 30#include <ctype.h>
400b5eca 31#include "gdbsupport/event-loop.h"
8b93c638 32#include "ui-out.h"
6457bd47 33
4389a95a 34#include "interps.h"
f15ab4a7 35#include "main.h"
29b0e8a2 36#include "source.h"
4cc23ede 37#include "cli/cli-cmds.h"
7f6130ff 38#include "objfiles.h"
e2207b9a 39#include "auto-load.h"
bd712aed 40#include "maint.h"
29b0e8a2 41
b5981e5a 42#include "filenames.h"
268a13a5 43#include "gdbsupport/filestuff.h"
992c7d70 44#include <signal.h>
94696ad3 45#include "event-top.h"
98880d46 46#include "infrun.h"
268a13a5 47#include "gdbsupport/signals-state-save-restore.h"
ed2a2229 48#include <algorithm>
f60ee22e 49#include <vector>
268a13a5 50#include "gdbsupport/pathstuff.h"
ee2bcb0c 51#include "cli/cli-style.h"
26344e0c
CB
52#ifdef GDBTK
53#include "gdbtk/generic/gdbtk.h"
54#endif
c3efb965 55#include "gdbsupport/alt-stack.h"
58cf28e8 56#include "observable.h"
b5981e5a 57
4389a95a
AC
58/* The selected interpreter. This will be used as a set command
59 variable, so it should always be malloc'ed - since
371d5dec 60 do_setshow_command will free it. */
fb40c209 61char *interpreter_p;
fb40c209 62
371d5dec 63/* Whether dbx commands will be handled. */
c906108c
SS
64int dbx_commands = 0;
65
030292b7
DJ
66/* System root path, used to find libraries etc. */
67char *gdb_sysroot = 0;
68
b14b1491 69/* GDB datadir, used to store data files. */
f2aec7f6 70std::string gdb_datadir;
b14b1491 71
e64e0392
DE
72/* Non-zero if GDB_DATADIR was provided on the command line.
73 This doesn't track whether data-directory is set later from the
74 command line, but we don't reread system.gdbinit when that happens. */
75static int gdb_datadir_provided = 0;
76
0c4a4063
DE
77/* If gdb was configured with --with-python=/path,
78 the possibly relocated path to python's lib directory. */
f2aec7f6 79std::string python_libdir;
0c4a4063 80
371d5dec 81/* Target IO streams. */
449092f6 82struct ui_file *gdb_stdtargin;
22e8e3c7 83struct ui_file *gdb_stdtarg;
449092f6 84struct ui_file *gdb_stdtargerr;
c906108c 85
7c953934
TT
86/* True if --batch or --batch-silent was seen. */
87int batch_flag = 0;
88
1a088d06
AS
89/* Support for the --batch-silent option. */
90int batch_silent = 0;
91
4b0ad762
AS
92/* Support for --return-child-result option.
93 Set the default to -1 to return error in the case
94 that the program does not run or does not complete. */
95int return_child_result = 0;
96int return_child_result_value = -1;
97
c906108c 98
16e7150e
JG
99/* GDB as it has been invoked from the command line (i.e. argv[0]). */
100static char *gdb_program_name;
101
c88a1531
AB
102/* Return read only pointer to GDB_PROGRAM_NAME. */
103const char *
104get_gdb_program_name (void)
105{
106 return gdb_program_name;
107}
108
d9fcf2fb 109static void print_gdb_help (struct ui_file *);
c906108c 110
8d551b02
DE
111/* Set the data-directory parameter to NEW_DATADIR.
112 If NEW_DATADIR is not a directory then a warning is printed.
113 We don't signal an error for backward compatibility. */
114
115void
116set_gdb_data_directory (const char *new_datadir)
117{
118 struct stat st;
119
120 if (stat (new_datadir, &st) < 0)
121 {
122 int save_errno = errno;
123
124 fprintf_unfiltered (gdb_stderr, "Warning: ");
125 print_sys_errmsg (new_datadir, save_errno);
126 }
127 else if (!S_ISDIR (st.st_mode))
6ec1d75e
PW
128 warning (_("%ps is not a directory."),
129 styled_string (file_name_style.style (), new_datadir));
8d551b02 130
f2aec7f6 131 gdb_datadir = gdb_realpath (new_datadir).get ();
8d551b02
DE
132
133 /* gdb_realpath won't return an absolute path if the path doesn't exist,
134 but we still want to record an absolute path here. If the user entered
135 "../foo" and "../foo" doesn't exist then we'll record $(pwd)/../foo which
136 isn't canonical, but that's ok. */
f2aec7f6 137 if (!IS_ABSOLUTE_PATH (gdb_datadir.c_str ()))
8d551b02 138 {
f2aec7f6 139 gdb::unique_xmalloc_ptr<char> abs_datadir
dda83cd7 140 = gdb_abspath (gdb_datadir.c_str ());
8d551b02 141
f2aec7f6 142 gdb_datadir = abs_datadir.get ();
8d551b02
DE
143 }
144}
145
b14b1491
TT
146/* Relocate a file or directory. PROGNAME is the name by which gdb
147 was invoked (i.e., argv[0]). INITIAL is the default value for the
ead0e69a 148 file or directory. RELOCATABLE is true if the value is relocatable,
f2aec7f6
CB
149 false otherwise. This may return an empty string under the same
150 conditions as make_relative_prefix returning NULL. */
478aac75 151
f2aec7f6 152static std::string
ead0e69a 153relocate_path (const char *progname, const char *initial, bool relocatable)
b14b1491 154{
ead0e69a 155 if (relocatable)
f2aec7f6
CB
156 {
157 gdb::unique_xmalloc_ptr<char> str (make_relative_prefix (progname,
158 BINDIR,
159 initial));
160 if (str != nullptr)
161 return str.get ();
162 return std::string ();
163 }
164 return initial;
b14b1491
TT
165}
166
167/* Like relocate_path, but specifically checks for a directory.
168 INITIAL is relocated according to the rules of relocate_path. If
169 the result is a directory, it is used; otherwise, INITIAL is used.
f2aec7f6 170 The chosen directory is then canonicalized using lrealpath. */
478aac75 171
f2aec7f6 172std::string
ead0e69a 173relocate_gdb_directory (const char *initial, bool relocatable)
b14b1491 174{
f2aec7f6
CB
175 std::string dir = relocate_path (gdb_program_name, initial, relocatable);
176 if (!dir.empty ())
b14b1491
TT
177 {
178 struct stat s;
179
f2aec7f6 180 if (stat (dir.c_str (), &s) != 0 || !S_ISDIR (s.st_mode))
b14b1491 181 {
f2aec7f6 182 dir.clear ();
b14b1491
TT
183 }
184 }
f2aec7f6
CB
185 if (dir.empty ())
186 dir = initial;
b14b1491
TT
187
188 /* Canonicalize the directory. */
f2aec7f6 189 if (!dir.empty ())
b14b1491 190 {
f2aec7f6 191 gdb::unique_xmalloc_ptr<char> canon_sysroot (lrealpath (dir.c_str ()));
b8d56208 192
b14b1491 193 if (canon_sysroot)
f2aec7f6 194 dir = canon_sysroot.get ();
b14b1491
TT
195 }
196
197 return dir;
198}
199
9224a013
CB
200/* Given a gdbinit path in FILE, adjusts it according to the gdb_datadir
201 parameter if it is in the data dir, or passes it through relocate_path
202 otherwise. */
203
204static std::string
ed2a2229
CB
205relocate_gdbinit_path_maybe_in_datadir (const std::string &file,
206 bool relocatable)
9224a013
CB
207{
208 size_t datadir_len = strlen (GDB_DATADIR);
209
210 std::string relocated_path;
211
212 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
213 has been provided, search for SYSTEM_GDBINIT there. */
214 if (gdb_datadir_provided
215 && datadir_len < file.length ()
216 && filename_ncmp (file.c_str (), GDB_DATADIR, datadir_len) == 0
217 && IS_DIR_SEPARATOR (file[datadir_len]))
218 {
219 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
220 to gdb_datadir. */
221
222 size_t start = datadir_len;
223 for (; IS_DIR_SEPARATOR (file[start]); ++start)
224 ;
cd7c32c3 225 relocated_path = gdb_datadir + SLASH_STRING + file.substr (start);
9224a013
CB
226 }
227 else
228 {
ed2a2229
CB
229 relocated_path = relocate_path (gdb_program_name, file.c_str (),
230 relocatable);
9224a013
CB
231 }
232 return relocated_path;
233}
234
371d5dec
MS
235/* Compute the locations of init files that GDB should source and
236 return them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. If
237 there is no system gdbinit (resp. home gdbinit and local gdbinit)
238 to be loaded, then SYSTEM_GDBINIT (resp. HOME_GDBINIT and
f48cd836 239 LOCAL_GDBINIT) is set to the empty string. */
16e7150e 240static void
ed2a2229 241get_init_files (std::vector<std::string> *system_gdbinit,
f48cd836
CB
242 std::string *home_gdbinit,
243 std::string *local_gdbinit)
16e7150e 244{
ed2a2229 245 static std::vector<std::string> sysgdbinit;
f48cd836
CB
246 static std::string homeinit;
247 static std::string localinit;
16e7150e
JG
248 static int initialized = 0;
249
250 if (!initialized)
251 {
252 struct stat homebuf, cwdbuf, s;
16e7150e 253
b14b1491 254 if (SYSTEM_GDBINIT[0])
16e7150e 255 {
9224a013 256 std::string relocated_sysgdbinit
ed2a2229
CB
257 = relocate_gdbinit_path_maybe_in_datadir
258 (SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE);
f48cd836
CB
259 if (!relocated_sysgdbinit.empty ()
260 && stat (relocated_sysgdbinit.c_str (), &s) == 0)
ed2a2229
CB
261 sysgdbinit.push_back (relocated_sysgdbinit);
262 }
263 if (SYSTEM_GDBINIT_DIR[0])
264 {
265 std::string relocated_gdbinit_dir
266 = relocate_gdbinit_path_maybe_in_datadir
267 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_DIR_RELOCATABLE);
268 if (!relocated_gdbinit_dir.empty ()) {
269 gdb_dir_up dir (opendir (relocated_gdbinit_dir.c_str ()));
270 if (dir != nullptr)
271 {
272 std::vector<std::string> files;
273 for (;;)
274 {
275 struct dirent *ent = readdir (dir.get ());
276 if (ent == nullptr)
277 break;
278 std::string name (ent->d_name);
279 if (name == "." || name == "..")
280 continue;
281 /* ent->d_type is not available on all systems (e.g. mingw,
282 Solaris), so we have to call stat(). */
283 std::string filename
284 = relocated_gdbinit_dir + SLASH_STRING + name;
285 if (stat (filename.c_str (), &s) != 0
286 || !S_ISREG (s.st_mode))
287 continue;
288 const struct extension_language_defn *extlang
289 = get_ext_lang_of_file (filename.c_str ());
290 /* We effectively don't support "set script-extension
291 off/soft", because we are loading system init files here,
292 so it does not really make sense to depend on a
293 setting. */
294 if (extlang != nullptr && ext_lang_present_p (extlang))
295 files.push_back (std::move (filename));
296 }
297 std::sort (files.begin (), files.end ());
298 sysgdbinit.insert (sysgdbinit.end (),
299 files.begin (), files.end ());
300 }
301 }
16e7150e 302 }
16e7150e 303
16e7150e
JG
304 /* If the .gdbinit file in the current directory is the same as
305 the $HOME/.gdbinit file, it should not be sourced. homebuf
025bb325 306 and cwdbuf are used in that purpose. Make sure that the stats
16e7150e
JG
307 are zero in case one of them fails (this guarantees that they
308 won't match if either exists). */
309
310 memset (&homebuf, 0, sizeof (struct stat));
311 memset (&cwdbuf, 0, sizeof (struct stat));
312
64aaad63 313 homeinit = find_gdb_home_config_file (GDBINIT, &homebuf);
16e7150e 314
b777eb6d 315 if (stat (GDBINIT, &cwdbuf) == 0)
16e7150e 316 {
f48cd836 317 if (homeinit.empty ()
16e7150e
JG
318 || memcmp ((char *) &homebuf, (char *) &cwdbuf,
319 sizeof (struct stat)))
b777eb6d 320 localinit = GDBINIT;
16e7150e 321 }
64aaad63 322
16e7150e
JG
323 initialized = 1;
324 }
325
326 *system_gdbinit = sysgdbinit;
327 *home_gdbinit = homeinit;
328 *local_gdbinit = localinit;
329}
330
58cf28e8
TT
331/* Start up the event loop. This is the entry point to the event loop
332 from the command loop. */
333
334static void
335start_event_loop ()
336{
337 /* Loop until there is nothing to do. This is the entry point to
338 the event loop engine. gdb_do_one_event will process one event
339 for each invocation. It blocks waiting for an event and then
340 processes it. */
341 while (1)
342 {
343 int result = 0;
344
345 try
346 {
347 result = gdb_do_one_event ();
348 }
349 catch (const gdb_exception &ex)
350 {
351 exception_print (gdb_stderr, ex);
352
353 /* If any exception escaped to here, we better enable
354 stdin. Otherwise, any command that calls async_disable_stdin,
355 and then throws, will leave stdin inoperable. */
356 SWITCH_THRU_ALL_UIS ()
357 {
358 async_enable_stdin ();
359 }
360 /* If we long-jumped out of do_one_event, we probably didn't
361 get around to resetting the prompt, which leaves readline
362 in a messed-up state. Reset it here. */
363 current_ui->prompt_state = PROMPT_NEEDED;
364 gdb::observers::command_error.notify ();
365 /* This call looks bizarre, but it is required. If the user
366 entered a command that caused an error,
367 after_char_processing_hook won't be called from
368 rl_callback_read_char_wrapper. Using a cleanup there
369 won't work, since we want this function to be called
370 after a new prompt is printed. */
371 if (after_char_processing_hook)
372 (*after_char_processing_hook) ();
373 /* Maybe better to set a flag to be checked somewhere as to
374 whether display the prompt or not. */
375 }
376
377 if (result < 0)
378 break;
379 }
380
381 /* We are done with the event loop. There are no more event sources
382 to listen to. So we exit GDB. */
383 return;
384}
385
bf469271 386/* Call command_loop. */
11cf8741 387
fcc8fb2f
PA
388/* Prevent inlining this function for the benefit of GDB's selftests
389 in the testsuite. Those tests want to run GDB under GDB and stop
390 here. */
391static void captured_command_loop () __attribute__((noinline));
392
bf469271
PA
393static void
394captured_command_loop ()
c906108c 395{
f38d3ad1
PA
396 struct ui *ui = current_ui;
397
bb5291d0 398 /* Top-level execution commands can be run in the background from
b4a14fd0 399 here on. */
cb814510 400 current_ui->async = 1;
b4a14fd0 401
3b12939d
PA
402 /* Give the interpreter a chance to print a prompt, if necessary */
403 if (ui->prompt_state != PROMPT_BLOCKED)
404 interp_pre_command_loop (top_level_interpreter ());
b2d86570
PA
405
406 /* Now it's time to start the event loop. */
407 start_event_loop ();
408
11cf8741 409 /* If the command_loop returned, normally (rather than threw an
bf469271
PA
410 error) we try to quit. If the quit is aborted, our caller
411 catches the signal and restarts the command loop. */
268a799a 412 quit_command (NULL, ui->instream == ui->stdin_stream);
11cf8741
JM
413}
414
013af3fc 415/* Handle command errors thrown from within catch_command_errors. */
94696ad3
PA
416
417static int
94aeb44b 418handle_command_errors (const struct gdb_exception &e)
94696ad3
PA
419{
420 if (e.reason < 0)
421 {
422 exception_print (gdb_stderr, e);
423
424 /* If any exception escaped to here, we better enable stdin.
425 Otherwise, any command that calls async_disable_stdin, and
426 then throws, will leave stdin inoperable. */
427 async_enable_stdin ();
428 return 0;
429 }
430 return 1;
431}
432
013af3fc
TT
433/* Type of the command callback passed to the const
434 catch_command_errors. */
9d1e69a2
PA
435
436typedef void (catch_command_errors_const_ftype) (const char *, int);
437
95a6b0a1 438/* Wrap calls to commands run before the event loop is started. */
9d1e69a2
PA
439
440static int
013af3fc 441catch_command_errors (catch_command_errors_const_ftype command,
21e051b3
TBA
442 const char *arg, int from_tty,
443 bool do_bp_actions = false)
9d1e69a2 444{
a70b8144 445 try
9d1e69a2 446 {
3b12939d 447 int was_sync = current_ui->prompt_state == PROMPT_BLOCKED;
98880d46 448
9d1e69a2 449 command (arg, from_tty);
98880d46
PA
450
451 maybe_wait_sync_command_done (was_sync);
21e051b3
TBA
452
453 /* Do any commands attached to breakpoint we stopped at. */
454 if (do_bp_actions)
455 bpstat_do_actions ();
9d1e69a2 456 }
230d2906 457 catch (const gdb_exception &e)
492d29ea
PA
458 {
459 return handle_command_errors (e);
460 }
492d29ea
PA
461
462 return 1;
9d1e69a2
PA
463}
464
ecf45d2c
SL
465/* Adapter for symbol_file_add_main that translates 'from_tty' to a
466 symfile_add_flags. */
467
468static void
469symbol_file_add_main_adapter (const char *arg, int from_tty)
470{
471 symfile_add_flags add_flags = 0;
472
473 if (from_tty)
474 add_flags |= SYMFILE_VERBOSE;
475
476 symbol_file_add_main (arg, add_flags);
477}
478
97cbe998
SDJ
479/* Perform validation of the '--readnow' and '--readnever' flags. */
480
481static void
482validate_readnow_readnever ()
483{
484 if (readnever_symbol_files && readnow_symbol_files)
485 {
486 error (_("%s: '--readnow' and '--readnever' cannot be "
487 "specified simultaneously"),
488 gdb_program_name);
489 }
490}
491
52059ffd
TT
492/* Type of this option. */
493enum cmdarg_kind
494{
495 /* Option type -x. */
496 CMDARG_FILE,
26743505 497
52059ffd
TT
498 /* Option type -ex. */
499 CMDARG_COMMAND,
8320cc4f 500
52059ffd
TT
501 /* Option type -ix. */
502 CMDARG_INIT_FILE,
8320cc4f 503
52059ffd
TT
504 /* Option type -iex. */
505 CMDARG_INIT_COMMAND
506};
507
508/* Arguments of --command option and its counterpart. */
7a63494a
PA
509struct cmdarg
510{
511 cmdarg (cmdarg_kind type_, char *string_)
512 : type (type_), string (string_)
513 {}
514
52059ffd
TT
515 /* Type of this option. */
516 enum cmdarg_kind type;
26743505
JK
517
518 /* Value of this option - filename or the GDB command itself. String memory
519 is not owned by this structure despite it is 'const'. */
520 char *string;
f60ee22e 521};
26743505 522
74d877e5
AB
523/* From CMDARG_VEC execute command files (matching FILE_TYPE) or commands
524 (matching CMD_TYPE). Update the value in *RET if and scripts or
525 commands are executed. */
526
527static void
528execute_cmdargs (const std::vector<struct cmdarg> *cmdarg_vec,
529 cmdarg_kind file_type, cmdarg_kind cmd_type,
530 int *ret)
531{
532 for (const auto &cmdarg_p : *cmdarg_vec)
533 {
534 if (cmdarg_p.type == file_type)
535 *ret = catch_command_errors (source_script, cmdarg_p.string,
536 !batch_flag);
537 else if (cmdarg_p.type == cmd_type)
538 *ret = catch_command_errors (execute_command, cmdarg_p.string,
21e051b3 539 !batch_flag, true);
74d877e5
AB
540 }
541}
542
1e3b796d
TT
543static void
544captured_main_1 (struct captured_main_args *context)
11cf8741 545{
11cf8741
JM
546 int argc = context->argc;
547 char **argv = context->argv;
1e3b796d 548
c906108c 549 static int quiet = 0;
552c04a7 550 static int set_args = 0;
07540c15 551 static int inhibit_home_gdbinit = 0;
c906108c
SS
552
553 /* Pointers to various arguments from command line. */
554 char *symarg = NULL;
555 char *execarg = NULL;
a4d9b460 556 char *pidarg = NULL;
c906108c 557 char *corearg = NULL;
a4d9b460 558 char *pid_or_core_arg = NULL;
c906108c
SS
559 char *cdarg = NULL;
560 char *ttyarg = NULL;
561
371d5dec
MS
562 /* These are static so that we can take their address in an
563 initializer. */
c906108c
SS
564 static int print_help;
565 static int print_version;
6eaaf48b 566 static int print_configuration;
c906108c
SS
567
568 /* Pointers to all arguments of --command option. */
f60ee22e 569 std::vector<struct cmdarg> cmdarg_vec;
c906108c 570
f60ee22e
TT
571 /* All arguments of --directory option. */
572 std::vector<char *> dirarg;
c5aa993b 573
52f0bd74 574 int i;
88a1906b 575 int save_auto_load;
b0f492b9 576 int ret = 1;
c906108c 577
6242c6a6 578#ifdef HAVE_USEFUL_SBRK
1e3b796d 579 /* Set this before constructing scoped_command_stats. */
e565b837
DE
580 lim_at_start = (char *) sbrk (0);
581#endif
582
1e3b796d 583 scoped_command_stats stat_reporter (false);
c906108c 584
0fbb3da7
TT
585#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
586 setlocale (LC_MESSAGES, "");
587#endif
588#if defined (HAVE_SETLOCALE)
589 setlocale (LC_CTYPE, "");
590#endif
66797541 591#ifdef ENABLE_NLS
0fbb3da7
TT
592 bindtextdomain (PACKAGE, LOCALEDIR);
593 textdomain (PACKAGE);
66797541 594#endif
0fbb3da7 595
614c279d 596 notice_open_fds ();
5484b13a 597
ffa4ac95
YQ
598#ifdef __MINGW32__
599 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
600 as a Windows pipe, and Windows buffers on pipes. */
601 setvbuf (stderr, NULL, _IONBF, BUFSIZ);
602#endif
603
4d5d1049
TT
604 /* Note: `error' cannot be called before this point, because the
605 caller will crash when trying to print the exception. */
895b8f30 606 main_ui = new ui (stdin, stdout, stderr);
98d9f24e 607 current_ui = main_ui;
ffa4ac95 608
449092f6
CV
609 gdb_stdtargerr = gdb_stderr; /* for moment */
610 gdb_stdtargin = gdb_stdin; /* for moment */
c906108c 611
4d5d1049
TT
612 if (bfd_init () != BFD_INIT_MAGIC)
613 error (_("fatal error: libbfd ABI mismatch"));
614
b5981e5a
EZ
615#ifdef __MINGW32__
616 /* On Windows, argv[0] is not necessarily set to absolute form when
617 GDB is found along PATH, without which relocation doesn't work. */
618 gdb_program_name = windows_get_absolute_argv0 (argv[0]);
619#else
16e7150e 620 gdb_program_name = xstrdup (argv[0]);
b5981e5a 621#endif
16e7150e 622
075c7033 623 /* Prefix warning messages with the command name. */
69bbf465
PA
624 gdb::unique_xmalloc_ptr<char> tmp_warn_preprint
625 (xstrprintf ("%s: warning: ", gdb_program_name));
626 warning_pre_print = tmp_warn_preprint.get ();
075c7033 627
43573013
SDJ
628 current_directory = getcwd (NULL, 0);
629 if (current_directory == NULL)
075c7033
GB
630 perror_warning_with_name (_("error finding working directory"));
631
030292b7 632 /* Set the sysroot path. */
f2aec7f6
CB
633 gdb_sysroot
634 = xstrdup (relocate_gdb_directory (TARGET_SYSTEM_ROOT,
635 TARGET_SYSTEM_ROOT_RELOCATABLE).c_str ());
030292b7 636
f2aec7f6 637 if (*gdb_sysroot == '\0')
fed040c6
GB
638 {
639 xfree (gdb_sysroot);
640 gdb_sysroot = xstrdup (TARGET_SYSROOT_PREFIX);
641 }
642
f2aec7f6
CB
643 debug_file_directory
644 = xstrdup (relocate_gdb_directory (DEBUGDIR,
645 DEBUGDIR_RELOCATABLE).c_str ());
030292b7 646
cd7c32c3
PW
647 gdb_datadir = relocate_gdb_directory (GDB_DATADIR,
648 GDB_DATADIR_RELOCATABLE);
aa28a74e 649
d13c7322
AB
650#ifdef WITH_PYTHON_LIBDIR
651 python_libdir = relocate_gdb_directory (WITH_PYTHON_LIBDIR,
652 PYTHON_LIBDIR_RELOCATABLE);
0c4a4063
DE
653#endif
654
29b0e8a2
JM
655#ifdef RELOC_SRCDIR
656 add_substitute_path_rule (RELOC_SRCDIR,
b5981e5a 657 make_relative_prefix (gdb_program_name, BINDIR,
29b0e8a2
JM
658 RELOC_SRCDIR));
659#endif
660
4389a95a 661 /* There will always be an interpreter. Either the one passed into
e46e5ccd
KS
662 this captured main, or one specified by the user at start up, or
663 the console. Initialize the interpreter to the one requested by
664 the application. */
11bf1490 665 interpreter_p = xstrdup (context->interpreter_p);
4389a95a 666
c906108c
SS
667 /* Parse arguments and options. */
668 {
669 int c;
670 /* When var field is 0, use flag field to record the equivalent
671 short option (or arbitrary numbers starting at 10 for those
672 with no equivalent). */
49c7e338
AC
673 enum {
674 OPT_SE = 10,
675 OPT_CD,
676 OPT_ANNOTATE,
677 OPT_STATISTICS,
42fa7c0f
AC
678 OPT_TUI,
679 OPT_NOWINDOWS,
8320cc4f
JK
680 OPT_WINDOWS,
681 OPT_IX,
97cbe998
SDJ
682 OPT_IEX,
683 OPT_READNOW,
684 OPT_READNEVER
49c7e338 685 };
491144b5
CB
686 /* This struct requires int* in the struct, but write_files is a bool.
687 So use this temporary int that we write back after argument parsing. */
688 int write_files_1 = 0;
c906108c 689 static struct option long_options[] =
c5aa993b 690 {
49c7e338 691 {"tui", no_argument, 0, OPT_TUI},
c5aa993b 692 {"dbx", no_argument, &dbx_commands, 1},
97cbe998
SDJ
693 {"readnow", no_argument, NULL, OPT_READNOW},
694 {"readnever", no_argument, NULL, OPT_READNEVER},
695 {"r", no_argument, NULL, OPT_READNOW},
c5aa993b
JM
696 {"quiet", no_argument, &quiet, 1},
697 {"q", no_argument, &quiet, 1},
698 {"silent", no_argument, &quiet, 1},
07540c15 699 {"nh", no_argument, &inhibit_home_gdbinit, 1},
c5aa993b
JM
700 {"nx", no_argument, &inhibit_gdbinit, 1},
701 {"n", no_argument, &inhibit_gdbinit, 1},
1a088d06 702 {"batch-silent", no_argument, 0, 'B'},
7c953934 703 {"batch", no_argument, &batch_flag, 1},
c5aa993b 704
371d5dec
MS
705 /* This is a synonym for "--annotate=1". --annotate is now
706 preferred, but keep this here for a long time because people
707 will be running emacses which use --fullname. */
c5aa993b
JM
708 {"fullname", no_argument, 0, 'f'},
709 {"f", no_argument, 0, 'f'},
710
49c7e338 711 {"annotate", required_argument, 0, OPT_ANNOTATE},
c5aa993b 712 {"help", no_argument, &print_help, 1},
49c7e338 713 {"se", required_argument, 0, OPT_SE},
c5aa993b
JM
714 {"symbols", required_argument, 0, 's'},
715 {"s", required_argument, 0, 's'},
716 {"exec", required_argument, 0, 'e'},
717 {"e", required_argument, 0, 'e'},
718 {"core", required_argument, 0, 'c'},
719 {"c", required_argument, 0, 'c'},
00546b04
MS
720 {"pid", required_argument, 0, 'p'},
721 {"p", required_argument, 0, 'p'},
c5aa993b 722 {"command", required_argument, 0, 'x'},
8a5a3c82 723 {"eval-command", required_argument, 0, 'X'},
c5aa993b 724 {"version", no_argument, &print_version, 1},
6eaaf48b 725 {"configuration", no_argument, &print_configuration, 1},
c5aa993b 726 {"x", required_argument, 0, 'x'},
8a5a3c82 727 {"ex", required_argument, 0, 'X'},
8320cc4f
JK
728 {"init-command", required_argument, 0, OPT_IX},
729 {"init-eval-command", required_argument, 0, OPT_IEX},
730 {"ix", required_argument, 0, OPT_IX},
731 {"iex", required_argument, 0, OPT_IEX},
3fc11d3e
JM
732#ifdef GDBTK
733 {"tclcommand", required_argument, 0, 'z'},
734 {"enable-external-editor", no_argument, 0, 'y'},
735 {"editor-command", required_argument, 0, 'w'},
736#endif
8b93c638
JM
737 {"ui", required_argument, 0, 'i'},
738 {"interpreter", required_argument, 0, 'i'},
739 {"i", required_argument, 0, 'i'},
c5aa993b 740 {"directory", required_argument, 0, 'd'},
c4093a6a 741 {"d", required_argument, 0, 'd'},
aae1c79a 742 {"data-directory", required_argument, 0, 'D'},
8d551b02 743 {"D", required_argument, 0, 'D'},
49c7e338 744 {"cd", required_argument, 0, OPT_CD},
c5aa993b
JM
745 {"tty", required_argument, 0, 't'},
746 {"baud", required_argument, 0, 'b'},
747 {"b", required_argument, 0, 'b'},
42fa7c0f
AC
748 {"nw", no_argument, NULL, OPT_NOWINDOWS},
749 {"nowindows", no_argument, NULL, OPT_NOWINDOWS},
750 {"w", no_argument, NULL, OPT_WINDOWS},
751 {"windows", no_argument, NULL, OPT_WINDOWS},
49c7e338 752 {"statistics", no_argument, 0, OPT_STATISTICS},
491144b5 753 {"write", no_argument, &write_files_1, 1},
552c04a7 754 {"args", no_argument, &set_args, 1},
39c76ca3 755 {"l", required_argument, 0, 'l'},
4b0ad762 756 {"return-child-result", no_argument, &return_child_result, 1},
c5aa993b
JM
757 {0, no_argument, 0, 0}
758 };
c906108c
SS
759
760 while (1)
761 {
762 int option_index;
763
764 c = getopt_long_only (argc, argv, "",
765 long_options, &option_index);
552c04a7 766 if (c == EOF || set_args)
c906108c
SS
767 break;
768
769 /* Long option that takes an argument. */
770 if (c == 0 && long_options[option_index].flag == 0)
771 c = long_options[option_index].val;
772
773 switch (c)
774 {
775 case 0:
776 /* Long option that just sets a flag. */
777 break;
49c7e338 778 case OPT_SE:
c906108c
SS
779 symarg = optarg;
780 execarg = optarg;
781 break;
49c7e338 782 case OPT_CD:
c906108c
SS
783 cdarg = optarg;
784 break;
49c7e338 785 case OPT_ANNOTATE:
c906108c
SS
786 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
787 annotation_level = atoi (optarg);
788 break;
49c7e338 789 case OPT_STATISTICS:
c906108c 790 /* Enable the display of both time and space usage. */
bd712aed
DE
791 set_per_command_time (1);
792 set_per_command_space (1);
c906108c 793 break;
49c7e338 794 case OPT_TUI:
021e7609 795 /* --tui is equivalent to -i=tui. */
b0da54f1 796#ifdef TUI
021e7609 797 xfree (interpreter_p);
cc4349ed 798 interpreter_p = xstrdup (INTERP_TUI);
b0da54f1 799#else
91b35fd0 800 error (_("%s: TUI mode is not supported"), gdb_program_name);
b0da54f1 801#endif
021e7609 802 break;
42fa7c0f
AC
803 case OPT_WINDOWS:
804 /* FIXME: cagney/2003-03-01: Not sure if this option is
dda83cd7 805 actually useful, and if it is, what it should do. */
cc4349ed
AS
806#ifdef GDBTK
807 /* --windows is equivalent to -i=insight. */
808 xfree (interpreter_p);
809 interpreter_p = xstrdup (INTERP_INSIGHT);
810#endif
42fa7c0f
AC
811 break;
812 case OPT_NOWINDOWS:
813 /* -nw is equivalent to -i=console. */
814 xfree (interpreter_p);
815 interpreter_p = xstrdup (INTERP_CONSOLE);
42fa7c0f 816 break;
c906108c
SS
817 case 'f':
818 annotation_level = 1;
c906108c
SS
819 break;
820 case 's':
821 symarg = optarg;
822 break;
823 case 'e':
824 execarg = optarg;
825 break;
826 case 'c':
827 corearg = optarg;
828 break;
00546b04 829 case 'p':
a4d9b460 830 pidarg = optarg;
00546b04 831 break;
c906108c 832 case 'x':
7a63494a 833 cmdarg_vec.emplace_back (CMDARG_FILE, optarg);
8a5a3c82
AS
834 break;
835 case 'X':
7a63494a 836 cmdarg_vec.emplace_back (CMDARG_COMMAND, optarg);
26743505 837 break;
8320cc4f 838 case OPT_IX:
7a63494a 839 cmdarg_vec.emplace_back (CMDARG_INIT_FILE, optarg);
8320cc4f
JK
840 break;
841 case OPT_IEX:
7a63494a 842 cmdarg_vec.emplace_back (CMDARG_INIT_COMMAND, optarg);
c906108c 843 break;
1a088d06 844 case 'B':
7c953934 845 batch_flag = batch_silent = 1;
d7e74731 846 gdb_stdout = new null_file ();
1a088d06 847 break;
aae1c79a 848 case 'D':
8d551b02 849 if (optarg[0] == '\0')
91b35fd0
GB
850 error (_("%s: empty path for `--data-directory'"),
851 gdb_program_name);
8d551b02 852 set_gdb_data_directory (optarg);
e64e0392 853 gdb_datadir_provided = 1;
aae1c79a 854 break;
3fc11d3e
JM
855#ifdef GDBTK
856 case 'z':
857 {
3fc11d3e 858 if (!gdbtk_test (optarg))
91b35fd0
GB
859 error (_("%s: unable to load tclcommand file \"%s\""),
860 gdb_program_name, optarg);
3fc11d3e
JM
861 break;
862 }
863 case 'y':
78f49586
TT
864 /* Backwards compatibility only. */
865 break;
3fc11d3e
JM
866 case 'w':
867 {
3a9b40b6
JK
868 /* Set the external editor commands when gdb is farming out files
869 to be edited by another program. */
3fc11d3e
JM
870 external_editor_command = xstrdup (optarg);
871 break;
872 }
873#endif /* GDBTK */
fb40c209 874 case 'i':
4389a95a
AC
875 xfree (interpreter_p);
876 interpreter_p = xstrdup (optarg);
fb40c209 877 break;
c906108c 878 case 'd':
f60ee22e 879 dirarg.push_back (optarg);
c906108c
SS
880 break;
881 case 't':
882 ttyarg = optarg;
883 break;
884 case 'q':
885 quiet = 1;
886 break;
887 case 'b':
888 {
b926417a 889 int rate;
c906108c
SS
890 char *p;
891
b926417a
TT
892 rate = strtol (optarg, &p, 0);
893 if (rate == 0 && p == optarg)
075c7033
GB
894 warning (_("could not set baud rate to `%s'."),
895 optarg);
c906108c 896 else
b926417a 897 baud_rate = rate;
c906108c 898 }
dda83cd7 899 break;
c906108c
SS
900 case 'l':
901 {
b926417a 902 int timeout;
c906108c
SS
903 char *p;
904
b926417a
TT
905 timeout = strtol (optarg, &p, 0);
906 if (timeout == 0 && p == optarg)
075c7033
GB
907 warning (_("could not set timeout limit to `%s'."),
908 optarg);
c906108c 909 else
b926417a 910 remote_timeout = timeout;
c906108c
SS
911 }
912 break;
913
97cbe998
SDJ
914 case OPT_READNOW:
915 {
916 readnow_symbol_files = 1;
917 validate_readnow_readnever ();
918 }
919 break;
920
921 case OPT_READNEVER:
922 {
923 readnever_symbol_files = 1;
924 validate_readnow_readnever ();
925 }
926 break;
927
c906108c 928 case '?':
91b35fd0
GB
929 error (_("Use `%s --help' for a complete list of options."),
930 gdb_program_name);
c906108c
SS
931 }
932 }
491144b5 933 write_files = (write_files_1 != 0);
c906108c 934
7c953934 935 if (batch_flag)
ee2bcb0c
AH
936 {
937 quiet = 1;
938
939 /* Disable all output styling when running in batch mode. */
940 cli_styling = 0;
941 }
c906108c
SS
942 }
943
e379cee6
PA
944 save_original_signals_state (quiet);
945
992c7d70 946 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
c3efb965 947 gdb::alternate_signal_stack signal_stack;
992c7d70 948
f218b647 949 /* Initialize all files. */
b5981e5a 950 gdb_init (gdb_program_name);
c906108c 951
371d5dec
MS
952 /* Now that gdb_init has created the initial inferior, we're in
953 position to set args for that inferior. */
3f81c18a
VP
954 if (set_args)
955 {
956 /* The remaining options are the command-line options for the
957 inferior. The first one is the sym/exec file, and the rest
958 are arguments. */
959 if (optind >= argc)
91b35fd0
GB
960 error (_("%s: `--args' specified but no program specified"),
961 gdb_program_name);
962
3f81c18a
VP
963 symarg = argv[optind];
964 execarg = argv[optind];
965 ++optind;
966 set_inferior_args_vector (argc - optind, &argv[optind]);
967 }
968 else
969 {
970 /* OK, that's all the options. */
971
972 /* The first argument, if specified, is the name of the
973 executable. */
974 if (optind < argc)
975 {
976 symarg = argv[optind];
977 execarg = argv[optind];
978 optind++;
979 }
980
981 /* If the user hasn't already specified a PID or the name of a
982 core file, then a second optional argument is allowed. If
983 present, this argument should be interpreted as either a
984 PID or a core file, whichever works. */
985 if (pidarg == NULL && corearg == NULL && optind < argc)
986 {
987 pid_or_core_arg = argv[optind];
988 optind++;
989 }
990
991 /* Any argument left on the command line is unexpected and
992 will be ignored. Inform the user. */
993 if (optind < argc)
3e43a32a
MS
994 fprintf_unfiltered (gdb_stderr,
995 _("Excess command line "
996 "arguments ignored. (%s%s)\n"),
3f81c18a
VP
997 argv[optind],
998 (optind == argc - 1) ? "" : " ...");
999 }
1000
025bb325 1001 /* Lookup gdbinit files. Note that the gdbinit file name may be
405feb71 1002 overridden during file initialization, so get_init_files should be
371d5dec 1003 called after gdb_init. */
ed2a2229 1004 std::vector<std::string> system_gdbinit;
f48cd836
CB
1005 std::string home_gdbinit;
1006 std::string local_gdbinit;
57a46001
JG
1007 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
1008
c906108c 1009 /* Do these (and anything which might call wrap_here or *_filtered)
4389a95a
AC
1010 after initialize_all_files() but before the interpreter has been
1011 installed. Otherwize the help/version messages will be eaten by
1012 the interpreter's output handler. */
1013
c906108c
SS
1014 if (print_version)
1015 {
c61b06a1 1016 print_gdb_version (gdb_stdout, false);
c906108c
SS
1017 wrap_here ("");
1018 printf_filtered ("\n");
1019 exit (0);
1020 }
1021
1022 if (print_help)
1023 {
1024 print_gdb_help (gdb_stdout);
c906108c
SS
1025 exit (0);
1026 }
1027
6eaaf48b
EZ
1028 if (print_configuration)
1029 {
1030 print_gdb_configuration (gdb_stdout);
1031 wrap_here ("");
1032 printf_filtered ("\n");
1033 exit (0);
1034 }
1035
4389a95a
AC
1036 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
1037 GDB retain the old MI1 interpreter startup behavior. Output the
1038 copyright message before the interpreter is installed. That way
1039 it isn't encapsulated in MI output. */
1040 if (!quiet && strcmp (interpreter_p, INTERP_MI1) == 0)
1041 {
371d5dec 1042 /* Print all the junk at the top, with trailing "..." if we are
dda83cd7 1043 about to read a symbol file (possibly slowly). */
c61b06a1 1044 print_gdb_version (gdb_stdout, true);
4389a95a
AC
1045 if (symarg)
1046 printf_filtered ("..");
1047 wrap_here ("");
e896d70e 1048 printf_filtered ("\n");
371d5dec
MS
1049 gdb_flush (gdb_stdout); /* Force to screen during slow
1050 operations. */
4389a95a
AC
1051 }
1052
4389a95a 1053 /* Install the default UI. All the interpreters should have had a
371d5dec 1054 look at things by now. Initialize the default interpreter. */
60eb5395 1055 set_top_level_interpreter (interpreter_p);
4389a95a
AC
1056
1057 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
1058 GDB retain the old MI1 interpreter startup behavior. Output the
1059 copyright message after the interpreter is installed when it is
1060 any sane interpreter. */
1061 if (!quiet && !current_interp_named_p (INTERP_MI1))
c906108c 1062 {
371d5dec 1063 /* Print all the junk at the top, with trailing "..." if we are
dda83cd7 1064 about to read a symbol file (possibly slowly). */
c61b06a1 1065 print_gdb_version (gdb_stdout, true);
c906108c
SS
1066 if (symarg)
1067 printf_filtered ("..");
c5aa993b 1068 wrap_here ("");
e896d70e 1069 printf_filtered ("\n");
371d5dec
MS
1070 gdb_flush (gdb_stdout); /* Force to screen during slow
1071 operations. */
c906108c
SS
1072 }
1073
e896d70e 1074 /* Set off error and warning messages with a blank line. */
69bbf465 1075 tmp_warn_preprint.reset ();
defc6f8c 1076 warning_pre_print = _("\nwarning: ");
c906108c 1077
16e7150e
JG
1078 /* Read and execute the system-wide gdbinit file, if it exists.
1079 This is done *before* all the command line arguments are
1080 processed; it sets global parameters, which are independent of
1081 what file you are debugging or what directory you are in. */
f48cd836 1082 if (!system_gdbinit.empty () && !inhibit_gdbinit)
ed2a2229
CB
1083 {
1084 for (const std::string &file : system_gdbinit)
1085 ret = catch_command_errors (source_script, file.c_str (), 0);
1086 }
16e7150e 1087
c906108c
SS
1088 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1089 *before* all the command line arguments are processed; it sets
1090 global parameters, which are independent of what file you are
1091 debugging or what directory you are in. */
c906108c 1092
f48cd836
CB
1093 if (!home_gdbinit.empty () && !inhibit_gdbinit && !inhibit_home_gdbinit)
1094 ret = catch_command_errors (source_script, home_gdbinit.c_str (), 0);
c906108c 1095
2d7b58e8 1096 /* Process '-ix' and '-iex' options early. */
74d877e5 1097 execute_cmdargs (&cmdarg_vec, CMDARG_INIT_FILE, CMDARG_INIT_COMMAND, &ret);
2d7b58e8 1098
c906108c
SS
1099 /* Now perform all the actions indicated by the arguments. */
1100 if (cdarg != NULL)
1101 {
b0f492b9 1102 ret = catch_command_errors (cd_command, cdarg, 0);
c906108c 1103 }
c906108c 1104
f60ee22e 1105 for (i = 0; i < dirarg.size (); i++)
b0f492b9 1106 ret = catch_command_errors (directory_switch, dirarg[i], 0);
c906108c 1107
88a1906b 1108 /* Skip auto-loading section-specified scripts until we've sourced
371d5dec
MS
1109 local_gdbinit (which is often used to augment the source search
1110 path). */
bf88dd68
JK
1111 save_auto_load = global_auto_load;
1112 global_auto_load = 0;
88a1906b 1113
c906108c
SS
1114 if (execarg != NULL
1115 && symarg != NULL
5cb316ef 1116 && strcmp (execarg, symarg) == 0)
c906108c 1117 {
11cf8741 1118 /* The exec file and the symbol-file are the same. If we can't
dda83cd7
SM
1119 open it, better only print one error message.
1120 catch_command_errors returns non-zero on success! */
b0f492b9
GB
1121 ret = catch_command_errors (exec_file_attach, execarg,
1122 !batch_flag);
1123 if (ret != 0)
1124 ret = catch_command_errors (symbol_file_add_main_adapter,
1125 symarg, !batch_flag);
c906108c
SS
1126 }
1127 else
1128 {
1129 if (execarg != NULL)
b0f492b9
GB
1130 ret = catch_command_errors (exec_file_attach, execarg,
1131 !batch_flag);
c906108c 1132 if (symarg != NULL)
b0f492b9
GB
1133 ret = catch_command_errors (symbol_file_add_main_adapter,
1134 symarg, !batch_flag);
c906108c 1135 }
c906108c 1136
a4d9b460 1137 if (corearg && pidarg)
3e43a32a
MS
1138 error (_("Can't attach to process and specify "
1139 "a core file at the same time."));
a4d9b460 1140
c906108c 1141 if (corearg != NULL)
b0f492b9
GB
1142 {
1143 ret = catch_command_errors (core_file_command, corearg,
1144 !batch_flag);
1145 }
a4d9b460 1146 else if (pidarg != NULL)
b0f492b9
GB
1147 {
1148 ret = catch_command_errors (attach_command, pidarg, !batch_flag);
1149 }
a4d9b460 1150 else if (pid_or_core_arg)
c906108c 1151 {
a4d9b460
PA
1152 /* The user specified 'gdb program pid' or gdb program core'.
1153 If pid_or_core_arg's first character is a digit, try attach
1154 first and then corefile. Otherwise try just corefile. */
00546b04 1155
a4d9b460 1156 if (isdigit (pid_or_core_arg[0]))
11cf8741 1157 {
b0f492b9
GB
1158 ret = catch_command_errors (attach_command, pid_or_core_arg,
1159 !batch_flag);
1160 if (ret == 0)
1161 ret = catch_command_errors (core_file_command,
1162 pid_or_core_arg,
1163 !batch_flag);
1164 }
1165 else
1166 {
1167 /* Can't be a pid, better be a corefile. */
1168 ret = catch_command_errors (core_file_command,
1169 pid_or_core_arg,
1170 !batch_flag);
11cf8741 1171 }
c906108c 1172 }
c906108c
SS
1173
1174 if (ttyarg != NULL)
05779d57 1175 current_inferior ()->set_tty (ttyarg);
c906108c 1176
371d5dec 1177 /* Error messages should no longer be distinguished with extra output. */
defc6f8c 1178 warning_pre_print = _("warning: ");
c906108c
SS
1179
1180 /* Read the .gdbinit file in the current directory, *if* it isn't
1181 the same as the $HOME/.gdbinit file (it should exist, also). */
f48cd836 1182 if (!local_gdbinit.empty ())
bf88dd68 1183 {
14278e1f 1184 auto_load_local_gdbinit_pathname
f48cd836 1185 = gdb_realpath (local_gdbinit.c_str ()).release ();
bf88dd68 1186
bccbefd2 1187 if (!inhibit_gdbinit && auto_load_local_gdbinit
f48cd836 1188 && file_is_auto_load_safe (local_gdbinit.c_str (),
4dc84fd1
JK
1189 _("auto-load: Loading .gdbinit "
1190 "file \"%s\".\n"),
f48cd836 1191 local_gdbinit.c_str ()))
bf88dd68
JK
1192 {
1193 auto_load_local_gdbinit_loaded = 1;
1194
f48cd836 1195 ret = catch_command_errors (source_script, local_gdbinit.c_str (), 0);
bf88dd68
JK
1196 }
1197 }
c906108c 1198
88a1906b
DE
1199 /* Now that all .gdbinit's have been read and all -d options have been
1200 processed, we can read any scripts mentioned in SYMARG.
1201 We wait until now because it is common to add to the source search
1202 path in local_gdbinit. */
bf88dd68 1203 global_auto_load = save_auto_load;
2030c079 1204 for (objfile *objfile : current_program_space->objfiles ())
7f6130ff 1205 load_auto_scripts_for_objfile (objfile);
88a1906b 1206
8320cc4f 1207 /* Process '-x' and '-ex' options. */
74d877e5 1208 execute_cmdargs (&cmdarg_vec, CMDARG_FILE, CMDARG_COMMAND, &ret);
c906108c 1209
371d5dec
MS
1210 /* Read in the old history after all the command files have been
1211 read. */
c5aa993b 1212 init_history ();
c906108c 1213
7c953934 1214 if (batch_flag)
c906108c 1215 {
b0f492b9
GB
1216 int error_status = EXIT_FAILURE;
1217 int *exit_arg = ret == 0 ? &error_status : NULL;
1218
c906108c 1219 /* We have hit the end of the batch file. */
b0f492b9 1220 quit_force (exit_arg, 0);
c906108c 1221 }
1e3b796d
TT
1222}
1223
1224static void
1225captured_main (void *data)
1226{
1227 struct captured_main_args *context = (struct captured_main_args *) data;
1228
1229 captured_main_1 (context);
c906108c 1230
11cf8741
JM
1231 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1232 moving this loop and the code found in captured_command_loop()
1233 into the command_loop() proper. The main thing holding back that
371d5dec 1234 change - SET_TOP_LEVEL() - has been eliminated. */
11cf8741
JM
1235 while (1)
1236 {
a70b8144 1237 try
bf469271
PA
1238 {
1239 captured_command_loop ();
1240 }
230d2906 1241 catch (const gdb_exception &ex)
bf469271
PA
1242 {
1243 exception_print (gdb_stderr, ex);
1244 }
11cf8741 1245 }
11cf8741
JM
1246 /* No exit -- exit is through quit_command. */
1247}
c906108c 1248
11cf8741 1249int
f15ab4a7 1250gdb_main (struct captured_main_args *args)
11cf8741 1251{
a70b8144 1252 try
98d9f24e
PA
1253 {
1254 captured_main (args);
1255 }
230d2906 1256 catch (const gdb_exception &ex)
98d9f24e
PA
1257 {
1258 exception_print (gdb_stderr, ex);
1259 }
98d9f24e 1260
864dbc90
AC
1261 /* The only way to end up here is by an error (normal exit is
1262 handled by quit_force()), hence always return an error status. */
1263 return 1;
c906108c
SS
1264}
1265
11cf8741 1266
c906108c
SS
1267/* Don't use *_filtered for printing help. We don't want to prompt
1268 for continue no matter how small the screen or how much we're going
1269 to print. */
1270
1271static void
d9fcf2fb 1272print_gdb_help (struct ui_file *stream)
c906108c 1273{
ed2a2229 1274 std::vector<std::string> system_gdbinit;
f48cd836
CB
1275 std::string home_gdbinit;
1276 std::string local_gdbinit;
16e7150e
JG
1277
1278 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
1279
b187bec1
EZ
1280 /* Note: The options in the list below are only approximately sorted
1281 in the alphabetical order, so as to group closely related options
1282 together. */
defc6f8c 1283 fputs_unfiltered (_("\
c906108c 1284This is the GNU debugger. Usage:\n\n\
552c04a7
TT
1285 gdb [options] [executable-file [core-file or process-id]]\n\
1286 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
defc6f8c
TT
1287"), stream);
1288 fputs_unfiltered (_("\
b187bec1 1289Selection of debuggee and its files:\n\n\
552c04a7 1290 --args Arguments after executable-file are passed to inferior\n\
b187bec1
EZ
1291 --core=COREFILE Analyze the core dump COREFILE.\n\
1292 --exec=EXECFILE Use EXECFILE as the executable.\n\
1293 --pid=PID Attach to running process PID.\n\
1294 --directory=DIR Search for source files in DIR.\n\
1295 --se=FILE Use FILE as symbol file and executable file.\n\
1296 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1297 --readnow Fully read symbol files on first access.\n\
97cbe998 1298 --readnever Do not read symbol files.\n\
b187bec1 1299 --write Set writing into executable and core files.\n\n\
defc6f8c
TT
1300"), stream);
1301 fputs_unfiltered (_("\
b187bec1 1302Initial commands and command files:\n\n\
8a5a3c82 1303 --command=FILE, -x Execute GDB commands from FILE.\n\
b187bec1 1304 --init-command=FILE, -ix\n\
dda83cd7 1305 Like -x but execute commands before loading inferior.\n\
8a5a3c82 1306 --eval-command=COMMAND, -ex\n\
dda83cd7
SM
1307 Execute a single GDB command.\n\
1308 May be used multiple times and in conjunction\n\
1309 with --command.\n\
b187bec1 1310 --init-eval-command=COMMAND, -iex\n\
dda83cd7 1311 Like -ex but before loading inferior.\n\
b187bec1
EZ
1312 --nh Do not read ~/.gdbinit.\n\
1313 --nx Do not read any .gdbinit files in any directory.\n\n\
defc6f8c
TT
1314"), stream);
1315 fputs_unfiltered (_("\
b187bec1 1316Output and user interface control:\n\n\
c906108c 1317 --fullname Output information used by emacs-GDB interface.\n\
8b93c638 1318 --interpreter=INTERP\n\
dda83cd7 1319 Select a specific interpreter / user interface\n\
c906108c 1320 --tty=TTY Use TTY for input/output by the program being debugged.\n\
b187bec1
EZ
1321 -w Use the GUI interface.\n\
1322 --nw Do not use the GUI interface.\n\
defc6f8c 1323"), stream);
c906108c 1324#if defined(TUI)
defc6f8c 1325 fputs_unfiltered (_("\
c906108c 1326 --tui Use a terminal user interface.\n\
defc6f8c 1327"), stream);
c906108c 1328#endif
481860b3 1329 fputs_unfiltered (_("\
b187bec1 1330 --dbx DBX compatibility mode.\n\
adcc0a31 1331 -q, --quiet, --silent\n\
dda83cd7 1332 Do not print version number on startup.\n\n\
b187bec1
EZ
1333"), stream);
1334 fputs_unfiltered (_("\
1335Operating modes:\n\n\
1336 --batch Exit after processing options.\n\
1337 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1338 --return-child-result\n\
dda83cd7 1339 GDB exit code will be the child's exit code.\n\
b187bec1
EZ
1340 --configuration Print details about GDB configuration and then exit.\n\
1341 --help Print this message and then exit.\n\
1342 --version Print version information and then exit.\n\n\
1343Remote debugging options:\n\n\
1344 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1345 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1346Other options:\n\n\
1347 --cd=DIR Change current directory to DIR.\n\
8d551b02 1348 --data-directory=DIR, -D\n\
dda83cd7 1349 Set GDB's data-directory to DIR.\n\
defc6f8c 1350"), stream);
defc6f8c 1351 fputs_unfiltered (_("\n\
16e7150e
JG
1352At startup, GDB reads the following init files and executes their commands:\n\
1353"), stream);
f48cd836 1354 if (!system_gdbinit.empty ())
ed2a2229
CB
1355 {
1356 std::string output;
1357 for (size_t idx = 0; idx < system_gdbinit.size (); ++idx)
dda83cd7 1358 {
ed2a2229
CB
1359 output += system_gdbinit[idx];
1360 if (idx < system_gdbinit.size () - 1)
1361 output += ", ";
1362 }
1363 fprintf_unfiltered (stream, _("\
1364 * system-wide init files: %s\n\
1365"), output.c_str ());
1366 }
f48cd836 1367 if (!home_gdbinit.empty ())
16e7150e
JG
1368 fprintf_unfiltered (stream, _("\
1369 * user-specific init file: %s\n\
f48cd836
CB
1370"), home_gdbinit.c_str ());
1371 if (!local_gdbinit.empty ())
16e7150e 1372 fprintf_unfiltered (stream, _("\
bf88dd68 1373 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
f48cd836 1374"), local_gdbinit.c_str ());
16e7150e 1375 fputs_unfiltered (_("\n\
c906108c
SS
1376For more information, type \"help\" from within GDB, or consult the\n\
1377GDB manual (available as on-line info or a printed manual).\n\
defc6f8c 1378"), stream);
c16158bc 1379 if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
4412332f
JG
1380 fprintf_unfiltered (stream, _("\n\
1381Report bugs to %s.\n\
c16158bc 1382"), REPORT_BUGS_TO);
4412332f
JG
1383 if (stream == gdb_stdout)
1384 fprintf_unfiltered (stream, _("\n\
1385You can ask GDB-related questions on the GDB users mailing list\n\
1386(gdb@sourceware.org) or on GDB's IRC channel (#gdb on Freenode).\n"));
c906108c 1387}
This page took 2.368963 seconds and 4 git commands to generate.