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