1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1986-2023 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/>. */
29 #include <sys/types.h>
32 #include "gdbsupport/event-loop.h"
38 #include "cli/cli-cmds.h"
40 #include "auto-load.h"
43 #include "filenames.h"
44 #include "gdbsupport/filestuff.h"
46 #include "event-top.h"
48 #include "gdbsupport/signals-state-save-restore.h"
51 #include "gdbsupport/pathstuff.h"
52 #include "cli/cli-style.h"
54 #include "gdbtk/generic/gdbtk.h"
56 #include "gdbsupport/alt-stack.h"
57 #include "observable.h"
60 /* The selected interpreter. */
61 std::string interpreter_p
;
63 /* System root path, used to find libraries etc. */
64 std::string gdb_sysroot
;
66 /* GDB datadir, used to store data files. */
67 std::string gdb_datadir
;
69 /* Non-zero if GDB_DATADIR was provided on the command line.
70 This doesn't track whether data-directory is set later from the
71 command line, but we don't reread system.gdbinit when that happens. */
72 static int gdb_datadir_provided
= 0;
74 /* If gdb was configured with --with-python=/path,
75 the possibly relocated path to python's lib directory. */
76 std::string python_libdir
;
78 /* Target IO streams. */
79 struct ui_file
*gdb_stdtargin
;
80 struct ui_file
*gdb_stdtarg
;
81 struct ui_file
*gdb_stdtargerr
;
83 /* True if --batch or --batch-silent was seen. */
86 /* Support for the --batch-silent option. */
89 /* Support for --return-child-result option.
90 Set the default to -1 to return error in the case
91 that the program does not run or does not complete. */
92 int return_child_result
= 0;
93 int return_child_result_value
= -1;
96 /* GDB as it has been invoked from the command line (i.e. argv[0]). */
97 static char *gdb_program_name
;
99 /* Return read only pointer to GDB_PROGRAM_NAME. */
101 get_gdb_program_name (void)
103 return gdb_program_name
;
106 static void print_gdb_help (struct ui_file
*);
108 /* Set the data-directory parameter to NEW_DATADIR.
109 If NEW_DATADIR is not a directory then a warning is printed.
110 We don't signal an error for backward compatibility. */
113 set_gdb_data_directory (const char *new_datadir
)
117 if (stat (new_datadir
, &st
) < 0)
118 warning_filename_and_errno (new_datadir
, errno
);
119 else if (!S_ISDIR (st
.st_mode
))
120 warning (_("%ps is not a directory."),
121 styled_string (file_name_style
.style (), new_datadir
));
123 gdb_datadir
= gdb_realpath (new_datadir
).get ();
125 /* gdb_realpath won't return an absolute path if the path doesn't exist,
126 but we still want to record an absolute path here. If the user entered
127 "../foo" and "../foo" doesn't exist then we'll record $(pwd)/../foo which
128 isn't canonical, but that's ok. */
129 if (!IS_ABSOLUTE_PATH (gdb_datadir
.c_str ()))
130 gdb_datadir
= gdb_abspath (gdb_datadir
.c_str ());
133 /* Relocate a file or directory. PROGNAME is the name by which gdb
134 was invoked (i.e., argv[0]). INITIAL is the default value for the
135 file or directory. RELOCATABLE is true if the value is relocatable,
136 false otherwise. This may return an empty string under the same
137 conditions as make_relative_prefix returning NULL. */
140 relocate_path (const char *progname
, const char *initial
, bool relocatable
)
144 gdb::unique_xmalloc_ptr
<char> str (make_relative_prefix (progname
,
149 return std::string ();
154 /* Like relocate_path, but specifically checks for a directory.
155 INITIAL is relocated according to the rules of relocate_path. If
156 the result is a directory, it is used; otherwise, INITIAL is used.
157 The chosen directory is then canonicalized using lrealpath. */
160 relocate_gdb_directory (const char *initial
, bool relocatable
)
162 std::string dir
= relocate_path (gdb_program_name
, initial
, relocatable
);
167 if (stat (dir
.c_str (), &s
) != 0 || !S_ISDIR (s
.st_mode
))
175 /* Canonicalize the directory. */
178 gdb::unique_xmalloc_ptr
<char> canon_sysroot (lrealpath (dir
.c_str ()));
181 dir
= canon_sysroot
.get ();
187 /* Given a gdbinit path in FILE, adjusts it according to the gdb_datadir
188 parameter if it is in the data dir, or passes it through relocate_path
192 relocate_file_path_maybe_in_datadir (const std::string
&file
,
195 size_t datadir_len
= strlen (GDB_DATADIR
);
197 std::string relocated_path
;
199 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
200 has been provided, search for SYSTEM_GDBINIT there. */
201 if (gdb_datadir_provided
202 && datadir_len
< file
.length ()
203 && filename_ncmp (file
.c_str (), GDB_DATADIR
, datadir_len
) == 0
204 && IS_DIR_SEPARATOR (file
[datadir_len
]))
206 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
209 size_t start
= datadir_len
;
210 for (; IS_DIR_SEPARATOR (file
[start
]); ++start
)
212 relocated_path
= gdb_datadir
+ SLASH_STRING
+ file
.substr (start
);
216 relocated_path
= relocate_path (gdb_program_name
, file
.c_str (),
219 return relocated_path
;
222 /* A class to wrap up the logic for finding the three different types of
223 initialisation files GDB uses, system wide, home directory, and current
224 working directory. */
226 class gdb_initfile_finder
229 /* Constructor. Finds initialisation files named FILENAME in the home
230 directory or local (current working) directory. System initialisation
231 files are found in both SYSTEM_FILENAME and SYSTEM_DIRNAME if these
232 are not nullptr (either or both can be). The matching *_RELOCATABLE
233 flag is passed through to RELOCATE_FILE_PATH_MAYBE_IN_DATADIR.
235 If FILENAME starts with a '.' then when looking in the home directory
236 this first '.' can be ignored in some cases. */
237 explicit gdb_initfile_finder (const char *filename
,
238 const char *system_filename
,
239 bool system_filename_relocatable
,
240 const char *system_dirname
,
241 bool system_dirname_relocatable
,
242 bool lookup_local_file
)
246 if (system_filename
!= nullptr && system_filename
[0] != '\0')
248 std::string relocated_filename
249 = relocate_file_path_maybe_in_datadir (system_filename
,
250 system_filename_relocatable
);
251 if (!relocated_filename
.empty ()
252 && stat (relocated_filename
.c_str (), &s
) == 0)
253 m_system_files
.push_back (relocated_filename
);
256 if (system_dirname
!= nullptr && system_dirname
[0] != '\0')
258 std::string relocated_dirname
259 = relocate_file_path_maybe_in_datadir (system_dirname
,
260 system_dirname_relocatable
);
261 if (!relocated_dirname
.empty ())
263 gdb_dir_up
dir (opendir (relocated_dirname
.c_str ()));
266 std::vector
<std::string
> files
;
269 struct dirent
*ent
= readdir (dir
.get ());
272 std::string
name (ent
->d_name
);
273 if (name
== "." || name
== "..")
275 /* ent->d_type is not available on all systems
276 (e.g. mingw, Solaris), so we have to call stat(). */
277 std::string tmp_filename
278 = relocated_dirname
+ SLASH_STRING
+ name
;
279 if (stat (tmp_filename
.c_str (), &s
) != 0
280 || !S_ISREG (s
.st_mode
))
282 const struct extension_language_defn
*extlang
283 = get_ext_lang_of_file (tmp_filename
.c_str ());
284 /* We effectively don't support "set script-extension
285 off/soft", because we are loading system init files
286 here, so it does not really make sense to depend on
288 if (extlang
!= nullptr && ext_lang_present_p (extlang
))
289 files
.push_back (std::move (tmp_filename
));
291 std::sort (files
.begin (), files
.end ());
292 m_system_files
.insert (m_system_files
.end (),
293 files
.begin (), files
.end ());
298 /* If the .gdbinit file in the current directory is the same as
299 the $HOME/.gdbinit file, it should not be sourced. homebuf
300 and cwdbuf are used in that purpose. Make sure that the stats
301 are zero in case one of them fails (this guarantees that they
302 won't match if either exists). */
304 struct stat homebuf
, cwdbuf
;
305 memset (&homebuf
, 0, sizeof (struct stat
));
306 memset (&cwdbuf
, 0, sizeof (struct stat
));
308 m_home_file
= find_gdb_home_config_file (filename
, &homebuf
);
310 if (lookup_local_file
&& stat (filename
, &cwdbuf
) == 0)
312 if (m_home_file
.empty ()
313 || memcmp ((char *) &homebuf
, (char *) &cwdbuf
,
314 sizeof (struct stat
)))
315 m_local_file
= filename
;
319 DISABLE_COPY_AND_ASSIGN (gdb_initfile_finder
);
321 /* Return a list of system initialisation files. The list could be
323 const std::vector
<std::string
> &system_files () const
324 { return m_system_files
; }
326 /* Return the path to the home initialisation file. The string can be
327 empty if there is no such file. */
328 const std::string
&home_file () const
329 { return m_home_file
; }
331 /* Return the path to the local initialisation file. The string can be
332 empty if there is no such file. */
333 const std::string
&local_file () const
334 { return m_local_file
; }
338 /* Vector of all system init files in the order they should be processed.
340 std::vector
<std::string
> m_system_files
;
342 /* Initialization file from the home directory. Could be the empty
343 string if there is no such file found. */
344 std::string m_home_file
;
346 /* Initialization file from the current working directory. Could be the
347 empty string if there is no such file found. */
348 std::string m_local_file
;
351 /* Compute the locations of init files that GDB should source and return
352 them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. The SYSTEM_GDBINIT
353 can be returned as an empty vector, and HOME_GDBINIT and LOCAL_GDBINIT
354 can be returned as empty strings if there is no init file of that
358 get_init_files (std::vector
<std::string
> *system_gdbinit
,
359 std::string
*home_gdbinit
,
360 std::string
*local_gdbinit
)
362 /* Cache the file lookup object so we only actually search for the files
364 static gdb::optional
<gdb_initfile_finder
> init_files
;
365 if (!init_files
.has_value ())
366 init_files
.emplace (GDBINIT
, SYSTEM_GDBINIT
, SYSTEM_GDBINIT_RELOCATABLE
,
367 SYSTEM_GDBINIT_DIR
, SYSTEM_GDBINIT_DIR_RELOCATABLE
,
370 *system_gdbinit
= init_files
->system_files ();
371 *home_gdbinit
= init_files
->home_file ();
372 *local_gdbinit
= init_files
->local_file ();
375 /* Compute the location of the early init file GDB should source and return
376 it in HOME_GDBEARLYINIT. HOME_GDBEARLYINIT could be returned as an
377 empty string if there is no early init file found. */
380 get_earlyinit_files (std::string
*home_gdbearlyinit
)
382 /* Cache the file lookup object so we only actually search for the files
384 static gdb::optional
<gdb_initfile_finder
> init_files
;
385 if (!init_files
.has_value ())
386 init_files
.emplace (GDBEARLYINIT
, nullptr, false, nullptr, false, false);
388 *home_gdbearlyinit
= init_files
->home_file ();
391 /* Start up the event loop. This is the entry point to the event loop
392 from the command loop. */
397 /* Loop until there is nothing to do. This is the entry point to
398 the event loop engine. gdb_do_one_event will process one event
399 for each invocation. It blocks waiting for an event and then
407 result
= gdb_do_one_event ();
409 catch (const gdb_exception_forced_quit
&ex
)
413 catch (const gdb_exception
&ex
)
415 exception_print (gdb_stderr
, ex
);
417 /* If any exception escaped to here, we better enable
418 stdin. Otherwise, any command that calls async_disable_stdin,
419 and then throws, will leave stdin inoperable. */
420 SWITCH_THRU_ALL_UIS ()
422 async_enable_stdin ();
424 /* If we long-jumped out of do_one_event, we probably didn't
425 get around to resetting the prompt, which leaves readline
426 in a messed-up state. Reset it here. */
427 current_ui
->prompt_state
= PROMPT_NEEDED
;
428 top_level_interpreter ()->on_command_error ();
429 /* This call looks bizarre, but it is required. If the user
430 entered a command that caused an error,
431 after_char_processing_hook won't be called from
432 rl_callback_read_char_wrapper. Using a cleanup there
433 won't work, since we want this function to be called
434 after a new prompt is printed. */
435 if (after_char_processing_hook
)
436 (*after_char_processing_hook
) ();
437 /* Maybe better to set a flag to be checked somewhere as to
438 whether display the prompt or not. */
445 /* We are done with the event loop. There are no more event sources
446 to listen to. So we exit GDB. */
450 /* Call command_loop. */
452 /* Prevent inlining this function for the benefit of GDB's selftests
453 in the testsuite. Those tests want to run GDB under GDB and stop
455 static void captured_command_loop () __attribute__((noinline
));
458 captured_command_loop ()
460 struct ui
*ui
= current_ui
;
462 /* Top-level execution commands can be run in the background from
464 current_ui
->async
= 1;
466 /* Give the interpreter a chance to print a prompt, if necessary */
467 if (ui
->prompt_state
!= PROMPT_BLOCKED
)
468 top_level_interpreter ()->pre_command_loop ();
470 /* Now it's time to start the event loop. */
473 /* If the command_loop returned, normally (rather than threw an
474 error) we try to quit. If the quit is aborted, our caller
475 catches the signal and restarts the command loop. */
476 quit_command (NULL
, ui
->instream
== ui
->stdin_stream
);
479 /* Handle command errors thrown from within catch_command_errors. */
482 handle_command_errors (const struct gdb_exception
&e
)
486 exception_print (gdb_stderr
, e
);
488 /* If any exception escaped to here, we better enable stdin.
489 Otherwise, any command that calls async_disable_stdin, and
490 then throws, will leave stdin inoperable. */
491 async_enable_stdin ();
497 /* Type of the command callback passed to the const
498 catch_command_errors. */
500 typedef void (catch_command_errors_const_ftype
) (const char *, int);
502 /* Wrap calls to commands run before the event loop is started. */
505 catch_command_errors (catch_command_errors_const_ftype command
,
506 const char *arg
, int from_tty
,
507 bool do_bp_actions
= false)
511 int was_sync
= current_ui
->prompt_state
== PROMPT_BLOCKED
;
513 command (arg
, from_tty
);
515 maybe_wait_sync_command_done (was_sync
);
517 /* Do any commands attached to breakpoint we stopped at. */
519 bpstat_do_actions ();
521 catch (const gdb_exception_forced_quit
&e
)
523 quit_force (NULL
, 0);
525 catch (const gdb_exception
&e
)
527 return handle_command_errors (e
);
533 /* Adapter for symbol_file_add_main that translates 'from_tty' to a
534 symfile_add_flags. */
537 symbol_file_add_main_adapter (const char *arg
, int from_tty
)
539 symfile_add_flags add_flags
= 0;
542 add_flags
|= SYMFILE_VERBOSE
;
544 symbol_file_add_main (arg
, add_flags
);
547 /* Perform validation of the '--readnow' and '--readnever' flags. */
550 validate_readnow_readnever ()
552 if (readnever_symbol_files
&& readnow_symbol_files
)
554 error (_("%s: '--readnow' and '--readnever' cannot be "
555 "specified simultaneously"),
560 /* Type of this option. */
563 /* Option type -x. */
566 /* Option type -ex. */
569 /* Option type -ix. */
572 /* Option type -iex. */
575 /* Option type -eix. */
576 CMDARG_EARLYINIT_FILE
,
578 /* Option type -eiex. */
579 CMDARG_EARLYINIT_COMMAND
582 /* Arguments of --command option and its counterpart. */
585 cmdarg (cmdarg_kind type_
, char *string_
)
586 : type (type_
), string (string_
)
589 /* Type of this option. */
590 enum cmdarg_kind type
;
592 /* Value of this option - filename or the GDB command itself. String memory
593 is not owned by this structure despite it is 'const'. */
597 /* From CMDARG_VEC execute command files (matching FILE_TYPE) or commands
598 (matching CMD_TYPE). Update the value in *RET if and scripts or
599 commands are executed. */
602 execute_cmdargs (const std::vector
<struct cmdarg
> *cmdarg_vec
,
603 cmdarg_kind file_type
, cmdarg_kind cmd_type
,
606 for (const auto &cmdarg_p
: *cmdarg_vec
)
608 if (cmdarg_p
.type
== file_type
)
609 *ret
= catch_command_errors (source_script
, cmdarg_p
.string
,
611 else if (cmdarg_p
.type
== cmd_type
)
612 *ret
= catch_command_errors (execute_command
, cmdarg_p
.string
,
618 captured_main_1 (struct captured_main_args
*context
)
620 int argc
= context
->argc
;
621 char **argv
= context
->argv
;
623 static int quiet
= 0;
624 static int set_args
= 0;
625 static int inhibit_home_gdbinit
= 0;
627 /* Pointers to various arguments from command line. */
629 char *execarg
= NULL
;
631 char *corearg
= NULL
;
632 char *pid_or_core_arg
= NULL
;
636 /* These are static so that we can take their address in an
638 static int print_help
;
639 static int print_version
;
640 static int print_configuration
;
642 /* Pointers to all arguments of --command option. */
643 std::vector
<struct cmdarg
> cmdarg_vec
;
645 /* All arguments of --directory option. */
646 std::vector
<char *> dirarg
;
652 const char *no_color
= getenv ("NO_COLOR");
653 if (no_color
!= nullptr && *no_color
!= '\0')
656 #ifdef HAVE_USEFUL_SBRK
657 /* Set this before constructing scoped_command_stats. */
658 lim_at_start
= (char *) sbrk (0);
661 scoped_command_stats
stat_reporter (false);
663 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
664 setlocale (LC_MESSAGES
, "");
666 #if defined (HAVE_SETLOCALE)
667 setlocale (LC_CTYPE
, "");
670 bindtextdomain (PACKAGE
, LOCALEDIR
);
671 textdomain (PACKAGE
);
677 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
678 as a Windows pipe, and Windows buffers on pipes. */
679 setvbuf (stderr
, NULL
, _IONBF
, BUFSIZ
);
682 /* Note: `error' cannot be called before this point, because the
683 caller will crash when trying to print the exception. */
684 main_ui
= new ui (stdin
, stdout
, stderr
);
685 current_ui
= main_ui
;
687 gdb_stdtarg
= gdb_stderr
;
688 gdb_stdtargerr
= gdb_stderr
;
689 gdb_stdtargin
= gdb_stdin
;
691 if (bfd_init () != BFD_INIT_MAGIC
)
692 error (_("fatal error: libbfd ABI mismatch"));
695 /* On Windows, argv[0] is not necessarily set to absolute form when
696 GDB is found along PATH, without which relocation doesn't work. */
697 gdb_program_name
= windows_get_absolute_argv0 (argv
[0]);
699 gdb_program_name
= xstrdup (argv
[0]);
702 /* Prefix warning messages with the command name. */
703 gdb::unique_xmalloc_ptr
<char> tmp_warn_preprint
704 = xstrprintf ("%s: warning: ", gdb_program_name
);
705 warning_pre_print
= tmp_warn_preprint
.get ();
707 current_directory
= getcwd (NULL
, 0);
708 if (current_directory
== NULL
)
709 perror_warning_with_name (_("error finding working directory"));
711 /* Set the sysroot path. */
712 gdb_sysroot
= relocate_gdb_directory (TARGET_SYSTEM_ROOT
,
713 TARGET_SYSTEM_ROOT_RELOCATABLE
);
715 if (gdb_sysroot
.empty ())
716 gdb_sysroot
= TARGET_SYSROOT_PREFIX
;
719 = relocate_gdb_directory (DEBUGDIR
, DEBUGDIR_RELOCATABLE
);
721 #ifdef ADDITIONAL_DEBUG_DIRS
722 debug_file_directory
= (debug_file_directory
+ DIRNAME_SEPARATOR
723 + ADDITIONAL_DEBUG_DIRS
);
726 gdb_datadir
= relocate_gdb_directory (GDB_DATADIR
,
727 GDB_DATADIR_RELOCATABLE
);
729 #ifdef WITH_PYTHON_LIBDIR
730 python_libdir
= relocate_gdb_directory (WITH_PYTHON_LIBDIR
,
731 PYTHON_LIBDIR_RELOCATABLE
);
735 add_substitute_path_rule (RELOC_SRCDIR
,
736 make_relative_prefix (gdb_program_name
, BINDIR
,
740 /* There will always be an interpreter. Either the one passed into
741 this captured main, or one specified by the user at start up, or
742 the console. Initialize the interpreter to the one requested by
744 interpreter_p
= context
->interpreter_p
;
746 /* Parse arguments and options. */
749 /* When var field is 0, use flag field to record the equivalent
750 short option (or arbitrary numbers starting at 10 for those
751 with no equivalent). */
767 /* This struct requires int* in the struct, but write_files is a bool.
768 So use this temporary int that we write back after argument parsing. */
769 int write_files_1
= 0;
770 static struct option long_options
[] =
772 {"tui", no_argument
, 0, OPT_TUI
},
773 {"readnow", no_argument
, NULL
, OPT_READNOW
},
774 {"readnever", no_argument
, NULL
, OPT_READNEVER
},
775 {"r", no_argument
, NULL
, OPT_READNOW
},
776 {"quiet", no_argument
, &quiet
, 1},
777 {"q", no_argument
, &quiet
, 1},
778 {"silent", no_argument
, &quiet
, 1},
779 {"nh", no_argument
, &inhibit_home_gdbinit
, 1},
780 {"nx", no_argument
, &inhibit_gdbinit
, 1},
781 {"n", no_argument
, &inhibit_gdbinit
, 1},
782 {"batch-silent", no_argument
, 0, 'B'},
783 {"batch", no_argument
, &batch_flag
, 1},
785 /* This is a synonym for "--annotate=1". --annotate is now
786 preferred, but keep this here for a long time because people
787 will be running emacses which use --fullname. */
788 {"fullname", no_argument
, 0, 'f'},
789 {"f", no_argument
, 0, 'f'},
791 {"annotate", required_argument
, 0, OPT_ANNOTATE
},
792 {"help", no_argument
, &print_help
, 1},
793 {"se", required_argument
, 0, OPT_SE
},
794 {"symbols", required_argument
, 0, 's'},
795 {"s", required_argument
, 0, 's'},
796 {"exec", required_argument
, 0, 'e'},
797 {"e", required_argument
, 0, 'e'},
798 {"core", required_argument
, 0, 'c'},
799 {"c", required_argument
, 0, 'c'},
800 {"pid", required_argument
, 0, 'p'},
801 {"p", required_argument
, 0, 'p'},
802 {"command", required_argument
, 0, 'x'},
803 {"eval-command", required_argument
, 0, 'X'},
804 {"version", no_argument
, &print_version
, 1},
805 {"configuration", no_argument
, &print_configuration
, 1},
806 {"x", required_argument
, 0, 'x'},
807 {"ex", required_argument
, 0, 'X'},
808 {"init-command", required_argument
, 0, OPT_IX
},
809 {"init-eval-command", required_argument
, 0, OPT_IEX
},
810 {"ix", required_argument
, 0, OPT_IX
},
811 {"iex", required_argument
, 0, OPT_IEX
},
812 {"early-init-command", required_argument
, 0, OPT_EIX
},
813 {"early-init-eval-command", required_argument
, 0, OPT_EIEX
},
814 {"eix", required_argument
, 0, OPT_EIX
},
815 {"eiex", required_argument
, 0, OPT_EIEX
},
817 {"tclcommand", required_argument
, 0, 'z'},
818 {"enable-external-editor", no_argument
, 0, 'y'},
819 {"editor-command", required_argument
, 0, 'w'},
821 {"ui", required_argument
, 0, 'i'},
822 {"interpreter", required_argument
, 0, 'i'},
823 {"i", required_argument
, 0, 'i'},
824 {"directory", required_argument
, 0, 'd'},
825 {"d", required_argument
, 0, 'd'},
826 {"data-directory", required_argument
, 0, 'D'},
827 {"D", required_argument
, 0, 'D'},
828 {"cd", required_argument
, 0, OPT_CD
},
829 {"tty", required_argument
, 0, 't'},
830 {"baud", required_argument
, 0, 'b'},
831 {"b", required_argument
, 0, 'b'},
832 {"nw", no_argument
, NULL
, OPT_NOWINDOWS
},
833 {"nowindows", no_argument
, NULL
, OPT_NOWINDOWS
},
834 {"w", no_argument
, NULL
, OPT_WINDOWS
},
835 {"windows", no_argument
, NULL
, OPT_WINDOWS
},
836 {"statistics", no_argument
, 0, OPT_STATISTICS
},
837 {"write", no_argument
, &write_files_1
, 1},
838 {"args", no_argument
, &set_args
, 1},
839 {"l", required_argument
, 0, 'l'},
840 {"return-child-result", no_argument
, &return_child_result
, 1},
841 {0, no_argument
, 0, 0}
848 c
= getopt_long_only (argc
, argv
, "",
849 long_options
, &option_index
);
850 if (c
== EOF
|| set_args
)
853 /* Long option that takes an argument. */
854 if (c
== 0 && long_options
[option_index
].flag
== 0)
855 c
= long_options
[option_index
].val
;
860 /* Long option that just sets a flag. */
870 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
871 annotation_level
= atoi (optarg
);
874 /* Enable the display of both time and space usage. */
875 set_per_command_time (1);
876 set_per_command_space (1);
879 /* --tui is equivalent to -i=tui. */
881 interpreter_p
= INTERP_TUI
;
883 error (_("%s: TUI mode is not supported"), gdb_program_name
);
887 /* FIXME: cagney/2003-03-01: Not sure if this option is
888 actually useful, and if it is, what it should do. */
890 /* --windows is equivalent to -i=insight. */
891 interpreter_p
= INTERP_INSIGHT
;
895 /* -nw is equivalent to -i=console. */
896 interpreter_p
= INTERP_CONSOLE
;
899 annotation_level
= 1;
914 cmdarg_vec
.emplace_back (CMDARG_FILE
, optarg
);
917 cmdarg_vec
.emplace_back (CMDARG_COMMAND
, optarg
);
920 cmdarg_vec
.emplace_back (CMDARG_INIT_FILE
, optarg
);
923 cmdarg_vec
.emplace_back (CMDARG_INIT_COMMAND
, optarg
);
926 cmdarg_vec
.emplace_back (CMDARG_EARLYINIT_FILE
, optarg
);
929 cmdarg_vec
.emplace_back (CMDARG_EARLYINIT_COMMAND
, optarg
);
932 batch_flag
= batch_silent
= 1;
933 gdb_stdout
= new null_file ();
936 if (optarg
[0] == '\0')
937 error (_("%s: empty path for `--data-directory'"),
939 set_gdb_data_directory (optarg
);
940 gdb_datadir_provided
= 1;
945 if (!gdbtk_test (optarg
))
946 error (_("%s: unable to load tclcommand file \"%s\""),
947 gdb_program_name
, optarg
);
951 /* Backwards compatibility only. */
955 /* Set the external editor commands when gdb is farming out files
956 to be edited by another program. */
957 external_editor_command
= xstrdup (optarg
);
962 interpreter_p
= optarg
;
965 dirarg
.push_back (optarg
);
978 rate
= strtol (optarg
, &p
, 0);
979 if (rate
== 0 && p
== optarg
)
980 warning (_("could not set baud rate to `%s'."),
991 timeout
= strtol (optarg
, &p
, 0);
992 if (timeout
== 0 && p
== optarg
)
993 warning (_("could not set timeout limit to `%s'."),
996 remote_timeout
= timeout
;
1002 readnow_symbol_files
= 1;
1003 validate_readnow_readnever ();
1009 readnever_symbol_files
= 1;
1010 validate_readnow_readnever ();
1015 error (_("Use `%s --help' for a complete list of options."),
1019 write_files
= (write_files_1
!= 0);
1025 /* Disable all output styling when running in batch mode. */
1030 save_original_signals_state (quiet
);
1032 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
1033 gdb::alternate_signal_stack signal_stack
;
1035 /* Initialize all files. */
1038 /* Process early init files and early init options from the command line. */
1039 if (!inhibit_gdbinit
)
1041 std::string home_gdbearlyinit
;
1042 get_earlyinit_files (&home_gdbearlyinit
);
1043 if (!home_gdbearlyinit
.empty () && !inhibit_home_gdbinit
)
1044 ret
= catch_command_errors (source_script
,
1045 home_gdbearlyinit
.c_str (), 0);
1047 execute_cmdargs (&cmdarg_vec
, CMDARG_EARLYINIT_FILE
,
1048 CMDARG_EARLYINIT_COMMAND
, &ret
);
1050 /* Initialize the extension languages. */
1051 ext_lang_initialization ();
1053 /* Recheck if we're starting up quietly after processing the startup
1054 scripts and commands. */
1056 quiet
= check_quiet_mode ();
1058 /* Now that gdb_init has created the initial inferior, we're in
1059 position to set args for that inferior. */
1062 /* The remaining options are the command-line options for the
1063 inferior. The first one is the sym/exec file, and the rest
1066 error (_("%s: `--args' specified but no program specified"),
1069 symarg
= argv
[optind
];
1070 execarg
= argv
[optind
];
1072 current_inferior ()->set_args
1073 (gdb::array_view
<char * const> (&argv
[optind
], argc
- optind
));
1077 /* OK, that's all the options. */
1079 /* The first argument, if specified, is the name of the
1083 symarg
= argv
[optind
];
1084 execarg
= argv
[optind
];
1088 /* If the user hasn't already specified a PID or the name of a
1089 core file, then a second optional argument is allowed. If
1090 present, this argument should be interpreted as either a
1091 PID or a core file, whichever works. */
1092 if (pidarg
== NULL
&& corearg
== NULL
&& optind
< argc
)
1094 pid_or_core_arg
= argv
[optind
];
1098 /* Any argument left on the command line is unexpected and
1099 will be ignored. Inform the user. */
1101 gdb_printf (gdb_stderr
,
1102 _("Excess command line "
1103 "arguments ignored. (%s%s)\n"),
1105 (optind
== argc
- 1) ? "" : " ...");
1108 /* Lookup gdbinit files. Note that the gdbinit file name may be
1109 overridden during file initialization, so get_init_files should be
1110 called after gdb_init. */
1111 std::vector
<std::string
> system_gdbinit
;
1112 std::string home_gdbinit
;
1113 std::string local_gdbinit
;
1114 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1116 /* Do these (and anything which might call wrap_here or *_filtered)
1117 after initialize_all_files() but before the interpreter has been
1118 installed. Otherwize the help/version messages will be eaten by
1119 the interpreter's output handler. */
1123 print_gdb_version (gdb_stdout
, false);
1130 print_gdb_help (gdb_stdout
);
1134 if (print_configuration
)
1136 print_gdb_configuration (gdb_stdout
);
1141 /* Install the default UI. All the interpreters should have had a
1142 look at things by now. Initialize the default interpreter. */
1143 set_top_level_interpreter (interpreter_p
.c_str ());
1147 /* Print all the junk at the top, with trailing "..." if we are
1148 about to read a symbol file (possibly slowly). */
1149 print_gdb_version (gdb_stdout
, true);
1153 gdb_flush (gdb_stdout
); /* Force to screen during slow
1157 /* Set off error and warning messages with a blank line. */
1158 tmp_warn_preprint
.reset ();
1159 warning_pre_print
= _("\nwarning: ");
1161 /* Read and execute the system-wide gdbinit file, if it exists.
1162 This is done *before* all the command line arguments are
1163 processed; it sets global parameters, which are independent of
1164 what file you are debugging or what directory you are in. */
1165 if (!system_gdbinit
.empty () && !inhibit_gdbinit
)
1167 for (const std::string
&file
: system_gdbinit
)
1168 ret
= catch_command_errors (source_script
, file
.c_str (), 0);
1171 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1172 *before* all the command line arguments are processed; it sets
1173 global parameters, which are independent of what file you are
1174 debugging or what directory you are in. */
1176 if (!home_gdbinit
.empty () && !inhibit_gdbinit
&& !inhibit_home_gdbinit
)
1177 ret
= catch_command_errors (source_script
, home_gdbinit
.c_str (), 0);
1179 /* Process '-ix' and '-iex' options early. */
1180 execute_cmdargs (&cmdarg_vec
, CMDARG_INIT_FILE
, CMDARG_INIT_COMMAND
, &ret
);
1182 /* Now perform all the actions indicated by the arguments. */
1185 ret
= catch_command_errors (cd_command
, cdarg
, 0);
1188 for (i
= 0; i
< dirarg
.size (); i
++)
1189 ret
= catch_command_errors (directory_switch
, dirarg
[i
], 0);
1191 /* Skip auto-loading section-specified scripts until we've sourced
1192 local_gdbinit (which is often used to augment the source search
1194 save_auto_load
= global_auto_load
;
1195 global_auto_load
= 0;
1199 && strcmp (execarg
, symarg
) == 0)
1201 /* The exec file and the symbol-file are the same. If we can't
1202 open it, better only print one error message.
1203 catch_command_errors returns non-zero on success! */
1204 ret
= catch_command_errors (exec_file_attach
, execarg
,
1207 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1208 symarg
, !batch_flag
);
1212 if (execarg
!= NULL
)
1213 ret
= catch_command_errors (exec_file_attach
, execarg
,
1216 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1217 symarg
, !batch_flag
);
1220 if (corearg
&& pidarg
)
1221 error (_("Can't attach to process and specify "
1222 "a core file at the same time."));
1224 if (corearg
!= NULL
)
1226 ret
= catch_command_errors (core_file_command
, corearg
,
1229 else if (pidarg
!= NULL
)
1231 ret
= catch_command_errors (attach_command
, pidarg
, !batch_flag
);
1233 else if (pid_or_core_arg
)
1235 /* The user specified 'gdb program pid' or gdb program core'.
1236 If pid_or_core_arg's first character is a digit, try attach
1237 first and then corefile. Otherwise try just corefile. */
1239 if (isdigit (pid_or_core_arg
[0]))
1241 ret
= catch_command_errors (attach_command
, pid_or_core_arg
,
1244 ret
= catch_command_errors (core_file_command
,
1250 /* Can't be a pid, better be a corefile. */
1251 ret
= catch_command_errors (core_file_command
,
1258 current_inferior ()->set_tty (ttyarg
);
1260 /* Error messages should no longer be distinguished with extra output. */
1261 warning_pre_print
= _("warning: ");
1263 /* Read the .gdbinit file in the current directory, *if* it isn't
1264 the same as the $HOME/.gdbinit file (it should exist, also). */
1265 if (!local_gdbinit
.empty ())
1267 auto_load_local_gdbinit_pathname
1268 = gdb_realpath (local_gdbinit
.c_str ()).release ();
1270 if (!inhibit_gdbinit
&& auto_load_local_gdbinit
)
1272 auto_load_debug_printf ("Loading .gdbinit file \"%s\".",
1273 local_gdbinit
.c_str ());
1275 if (file_is_auto_load_safe (local_gdbinit
.c_str ()))
1277 auto_load_local_gdbinit_loaded
= 1;
1279 ret
= catch_command_errors (source_script
, local_gdbinit
.c_str (), 0);
1284 /* Now that all .gdbinit's have been read and all -d options have been
1285 processed, we can read any scripts mentioned in SYMARG.
1286 We wait until now because it is common to add to the source search
1287 path in local_gdbinit. */
1288 global_auto_load
= save_auto_load
;
1289 for (objfile
*objfile
: current_program_space
->objfiles ())
1290 load_auto_scripts_for_objfile (objfile
);
1292 /* Process '-x' and '-ex' options. */
1293 execute_cmdargs (&cmdarg_vec
, CMDARG_FILE
, CMDARG_COMMAND
, &ret
);
1295 /* Read in the old history after all the command files have been
1301 int error_status
= EXIT_FAILURE
;
1302 int *exit_arg
= ret
== 0 ? &error_status
: NULL
;
1304 /* We have hit the end of the batch file. */
1305 quit_force (exit_arg
, 0);
1310 captured_main (void *data
)
1312 struct captured_main_args
*context
= (struct captured_main_args
*) data
;
1314 captured_main_1 (context
);
1316 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1317 moving this loop and the code found in captured_command_loop()
1318 into the command_loop() proper. The main thing holding back that
1319 change - SET_TOP_LEVEL() - has been eliminated. */
1324 captured_command_loop ();
1326 catch (const gdb_exception_forced_quit
&ex
)
1328 quit_force (NULL
, 0);
1330 catch (const gdb_exception
&ex
)
1332 exception_print (gdb_stderr
, ex
);
1335 /* No exit -- exit is through quit_command. */
1339 gdb_main (struct captured_main_args
*args
)
1343 captured_main (args
);
1345 catch (const gdb_exception
&ex
)
1347 exception_print (gdb_stderr
, ex
);
1350 /* The only way to end up here is by an error (normal exit is
1351 handled by quit_force()), hence always return an error status. */
1356 /* Don't use *_filtered for printing help. We don't want to prompt
1357 for continue no matter how small the screen or how much we're going
1361 print_gdb_help (struct ui_file
*stream
)
1363 std::vector
<std::string
> system_gdbinit
;
1364 std::string home_gdbinit
;
1365 std::string local_gdbinit
;
1366 std::string home_gdbearlyinit
;
1368 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1369 get_earlyinit_files (&home_gdbearlyinit
);
1371 /* Note: The options in the list below are only approximately sorted
1372 in the alphabetical order, so as to group closely related options
1375 This is the GNU debugger. Usage:\n\n\
1376 gdb [options] [executable-file [core-file or process-id]]\n\
1377 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1380 Selection of debuggee and its files:\n\n\
1381 --args Arguments after executable-file are passed to inferior.\n\
1382 --core=COREFILE Analyze the core dump COREFILE.\n\
1383 --exec=EXECFILE Use EXECFILE as the executable.\n\
1384 --pid=PID Attach to running process PID.\n\
1385 --directory=DIR Search for source files in DIR.\n\
1386 --se=FILE Use FILE as symbol file and executable file.\n\
1387 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1388 --readnow Fully read symbol files on first access.\n\
1389 --readnever Do not read symbol files.\n\
1390 --write Set writing into executable and core files.\n\n\
1393 Initial commands and command files:\n\n\
1394 --command=FILE, -x Execute GDB commands from FILE.\n\
1395 --init-command=FILE, -ix\n\
1396 Like -x but execute commands before loading inferior.\n\
1397 --eval-command=COMMAND, -ex\n\
1398 Execute a single GDB command.\n\
1399 May be used multiple times and in conjunction\n\
1401 --init-eval-command=COMMAND, -iex\n\
1402 Like -ex but before loading inferior.\n\
1403 --nh Do not read ~/.gdbinit.\n\
1404 --nx Do not read any .gdbinit files in any directory.\n\n\
1407 Output and user interface control:\n\n\
1408 --fullname Output information used by emacs-GDB interface.\n\
1409 --interpreter=INTERP\n\
1410 Select a specific interpreter / user interface.\n\
1411 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1412 -w Use the GUI interface.\n\
1413 --nw Do not use the GUI interface.\n\
1417 --tui Use a terminal user interface.\n\
1421 -q, --quiet, --silent\n\
1422 Do not print version number on startup.\n\n\
1425 Operating modes:\n\n\
1426 --batch Exit after processing options.\n\
1427 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1428 --return-child-result\n\
1429 GDB exit code will be the child's exit code.\n\
1430 --configuration Print details about GDB configuration and then exit.\n\
1431 --help Print this message and then exit.\n\
1432 --version Print version information and then exit.\n\n\
1433 Remote debugging options:\n\n\
1434 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1435 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1437 --cd=DIR Change current directory to DIR.\n\
1438 --data-directory=DIR, -D\n\
1439 Set GDB's data-directory to DIR.\n\
1442 At startup, GDB reads the following early init files and executes their\n\
1445 if (!home_gdbearlyinit
.empty ())
1446 gdb_printf (stream
, _("\
1447 * user-specific early init file: %s\n\
1448 "), home_gdbearlyinit
.c_str ());
1449 if (home_gdbearlyinit
.empty ())
1450 gdb_printf (stream
, _("\
1453 At startup, GDB reads the following init files and executes their commands:\n\
1455 if (!system_gdbinit
.empty ())
1458 for (size_t idx
= 0; idx
< system_gdbinit
.size (); ++idx
)
1460 output
+= system_gdbinit
[idx
];
1461 if (idx
< system_gdbinit
.size () - 1)
1464 gdb_printf (stream
, _("\
1465 * system-wide init files: %s\n\
1466 "), output
.c_str ());
1468 if (!home_gdbinit
.empty ())
1469 gdb_printf (stream
, _("\
1470 * user-specific init file: %s\n\
1471 "), home_gdbinit
.c_str ());
1472 if (!local_gdbinit
.empty ())
1473 gdb_printf (stream
, _("\
1474 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1475 "), local_gdbinit
.c_str ());
1476 if (system_gdbinit
.empty () && home_gdbinit
.empty ()
1477 && local_gdbinit
.empty ())
1478 gdb_printf (stream
, _("\
1481 For more information, type \"help\" from within GDB, or consult the\n\
1482 GDB manual (available as on-line info or a printed manual).\n\
1484 if (REPORT_BUGS_TO
[0] && stream
== gdb_stdout
)
1485 gdb_printf (stream
, _("\n\
1486 Report bugs to %ps.\n\
1487 "), styled_string (file_name_style
.style (), REPORT_BUGS_TO
));
1488 if (stream
== gdb_stdout
)
1489 gdb_printf (stream
, _("\n\
1490 You can ask GDB-related questions on the GDB users mailing list\n\
1491 (gdb@sourceware.org) or on GDB's IRC channel (#gdb on Libera.Chat).\n"));