]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/exec.c
gas:
[thirdparty/binutils-gdb.git] / gdb / exec.c
CommitLineData
c906108c 1/* Work with executable files, for GDB.
4646aa9d 2
0b302171 3 Copyright (C) 1988-2003, 2007-2012 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"
c906108c 36
c906108c 37#include <fcntl.h>
dbda9972 38#include "readline/readline.h"
c906108c
SS
39#include "gdb_string.h"
40
41#include "gdbcore.h"
42
43#include <ctype.h>
44#include "gdb_stat.h"
c906108c
SS
45
46#include "xcoffsolib.h"
47
a14ed312 48struct vmap *map_vmap (bfd *, bfd *);
c906108c 49
9a4105ab 50void (*deprecated_file_changed_hook) (char *);
c906108c
SS
51
52/* Prototypes for local functions */
53
a14ed312 54static void file_command (char *, int);
c906108c 55
a14ed312 56static void set_section_command (char *, int);
c906108c 57
a14ed312 58static void exec_files_info (struct target_ops *);
c906108c 59
a14ed312 60static void init_exec_ops (void);
c906108c 61
a14ed312 62void _initialize_exec (void);
c906108c 63
c906108c
SS
64/* The target vector for executable files. */
65
66struct target_ops exec_ops;
67
6c95b8df
PA
68/* True if the exec target is pushed on the stack. */
69static int using_exec_ops;
07b82ea5 70
c906108c
SS
71/* Whether to open exec and core files read-only or read-write. */
72
73int write_files = 0;
920d2a44
AC
74static void
75show_write_files (struct ui_file *file, int from_tty,
76 struct cmd_list_element *c, const char *value)
77{
78 fprintf_filtered (file, _("Writing into executable and core files is %s.\n"),
79 value);
80}
81
c906108c 82
c906108c
SS
83struct vmap *vmap;
84
4c42eaff 85static void
1adeb98a
FN
86exec_open (char *args, int from_tty)
87{
88 target_preopen (from_tty);
89 exec_file_attach (args, from_tty);
90}
91
07b82ea5
PA
92/* Close and clear exec_bfd. If we end up with no target sections to
93 read memory from, this unpushes the exec_ops target. */
94
6c95b8df
PA
95void
96exec_close (void)
07b82ea5
PA
97{
98 if (exec_bfd)
99 {
100 bfd *abfd = exec_bfd;
101 char *name = bfd_get_filename (abfd);
102
516ba659 103 gdb_bfd_close_or_warn (abfd);
07b82ea5
PA
104 xfree (name);
105
106 /* Removing target sections may close the exec_ops target.
107 Clear exec_bfd before doing so to prevent recursion. */
108 exec_bfd = NULL;
109 exec_bfd_mtime = 0;
110
111 remove_target_sections (abfd);
112 }
113}
114
6c95b8df
PA
115/* This is the target_close implementation. Clears all target
116 sections and closes all executable bfds from all program spaces. */
117
c906108c 118static void
6c95b8df 119exec_close_1 (int quitting)
c906108c
SS
120{
121 int need_symtab_cleanup = 0;
122 struct vmap *vp, *nxt;
c5aa993b 123
6c95b8df
PA
124 using_exec_ops = 0;
125
c5aa993b 126 for (nxt = vmap; nxt != NULL;)
c906108c
SS
127 {
128 vp = nxt;
129 nxt = vp->nxt;
130
131 /* if there is an objfile associated with this bfd,
0963b4bd 132 free_objfile() will do proper cleanup of objfile *and* bfd. */
c5aa993b 133
c906108c
SS
134 if (vp->objfile)
135 {
136 free_objfile (vp->objfile);
137 need_symtab_cleanup = 1;
138 }
139 else if (vp->bfd != exec_bfd)
140 /* FIXME-leak: We should be freeing vp->name too, I think. */
516ba659 141 gdb_bfd_close_or_warn (vp->bfd);
c906108c 142
b8c9b27d 143 xfree (vp);
c906108c
SS
144 }
145
146 vmap = NULL;
147
6c95b8df
PA
148 {
149 struct program_space *ss;
150 struct cleanup *old_chain;
c906108c 151
6c95b8df
PA
152 old_chain = save_current_program_space ();
153 ALL_PSPACES (ss)
154 {
155 set_current_program_space (ss);
156
157 /* Delete all target sections. */
158 resize_section_table
159 (current_target_sections,
160 -resize_section_table (current_target_sections, 0));
161
162 exec_close ();
163 }
164
165 do_cleanups (old_chain);
166 }
c906108c
SS
167}
168
1adeb98a
FN
169void
170exec_file_clear (int from_tty)
171{
172 /* Remove exec file. */
6c95b8df 173 exec_close ();
1adeb98a
FN
174
175 if (from_tty)
a3f17187 176 printf_unfiltered (_("No executable file now.\n"));
1adeb98a
FN
177}
178
907083d1 179/* Set FILENAME as the new exec file.
c906108c 180
c5aa993b
JM
181 This function is intended to be behave essentially the same
182 as exec_file_command, except that the latter will detect when
183 a target is being debugged, and will ask the user whether it
184 should be shut down first. (If the answer is "no", then the
185 new file is ignored.)
c906108c 186
c5aa993b
JM
187 This file is used by exec_file_command, to do the work of opening
188 and processing the exec file after any prompting has happened.
c906108c 189
c5aa993b
JM
190 And, it is used by child_attach, when the attach command was
191 given a pid but not a exec pathname, and the attach command could
192 figure out the pathname from the pid. (In this case, we shouldn't
193 ask the user whether the current target should be shut down --
907083d1 194 we're supplying the exec pathname late for good reason.) */
c906108c
SS
195
196void
1adeb98a 197exec_file_attach (char *filename, int from_tty)
c906108c 198{
c906108c 199 /* Remove any previous exec file. */
6c95b8df 200 exec_close ();
c906108c
SS
201
202 /* Now open and digest the file the user requested, if any. */
203
1adeb98a
FN
204 if (!filename)
205 {
206 if (from_tty)
a3f17187 207 printf_unfiltered (_("No executable file now.\n"));
7a107747
DJ
208
209 set_gdbarch_from_file (NULL);
1adeb98a
FN
210 }
211 else
c906108c 212 {
f7545552 213 struct cleanup *cleanups;
c906108c
SS
214 char *scratch_pathname;
215 int scratch_chan;
07b82ea5 216 struct target_section *sections = NULL, *sections_end = NULL;
d18b8b7a 217 char **matching;
c5aa993b 218
014d698b 219 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, filename,
fbdebf46 220 write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
c906108c 221 &scratch_pathname);
cfc3008e 222#if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
c906108c 223 if (scratch_chan < 0)
c5aa993b
JM
224 {
225 char *exename = alloca (strlen (filename) + 5);
d7f9d729 226
c5aa993b 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
0963b4bd 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
0963b4bd 266 /* Setup initial vmap. */
c906108c
SS
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
0963b4bd 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
0963b4bd 355/* Set both the exec file and the symbol file, in one command.
c906108c
SS
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
0963b4bd 371/* Locate all mappable sections of a BFD file.
c906108c
SS
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)
3e43a32a
MS
441 internal_error (__FILE__, __LINE__,
442 _("failed internal consistency check"));
c906108c
SS
443 /* We could realloc the table, but it probably loses for most files. */
444 return 0;
445}
07b82ea5
PA
446
447/* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
448 current set of target sections. */
449
450void
451add_target_sections (struct target_section *sections,
452 struct target_section *sections_end)
453{
454 int count;
455 struct target_section_table *table = current_target_sections;
456
457 count = sections_end - sections;
458
459 if (count > 0)
460 {
461 int space = resize_section_table (table, count);
d7f9d729 462
07b82ea5
PA
463 memcpy (table->sections + space,
464 sections, count * sizeof (sections[0]));
465
466 /* If these are the first file sections we can provide memory
467 from, push the file_stratum target. */
6c95b8df
PA
468 if (!using_exec_ops)
469 {
470 using_exec_ops = 1;
471 push_target (&exec_ops);
472 }
07b82ea5
PA
473 }
474}
475
476/* Remove all target sections taken from ABFD. */
477
478void
479remove_target_sections (bfd *abfd)
480{
481 struct target_section *src, *dest;
07b82ea5
PA
482 struct target_section_table *table = current_target_sections;
483
484 dest = table->sections;
485 for (src = table->sections; src < table->sections_end; src++)
486 if (src->bfd != abfd)
487 {
488 /* Keep this section. */
489 if (dest < src)
490 *dest = *src;
491 dest++;
492 }
493
494 /* If we've dropped any sections, resize the section table. */
495 if (dest < src)
496 {
497 int old_count;
498
499 old_count = resize_section_table (table, dest - src);
500
501 /* If we don't have any more sections to read memory from,
502 remove the file_stratum target from the stack. */
503 if (old_count + (dest - src) == 0)
6c95b8df
PA
504 {
505 struct program_space *pspace;
506
507 ALL_PSPACES (pspace)
508 if (pspace->target_sections.sections
509 != pspace->target_sections.sections_end)
510 return;
511
512 unpush_target (&exec_ops);
513 }
07b82ea5
PA
514 }
515}
516
c906108c
SS
517\f
518static void
7be0c536 519bfdsec_to_vmap (struct bfd *abfd, struct bfd_section *sect, void *arg3)
c906108c
SS
520{
521 struct vmap_and_bfd *vmap_bfd = (struct vmap_and_bfd *) arg3;
522 struct vmap *vp;
523
524 vp = vmap_bfd->pvmap;
525
526 if ((bfd_get_section_flags (abfd, sect) & SEC_LOAD) == 0)
527 return;
528
dc6a2ca4 529 if (strcmp (bfd_section_name (abfd, sect), ".text") == 0)
c906108c
SS
530 {
531 vp->tstart = bfd_section_vma (abfd, sect);
532 vp->tend = vp->tstart + bfd_section_size (abfd, sect);
533 vp->tvma = bfd_section_vma (abfd, sect);
534 vp->toffs = sect->filepos;
535 }
dc6a2ca4 536 else if (strcmp (bfd_section_name (abfd, sect), ".data") == 0)
c906108c
SS
537 {
538 vp->dstart = bfd_section_vma (abfd, sect);
539 vp->dend = vp->dstart + bfd_section_size (abfd, sect);
540 vp->dvma = bfd_section_vma (abfd, sect);
541 }
0963b4bd 542 /* Silently ignore other types of sections. (FIXME?) */
c906108c
SS
543}
544
545/* Make a vmap for ABFD which might be a member of the archive ARCH.
546 Return the new vmap. */
547
548struct vmap *
fba45db2 549map_vmap (bfd *abfd, bfd *arch)
c906108c
SS
550{
551 struct vmap_and_bfd vmap_bfd;
552 struct vmap *vp, **vpp;
553
554 vp = (struct vmap *) xmalloc (sizeof (*vp));
555 memset ((char *) vp, '\0', sizeof (*vp));
556 vp->nxt = 0;
557 vp->bfd = abfd;
558 vp->name = bfd_get_filename (arch ? arch : abfd);
559 vp->member = arch ? bfd_get_filename (abfd) : "";
c5aa993b 560
c906108c
SS
561 vmap_bfd.pbfd = arch;
562 vmap_bfd.pvmap = vp;
563 bfd_map_over_sections (abfd, bfdsec_to_vmap, &vmap_bfd);
564
0963b4bd 565 /* Find the end of the list and append. */
c906108c
SS
566 for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt)
567 ;
568 *vpp = vp;
569
570 return vp;
571}
572\f
348f8c02 573
e6ca34fc
PA
574VEC(mem_range_s) *
575section_table_available_memory (VEC(mem_range_s) *memory,
424447ee 576 CORE_ADDR memaddr, ULONGEST len,
e6ca34fc
PA
577 struct target_section *sections,
578 struct target_section *sections_end)
579{
580 struct target_section *p;
e6ca34fc
PA
581
582 for (p = sections; p < sections_end; p++)
583 {
584 if ((bfd_get_section_flags (p->bfd, p->the_bfd_section)
585 & SEC_READONLY) == 0)
586 continue;
587
588 /* Copy the meta-data, adjusted. */
589 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
590 {
591 ULONGEST lo1, hi1, lo2, hi2;
592 struct mem_range *r;
593
594 lo1 = memaddr;
595 hi1 = memaddr + len;
596
597 lo2 = p->addr;
598 hi2 = p->endaddr;
599
600 r = VEC_safe_push (mem_range_s, memory, NULL);
601
602 r->start = max (lo1, lo2);
603 r->length = min (hi1, hi2) - r->start;
604 }
605 }
606
607 return memory;
608}
609
07b82ea5
PA
610int
611section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
612 ULONGEST offset, LONGEST len,
613 struct target_section *sections,
614 struct target_section *sections_end,
615 const char *section_name)
c906108c 616{
020cc13c 617 int res;
0542c86d 618 struct target_section *p;
07b82ea5
PA
619 ULONGEST memaddr = offset;
620 ULONGEST memend = memaddr + len;
c906108c
SS
621
622 if (len <= 0)
3e43a32a
MS
623 internal_error (__FILE__, __LINE__,
624 _("failed internal consistency check"));
c906108c 625
348f8c02 626 for (p = sections; p < sections_end; p++)
c906108c 627 {
348f8c02 628 if (section_name && strcmp (section_name, p->the_bfd_section->name) != 0)
0963b4bd 629 continue; /* not the section we need. */
c906108c 630 if (memaddr >= p->addr)
3db26b01
JB
631 {
632 if (memend <= p->endaddr)
633 {
634 /* Entire transfer is within this section. */
07b82ea5 635 if (writebuf)
85302095 636 res = bfd_set_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 637 writebuf, memaddr - p->addr,
85302095
AC
638 len);
639 else
640 res = bfd_get_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 641 readbuf, memaddr - p->addr,
85302095 642 len);
3db26b01
JB
643 return (res != 0) ? len : 0;
644 }
645 else if (memaddr >= p->endaddr)
646 {
647 /* This section ends before the transfer starts. */
648 continue;
649 }
650 else
651 {
652 /* This section overlaps the transfer. Just do half. */
653 len = p->endaddr - memaddr;
07b82ea5 654 if (writebuf)
85302095 655 res = bfd_set_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 656 writebuf, memaddr - p->addr,
85302095
AC
657 len);
658 else
659 res = bfd_get_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 660 readbuf, memaddr - p->addr,
85302095 661 len);
3db26b01
JB
662 return (res != 0) ? len : 0;
663 }
664 }
c906108c
SS
665 }
666
0963b4bd 667 return 0; /* We can't help. */
c906108c 668}
348f8c02 669
07b82ea5
PA
670struct target_section_table *
671exec_get_section_table (struct target_ops *ops)
348f8c02 672{
07b82ea5 673 return current_target_sections;
348f8c02
PA
674}
675
07b82ea5
PA
676static LONGEST
677exec_xfer_partial (struct target_ops *ops, enum target_object object,
678 const char *annex, gdb_byte *readbuf,
679 const gdb_byte *writebuf,
680 ULONGEST offset, LONGEST len)
348f8c02 681{
07b82ea5
PA
682 struct target_section_table *table = target_get_section_table (ops);
683
684 if (object == TARGET_OBJECT_MEMORY)
685 return section_table_xfer_memory_partial (readbuf, writebuf,
686 offset, len,
687 table->sections,
688 table->sections_end,
689 NULL);
690 else
691 return -1;
348f8c02 692}
c906108c 693\f
c5aa993b 694
c906108c 695void
07b82ea5 696print_section_info (struct target_section_table *t, bfd *abfd)
c906108c 697{
5af949e3 698 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
0542c86d 699 struct target_section *p;
17a912b6 700 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
5af949e3 701 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
c906108c 702
c5aa993b 703 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
c906108c 704 wrap_here (" ");
a3f17187 705 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
c906108c 706 if (abfd == exec_bfd)
51bee8e9 707 {
3e43a32a
MS
708 /* gcc-3.4 does not like the initialization in
709 <p == t->sections_end>. */
d904de5b 710 bfd_vma displacement = 0;
2f1bdd26 711 bfd_vma entry_point;
51bee8e9
JK
712
713 for (p = t->sections; p < t->sections_end; p++)
714 {
715 asection *asect = p->the_bfd_section;
716
717 if ((bfd_get_section_flags (abfd, asect) & (SEC_ALLOC | SEC_LOAD))
718 != (SEC_ALLOC | SEC_LOAD))
719 continue;
720
721 if (bfd_get_section_vma (abfd, asect) <= abfd->start_address
722 && abfd->start_address < (bfd_get_section_vma (abfd, asect)
723 + bfd_get_section_size (asect)))
724 {
725 displacement = p->addr - bfd_get_section_vma (abfd, asect);
726 break;
727 }
728 }
729 if (p == t->sections_end)
b37520b6 730 warning (_("Cannot find section for the entry point of %s."),
d904de5b 731 bfd_get_filename (abfd));
51bee8e9 732
2f1bdd26
MGD
733 entry_point = gdbarch_addr_bits_remove (gdbarch,
734 bfd_get_start_address (abfd)
735 + displacement);
51bee8e9 736 printf_filtered (_("\tEntry point: %s\n"),
2f1bdd26 737 paddress (gdbarch, entry_point));
51bee8e9 738 }
07b82ea5 739 for (p = t->sections; p < t->sections_end; p++)
c906108c 740 {
bb599908
PH
741 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
742 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
bcf16802
KB
743
744 /* FIXME: A format of "08l" is not wide enough for file offsets
745 larger than 4GB. OTOH, making it "016l" isn't desirable either
746 since most output will then be much wider than necessary. It
747 may make sense to test the size of the file and choose the
748 format string accordingly. */
a3f17187 749 /* FIXME: i18n: Need to rewrite this sentence. */
c906108c
SS
750 if (info_verbose)
751 printf_filtered (" @ %s",
bb599908 752 hex_string_custom (p->the_bfd_section->filepos, 8));
3e43a32a
MS
753 printf_filtered (" is %s", bfd_section_name (p->bfd,
754 p->the_bfd_section));
c906108c 755 if (p->bfd != abfd)
a3f17187 756 printf_filtered (" in %s", bfd_get_filename (p->bfd));
c906108c
SS
757 printf_filtered ("\n");
758 }
759}
760
761static void
fba45db2 762exec_files_info (struct target_ops *t)
c906108c 763{
07b82ea5 764 print_section_info (current_target_sections, exec_bfd);
c906108c
SS
765
766 if (vmap)
767 {
5af949e3 768 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
c906108c
SS
769 struct vmap *vp;
770
a3f17187 771 printf_unfiltered (_("\tMapping info for file `%s'.\n"), vmap->name);
d4f3574e 772 printf_unfiltered ("\t %*s %*s %*s %*s %8.8s %s\n",
5af949e3
UW
773 addr_size * 2, "tstart",
774 addr_size * 2, "tend",
775 addr_size * 2, "dstart",
776 addr_size * 2, "dend",
d4f3574e 777 "section",
c5aa993b
JM
778 "file(member)");
779
780 for (vp = vmap; vp; vp = vp->nxt)
d4f3574e 781 printf_unfiltered ("\t0x%s 0x%s 0x%s 0x%s %s%s%s%s\n",
5af949e3
UW
782 phex (vp->tstart, addr_size),
783 phex (vp->tend, addr_size),
784 phex (vp->dstart, addr_size),
785 phex (vp->dend, addr_size),
d4f3574e 786 vp->name,
c5aa993b
JM
787 *vp->member ? "(" : "", vp->member,
788 *vp->member ? ")" : "");
c906108c
SS
789 }
790}
791
792static void
fba45db2 793set_section_command (char *args, int from_tty)
c906108c 794{
0542c86d 795 struct target_section *p;
c906108c
SS
796 char *secname;
797 unsigned seclen;
798 unsigned long secaddr;
799 char secprint[100];
800 long offset;
07b82ea5 801 struct target_section_table *table;
c906108c
SS
802
803 if (args == 0)
8a3fe4f8 804 error (_("Must specify section name and its virtual address"));
c906108c 805
0963b4bd 806 /* Parse out section name. */
c5aa993b 807 for (secname = args; !isspace (*args); args++);
c906108c
SS
808 seclen = args - secname;
809
0963b4bd 810 /* Parse out new virtual address. */
c906108c
SS
811 secaddr = parse_and_eval_address (args);
812
07b82ea5
PA
813 table = current_target_sections;
814 for (p = table->sections; p < table->sections_end; p++)
c5aa993b 815 {
3e43a32a
MS
816 if (!strncmp (secname, bfd_section_name (exec_bfd,
817 p->the_bfd_section), seclen)
c5aa993b
JM
818 && bfd_section_name (exec_bfd, p->the_bfd_section)[seclen] == '\0')
819 {
820 offset = secaddr - p->addr;
821 p->addr += offset;
822 p->endaddr += offset;
823 if (from_tty)
824 exec_files_info (&exec_ops);
825 return;
826 }
c906108c 827 }
c906108c
SS
828 if (seclen >= sizeof (secprint))
829 seclen = sizeof (secprint) - 1;
830 strncpy (secprint, secname, seclen);
831 secprint[seclen] = '\0';
8a3fe4f8 832 error (_("Section %s not found"), secprint);
c906108c
SS
833}
834
30510692
DJ
835/* If we can find a section in FILENAME with BFD index INDEX, adjust
836 it to ADDRESS. */
c1bd25fd
DJ
837
838void
839exec_set_section_address (const char *filename, int index, CORE_ADDR address)
840{
0542c86d 841 struct target_section *p;
07b82ea5 842 struct target_section_table *table;
c1bd25fd 843
07b82ea5
PA
844 table = current_target_sections;
845 for (p = table->sections; p < table->sections_end; p++)
c1bd25fd 846 {
0ba1096a 847 if (filename_cmp (filename, p->bfd->filename) == 0
30510692 848 && index == p->the_bfd_section->index)
c1bd25fd 849 {
30510692 850 p->endaddr += address - p->addr;
c1bd25fd 851 p->addr = address;
c1bd25fd
DJ
852 }
853 }
854}
855
c906108c
SS
856/* If mourn is being called in all the right places, this could be say
857 `gdb internal error' (since generic_mourn calls
858 breakpoint_init_inferior). */
859
860static int
a6d9a66e 861ignore (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
c906108c
SS
862{
863 return 0;
864}
865
c35b1492
PA
866static int
867exec_has_memory (struct target_ops *ops)
868{
869 /* We can provide memory if we have any file/target sections to read
870 from. */
871 return (current_target_sections->sections
872 != current_target_sections->sections_end);
873}
874
0963b4bd 875/* Find mapped memory. */
be4d1333
MS
876
877extern void
b8edc417 878exec_set_find_memory_regions (int (*func) (find_memory_region_ftype, void *))
be4d1333
MS
879{
880 exec_ops.to_find_memory_regions = func;
881}
882
883static char *exec_make_note_section (bfd *, int *);
884
c906108c
SS
885/* Fill in the exec file target vector. Very few entries need to be
886 defined. */
887
be4d1333 888static void
fba45db2 889init_exec_ops (void)
c906108c
SS
890{
891 exec_ops.to_shortname = "exec";
892 exec_ops.to_longname = "Local exec file";
893 exec_ops.to_doc = "Use an executable file as a target.\n\
894Specify the filename of the executable file.";
1adeb98a 895 exec_ops.to_open = exec_open;
6c95b8df 896 exec_ops.to_close = exec_close_1;
c906108c 897 exec_ops.to_attach = find_default_attach;
07b82ea5
PA
898 exec_ops.to_xfer_partial = exec_xfer_partial;
899 exec_ops.to_get_section_table = exec_get_section_table;
c906108c
SS
900 exec_ops.to_files_info = exec_files_info;
901 exec_ops.to_insert_breakpoint = ignore;
902 exec_ops.to_remove_breakpoint = ignore;
903 exec_ops.to_create_inferior = find_default_create_inferior;
c906108c 904 exec_ops.to_stratum = file_stratum;
c35b1492 905 exec_ops.to_has_memory = exec_has_memory;
be4d1333 906 exec_ops.to_make_corefile_notes = exec_make_note_section;
c5aa993b 907 exec_ops.to_magic = OPS_MAGIC;
c906108c
SS
908}
909
910void
fba45db2 911_initialize_exec (void)
c906108c
SS
912{
913 struct cmd_list_element *c;
914
915 init_exec_ops ();
916
917 if (!dbx_commands)
918 {
1a966eab
AC
919 c = add_cmd ("file", class_files, file_command, _("\
920Use FILE as program to be debugged.\n\
c906108c
SS
921It is read for its symbols, for getting the contents of pure memory,\n\
922and it is the program executed when you use the `run' command.\n\
923If FILE cannot be found as specified, your execution directory path\n\
924($PATH) is searched for a command of that name.\n\
1a966eab 925No arg means to have no executable file and no symbols."), &cmdlist);
5ba2abeb 926 set_cmd_completer (c, filename_completer);
c906108c
SS
927 }
928
1a966eab
AC
929 c = add_cmd ("exec-file", class_files, exec_file_command, _("\
930Use FILE as program for getting contents of pure memory.\n\
c906108c
SS
931If FILE cannot be found as specified, your execution directory path\n\
932is searched for a command of that name.\n\
1a966eab 933No arg means have no executable file."), &cmdlist);
5ba2abeb 934 set_cmd_completer (c, filename_completer);
c906108c 935
1bedd215
AC
936 add_com ("section", class_files, set_section_command, _("\
937Change the base address of section SECTION of the exec file to ADDR.\n\
c906108c
SS
938This can be used if the exec file does not contain section addresses,\n\
939(such as in the a.out format), or when the addresses specified in the\n\
940file itself are wrong. Each section must be changed separately. The\n\
1bedd215 941``info files'' command lists all the sections and their addresses."));
c906108c 942
5bf193a2
AC
943 add_setshow_boolean_cmd ("write", class_support, &write_files, _("\
944Set writing into executable and core files."), _("\
945Show writing into executable and core files."), NULL,
946 NULL,
920d2a44 947 show_write_files,
5bf193a2 948 &setlist, &showlist);
c5aa993b 949
c906108c
SS
950 add_target (&exec_ops);
951}
be4d1333
MS
952
953static char *
954exec_make_note_section (bfd *obfd, int *note_size)
955{
8a3fe4f8 956 error (_("Can't create a corefile"));
be4d1333 957}