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