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