gdb/
[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,
7b6bb8da 4 1998, 1999, 2000, 2001, 2002, 2003, 2007, 2008, 2009, 2010, 2011
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"
0ba1096a 28#include "filenames.h"
c906108c
SS
29#include "symfile.h"
30#include "objfiles.h"
c5f0f3d0 31#include "completer.h"
fd0407d6 32#include "value.h"
4646aa9d 33#include "exec.h"
ea53e89f 34#include "observer.h"
dacec2a8 35#include "arch-utils.h"
6c95b8df
PA
36#include "gdbthread.h"
37#include "progspace.h"
c906108c 38
c906108c 39#include <fcntl.h>
dbda9972 40#include "readline/readline.h"
c906108c
SS
41#include "gdb_string.h"
42
43#include "gdbcore.h"
44
45#include <ctype.h>
46#include "gdb_stat.h"
c906108c
SS
47
48#include "xcoffsolib.h"
49
a14ed312 50struct vmap *map_vmap (bfd *, bfd *);
c906108c 51
9a4105ab 52void (*deprecated_file_changed_hook) (char *);
c906108c
SS
53
54/* Prototypes for local functions */
55
a14ed312 56static void file_command (char *, int);
c906108c 57
a14ed312 58static void set_section_command (char *, int);
c906108c 59
a14ed312 60static void exec_files_info (struct target_ops *);
c906108c 61
a14ed312 62static void init_exec_ops (void);
c906108c 63
a14ed312 64void _initialize_exec (void);
c906108c 65
c906108c
SS
66/* The target vector for executable files. */
67
68struct target_ops exec_ops;
69
6c95b8df
PA
70/* True if the exec target is pushed on the stack. */
71static int using_exec_ops;
07b82ea5 72
c906108c
SS
73/* Whether to open exec and core files read-only or read-write. */
74
75int write_files = 0;
920d2a44
AC
76static void
77show_write_files (struct ui_file *file, int from_tty,
78 struct cmd_list_element *c, const char *value)
79{
80 fprintf_filtered (file, _("Writing into executable and core files is %s.\n"),
81 value);
82}
83
c906108c 84
c906108c
SS
85struct vmap *vmap;
86
4c42eaff 87static void
1adeb98a
FN
88exec_open (char *args, int from_tty)
89{
90 target_preopen (from_tty);
91 exec_file_attach (args, from_tty);
92}
93
07b82ea5
PA
94/* Close and clear exec_bfd. If we end up with no target sections to
95 read memory from, this unpushes the exec_ops target. */
96
6c95b8df
PA
97void
98exec_close (void)
07b82ea5
PA
99{
100 if (exec_bfd)
101 {
102 bfd *abfd = exec_bfd;
103 char *name = bfd_get_filename (abfd);
104
516ba659 105 gdb_bfd_close_or_warn (abfd);
07b82ea5
PA
106 xfree (name);
107
108 /* Removing target sections may close the exec_ops target.
109 Clear exec_bfd before doing so to prevent recursion. */
110 exec_bfd = NULL;
111 exec_bfd_mtime = 0;
112
113 remove_target_sections (abfd);
114 }
115}
116
6c95b8df
PA
117/* This is the target_close implementation. Clears all target
118 sections and closes all executable bfds from all program spaces. */
119
c906108c 120static void
6c95b8df 121exec_close_1 (int quitting)
c906108c
SS
122{
123 int need_symtab_cleanup = 0;
124 struct vmap *vp, *nxt;
c5aa993b 125
6c95b8df
PA
126 using_exec_ops = 0;
127
c5aa993b 128 for (nxt = vmap; nxt != NULL;)
c906108c
SS
129 {
130 vp = nxt;
131 nxt = vp->nxt;
132
133 /* if there is an objfile associated with this bfd,
0963b4bd 134 free_objfile() will do proper cleanup of objfile *and* bfd. */
c5aa993b 135
c906108c
SS
136 if (vp->objfile)
137 {
138 free_objfile (vp->objfile);
139 need_symtab_cleanup = 1;
140 }
141 else if (vp->bfd != exec_bfd)
142 /* FIXME-leak: We should be freeing vp->name too, I think. */
516ba659 143 gdb_bfd_close_or_warn (vp->bfd);
c906108c 144
b8c9b27d 145 xfree (vp);
c906108c
SS
146 }
147
148 vmap = NULL;
149
6c95b8df
PA
150 {
151 struct program_space *ss;
152 struct cleanup *old_chain;
c906108c 153
6c95b8df
PA
154 old_chain = save_current_program_space ();
155 ALL_PSPACES (ss)
156 {
157 set_current_program_space (ss);
158
159 /* Delete all target sections. */
160 resize_section_table
161 (current_target_sections,
162 -resize_section_table (current_target_sections, 0));
163
164 exec_close ();
165 }
166
167 do_cleanups (old_chain);
168 }
c906108c
SS
169}
170
1adeb98a
FN
171void
172exec_file_clear (int from_tty)
173{
174 /* Remove exec file. */
6c95b8df 175 exec_close ();
1adeb98a
FN
176
177 if (from_tty)
a3f17187 178 printf_unfiltered (_("No executable file now.\n"));
1adeb98a
FN
179}
180
907083d1 181/* Set FILENAME as the new exec file.
c906108c 182
c5aa993b
JM
183 This function is intended to be behave essentially the same
184 as exec_file_command, except that the latter will detect when
185 a target is being debugged, and will ask the user whether it
186 should be shut down first. (If the answer is "no", then the
187 new file is ignored.)
c906108c 188
c5aa993b
JM
189 This file is used by exec_file_command, to do the work of opening
190 and processing the exec file after any prompting has happened.
c906108c 191
c5aa993b
JM
192 And, it is used by child_attach, when the attach command was
193 given a pid but not a exec pathname, and the attach command could
194 figure out the pathname from the pid. (In this case, we shouldn't
195 ask the user whether the current target should be shut down --
907083d1 196 we're supplying the exec pathname late for good reason.) */
c906108c
SS
197
198void
1adeb98a 199exec_file_attach (char *filename, int from_tty)
c906108c 200{
c906108c 201 /* Remove any previous exec file. */
6c95b8df 202 exec_close ();
c906108c
SS
203
204 /* Now open and digest the file the user requested, if any. */
205
1adeb98a
FN
206 if (!filename)
207 {
208 if (from_tty)
a3f17187 209 printf_unfiltered (_("No executable file now.\n"));
7a107747
DJ
210
211 set_gdbarch_from_file (NULL);
1adeb98a
FN
212 }
213 else
c906108c 214 {
f7545552 215 struct cleanup *cleanups;
c906108c
SS
216 char *scratch_pathname;
217 int scratch_chan;
07b82ea5 218 struct target_section *sections = NULL, *sections_end = NULL;
d18b8b7a 219 char **matching;
c5aa993b 220
014d698b 221 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, filename,
fbdebf46 222 write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
c906108c 223 &scratch_pathname);
cfc3008e 224#if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
c906108c 225 if (scratch_chan < 0)
c5aa993b
JM
226 {
227 char *exename = alloca (strlen (filename) + 5);
d7f9d729 228
c5aa993b 229 strcat (strcpy (exename, filename), ".exe");
014d698b 230 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, exename,
fbdebf46 231 write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
014d698b 232 &scratch_pathname);
c5aa993b 233 }
c906108c
SS
234#endif
235 if (scratch_chan < 0)
236 perror_with_name (filename);
9f76c2cd
MM
237 exec_bfd = bfd_fopen (scratch_pathname, gnutarget,
238 write_files ? FOPEN_RUB : FOPEN_RB,
239 scratch_chan);
c906108c
SS
240
241 if (!exec_bfd)
9fe4a216
TT
242 {
243 close (scratch_chan);
244 error (_("\"%s\": could not open as an executable file: %s"),
245 scratch_pathname, bfd_errmsg (bfd_get_error ()));
246 }
c906108c
SS
247
248 /* At this point, scratch_pathname and exec_bfd->name both point to the
c5aa993b
JM
249 same malloc'd string. However exec_close() will attempt to free it
250 via the exec_bfd->name pointer, so we need to make another copy and
0963b4bd 251 leave exec_bfd as the new owner of the original copy. */
c2d11a7d 252 scratch_pathname = xstrdup (scratch_pathname);
f7545552 253 cleanups = make_cleanup (xfree, scratch_pathname);
c5aa993b 254
d18b8b7a 255 if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching))
c906108c
SS
256 {
257 /* Make sure to close exec_bfd, or else "run" might try to use
258 it. */
6c95b8df 259 exec_close ();
8a3fe4f8 260 error (_("\"%s\": not in executable format: %s"),
d18b8b7a
HZ
261 scratch_pathname,
262 gdb_bfd_errmsg (bfd_get_error (), matching));
c906108c
SS
263 }
264
265 /* FIXME - This should only be run for RS6000, but the ifdef is a poor
c5aa993b 266 way to accomplish. */
52d16ba8 267#ifdef DEPRECATED_IBM6000_TARGET
0963b4bd 268 /* Setup initial vmap. */
c906108c
SS
269
270 map_vmap (exec_bfd, 0);
271 if (vmap == NULL)
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 }
52d16ba8 279#endif /* DEPRECATED_IBM6000_TARGET */
c906108c 280
07b82ea5 281 if (build_section_table (exec_bfd, &sections, &sections_end))
c906108c
SS
282 {
283 /* Make sure to close exec_bfd, or else "run" might try to use
284 it. */
6c95b8df 285 exec_close ();
8a3fe4f8 286 error (_("\"%s\": can't find the file sections: %s"),
c906108c
SS
287 scratch_pathname, bfd_errmsg (bfd_get_error ()));
288 }
289
c04ea773
DJ
290 exec_bfd_mtime = bfd_get_mtime (exec_bfd);
291
c906108c
SS
292 validate_files ();
293
294 set_gdbarch_from_file (exec_bfd);
295
07b82ea5 296 /* Add the executable's sections to the current address spaces'
6c95b8df
PA
297 list of sections. This possibly pushes the exec_ops
298 target. */
07b82ea5
PA
299 add_target_sections (sections, sections_end);
300 xfree (sections);
c906108c
SS
301
302 /* Tell display code (if any) about the changed file name. */
9a4105ab
AC
303 if (deprecated_exec_file_display_hook)
304 (*deprecated_exec_file_display_hook) (filename);
f7545552
TT
305
306 do_cleanups (cleanups);
c906108c 307 }
ce7d4522 308 bfd_cache_close_all ();
781b42b0 309 observer_notify_executable_changed ();
c906108c
SS
310}
311
312/* Process the first arg in ARGS as the new exec file.
313
c5aa993b
JM
314 Note that we have to explicitly ignore additional args, since we can
315 be called from file_command(), which also calls symbol_file_command()
1adeb98a
FN
316 which can take multiple args.
317
0963b4bd 318 If ARGS is NULL, we just want to close the exec file. */
c906108c 319
1adeb98a 320static void
fba45db2 321exec_file_command (char *args, int from_tty)
c906108c 322{
1adeb98a
FN
323 char **argv;
324 char *filename;
4c42eaff
DJ
325
326 if (from_tty && target_has_execution
327 && !query (_("A program is being debugged already.\n"
328 "Are you sure you want to change the file? ")))
329 error (_("File not changed."));
1adeb98a
FN
330
331 if (args)
332 {
f7545552
TT
333 struct cleanup *cleanups;
334
1adeb98a
FN
335 /* Scan through the args and pick up the first non option arg
336 as the filename. */
337
d1a41061 338 argv = gdb_buildargv (args);
f7545552 339 cleanups = make_cleanup_freeargv (argv);
1adeb98a
FN
340
341 for (; (*argv != NULL) && (**argv == '-'); argv++)
342 {;
343 }
344 if (*argv == NULL)
8a3fe4f8 345 error (_("No executable file name was specified"));
1adeb98a
FN
346
347 filename = tilde_expand (*argv);
348 make_cleanup (xfree, filename);
349 exec_file_attach (filename, from_tty);
f7545552
TT
350
351 do_cleanups (cleanups);
1adeb98a
FN
352 }
353 else
354 exec_file_attach (NULL, from_tty);
c906108c
SS
355}
356
0963b4bd 357/* Set both the exec file and the symbol file, in one command.
c906108c
SS
358 What a novelty. Why did GDB go through four major releases before this
359 command was added? */
360
361static void
fba45db2 362file_command (char *arg, int from_tty)
c906108c
SS
363{
364 /* FIXME, if we lose on reading the symbol file, we should revert
365 the exec file, but that's rough. */
366 exec_file_command (arg, from_tty);
367 symbol_file_command (arg, from_tty);
9a4105ab
AC
368 if (deprecated_file_changed_hook)
369 deprecated_file_changed_hook (arg);
c906108c 370}
c906108c 371\f
c5aa993b 372
0963b4bd 373/* Locate all mappable sections of a BFD file.
c906108c
SS
374 table_pp_char is a char * to get it through bfd_map_over_sections;
375 we cast it back to its proper type. */
376
377static void
7be0c536
AC
378add_to_section_table (bfd *abfd, struct bfd_section *asect,
379 void *table_pp_char)
c906108c 380{
0542c86d 381 struct target_section **table_pp = (struct target_section **) table_pp_char;
c906108c
SS
382 flagword aflag;
383
0f5d55d8
JB
384 /* Check the section flags, but do not discard zero-length sections, since
385 some symbols may still be attached to this section. For instance, we
386 encountered on sparc-solaris 2.10 a shared library with an empty .bss
387 section to which a symbol named "_end" was attached. The address
388 of this symbol still needs to be relocated. */
c906108c
SS
389 aflag = bfd_get_section_flags (abfd, asect);
390 if (!(aflag & SEC_ALLOC))
391 return;
0f5d55d8 392
c906108c
SS
393 (*table_pp)->bfd = abfd;
394 (*table_pp)->the_bfd_section = asect;
395 (*table_pp)->addr = bfd_section_vma (abfd, asect);
396 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
397 (*table_pp)++;
398}
399
07b82ea5
PA
400int
401resize_section_table (struct target_section_table *table, int num_added)
402{
403 struct target_section *old_value;
404 int old_count;
405 int new_count;
406
407 old_value = table->sections;
408 old_count = table->sections_end - table->sections;
409
410 new_count = num_added + old_count;
411
412 if (new_count)
413 {
414 table->sections = xrealloc (table->sections,
415 sizeof (struct target_section) * new_count);
416 table->sections_end = table->sections + new_count;
417 }
418 else
419 {
420 xfree (table->sections);
421 table->sections = table->sections_end = NULL;
422 }
423
424 return old_count;
425}
426
c906108c
SS
427/* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
428 Returns 0 if OK, 1 on error. */
429
430int
0542c86d
PA
431build_section_table (struct bfd *some_bfd, struct target_section **start,
432 struct target_section **end)
c906108c
SS
433{
434 unsigned count;
435
436 count = bfd_count_sections (some_bfd);
437 if (*start)
b8c9b27d 438 xfree (* start);
0542c86d 439 *start = (struct target_section *) xmalloc (count * sizeof (**start));
c906108c 440 *end = *start;
c5aa993b 441 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
c906108c 442 if (*end > *start + count)
3e43a32a
MS
443 internal_error (__FILE__, __LINE__,
444 _("failed internal consistency check"));
c906108c
SS
445 /* We could realloc the table, but it probably loses for most files. */
446 return 0;
447}
07b82ea5
PA
448
449/* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
450 current set of target sections. */
451
452void
453add_target_sections (struct target_section *sections,
454 struct target_section *sections_end)
455{
456 int count;
457 struct target_section_table *table = current_target_sections;
458
459 count = sections_end - sections;
460
461 if (count > 0)
462 {
463 int space = resize_section_table (table, count);
d7f9d729 464
07b82ea5
PA
465 memcpy (table->sections + space,
466 sections, count * sizeof (sections[0]));
467
468 /* If these are the first file sections we can provide memory
469 from, push the file_stratum target. */
6c95b8df
PA
470 if (!using_exec_ops)
471 {
472 using_exec_ops = 1;
473 push_target (&exec_ops);
474 }
07b82ea5
PA
475 }
476}
477
478/* Remove all target sections taken from ABFD. */
479
480void
481remove_target_sections (bfd *abfd)
482{
483 struct target_section *src, *dest;
07b82ea5
PA
484 struct target_section_table *table = current_target_sections;
485
486 dest = table->sections;
487 for (src = table->sections; src < table->sections_end; src++)
488 if (src->bfd != abfd)
489 {
490 /* Keep this section. */
491 if (dest < src)
492 *dest = *src;
493 dest++;
494 }
495
496 /* If we've dropped any sections, resize the section table. */
497 if (dest < src)
498 {
499 int old_count;
500
501 old_count = resize_section_table (table, dest - src);
502
503 /* If we don't have any more sections to read memory from,
504 remove the file_stratum target from the stack. */
505 if (old_count + (dest - src) == 0)
6c95b8df
PA
506 {
507 struct program_space *pspace;
508
509 ALL_PSPACES (pspace)
510 if (pspace->target_sections.sections
511 != pspace->target_sections.sections_end)
512 return;
513
514 unpush_target (&exec_ops);
515 }
07b82ea5
PA
516 }
517}
518
c906108c
SS
519\f
520static void
7be0c536 521bfdsec_to_vmap (struct bfd *abfd, struct bfd_section *sect, void *arg3)
c906108c
SS
522{
523 struct vmap_and_bfd *vmap_bfd = (struct vmap_and_bfd *) arg3;
524 struct vmap *vp;
525
526 vp = vmap_bfd->pvmap;
527
528 if ((bfd_get_section_flags (abfd, sect) & SEC_LOAD) == 0)
529 return;
530
dc6a2ca4 531 if (strcmp (bfd_section_name (abfd, sect), ".text") == 0)
c906108c
SS
532 {
533 vp->tstart = bfd_section_vma (abfd, sect);
534 vp->tend = vp->tstart + bfd_section_size (abfd, sect);
535 vp->tvma = bfd_section_vma (abfd, sect);
536 vp->toffs = sect->filepos;
537 }
dc6a2ca4 538 else if (strcmp (bfd_section_name (abfd, sect), ".data") == 0)
c906108c
SS
539 {
540 vp->dstart = bfd_section_vma (abfd, sect);
541 vp->dend = vp->dstart + bfd_section_size (abfd, sect);
542 vp->dvma = bfd_section_vma (abfd, sect);
543 }
0963b4bd 544 /* Silently ignore other types of sections. (FIXME?) */
c906108c
SS
545}
546
547/* Make a vmap for ABFD which might be a member of the archive ARCH.
548 Return the new vmap. */
549
550struct vmap *
fba45db2 551map_vmap (bfd *abfd, bfd *arch)
c906108c
SS
552{
553 struct vmap_and_bfd vmap_bfd;
554 struct vmap *vp, **vpp;
555
556 vp = (struct vmap *) xmalloc (sizeof (*vp));
557 memset ((char *) vp, '\0', sizeof (*vp));
558 vp->nxt = 0;
559 vp->bfd = abfd;
560 vp->name = bfd_get_filename (arch ? arch : abfd);
561 vp->member = arch ? bfd_get_filename (abfd) : "";
c5aa993b 562
c906108c
SS
563 vmap_bfd.pbfd = arch;
564 vmap_bfd.pvmap = vp;
565 bfd_map_over_sections (abfd, bfdsec_to_vmap, &vmap_bfd);
566
0963b4bd 567 /* Find the end of the list and append. */
c906108c
SS
568 for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt)
569 ;
570 *vpp = vp;
571
572 return vp;
573}
574\f
348f8c02 575
e6ca34fc
PA
576VEC(mem_range_s) *
577section_table_available_memory (VEC(mem_range_s) *memory,
424447ee 578 CORE_ADDR memaddr, ULONGEST len,
e6ca34fc
PA
579 struct target_section *sections,
580 struct target_section *sections_end)
581{
582 struct target_section *p;
e6ca34fc
PA
583
584 for (p = sections; p < sections_end; p++)
585 {
586 if ((bfd_get_section_flags (p->bfd, p->the_bfd_section)
587 & SEC_READONLY) == 0)
588 continue;
589
590 /* Copy the meta-data, adjusted. */
591 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
592 {
593 ULONGEST lo1, hi1, lo2, hi2;
594 struct mem_range *r;
595
596 lo1 = memaddr;
597 hi1 = memaddr + len;
598
599 lo2 = p->addr;
600 hi2 = p->endaddr;
601
602 r = VEC_safe_push (mem_range_s, memory, NULL);
603
604 r->start = max (lo1, lo2);
605 r->length = min (hi1, hi2) - r->start;
606 }
607 }
608
609 return memory;
610}
611
07b82ea5
PA
612int
613section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
614 ULONGEST offset, LONGEST len,
615 struct target_section *sections,
616 struct target_section *sections_end,
617 const char *section_name)
c906108c 618{
020cc13c 619 int res;
0542c86d 620 struct target_section *p;
07b82ea5
PA
621 ULONGEST memaddr = offset;
622 ULONGEST memend = memaddr + len;
c906108c
SS
623
624 if (len <= 0)
3e43a32a
MS
625 internal_error (__FILE__, __LINE__,
626 _("failed internal consistency check"));
c906108c 627
348f8c02 628 for (p = sections; p < sections_end; p++)
c906108c 629 {
348f8c02 630 if (section_name && strcmp (section_name, p->the_bfd_section->name) != 0)
0963b4bd 631 continue; /* not the section we need. */
c906108c 632 if (memaddr >= p->addr)
3db26b01
JB
633 {
634 if (memend <= p->endaddr)
635 {
636 /* Entire transfer is within this section. */
07b82ea5 637 if (writebuf)
85302095 638 res = bfd_set_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 639 writebuf, memaddr - p->addr,
85302095
AC
640 len);
641 else
642 res = bfd_get_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 643 readbuf, memaddr - p->addr,
85302095 644 len);
3db26b01
JB
645 return (res != 0) ? len : 0;
646 }
647 else if (memaddr >= p->endaddr)
648 {
649 /* This section ends before the transfer starts. */
650 continue;
651 }
652 else
653 {
654 /* This section overlaps the transfer. Just do half. */
655 len = p->endaddr - memaddr;
07b82ea5 656 if (writebuf)
85302095 657 res = bfd_set_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 658 writebuf, memaddr - p->addr,
85302095
AC
659 len);
660 else
661 res = bfd_get_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 662 readbuf, memaddr - p->addr,
85302095 663 len);
3db26b01
JB
664 return (res != 0) ? len : 0;
665 }
666 }
c906108c
SS
667 }
668
0963b4bd 669 return 0; /* We can't help. */
c906108c 670}
348f8c02 671
07b82ea5
PA
672struct target_section_table *
673exec_get_section_table (struct target_ops *ops)
348f8c02 674{
07b82ea5 675 return current_target_sections;
348f8c02
PA
676}
677
07b82ea5
PA
678static LONGEST
679exec_xfer_partial (struct target_ops *ops, enum target_object object,
680 const char *annex, gdb_byte *readbuf,
681 const gdb_byte *writebuf,
682 ULONGEST offset, LONGEST len)
348f8c02 683{
07b82ea5
PA
684 struct target_section_table *table = target_get_section_table (ops);
685
686 if (object == TARGET_OBJECT_MEMORY)
687 return section_table_xfer_memory_partial (readbuf, writebuf,
688 offset, len,
689 table->sections,
690 table->sections_end,
691 NULL);
692 else
693 return -1;
348f8c02 694}
c906108c 695\f
c5aa993b 696
c906108c 697void
07b82ea5 698print_section_info (struct target_section_table *t, bfd *abfd)
c906108c 699{
5af949e3 700 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
0542c86d 701 struct target_section *p;
17a912b6 702 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
5af949e3 703 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
c906108c 704
c5aa993b 705 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
c906108c 706 wrap_here (" ");
a3f17187 707 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
c906108c 708 if (abfd == exec_bfd)
51bee8e9 709 {
3e43a32a
MS
710 /* gcc-3.4 does not like the initialization in
711 <p == t->sections_end>. */
d904de5b 712 bfd_vma displacement = 0;
2f1bdd26 713 bfd_vma entry_point;
51bee8e9
JK
714
715 for (p = t->sections; p < t->sections_end; p++)
716 {
717 asection *asect = p->the_bfd_section;
718
719 if ((bfd_get_section_flags (abfd, asect) & (SEC_ALLOC | SEC_LOAD))
720 != (SEC_ALLOC | SEC_LOAD))
721 continue;
722
723 if (bfd_get_section_vma (abfd, asect) <= abfd->start_address
724 && abfd->start_address < (bfd_get_section_vma (abfd, asect)
725 + bfd_get_section_size (asect)))
726 {
727 displacement = p->addr - bfd_get_section_vma (abfd, asect);
728 break;
729 }
730 }
731 if (p == t->sections_end)
b37520b6 732 warning (_("Cannot find section for the entry point of %s."),
d904de5b 733 bfd_get_filename (abfd));
51bee8e9 734
2f1bdd26
MGD
735 entry_point = gdbarch_addr_bits_remove (gdbarch,
736 bfd_get_start_address (abfd)
737 + displacement);
51bee8e9 738 printf_filtered (_("\tEntry point: %s\n"),
2f1bdd26 739 paddress (gdbarch, entry_point));
51bee8e9 740 }
07b82ea5 741 for (p = t->sections; p < t->sections_end; p++)
c906108c 742 {
bb599908
PH
743 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
744 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
bcf16802
KB
745
746 /* FIXME: A format of "08l" is not wide enough for file offsets
747 larger than 4GB. OTOH, making it "016l" isn't desirable either
748 since most output will then be much wider than necessary. It
749 may make sense to test the size of the file and choose the
750 format string accordingly. */
a3f17187 751 /* FIXME: i18n: Need to rewrite this sentence. */
c906108c
SS
752 if (info_verbose)
753 printf_filtered (" @ %s",
bb599908 754 hex_string_custom (p->the_bfd_section->filepos, 8));
3e43a32a
MS
755 printf_filtered (" is %s", bfd_section_name (p->bfd,
756 p->the_bfd_section));
c906108c 757 if (p->bfd != abfd)
a3f17187 758 printf_filtered (" in %s", bfd_get_filename (p->bfd));
c906108c
SS
759 printf_filtered ("\n");
760 }
761}
762
763static void
fba45db2 764exec_files_info (struct target_ops *t)
c906108c 765{
07b82ea5 766 print_section_info (current_target_sections, exec_bfd);
c906108c
SS
767
768 if (vmap)
769 {
5af949e3 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
794static void
fba45db2 795set_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 {
3e43a32a
MS
818 if (!strncmp (secname, bfd_section_name (exec_bfd,
819 p->the_bfd_section), seclen)
c5aa993b
JM
820 && bfd_section_name (exec_bfd, p->the_bfd_section)[seclen] == '\0')
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
840void
841exec_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
862static int
a6d9a66e 863ignore (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
c906108c
SS
864{
865 return 0;
866}
867
c35b1492
PA
868static int
869exec_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
879extern void
b8edc417 880exec_set_find_memory_regions (int (*func) (find_memory_region_ftype, void *))
be4d1333
MS
881{
882 exec_ops.to_find_memory_regions = func;
883}
884
885static 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 890static void
fba45db2 891init_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\
896Specify 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
912void
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, _("\
922Use FILE as program to be debugged.\n\
c906108c
SS
923It is read for its symbols, for getting the contents of pure memory,\n\
924and it is the program executed when you use the `run' command.\n\
925If FILE cannot be found as specified, your execution directory path\n\
926($PATH) is searched for a command of that name.\n\
1a966eab 927No 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, _("\
932Use FILE as program for getting contents of pure memory.\n\
c906108c
SS
933If FILE cannot be found as specified, your execution directory path\n\
934is searched for a command of that name.\n\
1a966eab 935No 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, _("\
939Change the base address of section SECTION of the exec file to ADDR.\n\
c906108c
SS
940This 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\
942file 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, _("\
946Set writing into executable and core files."), _("\
947Show 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
955static char *
956exec_make_note_section (bfd *obfd, int *note_size)
957{
8a3fe4f8 958 error (_("Can't create a corefile"));
be4d1333 959}
This page took 0.81549 seconds and 4 git commands to generate.