1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
28 #include <sys/types.h>
31 #include "gdbsupport/event-loop.h"
37 #include "cli/cli-cmds.h"
39 #include "auto-load.h"
42 #include "filenames.h"
43 #include "gdbsupport/filestuff.h"
45 #include "event-top.h"
47 #include "gdbsupport/signals-state-save-restore.h"
50 #include "gdbsupport/pathstuff.h"
51 #include "cli/cli-style.h"
53 #include "gdbtk/generic/gdbtk.h"
55 #include "gdbsupport/alt-stack.h"
56 #include "observable.h"
58 /* The selected interpreter. This will be used as a set command
59 variable, so it should always be malloc'ed - since
60 do_setshow_command will free it. */
63 /* Whether dbx commands will be handled. */
66 /* System root path, used to find libraries etc. */
67 char *gdb_sysroot
= 0;
69 /* GDB datadir, used to store data files. */
70 std::string gdb_datadir
;
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. */
75 static int gdb_datadir_provided
= 0;
77 /* If gdb was configured with --with-python=/path,
78 the possibly relocated path to python's lib directory. */
79 std::string python_libdir
;
81 /* Target IO streams. */
82 struct ui_file
*gdb_stdtargin
;
83 struct ui_file
*gdb_stdtarg
;
84 struct ui_file
*gdb_stdtargerr
;
86 /* True if --batch or --batch-silent was seen. */
89 /* Support for the --batch-silent option. */
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. */
95 int return_child_result
= 0;
96 int return_child_result_value
= -1;
99 /* GDB as it has been invoked from the command line (i.e. argv[0]). */
100 static char *gdb_program_name
;
102 /* Return read only pointer to GDB_PROGRAM_NAME. */
104 get_gdb_program_name (void)
106 return gdb_program_name
;
109 static void print_gdb_help (struct ui_file
*);
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. */
116 set_gdb_data_directory (const char *new_datadir
)
120 if (stat (new_datadir
, &st
) < 0)
122 int save_errno
= errno
;
124 fprintf_unfiltered (gdb_stderr
, "Warning: ");
125 print_sys_errmsg (new_datadir
, save_errno
);
127 else if (!S_ISDIR (st
.st_mode
))
128 warning (_("%ps is not a directory."),
129 styled_string (file_name_style
.style (), new_datadir
));
131 gdb_datadir
= gdb_realpath (new_datadir
).get ();
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. */
137 if (!IS_ABSOLUTE_PATH (gdb_datadir
.c_str ()))
139 gdb::unique_xmalloc_ptr
<char> abs_datadir
140 = gdb_abspath (gdb_datadir
.c_str ());
142 gdb_datadir
= abs_datadir
.get ();
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
148 file or directory. RELOCATABLE is true if the value is relocatable,
149 false otherwise. This may return an empty string under the same
150 conditions as make_relative_prefix returning NULL. */
153 relocate_path (const char *progname
, const char *initial
, bool relocatable
)
157 gdb::unique_xmalloc_ptr
<char> str (make_relative_prefix (progname
,
162 return std::string ();
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.
170 The chosen directory is then canonicalized using lrealpath. */
173 relocate_gdb_directory (const char *initial
, bool relocatable
)
175 std::string dir
= relocate_path (gdb_program_name
, initial
, relocatable
);
180 if (stat (dir
.c_str (), &s
) != 0 || !S_ISDIR (s
.st_mode
))
188 /* Canonicalize the directory. */
191 gdb::unique_xmalloc_ptr
<char> canon_sysroot (lrealpath (dir
.c_str ()));
194 dir
= canon_sysroot
.get ();
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
205 relocate_gdbinit_path_maybe_in_datadir (const std::string
&file
,
208 size_t datadir_len
= strlen (GDB_DATADIR
);
210 std::string relocated_path
;
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
]))
219 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
222 size_t start
= datadir_len
;
223 for (; IS_DIR_SEPARATOR (file
[start
]); ++start
)
225 relocated_path
= gdb_datadir
+ SLASH_STRING
+ file
.substr (start
);
229 relocated_path
= relocate_path (gdb_program_name
, file
.c_str (),
232 return relocated_path
;
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
239 LOCAL_GDBINIT) is set to the empty string. */
241 get_init_files (std::vector
<std::string
> *system_gdbinit
,
242 std::string
*home_gdbinit
,
243 std::string
*local_gdbinit
)
245 static std::vector
<std::string
> sysgdbinit
;
246 static std::string homeinit
;
247 static std::string localinit
;
248 static int initialized
= 0;
252 struct stat homebuf
, cwdbuf
, s
;
254 if (SYSTEM_GDBINIT
[0])
256 std::string relocated_sysgdbinit
257 = relocate_gdbinit_path_maybe_in_datadir
258 (SYSTEM_GDBINIT
, SYSTEM_GDBINIT_RELOCATABLE
);
259 if (!relocated_sysgdbinit
.empty ()
260 && stat (relocated_sysgdbinit
.c_str (), &s
) == 0)
261 sysgdbinit
.push_back (relocated_sysgdbinit
);
263 if (SYSTEM_GDBINIT_DIR
[0])
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 ()));
272 std::vector
<std::string
> files
;
275 struct dirent
*ent
= readdir (dir
.get ());
278 std::string
name (ent
->d_name
);
279 if (name
== "." || name
== "..")
281 /* ent->d_type is not available on all systems (e.g. mingw,
282 Solaris), so we have to call stat(). */
284 = relocated_gdbinit_dir
+ SLASH_STRING
+ name
;
285 if (stat (filename
.c_str (), &s
) != 0
286 || !S_ISREG (s
.st_mode
))
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
294 if (extlang
!= nullptr && ext_lang_present_p (extlang
))
295 files
.push_back (std::move (filename
));
297 std::sort (files
.begin (), files
.end ());
298 sysgdbinit
.insert (sysgdbinit
.end (),
299 files
.begin (), files
.end ());
304 /* If the .gdbinit file in the current directory is the same as
305 the $HOME/.gdbinit file, it should not be sourced. homebuf
306 and cwdbuf are used in that purpose. Make sure that the stats
307 are zero in case one of them fails (this guarantees that they
308 won't match if either exists). */
310 memset (&homebuf
, 0, sizeof (struct stat
));
311 memset (&cwdbuf
, 0, sizeof (struct stat
));
313 homeinit
= find_gdb_home_config_file (GDBINIT
, &homebuf
);
315 if (stat (GDBINIT
, &cwdbuf
) == 0)
317 if (homeinit
.empty ()
318 || memcmp ((char *) &homebuf
, (char *) &cwdbuf
,
319 sizeof (struct stat
)))
326 *system_gdbinit
= sysgdbinit
;
327 *home_gdbinit
= homeinit
;
328 *local_gdbinit
= localinit
;
331 /* Start up the event loop. This is the entry point to the event loop
332 from the command loop. */
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
347 result
= gdb_do_one_event ();
349 catch (const gdb_exception
&ex
)
351 exception_print (gdb_stderr
, ex
);
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 ()
358 async_enable_stdin ();
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. */
381 /* We are done with the event loop. There are no more event sources
382 to listen to. So we exit GDB. */
386 /* Call command_loop. */
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
391 static void captured_command_loop () __attribute__((noinline
));
394 captured_command_loop ()
396 struct ui
*ui
= current_ui
;
398 /* Top-level execution commands can be run in the background from
400 current_ui
->async
= 1;
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 ());
406 /* Now it's time to start the event loop. */
409 /* If the command_loop returned, normally (rather than threw an
410 error) we try to quit. If the quit is aborted, our caller
411 catches the signal and restarts the command loop. */
412 quit_command (NULL
, ui
->instream
== ui
->stdin_stream
);
415 /* Handle command errors thrown from within catch_command_errors. */
418 handle_command_errors (const struct gdb_exception
&e
)
422 exception_print (gdb_stderr
, e
);
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 ();
433 /* Type of the command callback passed to the const
434 catch_command_errors. */
436 typedef void (catch_command_errors_const_ftype
) (const char *, int);
438 /* Wrap calls to commands run before the event loop is started. */
441 catch_command_errors (catch_command_errors_const_ftype command
,
442 const char *arg
, int from_tty
)
446 int was_sync
= current_ui
->prompt_state
== PROMPT_BLOCKED
;
448 command (arg
, from_tty
);
450 maybe_wait_sync_command_done (was_sync
);
452 catch (const gdb_exception
&e
)
454 return handle_command_errors (e
);
460 /* Adapter for symbol_file_add_main that translates 'from_tty' to a
461 symfile_add_flags. */
464 symbol_file_add_main_adapter (const char *arg
, int from_tty
)
466 symfile_add_flags add_flags
= 0;
469 add_flags
|= SYMFILE_VERBOSE
;
471 symbol_file_add_main (arg
, add_flags
);
474 /* Perform validation of the '--readnow' and '--readnever' flags. */
477 validate_readnow_readnever ()
479 if (readnever_symbol_files
&& readnow_symbol_files
)
481 error (_("%s: '--readnow' and '--readnever' cannot be "
482 "specified simultaneously"),
487 /* Type of this option. */
490 /* Option type -x. */
493 /* Option type -ex. */
496 /* Option type -ix. */
499 /* Option type -iex. */
503 /* Arguments of --command option and its counterpart. */
506 cmdarg (cmdarg_kind type_
, char *string_
)
507 : type (type_
), string (string_
)
510 /* Type of this option. */
511 enum cmdarg_kind type
;
513 /* Value of this option - filename or the GDB command itself. String memory
514 is not owned by this structure despite it is 'const'. */
518 /* From CMDARG_VEC execute command files (matching FILE_TYPE) or commands
519 (matching CMD_TYPE). Update the value in *RET if and scripts or
520 commands are executed. */
523 execute_cmdargs (const std::vector
<struct cmdarg
> *cmdarg_vec
,
524 cmdarg_kind file_type
, cmdarg_kind cmd_type
,
527 for (const auto &cmdarg_p
: *cmdarg_vec
)
529 if (cmdarg_p
.type
== file_type
)
530 *ret
= catch_command_errors (source_script
, cmdarg_p
.string
,
532 else if (cmdarg_p
.type
== cmd_type
)
533 *ret
= catch_command_errors (execute_command
, cmdarg_p
.string
,
539 captured_main_1 (struct captured_main_args
*context
)
541 int argc
= context
->argc
;
542 char **argv
= context
->argv
;
544 static int quiet
= 0;
545 static int set_args
= 0;
546 static int inhibit_home_gdbinit
= 0;
548 /* Pointers to various arguments from command line. */
550 char *execarg
= NULL
;
552 char *corearg
= NULL
;
553 char *pid_or_core_arg
= NULL
;
557 /* These are static so that we can take their address in an
559 static int print_help
;
560 static int print_version
;
561 static int print_configuration
;
563 /* Pointers to all arguments of --command option. */
564 std::vector
<struct cmdarg
> cmdarg_vec
;
566 /* All arguments of --directory option. */
567 std::vector
<char *> dirarg
;
573 #ifdef HAVE_USEFUL_SBRK
574 /* Set this before constructing scoped_command_stats. */
575 lim_at_start
= (char *) sbrk (0);
578 scoped_command_stats
stat_reporter (false);
580 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
581 setlocale (LC_MESSAGES
, "");
583 #if defined (HAVE_SETLOCALE)
584 setlocale (LC_CTYPE
, "");
587 bindtextdomain (PACKAGE
, LOCALEDIR
);
588 textdomain (PACKAGE
);
594 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
595 as a Windows pipe, and Windows buffers on pipes. */
596 setvbuf (stderr
, NULL
, _IONBF
, BUFSIZ
);
599 /* Note: `error' cannot be called before this point, because the
600 caller will crash when trying to print the exception. */
601 main_ui
= new ui (stdin
, stdout
, stderr
);
602 current_ui
= main_ui
;
604 gdb_stdtargerr
= gdb_stderr
; /* for moment */
605 gdb_stdtargin
= gdb_stdin
; /* for moment */
607 if (bfd_init () != BFD_INIT_MAGIC
)
608 error (_("fatal error: libbfd ABI mismatch"));
611 /* On Windows, argv[0] is not necessarily set to absolute form when
612 GDB is found along PATH, without which relocation doesn't work. */
613 gdb_program_name
= windows_get_absolute_argv0 (argv
[0]);
615 gdb_program_name
= xstrdup (argv
[0]);
618 /* Prefix warning messages with the command name. */
619 gdb::unique_xmalloc_ptr
<char> tmp_warn_preprint
620 (xstrprintf ("%s: warning: ", gdb_program_name
));
621 warning_pre_print
= tmp_warn_preprint
.get ();
623 current_directory
= getcwd (NULL
, 0);
624 if (current_directory
== NULL
)
625 perror_warning_with_name (_("error finding working directory"));
627 /* Set the sysroot path. */
629 = xstrdup (relocate_gdb_directory (TARGET_SYSTEM_ROOT
,
630 TARGET_SYSTEM_ROOT_RELOCATABLE
).c_str ());
632 if (*gdb_sysroot
== '\0')
635 gdb_sysroot
= xstrdup (TARGET_SYSROOT_PREFIX
);
639 = xstrdup (relocate_gdb_directory (DEBUGDIR
,
640 DEBUGDIR_RELOCATABLE
).c_str ());
642 gdb_datadir
= relocate_gdb_directory (GDB_DATADIR
,
643 GDB_DATADIR_RELOCATABLE
);
645 #ifdef WITH_PYTHON_LIBDIR
646 python_libdir
= relocate_gdb_directory (WITH_PYTHON_LIBDIR
,
647 PYTHON_LIBDIR_RELOCATABLE
);
651 add_substitute_path_rule (RELOC_SRCDIR
,
652 make_relative_prefix (gdb_program_name
, BINDIR
,
656 /* There will always be an interpreter. Either the one passed into
657 this captured main, or one specified by the user at start up, or
658 the console. Initialize the interpreter to the one requested by
660 interpreter_p
= xstrdup (context
->interpreter_p
);
662 /* Parse arguments and options. */
665 /* When var field is 0, use flag field to record the equivalent
666 short option (or arbitrary numbers starting at 10 for those
667 with no equivalent). */
681 /* This struct requires int* in the struct, but write_files is a bool.
682 So use this temporary int that we write back after argument parsing. */
683 int write_files_1
= 0;
684 static struct option long_options
[] =
686 {"tui", no_argument
, 0, OPT_TUI
},
687 {"dbx", no_argument
, &dbx_commands
, 1},
688 {"readnow", no_argument
, NULL
, OPT_READNOW
},
689 {"readnever", no_argument
, NULL
, OPT_READNEVER
},
690 {"r", no_argument
, NULL
, OPT_READNOW
},
691 {"quiet", no_argument
, &quiet
, 1},
692 {"q", no_argument
, &quiet
, 1},
693 {"silent", no_argument
, &quiet
, 1},
694 {"nh", no_argument
, &inhibit_home_gdbinit
, 1},
695 {"nx", no_argument
, &inhibit_gdbinit
, 1},
696 {"n", no_argument
, &inhibit_gdbinit
, 1},
697 {"batch-silent", no_argument
, 0, 'B'},
698 {"batch", no_argument
, &batch_flag
, 1},
700 /* This is a synonym for "--annotate=1". --annotate is now
701 preferred, but keep this here for a long time because people
702 will be running emacses which use --fullname. */
703 {"fullname", no_argument
, 0, 'f'},
704 {"f", no_argument
, 0, 'f'},
706 {"annotate", required_argument
, 0, OPT_ANNOTATE
},
707 {"help", no_argument
, &print_help
, 1},
708 {"se", required_argument
, 0, OPT_SE
},
709 {"symbols", required_argument
, 0, 's'},
710 {"s", required_argument
, 0, 's'},
711 {"exec", required_argument
, 0, 'e'},
712 {"e", required_argument
, 0, 'e'},
713 {"core", required_argument
, 0, 'c'},
714 {"c", required_argument
, 0, 'c'},
715 {"pid", required_argument
, 0, 'p'},
716 {"p", required_argument
, 0, 'p'},
717 {"command", required_argument
, 0, 'x'},
718 {"eval-command", required_argument
, 0, 'X'},
719 {"version", no_argument
, &print_version
, 1},
720 {"configuration", no_argument
, &print_configuration
, 1},
721 {"x", required_argument
, 0, 'x'},
722 {"ex", required_argument
, 0, 'X'},
723 {"init-command", required_argument
, 0, OPT_IX
},
724 {"init-eval-command", required_argument
, 0, OPT_IEX
},
725 {"ix", required_argument
, 0, OPT_IX
},
726 {"iex", required_argument
, 0, OPT_IEX
},
728 {"tclcommand", required_argument
, 0, 'z'},
729 {"enable-external-editor", no_argument
, 0, 'y'},
730 {"editor-command", required_argument
, 0, 'w'},
732 {"ui", required_argument
, 0, 'i'},
733 {"interpreter", required_argument
, 0, 'i'},
734 {"i", required_argument
, 0, 'i'},
735 {"directory", required_argument
, 0, 'd'},
736 {"d", required_argument
, 0, 'd'},
737 {"data-directory", required_argument
, 0, 'D'},
738 {"D", required_argument
, 0, 'D'},
739 {"cd", required_argument
, 0, OPT_CD
},
740 {"tty", required_argument
, 0, 't'},
741 {"baud", required_argument
, 0, 'b'},
742 {"b", required_argument
, 0, 'b'},
743 {"nw", no_argument
, NULL
, OPT_NOWINDOWS
},
744 {"nowindows", no_argument
, NULL
, OPT_NOWINDOWS
},
745 {"w", no_argument
, NULL
, OPT_WINDOWS
},
746 {"windows", no_argument
, NULL
, OPT_WINDOWS
},
747 {"statistics", no_argument
, 0, OPT_STATISTICS
},
748 {"write", no_argument
, &write_files_1
, 1},
749 {"args", no_argument
, &set_args
, 1},
750 {"l", required_argument
, 0, 'l'},
751 {"return-child-result", no_argument
, &return_child_result
, 1},
752 {0, no_argument
, 0, 0}
759 c
= getopt_long_only (argc
, argv
, "",
760 long_options
, &option_index
);
761 if (c
== EOF
|| set_args
)
764 /* Long option that takes an argument. */
765 if (c
== 0 && long_options
[option_index
].flag
== 0)
766 c
= long_options
[option_index
].val
;
771 /* Long option that just sets a flag. */
781 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
782 annotation_level
= atoi (optarg
);
785 /* Enable the display of both time and space usage. */
786 set_per_command_time (1);
787 set_per_command_space (1);
790 /* --tui is equivalent to -i=tui. */
792 xfree (interpreter_p
);
793 interpreter_p
= xstrdup (INTERP_TUI
);
795 error (_("%s: TUI mode is not supported"), gdb_program_name
);
799 /* FIXME: cagney/2003-03-01: Not sure if this option is
800 actually useful, and if it is, what it should do. */
802 /* --windows is equivalent to -i=insight. */
803 xfree (interpreter_p
);
804 interpreter_p
= xstrdup (INTERP_INSIGHT
);
808 /* -nw is equivalent to -i=console. */
809 xfree (interpreter_p
);
810 interpreter_p
= xstrdup (INTERP_CONSOLE
);
813 annotation_level
= 1;
828 cmdarg_vec
.emplace_back (CMDARG_FILE
, optarg
);
831 cmdarg_vec
.emplace_back (CMDARG_COMMAND
, optarg
);
834 cmdarg_vec
.emplace_back (CMDARG_INIT_FILE
, optarg
);
837 cmdarg_vec
.emplace_back (CMDARG_INIT_COMMAND
, optarg
);
840 batch_flag
= batch_silent
= 1;
841 gdb_stdout
= new null_file ();
844 if (optarg
[0] == '\0')
845 error (_("%s: empty path for `--data-directory'"),
847 set_gdb_data_directory (optarg
);
848 gdb_datadir_provided
= 1;
853 if (!gdbtk_test (optarg
))
854 error (_("%s: unable to load tclcommand file \"%s\""),
855 gdb_program_name
, optarg
);
859 /* Backwards compatibility only. */
863 /* Set the external editor commands when gdb is farming out files
864 to be edited by another program. */
865 external_editor_command
= xstrdup (optarg
);
870 xfree (interpreter_p
);
871 interpreter_p
= xstrdup (optarg
);
874 dirarg
.push_back (optarg
);
887 rate
= strtol (optarg
, &p
, 0);
888 if (rate
== 0 && p
== optarg
)
889 warning (_("could not set baud rate to `%s'."),
900 timeout
= strtol (optarg
, &p
, 0);
901 if (timeout
== 0 && p
== optarg
)
902 warning (_("could not set timeout limit to `%s'."),
905 remote_timeout
= timeout
;
911 readnow_symbol_files
= 1;
912 validate_readnow_readnever ();
918 readnever_symbol_files
= 1;
919 validate_readnow_readnever ();
924 error (_("Use `%s --help' for a complete list of options."),
928 write_files
= (write_files_1
!= 0);
934 /* Disable all output styling when running in batch mode. */
939 save_original_signals_state (quiet
);
941 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
942 gdb::alternate_signal_stack signal_stack
;
944 /* Initialize all files. */
945 gdb_init (gdb_program_name
);
947 /* Now that gdb_init has created the initial inferior, we're in
948 position to set args for that inferior. */
951 /* The remaining options are the command-line options for the
952 inferior. The first one is the sym/exec file, and the rest
955 error (_("%s: `--args' specified but no program specified"),
958 symarg
= argv
[optind
];
959 execarg
= argv
[optind
];
961 set_inferior_args_vector (argc
- optind
, &argv
[optind
]);
965 /* OK, that's all the options. */
967 /* The first argument, if specified, is the name of the
971 symarg
= argv
[optind
];
972 execarg
= argv
[optind
];
976 /* If the user hasn't already specified a PID or the name of a
977 core file, then a second optional argument is allowed. If
978 present, this argument should be interpreted as either a
979 PID or a core file, whichever works. */
980 if (pidarg
== NULL
&& corearg
== NULL
&& optind
< argc
)
982 pid_or_core_arg
= argv
[optind
];
986 /* Any argument left on the command line is unexpected and
987 will be ignored. Inform the user. */
989 fprintf_unfiltered (gdb_stderr
,
990 _("Excess command line "
991 "arguments ignored. (%s%s)\n"),
993 (optind
== argc
- 1) ? "" : " ...");
996 /* Lookup gdbinit files. Note that the gdbinit file name may be
997 overridden during file initialization, so get_init_files should be
998 called after gdb_init. */
999 std::vector
<std::string
> system_gdbinit
;
1000 std::string home_gdbinit
;
1001 std::string local_gdbinit
;
1002 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1004 /* Do these (and anything which might call wrap_here or *_filtered)
1005 after initialize_all_files() but before the interpreter has been
1006 installed. Otherwize the help/version messages will be eaten by
1007 the interpreter's output handler. */
1011 print_gdb_version (gdb_stdout
, false);
1013 printf_filtered ("\n");
1019 print_gdb_help (gdb_stdout
);
1023 if (print_configuration
)
1025 print_gdb_configuration (gdb_stdout
);
1027 printf_filtered ("\n");
1031 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
1032 GDB retain the old MI1 interpreter startup behavior. Output the
1033 copyright message before the interpreter is installed. That way
1034 it isn't encapsulated in MI output. */
1035 if (!quiet
&& strcmp (interpreter_p
, INTERP_MI1
) == 0)
1037 /* Print all the junk at the top, with trailing "..." if we are
1038 about to read a symbol file (possibly slowly). */
1039 print_gdb_version (gdb_stdout
, true);
1041 printf_filtered ("..");
1043 printf_filtered ("\n");
1044 gdb_flush (gdb_stdout
); /* Force to screen during slow
1048 /* Install the default UI. All the interpreters should have had a
1049 look at things by now. Initialize the default interpreter. */
1050 set_top_level_interpreter (interpreter_p
);
1052 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
1053 GDB retain the old MI1 interpreter startup behavior. Output the
1054 copyright message after the interpreter is installed when it is
1055 any sane interpreter. */
1056 if (!quiet
&& !current_interp_named_p (INTERP_MI1
))
1058 /* Print all the junk at the top, with trailing "..." if we are
1059 about to read a symbol file (possibly slowly). */
1060 print_gdb_version (gdb_stdout
, true);
1062 printf_filtered ("..");
1064 printf_filtered ("\n");
1065 gdb_flush (gdb_stdout
); /* Force to screen during slow
1069 /* Set off error and warning messages with a blank line. */
1070 tmp_warn_preprint
.reset ();
1071 warning_pre_print
= _("\nwarning: ");
1073 /* Read and execute the system-wide gdbinit file, if it exists.
1074 This is done *before* all the command line arguments are
1075 processed; it sets global parameters, which are independent of
1076 what file you are debugging or what directory you are in. */
1077 if (!system_gdbinit
.empty () && !inhibit_gdbinit
)
1079 for (const std::string
&file
: system_gdbinit
)
1080 ret
= catch_command_errors (source_script
, file
.c_str (), 0);
1083 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1084 *before* all the command line arguments are processed; it sets
1085 global parameters, which are independent of what file you are
1086 debugging or what directory you are in. */
1088 if (!home_gdbinit
.empty () && !inhibit_gdbinit
&& !inhibit_home_gdbinit
)
1089 ret
= catch_command_errors (source_script
, home_gdbinit
.c_str (), 0);
1091 /* Process '-ix' and '-iex' options early. */
1092 execute_cmdargs (&cmdarg_vec
, CMDARG_INIT_FILE
, CMDARG_INIT_COMMAND
, &ret
);
1094 /* Now perform all the actions indicated by the arguments. */
1097 ret
= catch_command_errors (cd_command
, cdarg
, 0);
1100 for (i
= 0; i
< dirarg
.size (); i
++)
1101 ret
= catch_command_errors (directory_switch
, dirarg
[i
], 0);
1103 /* Skip auto-loading section-specified scripts until we've sourced
1104 local_gdbinit (which is often used to augment the source search
1106 save_auto_load
= global_auto_load
;
1107 global_auto_load
= 0;
1111 && strcmp (execarg
, symarg
) == 0)
1113 /* The exec file and the symbol-file are the same. If we can't
1114 open it, better only print one error message.
1115 catch_command_errors returns non-zero on success! */
1116 ret
= catch_command_errors (exec_file_attach
, execarg
,
1119 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1120 symarg
, !batch_flag
);
1124 if (execarg
!= NULL
)
1125 ret
= catch_command_errors (exec_file_attach
, execarg
,
1128 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1129 symarg
, !batch_flag
);
1132 if (corearg
&& pidarg
)
1133 error (_("Can't attach to process and specify "
1134 "a core file at the same time."));
1136 if (corearg
!= NULL
)
1138 ret
= catch_command_errors (core_file_command
, corearg
,
1141 else if (pidarg
!= NULL
)
1143 ret
= catch_command_errors (attach_command
, pidarg
, !batch_flag
);
1145 else if (pid_or_core_arg
)
1147 /* The user specified 'gdb program pid' or gdb program core'.
1148 If pid_or_core_arg's first character is a digit, try attach
1149 first and then corefile. Otherwise try just corefile. */
1151 if (isdigit (pid_or_core_arg
[0]))
1153 ret
= catch_command_errors (attach_command
, pid_or_core_arg
,
1156 ret
= catch_command_errors (core_file_command
,
1162 /* Can't be a pid, better be a corefile. */
1163 ret
= catch_command_errors (core_file_command
,
1170 current_inferior ()->set_tty (ttyarg
);
1172 /* Error messages should no longer be distinguished with extra output. */
1173 warning_pre_print
= _("warning: ");
1175 /* Read the .gdbinit file in the current directory, *if* it isn't
1176 the same as the $HOME/.gdbinit file (it should exist, also). */
1177 if (!local_gdbinit
.empty ())
1179 auto_load_local_gdbinit_pathname
1180 = gdb_realpath (local_gdbinit
.c_str ()).release ();
1182 if (!inhibit_gdbinit
&& auto_load_local_gdbinit
1183 && file_is_auto_load_safe (local_gdbinit
.c_str (),
1184 _("auto-load: Loading .gdbinit "
1186 local_gdbinit
.c_str ()))
1188 auto_load_local_gdbinit_loaded
= 1;
1190 ret
= catch_command_errors (source_script
, local_gdbinit
.c_str (), 0);
1194 /* Now that all .gdbinit's have been read and all -d options have been
1195 processed, we can read any scripts mentioned in SYMARG.
1196 We wait until now because it is common to add to the source search
1197 path in local_gdbinit. */
1198 global_auto_load
= save_auto_load
;
1199 for (objfile
*objfile
: current_program_space
->objfiles ())
1200 load_auto_scripts_for_objfile (objfile
);
1202 /* Process '-x' and '-ex' options. */
1203 execute_cmdargs (&cmdarg_vec
, CMDARG_FILE
, CMDARG_COMMAND
, &ret
);
1205 /* Read in the old history after all the command files have been
1211 int error_status
= EXIT_FAILURE
;
1212 int *exit_arg
= ret
== 0 ? &error_status
: NULL
;
1214 /* We have hit the end of the batch file. */
1215 quit_force (exit_arg
, 0);
1220 captured_main (void *data
)
1222 struct captured_main_args
*context
= (struct captured_main_args
*) data
;
1224 captured_main_1 (context
);
1226 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1227 moving this loop and the code found in captured_command_loop()
1228 into the command_loop() proper. The main thing holding back that
1229 change - SET_TOP_LEVEL() - has been eliminated. */
1234 captured_command_loop ();
1236 catch (const gdb_exception
&ex
)
1238 exception_print (gdb_stderr
, ex
);
1241 /* No exit -- exit is through quit_command. */
1245 gdb_main (struct captured_main_args
*args
)
1249 captured_main (args
);
1251 catch (const gdb_exception
&ex
)
1253 exception_print (gdb_stderr
, ex
);
1256 /* The only way to end up here is by an error (normal exit is
1257 handled by quit_force()), hence always return an error status. */
1262 /* Don't use *_filtered for printing help. We don't want to prompt
1263 for continue no matter how small the screen or how much we're going
1267 print_gdb_help (struct ui_file
*stream
)
1269 std::vector
<std::string
> system_gdbinit
;
1270 std::string home_gdbinit
;
1271 std::string local_gdbinit
;
1273 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1275 /* Note: The options in the list below are only approximately sorted
1276 in the alphabetical order, so as to group closely related options
1278 fputs_unfiltered (_("\
1279 This is the GNU debugger. Usage:\n\n\
1280 gdb [options] [executable-file [core-file or process-id]]\n\
1281 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1283 fputs_unfiltered (_("\
1284 Selection of debuggee and its files:\n\n\
1285 --args Arguments after executable-file are passed to inferior\n\
1286 --core=COREFILE Analyze the core dump COREFILE.\n\
1287 --exec=EXECFILE Use EXECFILE as the executable.\n\
1288 --pid=PID Attach to running process PID.\n\
1289 --directory=DIR Search for source files in DIR.\n\
1290 --se=FILE Use FILE as symbol file and executable file.\n\
1291 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1292 --readnow Fully read symbol files on first access.\n\
1293 --readnever Do not read symbol files.\n\
1294 --write Set writing into executable and core files.\n\n\
1296 fputs_unfiltered (_("\
1297 Initial commands and command files:\n\n\
1298 --command=FILE, -x Execute GDB commands from FILE.\n\
1299 --init-command=FILE, -ix\n\
1300 Like -x but execute commands before loading inferior.\n\
1301 --eval-command=COMMAND, -ex\n\
1302 Execute a single GDB command.\n\
1303 May be used multiple times and in conjunction\n\
1305 --init-eval-command=COMMAND, -iex\n\
1306 Like -ex but before loading inferior.\n\
1307 --nh Do not read ~/.gdbinit.\n\
1308 --nx Do not read any .gdbinit files in any directory.\n\n\
1310 fputs_unfiltered (_("\
1311 Output and user interface control:\n\n\
1312 --fullname Output information used by emacs-GDB interface.\n\
1313 --interpreter=INTERP\n\
1314 Select a specific interpreter / user interface\n\
1315 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1316 -w Use the GUI interface.\n\
1317 --nw Do not use the GUI interface.\n\
1320 fputs_unfiltered (_("\
1321 --tui Use a terminal user interface.\n\
1324 fputs_unfiltered (_("\
1325 --dbx DBX compatibility mode.\n\
1326 -q, --quiet, --silent\n\
1327 Do not print version number on startup.\n\n\
1329 fputs_unfiltered (_("\
1330 Operating modes:\n\n\
1331 --batch Exit after processing options.\n\
1332 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1333 --return-child-result\n\
1334 GDB exit code will be the child's exit code.\n\
1335 --configuration Print details about GDB configuration and then exit.\n\
1336 --help Print this message and then exit.\n\
1337 --version Print version information and then exit.\n\n\
1338 Remote debugging options:\n\n\
1339 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1340 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1342 --cd=DIR Change current directory to DIR.\n\
1343 --data-directory=DIR, -D\n\
1344 Set GDB's data-directory to DIR.\n\
1346 fputs_unfiltered (_("\n\
1347 At startup, GDB reads the following init files and executes their commands:\n\
1349 if (!system_gdbinit
.empty ())
1352 for (size_t idx
= 0; idx
< system_gdbinit
.size (); ++idx
)
1354 output
+= system_gdbinit
[idx
];
1355 if (idx
< system_gdbinit
.size () - 1)
1358 fprintf_unfiltered (stream
, _("\
1359 * system-wide init files: %s\n\
1360 "), output
.c_str ());
1362 if (!home_gdbinit
.empty ())
1363 fprintf_unfiltered (stream
, _("\
1364 * user-specific init file: %s\n\
1365 "), home_gdbinit
.c_str ());
1366 if (!local_gdbinit
.empty ())
1367 fprintf_unfiltered (stream
, _("\
1368 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1369 "), local_gdbinit
.c_str ());
1370 fputs_unfiltered (_("\n\
1371 For more information, type \"help\" from within GDB, or consult the\n\
1372 GDB manual (available as on-line info or a printed manual).\n\
1374 if (REPORT_BUGS_TO
[0] && stream
== gdb_stdout
)
1375 fprintf_unfiltered (stream
, _("\n\
1376 Report bugs to %s.\n\
1377 "), REPORT_BUGS_TO
);
1378 if (stream
== gdb_stdout
)
1379 fprintf_unfiltered (stream
, _("\n\
1380 You can ask GDB-related questions on the GDB users mailing list\n\
1381 (gdb@sourceware.org) or on GDB's IRC channel (#gdb on Freenode).\n"));