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