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