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