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