Handle pending stops from the Windows kernel
[deliverable/binutils-gdb.git] / gdb / main.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20 #include "defs.h"
21 #include "top.h"
22 #include "target.h"
23 #include "inferior.h"
24 #include "symfile.h"
25 #include "gdbcore.h"
26 #include "getopt.h"
27
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <ctype.h>
31 #include "event-loop.h"
32 #include "ui-out.h"
33
34 #include "interps.h"
35 #include "main.h"
36 #include "source.h"
37 #include "cli/cli-cmds.h"
38 #include "objfiles.h"
39 #include "auto-load.h"
40 #include "maint.h"
41
42 #include "filenames.h"
43 #include "gdbsupport/filestuff.h"
44 #include <signal.h>
45 #include "event-top.h"
46 #include "infrun.h"
47 #include "gdbsupport/signals-state-save-restore.h"
48 #include <algorithm>
49 #include <vector>
50 #include "gdbsupport/pathstuff.h"
51 #include "cli/cli-style.h"
52 #ifdef GDBTK
53 #include "gdbtk/generic/gdbtk.h"
54 #endif
55 #include "gdbsupport/alt-stack.h"
56
57 /* The selected interpreter. This will be used as a set command
58 variable, so it should always be malloc'ed - since
59 do_setshow_command will free it. */
60 char *interpreter_p;
61
62 /* Whether dbx commands will be handled. */
63 int dbx_commands = 0;
64
65 /* System root path, used to find libraries etc. */
66 char *gdb_sysroot = 0;
67
68 /* GDB datadir, used to store data files. */
69 std::string gdb_datadir;
70
71 /* Non-zero if GDB_DATADIR was provided on the command line.
72 This doesn't track whether data-directory is set later from the
73 command line, but we don't reread system.gdbinit when that happens. */
74 static int gdb_datadir_provided = 0;
75
76 /* If gdb was configured with --with-python=/path,
77 the possibly relocated path to python's lib directory. */
78 std::string python_libdir;
79
80 /* Target IO streams. */
81 struct ui_file *gdb_stdtargin;
82 struct ui_file *gdb_stdtarg;
83 struct ui_file *gdb_stdtargerr;
84
85 /* True if --batch or --batch-silent was seen. */
86 int batch_flag = 0;
87
88 /* Support for the --batch-silent option. */
89 int batch_silent = 0;
90
91 /* Support for --return-child-result option.
92 Set the default to -1 to return error in the case
93 that the program does not run or does not complete. */
94 int return_child_result = 0;
95 int return_child_result_value = -1;
96
97
98 /* GDB as it has been invoked from the command line (i.e. argv[0]). */
99 static char *gdb_program_name;
100
101 /* Return read only pointer to GDB_PROGRAM_NAME. */
102 const char *
103 get_gdb_program_name (void)
104 {
105 return gdb_program_name;
106 }
107
108 static void print_gdb_help (struct ui_file *);
109
110 /* Set the data-directory parameter to NEW_DATADIR.
111 If NEW_DATADIR is not a directory then a warning is printed.
112 We don't signal an error for backward compatibility. */
113
114 void
115 set_gdb_data_directory (const char *new_datadir)
116 {
117 struct stat st;
118
119 if (stat (new_datadir, &st) < 0)
120 {
121 int save_errno = errno;
122
123 fprintf_unfiltered (gdb_stderr, "Warning: ");
124 print_sys_errmsg (new_datadir, save_errno);
125 }
126 else if (!S_ISDIR (st.st_mode))
127 warning (_("%ps is not a directory."),
128 styled_string (file_name_style.style (), new_datadir));
129
130 gdb_datadir = gdb_realpath (new_datadir).get ();
131
132 /* gdb_realpath won't return an absolute path if the path doesn't exist,
133 but we still want to record an absolute path here. If the user entered
134 "../foo" and "../foo" doesn't exist then we'll record $(pwd)/../foo which
135 isn't canonical, but that's ok. */
136 if (!IS_ABSOLUTE_PATH (gdb_datadir.c_str ()))
137 {
138 gdb::unique_xmalloc_ptr<char> abs_datadir
139 = gdb_abspath (gdb_datadir.c_str ());
140
141 gdb_datadir = abs_datadir.get ();
142 }
143 }
144
145 /* Relocate a file or directory. PROGNAME is the name by which gdb
146 was invoked (i.e., argv[0]). INITIAL is the default value for the
147 file or directory. RELOCATABLE is true if the value is relocatable,
148 false otherwise. This may return an empty string under the same
149 conditions as make_relative_prefix returning NULL. */
150
151 static std::string
152 relocate_path (const char *progname, const char *initial, bool relocatable)
153 {
154 if (relocatable)
155 {
156 gdb::unique_xmalloc_ptr<char> str (make_relative_prefix (progname,
157 BINDIR,
158 initial));
159 if (str != nullptr)
160 return str.get ();
161 return std::string ();
162 }
163 return initial;
164 }
165
166 /* Like relocate_path, but specifically checks for a directory.
167 INITIAL is relocated according to the rules of relocate_path. If
168 the result is a directory, it is used; otherwise, INITIAL is used.
169 The chosen directory is then canonicalized using lrealpath. */
170
171 std::string
172 relocate_gdb_directory (const char *initial, bool relocatable)
173 {
174 std::string dir = relocate_path (gdb_program_name, initial, relocatable);
175 if (!dir.empty ())
176 {
177 struct stat s;
178
179 if (stat (dir.c_str (), &s) != 0 || !S_ISDIR (s.st_mode))
180 {
181 dir.clear ();
182 }
183 }
184 if (dir.empty ())
185 dir = initial;
186
187 /* Canonicalize the directory. */
188 if (!dir.empty ())
189 {
190 gdb::unique_xmalloc_ptr<char> canon_sysroot (lrealpath (dir.c_str ()));
191
192 if (canon_sysroot)
193 dir = canon_sysroot.get ();
194 }
195
196 return dir;
197 }
198
199 /* Given a gdbinit path in FILE, adjusts it according to the gdb_datadir
200 parameter if it is in the data dir, or passes it through relocate_path
201 otherwise. */
202
203 static std::string
204 relocate_gdbinit_path_maybe_in_datadir (const std::string &file,
205 bool relocatable)
206 {
207 size_t datadir_len = strlen (GDB_DATADIR);
208
209 std::string relocated_path;
210
211 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
212 has been provided, search for SYSTEM_GDBINIT there. */
213 if (gdb_datadir_provided
214 && datadir_len < file.length ()
215 && filename_ncmp (file.c_str (), GDB_DATADIR, datadir_len) == 0
216 && IS_DIR_SEPARATOR (file[datadir_len]))
217 {
218 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
219 to gdb_datadir. */
220
221 size_t start = datadir_len;
222 for (; IS_DIR_SEPARATOR (file[start]); ++start)
223 ;
224 relocated_path = gdb_datadir + SLASH_STRING + file.substr (start);
225 }
226 else
227 {
228 relocated_path = relocate_path (gdb_program_name, file.c_str (),
229 relocatable);
230 }
231 return relocated_path;
232 }
233
234 /* Compute the locations of init files that GDB should source and
235 return them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. If
236 there is no system gdbinit (resp. home gdbinit and local gdbinit)
237 to be loaded, then SYSTEM_GDBINIT (resp. HOME_GDBINIT and
238 LOCAL_GDBINIT) is set to the empty string. */
239 static void
240 get_init_files (std::vector<std::string> *system_gdbinit,
241 std::string *home_gdbinit,
242 std::string *local_gdbinit)
243 {
244 static std::vector<std::string> sysgdbinit;
245 static std::string homeinit;
246 static std::string localinit;
247 static int initialized = 0;
248
249 if (!initialized)
250 {
251 struct stat homebuf, cwdbuf, s;
252
253 if (SYSTEM_GDBINIT[0])
254 {
255 std::string relocated_sysgdbinit
256 = relocate_gdbinit_path_maybe_in_datadir
257 (SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE);
258 if (!relocated_sysgdbinit.empty ()
259 && stat (relocated_sysgdbinit.c_str (), &s) == 0)
260 sysgdbinit.push_back (relocated_sysgdbinit);
261 }
262 if (SYSTEM_GDBINIT_DIR[0])
263 {
264 std::string relocated_gdbinit_dir
265 = relocate_gdbinit_path_maybe_in_datadir
266 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_DIR_RELOCATABLE);
267 if (!relocated_gdbinit_dir.empty ()) {
268 gdb_dir_up dir (opendir (relocated_gdbinit_dir.c_str ()));
269 if (dir != nullptr)
270 {
271 std::vector<std::string> files;
272 for (;;)
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;
280 /* ent->d_type is not available on all systems (e.g. mingw,
281 Solaris), so we have to call stat(). */
282 std::string filename
283 = relocated_gdbinit_dir + SLASH_STRING + name;
284 if (stat (filename.c_str (), &s) != 0
285 || !S_ISREG (s.st_mode))
286 continue;
287 const struct extension_language_defn *extlang
288 = get_ext_lang_of_file (filename.c_str ());
289 /* We effectively don't support "set script-extension
290 off/soft", because we are loading system init files here,
291 so it does not really make sense to depend on a
292 setting. */
293 if (extlang != nullptr && ext_lang_present_p (extlang))
294 files.push_back (std::move (filename));
295 }
296 std::sort (files.begin (), files.end ());
297 sysgdbinit.insert (sysgdbinit.end (),
298 files.begin (), files.end ());
299 }
300 }
301 }
302
303 const char *homedir = getenv ("HOME");
304
305 /* If the .gdbinit file in the current directory is the same as
306 the $HOME/.gdbinit file, it should not be sourced. homebuf
307 and cwdbuf are used in that purpose. Make sure that the stats
308 are zero in case one of them fails (this guarantees that they
309 won't match if either exists). */
310
311 memset (&homebuf, 0, sizeof (struct stat));
312 memset (&cwdbuf, 0, sizeof (struct stat));
313
314 if (homedir)
315 {
316 homeinit = std::string (homedir) + SLASH_STRING + GDBINIT;
317 if (stat (homeinit.c_str (), &homebuf) != 0)
318 {
319 homeinit = "";
320 }
321 }
322
323 if (stat (GDBINIT, &cwdbuf) == 0)
324 {
325 if (homeinit.empty ()
326 || memcmp ((char *) &homebuf, (char *) &cwdbuf,
327 sizeof (struct stat)))
328 localinit = GDBINIT;
329 }
330
331 initialized = 1;
332 }
333
334 *system_gdbinit = sysgdbinit;
335 *home_gdbinit = homeinit;
336 *local_gdbinit = localinit;
337 }
338
339 /* Call command_loop. */
340
341 /* Prevent inlining this function for the benefit of GDB's selftests
342 in the testsuite. Those tests want to run GDB under GDB and stop
343 here. */
344 static void captured_command_loop () __attribute__((noinline));
345
346 static void
347 captured_command_loop ()
348 {
349 struct ui *ui = current_ui;
350
351 /* Top-level execution commands can be run in the background from
352 here on. */
353 current_ui->async = 1;
354
355 /* Give the interpreter a chance to print a prompt, if necessary */
356 if (ui->prompt_state != PROMPT_BLOCKED)
357 interp_pre_command_loop (top_level_interpreter ());
358
359 /* Now it's time to start the event loop. */
360 start_event_loop ();
361
362 /* If the command_loop returned, normally (rather than threw an
363 error) we try to quit. If the quit is aborted, our caller
364 catches the signal and restarts the command loop. */
365 quit_command (NULL, ui->instream == ui->stdin_stream);
366 }
367
368 /* Handle command errors thrown from within catch_command_errors. */
369
370 static int
371 handle_command_errors (const struct gdb_exception &e)
372 {
373 if (e.reason < 0)
374 {
375 exception_print (gdb_stderr, e);
376
377 /* If any exception escaped to here, we better enable stdin.
378 Otherwise, any command that calls async_disable_stdin, and
379 then throws, will leave stdin inoperable. */
380 async_enable_stdin ();
381 return 0;
382 }
383 return 1;
384 }
385
386 /* Type of the command callback passed to the const
387 catch_command_errors. */
388
389 typedef void (catch_command_errors_const_ftype) (const char *, int);
390
391 /* Wrap calls to commands run before the event loop is started. */
392
393 static int
394 catch_command_errors (catch_command_errors_const_ftype command,
395 const char *arg, int from_tty)
396 {
397 try
398 {
399 int was_sync = current_ui->prompt_state == PROMPT_BLOCKED;
400
401 command (arg, from_tty);
402
403 maybe_wait_sync_command_done (was_sync);
404 }
405 catch (const gdb_exception &e)
406 {
407 return handle_command_errors (e);
408 }
409
410 return 1;
411 }
412
413 /* Adapter for symbol_file_add_main that translates 'from_tty' to a
414 symfile_add_flags. */
415
416 static void
417 symbol_file_add_main_adapter (const char *arg, int from_tty)
418 {
419 symfile_add_flags add_flags = 0;
420
421 if (from_tty)
422 add_flags |= SYMFILE_VERBOSE;
423
424 symbol_file_add_main (arg, add_flags);
425 }
426
427 /* Perform validation of the '--readnow' and '--readnever' flags. */
428
429 static void
430 validate_readnow_readnever ()
431 {
432 if (readnever_symbol_files && readnow_symbol_files)
433 {
434 error (_("%s: '--readnow' and '--readnever' cannot be "
435 "specified simultaneously"),
436 gdb_program_name);
437 }
438 }
439
440 /* Type of this option. */
441 enum cmdarg_kind
442 {
443 /* Option type -x. */
444 CMDARG_FILE,
445
446 /* Option type -ex. */
447 CMDARG_COMMAND,
448
449 /* Option type -ix. */
450 CMDARG_INIT_FILE,
451
452 /* Option type -iex. */
453 CMDARG_INIT_COMMAND
454 };
455
456 /* Arguments of --command option and its counterpart. */
457 struct cmdarg
458 {
459 cmdarg (cmdarg_kind type_, char *string_)
460 : type (type_), string (string_)
461 {}
462
463 /* Type of this option. */
464 enum cmdarg_kind type;
465
466 /* Value of this option - filename or the GDB command itself. String memory
467 is not owned by this structure despite it is 'const'. */
468 char *string;
469 };
470
471 static void
472 captured_main_1 (struct captured_main_args *context)
473 {
474 int argc = context->argc;
475 char **argv = context->argv;
476
477 static int quiet = 0;
478 static int set_args = 0;
479 static int inhibit_home_gdbinit = 0;
480
481 /* Pointers to various arguments from command line. */
482 char *symarg = NULL;
483 char *execarg = NULL;
484 char *pidarg = NULL;
485 char *corearg = NULL;
486 char *pid_or_core_arg = NULL;
487 char *cdarg = NULL;
488 char *ttyarg = NULL;
489
490 /* These are static so that we can take their address in an
491 initializer. */
492 static int print_help;
493 static int print_version;
494 static int print_configuration;
495
496 /* Pointers to all arguments of --command option. */
497 std::vector<struct cmdarg> cmdarg_vec;
498
499 /* All arguments of --directory option. */
500 std::vector<char *> dirarg;
501
502 int i;
503 int save_auto_load;
504 int ret = 1;
505
506 #ifdef HAVE_USEFUL_SBRK
507 /* Set this before constructing scoped_command_stats. */
508 lim_at_start = (char *) sbrk (0);
509 #endif
510
511 scoped_command_stats stat_reporter (false);
512
513 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
514 setlocale (LC_MESSAGES, "");
515 #endif
516 #if defined (HAVE_SETLOCALE)
517 setlocale (LC_CTYPE, "");
518 #endif
519 #ifdef ENABLE_NLS
520 bindtextdomain (PACKAGE, LOCALEDIR);
521 textdomain (PACKAGE);
522 #endif
523
524 notice_open_fds ();
525
526 #ifdef __MINGW32__
527 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
528 as a Windows pipe, and Windows buffers on pipes. */
529 setvbuf (stderr, NULL, _IONBF, BUFSIZ);
530 #endif
531
532 /* Note: `error' cannot be called before this point, because the
533 caller will crash when trying to print the exception. */
534 main_ui = new ui (stdin, stdout, stderr);
535 current_ui = main_ui;
536
537 gdb_stdtargerr = gdb_stderr; /* for moment */
538 gdb_stdtargin = gdb_stdin; /* for moment */
539
540 if (bfd_init () != BFD_INIT_MAGIC)
541 error (_("fatal error: libbfd ABI mismatch"));
542
543 #ifdef __MINGW32__
544 /* On Windows, argv[0] is not necessarily set to absolute form when
545 GDB is found along PATH, without which relocation doesn't work. */
546 gdb_program_name = windows_get_absolute_argv0 (argv[0]);
547 #else
548 gdb_program_name = xstrdup (argv[0]);
549 #endif
550
551 /* Prefix warning messages with the command name. */
552 gdb::unique_xmalloc_ptr<char> tmp_warn_preprint
553 (xstrprintf ("%s: warning: ", gdb_program_name));
554 warning_pre_print = tmp_warn_preprint.get ();
555
556 current_directory = getcwd (NULL, 0);
557 if (current_directory == NULL)
558 perror_warning_with_name (_("error finding working directory"));
559
560 /* Set the sysroot path. */
561 gdb_sysroot
562 = xstrdup (relocate_gdb_directory (TARGET_SYSTEM_ROOT,
563 TARGET_SYSTEM_ROOT_RELOCATABLE).c_str ());
564
565 if (*gdb_sysroot == '\0')
566 {
567 xfree (gdb_sysroot);
568 gdb_sysroot = xstrdup (TARGET_SYSROOT_PREFIX);
569 }
570
571 debug_file_directory
572 = xstrdup (relocate_gdb_directory (DEBUGDIR,
573 DEBUGDIR_RELOCATABLE).c_str ());
574
575 gdb_datadir = relocate_gdb_directory (GDB_DATADIR,
576 GDB_DATADIR_RELOCATABLE);
577
578 #ifdef WITH_PYTHON_LIBDIR
579 python_libdir = relocate_gdb_directory (WITH_PYTHON_LIBDIR,
580 PYTHON_LIBDIR_RELOCATABLE);
581 #endif
582
583 #ifdef RELOC_SRCDIR
584 add_substitute_path_rule (RELOC_SRCDIR,
585 make_relative_prefix (gdb_program_name, BINDIR,
586 RELOC_SRCDIR));
587 #endif
588
589 /* There will always be an interpreter. Either the one passed into
590 this captured main, or one specified by the user at start up, or
591 the console. Initialize the interpreter to the one requested by
592 the application. */
593 interpreter_p = xstrdup (context->interpreter_p);
594
595 /* Parse arguments and options. */
596 {
597 int c;
598 /* When var field is 0, use flag field to record the equivalent
599 short option (or arbitrary numbers starting at 10 for those
600 with no equivalent). */
601 enum {
602 OPT_SE = 10,
603 OPT_CD,
604 OPT_ANNOTATE,
605 OPT_STATISTICS,
606 OPT_TUI,
607 OPT_NOWINDOWS,
608 OPT_WINDOWS,
609 OPT_IX,
610 OPT_IEX,
611 OPT_READNOW,
612 OPT_READNEVER
613 };
614 /* This struct requires int* in the struct, but write_files is a bool.
615 So use this temporary int that we write back after argument parsing. */
616 int write_files_1 = 0;
617 static struct option long_options[] =
618 {
619 {"tui", no_argument, 0, OPT_TUI},
620 {"dbx", no_argument, &dbx_commands, 1},
621 {"readnow", no_argument, NULL, OPT_READNOW},
622 {"readnever", no_argument, NULL, OPT_READNEVER},
623 {"r", no_argument, NULL, OPT_READNOW},
624 {"quiet", no_argument, &quiet, 1},
625 {"q", no_argument, &quiet, 1},
626 {"silent", no_argument, &quiet, 1},
627 {"nh", no_argument, &inhibit_home_gdbinit, 1},
628 {"nx", no_argument, &inhibit_gdbinit, 1},
629 {"n", no_argument, &inhibit_gdbinit, 1},
630 {"batch-silent", no_argument, 0, 'B'},
631 {"batch", no_argument, &batch_flag, 1},
632
633 /* This is a synonym for "--annotate=1". --annotate is now
634 preferred, but keep this here for a long time because people
635 will be running emacses which use --fullname. */
636 {"fullname", no_argument, 0, 'f'},
637 {"f", no_argument, 0, 'f'},
638
639 {"annotate", required_argument, 0, OPT_ANNOTATE},
640 {"help", no_argument, &print_help, 1},
641 {"se", required_argument, 0, OPT_SE},
642 {"symbols", required_argument, 0, 's'},
643 {"s", required_argument, 0, 's'},
644 {"exec", required_argument, 0, 'e'},
645 {"e", required_argument, 0, 'e'},
646 {"core", required_argument, 0, 'c'},
647 {"c", required_argument, 0, 'c'},
648 {"pid", required_argument, 0, 'p'},
649 {"p", required_argument, 0, 'p'},
650 {"command", required_argument, 0, 'x'},
651 {"eval-command", required_argument, 0, 'X'},
652 {"version", no_argument, &print_version, 1},
653 {"configuration", no_argument, &print_configuration, 1},
654 {"x", required_argument, 0, 'x'},
655 {"ex", required_argument, 0, 'X'},
656 {"init-command", required_argument, 0, OPT_IX},
657 {"init-eval-command", required_argument, 0, OPT_IEX},
658 {"ix", required_argument, 0, OPT_IX},
659 {"iex", required_argument, 0, OPT_IEX},
660 #ifdef GDBTK
661 {"tclcommand", required_argument, 0, 'z'},
662 {"enable-external-editor", no_argument, 0, 'y'},
663 {"editor-command", required_argument, 0, 'w'},
664 #endif
665 {"ui", required_argument, 0, 'i'},
666 {"interpreter", required_argument, 0, 'i'},
667 {"i", required_argument, 0, 'i'},
668 {"directory", required_argument, 0, 'd'},
669 {"d", required_argument, 0, 'd'},
670 {"data-directory", required_argument, 0, 'D'},
671 {"D", required_argument, 0, 'D'},
672 {"cd", required_argument, 0, OPT_CD},
673 {"tty", required_argument, 0, 't'},
674 {"baud", required_argument, 0, 'b'},
675 {"b", required_argument, 0, 'b'},
676 {"nw", no_argument, NULL, OPT_NOWINDOWS},
677 {"nowindows", no_argument, NULL, OPT_NOWINDOWS},
678 {"w", no_argument, NULL, OPT_WINDOWS},
679 {"windows", no_argument, NULL, OPT_WINDOWS},
680 {"statistics", no_argument, 0, OPT_STATISTICS},
681 {"write", no_argument, &write_files_1, 1},
682 {"args", no_argument, &set_args, 1},
683 {"l", required_argument, 0, 'l'},
684 {"return-child-result", no_argument, &return_child_result, 1},
685 {0, no_argument, 0, 0}
686 };
687
688 while (1)
689 {
690 int option_index;
691
692 c = getopt_long_only (argc, argv, "",
693 long_options, &option_index);
694 if (c == EOF || set_args)
695 break;
696
697 /* Long option that takes an argument. */
698 if (c == 0 && long_options[option_index].flag == 0)
699 c = long_options[option_index].val;
700
701 switch (c)
702 {
703 case 0:
704 /* Long option that just sets a flag. */
705 break;
706 case OPT_SE:
707 symarg = optarg;
708 execarg = optarg;
709 break;
710 case OPT_CD:
711 cdarg = optarg;
712 break;
713 case OPT_ANNOTATE:
714 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
715 annotation_level = atoi (optarg);
716 break;
717 case OPT_STATISTICS:
718 /* Enable the display of both time and space usage. */
719 set_per_command_time (1);
720 set_per_command_space (1);
721 break;
722 case OPT_TUI:
723 /* --tui is equivalent to -i=tui. */
724 #ifdef TUI
725 xfree (interpreter_p);
726 interpreter_p = xstrdup (INTERP_TUI);
727 #else
728 error (_("%s: TUI mode is not supported"), gdb_program_name);
729 #endif
730 break;
731 case OPT_WINDOWS:
732 /* FIXME: cagney/2003-03-01: Not sure if this option is
733 actually useful, and if it is, what it should do. */
734 #ifdef GDBTK
735 /* --windows is equivalent to -i=insight. */
736 xfree (interpreter_p);
737 interpreter_p = xstrdup (INTERP_INSIGHT);
738 #endif
739 break;
740 case OPT_NOWINDOWS:
741 /* -nw is equivalent to -i=console. */
742 xfree (interpreter_p);
743 interpreter_p = xstrdup (INTERP_CONSOLE);
744 break;
745 case 'f':
746 annotation_level = 1;
747 break;
748 case 's':
749 symarg = optarg;
750 break;
751 case 'e':
752 execarg = optarg;
753 break;
754 case 'c':
755 corearg = optarg;
756 break;
757 case 'p':
758 pidarg = optarg;
759 break;
760 case 'x':
761 cmdarg_vec.emplace_back (CMDARG_FILE, optarg);
762 break;
763 case 'X':
764 cmdarg_vec.emplace_back (CMDARG_COMMAND, optarg);
765 break;
766 case OPT_IX:
767 cmdarg_vec.emplace_back (CMDARG_INIT_FILE, optarg);
768 break;
769 case OPT_IEX:
770 cmdarg_vec.emplace_back (CMDARG_INIT_COMMAND, optarg);
771 break;
772 case 'B':
773 batch_flag = batch_silent = 1;
774 gdb_stdout = new null_file ();
775 break;
776 case 'D':
777 if (optarg[0] == '\0')
778 error (_("%s: empty path for `--data-directory'"),
779 gdb_program_name);
780 set_gdb_data_directory (optarg);
781 gdb_datadir_provided = 1;
782 break;
783 #ifdef GDBTK
784 case 'z':
785 {
786 if (!gdbtk_test (optarg))
787 error (_("%s: unable to load tclcommand file \"%s\""),
788 gdb_program_name, optarg);
789 break;
790 }
791 case 'y':
792 /* Backwards compatibility only. */
793 break;
794 case 'w':
795 {
796 /* Set the external editor commands when gdb is farming out files
797 to be edited by another program. */
798 external_editor_command = xstrdup (optarg);
799 break;
800 }
801 #endif /* GDBTK */
802 case 'i':
803 xfree (interpreter_p);
804 interpreter_p = xstrdup (optarg);
805 break;
806 case 'd':
807 dirarg.push_back (optarg);
808 break;
809 case 't':
810 ttyarg = optarg;
811 break;
812 case 'q':
813 quiet = 1;
814 break;
815 case 'b':
816 {
817 int rate;
818 char *p;
819
820 rate = strtol (optarg, &p, 0);
821 if (rate == 0 && p == optarg)
822 warning (_("could not set baud rate to `%s'."),
823 optarg);
824 else
825 baud_rate = rate;
826 }
827 break;
828 case 'l':
829 {
830 int timeout;
831 char *p;
832
833 timeout = strtol (optarg, &p, 0);
834 if (timeout == 0 && p == optarg)
835 warning (_("could not set timeout limit to `%s'."),
836 optarg);
837 else
838 remote_timeout = timeout;
839 }
840 break;
841
842 case OPT_READNOW:
843 {
844 readnow_symbol_files = 1;
845 validate_readnow_readnever ();
846 }
847 break;
848
849 case OPT_READNEVER:
850 {
851 readnever_symbol_files = 1;
852 validate_readnow_readnever ();
853 }
854 break;
855
856 case '?':
857 error (_("Use `%s --help' for a complete list of options."),
858 gdb_program_name);
859 }
860 }
861 write_files = (write_files_1 != 0);
862
863 if (batch_flag)
864 {
865 quiet = 1;
866
867 /* Disable all output styling when running in batch mode. */
868 cli_styling = 0;
869 }
870 }
871
872 save_original_signals_state (quiet);
873
874 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
875 gdb::alternate_signal_stack signal_stack;
876
877 /* Initialize all files. */
878 gdb_init (gdb_program_name);
879
880 /* Now that gdb_init has created the initial inferior, we're in
881 position to set args for that inferior. */
882 if (set_args)
883 {
884 /* The remaining options are the command-line options for the
885 inferior. The first one is the sym/exec file, and the rest
886 are arguments. */
887 if (optind >= argc)
888 error (_("%s: `--args' specified but no program specified"),
889 gdb_program_name);
890
891 symarg = argv[optind];
892 execarg = argv[optind];
893 ++optind;
894 set_inferior_args_vector (argc - optind, &argv[optind]);
895 }
896 else
897 {
898 /* OK, that's all the options. */
899
900 /* The first argument, if specified, is the name of the
901 executable. */
902 if (optind < argc)
903 {
904 symarg = argv[optind];
905 execarg = argv[optind];
906 optind++;
907 }
908
909 /* If the user hasn't already specified a PID or the name of a
910 core file, then a second optional argument is allowed. If
911 present, this argument should be interpreted as either a
912 PID or a core file, whichever works. */
913 if (pidarg == NULL && corearg == NULL && optind < argc)
914 {
915 pid_or_core_arg = argv[optind];
916 optind++;
917 }
918
919 /* Any argument left on the command line is unexpected and
920 will be ignored. Inform the user. */
921 if (optind < argc)
922 fprintf_unfiltered (gdb_stderr,
923 _("Excess command line "
924 "arguments ignored. (%s%s)\n"),
925 argv[optind],
926 (optind == argc - 1) ? "" : " ...");
927 }
928
929 /* Lookup gdbinit files. Note that the gdbinit file name may be
930 overridden during file initialization, so get_init_files should be
931 called after gdb_init. */
932 std::vector<std::string> system_gdbinit;
933 std::string home_gdbinit;
934 std::string local_gdbinit;
935 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
936
937 /* Do these (and anything which might call wrap_here or *_filtered)
938 after initialize_all_files() but before the interpreter has been
939 installed. Otherwize the help/version messages will be eaten by
940 the interpreter's output handler. */
941
942 if (print_version)
943 {
944 print_gdb_version (gdb_stdout, false);
945 wrap_here ("");
946 printf_filtered ("\n");
947 exit (0);
948 }
949
950 if (print_help)
951 {
952 print_gdb_help (gdb_stdout);
953 fputs_unfiltered ("\n", gdb_stdout);
954 exit (0);
955 }
956
957 if (print_configuration)
958 {
959 print_gdb_configuration (gdb_stdout);
960 wrap_here ("");
961 printf_filtered ("\n");
962 exit (0);
963 }
964
965 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
966 GDB retain the old MI1 interpreter startup behavior. Output the
967 copyright message before the interpreter is installed. That way
968 it isn't encapsulated in MI output. */
969 if (!quiet && strcmp (interpreter_p, INTERP_MI1) == 0)
970 {
971 /* Print all the junk at the top, with trailing "..." if we are
972 about to read a symbol file (possibly slowly). */
973 print_gdb_version (gdb_stdout, true);
974 if (symarg)
975 printf_filtered ("..");
976 wrap_here ("");
977 printf_filtered ("\n");
978 gdb_flush (gdb_stdout); /* Force to screen during slow
979 operations. */
980 }
981
982 /* Install the default UI. All the interpreters should have had a
983 look at things by now. Initialize the default interpreter. */
984 set_top_level_interpreter (interpreter_p);
985
986 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
987 GDB retain the old MI1 interpreter startup behavior. Output the
988 copyright message after the interpreter is installed when it is
989 any sane interpreter. */
990 if (!quiet && !current_interp_named_p (INTERP_MI1))
991 {
992 /* Print all the junk at the top, with trailing "..." if we are
993 about to read a symbol file (possibly slowly). */
994 print_gdb_version (gdb_stdout, true);
995 if (symarg)
996 printf_filtered ("..");
997 wrap_here ("");
998 printf_filtered ("\n");
999 gdb_flush (gdb_stdout); /* Force to screen during slow
1000 operations. */
1001 }
1002
1003 /* Set off error and warning messages with a blank line. */
1004 tmp_warn_preprint.reset ();
1005 warning_pre_print = _("\nwarning: ");
1006
1007 /* Read and execute the system-wide gdbinit file, if it exists.
1008 This is done *before* all the command line arguments are
1009 processed; it sets global parameters, which are independent of
1010 what file you are debugging or what directory you are in. */
1011 if (!system_gdbinit.empty () && !inhibit_gdbinit)
1012 {
1013 for (const std::string &file : system_gdbinit)
1014 ret = catch_command_errors (source_script, file.c_str (), 0);
1015 }
1016
1017 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1018 *before* all the command line arguments are processed; it sets
1019 global parameters, which are independent of what file you are
1020 debugging or what directory you are in. */
1021
1022 if (!home_gdbinit.empty () && !inhibit_gdbinit && !inhibit_home_gdbinit)
1023 ret = catch_command_errors (source_script, home_gdbinit.c_str (), 0);
1024
1025 /* Process '-ix' and '-iex' options early. */
1026 for (i = 0; i < cmdarg_vec.size (); i++)
1027 {
1028 const struct cmdarg &cmdarg_p = cmdarg_vec[i];
1029
1030 switch (cmdarg_p.type)
1031 {
1032 case CMDARG_INIT_FILE:
1033 ret = catch_command_errors (source_script, cmdarg_p.string,
1034 !batch_flag);
1035 break;
1036 case CMDARG_INIT_COMMAND:
1037 ret = catch_command_errors (execute_command, cmdarg_p.string,
1038 !batch_flag);
1039 break;
1040 }
1041 }
1042
1043 /* Now perform all the actions indicated by the arguments. */
1044 if (cdarg != NULL)
1045 {
1046 ret = catch_command_errors (cd_command, cdarg, 0);
1047 }
1048
1049 for (i = 0; i < dirarg.size (); i++)
1050 ret = catch_command_errors (directory_switch, dirarg[i], 0);
1051
1052 /* Skip auto-loading section-specified scripts until we've sourced
1053 local_gdbinit (which is often used to augment the source search
1054 path). */
1055 save_auto_load = global_auto_load;
1056 global_auto_load = 0;
1057
1058 if (execarg != NULL
1059 && symarg != NULL
1060 && strcmp (execarg, symarg) == 0)
1061 {
1062 /* The exec file and the symbol-file are the same. If we can't
1063 open it, better only print one error message.
1064 catch_command_errors returns non-zero on success! */
1065 ret = catch_command_errors (exec_file_attach, execarg,
1066 !batch_flag);
1067 if (ret != 0)
1068 ret = catch_command_errors (symbol_file_add_main_adapter,
1069 symarg, !batch_flag);
1070 }
1071 else
1072 {
1073 if (execarg != NULL)
1074 ret = catch_command_errors (exec_file_attach, execarg,
1075 !batch_flag);
1076 if (symarg != NULL)
1077 ret = catch_command_errors (symbol_file_add_main_adapter,
1078 symarg, !batch_flag);
1079 }
1080
1081 if (corearg && pidarg)
1082 error (_("Can't attach to process and specify "
1083 "a core file at the same time."));
1084
1085 if (corearg != NULL)
1086 {
1087 ret = catch_command_errors (core_file_command, corearg,
1088 !batch_flag);
1089 }
1090 else if (pidarg != NULL)
1091 {
1092 ret = catch_command_errors (attach_command, pidarg, !batch_flag);
1093 }
1094 else if (pid_or_core_arg)
1095 {
1096 /* The user specified 'gdb program pid' or gdb program core'.
1097 If pid_or_core_arg's first character is a digit, try attach
1098 first and then corefile. Otherwise try just corefile. */
1099
1100 if (isdigit (pid_or_core_arg[0]))
1101 {
1102 ret = catch_command_errors (attach_command, pid_or_core_arg,
1103 !batch_flag);
1104 if (ret == 0)
1105 ret = catch_command_errors (core_file_command,
1106 pid_or_core_arg,
1107 !batch_flag);
1108 }
1109 else
1110 {
1111 /* Can't be a pid, better be a corefile. */
1112 ret = catch_command_errors (core_file_command,
1113 pid_or_core_arg,
1114 !batch_flag);
1115 }
1116 }
1117
1118 if (ttyarg != NULL)
1119 set_inferior_io_terminal (ttyarg);
1120
1121 /* Error messages should no longer be distinguished with extra output. */
1122 warning_pre_print = _("warning: ");
1123
1124 /* Read the .gdbinit file in the current directory, *if* it isn't
1125 the same as the $HOME/.gdbinit file (it should exist, also). */
1126 if (!local_gdbinit.empty ())
1127 {
1128 auto_load_local_gdbinit_pathname
1129 = gdb_realpath (local_gdbinit.c_str ()).release ();
1130
1131 if (!inhibit_gdbinit && auto_load_local_gdbinit
1132 && file_is_auto_load_safe (local_gdbinit.c_str (),
1133 _("auto-load: Loading .gdbinit "
1134 "file \"%s\".\n"),
1135 local_gdbinit.c_str ()))
1136 {
1137 auto_load_local_gdbinit_loaded = 1;
1138
1139 ret = catch_command_errors (source_script, local_gdbinit.c_str (), 0);
1140 }
1141 }
1142
1143 /* Now that all .gdbinit's have been read and all -d options have been
1144 processed, we can read any scripts mentioned in SYMARG.
1145 We wait until now because it is common to add to the source search
1146 path in local_gdbinit. */
1147 global_auto_load = save_auto_load;
1148 for (objfile *objfile : current_program_space->objfiles ())
1149 load_auto_scripts_for_objfile (objfile);
1150
1151 /* Process '-x' and '-ex' options. */
1152 for (i = 0; i < cmdarg_vec.size (); i++)
1153 {
1154 const struct cmdarg &cmdarg_p = cmdarg_vec[i];
1155
1156 switch (cmdarg_p.type)
1157 {
1158 case CMDARG_FILE:
1159 ret = catch_command_errors (source_script, cmdarg_p.string,
1160 !batch_flag);
1161 break;
1162 case CMDARG_COMMAND:
1163 ret = catch_command_errors (execute_command, cmdarg_p.string,
1164 !batch_flag);
1165 break;
1166 }
1167 }
1168
1169 /* Read in the old history after all the command files have been
1170 read. */
1171 init_history ();
1172
1173 if (batch_flag)
1174 {
1175 int error_status = EXIT_FAILURE;
1176 int *exit_arg = ret == 0 ? &error_status : NULL;
1177
1178 /* We have hit the end of the batch file. */
1179 quit_force (exit_arg, 0);
1180 }
1181 }
1182
1183 static void
1184 captured_main (void *data)
1185 {
1186 struct captured_main_args *context = (struct captured_main_args *) data;
1187
1188 captured_main_1 (context);
1189
1190 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1191 moving this loop and the code found in captured_command_loop()
1192 into the command_loop() proper. The main thing holding back that
1193 change - SET_TOP_LEVEL() - has been eliminated. */
1194 while (1)
1195 {
1196 try
1197 {
1198 captured_command_loop ();
1199 }
1200 catch (const gdb_exception &ex)
1201 {
1202 exception_print (gdb_stderr, ex);
1203 }
1204 }
1205 /* No exit -- exit is through quit_command. */
1206 }
1207
1208 int
1209 gdb_main (struct captured_main_args *args)
1210 {
1211 try
1212 {
1213 captured_main (args);
1214 }
1215 catch (const gdb_exception &ex)
1216 {
1217 exception_print (gdb_stderr, ex);
1218 }
1219
1220 /* The only way to end up here is by an error (normal exit is
1221 handled by quit_force()), hence always return an error status. */
1222 return 1;
1223 }
1224
1225
1226 /* Don't use *_filtered for printing help. We don't want to prompt
1227 for continue no matter how small the screen or how much we're going
1228 to print. */
1229
1230 static void
1231 print_gdb_help (struct ui_file *stream)
1232 {
1233 std::vector<std::string> system_gdbinit;
1234 std::string home_gdbinit;
1235 std::string local_gdbinit;
1236
1237 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
1238
1239 /* Note: The options in the list below are only approximately sorted
1240 in the alphabetical order, so as to group closely related options
1241 together. */
1242 fputs_unfiltered (_("\
1243 This is the GNU debugger. Usage:\n\n\
1244 gdb [options] [executable-file [core-file or process-id]]\n\
1245 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1246 "), stream);
1247 fputs_unfiltered (_("\
1248 Selection of debuggee and its files:\n\n\
1249 --args Arguments after executable-file are passed to inferior\n\
1250 --core=COREFILE Analyze the core dump COREFILE.\n\
1251 --exec=EXECFILE Use EXECFILE as the executable.\n\
1252 --pid=PID Attach to running process PID.\n\
1253 --directory=DIR Search for source files in DIR.\n\
1254 --se=FILE Use FILE as symbol file and executable file.\n\
1255 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1256 --readnow Fully read symbol files on first access.\n\
1257 --readnever Do not read symbol files.\n\
1258 --write Set writing into executable and core files.\n\n\
1259 "), stream);
1260 fputs_unfiltered (_("\
1261 Initial commands and command files:\n\n\
1262 --command=FILE, -x Execute GDB commands from FILE.\n\
1263 --init-command=FILE, -ix\n\
1264 Like -x but execute commands before loading inferior.\n\
1265 --eval-command=COMMAND, -ex\n\
1266 Execute a single GDB command.\n\
1267 May be used multiple times and in conjunction\n\
1268 with --command.\n\
1269 --init-eval-command=COMMAND, -iex\n\
1270 Like -ex but before loading inferior.\n\
1271 --nh Do not read ~/.gdbinit.\n\
1272 --nx Do not read any .gdbinit files in any directory.\n\n\
1273 "), stream);
1274 fputs_unfiltered (_("\
1275 Output and user interface control:\n\n\
1276 --fullname Output information used by emacs-GDB interface.\n\
1277 --interpreter=INTERP\n\
1278 Select a specific interpreter / user interface\n\
1279 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1280 -w Use the GUI interface.\n\
1281 --nw Do not use the GUI interface.\n\
1282 "), stream);
1283 #if defined(TUI)
1284 fputs_unfiltered (_("\
1285 --tui Use a terminal user interface.\n\
1286 "), stream);
1287 #endif
1288 fputs_unfiltered (_("\
1289 --dbx DBX compatibility mode.\n\
1290 -q, --quiet, --silent\n\
1291 Do not print version number on startup.\n\n\
1292 "), stream);
1293 fputs_unfiltered (_("\
1294 Operating modes:\n\n\
1295 --batch Exit after processing options.\n\
1296 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1297 --return-child-result\n\
1298 GDB exit code will be the child's exit code.\n\
1299 --configuration Print details about GDB configuration and then exit.\n\
1300 --help Print this message and then exit.\n\
1301 --version Print version information and then exit.\n\n\
1302 Remote debugging options:\n\n\
1303 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1304 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1305 Other options:\n\n\
1306 --cd=DIR Change current directory to DIR.\n\
1307 --data-directory=DIR, -D\n\
1308 Set GDB's data-directory to DIR.\n\
1309 "), stream);
1310 fputs_unfiltered (_("\n\
1311 At startup, GDB reads the following init files and executes their commands:\n\
1312 "), stream);
1313 if (!system_gdbinit.empty ())
1314 {
1315 std::string output;
1316 for (size_t idx = 0; idx < system_gdbinit.size (); ++idx)
1317 {
1318 output += system_gdbinit[idx];
1319 if (idx < system_gdbinit.size () - 1)
1320 output += ", ";
1321 }
1322 fprintf_unfiltered (stream, _("\
1323 * system-wide init files: %s\n\
1324 "), output.c_str ());
1325 }
1326 if (!home_gdbinit.empty ())
1327 fprintf_unfiltered (stream, _("\
1328 * user-specific init file: %s\n\
1329 "), home_gdbinit.c_str ());
1330 if (!local_gdbinit.empty ())
1331 fprintf_unfiltered (stream, _("\
1332 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1333 "), local_gdbinit.c_str ());
1334 fputs_unfiltered (_("\n\
1335 For more information, type \"help\" from within GDB, or consult the\n\
1336 GDB manual (available as on-line info or a printed manual).\n\
1337 "), stream);
1338 if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
1339 fprintf_unfiltered (stream, _("\
1340 Report bugs to \"%s\".\n\
1341 "), REPORT_BUGS_TO);
1342 }
This page took 0.061526 seconds and 4 git commands to generate.