]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Work with executable files, for GDB. |
4646aa9d AC |
2 | |
3 | Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, | |
4 | 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, | |
5 | Inc. | |
c906108c | 6 | |
c5aa993b | 7 | This file is part of GDB. |
c906108c | 8 | |
c5aa993b JM |
9 | This program is free software; you can redistribute it and/or modify |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 2 of the License, or | |
12 | (at your option) any later version. | |
c906108c | 13 | |
c5aa993b JM |
14 | This program is distributed in the hope that it will be useful, |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
c906108c | 18 | |
c5aa993b JM |
19 | You should have received a copy of the GNU General Public License |
20 | along with this program; if not, write to the Free Software | |
21 | Foundation, Inc., 59 Temple Place - Suite 330, | |
22 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
23 | |
24 | #include "defs.h" | |
25 | #include "frame.h" | |
26 | #include "inferior.h" | |
27 | #include "target.h" | |
28 | #include "gdbcmd.h" | |
29 | #include "language.h" | |
30 | #include "symfile.h" | |
31 | #include "objfiles.h" | |
c5f0f3d0 | 32 | #include "completer.h" |
fd0407d6 | 33 | #include "value.h" |
4646aa9d | 34 | #include "exec.h" |
c906108c | 35 | |
c906108c | 36 | #include <fcntl.h> |
dbda9972 | 37 | #include "readline/readline.h" |
c906108c SS |
38 | #include "gdb_string.h" |
39 | ||
40 | #include "gdbcore.h" | |
41 | ||
42 | #include <ctype.h> | |
43 | #include "gdb_stat.h" | |
44 | #ifndef O_BINARY | |
45 | #define O_BINARY 0 | |
46 | #endif | |
47 | ||
48 | #include "xcoffsolib.h" | |
49 | ||
a14ed312 | 50 | struct vmap *map_vmap (bfd *, bfd *); |
c906108c | 51 | |
9a4105ab | 52 | void (*deprecated_file_changed_hook) (char *); |
c906108c SS |
53 | |
54 | /* Prototypes for local functions */ | |
55 | ||
a14ed312 | 56 | static void exec_close (int); |
c906108c | 57 | |
a14ed312 | 58 | static void file_command (char *, int); |
c906108c | 59 | |
a14ed312 | 60 | static void set_section_command (char *, int); |
c906108c | 61 | |
a14ed312 | 62 | static void exec_files_info (struct target_ops *); |
c906108c | 63 | |
a14ed312 | 64 | static int ignore (CORE_ADDR, char *); |
c906108c | 65 | |
a14ed312 | 66 | static void init_exec_ops (void); |
c906108c | 67 | |
a14ed312 | 68 | void _initialize_exec (void); |
c906108c | 69 | |
c906108c SS |
70 | /* The target vector for executable files. */ |
71 | ||
72 | struct target_ops exec_ops; | |
73 | ||
74 | /* The Binary File Descriptor handle for the executable file. */ | |
75 | ||
76 | bfd *exec_bfd = NULL; | |
77 | ||
78 | /* Whether to open exec and core files read-only or read-write. */ | |
79 | ||
80 | int write_files = 0; | |
81 | ||
c906108c SS |
82 | struct vmap *vmap; |
83 | ||
1adeb98a FN |
84 | void |
85 | exec_open (char *args, int from_tty) | |
86 | { | |
87 | target_preopen (from_tty); | |
88 | exec_file_attach (args, from_tty); | |
89 | } | |
90 | ||
c906108c | 91 | static void |
fba45db2 | 92 | exec_close (int quitting) |
c906108c SS |
93 | { |
94 | int need_symtab_cleanup = 0; | |
95 | struct vmap *vp, *nxt; | |
c5aa993b JM |
96 | |
97 | for (nxt = vmap; nxt != NULL;) | |
c906108c SS |
98 | { |
99 | vp = nxt; | |
100 | nxt = vp->nxt; | |
101 | ||
102 | /* if there is an objfile associated with this bfd, | |
c5aa993b JM |
103 | free_objfile() will do proper cleanup of objfile *and* bfd. */ |
104 | ||
c906108c SS |
105 | if (vp->objfile) |
106 | { | |
107 | free_objfile (vp->objfile); | |
108 | need_symtab_cleanup = 1; | |
109 | } | |
110 | else if (vp->bfd != exec_bfd) | |
111 | /* FIXME-leak: We should be freeing vp->name too, I think. */ | |
112 | if (!bfd_close (vp->bfd)) | |
8a3fe4f8 | 113 | warning (_("cannot close \"%s\": %s"), |
c906108c SS |
114 | vp->name, bfd_errmsg (bfd_get_error ())); |
115 | ||
116 | /* FIXME: This routine is #if 0'd in symfile.c. What should we | |
c5aa993b JM |
117 | be doing here? Should we just free everything in |
118 | vp->objfile->symtabs? Should free_objfile do that? | |
119 | FIXME-as-well: free_objfile already free'd vp->name, so it isn't | |
120 | valid here. */ | |
c906108c | 121 | free_named_symtabs (vp->name); |
b8c9b27d | 122 | xfree (vp); |
c906108c SS |
123 | } |
124 | ||
125 | vmap = NULL; | |
126 | ||
127 | if (exec_bfd) | |
128 | { | |
129 | char *name = bfd_get_filename (exec_bfd); | |
130 | ||
131 | if (!bfd_close (exec_bfd)) | |
8a3fe4f8 | 132 | warning (_("cannot close \"%s\": %s"), |
c906108c | 133 | name, bfd_errmsg (bfd_get_error ())); |
b8c9b27d | 134 | xfree (name); |
c906108c SS |
135 | exec_bfd = NULL; |
136 | } | |
137 | ||
138 | if (exec_ops.to_sections) | |
139 | { | |
b8c9b27d | 140 | xfree (exec_ops.to_sections); |
c906108c SS |
141 | exec_ops.to_sections = NULL; |
142 | exec_ops.to_sections_end = NULL; | |
143 | } | |
144 | } | |
145 | ||
1adeb98a FN |
146 | void |
147 | exec_file_clear (int from_tty) | |
148 | { | |
149 | /* Remove exec file. */ | |
150 | unpush_target (&exec_ops); | |
151 | ||
152 | if (from_tty) | |
153 | printf_unfiltered ("No executable file now.\n"); | |
154 | } | |
155 | ||
c906108c SS |
156 | /* Process the first arg in ARGS as the new exec file. |
157 | ||
c5aa993b JM |
158 | This function is intended to be behave essentially the same |
159 | as exec_file_command, except that the latter will detect when | |
160 | a target is being debugged, and will ask the user whether it | |
161 | should be shut down first. (If the answer is "no", then the | |
162 | new file is ignored.) | |
c906108c | 163 | |
c5aa993b JM |
164 | This file is used by exec_file_command, to do the work of opening |
165 | and processing the exec file after any prompting has happened. | |
c906108c | 166 | |
c5aa993b JM |
167 | And, it is used by child_attach, when the attach command was |
168 | given a pid but not a exec pathname, and the attach command could | |
169 | figure out the pathname from the pid. (In this case, we shouldn't | |
170 | ask the user whether the current target should be shut down -- | |
1adeb98a FN |
171 | we're supplying the exec pathname late for good reason.) |
172 | ||
173 | ARGS is assumed to be the filename. */ | |
c906108c SS |
174 | |
175 | void | |
1adeb98a | 176 | exec_file_attach (char *filename, int from_tty) |
c906108c | 177 | { |
c906108c SS |
178 | /* Remove any previous exec file. */ |
179 | unpush_target (&exec_ops); | |
180 | ||
181 | /* Now open and digest the file the user requested, if any. */ | |
182 | ||
1adeb98a FN |
183 | if (!filename) |
184 | { | |
185 | if (from_tty) | |
186 | printf_unfiltered ("No executable file now.\n"); | |
187 | } | |
188 | else | |
c906108c SS |
189 | { |
190 | char *scratch_pathname; | |
191 | int scratch_chan; | |
c5aa993b | 192 | |
014d698b | 193 | scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, filename, |
c5aa993b | 194 | write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY, 0, |
c906108c | 195 | &scratch_pathname); |
cfc3008e | 196 | #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__) |
c906108c | 197 | if (scratch_chan < 0) |
c5aa993b JM |
198 | { |
199 | char *exename = alloca (strlen (filename) + 5); | |
200 | strcat (strcpy (exename, filename), ".exe"); | |
014d698b EZ |
201 | scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, exename, |
202 | write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY, 0, | |
203 | &scratch_pathname); | |
c5aa993b | 204 | } |
c906108c SS |
205 | #endif |
206 | if (scratch_chan < 0) | |
207 | perror_with_name (filename); | |
208 | exec_bfd = bfd_fdopenr (scratch_pathname, gnutarget, scratch_chan); | |
209 | ||
210 | if (!exec_bfd) | |
8a3fe4f8 | 211 | error (_("\"%s\": could not open as an executable file: %s"), |
c906108c SS |
212 | scratch_pathname, bfd_errmsg (bfd_get_error ())); |
213 | ||
214 | /* At this point, scratch_pathname and exec_bfd->name both point to the | |
c5aa993b JM |
215 | same malloc'd string. However exec_close() will attempt to free it |
216 | via the exec_bfd->name pointer, so we need to make another copy and | |
217 | leave exec_bfd as the new owner of the original copy. */ | |
c2d11a7d | 218 | scratch_pathname = xstrdup (scratch_pathname); |
b8c9b27d | 219 | make_cleanup (xfree, scratch_pathname); |
c5aa993b | 220 | |
c906108c SS |
221 | if (!bfd_check_format (exec_bfd, bfd_object)) |
222 | { | |
223 | /* Make sure to close exec_bfd, or else "run" might try to use | |
224 | it. */ | |
225 | exec_close (0); | |
8a3fe4f8 | 226 | error (_("\"%s\": not in executable format: %s"), |
c906108c SS |
227 | scratch_pathname, bfd_errmsg (bfd_get_error ())); |
228 | } | |
229 | ||
230 | /* FIXME - This should only be run for RS6000, but the ifdef is a poor | |
c5aa993b | 231 | way to accomplish. */ |
52d16ba8 | 232 | #ifdef DEPRECATED_IBM6000_TARGET |
c906108c SS |
233 | /* Setup initial vmap. */ |
234 | ||
235 | map_vmap (exec_bfd, 0); | |
236 | if (vmap == NULL) | |
237 | { | |
238 | /* Make sure to close exec_bfd, or else "run" might try to use | |
239 | it. */ | |
240 | exec_close (0); | |
8a3fe4f8 | 241 | error (_("\"%s\": can't find the file sections: %s"), |
c906108c SS |
242 | scratch_pathname, bfd_errmsg (bfd_get_error ())); |
243 | } | |
52d16ba8 | 244 | #endif /* DEPRECATED_IBM6000_TARGET */ |
c906108c SS |
245 | |
246 | if (build_section_table (exec_bfd, &exec_ops.to_sections, | |
c5aa993b | 247 | &exec_ops.to_sections_end)) |
c906108c SS |
248 | { |
249 | /* Make sure to close exec_bfd, or else "run" might try to use | |
250 | it. */ | |
251 | exec_close (0); | |
8a3fe4f8 | 252 | error (_("\"%s\": can't find the file sections: %s"), |
c906108c SS |
253 | scratch_pathname, bfd_errmsg (bfd_get_error ())); |
254 | } | |
255 | ||
b9fbf434 AC |
256 | #ifdef DEPRECATED_HPUX_TEXT_END |
257 | DEPRECATED_HPUX_TEXT_END (&exec_ops); | |
258 | #endif | |
c906108c SS |
259 | |
260 | validate_files (); | |
261 | ||
262 | set_gdbarch_from_file (exec_bfd); | |
263 | ||
264 | push_target (&exec_ops); | |
265 | ||
266 | /* Tell display code (if any) about the changed file name. */ | |
9a4105ab AC |
267 | if (deprecated_exec_file_display_hook) |
268 | (*deprecated_exec_file_display_hook) (filename); | |
c906108c | 269 | } |
ce7d4522 | 270 | bfd_cache_close_all (); |
c906108c SS |
271 | } |
272 | ||
273 | /* Process the first arg in ARGS as the new exec file. | |
274 | ||
c5aa993b JM |
275 | Note that we have to explicitly ignore additional args, since we can |
276 | be called from file_command(), which also calls symbol_file_command() | |
1adeb98a FN |
277 | which can take multiple args. |
278 | ||
279 | If ARGS is NULL, we just want to close the exec file. */ | |
c906108c | 280 | |
1adeb98a | 281 | static void |
fba45db2 | 282 | exec_file_command (char *args, int from_tty) |
c906108c | 283 | { |
1adeb98a FN |
284 | char **argv; |
285 | char *filename; | |
286 | ||
c906108c | 287 | target_preopen (from_tty); |
1adeb98a FN |
288 | |
289 | if (args) | |
290 | { | |
291 | /* Scan through the args and pick up the first non option arg | |
292 | as the filename. */ | |
293 | ||
294 | argv = buildargv (args); | |
295 | if (argv == NULL) | |
296 | nomem (0); | |
297 | ||
298 | make_cleanup_freeargv (argv); | |
299 | ||
300 | for (; (*argv != NULL) && (**argv == '-'); argv++) | |
301 | {; | |
302 | } | |
303 | if (*argv == NULL) | |
8a3fe4f8 | 304 | error (_("No executable file name was specified")); |
1adeb98a FN |
305 | |
306 | filename = tilde_expand (*argv); | |
307 | make_cleanup (xfree, filename); | |
308 | exec_file_attach (filename, from_tty); | |
309 | } | |
310 | else | |
311 | exec_file_attach (NULL, from_tty); | |
c906108c SS |
312 | } |
313 | ||
314 | /* Set both the exec file and the symbol file, in one command. | |
315 | What a novelty. Why did GDB go through four major releases before this | |
316 | command was added? */ | |
317 | ||
318 | static void | |
fba45db2 | 319 | file_command (char *arg, int from_tty) |
c906108c SS |
320 | { |
321 | /* FIXME, if we lose on reading the symbol file, we should revert | |
322 | the exec file, but that's rough. */ | |
323 | exec_file_command (arg, from_tty); | |
324 | symbol_file_command (arg, from_tty); | |
9a4105ab AC |
325 | if (deprecated_file_changed_hook) |
326 | deprecated_file_changed_hook (arg); | |
c906108c | 327 | } |
c906108c | 328 | \f |
c5aa993b | 329 | |
c906108c SS |
330 | /* Locate all mappable sections of a BFD file. |
331 | table_pp_char is a char * to get it through bfd_map_over_sections; | |
332 | we cast it back to its proper type. */ | |
333 | ||
334 | static void | |
7be0c536 AC |
335 | add_to_section_table (bfd *abfd, struct bfd_section *asect, |
336 | void *table_pp_char) | |
c906108c | 337 | { |
c5aa993b | 338 | struct section_table **table_pp = (struct section_table **) table_pp_char; |
c906108c SS |
339 | flagword aflag; |
340 | ||
341 | aflag = bfd_get_section_flags (abfd, asect); | |
342 | if (!(aflag & SEC_ALLOC)) | |
343 | return; | |
344 | if (0 == bfd_section_size (abfd, asect)) | |
345 | return; | |
346 | (*table_pp)->bfd = abfd; | |
347 | (*table_pp)->the_bfd_section = asect; | |
348 | (*table_pp)->addr = bfd_section_vma (abfd, asect); | |
349 | (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect); | |
350 | (*table_pp)++; | |
351 | } | |
352 | ||
353 | /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR. | |
354 | Returns 0 if OK, 1 on error. */ | |
355 | ||
356 | int | |
7be0c536 | 357 | build_section_table (struct bfd *some_bfd, struct section_table **start, |
fba45db2 | 358 | struct section_table **end) |
c906108c SS |
359 | { |
360 | unsigned count; | |
361 | ||
362 | count = bfd_count_sections (some_bfd); | |
363 | if (*start) | |
b8c9b27d | 364 | xfree (* start); |
c906108c SS |
365 | *start = (struct section_table *) xmalloc (count * sizeof (**start)); |
366 | *end = *start; | |
c5aa993b | 367 | bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end); |
c906108c | 368 | if (*end > *start + count) |
e2e0b3e5 | 369 | internal_error (__FILE__, __LINE__, _("failed internal consistency check")); |
c906108c SS |
370 | /* We could realloc the table, but it probably loses for most files. */ |
371 | return 0; | |
372 | } | |
373 | \f | |
374 | static void | |
7be0c536 | 375 | bfdsec_to_vmap (struct bfd *abfd, struct bfd_section *sect, void *arg3) |
c906108c SS |
376 | { |
377 | struct vmap_and_bfd *vmap_bfd = (struct vmap_and_bfd *) arg3; | |
378 | struct vmap *vp; | |
379 | ||
380 | vp = vmap_bfd->pvmap; | |
381 | ||
382 | if ((bfd_get_section_flags (abfd, sect) & SEC_LOAD) == 0) | |
383 | return; | |
384 | ||
cb137aa5 | 385 | if (DEPRECATED_STREQ (bfd_section_name (abfd, sect), ".text")) |
c906108c SS |
386 | { |
387 | vp->tstart = bfd_section_vma (abfd, sect); | |
388 | vp->tend = vp->tstart + bfd_section_size (abfd, sect); | |
389 | vp->tvma = bfd_section_vma (abfd, sect); | |
390 | vp->toffs = sect->filepos; | |
391 | } | |
cb137aa5 | 392 | else if (DEPRECATED_STREQ (bfd_section_name (abfd, sect), ".data")) |
c906108c SS |
393 | { |
394 | vp->dstart = bfd_section_vma (abfd, sect); | |
395 | vp->dend = vp->dstart + bfd_section_size (abfd, sect); | |
396 | vp->dvma = bfd_section_vma (abfd, sect); | |
397 | } | |
398 | /* Silently ignore other types of sections. (FIXME?) */ | |
399 | } | |
400 | ||
401 | /* Make a vmap for ABFD which might be a member of the archive ARCH. | |
402 | Return the new vmap. */ | |
403 | ||
404 | struct vmap * | |
fba45db2 | 405 | map_vmap (bfd *abfd, bfd *arch) |
c906108c SS |
406 | { |
407 | struct vmap_and_bfd vmap_bfd; | |
408 | struct vmap *vp, **vpp; | |
409 | ||
410 | vp = (struct vmap *) xmalloc (sizeof (*vp)); | |
411 | memset ((char *) vp, '\0', sizeof (*vp)); | |
412 | vp->nxt = 0; | |
413 | vp->bfd = abfd; | |
414 | vp->name = bfd_get_filename (arch ? arch : abfd); | |
415 | vp->member = arch ? bfd_get_filename (abfd) : ""; | |
c5aa993b | 416 | |
c906108c SS |
417 | vmap_bfd.pbfd = arch; |
418 | vmap_bfd.pvmap = vp; | |
419 | bfd_map_over_sections (abfd, bfdsec_to_vmap, &vmap_bfd); | |
420 | ||
421 | /* Find the end of the list and append. */ | |
422 | for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt) | |
423 | ; | |
424 | *vpp = vp; | |
425 | ||
426 | return vp; | |
427 | } | |
428 | \f | |
429 | /* Read or write the exec file. | |
430 | ||
431 | Args are address within a BFD file, address within gdb address-space, | |
432 | length, and a flag indicating whether to read or write. | |
433 | ||
434 | Result is a length: | |
435 | ||
c5aa993b JM |
436 | 0: We cannot handle this address and length. |
437 | > 0: We have handled N bytes starting at this address. | |
438 | (If N == length, we did it all.) We might be able | |
439 | to handle more bytes beyond this length, but no | |
440 | promises. | |
441 | < 0: We cannot handle this address, but if somebody | |
442 | else handles (-N) bytes, we can start from there. | |
c906108c | 443 | |
c5aa993b JM |
444 | The same routine is used to handle both core and exec files; |
445 | we just tail-call it with more arguments to select between them. */ | |
c906108c SS |
446 | |
447 | int | |
fba45db2 | 448 | xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write, |
29e57380 | 449 | struct mem_attrib *attrib, |
fba45db2 | 450 | struct target_ops *target) |
c906108c | 451 | { |
020cc13c | 452 | int res; |
c906108c SS |
453 | struct section_table *p; |
454 | CORE_ADDR nextsectaddr, memend; | |
88665544 | 455 | asection *section = NULL; |
c906108c SS |
456 | |
457 | if (len <= 0) | |
e2e0b3e5 | 458 | internal_error (__FILE__, __LINE__, _("failed internal consistency check")); |
c906108c SS |
459 | |
460 | if (overlay_debugging) | |
461 | { | |
462 | section = find_pc_overlay (memaddr); | |
463 | if (pc_in_unmapped_range (memaddr, section)) | |
464 | memaddr = overlay_mapped_address (memaddr, section); | |
465 | } | |
466 | ||
467 | memend = memaddr + len; | |
c906108c SS |
468 | nextsectaddr = memend; |
469 | ||
c906108c SS |
470 | for (p = target->to_sections; p < target->to_sections_end; p++) |
471 | { | |
472 | if (overlay_debugging && section && p->the_bfd_section && | |
473 | strcmp (section->name, p->the_bfd_section->name) != 0) | |
c5aa993b | 474 | continue; /* not the section we need */ |
c906108c | 475 | if (memaddr >= p->addr) |
3db26b01 JB |
476 | { |
477 | if (memend <= p->endaddr) | |
478 | { | |
479 | /* Entire transfer is within this section. */ | |
85302095 AC |
480 | if (write) |
481 | res = bfd_set_section_contents (p->bfd, p->the_bfd_section, | |
482 | myaddr, memaddr - p->addr, | |
483 | len); | |
484 | else | |
485 | res = bfd_get_section_contents (p->bfd, p->the_bfd_section, | |
486 | myaddr, memaddr - p->addr, | |
487 | len); | |
3db26b01 JB |
488 | return (res != 0) ? len : 0; |
489 | } | |
490 | else if (memaddr >= p->endaddr) | |
491 | { | |
492 | /* This section ends before the transfer starts. */ | |
493 | continue; | |
494 | } | |
495 | else | |
496 | { | |
497 | /* This section overlaps the transfer. Just do half. */ | |
498 | len = p->endaddr - memaddr; | |
85302095 AC |
499 | if (write) |
500 | res = bfd_set_section_contents (p->bfd, p->the_bfd_section, | |
501 | myaddr, memaddr - p->addr, | |
502 | len); | |
503 | else | |
504 | res = bfd_get_section_contents (p->bfd, p->the_bfd_section, | |
505 | myaddr, memaddr - p->addr, | |
506 | len); | |
3db26b01 JB |
507 | return (res != 0) ? len : 0; |
508 | } | |
509 | } | |
c906108c SS |
510 | else |
511 | nextsectaddr = min (nextsectaddr, p->addr); | |
512 | } | |
513 | ||
514 | if (nextsectaddr >= memend) | |
c5aa993b | 515 | return 0; /* We can't help */ |
c906108c | 516 | else |
c5aa993b | 517 | return -(nextsectaddr - memaddr); /* Next boundary where we can help */ |
c906108c | 518 | } |
c906108c | 519 | \f |
c5aa993b | 520 | |
c906108c | 521 | void |
fba45db2 | 522 | print_section_info (struct target_ops *t, bfd *abfd) |
c906108c SS |
523 | { |
524 | struct section_table *p; | |
bb599908 PH |
525 | /* FIXME: 16 is not wide enough when TARGET_ADDR_BIT > 64. */ |
526 | int wid = TARGET_ADDR_BIT <= 32 ? 8 : 16; | |
c906108c | 527 | |
c5aa993b | 528 | printf_filtered ("\t`%s', ", bfd_get_filename (abfd)); |
c906108c | 529 | wrap_here (" "); |
c5aa993b | 530 | printf_filtered ("file type %s.\n", bfd_get_target (abfd)); |
c906108c SS |
531 | if (abfd == exec_bfd) |
532 | { | |
533 | printf_filtered ("\tEntry point: "); | |
534 | print_address_numeric (bfd_get_start_address (abfd), 1, gdb_stdout); | |
535 | printf_filtered ("\n"); | |
536 | } | |
537 | for (p = t->to_sections; p < t->to_sections_end; p++) | |
538 | { | |
bb599908 PH |
539 | printf_filtered ("\t%s", hex_string_custom (p->addr, wid)); |
540 | printf_filtered (" - %s", hex_string_custom (p->endaddr, wid)); | |
bcf16802 KB |
541 | |
542 | /* FIXME: A format of "08l" is not wide enough for file offsets | |
543 | larger than 4GB. OTOH, making it "016l" isn't desirable either | |
544 | since most output will then be much wider than necessary. It | |
545 | may make sense to test the size of the file and choose the | |
546 | format string accordingly. */ | |
c906108c SS |
547 | if (info_verbose) |
548 | printf_filtered (" @ %s", | |
bb599908 | 549 | hex_string_custom (p->the_bfd_section->filepos, 8)); |
c906108c SS |
550 | printf_filtered (" is %s", bfd_section_name (p->bfd, p->the_bfd_section)); |
551 | if (p->bfd != abfd) | |
552 | { | |
553 | printf_filtered (" in %s", bfd_get_filename (p->bfd)); | |
554 | } | |
555 | printf_filtered ("\n"); | |
556 | } | |
557 | } | |
558 | ||
559 | static void | |
fba45db2 | 560 | exec_files_info (struct target_ops *t) |
c906108c SS |
561 | { |
562 | print_section_info (t, exec_bfd); | |
563 | ||
564 | if (vmap) | |
565 | { | |
566 | struct vmap *vp; | |
567 | ||
568 | printf_unfiltered ("\tMapping info for file `%s'.\n", vmap->name); | |
d4f3574e SS |
569 | printf_unfiltered ("\t %*s %*s %*s %*s %8.8s %s\n", |
570 | strlen_paddr (), "tstart", | |
571 | strlen_paddr (), "tend", | |
572 | strlen_paddr (), "dstart", | |
573 | strlen_paddr (), "dend", | |
574 | "section", | |
c5aa993b JM |
575 | "file(member)"); |
576 | ||
577 | for (vp = vmap; vp; vp = vp->nxt) | |
d4f3574e SS |
578 | printf_unfiltered ("\t0x%s 0x%s 0x%s 0x%s %s%s%s%s\n", |
579 | paddr (vp->tstart), | |
580 | paddr (vp->tend), | |
581 | paddr (vp->dstart), | |
582 | paddr (vp->dend), | |
583 | vp->name, | |
c5aa993b JM |
584 | *vp->member ? "(" : "", vp->member, |
585 | *vp->member ? ")" : ""); | |
c906108c SS |
586 | } |
587 | } | |
588 | ||
0f71a2f6 JM |
589 | /* msnyder 5/21/99: |
590 | exec_set_section_offsets sets the offsets of all the sections | |
591 | in the exec objfile. */ | |
592 | ||
593 | void | |
fba45db2 KB |
594 | exec_set_section_offsets (bfd_signed_vma text_off, bfd_signed_vma data_off, |
595 | bfd_signed_vma bss_off) | |
0f71a2f6 JM |
596 | { |
597 | struct section_table *sect; | |
c5aa993b JM |
598 | |
599 | for (sect = exec_ops.to_sections; | |
600 | sect < exec_ops.to_sections_end; | |
0f71a2f6 JM |
601 | sect++) |
602 | { | |
603 | flagword flags; | |
604 | ||
605 | flags = bfd_get_section_flags (exec_bfd, sect->the_bfd_section); | |
606 | ||
607 | if (flags & SEC_CODE) | |
608 | { | |
c5aa993b | 609 | sect->addr += text_off; |
0f71a2f6 JM |
610 | sect->endaddr += text_off; |
611 | } | |
612 | else if (flags & (SEC_DATA | SEC_LOAD)) | |
613 | { | |
c5aa993b | 614 | sect->addr += data_off; |
0f71a2f6 JM |
615 | sect->endaddr += data_off; |
616 | } | |
617 | else if (flags & SEC_ALLOC) | |
618 | { | |
c5aa993b | 619 | sect->addr += bss_off; |
0f71a2f6 JM |
620 | sect->endaddr += bss_off; |
621 | } | |
622 | } | |
623 | } | |
624 | ||
c906108c | 625 | static void |
fba45db2 | 626 | set_section_command (char *args, int from_tty) |
c906108c SS |
627 | { |
628 | struct section_table *p; | |
629 | char *secname; | |
630 | unsigned seclen; | |
631 | unsigned long secaddr; | |
632 | char secprint[100]; | |
633 | long offset; | |
634 | ||
635 | if (args == 0) | |
8a3fe4f8 | 636 | error (_("Must specify section name and its virtual address")); |
c906108c SS |
637 | |
638 | /* Parse out section name */ | |
c5aa993b | 639 | for (secname = args; !isspace (*args); args++); |
c906108c SS |
640 | seclen = args - secname; |
641 | ||
642 | /* Parse out new virtual address */ | |
643 | secaddr = parse_and_eval_address (args); | |
644 | ||
c5aa993b JM |
645 | for (p = exec_ops.to_sections; p < exec_ops.to_sections_end; p++) |
646 | { | |
647 | if (!strncmp (secname, bfd_section_name (exec_bfd, p->the_bfd_section), seclen) | |
648 | && bfd_section_name (exec_bfd, p->the_bfd_section)[seclen] == '\0') | |
649 | { | |
650 | offset = secaddr - p->addr; | |
651 | p->addr += offset; | |
652 | p->endaddr += offset; | |
653 | if (from_tty) | |
654 | exec_files_info (&exec_ops); | |
655 | return; | |
656 | } | |
c906108c | 657 | } |
c906108c SS |
658 | if (seclen >= sizeof (secprint)) |
659 | seclen = sizeof (secprint) - 1; | |
660 | strncpy (secprint, secname, seclen); | |
661 | secprint[seclen] = '\0'; | |
8a3fe4f8 | 662 | error (_("Section %s not found"), secprint); |
c906108c SS |
663 | } |
664 | ||
665 | /* If mourn is being called in all the right places, this could be say | |
666 | `gdb internal error' (since generic_mourn calls | |
667 | breakpoint_init_inferior). */ | |
668 | ||
669 | static int | |
fba45db2 | 670 | ignore (CORE_ADDR addr, char *contents) |
c906108c SS |
671 | { |
672 | return 0; | |
673 | } | |
674 | ||
be4d1333 MS |
675 | /* Find mapped memory. */ |
676 | ||
677 | extern void | |
678 | exec_set_find_memory_regions (int (*func) (int (*) (CORE_ADDR, | |
679 | unsigned long, | |
680 | int, int, int, | |
681 | void *), | |
682 | void *)) | |
683 | { | |
684 | exec_ops.to_find_memory_regions = func; | |
685 | } | |
686 | ||
687 | static char *exec_make_note_section (bfd *, int *); | |
688 | ||
c906108c SS |
689 | /* Fill in the exec file target vector. Very few entries need to be |
690 | defined. */ | |
691 | ||
be4d1333 | 692 | static void |
fba45db2 | 693 | init_exec_ops (void) |
c906108c SS |
694 | { |
695 | exec_ops.to_shortname = "exec"; | |
696 | exec_ops.to_longname = "Local exec file"; | |
697 | exec_ops.to_doc = "Use an executable file as a target.\n\ | |
698 | Specify the filename of the executable file."; | |
1adeb98a | 699 | exec_ops.to_open = exec_open; |
c906108c SS |
700 | exec_ops.to_close = exec_close; |
701 | exec_ops.to_attach = find_default_attach; | |
c8e73a31 | 702 | exec_ops.deprecated_xfer_memory = xfer_memory; |
c906108c SS |
703 | exec_ops.to_files_info = exec_files_info; |
704 | exec_ops.to_insert_breakpoint = ignore; | |
705 | exec_ops.to_remove_breakpoint = ignore; | |
706 | exec_ops.to_create_inferior = find_default_create_inferior; | |
c906108c SS |
707 | exec_ops.to_stratum = file_stratum; |
708 | exec_ops.to_has_memory = 1; | |
be4d1333 | 709 | exec_ops.to_make_corefile_notes = exec_make_note_section; |
c5aa993b | 710 | exec_ops.to_magic = OPS_MAGIC; |
c906108c SS |
711 | } |
712 | ||
713 | void | |
fba45db2 | 714 | _initialize_exec (void) |
c906108c SS |
715 | { |
716 | struct cmd_list_element *c; | |
717 | ||
718 | init_exec_ops (); | |
719 | ||
720 | if (!dbx_commands) | |
721 | { | |
722 | c = add_cmd ("file", class_files, file_command, | |
723 | "Use FILE as program to be debugged.\n\ | |
724 | It is read for its symbols, for getting the contents of pure memory,\n\ | |
725 | and it is the program executed when you use the `run' command.\n\ | |
726 | If FILE cannot be found as specified, your execution directory path\n\ | |
727 | ($PATH) is searched for a command of that name.\n\ | |
728 | No arg means to have no executable file and no symbols.", &cmdlist); | |
5ba2abeb | 729 | set_cmd_completer (c, filename_completer); |
c906108c SS |
730 | } |
731 | ||
732 | c = add_cmd ("exec-file", class_files, exec_file_command, | |
c5aa993b | 733 | "Use FILE as program for getting contents of pure memory.\n\ |
c906108c SS |
734 | If FILE cannot be found as specified, your execution directory path\n\ |
735 | is searched for a command of that name.\n\ | |
736 | No arg means have no executable file.", &cmdlist); | |
5ba2abeb | 737 | set_cmd_completer (c, filename_completer); |
c906108c SS |
738 | |
739 | add_com ("section", class_files, set_section_command, | |
c5aa993b | 740 | "Change the base address of section SECTION of the exec file to ADDR.\n\ |
c906108c SS |
741 | This can be used if the exec file does not contain section addresses,\n\ |
742 | (such as in the a.out format), or when the addresses specified in the\n\ | |
743 | file itself are wrong. Each section must be changed separately. The\n\ | |
744 | ``info files'' command lists all the sections and their addresses."); | |
745 | ||
cb1a6d5f | 746 | deprecated_add_show_from_set |
c5aa993b | 747 | (add_set_cmd ("write", class_support, var_boolean, (char *) &write_files, |
c906108c SS |
748 | "Set writing into executable and core files.", |
749 | &setlist), | |
750 | &showlist); | |
c5aa993b | 751 | |
c906108c SS |
752 | add_target (&exec_ops); |
753 | } | |
be4d1333 MS |
754 | |
755 | static char * | |
756 | exec_make_note_section (bfd *obfd, int *note_size) | |
757 | { | |
8a3fe4f8 | 758 | error (_("Can't create a corefile")); |
be4d1333 | 759 | } |