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