1 /* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
32 #include <sys/types.h>
36 #include "gdb_string.h"
37 #include "event-loop.h"
42 /* If nonzero, display time usage both at startup and for each command. */
46 /* If nonzero, display space usage both at startup and for each command. */
50 /* Whether this is the async version or not. The async version is
51 invoked on the command line with the -nw --async options. In this
52 version, the usual command_loop is substituted by and event loop which
53 processes UI events asynchronously. */
56 /* Has an interpreter been specified and if so, which. */
59 /* Whether this is the command line version or not */
62 /* Whether xdb commands will be handled */
65 /* Whether dbx commands will be handled */
68 struct ui_file *gdb_stdout;
69 struct ui_file *gdb_stderr;
70 struct ui_file *gdb_stdlog;
71 struct ui_file *gdb_stdtarg;
73 /* Used to initialize error() - defined in utils.c */
75 extern void error_init (void);
77 /* Whether to enable writing into executable and core files */
78 extern int write_files;
80 static void print_gdb_help (struct ui_file *);
82 /* These two are used to set the external editor commands when gdb is farming
83 out files to be edited by another program. */
85 extern char *external_editor_command;
87 /* Call command_loop. If it happens to return, pass that through as a
88 non-zero return status. */
91 captured_command_loop (void *data)
93 if (command_loop_hook == NULL)
97 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
98 would clean things up (restoring the cleanup chain) to the state
99 they were just prior to the call. Technically, this means that
100 the do_cleanups() below is redundant. Unfortunately, many FUNCs
101 are not that well behaved. do_cleanups should either be replaced
102 with a do_cleanups call (to cover the problem) or an assertion
103 check to detect bad FUNCs code. */
104 do_cleanups (ALL_CLEANUPS);
105 /* If the command_loop returned, normally (rather than threw an
106 error) we try to quit. If the quit is aborted, catch_errors()
107 which called this catch the signal and restart the command
109 quit_command (NULL, instream == stdin);
114 captured_main (void *data)
116 struct captured_main_args *context = data;
117 int argc = context->argc;
118 char **argv = context->argv;
120 static int quiet = 0;
121 static int batch = 0;
122 static int set_args = 0;
124 /* Pointers to various arguments from command line. */
126 char *execarg = NULL;
127 char *corearg = NULL;
131 /* These are static so that we can take their address in an initializer. */
132 static int print_help;
133 static int print_version;
135 /* Pointers to all arguments of --command option. */
137 /* Allocated size of cmdarg. */
139 /* Number of elements of cmdarg used. */
142 /* Indices of all arguments of --directory option. */
144 /* Allocated size. */
146 /* Number of elements used. */
149 struct stat homebuf, cwdbuf;
150 char *homedir, *homeinit;
154 long time_at_startup = get_run_time ();
156 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
157 setlocale (LC_MESSAGES, "");
159 #if defined (HAVE_SETLOCALE)
160 setlocale (LC_CTYPE, "");
162 bindtextdomain (PACKAGE, LOCALEDIR);
163 textdomain (PACKAGE);
165 START_PROGRESS (argv[0], 0);
168 /* Do all Mac-specific setup. */
172 /* This needs to happen before the first use of malloc. */
173 init_malloc ((PTR) NULL);
175 #if defined (ALIGN_STACK_ON_STARTUP)
176 i = (int) &count & 0x3;
182 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
185 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
189 line = (char *) xmalloc (linesize);
190 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
193 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
194 current_directory = gdb_dirbuf;
196 gdb_stdout = stdio_fileopen (stdout);
197 gdb_stderr = stdio_fileopen (stderr);
198 gdb_stdlog = gdb_stderr; /* for moment */
199 gdb_stdtarg = gdb_stderr; /* for moment */
201 /* initialize error() */
204 /* Parse arguments and options. */
207 /* When var field is 0, use flag field to record the equivalent
208 short option (or arbitrary numbers starting at 10 for those
209 with no equivalent). */
210 static struct option long_options[] =
212 {"async", no_argument, &event_loop_p, 1},
213 {"noasync", no_argument, &event_loop_p, 0},
215 {"tui", no_argument, &tui_version, 1},
217 {"xdb", no_argument, &xdb_commands, 1},
218 {"dbx", no_argument, &dbx_commands, 1},
219 {"readnow", no_argument, &readnow_symbol_files, 1},
220 {"r", no_argument, &readnow_symbol_files, 1},
221 {"mapped", no_argument, &mapped_symbol_files, 1},
222 {"m", no_argument, &mapped_symbol_files, 1},
223 {"quiet", no_argument, &quiet, 1},
224 {"q", no_argument, &quiet, 1},
225 {"silent", no_argument, &quiet, 1},
226 {"nx", no_argument, &inhibit_gdbinit, 1},
227 {"n", no_argument, &inhibit_gdbinit, 1},
228 {"batch", no_argument, &batch, 1},
229 {"epoch", no_argument, &epoch_interface, 1},
231 /* This is a synonym for "--annotate=1". --annotate is now preferred,
232 but keep this here for a long time because people will be running
233 emacses which use --fullname. */
234 {"fullname", no_argument, 0, 'f'},
235 {"f", no_argument, 0, 'f'},
237 {"annotate", required_argument, 0, 12},
238 {"help", no_argument, &print_help, 1},
239 {"se", required_argument, 0, 10},
240 {"symbols", required_argument, 0, 's'},
241 {"s", required_argument, 0, 's'},
242 {"exec", required_argument, 0, 'e'},
243 {"e", required_argument, 0, 'e'},
244 {"core", required_argument, 0, 'c'},
245 {"c", required_argument, 0, 'c'},
246 {"pid", required_argument, 0, 'p'},
247 {"p", required_argument, 0, 'p'},
248 {"command", required_argument, 0, 'x'},
249 {"version", no_argument, &print_version, 1},
250 {"x", required_argument, 0, 'x'},
252 {"tclcommand", required_argument, 0, 'z'},
253 {"enable-external-editor", no_argument, 0, 'y'},
254 {"editor-command", required_argument, 0, 'w'},
256 {"ui", required_argument, 0, 'i'},
257 {"interpreter", required_argument, 0, 'i'},
258 {"i", required_argument, 0, 'i'},
259 {"directory", required_argument, 0, 'd'},
260 {"d", required_argument, 0, 'd'},
261 {"cd", required_argument, 0, 11},
262 {"tty", required_argument, 0, 't'},
263 {"baud", required_argument, 0, 'b'},
264 {"b", required_argument, 0, 'b'},
265 {"nw", no_argument, &use_windows, 0},
266 {"nowindows", no_argument, &use_windows, 0},
267 {"w", no_argument, &use_windows, 1},
268 {"windows", no_argument, &use_windows, 1},
269 {"statistics", no_argument, 0, 13},
270 {"write", no_argument, &write_files, 1},
271 {"args", no_argument, &set_args, 1},
272 /* Allow machine descriptions to add more options... */
273 #ifdef ADDITIONAL_OPTIONS
276 {0, no_argument, 0, 0}
283 c = getopt_long_only (argc, argv, "",
284 long_options, &option_index);
285 if (c == EOF || set_args)
288 /* Long option that takes an argument. */
289 if (c == 0 && long_options[option_index].flag == 0)
290 c = long_options[option_index].val;
295 /* Long option that just sets a flag. */
305 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
306 annotation_level = atoi (optarg);
309 /* Enable the display of both time and space usage. */
314 annotation_level = 1;
315 /* We have probably been invoked from emacs. Disable window interface. */
328 /* "corearg" is shared by "--core" and "--pid" */
332 cmdarg[ncmd++] = optarg;
336 cmdarg = (char **) xrealloc ((char *) cmdarg,
337 cmdsize * sizeof (*cmdarg));
343 extern int gdbtk_test (char *);
344 if (!gdbtk_test (optarg))
346 fprintf_unfiltered (gdb_stderr, _("%s: unable to load tclcommand file \"%s\""),
353 /* Backwards compatibility only. */
357 external_editor_command = xstrdup (optarg);
362 interpreter_p = optarg;
365 dirarg[ndir++] = optarg;
369 dirarg = (char **) xrealloc ((char *) dirarg,
370 dirsize * sizeof (*dirarg));
384 i = strtol (optarg, &p, 0);
385 if (i == 0 && p == optarg)
387 /* Don't use *_filtered or warning() (which relies on
388 current_target) until after initialize_all_files(). */
392 _("warning: could not set baud rate to `%s'.\n"), optarg);
402 i = strtol (optarg, &p, 0);
403 if (i == 0 && p == optarg)
405 /* Don't use *_filtered or warning() (which relies on
406 current_target) until after initialize_all_files(). */
410 _("warning: could not set timeout limit to `%s'.\n"), optarg);
416 #ifdef ADDITIONAL_OPTION_CASES
417 ADDITIONAL_OPTION_CASES
420 fprintf_unfiltered (gdb_stderr,
421 _("Use `%s --help' for a complete list of options.\n"),
427 /* If --help or --version, disable window interface. */
428 if (print_help || print_version)
432 /* Disable the TUI as well. */
438 /* An explicit --tui flag overrides the default UI, which is the
446 /* The remaining options are the command-line options for the
447 inferior. The first one is the sym/exec file, and the rest
451 fprintf_unfiltered (gdb_stderr,
452 _("%s: `--args' specified but no program specified\n"),
456 symarg = argv[optind];
457 execarg = argv[optind];
459 set_inferior_args_vector (argc - optind, &argv[optind]);
463 /* OK, that's all the options. The other arguments are filenames. */
465 for (; optind < argc; optind++)
469 symarg = argv[optind];
470 execarg = argv[optind];
473 /* The documentation says this can be a "ProcID" as well.
474 We will try it as both a corefile and a pid. */
475 corearg = argv[optind];
478 fprintf_unfiltered (gdb_stderr,
479 _("Excess command line arguments ignored. (%s%s)\n"),
480 argv[optind], (optind == argc - 1) ? "" : " ...");
488 /* Initialize all files. Give the interpreter a chance to take
489 control of the console via the init_ui_hook()) */
492 /* Do these (and anything which might call wrap_here or *_filtered)
493 after initialize_all_files. */
496 print_gdb_version (gdb_stdout);
498 printf_filtered ("\n");
504 print_gdb_help (gdb_stdout);
505 fputs_unfiltered ("\n", gdb_stdout);
511 /* Print all the junk at the top, with trailing "..." if we are about
512 to read a symbol file (possibly slowly). */
513 print_gdb_version (gdb_stdout);
515 printf_filtered ("..");
517 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
520 error_pre_print = "\n\n";
521 quit_pre_print = error_pre_print;
523 /* We may get more than one warning, don't double space all of them... */
524 warning_pre_print = _("\nwarning: ");
526 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
527 *before* all the command line arguments are processed; it sets
528 global parameters, which are independent of what file you are
529 debugging or what directory you are in. */
530 homedir = getenv ("HOME");
533 homeinit = (char *) alloca (strlen (homedir) +
534 strlen (gdbinit) + 10);
535 strcpy (homeinit, homedir);
536 strcat (homeinit, "/");
537 strcat (homeinit, gdbinit);
539 if (!inhibit_gdbinit)
541 catch_command_errors (source_command, homeinit, 0, RETURN_MASK_ALL);
544 /* Do stats; no need to do them elsewhere since we'll only
545 need them if homedir is set. Make sure that they are
546 zero in case one of them fails (this guarantees that they
547 won't match if either exists). */
549 memset (&homebuf, 0, sizeof (struct stat));
550 memset (&cwdbuf, 0, sizeof (struct stat));
552 stat (homeinit, &homebuf);
553 stat (gdbinit, &cwdbuf); /* We'll only need this if
557 /* Now perform all the actions indicated by the arguments. */
560 catch_command_errors (cd_command, cdarg, 0, RETURN_MASK_ALL);
563 for (i = 0; i < ndir; i++)
564 catch_command_errors (directory_command, dirarg[i], 0, RETURN_MASK_ALL);
569 && STREQ (execarg, symarg))
571 /* The exec file and the symbol-file are the same. If we can't
572 open it, better only print one error message.
573 catch_command_errors returns non-zero on success! */
574 if (catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL))
575 catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
580 catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL);
582 catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
585 /* After the symbol file has been read, print a newline to get us
586 beyond the copyright line... But errors should still set off
587 the error message with a (single) blank line. */
589 printf_filtered ("\n");
590 error_pre_print = "\n";
591 quit_pre_print = error_pre_print;
592 warning_pre_print = _("\nwarning: ");
596 /* corearg may be either a corefile or a pid.
597 If its first character is a digit, try attach first
598 and then corefile. Otherwise try corefile first. */
600 if (isdigit (corearg[0]))
602 if (catch_command_errors (attach_command, corearg,
603 !batch, RETURN_MASK_ALL) == 0)
604 catch_command_errors (core_file_command, corearg,
605 !batch, RETURN_MASK_ALL);
607 else /* Can't be a pid, better be a corefile. */
608 catch_command_errors (core_file_command, corearg,
609 !batch, RETURN_MASK_ALL);
613 catch_command_errors (tty_command, ttyarg, !batch, RETURN_MASK_ALL);
615 #ifdef ADDITIONAL_OPTION_HANDLER
616 ADDITIONAL_OPTION_HANDLER;
619 /* Error messages should no longer be distinguished with extra output. */
620 error_pre_print = NULL;
621 quit_pre_print = NULL;
622 warning_pre_print = _("warning: ");
624 /* Read the .gdbinit file in the current directory, *if* it isn't
625 the same as the $HOME/.gdbinit file (it should exist, also). */
628 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
629 if (!inhibit_gdbinit)
631 catch_command_errors (source_command, gdbinit, 0, RETURN_MASK_ALL);
634 for (i = 0; i < ncmd; i++)
637 /* NOTE: cagney/1999-11-03: SET_TOP_LEVEL() was a macro that
638 expanded into a call to setjmp(). */
639 if (!SET_TOP_LEVEL ()) /* NB: This is #if 0'd out */
641 /* NOTE: I am commenting this out, because it is not clear
642 where this feature is used. It is very old and
643 undocumented. ezannoni: 1999-05-04 */
645 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
646 read_command_file (stdin);
649 source_command (cmdarg[i], !batch);
650 do_cleanups (ALL_CLEANUPS);
653 catch_command_errors (source_command, cmdarg[i], !batch, RETURN_MASK_ALL);
657 /* Read in the old history after all the command files have been read. */
662 /* We have hit the end of the batch file. */
666 /* Do any host- or target-specific hacks. This is used for i960 targets
667 to force the user to set a nindy target and spec its parameters. */
669 #ifdef BEFORE_MAIN_LOOP_HOOK
670 BEFORE_MAIN_LOOP_HOOK;
673 END_PROGRESS (argv[0]);
675 /* Show time and/or space usage. */
679 long init_time = get_run_time () - time_at_startup;
681 printf_unfiltered (_("Startup time: %ld.%06ld\n"),
682 init_time / 1000000, init_time % 1000000);
688 extern char **environ;
689 char *lim = (char *) sbrk (0);
691 printf_unfiltered (_("Startup size: data size %ld\n"),
692 (long) (lim - (char *) &environ));
697 /* FIXME: cagney/1999-11-06: The original main loop was like: */
700 if (!SET_TOP_LEVEL ())
702 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
703 /* GUIs generally have their own command loop, mainloop, or whatever.
704 This is a good place to gain control because many error
705 conditions will end up here via longjmp(). */
706 if (command_loop_hook)
707 command_loop_hook ();
710 quit_command ((char *) 0, instream == stdin);
713 /* NOTE: If the command_loop() returned normally, the loop would
714 attempt to exit by calling the function quit_command(). That
715 function would either call exit() or throw an error returning
716 control to SET_TOP_LEVEL. */
717 /* NOTE: The function do_cleanups() was called once each time round
718 the loop. The usefulness of the call isn't clear. If an error
719 was thrown, everything would have already been cleaned up. If
720 command_loop() returned normally and quit_command() was called,
721 either exit() or error() (again cleaning up) would be called. */
723 /* NOTE: cagney/1999-11-07: There is probably no reason for not
724 moving this loop and the code found in captured_command_loop()
725 into the command_loop() proper. The main thing holding back that
726 change - SET_TOP_LEVEL() - has been eliminated. */
729 catch_errors (captured_command_loop, 0, "", RETURN_MASK_ALL);
731 /* No exit -- exit is through quit_command. */
735 gdb_main (struct captured_main_args *args)
737 use_windows = args->use_windows;
738 catch_errors (captured_main, args, "", RETURN_MASK_ALL);
743 /* Don't use *_filtered for printing help. We don't want to prompt
744 for continue no matter how small the screen or how much we're going
748 print_gdb_help (struct ui_file *stream)
750 fputs_unfiltered (_("\
751 This is the GNU debugger. Usage:\n\n\
752 gdb [options] [executable-file [core-file or process-id]]\n\
753 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
756 fputs_unfiltered (_("\
757 --args Arguments after executable-file are passed to inferior\n\
759 fputs_unfiltered (_("\
760 --[no]async Enable (disable) asynchronous version of CLI\n\
762 fputs_unfiltered (_("\
763 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
764 --batch Exit after processing options.\n\
765 --cd=DIR Change current directory to DIR.\n\
766 --command=FILE Execute GDB commands from FILE.\n\
767 --core=COREFILE Analyze the core dump COREFILE.\n\
768 --pid=PID Attach to running process PID.\n\
770 fputs_unfiltered (_("\
771 --dbx DBX compatibility mode.\n\
772 --directory=DIR Search for source files in DIR.\n\
773 --epoch Output information used by epoch emacs-GDB interface.\n\
774 --exec=EXECFILE Use EXECFILE as the executable.\n\
775 --fullname Output information used by emacs-GDB interface.\n\
776 --help Print this message.\n\
778 fputs_unfiltered (_("\
779 --interpreter=INTERP\n\
780 Select a specific interpreter / user interface\n\
782 fputs_unfiltered (_("\
783 --mapped Use mapped symbol files if supported on this system.\n\
784 --nw Do not use a window interface.\n\
785 --nx Do not read "), stream);
786 fputs_unfiltered (gdbinit, stream);
787 fputs_unfiltered (_(" file.\n\
788 --quiet Do not print version number on startup.\n\
789 --readnow Fully read symbol files on first access.\n\
791 fputs_unfiltered (_("\
792 --se=FILE Use FILE as symbol file and executable file.\n\
793 --symbols=SYMFILE Read symbols from SYMFILE.\n\
794 --tty=TTY Use TTY for input/output by the program being debugged.\n\
797 fputs_unfiltered (_("\
798 --tui Use a terminal user interface.\n\
801 fputs_unfiltered (_("\
802 --version Print version information and then exit.\n\
803 -w Use a window interface.\n\
804 --write Set writing into executable and core files.\n\
805 --xdb XDB compatibility mode.\n\
807 #ifdef ADDITIONAL_OPTION_HELP
808 fputs_unfiltered (ADDITIONAL_OPTION_HELP, stream);
810 fputs_unfiltered (_("\n\
811 For more information, type \"help\" from within GDB, or consult the\n\
812 GDB manual (available as on-line info or a printed manual).\n\