PR 12590
[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"
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,
0963b4bd 133 free_objfile() will do proper cleanup of objfile *and* bfd. */
c5aa993b 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);
d7f9d729 227
c5aa993b 228 strcat (strcpy (exename, filename), ".exe");
014d698b 229 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST, exename,
fbdebf46 230 write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
014d698b 231 &scratch_pathname);
c5aa993b 232 }
c906108c
SS
233#endif
234 if (scratch_chan < 0)
235 perror_with_name (filename);
9f76c2cd
MM
236 exec_bfd = bfd_fopen (scratch_pathname, gnutarget,
237 write_files ? FOPEN_RUB : FOPEN_RB,
238 scratch_chan);
c906108c
SS
239
240 if (!exec_bfd)
9fe4a216
TT
241 {
242 close (scratch_chan);
243 error (_("\"%s\": could not open as an executable file: %s"),
244 scratch_pathname, bfd_errmsg (bfd_get_error ()));
245 }
c906108c
SS
246
247 /* At this point, scratch_pathname and exec_bfd->name both point to the
c5aa993b
JM
248 same malloc'd string. However exec_close() will attempt to free it
249 via the exec_bfd->name pointer, so we need to make another copy and
0963b4bd 250 leave exec_bfd as the new owner of the original copy. */
c2d11a7d 251 scratch_pathname = xstrdup (scratch_pathname);
f7545552 252 cleanups = make_cleanup (xfree, scratch_pathname);
c5aa993b 253
d18b8b7a 254 if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching))
c906108c
SS
255 {
256 /* Make sure to close exec_bfd, or else "run" might try to use
257 it. */
6c95b8df 258 exec_close ();
8a3fe4f8 259 error (_("\"%s\": not in executable format: %s"),
d18b8b7a
HZ
260 scratch_pathname,
261 gdb_bfd_errmsg (bfd_get_error (), matching));
c906108c
SS
262 }
263
264 /* FIXME - This should only be run for RS6000, but the ifdef is a poor
c5aa993b 265 way to accomplish. */
52d16ba8 266#ifdef DEPRECATED_IBM6000_TARGET
0963b4bd 267 /* Setup initial vmap. */
c906108c
SS
268
269 map_vmap (exec_bfd, 0);
270 if (vmap == NULL)
271 {
272 /* Make sure to close exec_bfd, or else "run" might try to use
273 it. */
6c95b8df 274 exec_close ();
8a3fe4f8 275 error (_("\"%s\": can't find the file sections: %s"),
c906108c
SS
276 scratch_pathname, bfd_errmsg (bfd_get_error ()));
277 }
52d16ba8 278#endif /* DEPRECATED_IBM6000_TARGET */
c906108c 279
07b82ea5 280 if (build_section_table (exec_bfd, &sections, &sections_end))
c906108c
SS
281 {
282 /* Make sure to close exec_bfd, or else "run" might try to use
283 it. */
6c95b8df 284 exec_close ();
8a3fe4f8 285 error (_("\"%s\": can't find the file sections: %s"),
c906108c
SS
286 scratch_pathname, bfd_errmsg (bfd_get_error ()));
287 }
288
c04ea773
DJ
289 exec_bfd_mtime = bfd_get_mtime (exec_bfd);
290
c906108c
SS
291 validate_files ();
292
293 set_gdbarch_from_file (exec_bfd);
294
07b82ea5 295 /* Add the executable's sections to the current address spaces'
6c95b8df
PA
296 list of sections. This possibly pushes the exec_ops
297 target. */
07b82ea5
PA
298 add_target_sections (sections, sections_end);
299 xfree (sections);
c906108c
SS
300
301 /* Tell display code (if any) about the changed file name. */
9a4105ab
AC
302 if (deprecated_exec_file_display_hook)
303 (*deprecated_exec_file_display_hook) (filename);
f7545552
TT
304
305 do_cleanups (cleanups);
c906108c 306 }
ce7d4522 307 bfd_cache_close_all ();
781b42b0 308 observer_notify_executable_changed ();
c906108c
SS
309}
310
311/* Process the first arg in ARGS as the new exec file.
312
c5aa993b
JM
313 Note that we have to explicitly ignore additional args, since we can
314 be called from file_command(), which also calls symbol_file_command()
1adeb98a
FN
315 which can take multiple args.
316
0963b4bd 317 If ARGS is NULL, we just want to close the exec file. */
c906108c 318
1adeb98a 319static void
fba45db2 320exec_file_command (char *args, int from_tty)
c906108c 321{
1adeb98a
FN
322 char **argv;
323 char *filename;
4c42eaff
DJ
324
325 if (from_tty && target_has_execution
326 && !query (_("A program is being debugged already.\n"
327 "Are you sure you want to change the file? ")))
328 error (_("File not changed."));
1adeb98a
FN
329
330 if (args)
331 {
f7545552
TT
332 struct cleanup *cleanups;
333
1adeb98a
FN
334 /* Scan through the args and pick up the first non option arg
335 as the filename. */
336
d1a41061 337 argv = gdb_buildargv (args);
f7545552 338 cleanups = make_cleanup_freeargv (argv);
1adeb98a
FN
339
340 for (; (*argv != NULL) && (**argv == '-'); argv++)
341 {;
342 }
343 if (*argv == NULL)
8a3fe4f8 344 error (_("No executable file name was specified"));
1adeb98a
FN
345
346 filename = tilde_expand (*argv);
347 make_cleanup (xfree, filename);
348 exec_file_attach (filename, from_tty);
f7545552
TT
349
350 do_cleanups (cleanups);
1adeb98a
FN
351 }
352 else
353 exec_file_attach (NULL, from_tty);
c906108c
SS
354}
355
0963b4bd 356/* Set both the exec file and the symbol file, in one command.
c906108c
SS
357 What a novelty. Why did GDB go through four major releases before this
358 command was added? */
359
360static void
fba45db2 361file_command (char *arg, int from_tty)
c906108c
SS
362{
363 /* FIXME, if we lose on reading the symbol file, we should revert
364 the exec file, but that's rough. */
365 exec_file_command (arg, from_tty);
366 symbol_file_command (arg, from_tty);
9a4105ab
AC
367 if (deprecated_file_changed_hook)
368 deprecated_file_changed_hook (arg);
c906108c 369}
c906108c 370\f
c5aa993b 371
0963b4bd 372/* Locate all mappable sections of a BFD file.
c906108c
SS
373 table_pp_char is a char * to get it through bfd_map_over_sections;
374 we cast it back to its proper type. */
375
376static void
7be0c536
AC
377add_to_section_table (bfd *abfd, struct bfd_section *asect,
378 void *table_pp_char)
c906108c 379{
0542c86d 380 struct target_section **table_pp = (struct target_section **) table_pp_char;
c906108c
SS
381 flagword aflag;
382
0f5d55d8
JB
383 /* Check the section flags, but do not discard zero-length sections, since
384 some symbols may still be attached to this section. For instance, we
385 encountered on sparc-solaris 2.10 a shared library with an empty .bss
386 section to which a symbol named "_end" was attached. The address
387 of this symbol still needs to be relocated. */
c906108c
SS
388 aflag = bfd_get_section_flags (abfd, asect);
389 if (!(aflag & SEC_ALLOC))
390 return;
0f5d55d8 391
c906108c
SS
392 (*table_pp)->bfd = abfd;
393 (*table_pp)->the_bfd_section = asect;
394 (*table_pp)->addr = bfd_section_vma (abfd, asect);
395 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
396 (*table_pp)++;
397}
398
07b82ea5
PA
399int
400resize_section_table (struct target_section_table *table, int num_added)
401{
402 struct target_section *old_value;
403 int old_count;
404 int new_count;
405
406 old_value = table->sections;
407 old_count = table->sections_end - table->sections;
408
409 new_count = num_added + old_count;
410
411 if (new_count)
412 {
413 table->sections = xrealloc (table->sections,
414 sizeof (struct target_section) * new_count);
415 table->sections_end = table->sections + new_count;
416 }
417 else
418 {
419 xfree (table->sections);
420 table->sections = table->sections_end = NULL;
421 }
422
423 return old_count;
424}
425
c906108c
SS
426/* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
427 Returns 0 if OK, 1 on error. */
428
429int
0542c86d
PA
430build_section_table (struct bfd *some_bfd, struct target_section **start,
431 struct target_section **end)
c906108c
SS
432{
433 unsigned count;
434
435 count = bfd_count_sections (some_bfd);
436 if (*start)
b8c9b27d 437 xfree (* start);
0542c86d 438 *start = (struct target_section *) xmalloc (count * sizeof (**start));
c906108c 439 *end = *start;
c5aa993b 440 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
c906108c 441 if (*end > *start + count)
3e43a32a
MS
442 internal_error (__FILE__, __LINE__,
443 _("failed internal consistency check"));
c906108c
SS
444 /* We could realloc the table, but it probably loses for most files. */
445 return 0;
446}
07b82ea5
PA
447
448/* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
449 current set of target sections. */
450
451void
452add_target_sections (struct target_section *sections,
453 struct target_section *sections_end)
454{
455 int count;
456 struct target_section_table *table = current_target_sections;
457
458 count = sections_end - sections;
459
460 if (count > 0)
461 {
462 int space = resize_section_table (table, count);
d7f9d729 463
07b82ea5
PA
464 memcpy (table->sections + space,
465 sections, count * sizeof (sections[0]));
466
467 /* If these are the first file sections we can provide memory
468 from, push the file_stratum target. */
6c95b8df
PA
469 if (!using_exec_ops)
470 {
471 using_exec_ops = 1;
472 push_target (&exec_ops);
473 }
07b82ea5
PA
474 }
475}
476
477/* Remove all target sections taken from ABFD. */
478
479void
480remove_target_sections (bfd *abfd)
481{
482 struct target_section *src, *dest;
07b82ea5
PA
483 struct target_section_table *table = current_target_sections;
484
485 dest = table->sections;
486 for (src = table->sections; src < table->sections_end; src++)
487 if (src->bfd != abfd)
488 {
489 /* Keep this section. */
490 if (dest < src)
491 *dest = *src;
492 dest++;
493 }
494
495 /* If we've dropped any sections, resize the section table. */
496 if (dest < src)
497 {
498 int old_count;
499
500 old_count = resize_section_table (table, dest - src);
501
502 /* If we don't have any more sections to read memory from,
503 remove the file_stratum target from the stack. */
504 if (old_count + (dest - src) == 0)
6c95b8df
PA
505 {
506 struct program_space *pspace;
507
508 ALL_PSPACES (pspace)
509 if (pspace->target_sections.sections
510 != pspace->target_sections.sections_end)
511 return;
512
513 unpush_target (&exec_ops);
514 }
07b82ea5
PA
515 }
516}
517
c906108c
SS
518\f
519static void
7be0c536 520bfdsec_to_vmap (struct bfd *abfd, struct bfd_section *sect, void *arg3)
c906108c
SS
521{
522 struct vmap_and_bfd *vmap_bfd = (struct vmap_and_bfd *) arg3;
523 struct vmap *vp;
524
525 vp = vmap_bfd->pvmap;
526
527 if ((bfd_get_section_flags (abfd, sect) & SEC_LOAD) == 0)
528 return;
529
dc6a2ca4 530 if (strcmp (bfd_section_name (abfd, sect), ".text") == 0)
c906108c
SS
531 {
532 vp->tstart = bfd_section_vma (abfd, sect);
533 vp->tend = vp->tstart + bfd_section_size (abfd, sect);
534 vp->tvma = bfd_section_vma (abfd, sect);
535 vp->toffs = sect->filepos;
536 }
dc6a2ca4 537 else if (strcmp (bfd_section_name (abfd, sect), ".data") == 0)
c906108c
SS
538 {
539 vp->dstart = bfd_section_vma (abfd, sect);
540 vp->dend = vp->dstart + bfd_section_size (abfd, sect);
541 vp->dvma = bfd_section_vma (abfd, sect);
542 }
0963b4bd 543 /* Silently ignore other types of sections. (FIXME?) */
c906108c
SS
544}
545
546/* Make a vmap for ABFD which might be a member of the archive ARCH.
547 Return the new vmap. */
548
549struct vmap *
fba45db2 550map_vmap (bfd *abfd, bfd *arch)
c906108c
SS
551{
552 struct vmap_and_bfd vmap_bfd;
553 struct vmap *vp, **vpp;
554
555 vp = (struct vmap *) xmalloc (sizeof (*vp));
556 memset ((char *) vp, '\0', sizeof (*vp));
557 vp->nxt = 0;
558 vp->bfd = abfd;
559 vp->name = bfd_get_filename (arch ? arch : abfd);
560 vp->member = arch ? bfd_get_filename (abfd) : "";
c5aa993b 561
c906108c
SS
562 vmap_bfd.pbfd = arch;
563 vmap_bfd.pvmap = vp;
564 bfd_map_over_sections (abfd, bfdsec_to_vmap, &vmap_bfd);
565
0963b4bd 566 /* Find the end of the list and append. */
c906108c
SS
567 for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt)
568 ;
569 *vpp = vp;
570
571 return vp;
572}
573\f
348f8c02 574
e6ca34fc
PA
575VEC(mem_range_s) *
576section_table_available_memory (VEC(mem_range_s) *memory,
424447ee 577 CORE_ADDR memaddr, ULONGEST len,
e6ca34fc
PA
578 struct target_section *sections,
579 struct target_section *sections_end)
580{
581 struct target_section *p;
e6ca34fc
PA
582
583 for (p = sections; p < sections_end; p++)
584 {
585 if ((bfd_get_section_flags (p->bfd, p->the_bfd_section)
586 & SEC_READONLY) == 0)
587 continue;
588
589 /* Copy the meta-data, adjusted. */
590 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
591 {
592 ULONGEST lo1, hi1, lo2, hi2;
593 struct mem_range *r;
594
595 lo1 = memaddr;
596 hi1 = memaddr + len;
597
598 lo2 = p->addr;
599 hi2 = p->endaddr;
600
601 r = VEC_safe_push (mem_range_s, memory, NULL);
602
603 r->start = max (lo1, lo2);
604 r->length = min (hi1, hi2) - r->start;
605 }
606 }
607
608 return memory;
609}
610
07b82ea5
PA
611int
612section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
613 ULONGEST offset, LONGEST len,
614 struct target_section *sections,
615 struct target_section *sections_end,
616 const char *section_name)
c906108c 617{
020cc13c 618 int res;
0542c86d 619 struct target_section *p;
07b82ea5
PA
620 ULONGEST memaddr = offset;
621 ULONGEST memend = memaddr + len;
c906108c
SS
622
623 if (len <= 0)
3e43a32a
MS
624 internal_error (__FILE__, __LINE__,
625 _("failed internal consistency check"));
c906108c 626
348f8c02 627 for (p = sections; p < sections_end; p++)
c906108c 628 {
348f8c02 629 if (section_name && strcmp (section_name, p->the_bfd_section->name) != 0)
0963b4bd 630 continue; /* not the section we need. */
c906108c 631 if (memaddr >= p->addr)
3db26b01
JB
632 {
633 if (memend <= p->endaddr)
634 {
635 /* Entire transfer is within this section. */
07b82ea5 636 if (writebuf)
85302095 637 res = bfd_set_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 638 writebuf, memaddr - p->addr,
85302095
AC
639 len);
640 else
641 res = bfd_get_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 642 readbuf, memaddr - p->addr,
85302095 643 len);
3db26b01
JB
644 return (res != 0) ? len : 0;
645 }
646 else if (memaddr >= p->endaddr)
647 {
648 /* This section ends before the transfer starts. */
649 continue;
650 }
651 else
652 {
653 /* This section overlaps the transfer. Just do half. */
654 len = p->endaddr - memaddr;
07b82ea5 655 if (writebuf)
85302095 656 res = bfd_set_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 657 writebuf, memaddr - p->addr,
85302095
AC
658 len);
659 else
660 res = bfd_get_section_contents (p->bfd, p->the_bfd_section,
07b82ea5 661 readbuf, memaddr - p->addr,
85302095 662 len);
3db26b01
JB
663 return (res != 0) ? len : 0;
664 }
665 }
c906108c
SS
666 }
667
0963b4bd 668 return 0; /* We can't help. */
c906108c 669}
348f8c02 670
07b82ea5
PA
671struct target_section_table *
672exec_get_section_table (struct target_ops *ops)
348f8c02 673{
07b82ea5 674 return current_target_sections;
348f8c02
PA
675}
676
07b82ea5
PA
677static LONGEST
678exec_xfer_partial (struct target_ops *ops, enum target_object object,
679 const char *annex, gdb_byte *readbuf,
680 const gdb_byte *writebuf,
681 ULONGEST offset, LONGEST len)
348f8c02 682{
07b82ea5
PA
683 struct target_section_table *table = target_get_section_table (ops);
684
685 if (object == TARGET_OBJECT_MEMORY)
686 return section_table_xfer_memory_partial (readbuf, writebuf,
687 offset, len,
688 table->sections,
689 table->sections_end,
690 NULL);
691 else
692 return -1;
348f8c02 693}
c906108c 694\f
c5aa993b 695
c906108c 696void
07b82ea5 697print_section_info (struct target_section_table *t, bfd *abfd)
c906108c 698{
5af949e3 699 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
0542c86d 700 struct target_section *p;
17a912b6 701 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
5af949e3 702 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
c906108c 703
c5aa993b 704 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
c906108c 705 wrap_here (" ");
a3f17187 706 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
c906108c 707 if (abfd == exec_bfd)
51bee8e9 708 {
3e43a32a
MS
709 /* gcc-3.4 does not like the initialization in
710 <p == t->sections_end>. */
d904de5b 711 bfd_vma displacement = 0;
2f1bdd26 712 bfd_vma entry_point;
51bee8e9
JK
713
714 for (p = t->sections; p < t->sections_end; p++)
715 {
716 asection *asect = p->the_bfd_section;
717
718 if ((bfd_get_section_flags (abfd, asect) & (SEC_ALLOC | SEC_LOAD))
719 != (SEC_ALLOC | SEC_LOAD))
720 continue;
721
722 if (bfd_get_section_vma (abfd, asect) <= abfd->start_address
723 && abfd->start_address < (bfd_get_section_vma (abfd, asect)
724 + bfd_get_section_size (asect)))
725 {
726 displacement = p->addr - bfd_get_section_vma (abfd, asect);
727 break;
728 }
729 }
730 if (p == t->sections_end)
b37520b6 731 warning (_("Cannot find section for the entry point of %s."),
d904de5b 732 bfd_get_filename (abfd));
51bee8e9 733
2f1bdd26
MGD
734 entry_point = gdbarch_addr_bits_remove (gdbarch,
735 bfd_get_start_address (abfd)
736 + displacement);
51bee8e9 737 printf_filtered (_("\tEntry point: %s\n"),
2f1bdd26 738 paddress (gdbarch, entry_point));
51bee8e9 739 }
07b82ea5 740 for (p = t->sections; p < t->sections_end; p++)
c906108c 741 {
bb599908
PH
742 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
743 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
bcf16802
KB
744
745 /* FIXME: A format of "08l" is not wide enough for file offsets
746 larger than 4GB. OTOH, making it "016l" isn't desirable either
747 since most output will then be much wider than necessary. It
748 may make sense to test the size of the file and choose the
749 format string accordingly. */
a3f17187 750 /* FIXME: i18n: Need to rewrite this sentence. */
c906108c
SS
751 if (info_verbose)
752 printf_filtered (" @ %s",
bb599908 753 hex_string_custom (p->the_bfd_section->filepos, 8));
3e43a32a
MS
754 printf_filtered (" is %s", bfd_section_name (p->bfd,
755 p->the_bfd_section));
c906108c 756 if (p->bfd != abfd)
a3f17187 757 printf_filtered (" in %s", bfd_get_filename (p->bfd));
c906108c
SS
758 printf_filtered ("\n");
759 }
760}
761
762static void
fba45db2 763exec_files_info (struct target_ops *t)
c906108c 764{
07b82ea5 765 print_section_info (current_target_sections, exec_bfd);
c906108c
SS
766
767 if (vmap)
768 {
5af949e3 769 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
c906108c
SS
770 struct vmap *vp;
771
a3f17187 772 printf_unfiltered (_("\tMapping info for file `%s'.\n"), vmap->name);
d4f3574e 773 printf_unfiltered ("\t %*s %*s %*s %*s %8.8s %s\n",
5af949e3
UW
774 addr_size * 2, "tstart",
775 addr_size * 2, "tend",
776 addr_size * 2, "dstart",
777 addr_size * 2, "dend",
d4f3574e 778 "section",
c5aa993b
JM
779 "file(member)");
780
781 for (vp = vmap; vp; vp = vp->nxt)
d4f3574e 782 printf_unfiltered ("\t0x%s 0x%s 0x%s 0x%s %s%s%s%s\n",
5af949e3
UW
783 phex (vp->tstart, addr_size),
784 phex (vp->tend, addr_size),
785 phex (vp->dstart, addr_size),
786 phex (vp->dend, addr_size),
d4f3574e 787 vp->name,
c5aa993b
JM
788 *vp->member ? "(" : "", vp->member,
789 *vp->member ? ")" : "");
c906108c
SS
790 }
791}
792
793static void
fba45db2 794set_section_command (char *args, int from_tty)
c906108c 795{
0542c86d 796 struct target_section *p;
c906108c
SS
797 char *secname;
798 unsigned seclen;
799 unsigned long secaddr;
800 char secprint[100];
801 long offset;
07b82ea5 802 struct target_section_table *table;
c906108c
SS
803
804 if (args == 0)
8a3fe4f8 805 error (_("Must specify section name and its virtual address"));
c906108c 806
0963b4bd 807 /* Parse out section name. */
c5aa993b 808 for (secname = args; !isspace (*args); args++);
c906108c
SS
809 seclen = args - secname;
810
0963b4bd 811 /* Parse out new virtual address. */
c906108c
SS
812 secaddr = parse_and_eval_address (args);
813
07b82ea5
PA
814 table = current_target_sections;
815 for (p = table->sections; p < table->sections_end; p++)
c5aa993b 816 {
3e43a32a
MS
817 if (!strncmp (secname, bfd_section_name (exec_bfd,
818 p->the_bfd_section), seclen)
c5aa993b
JM
819 && bfd_section_name (exec_bfd, p->the_bfd_section)[seclen] == '\0')
820 {
821 offset = secaddr - p->addr;
822 p->addr += offset;
823 p->endaddr += offset;
824 if (from_tty)
825 exec_files_info (&exec_ops);
826 return;
827 }
c906108c 828 }
c906108c
SS
829 if (seclen >= sizeof (secprint))
830 seclen = sizeof (secprint) - 1;
831 strncpy (secprint, secname, seclen);
832 secprint[seclen] = '\0';
8a3fe4f8 833 error (_("Section %s not found"), secprint);
c906108c
SS
834}
835
30510692
DJ
836/* If we can find a section in FILENAME with BFD index INDEX, adjust
837 it to ADDRESS. */
c1bd25fd
DJ
838
839void
840exec_set_section_address (const char *filename, int index, CORE_ADDR address)
841{
0542c86d 842 struct target_section *p;
07b82ea5 843 struct target_section_table *table;
c1bd25fd 844
07b82ea5
PA
845 table = current_target_sections;
846 for (p = table->sections; p < table->sections_end; p++)
c1bd25fd
DJ
847 {
848 if (strcmp (filename, p->bfd->filename) == 0
30510692 849 && index == p->the_bfd_section->index)
c1bd25fd 850 {
30510692 851 p->endaddr += address - p->addr;
c1bd25fd 852 p->addr = address;
c1bd25fd
DJ
853 }
854 }
855}
856
c906108c
SS
857/* If mourn is being called in all the right places, this could be say
858 `gdb internal error' (since generic_mourn calls
859 breakpoint_init_inferior). */
860
861static int
a6d9a66e 862ignore (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
c906108c
SS
863{
864 return 0;
865}
866
c35b1492
PA
867static int
868exec_has_memory (struct target_ops *ops)
869{
870 /* We can provide memory if we have any file/target sections to read
871 from. */
872 return (current_target_sections->sections
873 != current_target_sections->sections_end);
874}
875
0963b4bd 876/* Find mapped memory. */
be4d1333
MS
877
878extern void
b8edc417 879exec_set_find_memory_regions (int (*func) (find_memory_region_ftype, void *))
be4d1333
MS
880{
881 exec_ops.to_find_memory_regions = func;
882}
883
884static char *exec_make_note_section (bfd *, int *);
885
c906108c
SS
886/* Fill in the exec file target vector. Very few entries need to be
887 defined. */
888
be4d1333 889static void
fba45db2 890init_exec_ops (void)
c906108c
SS
891{
892 exec_ops.to_shortname = "exec";
893 exec_ops.to_longname = "Local exec file";
894 exec_ops.to_doc = "Use an executable file as a target.\n\
895Specify the filename of the executable file.";
1adeb98a 896 exec_ops.to_open = exec_open;
6c95b8df 897 exec_ops.to_close = exec_close_1;
c906108c 898 exec_ops.to_attach = find_default_attach;
07b82ea5
PA
899 exec_ops.to_xfer_partial = exec_xfer_partial;
900 exec_ops.to_get_section_table = exec_get_section_table;
c906108c
SS
901 exec_ops.to_files_info = exec_files_info;
902 exec_ops.to_insert_breakpoint = ignore;
903 exec_ops.to_remove_breakpoint = ignore;
904 exec_ops.to_create_inferior = find_default_create_inferior;
c906108c 905 exec_ops.to_stratum = file_stratum;
c35b1492 906 exec_ops.to_has_memory = exec_has_memory;
be4d1333 907 exec_ops.to_make_corefile_notes = exec_make_note_section;
c5aa993b 908 exec_ops.to_magic = OPS_MAGIC;
c906108c
SS
909}
910
911void
fba45db2 912_initialize_exec (void)
c906108c
SS
913{
914 struct cmd_list_element *c;
915
916 init_exec_ops ();
917
918 if (!dbx_commands)
919 {
1a966eab
AC
920 c = add_cmd ("file", class_files, file_command, _("\
921Use FILE as program to be debugged.\n\
c906108c
SS
922It is read for its symbols, for getting the contents of pure memory,\n\
923and it is the program executed when you use the `run' command.\n\
924If FILE cannot be found as specified, your execution directory path\n\
925($PATH) is searched for a command of that name.\n\
1a966eab 926No arg means to have no executable file and no symbols."), &cmdlist);
5ba2abeb 927 set_cmd_completer (c, filename_completer);
c906108c
SS
928 }
929
1a966eab
AC
930 c = add_cmd ("exec-file", class_files, exec_file_command, _("\
931Use FILE as program for getting contents of pure memory.\n\
c906108c
SS
932If FILE cannot be found as specified, your execution directory path\n\
933is searched for a command of that name.\n\
1a966eab 934No arg means have no executable file."), &cmdlist);
5ba2abeb 935 set_cmd_completer (c, filename_completer);
c906108c 936
1bedd215
AC
937 add_com ("section", class_files, set_section_command, _("\
938Change the base address of section SECTION of the exec file to ADDR.\n\
c906108c
SS
939This can be used if the exec file does not contain section addresses,\n\
940(such as in the a.out format), or when the addresses specified in the\n\
941file itself are wrong. Each section must be changed separately. The\n\
1bedd215 942``info files'' command lists all the sections and their addresses."));
c906108c 943
5bf193a2
AC
944 add_setshow_boolean_cmd ("write", class_support, &write_files, _("\
945Set writing into executable and core files."), _("\
946Show writing into executable and core files."), NULL,
947 NULL,
920d2a44 948 show_write_files,
5bf193a2 949 &setlist, &showlist);
c5aa993b 950
c906108c
SS
951 add_target (&exec_ops);
952}
be4d1333
MS
953
954static char *
955exec_make_note_section (bfd *obfd, int *note_size)
956{
8a3fe4f8 957 error (_("Can't create a corefile"));
be4d1333 958}
This page took 0.758649 seconds and 4 git commands to generate.