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