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