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