HPPA merge.
[deliverable/binutils-gdb.git] / gdb / xcoffexec.c
CommitLineData
41abdfbd 1/* Execute AIXcoff files, for GDB.
e17960fb 2 Copyright 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
41abdfbd
JG
3 Derived from exec.c. Modified by IBM Corporation.
4 Donated by IBM Corporation and Cygnus Support.
5
6This file is part of GDB.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22/* xcoff-exec - deal with executing XCOFF files. */
23
d747e0af
MT
24#include "defs.h"
25
41abdfbd
JG
26#include <sys/types.h>
27#include <sys/param.h>
28#include <fcntl.h>
29#include <string.h>
30#include <ctype.h>
31#include <sys/stat.h>
32#include <sys/ldr.h>
33
41abdfbd
JG
34#include "frame.h"
35#include "inferior.h"
36#include "target.h"
37#include "gdbcmd.h"
38#include "gdbcore.h"
39#include "symfile.h"
5e2e79f8 40#include "objfiles.h"
41abdfbd
JG
41
42#include "libbfd.h" /* BFD internals (sigh!) FIXME */
1eeba686 43#include "xcoffsolib.h"
41abdfbd 44
1ab3bf1b
JG
45/* Prototypes for local functions */
46
1ab3bf1b
JG
47static void
48file_command PARAMS ((char *, int));
49
50static void
51exec_close PARAMS ((int));
52
41abdfbd
JG
53struct section_table *exec_sections, *exec_sections_end;
54
55#define eq(s0, s1) !strcmp(s0, s1)
56
57/* Whether to open exec and core files read-only or read-write. */
58
59int write_files = 0;
60
818de002
PB
61extern int info_verbose;
62
41abdfbd
JG
63bfd *exec_bfd; /* needed by core.c */
64
65extern char *getenv();
66extern void child_create_inferior (), child_attach ();
67extern void add_syms_addr_command ();
68extern void symbol_file_command ();
69static void exec_files_info();
818de002 70extern struct objfile *lookup_objfile_bfd ();
41abdfbd 71
1eeba686 72#if 0
41abdfbd
JG
73/*
74 * the vmap struct is used to describe the virtual address space of
75 * the target we are manipulating. The first entry is always the "exec"
76 * file. Subsequent entries correspond to other objects that are
77 * mapped into the address space of a process created from the "exec" file.
78 * These are either in response to exec()ing the file, in which case all
79 * shared libraries are loaded, or a "load" system call, followed by the
80 * user's issuance of a "load" command.
81 */
82struct vmap {
83 struct vmap *nxt; /* ^ to next in chain */
84 bfd *bfd; /* BFD for mappable object library */
85 char *name; /* ^ to object file name */
86 char *member; /* ^ to member name */
87 CORE_ADDR tstart; /* virtual addr where member is mapped */
88 CORE_ADDR tend; /* virtual upper bound of member */
89 CORE_ADDR tadj; /* heuristically derived adjustment */
90 CORE_ADDR dstart; /* virtual address of data start */
91 CORE_ADDR dend; /* vitrual address of data end */
92};
93
94
95struct vmap_and_bfd {
96 bfd *pbfd;
97 struct vmap *pvmap;
98};
99
100static struct vmap *vmap; /* current vmap */
1eeba686
PB
101#endif /* 0 */
102
103struct vmap *vmap; /* current vmap */
41abdfbd
JG
104
105extern struct target_ops exec_ops;
106
107
108/* exec_close - done with exec file, clean up all resources. */
109
1ab3bf1b 110static void
818de002
PB
111exec_close(quitting)
112{
113 register struct vmap *vp, *nxt;
114 struct objfile *obj;
115
116 for (nxt = vmap; vp = nxt; )
117 {
118 nxt = vp->nxt;
119
120 /* if there is an objfile associated with this bfd,
121 free_objfile() will do proper cleanup of objfile *and* bfd. */
122
123 if (obj = lookup_objfile_bfd (vp->bfd))
124 free_objfile (obj);
125 else
126 bfd_close(vp->bfd);
127
128 free_named_symtabs(vp->name);
129 free(vp);
130 }
131
132 vmap = 0;
507e4004
PB
133
134 if (exec_bfd) {
135 bfd_close (exec_bfd);
136 exec_bfd = NULL;
137 }
138 if (exec_ops.to_sections) {
139 free (exec_ops.to_sections);
140 exec_ops.to_sections = NULL;
141 exec_ops.to_sections_end = NULL;
142 }
41abdfbd
JG
143}
144
145/*
146 * exec_file_command - handle the "exec" command, &c.
147 */
148void
149exec_file_command(filename, from_tty)
150char *filename;
151{
41abdfbd 152 target_preopen(from_tty);
507e4004
PB
153
154 /* Remove any previous exec file. */
41abdfbd
JG
155 unpush_target(&exec_ops);
156
157 /* Now open and digest the file the user requested, if any. */
158
159 if (filename) {
160 char *scratch_pathname;
161 int scratch_chan;
162
163 filename = tilde_expand(filename);
1ab3bf1b 164 make_cleanup (free, filename);
41abdfbd 165
507e4004
PB
166 scratch_chan = openp(getenv("PATH"), 1, filename,
167 write_files? O_RDWR: O_RDONLY, 0,
168 &scratch_pathname);
41abdfbd
JG
169 if (scratch_chan < 0)
170 perror_with_name(filename);
171
507e4004
PB
172 exec_bfd = bfd_fdopenr(scratch_pathname, NULL, scratch_chan);
173 if (!exec_bfd)
41abdfbd
JG
174 error("Could not open `%s' as an executable file: %s"
175 , scratch_pathname, bfd_errmsg(bfd_error));
176
177 /* make sure we have an object file */
178
507e4004
PB
179 if (!bfd_check_format(exec_bfd, bfd_object))
180 error("\"%s\": not in executable format: %s.",
181 scratch_pathname, bfd_errmsg(bfd_error));
41abdfbd
JG
182
183
184 /* setup initial vmap */
185
507e4004 186 map_vmap (exec_bfd, 0);
41abdfbd 187 if (!vmap)
507e4004
PB
188 error("Can't find the file sections in `%s': %s",
189 exec_bfd->filename, bfd_errmsg(bfd_error));
41abdfbd 190
507e4004
PB
191 if (build_section_table (exec_bfd, &exec_ops.to_sections,
192 &exec_ops.to_sections_end))
41abdfbd
JG
193 error ("Can't find the file sections in `%s': %s",
194 exec_bfd->filename, bfd_errmsg (bfd_error));
195
196 /* make sure core, if present, matches */
197 validate_files();
198
199 push_target(&exec_ops);
200
201 /* Tell display code(if any) about the changed file name. */
202
203 if (exec_file_display_hook)
204 (*exec_file_display_hook)(filename);
205 }
206 else {
207 exec_close(0); /* just in case */
208 if (from_tty)
209 printf("No exec file now.\n");
210 }
211}
212
213/* Set both the exec file and the symbol file, in one command. What a
214 * novelty. Why did GDB go through four major releases before this
215 * command was added?
216 */
1ab3bf1b 217static void
41abdfbd
JG
218file_command(arg, from_tty)
219char *arg; {
220
221 exec_file_command(arg, from_tty);
222 symbol_file_command(arg, from_tty);
223}
224
225/* Locate all mappable sections of a BFD file.
226 table_pp_char is a char * to get it through bfd_map_over_sections;
227 we cast it back to its proper type. */
228
1ab3bf1b 229static void
41abdfbd
JG
230add_to_section_table (abfd, asect, table_pp_char)
231 bfd *abfd;
232 sec_ptr asect;
233 char *table_pp_char;
234{
235 struct section_table **table_pp = (struct section_table **)table_pp_char;
236 flagword aflag;
237
238 aflag = bfd_get_section_flags (abfd, asect);
239 /* FIXME, we need to handle BSS segment here...it alloc's but doesn't load */
240 if (!(aflag & SEC_LOAD))
241 return;
507e4004
PB
242 if (0 == bfd_section_size (abfd, asect))
243 return;
244 (*table_pp)->bfd = abfd;
41abdfbd
JG
245 (*table_pp)->sec_ptr = asect;
246 (*table_pp)->addr = bfd_section_vma (abfd, asect);
247 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
248 (*table_pp)++;
249}
250
251int
252build_section_table (some_bfd, start, end)
253 bfd *some_bfd;
254 struct section_table **start, **end;
255{
256 unsigned count;
257
258 count = bfd_count_sections (some_bfd);
259 if (count == 0)
260 abort(); /* return 1? */
261 if (*start)
262 free (*start);
263 *start = (struct section_table *) xmalloc (count * sizeof (**start));
264 *end = *start;
265 bfd_map_over_sections (some_bfd, add_to_section_table, (char *)end);
266 if (*end > *start + count)
267 abort();
268 /* We could realloc the table, but it probably loses for most files. */
269 return 0;
270}
271
272/*
273 * lookup_symtab_bfd - find if we currently have any symbol tables from bfd
274 */
275struct objfile *
276lookup_objfile_bfd(bfd *bfd) {
277 register struct objfile *s;
278
279 for (s = object_files; s; s = s->next)
280 if (s->obfd == bfd)
281 return s;
282 return 0;
283}
284
285
286void
287sex_to_vmap(bfd *bf, sec_ptr sex, struct vmap_and_bfd *vmap_bfd)
288{
289 register struct vmap *vp, **vpp;
290 register struct symtab *syms;
291 bfd *arch = vmap_bfd->pbfd;
292 vp = vmap_bfd->pvmap;
293
294 if ((bfd_get_section_flags(bf, sex) & SEC_LOAD) == 0)
295 return;
296
297 if (!strcmp(bfd_section_name(bf, sex), ".text")) {
298 vp->tstart = 0;
299 vp->tend = vp->tstart + bfd_section_size(bf, sex);
300
507e4004
PB
301 /* When it comes to this adjustment value, in contrast to our previous
302 belief shared objects should behave the same as the main load segment.
303 This is the offset from the beginning of text section to the first
304 real instruction. */
305
306 vp->tadj = sex->filepos - bfd_section_vma(bf, sex);
41abdfbd
JG
307 }
308
309 else if (!strcmp(bfd_section_name(bf, sex), ".data")) {
310 vp->dstart = 0;
311 vp->dend = vp->dstart + bfd_section_size(bf, sex);
312 }
313
314 else if (!strcmp(bfd_section_name(bf, sex), ".bss")) /* FIXMEmgo */
315 printf ("bss section in exec! Don't know what the heck to do!\n");
316}
317
318/* Make a vmap for the BFD "bf", which might be a member of the archive
319 BFD "arch". If we have not yet read in symbols for this file, do so. */
320
321map_vmap (bfd *bf, bfd *arch)
322{
323 struct vmap_and_bfd vmap_bfd;
324 struct vmap *vp, **vpp;
325 struct objfile *obj;
41abdfbd
JG
326
327 vp = (void*) xmalloc (sizeof (*vp));
1eeba686 328 bzero (vp, sizeof (*vp));
41abdfbd
JG
329 vp->nxt = 0;
330 vp->bfd = bf;
331 vp->name = bfd_get_filename(arch ? arch : bf);
332 vp->member = arch ? bfd_get_filename(bf) : "";
333
334 vmap_bfd.pbfd = arch;
335 vmap_bfd.pvmap = vp;
336 bfd_map_over_sections (bf, sex_to_vmap, &vmap_bfd);
337
338 obj = lookup_objfile_bfd (bf);
339 if (exec_bfd && !obj) {
b0246b3b 340 obj = allocate_objfile (bf, 0);
1eeba686
PB
341
342#if 0
d1140eb5
FF
343 /* This is only needed if we want to load shared libraries no matter what.
344 Since we provide the choice of incremental loading of shared objects
427d778c 345 now, we do not have to load them as default anymore. */
1eeba686 346
4369a140 347 syms_from_objfile (obj, 0, 0, 0);
2d6d969c 348 new_symfile_objfile (obj, 0, 0);
1eeba686 349#endif
41abdfbd
JG
350 }
351
352 /* find the end of the list, and append. */
353 for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt)
354 ;
355 *vpp = vp;
356}
357
507e4004 358
1ab3bf1b 359/* true, if symbol table and minimal symbol table are relocated. */
41abdfbd
JG
360
361int symtab_relocated = 0;
362
363
364/* vmap_symtab - handle symbol translation on vmapping */
365
366vmap_symtab(vp, old_start, vip)
367register struct vmap *vp;
368CORE_ADDR old_start;
369struct stat *vip;
370{
1ab3bf1b
JG
371 register struct symtab *s;
372 register struct objfile *objfile;
84ffdec2 373 register struct minimal_symbol *msymbol;
1ab3bf1b
JG
374
375 /*
376 * for each symbol table generated from the vp->bfd
377 */
84ffdec2 378 ALL_OBJFILES (objfile)
1ab3bf1b
JG
379 {
380 for (s = objfile -> symtabs; s != NULL; s = s -> next) {
381
382 /* skip over if this is not relocatable and doesn't have a line table */
383 if (s->nonreloc && !LINETABLE (s))
384 continue;
385
386 /* matching the symbol table's BFD and the *vp's BFD is hairy.
387 exec_file creates a seperate BFD for possibly the
388 same file as symbol_file.FIXME ALL THIS MUST BE RECTIFIED. */
389
390 if (objfile->obfd == vp->bfd) {
391 /* if they match, we luck out. */
392 ;
393 } else if (vp->member[0]) {
394 /* no match, and member present, not this one. */
395 continue;
396 } else {
397 struct stat si;
398 FILE *io;
399
400 /*
401 * no match, and no member. need to be sure.
402 */
403 io = bfd_cache_lookup(objfile->obfd);
404 if (!io)
405 fatal("cannot find BFD's iostream for sym");
406 /*
407 * see if we are referring to the same file
408 */
409 if (fstat(fileno(io), &si) < 0)
410 fatal("cannot fstat BFD for sym");
411
1eeba686
PB
412 if (vip && (si.st_dev != vip->st_dev
413 || si.st_ino != vip->st_ino))
41abdfbd 414 continue;
41abdfbd 415 }
1ab3bf1b 416
507e4004
PB
417 if (vp->tstart != old_start) {
418
419 /* Once we find a relocation base address for one of the symtabs
420 in this objfile, it will be the same for all symtabs in this
421 objfile. Clean this algorithm. FIXME. */
422
423 for (; s; s = s->next)
424 if (!s->nonreloc || LINETABLE(s))
425 vmap_symtab_1(s, vp, old_start);
556f3d90
PB
426
427#if 0
428 Himm.., recently we nullified trampoline entry names in order not
429 to confuse them with real symbols. Appearently this turned into a
430 problem, and msymbol vector did not get relocated properly. If
431 msymbols have to have non-null names, then we should name
432 trampoline entries with empty strings.
433
434 ALL_MSYMBOLS (objfile, msymbol)
435#else
436 for (msymbol = objfile->msymbols;
437 msymbol->name || msymbol->address; (msymbol)++)
438#endif
439 if (msymbol->address < TEXT_SEGMENT_BASE)
440 msymbol -> address += vp->tstart - old_start;
441
507e4004
PB
442 break;
443 }
1ab3bf1b
JG
444 }
445 }
507e4004 446
818de002 447 if (vp->tstart != old_start) {
556f3d90
PB
448
449#if 0
450 We don't have a valid `objfile' at this point. This is moved into the
451 previous statement; ALL_OBJFILES() for-loop.
452
84ffdec2
JG
453 ALL_MSYMBOLS (objfile, msymbol)
454 if (msymbol->address < TEXT_SEGMENT_BASE)
455 msymbol -> address += vp->tstart - old_start;
556f3d90 456#endif /* 0 */
818de002
PB
457
458 /* breakpoints need to be relocated as well. */
459 fixup_breakpoints (0, TEXT_SEGMENT_BASE, vp->tstart - old_start);
460 }
1ab3bf1b
JG
461
462 symtab_relocated = 1;
41abdfbd
JG
463}
464
507e4004 465
41abdfbd
JG
466vmap_symtab_1(s, vp, old_start)
467register struct symtab *s;
468register struct vmap *vp;
469CORE_ADDR old_start;
470{
471 register int i, j;
472 int len, blen;
473 register struct linetable *l;
474 struct blockvector *bv;
475 register struct block *b;
476 int depth;
477 register ulong reloc, dreloc;
478
479 if ((reloc = vp->tstart - old_start) == 0)
480 return;
481
482 dreloc = vp->dstart; /* data relocation */
483
484 /*
485 * The line table must be relocated. This is only present for
818de002 486 * .text sections, so only vp->text type maps need be considered.
41abdfbd
JG
487 */
488 l = LINETABLE (s);
818de002
PB
489 if (l) {
490 len = l->nitems;
491 for (i = 0; i < len; i++)
41abdfbd 492 l->item[i].pc += reloc;
818de002 493 }
41abdfbd
JG
494
495 /* if this symbol table is not relocatable, only line table should
496 be relocated and the rest ignored. */
497 if (s->nonreloc)
498 return;
499
500 bv = BLOCKVECTOR(s);
501 len = BLOCKVECTOR_NBLOCKS(bv);
502
503 for (i = 0; i < len; i++) {
504 b = BLOCKVECTOR_BLOCK(bv, i);
505
506 BLOCK_START(b) += reloc;
507 BLOCK_END(b) += reloc;
508
509 blen = BLOCK_NSYMS(b);
510 for (j = 0; j < blen; j++) {
511 register struct symbol *sym;
512
513 sym = BLOCK_SYM(b, j);
514 switch (SYMBOL_NAMESPACE(sym)) {
515 case STRUCT_NAMESPACE:
516 case UNDEF_NAMESPACE:
517 continue;
518
519 case LABEL_NAMESPACE:
520 case VAR_NAMESPACE:
521 break;
522 }
523
524 switch (SYMBOL_CLASS(sym)) {
525 case LOC_CONST:
526 case LOC_CONST_BYTES:
527 case LOC_LOCAL:
528 case LOC_REGISTER:
529 case LOC_ARG:
530 case LOC_LOCAL_ARG:
531 case LOC_REF_ARG:
532 case LOC_REGPARM:
533 case LOC_TYPEDEF:
534 continue;
535
536#ifdef FIXME
537 case LOC_EXTERNAL:
538#endif
539 case LOC_LABEL:
540 SYMBOL_VALUE_ADDRESS(sym) += reloc;
541 break;
542
543 case LOC_STATIC:
544 SYMBOL_VALUE_ADDRESS(sym) += dreloc;
545 break;
546
547 case LOC_BLOCK:
548 break;
549
550 default:
551 fatal("botched symbol class %x"
552 , SYMBOL_CLASS(sym));
553 break;
554 }
555 }
556 }
557}
558
559/*
560 * add_vmap - add a new vmap entry based on ldinfo() information
561 */
562add_vmap(ldi)
563register struct ld_info *ldi; {
564 bfd *bfd, *last;
507e4004
PB
565 register char *mem, *objname;
566
567 /* This ldi structure was allocated using alloca() in
568 aixcoff_relocate_symtab(). Now we need to have persistent object
569 and member names, so we should save them. */
41abdfbd
JG
570
571 mem = ldi->ldinfo_filename + strlen(ldi->ldinfo_filename) + 1;
507e4004
PB
572 mem = savestring (mem, strlen (mem));
573 objname = savestring (ldi->ldinfo_filename, strlen (ldi->ldinfo_filename));
574
575 bfd = bfd_fdopenr(objname, NULL, ldi->ldinfo_fd);
41abdfbd 576 if (!bfd)
507e4004
PB
577 error("Could not open `%s' as an executable file: %s",
578 objname, bfd_errmsg(bfd_error));
41abdfbd
JG
579
580
581 /* make sure we have an object file */
582
583 if (bfd_check_format(bfd, bfd_object))
507e4004 584 map_vmap (bfd, 0);
41abdfbd
JG
585
586 else if (bfd_check_format(bfd, bfd_archive)) {
587 last = 0;
588 /*
589 * FIXME??? am I tossing BFDs? bfd?
590 */
591 while (last = bfd_openr_next_archived_file(bfd, last))
592 if (eq(mem, last->filename))
593 break;
594
595 if (!last) {
507e4004
PB
596 bfd_close(bfd);
597 /* FIXME -- should be error */
598 warning("\"%s\": member \"%s\" missing.", bfd->filename, mem);
599 return;
41abdfbd
JG
600 }
601
602 if (!bfd_check_format(last, bfd_object)) {
603 bfd_close(last); /* XXX??? */
604 goto obj_err;
605 }
606
607 map_vmap (last, bfd);
608 }
609 else {
610 obj_err:
611 bfd_close(bfd);
612/* FIXME -- should be error */
613 warning("\"%s\": not in executable format: %s."
507e4004 614 , objname, bfd_errmsg(bfd_error));
41abdfbd
JG
615 return;
616 }
617}
618
619
507e4004
PB
620/* As well as symbol tables, exec_sections need relocation. After
621 the inferior process' termination, there will be a relocated symbol
622 table exist with no corresponding inferior process. At that time, we
623 need to use `exec' bfd, rather than the inferior process's memory space
624 to look up symbols.
625
626 `exec_sections' need to be relocated only once, as long as the exec
627 file remains unchanged.
41abdfbd
JG
628*/
629vmap_exec ()
630{
631 static bfd *execbfd;
1e939db1
SG
632 int i;
633
41abdfbd
JG
634 if (execbfd == exec_bfd)
635 return;
636
637 execbfd = exec_bfd;
638
1e939db1
SG
639 if (!vmap || !exec_ops.to_sections)
640 error ("vmap_exec: vmap or exec_ops.to_sections == 0\n");
507e4004 641
1e939db1
SG
642 for (i=0; &exec_ops.to_sections[i] < exec_ops.to_sections_end; i++)
643 {
644 if (strcmp(".text", exec_ops.to_sections[i].sec_ptr->name) == 0)
645 {
646 exec_ops.to_sections[i].addr += vmap->tstart;
647 exec_ops.to_sections[i].endaddr += vmap->tstart;
648 }
649 else if (strcmp(".data", exec_ops.to_sections[i].sec_ptr->name) == 0)
650 {
651 exec_ops.to_sections[i].addr += vmap->dstart;
652 exec_ops.to_sections[i].endaddr += vmap->dstart;
653 }
654 }
41abdfbd
JG
655}
656
657
658int
659text_adjustment (abfd)
660bfd *abfd;
661{
662 static bfd *execbfd;
663 static int adjustment;
664 sec_ptr sect;
665
666 if (exec_bfd == execbfd)
667 return adjustment;
668
669 sect = bfd_get_section_by_name (abfd, ".text");
670 if (sect)
671 adjustment = sect->filepos - sect->vma;
672 else
673 adjustment = 0x200; /* just a wild assumption */
674
675 return adjustment;
676}
677
678
679/*
680 * vmap_ldinfo - update VMAP info with ldinfo() information
681 *
682 * Input:
683 * ldi - ^ to ldinfo() results.
684 */
685vmap_ldinfo(ldi)
686register struct ld_info *ldi;
687{
688 struct stat ii, vi;
689 register struct vmap *vp;
690 register got_one, retried;
691 CORE_ADDR ostart;
692
693 /*
694 * for each *ldi, see if we have a corresponding *vp
695 * if so, update the mapping, and symbol table.
696 * if not, add an entry and symbol table.
697 */
698 do {
699 char *name = ldi->ldinfo_filename;
700 char *memb = name + strlen(name) + 1;
701
702 retried = 0;
703
704 if (fstat(ldi->ldinfo_fd, &ii) < 0)
705 fatal("cannot fstat(%d) on %s"
706 , ldi->ldinfo_fd
707 , name);
708retry:
709 for (got_one = 0, vp = vmap; vp; vp = vp->nxt) {
1eeba686
PB
710 FILE *io;
711
712 /* First try to find a `vp', which is the same as in ldinfo.
713 If not the same, just continue and grep the next `vp'. If same,
714 relocate its tstart, tend, dstart, dend values. If no such `vp'
715 found, get out of this for loop, add this ldi entry as a new vmap
716 (add_vmap) and come back, fins its `vp' and so on... */
717
718 /* The filenames are not always sufficient to match on. */
41abdfbd 719
1eeba686
PB
720 if ((name[0] == "/" && !eq(name, vp->name))
721 || (memb[0] && !eq(memb, vp->member)))
722 continue;
41abdfbd 723
1eeba686
PB
724 io = bfd_cache_lookup(vp->bfd); /* totally opaque! */
725 if (!io)
726 fatal("cannot find BFD's iostream for %s", vp->name);
41abdfbd 727
1eeba686 728 /* see if we are referring to the same file */
41abdfbd 729
1eeba686
PB
730 if (fstat(fileno(io), &vi) < 0)
731 fatal("cannot fstat BFD for %s", vp->name);
41abdfbd 732
1eeba686
PB
733 if (ii.st_dev != vi.st_dev || ii.st_ino != vi.st_ino)
734 continue;
41abdfbd 735
1eeba686
PB
736 if (!retried)
737 close(ldi->ldinfo_fd);
41abdfbd 738
1eeba686 739 ++got_one;
41abdfbd 740
1eeba686
PB
741 /* found a corresponding VMAP. remap! */
742 ostart = vp->tstart;
41abdfbd 743
1eeba686
PB
744 vp->tstart = ldi->ldinfo_textorg;
745 vp->tend = vp->tstart + ldi->ldinfo_textsize;
746 vp->dstart = ldi->ldinfo_dataorg;
747 vp->dend = vp->dstart + ldi->ldinfo_datasize;
41abdfbd 748
1eeba686
PB
749 if (vp->tadj) {
750 vp->tstart += vp->tadj;
751 vp->tend += vp->tadj;
752 }
753
754 /* relocate symbol table(s). */
755 vmap_symtab(vp, ostart, &vi);
41abdfbd 756
1eeba686 757 /* there may be more, so we don't break out of the loop. */
41abdfbd
JG
758 }
759
1eeba686
PB
760 /* if there was no matching *vp, we must perforce create the sucker(s) */
761 if (!got_one && !retried) {
762 add_vmap(ldi);
763 ++retried;
764 goto retry;
41abdfbd
JG
765 }
766 } while (ldi->ldinfo_next
767 && (ldi = (void *) (ldi->ldinfo_next + (char *) ldi)));
768
41abdfbd
JG
769}
770
771/*
772 * vmap_inferior - print VMAP info for inferior
773 */
774vmap_inferior() {
775
776 if (inferior_pid == 0)
507e4004 777 return 0; /* normal processing */
41abdfbd
JG
778
779 exec_files_info();
41abdfbd
JG
780 return 1;
781}
782
783/* Read or write the exec file.
784
785 Args are address within exec file, address within gdb address-space,
786 length, and a flag indicating whether to read or write.
787
788 Result is a length:
789
790 0: We cannot handle this address and length.
791 > 0: We have handled N bytes starting at this address.
792 (If N == length, we did it all.) We might be able
793 to handle more bytes beyond this length, but no
794 promises.
795 < 0: We cannot handle this address, but if somebody
796 else handles (-N) bytes, we can start from there.
797
798 The same routine is used to handle both core and exec files;
799 we just tail-call it with more arguments to select between them. */
800
801int
818de002 802xfer_memory (memaddr, myaddr, len, write, target)
41abdfbd
JG
803 CORE_ADDR memaddr;
804 char *myaddr;
805 int len;
806 int write;
818de002 807 struct target_ops *target;
41abdfbd
JG
808{
809 boolean res;
810 struct section_table *p;
811 CORE_ADDR nextsectaddr, memend;
818de002 812 boolean (*xfer_fn) PARAMS ((bfd *, sec_ptr, PTR, file_ptr, bfd_size_type));
41abdfbd
JG
813
814 if (len <= 0)
815 abort();
816
817 memend = memaddr + len;
818 xfer_fn = write? bfd_set_section_contents: bfd_get_section_contents;
819 nextsectaddr = memend;
820
818de002 821 for (p = target->to_sections; p < target->to_sections_end; p++)
41abdfbd
JG
822 {
823 if (p->addr <= memaddr)
824 if (p->endaddr >= memend)
825 {
826 /* Entire transfer is within this section. */
818de002 827 res = xfer_fn (p->bfd, p->sec_ptr, myaddr, memaddr - p->addr, len);
41abdfbd
JG
828 return (res != false)? len: 0;
829 }
830 else if (p->endaddr <= memaddr)
831 {
832 /* This section ends before the transfer starts. */
833 continue;
834 }
835 else
836 {
837 /* This section overlaps the transfer. Just do half. */
838 len = p->endaddr - memaddr;
818de002 839 res = xfer_fn (p->bfd, p->sec_ptr, myaddr, memaddr - p->addr, len);
41abdfbd
JG
840 return (res != false)? len: 0;
841 }
842 else if (p->addr < nextsectaddr)
843 nextsectaddr = p->addr;
844 }
845
846 if (nextsectaddr >= memend)
847 return 0; /* We can't help */
848 else
849 return - (nextsectaddr - memaddr); /* Next boundary where we can help */
850}
851
818de002
PB
852void
853print_section_info (t, abfd)
854 struct target_ops *t;
855 bfd *abfd;
41abdfbd 856{
818de002 857 struct section_table *p;
41abdfbd 858
818de002
PB
859 printf_filtered ("\t`%s', ", bfd_get_filename(abfd));
860 wrap_here (" ");
861 printf_filtered ("file type %s.\n", bfd_get_target(abfd));
862
863 for (p = t->to_sections; p < t->to_sections_end; p++) {
864 printf_filtered ("\t%s", local_hex_string_custom (p->addr, "08"));
865 printf_filtered (" - %s", local_hex_string_custom (p->endaddr, "08"));
866 if (info_verbose)
867 printf_filtered (" @ %s",
868 local_hex_string_custom (p->sec_ptr->filepos, "08"));
869 printf_filtered (" is %s", bfd_section_name (p->bfd, p->sec_ptr));
870 if (p->bfd != abfd) {
871 printf_filtered (" in %s", bfd_get_filename (p->bfd));
872 }
873 printf_filtered ("\n");
874 }
818de002
PB
875}
876
507e4004 877
818de002
PB
878static void
879exec_files_info (t)
880 struct target_ops *t;
881{
507e4004
PB
882 register struct vmap *vp = vmap;
883
818de002 884 print_section_info (t, exec_bfd);
507e4004
PB
885
886 if (!vp)
887 return;
888
1eeba686
PB
889 printf("\tMapping info for file `%s'.\n", vp->name);
890
891 printf("\t %8.8s %8.8s %8.8s %8.8s %8.8s %s\n",
892 "tstart", "tend", "dstart", "dend", "section", "file(member)");
507e4004
PB
893
894 for (; vp; vp = vp->nxt)
1eeba686
PB
895 printf("\t0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x %s%s%s%s\n",
896 vp->tstart,
897 vp->tend,
898 vp->dstart,
899 vp->dend,
900 vp->name,
901 *vp->member ? "(" : "",
902 vp->member,
903 *vp->member ? ")" : "");
41abdfbd
JG
904}
905
906#ifdef DAMON
76b28d05 907/* Damon's implementation of set_section_command! It is based on the sex member
41abdfbd
JG
908 (which is a section pointer from vmap) of vmap.
909 We will not have multiple vmap entries (one for each section), rather transmit
910 text and data base offsets and fix them at the same time. Elimination of sex
911 entry in vmap make this function obsolute, use the one from exec.c.
76b28d05 912 Need further testing!! FIXMEmgo. */
41abdfbd
JG
913
914static void
915set_section_command(args, from_tty)
916char *args;
917{
918 register struct vmap *vp = vmap;
919 char *secname;
920 unsigned seclen;
921 unsigned long secaddr;
922 char secprint[100];
923 long offset;
924
925 if (args == 0)
926 error("Must specify section name and its virtual address");
927
928 /* Parse out section name */
929 for (secname = args; !isspace(*args); args++)
930 ;
931 seclen = args - secname;
932
933 /* Parse out new virtual address */
934 secaddr = parse_and_eval_address(args);
935
936 for (vp = vmap; vp; vp = vp->nxt) {
937 if (!strncmp(secname
938 , bfd_section_name(vp->bfd, vp->sex), seclen)
939 && bfd_section_name(vp->bfd, vp->sex)[seclen] == '\0') {
940 offset = secaddr - vp->tstart;
941 vp->tstart += offset;
942 vp->tend += offset;
943 exec_files_info();
944 return;
945 }
946 }
947
948 if (seclen >= sizeof(secprint))
949 seclen = sizeof(secprint) - 1;
950 strncpy(secprint, secname, seclen);
951 secprint[seclen] = '\0';
952 error("Section %s not found", secprint);
953}
954#else
955static void
956set_section_command (args, from_tty)
957 char *args;
958 int from_tty;
959{
960 struct section_table *p;
961 char *secname;
962 unsigned seclen;
963 unsigned long secaddr;
964 char secprint[100];
965 long offset;
966
967 if (args == 0)
968 error ("Must specify section name and its virtual address");
969
970 /* Parse out section name */
971 for (secname = args; !isspace(*args); args++) ;
972 seclen = args - secname;
973
974 /* Parse out new virtual address */
975 secaddr = parse_and_eval_address (args);
976
507e4004 977 for (p = exec_ops.to_sections; p < exec_ops.to_sections_end; p++) {
41abdfbd
JG
978 if (!strncmp (secname, bfd_section_name (exec_bfd, p->sec_ptr), seclen)
979 && bfd_section_name (exec_bfd, p->sec_ptr)[seclen] == '\0') {
980 offset = secaddr - p->addr;
981 p->addr += offset;
982 p->endaddr += offset;
507e4004
PB
983 if (from_tty)
984 exec_files_info(&exec_ops);
41abdfbd
JG
985 return;
986 }
987 }
988 if (seclen >= sizeof (secprint))
989 seclen = sizeof (secprint) - 1;
990 strncpy (secprint, secname, seclen);
991 secprint[seclen] = '\0';
992 error ("Section %s not found", secprint);
993}
994
995#endif /* !DAMON */
996
997struct target_ops exec_ops = {
998 "exec", "Local exec file",
999 "Use an executable file as a target.\n\
1000Specify the filename of the executable file.",
1001 exec_file_command, exec_close, /* open, close */
1002 child_attach, 0, 0, 0, /* attach, detach, resume, wait, */
1003 0, 0, /* fetch_registers, store_registers, */
1004 0, 0, 0, /* prepare_to_store, conv_to, conv_from, */
818de002 1005 xfer_memory, exec_files_info,
41abdfbd
JG
1006 0, 0, /* insert_breakpoint, remove_breakpoint, */
1007 0, 0, 0, 0, 0, /* terminal stuff */
1008 0, 0, /* kill, load */
e17960fb 1009 0, /* lookup sym */
41abdfbd
JG
1010 child_create_inferior,
1011 0, /* mourn_inferior */
1012 file_stratum, 0, /* next */
1013 0, 1, 0, 0, 0, /* all mem, mem, stack, regs, exec */
1014 0, 0, /* section pointers */
1015 OPS_MAGIC, /* Always the last thing */
1016};
1017
1018
1019void
1020_initialize_exec()
1021{
1022
1023 add_com("file", class_files, file_command,
1024 "Use FILE as program to be debugged.\n\
1025It is read for its symbols, for getting the contents of pure memory,\n\
1026and it is the program executed when you use the `run' command.\n\
1027If FILE cannot be found as specified, your execution directory path\n\
1028($PATH) is searched for a command of that name.\n\
1029No arg means to have no executable file and no symbols.");
1030
1031 add_com("exec-file", class_files, exec_file_command,
1032 "Use FILE as program for getting contents of pure memory.\n\
1033If FILE cannot be found as specified, your execution directory path\n\
1034is searched for a command of that name.\n\
1035No arg means have no executable file.");
1036
1037 add_com("section", class_files, set_section_command,
1038 "Change the base address of section SECTION of the exec file to ADDR.\n\
1039This can be used if the exec file does not contain section addresses,\n\
1040(such as in the a.out format), or when the addresses specified in the\n\
1041file itself are wrong. Each section must be changed separately. The\n\
1042``info files'' command lists all the sections and their addresses.");
1043
1044 add_target(&exec_ops);
1045}
This page took 0.088479 seconds and 4 git commands to generate.