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