]>
Commit | Line | Data |
---|---|---|
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> | |
c906108c | 32 | #include <fcntl.h> |
c906108c | 33 | #include "gdbcore.h" |
88987551 | 34 | #include "gdb_regex.h" |
c906108c SS |
35 | #include "symfile.h" |
36 | #include "objfiles.h" | |
37 | #include "annotate.h" | |
38 | #include "gdbtypes.h" | |
c5f0f3d0 | 39 | #include "linespec.h" |
fe4e3eb8 | 40 | #include "filenames.h" /* for DOSish file names */ |
d75b5104 | 41 | #include "completer.h" |
8b93c638 | 42 | #include "ui-out.h" |
dbda9972 | 43 | #include "readline/readline.h" |
8d297bbf | 44 | #include "common/enum-flags.h" |
5dc1a704 | 45 | #include "common/scoped_fd.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 | 54 | static 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 | ||
59 | char *source_path; | |
60 | ||
2f61ca93 JB |
61 | /* Support for source path substitution commands. */ |
62 | ||
63 | struct substitute_path_rule | |
64 | { | |
65 | char *from; | |
66 | char *to; | |
67 | struct substitute_path_rule *next; | |
68 | }; | |
69 | ||
70 | static struct substitute_path_rule *substitute_path_rules = NULL; | |
71 | ||
c906108c SS |
72 | /* Symtab of default file for listing lines of. */ |
73 | ||
0378c332 | 74 | static struct symtab *current_source_symtab; |
c906108c SS |
75 | |
76 | /* Default next line to list. */ | |
77 | ||
0378c332 | 78 | static int current_source_line; |
c906108c | 79 | |
6c95b8df PA |
80 | static 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 | 88 | static int lines_to_list = 10; |
920d2a44 AC |
89 | static void |
90 | show_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'. */ |
100 | static const char filename_display_basename[] = "basename"; | |
101 | static const char filename_display_relative[] = "relative"; | |
102 | static const char filename_display_absolute[] = "absolute"; | |
103 | ||
104 | static const char *const filename_display_kind_names[] = { | |
105 | filename_display_basename, | |
106 | filename_display_relative, | |
107 | filename_display_absolute, | |
108 | NULL | |
109 | }; | |
110 | ||
111 | static const char *filename_display_string = filename_display_relative; | |
112 | ||
113 | static void | |
114 | show_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 | ||
123 | static 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 | |
129 | static 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 | |
134 | static struct symtab *last_source_visited = NULL; | |
135 | static 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 | |
141 | int | |
142 | get_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 | ||
150 | static void | |
151 | clear_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 | |
162 | int | |
163 | get_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 | |
171 | struct symtab_and_line | |
172 | get_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 |
193 | void |
194 | set_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 | |
209 | struct symtab_and_line | |
51abb421 | 210 | set_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 | |
232 | void | |
233 | clear_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 | ||
247 | void | |
aa1ee363 | 248 | select_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 | ||
317 | static void | |
eb4c3f4a TT |
318 | set_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 | 340 | static void |
99e7ae30 | 341 | show_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 | ||
350 | static void | |
351 | show_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 | ||
360 | void | |
361 | forget_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 | ||
388 | void | |
fba45db2 | 389 | forget_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 | ||
403 | void | |
fba45db2 | 404 | init_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 | 415 | static void |
5fed81ff | 416 | directory_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 | ||
440 | void | |
5614fb77 | 441 | directory_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 | ||
448 | void | |
5614fb77 | 449 | mod_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 | |
460 | void | |
5614fb77 | 461 | add_path (const char *dirname, char **which_path, int parse_separators) |
c906108c SS |
462 | { |
463 | char *old = *which_path; | |
464 | int prefix = 0; | |
e80aaf61 | 465 | std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec; |
c906108c SS |
466 | |
467 | if (dirname == 0) | |
468 | return; | |
469 | ||
13d35ae5 AS |
470 | if (parse_separators) |
471 | { | |
472 | /* This will properly parse the space and tab separators | |
e4ab2fad | 473 | and any quotes that may exist. */ |
773a1edc | 474 | gdb_argv argv (dirname); |
e4ab2fad | 475 | |
773a1edc TT |
476 | for (char *arg : argv) |
477 | dirnames_to_char_ptr_vec_append (&dir_vec, arg); | |
13d35ae5 AS |
478 | } |
479 | else | |
e80aaf61 | 480 | dir_vec.emplace_back (xstrdup (dirname)); |
c906108c | 481 | |
e80aaf61 | 482 | for (const gdb::unique_xmalloc_ptr<char> &name_up : dir_vec) |
c906108c | 483 | { |
e80aaf61 | 484 | char *name = name_up.get (); |
aa1ee363 | 485 | char *p; |
c906108c | 486 | struct stat st; |
db68fbe2 | 487 | gdb::unique_xmalloc_ptr<char> new_name_holder; |
c906108c | 488 | |
e4ab2fad JK |
489 | /* Spaces and tabs will have been removed by buildargv(). |
490 | NAME is the start of the directory. | |
491 | P is the '\0' following the end. */ | |
492 | p = name + strlen (name); | |
13d35ae5 AS |
493 | |
494 | while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */ | |
c3690141 | 495 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
7be570e7 | 496 | /* On MS-DOS and MS-Windows, h:\ is different from h: */ |
13d35ae5 | 497 | && !(p == name + 3 && name[1] == ':') /* "d:/" */ |
7be570e7 | 498 | #endif |
13d35ae5 | 499 | && IS_DIR_SEPARATOR (p[-1])) |
c378eb4e | 500 | /* Sigh. "foo/" => "foo" */ |
c906108c | 501 | --p; |
c906108c SS |
502 | *p = '\0'; |
503 | ||
7be570e7 | 504 | while (p > name && p[-1] == '.') |
c906108c SS |
505 | { |
506 | if (p - name == 1) | |
507 | { | |
508 | /* "." => getwd (). */ | |
509 | name = current_directory; | |
510 | goto append; | |
511 | } | |
fe4e3eb8 | 512 | else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2])) |
c906108c SS |
513 | { |
514 | if (p - name == 2) | |
515 | { | |
516 | /* "/." => "/". */ | |
517 | *--p = '\0'; | |
518 | goto append; | |
519 | } | |
520 | else | |
521 | { | |
522 | /* "...foo/." => "...foo". */ | |
523 | p -= 2; | |
524 | *p = '\0'; | |
525 | continue; | |
526 | } | |
527 | } | |
528 | else | |
529 | break; | |
530 | } | |
531 | ||
532 | if (name[0] == '~') | |
db68fbe2 | 533 | new_name_holder.reset (tilde_expand (name)); |
c3690141 | 534 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
fe4e3eb8 | 535 | else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */ |
db68fbe2 | 536 | new_name_holder.reset (concat (name, ".", (char *) NULL)); |
7be570e7 | 537 | #endif |
fe4e3eb8 | 538 | else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$') |
db68fbe2 TT |
539 | new_name_holder.reset (concat (current_directory, SLASH_STRING, name, |
540 | (char *) NULL)); | |
c906108c | 541 | else |
db68fbe2 TT |
542 | new_name_holder.reset (savestring (name, p - name)); |
543 | name = new_name_holder.get (); | |
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 | } |
c906108c SS |
633 | } |
634 | ||
635 | ||
636 | static void | |
1d12d88f | 637 | info_source_command (const char *ignore, int from_tty) |
c906108c | 638 | { |
52f0bd74 | 639 | struct symtab *s = current_source_symtab; |
b6577aab | 640 | struct compunit_symtab *cust; |
c906108c SS |
641 | |
642 | if (!s) | |
643 | { | |
a3f17187 | 644 | printf_filtered (_("No current source file.\n")); |
c906108c SS |
645 | return; |
646 | } | |
b6577aab DE |
647 | |
648 | cust = SYMTAB_COMPUNIT (s); | |
a3f17187 | 649 | printf_filtered (_("Current source file is %s\n"), s->filename); |
ee6f8984 DE |
650 | if (SYMTAB_DIRNAME (s) != NULL) |
651 | printf_filtered (_("Compilation directory is %s\n"), SYMTAB_DIRNAME (s)); | |
c906108c | 652 | if (s->fullname) |
a3f17187 | 653 | printf_filtered (_("Located in %s\n"), s->fullname); |
c906108c | 654 | if (s->nlines) |
a3f17187 | 655 | printf_filtered (_("Contains %d line%s.\n"), s->nlines, |
c906108c SS |
656 | s->nlines == 1 ? "" : "s"); |
657 | ||
a3f17187 | 658 | printf_filtered (_("Source language is %s.\n"), language_str (s->language)); |
b6577aab DE |
659 | printf_filtered (_("Producer is %s.\n"), |
660 | COMPUNIT_PRODUCER (cust) != NULL | |
661 | ? COMPUNIT_PRODUCER (cust) : _("unknown")); | |
43f3e411 | 662 | printf_filtered (_("Compiled with %s debugging format.\n"), |
b6577aab | 663 | COMPUNIT_DEBUGFORMAT (cust)); |
a3f17187 | 664 | printf_filtered (_("%s preprocessor macro info.\n"), |
b6577aab | 665 | COMPUNIT_MACRO_TABLE (cust) != NULL |
43f3e411 | 666 | ? "Includes" : "Does not include"); |
c906108c | 667 | } |
c5aa993b | 668 | \f |
c906108c | 669 | |
c906108c | 670 | /* Open a file named STRING, searching path PATH (dir names sep by some char) |
fbdebf46 JK |
671 | using mode MODE in the calls to open. You cannot use this function to |
672 | create files (O_CREAT). | |
c906108c | 673 | |
014d698b EZ |
674 | OPTS specifies the function behaviour in specific cases. |
675 | ||
676 | If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH. | |
c906108c | 677 | (ie pretend the first element of PATH is "."). This also indicates |
e3e06db3 DE |
678 | that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING |
679 | disables searching of the path (this is so that "exec-file ./foo" or | |
680 | "symbol-file ./foo" insures that you get that particular version of | |
681 | foo or an error message). | |
c906108c | 682 | |
014d698b EZ |
683 | If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be |
684 | searched in path (we usually want this for source files but not for | |
685 | executables). | |
686 | ||
e7a8479f | 687 | If FILENAME_OPENED is non-null, set it to a newly allocated string naming |
a89f66e4 | 688 | the actual file opened (this string will always start with a "/"). We |
c906108c SS |
689 | have to take special pains to avoid doubling the "/" between the directory |
690 | and the file, sigh! Emacs gets confuzzed by this when we print the | |
691 | source file name!!! | |
692 | ||
492c0ab7 JK |
693 | If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by |
694 | gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns | |
695 | filename starting with "/". If FILENAME_OPENED is NULL this option has no | |
696 | effect. | |
1f0c4988 | 697 | |
c906108c SS |
698 | If a file is found, return the descriptor. |
699 | Otherwise, return -1, with errno set for the last name we tried to open. */ | |
700 | ||
701 | /* >>>> This should only allow files of certain types, | |
c378eb4e | 702 | >>>> eg executable, non-directory. */ |
c906108c | 703 | int |
24b9144d | 704 | openp (const char *path, openp_flags opts, const char *string, |
e0cc99a6 | 705 | int mode, gdb::unique_xmalloc_ptr<char> *filename_opened) |
c906108c | 706 | { |
52f0bd74 AC |
707 | int fd; |
708 | char *filename; | |
c906108c | 709 | int alloclen; |
79b289e2 PA |
710 | /* The errno set for the last name we tried to open (and |
711 | failed). */ | |
712 | int last_errno = 0; | |
e80aaf61 | 713 | std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec; |
c906108c | 714 | |
fbdebf46 JK |
715 | /* The open syscall MODE parameter is not specified. */ |
716 | gdb_assert ((mode & O_CREAT) == 0); | |
f91e5ac3 JB |
717 | gdb_assert (string != NULL); |
718 | ||
719 | /* A file with an empty name cannot possibly exist. Report a failure | |
720 | without further checking. | |
721 | ||
722 | This is an optimization which also defends us against buggy | |
723 | implementations of the "stat" function. For instance, we have | |
724 | noticed that a MinGW debugger built on Windows XP 32bits crashes | |
725 | when the debugger is started with an empty argument. */ | |
726 | if (string[0] == '\0') | |
727 | { | |
728 | errno = ENOENT; | |
729 | return -1; | |
730 | } | |
fbdebf46 | 731 | |
c906108c SS |
732 | if (!path) |
733 | path = "."; | |
734 | ||
c906108c | 735 | mode |= O_BINARY; |
c906108c | 736 | |
014d698b | 737 | if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string)) |
c906108c | 738 | { |
a55411b9 | 739 | int i, reg_file_errno; |
072b1022 | 740 | |
a55411b9 | 741 | if (is_regular_file (string, ®_file_errno)) |
072b1022 | 742 | { |
224c3ddb | 743 | filename = (char *) alloca (strlen (string) + 1); |
072b1022 | 744 | strcpy (filename, string); |
614c279d | 745 | fd = gdb_open_cloexec (filename, mode, 0); |
072b1022 DJ |
746 | if (fd >= 0) |
747 | goto done; | |
a55411b9 | 748 | last_errno = errno; |
072b1022 DJ |
749 | } |
750 | else | |
3f565f1e DJ |
751 | { |
752 | filename = NULL; | |
753 | fd = -1; | |
a55411b9 | 754 | last_errno = reg_file_errno; |
3f565f1e | 755 | } |
072b1022 | 756 | |
014d698b EZ |
757 | if (!(opts & OPF_SEARCH_IN_PATH)) |
758 | for (i = 0; string[i]; i++) | |
759 | if (IS_DIR_SEPARATOR (string[i])) | |
760 | goto done; | |
c906108c SS |
761 | } |
762 | ||
e6d9b9c2 DE |
763 | /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */ |
764 | if (HAS_DRIVE_SPEC (string)) | |
765 | string = STRIP_DRIVE_SPEC (string); | |
766 | ||
c378eb4e | 767 | /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */ |
014d698b EZ |
768 | while (IS_DIR_SEPARATOR(string[0])) |
769 | string++; | |
770 | ||
c906108c | 771 | /* ./foo => foo */ |
fe4e3eb8 | 772 | while (string[0] == '.' && IS_DIR_SEPARATOR (string[1])) |
c906108c SS |
773 | string += 2; |
774 | ||
775 | alloclen = strlen (path) + strlen (string) + 2; | |
224c3ddb | 776 | filename = (char *) alloca (alloclen); |
c906108c | 777 | fd = -1; |
79b289e2 | 778 | last_errno = ENOENT; |
e4ab2fad JK |
779 | |
780 | dir_vec = dirnames_to_char_ptr_vec (path); | |
e4ab2fad | 781 | |
e80aaf61 | 782 | for (const gdb::unique_xmalloc_ptr<char> &dir_up : dir_vec) |
c906108c | 783 | { |
e80aaf61 | 784 | char *dir = dir_up.get (); |
e4ab2fad | 785 | size_t len = strlen (dir); |
a55411b9 | 786 | int reg_file_errno; |
c906108c | 787 | |
e4ab2fad | 788 | if (strcmp (dir, "$cwd") == 0) |
c5aa993b JM |
789 | { |
790 | /* Name is $cwd -- insert current directory name instead. */ | |
791 | int newlen; | |
792 | ||
c378eb4e | 793 | /* First, realloc the filename buffer if too short. */ |
c5aa993b JM |
794 | len = strlen (current_directory); |
795 | newlen = len + strlen (string) + 2; | |
796 | if (newlen > alloclen) | |
797 | { | |
798 | alloclen = newlen; | |
224c3ddb | 799 | filename = (char *) alloca (alloclen); |
c5aa993b JM |
800 | } |
801 | strcpy (filename, current_directory); | |
802 | } | |
ebd86fb5 TJB |
803 | else if (strchr(dir, '~')) |
804 | { | |
805 | /* See whether we need to expand the tilde. */ | |
806 | int newlen; | |
ebd86fb5 | 807 | |
ee0c3293 | 808 | gdb::unique_xmalloc_ptr<char> tilde_expanded (tilde_expand (dir)); |
ebd86fb5 TJB |
809 | |
810 | /* First, realloc the filename buffer if too short. */ | |
ee0c3293 | 811 | len = strlen (tilde_expanded.get ()); |
ebd86fb5 TJB |
812 | newlen = len + strlen (string) + 2; |
813 | if (newlen > alloclen) | |
814 | { | |
815 | alloclen = newlen; | |
224c3ddb | 816 | filename = (char *) alloca (alloclen); |
ebd86fb5 | 817 | } |
ee0c3293 | 818 | strcpy (filename, tilde_expanded.get ()); |
ebd86fb5 | 819 | } |
c5aa993b JM |
820 | else |
821 | { | |
822 | /* Normal file name in path -- just use it. */ | |
e4ab2fad | 823 | strcpy (filename, dir); |
08001717 DE |
824 | |
825 | /* Don't search $cdir. It's also a magic path like $cwd, but we | |
826 | don't have enough information to expand it. The user *could* | |
827 | have an actual directory named '$cdir' but handling that would | |
828 | be confusing, it would mean different things in different | |
829 | contexts. If the user really has '$cdir' one can use './$cdir'. | |
830 | We can get $cdir when loading scripts. When loading source files | |
831 | $cdir must have already been expanded to the correct value. */ | |
e4ab2fad | 832 | if (strcmp (dir, "$cdir") == 0) |
08001717 | 833 | continue; |
c906108c | 834 | } |
c906108c | 835 | |
c378eb4e | 836 | /* Remove trailing slashes. */ |
fe4e3eb8 | 837 | while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1])) |
c906108c SS |
838 | filename[--len] = 0; |
839 | ||
c5aa993b | 840 | strcat (filename + len, SLASH_STRING); |
c906108c SS |
841 | strcat (filename, string); |
842 | ||
a55411b9 | 843 | if (is_regular_file (filename, ®_file_errno)) |
5e987968 | 844 | { |
614c279d | 845 | fd = gdb_open_cloexec (filename, mode, 0); |
5e987968 AS |
846 | if (fd >= 0) |
847 | break; | |
79b289e2 | 848 | last_errno = errno; |
5e987968 | 849 | } |
a55411b9 DE |
850 | else |
851 | last_errno = reg_file_errno; | |
c906108c SS |
852 | } |
853 | ||
c5aa993b | 854 | done: |
c906108c SS |
855 | if (filename_opened) |
856 | { | |
f5b95b50 | 857 | /* If a file was opened, canonicalize its filename. */ |
c906108c | 858 | if (fd < 0) |
e0cc99a6 | 859 | filename_opened->reset (NULL); |
04affae3 | 860 | else if ((opts & OPF_RETURN_REALPATH) != 0) |
e0cc99a6 | 861 | *filename_opened = gdb_realpath (filename); |
c906108c | 862 | else |
e0cc99a6 | 863 | *filename_opened = gdb_abspath (filename); |
c906108c | 864 | } |
c906108c | 865 | |
79b289e2 | 866 | errno = last_errno; |
c906108c SS |
867 | return fd; |
868 | } | |
869 | ||
c5aa993b | 870 | |
c906108c SS |
871 | /* This is essentially a convenience, for clients that want the behaviour |
872 | of openp, using source_path, but that really don't want the file to be | |
873 | opened but want instead just to know what the full pathname is (as | |
874 | qualified against source_path). | |
875 | ||
876 | The current working directory is searched first. | |
877 | ||
878 | If the file was found, this function returns 1, and FULL_PATHNAME is | |
879 | set to the fully-qualified pathname. | |
880 | ||
5e987968 | 881 | Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */ |
c906108c | 882 | int |
e0cc99a6 TT |
883 | source_full_path_of (const char *filename, |
884 | gdb::unique_xmalloc_ptr<char> *full_pathname) | |
c906108c | 885 | { |
c5aa993b | 886 | int fd; |
c906108c | 887 | |
492c0ab7 JK |
888 | fd = openp (source_path, |
889 | OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, | |
890 | filename, O_RDONLY, full_pathname); | |
c906108c SS |
891 | if (fd < 0) |
892 | { | |
e0cc99a6 | 893 | full_pathname->reset (NULL); |
c906108c SS |
894 | return 0; |
895 | } | |
896 | ||
897 | close (fd); | |
898 | return 1; | |
899 | } | |
900 | ||
2f61ca93 JB |
901 | /* Return non-zero if RULE matches PATH, that is if the rule can be |
902 | applied to PATH. */ | |
903 | ||
904 | static int | |
905 | substitute_path_rule_matches (const struct substitute_path_rule *rule, | |
906 | const char *path) | |
907 | { | |
908 | const int from_len = strlen (rule->from); | |
909 | const int path_len = strlen (path); | |
2f61ca93 JB |
910 | |
911 | if (path_len < from_len) | |
912 | return 0; | |
913 | ||
914 | /* The substitution rules are anchored at the start of the path, | |
486ef3b9 | 915 | so the path should start with rule->from. */ |
2f61ca93 | 916 | |
486ef3b9 | 917 | if (filename_ncmp (path, rule->from, from_len) != 0) |
2f61ca93 JB |
918 | return 0; |
919 | ||
920 | /* Make sure that the region in the path that matches the substitution | |
921 | rule is immediately followed by a directory separator (or the end of | |
922 | string character). */ | |
230cd560 | 923 | |
2f61ca93 JB |
924 | if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len])) |
925 | return 0; | |
926 | ||
927 | return 1; | |
928 | } | |
929 | ||
930 | /* Find the substitute-path rule that applies to PATH and return it. | |
931 | Return NULL if no rule applies. */ | |
932 | ||
933 | static struct substitute_path_rule * | |
934 | get_substitute_path_rule (const char *path) | |
935 | { | |
936 | struct substitute_path_rule *rule = substitute_path_rules; | |
937 | ||
938 | while (rule != NULL && !substitute_path_rule_matches (rule, path)) | |
939 | rule = rule->next; | |
940 | ||
941 | return rule; | |
942 | } | |
943 | ||
944 | /* If the user specified a source path substitution rule that applies | |
0b581c69 TT |
945 | to PATH, then apply it and return the new path. |
946 | ||
2f61ca93 JB |
947 | Return NULL if no substitution rule was specified by the user, |
948 | or if no rule applied to the given PATH. */ | |
0b581c69 TT |
949 | |
950 | gdb::unique_xmalloc_ptr<char> | |
2f61ca93 JB |
951 | rewrite_source_path (const char *path) |
952 | { | |
953 | const struct substitute_path_rule *rule = get_substitute_path_rule (path); | |
954 | char *new_path; | |
955 | int from_len; | |
956 | ||
957 | if (rule == NULL) | |
958 | return NULL; | |
959 | ||
960 | from_len = strlen (rule->from); | |
961 | ||
962 | /* Compute the rewritten path and return it. */ | |
963 | ||
964 | new_path = | |
965 | (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len); | |
966 | strcpy (new_path, rule->to); | |
967 | strcat (new_path, path + from_len); | |
968 | ||
0b581c69 | 969 | return gdb::unique_xmalloc_ptr<char> (new_path); |
2f61ca93 JB |
970 | } |
971 | ||
ccefe4c4 | 972 | int |
e2357892 | 973 | find_and_open_source (const char *filename, |
5e987968 | 974 | const char *dirname, |
e0cc99a6 | 975 | gdb::unique_xmalloc_ptr<char> *fullname) |
c906108c SS |
976 | { |
977 | char *path = source_path; | |
31889e00 | 978 | const char *p; |
c906108c | 979 | int result; |
c906108c | 980 | |
c378eb4e | 981 | /* Quick way out if we already know its full name. */ |
2f61ca93 | 982 | |
57c22c6c | 983 | if (*fullname) |
c906108c | 984 | { |
2f61ca93 JB |
985 | /* The user may have requested that source paths be rewritten |
986 | according to substitution rules he provided. If a substitution | |
987 | rule applies to this path, then apply it. */ | |
e0cc99a6 TT |
988 | gdb::unique_xmalloc_ptr<char> rewritten_fullname |
989 | = rewrite_source_path (fullname->get ()); | |
2f61ca93 JB |
990 | |
991 | if (rewritten_fullname != NULL) | |
e0cc99a6 | 992 | *fullname = std::move (rewritten_fullname); |
2f61ca93 | 993 | |
e0cc99a6 | 994 | result = gdb_open_cloexec (fullname->get (), OPEN_MODE, 0); |
c906108c | 995 | if (result >= 0) |
bc3aa6c3 | 996 | { |
e0cc99a6 | 997 | *fullname = gdb_realpath (fullname->get ()); |
bc3aa6c3 DE |
998 | return result; |
999 | } | |
1000 | ||
c378eb4e | 1001 | /* Didn't work -- free old one, try again. */ |
e0cc99a6 | 1002 | fullname->reset (NULL); |
c906108c SS |
1003 | } |
1004 | ||
0b581c69 | 1005 | gdb::unique_xmalloc_ptr<char> rewritten_dirname; |
57c22c6c | 1006 | if (dirname != NULL) |
c906108c | 1007 | { |
2f61ca93 JB |
1008 | /* If necessary, rewrite the compilation directory name according |
1009 | to the source path substitution rules specified by the user. */ | |
1010 | ||
0b581c69 | 1011 | rewritten_dirname = rewrite_source_path (dirname); |
2f61ca93 JB |
1012 | |
1013 | if (rewritten_dirname != NULL) | |
0b581c69 TT |
1014 | dirname = rewritten_dirname.get (); |
1015 | ||
c378eb4e MS |
1016 | /* Replace a path entry of $cdir with the compilation directory |
1017 | name. */ | |
c906108c SS |
1018 | #define cdir_len 5 |
1019 | /* We cast strstr's result in case an ANSIhole has made it const, | |
c378eb4e | 1020 | which produces a "required warning" when assigned to a nonconst. */ |
c5aa993b | 1021 | p = (char *) strstr (source_path, "$cdir"); |
c906108c | 1022 | if (p && (p == path || p[-1] == DIRNAME_SEPARATOR) |
c5aa993b | 1023 | && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0')) |
c906108c SS |
1024 | { |
1025 | int len; | |
1026 | ||
1027 | path = (char *) | |
57c22c6c | 1028 | alloca (strlen (source_path) + 1 + strlen (dirname) + 1); |
c906108c | 1029 | len = p - source_path; |
c5aa993b | 1030 | strncpy (path, source_path, len); /* Before $cdir */ |
3e43a32a MS |
1031 | strcpy (path + len, dirname); /* new stuff */ |
1032 | strcat (path + len, source_path + len + cdir_len); /* After | |
1033 | $cdir */ | |
c906108c SS |
1034 | } |
1035 | } | |
8da2a1df | 1036 | |
0b581c69 | 1037 | gdb::unique_xmalloc_ptr<char> rewritten_filename; |
8da2a1df | 1038 | if (IS_ABSOLUTE_PATH (filename)) |
56163ce1 | 1039 | { |
8da2a1df DJ |
1040 | /* If filename is absolute path, try the source path |
1041 | substitution on it. */ | |
0b581c69 | 1042 | rewritten_filename = rewrite_source_path (filename); |
56163ce1 JB |
1043 | |
1044 | if (rewritten_filename != NULL) | |
0b581c69 | 1045 | filename = rewritten_filename.get (); |
56163ce1 | 1046 | } |
c906108c | 1047 | |
492c0ab7 JK |
1048 | result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename, |
1049 | OPEN_MODE, fullname); | |
c906108c SS |
1050 | if (result < 0) |
1051 | { | |
c378eb4e | 1052 | /* Didn't work. Try using just the basename. */ |
57c22c6c BR |
1053 | p = lbasename (filename); |
1054 | if (p != filename) | |
492c0ab7 JK |
1055 | result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p, |
1056 | OPEN_MODE, fullname); | |
c906108c | 1057 | } |
c906108c | 1058 | |
c906108c SS |
1059 | return result; |
1060 | } | |
1061 | ||
57c22c6c BR |
1062 | /* Open a source file given a symtab S. Returns a file descriptor or |
1063 | negative number for error. | |
1064 | ||
c378eb4e | 1065 | This function is a convience function to find_and_open_source. */ |
57c22c6c BR |
1066 | |
1067 | int | |
1068 | open_source_file (struct symtab *s) | |
1069 | { | |
5e987968 AS |
1070 | if (!s) |
1071 | return -1; | |
57c22c6c | 1072 | |
8e6a5953 PW |
1073 | gdb::unique_xmalloc_ptr<char> fullname (s->fullname); |
1074 | s->fullname = NULL; | |
e0cc99a6 TT |
1075 | int fd = find_and_open_source (s->filename, SYMTAB_DIRNAME (s), &fullname); |
1076 | s->fullname = fullname.release (); | |
1077 | return fd; | |
57c22c6c BR |
1078 | } |
1079 | ||
1080 | /* Finds the fullname that a symtab represents. | |
c906108c | 1081 | |
f35a17b5 JK |
1082 | This functions finds the fullname and saves it in s->fullname. |
1083 | It will also return the value. | |
57c22c6c BR |
1084 | |
1085 | If this function fails to find the file that this symtab represents, | |
f35a17b5 JK |
1086 | the expected fullname is used. Therefore the files does not have to |
1087 | exist. */ | |
256f06f3 | 1088 | |
0b0865da | 1089 | const char * |
57c22c6c | 1090 | symtab_to_fullname (struct symtab *s) |
c906108c | 1091 | { |
256f06f3 DE |
1092 | /* Use cached copy if we have it. |
1093 | We rely on forget_cached_source_info being called appropriately | |
1094 | to handle cases like the file being moved. */ | |
f35a17b5 | 1095 | if (s->fullname == NULL) |
5e987968 | 1096 | { |
e0cc99a6 | 1097 | int fd = open_source_file (s); |
f35a17b5 JK |
1098 | |
1099 | if (fd >= 0) | |
1100 | close (fd); | |
f35a17b5 | 1101 | else |
f0a4b570 | 1102 | { |
0b581c69 | 1103 | gdb::unique_xmalloc_ptr<char> fullname; |
f0a4b570 JK |
1104 | |
1105 | /* rewrite_source_path would be applied by find_and_open_source, we | |
1106 | should report the pathname where GDB tried to find the file. */ | |
1107 | ||
ee6f8984 | 1108 | if (SYMTAB_DIRNAME (s) == NULL || IS_ABSOLUTE_PATH (s->filename)) |
0b581c69 | 1109 | fullname.reset (xstrdup (s->filename)); |
f0a4b570 | 1110 | else |
0b581c69 TT |
1111 | fullname.reset (concat (SYMTAB_DIRNAME (s), SLASH_STRING, |
1112 | s->filename, (char *) NULL)); | |
f0a4b570 | 1113 | |
0b581c69 | 1114 | s->fullname = rewrite_source_path (fullname.get ()).release (); |
f0a4b570 | 1115 | if (s->fullname == NULL) |
0b581c69 | 1116 | s->fullname = fullname.release (); |
f0a4b570 | 1117 | } |
f35a17b5 | 1118 | } |
c906108c | 1119 | |
f35a17b5 | 1120 | return s->fullname; |
57c22c6c | 1121 | } |
1b56eb55 JK |
1122 | |
1123 | /* See commentary in source.h. */ | |
1124 | ||
1125 | const char * | |
1126 | symtab_to_filename_for_display (struct symtab *symtab) | |
1127 | { | |
1128 | if (filename_display_string == filename_display_basename) | |
1129 | return lbasename (symtab->filename); | |
1130 | else if (filename_display_string == filename_display_absolute) | |
1131 | return symtab_to_fullname (symtab); | |
1132 | else if (filename_display_string == filename_display_relative) | |
1133 | return symtab->filename; | |
1134 | else | |
1135 | internal_error (__FILE__, __LINE__, _("invalid filename_display_string")); | |
1136 | } | |
5e987968 | 1137 | \f |
c906108c SS |
1138 | /* Create and initialize the table S->line_charpos that records |
1139 | the positions of the lines in the source file, which is assumed | |
1140 | to be open on descriptor DESC. | |
1141 | All set S->nlines to the number of such lines. */ | |
1142 | ||
1143 | void | |
fba45db2 | 1144 | find_source_lines (struct symtab *s, int desc) |
c906108c SS |
1145 | { |
1146 | struct stat st; | |
a9abc434 | 1147 | char *p, *end; |
c906108c SS |
1148 | int nlines = 0; |
1149 | int lines_allocated = 1000; | |
1150 | int *line_charpos; | |
1151 | long mtime = 0; | |
1152 | int size; | |
1153 | ||
be8ca11b | 1154 | gdb_assert (s); |
8d749320 | 1155 | line_charpos = XNEWVEC (int, lines_allocated); |
c906108c | 1156 | if (fstat (desc, &st) < 0) |
05cba821 | 1157 | perror_with_name (symtab_to_filename_for_display (s)); |
c906108c | 1158 | |
eb822aa6 DE |
1159 | if (SYMTAB_OBJFILE (s) != NULL && SYMTAB_OBJFILE (s)->obfd != NULL) |
1160 | mtime = SYMTAB_OBJFILE (s)->mtime; | |
c906108c | 1161 | else if (exec_bfd) |
c04ea773 | 1162 | mtime = exec_bfd_mtime; |
c906108c SS |
1163 | |
1164 | if (mtime && mtime < st.st_mtime) | |
8a3fe4f8 | 1165 | warning (_("Source file is more recent than executable.")); |
c906108c | 1166 | |
c906108c | 1167 | { |
c906108c SS |
1168 | /* st_size might be a large type, but we only support source files whose |
1169 | size fits in an int. */ | |
1170 | size = (int) st.st_size; | |
1171 | ||
a9abc434 TT |
1172 | /* Use the heap, not the stack, because this may be pretty large, |
1173 | and we may run into various kinds of limits on stack size. */ | |
1174 | gdb::def_vector<char> data (size); | |
c906108c SS |
1175 | |
1176 | /* Reassign `size' to result of read for systems where \r\n -> \n. */ | |
a9abc434 | 1177 | size = myread (desc, data.data (), size); |
c906108c | 1178 | if (size < 0) |
05cba821 | 1179 | perror_with_name (symtab_to_filename_for_display (s)); |
9c3630e9 | 1180 | end = data.data () + size; |
a9abc434 | 1181 | p = &data[0]; |
c906108c SS |
1182 | line_charpos[0] = 0; |
1183 | nlines = 1; | |
1184 | while (p != end) | |
1185 | { | |
1186 | if (*p++ == '\n' | |
c5aa993b | 1187 | /* A newline at the end does not start a new line. */ |
c906108c SS |
1188 | && p != end) |
1189 | { | |
1190 | if (nlines == lines_allocated) | |
1191 | { | |
1192 | lines_allocated *= 2; | |
1193 | line_charpos = | |
0efffb96 AC |
1194 | (int *) xrealloc ((char *) line_charpos, |
1195 | sizeof (int) * lines_allocated); | |
c906108c | 1196 | } |
a9abc434 | 1197 | line_charpos[nlines++] = p - data.data (); |
c906108c SS |
1198 | } |
1199 | } | |
c906108c | 1200 | } |
d4d4db8a | 1201 | |
c906108c SS |
1202 | s->nlines = nlines; |
1203 | s->line_charpos = | |
0efffb96 | 1204 | (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int)); |
c906108c SS |
1205 | |
1206 | } | |
1207 | ||
c906108c | 1208 | \f |
c5aa993b | 1209 | |
c906108c SS |
1210 | /* Get full pathname and line number positions for a symtab. |
1211 | Return nonzero if line numbers may have changed. | |
1212 | Set *FULLNAME to actual name of the file as found by `openp', | |
1213 | or to 0 if the file is not found. */ | |
1214 | ||
1215 | static int | |
fba45db2 | 1216 | get_filename_and_charpos (struct symtab *s, char **fullname) |
c906108c | 1217 | { |
5dc1a704 | 1218 | int linenums_changed = 0; |
c5aa993b | 1219 | |
5dc1a704 TT |
1220 | scoped_fd desc (open_source_file (s)); |
1221 | if (desc.get () < 0) | |
c906108c SS |
1222 | { |
1223 | if (fullname) | |
1224 | *fullname = NULL; | |
1225 | return 0; | |
c5aa993b | 1226 | } |
c906108c SS |
1227 | if (fullname) |
1228 | *fullname = s->fullname; | |
c5aa993b JM |
1229 | if (s->line_charpos == 0) |
1230 | linenums_changed = 1; | |
1231 | if (linenums_changed) | |
5dc1a704 | 1232 | find_source_lines (s, desc.get ()); |
c906108c SS |
1233 | return linenums_changed; |
1234 | } | |
1235 | ||
1236 | /* Print text describing the full name of the source file S | |
1237 | and the line number LINE and its corresponding character position. | |
1238 | The text starts with two Ctrl-z so that the Emacs-GDB interface | |
1239 | can easily find it. | |
1240 | ||
1241 | MID_STATEMENT is nonzero if the PC is not at the beginning of that line. | |
1242 | ||
1243 | Return 1 if successful, 0 if could not find the file. */ | |
1244 | ||
1245 | int | |
fba45db2 KB |
1246 | identify_source_line (struct symtab *s, int line, int mid_statement, |
1247 | CORE_ADDR pc) | |
c906108c SS |
1248 | { |
1249 | if (s->line_charpos == 0) | |
c5aa993b | 1250 | get_filename_and_charpos (s, (char **) NULL); |
c906108c SS |
1251 | if (s->fullname == 0) |
1252 | return 0; | |
1253 | if (line > s->nlines) | |
1254 | /* Don't index off the end of the line_charpos array. */ | |
1255 | return 0; | |
1256 | annotate_source (s->fullname, line, s->line_charpos[line - 1], | |
eb822aa6 | 1257 | mid_statement, get_objfile_arch (SYMTAB_OBJFILE (s)), pc); |
c906108c SS |
1258 | |
1259 | current_source_line = line; | |
c906108c | 1260 | current_source_symtab = s; |
5166082f | 1261 | clear_lines_listed_range (); |
c906108c SS |
1262 | return 1; |
1263 | } | |
c906108c | 1264 | \f |
c5aa993b | 1265 | |
c906108c | 1266 | /* Print source lines from the file of symtab S, |
c378eb4e | 1267 | starting with line number LINE and stopping before line number STOPLINE. */ |
c906108c SS |
1268 | |
1269 | static void | |
dfaae886 | 1270 | print_source_lines_base (struct symtab *s, int line, int stopline, |
8d297bbf | 1271 | print_source_lines_flags flags) |
c906108c | 1272 | { |
52f0bd74 AC |
1273 | int c; |
1274 | int desc; | |
f4dfd9c0 | 1275 | int noprint = 0; |
c906108c | 1276 | int nlines = stopline - line; |
79a45e25 | 1277 | struct ui_out *uiout = current_uiout; |
c906108c | 1278 | |
c378eb4e | 1279 | /* Regardless of whether we can open the file, set current_source_symtab. */ |
c906108c SS |
1280 | current_source_symtab = s; |
1281 | current_source_line = line; | |
1282 | first_line_listed = line; | |
1283 | ||
3e43a32a | 1284 | /* If printing of source lines is disabled, just print file and line |
c378eb4e | 1285 | number. */ |
112e8700 | 1286 | if (uiout->test_flags (ui_source_list)) |
8b93c638 | 1287 | { |
c378eb4e | 1288 | /* Only prints "No such file or directory" once. */ |
c5aa993b JM |
1289 | if ((s != last_source_visited) || (!last_source_error)) |
1290 | { | |
1291 | last_source_visited = s; | |
1292 | desc = open_source_file (s); | |
1293 | } | |
1294 | else | |
1295 | { | |
1296 | desc = last_source_error; | |
dfaae886 | 1297 | flags |= PRINT_SOURCE_LINES_NOERROR; |
c5aa993b | 1298 | } |
8b93c638 JM |
1299 | } |
1300 | else | |
1301 | { | |
f4dfd9c0 | 1302 | desc = last_source_error; |
8d297bbf | 1303 | flags |= PRINT_SOURCE_LINES_NOERROR; |
f4dfd9c0 | 1304 | noprint = 1; |
8b93c638 | 1305 | } |
c906108c | 1306 | |
f4dfd9c0 | 1307 | if (desc < 0 || noprint) |
c906108c SS |
1308 | { |
1309 | last_source_error = desc; | |
1310 | ||
dfaae886 | 1311 | if (!(flags & PRINT_SOURCE_LINES_NOERROR)) |
c5aa993b | 1312 | { |
05cba821 JK |
1313 | const char *filename = symtab_to_filename_for_display (s); |
1314 | int len = strlen (filename) + 100; | |
224c3ddb | 1315 | char *name = (char *) alloca (len); |
08850b56 | 1316 | |
05cba821 | 1317 | xsnprintf (name, len, "%d\t%s", line, filename); |
c906108c SS |
1318 | print_sys_errmsg (name, errno); |
1319 | } | |
1320 | else | |
fc0ae648 | 1321 | { |
112e8700 SM |
1322 | uiout->field_int ("line", line); |
1323 | uiout->text ("\tin "); | |
56d397a3 | 1324 | |
23eb71e4 JK |
1325 | /* CLI expects only the "file" field. TUI expects only the |
1326 | "fullname" field (and TUI does break if "file" is printed). | |
1327 | MI expects both fields. ui_source_list is set only for CLI, | |
1328 | not for TUI. */ | |
112e8700 SM |
1329 | if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list)) |
1330 | uiout->field_string ("file", symtab_to_filename_for_display (s)); | |
1331 | if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list)) | |
8f1b8b82 JK |
1332 | { |
1333 | const char *s_fullname = symtab_to_fullname (s); | |
1334 | char *local_fullname; | |
1335 | ||
1336 | /* ui_out_field_string may free S_FULLNAME by calling | |
1337 | open_source_file for it again. See e.g., | |
1338 | tui_field_string->tui_show_source. */ | |
224c3ddb | 1339 | local_fullname = (char *) alloca (strlen (s_fullname) + 1); |
8f1b8b82 JK |
1340 | strcpy (local_fullname, s_fullname); |
1341 | ||
112e8700 | 1342 | uiout->field_string ("fullname", local_fullname); |
8f1b8b82 | 1343 | } |
23eb71e4 | 1344 | |
112e8700 | 1345 | uiout->text ("\n"); |
fc0ae648 | 1346 | } |
c906108c SS |
1347 | |
1348 | return; | |
1349 | } | |
1350 | ||
1351 | last_source_error = 0; | |
1352 | ||
1353 | if (s->line_charpos == 0) | |
1354 | find_source_lines (s, desc); | |
1355 | ||
1356 | if (line < 1 || line > s->nlines) | |
1357 | { | |
1358 | close (desc); | |
8a3fe4f8 | 1359 | error (_("Line number %d out of range; %s has %d lines."), |
05cba821 | 1360 | line, symtab_to_filename_for_display (s), s->nlines); |
c906108c SS |
1361 | } |
1362 | ||
1363 | if (lseek (desc, s->line_charpos[line - 1], 0) < 0) | |
1364 | { | |
1365 | close (desc); | |
05cba821 | 1366 | perror_with_name (symtab_to_filename_for_display (s)); |
c906108c SS |
1367 | } |
1368 | ||
4a45905b TT |
1369 | gdb_file_up stream (fdopen (desc, FDOPEN_MODE)); |
1370 | clearerr (stream.get ()); | |
c906108c SS |
1371 | |
1372 | while (nlines-- > 0) | |
1373 | { | |
8b93c638 JM |
1374 | char buf[20]; |
1375 | ||
4a45905b | 1376 | c = fgetc (stream.get ()); |
8b93c638 JM |
1377 | if (c == EOF) |
1378 | break; | |
1379 | last_line_listed = current_source_line; | |
4cd29721 MM |
1380 | if (flags & PRINT_SOURCE_LINES_FILENAME) |
1381 | { | |
112e8700 SM |
1382 | uiout->text (symtab_to_filename_for_display (s)); |
1383 | uiout->text (":"); | |
4cd29721 | 1384 | } |
08850b56 | 1385 | xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++); |
112e8700 | 1386 | uiout->text (buf); |
8b93c638 JM |
1387 | do |
1388 | { | |
1389 | if (c < 040 && c != '\t' && c != '\n' && c != '\r') | |
1390 | { | |
08850b56 | 1391 | xsnprintf (buf, sizeof (buf), "^%c", c + 0100); |
112e8700 | 1392 | uiout->text (buf); |
8b93c638 JM |
1393 | } |
1394 | else if (c == 0177) | |
112e8700 | 1395 | uiout->text ("^?"); |
8b93c638 JM |
1396 | else if (c == '\r') |
1397 | { | |
1398 | /* Skip a \r character, but only before a \n. */ | |
4a45905b | 1399 | int c1 = fgetc (stream.get ()); |
8b93c638 JM |
1400 | |
1401 | if (c1 != '\n') | |
1402 | printf_filtered ("^%c", c + 0100); | |
1403 | if (c1 != EOF) | |
4a45905b | 1404 | ungetc (c1, stream.get ()); |
8b93c638 | 1405 | } |
8b93c638 JM |
1406 | else |
1407 | { | |
08850b56 | 1408 | xsnprintf (buf, sizeof (buf), "%c", c); |
112e8700 | 1409 | uiout->text (buf); |
8b93c638 JM |
1410 | } |
1411 | } | |
4a45905b | 1412 | while (c != '\n' && (c = fgetc (stream.get ())) >= 0); |
c906108c | 1413 | } |
c906108c SS |
1414 | } |
1415 | \f | |
1416 | /* Show source lines from the file of symtab S, starting with line | |
f132ba9d | 1417 | number LINE and stopping before line number STOPLINE. If this is |
c906108c | 1418 | not the command line version, then the source is shown in the source |
c378eb4e | 1419 | window otherwise it is simply printed. */ |
c906108c | 1420 | |
c5aa993b | 1421 | void |
dfaae886 | 1422 | print_source_lines (struct symtab *s, int line, int stopline, |
8d297bbf | 1423 | print_source_lines_flags flags) |
c906108c | 1424 | { |
dfaae886 | 1425 | print_source_lines_base (s, line, stopline, flags); |
c906108c SS |
1426 | } |
1427 | \f | |
c906108c SS |
1428 | /* Print info on range of pc's in a specified line. */ |
1429 | ||
1430 | static void | |
1d12d88f | 1431 | info_line_command (const char *arg, int from_tty) |
c906108c | 1432 | { |
c906108c | 1433 | CORE_ADDR start_pc, end_pc; |
c906108c | 1434 | |
6c5b2ebe PA |
1435 | std::vector<symtab_and_line> decoded_sals; |
1436 | symtab_and_line curr_sal; | |
1437 | gdb::array_view<symtab_and_line> sals; | |
c906108c SS |
1438 | |
1439 | if (arg == 0) | |
1440 | { | |
6c5b2ebe PA |
1441 | curr_sal.symtab = current_source_symtab; |
1442 | curr_sal.pspace = current_program_space; | |
5166082f | 1443 | if (last_line_listed != 0) |
6c5b2ebe | 1444 | curr_sal.line = last_line_listed; |
5166082f | 1445 | else |
6c5b2ebe | 1446 | curr_sal.line = current_source_line; |
5166082f | 1447 | |
6c5b2ebe | 1448 | sals = curr_sal; |
c906108c SS |
1449 | } |
1450 | else | |
1451 | { | |
6c5b2ebe PA |
1452 | decoded_sals = decode_line_with_last_displayed (arg, |
1453 | DECODE_LINE_LIST_MODE); | |
1454 | sals = decoded_sals; | |
c5aa993b | 1455 | |
c906108c SS |
1456 | dont_repeat (); |
1457 | } | |
1458 | ||
1459 | /* C++ More than one line may have been specified, as when the user | |
c378eb4e | 1460 | specifies an overloaded function name. Print info on them all. */ |
6c5b2ebe | 1461 | for (const auto &sal : sals) |
c906108c | 1462 | { |
f8eba3c6 TT |
1463 | if (sal.pspace != current_program_space) |
1464 | continue; | |
c5aa993b | 1465 | |
c906108c SS |
1466 | if (sal.symtab == 0) |
1467 | { | |
5af949e3 UW |
1468 | struct gdbarch *gdbarch = get_current_arch (); |
1469 | ||
a3f17187 | 1470 | printf_filtered (_("No line number information available")); |
c906108c SS |
1471 | if (sal.pc != 0) |
1472 | { | |
1473 | /* This is useful for "info line *0x7f34". If we can't tell the | |
c5aa993b JM |
1474 | user about a source line, at least let them have the symbolic |
1475 | address. */ | |
c906108c SS |
1476 | printf_filtered (" for address "); |
1477 | wrap_here (" "); | |
5af949e3 | 1478 | print_address (gdbarch, sal.pc, gdb_stdout); |
c906108c SS |
1479 | } |
1480 | else | |
1481 | printf_filtered ("."); | |
1482 | printf_filtered ("\n"); | |
1483 | } | |
1484 | else if (sal.line > 0 | |
1485 | && find_line_pc_range (sal, &start_pc, &end_pc)) | |
1486 | { | |
eb822aa6 DE |
1487 | struct gdbarch *gdbarch |
1488 | = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab)); | |
5af949e3 | 1489 | |
c906108c SS |
1490 | if (start_pc == end_pc) |
1491 | { | |
1492 | printf_filtered ("Line %d of \"%s\"", | |
05cba821 JK |
1493 | sal.line, |
1494 | symtab_to_filename_for_display (sal.symtab)); | |
c906108c SS |
1495 | wrap_here (" "); |
1496 | printf_filtered (" is at address "); | |
5af949e3 | 1497 | print_address (gdbarch, start_pc, gdb_stdout); |
c906108c SS |
1498 | wrap_here (" "); |
1499 | printf_filtered (" but contains no code.\n"); | |
1500 | } | |
1501 | else | |
1502 | { | |
1503 | printf_filtered ("Line %d of \"%s\"", | |
05cba821 JK |
1504 | sal.line, |
1505 | symtab_to_filename_for_display (sal.symtab)); | |
c906108c SS |
1506 | wrap_here (" "); |
1507 | printf_filtered (" starts at address "); | |
5af949e3 | 1508 | print_address (gdbarch, start_pc, gdb_stdout); |
c906108c SS |
1509 | wrap_here (" "); |
1510 | printf_filtered (" and ends at "); | |
5af949e3 | 1511 | print_address (gdbarch, end_pc, gdb_stdout); |
c906108c SS |
1512 | printf_filtered (".\n"); |
1513 | } | |
1514 | ||
1515 | /* x/i should display this line's code. */ | |
5af949e3 | 1516 | set_next_address (gdbarch, start_pc); |
c906108c SS |
1517 | |
1518 | /* Repeating "info line" should do the following line. */ | |
1519 | last_line_listed = sal.line + 1; | |
1520 | ||
1521 | /* If this is the only line, show the source code. If it could | |
1522 | not find the file, don't do anything special. */ | |
6c5b2ebe | 1523 | if (annotation_level && sals.size () == 1) |
c906108c SS |
1524 | identify_source_line (sal.symtab, sal.line, 0, start_pc); |
1525 | } | |
1526 | else | |
1527 | /* Is there any case in which we get here, and have an address | |
1528 | which the user would want to see? If we have debugging symbols | |
1529 | and no line numbers? */ | |
a3f17187 | 1530 | printf_filtered (_("Line number %d is out of range for \"%s\".\n"), |
05cba821 | 1531 | sal.line, symtab_to_filename_for_display (sal.symtab)); |
c906108c | 1532 | } |
c906108c SS |
1533 | } |
1534 | \f | |
1535 | /* Commands to search the source file for a regexp. */ | |
1536 | ||
c906108c | 1537 | static void |
0b39b52e | 1538 | forward_search_command (const char *regex, int from_tty) |
c906108c | 1539 | { |
52f0bd74 | 1540 | int c; |
c906108c SS |
1541 | int line; |
1542 | char *msg; | |
1543 | ||
c906108c | 1544 | line = last_line_listed + 1; |
c906108c SS |
1545 | |
1546 | msg = (char *) re_comp (regex); | |
1547 | if (msg) | |
8a3fe4f8 | 1548 | error (("%s"), msg); |
c906108c SS |
1549 | |
1550 | if (current_source_symtab == 0) | |
1551 | select_source_symtab (0); | |
1552 | ||
77ad7394 TT |
1553 | scoped_fd desc (open_source_file (current_source_symtab)); |
1554 | if (desc.get () < 0) | |
05cba821 | 1555 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
c906108c SS |
1556 | |
1557 | if (current_source_symtab->line_charpos == 0) | |
77ad7394 | 1558 | find_source_lines (current_source_symtab, desc.get ()); |
c906108c SS |
1559 | |
1560 | if (line < 1 || line > current_source_symtab->nlines) | |
9fe4a216 | 1561 | error (_("Expression not found")); |
c906108c | 1562 | |
77ad7394 TT |
1563 | if (lseek (desc.get (), current_source_symtab->line_charpos[line - 1], 0) |
1564 | < 0) | |
05cba821 | 1565 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
c906108c | 1566 | |
77ad7394 | 1567 | gdb_file_up stream (fdopen (desc.release (), FDOPEN_MODE)); |
4a45905b | 1568 | clearerr (stream.get ()); |
c5aa993b JM |
1569 | while (1) |
1570 | { | |
1571 | static char *buf = NULL; | |
aa1ee363 | 1572 | char *p; |
c5aa993b JM |
1573 | int cursize, newsize; |
1574 | ||
1575 | cursize = 256; | |
224c3ddb | 1576 | buf = (char *) xmalloc (cursize); |
c5aa993b JM |
1577 | p = buf; |
1578 | ||
4a45905b | 1579 | c = fgetc (stream.get ()); |
c5aa993b JM |
1580 | if (c == EOF) |
1581 | break; | |
1582 | do | |
c906108c | 1583 | { |
c5aa993b JM |
1584 | *p++ = c; |
1585 | if (p - buf == cursize) | |
1586 | { | |
1587 | newsize = cursize + cursize / 2; | |
224c3ddb | 1588 | buf = (char *) xrealloc (buf, newsize); |
c5aa993b JM |
1589 | p = buf + cursize; |
1590 | cursize = newsize; | |
1591 | } | |
c906108c | 1592 | } |
4a45905b | 1593 | while (c != '\n' && (c = fgetc (stream.get ())) >= 0); |
c906108c | 1594 | |
7be570e7 JM |
1595 | /* Remove the \r, if any, at the end of the line, otherwise |
1596 | regular expressions that end with $ or \n won't work. */ | |
1597 | if (p - buf > 1 && p[-2] == '\r') | |
1598 | { | |
1599 | p--; | |
1600 | p[-1] = '\n'; | |
1601 | } | |
7be570e7 | 1602 | |
c378eb4e | 1603 | /* We now have a source line in buf, null terminate and match. */ |
c5aa993b JM |
1604 | *p = 0; |
1605 | if (re_exec (buf) > 0) | |
1606 | { | |
c378eb4e | 1607 | /* Match! */ |
c5aa993b | 1608 | print_source_lines (current_source_symtab, line, line + 1, 0); |
4fa62494 | 1609 | set_internalvar_integer (lookup_internalvar ("_"), line); |
325fac50 | 1610 | current_source_line = std::max (line - lines_to_list / 2, 1); |
c5aa993b JM |
1611 | return; |
1612 | } | |
1613 | line++; | |
1614 | } | |
c906108c | 1615 | |
a3f17187 | 1616 | printf_filtered (_("Expression not found\n")); |
c906108c SS |
1617 | } |
1618 | ||
c906108c | 1619 | static void |
0b39b52e | 1620 | reverse_search_command (const char *regex, int from_tty) |
c906108c | 1621 | { |
52f0bd74 | 1622 | int c; |
c906108c SS |
1623 | int line; |
1624 | char *msg; | |
063190b6 | 1625 | |
c906108c | 1626 | line = last_line_listed - 1; |
c906108c SS |
1627 | |
1628 | msg = (char *) re_comp (regex); | |
1629 | if (msg) | |
8a3fe4f8 | 1630 | error (("%s"), msg); |
c906108c SS |
1631 | |
1632 | if (current_source_symtab == 0) | |
1633 | select_source_symtab (0); | |
1634 | ||
77ad7394 TT |
1635 | scoped_fd desc (open_source_file (current_source_symtab)); |
1636 | if (desc.get () < 0) | |
05cba821 | 1637 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
c906108c SS |
1638 | |
1639 | if (current_source_symtab->line_charpos == 0) | |
77ad7394 | 1640 | find_source_lines (current_source_symtab, desc.get ()); |
c906108c SS |
1641 | |
1642 | if (line < 1 || line > current_source_symtab->nlines) | |
9fe4a216 | 1643 | error (_("Expression not found")); |
c906108c | 1644 | |
77ad7394 TT |
1645 | if (lseek (desc.get (), current_source_symtab->line_charpos[line - 1], 0) |
1646 | < 0) | |
05cba821 | 1647 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
c906108c | 1648 | |
77ad7394 | 1649 | gdb_file_up stream (fdopen (desc.release (), FDOPEN_MODE)); |
4a45905b | 1650 | clearerr (stream.get ()); |
c906108c SS |
1651 | while (line > 1) |
1652 | { | |
c378eb4e MS |
1653 | /* FIXME!!! We walk right off the end of buf if we get a long line!!! */ |
1654 | char buf[4096]; /* Should be reasonable??? */ | |
aa1ee363 | 1655 | char *p = buf; |
c906108c | 1656 | |
4a45905b | 1657 | c = fgetc (stream.get ()); |
c906108c SS |
1658 | if (c == EOF) |
1659 | break; | |
c5aa993b JM |
1660 | do |
1661 | { | |
1662 | *p++ = c; | |
1663 | } | |
4a45905b | 1664 | while (c != '\n' && (c = fgetc (stream.get ())) >= 0); |
c906108c | 1665 | |
7be570e7 JM |
1666 | /* Remove the \r, if any, at the end of the line, otherwise |
1667 | regular expressions that end with $ or \n won't work. */ | |
1668 | if (p - buf > 1 && p[-2] == '\r') | |
1669 | { | |
1670 | p--; | |
1671 | p[-1] = '\n'; | |
1672 | } | |
7be570e7 | 1673 | |
c906108c SS |
1674 | /* We now have a source line in buf; null terminate and match. */ |
1675 | *p = 0; | |
1676 | if (re_exec (buf) > 0) | |
1677 | { | |
c378eb4e | 1678 | /* Match! */ |
c5aa993b | 1679 | print_source_lines (current_source_symtab, line, line + 1, 0); |
4fa62494 | 1680 | set_internalvar_integer (lookup_internalvar ("_"), line); |
325fac50 | 1681 | current_source_line = std::max (line - lines_to_list / 2, 1); |
c906108c SS |
1682 | return; |
1683 | } | |
1684 | line--; | |
4a45905b TT |
1685 | if (fseek (stream.get (), |
1686 | current_source_symtab->line_charpos[line - 1], 0) < 0) | |
c906108c | 1687 | { |
05cba821 JK |
1688 | const char *filename; |
1689 | ||
05cba821 JK |
1690 | filename = symtab_to_filename_for_display (current_source_symtab); |
1691 | perror_with_name (filename); | |
c906108c SS |
1692 | } |
1693 | } | |
1694 | ||
a3f17187 | 1695 | printf_filtered (_("Expression not found\n")); |
c906108c SS |
1696 | return; |
1697 | } | |
2f61ca93 JB |
1698 | |
1699 | /* If the last character of PATH is a directory separator, then strip it. */ | |
1700 | ||
1701 | static void | |
1702 | strip_trailing_directory_separator (char *path) | |
1703 | { | |
1704 | const int last = strlen (path) - 1; | |
1705 | ||
1706 | if (last < 0) | |
1707 | return; /* No stripping is needed if PATH is the empty string. */ | |
1708 | ||
1709 | if (IS_DIR_SEPARATOR (path[last])) | |
1710 | path[last] = '\0'; | |
1711 | } | |
1712 | ||
1713 | /* Return the path substitution rule that matches FROM. | |
1714 | Return NULL if no rule matches. */ | |
1715 | ||
1716 | static struct substitute_path_rule * | |
1717 | find_substitute_path_rule (const char *from) | |
1718 | { | |
1719 | struct substitute_path_rule *rule = substitute_path_rules; | |
1720 | ||
1721 | while (rule != NULL) | |
1722 | { | |
1723 | if (FILENAME_CMP (rule->from, from) == 0) | |
1724 | return rule; | |
1725 | rule = rule->next; | |
1726 | } | |
1727 | ||
1728 | return NULL; | |
1729 | } | |
1730 | ||
1731 | /* Add a new substitute-path rule at the end of the current list of rules. | |
1732 | The new rule will replace FROM into TO. */ | |
1733 | ||
29b0e8a2 | 1734 | void |
2f61ca93 JB |
1735 | add_substitute_path_rule (char *from, char *to) |
1736 | { | |
1737 | struct substitute_path_rule *rule; | |
8d749320 | 1738 | struct substitute_path_rule *new_rule = XNEW (struct substitute_path_rule); |
2f61ca93 | 1739 | |
2f61ca93 JB |
1740 | new_rule->from = xstrdup (from); |
1741 | new_rule->to = xstrdup (to); | |
1742 | new_rule->next = NULL; | |
1743 | ||
1744 | /* If the list of rules are empty, then insert the new rule | |
1745 | at the head of the list. */ | |
1746 | ||
1747 | if (substitute_path_rules == NULL) | |
1748 | { | |
1749 | substitute_path_rules = new_rule; | |
1750 | return; | |
1751 | } | |
1752 | ||
1753 | /* Otherwise, skip to the last rule in our list and then append | |
1754 | the new rule. */ | |
1755 | ||
1756 | rule = substitute_path_rules; | |
1757 | while (rule->next != NULL) | |
1758 | rule = rule->next; | |
1759 | ||
1760 | rule->next = new_rule; | |
1761 | } | |
1762 | ||
1763 | /* Remove the given source path substitution rule from the current list | |
1764 | of rules. The memory allocated for that rule is also deallocated. */ | |
1765 | ||
1766 | static void | |
1767 | delete_substitute_path_rule (struct substitute_path_rule *rule) | |
1768 | { | |
1769 | if (rule == substitute_path_rules) | |
1770 | substitute_path_rules = rule->next; | |
1771 | else | |
1772 | { | |
1773 | struct substitute_path_rule *prev = substitute_path_rules; | |
1774 | ||
1775 | while (prev != NULL && prev->next != rule) | |
1776 | prev = prev->next; | |
1777 | ||
1778 | gdb_assert (prev != NULL); | |
1779 | ||
1780 | prev->next = rule->next; | |
1781 | } | |
1782 | ||
1783 | xfree (rule->from); | |
1784 | xfree (rule->to); | |
1785 | xfree (rule); | |
1786 | } | |
1787 | ||
1788 | /* Implement the "show substitute-path" command. */ | |
1789 | ||
1790 | static void | |
a0d65762 | 1791 | show_substitute_path_command (const char *args, int from_tty) |
2f61ca93 JB |
1792 | { |
1793 | struct substitute_path_rule *rule = substitute_path_rules; | |
2f61ca93 JB |
1794 | char *from = NULL; |
1795 | ||
773a1edc | 1796 | gdb_argv argv (args); |
2f61ca93 JB |
1797 | |
1798 | /* We expect zero or one argument. */ | |
1799 | ||
1800 | if (argv != NULL && argv[0] != NULL && argv[1] != NULL) | |
1801 | error (_("Too many arguments in command")); | |
1802 | ||
1803 | if (argv != NULL && argv[0] != NULL) | |
1804 | from = argv[0]; | |
1805 | ||
1806 | /* Print the substitution rules. */ | |
1807 | ||
1808 | if (from != NULL) | |
1809 | printf_filtered | |
1810 | (_("Source path substitution rule matching `%s':\n"), from); | |
1811 | else | |
1812 | printf_filtered (_("List of all source path substitution rules:\n")); | |
1813 | ||
1814 | while (rule != NULL) | |
1815 | { | |
1e2ccb61 | 1816 | if (from == NULL || substitute_path_rule_matches (rule, from) != 0) |
2f61ca93 JB |
1817 | printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to); |
1818 | rule = rule->next; | |
1819 | } | |
1820 | } | |
1821 | ||
1822 | /* Implement the "unset substitute-path" command. */ | |
1823 | ||
1824 | static void | |
a0d65762 | 1825 | unset_substitute_path_command (const char *args, int from_tty) |
2f61ca93 JB |
1826 | { |
1827 | struct substitute_path_rule *rule = substitute_path_rules; | |
773a1edc | 1828 | gdb_argv argv (args); |
2f61ca93 JB |
1829 | char *from = NULL; |
1830 | int rule_found = 0; | |
1831 | ||
1832 | /* This function takes either 0 or 1 argument. */ | |
1833 | ||
1834 | if (argv != NULL && argv[0] != NULL && argv[1] != NULL) | |
1835 | error (_("Incorrect usage, too many arguments in command")); | |
1836 | ||
1837 | if (argv != NULL && argv[0] != NULL) | |
1838 | from = argv[0]; | |
1839 | ||
1840 | /* If the user asked for all the rules to be deleted, ask him | |
1841 | to confirm and give him a chance to abort before the action | |
1842 | is performed. */ | |
1843 | ||
1844 | if (from == NULL | |
1845 | && !query (_("Delete all source path substitution rules? "))) | |
1846 | error (_("Canceled")); | |
1847 | ||
1848 | /* Delete the rule matching the argument. No argument means that | |
1849 | all rules should be deleted. */ | |
1850 | ||
1851 | while (rule != NULL) | |
1852 | { | |
1853 | struct substitute_path_rule *next = rule->next; | |
1854 | ||
1855 | if (from == NULL || FILENAME_CMP (from, rule->from) == 0) | |
1856 | { | |
1857 | delete_substitute_path_rule (rule); | |
1858 | rule_found = 1; | |
1859 | } | |
1860 | ||
1861 | rule = next; | |
1862 | } | |
1863 | ||
1864 | /* If the user asked for a specific rule to be deleted but | |
1865 | we could not find it, then report an error. */ | |
1866 | ||
1867 | if (from != NULL && !rule_found) | |
1868 | error (_("No substitution rule defined for `%s'"), from); | |
c4e86dd4 DJ |
1869 | |
1870 | forget_cached_source_info (); | |
2f61ca93 JB |
1871 | } |
1872 | ||
1873 | /* Add a new source path substitution rule. */ | |
1874 | ||
1875 | static void | |
a0d65762 | 1876 | set_substitute_path_command (const char *args, int from_tty) |
2f61ca93 | 1877 | { |
2f61ca93 JB |
1878 | struct substitute_path_rule *rule; |
1879 | ||
773a1edc | 1880 | gdb_argv argv (args); |
2f61ca93 JB |
1881 | |
1882 | if (argv == NULL || argv[0] == NULL || argv [1] == NULL) | |
1883 | error (_("Incorrect usage, too few arguments in command")); | |
1884 | ||
1885 | if (argv[2] != NULL) | |
1886 | error (_("Incorrect usage, too many arguments in command")); | |
1887 | ||
1888 | if (*(argv[0]) == '\0') | |
1889 | error (_("First argument must be at least one character long")); | |
1890 | ||
1891 | /* Strip any trailing directory separator character in either FROM | |
1892 | or TO. The substitution rule already implicitly contains them. */ | |
1893 | strip_trailing_directory_separator (argv[0]); | |
1894 | strip_trailing_directory_separator (argv[1]); | |
1895 | ||
1896 | /* If a rule with the same "from" was previously defined, then | |
1897 | delete it. This new rule replaces it. */ | |
1898 | ||
1899 | rule = find_substitute_path_rule (argv[0]); | |
1900 | if (rule != NULL) | |
1901 | delete_substitute_path_rule (rule); | |
1902 | ||
1903 | /* Insert the new substitution rule. */ | |
1904 | ||
1905 | add_substitute_path_rule (argv[0], argv[1]); | |
c4e86dd4 | 1906 | forget_cached_source_info (); |
2f61ca93 JB |
1907 | } |
1908 | ||
c906108c SS |
1909 | \f |
1910 | void | |
fba45db2 | 1911 | _initialize_source (void) |
c906108c SS |
1912 | { |
1913 | struct cmd_list_element *c; | |
433759f7 | 1914 | |
c906108c SS |
1915 | current_source_symtab = 0; |
1916 | init_source_path (); | |
1917 | ||
1918 | /* The intention is to use POSIX Basic Regular Expressions. | |
1919 | Always use the GNU regex routine for consistency across all hosts. | |
1920 | Our current GNU regex.c does not have all the POSIX features, so this is | |
1921 | just an approximation. */ | |
1922 | re_set_syntax (RE_SYNTAX_GREP); | |
1923 | ||
1a966eab AC |
1924 | c = add_cmd ("directory", class_files, directory_command, _("\ |
1925 | Add directory DIR to beginning of search path for source files.\n\ | |
c906108c SS |
1926 | Forget cached info on source file locations and line positions.\n\ |
1927 | DIR can also be $cwd for the current working directory, or $cdir for the\n\ | |
1928 | directory in which the source file was compiled into object code.\n\ | |
1a966eab | 1929 | With no argument, reset the search path to $cdir:$cwd, the default."), |
c906108c SS |
1930 | &cmdlist); |
1931 | ||
1932 | if (dbx_commands) | |
c5aa993b | 1933 | add_com_alias ("use", "directory", class_files, 0); |
c906108c | 1934 | |
5ba2abeb | 1935 | set_cmd_completer (c, filename_completer); |
c906108c | 1936 | |
99e7ae30 DE |
1937 | add_setshow_optional_filename_cmd ("directories", |
1938 | class_files, | |
1939 | &source_path, | |
1940 | _("\ | |
1941 | Set the search path for finding source files."), | |
1942 | _("\ | |
1943 | Show the search path for finding source files."), | |
1944 | _("\ | |
c906108c | 1945 | $cwd in the path means the current working directory.\n\ |
99e7ae30 DE |
1946 | $cdir in the path means the compilation directory of the source file.\n\ |
1947 | GDB ensures the search path always ends with $cdir:$cwd by\n\ | |
1948 | appending these directories if necessary.\n\ | |
1949 | Setting the value to an empty string sets it to $cdir:$cwd, the default."), | |
1950 | set_directories_command, | |
1951 | show_directories_command, | |
1952 | &setlist, &showlist); | |
c906108c | 1953 | |
11db9430 | 1954 | add_info ("source", info_source_command, |
1bedd215 | 1955 | _("Information about the current source file.")); |
c906108c | 1956 | |
11db9430 | 1957 | add_info ("line", info_line_command, _("\ |
1bedd215 | 1958 | Core addresses of the code for a source line.\n\ |
c906108c SS |
1959 | Line can be specified as\n\ |
1960 | LINENUM, to list around that line in current file,\n\ | |
1961 | FILE:LINENUM, to list around that line in that file,\n\ | |
1962 | FUNCTION, to list around beginning of that function,\n\ | |
1963 | FILE:FUNCTION, to distinguish among like-named static functions.\n\ | |
c906108c SS |
1964 | Default is to describe the last source line that was listed.\n\n\ |
1965 | This sets the default address for \"x\" to the line's first instruction\n\ | |
1966 | so that \"x/i\" suffices to start examining the machine code.\n\ | |
1bedd215 | 1967 | The address is also stored as the value of \"$_\".")); |
c906108c | 1968 | |
1bedd215 AC |
1969 | add_com ("forward-search", class_files, forward_search_command, _("\ |
1970 | Search for regular expression (see regex(3)) from last line listed.\n\ | |
1971 | The matching line number is also stored as the value of \"$_\".")); | |
c906108c | 1972 | add_com_alias ("search", "forward-search", class_files, 0); |
1e96de83 | 1973 | add_com_alias ("fo", "forward-search", class_files, 1); |
c906108c | 1974 | |
1bedd215 AC |
1975 | add_com ("reverse-search", class_files, reverse_search_command, _("\ |
1976 | Search backward for regular expression (see regex(3)) from last line listed.\n\ | |
1977 | The matching line number is also stored as the value of \"$_\".")); | |
dd304d53 | 1978 | add_com_alias ("rev", "reverse-search", class_files, 1); |
c906108c | 1979 | |
7f7cc265 | 1980 | add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\ |
35096d9d | 1981 | Set number of source lines gdb will list by default."), _("\ |
f81d1120 PA |
1982 | Show number of source lines gdb will list by default."), _("\ |
1983 | Use this to choose how many source lines the \"list\" displays (unless\n\ | |
1984 | the \"list\" argument explicitly specifies some other number).\n\ | |
1985 | A value of \"unlimited\", or zero, means there's no limit."), | |
7f7cc265 PA |
1986 | NULL, |
1987 | show_lines_to_list, | |
1988 | &setlist, &showlist); | |
2f61ca93 JB |
1989 | |
1990 | add_cmd ("substitute-path", class_files, set_substitute_path_command, | |
1991 | _("\ | |
7ef2b397 JB |
1992 | Usage: set substitute-path FROM TO\n\ |
1993 | Add a substitution rule replacing FROM into TO in source file names.\n\ | |
1994 | If a substitution rule was previously set for FROM, the old rule\n\ | |
1995 | is replaced by the new one."), | |
1996 | &setlist); | |
2f61ca93 JB |
1997 | |
1998 | add_cmd ("substitute-path", class_files, unset_substitute_path_command, | |
1999 | _("\ | |
7ef2b397 JB |
2000 | Usage: unset substitute-path [FROM]\n\ |
2001 | Delete the rule for substituting FROM in source file names. If FROM\n\ | |
2002 | is not specified, all substituting rules are deleted.\n\ | |
2003 | If the debugger cannot find a rule for FROM, it will display a warning."), | |
2f61ca93 JB |
2004 | &unsetlist); |
2005 | ||
2006 | add_cmd ("substitute-path", class_files, show_substitute_path_command, | |
7ef2b397 JB |
2007 | _("\ |
2008 | Usage: show substitute-path [FROM]\n\ | |
2009 | Print the rule for substituting FROM in source file names. If FROM\n\ | |
2010 | is not specified, print all substitution rules."), | |
2f61ca93 | 2011 | &showlist); |
1b56eb55 JK |
2012 | |
2013 | add_setshow_enum_cmd ("filename-display", class_files, | |
2014 | filename_display_kind_names, | |
2015 | &filename_display_string, _("\ | |
2016 | Set how to display filenames."), _("\ | |
2017 | Show how to display filenames."), _("\ | |
2018 | filename-display can be:\n\ | |
2019 | basename - display only basename of a filename\n\ | |
2020 | relative - display a filename relative to the compilation directory\n\ | |
2021 | absolute - display an absolute filename\n\ | |
2022 | By default, relative filenames are displayed."), | |
2023 | NULL, | |
2024 | show_filename_display_string, | |
2025 | &setlist, &showlist); | |
2026 | ||
c906108c | 2027 | } |