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/>. */
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"
59 /* The selected interpreter. */
60 std::string interpreter_p
;
62 /* System root path, used to find libraries etc. */
63 std::string gdb_sysroot
;
65 /* GDB datadir, used to store data files. */
66 std::string gdb_datadir
;
68 /* Non-zero if GDB_DATADIR was provided on the command line.
69 This doesn't track whether data-directory is set later from the
70 command line, but we don't reread system.gdbinit when that happens. */
71 static int gdb_datadir_provided
= 0;
73 /* If gdb was configured with --with-python=/path,
74 the possibly relocated path to python's lib directory. */
75 std::string python_libdir
;
77 /* Target IO streams. */
78 struct ui_file
*gdb_stdtargin
;
79 struct ui_file
*gdb_stdtarg
;
80 struct ui_file
*gdb_stdtargerr
;
82 /* True if --batch or --batch-silent was seen. */
85 /* Support for the --batch-silent option. */
88 /* Support for --return-child-result option.
89 Set the default to -1 to return error in the case
90 that the program does not run or does not complete. */
91 int return_child_result
= 0;
92 int return_child_result_value
= -1;
95 /* GDB as it has been invoked from the command line (i.e. argv[0]). */
96 static char *gdb_program_name
;
98 /* Return read only pointer to GDB_PROGRAM_NAME. */
100 get_gdb_program_name (void)
102 return gdb_program_name
;
105 static void print_gdb_help (struct ui_file
*);
107 /* Set the data-directory parameter to NEW_DATADIR.
108 If NEW_DATADIR is not a directory then a warning is printed.
109 We don't signal an error for backward compatibility. */
112 set_gdb_data_directory (const char *new_datadir
)
116 if (stat (new_datadir
, &st
) < 0)
118 int save_errno
= errno
;
120 gdb_printf (gdb_stderr
, "Warning: ");
121 print_sys_errmsg (new_datadir
, save_errno
);
123 else if (!S_ISDIR (st
.st_mode
))
124 warning (_("%ps is not a directory."),
125 styled_string (file_name_style
.style (), new_datadir
));
127 gdb_datadir
= gdb_realpath (new_datadir
).get ();
129 /* gdb_realpath won't return an absolute path if the path doesn't exist,
130 but we still want to record an absolute path here. If the user entered
131 "../foo" and "../foo" doesn't exist then we'll record $(pwd)/../foo which
132 isn't canonical, but that's ok. */
133 if (!IS_ABSOLUTE_PATH (gdb_datadir
.c_str ()))
134 gdb_datadir
= gdb_abspath (gdb_datadir
.c_str ());
137 /* Relocate a file or directory. PROGNAME is the name by which gdb
138 was invoked (i.e., argv[0]). INITIAL is the default value for the
139 file or directory. RELOCATABLE is true if the value is relocatable,
140 false otherwise. This may return an empty string under the same
141 conditions as make_relative_prefix returning NULL. */
144 relocate_path (const char *progname
, const char *initial
, bool relocatable
)
148 gdb::unique_xmalloc_ptr
<char> str (make_relative_prefix (progname
,
153 return std::string ();
158 /* Like relocate_path, but specifically checks for a directory.
159 INITIAL is relocated according to the rules of relocate_path. If
160 the result is a directory, it is used; otherwise, INITIAL is used.
161 The chosen directory is then canonicalized using lrealpath. */
164 relocate_gdb_directory (const char *initial
, bool relocatable
)
166 std::string dir
= relocate_path (gdb_program_name
, initial
, relocatable
);
171 if (stat (dir
.c_str (), &s
) != 0 || !S_ISDIR (s
.st_mode
))
179 /* Canonicalize the directory. */
182 gdb::unique_xmalloc_ptr
<char> canon_sysroot (lrealpath (dir
.c_str ()));
185 dir
= canon_sysroot
.get ();
191 /* Given a gdbinit path in FILE, adjusts it according to the gdb_datadir
192 parameter if it is in the data dir, or passes it through relocate_path
196 relocate_file_path_maybe_in_datadir (const std::string
&file
,
199 size_t datadir_len
= strlen (GDB_DATADIR
);
201 std::string relocated_path
;
203 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
204 has been provided, search for SYSTEM_GDBINIT there. */
205 if (gdb_datadir_provided
206 && datadir_len
< file
.length ()
207 && filename_ncmp (file
.c_str (), GDB_DATADIR
, datadir_len
) == 0
208 && IS_DIR_SEPARATOR (file
[datadir_len
]))
210 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
213 size_t start
= datadir_len
;
214 for (; IS_DIR_SEPARATOR (file
[start
]); ++start
)
216 relocated_path
= gdb_datadir
+ SLASH_STRING
+ file
.substr (start
);
220 relocated_path
= relocate_path (gdb_program_name
, file
.c_str (),
223 return relocated_path
;
226 /* A class to wrap up the logic for finding the three different types of
227 initialisation files GDB uses, system wide, home directory, and current
228 working directory. */
230 class gdb_initfile_finder
233 /* Constructor. Finds initialisation files named FILENAME in the home
234 directory or local (current working) directory. System initialisation
235 files are found in both SYSTEM_FILENAME and SYSTEM_DIRNAME if these
236 are not nullptr (either or both can be). The matching *_RELOCATABLE
237 flag is passed through to RELOCATE_FILE_PATH_MAYBE_IN_DATADIR.
239 If FILENAME starts with a '.' then when looking in the home directory
240 this first '.' can be ignored in some cases. */
241 explicit gdb_initfile_finder (const char *filename
,
242 const char *system_filename
,
243 bool system_filename_relocatable
,
244 const char *system_dirname
,
245 bool system_dirname_relocatable
,
246 bool lookup_local_file
)
250 if (system_filename
!= nullptr && system_filename
[0] != '\0')
252 std::string relocated_filename
253 = relocate_file_path_maybe_in_datadir (system_filename
,
254 system_filename_relocatable
);
255 if (!relocated_filename
.empty ()
256 && stat (relocated_filename
.c_str (), &s
) == 0)
257 m_system_files
.push_back (relocated_filename
);
260 if (system_dirname
!= nullptr && system_dirname
[0] != '\0')
262 std::string relocated_dirname
263 = relocate_file_path_maybe_in_datadir (system_dirname
,
264 system_dirname_relocatable
);
265 if (!relocated_dirname
.empty ())
267 gdb_dir_up
dir (opendir (relocated_dirname
.c_str ()));
270 std::vector
<std::string
> files
;
273 struct dirent
*ent
= readdir (dir
.get ());
276 std::string
name (ent
->d_name
);
277 if (name
== "." || name
== "..")
279 /* ent->d_type is not available on all systems
280 (e.g. mingw, Solaris), so we have to call stat(). */
281 std::string tmp_filename
282 = relocated_dirname
+ SLASH_STRING
+ name
;
283 if (stat (tmp_filename
.c_str (), &s
) != 0
284 || !S_ISREG (s
.st_mode
))
286 const struct extension_language_defn
*extlang
287 = get_ext_lang_of_file (tmp_filename
.c_str ());
288 /* We effectively don't support "set script-extension
289 off/soft", because we are loading system init files
290 here, so it does not really make sense to depend on
292 if (extlang
!= nullptr && ext_lang_present_p (extlang
))
293 files
.push_back (std::move (tmp_filename
));
295 std::sort (files
.begin (), files
.end ());
296 m_system_files
.insert (m_system_files
.end (),
297 files
.begin (), files
.end ());
302 /* If the .gdbinit file in the current directory is the same as
303 the $HOME/.gdbinit file, it should not be sourced. homebuf
304 and cwdbuf are used in that purpose. Make sure that the stats
305 are zero in case one of them fails (this guarantees that they
306 won't match if either exists). */
308 struct stat homebuf
, cwdbuf
;
309 memset (&homebuf
, 0, sizeof (struct stat
));
310 memset (&cwdbuf
, 0, sizeof (struct stat
));
312 m_home_file
= find_gdb_home_config_file (filename
, &homebuf
);
314 if (lookup_local_file
&& stat (filename
, &cwdbuf
) == 0)
316 if (m_home_file
.empty ()
317 || memcmp ((char *) &homebuf
, (char *) &cwdbuf
,
318 sizeof (struct stat
)))
319 m_local_file
= filename
;
323 DISABLE_COPY_AND_ASSIGN (gdb_initfile_finder
);
325 /* Return a list of system initialisation files. The list could be
327 const std::vector
<std::string
> &system_files () const
328 { return m_system_files
; }
330 /* Return the path to the home initialisation file. The string can be
331 empty if there is no such file. */
332 const std::string
&home_file () const
333 { return m_home_file
; }
335 /* Return the path to the local initialisation file. The string can be
336 empty if there is no such file. */
337 const std::string
&local_file () const
338 { return m_local_file
; }
342 /* Vector of all system init files in the order they should be processed.
344 std::vector
<std::string
> m_system_files
;
346 /* Initialization file from the home directory. Could be the empty
347 string if there is no such file found. */
348 std::string m_home_file
;
350 /* Initialization file from the current working directory. Could be the
351 empty string if there is no such file found. */
352 std::string m_local_file
;
355 /* Compute the locations of init files that GDB should source and return
356 them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. The SYSTEM_GDBINIT
357 can be returned as an empty vector, and HOME_GDBINIT and LOCAL_GDBINIT
358 can be returned as empty strings if there is no init file of that
362 get_init_files (std::vector
<std::string
> *system_gdbinit
,
363 std::string
*home_gdbinit
,
364 std::string
*local_gdbinit
)
366 /* Cache the file lookup object so we only actually search for the files
368 static gdb::optional
<gdb_initfile_finder
> init_files
;
369 if (!init_files
.has_value ())
370 init_files
.emplace (GDBINIT
, SYSTEM_GDBINIT
, SYSTEM_GDBINIT_RELOCATABLE
,
371 SYSTEM_GDBINIT_DIR
, SYSTEM_GDBINIT_DIR_RELOCATABLE
,
374 *system_gdbinit
= init_files
->system_files ();
375 *home_gdbinit
= init_files
->home_file ();
376 *local_gdbinit
= init_files
->local_file ();
379 /* Compute the location of the early init file GDB should source and return
380 it in HOME_GDBEARLYINIT. HOME_GDBEARLYINIT could be returned as an
381 empty string if there is no early init file found. */
384 get_earlyinit_files (std::string
*home_gdbearlyinit
)
386 /* Cache the file lookup object so we only actually search for the files
388 static gdb::optional
<gdb_initfile_finder
> init_files
;
389 if (!init_files
.has_value ())
390 init_files
.emplace (GDBEARLYINIT
, nullptr, false, nullptr, false, false);
392 *home_gdbearlyinit
= init_files
->home_file ();
395 /* Start up the event loop. This is the entry point to the event loop
396 from the command loop. */
401 /* Loop until there is nothing to do. This is the entry point to
402 the event loop engine. gdb_do_one_event will process one event
403 for each invocation. It blocks waiting for an event and then
411 result
= gdb_do_one_event ();
413 catch (const gdb_exception_forced_quit
&ex
)
417 catch (const gdb_exception
&ex
)
419 exception_print (gdb_stderr
, ex
);
421 /* If any exception escaped to here, we better enable
422 stdin. Otherwise, any command that calls async_disable_stdin,
423 and then throws, will leave stdin inoperable. */
424 SWITCH_THRU_ALL_UIS ()
426 async_enable_stdin ();
428 /* If we long-jumped out of do_one_event, we probably didn't
429 get around to resetting the prompt, which leaves readline
430 in a messed-up state. Reset it here. */
431 current_ui
->prompt_state
= PROMPT_NEEDED
;
432 gdb::observers::command_error
.notify ();
433 /* This call looks bizarre, but it is required. If the user
434 entered a command that caused an error,
435 after_char_processing_hook won't be called from
436 rl_callback_read_char_wrapper. Using a cleanup there
437 won't work, since we want this function to be called
438 after a new prompt is printed. */
439 if (after_char_processing_hook
)
440 (*after_char_processing_hook
) ();
441 /* Maybe better to set a flag to be checked somewhere as to
442 whether display the prompt or not. */
449 /* We are done with the event loop. There are no more event sources
450 to listen to. So we exit GDB. */
454 /* Call command_loop. */
456 /* Prevent inlining this function for the benefit of GDB's selftests
457 in the testsuite. Those tests want to run GDB under GDB and stop
459 static void captured_command_loop () __attribute__((noinline
));
462 captured_command_loop ()
464 struct ui
*ui
= current_ui
;
466 /* Top-level execution commands can be run in the background from
468 current_ui
->async
= 1;
470 /* Give the interpreter a chance to print a prompt, if necessary */
471 if (ui
->prompt_state
!= PROMPT_BLOCKED
)
472 interp_pre_command_loop (top_level_interpreter ());
474 /* Now it's time to start the event loop. */
477 /* If the command_loop returned, normally (rather than threw an
478 error) we try to quit. If the quit is aborted, our caller
479 catches the signal and restarts the command loop. */
480 quit_command (NULL
, ui
->instream
== ui
->stdin_stream
);
483 /* Handle command errors thrown from within catch_command_errors. */
486 handle_command_errors (const struct gdb_exception
&e
)
490 exception_print (gdb_stderr
, e
);
492 /* If any exception escaped to here, we better enable stdin.
493 Otherwise, any command that calls async_disable_stdin, and
494 then throws, will leave stdin inoperable. */
495 async_enable_stdin ();
501 /* Type of the command callback passed to the const
502 catch_command_errors. */
504 typedef void (catch_command_errors_const_ftype
) (const char *, int);
506 /* Wrap calls to commands run before the event loop is started. */
509 catch_command_errors (catch_command_errors_const_ftype command
,
510 const char *arg
, int from_tty
,
511 bool do_bp_actions
= false)
515 int was_sync
= current_ui
->prompt_state
== PROMPT_BLOCKED
;
517 command (arg
, from_tty
);
519 maybe_wait_sync_command_done (was_sync
);
521 /* Do any commands attached to breakpoint we stopped at. */
523 bpstat_do_actions ();
525 catch (const gdb_exception_forced_quit
&e
)
527 quit_force (NULL
, 0);
529 catch (const gdb_exception
&e
)
531 return handle_command_errors (e
);
537 /* Adapter for symbol_file_add_main that translates 'from_tty' to a
538 symfile_add_flags. */
541 symbol_file_add_main_adapter (const char *arg
, int from_tty
)
543 symfile_add_flags add_flags
= 0;
546 add_flags
|= SYMFILE_VERBOSE
;
548 symbol_file_add_main (arg
, add_flags
);
551 /* Perform validation of the '--readnow' and '--readnever' flags. */
554 validate_readnow_readnever ()
556 if (readnever_symbol_files
&& readnow_symbol_files
)
558 error (_("%s: '--readnow' and '--readnever' cannot be "
559 "specified simultaneously"),
564 /* Type of this option. */
567 /* Option type -x. */
570 /* Option type -ex. */
573 /* Option type -ix. */
576 /* Option type -iex. */
579 /* Option type -eix. */
580 CMDARG_EARLYINIT_FILE
,
582 /* Option type -eiex. */
583 CMDARG_EARLYINIT_COMMAND
586 /* Arguments of --command option and its counterpart. */
589 cmdarg (cmdarg_kind type_
, char *string_
)
590 : type (type_
), string (string_
)
593 /* Type of this option. */
594 enum cmdarg_kind type
;
596 /* Value of this option - filename or the GDB command itself. String memory
597 is not owned by this structure despite it is 'const'. */
601 /* From CMDARG_VEC execute command files (matching FILE_TYPE) or commands
602 (matching CMD_TYPE). Update the value in *RET if and scripts or
603 commands are executed. */
606 execute_cmdargs (const std::vector
<struct cmdarg
> *cmdarg_vec
,
607 cmdarg_kind file_type
, cmdarg_kind cmd_type
,
610 for (const auto &cmdarg_p
: *cmdarg_vec
)
612 if (cmdarg_p
.type
== file_type
)
613 *ret
= catch_command_errors (source_script
, cmdarg_p
.string
,
615 else if (cmdarg_p
.type
== cmd_type
)
616 *ret
= catch_command_errors (execute_command
, cmdarg_p
.string
,
622 captured_main_1 (struct captured_main_args
*context
)
624 int argc
= context
->argc
;
625 char **argv
= context
->argv
;
627 static int quiet
= 0;
628 static int set_args
= 0;
629 static int inhibit_home_gdbinit
= 0;
631 /* Pointers to various arguments from command line. */
633 char *execarg
= NULL
;
635 char *corearg
= NULL
;
636 char *pid_or_core_arg
= NULL
;
640 /* These are static so that we can take their address in an
642 static int print_help
;
643 static int print_version
;
644 static int print_configuration
;
646 /* Pointers to all arguments of --command option. */
647 std::vector
<struct cmdarg
> cmdarg_vec
;
649 /* All arguments of --directory option. */
650 std::vector
<char *> dirarg
;
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 gdb_datadir
= relocate_gdb_directory (GDB_DATADIR
,
722 GDB_DATADIR_RELOCATABLE
);
724 #ifdef WITH_PYTHON_LIBDIR
725 python_libdir
= relocate_gdb_directory (WITH_PYTHON_LIBDIR
,
726 PYTHON_LIBDIR_RELOCATABLE
);
730 add_substitute_path_rule (RELOC_SRCDIR
,
731 make_relative_prefix (gdb_program_name
, BINDIR
,
735 /* There will always be an interpreter. Either the one passed into
736 this captured main, or one specified by the user at start up, or
737 the console. Initialize the interpreter to the one requested by
739 interpreter_p
= context
->interpreter_p
;
741 /* Parse arguments and options. */
744 /* When var field is 0, use flag field to record the equivalent
745 short option (or arbitrary numbers starting at 10 for those
746 with no equivalent). */
762 /* This struct requires int* in the struct, but write_files is a bool.
763 So use this temporary int that we write back after argument parsing. */
764 int write_files_1
= 0;
765 static struct option long_options
[] =
767 {"tui", no_argument
, 0, OPT_TUI
},
768 {"readnow", no_argument
, NULL
, OPT_READNOW
},
769 {"readnever", no_argument
, NULL
, OPT_READNEVER
},
770 {"r", no_argument
, NULL
, OPT_READNOW
},
771 {"quiet", no_argument
, &quiet
, 1},
772 {"q", no_argument
, &quiet
, 1},
773 {"silent", no_argument
, &quiet
, 1},
774 {"nh", no_argument
, &inhibit_home_gdbinit
, 1},
775 {"nx", no_argument
, &inhibit_gdbinit
, 1},
776 {"n", no_argument
, &inhibit_gdbinit
, 1},
777 {"batch-silent", no_argument
, 0, 'B'},
778 {"batch", no_argument
, &batch_flag
, 1},
780 /* This is a synonym for "--annotate=1". --annotate is now
781 preferred, but keep this here for a long time because people
782 will be running emacses which use --fullname. */
783 {"fullname", no_argument
, 0, 'f'},
784 {"f", no_argument
, 0, 'f'},
786 {"annotate", required_argument
, 0, OPT_ANNOTATE
},
787 {"help", no_argument
, &print_help
, 1},
788 {"se", required_argument
, 0, OPT_SE
},
789 {"symbols", required_argument
, 0, 's'},
790 {"s", required_argument
, 0, 's'},
791 {"exec", required_argument
, 0, 'e'},
792 {"e", required_argument
, 0, 'e'},
793 {"core", required_argument
, 0, 'c'},
794 {"c", required_argument
, 0, 'c'},
795 {"pid", required_argument
, 0, 'p'},
796 {"p", required_argument
, 0, 'p'},
797 {"command", required_argument
, 0, 'x'},
798 {"eval-command", required_argument
, 0, 'X'},
799 {"version", no_argument
, &print_version
, 1},
800 {"configuration", no_argument
, &print_configuration
, 1},
801 {"x", required_argument
, 0, 'x'},
802 {"ex", required_argument
, 0, 'X'},
803 {"init-command", required_argument
, 0, OPT_IX
},
804 {"init-eval-command", required_argument
, 0, OPT_IEX
},
805 {"ix", required_argument
, 0, OPT_IX
},
806 {"iex", required_argument
, 0, OPT_IEX
},
807 {"early-init-command", required_argument
, 0, OPT_EIX
},
808 {"early-init-eval-command", required_argument
, 0, OPT_EIEX
},
809 {"eix", required_argument
, 0, OPT_EIX
},
810 {"eiex", required_argument
, 0, OPT_EIEX
},
812 {"tclcommand", required_argument
, 0, 'z'},
813 {"enable-external-editor", no_argument
, 0, 'y'},
814 {"editor-command", required_argument
, 0, 'w'},
816 {"ui", required_argument
, 0, 'i'},
817 {"interpreter", required_argument
, 0, 'i'},
818 {"i", required_argument
, 0, 'i'},
819 {"directory", required_argument
, 0, 'd'},
820 {"d", required_argument
, 0, 'd'},
821 {"data-directory", required_argument
, 0, 'D'},
822 {"D", required_argument
, 0, 'D'},
823 {"cd", required_argument
, 0, OPT_CD
},
824 {"tty", required_argument
, 0, 't'},
825 {"baud", required_argument
, 0, 'b'},
826 {"b", required_argument
, 0, 'b'},
827 {"nw", no_argument
, NULL
, OPT_NOWINDOWS
},
828 {"nowindows", no_argument
, NULL
, OPT_NOWINDOWS
},
829 {"w", no_argument
, NULL
, OPT_WINDOWS
},
830 {"windows", no_argument
, NULL
, OPT_WINDOWS
},
831 {"statistics", no_argument
, 0, OPT_STATISTICS
},
832 {"write", no_argument
, &write_files_1
, 1},
833 {"args", no_argument
, &set_args
, 1},
834 {"l", required_argument
, 0, 'l'},
835 {"return-child-result", no_argument
, &return_child_result
, 1},
836 {0, no_argument
, 0, 0}
843 c
= getopt_long_only (argc
, argv
, "",
844 long_options
, &option_index
);
845 if (c
== EOF
|| set_args
)
848 /* Long option that takes an argument. */
849 if (c
== 0 && long_options
[option_index
].flag
== 0)
850 c
= long_options
[option_index
].val
;
855 /* Long option that just sets a flag. */
865 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
866 annotation_level
= atoi (optarg
);
869 /* Enable the display of both time and space usage. */
870 set_per_command_time (1);
871 set_per_command_space (1);
874 /* --tui is equivalent to -i=tui. */
876 interpreter_p
= INTERP_TUI
;
878 error (_("%s: TUI mode is not supported"), gdb_program_name
);
882 /* FIXME: cagney/2003-03-01: Not sure if this option is
883 actually useful, and if it is, what it should do. */
885 /* --windows is equivalent to -i=insight. */
886 interpreter_p
= INTERP_INSIGHT
;
890 /* -nw is equivalent to -i=console. */
891 interpreter_p
= INTERP_CONSOLE
;
894 annotation_level
= 1;
909 cmdarg_vec
.emplace_back (CMDARG_FILE
, optarg
);
912 cmdarg_vec
.emplace_back (CMDARG_COMMAND
, optarg
);
915 cmdarg_vec
.emplace_back (CMDARG_INIT_FILE
, optarg
);
918 cmdarg_vec
.emplace_back (CMDARG_INIT_COMMAND
, optarg
);
921 cmdarg_vec
.emplace_back (CMDARG_EARLYINIT_FILE
, optarg
);
924 cmdarg_vec
.emplace_back (CMDARG_EARLYINIT_COMMAND
, optarg
);
927 batch_flag
= batch_silent
= 1;
928 gdb_stdout
= new null_file ();
931 if (optarg
[0] == '\0')
932 error (_("%s: empty path for `--data-directory'"),
934 set_gdb_data_directory (optarg
);
935 gdb_datadir_provided
= 1;
940 if (!gdbtk_test (optarg
))
941 error (_("%s: unable to load tclcommand file \"%s\""),
942 gdb_program_name
, optarg
);
946 /* Backwards compatibility only. */
950 /* Set the external editor commands when gdb is farming out files
951 to be edited by another program. */
952 external_editor_command
= xstrdup (optarg
);
957 interpreter_p
= optarg
;
960 dirarg
.push_back (optarg
);
973 rate
= strtol (optarg
, &p
, 0);
974 if (rate
== 0 && p
== optarg
)
975 warning (_("could not set baud rate to `%s'."),
986 timeout
= strtol (optarg
, &p
, 0);
987 if (timeout
== 0 && p
== optarg
)
988 warning (_("could not set timeout limit to `%s'."),
991 remote_timeout
= timeout
;
997 readnow_symbol_files
= 1;
998 validate_readnow_readnever ();
1004 readnever_symbol_files
= 1;
1005 validate_readnow_readnever ();
1010 error (_("Use `%s --help' for a complete list of options."),
1014 write_files
= (write_files_1
!= 0);
1020 /* Disable all output styling when running in batch mode. */
1025 save_original_signals_state (quiet
);
1027 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
1028 gdb::alternate_signal_stack signal_stack
;
1030 /* Initialize all files. */
1033 /* Process early init files and early init options from the command line. */
1034 if (!inhibit_gdbinit
)
1036 std::string home_gdbearlyinit
;
1037 get_earlyinit_files (&home_gdbearlyinit
);
1038 if (!home_gdbearlyinit
.empty () && !inhibit_home_gdbinit
)
1039 ret
= catch_command_errors (source_script
,
1040 home_gdbearlyinit
.c_str (), 0);
1042 execute_cmdargs (&cmdarg_vec
, CMDARG_EARLYINIT_FILE
,
1043 CMDARG_EARLYINIT_COMMAND
, &ret
);
1045 /* Initialize the extension languages. */
1046 ext_lang_initialization ();
1048 /* Recheck if we're starting up quietly after processing the startup
1049 scripts and commands. */
1051 quiet
= check_quiet_mode ();
1053 /* Now that gdb_init has created the initial inferior, we're in
1054 position to set args for that inferior. */
1057 /* The remaining options are the command-line options for the
1058 inferior. The first one is the sym/exec file, and the rest
1061 error (_("%s: `--args' specified but no program specified"),
1064 symarg
= argv
[optind
];
1065 execarg
= argv
[optind
];
1067 set_inferior_args_vector (argc
- optind
, &argv
[optind
]);
1071 /* OK, that's all the options. */
1073 /* The first argument, if specified, is the name of the
1077 symarg
= argv
[optind
];
1078 execarg
= argv
[optind
];
1082 /* If the user hasn't already specified a PID or the name of a
1083 core file, then a second optional argument is allowed. If
1084 present, this argument should be interpreted as either a
1085 PID or a core file, whichever works. */
1086 if (pidarg
== NULL
&& corearg
== NULL
&& optind
< argc
)
1088 pid_or_core_arg
= argv
[optind
];
1092 /* Any argument left on the command line is unexpected and
1093 will be ignored. Inform the user. */
1095 gdb_printf (gdb_stderr
,
1096 _("Excess command line "
1097 "arguments ignored. (%s%s)\n"),
1099 (optind
== argc
- 1) ? "" : " ...");
1102 /* Lookup gdbinit files. Note that the gdbinit file name may be
1103 overridden during file initialization, so get_init_files should be
1104 called after gdb_init. */
1105 std::vector
<std::string
> system_gdbinit
;
1106 std::string home_gdbinit
;
1107 std::string local_gdbinit
;
1108 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1110 /* Do these (and anything which might call wrap_here or *_filtered)
1111 after initialize_all_files() but before the interpreter has been
1112 installed. Otherwize the help/version messages will be eaten by
1113 the interpreter's output handler. */
1117 print_gdb_version (gdb_stdout
, false);
1124 print_gdb_help (gdb_stdout
);
1128 if (print_configuration
)
1130 print_gdb_configuration (gdb_stdout
);
1135 /* Install the default UI. All the interpreters should have had a
1136 look at things by now. Initialize the default interpreter. */
1137 set_top_level_interpreter (interpreter_p
.c_str ());
1141 /* Print all the junk at the top, with trailing "..." if we are
1142 about to read a symbol file (possibly slowly). */
1143 print_gdb_version (gdb_stdout
, true);
1147 gdb_flush (gdb_stdout
); /* Force to screen during slow
1151 /* Set off error and warning messages with a blank line. */
1152 tmp_warn_preprint
.reset ();
1153 warning_pre_print
= _("\nwarning: ");
1155 /* Read and execute the system-wide gdbinit file, if it exists.
1156 This is done *before* all the command line arguments are
1157 processed; it sets global parameters, which are independent of
1158 what file you are debugging or what directory you are in. */
1159 if (!system_gdbinit
.empty () && !inhibit_gdbinit
)
1161 for (const std::string
&file
: system_gdbinit
)
1162 ret
= catch_command_errors (source_script
, file
.c_str (), 0);
1165 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1166 *before* all the command line arguments are processed; it sets
1167 global parameters, which are independent of what file you are
1168 debugging or what directory you are in. */
1170 if (!home_gdbinit
.empty () && !inhibit_gdbinit
&& !inhibit_home_gdbinit
)
1171 ret
= catch_command_errors (source_script
, home_gdbinit
.c_str (), 0);
1173 /* Process '-ix' and '-iex' options early. */
1174 execute_cmdargs (&cmdarg_vec
, CMDARG_INIT_FILE
, CMDARG_INIT_COMMAND
, &ret
);
1176 /* Now perform all the actions indicated by the arguments. */
1179 ret
= catch_command_errors (cd_command
, cdarg
, 0);
1182 for (i
= 0; i
< dirarg
.size (); i
++)
1183 ret
= catch_command_errors (directory_switch
, dirarg
[i
], 0);
1185 /* Skip auto-loading section-specified scripts until we've sourced
1186 local_gdbinit (which is often used to augment the source search
1188 save_auto_load
= global_auto_load
;
1189 global_auto_load
= 0;
1193 && strcmp (execarg
, symarg
) == 0)
1195 /* The exec file and the symbol-file are the same. If we can't
1196 open it, better only print one error message.
1197 catch_command_errors returns non-zero on success! */
1198 ret
= catch_command_errors (exec_file_attach
, execarg
,
1201 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1202 symarg
, !batch_flag
);
1206 if (execarg
!= NULL
)
1207 ret
= catch_command_errors (exec_file_attach
, execarg
,
1210 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1211 symarg
, !batch_flag
);
1214 if (corearg
&& pidarg
)
1215 error (_("Can't attach to process and specify "
1216 "a core file at the same time."));
1218 if (corearg
!= NULL
)
1220 ret
= catch_command_errors (core_file_command
, corearg
,
1223 else if (pidarg
!= NULL
)
1225 ret
= catch_command_errors (attach_command
, pidarg
, !batch_flag
);
1227 else if (pid_or_core_arg
)
1229 /* The user specified 'gdb program pid' or gdb program core'.
1230 If pid_or_core_arg's first character is a digit, try attach
1231 first and then corefile. Otherwise try just corefile. */
1233 if (isdigit (pid_or_core_arg
[0]))
1235 ret
= catch_command_errors (attach_command
, pid_or_core_arg
,
1238 ret
= catch_command_errors (core_file_command
,
1244 /* Can't be a pid, better be a corefile. */
1245 ret
= catch_command_errors (core_file_command
,
1252 current_inferior ()->set_tty (ttyarg
);
1254 /* Error messages should no longer be distinguished with extra output. */
1255 warning_pre_print
= _("warning: ");
1257 /* Read the .gdbinit file in the current directory, *if* it isn't
1258 the same as the $HOME/.gdbinit file (it should exist, also). */
1259 if (!local_gdbinit
.empty ())
1261 auto_load_local_gdbinit_pathname
1262 = gdb_realpath (local_gdbinit
.c_str ()).release ();
1264 if (!inhibit_gdbinit
&& auto_load_local_gdbinit
)
1266 auto_load_debug_printf ("Loading .gdbinit file \"%s\".",
1267 local_gdbinit
.c_str ());
1269 if (file_is_auto_load_safe (local_gdbinit
.c_str ()))
1271 auto_load_local_gdbinit_loaded
= 1;
1273 ret
= catch_command_errors (source_script
, local_gdbinit
.c_str (), 0);
1278 /* Now that all .gdbinit's have been read and all -d options have been
1279 processed, we can read any scripts mentioned in SYMARG.
1280 We wait until now because it is common to add to the source search
1281 path in local_gdbinit. */
1282 global_auto_load
= save_auto_load
;
1283 for (objfile
*objfile
: current_program_space
->objfiles ())
1284 load_auto_scripts_for_objfile (objfile
);
1286 /* Process '-x' and '-ex' options. */
1287 execute_cmdargs (&cmdarg_vec
, CMDARG_FILE
, CMDARG_COMMAND
, &ret
);
1289 /* Read in the old history after all the command files have been
1295 int error_status
= EXIT_FAILURE
;
1296 int *exit_arg
= ret
== 0 ? &error_status
: NULL
;
1298 /* We have hit the end of the batch file. */
1299 quit_force (exit_arg
, 0);
1304 captured_main (void *data
)
1306 struct captured_main_args
*context
= (struct captured_main_args
*) data
;
1308 captured_main_1 (context
);
1310 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1311 moving this loop and the code found in captured_command_loop()
1312 into the command_loop() proper. The main thing holding back that
1313 change - SET_TOP_LEVEL() - has been eliminated. */
1318 captured_command_loop ();
1320 catch (const gdb_exception_forced_quit
&ex
)
1322 quit_force (NULL
, 0);
1324 catch (const gdb_exception
&ex
)
1326 exception_print (gdb_stderr
, ex
);
1329 /* No exit -- exit is through quit_command. */
1333 gdb_main (struct captured_main_args
*args
)
1337 captured_main (args
);
1339 catch (const gdb_exception
&ex
)
1341 exception_print (gdb_stderr
, ex
);
1344 /* The only way to end up here is by an error (normal exit is
1345 handled by quit_force()), hence always return an error status. */
1350 /* Don't use *_filtered for printing help. We don't want to prompt
1351 for continue no matter how small the screen or how much we're going
1355 print_gdb_help (struct ui_file
*stream
)
1357 std::vector
<std::string
> system_gdbinit
;
1358 std::string home_gdbinit
;
1359 std::string local_gdbinit
;
1360 std::string home_gdbearlyinit
;
1362 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1363 get_earlyinit_files (&home_gdbearlyinit
);
1365 /* Note: The options in the list below are only approximately sorted
1366 in the alphabetical order, so as to group closely related options
1369 This is the GNU debugger. Usage:\n\n\
1370 gdb [options] [executable-file [core-file or process-id]]\n\
1371 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1374 Selection of debuggee and its files:\n\n\
1375 --args Arguments after executable-file are passed to inferior.\n\
1376 --core=COREFILE Analyze the core dump COREFILE.\n\
1377 --exec=EXECFILE Use EXECFILE as the executable.\n\
1378 --pid=PID Attach to running process PID.\n\
1379 --directory=DIR Search for source files in DIR.\n\
1380 --se=FILE Use FILE as symbol file and executable file.\n\
1381 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1382 --readnow Fully read symbol files on first access.\n\
1383 --readnever Do not read symbol files.\n\
1384 --write Set writing into executable and core files.\n\n\
1387 Initial commands and command files:\n\n\
1388 --command=FILE, -x Execute GDB commands from FILE.\n\
1389 --init-command=FILE, -ix\n\
1390 Like -x but execute commands before loading inferior.\n\
1391 --eval-command=COMMAND, -ex\n\
1392 Execute a single GDB command.\n\
1393 May be used multiple times and in conjunction\n\
1395 --init-eval-command=COMMAND, -iex\n\
1396 Like -ex but before loading inferior.\n\
1397 --nh Do not read ~/.gdbinit.\n\
1398 --nx Do not read any .gdbinit files in any directory.\n\n\
1401 Output and user interface control:\n\n\
1402 --fullname Output information used by emacs-GDB interface.\n\
1403 --interpreter=INTERP\n\
1404 Select a specific interpreter / user interface.\n\
1405 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1406 -w Use the GUI interface.\n\
1407 --nw Do not use the GUI interface.\n\
1411 --tui Use a terminal user interface.\n\
1415 -q, --quiet, --silent\n\
1416 Do not print version number on startup.\n\n\
1419 Operating modes:\n\n\
1420 --batch Exit after processing options.\n\
1421 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1422 --return-child-result\n\
1423 GDB exit code will be the child's exit code.\n\
1424 --configuration Print details about GDB configuration and then exit.\n\
1425 --help Print this message and then exit.\n\
1426 --version Print version information and then exit.\n\n\
1427 Remote debugging options:\n\n\
1428 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1429 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1431 --cd=DIR Change current directory to DIR.\n\
1432 --data-directory=DIR, -D\n\
1433 Set GDB's data-directory to DIR.\n\
1436 At startup, GDB reads the following early init files and executes their\n\
1439 if (!home_gdbearlyinit
.empty ())
1440 gdb_printf (stream
, _("\
1441 * user-specific early init file: %s\n\
1442 "), home_gdbearlyinit
.c_str ());
1443 if (home_gdbearlyinit
.empty ())
1444 gdb_printf (stream
, _("\
1447 At startup, GDB reads the following init files and executes their commands:\n\
1449 if (!system_gdbinit
.empty ())
1452 for (size_t idx
= 0; idx
< system_gdbinit
.size (); ++idx
)
1454 output
+= system_gdbinit
[idx
];
1455 if (idx
< system_gdbinit
.size () - 1)
1458 gdb_printf (stream
, _("\
1459 * system-wide init files: %s\n\
1460 "), output
.c_str ());
1462 if (!home_gdbinit
.empty ())
1463 gdb_printf (stream
, _("\
1464 * user-specific init file: %s\n\
1465 "), home_gdbinit
.c_str ());
1466 if (!local_gdbinit
.empty ())
1467 gdb_printf (stream
, _("\
1468 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1469 "), local_gdbinit
.c_str ());
1470 if (system_gdbinit
.empty () && home_gdbinit
.empty ()
1471 && local_gdbinit
.empty ())
1472 gdb_printf (stream
, _("\
1475 For more information, type \"help\" from within GDB, or consult the\n\
1476 GDB manual (available as on-line info or a printed manual).\n\
1478 if (REPORT_BUGS_TO
[0] && stream
== gdb_stdout
)
1479 gdb_printf (stream
, _("\n\
1480 Report bugs to %ps.\n\
1481 "), styled_string (file_name_style
.style (), REPORT_BUGS_TO
));
1482 if (stream
== gdb_stdout
)
1483 gdb_printf (stream
, _("\n\
1484 You can ask GDB-related questions on the GDB users mailing list\n\
1485 (gdb@sourceware.org) or on GDB's IRC channel (#gdb on Freenode).\n"));