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