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
&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 gdb::observers::command_error
.notify ();
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 interp_pre_command_loop (top_level_interpreter ());
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
&e
)
523 return handle_command_errors (e
);
529 /* Adapter for symbol_file_add_main that translates 'from_tty' to a
530 symfile_add_flags. */
533 symbol_file_add_main_adapter (const char *arg
, int from_tty
)
535 symfile_add_flags add_flags
= 0;
538 add_flags
|= SYMFILE_VERBOSE
;
540 symbol_file_add_main (arg
, add_flags
);
543 /* Perform validation of the '--readnow' and '--readnever' flags. */
546 validate_readnow_readnever ()
548 if (readnever_symbol_files
&& readnow_symbol_files
)
550 error (_("%s: '--readnow' and '--readnever' cannot be "
551 "specified simultaneously"),
556 /* Type of this option. */
559 /* Option type -x. */
562 /* Option type -ex. */
565 /* Option type -ix. */
568 /* Option type -iex. */
571 /* Option type -eix. */
572 CMDARG_EARLYINIT_FILE
,
574 /* Option type -eiex. */
575 CMDARG_EARLYINIT_COMMAND
578 /* Arguments of --command option and its counterpart. */
581 cmdarg (cmdarg_kind type_
, char *string_
)
582 : type (type_
), string (string_
)
585 /* Type of this option. */
586 enum cmdarg_kind type
;
588 /* Value of this option - filename or the GDB command itself. String memory
589 is not owned by this structure despite it is 'const'. */
593 /* From CMDARG_VEC execute command files (matching FILE_TYPE) or commands
594 (matching CMD_TYPE). Update the value in *RET if and scripts or
595 commands are executed. */
598 execute_cmdargs (const std::vector
<struct cmdarg
> *cmdarg_vec
,
599 cmdarg_kind file_type
, cmdarg_kind cmd_type
,
602 for (const auto &cmdarg_p
: *cmdarg_vec
)
604 if (cmdarg_p
.type
== file_type
)
605 *ret
= catch_command_errors (source_script
, cmdarg_p
.string
,
607 else if (cmdarg_p
.type
== cmd_type
)
608 *ret
= catch_command_errors (execute_command
, cmdarg_p
.string
,
614 captured_main_1 (struct captured_main_args
*context
)
616 int argc
= context
->argc
;
617 char **argv
= context
->argv
;
619 static int quiet
= 0;
620 static int set_args
= 0;
621 static int inhibit_home_gdbinit
= 0;
623 /* Pointers to various arguments from command line. */
625 char *execarg
= NULL
;
627 char *corearg
= NULL
;
628 char *pid_or_core_arg
= NULL
;
632 /* These are static so that we can take their address in an
634 static int print_help
;
635 static int print_version
;
636 static int print_configuration
;
638 /* Pointers to all arguments of --command option. */
639 std::vector
<struct cmdarg
> cmdarg_vec
;
641 /* All arguments of --directory option. */
642 std::vector
<char *> dirarg
;
648 #ifdef HAVE_USEFUL_SBRK
649 /* Set this before constructing scoped_command_stats. */
650 lim_at_start
= (char *) sbrk (0);
653 scoped_command_stats
stat_reporter (false);
655 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
656 setlocale (LC_MESSAGES
, "");
658 #if defined (HAVE_SETLOCALE)
659 setlocale (LC_CTYPE
, "");
662 bindtextdomain (PACKAGE
, LOCALEDIR
);
663 textdomain (PACKAGE
);
669 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
670 as a Windows pipe, and Windows buffers on pipes. */
671 setvbuf (stderr
, NULL
, _IONBF
, BUFSIZ
);
674 /* Note: `error' cannot be called before this point, because the
675 caller will crash when trying to print the exception. */
676 main_ui
= new ui (stdin
, stdout
, stderr
);
677 current_ui
= main_ui
;
679 gdb_stdtarg
= gdb_stderr
;
680 gdb_stdtargerr
= gdb_stderr
;
681 gdb_stdtargin
= gdb_stdin
;
683 if (bfd_init () != BFD_INIT_MAGIC
)
684 error (_("fatal error: libbfd ABI mismatch"));
687 /* On Windows, argv[0] is not necessarily set to absolute form when
688 GDB is found along PATH, without which relocation doesn't work. */
689 gdb_program_name
= windows_get_absolute_argv0 (argv
[0]);
691 gdb_program_name
= xstrdup (argv
[0]);
694 /* Prefix warning messages with the command name. */
695 gdb::unique_xmalloc_ptr
<char> tmp_warn_preprint
696 = xstrprintf ("%s: warning: ", gdb_program_name
);
697 warning_pre_print
= tmp_warn_preprint
.get ();
699 current_directory
= getcwd (NULL
, 0);
700 if (current_directory
== NULL
)
701 perror_warning_with_name (_("error finding working directory"));
703 /* Set the sysroot path. */
704 gdb_sysroot
= relocate_gdb_directory (TARGET_SYSTEM_ROOT
,
705 TARGET_SYSTEM_ROOT_RELOCATABLE
);
707 if (gdb_sysroot
.empty ())
708 gdb_sysroot
= TARGET_SYSROOT_PREFIX
;
711 = relocate_gdb_directory (DEBUGDIR
, DEBUGDIR_RELOCATABLE
);
713 gdb_datadir
= relocate_gdb_directory (GDB_DATADIR
,
714 GDB_DATADIR_RELOCATABLE
);
716 #ifdef WITH_PYTHON_LIBDIR
717 python_libdir
= relocate_gdb_directory (WITH_PYTHON_LIBDIR
,
718 PYTHON_LIBDIR_RELOCATABLE
);
722 add_substitute_path_rule (RELOC_SRCDIR
,
723 make_relative_prefix (gdb_program_name
, BINDIR
,
727 /* There will always be an interpreter. Either the one passed into
728 this captured main, or one specified by the user at start up, or
729 the console. Initialize the interpreter to the one requested by
731 interpreter_p
= context
->interpreter_p
;
733 /* Parse arguments and options. */
736 /* When var field is 0, use flag field to record the equivalent
737 short option (or arbitrary numbers starting at 10 for those
738 with no equivalent). */
754 /* This struct requires int* in the struct, but write_files is a bool.
755 So use this temporary int that we write back after argument parsing. */
756 int write_files_1
= 0;
757 static struct option long_options
[] =
759 {"tui", no_argument
, 0, OPT_TUI
},
760 {"readnow", no_argument
, NULL
, OPT_READNOW
},
761 {"readnever", no_argument
, NULL
, OPT_READNEVER
},
762 {"r", no_argument
, NULL
, OPT_READNOW
},
763 {"quiet", no_argument
, &quiet
, 1},
764 {"q", no_argument
, &quiet
, 1},
765 {"silent", no_argument
, &quiet
, 1},
766 {"nh", no_argument
, &inhibit_home_gdbinit
, 1},
767 {"nx", no_argument
, &inhibit_gdbinit
, 1},
768 {"n", no_argument
, &inhibit_gdbinit
, 1},
769 {"batch-silent", no_argument
, 0, 'B'},
770 {"batch", no_argument
, &batch_flag
, 1},
772 /* This is a synonym for "--annotate=1". --annotate is now
773 preferred, but keep this here for a long time because people
774 will be running emacses which use --fullname. */
775 {"fullname", no_argument
, 0, 'f'},
776 {"f", no_argument
, 0, 'f'},
778 {"annotate", required_argument
, 0, OPT_ANNOTATE
},
779 {"help", no_argument
, &print_help
, 1},
780 {"se", required_argument
, 0, OPT_SE
},
781 {"symbols", required_argument
, 0, 's'},
782 {"s", required_argument
, 0, 's'},
783 {"exec", required_argument
, 0, 'e'},
784 {"e", required_argument
, 0, 'e'},
785 {"core", required_argument
, 0, 'c'},
786 {"c", required_argument
, 0, 'c'},
787 {"pid", required_argument
, 0, 'p'},
788 {"p", required_argument
, 0, 'p'},
789 {"command", required_argument
, 0, 'x'},
790 {"eval-command", required_argument
, 0, 'X'},
791 {"version", no_argument
, &print_version
, 1},
792 {"configuration", no_argument
, &print_configuration
, 1},
793 {"x", required_argument
, 0, 'x'},
794 {"ex", required_argument
, 0, 'X'},
795 {"init-command", required_argument
, 0, OPT_IX
},
796 {"init-eval-command", required_argument
, 0, OPT_IEX
},
797 {"ix", required_argument
, 0, OPT_IX
},
798 {"iex", required_argument
, 0, OPT_IEX
},
799 {"early-init-command", required_argument
, 0, OPT_EIX
},
800 {"early-init-eval-command", required_argument
, 0, OPT_EIEX
},
801 {"eix", required_argument
, 0, OPT_EIX
},
802 {"eiex", required_argument
, 0, OPT_EIEX
},
804 {"tclcommand", required_argument
, 0, 'z'},
805 {"enable-external-editor", no_argument
, 0, 'y'},
806 {"editor-command", required_argument
, 0, 'w'},
808 {"ui", required_argument
, 0, 'i'},
809 {"interpreter", required_argument
, 0, 'i'},
810 {"i", required_argument
, 0, 'i'},
811 {"directory", required_argument
, 0, 'd'},
812 {"d", required_argument
, 0, 'd'},
813 {"data-directory", required_argument
, 0, 'D'},
814 {"D", required_argument
, 0, 'D'},
815 {"cd", required_argument
, 0, OPT_CD
},
816 {"tty", required_argument
, 0, 't'},
817 {"baud", required_argument
, 0, 'b'},
818 {"b", required_argument
, 0, 'b'},
819 {"nw", no_argument
, NULL
, OPT_NOWINDOWS
},
820 {"nowindows", no_argument
, NULL
, OPT_NOWINDOWS
},
821 {"w", no_argument
, NULL
, OPT_WINDOWS
},
822 {"windows", no_argument
, NULL
, OPT_WINDOWS
},
823 {"statistics", no_argument
, 0, OPT_STATISTICS
},
824 {"write", no_argument
, &write_files_1
, 1},
825 {"args", no_argument
, &set_args
, 1},
826 {"l", required_argument
, 0, 'l'},
827 {"return-child-result", no_argument
, &return_child_result
, 1},
828 {0, no_argument
, 0, 0}
835 c
= getopt_long_only (argc
, argv
, "",
836 long_options
, &option_index
);
837 if (c
== EOF
|| set_args
)
840 /* Long option that takes an argument. */
841 if (c
== 0 && long_options
[option_index
].flag
== 0)
842 c
= long_options
[option_index
].val
;
847 /* Long option that just sets a flag. */
857 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
858 annotation_level
= atoi (optarg
);
861 /* Enable the display of both time and space usage. */
862 set_per_command_time (1);
863 set_per_command_space (1);
866 /* --tui is equivalent to -i=tui. */
868 interpreter_p
= INTERP_TUI
;
870 error (_("%s: TUI mode is not supported"), gdb_program_name
);
874 /* FIXME: cagney/2003-03-01: Not sure if this option is
875 actually useful, and if it is, what it should do. */
877 /* --windows is equivalent to -i=insight. */
878 interpreter_p
= INTERP_INSIGHT
;
882 /* -nw is equivalent to -i=console. */
883 interpreter_p
= INTERP_CONSOLE
;
886 annotation_level
= 1;
901 cmdarg_vec
.emplace_back (CMDARG_FILE
, optarg
);
904 cmdarg_vec
.emplace_back (CMDARG_COMMAND
, optarg
);
907 cmdarg_vec
.emplace_back (CMDARG_INIT_FILE
, optarg
);
910 cmdarg_vec
.emplace_back (CMDARG_INIT_COMMAND
, optarg
);
913 cmdarg_vec
.emplace_back (CMDARG_EARLYINIT_FILE
, optarg
);
916 cmdarg_vec
.emplace_back (CMDARG_EARLYINIT_COMMAND
, optarg
);
919 batch_flag
= batch_silent
= 1;
920 gdb_stdout
= new null_file ();
923 if (optarg
[0] == '\0')
924 error (_("%s: empty path for `--data-directory'"),
926 set_gdb_data_directory (optarg
);
927 gdb_datadir_provided
= 1;
932 if (!gdbtk_test (optarg
))
933 error (_("%s: unable to load tclcommand file \"%s\""),
934 gdb_program_name
, optarg
);
938 /* Backwards compatibility only. */
942 /* Set the external editor commands when gdb is farming out files
943 to be edited by another program. */
944 external_editor_command
= xstrdup (optarg
);
949 interpreter_p
= optarg
;
952 dirarg
.push_back (optarg
);
965 rate
= strtol (optarg
, &p
, 0);
966 if (rate
== 0 && p
== optarg
)
967 warning (_("could not set baud rate to `%s'."),
978 timeout
= strtol (optarg
, &p
, 0);
979 if (timeout
== 0 && p
== optarg
)
980 warning (_("could not set timeout limit to `%s'."),
983 remote_timeout
= timeout
;
989 readnow_symbol_files
= 1;
990 validate_readnow_readnever ();
996 readnever_symbol_files
= 1;
997 validate_readnow_readnever ();
1002 error (_("Use `%s --help' for a complete list of options."),
1006 write_files
= (write_files_1
!= 0);
1012 /* Disable all output styling when running in batch mode. */
1017 save_original_signals_state (quiet
);
1019 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
1020 gdb::alternate_signal_stack signal_stack
;
1022 /* Initialize all files. */
1025 /* Process early init files and early init options from the command line. */
1026 if (!inhibit_gdbinit
)
1028 std::string home_gdbearlyinit
;
1029 get_earlyinit_files (&home_gdbearlyinit
);
1030 if (!home_gdbearlyinit
.empty () && !inhibit_home_gdbinit
)
1031 ret
= catch_command_errors (source_script
,
1032 home_gdbearlyinit
.c_str (), 0);
1034 execute_cmdargs (&cmdarg_vec
, CMDARG_EARLYINIT_FILE
,
1035 CMDARG_EARLYINIT_COMMAND
, &ret
);
1037 /* Initialize the extension languages. */
1038 ext_lang_initialization ();
1040 /* Recheck if we're starting up quietly after processing the startup
1041 scripts and commands. */
1043 quiet
= check_quiet_mode ();
1045 /* Now that gdb_init has created the initial inferior, we're in
1046 position to set args for that inferior. */
1049 /* The remaining options are the command-line options for the
1050 inferior. The first one is the sym/exec file, and the rest
1053 error (_("%s: `--args' specified but no program specified"),
1056 symarg
= argv
[optind
];
1057 execarg
= argv
[optind
];
1059 set_inferior_args_vector (argc
- optind
, &argv
[optind
]);
1063 /* OK, that's all the options. */
1065 /* The first argument, if specified, is the name of the
1069 symarg
= argv
[optind
];
1070 execarg
= argv
[optind
];
1074 /* If the user hasn't already specified a PID or the name of a
1075 core file, then a second optional argument is allowed. If
1076 present, this argument should be interpreted as either a
1077 PID or a core file, whichever works. */
1078 if (pidarg
== NULL
&& corearg
== NULL
&& optind
< argc
)
1080 pid_or_core_arg
= argv
[optind
];
1084 /* Any argument left on the command line is unexpected and
1085 will be ignored. Inform the user. */
1087 gdb_printf (gdb_stderr
,
1088 _("Excess command line "
1089 "arguments ignored. (%s%s)\n"),
1091 (optind
== argc
- 1) ? "" : " ...");
1094 /* Lookup gdbinit files. Note that the gdbinit file name may be
1095 overridden during file initialization, so get_init_files should be
1096 called after gdb_init. */
1097 std::vector
<std::string
> system_gdbinit
;
1098 std::string home_gdbinit
;
1099 std::string local_gdbinit
;
1100 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1102 /* Do these (and anything which might call wrap_here or *_filtered)
1103 after initialize_all_files() but before the interpreter has been
1104 installed. Otherwize the help/version messages will be eaten by
1105 the interpreter's output handler. */
1109 print_gdb_version (gdb_stdout
, false);
1116 print_gdb_help (gdb_stdout
);
1120 if (print_configuration
)
1122 print_gdb_configuration (gdb_stdout
);
1127 /* Install the default UI. All the interpreters should have had a
1128 look at things by now. Initialize the default interpreter. */
1129 set_top_level_interpreter (interpreter_p
.c_str ());
1133 /* Print all the junk at the top, with trailing "..." if we are
1134 about to read a symbol file (possibly slowly). */
1135 print_gdb_version (gdb_stdout
, true);
1139 gdb_flush (gdb_stdout
); /* Force to screen during slow
1143 /* Set off error and warning messages with a blank line. */
1144 tmp_warn_preprint
.reset ();
1145 warning_pre_print
= _("\nwarning: ");
1147 /* Read and execute the system-wide gdbinit file, if it exists.
1148 This is done *before* all the command line arguments are
1149 processed; it sets global parameters, which are independent of
1150 what file you are debugging or what directory you are in. */
1151 if (!system_gdbinit
.empty () && !inhibit_gdbinit
)
1153 for (const std::string
&file
: system_gdbinit
)
1154 ret
= catch_command_errors (source_script
, file
.c_str (), 0);
1157 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1158 *before* all the command line arguments are processed; it sets
1159 global parameters, which are independent of what file you are
1160 debugging or what directory you are in. */
1162 if (!home_gdbinit
.empty () && !inhibit_gdbinit
&& !inhibit_home_gdbinit
)
1163 ret
= catch_command_errors (source_script
, home_gdbinit
.c_str (), 0);
1165 /* Process '-ix' and '-iex' options early. */
1166 execute_cmdargs (&cmdarg_vec
, CMDARG_INIT_FILE
, CMDARG_INIT_COMMAND
, &ret
);
1168 /* Now perform all the actions indicated by the arguments. */
1171 ret
= catch_command_errors (cd_command
, cdarg
, 0);
1174 for (i
= 0; i
< dirarg
.size (); i
++)
1175 ret
= catch_command_errors (directory_switch
, dirarg
[i
], 0);
1177 /* Skip auto-loading section-specified scripts until we've sourced
1178 local_gdbinit (which is often used to augment the source search
1180 save_auto_load
= global_auto_load
;
1181 global_auto_load
= 0;
1185 && strcmp (execarg
, symarg
) == 0)
1187 /* The exec file and the symbol-file are the same. If we can't
1188 open it, better only print one error message.
1189 catch_command_errors returns non-zero on success! */
1190 ret
= catch_command_errors (exec_file_attach
, execarg
,
1193 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1194 symarg
, !batch_flag
);
1198 if (execarg
!= NULL
)
1199 ret
= catch_command_errors (exec_file_attach
, execarg
,
1202 ret
= catch_command_errors (symbol_file_add_main_adapter
,
1203 symarg
, !batch_flag
);
1206 if (corearg
&& pidarg
)
1207 error (_("Can't attach to process and specify "
1208 "a core file at the same time."));
1210 if (corearg
!= NULL
)
1212 ret
= catch_command_errors (core_file_command
, corearg
,
1215 else if (pidarg
!= NULL
)
1217 ret
= catch_command_errors (attach_command
, pidarg
, !batch_flag
);
1219 else if (pid_or_core_arg
)
1221 /* The user specified 'gdb program pid' or gdb program core'.
1222 If pid_or_core_arg's first character is a digit, try attach
1223 first and then corefile. Otherwise try just corefile. */
1225 if (isdigit (pid_or_core_arg
[0]))
1227 ret
= catch_command_errors (attach_command
, pid_or_core_arg
,
1230 ret
= catch_command_errors (core_file_command
,
1236 /* Can't be a pid, better be a corefile. */
1237 ret
= catch_command_errors (core_file_command
,
1244 current_inferior ()->set_tty (ttyarg
);
1246 /* Error messages should no longer be distinguished with extra output. */
1247 warning_pre_print
= _("warning: ");
1249 /* Read the .gdbinit file in the current directory, *if* it isn't
1250 the same as the $HOME/.gdbinit file (it should exist, also). */
1251 if (!local_gdbinit
.empty ())
1253 auto_load_local_gdbinit_pathname
1254 = gdb_realpath (local_gdbinit
.c_str ()).release ();
1256 if (!inhibit_gdbinit
&& auto_load_local_gdbinit
)
1258 auto_load_debug_printf ("Loading .gdbinit file \"%s\".",
1259 local_gdbinit
.c_str ());
1261 if (file_is_auto_load_safe (local_gdbinit
.c_str ()))
1263 auto_load_local_gdbinit_loaded
= 1;
1265 ret
= catch_command_errors (source_script
, local_gdbinit
.c_str (), 0);
1270 /* Now that all .gdbinit's have been read and all -d options have been
1271 processed, we can read any scripts mentioned in SYMARG.
1272 We wait until now because it is common to add to the source search
1273 path in local_gdbinit. */
1274 global_auto_load
= save_auto_load
;
1275 for (objfile
*objfile
: current_program_space
->objfiles ())
1276 load_auto_scripts_for_objfile (objfile
);
1278 /* Process '-x' and '-ex' options. */
1279 execute_cmdargs (&cmdarg_vec
, CMDARG_FILE
, CMDARG_COMMAND
, &ret
);
1281 /* Read in the old history after all the command files have been
1287 int error_status
= EXIT_FAILURE
;
1288 int *exit_arg
= ret
== 0 ? &error_status
: NULL
;
1290 /* We have hit the end of the batch file. */
1291 quit_force (exit_arg
, 0);
1296 captured_main (void *data
)
1298 struct captured_main_args
*context
= (struct captured_main_args
*) data
;
1300 captured_main_1 (context
);
1302 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1303 moving this loop and the code found in captured_command_loop()
1304 into the command_loop() proper. The main thing holding back that
1305 change - SET_TOP_LEVEL() - has been eliminated. */
1310 captured_command_loop ();
1312 catch (const gdb_exception
&ex
)
1314 exception_print (gdb_stderr
, ex
);
1317 /* No exit -- exit is through quit_command. */
1321 gdb_main (struct captured_main_args
*args
)
1325 captured_main (args
);
1327 catch (const gdb_exception
&ex
)
1329 exception_print (gdb_stderr
, ex
);
1332 /* The only way to end up here is by an error (normal exit is
1333 handled by quit_force()), hence always return an error status. */
1338 /* Don't use *_filtered for printing help. We don't want to prompt
1339 for continue no matter how small the screen or how much we're going
1343 print_gdb_help (struct ui_file
*stream
)
1345 std::vector
<std::string
> system_gdbinit
;
1346 std::string home_gdbinit
;
1347 std::string local_gdbinit
;
1348 std::string home_gdbearlyinit
;
1350 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1351 get_earlyinit_files (&home_gdbearlyinit
);
1353 /* Note: The options in the list below are only approximately sorted
1354 in the alphabetical order, so as to group closely related options
1357 This is the GNU debugger. Usage:\n\n\
1358 gdb [options] [executable-file [core-file or process-id]]\n\
1359 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1362 Selection of debuggee and its files:\n\n\
1363 --args Arguments after executable-file are passed to inferior.\n\
1364 --core=COREFILE Analyze the core dump COREFILE.\n\
1365 --exec=EXECFILE Use EXECFILE as the executable.\n\
1366 --pid=PID Attach to running process PID.\n\
1367 --directory=DIR Search for source files in DIR.\n\
1368 --se=FILE Use FILE as symbol file and executable file.\n\
1369 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1370 --readnow Fully read symbol files on first access.\n\
1371 --readnever Do not read symbol files.\n\
1372 --write Set writing into executable and core files.\n\n\
1375 Initial commands and command files:\n\n\
1376 --command=FILE, -x Execute GDB commands from FILE.\n\
1377 --init-command=FILE, -ix\n\
1378 Like -x but execute commands before loading inferior.\n\
1379 --eval-command=COMMAND, -ex\n\
1380 Execute a single GDB command.\n\
1381 May be used multiple times and in conjunction\n\
1383 --init-eval-command=COMMAND, -iex\n\
1384 Like -ex but before loading inferior.\n\
1385 --nh Do not read ~/.gdbinit.\n\
1386 --nx Do not read any .gdbinit files in any directory.\n\n\
1389 Output and user interface control:\n\n\
1390 --fullname Output information used by emacs-GDB interface.\n\
1391 --interpreter=INTERP\n\
1392 Select a specific interpreter / user interface.\n\
1393 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1394 -w Use the GUI interface.\n\
1395 --nw Do not use the GUI interface.\n\
1399 --tui Use a terminal user interface.\n\
1403 -q, --quiet, --silent\n\
1404 Do not print version number on startup.\n\n\
1407 Operating modes:\n\n\
1408 --batch Exit after processing options.\n\
1409 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1410 --return-child-result\n\
1411 GDB exit code will be the child's exit code.\n\
1412 --configuration Print details about GDB configuration and then exit.\n\
1413 --help Print this message and then exit.\n\
1414 --version Print version information and then exit.\n\n\
1415 Remote debugging options:\n\n\
1416 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1417 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1419 --cd=DIR Change current directory to DIR.\n\
1420 --data-directory=DIR, -D\n\
1421 Set GDB's data-directory to DIR.\n\
1424 At startup, GDB reads the following early init files and executes their\n\
1427 if (!home_gdbearlyinit
.empty ())
1428 gdb_printf (stream
, _("\
1429 * user-specific early init file: %s\n\
1430 "), home_gdbearlyinit
.c_str ());
1431 if (home_gdbearlyinit
.empty ())
1432 gdb_printf (stream
, _("\
1435 At startup, GDB reads the following init files and executes their commands:\n\
1437 if (!system_gdbinit
.empty ())
1440 for (size_t idx
= 0; idx
< system_gdbinit
.size (); ++idx
)
1442 output
+= system_gdbinit
[idx
];
1443 if (idx
< system_gdbinit
.size () - 1)
1446 gdb_printf (stream
, _("\
1447 * system-wide init files: %s\n\
1448 "), output
.c_str ());
1450 if (!home_gdbinit
.empty ())
1451 gdb_printf (stream
, _("\
1452 * user-specific init file: %s\n\
1453 "), home_gdbinit
.c_str ());
1454 if (!local_gdbinit
.empty ())
1455 gdb_printf (stream
, _("\
1456 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1457 "), local_gdbinit
.c_str ());
1458 if (system_gdbinit
.empty () && home_gdbinit
.empty ()
1459 && local_gdbinit
.empty ())
1460 gdb_printf (stream
, _("\
1463 For more information, type \"help\" from within GDB, or consult the\n\
1464 GDB manual (available as on-line info or a printed manual).\n\
1466 if (REPORT_BUGS_TO
[0] && stream
== gdb_stdout
)
1467 gdb_printf (stream
, _("\n\
1468 Report bugs to %ps.\n\
1469 "), styled_string (file_name_style
.style (), REPORT_BUGS_TO
));
1470 if (stream
== gdb_stdout
)
1471 gdb_printf (stream
, _("\n\
1472 You can ask GDB-related questions on the GDB users mailing list\n\
1473 (gdb@sourceware.org) or on GDB's IRC channel (#gdb on Freenode).\n"));