1 /* Definitions for BFD wrappers used by GDB.
3 Copyright (C) 2011-2013 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>. */
22 #include "gdb_assert.h"
23 #include "gdb_string.h"
27 #include "filestuff.h"
34 #define MAP_FAILED ((void *) -1)
38 /* An object of this type is stored in the section's user data when
41 struct gdb_bfd_section_data
43 /* Size of the data. */
45 /* If the data was mmapped, this is the length of the map. */
46 bfd_size_type map_len
;
47 /* The data. If NULL, the section data has not been read. */
49 /* If the data was mmapped, this is the map address. */
53 /* A hash table holding every BFD that gdb knows about. This is not
54 to be confused with 'gdb_bfd_cache', which is used for sharing
55 BFDs; in contrast, this hash is used just to implement
58 static htab_t all_bfds
;
63 gdb_bfd_stash_filename (struct bfd
*abfd
)
65 char *name
= bfd_get_filename (abfd
);
68 data
= bfd_alloc (abfd
, strlen (name
) + 1);
71 /* Unwarranted chumminess with BFD. */
72 abfd
->filename
= data
;
75 /* An object of this type is stored in each BFD's user data. */
79 /* The reference count. */
82 /* The mtime of the BFD at the point the cache entry was made. */
85 /* This is true if we have successfully computed the file's CRC. */
86 unsigned int crc_computed
: 1;
91 /* If the BFD comes from an archive, this points to the archive's
92 BFD. Otherwise, this is NULL. */
99 #define GDB_BFD_DATA_ACCESSOR(ABFD) \
100 ((struct gdb_bfd_data *) bfd_usrdata (ABFD))
102 DEFINE_REGISTRY (bfd
, GDB_BFD_DATA_ACCESSOR
)
104 /* A hash table storing all the BFDs maintained in the cache. */
106 static htab_t gdb_bfd_cache
;
108 /* The type of an object being looked up in gdb_bfd_cache. We use
109 htab's capability of storing one kind of object (BFD in this case)
110 and using a different sort of object for searching. */
112 struct gdb_bfd_cache_search
115 const char *filename
;
120 /* A hash function for BFDs. */
123 hash_bfd (const void *b
)
127 /* It is simplest to just hash the filename. */
128 return htab_hash_string (bfd_get_filename (abfd
));
131 /* An equality function for BFDs. Note that this expects the caller
132 to search using struct gdb_bfd_cache_search only, not BFDs. */
135 eq_bfd (const void *a
, const void *b
)
138 const struct gdb_bfd_cache_search
*s
= b
;
139 struct gdb_bfd_data
*gdata
= bfd_usrdata (abfd
);
141 return (gdata
->mtime
== s
->mtime
142 && strcmp (bfd_get_filename (abfd
), s
->filename
) == 0);
148 gdb_bfd_open (const char *name
, const char *target
, int fd
)
153 struct gdb_bfd_cache_search search
;
156 if (gdb_bfd_cache
== NULL
)
157 gdb_bfd_cache
= htab_create_alloc (1, hash_bfd
, eq_bfd
, NULL
,
162 fd
= gdb_open_cloexec (name
, O_RDONLY
| O_BINARY
, 0);
165 bfd_set_error (bfd_error_system_call
);
170 search
.filename
= name
;
171 if (fstat (fd
, &st
) < 0)
173 /* Weird situation here. */
177 search
.mtime
= st
.st_mtime
;
179 /* Note that this must compute the same result as hash_bfd. */
180 hash
= htab_hash_string (name
);
181 /* Note that we cannot use htab_find_slot_with_hash here, because
182 opening the BFD may fail; and this would violate hashtab
184 abfd
= htab_find_with_hash (gdb_bfd_cache
, &search
, hash
);
192 abfd
= bfd_fopen (name
, target
, FOPEN_RB
, fd
);
196 slot
= htab_find_slot_with_hash (gdb_bfd_cache
, &search
, hash
, INSERT
);
200 gdb_bfd_stash_filename (abfd
);
205 /* A helper function that releases any section data attached to the
209 free_one_bfd_section (bfd
*abfd
, asection
*sectp
, void *ignore
)
211 struct gdb_bfd_section_data
*sect
= bfd_get_section_userdata (abfd
, sectp
);
213 if (sect
!= NULL
&& sect
->data
!= NULL
)
216 if (sect
->map_addr
!= NULL
)
220 res
= munmap (sect
->map_addr
, sect
->map_len
);
221 gdb_assert (res
== 0);
229 /* Close ABFD, and warn if that fails. */
232 gdb_bfd_close_or_warn (struct bfd
*abfd
)
235 char *name
= bfd_get_filename (abfd
);
237 bfd_map_over_sections (abfd
, free_one_bfd_section
, NULL
);
239 ret
= bfd_close (abfd
);
242 warning (_("cannot close \"%s\": %s"),
243 name
, bfd_errmsg (bfd_get_error ()));
251 gdb_bfd_ref (struct bfd
*abfd
)
253 struct gdb_bfd_data
*gdata
;
259 gdata
= bfd_usrdata (abfd
);
267 /* Ask BFD to decompress sections in bfd_get_full_section_contents. */
268 abfd
->flags
|= BFD_DECOMPRESS
;
270 gdata
= bfd_zalloc (abfd
, sizeof (struct gdb_bfd_data
));
272 gdata
->mtime
= bfd_get_mtime (abfd
);
273 gdata
->archive_bfd
= NULL
;
274 bfd_usrdata (abfd
) = gdata
;
276 bfd_alloc_data (abfd
);
278 /* This is the first we've seen it, so add it to the hash table. */
279 slot
= htab_find_slot (all_bfds
, abfd
, INSERT
);
280 gdb_assert (slot
&& !*slot
);
287 gdb_bfd_unref (struct bfd
*abfd
)
289 struct gdb_bfd_data
*gdata
;
290 struct gdb_bfd_cache_search search
;
296 gdata
= bfd_usrdata (abfd
);
297 gdb_assert (gdata
->refc
>= 1);
303 archive_bfd
= gdata
->archive_bfd
;
304 search
.filename
= bfd_get_filename (abfd
);
306 if (gdb_bfd_cache
&& search
.filename
)
308 hashval_t hash
= htab_hash_string (search
.filename
);
311 search
.mtime
= gdata
->mtime
;
312 slot
= htab_find_slot_with_hash (gdb_bfd_cache
, &search
, hash
,
316 htab_clear_slot (gdb_bfd_cache
, slot
);
319 bfd_free_data (abfd
);
320 bfd_usrdata (abfd
) = NULL
; /* Paranoia. */
322 htab_remove_elt (all_bfds
, abfd
);
324 gdb_bfd_close_or_warn (abfd
);
326 gdb_bfd_unref (archive_bfd
);
329 /* A helper function that returns the section data descriptor
330 associated with SECTION. If no such descriptor exists, a new one
331 is allocated and cleared. */
333 static struct gdb_bfd_section_data
*
334 get_section_descriptor (asection
*section
)
336 struct gdb_bfd_section_data
*result
;
338 result
= bfd_get_section_userdata (section
->owner
, section
);
342 result
= bfd_zalloc (section
->owner
, sizeof (*result
));
343 bfd_set_section_userdata (section
->owner
, section
, result
);
352 gdb_bfd_map_section (asection
*sectp
, bfd_size_type
*size
)
355 struct gdb_bfd_section_data
*descriptor
;
358 gdb_assert ((sectp
->flags
& SEC_RELOC
) == 0);
359 gdb_assert (size
!= NULL
);
363 descriptor
= get_section_descriptor (sectp
);
365 /* If the data was already read for this BFD, just reuse it. */
366 if (descriptor
->data
!= NULL
)
370 if (!bfd_is_section_compressed (abfd
, sectp
))
372 /* The page size, used when mmapping. */
376 pagesize
= getpagesize ();
378 /* Only try to mmap sections which are large enough: we don't want
379 to waste space due to fragmentation. */
381 if (bfd_get_section_size (sectp
) > 4 * pagesize
)
383 descriptor
->size
= bfd_get_section_size (sectp
);
384 descriptor
->data
= bfd_mmap (abfd
, 0, descriptor
->size
, PROT_READ
,
385 MAP_PRIVATE
, sectp
->filepos
,
386 &descriptor
->map_addr
,
387 &descriptor
->map_len
);
389 if ((caddr_t
)descriptor
->data
!= MAP_FAILED
)
391 #if HAVE_POSIX_MADVISE
392 posix_madvise (descriptor
->map_addr
, descriptor
->map_len
,
393 POSIX_MADV_WILLNEED
);
398 /* On failure, clear out the section data and try again. */
399 memset (descriptor
, 0, sizeof (*descriptor
));
402 #endif /* HAVE_MMAP */
404 /* Handle compressed sections, or ordinary uncompressed sections in
407 descriptor
->size
= bfd_get_section_size (sectp
);
408 descriptor
->data
= NULL
;
411 if (!bfd_get_full_section_contents (abfd
, sectp
, &data
))
412 error (_("Can't read data for section '%s' in file '%s'"),
413 bfd_get_section_name (abfd
, sectp
),
414 bfd_get_filename (abfd
));
415 descriptor
->data
= data
;
418 gdb_assert (descriptor
->data
!= NULL
);
419 *size
= descriptor
->size
;
420 return descriptor
->data
;
423 /* Return 32-bit CRC for ABFD. If successful store it to *FILE_CRC_RETURN and
424 return 1. Otherwise print a warning and return 0. ABFD seek position is
428 get_file_crc (bfd
*abfd
, unsigned long *file_crc_return
)
430 unsigned long file_crc
= 0;
432 if (bfd_seek (abfd
, 0, SEEK_SET
) != 0)
434 warning (_("Problem reading \"%s\" for CRC: %s"),
435 bfd_get_filename (abfd
), bfd_errmsg (bfd_get_error ()));
441 gdb_byte buffer
[8 * 1024];
444 count
= bfd_bread (buffer
, sizeof (buffer
), abfd
);
445 if (count
== (bfd_size_type
) -1)
447 warning (_("Problem reading \"%s\" for CRC: %s"),
448 bfd_get_filename (abfd
), bfd_errmsg (bfd_get_error ()));
453 file_crc
= bfd_calc_gnu_debuglink_crc32 (file_crc
, buffer
, count
);
456 *file_crc_return
= file_crc
;
463 gdb_bfd_crc (struct bfd
*abfd
, unsigned long *crc_out
)
465 struct gdb_bfd_data
*gdata
= bfd_usrdata (abfd
);
467 if (!gdata
->crc_computed
)
468 gdata
->crc_computed
= get_file_crc (abfd
, &gdata
->crc
);
470 if (gdata
->crc_computed
)
471 *crc_out
= gdata
->crc
;
472 return gdata
->crc_computed
;
480 gdb_bfd_fopen (const char *filename
, const char *target
, const char *mode
,
483 bfd
*result
= bfd_fopen (filename
, target
, mode
, fd
);
487 gdb_bfd_stash_filename (result
);
488 gdb_bfd_ref (result
);
497 gdb_bfd_openr (const char *filename
, const char *target
)
499 bfd
*result
= bfd_openr (filename
, target
);
503 gdb_bfd_stash_filename (result
);
504 gdb_bfd_ref (result
);
513 gdb_bfd_openw (const char *filename
, const char *target
)
515 bfd
*result
= bfd_openw (filename
, target
);
519 gdb_bfd_stash_filename (result
);
520 gdb_bfd_ref (result
);
529 gdb_bfd_openr_iovec (const char *filename
, const char *target
,
530 void *(*open_func
) (struct bfd
*nbfd
,
533 file_ptr (*pread_func
) (struct bfd
*nbfd
,
538 int (*close_func
) (struct bfd
*nbfd
,
540 int (*stat_func
) (struct bfd
*abfd
,
544 bfd
*result
= bfd_openr_iovec (filename
, target
,
545 open_func
, open_closure
,
546 pread_func
, close_func
, stat_func
);
550 gdb_bfd_ref (result
);
551 gdb_bfd_stash_filename (result
);
560 gdb_bfd_mark_parent (bfd
*child
, bfd
*parent
)
562 struct gdb_bfd_data
*gdata
;
565 /* No need to stash the filename here, because we also keep a
566 reference on the parent archive. */
568 gdata
= bfd_usrdata (child
);
569 if (gdata
->archive_bfd
== NULL
)
571 gdata
->archive_bfd
= parent
;
572 gdb_bfd_ref (parent
);
575 gdb_assert (gdata
->archive_bfd
== parent
);
581 gdb_bfd_openr_next_archived_file (bfd
*archive
, bfd
*previous
)
583 bfd
*result
= bfd_openr_next_archived_file (archive
, previous
);
586 gdb_bfd_mark_parent (result
, archive
);
594 gdb_bfd_fdopenr (const char *filename
, const char *target
, int fd
)
596 bfd
*result
= bfd_fdopenr (filename
, target
, fd
);
600 gdb_bfd_ref (result
);
601 gdb_bfd_stash_filename (result
);
609 gdb_static_assert (ARRAY_SIZE (_bfd_std_section
) == 4);
614 gdb_bfd_section_index (bfd
*abfd
, asection
*section
)
618 else if (section
== bfd_com_section_ptr
)
619 return bfd_count_sections (abfd
) + 1;
620 else if (section
== bfd_und_section_ptr
)
621 return bfd_count_sections (abfd
) + 2;
622 else if (section
== bfd_abs_section_ptr
)
623 return bfd_count_sections (abfd
) + 3;
624 else if (section
== bfd_ind_section_ptr
)
625 return bfd_count_sections (abfd
) + 4;
626 return section
->index
;
632 gdb_bfd_count_sections (bfd
*abfd
)
634 return bfd_count_sections (abfd
) + 4;
639 /* A callback for htab_traverse that prints a single BFD. */
642 print_one_bfd (void **slot
, void *data
)
645 struct gdb_bfd_data
*gdata
= bfd_usrdata (abfd
);
646 struct ui_out
*uiout
= data
;
647 struct cleanup
*inner
;
649 inner
= make_cleanup_ui_out_tuple_begin_end (uiout
, NULL
);
650 ui_out_field_int (uiout
, "refcount", gdata
->refc
);
651 ui_out_field_string (uiout
, "addr", host_address_to_string (abfd
));
652 ui_out_field_string (uiout
, "filename", bfd_get_filename (abfd
));
653 ui_out_text (uiout
, "\n");
659 /* Implement the 'maint info bfd' command. */
662 maintenance_info_bfds (char *arg
, int from_tty
)
664 struct cleanup
*cleanup
;
665 struct ui_out
*uiout
= current_uiout
;
667 cleanup
= make_cleanup_ui_out_table_begin_end (uiout
, 3, -1, "bfds");
668 ui_out_table_header (uiout
, 10, ui_left
, "refcount", "Refcount");
669 ui_out_table_header (uiout
, 18, ui_left
, "addr", "Address");
670 ui_out_table_header (uiout
, 40, ui_left
, "filename", "Filename");
672 ui_out_table_body (uiout
);
673 htab_traverse (all_bfds
, print_one_bfd
, uiout
);
675 do_cleanups (cleanup
);
678 /* -Wmissing-prototypes */
679 extern initialize_file_ftype _initialize_gdb_bfd
;
682 _initialize_gdb_bfd (void)
684 all_bfds
= htab_create_alloc (10, htab_hash_pointer
, htab_eq_pointer
,
685 NULL
, xcalloc
, xfree
);
687 add_cmd ("bfds", class_maintenance
, maintenance_info_bfds
, _("\
688 List the BFDs that are currently open."),
689 &maintenanceinfolist
);