Automatic date update in version.in
[binutils-gdb.git] / gdb / source.c
blob24a8769da91472760d07af6ae9f43aadaa9b7be1
1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright (C) 1986-2024 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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/>. */
19 #include "arch-utils.h"
20 #include "symtab.h"
21 #include "expression.h"
22 #include "language.h"
23 #include "command.h"
24 #include "source.h"
25 #include "cli/cli-cmds.h"
26 #include "frame.h"
27 #include "value.h"
28 #include "gdbsupport/filestuff.h"
30 #include <sys/types.h>
31 #include <fcntl.h>
32 #include "gdbcore.h"
33 #include "gdbsupport/gdb_regex.h"
34 #include "symfile.h"
35 #include "objfiles.h"
36 #include "annotate.h"
37 #include "gdbtypes.h"
38 #include "linespec.h"
39 #include "filenames.h"
40 #include "completer.h"
41 #include "ui-out.h"
42 #include "readline/tilde.h"
43 #include "gdbsupport/enum-flags.h"
44 #include "gdbsupport/scoped_fd.h"
45 #include <algorithm>
46 #include "gdbsupport/pathstuff.h"
47 #include "source-cache.h"
48 #include "cli/cli-style.h"
49 #include "observable.h"
50 #include "build-id.h"
51 #include "debuginfod-support.h"
52 #include "gdbsupport/buildargv.h"
53 #include "interps.h"
55 #define OPEN_MODE (O_RDONLY | O_BINARY)
56 #define FDOPEN_MODE FOPEN_RB
58 /* Path of directories to search for source files.
59 Same format as the PATH environment variable's value. */
61 std::string source_path;
63 /* Support for source path substitution commands. */
65 struct substitute_path_rule
67 substitute_path_rule (const char *from_, const char *to_)
68 : from (from_),
69 to (to_)
73 std::string from;
74 std::string to;
77 static std::list<substitute_path_rule> substitute_path_rules;
79 /* An instance of this is attached to each program space. */
81 struct current_source_location
83 public:
85 current_source_location () = default;
87 /* Set the value. */
88 void set (struct symtab *s, int l)
90 m_symtab = s;
91 m_line = l;
92 gdb::observers::current_source_symtab_and_line_changed.notify ();
95 /* Get the symtab. */
96 struct symtab *symtab () const
98 return m_symtab;
101 /* Get the line number. */
102 int line () const
104 return m_line;
107 private:
109 /* Symtab of default file for listing lines of. */
111 struct symtab *m_symtab = nullptr;
113 /* Default next line to list. */
115 int m_line = 0;
118 static const registry<program_space>::key<current_source_location>
119 current_source_key;
121 /* Default number of lines to print with commands like "list".
122 This is based on guessing how many long (i.e. more than chars_per_line
123 characters) lines there will be. To be completely correct, "list"
124 and friends should be rewritten to count characters and see where
125 things are wrapping, but that would be a fair amount of work. */
127 static int lines_to_list = 10;
128 static void
129 show_lines_to_list (struct ui_file *file, int from_tty,
130 struct cmd_list_element *c, const char *value)
132 gdb_printf (file,
133 _("Number of source lines gdb "
134 "will list by default is %s.\n"),
135 value);
138 /* Possible values of 'set filename-display'. */
139 static const char filename_display_basename[] = "basename";
140 static const char filename_display_relative[] = "relative";
141 static const char filename_display_absolute[] = "absolute";
143 static const char *const filename_display_kind_names[] = {
144 filename_display_basename,
145 filename_display_relative,
146 filename_display_absolute,
147 NULL
150 static const char *filename_display_string = filename_display_relative;
152 static void
153 show_filename_display_string (struct ui_file *file, int from_tty,
154 struct cmd_list_element *c, const char *value)
156 gdb_printf (file, _("Filenames are displayed as \"%s\".\n"), value);
159 /* When true GDB will stat and open source files as required, but when
160 false, GDB will avoid accessing source files as much as possible. */
162 static bool source_open = true;
164 /* Implement 'show source open'. */
166 static void
167 show_source_open (struct ui_file *file, int from_tty,
168 struct cmd_list_element *c, const char *value)
170 gdb_printf (file, _("Source opening is \"%s\".\n"), value);
173 /* Line number of last line printed. Default for various commands.
174 current_source_line is usually, but not always, the same as this. */
176 static int last_line_listed;
178 /* First line number listed by last listing command. If 0, then no
179 source lines have yet been listed since the last time the current
180 source line was changed. */
182 static int first_line_listed;
184 /* Saves the name of the last source file visited and a possible error code.
185 Used to prevent repeating annoying "No such file or directories" msgs. */
187 static struct symtab *last_source_visited = NULL;
188 static bool last_source_error = false;
190 /* Return the first line listed by print_source_lines.
191 Used by command interpreters to request listing from
192 a previous point. */
195 get_first_line_listed (void)
197 return first_line_listed;
200 /* Clear line listed range. This makes the next "list" center the
201 printed source lines around the current source line. */
203 static void
204 clear_lines_listed_range (void)
206 first_line_listed = 0;
207 last_line_listed = 0;
210 /* Return the default number of lines to print with commands like the
211 cli "list". The caller of print_source_lines must use this to
212 calculate the end line and use it in the call to print_source_lines
213 as it does not automatically use this value. */
216 get_lines_to_list (void)
218 return lines_to_list;
221 /* A helper to return the current source location object for PSPACE,
222 creating it if it does not exist. */
224 static current_source_location *
225 get_source_location (program_space *pspace)
227 current_source_location *loc
228 = current_source_key.get (pspace);
229 if (loc == nullptr)
230 loc = current_source_key.emplace (pspace);
231 return loc;
234 /* Return the current source file for listing and next line to list.
235 NOTE: The returned sal pc and end fields are not valid. */
237 struct symtab_and_line
238 get_current_source_symtab_and_line (void)
240 symtab_and_line cursal;
241 current_source_location *loc = get_source_location (current_program_space);
243 cursal.pspace = current_program_space;
244 cursal.symtab = loc->symtab ();
245 cursal.line = loc->line ();
246 cursal.pc = 0;
247 cursal.end = 0;
249 return cursal;
252 /* If the current source file for listing is not set, try and get a default.
253 Usually called before get_current_source_symtab_and_line() is called.
254 It may err out if a default cannot be determined.
255 We must be cautious about where it is called, as it can recurse as the
256 process of determining a new default may call the caller!
257 Use get_current_source_symtab_and_line only to get whatever
258 we have without erroring out or trying to get a default. */
260 void
261 set_default_source_symtab_and_line (void)
263 if (!have_full_symbols () && !have_partial_symbols ())
264 error (_("No symbol table is loaded. Use the \"file\" command."));
266 /* Pull in a current source symtab if necessary. */
267 current_source_location *loc = get_source_location (current_program_space);
268 if (loc->symtab () == nullptr)
269 select_source_symtab ();
272 /* Return the current default file for listing and next line to list
273 (the returned sal pc and end fields are not valid.)
274 and set the current default to whatever is in SAL.
275 NOTE: The returned sal pc and end fields are not valid. */
277 struct symtab_and_line
278 set_current_source_symtab_and_line (const symtab_and_line &sal)
280 symtab_and_line cursal;
282 current_source_location *loc = get_source_location (sal.pspace);
284 cursal.pspace = sal.pspace;
285 cursal.symtab = loc->symtab ();
286 cursal.line = loc->line ();
287 cursal.pc = 0;
288 cursal.end = 0;
290 loc->set (sal.symtab, sal.line);
292 /* Force the next "list" to center around the current line. */
293 clear_lines_listed_range ();
295 return cursal;
298 /* Reset any information stored about a default file and line to print. */
300 void
301 clear_current_source_symtab_and_line (void)
303 current_source_location *loc = get_source_location (current_program_space);
304 loc->set (nullptr, 0);
307 /* See source.h. */
309 void
310 select_source_symtab ()
312 current_source_location *loc = get_source_location (current_program_space);
313 if (loc->symtab () != nullptr)
314 return;
316 /* Make the default place to list be the function `main'
317 if one exists. */
318 block_symbol bsym = lookup_symbol (main_name (), nullptr,
319 SEARCH_FUNCTION_DOMAIN, nullptr);
320 if (bsym.symbol != nullptr)
322 symtab_and_line sal = find_function_start_sal (bsym.symbol, true);
323 if (sal.symtab == NULL)
324 /* We couldn't find the location of `main', possibly due to missing
325 line number info, fall back to line 1 in the corresponding file. */
326 loc->set (bsym.symbol->symtab (), 1);
327 else
328 loc->set (sal.symtab, std::max (sal.line - (lines_to_list - 1), 1));
329 return;
332 /* Alright; find the last file in the symtab list (ignoring .h's
333 and namespace symtabs). */
335 struct symtab *new_symtab = nullptr;
337 for (objfile *ofp : current_program_space->objfiles ())
339 for (compunit_symtab *cu : ofp->compunits ())
341 for (symtab *symtab : cu->filetabs ())
343 const char *name = symtab->filename;
344 int len = strlen (name);
346 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
347 || strcmp (name, "<<C++-namespaces>>") == 0)))
348 new_symtab = symtab;
353 loc->set (new_symtab, 1);
354 if (new_symtab != nullptr)
355 return;
357 for (objfile *objfile : current_program_space->objfiles ())
359 symtab *s = objfile->find_last_source_symtab ();
360 if (s)
361 new_symtab = s;
363 if (new_symtab != nullptr)
365 loc->set (new_symtab,1);
366 return;
369 error (_("Can't find a default source file"));
372 /* Handler for "set directories path-list" command.
373 "set dir mumble" doesn't prepend paths, it resets the entire
374 path list. The theory is that set(show(dir)) should be a no-op. */
376 static void
377 set_directories_command (const char *args,
378 int from_tty, struct cmd_list_element *c)
380 /* This is the value that was set.
381 It needs to be processed to maintain $cdir:$cwd and remove dups. */
382 std::string set_path = source_path;
384 /* We preserve the invariant that $cdir:$cwd begins life at the end of
385 the list by calling init_source_path. If they appear earlier in
386 SET_PATH then mod_path will move them appropriately.
387 mod_path will also remove duplicates. */
388 init_source_path ();
389 if (!set_path.empty ())
390 mod_path (set_path.c_str (), source_path);
393 /* Print the list of source directories.
394 This is used by the "ld" command, so it has the signature of a command
395 function. */
397 static void
398 show_directories_1 (ui_file *file, char *ignore, int from_tty)
400 gdb_puts ("Source directories searched: ", file);
401 gdb_puts (source_path.c_str (), file);
402 gdb_puts ("\n", file);
405 /* Handler for "show directories" command. */
407 static void
408 show_directories_command (struct ui_file *file, int from_tty,
409 struct cmd_list_element *c, const char *value)
411 show_directories_1 (file, NULL, from_tty);
414 /* See source.h. */
416 void
417 forget_cached_source_info (void)
419 for (struct program_space *pspace : program_spaces)
420 for (objfile *objfile : pspace->objfiles ())
421 objfile->forget_cached_source_info ();
423 g_source_cache.clear ();
424 last_source_visited = NULL;
427 void
428 init_source_path (void)
430 source_path = string_printf ("$cdir%c$cwd", DIRNAME_SEPARATOR);
431 forget_cached_source_info ();
434 /* Add zero or more directories to the front of the source path. */
436 static void
437 directory_command (const char *dirname, int from_tty)
439 bool value_changed = false;
440 dont_repeat ();
441 /* FIXME, this goes to "delete dir"... */
442 if (dirname == 0)
444 if (!from_tty || query (_("Reinitialize source path to empty? ")))
446 init_source_path ();
447 value_changed = true;
450 else
452 mod_path (dirname, source_path);
453 forget_cached_source_info ();
454 value_changed = true;
456 if (value_changed)
458 interps_notify_param_changed ("directories", source_path.c_str ());
460 if (from_tty)
461 show_directories_1 (gdb_stdout, (char *) 0, from_tty);
465 /* Add a path given with the -d command line switch.
466 This will not be quoted so we must not treat spaces as separators. */
468 void
469 directory_switch (const char *dirname, int from_tty)
471 add_path (dirname, source_path, 0);
474 /* Add zero or more directories to the front of an arbitrary path. */
476 void
477 mod_path (const char *dirname, std::string &which_path)
479 add_path (dirname, which_path, 1);
482 /* Workhorse of mod_path. Takes an extra argument to determine
483 if dirname should be parsed for separators that indicate multiple
484 directories. This allows for interfaces that pre-parse the dirname
485 and allow specification of traditional separator characters such
486 as space or tab. */
488 void
489 add_path (const char *dirname, char **which_path, int parse_separators)
491 char *old = *which_path;
492 int prefix = 0;
493 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec;
495 if (dirname == 0)
496 return;
498 if (parse_separators)
500 /* This will properly parse the space and tab separators
501 and any quotes that may exist. */
502 gdb_argv argv (dirname);
504 for (char *arg : argv)
505 dirnames_to_char_ptr_vec_append (&dir_vec, arg);
507 else
508 dir_vec.emplace_back (xstrdup (dirname));
510 for (const gdb::unique_xmalloc_ptr<char> &name_up : dir_vec)
512 const char *name = name_up.get ();
513 char *p;
514 struct stat st;
515 std::string new_name_holder;
517 /* Spaces and tabs will have been removed by buildargv().
518 NAME is the start of the directory.
519 P is the '\0' following the end. */
520 p = name_up.get () + strlen (name);
522 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
523 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
524 /* On MS-DOS and MS-Windows, h:\ is different from h: */
525 && !(p == name + 3 && name[1] == ':') /* "d:/" */
526 #endif
527 && p > name
528 && IS_DIR_SEPARATOR (p[-1]))
529 /* Sigh. "foo/" => "foo" */
530 --p;
531 *p = '\0';
533 while (p > name && p[-1] == '.')
535 if (p - name == 1)
537 /* "." => getwd (). */
538 name = current_directory;
539 goto append;
541 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
543 if (p - name == 2)
545 /* "/." => "/". */
546 *--p = '\0';
547 goto append;
549 else
551 /* "...foo/." => "...foo". */
552 p -= 2;
553 *p = '\0';
554 continue;
557 else
558 break;
561 if (name[0] == '\0')
562 goto skip_dup;
563 if (name[0] == '~')
564 new_name_holder
565 = gdb::unique_xmalloc_ptr<char[]> (tilde_expand (name)).get ();
566 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
567 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
568 new_name_holder = std::string (name) + ".";
569 #endif
570 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
571 new_name_holder = gdb_abspath (name);
572 else
573 new_name_holder = std::string (name, p - name);
575 name = new_name_holder.c_str ();
577 /* Unless it's a variable, check existence. */
578 if (name[0] != '$')
580 /* These are warnings, not errors, since we don't want a
581 non-existent directory in a .gdbinit file to stop processing
582 of the .gdbinit file.
584 Whether they get added to the path is more debatable. Current
585 answer is yes, in case the user wants to go make the directory
586 or whatever. If the directory continues to not exist/not be
587 a directory/etc, then having them in the path should be
588 harmless. */
589 if (stat (name, &st) < 0)
590 warning_filename_and_errno (name, errno);
591 else if ((st.st_mode & S_IFMT) != S_IFDIR)
592 warning (_("%ps is not a directory."),
593 styled_string (file_name_style.style (), name));
596 append:
598 unsigned int len = strlen (name);
599 char tinybuf[2];
601 p = *which_path;
602 while (1)
604 /* FIXME: we should use realpath() or its work-alike
605 before comparing. Then all the code above which
606 removes excess slashes and dots could simply go away. */
607 if (!filename_ncmp (p, name, len)
608 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
610 /* Found it in the search path, remove old copy. */
611 if (p > *which_path)
613 /* Back over leading separator. */
614 p--;
616 if (prefix > p - *which_path)
618 /* Same dir twice in one cmd. */
619 goto skip_dup;
621 /* Copy from next '\0' or ':'. */
622 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
624 p = strchr (p, DIRNAME_SEPARATOR);
625 if (p != 0)
626 ++p;
627 else
628 break;
631 tinybuf[0] = DIRNAME_SEPARATOR;
632 tinybuf[1] = '\0';
634 /* If we have already tacked on a name(s) in this command,
635 be sure they stay on the front as we tack on some
636 more. */
637 if (prefix)
639 std::string temp = std::string (old, prefix) + tinybuf + name;
640 *which_path = concat (temp.c_str (), &old[prefix],
641 (char *) nullptr);
642 prefix = temp.length ();
644 else
646 *which_path = concat (name, (old[0] ? tinybuf : old),
647 old, (char *)NULL);
648 prefix = strlen (name);
650 xfree (old);
651 old = *which_path;
653 skip_dup:
658 /* add_path would need to be re-written to work on an std::string, but this is
659 not trivial. Hence this overload which copies to a `char *` and back. */
661 void
662 add_path (const char *dirname, std::string &which_path, int parse_separators)
664 char *which_path_copy = xstrdup (which_path.data ());
665 add_path (dirname, &which_path_copy, parse_separators);
666 which_path = which_path_copy;
667 xfree (which_path_copy);
670 static void
671 info_source_command (const char *ignore, int from_tty)
673 current_source_location *loc
674 = get_source_location (current_program_space);
675 struct symtab *s = loc->symtab ();
676 struct compunit_symtab *cust;
678 if (!s)
680 gdb_printf (_("No current source file.\n"));
681 return;
684 cust = s->compunit ();
685 gdb_printf (_("Current source file is %s\n"), s->filename);
686 if (s->compunit ()->dirname () != NULL)
687 gdb_printf (_("Compilation directory is %s\n"), s->compunit ()->dirname ());
688 if (s->fullname)
689 gdb_printf (_("Located in %s\n"), s->fullname);
690 const std::vector<off_t> *offsets;
691 if (g_source_cache.get_line_charpos (s, &offsets))
692 gdb_printf (_("Contains %d line%s.\n"), (int) offsets->size (),
693 offsets->size () == 1 ? "" : "s");
695 gdb_printf (_("Source language is %s.\n"),
696 language_str (s->language ()));
697 gdb_printf (_("Producer is %s.\n"),
698 (cust->producer ()) != nullptr
699 ? cust->producer () : _("unknown"));
700 gdb_printf (_("Compiled with %s debugging format.\n"),
701 cust->debugformat ());
702 gdb_printf (_("%s preprocessor macro info.\n"),
703 (cust->macro_table () != nullptr
704 ? "Includes" : "Does not include"));
708 /* Helper function to remove characters from the start of PATH so that
709 PATH can then be appended to a directory name. We remove leading drive
710 letters (for dos) as well as leading '/' characters and './'
711 sequences. */
713 static const char *
714 prepare_path_for_appending (const char *path)
716 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
717 if (HAS_DRIVE_SPEC (path))
718 path = STRIP_DRIVE_SPEC (path);
720 const char *old_path;
723 old_path = path;
725 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
726 while (IS_DIR_SEPARATOR(path[0]))
727 path++;
729 /* ./foo => foo */
730 while (path[0] == '.' && IS_DIR_SEPARATOR (path[1]))
731 path += 2;
733 while (old_path != path);
735 return path;
738 /* Open a file named STRING, searching path PATH (dir names sep by some char)
739 using mode MODE in the calls to open. You cannot use this function to
740 create files (O_CREAT).
742 OPTS specifies the function behaviour in specific cases.
744 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
745 (ie pretend the first element of PATH is "."). This also indicates
746 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
747 disables searching of the path (this is so that "exec-file ./foo" or
748 "symbol-file ./foo" insures that you get that particular version of
749 foo or an error message).
751 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
752 searched in path (we usually want this for source files but not for
753 executables).
755 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
756 the actual file opened (this string will always start with a "/"). We
757 have to take special pains to avoid doubling the "/" between the directory
758 and the file, sigh! Emacs gets confuzzed by this when we print the
759 source file name!!!
761 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
762 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
763 filename starting with "/". If FILENAME_OPENED is NULL this option has no
764 effect.
766 If a file is found, return the descriptor.
767 Otherwise, return -1, with errno set for the last name we tried to open. */
769 /* >>>> This should only allow files of certain types,
770 >>>> eg executable, non-directory. */
772 openp (const char *path, openp_flags opts, const char *string,
773 int mode, gdb::unique_xmalloc_ptr<char> *filename_opened)
775 int fd;
776 char *filename;
777 int alloclen;
778 /* The errno set for the last name we tried to open (and
779 failed). */
780 int last_errno = 0;
781 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec;
783 /* The open syscall MODE parameter is not specified. */
784 gdb_assert ((mode & O_CREAT) == 0);
785 gdb_assert (string != NULL);
787 /* A file with an empty name cannot possibly exist. Report a failure
788 without further checking.
790 This is an optimization which also defends us against buggy
791 implementations of the "stat" function. For instance, we have
792 noticed that a MinGW debugger built on Windows XP 32bits crashes
793 when the debugger is started with an empty argument. */
794 if (string[0] == '\0')
796 errno = ENOENT;
797 return -1;
800 if (!path)
801 path = ".";
803 mode |= O_BINARY;
805 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
807 int i, reg_file_errno;
809 if (is_regular_file (string, &reg_file_errno))
811 filename = (char *) alloca (strlen (string) + 1);
812 strcpy (filename, string);
813 fd = gdb_open_cloexec (filename, mode, 0).release ();
814 if (fd >= 0)
815 goto done;
816 last_errno = errno;
818 else
820 filename = NULL;
821 fd = -1;
822 last_errno = reg_file_errno;
825 if (!(opts & OPF_SEARCH_IN_PATH))
826 for (i = 0; string[i]; i++)
827 if (IS_DIR_SEPARATOR (string[i]))
828 goto done;
831 /* Remove characters from the start of PATH that we don't need when PATH
832 is appended to a directory name. */
833 string = prepare_path_for_appending (string);
835 alloclen = strlen (path) + strlen (string) + 2;
836 filename = (char *) alloca (alloclen);
837 fd = -1;
838 last_errno = ENOENT;
840 dir_vec = dirnames_to_char_ptr_vec (path);
842 for (const gdb::unique_xmalloc_ptr<char> &dir_up : dir_vec)
844 char *dir = dir_up.get ();
845 size_t len = strlen (dir);
846 int reg_file_errno;
848 if (strcmp (dir, "$cwd") == 0)
850 /* Name is $cwd -- insert current directory name instead. */
851 int newlen;
853 /* First, realloc the filename buffer if too short. */
854 len = strlen (current_directory);
855 newlen = len + strlen (string) + 2;
856 if (newlen > alloclen)
858 alloclen = newlen;
859 filename = (char *) alloca (alloclen);
861 strcpy (filename, current_directory);
863 else if (strchr(dir, '~'))
865 /* See whether we need to expand the tilde. */
866 int newlen;
868 gdb::unique_xmalloc_ptr<char> tilde_expanded (tilde_expand (dir));
870 /* First, realloc the filename buffer if too short. */
871 len = strlen (tilde_expanded.get ());
872 newlen = len + strlen (string) + 2;
873 if (newlen > alloclen)
875 alloclen = newlen;
876 filename = (char *) alloca (alloclen);
878 strcpy (filename, tilde_expanded.get ());
880 else
882 /* Normal file name in path -- just use it. */
883 strcpy (filename, dir);
885 /* Don't search $cdir. It's also a magic path like $cwd, but we
886 don't have enough information to expand it. The user *could*
887 have an actual directory named '$cdir' but handling that would
888 be confusing, it would mean different things in different
889 contexts. If the user really has '$cdir' one can use './$cdir'.
890 We can get $cdir when loading scripts. When loading source files
891 $cdir must have already been expanded to the correct value. */
892 if (strcmp (dir, "$cdir") == 0)
893 continue;
896 /* Remove trailing slashes. */
897 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
898 filename[--len] = 0;
900 strcat (filename + len, SLASH_STRING);
901 strcat (filename, string);
903 if (is_regular_file (filename, &reg_file_errno))
905 fd = gdb_open_cloexec (filename, mode, 0).release ();
906 if (fd >= 0)
907 break;
908 last_errno = errno;
910 else
911 last_errno = reg_file_errno;
914 done:
915 if (filename_opened)
917 /* If a file was opened, canonicalize its filename. */
918 if (fd < 0)
919 filename_opened->reset (NULL);
920 else if ((opts & OPF_RETURN_REALPATH) != 0)
921 *filename_opened = gdb_realpath (filename);
922 else
923 *filename_opened
924 = make_unique_xstrdup (gdb_abspath (filename).c_str ());
927 errno = last_errno;
928 return fd;
932 /* This is essentially a convenience, for clients that want the behaviour
933 of openp, using source_path, but that really don't want the file to be
934 opened but want instead just to know what the full pathname is (as
935 qualified against source_path).
937 The current working directory is searched first.
939 If the file was found, this function returns 1, and FULL_PATHNAME is
940 set to the fully-qualified pathname.
942 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
944 source_full_path_of (const char *filename,
945 gdb::unique_xmalloc_ptr<char> *full_pathname)
947 int fd;
949 fd = openp (source_path.c_str (),
950 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
951 filename, O_RDONLY, full_pathname);
952 if (fd < 0)
954 full_pathname->reset (NULL);
955 return 0;
958 close (fd);
959 return 1;
962 /* Return non-zero if RULE matches PATH, that is if the rule can be
963 applied to PATH. */
965 static int
966 substitute_path_rule_matches (const struct substitute_path_rule *rule,
967 const char *path)
969 const int from_len = rule->from.length ();
970 const int path_len = strlen (path);
972 if (path_len < from_len)
973 return 0;
975 /* The substitution rules are anchored at the start of the path,
976 so the path should start with rule->from. */
978 if (filename_ncmp (path, rule->from.c_str (), from_len) != 0)
979 return 0;
981 /* Make sure that the region in the path that matches the substitution
982 rule is immediately followed by a directory separator (or the end of
983 string character). */
985 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
986 return 0;
988 return 1;
991 /* Find the substitute-path rule that applies to PATH and return it.
992 Return NULL if no rule applies. */
994 static struct substitute_path_rule *
995 get_substitute_path_rule (const char *path)
997 for (substitute_path_rule &rule : substitute_path_rules)
998 if (substitute_path_rule_matches (&rule, path))
999 return &rule;
1001 return nullptr;
1004 /* If the user specified a source path substitution rule that applies
1005 to PATH, then apply it and return the new path.
1007 Return NULL if no substitution rule was specified by the user,
1008 or if no rule applied to the given PATH. */
1010 gdb::unique_xmalloc_ptr<char>
1011 rewrite_source_path (const char *path)
1013 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
1015 if (rule == nullptr)
1016 return nullptr;
1018 /* Compute the rewritten path and return it. */
1020 return (gdb::unique_xmalloc_ptr<char>
1021 (concat (rule->to.c_str (), path + rule->from.length (), nullptr)));
1024 /* See source.h. */
1026 scoped_fd
1027 find_and_open_source (const char *filename,
1028 const char *dirname,
1029 gdb::unique_xmalloc_ptr<char> *fullname)
1031 const char *path = source_path.c_str ();
1032 std::string expanded_path_holder;
1033 const char *p;
1035 /* If reading of source files is disabled then return a result indicating
1036 the attempt to read this source file failed. GDB will then display
1037 the filename and line number instead. */
1038 if (!source_open)
1039 return scoped_fd (-ECANCELED);
1041 /* Quick way out if we already know its full name. */
1042 if (*fullname)
1044 /* The user may have requested that source paths be rewritten
1045 according to substitution rules he provided. If a substitution
1046 rule applies to this path, then apply it. */
1047 gdb::unique_xmalloc_ptr<char> rewritten_fullname
1048 = rewrite_source_path (fullname->get ());
1050 if (rewritten_fullname != NULL)
1051 *fullname = std::move (rewritten_fullname);
1053 scoped_fd result = gdb_open_cloexec (fullname->get (), OPEN_MODE, 0);
1054 if (result.get () >= 0)
1056 *fullname = gdb_realpath (fullname->get ());
1057 return result;
1060 /* Didn't work -- free old one, try again. */
1061 fullname->reset (NULL);
1064 gdb::unique_xmalloc_ptr<char> rewritten_dirname;
1065 if (dirname != NULL)
1067 /* If necessary, rewrite the compilation directory name according
1068 to the source path substitution rules specified by the user. */
1070 rewritten_dirname = rewrite_source_path (dirname);
1072 if (rewritten_dirname != NULL)
1073 dirname = rewritten_dirname.get ();
1075 /* Replace a path entry of $cdir with the compilation directory
1076 name. */
1077 #define cdir_len 5
1078 p = strstr (source_path.c_str (), "$cdir");
1079 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1080 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1082 int len = p - source_path.c_str ();
1084 /* Before $cdir */
1085 expanded_path_holder = source_path.substr (0, len);
1087 /* new stuff */
1088 expanded_path_holder += dirname;
1090 /* After $cdir */
1091 expanded_path_holder += source_path.c_str () + len + cdir_len;
1093 path = expanded_path_holder.c_str ();
1097 gdb::unique_xmalloc_ptr<char> rewritten_filename
1098 = rewrite_source_path (filename);
1100 if (rewritten_filename != NULL)
1101 filename = rewritten_filename.get ();
1103 /* Try to locate file using filename. */
1104 int result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1105 OPEN_MODE, fullname);
1106 if (result < 0 && dirname != NULL)
1108 /* Remove characters from the start of PATH that we don't need when
1109 PATH is appended to a directory name. */
1110 const char *filename_start = prepare_path_for_appending (filename);
1112 /* Try to locate file using compilation dir + filename. This is
1113 helpful if part of the compilation directory was removed,
1114 e.g. using gcc's -fdebug-prefix-map, and we have added the missing
1115 prefix to source_path. */
1116 std::string cdir_filename = path_join (dirname, filename_start);
1118 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
1119 cdir_filename.c_str (), OPEN_MODE, fullname);
1121 if (result < 0)
1123 /* Didn't work. Try using just the basename. */
1124 p = lbasename (filename);
1125 if (p != filename)
1126 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1127 OPEN_MODE, fullname);
1130 /* If the file wasn't found, then openp will have set errno accordingly. */
1131 if (result < 0)
1132 result = -errno;
1134 return scoped_fd (result);
1137 /* Open a source file given a symtab S. Returns a file descriptor or
1138 negative errno for error.
1140 This function is a convenience function to find_and_open_source. */
1142 scoped_fd
1143 open_source_file (struct symtab *s)
1145 if (!s)
1146 return scoped_fd (-EINVAL);
1148 gdb::unique_xmalloc_ptr<char> fullname (s->fullname);
1149 s->fullname = NULL;
1150 scoped_fd fd = find_and_open_source (s->filename, s->compunit ()->dirname (),
1151 &fullname);
1153 if (fd.get () < 0)
1155 if (s->compunit () != nullptr)
1157 const objfile *ofp = s->compunit ()->objfile ();
1159 std::string srcpath;
1160 if (IS_ABSOLUTE_PATH (s->filename))
1161 srcpath = s->filename;
1162 else if (s->compunit ()->dirname () != nullptr)
1164 srcpath = s->compunit ()->dirname ();
1165 srcpath += SLASH_STRING;
1166 srcpath += s->filename;
1169 const struct bfd_build_id *build_id
1170 = build_id_bfd_get (ofp->obfd.get ());
1172 /* Query debuginfod for the source file. */
1173 if (build_id != nullptr && !srcpath.empty ())
1175 scoped_fd query_fd
1176 = debuginfod_source_query (build_id->data,
1177 build_id->size,
1178 srcpath.c_str (),
1179 &fullname);
1181 /* Don't return a negative errno from debuginfod_source_query.
1182 It handles the reporting of its own errors. */
1183 if (query_fd.get () >= 0)
1185 s->fullname = fullname.release ();
1186 return query_fd;
1192 s->fullname = fullname.release ();
1193 return fd;
1196 /* See source.h. */
1198 gdb::unique_xmalloc_ptr<char>
1199 find_source_or_rewrite (const char *filename, const char *dirname)
1201 gdb::unique_xmalloc_ptr<char> fullname;
1203 scoped_fd fd = find_and_open_source (filename, dirname, &fullname);
1204 if (fd.get () < 0)
1206 /* rewrite_source_path would be applied by find_and_open_source, we
1207 should report the pathname where GDB tried to find the file. */
1209 if (dirname == nullptr || IS_ABSOLUTE_PATH (filename))
1210 fullname.reset (xstrdup (filename));
1211 else
1212 fullname.reset (concat (dirname, SLASH_STRING,
1213 filename, (char *) nullptr));
1215 gdb::unique_xmalloc_ptr<char> rewritten
1216 = rewrite_source_path (fullname.get ());
1217 if (rewritten != nullptr)
1218 fullname = std::move (rewritten);
1221 return fullname;
1224 /* Finds the fullname that a symtab represents.
1226 This functions finds the fullname and saves it in s->fullname.
1227 It will also return the value.
1229 If this function fails to find the file that this symtab represents,
1230 the expected fullname is used. Therefore the files does not have to
1231 exist. */
1233 const char *
1234 symtab_to_fullname (struct symtab *s)
1236 /* Use cached copy if we have it.
1237 We rely on forget_cached_source_info being called appropriately
1238 to handle cases like the file being moved. */
1239 if (s->fullname == NULL)
1241 scoped_fd fd = open_source_file (s);
1243 if (fd.get () < 0)
1245 gdb::unique_xmalloc_ptr<char> fullname;
1247 /* rewrite_source_path would be applied by find_and_open_source, we
1248 should report the pathname where GDB tried to find the file. */
1250 if (s->compunit ()->dirname () == nullptr
1251 || IS_ABSOLUTE_PATH (s->filename))
1252 fullname.reset (xstrdup (s->filename));
1253 else
1254 fullname.reset (concat (s->compunit ()->dirname (), SLASH_STRING,
1255 s->filename, (char *) NULL));
1257 s->fullname = rewrite_source_path (fullname.get ()).release ();
1258 if (s->fullname == NULL)
1259 s->fullname = fullname.release ();
1263 return s->fullname;
1266 /* See commentary in source.h. */
1268 const char *
1269 symtab_to_filename_for_display (struct symtab *symtab)
1271 if (filename_display_string == filename_display_basename)
1272 return lbasename (symtab->filename);
1273 else if (filename_display_string == filename_display_absolute)
1274 return symtab_to_fullname (symtab);
1275 else if (filename_display_string == filename_display_relative)
1276 return symtab->filename;
1277 else
1278 internal_error (_("invalid filename_display_string"));
1283 /* Print source lines from the file of symtab S,
1284 starting with line number LINE and stopping before line number STOPLINE. */
1286 static void
1287 print_source_lines_base (struct symtab *s, int line, int stopline,
1288 print_source_lines_flags flags)
1290 bool noprint = false;
1291 int errcode = ENOENT;
1292 int nlines = stopline - line;
1293 struct ui_out *uiout = current_uiout;
1295 /* Regardless of whether we can open the file, set current_source_symtab. */
1296 current_source_location *loc
1297 = get_source_location (current_program_space);
1299 loc->set (s, line);
1300 first_line_listed = line;
1301 last_line_listed = line;
1303 /* If printing of source lines is disabled, just print file and line
1304 number. */
1305 if (uiout->test_flags (ui_source_list) && source_open)
1307 /* Only prints "No such file or directory" once. */
1308 if (s == last_source_visited)
1310 if (last_source_error)
1312 flags |= PRINT_SOURCE_LINES_NOERROR;
1313 noprint = true;
1316 else
1318 last_source_visited = s;
1319 scoped_fd desc = open_source_file (s);
1320 last_source_error = desc.get () < 0;
1321 if (last_source_error)
1323 noprint = true;
1324 errcode = -desc.get ();
1328 else
1330 flags |= PRINT_SOURCE_LINES_NOERROR;
1331 noprint = true;
1334 if (noprint)
1336 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
1338 const char *filename = symtab_to_filename_for_display (s);
1339 warning (_("%d\t%ps: %s"), line,
1340 styled_string (file_name_style.style (), filename),
1341 safe_strerror (errcode));
1343 else if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list))
1345 /* CLI expects only the "file" field. MI expects both
1346 fields. ui_source_list is set only for CLI, not for
1347 TUI. */
1349 uiout->field_signed ("line", line);
1350 uiout->text ("\tin ");
1352 uiout->field_string ("file", symtab_to_filename_for_display (s),
1353 file_name_style.style ());
1354 if (uiout->is_mi_like_p ())
1356 const char *s_fullname = symtab_to_fullname (s);
1357 uiout->field_string ("fullname", s_fullname);
1360 uiout->text ("\n");
1363 return;
1366 /* If the user requested a sequence of lines that seems to go backward
1367 (from high to low line numbers) then we don't print anything. */
1368 if (stopline <= line)
1369 return;
1371 std::string lines;
1372 if (!g_source_cache.get_source_lines (s, line, stopline - 1, &lines))
1374 const std::vector<off_t> *offsets = nullptr;
1375 g_source_cache.get_line_charpos (s, &offsets);
1376 error (_("Line number %d out of range; %s has %d lines."),
1377 line, symtab_to_filename_for_display (s),
1378 offsets == nullptr ? 0 : (int) offsets->size ());
1381 const char *iter = lines.c_str ();
1382 int new_lineno = loc->line ();
1383 while (nlines-- > 0 && *iter != '\0')
1385 char buf[20];
1387 last_line_listed = loc->line ();
1388 if (flags & PRINT_SOURCE_LINES_FILENAME)
1390 uiout->text (symtab_to_filename_for_display (s));
1391 uiout->text (":");
1393 xsnprintf (buf, sizeof (buf), "%d\t", new_lineno++);
1394 uiout->text (buf);
1396 while (*iter != '\0')
1398 /* Find a run of characters that can be emitted at once.
1399 This is done so that escape sequences are kept
1400 together. */
1401 const char *start = iter;
1402 while (true)
1404 int skip_bytes;
1406 char c = *iter;
1407 if (c == '\033' && skip_ansi_escape (iter, &skip_bytes))
1408 iter += skip_bytes;
1409 else if (c >= 0 && c < 040 && c != '\t')
1410 break;
1411 else if (c == 0177)
1412 break;
1413 else
1414 ++iter;
1416 if (iter > start)
1418 std::string text (start, iter);
1419 uiout->text (text);
1421 if (*iter == '\r')
1423 /* Treat either \r or \r\n as a single newline. */
1424 ++iter;
1425 if (*iter == '\n')
1426 ++iter;
1427 break;
1429 else if (*iter == '\n')
1431 ++iter;
1432 break;
1434 else if (*iter > 0 && *iter < 040)
1436 xsnprintf (buf, sizeof (buf), "^%c", *iter + 0100);
1437 uiout->text (buf);
1438 ++iter;
1440 else if (*iter == 0177)
1442 uiout->text ("^?");
1443 ++iter;
1446 uiout->text ("\n");
1449 loc->set (loc->symtab (), new_lineno);
1453 /* See source.h. */
1455 void
1456 print_source_lines (struct symtab *s, int line, int stopline,
1457 print_source_lines_flags flags)
1459 print_source_lines_base (s, line, stopline, flags);
1462 /* See source.h. */
1464 void
1465 print_source_lines (struct symtab *s, source_lines_range line_range,
1466 print_source_lines_flags flags)
1468 print_source_lines_base (s, line_range.startline (),
1469 line_range.stopline (), flags);
1472 /* See source.h. */
1475 last_symtab_line (struct symtab *s)
1477 const std::vector<off_t> *offsets;
1479 /* Try to get the offsets for the start of each line. */
1480 if (!g_source_cache.get_line_charpos (s, &offsets))
1481 return false;
1482 if (offsets == nullptr)
1483 return false;
1485 return offsets->size ();
1490 /* Print info on range of pc's in a specified line. */
1492 static void
1493 info_line_command (const char *arg, int from_tty)
1495 CORE_ADDR start_pc, end_pc;
1497 std::vector<symtab_and_line> decoded_sals;
1498 symtab_and_line curr_sal;
1499 gdb::array_view<symtab_and_line> sals;
1501 if (arg == 0)
1503 current_source_location *loc
1504 = get_source_location (current_program_space);
1505 curr_sal.symtab = loc->symtab ();
1506 curr_sal.pspace = current_program_space;
1507 if (last_line_listed != 0)
1508 curr_sal.line = last_line_listed;
1509 else
1510 curr_sal.line = loc->line ();
1512 sals = curr_sal;
1514 else
1516 decoded_sals = decode_line_with_last_displayed (arg,
1517 DECODE_LINE_LIST_MODE);
1518 sals = decoded_sals;
1520 dont_repeat ();
1523 /* C++ More than one line may have been specified, as when the user
1524 specifies an overloaded function name. Print info on them all. */
1525 for (const auto &sal : sals)
1527 if (sal.pspace != current_program_space)
1528 continue;
1530 if (sal.symtab == 0)
1532 struct gdbarch *gdbarch = get_current_arch ();
1534 gdb_printf (_("No line number information available"));
1535 if (sal.pc != 0)
1537 /* This is useful for "info line *0x7f34". If we can't tell the
1538 user about a source line, at least let them have the symbolic
1539 address. */
1540 gdb_printf (" for address ");
1541 gdb_stdout->wrap_here (2);
1542 print_address (gdbarch, sal.pc, gdb_stdout);
1544 else
1545 gdb_printf (".");
1546 gdb_printf ("\n");
1548 else if (sal.line > 0
1549 && find_line_pc_range (sal, &start_pc, &end_pc))
1551 gdbarch *gdbarch = sal.symtab->compunit ()->objfile ()->arch ();
1553 if (start_pc == end_pc)
1555 gdb_printf ("Line %d of \"%s\"",
1556 sal.line,
1557 symtab_to_filename_for_display (sal.symtab));
1558 gdb_stdout->wrap_here (2);
1559 gdb_printf (" is at address ");
1560 print_address (gdbarch, start_pc, gdb_stdout);
1561 gdb_stdout->wrap_here (2);
1562 gdb_printf (" but contains no code.\n");
1564 else
1566 gdb_printf ("Line %d of \"%s\"",
1567 sal.line,
1568 symtab_to_filename_for_display (sal.symtab));
1569 gdb_stdout->wrap_here (2);
1570 gdb_printf (" starts at address ");
1571 print_address (gdbarch, start_pc, gdb_stdout);
1572 gdb_stdout->wrap_here (2);
1573 gdb_printf (" and ends at ");
1574 print_address (gdbarch, end_pc, gdb_stdout);
1575 gdb_printf (".\n");
1578 /* x/i should display this line's code. */
1579 set_next_address (gdbarch, start_pc);
1581 /* Repeating "info line" should do the following line. */
1582 last_line_listed = sal.line + 1;
1584 /* If this is the only line, show the source code. If it could
1585 not find the file, don't do anything special. */
1586 if (annotation_level > 0 && sals.size () == 1)
1587 annotate_source_line (sal.symtab, sal.line, 0, start_pc);
1589 else
1590 /* Is there any case in which we get here, and have an address
1591 which the user would want to see? If we have debugging symbols
1592 and no line numbers? */
1593 gdb_printf (_("Line number %d is out of range for \"%s\".\n"),
1594 sal.line, symtab_to_filename_for_display (sal.symtab));
1598 /* Commands to search the source file for a regexp. */
1600 /* Helper for forward_search_command/reverse_search_command. FORWARD
1601 indicates direction: true for forward, false for
1602 backward/reverse. */
1604 static void
1605 search_command_helper (const char *regex, int from_tty, bool forward)
1607 const char *msg = re_comp (regex);
1608 if (msg)
1609 error (("%s"), msg);
1611 current_source_location *loc
1612 = get_source_location (current_program_space);
1613 if (loc->symtab () == nullptr)
1614 select_source_symtab ();
1616 if (!source_open)
1617 error (_("source code access disabled"));
1619 scoped_fd desc (open_source_file (loc->symtab ()));
1620 if (desc.get () < 0)
1621 perror_with_name (symtab_to_filename_for_display (loc->symtab ()),
1622 -desc.get ());
1624 int line = (forward
1625 ? last_line_listed + 1
1626 : last_line_listed - 1);
1628 const std::vector<off_t> *offsets;
1629 if (line < 1
1630 || !g_source_cache.get_line_charpos (loc->symtab (), &offsets)
1631 || line > offsets->size ())
1632 error (_("Expression not found"));
1634 if (lseek (desc.get (), (*offsets)[line - 1], 0) < 0)
1635 perror_with_name (symtab_to_filename_for_display (loc->symtab ()));
1637 gdb_file_up stream = desc.to_file (FDOPEN_MODE);
1638 clearerr (stream.get ());
1640 gdb::def_vector<char> buf;
1641 buf.reserve (256);
1643 while (1)
1645 buf.resize (0);
1647 int c = fgetc (stream.get ());
1648 if (c == EOF)
1649 break;
1652 buf.push_back (c);
1654 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1656 /* Remove the \r, if any, at the end of the line, otherwise
1657 regular expressions that end with $ or \n won't work. */
1658 size_t sz = buf.size ();
1659 if (sz >= 2 && buf[sz - 2] == '\r')
1661 buf[sz - 2] = '\n';
1662 buf.resize (sz - 1);
1665 /* We now have a source line in buf, null terminate and match. */
1666 buf.push_back ('\0');
1667 if (re_exec (buf.data ()) > 0)
1669 /* Match! */
1670 print_source_lines (loc->symtab (), line, line + 1, 0);
1671 set_internalvar_integer (lookup_internalvar ("_"), line);
1672 loc->set (loc->symtab (), std::max (line - lines_to_list / 2, 1));
1673 return;
1676 if (forward)
1677 line++;
1678 else
1680 line--;
1681 if (line < 1)
1682 break;
1683 if (fseek (stream.get (), (*offsets)[line - 1], 0) < 0)
1685 const char *filename
1686 = symtab_to_filename_for_display (loc->symtab ());
1687 perror_with_name (filename);
1692 gdb_printf (_("Expression not found\n"));
1695 static void
1696 forward_search_command (const char *regex, int from_tty)
1698 search_command_helper (regex, from_tty, true);
1701 static void
1702 reverse_search_command (const char *regex, int from_tty)
1704 search_command_helper (regex, from_tty, false);
1707 /* If the last character of PATH is a directory separator, then strip it. */
1709 static void
1710 strip_trailing_directory_separator (char *path)
1712 const int last = strlen (path) - 1;
1714 if (last < 0)
1715 return; /* No stripping is needed if PATH is the empty string. */
1717 if (IS_DIR_SEPARATOR (path[last]))
1718 path[last] = '\0';
1721 /* Add a new substitute-path rule at the end of the current list of rules.
1722 The new rule will replace FROM into TO. */
1724 void
1725 add_substitute_path_rule (const char *from, const char *to)
1727 substitute_path_rules.emplace_back (from, to);
1730 /* Implement the "show substitute-path" command. */
1732 static void
1733 show_substitute_path_command (const char *args, int from_tty)
1735 char *from = NULL;
1737 gdb_argv argv (args);
1739 /* We expect zero or one argument. */
1741 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1742 error (_("Too many arguments in command"));
1744 if (argv != NULL && argv[0] != NULL)
1745 from = argv[0];
1747 /* Print the substitution rules. */
1749 if (from != NULL)
1750 gdb_printf
1751 (_("Source path substitution rule matching `%s':\n"), from);
1752 else
1753 gdb_printf (_("List of all source path substitution rules:\n"));
1755 for (substitute_path_rule &rule : substitute_path_rules)
1757 if (from == NULL || substitute_path_rule_matches (&rule, from) != 0)
1758 gdb_printf (" `%s' -> `%s'.\n", rule.from.c_str (),
1759 rule.to.c_str ());
1763 /* Implement the "unset substitute-path" command. */
1765 static void
1766 unset_substitute_path_command (const char *args, int from_tty)
1768 gdb_argv argv (args);
1769 char *from = NULL;
1771 /* This function takes either 0 or 1 argument. */
1773 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1774 error (_("Incorrect usage, too many arguments in command"));
1776 if (argv != NULL && argv[0] != NULL)
1777 from = argv[0];
1779 /* If the user asked for all the rules to be deleted, ask him
1780 to confirm and give him a chance to abort before the action
1781 is performed. */
1783 if (from == NULL
1784 && !query (_("Delete all source path substitution rules? ")))
1785 error (_("Canceled"));
1787 /* Delete the rule matching the argument. No argument means that
1788 all rules should be deleted. */
1790 if (from == nullptr)
1791 substitute_path_rules.clear ();
1792 else
1794 auto iter
1795 = std::remove_if (substitute_path_rules.begin (),
1796 substitute_path_rules.end (),
1797 [&] (const substitute_path_rule &rule)
1799 return FILENAME_CMP (from,
1800 rule.from.c_str ()) == 0;
1802 bool rule_found = iter != substitute_path_rules.end ();
1803 substitute_path_rules.erase (iter, substitute_path_rules.end ());
1805 /* If the user asked for a specific rule to be deleted but
1806 we could not find it, then report an error. */
1808 if (!rule_found)
1809 error (_("No substitution rule defined for `%s'"), from);
1812 forget_cached_source_info ();
1815 /* Add a new source path substitution rule. */
1817 static void
1818 set_substitute_path_command (const char *args, int from_tty)
1820 gdb_argv argv (args);
1822 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1823 error (_("Incorrect usage, too few arguments in command"));
1825 if (argv[2] != NULL)
1826 error (_("Incorrect usage, too many arguments in command"));
1828 if (*(argv[0]) == '\0')
1829 error (_("First argument must be at least one character long"));
1831 /* Strip any trailing directory separator character in either FROM
1832 or TO. The substitution rule already implicitly contains them. */
1833 strip_trailing_directory_separator (argv[0]);
1834 strip_trailing_directory_separator (argv[1]);
1836 /* If a rule with the same "from" was previously defined, then
1837 delete it. This new rule replaces it. */
1839 auto iter
1840 = std::remove_if (substitute_path_rules.begin (),
1841 substitute_path_rules.end (),
1842 [&] (const substitute_path_rule &rule)
1844 return FILENAME_CMP (argv[0], rule.from.c_str ()) == 0;
1846 substitute_path_rules.erase (iter, substitute_path_rules.end ());
1848 /* Insert the new substitution rule. */
1850 add_substitute_path_rule (argv[0], argv[1]);
1851 forget_cached_source_info ();
1854 /* See source.h. */
1856 source_lines_range::source_lines_range (int startline,
1857 source_lines_range::direction dir)
1859 if (dir == source_lines_range::FORWARD)
1861 LONGEST end = static_cast <LONGEST> (startline) + get_lines_to_list ();
1863 if (end > INT_MAX)
1864 end = INT_MAX;
1866 m_startline = startline;
1867 m_stopline = static_cast <int> (end);
1869 else
1871 LONGEST start = static_cast <LONGEST> (startline) - get_lines_to_list ();
1873 if (start < 1)
1874 start = 1;
1876 m_startline = static_cast <int> (start);
1877 m_stopline = startline;
1881 /* Handle the "set source" base command. */
1883 static void
1884 set_source (const char *arg, int from_tty)
1886 help_list (setsourcelist, "set source ", all_commands, gdb_stdout);
1889 /* Handle the "show source" base command. */
1891 static void
1892 show_source (const char *args, int from_tty)
1894 help_list (showsourcelist, "show source ", all_commands, gdb_stdout);
1898 void _initialize_source ();
1899 void
1900 _initialize_source ()
1902 init_source_path ();
1904 /* The intention is to use POSIX Basic Regular Expressions.
1905 Always use the GNU regex routine for consistency across all hosts.
1906 Our current GNU regex.c does not have all the POSIX features, so this is
1907 just an approximation. */
1908 re_set_syntax (RE_SYNTAX_GREP);
1910 cmd_list_element *directory_cmd
1911 = add_cmd ("directory", class_files, directory_command, _("\
1912 Add directory DIR to beginning of search path for source files.\n\
1913 Forget cached info on source file locations and line positions.\n\
1914 DIR can also be $cwd for the current working directory, or $cdir for the\n\
1915 directory in which the source file was compiled into object code.\n\
1916 With no argument, reset the search path to $cdir:$cwd, the default."),
1917 &cmdlist);
1919 set_cmd_completer (directory_cmd, filename_completer);
1921 add_setshow_optional_filename_cmd ("directories",
1922 class_files,
1923 &source_path,
1924 _("\
1925 Set the search path for finding source files."),
1926 _("\
1927 Show the search path for finding source files."),
1928 _("\
1929 $cwd in the path means the current working directory.\n\
1930 $cdir in the path means the compilation directory of the source file.\n\
1931 GDB ensures the search path always ends with $cdir:$cwd by\n\
1932 appending these directories if necessary.\n\
1933 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
1934 set_directories_command,
1935 show_directories_command,
1936 &setlist, &showlist);
1938 add_info ("source", info_source_command,
1939 _("Information about the current source file."));
1941 add_info ("line", info_line_command, _("\
1942 Core addresses of the code for a source line.\n\
1943 Line can be specified as\n\
1944 LINENUM, to list around that line in current file,\n\
1945 FILE:LINENUM, to list around that line in that file,\n\
1946 FUNCTION, to list around beginning of that function,\n\
1947 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1948 Default is to describe the last source line that was listed.\n\n\
1949 This sets the default address for \"x\" to the line's first instruction\n\
1950 so that \"x/i\" suffices to start examining the machine code.\n\
1951 The address is also stored as the value of \"$_\"."));
1953 cmd_list_element *forward_search_cmd
1954 = add_com ("forward-search", class_files, forward_search_command, _("\
1955 Search for regular expression (see regex(3)) from last line listed.\n\
1956 The matching line number is also stored as the value of \"$_\"."));
1957 add_com_alias ("search", forward_search_cmd, class_files, 0);
1958 add_com_alias ("fo", forward_search_cmd, class_files, 1);
1960 cmd_list_element *reverse_search_cmd
1961 = add_com ("reverse-search", class_files, reverse_search_command, _("\
1962 Search backward for regular expression (see regex(3)) from last line listed.\n\
1963 The matching line number is also stored as the value of \"$_\"."));
1964 add_com_alias ("rev", reverse_search_cmd, class_files, 1);
1966 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
1967 Set number of source lines gdb will list by default."), _("\
1968 Show number of source lines gdb will list by default."), _("\
1969 Use this to choose how many source lines the \"list\" displays (unless\n\
1970 the \"list\" argument explicitly specifies some other number).\n\
1971 A value of \"unlimited\", or zero, means there's no limit."),
1972 NULL,
1973 show_lines_to_list,
1974 &setlist, &showlist);
1976 add_cmd ("substitute-path", class_files, set_substitute_path_command,
1977 _("\
1978 Add a substitution rule to rewrite the source directories.\n\
1979 Usage: set substitute-path FROM TO\n\
1980 The rule is applied only if the directory name starts with FROM\n\
1981 directly followed by a directory separator.\n\
1982 If a substitution rule was previously set for FROM, the old rule\n\
1983 is replaced by the new one."),
1984 &setlist);
1986 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
1987 _("\
1988 Delete one or all substitution rules rewriting the source directories.\n\
1989 Usage: unset substitute-path [FROM]\n\
1990 Delete the rule for substituting FROM in source directories. If FROM\n\
1991 is not specified, all substituting rules are deleted.\n\
1992 If the debugger cannot find a rule for FROM, it will display a warning."),
1993 &unsetlist);
1995 add_cmd ("substitute-path", class_files, show_substitute_path_command,
1996 _("\
1997 Show one or all substitution rules rewriting the source directories.\n\
1998 Usage: show substitute-path [FROM]\n\
1999 Print the rule for substituting FROM in source directories. If FROM\n\
2000 is not specified, print all substitution rules."),
2001 &showlist);
2003 add_setshow_enum_cmd ("filename-display", class_files,
2004 filename_display_kind_names,
2005 &filename_display_string, _("\
2006 Set how to display filenames."), _("\
2007 Show how to display filenames."), _("\
2008 filename-display can be:\n\
2009 basename - display only basename of a filename\n\
2010 relative - display a filename relative to the compilation directory\n\
2011 absolute - display an absolute filename\n\
2012 By default, relative filenames are displayed."),
2013 NULL,
2014 show_filename_display_string,
2015 &setlist, &showlist);
2017 add_prefix_cmd ("source", no_class, set_source,
2018 _("Generic command for setting how sources are handled."),
2019 &setsourcelist, 0, &setlist);
2021 add_prefix_cmd ("source", no_class, show_source,
2022 _("Generic command for showing source settings."),
2023 &showsourcelist, 0, &showlist);
2025 add_setshow_boolean_cmd ("open", class_files, &source_open, _("\
2026 Set whether GDB should open source files."), _("\
2027 Show whether GDB should open source files."), _("\
2028 When this option is on GDB will open source files and display the\n\
2029 contents when appropriate, for example, when GDB stops, or the list\n\
2030 command is used.\n\
2031 When this option is off GDB will not try to open source files, instead\n\
2032 GDB will print the file and line number that would have been displayed.\n\
2033 This can be useful if access to source code files is slow, for example\n\
2034 due to the source being located over a slow network connection."),
2035 NULL,
2036 show_source_open,
2037 &setsourcelist, &showsourcelist);