Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Work with executable files, for GDB. |
4646aa9d | 2 | |
28e7fd62 | 3 | Copyright (C) 1988-2013 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b | 5 | This file is part of GDB. |
c906108c | 6 | |
c5aa993b JM |
7 | This program is free software; you can redistribute it and/or modify |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 10 | (at your option) any later version. |
c906108c | 11 | |
c5aa993b JM |
12 | This program is distributed in the hope that it will be useful, |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
c906108c | 16 | |
c5aa993b | 17 | You should have received a copy of the GNU General Public License |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
19 | |
20 | #include "defs.h" | |
21 | #include "frame.h" | |
22 | #include "inferior.h" | |
23 | #include "target.h" | |
24 | #include "gdbcmd.h" | |
25 | #include "language.h" | |
0ba1096a | 26 | #include "filenames.h" |
c906108c SS |
27 | #include "symfile.h" |
28 | #include "objfiles.h" | |
c5f0f3d0 | 29 | #include "completer.h" |
fd0407d6 | 30 | #include "value.h" |
4646aa9d | 31 | #include "exec.h" |
ea53e89f | 32 | #include "observer.h" |
dacec2a8 | 33 | #include "arch-utils.h" |
6c95b8df PA |
34 | #include "gdbthread.h" |
35 | #include "progspace.h" | |
cbb099e8 | 36 | #include "gdb_bfd.h" |
c906108c | 37 | |
c906108c | 38 | #include <fcntl.h> |
dbda9972 | 39 | #include "readline/readline.h" |
c906108c SS |
40 | #include "gdb_string.h" |
41 | ||
42 | #include "gdbcore.h" | |
43 | ||
44 | #include <ctype.h> | |
45 | #include "gdb_stat.h" | |
c906108c SS |
46 | |
47 | #include "xcoffsolib.h" | |
48 | ||
a14ed312 | 49 | struct vmap *map_vmap (bfd *, bfd *); |
c906108c | 50 | |
9a4105ab | 51 | void (*deprecated_file_changed_hook) (char *); |
c906108c SS |
52 | |
53 | /* Prototypes for local functions */ | |
54 | ||
a14ed312 | 55 | static void file_command (char *, int); |
c906108c | 56 | |
a14ed312 | 57 | static void set_section_command (char *, int); |
c906108c | 58 | |
a14ed312 | 59 | static void exec_files_info (struct target_ops *); |
c906108c | 60 | |
a14ed312 | 61 | static void init_exec_ops (void); |
c906108c | 62 | |
a14ed312 | 63 | void _initialize_exec (void); |
c906108c | 64 | |
c906108c SS |
65 | /* The target vector for executable files. */ |
66 | ||
67 | struct target_ops exec_ops; | |
68 | ||
6c95b8df PA |
69 | /* True if the exec target is pushed on the stack. */ |
70 | static int using_exec_ops; | |
07b82ea5 | 71 | |
c906108c SS |
72 | /* Whether to open exec and core files read-only or read-write. */ |
73 | ||
74 | int write_files = 0; | |
920d2a44 AC |
75 | static void |
76 | show_write_files (struct ui_file *file, int from_tty, | |
77 | struct cmd_list_element *c, const char *value) | |
78 | { | |
79 | fprintf_filtered (file, _("Writing into executable and core files is %s.\n"), | |
80 | value); | |
81 | } | |
82 | ||
c906108c | 83 | |
c906108c SS |
84 | struct vmap *vmap; |
85 | ||
4c42eaff | 86 | static void |
1adeb98a FN |
87 | exec_open (char *args, int from_tty) |
88 | { | |
89 | target_preopen (from_tty); | |
90 | exec_file_attach (args, from_tty); | |
91 | } | |
92 | ||
07b82ea5 PA |
93 | /* Close and clear exec_bfd. If we end up with no target sections to |
94 | read memory from, this unpushes the exec_ops target. */ | |
95 | ||
6c95b8df PA |
96 | void |
97 | exec_close (void) | |
07b82ea5 PA |
98 | { |
99 | if (exec_bfd) | |
100 | { | |
101 | bfd *abfd = exec_bfd; | |
07b82ea5 | 102 | |
cbb099e8 | 103 | gdb_bfd_unref (abfd); |
07b82ea5 PA |
104 | |
105 | /* Removing target sections may close the exec_ops target. | |
106 | Clear exec_bfd before doing so to prevent recursion. */ | |
107 | exec_bfd = NULL; | |
108 | exec_bfd_mtime = 0; | |
109 | ||
ed9eebaf | 110 | remove_target_sections (&exec_bfd, abfd); |
07b82ea5 PA |
111 | } |
112 | } | |
113 | ||
6c95b8df PA |
114 | /* This is the target_close implementation. Clears all target |
115 | sections and closes all executable bfds from all program spaces. */ | |
116 | ||
c906108c | 117 | static void |
6c95b8df | 118 | exec_close_1 (int quitting) |
c906108c SS |
119 | { |
120 | int need_symtab_cleanup = 0; | |
121 | struct vmap *vp, *nxt; | |
c5aa993b | 122 | |
6c95b8df PA |
123 | using_exec_ops = 0; |
124 | ||
c5aa993b | 125 | for (nxt = vmap; nxt != NULL;) |
c906108c SS |
126 | { |
127 | vp = nxt; | |
128 | nxt = vp->nxt; | |
129 | ||
c906108c SS |
130 | if (vp->objfile) |
131 | { | |
132 | free_objfile (vp->objfile); | |
133 | need_symtab_cleanup = 1; | |
134 | } | |
da1cc82f TT |
135 | |
136 | gdb_bfd_unref (vp->bfd); | |
c906108c | 137 | |
b8c9b27d | 138 | xfree (vp); |
c906108c SS |
139 | } |
140 | ||
141 | vmap = NULL; | |
142 | ||
6c95b8df PA |
143 | { |
144 | struct program_space *ss; | |
145 | struct cleanup *old_chain; | |
c906108c | 146 | |
6c95b8df PA |
147 | old_chain = save_current_program_space (); |
148 | ALL_PSPACES (ss) | |
149 | { | |
150 | set_current_program_space (ss); | |
151 | ||
152 | /* Delete all target sections. */ | |
153 | resize_section_table | |
154 | (current_target_sections, | |
155 | -resize_section_table (current_target_sections, 0)); | |
156 | ||
157 | exec_close (); | |
158 | } | |
159 | ||
160 | do_cleanups (old_chain); | |
161 | } | |
c906108c SS |
162 | } |
163 | ||
1adeb98a FN |
164 | void |
165 | exec_file_clear (int from_tty) | |
166 | { | |
167 | /* Remove exec file. */ | |
6c95b8df | 168 | exec_close (); |
1adeb98a FN |
169 | |
170 | if (from_tty) | |
a3f17187 | 171 | printf_unfiltered (_("No executable file now.\n")); |
1adeb98a FN |
172 | } |
173 | ||
907083d1 | 174 | /* Set FILENAME as the new exec file. |
c906108c | 175 | |
c5aa993b JM |
176 | This function is intended to be behave essentially the same |
177 | as exec_file_command, except that the latter will detect when | |
178 | a target is being debugged, and will ask the user whether it | |
179 | should be shut down first. (If the answer is "no", then the | |
180 | new file is ignored.) | |
c906108c | 181 | |
c5aa993b JM |
182 | This file is used by exec_file_command, to do the work of opening |
183 | and processing the exec file after any prompting has happened. | |
c906108c | 184 | |
c5aa993b JM |
185 | And, it is used by child_attach, when the attach command was |
186 | given a pid but not a exec pathname, and the attach command could | |
187 | figure out the pathname from the pid. (In this case, we shouldn't | |
188 | ask the user whether the current target should be shut down -- | |
907083d1 | 189 | we're supplying the exec pathname late for good reason.) */ |
c906108c SS |
190 | |
191 | void | |
1adeb98a | 192 | exec_file_attach (char *filename, int from_tty) |
c906108c | 193 | { |
c906108c | 194 | /* Remove any previous exec file. */ |
6c95b8df | 195 | exec_close (); |
c906108c SS |
196 | |
197 | /* Now open and digest the file the user requested, if any. */ | |
198 | ||
1adeb98a FN |
199 | if (!filename) |
200 | { | |
201 | if (from_tty) | |
a3f17187 | 202 | printf_unfiltered (_("No executable file now.\n")); |
7a107747 DJ |
203 | |
204 | set_gdbarch_from_file (NULL); | |
1adeb98a FN |
205 | } |
206 | else | |
c906108c | 207 | { |
f7545552 | 208 | struct cleanup *cleanups; |
c906108c SS |
209 | char *scratch_pathname; |
210 | int scratch_chan; | |
07b82ea5 | 211 | struct target_section *sections = NULL, *sections_end = NULL; |
d18b8b7a | 212 | char **matching; |
c5aa993b | 213 | |
014d698b | 214 | scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, filename, |
fbdebf46 | 215 | write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY, |
c906108c | 216 | &scratch_pathname); |
cfc3008e | 217 | #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__) |
c906108c | 218 | if (scratch_chan < 0) |
c5aa993b JM |
219 | { |
220 | char *exename = alloca (strlen (filename) + 5); | |
d7f9d729 | 221 | |
c5aa993b | 222 | strcat (strcpy (exename, filename), ".exe"); |
014d698b | 223 | scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, exename, |
fbdebf46 | 224 | write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY, |
014d698b | 225 | &scratch_pathname); |
c5aa993b | 226 | } |
c906108c | 227 | #endif |
17d6efc4 JB |
228 | if (scratch_chan < 0) |
229 | perror_with_name (filename); | |
a4453b7e TT |
230 | |
231 | cleanups = make_cleanup (xfree, scratch_pathname); | |
232 | ||
1c00ec6b TT |
233 | if (write_files) |
234 | exec_bfd = gdb_bfd_fopen (scratch_pathname, gnutarget, | |
235 | FOPEN_RUB, scratch_chan); | |
236 | else | |
237 | exec_bfd = gdb_bfd_open (scratch_pathname, gnutarget, scratch_chan); | |
c906108c SS |
238 | |
239 | if (!exec_bfd) | |
9fe4a216 | 240 | { |
9fe4a216 TT |
241 | error (_("\"%s\": could not open as an executable file: %s"), |
242 | scratch_pathname, bfd_errmsg (bfd_get_error ())); | |
243 | } | |
c906108c | 244 | |
d18b8b7a | 245 | if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching)) |
c906108c SS |
246 | { |
247 | /* Make sure to close exec_bfd, or else "run" might try to use | |
248 | it. */ | |
6c95b8df | 249 | exec_close (); |
8a3fe4f8 | 250 | error (_("\"%s\": not in executable format: %s"), |
d18b8b7a HZ |
251 | scratch_pathname, |
252 | gdb_bfd_errmsg (bfd_get_error (), matching)); | |
c906108c SS |
253 | } |
254 | ||
255 | /* FIXME - This should only be run for RS6000, but the ifdef is a poor | |
c5aa993b | 256 | way to accomplish. */ |
52d16ba8 | 257 | #ifdef DEPRECATED_IBM6000_TARGET |
0963b4bd | 258 | /* Setup initial vmap. */ |
c906108c SS |
259 | |
260 | map_vmap (exec_bfd, 0); | |
261 | if (vmap == NULL) | |
262 | { | |
263 | /* Make sure to close exec_bfd, or else "run" might try to use | |
264 | it. */ | |
6c95b8df | 265 | exec_close (); |
8a3fe4f8 | 266 | error (_("\"%s\": can't find the file sections: %s"), |
c906108c SS |
267 | scratch_pathname, bfd_errmsg (bfd_get_error ())); |
268 | } | |
52d16ba8 | 269 | #endif /* DEPRECATED_IBM6000_TARGET */ |
c906108c | 270 | |
07b82ea5 | 271 | if (build_section_table (exec_bfd, §ions, §ions_end)) |
c906108c SS |
272 | { |
273 | /* Make sure to close exec_bfd, or else "run" might try to use | |
274 | it. */ | |
6c95b8df | 275 | exec_close (); |
8a3fe4f8 | 276 | error (_("\"%s\": can't find the file sections: %s"), |
c906108c SS |
277 | scratch_pathname, bfd_errmsg (bfd_get_error ())); |
278 | } | |
279 | ||
c04ea773 DJ |
280 | exec_bfd_mtime = bfd_get_mtime (exec_bfd); |
281 | ||
c906108c SS |
282 | validate_files (); |
283 | ||
284 | set_gdbarch_from_file (exec_bfd); | |
285 | ||
07b82ea5 | 286 | /* Add the executable's sections to the current address spaces' |
6c95b8df PA |
287 | list of sections. This possibly pushes the exec_ops |
288 | target. */ | |
ed9eebaf | 289 | add_target_sections (&exec_bfd, sections, sections_end); |
07b82ea5 | 290 | xfree (sections); |
c906108c SS |
291 | |
292 | /* Tell display code (if any) about the changed file name. */ | |
9a4105ab AC |
293 | if (deprecated_exec_file_display_hook) |
294 | (*deprecated_exec_file_display_hook) (filename); | |
f7545552 TT |
295 | |
296 | do_cleanups (cleanups); | |
c906108c | 297 | } |
ce7d4522 | 298 | bfd_cache_close_all (); |
781b42b0 | 299 | observer_notify_executable_changed (); |
c906108c SS |
300 | } |
301 | ||
302 | /* Process the first arg in ARGS as the new exec file. | |
303 | ||
c5aa993b JM |
304 | Note that we have to explicitly ignore additional args, since we can |
305 | be called from file_command(), which also calls symbol_file_command() | |
1adeb98a FN |
306 | which can take multiple args. |
307 | ||
0963b4bd | 308 | If ARGS is NULL, we just want to close the exec file. */ |
c906108c | 309 | |
1adeb98a | 310 | static void |
fba45db2 | 311 | exec_file_command (char *args, int from_tty) |
c906108c | 312 | { |
1adeb98a FN |
313 | char **argv; |
314 | char *filename; | |
4c42eaff DJ |
315 | |
316 | if (from_tty && target_has_execution | |
317 | && !query (_("A program is being debugged already.\n" | |
318 | "Are you sure you want to change the file? "))) | |
319 | error (_("File not changed.")); | |
1adeb98a FN |
320 | |
321 | if (args) | |
322 | { | |
f7545552 TT |
323 | struct cleanup *cleanups; |
324 | ||
1adeb98a FN |
325 | /* Scan through the args and pick up the first non option arg |
326 | as the filename. */ | |
327 | ||
d1a41061 | 328 | argv = gdb_buildargv (args); |
f7545552 | 329 | cleanups = make_cleanup_freeargv (argv); |
1adeb98a FN |
330 | |
331 | for (; (*argv != NULL) && (**argv == '-'); argv++) | |
332 | {; | |
333 | } | |
334 | if (*argv == NULL) | |
8a3fe4f8 | 335 | error (_("No executable file name was specified")); |
1adeb98a FN |
336 | |
337 | filename = tilde_expand (*argv); | |
338 | make_cleanup (xfree, filename); | |
339 | exec_file_attach (filename, from_tty); | |
f7545552 TT |
340 | |
341 | do_cleanups (cleanups); | |
1adeb98a FN |
342 | } |
343 | else | |
344 | exec_file_attach (NULL, from_tty); | |
c906108c SS |
345 | } |
346 | ||
0963b4bd | 347 | /* Set both the exec file and the symbol file, in one command. |
c906108c SS |
348 | What a novelty. Why did GDB go through four major releases before this |
349 | command was added? */ | |
350 | ||
351 | static void | |
fba45db2 | 352 | file_command (char *arg, int from_tty) |
c906108c SS |
353 | { |
354 | /* FIXME, if we lose on reading the symbol file, we should revert | |
355 | the exec file, but that's rough. */ | |
356 | exec_file_command (arg, from_tty); | |
357 | symbol_file_command (arg, from_tty); | |
9a4105ab AC |
358 | if (deprecated_file_changed_hook) |
359 | deprecated_file_changed_hook (arg); | |
c906108c | 360 | } |
c906108c | 361 | \f |
c5aa993b | 362 | |
0963b4bd | 363 | /* Locate all mappable sections of a BFD file. |
c906108c SS |
364 | table_pp_char is a char * to get it through bfd_map_over_sections; |
365 | we cast it back to its proper type. */ | |
366 | ||
367 | static void | |
7be0c536 AC |
368 | add_to_section_table (bfd *abfd, struct bfd_section *asect, |
369 | void *table_pp_char) | |
c906108c | 370 | { |
0542c86d | 371 | struct target_section **table_pp = (struct target_section **) table_pp_char; |
c906108c SS |
372 | flagword aflag; |
373 | ||
0f5d55d8 JB |
374 | /* Check the section flags, but do not discard zero-length sections, since |
375 | some symbols may still be attached to this section. For instance, we | |
376 | encountered on sparc-solaris 2.10 a shared library with an empty .bss | |
377 | section to which a symbol named "_end" was attached. The address | |
378 | of this symbol still needs to be relocated. */ | |
c906108c SS |
379 | aflag = bfd_get_section_flags (abfd, asect); |
380 | if (!(aflag & SEC_ALLOC)) | |
381 | return; | |
0f5d55d8 | 382 | |
ed9eebaf | 383 | (*table_pp)->key = NULL; |
c906108c SS |
384 | (*table_pp)->bfd = abfd; |
385 | (*table_pp)->the_bfd_section = asect; | |
386 | (*table_pp)->addr = bfd_section_vma (abfd, asect); | |
387 | (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect); | |
388 | (*table_pp)++; | |
389 | } | |
390 | ||
07b82ea5 PA |
391 | int |
392 | resize_section_table (struct target_section_table *table, int num_added) | |
393 | { | |
394 | struct target_section *old_value; | |
395 | int old_count; | |
396 | int new_count; | |
397 | ||
398 | old_value = table->sections; | |
399 | old_count = table->sections_end - table->sections; | |
400 | ||
401 | new_count = num_added + old_count; | |
402 | ||
403 | if (new_count) | |
404 | { | |
405 | table->sections = xrealloc (table->sections, | |
406 | sizeof (struct target_section) * new_count); | |
407 | table->sections_end = table->sections + new_count; | |
408 | } | |
409 | else | |
410 | { | |
411 | xfree (table->sections); | |
412 | table->sections = table->sections_end = NULL; | |
413 | } | |
414 | ||
415 | return old_count; | |
416 | } | |
417 | ||
c906108c SS |
418 | /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR. |
419 | Returns 0 if OK, 1 on error. */ | |
420 | ||
421 | int | |
0542c86d PA |
422 | build_section_table (struct bfd *some_bfd, struct target_section **start, |
423 | struct target_section **end) | |
c906108c SS |
424 | { |
425 | unsigned count; | |
426 | ||
427 | count = bfd_count_sections (some_bfd); | |
428 | if (*start) | |
b8c9b27d | 429 | xfree (* start); |
0542c86d | 430 | *start = (struct target_section *) xmalloc (count * sizeof (**start)); |
c906108c | 431 | *end = *start; |
c5aa993b | 432 | bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end); |
c906108c | 433 | if (*end > *start + count) |
3e43a32a MS |
434 | internal_error (__FILE__, __LINE__, |
435 | _("failed internal consistency check")); | |
c906108c SS |
436 | /* We could realloc the table, but it probably loses for most files. */ |
437 | return 0; | |
438 | } | |
07b82ea5 PA |
439 | |
440 | /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the | |
441 | current set of target sections. */ | |
442 | ||
443 | void | |
ed9eebaf TT |
444 | add_target_sections (void *key, |
445 | struct target_section *sections, | |
07b82ea5 PA |
446 | struct target_section *sections_end) |
447 | { | |
448 | int count; | |
449 | struct target_section_table *table = current_target_sections; | |
450 | ||
451 | count = sections_end - sections; | |
452 | ||
453 | if (count > 0) | |
454 | { | |
455 | int space = resize_section_table (table, count); | |
ed9eebaf | 456 | int i; |
d7f9d729 | 457 | |
ed9eebaf TT |
458 | for (i = 0; i < count; ++i) |
459 | { | |
460 | table->sections[space + i] = sections[i]; | |
461 | table->sections[space + i].key = key; | |
462 | } | |
07b82ea5 PA |
463 | |
464 | /* If these are the first file sections we can provide memory | |
465 | from, push the file_stratum target. */ | |
6c95b8df PA |
466 | if (!using_exec_ops) |
467 | { | |
468 | using_exec_ops = 1; | |
469 | push_target (&exec_ops); | |
470 | } | |
07b82ea5 PA |
471 | } |
472 | } | |
473 | ||
474 | /* Remove all target sections taken from ABFD. */ | |
475 | ||
476 | void | |
ed9eebaf | 477 | remove_target_sections (void *key, bfd *abfd) |
07b82ea5 PA |
478 | { |
479 | struct target_section *src, *dest; | |
07b82ea5 PA |
480 | struct target_section_table *table = current_target_sections; |
481 | ||
482 | dest = table->sections; | |
483 | for (src = table->sections; src < table->sections_end; src++) | |
ed9eebaf | 484 | if (src->key != key || src->bfd != abfd) |
07b82ea5 PA |
485 | { |
486 | /* Keep this section. */ | |
487 | if (dest < src) | |
488 | *dest = *src; | |
489 | dest++; | |
490 | } | |
491 | ||
492 | /* If we've dropped any sections, resize the section table. */ | |
493 | if (dest < src) | |
494 | { | |
495 | int old_count; | |
496 | ||
497 | old_count = resize_section_table (table, dest - src); | |
498 | ||
499 | /* If we don't have any more sections to read memory from, | |
500 | remove the file_stratum target from the stack. */ | |
501 | if (old_count + (dest - src) == 0) | |
6c95b8df PA |
502 | { |
503 | struct program_space *pspace; | |
504 | ||
505 | ALL_PSPACES (pspace) | |
506 | if (pspace->target_sections.sections | |
507 | != pspace->target_sections.sections_end) | |
508 | return; | |
509 | ||
510 | unpush_target (&exec_ops); | |
511 | } | |
07b82ea5 PA |
512 | } |
513 | } | |
514 | ||
c906108c SS |
515 | \f |
516 | static void | |
7be0c536 | 517 | bfdsec_to_vmap (struct bfd *abfd, struct bfd_section *sect, void *arg3) |
c906108c SS |
518 | { |
519 | struct vmap_and_bfd *vmap_bfd = (struct vmap_and_bfd *) arg3; | |
520 | struct vmap *vp; | |
521 | ||
522 | vp = vmap_bfd->pvmap; | |
523 | ||
524 | if ((bfd_get_section_flags (abfd, sect) & SEC_LOAD) == 0) | |
525 | return; | |
526 | ||
dc6a2ca4 | 527 | if (strcmp (bfd_section_name (abfd, sect), ".text") == 0) |
c906108c SS |
528 | { |
529 | vp->tstart = bfd_section_vma (abfd, sect); | |
530 | vp->tend = vp->tstart + bfd_section_size (abfd, sect); | |
531 | vp->tvma = bfd_section_vma (abfd, sect); | |
532 | vp->toffs = sect->filepos; | |
533 | } | |
dc6a2ca4 | 534 | else if (strcmp (bfd_section_name (abfd, sect), ".data") == 0) |
c906108c SS |
535 | { |
536 | vp->dstart = bfd_section_vma (abfd, sect); | |
537 | vp->dend = vp->dstart + bfd_section_size (abfd, sect); | |
538 | vp->dvma = bfd_section_vma (abfd, sect); | |
539 | } | |
0963b4bd | 540 | /* Silently ignore other types of sections. (FIXME?) */ |
c906108c SS |
541 | } |
542 | ||
543 | /* Make a vmap for ABFD which might be a member of the archive ARCH. | |
544 | Return the new vmap. */ | |
545 | ||
546 | struct vmap * | |
fba45db2 | 547 | map_vmap (bfd *abfd, bfd *arch) |
c906108c SS |
548 | { |
549 | struct vmap_and_bfd vmap_bfd; | |
550 | struct vmap *vp, **vpp; | |
551 | ||
552 | vp = (struct vmap *) xmalloc (sizeof (*vp)); | |
553 | memset ((char *) vp, '\0', sizeof (*vp)); | |
554 | vp->nxt = 0; | |
555 | vp->bfd = abfd; | |
da1cc82f | 556 | gdb_bfd_ref (abfd); |
c906108c SS |
557 | vp->name = bfd_get_filename (arch ? arch : abfd); |
558 | vp->member = arch ? bfd_get_filename (abfd) : ""; | |
c5aa993b | 559 | |
c906108c SS |
560 | vmap_bfd.pbfd = arch; |
561 | vmap_bfd.pvmap = vp; | |
562 | bfd_map_over_sections (abfd, bfdsec_to_vmap, &vmap_bfd); | |
563 | ||
0963b4bd | 564 | /* Find the end of the list and append. */ |
c906108c SS |
565 | for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt) |
566 | ; | |
567 | *vpp = vp; | |
568 | ||
569 | return vp; | |
570 | } | |
571 | \f | |
348f8c02 | 572 | |
e6ca34fc PA |
573 | VEC(mem_range_s) * |
574 | section_table_available_memory (VEC(mem_range_s) *memory, | |
424447ee | 575 | CORE_ADDR memaddr, ULONGEST len, |
e6ca34fc PA |
576 | struct target_section *sections, |
577 | struct target_section *sections_end) | |
578 | { | |
579 | struct target_section *p; | |
e6ca34fc PA |
580 | |
581 | for (p = sections; p < sections_end; p++) | |
582 | { | |
583 | if ((bfd_get_section_flags (p->bfd, p->the_bfd_section) | |
584 | & SEC_READONLY) == 0) | |
585 | continue; | |
586 | ||
587 | /* Copy the meta-data, adjusted. */ | |
588 | if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len)) | |
589 | { | |
590 | ULONGEST lo1, hi1, lo2, hi2; | |
591 | struct mem_range *r; | |
592 | ||
593 | lo1 = memaddr; | |
594 | hi1 = memaddr + len; | |
595 | ||
596 | lo2 = p->addr; | |
597 | hi2 = p->endaddr; | |
598 | ||
599 | r = VEC_safe_push (mem_range_s, memory, NULL); | |
600 | ||
601 | r->start = max (lo1, lo2); | |
602 | r->length = min (hi1, hi2) - r->start; | |
603 | } | |
604 | } | |
605 | ||
606 | return memory; | |
607 | } | |
608 | ||
07b82ea5 PA |
609 | int |
610 | section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf, | |
611 | ULONGEST offset, LONGEST len, | |
612 | struct target_section *sections, | |
613 | struct target_section *sections_end, | |
614 | const char *section_name) | |
c906108c | 615 | { |
020cc13c | 616 | int res; |
0542c86d | 617 | struct target_section *p; |
07b82ea5 PA |
618 | ULONGEST memaddr = offset; |
619 | ULONGEST memend = memaddr + len; | |
c906108c SS |
620 | |
621 | if (len <= 0) | |
3e43a32a MS |
622 | internal_error (__FILE__, __LINE__, |
623 | _("failed internal consistency check")); | |
c906108c | 624 | |
348f8c02 | 625 | for (p = sections; p < sections_end; p++) |
c906108c | 626 | { |
348f8c02 | 627 | if (section_name && strcmp (section_name, p->the_bfd_section->name) != 0) |
0963b4bd | 628 | continue; /* not the section we need. */ |
c906108c | 629 | if (memaddr >= p->addr) |
3db26b01 JB |
630 | { |
631 | if (memend <= p->endaddr) | |
632 | { | |
633 | /* Entire transfer is within this section. */ | |
07b82ea5 | 634 | if (writebuf) |
85302095 | 635 | res = bfd_set_section_contents (p->bfd, p->the_bfd_section, |
07b82ea5 | 636 | writebuf, memaddr - p->addr, |
85302095 AC |
637 | len); |
638 | else | |
639 | res = bfd_get_section_contents (p->bfd, p->the_bfd_section, | |
07b82ea5 | 640 | readbuf, memaddr - p->addr, |
85302095 | 641 | len); |
3db26b01 JB |
642 | return (res != 0) ? len : 0; |
643 | } | |
644 | else if (memaddr >= p->endaddr) | |
645 | { | |
646 | /* This section ends before the transfer starts. */ | |
647 | continue; | |
648 | } | |
649 | else | |
650 | { | |
651 | /* This section overlaps the transfer. Just do half. */ | |
652 | len = p->endaddr - memaddr; | |
07b82ea5 | 653 | if (writebuf) |
85302095 | 654 | res = bfd_set_section_contents (p->bfd, p->the_bfd_section, |
07b82ea5 | 655 | writebuf, memaddr - p->addr, |
85302095 AC |
656 | len); |
657 | else | |
658 | res = bfd_get_section_contents (p->bfd, p->the_bfd_section, | |
07b82ea5 | 659 | readbuf, memaddr - p->addr, |
85302095 | 660 | len); |
3db26b01 JB |
661 | return (res != 0) ? len : 0; |
662 | } | |
663 | } | |
c906108c SS |
664 | } |
665 | ||
0963b4bd | 666 | return 0; /* We can't help. */ |
c906108c | 667 | } |
348f8c02 | 668 | |
70221824 | 669 | static struct target_section_table * |
07b82ea5 | 670 | exec_get_section_table (struct target_ops *ops) |
348f8c02 | 671 | { |
07b82ea5 | 672 | return current_target_sections; |
348f8c02 PA |
673 | } |
674 | ||
07b82ea5 PA |
675 | static LONGEST |
676 | exec_xfer_partial (struct target_ops *ops, enum target_object object, | |
677 | const char *annex, gdb_byte *readbuf, | |
678 | const gdb_byte *writebuf, | |
679 | ULONGEST offset, LONGEST len) | |
348f8c02 | 680 | { |
07b82ea5 PA |
681 | struct target_section_table *table = target_get_section_table (ops); |
682 | ||
683 | if (object == TARGET_OBJECT_MEMORY) | |
684 | return section_table_xfer_memory_partial (readbuf, writebuf, | |
685 | offset, len, | |
686 | table->sections, | |
687 | table->sections_end, | |
688 | NULL); | |
689 | else | |
690 | return -1; | |
348f8c02 | 691 | } |
c906108c | 692 | \f |
c5aa993b | 693 | |
c906108c | 694 | void |
07b82ea5 | 695 | print_section_info (struct target_section_table *t, bfd *abfd) |
c906108c | 696 | { |
5af949e3 | 697 | struct gdbarch *gdbarch = gdbarch_from_bfd (abfd); |
0542c86d | 698 | struct target_section *p; |
17a912b6 | 699 | /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */ |
5af949e3 | 700 | int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16; |
c906108c | 701 | |
c5aa993b | 702 | printf_filtered ("\t`%s', ", bfd_get_filename (abfd)); |
c906108c | 703 | wrap_here (" "); |
a3f17187 | 704 | printf_filtered (_("file type %s.\n"), bfd_get_target (abfd)); |
c906108c | 705 | if (abfd == exec_bfd) |
51bee8e9 | 706 | { |
3e43a32a MS |
707 | /* gcc-3.4 does not like the initialization in |
708 | <p == t->sections_end>. */ | |
d904de5b | 709 | bfd_vma displacement = 0; |
2f1bdd26 | 710 | bfd_vma entry_point; |
51bee8e9 JK |
711 | |
712 | for (p = t->sections; p < t->sections_end; p++) | |
713 | { | |
714 | asection *asect = p->the_bfd_section; | |
715 | ||
716 | if ((bfd_get_section_flags (abfd, asect) & (SEC_ALLOC | SEC_LOAD)) | |
717 | != (SEC_ALLOC | SEC_LOAD)) | |
718 | continue; | |
719 | ||
720 | if (bfd_get_section_vma (abfd, asect) <= abfd->start_address | |
721 | && abfd->start_address < (bfd_get_section_vma (abfd, asect) | |
722 | + bfd_get_section_size (asect))) | |
723 | { | |
724 | displacement = p->addr - bfd_get_section_vma (abfd, asect); | |
725 | break; | |
726 | } | |
727 | } | |
728 | if (p == t->sections_end) | |
b37520b6 | 729 | warning (_("Cannot find section for the entry point of %s."), |
d904de5b | 730 | bfd_get_filename (abfd)); |
51bee8e9 | 731 | |
2f1bdd26 MGD |
732 | entry_point = gdbarch_addr_bits_remove (gdbarch, |
733 | bfd_get_start_address (abfd) | |
734 | + displacement); | |
51bee8e9 | 735 | printf_filtered (_("\tEntry point: %s\n"), |
2f1bdd26 | 736 | paddress (gdbarch, entry_point)); |
51bee8e9 | 737 | } |
07b82ea5 | 738 | for (p = t->sections; p < t->sections_end; p++) |
c906108c | 739 | { |
bb599908 PH |
740 | printf_filtered ("\t%s", hex_string_custom (p->addr, wid)); |
741 | printf_filtered (" - %s", hex_string_custom (p->endaddr, wid)); | |
bcf16802 KB |
742 | |
743 | /* FIXME: A format of "08l" is not wide enough for file offsets | |
744 | larger than 4GB. OTOH, making it "016l" isn't desirable either | |
745 | since most output will then be much wider than necessary. It | |
746 | may make sense to test the size of the file and choose the | |
747 | format string accordingly. */ | |
a3f17187 | 748 | /* FIXME: i18n: Need to rewrite this sentence. */ |
c906108c SS |
749 | if (info_verbose) |
750 | printf_filtered (" @ %s", | |
bb599908 | 751 | hex_string_custom (p->the_bfd_section->filepos, 8)); |
3e43a32a MS |
752 | printf_filtered (" is %s", bfd_section_name (p->bfd, |
753 | p->the_bfd_section)); | |
c906108c | 754 | if (p->bfd != abfd) |
a3f17187 | 755 | printf_filtered (" in %s", bfd_get_filename (p->bfd)); |
c906108c SS |
756 | printf_filtered ("\n"); |
757 | } | |
758 | } | |
759 | ||
760 | static void | |
fba45db2 | 761 | exec_files_info (struct target_ops *t) |
c906108c | 762 | { |
57008375 JK |
763 | if (exec_bfd) |
764 | print_section_info (current_target_sections, exec_bfd); | |
765 | else | |
766 | puts_filtered (_("\t<no file loaded>\n")); | |
c906108c SS |
767 | |
768 | if (vmap) | |
769 | { | |
f5656ead | 770 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
c906108c SS |
771 | struct vmap *vp; |
772 | ||
a3f17187 | 773 | printf_unfiltered (_("\tMapping info for file `%s'.\n"), vmap->name); |
d4f3574e | 774 | printf_unfiltered ("\t %*s %*s %*s %*s %8.8s %s\n", |
5af949e3 UW |
775 | addr_size * 2, "tstart", |
776 | addr_size * 2, "tend", | |
777 | addr_size * 2, "dstart", | |
778 | addr_size * 2, "dend", | |
d4f3574e | 779 | "section", |
c5aa993b JM |
780 | "file(member)"); |
781 | ||
782 | for (vp = vmap; vp; vp = vp->nxt) | |
d4f3574e | 783 | printf_unfiltered ("\t0x%s 0x%s 0x%s 0x%s %s%s%s%s\n", |
5af949e3 UW |
784 | phex (vp->tstart, addr_size), |
785 | phex (vp->tend, addr_size), | |
786 | phex (vp->dstart, addr_size), | |
787 | phex (vp->dend, addr_size), | |
d4f3574e | 788 | vp->name, |
c5aa993b JM |
789 | *vp->member ? "(" : "", vp->member, |
790 | *vp->member ? ")" : ""); | |
c906108c SS |
791 | } |
792 | } | |
793 | ||
794 | static void | |
fba45db2 | 795 | set_section_command (char *args, int from_tty) |
c906108c | 796 | { |
0542c86d | 797 | struct target_section *p; |
c906108c SS |
798 | char *secname; |
799 | unsigned seclen; | |
800 | unsigned long secaddr; | |
801 | char secprint[100]; | |
802 | long offset; | |
07b82ea5 | 803 | struct target_section_table *table; |
c906108c SS |
804 | |
805 | if (args == 0) | |
8a3fe4f8 | 806 | error (_("Must specify section name and its virtual address")); |
c906108c | 807 | |
0963b4bd | 808 | /* Parse out section name. */ |
c5aa993b | 809 | for (secname = args; !isspace (*args); args++); |
c906108c SS |
810 | seclen = args - secname; |
811 | ||
0963b4bd | 812 | /* Parse out new virtual address. */ |
c906108c SS |
813 | secaddr = parse_and_eval_address (args); |
814 | ||
07b82ea5 PA |
815 | table = current_target_sections; |
816 | for (p = table->sections; p < table->sections_end; p++) | |
c5aa993b | 817 | { |
57008375 | 818 | if (!strncmp (secname, bfd_section_name (p->bfd, |
3e43a32a | 819 | p->the_bfd_section), seclen) |
57008375 | 820 | && bfd_section_name (p->bfd, p->the_bfd_section)[seclen] == '\0') |
c5aa993b JM |
821 | { |
822 | offset = secaddr - p->addr; | |
823 | p->addr += offset; | |
824 | p->endaddr += offset; | |
825 | if (from_tty) | |
826 | exec_files_info (&exec_ops); | |
827 | return; | |
828 | } | |
c906108c | 829 | } |
c906108c SS |
830 | if (seclen >= sizeof (secprint)) |
831 | seclen = sizeof (secprint) - 1; | |
832 | strncpy (secprint, secname, seclen); | |
833 | secprint[seclen] = '\0'; | |
8a3fe4f8 | 834 | error (_("Section %s not found"), secprint); |
c906108c SS |
835 | } |
836 | ||
30510692 DJ |
837 | /* If we can find a section in FILENAME with BFD index INDEX, adjust |
838 | it to ADDRESS. */ | |
c1bd25fd DJ |
839 | |
840 | void | |
841 | exec_set_section_address (const char *filename, int index, CORE_ADDR address) | |
842 | { | |
0542c86d | 843 | struct target_section *p; |
07b82ea5 | 844 | struct target_section_table *table; |
c1bd25fd | 845 | |
07b82ea5 PA |
846 | table = current_target_sections; |
847 | for (p = table->sections; p < table->sections_end; p++) | |
c1bd25fd | 848 | { |
0ba1096a | 849 | if (filename_cmp (filename, p->bfd->filename) == 0 |
30510692 | 850 | && index == p->the_bfd_section->index) |
c1bd25fd | 851 | { |
30510692 | 852 | p->endaddr += address - p->addr; |
c1bd25fd | 853 | p->addr = address; |
c1bd25fd DJ |
854 | } |
855 | } | |
856 | } | |
857 | ||
c906108c SS |
858 | /* If mourn is being called in all the right places, this could be say |
859 | `gdb internal error' (since generic_mourn calls | |
860 | breakpoint_init_inferior). */ | |
861 | ||
862 | static int | |
a6d9a66e | 863 | ignore (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt) |
c906108c SS |
864 | { |
865 | return 0; | |
866 | } | |
867 | ||
c35b1492 PA |
868 | static int |
869 | exec_has_memory (struct target_ops *ops) | |
870 | { | |
871 | /* We can provide memory if we have any file/target sections to read | |
872 | from. */ | |
873 | return (current_target_sections->sections | |
874 | != current_target_sections->sections_end); | |
875 | } | |
876 | ||
0963b4bd | 877 | /* Find mapped memory. */ |
be4d1333 MS |
878 | |
879 | extern void | |
b8edc417 | 880 | exec_set_find_memory_regions (int (*func) (find_memory_region_ftype, void *)) |
be4d1333 MS |
881 | { |
882 | exec_ops.to_find_memory_regions = func; | |
883 | } | |
884 | ||
885 | static char *exec_make_note_section (bfd *, int *); | |
886 | ||
c906108c SS |
887 | /* Fill in the exec file target vector. Very few entries need to be |
888 | defined. */ | |
889 | ||
be4d1333 | 890 | static void |
fba45db2 | 891 | init_exec_ops (void) |
c906108c SS |
892 | { |
893 | exec_ops.to_shortname = "exec"; | |
894 | exec_ops.to_longname = "Local exec file"; | |
895 | exec_ops.to_doc = "Use an executable file as a target.\n\ | |
896 | Specify the filename of the executable file."; | |
1adeb98a | 897 | exec_ops.to_open = exec_open; |
6c95b8df | 898 | exec_ops.to_close = exec_close_1; |
c906108c | 899 | exec_ops.to_attach = find_default_attach; |
07b82ea5 PA |
900 | exec_ops.to_xfer_partial = exec_xfer_partial; |
901 | exec_ops.to_get_section_table = exec_get_section_table; | |
c906108c SS |
902 | exec_ops.to_files_info = exec_files_info; |
903 | exec_ops.to_insert_breakpoint = ignore; | |
904 | exec_ops.to_remove_breakpoint = ignore; | |
905 | exec_ops.to_create_inferior = find_default_create_inferior; | |
c906108c | 906 | exec_ops.to_stratum = file_stratum; |
c35b1492 | 907 | exec_ops.to_has_memory = exec_has_memory; |
be4d1333 | 908 | exec_ops.to_make_corefile_notes = exec_make_note_section; |
c5aa993b | 909 | exec_ops.to_magic = OPS_MAGIC; |
c906108c SS |
910 | } |
911 | ||
912 | void | |
fba45db2 | 913 | _initialize_exec (void) |
c906108c SS |
914 | { |
915 | struct cmd_list_element *c; | |
916 | ||
917 | init_exec_ops (); | |
918 | ||
919 | if (!dbx_commands) | |
920 | { | |
1a966eab AC |
921 | c = add_cmd ("file", class_files, file_command, _("\ |
922 | Use FILE as program to be debugged.\n\ | |
c906108c SS |
923 | It is read for its symbols, for getting the contents of pure memory,\n\ |
924 | and it is the program executed when you use the `run' command.\n\ | |
925 | If FILE cannot be found as specified, your execution directory path\n\ | |
926 | ($PATH) is searched for a command of that name.\n\ | |
1a966eab | 927 | No arg means to have no executable file and no symbols."), &cmdlist); |
5ba2abeb | 928 | set_cmd_completer (c, filename_completer); |
c906108c SS |
929 | } |
930 | ||
1a966eab AC |
931 | c = add_cmd ("exec-file", class_files, exec_file_command, _("\ |
932 | Use FILE as program for getting contents of pure memory.\n\ | |
c906108c SS |
933 | If FILE cannot be found as specified, your execution directory path\n\ |
934 | is searched for a command of that name.\n\ | |
1a966eab | 935 | No arg means have no executable file."), &cmdlist); |
5ba2abeb | 936 | set_cmd_completer (c, filename_completer); |
c906108c | 937 | |
1bedd215 AC |
938 | add_com ("section", class_files, set_section_command, _("\ |
939 | Change the base address of section SECTION of the exec file to ADDR.\n\ | |
c906108c SS |
940 | This can be used if the exec file does not contain section addresses,\n\ |
941 | (such as in the a.out format), or when the addresses specified in the\n\ | |
942 | file itself are wrong. Each section must be changed separately. The\n\ | |
1bedd215 | 943 | ``info files'' command lists all the sections and their addresses.")); |
c906108c | 944 | |
5bf193a2 AC |
945 | add_setshow_boolean_cmd ("write", class_support, &write_files, _("\ |
946 | Set writing into executable and core files."), _("\ | |
947 | Show writing into executable and core files."), NULL, | |
948 | NULL, | |
920d2a44 | 949 | show_write_files, |
5bf193a2 | 950 | &setlist, &showlist); |
c5aa993b | 951 | |
c906108c SS |
952 | add_target (&exec_ops); |
953 | } | |
be4d1333 MS |
954 | |
955 | static char * | |
956 | exec_make_note_section (bfd *obfd, int *note_size) | |
957 | { | |
8a3fe4f8 | 958 | error (_("Can't create a corefile")); |
be4d1333 | 959 | } |