]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/main.c
daily update
[thirdparty/binutils-gdb.git] / gdb / main.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
4389a95a 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
0fb0cc75 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
7b6bb8da 5 2009, 2010, 2011 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
c906108c
SS
23#include "top.h"
24#include "target.h"
25#include "inferior.h"
1adeb98a
FN
26#include "symfile.h"
27#include "gdbcore.h"
c906108c 28
60250e8b 29#include "exceptions.h"
c906108c
SS
30#include "getopt.h"
31
32#include <sys/types.h>
33#include "gdb_stat.h"
34#include <ctype.h>
35
36#include "gdb_string.h"
9e0b60a8 37#include "event-loop.h"
8b93c638 38#include "ui-out.h"
6457bd47 39
4389a95a 40#include "interps.h"
f15ab4a7 41#include "main.h"
29b0e8a2 42#include "source.h"
4cc23ede 43#include "cli/cli-cmds.h"
88a1906b 44#include "python/python.h"
7f6130ff 45#include "objfiles.h"
29b0e8a2 46
4389a95a
AC
47/* The selected interpreter. This will be used as a set command
48 variable, so it should always be malloc'ed - since
371d5dec 49 do_setshow_command will free it. */
fb40c209 50char *interpreter_p;
fb40c209 51
371d5dec 52/* Whether xdb commands will be handled. */
c906108c
SS
53int xdb_commands = 0;
54
371d5dec 55/* Whether dbx commands will be handled. */
c906108c
SS
56int dbx_commands = 0;
57
030292b7
DJ
58/* System root path, used to find libraries etc. */
59char *gdb_sysroot = 0;
60
b14b1491
TT
61/* GDB datadir, used to store data files. */
62char *gdb_datadir = 0;
63
0c4a4063
DE
64/* If gdb was configured with --with-python=/path,
65 the possibly relocated path to python's lib directory. */
66char *python_libdir = 0;
67
d9fcf2fb
JM
68struct ui_file *gdb_stdout;
69struct ui_file *gdb_stderr;
70struct ui_file *gdb_stdlog;
449092f6 71struct ui_file *gdb_stdin;
371d5dec 72/* Target IO streams. */
449092f6 73struct ui_file *gdb_stdtargin;
22e8e3c7 74struct ui_file *gdb_stdtarg;
449092f6 75struct ui_file *gdb_stdtargerr;
c906108c 76
7c953934
TT
77/* True if --batch or --batch-silent was seen. */
78int batch_flag = 0;
79
1a088d06
AS
80/* Support for the --batch-silent option. */
81int batch_silent = 0;
82
4b0ad762
AS
83/* Support for --return-child-result option.
84 Set the default to -1 to return error in the case
85 that the program does not run or does not complete. */
86int return_child_result = 0;
87int return_child_result_value = -1;
88
371d5dec 89/* Whether to enable writing into executable and core files. */
c906108c
SS
90extern int write_files;
91
16e7150e
JG
92/* GDB as it has been invoked from the command line (i.e. argv[0]). */
93static char *gdb_program_name;
94
d9fcf2fb 95static void print_gdb_help (struct ui_file *);
c906108c 96
371d5dec
MS
97/* These two are used to set the external editor commands when gdb is
98 farming out files to be edited by another program. */
c906108c 99
c5aa993b 100extern char *external_editor_command;
c906108c 101
b14b1491
TT
102/* Relocate a file or directory. PROGNAME is the name by which gdb
103 was invoked (i.e., argv[0]). INITIAL is the default value for the
104 file or directory. FLAG is true if the value is relocatable, false
105 otherwise. Returns a newly allocated string; this may return NULL
106 under the same conditions as make_relative_prefix. */
478aac75 107
b14b1491
TT
108static char *
109relocate_path (const char *progname, const char *initial, int flag)
110{
111 if (flag)
112 return make_relative_prefix (progname, BINDIR, initial);
113 return xstrdup (initial);
114}
115
116/* Like relocate_path, but specifically checks for a directory.
117 INITIAL is relocated according to the rules of relocate_path. If
118 the result is a directory, it is used; otherwise, INITIAL is used.
119 The chosen directory is then canonicalized using lrealpath. This
120 function always returns a newly-allocated string. */
478aac75
DE
121
122char *
123relocate_gdb_directory (const char *initial, int flag)
b14b1491
TT
124{
125 char *dir;
126
478aac75 127 dir = relocate_path (gdb_program_name, initial, flag);
b14b1491
TT
128 if (dir)
129 {
130 struct stat s;
131
132 if (stat (dir, &s) != 0 || !S_ISDIR (s.st_mode))
133 {
134 xfree (dir);
135 dir = NULL;
136 }
137 }
138 if (!dir)
139 dir = xstrdup (initial);
140
141 /* Canonicalize the directory. */
142 if (*dir)
143 {
144 char *canon_sysroot = lrealpath (dir);
b8d56208 145
b14b1491
TT
146 if (canon_sysroot)
147 {
148 xfree (dir);
149 dir = canon_sysroot;
150 }
151 }
152
153 return dir;
154}
155
371d5dec
MS
156/* Compute the locations of init files that GDB should source and
157 return them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. If
158 there is no system gdbinit (resp. home gdbinit and local gdbinit)
159 to be loaded, then SYSTEM_GDBINIT (resp. HOME_GDBINIT and
160 LOCAL_GDBINIT) is set to NULL. */
16e7150e
JG
161static void
162get_init_files (char **system_gdbinit,
163 char **home_gdbinit,
164 char **local_gdbinit)
165{
166 static char *sysgdbinit = NULL;
167 static char *homeinit = NULL;
168 static char *localinit = NULL;
169 static int initialized = 0;
170
171 if (!initialized)
172 {
173 struct stat homebuf, cwdbuf, s;
174 char *homedir, *relocated_sysgdbinit;
175
b14b1491 176 if (SYSTEM_GDBINIT[0])
16e7150e 177 {
b14b1491
TT
178 relocated_sysgdbinit = relocate_path (gdb_program_name,
179 SYSTEM_GDBINIT,
180 SYSTEM_GDBINIT_RELOCATABLE);
181 if (relocated_sysgdbinit && stat (relocated_sysgdbinit, &s) == 0)
16e7150e
JG
182 sysgdbinit = relocated_sysgdbinit;
183 else
184 xfree (relocated_sysgdbinit);
185 }
16e7150e
JG
186
187 homedir = getenv ("HOME");
188
189 /* If the .gdbinit file in the current directory is the same as
190 the $HOME/.gdbinit file, it should not be sourced. homebuf
025bb325 191 and cwdbuf are used in that purpose. Make sure that the stats
16e7150e
JG
192 are zero in case one of them fails (this guarantees that they
193 won't match if either exists). */
194
195 memset (&homebuf, 0, sizeof (struct stat));
196 memset (&cwdbuf, 0, sizeof (struct stat));
197
198 if (homedir)
199 {
200 homeinit = xstrprintf ("%s/%s", homedir, gdbinit);
201 if (stat (homeinit, &homebuf) != 0)
202 {
203 xfree (homeinit);
204 homeinit = NULL;
205 }
206 }
207
208 if (stat (gdbinit, &cwdbuf) == 0)
209 {
210 if (!homeinit
211 || memcmp ((char *) &homebuf, (char *) &cwdbuf,
212 sizeof (struct stat)))
213 localinit = gdbinit;
214 }
215
216 initialized = 1;
217 }
218
219 *system_gdbinit = sysgdbinit;
220 *home_gdbinit = homeinit;
221 *local_gdbinit = localinit;
222}
223
11cf8741 224/* Call command_loop. If it happens to return, pass that through as a
371d5dec 225 non-zero return status. */
11cf8741
JM
226
227static int
228captured_command_loop (void *data)
c906108c 229{
4389a95a 230 current_interp_command_loop ();
11cf8741
JM
231 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
232 would clean things up (restoring the cleanup chain) to the state
233 they were just prior to the call. Technically, this means that
e26cc349 234 the do_cleanups() below is redundant. Unfortunately, many FUNCs
11cf8741
JM
235 are not that well behaved. do_cleanups should either be replaced
236 with a do_cleanups call (to cover the problem) or an assertion
371d5dec 237 check to detect bad FUNCs code. */
11cf8741
JM
238 do_cleanups (ALL_CLEANUPS);
239 /* If the command_loop returned, normally (rather than threw an
025bb325 240 error) we try to quit. If the quit is aborted, catch_errors()
11cf8741 241 which called this catch the signal and restart the command
371d5dec 242 loop. */
11cf8741
JM
243 quit_command (NULL, instream == stdin);
244 return 1;
245}
246
11cf8741
JM
247static int
248captured_main (void *data)
249{
250 struct captured_main_args *context = data;
251 int argc = context->argc;
252 char **argv = context->argv;
c906108c 253 static int quiet = 0;
552c04a7 254 static int set_args = 0;
c906108c
SS
255
256 /* Pointers to various arguments from command line. */
257 char *symarg = NULL;
258 char *execarg = NULL;
a4d9b460 259 char *pidarg = NULL;
c906108c 260 char *corearg = NULL;
a4d9b460 261 char *pid_or_core_arg = NULL;
c906108c
SS
262 char *cdarg = NULL;
263 char *ttyarg = NULL;
264
371d5dec
MS
265 /* These are static so that we can take their address in an
266 initializer. */
c906108c
SS
267 static int print_help;
268 static int print_version;
269
270 /* Pointers to all arguments of --command option. */
8a5a3c82
AS
271 struct cmdarg {
272 enum {
273 CMDARG_FILE,
274 CMDARG_COMMAND
275 } type;
276 char *string;
277 } *cmdarg;
c906108c
SS
278 /* Allocated size of cmdarg. */
279 int cmdsize;
280 /* Number of elements of cmdarg used. */
281 int ncmd;
282
283 /* Indices of all arguments of --directory option. */
284 char **dirarg;
285 /* Allocated size. */
286 int dirsize;
287 /* Number of elements used. */
288 int ndir;
c5aa993b 289
16e7150e
JG
290 /* gdb init files. */
291 char *system_gdbinit;
292 char *home_gdbinit;
293 char *local_gdbinit;
c906108c 294
52f0bd74 295 int i;
88a1906b 296 int save_auto_load;
7f6130ff 297 struct objfile *objfile;
c906108c 298
0f3bb72e 299 struct cleanup *pre_stat_chain = make_command_stats_cleanup (0);
c906108c 300
0fbb3da7
TT
301#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
302 setlocale (LC_MESSAGES, "");
303#endif
304#if defined (HAVE_SETLOCALE)
305 setlocale (LC_CTYPE, "");
306#endif
307 bindtextdomain (PACKAGE, LOCALEDIR);
308 textdomain (PACKAGE);
309
6dd77b81
RH
310#ifdef HAVE_SBRK
311 lim_at_start = (char *) sbrk (0);
312#endif
313
c906108c 314 cmdsize = 1;
8a5a3c82 315 cmdarg = (struct cmdarg *) xmalloc (cmdsize * sizeof (*cmdarg));
c906108c
SS
316 ncmd = 0;
317 dirsize = 1;
318 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
319 ndir = 0;
320
321 quit_flag = 0;
dc7eb48e
PA
322 saved_command_line = (char *) xmalloc (saved_command_line_size);
323 saved_command_line[0] = '\0';
c906108c
SS
324 instream = stdin;
325
da59e081
JM
326 gdb_stdout = stdio_fileopen (stdout);
327 gdb_stderr = stdio_fileopen (stderr);
328 gdb_stdlog = gdb_stderr; /* for moment */
329 gdb_stdtarg = gdb_stderr; /* for moment */
449092f6
CV
330 gdb_stdin = stdio_fileopen (stdin);
331 gdb_stdtargerr = gdb_stderr; /* for moment */
332 gdb_stdtargin = gdb_stdin; /* for moment */
c906108c 333
16e7150e
JG
334 gdb_program_name = xstrdup (argv[0]);
335
bf1d7d9c
JB
336 if (! getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)))
337 /* Don't use *_filtered or warning() (which relies on
371d5dec 338 current_target) until after initialize_all_files(). */
bf1d7d9c 339 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
340 _("%s: warning: error finding "
341 "working directory: %s\n"),
bf1d7d9c
JB
342 argv[0], safe_strerror (errno));
343
344 current_directory = gdb_dirbuf;
345
030292b7 346 /* Set the sysroot path. */
478aac75
DE
347 gdb_sysroot = relocate_gdb_directory (TARGET_SYSTEM_ROOT,
348 TARGET_SYSTEM_ROOT_RELOCATABLE);
030292b7 349
478aac75
DE
350 debug_file_directory = relocate_gdb_directory (DEBUGDIR,
351 DEBUGDIR_RELOCATABLE);
030292b7 352
478aac75
DE
353 gdb_datadir = relocate_gdb_directory (GDB_DATADIR,
354 GDB_DATADIR_RELOCATABLE);
aa28a74e 355
0c4a4063 356#ifdef WITH_PYTHON_PATH
e6040cbd
MS
357 {
358 /* For later use in helping Python find itself. */
359 char *tmp = concat (WITH_PYTHON_PATH, SLASH_STRING, "lib", NULL);
360
478aac75 361 python_libdir = relocate_gdb_directory (tmp, PYTHON_PATH_RELOCATABLE);
e6040cbd
MS
362 xfree (tmp);
363 }
0c4a4063
DE
364#endif
365
29b0e8a2
JM
366#ifdef RELOC_SRCDIR
367 add_substitute_path_rule (RELOC_SRCDIR,
368 make_relative_prefix (argv[0], BINDIR,
369 RELOC_SRCDIR));
370#endif
371
4389a95a 372 /* There will always be an interpreter. Either the one passed into
e46e5ccd
KS
373 this captured main, or one specified by the user at start up, or
374 the console. Initialize the interpreter to the one requested by
375 the application. */
376 interpreter_p = xstrdup (context->interpreter_p);
4389a95a 377
c906108c
SS
378 /* Parse arguments and options. */
379 {
380 int c;
381 /* When var field is 0, use flag field to record the equivalent
382 short option (or arbitrary numbers starting at 10 for those
383 with no equivalent). */
49c7e338
AC
384 enum {
385 OPT_SE = 10,
386 OPT_CD,
387 OPT_ANNOTATE,
388 OPT_STATISTICS,
42fa7c0f
AC
389 OPT_TUI,
390 OPT_NOWINDOWS,
391 OPT_WINDOWS
49c7e338 392 };
c906108c 393 static struct option long_options[] =
c5aa993b 394 {
49c7e338 395 {"tui", no_argument, 0, OPT_TUI},
c5aa993b
JM
396 {"xdb", no_argument, &xdb_commands, 1},
397 {"dbx", no_argument, &dbx_commands, 1},
398 {"readnow", no_argument, &readnow_symbol_files, 1},
399 {"r", no_argument, &readnow_symbol_files, 1},
c5aa993b
JM
400 {"quiet", no_argument, &quiet, 1},
401 {"q", no_argument, &quiet, 1},
402 {"silent", no_argument, &quiet, 1},
403 {"nx", no_argument, &inhibit_gdbinit, 1},
404 {"n", no_argument, &inhibit_gdbinit, 1},
1a088d06 405 {"batch-silent", no_argument, 0, 'B'},
7c953934 406 {"batch", no_argument, &batch_flag, 1},
c5aa993b
JM
407 {"epoch", no_argument, &epoch_interface, 1},
408
371d5dec
MS
409 /* This is a synonym for "--annotate=1". --annotate is now
410 preferred, but keep this here for a long time because people
411 will be running emacses which use --fullname. */
c5aa993b
JM
412 {"fullname", no_argument, 0, 'f'},
413 {"f", no_argument, 0, 'f'},
414
49c7e338 415 {"annotate", required_argument, 0, OPT_ANNOTATE},
c5aa993b 416 {"help", no_argument, &print_help, 1},
49c7e338 417 {"se", required_argument, 0, OPT_SE},
c5aa993b
JM
418 {"symbols", required_argument, 0, 's'},
419 {"s", required_argument, 0, 's'},
420 {"exec", required_argument, 0, 'e'},
421 {"e", required_argument, 0, 'e'},
422 {"core", required_argument, 0, 'c'},
423 {"c", required_argument, 0, 'c'},
00546b04
MS
424 {"pid", required_argument, 0, 'p'},
425 {"p", required_argument, 0, 'p'},
c5aa993b 426 {"command", required_argument, 0, 'x'},
8a5a3c82 427 {"eval-command", required_argument, 0, 'X'},
c5aa993b
JM
428 {"version", no_argument, &print_version, 1},
429 {"x", required_argument, 0, 'x'},
8a5a3c82 430 {"ex", required_argument, 0, 'X'},
3fc11d3e
JM
431#ifdef GDBTK
432 {"tclcommand", required_argument, 0, 'z'},
433 {"enable-external-editor", no_argument, 0, 'y'},
434 {"editor-command", required_argument, 0, 'w'},
435#endif
8b93c638
JM
436 {"ui", required_argument, 0, 'i'},
437 {"interpreter", required_argument, 0, 'i'},
438 {"i", required_argument, 0, 'i'},
c5aa993b 439 {"directory", required_argument, 0, 'd'},
c4093a6a 440 {"d", required_argument, 0, 'd'},
aae1c79a 441 {"data-directory", required_argument, 0, 'D'},
49c7e338 442 {"cd", required_argument, 0, OPT_CD},
c5aa993b
JM
443 {"tty", required_argument, 0, 't'},
444 {"baud", required_argument, 0, 'b'},
445 {"b", required_argument, 0, 'b'},
42fa7c0f
AC
446 {"nw", no_argument, NULL, OPT_NOWINDOWS},
447 {"nowindows", no_argument, NULL, OPT_NOWINDOWS},
448 {"w", no_argument, NULL, OPT_WINDOWS},
449 {"windows", no_argument, NULL, OPT_WINDOWS},
49c7e338 450 {"statistics", no_argument, 0, OPT_STATISTICS},
c5aa993b 451 {"write", no_argument, &write_files, 1},
552c04a7 452 {"args", no_argument, &set_args, 1},
39c76ca3 453 {"l", required_argument, 0, 'l'},
4b0ad762 454 {"return-child-result", no_argument, &return_child_result, 1},
c5aa993b
JM
455 {0, no_argument, 0, 0}
456 };
c906108c
SS
457
458 while (1)
459 {
460 int option_index;
461
462 c = getopt_long_only (argc, argv, "",
463 long_options, &option_index);
552c04a7 464 if (c == EOF || set_args)
c906108c
SS
465 break;
466
467 /* Long option that takes an argument. */
468 if (c == 0 && long_options[option_index].flag == 0)
469 c = long_options[option_index].val;
470
471 switch (c)
472 {
473 case 0:
474 /* Long option that just sets a flag. */
475 break;
49c7e338 476 case OPT_SE:
c906108c
SS
477 symarg = optarg;
478 execarg = optarg;
479 break;
49c7e338 480 case OPT_CD:
c906108c
SS
481 cdarg = optarg;
482 break;
49c7e338 483 case OPT_ANNOTATE:
c906108c
SS
484 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
485 annotation_level = atoi (optarg);
486 break;
49c7e338 487 case OPT_STATISTICS:
c906108c 488 /* Enable the display of both time and space usage. */
0f3bb72e
PH
489 set_display_time (1);
490 set_display_space (1);
c906108c 491 break;
49c7e338 492 case OPT_TUI:
021e7609 493 /* --tui is equivalent to -i=tui. */
b0da54f1 494#ifdef TUI
021e7609 495 xfree (interpreter_p);
cc4349ed 496 interpreter_p = xstrdup (INTERP_TUI);
b0da54f1
BW
497#else
498 fprintf_unfiltered (gdb_stderr,
499 _("%s: TUI mode is not supported\n"),
500 argv[0]);
501 exit (1);
502#endif
021e7609 503 break;
42fa7c0f
AC
504 case OPT_WINDOWS:
505 /* FIXME: cagney/2003-03-01: Not sure if this option is
506 actually useful, and if it is, what it should do. */
cc4349ed
AS
507#ifdef GDBTK
508 /* --windows is equivalent to -i=insight. */
509 xfree (interpreter_p);
510 interpreter_p = xstrdup (INTERP_INSIGHT);
511#endif
42fa7c0f
AC
512 use_windows = 1;
513 break;
514 case OPT_NOWINDOWS:
515 /* -nw is equivalent to -i=console. */
516 xfree (interpreter_p);
517 interpreter_p = xstrdup (INTERP_CONSOLE);
518 use_windows = 0;
519 break;
c906108c
SS
520 case 'f':
521 annotation_level = 1;
025bb325
MS
522 /* We have probably been invoked from emacs. Disable
523 window interface. */
c906108c
SS
524 use_windows = 0;
525 break;
526 case 's':
527 symarg = optarg;
528 break;
529 case 'e':
530 execarg = optarg;
531 break;
532 case 'c':
533 corearg = optarg;
534 break;
00546b04 535 case 'p':
a4d9b460 536 pidarg = optarg;
00546b04 537 break;
c906108c 538 case 'x':
8a5a3c82
AS
539 cmdarg[ncmd].type = CMDARG_FILE;
540 cmdarg[ncmd++].string = optarg;
541 if (ncmd >= cmdsize)
542 {
543 cmdsize *= 2;
544 cmdarg = xrealloc ((char *) cmdarg,
545 cmdsize * sizeof (*cmdarg));
546 }
547 break;
548 case 'X':
549 cmdarg[ncmd].type = CMDARG_COMMAND;
550 cmdarg[ncmd++].string = optarg;
c906108c
SS
551 if (ncmd >= cmdsize)
552 {
553 cmdsize *= 2;
8a5a3c82
AS
554 cmdarg = xrealloc ((char *) cmdarg,
555 cmdsize * sizeof (*cmdarg));
c906108c
SS
556 }
557 break;
1a088d06 558 case 'B':
7c953934 559 batch_flag = batch_silent = 1;
1a088d06
AS
560 gdb_stdout = ui_file_new();
561 break;
aae1c79a
DE
562 case 'D':
563 xfree (gdb_datadir);
564 gdb_datadir = xstrdup (optarg);
565 break;
3fc11d3e
JM
566#ifdef GDBTK
567 case 'z':
568 {
371d5dec
MS
569 extern int gdbtk_test (char *);
570
3fc11d3e
JM
571 if (!gdbtk_test (optarg))
572 {
3e43a32a
MS
573 fprintf_unfiltered (gdb_stderr,
574 _("%s: unable to load "
575 "tclcommand file \"%s\""),
3fc11d3e
JM
576 argv[0], optarg);
577 exit (1);
578 }
579 break;
580 }
581 case 'y':
78f49586
TT
582 /* Backwards compatibility only. */
583 break;
3fc11d3e
JM
584 case 'w':
585 {
3fc11d3e
JM
586 external_editor_command = xstrdup (optarg);
587 break;
588 }
589#endif /* GDBTK */
fb40c209 590 case 'i':
4389a95a
AC
591 xfree (interpreter_p);
592 interpreter_p = xstrdup (optarg);
fb40c209 593 break;
c906108c
SS
594 case 'd':
595 dirarg[ndir++] = optarg;
596 if (ndir >= dirsize)
597 {
598 dirsize *= 2;
c5aa993b 599 dirarg = (char **) xrealloc ((char *) dirarg,
c906108c
SS
600 dirsize * sizeof (*dirarg));
601 }
602 break;
603 case 't':
604 ttyarg = optarg;
605 break;
606 case 'q':
607 quiet = 1;
608 break;
609 case 'b':
610 {
611 int i;
612 char *p;
613
614 i = strtol (optarg, &p, 0);
615 if (i == 0 && p == optarg)
616
617 /* Don't use *_filtered or warning() (which relies on
371d5dec 618 current_target) until after initialize_all_files(). */
c906108c
SS
619
620 fprintf_unfiltered
621 (gdb_stderr,
defc6f8c 622 _("warning: could not set baud rate to `%s'.\n"), optarg);
c906108c
SS
623 else
624 baud_rate = i;
625 }
046ca86a 626 break;
c906108c
SS
627 case 'l':
628 {
629 int i;
630 char *p;
631
632 i = strtol (optarg, &p, 0);
633 if (i == 0 && p == optarg)
634
635 /* Don't use *_filtered or warning() (which relies on
371d5dec 636 current_target) until after initialize_all_files(). */
c906108c 637
3e43a32a
MS
638 fprintf_unfiltered (gdb_stderr,
639 _("warning: could not set "
640 "timeout limit to `%s'.\n"), optarg);
c906108c
SS
641 else
642 remote_timeout = i;
643 }
644 break;
645
c906108c
SS
646 case '?':
647 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
648 _("Use `%s --help' for a "
649 "complete list of options.\n"),
c5aa993b 650 argv[0]);
c906108c
SS
651 exit (1);
652 }
653 }
654
655 /* If --help or --version, disable window interface. */
656 if (print_help || print_version)
657 {
658 use_windows = 0;
c906108c
SS
659 }
660
7c953934 661 if (batch_flag)
c906108c
SS
662 quiet = 1;
663 }
664
0f71a2f6 665 /* Initialize all files. Give the interpreter a chance to take
ba5e7e8d 666 control of the console via the deprecated_init_ui_hook (). */
c906108c
SS
667 gdb_init (argv[0]);
668
371d5dec
MS
669 /* Now that gdb_init has created the initial inferior, we're in
670 position to set args for that inferior. */
3f81c18a
VP
671 if (set_args)
672 {
673 /* The remaining options are the command-line options for the
674 inferior. The first one is the sym/exec file, and the rest
675 are arguments. */
676 if (optind >= argc)
677 {
678 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
679 _("%s: `--args' specified but "
680 "no program specified\n"),
3f81c18a
VP
681 argv[0]);
682 exit (1);
683 }
684 symarg = argv[optind];
685 execarg = argv[optind];
686 ++optind;
687 set_inferior_args_vector (argc - optind, &argv[optind]);
688 }
689 else
690 {
691 /* OK, that's all the options. */
692
693 /* The first argument, if specified, is the name of the
694 executable. */
695 if (optind < argc)
696 {
697 symarg = argv[optind];
698 execarg = argv[optind];
699 optind++;
700 }
701
702 /* If the user hasn't already specified a PID or the name of a
703 core file, then a second optional argument is allowed. If
704 present, this argument should be interpreted as either a
705 PID or a core file, whichever works. */
706 if (pidarg == NULL && corearg == NULL && optind < argc)
707 {
708 pid_or_core_arg = argv[optind];
709 optind++;
710 }
711
712 /* Any argument left on the command line is unexpected and
713 will be ignored. Inform the user. */
714 if (optind < argc)
3e43a32a
MS
715 fprintf_unfiltered (gdb_stderr,
716 _("Excess command line "
717 "arguments ignored. (%s%s)\n"),
3f81c18a
VP
718 argv[optind],
719 (optind == argc - 1) ? "" : " ...");
720 }
721
025bb325 722 /* Lookup gdbinit files. Note that the gdbinit file name may be
371d5dec
MS
723 overriden during file initialization, so get_init_files should be
724 called after gdb_init. */
57a46001
JG
725 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
726
c906108c 727 /* Do these (and anything which might call wrap_here or *_filtered)
4389a95a
AC
728 after initialize_all_files() but before the interpreter has been
729 installed. Otherwize the help/version messages will be eaten by
730 the interpreter's output handler. */
731
c906108c
SS
732 if (print_version)
733 {
734 print_gdb_version (gdb_stdout);
735 wrap_here ("");
736 printf_filtered ("\n");
737 exit (0);
738 }
739
740 if (print_help)
741 {
742 print_gdb_help (gdb_stdout);
743 fputs_unfiltered ("\n", gdb_stdout);
744 exit (0);
745 }
746
4389a95a
AC
747 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
748 GDB retain the old MI1 interpreter startup behavior. Output the
749 copyright message before the interpreter is installed. That way
750 it isn't encapsulated in MI output. */
751 if (!quiet && strcmp (interpreter_p, INTERP_MI1) == 0)
752 {
371d5dec
MS
753 /* Print all the junk at the top, with trailing "..." if we are
754 about to read a symbol file (possibly slowly). */
4389a95a
AC
755 print_gdb_version (gdb_stdout);
756 if (symarg)
757 printf_filtered ("..");
758 wrap_here ("");
e896d70e 759 printf_filtered ("\n");
371d5dec
MS
760 gdb_flush (gdb_stdout); /* Force to screen during slow
761 operations. */
4389a95a
AC
762 }
763
4389a95a 764 /* Install the default UI. All the interpreters should have had a
371d5dec 765 look at things by now. Initialize the default interpreter. */
4389a95a
AC
766
767 {
768 /* Find it. */
769 struct interp *interp = interp_lookup (interpreter_p);
b8d56208 770
4389a95a 771 if (interp == NULL)
8a3fe4f8 772 error (_("Interpreter `%s' unrecognized"), interpreter_p);
4389a95a 773 /* Install it. */
683f2885 774 if (!interp_set (interp, 1))
4389a95a
AC
775 {
776 fprintf_unfiltered (gdb_stderr,
777 "Interpreter `%s' failed to initialize.\n",
778 interpreter_p);
779 exit (1);
780 }
781 }
782
783 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
784 GDB retain the old MI1 interpreter startup behavior. Output the
785 copyright message after the interpreter is installed when it is
786 any sane interpreter. */
787 if (!quiet && !current_interp_named_p (INTERP_MI1))
c906108c 788 {
371d5dec
MS
789 /* Print all the junk at the top, with trailing "..." if we are
790 about to read a symbol file (possibly slowly). */
c906108c
SS
791 print_gdb_version (gdb_stdout);
792 if (symarg)
793 printf_filtered ("..");
c5aa993b 794 wrap_here ("");
e896d70e 795 printf_filtered ("\n");
371d5dec
MS
796 gdb_flush (gdb_stdout); /* Force to screen during slow
797 operations. */
c906108c
SS
798 }
799
e896d70e
DJ
800 /* Set off error and warning messages with a blank line. */
801 error_pre_print = "\n";
c906108c 802 quit_pre_print = error_pre_print;
defc6f8c 803 warning_pre_print = _("\nwarning: ");
c906108c 804
16e7150e
JG
805 /* Read and execute the system-wide gdbinit file, if it exists.
806 This is done *before* all the command line arguments are
807 processed; it sets global parameters, which are independent of
808 what file you are debugging or what directory you are in. */
809 if (system_gdbinit && !inhibit_gdbinit)
810 catch_command_errors (source_script, system_gdbinit, 0, RETURN_MASK_ALL);
811
c906108c
SS
812 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
813 *before* all the command line arguments are processed; it sets
814 global parameters, which are independent of what file you are
815 debugging or what directory you are in. */
c906108c 816
16e7150e
JG
817 if (home_gdbinit && !inhibit_gdbinit)
818 catch_command_errors (source_script, home_gdbinit, 0, RETURN_MASK_ALL);
c906108c
SS
819
820 /* Now perform all the actions indicated by the arguments. */
821 if (cdarg != NULL)
822 {
11cf8741 823 catch_command_errors (cd_command, cdarg, 0, RETURN_MASK_ALL);
c906108c 824 }
c906108c
SS
825
826 for (i = 0; i < ndir; i++)
13d35ae5 827 catch_command_errors (directory_switch, dirarg[i], 0, RETURN_MASK_ALL);
b8c9b27d 828 xfree (dirarg);
c906108c 829
88a1906b 830 /* Skip auto-loading section-specified scripts until we've sourced
371d5dec
MS
831 local_gdbinit (which is often used to augment the source search
832 path). */
88a1906b
DE
833 save_auto_load = gdbpy_global_auto_load;
834 gdbpy_global_auto_load = 0;
835
c906108c
SS
836 if (execarg != NULL
837 && symarg != NULL
5cb316ef 838 && strcmp (execarg, symarg) == 0)
c906108c 839 {
11cf8741
JM
840 /* The exec file and the symbol-file are the same. If we can't
841 open it, better only print one error message.
371d5dec 842 catch_command_errors returns non-zero on success! */
3e43a32a
MS
843 if (catch_command_errors (exec_file_attach, execarg,
844 !batch_flag, RETURN_MASK_ALL))
845 catch_command_errors (symbol_file_add_main, symarg,
846 !batch_flag, RETURN_MASK_ALL);
c906108c
SS
847 }
848 else
849 {
850 if (execarg != NULL)
3e43a32a
MS
851 catch_command_errors (exec_file_attach, execarg,
852 !batch_flag, RETURN_MASK_ALL);
c906108c 853 if (symarg != NULL)
3e43a32a
MS
854 catch_command_errors (symbol_file_add_main, symarg,
855 !batch_flag, RETURN_MASK_ALL);
c906108c 856 }
c906108c 857
a4d9b460 858 if (corearg && pidarg)
3e43a32a
MS
859 error (_("Can't attach to process and specify "
860 "a core file at the same time."));
a4d9b460 861
c906108c 862 if (corearg != NULL)
a4d9b460 863 catch_command_errors (core_file_command, corearg,
7c953934 864 !batch_flag, RETURN_MASK_ALL);
a4d9b460
PA
865 else if (pidarg != NULL)
866 catch_command_errors (attach_command, pidarg,
7c953934 867 !batch_flag, RETURN_MASK_ALL);
a4d9b460 868 else if (pid_or_core_arg)
c906108c 869 {
a4d9b460
PA
870 /* The user specified 'gdb program pid' or gdb program core'.
871 If pid_or_core_arg's first character is a digit, try attach
872 first and then corefile. Otherwise try just corefile. */
00546b04 873
a4d9b460 874 if (isdigit (pid_or_core_arg[0]))
11cf8741 875 {
a4d9b460 876 if (catch_command_errors (attach_command, pid_or_core_arg,
7c953934 877 !batch_flag, RETURN_MASK_ALL) == 0)
a4d9b460 878 catch_command_errors (core_file_command, pid_or_core_arg,
7c953934 879 !batch_flag, RETURN_MASK_ALL);
11cf8741 880 }
a4d9b460
PA
881 else /* Can't be a pid, better be a corefile. */
882 catch_command_errors (core_file_command, pid_or_core_arg,
7c953934 883 !batch_flag, RETURN_MASK_ALL);
c906108c 884 }
c906108c
SS
885
886 if (ttyarg != NULL)
3f81c18a 887 set_inferior_io_terminal (ttyarg);
c906108c 888
371d5dec 889 /* Error messages should no longer be distinguished with extra output. */
c906108c
SS
890 error_pre_print = NULL;
891 quit_pre_print = NULL;
defc6f8c 892 warning_pre_print = _("warning: ");
c906108c
SS
893
894 /* Read the .gdbinit file in the current directory, *if* it isn't
895 the same as the $HOME/.gdbinit file (it should exist, also). */
16e7150e
JG
896 if (local_gdbinit && !inhibit_gdbinit)
897 catch_command_errors (source_script, local_gdbinit, 0, RETURN_MASK_ALL);
c906108c 898
88a1906b
DE
899 /* Now that all .gdbinit's have been read and all -d options have been
900 processed, we can read any scripts mentioned in SYMARG.
901 We wait until now because it is common to add to the source search
902 path in local_gdbinit. */
903 gdbpy_global_auto_load = save_auto_load;
7f6130ff
JK
904 ALL_OBJFILES (objfile)
905 load_auto_scripts_for_objfile (objfile);
88a1906b 906
c906108c
SS
907 for (i = 0; i < ncmd; i++)
908 {
8a5a3c82 909 if (cmdarg[i].type == CMDARG_FILE)
16026cd7 910 catch_command_errors (source_script, cmdarg[i].string,
7c953934 911 !batch_flag, RETURN_MASK_ALL);
8a5a3c82
AS
912 else /* cmdarg[i].type == CMDARG_COMMAND */
913 catch_command_errors (execute_command, cmdarg[i].string,
7c953934 914 !batch_flag, RETURN_MASK_ALL);
c906108c 915 }
b8c9b27d 916 xfree (cmdarg);
c906108c 917
371d5dec
MS
918 /* Read in the old history after all the command files have been
919 read. */
c5aa993b 920 init_history ();
c906108c 921
7c953934 922 if (batch_flag)
c906108c
SS
923 {
924 /* We have hit the end of the batch file. */
4b0ad762 925 quit_force (NULL, 0);
c906108c
SS
926 }
927
c906108c 928 /* Show time and/or space usage. */
0f3bb72e 929 do_cleanups (pre_stat_chain);
c906108c 930
11cf8741
JM
931 /* NOTE: cagney/1999-11-07: There is probably no reason for not
932 moving this loop and the code found in captured_command_loop()
933 into the command_loop() proper. The main thing holding back that
371d5dec 934 change - SET_TOP_LEVEL() - has been eliminated. */
11cf8741
JM
935 while (1)
936 {
937 catch_errors (captured_command_loop, 0, "", RETURN_MASK_ALL);
938 }
11cf8741
JM
939 /* No exit -- exit is through quit_command. */
940}
c906108c 941
11cf8741 942int
f15ab4a7 943gdb_main (struct captured_main_args *args)
11cf8741 944{
f15ab4a7
AC
945 use_windows = args->use_windows;
946 catch_errors (captured_main, args, "", RETURN_MASK_ALL);
864dbc90
AC
947 /* The only way to end up here is by an error (normal exit is
948 handled by quit_force()), hence always return an error status. */
949 return 1;
c906108c
SS
950}
951
11cf8741 952
c906108c
SS
953/* Don't use *_filtered for printing help. We don't want to prompt
954 for continue no matter how small the screen or how much we're going
955 to print. */
956
957static void
d9fcf2fb 958print_gdb_help (struct ui_file *stream)
c906108c 959{
16e7150e
JG
960 char *system_gdbinit;
961 char *home_gdbinit;
962 char *local_gdbinit;
963
964 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
965
defc6f8c 966 fputs_unfiltered (_("\
c906108c 967This is the GNU debugger. Usage:\n\n\
552c04a7
TT
968 gdb [options] [executable-file [core-file or process-id]]\n\
969 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
c906108c 970Options:\n\n\
defc6f8c
TT
971"), stream);
972 fputs_unfiltered (_("\
552c04a7 973 --args Arguments after executable-file are passed to inferior\n\
defc6f8c
TT
974"), stream);
975 fputs_unfiltered (_("\
c906108c
SS
976 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
977 --batch Exit after processing options.\n\
1a088d06 978 --batch-silent As for --batch, but suppress all gdb stdout output.\n\
4b0ad762
AS
979 --return-child-result\n\
980 GDB exit code will be the child's exit code.\n\
c906108c 981 --cd=DIR Change current directory to DIR.\n\
8a5a3c82
AS
982 --command=FILE, -x Execute GDB commands from FILE.\n\
983 --eval-command=COMMAND, -ex\n\
984 Execute a single GDB command.\n\
985 May be used multiple times and in conjunction\n\
986 with --command.\n\
c906108c 987 --core=COREFILE Analyze the core dump COREFILE.\n\
00546b04 988 --pid=PID Attach to running process PID.\n\
defc6f8c
TT
989"), stream);
990 fputs_unfiltered (_("\
c906108c
SS
991 --dbx DBX compatibility mode.\n\
992 --directory=DIR Search for source files in DIR.\n\
993 --epoch Output information used by epoch emacs-GDB interface.\n\
994 --exec=EXECFILE Use EXECFILE as the executable.\n\
995 --fullname Output information used by emacs-GDB interface.\n\
996 --help Print this message.\n\
defc6f8c
TT
997"), stream);
998 fputs_unfiltered (_("\
8b93c638
JM
999 --interpreter=INTERP\n\
1000 Select a specific interpreter / user interface\n\
defc6f8c
TT
1001"), stream);
1002 fputs_unfiltered (_("\
f47b1503 1003 -l TIMEOUT Set timeout in seconds for remote debugging.\n\
c906108c 1004 --nw Do not use a window interface.\n\
defc6f8c 1005 --nx Do not read "), stream);
96baa820 1006 fputs_unfiltered (gdbinit, stream);
defc6f8c 1007 fputs_unfiltered (_(" file.\n\
c906108c
SS
1008 --quiet Do not print version number on startup.\n\
1009 --readnow Fully read symbol files on first access.\n\
defc6f8c
TT
1010"), stream);
1011 fputs_unfiltered (_("\
c906108c
SS
1012 --se=FILE Use FILE as symbol file and executable file.\n\
1013 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1014 --tty=TTY Use TTY for input/output by the program being debugged.\n\
defc6f8c 1015"), stream);
c906108c 1016#if defined(TUI)
defc6f8c 1017 fputs_unfiltered (_("\
c906108c 1018 --tui Use a terminal user interface.\n\
defc6f8c 1019"), stream);
c906108c 1020#endif
defc6f8c 1021 fputs_unfiltered (_("\
c906108c
SS
1022 --version Print version information and then exit.\n\
1023 -w Use a window interface.\n\
1024 --write Set writing into executable and core files.\n\
1025 --xdb XDB compatibility mode.\n\
defc6f8c 1026"), stream);
defc6f8c 1027 fputs_unfiltered (_("\n\
16e7150e
JG
1028At startup, GDB reads the following init files and executes their commands:\n\
1029"), stream);
1030 if (system_gdbinit)
1031 fprintf_unfiltered (stream, _("\
1032 * system-wide init file: %s\n\
1033"), system_gdbinit);
1034 if (home_gdbinit)
1035 fprintf_unfiltered (stream, _("\
1036 * user-specific init file: %s\n\
1037"), home_gdbinit);
1038 if (local_gdbinit)
1039 fprintf_unfiltered (stream, _("\
1040 * local init file: ./%s\n\
1041"), local_gdbinit);
1042 fputs_unfiltered (_("\n\
c906108c
SS
1043For more information, type \"help\" from within GDB, or consult the\n\
1044GDB manual (available as on-line info or a printed manual).\n\
defc6f8c 1045"), stream);
c16158bc
JM
1046 if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
1047 fprintf_unfiltered (stream, _("\
1048Report bugs to \"%s\".\n\
1049"), REPORT_BUGS_TO);
c906108c 1050}