* Clean up xcoff relocation.
[external/binutils.git] / gdb / objfiles.c
1 /* GDB routines for manipulating objfiles.
2    Copyright 1992 Free Software Foundation, Inc.
3    Contributed by Cygnus Support, using pieces from other GDB modules.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 /* This file contains support routines for creating, manipulating, and
22    destroying objfile structures. */
23
24 #include "defs.h"
25 #include "bfd.h"                /* Binary File Description */
26 #include "symtab.h"
27 #include "symfile.h"
28 #include "objfiles.h"
29
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <obstack.h>
34
35 /* Prototypes for local functions */
36
37 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
38
39 static int
40 open_existing_mapped_file PARAMS ((char *, long, int));
41
42 static int
43 open_mapped_file PARAMS ((char *filename, long mtime, int mapped));
44
45 static CORE_ADDR
46 map_to_address PARAMS ((void));
47
48 #endif  /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
49
50 /* Message to be printed before the error message, when an error occurs.  */
51
52 extern char *error_pre_print;
53
54 /* Externally visible variables that are owned by this module.
55    See declarations in objfile.h for more info. */
56
57 struct objfile *object_files;           /* Linked list of all objfiles */
58 struct objfile *current_objfile;        /* For symbol file being read in */
59 struct objfile *symfile_objfile;        /* Main symbol table loaded from */
60
61 int mapped_symbol_files;                /* Try to use mapped symbol files */
62
63 /* Given a pointer to an initialized bfd (ABFD) and a flag that indicates
64    whether or not an objfile is to be mapped (MAPPED), allocate a new objfile
65    struct, fill it in as best we can, link it into the list of all known
66    objfiles, and return a pointer to the new objfile struct. */
67
68 struct objfile *
69 allocate_objfile (abfd, mapped)
70      bfd *abfd;
71      int mapped;
72 {
73   struct objfile *objfile = NULL;
74   int fd;
75   void *md;
76   CORE_ADDR mapto;
77
78   mapped |= mapped_symbol_files;
79
80 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
81
82   /* If we can support mapped symbol files, try to open/reopen the mapped file
83      that corresponds to the file from which we wish to read symbols.  If the
84      objfile is to be mapped, we must malloc the structure itself using the
85      mmap version, and arrange that all memory allocation for the objfile uses
86      the mmap routines.  If we are reusing an existing mapped file, from which
87      we get our objfile pointer, we have to make sure that we update the
88      pointers to the alloc/free functions in the obstack, in case these
89      functions have moved within the current gdb. */
90
91   fd = open_mapped_file (bfd_get_filename (abfd), bfd_get_mtime (abfd),
92                          mapped);
93   if (fd >= 0)
94     {
95       if (((mapto = map_to_address ()) == 0) ||
96           ((md = mmalloc_attach (fd, (void *) mapto)) == NULL))
97         {
98           close (fd);
99         }
100       else if ((objfile = (struct objfile *) mmalloc_getkey (md, 0)) != NULL)
101         {
102           /* Update memory corruption handler function addresses. */
103           init_malloc (md);
104           objfile -> md = md;
105           objfile -> mmfd = fd;
106           /* Update pointers to functions to *our* copies */
107           obstack_chunkfun (&objfile -> psymbol_obstack, xmmalloc);
108           obstack_freefun (&objfile -> psymbol_obstack, mfree);
109           obstack_chunkfun (&objfile -> symbol_obstack, xmmalloc);
110           obstack_freefun (&objfile -> symbol_obstack, mfree);
111           obstack_chunkfun (&objfile -> type_obstack, xmmalloc);
112           obstack_freefun (&objfile -> type_obstack, mfree);
113           /* If already in objfile list, unlink it. */
114           unlink_objfile (objfile);
115           /* Forget things specific to a particular gdb, may have changed. */
116           objfile -> sf = NULL;
117         }
118       else
119         {
120           /* Set up to detect internal memory corruption.  MUST be done before
121              the first malloc.  See comments in init_malloc() and mmcheck(). */
122           init_malloc (md);
123           objfile = (struct objfile *) xmmalloc (md, sizeof (struct objfile));
124           memset (objfile, 0, sizeof (struct objfile));
125           objfile -> md = md;
126           objfile -> mmfd = fd;
127           objfile -> flags |= OBJF_MAPPED;
128           mmalloc_setkey (objfile -> md, 0, objfile);
129           obstack_specify_allocation_with_arg (&objfile -> psymbol_obstack,
130                                                0, 0, xmmalloc, mfree,
131                                                objfile -> md);
132           obstack_specify_allocation_with_arg (&objfile -> symbol_obstack,
133                                                0, 0, xmmalloc, mfree,
134                                                objfile -> md);
135           obstack_specify_allocation_with_arg (&objfile -> type_obstack,
136                                                0, 0, xmmalloc, mfree,
137                                                objfile -> md);
138         }
139     }
140
141   if (mapped && (objfile == NULL))
142     {
143       warning ("symbol table for '%s' will not be mapped",
144                bfd_get_filename (abfd));
145     }
146
147 #else   /* defined(NO_MMALLOC) || !defined(HAVE_MMAP) */
148
149   if (mapped)
150     {
151       warning ("this version of gdb does not support mapped symbol tables.");
152
153       /* Turn off the global flag so we don't try to do mapped symbol tables
154          any more, which shuts up gdb unless the user specifically gives the
155          "mapped" keyword again. */
156
157       mapped_symbol_files = 0;
158     }
159
160 #endif  /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
161
162   /* If we don't support mapped symbol files, didn't ask for the file to be
163      mapped, or failed to open the mapped file for some reason, then revert
164      back to an unmapped objfile. */
165
166   if (objfile == NULL)
167     {
168       objfile = (struct objfile *) xmalloc (sizeof (struct objfile));
169       memset (objfile, 0, sizeof (struct objfile));
170       objfile -> md = NULL;
171       obstack_specify_allocation (&objfile -> psymbol_obstack, 0, 0, xmalloc,
172                                   free);
173       obstack_specify_allocation (&objfile -> symbol_obstack, 0, 0, xmalloc,
174                                   free);
175       obstack_specify_allocation (&objfile -> type_obstack, 0, 0, xmalloc,
176                                   free);
177     }
178
179   /* Update the per-objfile information that comes from the bfd, ensuring
180      that any data that is reference is saved in the per-objfile data
181      region. */
182
183   objfile -> obfd = abfd;
184   if (objfile -> name != NULL)
185     {
186       mfree (objfile -> md, objfile -> name);
187     }
188   objfile -> name = mstrsave (objfile -> md, bfd_get_filename (abfd));
189   objfile -> mtime = bfd_get_mtime (abfd);
190
191   /* Push this file onto the head of the linked list of other such files. */
192
193   objfile -> next = object_files;
194   object_files = objfile;
195
196   return (objfile);
197 }
198
199 /* Unlink OBJFILE from the list of known objfiles, if it is found in the
200    list.
201
202    It is not a bug, or error, to call this function if OBJFILE is not known
203    to be in the current list.  This is done in the case of mapped objfiles,
204    for example, just to ensure that the mapped objfile doesn't appear twice
205    in the list.  Since the list is threaded, linking in a mapped objfile
206    twice would create a circular list.
207
208    If OBJFILE turns out to be in the list, we zap it's NEXT pointer after
209    unlinking it, just to ensure that we have completely severed any linkages
210    between the OBJFILE and the list. */
211
212 void
213 unlink_objfile (objfile)
214      struct objfile *objfile;
215 {
216   struct objfile** objpp;
217
218   for (objpp = &object_files; *objpp != NULL; objpp = &((*objpp) -> next))
219     {
220       if (*objpp == objfile) 
221         {
222           *objpp = (*objpp) -> next;
223           objfile -> next = NULL;
224           break;
225         }
226     }
227 }
228
229
230 /* Destroy an objfile and all the symtabs and psymtabs under it.  Note
231    that as much as possible is allocated on the symbol_obstack and
232    psymbol_obstack, so that the memory can be efficiently freed.
233
234    Things which we do NOT free because they are not in malloc'd memory
235    or not in memory specific to the objfile include:
236
237         objfile -> sf
238
239    FIXME:  If the objfile is using reusable symbol information (via mmalloc),
240    then we need to take into account the fact that more than one process
241    may be using the symbol information at the same time (when mmalloc is
242    extended to support cooperative locking).  When more than one process
243    is using the mapped symbol info, we need to be more careful about when
244    we free objects in the reusable area. */
245
246 void
247 free_objfile (objfile)
248      struct objfile *objfile;
249 {
250   int mmfd;
251
252   /* First do any symbol file specific actions required when we are
253      finished with a particular symbol file.  Note that if the objfile
254      is using reusable symbol information (via mmalloc) then each of
255      these routines is responsible for doing the correct thing, either
256      freeing things which are valid only during this particular gdb
257      execution, or leaving them to be reused during the next one. */
258
259   if (objfile -> sf != NULL)
260     {
261       (*objfile -> sf -> sym_finish) (objfile);
262     }
263
264   /* We always close the bfd. */
265
266   if (objfile -> obfd != NULL)
267     {
268       char *name = bfd_get_filename (objfile->obfd);
269       bfd_close (objfile -> obfd);
270       free (name);
271     }
272
273   /* Remove it from the chain of all objfiles. */
274
275   unlink_objfile (objfile);
276
277   /* Before the symbol table code was redone to make it easier to
278      selectively load and remove information particular to a specific
279      linkage unit, gdb used to do these things whenever the monolithic
280      symbol table was blown away.  How much still needs to be done
281      is unknown, but we play it safe for now and keep each action until
282      it is shown to be no longer needed. */
283      
284   clear_symtab_users_once ();
285 #if defined (CLEAR_SOLIB)
286   CLEAR_SOLIB ();
287 #endif
288   clear_pc_function_cache ();
289
290   /* The last thing we do is free the objfile struct itself for the
291      non-reusable case, or detach from the mapped file for the reusable
292      case.  Note that the mmalloc_detach or the mfree is the last thing
293      we can do with this objfile. */
294
295 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
296
297   if (objfile -> flags & OBJF_MAPPED)
298     {
299       /* Remember the fd so we can close it.  We can't close it before
300          doing the detach, and after the detach the objfile is gone. */
301       mmfd = objfile -> mmfd;
302       mmalloc_detach (objfile -> md);
303       objfile = NULL;
304       close (mmfd);
305     }
306
307 #endif  /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
308
309   /* If we still have an objfile, then either we don't support reusable
310      objfiles or this one was not reusable.  So free it normally. */
311
312   if (objfile != NULL)
313     {
314       if (objfile -> name != NULL)
315         {
316           mfree (objfile -> md, objfile -> name);
317         }
318       if (objfile->global_psymbols.list)
319         mfree (objfile->md, objfile->global_psymbols.list);
320       if (objfile->static_psymbols.list)
321         mfree (objfile->md, objfile->static_psymbols.list);
322       /* Free the obstacks for non-reusable objfiles */
323       obstack_free (&objfile -> psymbol_obstack, 0);
324       obstack_free (&objfile -> symbol_obstack, 0);
325       obstack_free (&objfile -> type_obstack, 0);
326       mfree (objfile -> md, objfile);
327       objfile = NULL;
328     }
329 }
330
331
332 /* Free all the object files at once.  */
333
334 void
335 free_all_objfiles ()
336 {
337   struct objfile *objfile, *temp;
338
339   ALL_OBJFILES_SAFE (objfile, temp)
340     {
341       free_objfile (objfile);
342     }
343 }
344 \f
345 /* Relocate OBJFILE to NEW_OFFSETS.  There should be OBJFILE->NUM_SECTIONS
346    entries in new_offsets.  */
347 void
348 objfile_relocate (objfile, new_offsets)
349      struct objfile *objfile;
350      struct section_offsets *new_offsets;
351 {
352   struct section_offsets *delta = (struct section_offsets *) alloca
353     (sizeof (struct section_offsets)
354      + objfile->num_sections * sizeof (delta->offsets));
355
356   {
357     int i;
358     int something_changed = 0;
359     for (i = 0; i < objfile->num_sections; ++i)
360       {
361         ANOFFSET (delta, i) =
362           ANOFFSET (new_offsets, i) - ANOFFSET (objfile->section_offsets, i);
363         if (ANOFFSET (delta, i) != 0)
364           something_changed = 1;
365       }
366     if (!something_changed)
367       return;
368   }
369
370   /* OK, get all the symtabs.  */
371   {
372     struct symtab *s;
373
374     for (s = objfile->symtabs; s; s = s->next)
375       {
376         struct linetable *l;
377         struct blockvector *bv;
378         int i;
379         
380         /* First the line table.  */
381         l = LINETABLE (s);
382         if (l)
383           {
384             for (i = 0; i < l->nitems; ++i)
385               l->item[i].pc += ANOFFSET (delta, s->block_line_section);
386           }
387
388         /* Don't relocate a shared blockvector more than once.  */
389         if (!s->primary)
390           continue;
391
392         bv = BLOCKVECTOR (s);
393         for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); ++i)
394           {
395             struct block *b;
396             int j;
397             
398             b = BLOCKVECTOR_BLOCK (bv, i);
399             BLOCK_START (b) += ANOFFSET (delta, s->block_line_section);
400             BLOCK_END (b) += ANOFFSET (delta, s->block_line_section);
401
402             for (j = 0; j < BLOCK_NSYMS (b); ++j)
403               {
404                 struct symbol *sym = BLOCK_SYM (b, j);
405                 /* The RS6000 code from which this was taken skipped
406                    any symbols in STRUCT_NAMESPACE or UNDEF_NAMESPACE.
407                    But I'm leaving out that test, on the theory that
408                    they can't possibly pass the tests below.  */
409                 if ((SYMBOL_CLASS (sym) == LOC_LABEL
410                      || SYMBOL_CLASS (sym) == LOC_STATIC)
411                     && SYMBOL_SECTION (sym) >= 0)
412                   {
413                     SYMBOL_VALUE_ADDRESS (sym) +=
414                       ANOFFSET (delta, SYMBOL_SECTION (sym));
415                   }
416               }
417           }
418       }
419   }
420
421   {
422     struct minimal_symbol *msym;
423     ALL_OBJFILE_MSYMBOLS (objfile, msym)
424       SYMBOL_VALUE_ADDRESS (msym) += ANOFFSET (delta, SYMBOL_SECTION (msym));
425   }
426
427   {
428     int i;
429     for (i = 0; i < objfile->num_sections; ++i)
430       ANOFFSET (objfile->section_offsets, i) = ANOFFSET (new_offsets, i);
431   }
432 }
433 \f
434 /* Many places in gdb want to test just to see if we have any partial
435    symbols available.  This function returns zero if none are currently
436    available, nonzero otherwise. */
437
438 int
439 have_partial_symbols ()
440 {
441   struct objfile *ofp;
442
443   ALL_OBJFILES (ofp)
444     {
445       if (ofp -> psymtabs != NULL)
446         {
447           return 1;
448         }
449     }
450   return 0;
451 }
452
453 /* Many places in gdb want to test just to see if we have any full
454    symbols available.  This function returns zero if none are currently
455    available, nonzero otherwise. */
456
457 int
458 have_full_symbols ()
459 {
460   struct objfile *ofp;
461
462   ALL_OBJFILES (ofp)
463     {
464       if (ofp -> symtabs != NULL)
465         {
466           return 1;
467         }
468     }
469   return 0;
470 }
471
472 /* Many places in gdb want to test just to see if we have any minimal
473    symbols available.  This function returns zero if none are currently
474    available, nonzero otherwise. */
475
476 int
477 have_minimal_symbols ()
478 {
479   struct objfile *ofp;
480
481   ALL_OBJFILES (ofp)
482     {
483       if (ofp -> msymbols != NULL)
484         {
485           return 1;
486         }
487     }
488   return 0;
489 }
490
491 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
492
493 /* Given the name of a mapped symbol file in SYMSFILENAME, and the timestamp
494    of the corresponding symbol file in MTIME, try to open an existing file
495    with the name SYMSFILENAME and verify it is more recent than the base
496    file by checking it's timestamp against MTIME.
497
498    If SYMSFILENAME does not exist (or can't be stat'd), simply returns -1.
499
500    If SYMSFILENAME does exist, but is out of date, we check to see if the
501    user has specified creation of a mapped file.  If so, we don't issue
502    any warning message because we will be creating a new mapped file anyway,
503    overwriting the old one.  If not, then we issue a warning message so that
504    the user will know why we aren't using this existing mapped symbol file.
505    In either case, we return -1.
506
507    If SYMSFILENAME does exist and is not out of date, but can't be opened for
508    some reason, then prints an appropriate system error message and returns -1.
509
510    Otherwise, returns the open file descriptor.  */
511
512 static int
513 open_existing_mapped_file (symsfilename, mtime, mapped)
514      char *symsfilename;
515      long mtime;
516      int mapped;
517 {
518   int fd = -1;
519   struct stat sbuf;
520
521   if (stat (symsfilename, &sbuf) == 0)
522     {
523       if (sbuf.st_mtime < mtime)
524         {
525           if (!mapped)
526             {
527               warning ("mapped symbol file `%s' is out of date, ignored it",
528                        symsfilename);
529             }
530         }
531       else if ((fd = open (symsfilename, O_RDWR)) < 0)
532         {
533           if (error_pre_print)
534             {
535               printf (error_pre_print);
536             }
537           print_sys_errmsg (symsfilename, errno);
538         }
539     }
540   return (fd);
541 }
542
543 /* Look for a mapped symbol file that corresponds to FILENAME and is more
544    recent than MTIME.  If MAPPED is nonzero, the user has asked that gdb
545    use a mapped symbol file for this file, so create a new one if one does
546    not currently exist.
547
548    If found, then return an open file descriptor for the file, otherwise
549    return -1.
550
551    This routine is responsible for implementing the policy that generates
552    the name of the mapped symbol file from the name of a file containing
553    symbols that gdb would like to read.  Currently this policy is to append
554    ".syms" to the name of the file.
555
556    This routine is also responsible for implementing the policy that
557    determines where the mapped symbol file is found (the search path).
558    This policy is that when reading an existing mapped file, a file of
559    the correct name in the current directory takes precedence over a
560    file of the correct name in the same directory as the symbol file.
561    When creating a new mapped file, it is always created in the current
562    directory.  This helps to minimize the chances of a user unknowingly
563    creating big mapped files in places like /bin and /usr/local/bin, and
564    allows a local copy to override a manually installed global copy (in
565    /bin for example).  */
566
567 static int
568 open_mapped_file (filename, mtime, mapped)
569      char *filename;
570      long mtime;
571      int mapped;
572 {
573   int fd;
574   char *symsfilename;
575
576   /* First try to open an existing file in the current directory, and
577      then try the directory where the symbol file is located. */
578
579   symsfilename = concat ("./", basename (filename), ".syms", (char *) NULL);
580   if ((fd = open_existing_mapped_file (symsfilename, mtime, mapped)) < 0)
581     {
582       free (symsfilename);
583       symsfilename = concat (filename, ".syms", (char *) NULL);
584       fd = open_existing_mapped_file (symsfilename, mtime, mapped);
585     }
586
587   /* If we don't have an open file by now, then either the file does not
588      already exist, or the base file has changed since it was created.  In
589      either case, if the user has specified use of a mapped file, then
590      create a new mapped file, truncating any existing one.  If we can't
591      create one, print a system error message saying why we can't.
592
593      By default the file is rw for everyone, with the user's umask taking
594      care of turning off the permissions the user wants off. */
595
596   if ((fd < 0) && mapped)
597     {
598       free (symsfilename);
599       symsfilename = concat ("./", basename (filename), ".syms",
600                              (char *) NULL);
601       if ((fd = open (symsfilename, O_RDWR | O_CREAT | O_TRUNC, 0666)) < 0)
602         {
603           if (error_pre_print)
604             {
605               printf (error_pre_print);
606             }
607           print_sys_errmsg (symsfilename, errno);
608         }
609     }
610
611   free (symsfilename);
612   return (fd);
613 }
614
615 /* Return the base address at which we would like the next objfile's
616    mapped data to start.
617
618    For now, we use the kludge that the configuration specifies a base
619    address to which it is safe to map the first mmalloc heap, and an
620    increment to add to this address for each successive heap.  There are
621    a lot of issues to deal with here to make this work reasonably, including:
622
623      Avoid memory collisions with existing mapped address spaces
624
625      Reclaim address spaces when their mmalloc heaps are unmapped
626
627      When mmalloc heaps are shared between processes they have to be
628      mapped at the same addresses in each
629
630      Once created, a mmalloc heap that is to be mapped back in must be
631      mapped at the original address.  I.E. each objfile will expect to
632      be remapped at it's original address.  This becomes a problem if
633      the desired address is already in use.
634
635      etc, etc, etc.
636
637  */
638
639
640 static CORE_ADDR
641 map_to_address ()
642 {
643
644 #if defined(MMAP_BASE_ADDRESS) && defined (MMAP_INCREMENT)
645
646   static CORE_ADDR next = MMAP_BASE_ADDRESS;
647   CORE_ADDR mapto = next;
648
649   next += MMAP_INCREMENT;
650   return (mapto);
651
652 #else
653
654   return (0);
655
656 #endif
657
658 }
659
660 #endif  /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */