]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/source.c
Unify gdb printf functions
[thirdparty/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->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 (symbol_symtab (bsym.symbol), 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 char *name = name_up.get ();
541 char *p;
542 struct stat st;
543 gdb::unique_xmalloc_ptr<char> 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 + 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.reset (tilde_expand (name));
593 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
594 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
595 new_name_holder.reset (concat (name, ".", (char *) NULL));
596 #endif
597 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
598 new_name_holder = gdb_abspath (name);
599 else
600 new_name_holder.reset (savestring (name, p - name));
601 name = new_name_holder.get ();
602
603 /* Unless it's a variable, check existence. */
604 if (name[0] != '$')
605 {
606 /* These are warnings, not errors, since we don't want a
607 non-existent directory in a .gdbinit file to stop processing
608 of the .gdbinit file.
609
610 Whether they get added to the path is more debatable. Current
611 answer is yes, in case the user wants to go make the directory
612 or whatever. If the directory continues to not exist/not be
613 a directory/etc, then having them in the path should be
614 harmless. */
615 if (stat (name, &st) < 0)
616 {
617 int save_errno = errno;
618
619 gdb_printf (gdb_stderr, "Warning: ");
620 print_sys_errmsg (name, save_errno);
621 }
622 else if ((st.st_mode & S_IFMT) != S_IFDIR)
623 warning (_("%s is not a directory."), name);
624 }
625
626 append:
627 {
628 unsigned int len = strlen (name);
629 char tinybuf[2];
630
631 p = *which_path;
632 while (1)
633 {
634 /* FIXME: we should use realpath() or its work-alike
635 before comparing. Then all the code above which
636 removes excess slashes and dots could simply go away. */
637 if (!filename_ncmp (p, name, len)
638 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
639 {
640 /* Found it in the search path, remove old copy. */
641 if (p > *which_path)
642 {
643 /* Back over leading separator. */
644 p--;
645 }
646 if (prefix > p - *which_path)
647 {
648 /* Same dir twice in one cmd. */
649 goto skip_dup;
650 }
651 /* Copy from next '\0' or ':'. */
652 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
653 }
654 p = strchr (p, DIRNAME_SEPARATOR);
655 if (p != 0)
656 ++p;
657 else
658 break;
659 }
660
661 tinybuf[0] = DIRNAME_SEPARATOR;
662 tinybuf[1] = '\0';
663
664 /* If we have already tacked on a name(s) in this command,
665 be sure they stay on the front as we tack on some
666 more. */
667 if (prefix)
668 {
669 std::string temp = std::string (old, prefix) + tinybuf + name;
670 *which_path = concat (temp.c_str (), &old[prefix],
671 (char *) nullptr);
672 prefix = temp.length ();
673 }
674 else
675 {
676 *which_path = concat (name, (old[0] ? tinybuf : old),
677 old, (char *)NULL);
678 prefix = strlen (name);
679 }
680 xfree (old);
681 old = *which_path;
682 }
683 skip_dup:
684 ;
685 }
686 }
687
688 /* add_path would need to be re-written to work on an std::string, but this is
689 not trivial. Hence this overload which copies to a `char *` and back. */
690
691 void
692 add_path (const char *dirname, std::string &which_path, int parse_separators)
693 {
694 char *which_path_copy = xstrdup (which_path.data ());
695 add_path (dirname, &which_path_copy, parse_separators);
696 which_path = which_path_copy;
697 xfree (which_path_copy);
698 }
699
700 static void
701 info_source_command (const char *ignore, int from_tty)
702 {
703 current_source_location *loc
704 = get_source_location (current_program_space);
705 struct symtab *s = loc->symtab ();
706 struct compunit_symtab *cust;
707
708 if (!s)
709 {
710 gdb_printf (_("No current source file.\n"));
711 return;
712 }
713
714 cust = s->compunit ();
715 gdb_printf (_("Current source file is %s\n"), s->filename);
716 if (s->dirname () != NULL)
717 gdb_printf (_("Compilation directory is %s\n"), s->dirname ());
718 if (s->fullname)
719 gdb_printf (_("Located in %s\n"), s->fullname);
720 const std::vector<off_t> *offsets;
721 if (g_source_cache.get_line_charpos (s, &offsets))
722 gdb_printf (_("Contains %d line%s.\n"), (int) offsets->size (),
723 offsets->size () == 1 ? "" : "s");
724
725 gdb_printf (_("Source language is %s.\n"),
726 language_str (s->language ()));
727 gdb_printf (_("Producer is %s.\n"),
728 (cust->producer ()) != nullptr
729 ? cust->producer () : _("unknown"));
730 gdb_printf (_("Compiled with %s debugging format.\n"),
731 cust->debugformat ());
732 gdb_printf (_("%s preprocessor macro info.\n"),
733 (cust->macro_table () != nullptr
734 ? "Includes" : "Does not include"));
735 }
736 \f
737
738 /* Helper function to remove characters from the start of PATH so that
739 PATH can then be appended to a directory name. We remove leading drive
740 letters (for dos) as well as leading '/' characters and './'
741 sequences. */
742
743 static const char *
744 prepare_path_for_appending (const char *path)
745 {
746 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
747 if (HAS_DRIVE_SPEC (path))
748 path = STRIP_DRIVE_SPEC (path);
749
750 const char *old_path;
751 do
752 {
753 old_path = path;
754
755 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
756 while (IS_DIR_SEPARATOR(path[0]))
757 path++;
758
759 /* ./foo => foo */
760 while (path[0] == '.' && IS_DIR_SEPARATOR (path[1]))
761 path += 2;
762 }
763 while (old_path != path);
764
765 return path;
766 }
767
768 /* Open a file named STRING, searching path PATH (dir names sep by some char)
769 using mode MODE in the calls to open. You cannot use this function to
770 create files (O_CREAT).
771
772 OPTS specifies the function behaviour in specific cases.
773
774 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
775 (ie pretend the first element of PATH is "."). This also indicates
776 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
777 disables searching of the path (this is so that "exec-file ./foo" or
778 "symbol-file ./foo" insures that you get that particular version of
779 foo or an error message).
780
781 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
782 searched in path (we usually want this for source files but not for
783 executables).
784
785 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
786 the actual file opened (this string will always start with a "/"). We
787 have to take special pains to avoid doubling the "/" between the directory
788 and the file, sigh! Emacs gets confuzzed by this when we print the
789 source file name!!!
790
791 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
792 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
793 filename starting with "/". If FILENAME_OPENED is NULL this option has no
794 effect.
795
796 If a file is found, return the descriptor.
797 Otherwise, return -1, with errno set for the last name we tried to open. */
798
799 /* >>>> This should only allow files of certain types,
800 >>>> eg executable, non-directory. */
801 int
802 openp (const char *path, openp_flags opts, const char *string,
803 int mode, gdb::unique_xmalloc_ptr<char> *filename_opened)
804 {
805 int fd;
806 char *filename;
807 int alloclen;
808 /* The errno set for the last name we tried to open (and
809 failed). */
810 int last_errno = 0;
811 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec;
812
813 /* The open syscall MODE parameter is not specified. */
814 gdb_assert ((mode & O_CREAT) == 0);
815 gdb_assert (string != NULL);
816
817 /* A file with an empty name cannot possibly exist. Report a failure
818 without further checking.
819
820 This is an optimization which also defends us against buggy
821 implementations of the "stat" function. For instance, we have
822 noticed that a MinGW debugger built on Windows XP 32bits crashes
823 when the debugger is started with an empty argument. */
824 if (string[0] == '\0')
825 {
826 errno = ENOENT;
827 return -1;
828 }
829
830 if (!path)
831 path = ".";
832
833 mode |= O_BINARY;
834
835 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
836 {
837 int i, reg_file_errno;
838
839 if (is_regular_file (string, &reg_file_errno))
840 {
841 filename = (char *) alloca (strlen (string) + 1);
842 strcpy (filename, string);
843 fd = gdb_open_cloexec (filename, mode, 0).release ();
844 if (fd >= 0)
845 goto done;
846 last_errno = errno;
847 }
848 else
849 {
850 filename = NULL;
851 fd = -1;
852 last_errno = reg_file_errno;
853 }
854
855 if (!(opts & OPF_SEARCH_IN_PATH))
856 for (i = 0; string[i]; i++)
857 if (IS_DIR_SEPARATOR (string[i]))
858 goto done;
859 }
860
861 /* Remove characters from the start of PATH that we don't need when PATH
862 is appended to a directory name. */
863 string = prepare_path_for_appending (string);
864
865 alloclen = strlen (path) + strlen (string) + 2;
866 filename = (char *) alloca (alloclen);
867 fd = -1;
868 last_errno = ENOENT;
869
870 dir_vec = dirnames_to_char_ptr_vec (path);
871
872 for (const gdb::unique_xmalloc_ptr<char> &dir_up : dir_vec)
873 {
874 char *dir = dir_up.get ();
875 size_t len = strlen (dir);
876 int reg_file_errno;
877
878 if (strcmp (dir, "$cwd") == 0)
879 {
880 /* Name is $cwd -- insert current directory name instead. */
881 int newlen;
882
883 /* First, realloc the filename buffer if too short. */
884 len = strlen (current_directory);
885 newlen = len + strlen (string) + 2;
886 if (newlen > alloclen)
887 {
888 alloclen = newlen;
889 filename = (char *) alloca (alloclen);
890 }
891 strcpy (filename, current_directory);
892 }
893 else if (strchr(dir, '~'))
894 {
895 /* See whether we need to expand the tilde. */
896 int newlen;
897
898 gdb::unique_xmalloc_ptr<char> tilde_expanded (tilde_expand (dir));
899
900 /* First, realloc the filename buffer if too short. */
901 len = strlen (tilde_expanded.get ());
902 newlen = len + strlen (string) + 2;
903 if (newlen > alloclen)
904 {
905 alloclen = newlen;
906 filename = (char *) alloca (alloclen);
907 }
908 strcpy (filename, tilde_expanded.get ());
909 }
910 else
911 {
912 /* Normal file name in path -- just use it. */
913 strcpy (filename, dir);
914
915 /* Don't search $cdir. It's also a magic path like $cwd, but we
916 don't have enough information to expand it. The user *could*
917 have an actual directory named '$cdir' but handling that would
918 be confusing, it would mean different things in different
919 contexts. If the user really has '$cdir' one can use './$cdir'.
920 We can get $cdir when loading scripts. When loading source files
921 $cdir must have already been expanded to the correct value. */
922 if (strcmp (dir, "$cdir") == 0)
923 continue;
924 }
925
926 /* Remove trailing slashes. */
927 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
928 filename[--len] = 0;
929
930 strcat (filename + len, SLASH_STRING);
931 strcat (filename, string);
932
933 if (is_regular_file (filename, &reg_file_errno))
934 {
935 fd = gdb_open_cloexec (filename, mode, 0).release ();
936 if (fd >= 0)
937 break;
938 last_errno = errno;
939 }
940 else
941 last_errno = reg_file_errno;
942 }
943
944 done:
945 if (filename_opened)
946 {
947 /* If a file was opened, canonicalize its filename. */
948 if (fd < 0)
949 filename_opened->reset (NULL);
950 else if ((opts & OPF_RETURN_REALPATH) != 0)
951 *filename_opened = gdb_realpath (filename);
952 else
953 *filename_opened = gdb_abspath (filename);
954 }
955
956 errno = last_errno;
957 return fd;
958 }
959
960
961 /* This is essentially a convenience, for clients that want the behaviour
962 of openp, using source_path, but that really don't want the file to be
963 opened but want instead just to know what the full pathname is (as
964 qualified against source_path).
965
966 The current working directory is searched first.
967
968 If the file was found, this function returns 1, and FULL_PATHNAME is
969 set to the fully-qualified pathname.
970
971 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
972 int
973 source_full_path_of (const char *filename,
974 gdb::unique_xmalloc_ptr<char> *full_pathname)
975 {
976 int fd;
977
978 fd = openp (source_path.c_str (),
979 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
980 filename, O_RDONLY, full_pathname);
981 if (fd < 0)
982 {
983 full_pathname->reset (NULL);
984 return 0;
985 }
986
987 close (fd);
988 return 1;
989 }
990
991 /* Return non-zero if RULE matches PATH, that is if the rule can be
992 applied to PATH. */
993
994 static int
995 substitute_path_rule_matches (const struct substitute_path_rule *rule,
996 const char *path)
997 {
998 const int from_len = rule->from.length ();
999 const int path_len = strlen (path);
1000
1001 if (path_len < from_len)
1002 return 0;
1003
1004 /* The substitution rules are anchored at the start of the path,
1005 so the path should start with rule->from. */
1006
1007 if (filename_ncmp (path, rule->from.c_str (), from_len) != 0)
1008 return 0;
1009
1010 /* Make sure that the region in the path that matches the substitution
1011 rule is immediately followed by a directory separator (or the end of
1012 string character). */
1013
1014 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
1015 return 0;
1016
1017 return 1;
1018 }
1019
1020 /* Find the substitute-path rule that applies to PATH and return it.
1021 Return NULL if no rule applies. */
1022
1023 static struct substitute_path_rule *
1024 get_substitute_path_rule (const char *path)
1025 {
1026 for (substitute_path_rule &rule : substitute_path_rules)
1027 if (substitute_path_rule_matches (&rule, path))
1028 return &rule;
1029
1030 return nullptr;
1031 }
1032
1033 /* If the user specified a source path substitution rule that applies
1034 to PATH, then apply it and return the new path.
1035
1036 Return NULL if no substitution rule was specified by the user,
1037 or if no rule applied to the given PATH. */
1038
1039 gdb::unique_xmalloc_ptr<char>
1040 rewrite_source_path (const char *path)
1041 {
1042 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
1043
1044 if (rule == nullptr)
1045 return nullptr;
1046
1047 /* Compute the rewritten path and return it. */
1048
1049 return (gdb::unique_xmalloc_ptr<char>
1050 (concat (rule->to.c_str (), path + rule->from.length (), nullptr)));
1051 }
1052
1053 /* See source.h. */
1054
1055 scoped_fd
1056 find_and_open_source (const char *filename,
1057 const char *dirname,
1058 gdb::unique_xmalloc_ptr<char> *fullname)
1059 {
1060 const char *path = source_path.c_str ();
1061 std::string expanded_path_holder;
1062 const char *p;
1063
1064 /* If reading of source files is disabled then return a result indicating
1065 the attempt to read this source file failed. GDB will then display
1066 the filename and line number instead. */
1067 if (!source_open)
1068 return scoped_fd (-1);
1069
1070 /* Quick way out if we already know its full name. */
1071 if (*fullname)
1072 {
1073 /* The user may have requested that source paths be rewritten
1074 according to substitution rules he provided. If a substitution
1075 rule applies to this path, then apply it. */
1076 gdb::unique_xmalloc_ptr<char> rewritten_fullname
1077 = rewrite_source_path (fullname->get ());
1078
1079 if (rewritten_fullname != NULL)
1080 *fullname = std::move (rewritten_fullname);
1081
1082 scoped_fd result = gdb_open_cloexec (fullname->get (), OPEN_MODE, 0);
1083 if (result.get () >= 0)
1084 {
1085 *fullname = gdb_realpath (fullname->get ());
1086 return result;
1087 }
1088
1089 /* Didn't work -- free old one, try again. */
1090 fullname->reset (NULL);
1091 }
1092
1093 gdb::unique_xmalloc_ptr<char> rewritten_dirname;
1094 if (dirname != NULL)
1095 {
1096 /* If necessary, rewrite the compilation directory name according
1097 to the source path substitution rules specified by the user. */
1098
1099 rewritten_dirname = rewrite_source_path (dirname);
1100
1101 if (rewritten_dirname != NULL)
1102 dirname = rewritten_dirname.get ();
1103
1104 /* Replace a path entry of $cdir with the compilation directory
1105 name. */
1106 #define cdir_len 5
1107 p = strstr (source_path.c_str (), "$cdir");
1108 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1109 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1110 {
1111 int len = p - source_path.c_str ();
1112
1113 /* Before $cdir */
1114 expanded_path_holder = source_path.substr (0, len);
1115
1116 /* new stuff */
1117 expanded_path_holder += dirname;
1118
1119 /* After $cdir */
1120 expanded_path_holder += source_path.c_str () + len + cdir_len;
1121
1122 path = expanded_path_holder.c_str ();
1123 }
1124 }
1125
1126 gdb::unique_xmalloc_ptr<char> rewritten_filename
1127 = rewrite_source_path (filename);
1128
1129 if (rewritten_filename != NULL)
1130 filename = rewritten_filename.get ();
1131
1132 /* Try to locate file using filename. */
1133 int result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1134 OPEN_MODE, fullname);
1135 if (result < 0 && dirname != NULL)
1136 {
1137 /* Remove characters from the start of PATH that we don't need when
1138 PATH is appended to a directory name. */
1139 const char *filename_start = prepare_path_for_appending (filename);
1140
1141 /* Try to locate file using compilation dir + filename. This is
1142 helpful if part of the compilation directory was removed,
1143 e.g. using gcc's -fdebug-prefix-map, and we have added the missing
1144 prefix to source_path. */
1145 std::string cdir_filename (dirname);
1146
1147 /* Remove any trailing directory separators. */
1148 while (IS_DIR_SEPARATOR (cdir_filename.back ()))
1149 cdir_filename.pop_back ();
1150
1151 /* Add our own directory separator. */
1152 cdir_filename.append (SLASH_STRING);
1153 cdir_filename.append (filename_start);
1154
1155 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
1156 cdir_filename.c_str (), OPEN_MODE, fullname);
1157 }
1158 if (result < 0)
1159 {
1160 /* Didn't work. Try using just the basename. */
1161 p = lbasename (filename);
1162 if (p != filename)
1163 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1164 OPEN_MODE, fullname);
1165 }
1166
1167 return scoped_fd (result);
1168 }
1169
1170 /* Open a source file given a symtab S. Returns a file descriptor or
1171 negative number for error.
1172
1173 This function is a convenience function to find_and_open_source. */
1174
1175 scoped_fd
1176 open_source_file (struct symtab *s)
1177 {
1178 if (!s)
1179 return scoped_fd (-1);
1180
1181 gdb::unique_xmalloc_ptr<char> fullname (s->fullname);
1182 s->fullname = NULL;
1183 scoped_fd fd = find_and_open_source (s->filename, s->dirname (),
1184 &fullname);
1185
1186 if (fd.get () < 0)
1187 {
1188 if (s->compunit () != nullptr)
1189 {
1190 const objfile *ofp = s->compunit ()->objfile ();
1191
1192 std::string srcpath;
1193 if (IS_ABSOLUTE_PATH (s->filename))
1194 srcpath = s->filename;
1195 else if (s->dirname () != nullptr)
1196 {
1197 srcpath = s->dirname ();
1198 srcpath += SLASH_STRING;
1199 srcpath += s->filename;
1200 }
1201
1202 const struct bfd_build_id *build_id = build_id_bfd_get (ofp->obfd);
1203
1204 /* Query debuginfod for the source file. */
1205 if (build_id != nullptr && !srcpath.empty ())
1206 fd = debuginfod_source_query (build_id->data,
1207 build_id->size,
1208 srcpath.c_str (),
1209 &fullname);
1210 }
1211 }
1212
1213 s->fullname = fullname.release ();
1214 return fd;
1215 }
1216
1217 /* See source.h. */
1218
1219 gdb::unique_xmalloc_ptr<char>
1220 find_source_or_rewrite (const char *filename, const char *dirname)
1221 {
1222 gdb::unique_xmalloc_ptr<char> fullname;
1223
1224 scoped_fd fd = find_and_open_source (filename, dirname, &fullname);
1225 if (fd.get () < 0)
1226 {
1227 /* rewrite_source_path would be applied by find_and_open_source, we
1228 should report the pathname where GDB tried to find the file. */
1229
1230 if (dirname == nullptr || IS_ABSOLUTE_PATH (filename))
1231 fullname.reset (xstrdup (filename));
1232 else
1233 fullname.reset (concat (dirname, SLASH_STRING,
1234 filename, (char *) nullptr));
1235
1236 gdb::unique_xmalloc_ptr<char> rewritten
1237 = rewrite_source_path (fullname.get ());
1238 if (rewritten != nullptr)
1239 fullname = std::move (rewritten);
1240 }
1241
1242 return fullname;
1243 }
1244
1245 /* Finds the fullname that a symtab represents.
1246
1247 This functions finds the fullname and saves it in s->fullname.
1248 It will also return the value.
1249
1250 If this function fails to find the file that this symtab represents,
1251 the expected fullname is used. Therefore the files does not have to
1252 exist. */
1253
1254 const char *
1255 symtab_to_fullname (struct symtab *s)
1256 {
1257 /* Use cached copy if we have it.
1258 We rely on forget_cached_source_info being called appropriately
1259 to handle cases like the file being moved. */
1260 if (s->fullname == NULL)
1261 {
1262 scoped_fd fd = open_source_file (s);
1263
1264 if (fd.get () < 0)
1265 {
1266 gdb::unique_xmalloc_ptr<char> fullname;
1267
1268 /* rewrite_source_path would be applied by find_and_open_source, we
1269 should report the pathname where GDB tried to find the file. */
1270
1271 if (s->dirname () == NULL || IS_ABSOLUTE_PATH (s->filename))
1272 fullname.reset (xstrdup (s->filename));
1273 else
1274 fullname.reset (concat (s->dirname (), SLASH_STRING,
1275 s->filename, (char *) NULL));
1276
1277 s->fullname = rewrite_source_path (fullname.get ()).release ();
1278 if (s->fullname == NULL)
1279 s->fullname = fullname.release ();
1280 }
1281 }
1282
1283 return s->fullname;
1284 }
1285
1286 /* See commentary in source.h. */
1287
1288 const char *
1289 symtab_to_filename_for_display (struct symtab *symtab)
1290 {
1291 if (filename_display_string == filename_display_basename)
1292 return lbasename (symtab->filename);
1293 else if (filename_display_string == filename_display_absolute)
1294 return symtab_to_fullname (symtab);
1295 else if (filename_display_string == filename_display_relative)
1296 return symtab->filename;
1297 else
1298 internal_error (__FILE__, __LINE__, _("invalid filename_display_string"));
1299 }
1300
1301 \f
1302
1303 /* Print source lines from the file of symtab S,
1304 starting with line number LINE and stopping before line number STOPLINE. */
1305
1306 static void
1307 print_source_lines_base (struct symtab *s, int line, int stopline,
1308 print_source_lines_flags flags)
1309 {
1310 bool noprint = false;
1311 int nlines = stopline - line;
1312 struct ui_out *uiout = current_uiout;
1313
1314 /* Regardless of whether we can open the file, set current_source_symtab. */
1315 current_source_location *loc
1316 = get_source_location (current_program_space);
1317
1318 loc->set (s, line);
1319 first_line_listed = line;
1320 last_line_listed = line;
1321
1322 /* If printing of source lines is disabled, just print file and line
1323 number. */
1324 if (uiout->test_flags (ui_source_list) && source_open)
1325 {
1326 /* Only prints "No such file or directory" once. */
1327 if (s == last_source_visited)
1328 {
1329 if (last_source_error)
1330 {
1331 flags |= PRINT_SOURCE_LINES_NOERROR;
1332 noprint = true;
1333 }
1334 }
1335 else
1336 {
1337 last_source_visited = s;
1338 scoped_fd desc = open_source_file (s);
1339 last_source_error = desc.get () < 0;
1340 if (last_source_error)
1341 noprint = true;
1342 }
1343 }
1344 else
1345 {
1346 flags |= PRINT_SOURCE_LINES_NOERROR;
1347 noprint = true;
1348 }
1349
1350 if (noprint)
1351 {
1352 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
1353 {
1354 const char *filename = symtab_to_filename_for_display (s);
1355 int len = strlen (filename) + 100;
1356 char *name = (char *) alloca (len);
1357
1358 xsnprintf (name, len, "%d\t%s", line, filename);
1359 print_sys_errmsg (name, errno);
1360 }
1361 else
1362 {
1363 uiout->field_signed ("line", line);
1364 uiout->text ("\tin ");
1365
1366 /* CLI expects only the "file" field. TUI expects only the
1367 "fullname" field (and TUI does break if "file" is printed).
1368 MI expects both fields. ui_source_list is set only for CLI,
1369 not for TUI. */
1370 if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list))
1371 uiout->field_string ("file", symtab_to_filename_for_display (s),
1372 file_name_style.style ());
1373 if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list))
1374 {
1375 const char *s_fullname = symtab_to_fullname (s);
1376 char *local_fullname;
1377
1378 /* ui_out_field_string may free S_FULLNAME by calling
1379 open_source_file for it again. See e.g.,
1380 tui_field_string->tui_show_source. */
1381 local_fullname = (char *) alloca (strlen (s_fullname) + 1);
1382 strcpy (local_fullname, s_fullname);
1383
1384 uiout->field_string ("fullname", local_fullname);
1385 }
1386
1387 uiout->text ("\n");
1388 }
1389
1390 return;
1391 }
1392
1393 /* If the user requested a sequence of lines that seems to go backward
1394 (from high to low line numbers) then we don't print anything. */
1395 if (stopline <= line)
1396 return;
1397
1398 std::string lines;
1399 if (!g_source_cache.get_source_lines (s, line, stopline - 1, &lines))
1400 {
1401 const std::vector<off_t> *offsets = nullptr;
1402 g_source_cache.get_line_charpos (s, &offsets);
1403 error (_("Line number %d out of range; %s has %d lines."),
1404 line, symtab_to_filename_for_display (s),
1405 offsets == nullptr ? 0 : (int) offsets->size ());
1406 }
1407
1408 const char *iter = lines.c_str ();
1409 int new_lineno = loc->line ();
1410 while (nlines-- > 0 && *iter != '\0')
1411 {
1412 char buf[20];
1413
1414 last_line_listed = loc->line ();
1415 if (flags & PRINT_SOURCE_LINES_FILENAME)
1416 {
1417 uiout->text (symtab_to_filename_for_display (s));
1418 uiout->text (":");
1419 }
1420 xsnprintf (buf, sizeof (buf), "%d\t", new_lineno++);
1421 uiout->text (buf);
1422
1423 while (*iter != '\0')
1424 {
1425 /* Find a run of characters that can be emitted at once.
1426 This is done so that escape sequences are kept
1427 together. */
1428 const char *start = iter;
1429 while (true)
1430 {
1431 int skip_bytes;
1432
1433 char c = *iter;
1434 if (c == '\033' && skip_ansi_escape (iter, &skip_bytes))
1435 iter += skip_bytes;
1436 else if (c >= 0 && c < 040 && c != '\t')
1437 break;
1438 else if (c == 0177)
1439 break;
1440 else
1441 ++iter;
1442 }
1443 if (iter > start)
1444 {
1445 std::string text (start, iter);
1446 uiout->text (text);
1447 }
1448 if (*iter == '\r')
1449 {
1450 /* Treat either \r or \r\n as a single newline. */
1451 ++iter;
1452 if (*iter == '\n')
1453 ++iter;
1454 break;
1455 }
1456 else if (*iter == '\n')
1457 {
1458 ++iter;
1459 break;
1460 }
1461 else if (*iter > 0 && *iter < 040)
1462 {
1463 xsnprintf (buf, sizeof (buf), "^%c", *iter + 0100);
1464 uiout->text (buf);
1465 ++iter;
1466 }
1467 else if (*iter == 0177)
1468 {
1469 uiout->text ("^?");
1470 ++iter;
1471 }
1472 }
1473 uiout->text ("\n");
1474 }
1475
1476 loc->set (loc->symtab (), new_lineno);
1477 }
1478 \f
1479
1480 /* See source.h. */
1481
1482 void
1483 print_source_lines (struct symtab *s, int line, int stopline,
1484 print_source_lines_flags flags)
1485 {
1486 print_source_lines_base (s, line, stopline, flags);
1487 }
1488
1489 /* See source.h. */
1490
1491 void
1492 print_source_lines (struct symtab *s, source_lines_range line_range,
1493 print_source_lines_flags flags)
1494 {
1495 print_source_lines_base (s, line_range.startline (),
1496 line_range.stopline (), flags);
1497 }
1498
1499
1500 \f
1501 /* Print info on range of pc's in a specified line. */
1502
1503 static void
1504 info_line_command (const char *arg, int from_tty)
1505 {
1506 CORE_ADDR start_pc, end_pc;
1507
1508 std::vector<symtab_and_line> decoded_sals;
1509 symtab_and_line curr_sal;
1510 gdb::array_view<symtab_and_line> sals;
1511
1512 if (arg == 0)
1513 {
1514 current_source_location *loc
1515 = get_source_location (current_program_space);
1516 curr_sal.symtab = loc->symtab ();
1517 curr_sal.pspace = current_program_space;
1518 if (last_line_listed != 0)
1519 curr_sal.line = last_line_listed;
1520 else
1521 curr_sal.line = loc->line ();
1522
1523 sals = curr_sal;
1524 }
1525 else
1526 {
1527 decoded_sals = decode_line_with_last_displayed (arg,
1528 DECODE_LINE_LIST_MODE);
1529 sals = decoded_sals;
1530
1531 dont_repeat ();
1532 }
1533
1534 /* C++ More than one line may have been specified, as when the user
1535 specifies an overloaded function name. Print info on them all. */
1536 for (const auto &sal : sals)
1537 {
1538 if (sal.pspace != current_program_space)
1539 continue;
1540
1541 if (sal.symtab == 0)
1542 {
1543 struct gdbarch *gdbarch = get_current_arch ();
1544
1545 gdb_printf (_("No line number information available"));
1546 if (sal.pc != 0)
1547 {
1548 /* This is useful for "info line *0x7f34". If we can't tell the
1549 user about a source line, at least let them have the symbolic
1550 address. */
1551 gdb_printf (" for address ");
1552 gdb_stdout->wrap_here (2);
1553 print_address (gdbarch, sal.pc, gdb_stdout);
1554 }
1555 else
1556 gdb_printf (".");
1557 gdb_printf ("\n");
1558 }
1559 else if (sal.line > 0
1560 && find_line_pc_range (sal, &start_pc, &end_pc))
1561 {
1562 struct gdbarch *gdbarch = sal.symtab->objfile ()->arch ();
1563
1564 if (start_pc == end_pc)
1565 {
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 (" is at address ");
1571 print_address (gdbarch, start_pc, gdb_stdout);
1572 gdb_stdout->wrap_here (2);
1573 gdb_printf (" but contains no code.\n");
1574 }
1575 else
1576 {
1577 gdb_printf ("Line %d of \"%s\"",
1578 sal.line,
1579 symtab_to_filename_for_display (sal.symtab));
1580 gdb_stdout->wrap_here (2);
1581 gdb_printf (" starts at address ");
1582 print_address (gdbarch, start_pc, gdb_stdout);
1583 gdb_stdout->wrap_here (2);
1584 gdb_printf (" and ends at ");
1585 print_address (gdbarch, end_pc, gdb_stdout);
1586 gdb_printf (".\n");
1587 }
1588
1589 /* x/i should display this line's code. */
1590 set_next_address (gdbarch, start_pc);
1591
1592 /* Repeating "info line" should do the following line. */
1593 last_line_listed = sal.line + 1;
1594
1595 /* If this is the only line, show the source code. If it could
1596 not find the file, don't do anything special. */
1597 if (annotation_level > 0 && sals.size () == 1)
1598 annotate_source_line (sal.symtab, sal.line, 0, start_pc);
1599 }
1600 else
1601 /* Is there any case in which we get here, and have an address
1602 which the user would want to see? If we have debugging symbols
1603 and no line numbers? */
1604 gdb_printf (_("Line number %d is out of range for \"%s\".\n"),
1605 sal.line, symtab_to_filename_for_display (sal.symtab));
1606 }
1607 }
1608 \f
1609 /* Commands to search the source file for a regexp. */
1610
1611 /* Helper for forward_search_command/reverse_search_command. FORWARD
1612 indicates direction: true for forward, false for
1613 backward/reverse. */
1614
1615 static void
1616 search_command_helper (const char *regex, int from_tty, bool forward)
1617 {
1618 const char *msg = re_comp (regex);
1619 if (msg)
1620 error (("%s"), msg);
1621
1622 current_source_location *loc
1623 = get_source_location (current_program_space);
1624 if (loc->symtab () == nullptr)
1625 select_source_symtab (0);
1626
1627 if (!source_open)
1628 error (_("source code access disabled"));
1629
1630 scoped_fd desc (open_source_file (loc->symtab ()));
1631 if (desc.get () < 0)
1632 perror_with_name (symtab_to_filename_for_display (loc->symtab ()));
1633
1634 int line = (forward
1635 ? last_line_listed + 1
1636 : last_line_listed - 1);
1637
1638 const std::vector<off_t> *offsets;
1639 if (line < 1
1640 || !g_source_cache.get_line_charpos (loc->symtab (), &offsets)
1641 || line > offsets->size ())
1642 error (_("Expression not found"));
1643
1644 if (lseek (desc.get (), (*offsets)[line - 1], 0) < 0)
1645 perror_with_name (symtab_to_filename_for_display (loc->symtab ()));
1646
1647 gdb_file_up stream = desc.to_file (FDOPEN_MODE);
1648 clearerr (stream.get ());
1649
1650 gdb::def_vector<char> buf;
1651 buf.reserve (256);
1652
1653 while (1)
1654 {
1655 buf.resize (0);
1656
1657 int c = fgetc (stream.get ());
1658 if (c == EOF)
1659 break;
1660 do
1661 {
1662 buf.push_back (c);
1663 }
1664 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1665
1666 /* Remove the \r, if any, at the end of the line, otherwise
1667 regular expressions that end with $ or \n won't work. */
1668 size_t sz = buf.size ();
1669 if (sz >= 2 && buf[sz - 2] == '\r')
1670 {
1671 buf[sz - 2] = '\n';
1672 buf.resize (sz - 1);
1673 }
1674
1675 /* We now have a source line in buf, null terminate and match. */
1676 buf.push_back ('\0');
1677 if (re_exec (buf.data ()) > 0)
1678 {
1679 /* Match! */
1680 print_source_lines (loc->symtab (), line, line + 1, 0);
1681 set_internalvar_integer (lookup_internalvar ("_"), line);
1682 loc->set (loc->symtab (), std::max (line - lines_to_list / 2, 1));
1683 return;
1684 }
1685
1686 if (forward)
1687 line++;
1688 else
1689 {
1690 line--;
1691 if (line < 1)
1692 break;
1693 if (fseek (stream.get (), (*offsets)[line - 1], 0) < 0)
1694 {
1695 const char *filename
1696 = symtab_to_filename_for_display (loc->symtab ());
1697 perror_with_name (filename);
1698 }
1699 }
1700 }
1701
1702 gdb_printf (_("Expression not found\n"));
1703 }
1704
1705 static void
1706 forward_search_command (const char *regex, int from_tty)
1707 {
1708 search_command_helper (regex, from_tty, true);
1709 }
1710
1711 static void
1712 reverse_search_command (const char *regex, int from_tty)
1713 {
1714 search_command_helper (regex, from_tty, false);
1715 }
1716
1717 /* If the last character of PATH is a directory separator, then strip it. */
1718
1719 static void
1720 strip_trailing_directory_separator (char *path)
1721 {
1722 const int last = strlen (path) - 1;
1723
1724 if (last < 0)
1725 return; /* No stripping is needed if PATH is the empty string. */
1726
1727 if (IS_DIR_SEPARATOR (path[last]))
1728 path[last] = '\0';
1729 }
1730
1731 /* Add a new substitute-path rule at the end of the current list of rules.
1732 The new rule will replace FROM into TO. */
1733
1734 void
1735 add_substitute_path_rule (const char *from, const char *to)
1736 {
1737 substitute_path_rules.emplace_back (from, to);
1738 }
1739
1740 /* Implement the "show substitute-path" command. */
1741
1742 static void
1743 show_substitute_path_command (const char *args, int from_tty)
1744 {
1745 char *from = NULL;
1746
1747 gdb_argv argv (args);
1748
1749 /* We expect zero or one argument. */
1750
1751 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1752 error (_("Too many arguments in command"));
1753
1754 if (argv != NULL && argv[0] != NULL)
1755 from = argv[0];
1756
1757 /* Print the substitution rules. */
1758
1759 if (from != NULL)
1760 gdb_printf
1761 (_("Source path substitution rule matching `%s':\n"), from);
1762 else
1763 gdb_printf (_("List of all source path substitution rules:\n"));
1764
1765 for (substitute_path_rule &rule : substitute_path_rules)
1766 {
1767 if (from == NULL || substitute_path_rule_matches (&rule, from) != 0)
1768 gdb_printf (" `%s' -> `%s'.\n", rule.from.c_str (),
1769 rule.to.c_str ());
1770 }
1771 }
1772
1773 /* Implement the "unset substitute-path" command. */
1774
1775 static void
1776 unset_substitute_path_command (const char *args, int from_tty)
1777 {
1778 gdb_argv argv (args);
1779 char *from = NULL;
1780
1781 /* This function takes either 0 or 1 argument. */
1782
1783 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1784 error (_("Incorrect usage, too many arguments in command"));
1785
1786 if (argv != NULL && argv[0] != NULL)
1787 from = argv[0];
1788
1789 /* If the user asked for all the rules to be deleted, ask him
1790 to confirm and give him a chance to abort before the action
1791 is performed. */
1792
1793 if (from == NULL
1794 && !query (_("Delete all source path substitution rules? ")))
1795 error (_("Canceled"));
1796
1797 /* Delete the rule matching the argument. No argument means that
1798 all rules should be deleted. */
1799
1800 if (from == nullptr)
1801 substitute_path_rules.clear ();
1802 else
1803 {
1804 auto iter
1805 = std::remove_if (substitute_path_rules.begin (),
1806 substitute_path_rules.end (),
1807 [&] (const substitute_path_rule &rule)
1808 {
1809 return FILENAME_CMP (from,
1810 rule.from.c_str ()) == 0;
1811 });
1812 bool rule_found = iter != substitute_path_rules.end ();
1813 substitute_path_rules.erase (iter, substitute_path_rules.end ());
1814
1815 /* If the user asked for a specific rule to be deleted but
1816 we could not find it, then report an error. */
1817
1818 if (!rule_found)
1819 error (_("No substitution rule defined for `%s'"), from);
1820 }
1821
1822 forget_cached_source_info ();
1823 }
1824
1825 /* Add a new source path substitution rule. */
1826
1827 static void
1828 set_substitute_path_command (const char *args, int from_tty)
1829 {
1830 gdb_argv argv (args);
1831
1832 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1833 error (_("Incorrect usage, too few arguments in command"));
1834
1835 if (argv[2] != NULL)
1836 error (_("Incorrect usage, too many arguments in command"));
1837
1838 if (*(argv[0]) == '\0')
1839 error (_("First argument must be at least one character long"));
1840
1841 /* Strip any trailing directory separator character in either FROM
1842 or TO. The substitution rule already implicitly contains them. */
1843 strip_trailing_directory_separator (argv[0]);
1844 strip_trailing_directory_separator (argv[1]);
1845
1846 /* If a rule with the same "from" was previously defined, then
1847 delete it. This new rule replaces it. */
1848
1849 auto iter
1850 = std::remove_if (substitute_path_rules.begin (),
1851 substitute_path_rules.end (),
1852 [&] (const substitute_path_rule &rule)
1853 {
1854 return FILENAME_CMP (argv[0], rule.from.c_str ()) == 0;
1855 });
1856 substitute_path_rules.erase (iter, substitute_path_rules.end ());
1857
1858 /* Insert the new substitution rule. */
1859
1860 add_substitute_path_rule (argv[0], argv[1]);
1861 forget_cached_source_info ();
1862 }
1863
1864 /* See source.h. */
1865
1866 source_lines_range::source_lines_range (int startline,
1867 source_lines_range::direction dir)
1868 {
1869 if (dir == source_lines_range::FORWARD)
1870 {
1871 LONGEST end = static_cast <LONGEST> (startline) + get_lines_to_list ();
1872
1873 if (end > INT_MAX)
1874 end = INT_MAX;
1875
1876 m_startline = startline;
1877 m_stopline = static_cast <int> (end);
1878 }
1879 else
1880 {
1881 LONGEST start = static_cast <LONGEST> (startline) - get_lines_to_list ();
1882
1883 if (start < 1)
1884 start = 1;
1885
1886 m_startline = static_cast <int> (start);
1887 m_stopline = startline;
1888 }
1889 }
1890
1891 /* Handle the "set source" base command. */
1892
1893 static void
1894 set_source (const char *arg, int from_tty)
1895 {
1896 help_list (setsourcelist, "set source ", all_commands, gdb_stdout);
1897 }
1898
1899 /* Handle the "show source" base command. */
1900
1901 static void
1902 show_source (const char *args, int from_tty)
1903 {
1904 help_list (showsourcelist, "show source ", all_commands, gdb_stdout);
1905 }
1906
1907 \f
1908 void _initialize_source ();
1909 void
1910 _initialize_source ()
1911 {
1912 init_source_path ();
1913
1914 /* The intention is to use POSIX Basic Regular Expressions.
1915 Always use the GNU regex routine for consistency across all hosts.
1916 Our current GNU regex.c does not have all the POSIX features, so this is
1917 just an approximation. */
1918 re_set_syntax (RE_SYNTAX_GREP);
1919
1920 cmd_list_element *directory_cmd
1921 = add_cmd ("directory", class_files, directory_command, _("\
1922 Add directory DIR to beginning of search path for source files.\n\
1923 Forget cached info on source file locations and line positions.\n\
1924 DIR can also be $cwd for the current working directory, or $cdir for the\n\
1925 directory in which the source file was compiled into object code.\n\
1926 With no argument, reset the search path to $cdir:$cwd, the default."),
1927 &cmdlist);
1928
1929 if (dbx_commands)
1930 add_com_alias ("use", directory_cmd, class_files, 0);
1931
1932 set_cmd_completer (directory_cmd, filename_completer);
1933
1934 add_setshow_optional_filename_cmd ("directories",
1935 class_files,
1936 &source_path,
1937 _("\
1938 Set the search path for finding source files."),
1939 _("\
1940 Show the search path for finding source files."),
1941 _("\
1942 $cwd in the path means the current working directory.\n\
1943 $cdir in the path means the compilation directory of the source file.\n\
1944 GDB ensures the search path always ends with $cdir:$cwd by\n\
1945 appending these directories if necessary.\n\
1946 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
1947 set_directories_command,
1948 show_directories_command,
1949 &setlist, &showlist);
1950
1951 add_info ("source", info_source_command,
1952 _("Information about the current source file."));
1953
1954 add_info ("line", info_line_command, _("\
1955 Core addresses of the code for a source line.\n\
1956 Line can be specified as\n\
1957 LINENUM, to list around that line in current file,\n\
1958 FILE:LINENUM, to list around that line in that file,\n\
1959 FUNCTION, to list around beginning of that function,\n\
1960 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1961 Default is to describe the last source line that was listed.\n\n\
1962 This sets the default address for \"x\" to the line's first instruction\n\
1963 so that \"x/i\" suffices to start examining the machine code.\n\
1964 The address is also stored as the value of \"$_\"."));
1965
1966 cmd_list_element *forward_search_cmd
1967 = add_com ("forward-search", class_files, forward_search_command, _("\
1968 Search for regular expression (see regex(3)) from last line listed.\n\
1969 The matching line number is also stored as the value of \"$_\"."));
1970 add_com_alias ("search", forward_search_cmd, class_files, 0);
1971 add_com_alias ("fo", forward_search_cmd, class_files, 1);
1972
1973 cmd_list_element *reverse_search_cmd
1974 = add_com ("reverse-search", class_files, reverse_search_command, _("\
1975 Search backward for regular expression (see regex(3)) from last line listed.\n\
1976 The matching line number is also stored as the value of \"$_\"."));
1977 add_com_alias ("rev", reverse_search_cmd, class_files, 1);
1978
1979 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
1980 Set number of source lines gdb will list by default."), _("\
1981 Show number of source lines gdb will list by default."), _("\
1982 Use this to choose how many source lines the \"list\" displays (unless\n\
1983 the \"list\" argument explicitly specifies some other number).\n\
1984 A value of \"unlimited\", or zero, means there's no limit."),
1985 NULL,
1986 show_lines_to_list,
1987 &setlist, &showlist);
1988
1989 add_cmd ("substitute-path", class_files, set_substitute_path_command,
1990 _("\
1991 Add a substitution rule to rewrite the source directories.\n\
1992 Usage: set substitute-path FROM TO\n\
1993 The rule is applied only if the directory name starts with FROM\n\
1994 directly followed by a directory separator.\n\
1995 If a substitution rule was previously set for FROM, the old rule\n\
1996 is replaced by the new one."),
1997 &setlist);
1998
1999 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
2000 _("\
2001 Delete one or all substitution rules rewriting the source directories.\n\
2002 Usage: unset substitute-path [FROM]\n\
2003 Delete the rule for substituting FROM in source directories. If FROM\n\
2004 is not specified, all substituting rules are deleted.\n\
2005 If the debugger cannot find a rule for FROM, it will display a warning."),
2006 &unsetlist);
2007
2008 add_cmd ("substitute-path", class_files, show_substitute_path_command,
2009 _("\
2010 Show one or all substitution rules rewriting the source directories.\n\
2011 Usage: show substitute-path [FROM]\n\
2012 Print the rule for substituting FROM in source directories. If FROM\n\
2013 is not specified, print all substitution rules."),
2014 &showlist);
2015
2016 add_setshow_enum_cmd ("filename-display", class_files,
2017 filename_display_kind_names,
2018 &filename_display_string, _("\
2019 Set how to display filenames."), _("\
2020 Show how to display filenames."), _("\
2021 filename-display can be:\n\
2022 basename - display only basename of a filename\n\
2023 relative - display a filename relative to the compilation directory\n\
2024 absolute - display an absolute filename\n\
2025 By default, relative filenames are displayed."),
2026 NULL,
2027 show_filename_display_string,
2028 &setlist, &showlist);
2029
2030 add_prefix_cmd ("source", no_class, set_source,
2031 _("Generic command for setting how sources are handled."),
2032 &setsourcelist, 0, &setlist);
2033
2034 add_prefix_cmd ("source", no_class, show_source,
2035 _("Generic command for showing source settings."),
2036 &showsourcelist, 0, &showlist);
2037
2038 add_setshow_boolean_cmd ("open", class_files, &source_open, _("\
2039 Set whether GDB should open source files."), _("\
2040 Show whether GDB should open source files."), _("\
2041 When this option is on GDB will open source files and display the\n\
2042 contents when appropriate, for example, when GDB stops, or the list\n\
2043 command is used.\n\
2044 When this option is off GDB will not try to open source files, instead\n\
2045 GDB will print the file and line number that would have been displayed.\n\
2046 This can be useful if access to source code files is slow, for example\n\
2047 due to the source being located over a slow network connection."),
2048 NULL,
2049 show_source_open,
2050 &setsourcelist, &showsourcelist);
2051 }