69c36ef313ccf43376739e9252c88a164aaf1500
[binutils-gdb.git] / gdb / main.c
1 /* Top level `main' program for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
3 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 2 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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21 #include "defs.h"
22 #include "gdbcmd.h"
23 #include "call-cmds.h"
24 #include "symtab.h"
25 #include "inferior.h"
26 #include "signals.h"
27 #include "target.h"
28 #include "breakpoint.h"
29 #include "gdbtypes.h"
30 #include "expression.h"
31 #include "language.h"
32 #include "terminal.h" /* For job_control. */
33
34 #include "getopt.h"
35
36 /* readline include files */
37 #include "readline.h"
38 #include "history.h"
39
40 /* readline defines this. */
41 #undef savestring
42
43 #include <sys/types.h>
44 #ifdef USG
45 /* What is this for? X_OK? */
46 #include <unistd.h>
47 #endif
48
49 #include <string.h>
50 #ifndef NO_SYS_FILE
51 #include <sys/file.h>
52 #endif
53 #include <setjmp.h>
54 #include <sys/param.h>
55 #include <sys/stat.h>
56 #include <ctype.h>
57
58 #ifdef SET_STACK_LIMIT_HUGE
59 #include <sys/time.h>
60 #include <sys/resource.h>
61
62 int original_stack_limit;
63 #endif
64
65 /* Prototypes for local functions */
66
67 static char *
68 symbol_completion_function PARAMS ((char *, int));
69
70 static void
71 command_loop PARAMS ((void));
72
73 static void
74 command_loop_marker PARAMS ((int));
75
76 static void
77 print_gdb_version PARAMS ((GDB_FILE *));
78
79 static void
80 quit_command PARAMS ((char *, int));
81
82 static void
83 init_main PARAMS ((void));
84
85 static void
86 init_history PARAMS ((void));
87
88 static void
89 init_cmd_lists PARAMS ((void));
90
91 static void
92 float_handler PARAMS ((int));
93
94 static void
95 source_command PARAMS ((char *, int));
96
97 static void cd_command PARAMS ((char *, int));
98
99 static void
100 print_gnu_advertisement PARAMS ((void));
101
102 static void
103 init_signals PARAMS ((void));
104
105 static void
106 read_command_file PARAMS ((FILE *));
107
108 static void
109 set_verbose PARAMS ((char *, int, struct cmd_list_element *));
110
111 static void
112 show_history PARAMS ((char *, int));
113
114 static void
115 set_history PARAMS ((char *, int));
116
117 static void
118 set_history_size_command PARAMS ((char *, int, struct cmd_list_element *));
119
120 static void
121 show_commands PARAMS ((char *, int));
122
123 static void
124 echo_command PARAMS ((char *, int));
125
126 static void
127 pwd_command PARAMS ((char *, int));
128
129 static void
130 show_version PARAMS ((char *, int));
131
132 static void
133 document_command PARAMS ((char *, int));
134
135 static void
136 define_command PARAMS ((char *, int));
137
138 static void
139 validate_comname PARAMS ((char *));
140
141 static void
142 help_command PARAMS ((char *, int));
143
144 static void
145 show_command PARAMS ((char *, int));
146
147 static void
148 info_command PARAMS ((char *, int));
149
150 static void
151 complete_command PARAMS ((char *, int));
152
153 static void
154 do_nothing PARAMS ((int));
155
156 static int
157 quit_cover PARAMS ((char *));
158
159 static void
160 disconnect PARAMS ((int));
161
162 static void
163 source_cleanup PARAMS ((FILE *));
164
165 /* If this definition isn't overridden by the header files, assume
166 that isatty and fileno exist on this system. */
167 #ifndef ISATTY
168 #define ISATTY(FP) (isatty (fileno (FP)))
169 #endif
170
171 /* Initialization file name for gdb. This is overridden in some configs. */
172
173 #ifndef GDBINIT_FILENAME
174 #define GDBINIT_FILENAME ".gdbinit"
175 #endif
176 static char gdbinit[] = GDBINIT_FILENAME;
177 static int inhibit_gdbinit = 0;
178
179 #define ALL_CLEANUPS ((struct cleanup *)0)
180
181 /* Version number of GDB, as a string. */
182
183 extern char *version;
184
185 /* Canonical host name as a string. */
186
187 extern char *host_name;
188
189 /* Canonical target name as a string. */
190
191 extern char *target_name;
192
193 extern char lang_frame_mismatch_warn[]; /* language.c */
194
195 /* Flag for whether we want all the "from_tty" gubbish printed. */
196
197 int caution = 1; /* Default is yes, sigh. */
198
199 /*
200 * Define all cmd_list_element's
201 */
202
203 /* Chain containing all defined commands. */
204
205 struct cmd_list_element *cmdlist;
206
207 /* Chain containing all defined info subcommands. */
208
209 struct cmd_list_element *infolist;
210
211 /* Chain containing all defined enable subcommands. */
212
213 struct cmd_list_element *enablelist;
214
215 /* Chain containing all defined disable subcommands. */
216
217 struct cmd_list_element *disablelist;
218
219 /* Chain containing all defined delete subcommands. */
220
221 struct cmd_list_element *deletelist;
222
223 /* Chain containing all defined "enable breakpoint" subcommands. */
224
225 struct cmd_list_element *enablebreaklist;
226
227 /* Chain containing all defined set subcommands */
228
229 struct cmd_list_element *setlist;
230
231 /* Chain containing all defined unset subcommands */
232
233 struct cmd_list_element *unsetlist;
234
235 /* Chain containing all defined show subcommands. */
236
237 struct cmd_list_element *showlist;
238
239 /* Chain containing all defined \"set history\". */
240
241 struct cmd_list_element *sethistlist;
242
243 /* Chain containing all defined \"show history\". */
244
245 struct cmd_list_element *showhistlist;
246
247 /* Chain containing all defined \"unset history\". */
248
249 struct cmd_list_element *unsethistlist;
250
251 /* Chain containing all defined maintenance subcommands. */
252
253 #if MAINTENANCE_CMDS
254 struct cmd_list_element *maintenancelist;
255 #endif
256
257 /* Chain containing all defined "maintenance info" subcommands. */
258
259 #if MAINTENANCE_CMDS
260 struct cmd_list_element *maintenanceinfolist;
261 #endif
262
263 /* Chain containing all defined "maintenance print" subcommands. */
264
265 #if MAINTENANCE_CMDS
266 struct cmd_list_element *maintenanceprintlist;
267 #endif
268
269 struct cmd_list_element *setprintlist;
270
271 struct cmd_list_element *showprintlist;
272
273 struct cmd_list_element *setchecklist;
274
275 struct cmd_list_element *showchecklist;
276
277 /* stdio stream that command input is being read from. Set to stdin normally.
278 Set by source_command to the file we are sourcing. Set to NULL if we are
279 executing a user-defined command. */
280
281 FILE *instream;
282
283 /* Current working directory. */
284
285 char *current_directory;
286
287 /* The directory name is actually stored here (usually). */
288 static char dirbuf[1024];
289
290 /* Function to call before reading a command, if nonzero.
291 The function receives two args: an input stream,
292 and a prompt string. */
293
294 void (*window_hook) PARAMS ((FILE *, char *));
295
296 extern int mapped_symbol_files;
297 extern int readnow_symbol_files;
298
299 int epoch_interface;
300 int xgdb_verbose;
301
302 /* gdb prints this when reading a command interactively */
303 static char *prompt;
304
305 /* Buffer used for reading command lines, and the size
306 allocated for it so far. */
307
308 char *line;
309 int linesize = 100;
310
311 /* Nonzero if the current command is modified by "server ". This
312 affects things like recording into the command history, comamnds
313 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
314 whatever) can issue its own commands and also send along commands
315 from the user, and have the user not notice that the user interface
316 is issuing commands too. */
317 int server_command;
318
319 /* Baud rate specified for talking to serial target systems. Default
320 is left as -1, so targets can choose their own defaults. */
321 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
322 or (unsigned int)-1. This is a Bad User Interface. */
323
324 int baud_rate = -1;
325
326 /* Non-zero tells remote* modules to output debugging info. */
327
328 int remote_debug = 0;
329
330 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
331
332 #ifndef STOP_SIGNAL
333 #ifdef SIGTSTP
334 #define STOP_SIGNAL SIGTSTP
335 static void stop_sig PARAMS ((int));
336 #endif
337 #endif
338
339 /* Some System V have job control but not sigsetmask(). */
340 #if !defined (HAVE_SIGSETMASK)
341 #if !defined (USG)
342 #define HAVE_SIGSETMASK 1
343 #else
344 #define HAVE_SIGSETMASK 0
345 #endif
346 #endif
347
348 #if 0 == (HAVE_SIGSETMASK)
349 #define sigsetmask(n)
350 #endif
351 \f
352 /* Where to go for return_to_top_level (RETURN_ERROR). */
353 static jmp_buf error_return;
354 /* Where to go for return_to_top_level (RETURN_QUIT). */
355 static jmp_buf quit_return;
356
357 /* Temporary variable for SET_TOP_LEVEL. */
358 static int top_level_val;
359
360 /* Do a setjmp on error_return and quit_return. catch_errors is
361 generally a cleaner way to do this, but main() would look pretty
362 ugly if it had to use catch_errors each time. */
363
364 #define SET_TOP_LEVEL() \
365 (((top_level_val = setjmp (error_return)) \
366 ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (jmp_buf))) \
367 , top_level_val)
368
369 /* Return for reason REASON. This generally gets back to the command
370 loop, but can be caught via catch_errors. */
371
372 NORETURN void
373 return_to_top_level (reason)
374 enum return_reason reason;
375 {
376 quit_flag = 0;
377 immediate_quit = 0;
378
379 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
380 I can think of a reason why that is vital, though). */
381 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
382
383 disable_current_display ();
384 do_cleanups (ALL_CLEANUPS);
385 (NORETURN void) longjmp
386 (reason == RETURN_ERROR ? error_return : quit_return, 1);
387 }
388
389 /* Call FUNC with arg ARGS, catching any errors. If there is no
390 error, return the value returned by FUNC. If there is an error,
391 print ERRSTRING, print the specific error message, then return
392 zero.
393
394 Must not be called with immediate_quit in effect (bad things might
395 happen, say we got a signal in the middle of a memcpy to quit_return).
396 This is an OK restriction; with very few exceptions immediate_quit can
397 be replaced by judicious use of QUIT.
398
399 MASK specifies what to catch; it is normally set to
400 RETURN_MASK_ALL, if for no other reason than that the code which
401 calls catch_errors might not be set up to deal with a quit which
402 isn't caught. But if the code can deal with it, it generally
403 should be RETURN_MASK_ERROR, unless for some reason it is more
404 useful to abort only the portion of the operation inside the
405 catch_errors. Note that quit should return to the command line
406 fairly quickly, even if some further processing is being done. */
407
408 int
409 catch_errors (func, args, errstring, mask)
410 int (*func) PARAMS ((char *));
411 PTR args;
412 char *errstring;
413 return_mask mask;
414 {
415 jmp_buf saved_error;
416 jmp_buf saved_quit;
417 jmp_buf tmp_jmp;
418 int val;
419 struct cleanup *saved_cleanup_chain;
420 char *saved_error_pre_print;
421
422 saved_cleanup_chain = save_cleanups ();
423 saved_error_pre_print = error_pre_print;
424
425 if (mask & RETURN_MASK_ERROR)
426 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
427 if (mask & RETURN_MASK_QUIT)
428 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
429 error_pre_print = errstring;
430
431 if (setjmp (tmp_jmp) == 0)
432 {
433 if (mask & RETURN_MASK_ERROR)
434 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
435 if (mask & RETURN_MASK_QUIT)
436 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
437 val = (*func) (args);
438 }
439 else
440 val = 0;
441
442 restore_cleanups (saved_cleanup_chain);
443
444 error_pre_print = saved_error_pre_print;
445 if (mask & RETURN_MASK_ERROR)
446 memcpy (error_return, saved_error, sizeof (jmp_buf));
447 if (mask & RETURN_MASK_QUIT)
448 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
449 return val;
450 }
451
452 /* Handler for SIGHUP. */
453
454 static void
455 disconnect (signo)
456 int signo;
457 {
458 catch_errors (quit_cover, NULL,
459 "Could not kill the program being debugged", RETURN_MASK_ALL);
460 signal (SIGHUP, SIG_DFL);
461 kill (getpid (), SIGHUP);
462 }
463
464 /* Just a little helper function for disconnect(). */
465
466 static int
467 quit_cover (s)
468 char *s;
469 {
470 caution = 0; /* Throw caution to the wind -- we're exiting.
471 This prevents asking the user dumb questions. */
472 quit_command((char *)0, 0);
473 return 0;
474 }
475 \f
476 /* Line number we are currently in in a file which is being sourced. */
477 static int source_line_number;
478
479 /* Name of the file we are sourcing. */
480 static char *source_file_name;
481
482 /* Buffer containing the error_pre_print used by the source stuff.
483 Malloc'd. */
484 static char *source_error;
485 static int source_error_allocated;
486
487 /* Something to glom on to the start of error_pre_print if source_file_name
488 is set. */
489 static char *source_pre_error;
490
491 /* Clean up on error during a "source" command (or execution of a
492 user-defined command). */
493
494 static void
495 source_cleanup (stream)
496 FILE *stream;
497 {
498 /* Restore the previous input stream. */
499 instream = stream;
500 }
501
502 /* Read commands from STREAM. */
503 static void
504 read_command_file (stream)
505 FILE *stream;
506 {
507 struct cleanup *cleanups;
508
509 cleanups = make_cleanup (source_cleanup, instream);
510 instream = stream;
511 command_loop ();
512 do_cleanups (cleanups);
513 }
514 \f
515 int
516 main (argc, argv)
517 int argc;
518 char **argv;
519 {
520 int count;
521 static int quiet = 0;
522 static int batch = 0;
523
524 /* Pointers to various arguments from command line. */
525 char *symarg = NULL;
526 char *execarg = NULL;
527 char *corearg = NULL;
528 char *cdarg = NULL;
529 char *ttyarg = NULL;
530
531 /* These are static so that we can take their address in an initializer. */
532 static int print_help;
533 static int print_version;
534
535 /* Pointers to all arguments of --command option. */
536 char **cmdarg;
537 /* Allocated size of cmdarg. */
538 int cmdsize;
539 /* Number of elements of cmdarg used. */
540 int ncmd;
541
542 /* Indices of all arguments of --directory option. */
543 char **dirarg;
544 /* Allocated size. */
545 int dirsize;
546 /* Number of elements used. */
547 int ndir;
548
549 struct stat homebuf, cwdbuf;
550 char *homedir, *homeinit;
551
552 register int i;
553
554 /* This needs to happen before the first use of malloc. */
555 init_malloc ((PTR) NULL);
556
557 #if defined (ALIGN_STACK_ON_STARTUP)
558 i = (int) &count & 0x3;
559 if (i != 0)
560 alloca (4 - i);
561 #endif
562
563 /* If error() is called from initialization code, just exit */
564 if (SET_TOP_LEVEL ()) {
565 exit(1);
566 }
567
568 cmdsize = 1;
569 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
570 ncmd = 0;
571 dirsize = 1;
572 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
573 ndir = 0;
574
575 quit_flag = 0;
576 line = (char *) xmalloc (linesize);
577 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
578 instream = stdin;
579
580 getcwd (dirbuf, sizeof (dirbuf));
581 current_directory = dirbuf;
582
583 #ifdef SET_STACK_LIMIT_HUGE
584 {
585 struct rlimit rlim;
586
587 /* Set the stack limit huge so that alloca (particularly stringtab
588 * in dbxread.c) does not fail. */
589 getrlimit (RLIMIT_STACK, &rlim);
590 original_stack_limit = rlim.rlim_cur;
591 rlim.rlim_cur = rlim.rlim_max;
592 setrlimit (RLIMIT_STACK, &rlim);
593 }
594 #endif /* SET_STACK_LIMIT_HUGE */
595
596 /* Parse arguments and options. */
597 {
598 int c;
599 /* When var field is 0, use flag field to record the equivalent
600 short option (or arbitrary numbers starting at 10 for those
601 with no equivalent). */
602 static struct option long_options[] =
603 {
604 {"readnow", no_argument, &readnow_symbol_files, 1},
605 {"r", no_argument, &readnow_symbol_files, 1},
606 {"mapped", no_argument, &mapped_symbol_files, 1},
607 {"m", no_argument, &mapped_symbol_files, 1},
608 {"quiet", no_argument, &quiet, 1},
609 {"q", no_argument, &quiet, 1},
610 {"silent", no_argument, &quiet, 1},
611 {"nx", no_argument, &inhibit_gdbinit, 1},
612 {"n", no_argument, &inhibit_gdbinit, 1},
613 {"batch", no_argument, &batch, 1},
614 {"epoch", no_argument, &epoch_interface, 1},
615
616 /* This is a synonym for "--annotate=1". --annotate is now preferred,
617 but keep this here for a long time because people will be running
618 emacses which use --fullname. */
619 {"fullname", no_argument, 0, 'f'},
620 {"f", no_argument, 0, 'f'},
621
622 {"annotate", required_argument, 0, 12},
623 {"help", no_argument, &print_help, 1},
624 {"se", required_argument, 0, 10},
625 {"symbols", required_argument, 0, 's'},
626 {"s", required_argument, 0, 's'},
627 {"exec", required_argument, 0, 'e'},
628 {"e", required_argument, 0, 'e'},
629 {"core", required_argument, 0, 'c'},
630 {"c", required_argument, 0, 'c'},
631 {"command", required_argument, 0, 'x'},
632 {"version", no_argument, &print_version, 1},
633 {"x", required_argument, 0, 'x'},
634 {"directory", required_argument, 0, 'd'},
635 {"cd", required_argument, 0, 11},
636 {"tty", required_argument, 0, 't'},
637 {"baud", required_argument, 0, 'b'},
638 {"b", required_argument, 0, 'b'},
639 /* Allow machine descriptions to add more options... */
640 #ifdef ADDITIONAL_OPTIONS
641 ADDITIONAL_OPTIONS
642 #endif
643 {0, no_argument, 0, 0},
644 };
645
646 while (1)
647 {
648 int option_index;
649
650 c = getopt_long_only (argc, argv, "",
651 long_options, &option_index);
652 if (c == EOF)
653 break;
654
655 /* Long option that takes an argument. */
656 if (c == 0 && long_options[option_index].flag == 0)
657 c = long_options[option_index].val;
658
659 switch (c)
660 {
661 case 0:
662 /* Long option that just sets a flag. */
663 break;
664 case 10:
665 symarg = optarg;
666 execarg = optarg;
667 break;
668 case 11:
669 cdarg = optarg;
670 break;
671 case 12:
672 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
673 annotation_level = atoi (optarg);
674 break;
675 case 'f':
676 annotation_level = 1;
677 break;
678 case 's':
679 symarg = optarg;
680 break;
681 case 'e':
682 execarg = optarg;
683 break;
684 case 'c':
685 corearg = optarg;
686 break;
687 case 'x':
688 cmdarg[ncmd++] = optarg;
689 if (ncmd >= cmdsize)
690 {
691 cmdsize *= 2;
692 cmdarg = (char **) xrealloc ((char *)cmdarg,
693 cmdsize * sizeof (*cmdarg));
694 }
695 break;
696 case 'd':
697 dirarg[ndir++] = optarg;
698 if (ndir >= dirsize)
699 {
700 dirsize *= 2;
701 dirarg = (char **) xrealloc ((char *)dirarg,
702 dirsize * sizeof (*dirarg));
703 }
704 break;
705 case 't':
706 ttyarg = optarg;
707 break;
708 case 'q':
709 quiet = 1;
710 break;
711 case 'b':
712 {
713 int i;
714 char *p;
715
716 i = strtol (optarg, &p, 0);
717 if (i == 0 && p == optarg)
718
719 /* Don't use *_filtered or warning() (which relies on
720 current_target) until after initialize_all_files(). */
721
722 fprintf_unfiltered
723 (gdb_stderr,
724 "warning: could not set baud rate to `%s'.\n", optarg);
725 else
726 baud_rate = i;
727 }
728 break;
729
730 #ifdef ADDITIONAL_OPTION_CASES
731 ADDITIONAL_OPTION_CASES
732 #endif
733 case '?':
734 fprintf_unfiltered (gdb_stderr,
735 "Use `%s --help' for a complete list of options.\n",
736 argv[0]);
737 exit (1);
738 }
739 }
740
741 /* OK, that's all the options. The other arguments are filenames. */
742 count = 0;
743 for (; optind < argc; optind++)
744 switch (++count)
745 {
746 case 1:
747 symarg = argv[optind];
748 execarg = argv[optind];
749 break;
750 case 2:
751 corearg = argv[optind];
752 break;
753 case 3:
754 fprintf_unfiltered (gdb_stderr,
755 "Excess command line arguments ignored. (%s%s)\n",
756 argv[optind], (optind == argc - 1) ? "" : " ...");
757 break;
758 }
759 if (batch)
760 quiet = 1;
761 }
762
763 /* Run the init function of each source file */
764
765 init_cmd_lists (); /* This needs to be done first */
766 initialize_all_files ();
767 init_main (); /* But that omits this file! Do it now */
768 init_signals ();
769
770 /* Do these (and anything which might call wrap_here or *_filtered)
771 after initialize_all_files. */
772 if (print_version)
773 {
774 print_gdb_version (gdb_stdout);
775 wrap_here ("");
776 printf_filtered ("\n");
777 exit (0);
778 }
779
780 if (print_help)
781 {
782 /* --version is intentionally not documented here, because we
783 are printing the version here, and the help is long enough
784 already. */
785
786 print_gdb_version (gdb_stdout);
787 /* Make sure the output gets printed. */
788 wrap_here ("");
789 printf_filtered ("\n");
790
791 /* But don't use *_filtered here. We don't want to prompt for continue
792 no matter how small the screen or how much we're going to print. */
793 fputs_unfiltered ("\
794 This is the GNU debugger. Usage:\n\
795 gdb [options] [executable-file [core-file or process-id]]\n\
796 Options:\n\
797 --help Print this message.\n\
798 --quiet Do not print version number on startup.\n\
799 --fullname Output information used by emacs-GDB interface.\n\
800 --epoch Output information used by epoch emacs-GDB interface.\n\
801 --batch Exit after processing options.\n\
802 --nx Do not read .gdbinit file.\n\
803 --tty=TTY Use TTY for input/output by the program being debugged.\n\
804 --cd=DIR Change current directory to DIR.\n\
805 --directory=DIR Search for source files in DIR.\n\
806 --command=FILE Execute GDB commands from FILE.\n\
807 --symbols=SYMFILE Read symbols from SYMFILE.\n\
808 --exec=EXECFILE Use EXECFILE as the executable.\n\
809 --se=FILE Use FILE as symbol file and executable file.\n\
810 --core=COREFILE Analyze the core dump COREFILE.\n\
811 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
812 --mapped Use mapped symbol files if supported on this system.\n\
813 --readnow Fully read symbol files on first access.\n\
814 ", gdb_stdout);
815 #ifdef ADDITIONAL_OPTION_HELP
816 fputs_unfiltered (ADDITIONAL_OPTION_HELP, gdb_stdout);
817 #endif
818 fputs_unfiltered ("\n\
819 For more information, type \"help\" from within GDB, or consult the\n\
820 GDB manual (available as on-line info or a printed manual).\n", gdb_stdout);
821 exit (0);
822 }
823
824 if (!quiet)
825 {
826 /* Print all the junk at the top, with trailing "..." if we are about
827 to read a symbol file (possibly slowly). */
828 print_gnu_advertisement ();
829 print_gdb_version (gdb_stdout);
830 if (symarg)
831 printf_filtered ("..");
832 wrap_here("");
833 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
834 }
835
836 error_pre_print = "\n\n";
837 /* We may get more than one warning, don't double space all of them... */
838 warning_pre_print = "\nwarning: ";
839
840 /* We need a default language for parsing expressions, so simple things like
841 "set width 0" won't fail if no language is explicitly set in a config file
842 or implicitly set by reading an executable during startup. */
843 set_language (language_c);
844 expected_language = current_language; /* don't warn about the change. */
845
846 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
847 *before* all the command line arguments are processed; it sets
848 global parameters, which are independent of what file you are
849 debugging or what directory you are in. */
850 homedir = getenv ("HOME");
851 if (homedir)
852 {
853 homeinit = (char *) alloca (strlen (getenv ("HOME")) +
854 strlen (gdbinit) + 10);
855 strcpy (homeinit, getenv ("HOME"));
856 strcat (homeinit, "/");
857 strcat (homeinit, gdbinit);
858 if (!inhibit_gdbinit && access (homeinit, R_OK) == 0)
859 {
860 if (!SET_TOP_LEVEL ())
861 source_command (homeinit, 0);
862 }
863 do_cleanups (ALL_CLEANUPS);
864
865 /* Do stats; no need to do them elsewhere since we'll only
866 need them if homedir is set. Make sure that they are
867 zero in case one of them fails (this guarantees that they
868 won't match if either exists). */
869
870 memset (&homebuf, 0, sizeof (struct stat));
871 memset (&cwdbuf, 0, sizeof (struct stat));
872
873 stat (homeinit, &homebuf);
874 stat (gdbinit, &cwdbuf); /* We'll only need this if
875 homedir was set. */
876 }
877
878 /* Now perform all the actions indicated by the arguments. */
879 if (cdarg != NULL)
880 {
881 if (!SET_TOP_LEVEL ())
882 {
883 cd_command (cdarg, 0);
884 }
885 }
886 do_cleanups (ALL_CLEANUPS);
887
888 for (i = 0; i < ndir; i++)
889 if (!SET_TOP_LEVEL ())
890 directory_command (dirarg[i], 0);
891 free ((PTR)dirarg);
892 do_cleanups (ALL_CLEANUPS);
893
894 if (execarg != NULL
895 && symarg != NULL
896 && STREQ (execarg, symarg))
897 {
898 /* The exec file and the symbol-file are the same. If we can't open
899 it, better only print one error message. */
900 if (!SET_TOP_LEVEL ())
901 {
902 exec_file_command (execarg, !batch);
903 symbol_file_command (symarg, 0);
904 }
905 }
906 else
907 {
908 if (execarg != NULL)
909 if (!SET_TOP_LEVEL ())
910 exec_file_command (execarg, !batch);
911 if (symarg != NULL)
912 if (!SET_TOP_LEVEL ())
913 symbol_file_command (symarg, 0);
914 }
915 do_cleanups (ALL_CLEANUPS);
916
917 /* After the symbol file has been read, print a newline to get us
918 beyond the copyright line... But errors should still set off
919 the error message with a (single) blank line. */
920 if (!quiet)
921 printf_filtered ("\n");
922 error_pre_print = "\n";
923 warning_pre_print = "\nwarning: ";
924
925 if (corearg != NULL)
926 if (!SET_TOP_LEVEL ())
927 core_file_command (corearg, !batch);
928 else if (isdigit (corearg[0]) && !SET_TOP_LEVEL ())
929 attach_command (corearg, !batch);
930 do_cleanups (ALL_CLEANUPS);
931
932 if (ttyarg != NULL)
933 if (!SET_TOP_LEVEL ())
934 tty_command (ttyarg, !batch);
935 do_cleanups (ALL_CLEANUPS);
936
937 #ifdef ADDITIONAL_OPTION_HANDLER
938 ADDITIONAL_OPTION_HANDLER;
939 #endif
940
941 /* Error messages should no longer be distinguished with extra output. */
942 error_pre_print = 0;
943 warning_pre_print = "warning: ";
944
945 /* Read the .gdbinit file in the current directory, *if* it isn't
946 the same as the $HOME/.gdbinit file (it should exist, also). */
947
948 if (!homedir
949 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
950 if (!inhibit_gdbinit && access (gdbinit, R_OK) == 0)
951 {
952 if (!SET_TOP_LEVEL ())
953 source_command (gdbinit, 0);
954 }
955 do_cleanups (ALL_CLEANUPS);
956
957 for (i = 0; i < ncmd; i++)
958 {
959 if (!SET_TOP_LEVEL ())
960 {
961 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
962 read_command_file (stdin);
963 else
964 source_command (cmdarg[i], !batch);
965 do_cleanups (ALL_CLEANUPS);
966 }
967 }
968 free ((PTR)cmdarg);
969
970 /* Read in the old history after all the command files have been read. */
971 init_history();
972
973 if (batch)
974 {
975 /* We have hit the end of the batch file. */
976 exit (0);
977 }
978
979 /* Do any host- or target-specific hacks. This is used for i960 targets
980 to force the user to set a nindy target and spec its parameters. */
981
982 #ifdef BEFORE_MAIN_LOOP_HOOK
983 BEFORE_MAIN_LOOP_HOOK;
984 #endif
985
986 /* The command loop. */
987
988 while (1)
989 {
990 if (!SET_TOP_LEVEL ())
991 {
992 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
993 command_loop ();
994 quit_command ((char *)0, instream == stdin);
995 }
996 }
997 /* No exit -- exit is through quit_command. */
998 }
999
1000 void
1001 execute_user_command (c, args)
1002 struct cmd_list_element *c;
1003 char *args;
1004 {
1005 register struct command_line *cmdlines;
1006 struct cleanup *old_chain;
1007
1008 if (args)
1009 error ("User-defined commands cannot take arguments.");
1010
1011 cmdlines = c->user_commands;
1012 if (cmdlines == 0)
1013 /* Null command */
1014 return;
1015
1016 /* Set the instream to 0, indicating execution of a
1017 user-defined function. */
1018 old_chain = make_cleanup (source_cleanup, instream);
1019 instream = (FILE *) 0;
1020 while (cmdlines)
1021 {
1022 execute_command (cmdlines->line, 0);
1023 cmdlines = cmdlines->next;
1024 }
1025 do_cleanups (old_chain);
1026 }
1027
1028 /* Execute the line P as a command.
1029 Pass FROM_TTY as second argument to the defining function. */
1030
1031 void
1032 execute_command (p, from_tty)
1033 char *p;
1034 int from_tty;
1035 {
1036 register struct cmd_list_element *c;
1037 register enum language flang;
1038 static int warned = 0;
1039
1040 free_all_values ();
1041
1042 /* This can happen when command_line_input hits end of file. */
1043 if (p == NULL)
1044 return;
1045
1046 while (*p == ' ' || *p == '\t') p++;
1047 if (*p)
1048 {
1049 char *arg;
1050
1051 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1052 /* Pass null arg rather than an empty one. */
1053 arg = *p ? p : 0;
1054
1055 /* If this command has been hooked, run the hook first. */
1056 if (c->hook)
1057 execute_user_command (c->hook, (char *)0);
1058
1059 if (c->class == class_user)
1060 execute_user_command (c, arg);
1061 else if (c->type == set_cmd || c->type == show_cmd)
1062 do_setshow_command (arg, from_tty & caution, c);
1063 else if (c->function.cfunc == NO_FUNCTION)
1064 error ("That is not a command, just a help topic.");
1065 else
1066 (*c->function.cfunc) (arg, from_tty & caution);
1067 }
1068
1069 /* Tell the user if the language has changed (except first time). */
1070 if (current_language != expected_language)
1071 {
1072 if (language_mode == language_mode_auto) {
1073 language_info (1); /* Print what changed. */
1074 }
1075 warned = 0;
1076 }
1077
1078 /* Warn the user if the working language does not match the
1079 language of the current frame. Only warn the user if we are
1080 actually running the program, i.e. there is a stack. */
1081 /* FIXME: This should be cacheing the frame and only running when
1082 the frame changes. */
1083 if (target_has_stack)
1084 {
1085 flang = get_frame_language ();
1086 if (!warned
1087 && flang != language_unknown
1088 && flang != current_language->la_language)
1089 {
1090 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1091 warned = 1;
1092 }
1093 }
1094 }
1095
1096 /* ARGSUSED */
1097 static void
1098 command_loop_marker (foo)
1099 int foo;
1100 {
1101 }
1102
1103 /* Read commands from `instream' and execute them
1104 until end of file or error reading instream. */
1105 static void
1106 command_loop ()
1107 {
1108 struct cleanup *old_chain;
1109 char *command;
1110 int stdin_is_tty = ISATTY (stdin);
1111
1112 while (!feof (instream))
1113 {
1114 if (window_hook && instream == stdin)
1115 (*window_hook) (instream, prompt);
1116
1117 quit_flag = 0;
1118 if (instream == stdin && stdin_is_tty)
1119 reinitialize_more_filter ();
1120 old_chain = make_cleanup (command_loop_marker, 0);
1121 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1122 instream == stdin);
1123 if (command == 0)
1124 return;
1125 execute_command (command, instream == stdin);
1126 /* Do any commands attached to breakpoint we stopped at. */
1127 bpstat_do_actions (&stop_bpstat);
1128 do_cleanups (old_chain);
1129 }
1130 }
1131 \f
1132 /* Commands call this if they do not want to be repeated by null lines. */
1133
1134 void
1135 dont_repeat ()
1136 {
1137 if (server_command)
1138 return;
1139
1140 /* If we aren't reading from standard input, we are saving the last
1141 thing read from stdin in line and don't want to delete it. Null lines
1142 won't repeat here in any case. */
1143 if (instream == stdin)
1144 *line = 0;
1145 }
1146 \f
1147 /* Read a line from the stream "instream" without command line editing.
1148
1149 It prints PRROMPT once at the start.
1150 Action is compatible with "readline", e.g. space for the result is
1151 malloc'd and should be freed by the caller.
1152
1153 A NULL return means end of file. */
1154 char *
1155 gdb_readline (prrompt)
1156 char *prrompt;
1157 {
1158 int c;
1159 char *result;
1160 int input_index = 0;
1161 int result_size = 80;
1162
1163 if (prrompt)
1164 {
1165 /* Don't use a _filtered function here. It causes the assumed
1166 character position to be off, since the newline we read from
1167 the user is not accounted for. */
1168 fputs_unfiltered (prrompt, gdb_stdout);
1169 gdb_flush (gdb_stdout);
1170 }
1171
1172 result = (char *) xmalloc (result_size);
1173
1174 while (1)
1175 {
1176 /* Read from stdin if we are executing a user defined command.
1177 This is the right thing for prompt_for_continue, at least. */
1178 c = fgetc (instream ? instream : stdin);
1179
1180 if (c == EOF)
1181 {
1182 if (input_index > 0)
1183 /* The last line does not end with a newline. Return it, and
1184 if we are called again fgetc will still return EOF and
1185 we'll return NULL then. */
1186 break;
1187 free (result);
1188 return NULL;
1189 }
1190
1191 if (c == '\n')
1192 break;
1193
1194 result[input_index++] = c;
1195 while (input_index >= result_size)
1196 {
1197 result_size *= 2;
1198 result = (char *) xrealloc (result, result_size);
1199 }
1200 }
1201
1202 result[input_index++] = '\0';
1203 return result;
1204 }
1205
1206 /* Variables which control command line editing and history
1207 substitution. These variables are given default values at the end
1208 of this file. */
1209 static int command_editing_p;
1210 static int history_expansion_p;
1211 static int write_history_p;
1212 static int history_size;
1213 static char *history_filename;
1214
1215 /* readline uses the word breaks for two things:
1216 (1) In figuring out where to point the TEXT parameter to the
1217 rl_completion_entry_function. Since we don't use TEXT for much,
1218 it doesn't matter a lot what the word breaks are for this purpose, but
1219 it does affect how much stuff M-? lists.
1220 (2) If one of the matches contains a word break character, readline
1221 will quote it. That's why we switch between
1222 gdb_completer_word_break_characters and
1223 gdb_completer_command_word_break_characters. I'm not sure when
1224 we need this behavior (perhaps for funky characters in C++ symbols?). */
1225
1226 /* Variables which are necessary for fancy command line editing. */
1227 char *gdb_completer_word_break_characters =
1228 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1229
1230 /* When completing on command names, we remove '-' from the list of
1231 word break characters, since we use it in command names. If the
1232 readline library sees one in any of the current completion strings,
1233 it thinks that the string needs to be quoted and automatically supplies
1234 a leading quote. */
1235 char *gdb_completer_command_word_break_characters =
1236 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1237
1238 /* Characters that can be used to quote completion strings. Note that we
1239 can't include '"' because the gdb C parser treats such quoted sequences
1240 as strings. */
1241 char *gdb_completer_quote_characters =
1242 "'";
1243
1244 /* Functions that are used as part of the fancy command line editing. */
1245
1246 /* This can be used for functions which don't want to complete on symbols
1247 but don't want to complete on anything else either. */
1248 /* ARGSUSED */
1249 char **
1250 noop_completer (text, prefix)
1251 char *text;
1252 char *prefix;
1253 {
1254 return NULL;
1255 }
1256
1257 /* Complete on filenames. */
1258 char **
1259 filename_completer (text, word)
1260 char *text;
1261 char *word;
1262 {
1263 /* From readline. */
1264 extern char *filename_completion_function ();
1265 int subsequent_name;
1266 char **return_val;
1267 int return_val_used;
1268 int return_val_alloced;
1269
1270 return_val_used = 0;
1271 /* Small for testing. */
1272 return_val_alloced = 1;
1273 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1274
1275 subsequent_name = 0;
1276 while (1)
1277 {
1278 char *p;
1279 p = filename_completion_function (text, subsequent_name);
1280 if (return_val_used >= return_val_alloced)
1281 {
1282 return_val_alloced *= 2;
1283 return_val =
1284 (char **) xrealloc (return_val,
1285 return_val_alloced * sizeof (char *));
1286 }
1287 if (p == NULL)
1288 {
1289 return_val[return_val_used++] = p;
1290 break;
1291 }
1292 /* Like emacs, don't complete on old versions. Especially useful
1293 in the "source" command. */
1294 if (p[strlen (p) - 1] == '~')
1295 continue;
1296
1297 {
1298 char *q;
1299 if (word == text)
1300 /* Return exactly p. */
1301 return_val[return_val_used++] = p;
1302 else if (word > text)
1303 {
1304 /* Return some portion of p. */
1305 q = xmalloc (strlen (p) + 5);
1306 strcpy (q, p + (word - text));
1307 return_val[return_val_used++] = q;
1308 free (p);
1309 }
1310 else
1311 {
1312 /* Return some of TEXT plus p. */
1313 q = xmalloc (strlen (p) + (text - word) + 5);
1314 strncpy (q, word, text - word);
1315 q[text - word] = '\0';
1316 strcat (q, p);
1317 return_val[return_val_used++] = q;
1318 free (p);
1319 }
1320 }
1321 subsequent_name = 1;
1322 }
1323 #if 0
1324 /* There is no way to do this just long enough to affect quote inserting
1325 without also affecting the next completion. This should be fixed in
1326 readline. FIXME. */
1327 /* Insure that readline does the right thing
1328 with respect to inserting quotes. */
1329 rl_completer_word_break_characters = "";
1330 #endif
1331 return return_val;
1332 }
1333
1334 /* Here are some useful test cases for completion. FIXME: These should
1335 be put in the test suite. They should be tested with both M-? and TAB.
1336
1337 "show output-" "radix"
1338 "show output" "-radix"
1339 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1340 "p " ambiguous (all symbols)
1341 "info t foo" no completions
1342 "info t " no completions
1343 "info t" ambiguous ("info target", "info terminal", etc.)
1344 "info ajksdlfk" no completions
1345 "info ajksdlfk " no completions
1346 "info" " "
1347 "info " ambiguous (all info commands)
1348 "p \"a" no completions (string constant)
1349 "p 'a" ambiguous (all symbols starting with a)
1350 "p b-a" ambiguous (all symbols starting with a)
1351 "p b-" ambiguous (all symbols)
1352 "file Make" "file" (word break hard to screw up here)
1353 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1354 */
1355
1356 /* Generate completions one by one for the completer. Each time we are
1357 called return another potential completion to the caller. The function
1358 is misnamed; it just completes on commands or passes the buck to the
1359 command's completer function; the stuff specific to symbol completion
1360 is in make_symbol_completion_list.
1361
1362 TEXT is readline's idea of the "word" we are looking at; we don't really
1363 like readline's ideas about word breaking so we ignore it.
1364
1365 MATCHES is the number of matches that have currently been collected from
1366 calling this completion function. When zero, then we need to initialize,
1367 otherwise the initialization has already taken place and we can just
1368 return the next potential completion string.
1369
1370 Returns NULL if there are no more completions, else a pointer to a string
1371 which is a possible completion.
1372
1373 RL_LINE_BUFFER is available to be looked at; it contains the entire text
1374 of the line. RL_POINT is the offset in that line of the cursor. You
1375 should pretend that the line ends at RL_POINT. */
1376
1377 static char *
1378 symbol_completion_function (text, matches)
1379 char *text;
1380 int matches;
1381 {
1382 static char **list = (char **)NULL; /* Cache of completions */
1383 static int index; /* Next cached completion */
1384 char *output = NULL;
1385 char *tmp_command, *p;
1386 /* Pointer within tmp_command which corresponds to text. */
1387 char *word;
1388 struct cmd_list_element *c, *result_list;
1389
1390 if (matches == 0)
1391 {
1392 /* The caller is beginning to accumulate a new set of completions, so
1393 we need to find all of them now, and cache them for returning one at
1394 a time on future calls. */
1395
1396 if (list)
1397 {
1398 /* Free the storage used by LIST, but not by the strings inside.
1399 This is because rl_complete_internal () frees the strings. */
1400 free ((PTR)list);
1401 }
1402 list = 0;
1403 index = 0;
1404
1405 /* Choose the default set of word break characters to break completions.
1406 If we later find out that we are doing completions on command strings
1407 (as opposed to strings supplied by the individual command completer
1408 functions, which can be any string) then we will switch to the
1409 special word break set for command strings, which leaves out the
1410 '-' character used in some commands. */
1411
1412 rl_completer_word_break_characters =
1413 gdb_completer_word_break_characters;
1414
1415 /* Decide whether to complete on a list of gdb commands or on symbols. */
1416 tmp_command = (char *) alloca (rl_point + 1);
1417 p = tmp_command;
1418
1419 strncpy (tmp_command, rl_line_buffer, rl_point);
1420 tmp_command[rl_point] = '\0';
1421 /* Since text always contains some number of characters leading up
1422 to rl_point, we can find the equivalent position in tmp_command
1423 by subtracting that many characters from the end of tmp_command. */
1424 word = tmp_command + rl_point - strlen (text);
1425
1426 if (rl_point == 0)
1427 {
1428 /* An empty line we want to consider ambiguous; that is, it
1429 could be any command. */
1430 c = (struct cmd_list_element *) -1;
1431 result_list = 0;
1432 }
1433 else
1434 {
1435 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1436 }
1437
1438 /* Move p up to the next interesting thing. */
1439 while (*p == ' ' || *p == '\t')
1440 {
1441 p++;
1442 }
1443
1444 if (!c)
1445 {
1446 /* It is an unrecognized command. So there are no
1447 possible completions. */
1448 list = NULL;
1449 }
1450 else if (c == (struct cmd_list_element *) -1)
1451 {
1452 char *q;
1453
1454 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1455 doesn't advance over that thing itself. Do so now. */
1456 q = p;
1457 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1458 ++q;
1459 if (q != tmp_command + rl_point)
1460 {
1461 /* There is something beyond the ambiguous
1462 command, so there are no possible completions. For
1463 example, "info t " or "info t foo" does not complete
1464 to anything, because "info t" can be "info target" or
1465 "info terminal". */
1466 list = NULL;
1467 }
1468 else
1469 {
1470 /* We're trying to complete on the command which was ambiguous.
1471 This we can deal with. */
1472 if (result_list)
1473 {
1474 list = complete_on_cmdlist (*result_list->prefixlist, p,
1475 word);
1476 }
1477 else
1478 {
1479 list = complete_on_cmdlist (cmdlist, p, word);
1480 }
1481 /* Insure that readline does the right thing with respect to
1482 inserting quotes. */
1483 rl_completer_word_break_characters =
1484 gdb_completer_command_word_break_characters;
1485 }
1486 }
1487 else
1488 {
1489 /* We've recognized a full command. */
1490
1491 if (p == tmp_command + rl_point)
1492 {
1493 /* There is no non-whitespace in the line beyond the command. */
1494
1495 if (p[-1] == ' ' || p[-1] == '\t')
1496 {
1497 /* The command is followed by whitespace; we need to complete
1498 on whatever comes after command. */
1499 if (c->prefixlist)
1500 {
1501 /* It is a prefix command; what comes after it is
1502 a subcommand (e.g. "info "). */
1503 list = complete_on_cmdlist (*c->prefixlist, p, word);
1504
1505 /* Insure that readline does the right thing
1506 with respect to inserting quotes. */
1507 rl_completer_word_break_characters =
1508 gdb_completer_command_word_break_characters;
1509 }
1510 else
1511 {
1512 /* It is a normal command; what comes after it is
1513 completed by the command's completer function. */
1514 list = (*c->completer) (p, word);
1515 }
1516 }
1517 else
1518 {
1519 /* The command is not followed by whitespace; we need to
1520 complete on the command itself. e.g. "p" which is a
1521 command itself but also can complete to "print", "ptype"
1522 etc. */
1523 char *q;
1524
1525 /* Find the command we are completing on. */
1526 q = p;
1527 while (q > tmp_command)
1528 {
1529 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1530 --q;
1531 else
1532 break;
1533 }
1534
1535 list = complete_on_cmdlist (result_list, q, word);
1536
1537 /* Insure that readline does the right thing
1538 with respect to inserting quotes. */
1539 rl_completer_word_break_characters =
1540 gdb_completer_command_word_break_characters;
1541 }
1542 }
1543 else
1544 {
1545 /* There is non-whitespace beyond the command. */
1546
1547 if (c->prefixlist && !c->allow_unknown)
1548 {
1549 /* It is an unrecognized subcommand of a prefix command,
1550 e.g. "info adsfkdj". */
1551 list = NULL;
1552 }
1553 else
1554 {
1555 /* It is a normal command. */
1556 list = (*c->completer) (p, word);
1557 }
1558 }
1559 }
1560 }
1561
1562 /* If we found a list of potential completions during initialization then
1563 dole them out one at a time. The vector of completions is NULL
1564 terminated, so after returning the last one, return NULL (and continue
1565 to do so) each time we are called after that, until a new list is
1566 available. */
1567
1568 if (list)
1569 {
1570 output = list[index];
1571 if (output)
1572 {
1573 index++;
1574 }
1575 }
1576
1577 #if 0
1578 /* Can't do this because readline hasn't yet checked the word breaks
1579 for figuring out whether to insert a quote. */
1580 if (output == NULL)
1581 /* Make sure the word break characters are set back to normal for the
1582 next time that readline tries to complete something. */
1583 rl_completer_word_break_characters =
1584 gdb_completer_word_break_characters;
1585 #endif
1586
1587 return (output);
1588 }
1589
1590 /* Skip over a possibly quoted word (as defined by the quote characters
1591 and word break characters the completer uses). Returns pointer to the
1592 location after the "word". */
1593
1594 char *
1595 skip_quoted (str)
1596 char *str;
1597 {
1598 char quote_char = '\0';
1599 char *scan;
1600
1601 for (scan = str; *scan != '\0'; scan++)
1602 {
1603 if (quote_char != '\0')
1604 {
1605 /* Ignore everything until the matching close quote char */
1606 if (*scan == quote_char)
1607 {
1608 /* Found matching close quote. */
1609 scan++;
1610 break;
1611 }
1612 }
1613 else if (strchr (gdb_completer_quote_characters, *scan))
1614 {
1615 /* Found start of a quoted string. */
1616 quote_char = *scan;
1617 }
1618 else if (strchr (gdb_completer_word_break_characters, *scan))
1619 {
1620 break;
1621 }
1622 }
1623 return (scan);
1624 }
1625
1626 \f
1627 #ifdef STOP_SIGNAL
1628 static void
1629 stop_sig (signo)
1630 int signo;
1631 {
1632 #if STOP_SIGNAL == SIGTSTP
1633 signal (SIGTSTP, SIG_DFL);
1634 sigsetmask (0);
1635 kill (getpid (), SIGTSTP);
1636 signal (SIGTSTP, stop_sig);
1637 #else
1638 signal (STOP_SIGNAL, stop_sig);
1639 #endif
1640 printf_unfiltered ("%s", prompt);
1641 gdb_flush (gdb_stdout);
1642
1643 /* Forget about any previous command -- null line now will do nothing. */
1644 dont_repeat ();
1645 }
1646 #endif /* STOP_SIGNAL */
1647
1648 /* Initialize signal handlers. */
1649 static void
1650 do_nothing (signo)
1651 int signo;
1652 {
1653 }
1654
1655 static void
1656 init_signals ()
1657 {
1658 signal (SIGINT, request_quit);
1659
1660 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1661 passed to the inferior, which we don't want. It would be
1662 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1663 on BSD4.3 systems using vfork, that can affect the
1664 GDB process as well as the inferior (the signal handling tables
1665 might be in memory, shared between the two). Since we establish
1666 a handler for SIGQUIT, when we call exec it will set the signal
1667 to SIG_DFL for us. */
1668 signal (SIGQUIT, do_nothing);
1669 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1670 signal (SIGHUP, disconnect);
1671 signal (SIGFPE, float_handler);
1672
1673 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1674 signal (SIGWINCH, SIGWINCH_HANDLER);
1675 #endif
1676 }
1677 \f
1678 /* Read one line from the command input stream `instream'
1679 into the local static buffer `linebuffer' (whose current length
1680 is `linelength').
1681 The buffer is made bigger as necessary.
1682 Returns the address of the start of the line.
1683
1684 NULL is returned for end of file.
1685
1686 *If* the instream == stdin & stdin is a terminal, the line read
1687 is copied into the file line saver (global var char *line,
1688 length linesize) so that it can be duplicated.
1689
1690 This routine either uses fancy command line editing or
1691 simple input as the user has requested. */
1692
1693 char *
1694 command_line_input (prrompt, repeat)
1695 char *prrompt;
1696 int repeat;
1697 {
1698 static char *linebuffer = 0;
1699 static unsigned linelength = 0;
1700 register char *p;
1701 char *p1;
1702 char *rl;
1703 char *local_prompt = prrompt;
1704 register int c;
1705 char *nline;
1706 char got_eof = 0;
1707
1708 if (annotation_level > 1 && prrompt != NULL)
1709 {
1710 local_prompt = alloca (strlen (prrompt) + 20);
1711 strcpy (local_prompt, prrompt);
1712 strcat (local_prompt, "\n\032\032prompt\n");
1713 }
1714
1715 if (linebuffer == 0)
1716 {
1717 linelength = 80;
1718 linebuffer = (char *) xmalloc (linelength);
1719 }
1720
1721 p = linebuffer;
1722
1723 /* Control-C quits instantly if typed while in this loop
1724 since it should not wait until the user types a newline. */
1725 immediate_quit++;
1726 #ifdef STOP_SIGNAL
1727 if (job_control)
1728 signal (STOP_SIGNAL, stop_sig);
1729 #endif
1730
1731 while (1)
1732 {
1733 /* Reports are that some Sys V's don't flush gdb_stdout/err on reads
1734 from stdin, when stdin/out are sockets rather than ttys. So we
1735 have to do it ourselves, to make emacs-gdb and xxgdb work.
1736 On other machines, doing this once per input should be a cheap nop. */
1737 gdb_flush (gdb_stdout);
1738 gdb_flush (gdb_stderr);
1739
1740 if (source_file_name != NULL)
1741 {
1742 ++source_line_number;
1743 sprintf (source_error,
1744 "%s%s:%d: Error in sourced command file:\n",
1745 source_pre_error,
1746 source_file_name,
1747 source_line_number);
1748 error_pre_print = source_error;
1749 }
1750
1751 if (annotation_level > 1 && instream == stdin)
1752 printf_unfiltered ("\n\032\032pre-prompt\n");
1753
1754 /* Don't use fancy stuff if not talking to stdin. */
1755 if (command_editing_p && instream == stdin
1756 && ISATTY (instream))
1757 rl = readline (local_prompt);
1758 else
1759 rl = gdb_readline (local_prompt);
1760
1761 if (annotation_level > 1 && instream == stdin)
1762 printf_unfiltered ("\n\032\032post-prompt\n");
1763
1764 if (!rl || rl == (char *) EOF)
1765 {
1766 got_eof = 1;
1767 break;
1768 }
1769 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1770 {
1771 linelength = strlen(rl) + 1 + (p - linebuffer);
1772 nline = (char *) xrealloc (linebuffer, linelength);
1773 p += nline - linebuffer;
1774 linebuffer = nline;
1775 }
1776 p1 = rl;
1777 /* Copy line. Don't copy null at end. (Leaves line alone
1778 if this was just a newline) */
1779 while (*p1)
1780 *p++ = *p1++;
1781
1782 free (rl); /* Allocated in readline. */
1783
1784 if (p == linebuffer || *(p - 1) != '\\')
1785 break;
1786
1787 p--; /* Put on top of '\'. */
1788 local_prompt = (char *) 0;
1789 }
1790
1791 #ifdef STOP_SIGNAL
1792 if (job_control)
1793 signal (STOP_SIGNAL, SIG_DFL);
1794 #endif
1795 immediate_quit--;
1796
1797 if (got_eof)
1798 return NULL;
1799
1800 #define SERVER_COMMAND_LENGTH 7
1801 server_command =
1802 (p - linebuffer > SERVER_COMMAND_LENGTH)
1803 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1804 if (server_command)
1805 {
1806 /* Note that we don't set `line'. Between this and the check in
1807 dont_repeat, this insures that repeating will still do the
1808 right thing. */
1809 *p = '\0';
1810 return linebuffer + SERVER_COMMAND_LENGTH;
1811 }
1812
1813 /* Do history expansion if that is wished. */
1814 if (history_expansion_p && instream == stdin
1815 && ISATTY (instream))
1816 {
1817 char *history_value;
1818 int expanded;
1819
1820 *p = '\0'; /* Insert null now. */
1821 expanded = history_expand (linebuffer, &history_value);
1822 if (expanded)
1823 {
1824 /* Print the changes. */
1825 printf_unfiltered ("%s\n", history_value);
1826
1827 /* If there was an error, call this function again. */
1828 if (expanded < 0)
1829 {
1830 free (history_value);
1831 return command_line_input (prrompt, repeat);
1832 }
1833 if (strlen (history_value) > linelength)
1834 {
1835 linelength = strlen (history_value) + 1;
1836 linebuffer = (char *) xrealloc (linebuffer, linelength);
1837 }
1838 strcpy (linebuffer, history_value);
1839 p = linebuffer + strlen(linebuffer);
1840 free (history_value);
1841 }
1842 }
1843
1844 /* If we just got an empty line, and that is supposed
1845 to repeat the previous command, return the value in the
1846 global buffer. */
1847 if (repeat)
1848 {
1849 if (p == linebuffer)
1850 return line;
1851 p1 = linebuffer;
1852 while (*p1 == ' ' || *p1 == '\t')
1853 p1++;
1854 if (!*p1)
1855 return line;
1856 }
1857
1858 *p = 0;
1859
1860 /* Add line to history if appropriate. */
1861 if (instream == stdin
1862 && ISATTY (stdin) && *linebuffer)
1863 add_history (linebuffer);
1864
1865 /* Note: lines consisting soley of comments are added to the command
1866 history. This is useful when you type a command, and then
1867 realize you don't want to execute it quite yet. You can comment
1868 out the command and then later fetch it from the value history
1869 and remove the '#'. The kill ring is probably better, but some
1870 people are in the habit of commenting things out. */
1871 p1 = linebuffer;
1872 while ((c = *p1++) != '\0')
1873 {
1874 if (c == '"')
1875 while ((c = *p1++) != '"')
1876 {
1877 /* Make sure an escaped '"' doesn't make us think the string
1878 is ended. */
1879 if (c == '\\')
1880 parse_escape (&p1);
1881 if (c == '\0')
1882 break;
1883 }
1884 else if (c == '\'')
1885 while ((c = *p1++) != '\'')
1886 {
1887 /* Make sure an escaped '\'' doesn't make us think the string
1888 is ended. */
1889 if (c == '\\')
1890 parse_escape (&p1);
1891 if (c == '\0')
1892 break;
1893 }
1894 else if (c == '#')
1895 {
1896 /* Found a comment. */
1897 p1[-1] = '\0';
1898 break;
1899 }
1900 }
1901
1902 /* Save into global buffer if appropriate. */
1903 if (repeat)
1904 {
1905 if (linelength > linesize)
1906 {
1907 line = xrealloc (line, linelength);
1908 linesize = linelength;
1909 }
1910 strcpy (line, linebuffer);
1911 return line;
1912 }
1913
1914 return linebuffer;
1915 }
1916 \f
1917 /* Read lines from the input stream
1918 and accumulate them in a chain of struct command_line's
1919 which is then returned. */
1920
1921 struct command_line *
1922 read_command_lines ()
1923 {
1924 struct command_line *first = 0;
1925 register struct command_line *next, *tail = 0;
1926 register char *p, *p1;
1927 struct cleanup *old_chain = 0;
1928
1929 while (1)
1930 {
1931 dont_repeat ();
1932 p = command_line_input ((char *) NULL, instream == stdin);
1933 if (p == NULL)
1934 /* Treat end of file like "end". */
1935 break;
1936
1937 /* Remove leading and trailing blanks. */
1938 while (*p == ' ' || *p == '\t') p++;
1939 p1 = p + strlen (p);
1940 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) p1--;
1941
1942 /* Is this "end"? */
1943 if (p1 - p == 3 && !strncmp (p, "end", 3))
1944 break;
1945
1946 /* No => add this line to the chain of command lines. */
1947 next = (struct command_line *) xmalloc (sizeof (struct command_line));
1948 next->line = savestring (p, p1 - p);
1949 next->next = 0;
1950 if (tail)
1951 {
1952 tail->next = next;
1953 }
1954 else
1955 {
1956 /* We just read the first line.
1957 From now on, arrange to throw away the lines we have
1958 if we quit or get an error while inside this function. */
1959 first = next;
1960 old_chain = make_cleanup (free_command_lines, &first);
1961 }
1962 tail = next;
1963 }
1964
1965 dont_repeat ();
1966
1967 /* Now we are about to return the chain to our caller,
1968 so freeing it becomes his responsibility. */
1969 if (first)
1970 discard_cleanups (old_chain);
1971 return first;
1972 }
1973
1974 /* Free a chain of struct command_line's. */
1975
1976 void
1977 free_command_lines (lptr)
1978 struct command_line **lptr;
1979 {
1980 register struct command_line *l = *lptr;
1981 register struct command_line *next;
1982
1983 while (l)
1984 {
1985 next = l->next;
1986 free (l->line);
1987 free ((PTR)l);
1988 l = next;
1989 }
1990 }
1991 \f
1992 /* Add an element to the list of info subcommands. */
1993
1994 void
1995 add_info (name, fun, doc)
1996 char *name;
1997 void (*fun) PARAMS ((char *, int));
1998 char *doc;
1999 {
2000 add_cmd (name, no_class, fun, doc, &infolist);
2001 }
2002
2003 /* Add an alias to the list of info subcommands. */
2004
2005 void
2006 add_info_alias (name, oldname, abbrev_flag)
2007 char *name;
2008 char *oldname;
2009 int abbrev_flag;
2010 {
2011 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2012 }
2013
2014 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2015 Therefore, its own definition is called only for "info" with no args. */
2016
2017 /* ARGSUSED */
2018 static void
2019 info_command (arg, from_tty)
2020 char *arg;
2021 int from_tty;
2022 {
2023 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2024 help_list (infolist, "info ", -1, gdb_stdout);
2025 }
2026
2027 /* The "complete" command is used by Emacs to implement completion. */
2028
2029 /* ARGSUSED */
2030 static void
2031 complete_command (arg, from_tty)
2032 char *arg;
2033 int from_tty;
2034 {
2035 int i;
2036 char *completion;
2037
2038 dont_repeat ();
2039
2040 if (arg == NULL)
2041 {
2042 rl_line_buffer[0] = '\0';
2043 rl_point = 0;
2044 }
2045 else
2046 {
2047 strcpy (rl_line_buffer, arg);
2048 rl_point = strlen (arg);
2049 }
2050
2051 for (completion = symbol_completion_function (rl_line_buffer, i = 0);
2052 completion;
2053 completion = symbol_completion_function (rl_line_buffer, ++i))
2054 printf_unfiltered ("%s\n", completion);
2055 }
2056
2057 /* The "show" command with no arguments shows all the settings. */
2058
2059 /* ARGSUSED */
2060 static void
2061 show_command (arg, from_tty)
2062 char *arg;
2063 int from_tty;
2064 {
2065 cmd_show_list (showlist, from_tty, "");
2066 }
2067 \f
2068 /* Add an element to the list of commands. */
2069
2070 void
2071 add_com (name, class, fun, doc)
2072 char *name;
2073 enum command_class class;
2074 void (*fun) PARAMS ((char *, int));
2075 char *doc;
2076 {
2077 add_cmd (name, class, fun, doc, &cmdlist);
2078 }
2079
2080 /* Add an alias or abbreviation command to the list of commands. */
2081
2082 void
2083 add_com_alias (name, oldname, class, abbrev_flag)
2084 char *name;
2085 char *oldname;
2086 enum command_class class;
2087 int abbrev_flag;
2088 {
2089 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2090 }
2091
2092 void
2093 error_no_arg (why)
2094 char *why;
2095 {
2096 error ("Argument required (%s).", why);
2097 }
2098
2099 /* ARGSUSED */
2100 static void
2101 help_command (command, from_tty)
2102 char *command;
2103 int from_tty; /* Ignored */
2104 {
2105 help_cmd (command, gdb_stdout);
2106 }
2107 \f
2108 static void
2109 validate_comname (comname)
2110 char *comname;
2111 {
2112 register char *p;
2113
2114 if (comname == 0)
2115 error_no_arg ("name of command to define");
2116
2117 p = comname;
2118 while (*p)
2119 {
2120 if (!isalnum(*p) && *p != '-')
2121 error ("Junk in argument list: \"%s\"", p);
2122 p++;
2123 }
2124 }
2125
2126 /* This is just a placeholder in the command data structures. */
2127 static void
2128 user_defined_command (ignore, from_tty)
2129 char *ignore;
2130 int from_tty;
2131 {
2132 }
2133
2134 static void
2135 define_command (comname, from_tty)
2136 char *comname;
2137 int from_tty;
2138 {
2139 register struct command_line *cmds;
2140 register struct cmd_list_element *c, *newc, *hookc = 0;
2141 char *tem = comname;
2142 #define HOOK_STRING "hook-"
2143 #define HOOK_LEN 5
2144
2145 validate_comname (comname);
2146
2147 /* Look it up, and verify that we got an exact match. */
2148 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2149 if (c && !STREQ (comname, c->name))
2150 c = 0;
2151
2152 if (c)
2153 {
2154 if (c->class == class_user || c->class == class_alias)
2155 tem = "Redefine command \"%s\"? ";
2156 else
2157 tem = "Really redefine built-in command \"%s\"? ";
2158 if (!query (tem, c->name))
2159 error ("Command \"%s\" not redefined.", c->name);
2160 }
2161
2162 /* If this new command is a hook, then mark the command which it
2163 is hooking. Note that we allow hooking `help' commands, so that
2164 we can hook the `stop' pseudo-command. */
2165
2166 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2167 {
2168 /* Look up cmd it hooks, and verify that we got an exact match. */
2169 tem = comname+HOOK_LEN;
2170 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2171 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2172 hookc = 0;
2173 if (!hookc)
2174 {
2175 warning ("Your new `%s' command does not hook any existing command.",
2176 comname);
2177 if (!query ("Proceed? ", (char *)0))
2178 error ("Not confirmed.");
2179 }
2180 }
2181
2182 comname = savestring (comname, strlen (comname));
2183
2184 /* If the rest of the commands will be case insensitive, this one
2185 should behave in the same manner. */
2186 for (tem = comname; *tem; tem++)
2187 if (isupper(*tem)) *tem = tolower(*tem);
2188
2189 if (from_tty)
2190 {
2191 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2192 End with a line saying just \"end\".\n", comname);
2193 gdb_flush (gdb_stdout);
2194 }
2195
2196 cmds = read_command_lines ();
2197
2198 if (c && c->class == class_user)
2199 free_command_lines (&c->user_commands);
2200
2201 newc = add_cmd (comname, class_user, user_defined_command,
2202 (c && c->class == class_user)
2203 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2204 newc->user_commands = cmds;
2205
2206 /* If this new command is a hook, then mark both commands as being
2207 tied. */
2208 if (hookc)
2209 {
2210 hookc->hook = newc; /* Target gets hooked. */
2211 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2212 }
2213 }
2214
2215 static void
2216 document_command (comname, from_tty)
2217 char *comname;
2218 int from_tty;
2219 {
2220 struct command_line *doclines;
2221 register struct cmd_list_element *c;
2222 char *tem = comname;
2223
2224 validate_comname (comname);
2225
2226 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2227
2228 if (c->class != class_user)
2229 error ("Command \"%s\" is built-in.", comname);
2230
2231 if (from_tty)
2232 printf_unfiltered ("Type documentation for \"%s\".\n\
2233 End with a line saying just \"end\".\n", comname);
2234
2235 doclines = read_command_lines ();
2236
2237 if (c->doc) free (c->doc);
2238
2239 {
2240 register struct command_line *cl1;
2241 register int len = 0;
2242
2243 for (cl1 = doclines; cl1; cl1 = cl1->next)
2244 len += strlen (cl1->line) + 1;
2245
2246 c->doc = (char *) xmalloc (len + 1);
2247 *c->doc = 0;
2248
2249 for (cl1 = doclines; cl1; cl1 = cl1->next)
2250 {
2251 strcat (c->doc, cl1->line);
2252 if (cl1->next)
2253 strcat (c->doc, "\n");
2254 }
2255 }
2256
2257 free_command_lines (&doclines);
2258 }
2259 \f
2260 static void
2261 print_gnu_advertisement()
2262 {
2263 printf_unfiltered ("\
2264 GDB is free software and you are welcome to distribute copies of it\n\
2265 under certain conditions; type \"show copying\" to see the conditions.\n\
2266 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2267 ");
2268 }
2269
2270 static void
2271 print_gdb_version (stream)
2272 GDB_FILE *stream;
2273 {
2274 fprintf_filtered (stream, "\
2275 GDB %s (%s", version, host_name);
2276
2277 if (!STREQ (host_name, target_name))
2278 fprintf_filtered (stream, " --target %s", target_name);
2279
2280 fprintf_filtered (stream, "), ");
2281 wrap_here("");
2282 fprintf_filtered (stream, "Copyright 1994 Free Software Foundation, Inc.");
2283 }
2284
2285 /* ARGSUSED */
2286 static void
2287 show_version (args, from_tty)
2288 char *args;
2289 int from_tty;
2290 {
2291 immediate_quit++;
2292 print_gnu_advertisement ();
2293 print_gdb_version (gdb_stdout);
2294 printf_filtered ("\n");
2295 immediate_quit--;
2296 }
2297 \f
2298 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2299 is obsolete. */
2300
2301 void
2302 print_prompt ()
2303 {
2304 printf_unfiltered ("%s", prompt);
2305 gdb_flush (gdb_stdout);
2306 }
2307 \f
2308 static void
2309 quit_command (args, from_tty)
2310 char *args;
2311 int from_tty;
2312 {
2313 if (inferior_pid != 0 && target_has_execution)
2314 {
2315 if (attach_flag)
2316 {
2317 if (query ("The program is running. Quit anyway (and detach it)? "))
2318 target_detach (args, from_tty);
2319 else
2320 error ("Not confirmed.");
2321 }
2322 else
2323 {
2324 if (query ("The program is running. Quit anyway (and kill it)? "))
2325 target_kill ();
2326 else
2327 error ("Not confirmed.");
2328 }
2329 }
2330 /* UDI wants this, to kill the TIP. */
2331 target_close (1);
2332
2333 /* Save the history information if it is appropriate to do so. */
2334 if (write_history_p && history_filename)
2335 write_history (history_filename);
2336
2337 exit (0);
2338 }
2339
2340 /* Returns whether GDB is running on a terminal and whether the user
2341 desires that questions be asked of them on that terminal. */
2342
2343 int
2344 input_from_terminal_p ()
2345 {
2346 return gdb_has_a_terminal () && (instream == stdin) & caution;
2347 }
2348 \f
2349 /* ARGSUSED */
2350 static void
2351 pwd_command (args, from_tty)
2352 char *args;
2353 int from_tty;
2354 {
2355 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2356 getcwd (dirbuf, sizeof (dirbuf));
2357
2358 if (!STREQ (dirbuf, current_directory))
2359 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2360 current_directory, dirbuf);
2361 else
2362 printf_unfiltered ("Working directory %s.\n", current_directory);
2363 }
2364
2365 static void
2366 cd_command (dir, from_tty)
2367 char *dir;
2368 int from_tty;
2369 {
2370 int len;
2371 /* Found something other than leading repetitions of "/..". */
2372 int found_real_path;
2373 char *p;
2374
2375 /* If the new directory is absolute, repeat is a no-op; if relative,
2376 repeat might be useful but is more likely to be a mistake. */
2377 dont_repeat ();
2378
2379 if (dir == 0)
2380 error_no_arg ("new working directory");
2381
2382 dir = tilde_expand (dir);
2383 make_cleanup (free, dir);
2384
2385 if (chdir (dir) < 0)
2386 perror_with_name (dir);
2387
2388 len = strlen (dir);
2389 dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
2390 if (dir[0] == '/')
2391 current_directory = dir;
2392 else
2393 {
2394 if (current_directory[0] == '/' && current_directory[1] == '\0')
2395 current_directory = concat (current_directory, dir, NULL);
2396 else
2397 current_directory = concat (current_directory, "/", dir, NULL);
2398 free (dir);
2399 }
2400
2401 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2402
2403 found_real_path = 0;
2404 for (p = current_directory; *p;)
2405 {
2406 if (p[0] == '/' && p[1] == '.' && (p[2] == 0 || p[2] == '/'))
2407 strcpy (p, p + 2);
2408 else if (p[0] == '/' && p[1] == '.' && p[2] == '.'
2409 && (p[3] == 0 || p[3] == '/'))
2410 {
2411 if (found_real_path)
2412 {
2413 /* Search backwards for the directory just before the "/.."
2414 and obliterate it and the "/..". */
2415 char *q = p;
2416 while (q != current_directory && q[-1] != '/')
2417 --q;
2418
2419 if (q == current_directory)
2420 /* current_directory is
2421 a relative pathname ("can't happen"--leave it alone). */
2422 ++p;
2423 else
2424 {
2425 strcpy (q - 1, p + 3);
2426 p = q - 1;
2427 }
2428 }
2429 else
2430 /* We are dealing with leading repetitions of "/..", for example
2431 "/../..", which is the Mach super-root. */
2432 p += 3;
2433 }
2434 else
2435 {
2436 found_real_path = 1;
2437 ++p;
2438 }
2439 }
2440
2441 forget_cached_source_info ();
2442
2443 if (from_tty)
2444 pwd_command ((char *) 0, 1);
2445 }
2446 \f
2447 struct source_cleanup_lines_args {
2448 int old_line;
2449 char *old_file;
2450 char *old_pre_error;
2451 char *old_error_pre_print;
2452 };
2453
2454 static void
2455 source_cleanup_lines (args)
2456 PTR args;
2457 {
2458 struct source_cleanup_lines_args *p =
2459 (struct source_cleanup_lines_args *)args;
2460 source_line_number = p->old_line;
2461 source_file_name = p->old_file;
2462 source_pre_error = p->old_pre_error;
2463 error_pre_print = p->old_error_pre_print;
2464 }
2465
2466 /* ARGSUSED */
2467 static void
2468 source_command (args, from_tty)
2469 char *args;
2470 int from_tty;
2471 {
2472 FILE *stream;
2473 struct cleanup *old_cleanups;
2474 char *file = args;
2475 struct source_cleanup_lines_args old_lines;
2476 int needed_length;
2477
2478 if (file == NULL)
2479 {
2480 error ("source command requires pathname of file to source.");
2481 }
2482
2483 file = tilde_expand (file);
2484 old_cleanups = make_cleanup (free, file);
2485
2486 stream = fopen (file, FOPEN_RT);
2487 if (stream == 0)
2488 perror_with_name (file);
2489
2490 make_cleanup (fclose, stream);
2491
2492 old_lines.old_line = source_line_number;
2493 old_lines.old_file = source_file_name;
2494 old_lines.old_pre_error = source_pre_error;
2495 old_lines.old_error_pre_print = error_pre_print;
2496 make_cleanup (source_cleanup_lines, &old_lines);
2497 source_line_number = 0;
2498 source_file_name = file;
2499 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2500 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2501 make_cleanup (free, source_pre_error);
2502 /* This will get set every time we read a line. So it won't stay "" for
2503 long. */
2504 error_pre_print = "";
2505
2506 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2507 if (source_error_allocated < needed_length)
2508 {
2509 source_error_allocated *= 2;
2510 if (source_error_allocated < needed_length)
2511 source_error_allocated = needed_length;
2512 if (source_error == NULL)
2513 source_error = xmalloc (source_error_allocated);
2514 else
2515 source_error = xrealloc (source_error, source_error_allocated);
2516 }
2517
2518 read_command_file (stream);
2519
2520 do_cleanups (old_cleanups);
2521 }
2522
2523 /* ARGSUSED */
2524 static void
2525 echo_command (text, from_tty)
2526 char *text;
2527 int from_tty;
2528 {
2529 char *p = text;
2530 register int c;
2531
2532 if (text)
2533 while ((c = *p++) != '\0')
2534 {
2535 if (c == '\\')
2536 {
2537 /* \ at end of argument is used after spaces
2538 so they won't be lost. */
2539 if (*p == 0)
2540 return;
2541
2542 c = parse_escape (&p);
2543 if (c >= 0)
2544 printf_filtered ("%c", c);
2545 }
2546 else
2547 printf_filtered ("%c", c);
2548 }
2549
2550 /* Force this output to appear now. */
2551 wrap_here ("");
2552 gdb_flush (gdb_stdout);
2553 }
2554
2555 \f
2556 /* Functions to manipulate command line editing control variables. */
2557
2558 /* Number of commands to print in each call to show_commands. */
2559 #define Hist_print 10
2560 static void
2561 show_commands (args, from_tty)
2562 char *args;
2563 int from_tty;
2564 {
2565 /* Index for history commands. Relative to history_base. */
2566 int offset;
2567
2568 /* Number of the history entry which we are planning to display next.
2569 Relative to history_base. */
2570 static int num = 0;
2571
2572 /* The first command in the history which doesn't exist (i.e. one more
2573 than the number of the last command). Relative to history_base. */
2574 int hist_len;
2575
2576 extern HIST_ENTRY *history_get PARAMS ((int));
2577
2578 /* Print out some of the commands from the command history. */
2579 /* First determine the length of the history list. */
2580 hist_len = history_size;
2581 for (offset = 0; offset < history_size; offset++)
2582 {
2583 if (!history_get (history_base + offset))
2584 {
2585 hist_len = offset;
2586 break;
2587 }
2588 }
2589
2590 if (args)
2591 {
2592 if (args[0] == '+' && args[1] == '\0')
2593 /* "info editing +" should print from the stored position. */
2594 ;
2595 else
2596 /* "info editing <exp>" should print around command number <exp>. */
2597 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
2598 }
2599 /* "show commands" means print the last Hist_print commands. */
2600 else
2601 {
2602 num = hist_len - Hist_print;
2603 }
2604
2605 if (num < 0)
2606 num = 0;
2607
2608 /* If there are at least Hist_print commands, we want to display the last
2609 Hist_print rather than, say, the last 6. */
2610 if (hist_len - num < Hist_print)
2611 {
2612 num = hist_len - Hist_print;
2613 if (num < 0)
2614 num = 0;
2615 }
2616
2617 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
2618 {
2619 printf_filtered ("%5d %s\n", history_base + offset,
2620 (history_get (history_base + offset))->line);
2621 }
2622
2623 /* The next command we want to display is the next one that we haven't
2624 displayed yet. */
2625 num += Hist_print;
2626
2627 /* If the user repeats this command with return, it should do what
2628 "show commands +" does. This is unnecessary if arg is null,
2629 because "show commands +" is not useful after "show commands". */
2630 if (from_tty && args)
2631 {
2632 args[0] = '+';
2633 args[1] = '\0';
2634 }
2635 }
2636
2637 /* Called by do_setshow_command. */
2638 /* ARGSUSED */
2639 static void
2640 set_history_size_command (args, from_tty, c)
2641 char *args;
2642 int from_tty;
2643 struct cmd_list_element *c;
2644 {
2645 if (history_size == INT_MAX)
2646 unstifle_history ();
2647 else if (history_size >= 0)
2648 stifle_history (history_size);
2649 else
2650 {
2651 history_size = INT_MAX;
2652 error ("History size must be non-negative");
2653 }
2654 }
2655
2656 /* ARGSUSED */
2657 static void
2658 set_history (args, from_tty)
2659 char *args;
2660 int from_tty;
2661 {
2662 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
2663 help_list (sethistlist, "set history ", -1, gdb_stdout);
2664 }
2665
2666 /* ARGSUSED */
2667 static void
2668 show_history (args, from_tty)
2669 char *args;
2670 int from_tty;
2671 {
2672 cmd_show_list (showhistlist, from_tty, "");
2673 }
2674
2675 int info_verbose = 0; /* Default verbose msgs off */
2676
2677 /* Called by do_setshow_command. An elaborate joke. */
2678 /* ARGSUSED */
2679 static void
2680 set_verbose (args, from_tty, c)
2681 char *args;
2682 int from_tty;
2683 struct cmd_list_element *c;
2684 {
2685 char *cmdname = "verbose";
2686 struct cmd_list_element *showcmd;
2687
2688 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
2689
2690 if (info_verbose)
2691 {
2692 c->doc = "Set verbose printing of informational messages.";
2693 showcmd->doc = "Show verbose printing of informational messages.";
2694 }
2695 else
2696 {
2697 c->doc = "Set verbosity.";
2698 showcmd->doc = "Show verbosity.";
2699 }
2700 }
2701
2702 static void
2703 float_handler (signo)
2704 int signo;
2705 {
2706 /* This message is based on ANSI C, section 4.7. Note that integer
2707 divide by zero causes this, so "float" is a misnomer. */
2708 signal (SIGFPE, float_handler);
2709 error ("Erroneous arithmetic operation.");
2710 }
2711
2712 /* Return whether we are running a batch file or from terminal. */
2713 int
2714 batch_mode ()
2715 {
2716 return !(instream == stdin && ISATTY (stdin));
2717 }
2718
2719 \f
2720 static void
2721 init_cmd_lists ()
2722 {
2723 cmdlist = NULL;
2724 infolist = NULL;
2725 enablelist = NULL;
2726 disablelist = NULL;
2727 deletelist = NULL;
2728 enablebreaklist = NULL;
2729 setlist = NULL;
2730 unsetlist = NULL;
2731 showlist = NULL;
2732 sethistlist = NULL;
2733 showhistlist = NULL;
2734 unsethistlist = NULL;
2735 #if MAINTENANCE_CMDS
2736 maintenancelist = NULL;
2737 maintenanceinfolist = NULL;
2738 maintenanceprintlist = NULL;
2739 #endif
2740 setprintlist = NULL;
2741 showprintlist = NULL;
2742 setchecklist = NULL;
2743 showchecklist = NULL;
2744 }
2745
2746 /* Init the history buffer. Note that we are called after the init file(s)
2747 * have been read so that the user can change the history file via his
2748 * .gdbinit file (for instance). The GDBHISTFILE environment variable
2749 * overrides all of this.
2750 */
2751
2752 static void
2753 init_history()
2754 {
2755 char *tmpenv;
2756
2757 tmpenv = getenv ("HISTSIZE");
2758 if (tmpenv)
2759 history_size = atoi (tmpenv);
2760 else if (!history_size)
2761 history_size = 256;
2762
2763 stifle_history (history_size);
2764
2765 tmpenv = getenv ("GDBHISTFILE");
2766 if (tmpenv)
2767 history_filename = savestring (tmpenv, strlen(tmpenv));
2768 else if (!history_filename) {
2769 /* We include the current directory so that if the user changes
2770 directories the file written will be the same as the one
2771 that was read. */
2772 history_filename = concat (current_directory, "/.gdb_history", NULL);
2773 }
2774 read_history (history_filename);
2775 }
2776
2777 static void
2778 init_main ()
2779 {
2780 struct cmd_list_element *c;
2781
2782 #ifdef DEFAULT_PROMPT
2783 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
2784 #else
2785 prompt = savestring ("(gdb) ", 6);
2786 #endif
2787
2788 /* Set the important stuff up for command editing. */
2789 command_editing_p = 1;
2790 history_expansion_p = 0;
2791 write_history_p = 0;
2792
2793 /* Setup important stuff for command line editing. */
2794 rl_completion_entry_function = (int (*)()) symbol_completion_function;
2795 rl_completer_word_break_characters = gdb_completer_word_break_characters;
2796 rl_completer_quote_characters = gdb_completer_quote_characters;
2797 rl_readline_name = "gdb";
2798
2799 /* Define the classes of commands.
2800 They will appear in the help list in the reverse of this order. */
2801
2802 add_cmd ("internals", class_maintenance, NO_FUNCTION,
2803 "Maintenance commands.\n\
2804 Some gdb commands are provided just for use by gdb maintainers.\n\
2805 These commands are subject to frequent change, and may not be as\n\
2806 well documented as user commands.",
2807 &cmdlist);
2808 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
2809 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
2810 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
2811 The commands in this class are those defined by the user.\n\
2812 Use the \"define\" command to define a command.", &cmdlist);
2813 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
2814 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
2815 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
2816 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
2817 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
2818 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
2819 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
2820 counting from zero for the innermost (currently executing) frame.\n\n\
2821 At any time gdb identifies one frame as the \"selected\" frame.\n\
2822 Variable lookups are done with respect to the selected frame.\n\
2823 When the program being debugged stops, gdb selects the innermost frame.\n\
2824 The commands below can be used to select other frames by number or address.",
2825 &cmdlist);
2826 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
2827
2828 add_com ("pwd", class_files, pwd_command,
2829 "Print working directory. This is used for your program as well.");
2830 c = add_cmd ("cd", class_files, cd_command,
2831 "Set working directory to DIR for debugger and program being debugged.\n\
2832 The change does not take effect for the program being debugged\n\
2833 until the next time it is started.", &cmdlist);
2834 c->completer = filename_completer;
2835
2836 add_show_from_set
2837 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
2838 "Set gdb's prompt",
2839 &setlist),
2840 &showlist);
2841
2842 add_com ("echo", class_support, echo_command,
2843 "Print a constant string. Give string as argument.\n\
2844 C escape sequences may be used in the argument.\n\
2845 No newline is added at the end of the argument;\n\
2846 use \"\\n\" if you want a newline to be printed.\n\
2847 Since leading and trailing whitespace are ignored in command arguments,\n\
2848 if you want to print some you must use \"\\\" before leading whitespace\n\
2849 to be printed or after trailing whitespace.");
2850 add_com ("document", class_support, document_command,
2851 "Document a user-defined command.\n\
2852 Give command name as argument. Give documentation on following lines.\n\
2853 End with a line of just \"end\".");
2854 add_com ("define", class_support, define_command,
2855 "Define a new command name. Command name is argument.\n\
2856 Definition appears on following lines, one command per line.\n\
2857 End with a line of just \"end\".\n\
2858 Use the \"document\" command to give documentation for the new command.\n\
2859 Commands defined in this way do not take arguments.");
2860
2861 #ifdef __STDC__
2862 c = add_cmd ("source", class_support, source_command,
2863 "Read commands from a file named FILE.\n\
2864 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
2865 when gdb is started.", &cmdlist);
2866 #else
2867 /* Punt file name, we can't help it easily. */
2868 c = add_cmd ("source", class_support, source_command,
2869 "Read commands from a file named FILE.\n\
2870 Note that the file \".gdbinit\" is read automatically in this way\n\
2871 when gdb is started.", &cmdlist);
2872 #endif
2873 c->completer = filename_completer;
2874
2875 add_com ("quit", class_support, quit_command, "Exit gdb.");
2876 add_com ("help", class_support, help_command, "Print list of commands.");
2877 add_com_alias ("q", "quit", class_support, 1);
2878 add_com_alias ("h", "help", class_support, 1);
2879
2880
2881 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
2882 "Set ",
2883 &setlist),
2884 add_show_from_set (c, &showlist);
2885 c->function.sfunc = set_verbose;
2886 set_verbose (NULL, 0, c);
2887
2888 add_show_from_set
2889 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
2890 "Set editing of command lines as they are typed.\n\
2891 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
2892 Without an argument, command line editing is enabled. To edit, use\n\
2893 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
2894 &showlist);
2895
2896 add_prefix_cmd ("history", class_support, set_history,
2897 "Generic command for setting command history parameters.",
2898 &sethistlist, "set history ", 0, &setlist);
2899 add_prefix_cmd ("history", class_support, show_history,
2900 "Generic command for showing command history parameters.",
2901 &showhistlist, "show history ", 0, &showlist);
2902
2903 add_show_from_set
2904 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
2905 "Set history expansion on command input.\n\
2906 Without an argument, history expansion is enabled.", &sethistlist),
2907 &showhistlist);
2908
2909 add_show_from_set
2910 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
2911 "Set saving of the history record on exit.\n\
2912 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
2913 Without an argument, saving is enabled.", &sethistlist),
2914 &showhistlist);
2915
2916 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
2917 "Set the size of the command history, \n\
2918 ie. the number of previous commands to keep a record of.", &sethistlist);
2919 add_show_from_set (c, &showhistlist);
2920 c->function.sfunc = set_history_size_command;
2921
2922 add_show_from_set
2923 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
2924 "Set the filename in which to record the command history\n\
2925 (the list of previous commands of which a record is kept).", &sethistlist),
2926 &showhistlist);
2927
2928 add_show_from_set
2929 (add_set_cmd ("confirm", class_support, var_boolean,
2930 (char *)&caution,
2931 "Set whether to confirm potentially dangerous operations.",
2932 &setlist),
2933 &showlist);
2934
2935 add_prefix_cmd ("info", class_info, info_command,
2936 "Generic command for showing things about the program being debugged.",
2937 &infolist, "info ", 0, &cmdlist);
2938 add_com_alias ("i", "info", class_info, 1);
2939
2940 add_com ("complete", class_obscure, complete_command,
2941 "List the completions for the rest of the line as a command.");
2942
2943 add_prefix_cmd ("show", class_info, show_command,
2944 "Generic command for showing things about the debugger.",
2945 &showlist, "show ", 0, &cmdlist);
2946 /* Another way to get at the same thing. */
2947 add_info ("set", show_command, "Show all GDB settings.");
2948
2949 add_cmd ("commands", no_class, show_commands,
2950 "Show the the history of commands you typed.\n\
2951 You can supply a command number to start with, or a `+' to start after\n\
2952 the previous command number shown.",
2953 &showlist);
2954
2955 add_cmd ("version", no_class, show_version,
2956 "Show what version of GDB this is.", &showlist);
2957
2958 /* If target is open when baud changes, it doesn't take effect until the
2959 next open (I think, not sure). */
2960 add_show_from_set (add_set_cmd ("remotebaud", no_class,
2961 var_zinteger, (char *)&baud_rate,
2962 "Set baud rate for remote serial I/O.\n\
2963 This value is used to set the speed of the serial port when debugging\n\
2964 using remote targets.", &setlist),
2965 &showlist);
2966
2967 add_show_from_set (
2968 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
2969 "Set debugging of remote protocol.\n\
2970 When enabled, each packet sent or received with the remote target\n\
2971 is displayed.", &setlist),
2972 &showlist);
2973 }