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