81e4b4f38a30537f8e42a18cc238820f004ff4a6
[deliverable/binutils-gdb.git] / gdb / source.c
1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include "defs.h"
22 #include "arch-utils.h"
23 #include "symtab.h"
24 #include "expression.h"
25 #include "language.h"
26 #include "command.h"
27 #include "source.h"
28 #include "gdbcmd.h"
29 #include "frame.h"
30 #include "value.h"
31 #include "gdb_assert.h"
32
33 #include <sys/types.h>
34 #include "gdb_string.h"
35 #include "gdb_stat.h"
36 #include <fcntl.h>
37 #include "gdbcore.h"
38 #include "gdb_regex.h"
39 #include "symfile.h"
40 #include "objfiles.h"
41 #include "annotate.h"
42 #include "gdbtypes.h"
43 #include "linespec.h"
44 #include "filenames.h" /* for DOSish file names */
45 #include "completer.h"
46 #include "ui-out.h"
47 #include "readline/readline.h"
48
49 #include "psymtab.h"
50
51
52 #define OPEN_MODE (O_RDONLY | O_BINARY)
53 #define FDOPEN_MODE FOPEN_RB
54
55 /* Prototypes for exported functions. */
56
57 void _initialize_source (void);
58
59 /* Prototypes for local functions. */
60
61 static int get_filename_and_charpos (struct symtab *, char **);
62
63 static void reverse_search_command (char *, int);
64
65 static void forward_search_command (char *, int);
66
67 static void line_info (char *, int);
68
69 static void source_info (char *, int);
70
71 /* Path of directories to search for source files.
72 Same format as the PATH environment variable's value. */
73
74 char *source_path;
75
76 /* Support for source path substitution commands. */
77
78 struct substitute_path_rule
79 {
80 char *from;
81 char *to;
82 struct substitute_path_rule *next;
83 };
84
85 static struct substitute_path_rule *substitute_path_rules = NULL;
86
87 /* Symtab of default file for listing lines of. */
88
89 static struct symtab *current_source_symtab;
90
91 /* Default next line to list. */
92
93 static int current_source_line;
94
95 static struct program_space *current_source_pspace;
96
97 /* Default number of lines to print with commands like "list".
98 This is based on guessing how many long (i.e. more than chars_per_line
99 characters) lines there will be. To be completely correct, "list"
100 and friends should be rewritten to count characters and see where
101 things are wrapping, but that would be a fair amount of work. */
102
103 int lines_to_list = 10;
104 static void
105 show_lines_to_list (struct ui_file *file, int from_tty,
106 struct cmd_list_element *c, const char *value)
107 {
108 fprintf_filtered (file,
109 _("Number of source lines gdb "
110 "will list by default is %s.\n"),
111 value);
112 }
113
114 /* Line number of last line printed. Default for various commands.
115 current_source_line is usually, but not always, the same as this. */
116
117 static int last_line_listed;
118
119 /* First line number listed by last listing command. */
120
121 static int first_line_listed;
122
123 /* Saves the name of the last source file visited and a possible error code.
124 Used to prevent repeating annoying "No such file or directories" msgs. */
125
126 static struct symtab *last_source_visited = NULL;
127 static int last_source_error = 0;
128 \f
129 /* Return the first line listed by print_source_lines.
130 Used by command interpreters to request listing from
131 a previous point. */
132
133 int
134 get_first_line_listed (void)
135 {
136 return first_line_listed;
137 }
138
139 /* Return the default number of lines to print with commands like the
140 cli "list". The caller of print_source_lines must use this to
141 calculate the end line and use it in the call to print_source_lines
142 as it does not automatically use this value. */
143
144 int
145 get_lines_to_list (void)
146 {
147 return lines_to_list;
148 }
149
150 /* Return the current source file for listing and next line to list.
151 NOTE: The returned sal pc and end fields are not valid. */
152
153 struct symtab_and_line
154 get_current_source_symtab_and_line (void)
155 {
156 struct symtab_and_line cursal = { 0 };
157
158 cursal.pspace = current_source_pspace;
159 cursal.symtab = current_source_symtab;
160 cursal.line = current_source_line;
161 cursal.pc = 0;
162 cursal.end = 0;
163
164 return cursal;
165 }
166
167 /* If the current source file for listing is not set, try and get a default.
168 Usually called before get_current_source_symtab_and_line() is called.
169 It may err out if a default cannot be determined.
170 We must be cautious about where it is called, as it can recurse as the
171 process of determining a new default may call the caller!
172 Use get_current_source_symtab_and_line only to get whatever
173 we have without erroring out or trying to get a default. */
174
175 void
176 set_default_source_symtab_and_line (void)
177 {
178 if (!have_full_symbols () && !have_partial_symbols ())
179 error (_("No symbol table is loaded. Use the \"file\" command."));
180
181 /* Pull in a current source symtab if necessary. */
182 if (current_source_symtab == 0)
183 select_source_symtab (0);
184 }
185
186 /* Return the current default file for listing and next line to list
187 (the returned sal pc and end fields are not valid.)
188 and set the current default to whatever is in SAL.
189 NOTE: The returned sal pc and end fields are not valid. */
190
191 struct symtab_and_line
192 set_current_source_symtab_and_line (const struct symtab_and_line *sal)
193 {
194 struct symtab_and_line cursal = { 0 };
195
196 cursal.pspace = current_source_pspace;
197 cursal.symtab = current_source_symtab;
198 cursal.line = current_source_line;
199 cursal.pc = 0;
200 cursal.end = 0;
201
202 current_source_pspace = sal->pspace;
203 current_source_symtab = sal->symtab;
204 current_source_line = sal->line;
205
206 return cursal;
207 }
208
209 /* Reset any information stored about a default file and line to print. */
210
211 void
212 clear_current_source_symtab_and_line (void)
213 {
214 current_source_symtab = 0;
215 current_source_line = 0;
216 }
217
218 /* Set the source file default for the "list" command to be S.
219
220 If S is NULL, and we don't have a default, find one. This
221 should only be called when the user actually tries to use the
222 default, since we produce an error if we can't find a reasonable
223 default. Also, since this can cause symbols to be read, doing it
224 before we need to would make things slower than necessary. */
225
226 void
227 select_source_symtab (struct symtab *s)
228 {
229 struct symtabs_and_lines sals;
230 struct symtab_and_line sal;
231 struct objfile *ofp;
232
233 if (s)
234 {
235 current_source_symtab = s;
236 current_source_line = 1;
237 current_source_pspace = SYMTAB_PSPACE (s);
238 return;
239 }
240
241 if (current_source_symtab)
242 return;
243
244 /* Make the default place to list be the function `main'
245 if one exists. */
246 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0))
247 {
248 sals = decode_line_spec (main_name (), 1);
249 sal = sals.sals[0];
250 xfree (sals.sals);
251 current_source_pspace = sal.pspace;
252 current_source_symtab = sal.symtab;
253 current_source_line = max (sal.line - (lines_to_list - 1), 1);
254 if (current_source_symtab)
255 return;
256 }
257
258 /* Alright; find the last file in the symtab list (ignoring .h's
259 and namespace symtabs). */
260
261 current_source_line = 1;
262
263 ALL_OBJFILES (ofp)
264 {
265 for (s = ofp->symtabs; s; s = s->next)
266 {
267 const char *name = s->filename;
268 int len = strlen (name);
269
270 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
271 || strcmp (name, "<<C++-namespaces>>") == 0)))
272 {
273 current_source_pspace = current_program_space;
274 current_source_symtab = s;
275 }
276 }
277 }
278
279 if (current_source_symtab)
280 return;
281
282 ALL_OBJFILES (ofp)
283 {
284 if (ofp->sf)
285 s = ofp->sf->qf->find_last_source_symtab (ofp);
286 if (s)
287 current_source_symtab = s;
288 }
289 if (current_source_symtab)
290 return;
291
292 error (_("Can't find a default source file"));
293 }
294 \f
295 /* Handler for "set directories path-list" command.
296 "set dir mumble" doesn't prepend paths, it resets the entire
297 path list. The theory is that set(show(dir)) should be a no-op. */
298
299 static void
300 set_directories_command (char *args, int from_tty, struct cmd_list_element *c)
301 {
302 /* This is the value that was set.
303 It needs to be processed to maintain $cdir:$cwd and remove dups. */
304 char *set_path = source_path;
305
306 /* We preserve the invariant that $cdir:$cwd begins life at the end of
307 the list by calling init_source_path. If they appear earlier in
308 SET_PATH then mod_path will move them appropriately.
309 mod_path will also remove duplicates. */
310 init_source_path ();
311 if (*set_path != '\0')
312 mod_path (set_path, &source_path);
313
314 xfree (set_path);
315 }
316
317 /* Print the list of source directories.
318 This is used by the "ld" command, so it has the signature of a command
319 function. */
320
321 static void
322 show_directories_1 (char *ignore, int from_tty)
323 {
324 puts_filtered ("Source directories searched: ");
325 puts_filtered (source_path);
326 puts_filtered ("\n");
327 }
328
329 /* Handler for "show directories" command. */
330
331 static void
332 show_directories_command (struct ui_file *file, int from_tty,
333 struct cmd_list_element *c, const char *value)
334 {
335 show_directories_1 (NULL, from_tty);
336 }
337
338 /* Forget what we learned about line positions in source files, and
339 which directories contain them; must check again now since files
340 may be found in a different directory now. */
341
342 void
343 forget_cached_source_info (void)
344 {
345 struct program_space *pspace;
346 struct symtab *s;
347 struct objfile *objfile;
348
349 ALL_PSPACES (pspace)
350 ALL_PSPACE_OBJFILES (pspace, objfile)
351 {
352 for (s = objfile->symtabs; s != NULL; s = s->next)
353 {
354 if (s->line_charpos != NULL)
355 {
356 xfree (s->line_charpos);
357 s->line_charpos = NULL;
358 }
359 if (s->fullname != NULL)
360 {
361 xfree (s->fullname);
362 s->fullname = NULL;
363 }
364 }
365
366 if (objfile->sf)
367 objfile->sf->qf->forget_cached_source_info (objfile);
368 }
369
370 last_source_visited = NULL;
371 }
372
373 void
374 init_source_path (void)
375 {
376 char buf[20];
377
378 sprintf (buf, "$cdir%c$cwd", DIRNAME_SEPARATOR);
379 source_path = xstrdup (buf);
380 forget_cached_source_info ();
381 }
382
383 /* Add zero or more directories to the front of the source path. */
384
385 void
386 directory_command (char *dirname, int from_tty)
387 {
388 dont_repeat ();
389 /* FIXME, this goes to "delete dir"... */
390 if (dirname == 0)
391 {
392 if (!from_tty || query (_("Reinitialize source path to empty? ")))
393 {
394 xfree (source_path);
395 init_source_path ();
396 }
397 }
398 else
399 {
400 mod_path (dirname, &source_path);
401 forget_cached_source_info ();
402 }
403 if (from_tty)
404 show_directories_1 ((char *) 0, from_tty);
405 }
406
407 /* Add a path given with the -d command line switch.
408 This will not be quoted so we must not treat spaces as separators. */
409
410 void
411 directory_switch (char *dirname, int from_tty)
412 {
413 add_path (dirname, &source_path, 0);
414 }
415
416 /* Add zero or more directories to the front of an arbitrary path. */
417
418 void
419 mod_path (char *dirname, char **which_path)
420 {
421 add_path (dirname, which_path, 1);
422 }
423
424 /* Workhorse of mod_path. Takes an extra argument to determine
425 if dirname should be parsed for separators that indicate multiple
426 directories. This allows for interfaces that pre-parse the dirname
427 and allow specification of traditional separator characters such
428 as space or tab. */
429
430 void
431 add_path (char *dirname, char **which_path, int parse_separators)
432 {
433 char *old = *which_path;
434 int prefix = 0;
435 char **argv = NULL;
436 char *arg;
437 int argv_index = 0;
438
439 if (dirname == 0)
440 return;
441
442 if (parse_separators)
443 {
444 /* This will properly parse the space and tab separators
445 and any quotes that may exist. DIRNAME_SEPARATOR will
446 be dealt with later. */
447 argv = gdb_buildargv (dirname);
448 make_cleanup_freeargv (argv);
449
450 arg = argv[0];
451 }
452 else
453 {
454 arg = xstrdup (dirname);
455 make_cleanup (xfree, arg);
456 }
457
458 do
459 {
460 char *name = arg;
461 char *p;
462 struct stat st;
463
464 {
465 char *separator = NULL;
466
467 /* Spaces and tabs will have been removed by buildargv().
468 The directories will there be split into a list but
469 each entry may still contain DIRNAME_SEPARATOR. */
470 if (parse_separators)
471 separator = strchr (name, DIRNAME_SEPARATOR);
472
473 if (separator == 0)
474 p = arg = name + strlen (name);
475 else
476 {
477 p = separator;
478 arg = p + 1;
479 while (*arg == DIRNAME_SEPARATOR)
480 ++arg;
481 }
482
483 /* If there are no more directories in this argument then start
484 on the next argument next time round the loop (if any). */
485 if (*arg == '\0')
486 arg = parse_separators ? argv[++argv_index] : NULL;
487 }
488
489 /* name is the start of the directory.
490 p is the separator (or null) following the end. */
491
492 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
493 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
494 /* On MS-DOS and MS-Windows, h:\ is different from h: */
495 && !(p == name + 3 && name[1] == ':') /* "d:/" */
496 #endif
497 && IS_DIR_SEPARATOR (p[-1]))
498 /* Sigh. "foo/" => "foo" */
499 --p;
500 *p = '\0';
501
502 while (p > name && p[-1] == '.')
503 {
504 if (p - name == 1)
505 {
506 /* "." => getwd (). */
507 name = current_directory;
508 goto append;
509 }
510 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
511 {
512 if (p - name == 2)
513 {
514 /* "/." => "/". */
515 *--p = '\0';
516 goto append;
517 }
518 else
519 {
520 /* "...foo/." => "...foo". */
521 p -= 2;
522 *p = '\0';
523 continue;
524 }
525 }
526 else
527 break;
528 }
529
530 if (name[0] == '~')
531 name = tilde_expand (name);
532 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
533 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
534 name = concat (name, ".", (char *)NULL);
535 #endif
536 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
537 name = concat (current_directory, SLASH_STRING, name, (char *)NULL);
538 else
539 name = savestring (name, p - name);
540 make_cleanup (xfree, name);
541
542 /* Unless it's a variable, check existence. */
543 if (name[0] != '$')
544 {
545 /* These are warnings, not errors, since we don't want a
546 non-existent directory in a .gdbinit file to stop processing
547 of the .gdbinit file.
548
549 Whether they get added to the path is more debatable. Current
550 answer is yes, in case the user wants to go make the directory
551 or whatever. If the directory continues to not exist/not be
552 a directory/etc, then having them in the path should be
553 harmless. */
554 if (stat (name, &st) < 0)
555 {
556 int save_errno = errno;
557
558 fprintf_unfiltered (gdb_stderr, "Warning: ");
559 print_sys_errmsg (name, save_errno);
560 }
561 else if ((st.st_mode & S_IFMT) != S_IFDIR)
562 warning (_("%s is not a directory."), name);
563 }
564
565 append:
566 {
567 unsigned int len = strlen (name);
568
569 p = *which_path;
570 while (1)
571 {
572 /* FIXME: we should use realpath() or its work-alike
573 before comparing. Then all the code above which
574 removes excess slashes and dots could simply go away. */
575 if (!filename_ncmp (p, name, len)
576 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
577 {
578 /* Found it in the search path, remove old copy. */
579 if (p > *which_path)
580 p--; /* Back over leading separator. */
581 if (prefix > p - *which_path)
582 goto skip_dup; /* Same dir twice in one cmd. */
583 strcpy (p, &p[len + 1]); /* Copy from next \0 or : */
584 }
585 p = strchr (p, DIRNAME_SEPARATOR);
586 if (p != 0)
587 ++p;
588 else
589 break;
590 }
591 if (p == 0)
592 {
593 char tinybuf[2];
594
595 tinybuf[0] = DIRNAME_SEPARATOR;
596 tinybuf[1] = '\0';
597
598 /* If we have already tacked on a name(s) in this command,
599 be sure they stay on the front as we tack on some
600 more. */
601 if (prefix)
602 {
603 char *temp, c;
604
605 c = old[prefix];
606 old[prefix] = '\0';
607 temp = concat (old, tinybuf, name, (char *)NULL);
608 old[prefix] = c;
609 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
610 prefix = strlen (temp);
611 xfree (temp);
612 }
613 else
614 {
615 *which_path = concat (name, (old[0] ? tinybuf : old),
616 old, (char *)NULL);
617 prefix = strlen (name);
618 }
619 xfree (old);
620 old = *which_path;
621 }
622 }
623 skip_dup:
624 ;
625 }
626 while (arg != NULL);
627 }
628
629
630 static void
631 source_info (char *ignore, int from_tty)
632 {
633 struct symtab *s = current_source_symtab;
634
635 if (!s)
636 {
637 printf_filtered (_("No current source file.\n"));
638 return;
639 }
640 printf_filtered (_("Current source file is %s\n"), s->filename);
641 if (s->dirname)
642 printf_filtered (_("Compilation directory is %s\n"), s->dirname);
643 if (s->fullname)
644 printf_filtered (_("Located in %s\n"), s->fullname);
645 if (s->nlines)
646 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
647 s->nlines == 1 ? "" : "s");
648
649 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
650 printf_filtered (_("Compiled with %s debugging format.\n"), s->debugformat);
651 printf_filtered (_("%s preprocessor macro info.\n"),
652 s->macro_table ? "Includes" : "Does not include");
653 }
654 \f
655
656 /* Return True if the file NAME exists and is a regular file. */
657 static int
658 is_regular_file (const char *name)
659 {
660 struct stat st;
661 const int status = stat (name, &st);
662
663 /* Stat should never fail except when the file does not exist.
664 If stat fails, analyze the source of error and return True
665 unless the file does not exist, to avoid returning false results
666 on obscure systems where stat does not work as expected. */
667
668 if (status != 0)
669 return (errno != ENOENT);
670
671 return S_ISREG (st.st_mode);
672 }
673
674 /* Open a file named STRING, searching path PATH (dir names sep by some char)
675 using mode MODE in the calls to open. You cannot use this function to
676 create files (O_CREAT).
677
678 OPTS specifies the function behaviour in specific cases.
679
680 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
681 (ie pretend the first element of PATH is "."). This also indicates
682 that a slash in STRING disables searching of the path (this is
683 so that "exec-file ./foo" or "symbol-file ./foo" insures that you
684 get that particular version of foo or an error message).
685
686 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
687 searched in path (we usually want this for source files but not for
688 executables).
689
690 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
691 the actual file opened (this string will always start with a "/"). We
692 have to take special pains to avoid doubling the "/" between the directory
693 and the file, sigh! Emacs gets confuzzed by this when we print the
694 source file name!!!
695
696 If a file is found, return the descriptor.
697 Otherwise, return -1, with errno set for the last name we tried to open. */
698
699 /* >>>> This should only allow files of certain types,
700 >>>> eg executable, non-directory. */
701 int
702 openp (const char *path, int opts, const char *string,
703 int mode, char **filename_opened)
704 {
705 int fd;
706 char *filename;
707 const char *p;
708 const char *p1;
709 int len;
710 int alloclen;
711
712 /* The open syscall MODE parameter is not specified. */
713 gdb_assert ((mode & O_CREAT) == 0);
714 gdb_assert (string != NULL);
715
716 /* A file with an empty name cannot possibly exist. Report a failure
717 without further checking.
718
719 This is an optimization which also defends us against buggy
720 implementations of the "stat" function. For instance, we have
721 noticed that a MinGW debugger built on Windows XP 32bits crashes
722 when the debugger is started with an empty argument. */
723 if (string[0] == '\0')
724 {
725 errno = ENOENT;
726 return -1;
727 }
728
729 if (!path)
730 path = ".";
731
732 mode |= O_BINARY;
733
734 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
735 {
736 int i;
737
738 if (is_regular_file (string))
739 {
740 filename = alloca (strlen (string) + 1);
741 strcpy (filename, string);
742 fd = open (filename, mode);
743 if (fd >= 0)
744 goto done;
745 }
746 else
747 {
748 filename = NULL;
749 fd = -1;
750 }
751
752 if (!(opts & OPF_SEARCH_IN_PATH))
753 for (i = 0; string[i]; i++)
754 if (IS_DIR_SEPARATOR (string[i]))
755 goto done;
756 }
757
758 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
759 if (HAS_DRIVE_SPEC (string))
760 string = STRIP_DRIVE_SPEC (string);
761
762 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
763 while (IS_DIR_SEPARATOR(string[0]))
764 string++;
765
766 /* ./foo => foo */
767 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
768 string += 2;
769
770 alloclen = strlen (path) + strlen (string) + 2;
771 filename = alloca (alloclen);
772 fd = -1;
773 for (p = path; p; p = p1 ? p1 + 1 : 0)
774 {
775 p1 = strchr (p, DIRNAME_SEPARATOR);
776 if (p1)
777 len = p1 - p;
778 else
779 len = strlen (p);
780
781 if (len == 4 && p[0] == '$' && p[1] == 'c'
782 && p[2] == 'w' && p[3] == 'd')
783 {
784 /* Name is $cwd -- insert current directory name instead. */
785 int newlen;
786
787 /* First, realloc the filename buffer if too short. */
788 len = strlen (current_directory);
789 newlen = len + strlen (string) + 2;
790 if (newlen > alloclen)
791 {
792 alloclen = newlen;
793 filename = alloca (alloclen);
794 }
795 strcpy (filename, current_directory);
796 }
797 else
798 {
799 /* Normal file name in path -- just use it. */
800 strncpy (filename, p, len);
801 filename[len] = 0;
802
803 /* Don't search $cdir. It's also a magic path like $cwd, but we
804 don't have enough information to expand it. The user *could*
805 have an actual directory named '$cdir' but handling that would
806 be confusing, it would mean different things in different
807 contexts. If the user really has '$cdir' one can use './$cdir'.
808 We can get $cdir when loading scripts. When loading source files
809 $cdir must have already been expanded to the correct value. */
810 if (strcmp (filename, "$cdir") == 0)
811 continue;
812 }
813
814 /* Remove trailing slashes. */
815 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
816 filename[--len] = 0;
817
818 strcat (filename + len, SLASH_STRING);
819 strcat (filename, string);
820
821 if (is_regular_file (filename))
822 {
823 fd = open (filename, mode);
824 if (fd >= 0)
825 break;
826 }
827 }
828
829 done:
830 if (filename_opened)
831 {
832 /* If a file was opened, canonicalize its filename. Use xfullpath
833 rather than gdb_realpath to avoid resolving the basename part
834 of filenames when the associated file is a symbolic link. This
835 fixes a potential inconsistency between the filenames known to
836 GDB and the filenames it prints in the annotations. */
837 if (fd < 0)
838 *filename_opened = NULL;
839 else if (IS_ABSOLUTE_PATH (filename))
840 *filename_opened = xfullpath (filename);
841 else
842 {
843 /* Beware the // my son, the Emacs barfs, the botch that catch... */
844
845 char *f = concat (current_directory,
846 IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1])
847 ? "" : SLASH_STRING,
848 filename, (char *)NULL);
849
850 *filename_opened = xfullpath (f);
851 xfree (f);
852 }
853 }
854
855 return fd;
856 }
857
858
859 /* This is essentially a convenience, for clients that want the behaviour
860 of openp, using source_path, but that really don't want the file to be
861 opened but want instead just to know what the full pathname is (as
862 qualified against source_path).
863
864 The current working directory is searched first.
865
866 If the file was found, this function returns 1, and FULL_PATHNAME is
867 set to the fully-qualified pathname.
868
869 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
870 int
871 source_full_path_of (const char *filename, char **full_pathname)
872 {
873 int fd;
874
875 fd = openp (source_path, OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH, filename,
876 O_RDONLY, full_pathname);
877 if (fd < 0)
878 {
879 *full_pathname = NULL;
880 return 0;
881 }
882
883 close (fd);
884 return 1;
885 }
886
887 /* Return non-zero if RULE matches PATH, that is if the rule can be
888 applied to PATH. */
889
890 static int
891 substitute_path_rule_matches (const struct substitute_path_rule *rule,
892 const char *path)
893 {
894 const int from_len = strlen (rule->from);
895 const int path_len = strlen (path);
896 char *path_start;
897
898 if (path_len < from_len)
899 return 0;
900
901 /* The substitution rules are anchored at the start of the path,
902 so the path should start with rule->from. There is no filename
903 comparison routine, so we need to extract the first FROM_LEN
904 characters from PATH first and use that to do the comparison. */
905
906 path_start = alloca (from_len + 1);
907 strncpy (path_start, path, from_len);
908 path_start[from_len] = '\0';
909
910 if (FILENAME_CMP (path_start, rule->from) != 0)
911 return 0;
912
913 /* Make sure that the region in the path that matches the substitution
914 rule is immediately followed by a directory separator (or the end of
915 string character). */
916
917 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
918 return 0;
919
920 return 1;
921 }
922
923 /* Find the substitute-path rule that applies to PATH and return it.
924 Return NULL if no rule applies. */
925
926 static struct substitute_path_rule *
927 get_substitute_path_rule (const char *path)
928 {
929 struct substitute_path_rule *rule = substitute_path_rules;
930
931 while (rule != NULL && !substitute_path_rule_matches (rule, path))
932 rule = rule->next;
933
934 return rule;
935 }
936
937 /* If the user specified a source path substitution rule that applies
938 to PATH, then apply it and return the new path. This new path must
939 be deallocated afterwards.
940
941 Return NULL if no substitution rule was specified by the user,
942 or if no rule applied to the given PATH. */
943
944 static char *
945 rewrite_source_path (const char *path)
946 {
947 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
948 char *new_path;
949 int from_len;
950
951 if (rule == NULL)
952 return NULL;
953
954 from_len = strlen (rule->from);
955
956 /* Compute the rewritten path and return it. */
957
958 new_path =
959 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
960 strcpy (new_path, rule->to);
961 strcat (new_path, path + from_len);
962
963 return new_path;
964 }
965
966 /* This function is capable of finding the absolute path to a
967 source file, and opening it, provided you give it a FILENAME. Both the
968 DIRNAME and FULLNAME are only added suggestions on where to find the file.
969
970 FILENAME should be the filename to open.
971 DIRNAME is the compilation directory of a particular source file.
972 Only some debug formats provide this info.
973 FULLNAME can be the last known absolute path to the file in question.
974 Space for the path must have been malloc'd. If a path substitution
975 is applied we free the old value and set a new one.
976
977 On Success
978 A valid file descriptor is returned (the return value is positive).
979 FULLNAME is set to the absolute path to the file just opened.
980 The caller is responsible for freeing FULLNAME.
981
982 On Failure
983 An invalid file descriptor is returned (the return value is negative).
984 FULLNAME is set to NULL. */
985
986 int
987 find_and_open_source (const char *filename,
988 const char *dirname,
989 char **fullname)
990 {
991 char *path = source_path;
992 const char *p;
993 int result;
994
995 /* Quick way out if we already know its full name. */
996
997 if (*fullname)
998 {
999 /* The user may have requested that source paths be rewritten
1000 according to substitution rules he provided. If a substitution
1001 rule applies to this path, then apply it. */
1002 char *rewritten_fullname = rewrite_source_path (*fullname);
1003
1004 if (rewritten_fullname != NULL)
1005 {
1006 xfree (*fullname);
1007 *fullname = rewritten_fullname;
1008 }
1009
1010 result = open (*fullname, OPEN_MODE);
1011 if (result >= 0)
1012 return result;
1013 /* Didn't work -- free old one, try again. */
1014 xfree (*fullname);
1015 *fullname = NULL;
1016 }
1017
1018 if (dirname != NULL)
1019 {
1020 /* If necessary, rewrite the compilation directory name according
1021 to the source path substitution rules specified by the user. */
1022
1023 char *rewritten_dirname = rewrite_source_path (dirname);
1024
1025 if (rewritten_dirname != NULL)
1026 {
1027 make_cleanup (xfree, rewritten_dirname);
1028 dirname = rewritten_dirname;
1029 }
1030
1031 /* Replace a path entry of $cdir with the compilation directory
1032 name. */
1033 #define cdir_len 5
1034 /* We cast strstr's result in case an ANSIhole has made it const,
1035 which produces a "required warning" when assigned to a nonconst. */
1036 p = (char *) strstr (source_path, "$cdir");
1037 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1038 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1039 {
1040 int len;
1041
1042 path = (char *)
1043 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
1044 len = p - source_path;
1045 strncpy (path, source_path, len); /* Before $cdir */
1046 strcpy (path + len, dirname); /* new stuff */
1047 strcat (path + len, source_path + len + cdir_len); /* After
1048 $cdir */
1049 }
1050 }
1051
1052 if (IS_ABSOLUTE_PATH (filename))
1053 {
1054 /* If filename is absolute path, try the source path
1055 substitution on it. */
1056 char *rewritten_filename = rewrite_source_path (filename);
1057
1058 if (rewritten_filename != NULL)
1059 {
1060 make_cleanup (xfree, rewritten_filename);
1061 filename = rewritten_filename;
1062 }
1063 }
1064
1065 result = openp (path, OPF_SEARCH_IN_PATH, filename, OPEN_MODE, fullname);
1066 if (result < 0)
1067 {
1068 /* Didn't work. Try using just the basename. */
1069 p = lbasename (filename);
1070 if (p != filename)
1071 result = openp (path, OPF_SEARCH_IN_PATH, p, OPEN_MODE, fullname);
1072 }
1073
1074 return result;
1075 }
1076
1077 /* Open a source file given a symtab S. Returns a file descriptor or
1078 negative number for error.
1079
1080 This function is a convience function to find_and_open_source. */
1081
1082 int
1083 open_source_file (struct symtab *s)
1084 {
1085 if (!s)
1086 return -1;
1087
1088 return find_and_open_source (s->filename, s->dirname, &s->fullname);
1089 }
1090
1091 /* Finds the fullname that a symtab represents.
1092
1093 If this functions finds the fullname, it will save it in s->fullname
1094 and it will also return the value.
1095
1096 If this function fails to find the file that this symtab represents,
1097 NULL will be returned and s->fullname will be set to NULL. */
1098 char *
1099 symtab_to_fullname (struct symtab *s)
1100 {
1101 int r;
1102
1103 if (!s)
1104 return NULL;
1105
1106 /* Don't check s->fullname here, the file could have been
1107 deleted/moved/..., look for it again. */
1108 r = find_and_open_source (s->filename, s->dirname, &s->fullname);
1109
1110 if (r >= 0)
1111 {
1112 close (r);
1113 return s->fullname;
1114 }
1115
1116 return NULL;
1117 }
1118 \f
1119 /* Create and initialize the table S->line_charpos that records
1120 the positions of the lines in the source file, which is assumed
1121 to be open on descriptor DESC.
1122 All set S->nlines to the number of such lines. */
1123
1124 void
1125 find_source_lines (struct symtab *s, int desc)
1126 {
1127 struct stat st;
1128 char *data, *p, *end;
1129 int nlines = 0;
1130 int lines_allocated = 1000;
1131 int *line_charpos;
1132 long mtime = 0;
1133 int size;
1134
1135 gdb_assert (s);
1136 line_charpos = (int *) xmalloc (lines_allocated * sizeof (int));
1137 if (fstat (desc, &st) < 0)
1138 perror_with_name (s->filename);
1139
1140 if (s->objfile && s->objfile->obfd)
1141 mtime = s->objfile->mtime;
1142 else if (exec_bfd)
1143 mtime = exec_bfd_mtime;
1144
1145 if (mtime && mtime < st.st_mtime)
1146 warning (_("Source file is more recent than executable."));
1147
1148 {
1149 struct cleanup *old_cleanups;
1150
1151 /* st_size might be a large type, but we only support source files whose
1152 size fits in an int. */
1153 size = (int) st.st_size;
1154
1155 /* Use malloc, not alloca, because this may be pretty large, and we may
1156 run into various kinds of limits on stack size. */
1157 data = (char *) xmalloc (size);
1158 old_cleanups = make_cleanup (xfree, data);
1159
1160 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1161 size = myread (desc, data, size);
1162 if (size < 0)
1163 perror_with_name (s->filename);
1164 end = data + size;
1165 p = data;
1166 line_charpos[0] = 0;
1167 nlines = 1;
1168 while (p != end)
1169 {
1170 if (*p++ == '\n'
1171 /* A newline at the end does not start a new line. */
1172 && p != end)
1173 {
1174 if (nlines == lines_allocated)
1175 {
1176 lines_allocated *= 2;
1177 line_charpos =
1178 (int *) xrealloc ((char *) line_charpos,
1179 sizeof (int) * lines_allocated);
1180 }
1181 line_charpos[nlines++] = p - data;
1182 }
1183 }
1184 do_cleanups (old_cleanups);
1185 }
1186
1187 s->nlines = nlines;
1188 s->line_charpos =
1189 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
1190
1191 }
1192
1193 \f
1194
1195 /* Get full pathname and line number positions for a symtab.
1196 Return nonzero if line numbers may have changed.
1197 Set *FULLNAME to actual name of the file as found by `openp',
1198 or to 0 if the file is not found. */
1199
1200 static int
1201 get_filename_and_charpos (struct symtab *s, char **fullname)
1202 {
1203 int desc, linenums_changed = 0;
1204 struct cleanup *cleanups;
1205
1206 desc = open_source_file (s);
1207 if (desc < 0)
1208 {
1209 if (fullname)
1210 *fullname = NULL;
1211 return 0;
1212 }
1213 cleanups = make_cleanup_close (desc);
1214 if (fullname)
1215 *fullname = s->fullname;
1216 if (s->line_charpos == 0)
1217 linenums_changed = 1;
1218 if (linenums_changed)
1219 find_source_lines (s, desc);
1220 do_cleanups (cleanups);
1221 return linenums_changed;
1222 }
1223
1224 /* Print text describing the full name of the source file S
1225 and the line number LINE and its corresponding character position.
1226 The text starts with two Ctrl-z so that the Emacs-GDB interface
1227 can easily find it.
1228
1229 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1230
1231 Return 1 if successful, 0 if could not find the file. */
1232
1233 int
1234 identify_source_line (struct symtab *s, int line, int mid_statement,
1235 CORE_ADDR pc)
1236 {
1237 if (s->line_charpos == 0)
1238 get_filename_and_charpos (s, (char **) NULL);
1239 if (s->fullname == 0)
1240 return 0;
1241 if (line > s->nlines)
1242 /* Don't index off the end of the line_charpos array. */
1243 return 0;
1244 annotate_source (s->fullname, line, s->line_charpos[line - 1],
1245 mid_statement, get_objfile_arch (s->objfile), pc);
1246
1247 current_source_line = line;
1248 first_line_listed = line;
1249 last_line_listed = line;
1250 current_source_symtab = s;
1251 return 1;
1252 }
1253 \f
1254
1255 /* Print source lines from the file of symtab S,
1256 starting with line number LINE and stopping before line number STOPLINE. */
1257
1258 static void print_source_lines_base (struct symtab *s, int line, int stopline,
1259 int noerror);
1260 static void
1261 print_source_lines_base (struct symtab *s, int line, int stopline, int noerror)
1262 {
1263 int c;
1264 int desc;
1265 int noprint = 0;
1266 FILE *stream;
1267 int nlines = stopline - line;
1268 struct cleanup *cleanup;
1269
1270 /* Regardless of whether we can open the file, set current_source_symtab. */
1271 current_source_symtab = s;
1272 current_source_line = line;
1273 first_line_listed = line;
1274
1275 /* If printing of source lines is disabled, just print file and line
1276 number. */
1277 if (ui_out_test_flags (uiout, ui_source_list))
1278 {
1279 /* Only prints "No such file or directory" once. */
1280 if ((s != last_source_visited) || (!last_source_error))
1281 {
1282 last_source_visited = s;
1283 desc = open_source_file (s);
1284 }
1285 else
1286 {
1287 desc = last_source_error;
1288 noerror = 1;
1289 }
1290 }
1291 else
1292 {
1293 desc = last_source_error;
1294 noerror = 1;
1295 noprint = 1;
1296 }
1297
1298 if (desc < 0 || noprint)
1299 {
1300 last_source_error = desc;
1301
1302 if (!noerror)
1303 {
1304 char *name = alloca (strlen (s->filename) + 100);
1305 sprintf (name, "%d\t%s", line, s->filename);
1306 print_sys_errmsg (name, errno);
1307 }
1308 else
1309 ui_out_field_int (uiout, "line", line);
1310 ui_out_text (uiout, "\tin ");
1311 ui_out_field_string (uiout, "file", s->filename);
1312 ui_out_text (uiout, "\n");
1313
1314 return;
1315 }
1316
1317 last_source_error = 0;
1318
1319 if (s->line_charpos == 0)
1320 find_source_lines (s, desc);
1321
1322 if (line < 1 || line > s->nlines)
1323 {
1324 close (desc);
1325 error (_("Line number %d out of range; %s has %d lines."),
1326 line, s->filename, s->nlines);
1327 }
1328
1329 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1330 {
1331 close (desc);
1332 perror_with_name (s->filename);
1333 }
1334
1335 stream = fdopen (desc, FDOPEN_MODE);
1336 clearerr (stream);
1337 cleanup = make_cleanup_fclose (stream);
1338
1339 while (nlines-- > 0)
1340 {
1341 char buf[20];
1342
1343 c = fgetc (stream);
1344 if (c == EOF)
1345 break;
1346 last_line_listed = current_source_line;
1347 sprintf (buf, "%d\t", current_source_line++);
1348 ui_out_text (uiout, buf);
1349 do
1350 {
1351 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1352 {
1353 sprintf (buf, "^%c", c + 0100);
1354 ui_out_text (uiout, buf);
1355 }
1356 else if (c == 0177)
1357 ui_out_text (uiout, "^?");
1358 else if (c == '\r')
1359 {
1360 /* Skip a \r character, but only before a \n. */
1361 int c1 = fgetc (stream);
1362
1363 if (c1 != '\n')
1364 printf_filtered ("^%c", c + 0100);
1365 if (c1 != EOF)
1366 ungetc (c1, stream);
1367 }
1368 else
1369 {
1370 sprintf (buf, "%c", c);
1371 ui_out_text (uiout, buf);
1372 }
1373 }
1374 while (c != '\n' && (c = fgetc (stream)) >= 0);
1375 }
1376
1377 do_cleanups (cleanup);
1378 }
1379 \f
1380 /* Show source lines from the file of symtab S, starting with line
1381 number LINE and stopping before line number STOPLINE. If this is
1382 not the command line version, then the source is shown in the source
1383 window otherwise it is simply printed. */
1384
1385 void
1386 print_source_lines (struct symtab *s, int line, int stopline, int noerror)
1387 {
1388 print_source_lines_base (s, line, stopline, noerror);
1389 }
1390 \f
1391 /* Print info on range of pc's in a specified line. */
1392
1393 static void
1394 line_info (char *arg, int from_tty)
1395 {
1396 struct symtabs_and_lines sals;
1397 struct symtab_and_line sal;
1398 CORE_ADDR start_pc, end_pc;
1399 int i;
1400
1401 init_sal (&sal); /* initialize to zeroes */
1402
1403 if (arg == 0)
1404 {
1405 sal.symtab = current_source_symtab;
1406 sal.line = last_line_listed;
1407 sals.nelts = 1;
1408 sals.sals = (struct symtab_and_line *)
1409 xmalloc (sizeof (struct symtab_and_line));
1410 sals.sals[0] = sal;
1411 }
1412 else
1413 {
1414 sals = decode_line_spec_1 (arg, 0);
1415
1416 dont_repeat ();
1417 }
1418
1419 /* C++ More than one line may have been specified, as when the user
1420 specifies an overloaded function name. Print info on them all. */
1421 for (i = 0; i < sals.nelts; i++)
1422 {
1423 sal = sals.sals[i];
1424
1425 if (sal.symtab == 0)
1426 {
1427 struct gdbarch *gdbarch = get_current_arch ();
1428
1429 printf_filtered (_("No line number information available"));
1430 if (sal.pc != 0)
1431 {
1432 /* This is useful for "info line *0x7f34". If we can't tell the
1433 user about a source line, at least let them have the symbolic
1434 address. */
1435 printf_filtered (" for address ");
1436 wrap_here (" ");
1437 print_address (gdbarch, sal.pc, gdb_stdout);
1438 }
1439 else
1440 printf_filtered (".");
1441 printf_filtered ("\n");
1442 }
1443 else if (sal.line > 0
1444 && find_line_pc_range (sal, &start_pc, &end_pc))
1445 {
1446 struct gdbarch *gdbarch = get_objfile_arch (sal.symtab->objfile);
1447
1448 if (start_pc == end_pc)
1449 {
1450 printf_filtered ("Line %d of \"%s\"",
1451 sal.line, sal.symtab->filename);
1452 wrap_here (" ");
1453 printf_filtered (" is at address ");
1454 print_address (gdbarch, start_pc, gdb_stdout);
1455 wrap_here (" ");
1456 printf_filtered (" but contains no code.\n");
1457 }
1458 else
1459 {
1460 printf_filtered ("Line %d of \"%s\"",
1461 sal.line, sal.symtab->filename);
1462 wrap_here (" ");
1463 printf_filtered (" starts at address ");
1464 print_address (gdbarch, start_pc, gdb_stdout);
1465 wrap_here (" ");
1466 printf_filtered (" and ends at ");
1467 print_address (gdbarch, end_pc, gdb_stdout);
1468 printf_filtered (".\n");
1469 }
1470
1471 /* x/i should display this line's code. */
1472 set_next_address (gdbarch, start_pc);
1473
1474 /* Repeating "info line" should do the following line. */
1475 last_line_listed = sal.line + 1;
1476
1477 /* If this is the only line, show the source code. If it could
1478 not find the file, don't do anything special. */
1479 if (annotation_level && sals.nelts == 1)
1480 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1481 }
1482 else
1483 /* Is there any case in which we get here, and have an address
1484 which the user would want to see? If we have debugging symbols
1485 and no line numbers? */
1486 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
1487 sal.line, sal.symtab->filename);
1488 }
1489 xfree (sals.sals);
1490 }
1491 \f
1492 /* Commands to search the source file for a regexp. */
1493
1494 static void
1495 forward_search_command (char *regex, int from_tty)
1496 {
1497 int c;
1498 int desc;
1499 FILE *stream;
1500 int line;
1501 char *msg;
1502 struct cleanup *cleanups;
1503
1504 line = last_line_listed + 1;
1505
1506 msg = (char *) re_comp (regex);
1507 if (msg)
1508 error (("%s"), msg);
1509
1510 if (current_source_symtab == 0)
1511 select_source_symtab (0);
1512
1513 desc = open_source_file (current_source_symtab);
1514 if (desc < 0)
1515 perror_with_name (current_source_symtab->filename);
1516 cleanups = make_cleanup_close (desc);
1517
1518 if (current_source_symtab->line_charpos == 0)
1519 find_source_lines (current_source_symtab, desc);
1520
1521 if (line < 1 || line > current_source_symtab->nlines)
1522 error (_("Expression not found"));
1523
1524 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1525 perror_with_name (current_source_symtab->filename);
1526
1527 discard_cleanups (cleanups);
1528 stream = fdopen (desc, FDOPEN_MODE);
1529 clearerr (stream);
1530 cleanups = make_cleanup_fclose (stream);
1531 while (1)
1532 {
1533 static char *buf = NULL;
1534 char *p;
1535 int cursize, newsize;
1536
1537 cursize = 256;
1538 buf = xmalloc (cursize);
1539 p = buf;
1540
1541 c = getc (stream);
1542 if (c == EOF)
1543 break;
1544 do
1545 {
1546 *p++ = c;
1547 if (p - buf == cursize)
1548 {
1549 newsize = cursize + cursize / 2;
1550 buf = xrealloc (buf, newsize);
1551 p = buf + cursize;
1552 cursize = newsize;
1553 }
1554 }
1555 while (c != '\n' && (c = getc (stream)) >= 0);
1556
1557 /* Remove the \r, if any, at the end of the line, otherwise
1558 regular expressions that end with $ or \n won't work. */
1559 if (p - buf > 1 && p[-2] == '\r')
1560 {
1561 p--;
1562 p[-1] = '\n';
1563 }
1564
1565 /* We now have a source line in buf, null terminate and match. */
1566 *p = 0;
1567 if (re_exec (buf) > 0)
1568 {
1569 /* Match! */
1570 do_cleanups (cleanups);
1571 print_source_lines (current_source_symtab, line, line + 1, 0);
1572 set_internalvar_integer (lookup_internalvar ("_"), line);
1573 current_source_line = max (line - lines_to_list / 2, 1);
1574 return;
1575 }
1576 line++;
1577 }
1578
1579 printf_filtered (_("Expression not found\n"));
1580 do_cleanups (cleanups);
1581 }
1582
1583 static void
1584 reverse_search_command (char *regex, int from_tty)
1585 {
1586 int c;
1587 int desc;
1588 FILE *stream;
1589 int line;
1590 char *msg;
1591 struct cleanup *cleanups;
1592
1593 line = last_line_listed - 1;
1594
1595 msg = (char *) re_comp (regex);
1596 if (msg)
1597 error (("%s"), msg);
1598
1599 if (current_source_symtab == 0)
1600 select_source_symtab (0);
1601
1602 desc = open_source_file (current_source_symtab);
1603 if (desc < 0)
1604 perror_with_name (current_source_symtab->filename);
1605 cleanups = make_cleanup_close (desc);
1606
1607 if (current_source_symtab->line_charpos == 0)
1608 find_source_lines (current_source_symtab, desc);
1609
1610 if (line < 1 || line > current_source_symtab->nlines)
1611 error (_("Expression not found"));
1612
1613 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1614 perror_with_name (current_source_symtab->filename);
1615
1616 discard_cleanups (cleanups);
1617 stream = fdopen (desc, FDOPEN_MODE);
1618 clearerr (stream);
1619 cleanups = make_cleanup_fclose (stream);
1620 while (line > 1)
1621 {
1622 /* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1623 char buf[4096]; /* Should be reasonable??? */
1624 char *p = buf;
1625
1626 c = getc (stream);
1627 if (c == EOF)
1628 break;
1629 do
1630 {
1631 *p++ = c;
1632 }
1633 while (c != '\n' && (c = getc (stream)) >= 0);
1634
1635 /* Remove the \r, if any, at the end of the line, otherwise
1636 regular expressions that end with $ or \n won't work. */
1637 if (p - buf > 1 && p[-2] == '\r')
1638 {
1639 p--;
1640 p[-1] = '\n';
1641 }
1642
1643 /* We now have a source line in buf; null terminate and match. */
1644 *p = 0;
1645 if (re_exec (buf) > 0)
1646 {
1647 /* Match! */
1648 do_cleanups (cleanups);
1649 print_source_lines (current_source_symtab, line, line + 1, 0);
1650 set_internalvar_integer (lookup_internalvar ("_"), line);
1651 current_source_line = max (line - lines_to_list / 2, 1);
1652 return;
1653 }
1654 line--;
1655 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1656 {
1657 do_cleanups (cleanups);
1658 perror_with_name (current_source_symtab->filename);
1659 }
1660 }
1661
1662 printf_filtered (_("Expression not found\n"));
1663 do_cleanups (cleanups);
1664 return;
1665 }
1666
1667 /* If the last character of PATH is a directory separator, then strip it. */
1668
1669 static void
1670 strip_trailing_directory_separator (char *path)
1671 {
1672 const int last = strlen (path) - 1;
1673
1674 if (last < 0)
1675 return; /* No stripping is needed if PATH is the empty string. */
1676
1677 if (IS_DIR_SEPARATOR (path[last]))
1678 path[last] = '\0';
1679 }
1680
1681 /* Return the path substitution rule that matches FROM.
1682 Return NULL if no rule matches. */
1683
1684 static struct substitute_path_rule *
1685 find_substitute_path_rule (const char *from)
1686 {
1687 struct substitute_path_rule *rule = substitute_path_rules;
1688
1689 while (rule != NULL)
1690 {
1691 if (FILENAME_CMP (rule->from, from) == 0)
1692 return rule;
1693 rule = rule->next;
1694 }
1695
1696 return NULL;
1697 }
1698
1699 /* Add a new substitute-path rule at the end of the current list of rules.
1700 The new rule will replace FROM into TO. */
1701
1702 void
1703 add_substitute_path_rule (char *from, char *to)
1704 {
1705 struct substitute_path_rule *rule;
1706 struct substitute_path_rule *new_rule;
1707
1708 new_rule = xmalloc (sizeof (struct substitute_path_rule));
1709 new_rule->from = xstrdup (from);
1710 new_rule->to = xstrdup (to);
1711 new_rule->next = NULL;
1712
1713 /* If the list of rules are empty, then insert the new rule
1714 at the head of the list. */
1715
1716 if (substitute_path_rules == NULL)
1717 {
1718 substitute_path_rules = new_rule;
1719 return;
1720 }
1721
1722 /* Otherwise, skip to the last rule in our list and then append
1723 the new rule. */
1724
1725 rule = substitute_path_rules;
1726 while (rule->next != NULL)
1727 rule = rule->next;
1728
1729 rule->next = new_rule;
1730 }
1731
1732 /* Remove the given source path substitution rule from the current list
1733 of rules. The memory allocated for that rule is also deallocated. */
1734
1735 static void
1736 delete_substitute_path_rule (struct substitute_path_rule *rule)
1737 {
1738 if (rule == substitute_path_rules)
1739 substitute_path_rules = rule->next;
1740 else
1741 {
1742 struct substitute_path_rule *prev = substitute_path_rules;
1743
1744 while (prev != NULL && prev->next != rule)
1745 prev = prev->next;
1746
1747 gdb_assert (prev != NULL);
1748
1749 prev->next = rule->next;
1750 }
1751
1752 xfree (rule->from);
1753 xfree (rule->to);
1754 xfree (rule);
1755 }
1756
1757 /* Implement the "show substitute-path" command. */
1758
1759 static void
1760 show_substitute_path_command (char *args, int from_tty)
1761 {
1762 struct substitute_path_rule *rule = substitute_path_rules;
1763 char **argv;
1764 char *from = NULL;
1765
1766 argv = gdb_buildargv (args);
1767 make_cleanup_freeargv (argv);
1768
1769 /* We expect zero or one argument. */
1770
1771 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1772 error (_("Too many arguments in command"));
1773
1774 if (argv != NULL && argv[0] != NULL)
1775 from = argv[0];
1776
1777 /* Print the substitution rules. */
1778
1779 if (from != NULL)
1780 printf_filtered
1781 (_("Source path substitution rule matching `%s':\n"), from);
1782 else
1783 printf_filtered (_("List of all source path substitution rules:\n"));
1784
1785 while (rule != NULL)
1786 {
1787 if (from == NULL || FILENAME_CMP (rule->from, from) == 0)
1788 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1789 rule = rule->next;
1790 }
1791 }
1792
1793 /* Implement the "unset substitute-path" command. */
1794
1795 static void
1796 unset_substitute_path_command (char *args, int from_tty)
1797 {
1798 struct substitute_path_rule *rule = substitute_path_rules;
1799 char **argv = gdb_buildargv (args);
1800 char *from = NULL;
1801 int rule_found = 0;
1802
1803 /* This function takes either 0 or 1 argument. */
1804
1805 make_cleanup_freeargv (argv);
1806 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1807 error (_("Incorrect usage, too many arguments in command"));
1808
1809 if (argv != NULL && argv[0] != NULL)
1810 from = argv[0];
1811
1812 /* If the user asked for all the rules to be deleted, ask him
1813 to confirm and give him a chance to abort before the action
1814 is performed. */
1815
1816 if (from == NULL
1817 && !query (_("Delete all source path substitution rules? ")))
1818 error (_("Canceled"));
1819
1820 /* Delete the rule matching the argument. No argument means that
1821 all rules should be deleted. */
1822
1823 while (rule != NULL)
1824 {
1825 struct substitute_path_rule *next = rule->next;
1826
1827 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1828 {
1829 delete_substitute_path_rule (rule);
1830 rule_found = 1;
1831 }
1832
1833 rule = next;
1834 }
1835
1836 /* If the user asked for a specific rule to be deleted but
1837 we could not find it, then report an error. */
1838
1839 if (from != NULL && !rule_found)
1840 error (_("No substitution rule defined for `%s'"), from);
1841
1842 forget_cached_source_info ();
1843 }
1844
1845 /* Add a new source path substitution rule. */
1846
1847 static void
1848 set_substitute_path_command (char *args, int from_tty)
1849 {
1850 char **argv;
1851 struct substitute_path_rule *rule;
1852
1853 argv = gdb_buildargv (args);
1854 make_cleanup_freeargv (argv);
1855
1856 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1857 error (_("Incorrect usage, too few arguments in command"));
1858
1859 if (argv[2] != NULL)
1860 error (_("Incorrect usage, too many arguments in command"));
1861
1862 if (*(argv[0]) == '\0')
1863 error (_("First argument must be at least one character long"));
1864
1865 /* Strip any trailing directory separator character in either FROM
1866 or TO. The substitution rule already implicitly contains them. */
1867 strip_trailing_directory_separator (argv[0]);
1868 strip_trailing_directory_separator (argv[1]);
1869
1870 /* If a rule with the same "from" was previously defined, then
1871 delete it. This new rule replaces it. */
1872
1873 rule = find_substitute_path_rule (argv[0]);
1874 if (rule != NULL)
1875 delete_substitute_path_rule (rule);
1876
1877 /* Insert the new substitution rule. */
1878
1879 add_substitute_path_rule (argv[0], argv[1]);
1880 forget_cached_source_info ();
1881 }
1882
1883 \f
1884 void
1885 _initialize_source (void)
1886 {
1887 struct cmd_list_element *c;
1888
1889 current_source_symtab = 0;
1890 init_source_path ();
1891
1892 /* The intention is to use POSIX Basic Regular Expressions.
1893 Always use the GNU regex routine for consistency across all hosts.
1894 Our current GNU regex.c does not have all the POSIX features, so this is
1895 just an approximation. */
1896 re_set_syntax (RE_SYNTAX_GREP);
1897
1898 c = add_cmd ("directory", class_files, directory_command, _("\
1899 Add directory DIR to beginning of search path for source files.\n\
1900 Forget cached info on source file locations and line positions.\n\
1901 DIR can also be $cwd for the current working directory, or $cdir for the\n\
1902 directory in which the source file was compiled into object code.\n\
1903 With no argument, reset the search path to $cdir:$cwd, the default."),
1904 &cmdlist);
1905
1906 if (dbx_commands)
1907 add_com_alias ("use", "directory", class_files, 0);
1908
1909 set_cmd_completer (c, filename_completer);
1910
1911 add_setshow_optional_filename_cmd ("directories",
1912 class_files,
1913 &source_path,
1914 _("\
1915 Set the search path for finding source files."),
1916 _("\
1917 Show the search path for finding source files."),
1918 _("\
1919 $cwd in the path means the current working directory.\n\
1920 $cdir in the path means the compilation directory of the source file.\n\
1921 GDB ensures the search path always ends with $cdir:$cwd by\n\
1922 appending these directories if necessary.\n\
1923 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
1924 set_directories_command,
1925 show_directories_command,
1926 &setlist, &showlist);
1927
1928 if (xdb_commands)
1929 {
1930 add_com_alias ("D", "directory", class_files, 0);
1931 add_cmd ("ld", no_class, show_directories_1, _("\
1932 Current search path for finding source files.\n\
1933 $cwd in the path means the current working directory.\n\
1934 $cdir in the path means the compilation directory of the source file."),
1935 &cmdlist);
1936 }
1937
1938 add_info ("source", source_info,
1939 _("Information about the current source file."));
1940
1941 add_info ("line", line_info, _("\
1942 Core addresses of the code for a source line.\n\
1943 Line can be specified as\n\
1944 LINENUM, to list around that line in current file,\n\
1945 FILE:LINENUM, to list around that line in that file,\n\
1946 FUNCTION, to list around beginning of that function,\n\
1947 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1948 Default is to describe the last source line that was listed.\n\n\
1949 This sets the default address for \"x\" to the line's first instruction\n\
1950 so that \"x/i\" suffices to start examining the machine code.\n\
1951 The address is also stored as the value of \"$_\"."));
1952
1953 add_com ("forward-search", class_files, forward_search_command, _("\
1954 Search for regular expression (see regex(3)) from last line listed.\n\
1955 The matching line number is also stored as the value of \"$_\"."));
1956 add_com_alias ("search", "forward-search", class_files, 0);
1957
1958 add_com ("reverse-search", class_files, reverse_search_command, _("\
1959 Search backward for regular expression (see regex(3)) from last line listed.\n\
1960 The matching line number is also stored as the value of \"$_\"."));
1961 add_com_alias ("rev", "reverse-search", class_files, 1);
1962
1963 if (xdb_commands)
1964 {
1965 add_com_alias ("/", "forward-search", class_files, 0);
1966 add_com_alias ("?", "reverse-search", class_files, 0);
1967 }
1968
1969 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
1970 Set number of source lines gdb will list by default."), _("\
1971 Show number of source lines gdb will list by default."), NULL,
1972 NULL,
1973 show_lines_to_list,
1974 &setlist, &showlist);
1975
1976 add_cmd ("substitute-path", class_files, set_substitute_path_command,
1977 _("\
1978 Usage: set substitute-path FROM TO\n\
1979 Add a substitution rule replacing FROM into TO in source file names.\n\
1980 If a substitution rule was previously set for FROM, the old rule\n\
1981 is replaced by the new one."),
1982 &setlist);
1983
1984 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
1985 _("\
1986 Usage: unset substitute-path [FROM]\n\
1987 Delete the rule for substituting FROM in source file names. If FROM\n\
1988 is not specified, all substituting rules are deleted.\n\
1989 If the debugger cannot find a rule for FROM, it will display a warning."),
1990 &unsetlist);
1991
1992 add_cmd ("substitute-path", class_files, show_substitute_path_command,
1993 _("\
1994 Usage: show substitute-path [FROM]\n\
1995 Print the rule for substituting FROM in source file names. If FROM\n\
1996 is not specified, print all substitution rules."),
1997 &showlist);
1998 }
This page took 0.072735 seconds and 4 git commands to generate.