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