1 /* GDB routines for manipulating objfiles.
2 Copyright 1992 Free Software Foundation, Inc.
3 Contributed by Cygnus Support, using pieces from other GDB modules.
5 This file is part of GDB.
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.
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.
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. */
21 /* This file contains support routines for creating, manipulating, and
22 destroying objfile structures. */
25 #include "bfd.h" /* Binary File Description */
30 #include <sys/types.h>
35 /* Prototypes for local functions */
37 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
40 open_existing_mapped_file PARAMS ((char *, long, int));
43 open_mapped_file PARAMS ((char *filename, long mtime, int mapped));
46 map_to_address PARAMS ((void));
48 #endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
50 /* Message to be printed before the error message, when an error occurs. */
52 extern char *error_pre_print;
54 /* Externally visible variables that are owned by this module.
55 See declarations in objfile.h for more info. */
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 */
61 int mapped_symbol_files; /* Try to use mapped symbol files */
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. */
69 allocate_objfile (abfd, mapped)
73 struct objfile *objfile = NULL;
78 mapped |= mapped_symbol_files;
80 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
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. */
91 fd = open_mapped_file (bfd_get_filename (abfd), bfd_get_mtime (abfd),
95 if (((mapto = map_to_address ()) == 0) ||
96 ((md = mmalloc_attach (fd, (void *) mapto)) == NULL))
100 else if ((objfile = (struct objfile *) mmalloc_getkey (md, 0)) != NULL)
102 /* Update memory corruption handler function addresses. */
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;
120 /* Set up to detect internal memory corruption. MUST be done before
121 the first malloc. See comments in init_malloc() and mmcheck(). */
123 objfile = (struct objfile *) xmmalloc (md, sizeof (struct objfile));
124 (void) memset (objfile, 0, sizeof (struct objfile));
126 objfile -> mmfd = fd;
127 objfile -> flags |= OBJF_MAPPED;
128 mmalloc_setkey (objfile -> md, 0, objfile);
129 obstack_full_begin (&objfile -> psymbol_obstack, 0, 0,
130 xmmalloc, mfree, objfile -> md,
131 OBSTACK_MMALLOC_LIKE);
132 obstack_full_begin (&objfile -> symbol_obstack, 0, 0,
133 xmmalloc, mfree, objfile -> md,
134 OBSTACK_MMALLOC_LIKE);
135 obstack_full_begin (&objfile -> type_obstack, 0, 0,
136 xmmalloc, mfree, objfile -> md,
137 OBSTACK_MMALLOC_LIKE);
141 if (mapped && (objfile == NULL))
143 warning ("symbol table for '%s' will not be mapped",
144 bfd_get_filename (abfd));
147 #else /* defined(NO_MMALLOC) || !defined(HAVE_MMAP) */
151 warning ("this version of gdb does not support mapped symbol tables.");
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. */
157 mapped_symbol_files = 0;
160 #endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
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. */
168 objfile = (struct objfile *) xmalloc (sizeof (struct objfile));
169 (void) memset (objfile, 0, sizeof (struct objfile));
170 objfile -> md = NULL;
171 obstack_full_begin (&objfile -> psymbol_obstack, 0, 0, xmalloc, free,
173 obstack_full_begin (&objfile -> symbol_obstack, 0, 0, xmalloc, free,
175 obstack_full_begin (&objfile -> type_obstack, 0, 0, xmalloc, free,
180 /* Update the per-objfile information that comes from the bfd, ensuring
181 that any data that is reference is saved in the per-objfile data
184 objfile -> obfd = abfd;
185 if (objfile -> name != NULL)
187 mfree (objfile -> md, objfile -> name);
189 objfile -> name = mstrsave (objfile -> md, bfd_get_filename (abfd));
190 objfile -> mtime = bfd_get_mtime (abfd);
192 /* Push this file onto the head of the linked list of other such files. */
194 objfile -> next = object_files;
195 object_files = objfile;
200 /* Unlink OBJFILE from the list of known objfiles, if it is found in the
203 It is not a bug, or error, to call this function if OBJFILE is not known
204 to be in the current list. This is done in the case of mapped objfiles,
205 for example, just to ensure that the mapped objfile doesn't appear twice
206 in the list. Since the list is threaded, linking in a mapped objfile
207 twice would create a circular list.
209 If OBJFILE turns out to be in the list, we zap it's NEXT pointer after
210 unlinking it, just to ensure that we have completely severed any linkages
211 between the OBJFILE and the list. */
214 unlink_objfile (objfile)
215 struct objfile *objfile;
217 struct objfile** objpp;
219 for (objpp = &object_files; *objpp != NULL; objpp = &((*objpp) -> next))
221 if (*objpp == objfile)
223 *objpp = (*objpp) -> next;
224 objfile -> next = NULL;
231 /* Destroy an objfile and all the symtabs and psymtabs under it. Note
232 that as much as possible is allocated on the symbol_obstack and
233 psymbol_obstack, so that the memory can be efficiently freed.
235 Things which we do NOT free because they are not in malloc'd memory
236 or not in memory specific to the objfile include:
240 FIXME: If the objfile is using reusable symbol information (via mmalloc),
241 then we need to take into account the fact that more than one process
242 may be using the symbol information at the same time (when mmalloc is
243 extended to support cooperative locking). When more than one process
244 is using the mapped symbol info, we need to be more careful about when
245 we free objects in the reusable area. */
248 free_objfile (objfile)
249 struct objfile *objfile;
254 /* First do any symbol file specific actions required when we are
255 finished with a particular symbol file. Note that if the objfile
256 is using reusable symbol information (via mmalloc) then each of
257 these routines is responsible for doing the correct thing, either
258 freeing things which are valid only during this particular gdb
259 execution, or leaving them to be reused during the next one. */
261 if (objfile -> sf != NULL)
263 (*objfile -> sf -> sym_finish) (objfile);
266 /* We always close the bfd. */
268 if (objfile -> obfd != NULL)
270 char *name = bfd_get_filename (objfile->obfd);
271 bfd_close (objfile -> obfd);
275 /* Remove it from the chain of all objfiles. */
277 unlink_objfile (objfile);
279 /* Before the symbol table code was redone to make it easier to
280 selectively load and remove information particular to a specific
281 linkage unit, gdb used to do these things whenever the monolithic
282 symbol table was blown away. How much still needs to be done
283 is unknown, but we play it safe for now and keep each action until
284 it is shown to be no longer needed. */
286 clear_symtab_users_once ();
287 #if defined (CLEAR_SOLIB)
290 clear_pc_function_cache ();
292 /* The last thing we do is free the objfile struct itself for the
293 non-reusable case, or detach from the mapped file for the reusable
294 case. Note that the mmalloc_detach or the mfree is the last thing
295 we can do with this objfile. */
297 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
299 if (objfile -> flags & OBJF_MAPPED)
301 /* Remember the fd so we can close it. We can't close it before
302 doing the detach, and after the detach the objfile is gone. */
303 mmfd = objfile -> mmfd;
304 mmalloc_detach (objfile -> md);
309 #endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
311 /* If we still have an objfile, then either we don't support reusable
312 objfiles or this one was not reusable. So free it normally. */
316 if (objfile -> name != NULL)
318 mfree (objfile -> md, objfile -> name);
320 if (objfile->global_psymbols.list)
321 mfree (objfile->md, objfile->global_psymbols.list);
322 if (objfile->static_psymbols.list)
323 mfree (objfile->md, objfile->static_psymbols.list);
324 /* Free the obstacks for non-reusable objfiles */
325 obstack_free (&objfile -> psymbol_obstack, 0);
326 obstack_free (&objfile -> symbol_obstack, 0);
327 obstack_free (&objfile -> type_obstack, 0);
328 mfree (objfile -> md, objfile);
334 /* Free all the object files at once. */
339 struct objfile *objfile, *temp;
341 ALL_OBJFILES_SAFE (objfile, temp)
343 free_objfile (objfile);
347 /* Many places in gdb want to test just to see if we have any partial
348 symbols available. This function returns zero if none are currently
349 available, nonzero otherwise. */
352 have_partial_symbols ()
358 if (ofp -> psymtabs != NULL)
366 /* Many places in gdb want to test just to see if we have any full
367 symbols available. This function returns zero if none are currently
368 available, nonzero otherwise. */
377 if (ofp -> symtabs != NULL)
385 /* Many places in gdb want to test just to see if we have any minimal
386 symbols available. This function returns zero if none are currently
387 available, nonzero otherwise. */
390 have_minimal_symbols ()
396 if (ofp -> msymbols != NULL)
404 #if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
406 /* Given the name of a mapped symbol file in SYMSFILENAME, and the timestamp
407 of the corresponding symbol file in MTIME, try to open an existing file
408 with the name SYMSFILENAME and verify it is more recent than the base
409 file by checking it's timestamp against MTIME.
411 If SYMSFILENAME does not exist (or can't be stat'd), simply returns -1.
413 If SYMSFILENAME does exist, but is out of date, we check to see if the
414 user has specified creation of a mapped file. If so, we don't issue
415 any warning message because we will be creating a new mapped file anyway,
416 overwriting the old one. If not, then we issue a warning message so that
417 the user will know why we aren't using this existing mapped symbol file.
418 In either case, we return -1.
420 If SYMSFILENAME does exist and is not out of date, but can't be opened for
421 some reason, then prints an appropriate system error message and returns -1.
423 Otherwise, returns the open file descriptor. */
426 open_existing_mapped_file (symsfilename, mtime, mapped)
434 if (stat (symsfilename, &sbuf) == 0)
436 if (sbuf.st_mtime < mtime)
440 warning ("mapped symbol file `%s' is out of date", symsfilename);
443 else if ((fd = open (symsfilename, O_RDWR)) < 0)
447 printf (error_pre_print);
449 print_sys_errmsg (symsfilename, errno);
455 /* Look for a mapped symbol file that corresponds to FILENAME and is more
456 recent than MTIME. If MAPPED is nonzero, the user has asked that gdb
457 use a mapped symbol file for this file, so create a new one if one does
460 If found, then return an open file descriptor for the file, otherwise
463 This routine is responsible for implementing the policy that generates
464 the name of the mapped symbol file from the name of a file containing
465 symbols that gdb would like to read. Currently this policy is to append
466 ".syms" to the name of the file.
468 This routine is also responsible for implementing the policy that
469 determines where the mapped symbol file is found (the search path).
470 This policy is that when reading an existing mapped file, a file of
471 the correct name in the current directory takes precedence over a
472 file of the correct name in the same directory as the symbol file.
473 When creating a new mapped file, it is always created in the current
474 directory. This helps to minimize the chances of a user unknowingly
475 creating big mapped files in places like /bin and /usr/local/bin, and
476 allows a local copy to override a manually installed global copy (in
477 /bin for example). */
480 open_mapped_file (filename, mtime, mapped)
488 /* First try to open an existing file in the current directory, and
489 then try the directory where the symbol file is located. */
491 symsfilename = concat ("./", basename (filename), ".syms", (char *) NULL);
492 if ((fd = open_existing_mapped_file (symsfilename, mtime, mapped)) < 0)
495 symsfilename = concat (filename, ".syms", (char *) NULL);
496 fd = open_existing_mapped_file (symsfilename, mtime, mapped);
499 /* If we don't have an open file by now, then either the file does not
500 already exist, or the base file has changed since it was created. In
501 either case, if the user has specified use of a mapped file, then
502 create a new mapped file, truncating any existing one. If we can't
503 create one, print a system error message saying why we can't.
505 By default the file is rw for everyone, with the user's umask taking
506 care of turning off the permissions the user wants off. */
508 if ((fd < 0) && mapped)
511 symsfilename = concat ("./", basename (filename), ".syms",
513 if ((fd = open (symsfilename, O_RDWR | O_CREAT | O_TRUNC, 0666)) < 0)
517 printf (error_pre_print);
519 print_sys_errmsg (symsfilename, errno);
527 /* Return the base address at which we would like the next objfile's
528 mapped data to start.
530 For now, we use the kludge that the configuration specifies a base
531 address to which it is safe to map the first mmalloc heap, and an
532 increment to add to this address for each successive heap. There are
533 a lot of issues to deal with here to make this work reasonably, including:
535 Avoid memory collisions with existing mapped address spaces
537 Reclaim address spaces when their mmalloc heaps are unmapped
539 When mmalloc heaps are shared between processes they have to be
540 mapped at the same addresses in each
542 Once created, a mmalloc heap that is to be mapped back in must be
543 mapped at the original address. I.E. each objfile will expect to
544 be remapped at it's original address. This becomes a problem if
545 the desired address is already in use.
556 #if defined(MMAP_BASE_ADDRESS) && defined (MMAP_INCREMENT)
558 static CORE_ADDR next = MMAP_BASE_ADDRESS;
559 CORE_ADDR mapto = next;
561 next += MMAP_INCREMENT;
572 #endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */