1 /* Definitions for BFD wrappers used by GDB.
3 Copyright (C) 2011-2022 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/>. */
25 #include "gdbsupport/filestuff.h"
29 #define MAP_FAILED ((void *) -1)
33 #include "gdb/fileio.h"
35 #include "cli/cli-style.h"
37 /* An object of this type is stored in the section's user data when
40 struct gdb_bfd_section_data
42 /* Size of the data. */
44 /* If the data was mmapped, this is the length of the map. */
45 bfd_size_type map_len
;
46 /* The data. If NULL, the section data has not been read. */
48 /* If the data was mmapped, this is the map address. */
52 /* A hash table holding every BFD that gdb knows about. This is not
53 to be confused with 'gdb_bfd_cache', which is used for sharing
54 BFDs; in contrast, this hash is used just to implement
57 static htab_t all_bfds
;
59 /* An object of this type is stored in each BFD's user data. */
63 /* Note that if ST is nullptr, then we simply fill in zeroes. */
64 gdb_bfd_data (bfd
*abfd
, struct stat
*st
)
65 : mtime (st
== nullptr ? 0 : st
->st_mtime
),
66 size (st
== nullptr ? 0 : st
->st_size
),
67 inode (st
== nullptr ? 0 : st
->st_ino
),
68 device_id (st
== nullptr ? 0 : st
->st_dev
),
69 relocation_computed (0),
70 needs_relocations (0),
79 /* The reference count. */
82 /* The mtime of the BFD at the point the cache entry was made. */
85 /* The file size (in bytes) at the point the cache entry was made. */
88 /* The inode of the file at the point the cache entry was made. */
91 /* The device id of the file at the point the cache entry was made. */
94 /* This is true if we have determined whether this BFD has any
95 sections requiring relocation. */
96 unsigned int relocation_computed
: 1;
98 /* This is true if any section needs relocation. */
99 unsigned int needs_relocations
: 1;
101 /* This is true if we have successfully computed the file's CRC. */
102 unsigned int crc_computed
: 1;
104 /* The file's CRC. */
105 unsigned long crc
= 0;
107 /* If the BFD comes from an archive, this points to the archive's
108 BFD. Otherwise, this is NULL. */
109 bfd
*archive_bfd
= nullptr;
111 /* Table of all the bfds this bfd has included. */
112 std::vector
<gdb_bfd_ref_ptr
> included_bfds
;
115 registry
<bfd
> registry_fields
;
119 registry_accessor
<bfd
>::get (bfd
*abfd
)
121 struct gdb_bfd_data
*gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
122 return &gdata
->registry_fields
;
125 /* A hash table storing all the BFDs maintained in the cache. */
127 static htab_t gdb_bfd_cache
;
129 /* When true gdb will reuse an existing bfd object if the filename,
130 modification time, and file size all match. */
132 static bool bfd_sharing
= true;
134 show_bfd_sharing (struct ui_file
*file
, int from_tty
,
135 struct cmd_list_element
*c
, const char *value
)
137 gdb_printf (file
, _("BFD sharing is %s.\n"), value
);
140 /* When true debugging of the bfd caches is enabled. */
142 static bool debug_bfd_cache
;
144 /* Print an "bfd-cache" debug statement. */
146 #define bfd_cache_debug_printf(fmt, ...) \
147 debug_prefixed_printf_cond (debug_bfd_cache, "bfd-cache", fmt, ##__VA_ARGS__)
150 show_bfd_cache_debug (struct ui_file
*file
, int from_tty
,
151 struct cmd_list_element
*c
, const char *value
)
153 gdb_printf (file
, _("BFD cache debugging is %s.\n"), value
);
156 /* The type of an object being looked up in gdb_bfd_cache. We use
157 htab's capability of storing one kind of object (BFD in this case)
158 and using a different sort of object for searching. */
160 struct gdb_bfd_cache_search
163 const char *filename
;
166 /* The file size (in bytes). */
168 /* The inode of the file. */
170 /* The device id of the file. */
174 /* A hash function for BFDs. */
177 hash_bfd (const void *b
)
179 const bfd
*abfd
= (const struct bfd
*) b
;
181 /* It is simplest to just hash the filename. */
182 return htab_hash_string (bfd_get_filename (abfd
));
185 /* An equality function for BFDs. Note that this expects the caller
186 to search using struct gdb_bfd_cache_search only, not BFDs. */
189 eq_bfd (const void *a
, const void *b
)
191 const bfd
*abfd
= (const struct bfd
*) a
;
192 const struct gdb_bfd_cache_search
*s
193 = (const struct gdb_bfd_cache_search
*) b
;
194 struct gdb_bfd_data
*gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
196 return (gdata
->mtime
== s
->mtime
197 && gdata
->size
== s
->size
198 && gdata
->inode
== s
->inode
199 && gdata
->device_id
== s
->device_id
200 && strcmp (bfd_get_filename (abfd
), s
->filename
) == 0);
206 is_target_filename (const char *name
)
208 return startswith (name
, TARGET_SYSROOT_PREFIX
);
214 gdb_bfd_has_target_filename (struct bfd
*abfd
)
216 return is_target_filename (bfd_get_filename (abfd
));
219 /* For `gdb_bfd_open_from_target_memory`. */
227 /* For `gdb_bfd_open_from_target_memory`. Opening the file is a no-op. */
230 mem_bfd_iovec_open (struct bfd
*abfd
, void *open_closure
)
235 /* For `gdb_bfd_open_from_target_memory`. Closing the file is just freeing the
236 base/size pair on our side. */
239 mem_bfd_iovec_close (struct bfd
*abfd
, void *stream
)
243 /* Zero means success. */
247 /* For `gdb_bfd_open_from_target_memory`. For reading the file, we just need to
248 pass through to target_read_memory and fix up the arguments and return
252 mem_bfd_iovec_pread (struct bfd
*abfd
, void *stream
, void *buf
,
253 file_ptr nbytes
, file_ptr offset
)
256 struct target_buffer
*buffer
= (struct target_buffer
*) stream
;
258 /* If this read will read all of the file, limit it to just the rest. */
259 if (offset
+ nbytes
> buffer
->size
)
260 nbytes
= buffer
->size
- offset
;
262 /* If there are no more bytes left, we've reached EOF. */
266 err
= target_read_memory (buffer
->base
+ offset
, (gdb_byte
*) buf
, nbytes
);
273 /* For `gdb_bfd_open_from_target_memory`. For statting the file, we only
274 support the st_size attribute. */
277 mem_bfd_iovec_stat (struct bfd
*abfd
, void *stream
, struct stat
*sb
)
279 struct target_buffer
*buffer
= (struct target_buffer
*) stream
;
281 memset (sb
, 0, sizeof (struct stat
));
282 sb
->st_size
= buffer
->size
;
289 gdb_bfd_open_from_target_memory (CORE_ADDR addr
, ULONGEST size
,
291 const char *filename
)
293 struct target_buffer
*buffer
= XNEW (struct target_buffer
);
297 return gdb_bfd_openr_iovec (filename
? filename
: "<in-memory>", target
,
305 /* Return the system error number corresponding to ERRNUM. */
308 fileio_errno_to_host (int errnum
)
352 case FILEIO_ENAMETOOLONG
:
358 /* bfd_openr_iovec OPEN_CLOSURE data for gdb_bfd_open. */
359 struct gdb_bfd_open_closure
365 /* Wrapper for target_fileio_open suitable for passing as the
366 OPEN_FUNC argument to gdb_bfd_openr_iovec. */
369 gdb_bfd_iovec_fileio_open (struct bfd
*abfd
, void *open_closure
)
371 const char *filename
= bfd_get_filename (abfd
);
372 int fd
, target_errno
;
374 gdb_bfd_open_closure
*oclosure
= (gdb_bfd_open_closure
*) open_closure
;
376 gdb_assert (is_target_filename (filename
));
378 fd
= target_fileio_open (oclosure
->inf
,
379 filename
+ strlen (TARGET_SYSROOT_PREFIX
),
380 FILEIO_O_RDONLY
, 0, oclosure
->warn_if_slow
,
384 errno
= fileio_errno_to_host (target_errno
);
385 bfd_set_error (bfd_error_system_call
);
389 stream
= XCNEW (int);
394 /* Wrapper for target_fileio_pread suitable for passing as the
395 PREAD_FUNC argument to gdb_bfd_openr_iovec. */
398 gdb_bfd_iovec_fileio_pread (struct bfd
*abfd
, void *stream
, void *buf
,
399 file_ptr nbytes
, file_ptr offset
)
401 int fd
= *(int *) stream
;
410 bytes
= target_fileio_pread (fd
, (gdb_byte
*) buf
+ pos
,
411 nbytes
- pos
, offset
+ pos
,
414 /* Success, but no bytes, means end-of-file. */
418 errno
= fileio_errno_to_host (target_errno
);
419 bfd_set_error (bfd_error_system_call
);
429 /* Warn that it wasn't possible to close a bfd for file NAME, because
433 gdb_bfd_close_warning (const char *name
, const char *reason
)
435 warning (_("cannot close \"%s\": %s"), name
, reason
);
438 /* Wrapper for target_fileio_close suitable for passing as the
439 CLOSE_FUNC argument to gdb_bfd_openr_iovec. */
442 gdb_bfd_iovec_fileio_close (struct bfd
*abfd
, void *stream
)
444 int fd
= *(int *) stream
;
449 /* Ignore errors on close. These may happen with remote
450 targets if the connection has already been torn down. */
453 target_fileio_close (fd
, &target_errno
);
455 catch (const gdb_exception
&ex
)
457 /* Also avoid crossing exceptions over bfd. */
458 gdb_bfd_close_warning (bfd_get_filename (abfd
),
459 ex
.message
->c_str ());
462 /* Zero means success. */
466 /* Wrapper for target_fileio_fstat suitable for passing as the
467 STAT_FUNC argument to gdb_bfd_openr_iovec. */
470 gdb_bfd_iovec_fileio_fstat (struct bfd
*abfd
, void *stream
,
473 int fd
= *(int *) stream
;
477 result
= target_fileio_fstat (fd
, sb
, &target_errno
);
480 errno
= fileio_errno_to_host (target_errno
);
481 bfd_set_error (bfd_error_system_call
);
487 /* A helper function to initialize the data that gdb attaches to each
491 gdb_bfd_init_data (struct bfd
*abfd
, struct stat
*st
)
493 struct gdb_bfd_data
*gdata
;
496 gdb_assert (bfd_usrdata (abfd
) == nullptr);
498 /* Ask BFD to decompress sections in bfd_get_full_section_contents. */
499 abfd
->flags
|= BFD_DECOMPRESS
;
501 gdata
= new gdb_bfd_data (abfd
, st
);
502 bfd_set_usrdata (abfd
, gdata
);
504 /* This is the first we've seen it, so add it to the hash table. */
505 slot
= htab_find_slot (all_bfds
, abfd
, INSERT
);
506 gdb_assert (slot
&& !*slot
);
513 gdb_bfd_open (const char *name
, const char *target
, int fd
,
519 struct gdb_bfd_cache_search search
;
522 if (is_target_filename (name
))
524 if (!target_filesystem_is_local ())
526 gdb_assert (fd
== -1);
528 gdb_bfd_open_closure open_closure
{ current_inferior (), warn_if_slow
};
529 return gdb_bfd_openr_iovec (name
, target
,
530 gdb_bfd_iovec_fileio_open
,
532 gdb_bfd_iovec_fileio_pread
,
533 gdb_bfd_iovec_fileio_close
,
534 gdb_bfd_iovec_fileio_fstat
);
537 name
+= strlen (TARGET_SYSROOT_PREFIX
);
540 if (gdb_bfd_cache
== NULL
)
541 gdb_bfd_cache
= htab_create_alloc (1, hash_bfd
, eq_bfd
, NULL
,
546 fd
= gdb_open_cloexec (name
, O_RDONLY
| O_BINARY
, 0).release ();
549 bfd_set_error (bfd_error_system_call
);
554 if (fstat (fd
, &st
) < 0)
556 /* Weird situation here -- don't cache if we can't stat. */
557 bfd_cache_debug_printf ("Could not stat %s - not caching", name
);
558 abfd
= bfd_fopen (name
, target
, FOPEN_RB
, fd
);
561 return gdb_bfd_ref_ptr::new_reference (abfd
);
564 search
.filename
= name
;
565 search
.mtime
= st
.st_mtime
;
566 search
.size
= st
.st_size
;
567 search
.inode
= st
.st_ino
;
568 search
.device_id
= st
.st_dev
;
570 /* Note that this must compute the same result as hash_bfd. */
571 hash
= htab_hash_string (name
);
572 /* Note that we cannot use htab_find_slot_with_hash here, because
573 opening the BFD may fail; and this would violate hashtab
575 abfd
= (struct bfd
*) htab_find_with_hash (gdb_bfd_cache
, &search
, hash
);
576 if (bfd_sharing
&& abfd
!= NULL
)
578 bfd_cache_debug_printf ("Reusing cached bfd %s for %s",
579 host_address_to_string (abfd
),
580 bfd_get_filename (abfd
));
582 return gdb_bfd_ref_ptr::new_reference (abfd
);
585 abfd
= bfd_fopen (name
, target
, FOPEN_RB
, fd
);
589 bfd_cache_debug_printf ("Creating new bfd %s for %s",
590 host_address_to_string (abfd
),
591 bfd_get_filename (abfd
));
595 slot
= htab_find_slot_with_hash (gdb_bfd_cache
, &search
, hash
, INSERT
);
600 /* It's important to pass the already-computed stat info here,
601 rather than, say, calling gdb_bfd_ref_ptr::new_reference. BFD by
602 default will "stat" the file each time bfd_get_mtime is called --
603 and since we already entered it into the hash table using this
604 mtime, if the file changed at the wrong moment, the race would
605 lead to a hash table corruption. */
606 gdb_bfd_init_data (abfd
, &st
);
607 return gdb_bfd_ref_ptr (abfd
);
610 /* A helper function that releases any section data attached to the
614 free_one_bfd_section (asection
*sectp
)
616 struct gdb_bfd_section_data
*sect
617 = (struct gdb_bfd_section_data
*) bfd_section_userdata (sectp
);
619 if (sect
!= NULL
&& sect
->data
!= NULL
)
622 if (sect
->map_addr
!= NULL
)
626 res
= munmap (sect
->map_addr
, sect
->map_len
);
627 gdb_assert (res
== 0);
635 /* Close ABFD, and warn if that fails. */
638 gdb_bfd_close_or_warn (struct bfd
*abfd
)
641 const char *name
= bfd_get_filename (abfd
);
643 for (asection
*sect
: gdb_bfd_sections (abfd
))
644 free_one_bfd_section (sect
);
646 ret
= bfd_close (abfd
);
649 gdb_bfd_close_warning (name
,
650 bfd_errmsg (bfd_get_error ()));
658 gdb_bfd_ref (struct bfd
*abfd
)
660 struct gdb_bfd_data
*gdata
;
665 gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
667 bfd_cache_debug_printf ("Increase reference count on bfd %s (%s)",
668 host_address_to_string (abfd
),
669 bfd_get_filename (abfd
));
677 /* Caching only happens via gdb_bfd_open, so passing nullptr here is
679 gdb_bfd_init_data (abfd
, nullptr);
685 gdb_bfd_unref (struct bfd
*abfd
)
687 struct gdb_bfd_data
*gdata
;
688 struct gdb_bfd_cache_search search
;
694 gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
695 gdb_assert (gdata
->refc
>= 1);
700 bfd_cache_debug_printf ("Decrease reference count on bfd %s (%s)",
701 host_address_to_string (abfd
),
702 bfd_get_filename (abfd
));
706 bfd_cache_debug_printf ("Delete final reference count on bfd %s (%s)",
707 host_address_to_string (abfd
),
708 bfd_get_filename (abfd
));
710 archive_bfd
= gdata
->archive_bfd
;
711 search
.filename
= bfd_get_filename (abfd
);
713 if (gdb_bfd_cache
&& search
.filename
)
715 hashval_t hash
= htab_hash_string (search
.filename
);
718 search
.mtime
= gdata
->mtime
;
719 search
.size
= gdata
->size
;
720 search
.inode
= gdata
->inode
;
721 search
.device_id
= gdata
->device_id
;
722 slot
= htab_find_slot_with_hash (gdb_bfd_cache
, &search
, hash
,
726 htab_clear_slot (gdb_bfd_cache
, slot
);
730 bfd_set_usrdata (abfd
, NULL
); /* Paranoia. */
732 htab_remove_elt (all_bfds
, abfd
);
734 gdb_bfd_close_or_warn (abfd
);
736 gdb_bfd_unref (archive_bfd
);
739 /* A helper function that returns the section data descriptor
740 associated with SECTION. If no such descriptor exists, a new one
741 is allocated and cleared. */
743 static struct gdb_bfd_section_data
*
744 get_section_descriptor (asection
*section
)
746 struct gdb_bfd_section_data
*result
;
748 result
= (struct gdb_bfd_section_data
*) bfd_section_userdata (section
);
752 result
= ((struct gdb_bfd_section_data
*)
753 bfd_zalloc (section
->owner
, sizeof (*result
)));
754 bfd_set_section_userdata (section
, result
);
763 gdb_bfd_map_section (asection
*sectp
, bfd_size_type
*size
)
766 struct gdb_bfd_section_data
*descriptor
;
769 gdb_assert ((sectp
->flags
& SEC_RELOC
) == 0);
770 gdb_assert (size
!= NULL
);
774 descriptor
= get_section_descriptor (sectp
);
776 /* If the data was already read for this BFD, just reuse it. */
777 if (descriptor
->data
!= NULL
)
781 if (!bfd_is_section_compressed (abfd
, sectp
))
783 /* The page size, used when mmapping. */
787 pagesize
= getpagesize ();
789 /* Only try to mmap sections which are large enough: we don't want
790 to waste space due to fragmentation. */
792 if (bfd_section_size (sectp
) > 4 * pagesize
)
794 descriptor
->size
= bfd_section_size (sectp
);
795 descriptor
->data
= bfd_mmap (abfd
, 0, descriptor
->size
, PROT_READ
,
796 MAP_PRIVATE
, sectp
->filepos
,
797 &descriptor
->map_addr
,
798 &descriptor
->map_len
);
800 if ((caddr_t
)descriptor
->data
!= MAP_FAILED
)
802 #if HAVE_POSIX_MADVISE
803 posix_madvise (descriptor
->map_addr
, descriptor
->map_len
,
804 POSIX_MADV_WILLNEED
);
809 /* On failure, clear out the section data and try again. */
810 memset (descriptor
, 0, sizeof (*descriptor
));
813 #endif /* HAVE_MMAP */
815 /* Handle compressed sections, or ordinary uncompressed sections in
818 descriptor
->size
= bfd_section_size (sectp
);
819 descriptor
->data
= NULL
;
822 if (!bfd_get_full_section_contents (abfd
, sectp
, &data
))
824 warning (_("Can't read data for section '%s' in file '%s'"),
825 bfd_section_name (sectp
),
826 bfd_get_filename (abfd
));
827 /* Set size to 0 to prevent further attempts to read the invalid
832 descriptor
->data
= data
;
835 gdb_assert (descriptor
->data
!= NULL
);
836 *size
= descriptor
->size
;
837 return (const gdb_byte
*) descriptor
->data
;
840 /* Return 32-bit CRC for ABFD. If successful store it to *FILE_CRC_RETURN and
841 return 1. Otherwise print a warning and return 0. ABFD seek position is
845 get_file_crc (bfd
*abfd
, unsigned long *file_crc_return
)
847 unsigned long file_crc
= 0;
849 if (bfd_seek (abfd
, 0, SEEK_SET
) != 0)
851 warning (_("Problem reading \"%s\" for CRC: %s"),
852 bfd_get_filename (abfd
), bfd_errmsg (bfd_get_error ()));
858 gdb_byte buffer
[8 * 1024];
861 count
= bfd_bread (buffer
, sizeof (buffer
), abfd
);
862 if (count
== (bfd_size_type
) -1)
864 warning (_("Problem reading \"%s\" for CRC: %s"),
865 bfd_get_filename (abfd
), bfd_errmsg (bfd_get_error ()));
870 file_crc
= bfd_calc_gnu_debuglink_crc32 (file_crc
, buffer
, count
);
873 *file_crc_return
= file_crc
;
880 gdb_bfd_crc (struct bfd
*abfd
, unsigned long *crc_out
)
882 struct gdb_bfd_data
*gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
884 if (!gdata
->crc_computed
)
885 gdata
->crc_computed
= get_file_crc (abfd
, &gdata
->crc
);
887 if (gdata
->crc_computed
)
888 *crc_out
= gdata
->crc
;
889 return gdata
->crc_computed
;
897 gdb_bfd_fopen (const char *filename
, const char *target
, const char *mode
,
900 bfd
*result
= bfd_fopen (filename
, target
, mode
, fd
);
902 return gdb_bfd_ref_ptr::new_reference (result
);
908 gdb_bfd_openr (const char *filename
, const char *target
)
910 bfd
*result
= bfd_openr (filename
, target
);
912 return gdb_bfd_ref_ptr::new_reference (result
);
918 gdb_bfd_openw (const char *filename
, const char *target
)
920 bfd
*result
= bfd_openw (filename
, target
);
922 return gdb_bfd_ref_ptr::new_reference (result
);
928 gdb_bfd_openr_iovec (const char *filename
, const char *target
,
929 void *(*open_func
) (struct bfd
*nbfd
,
932 file_ptr (*pread_func
) (struct bfd
*nbfd
,
937 int (*close_func
) (struct bfd
*nbfd
,
939 int (*stat_func
) (struct bfd
*abfd
,
943 bfd
*result
= bfd_openr_iovec (filename
, target
,
944 open_func
, open_closure
,
945 pread_func
, close_func
, stat_func
);
947 return gdb_bfd_ref_ptr::new_reference (result
);
953 gdb_bfd_mark_parent (bfd
*child
, bfd
*parent
)
955 struct gdb_bfd_data
*gdata
;
958 /* No need to stash the filename here, because we also keep a
959 reference on the parent archive. */
961 gdata
= (struct gdb_bfd_data
*) bfd_usrdata (child
);
962 if (gdata
->archive_bfd
== NULL
)
964 gdata
->archive_bfd
= parent
;
965 gdb_bfd_ref (parent
);
968 gdb_assert (gdata
->archive_bfd
== parent
);
974 gdb_bfd_openr_next_archived_file (bfd
*archive
, bfd
*previous
)
976 bfd
*result
= bfd_openr_next_archived_file (archive
, previous
);
979 gdb_bfd_mark_parent (result
, archive
);
981 return gdb_bfd_ref_ptr (result
);
987 gdb_bfd_record_inclusion (bfd
*includer
, bfd
*includee
)
989 struct gdb_bfd_data
*gdata
;
991 gdata
= (struct gdb_bfd_data
*) bfd_usrdata (includer
);
992 gdata
->included_bfds
.push_back (gdb_bfd_ref_ptr::new_reference (includee
));
997 gdb_static_assert (ARRAY_SIZE (_bfd_std_section
) == 4);
1002 gdb_bfd_section_index (bfd
*abfd
, asection
*section
)
1004 if (section
== NULL
)
1006 else if (section
== bfd_com_section_ptr
)
1007 return bfd_count_sections (abfd
);
1008 else if (section
== bfd_und_section_ptr
)
1009 return bfd_count_sections (abfd
) + 1;
1010 else if (section
== bfd_abs_section_ptr
)
1011 return bfd_count_sections (abfd
) + 2;
1012 else if (section
== bfd_ind_section_ptr
)
1013 return bfd_count_sections (abfd
) + 3;
1014 return section
->index
;
1017 /* See gdb_bfd.h. */
1020 gdb_bfd_count_sections (bfd
*abfd
)
1022 return bfd_count_sections (abfd
) + 4;
1025 /* See gdb_bfd.h. */
1028 gdb_bfd_requires_relocations (bfd
*abfd
)
1030 struct gdb_bfd_data
*gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
1032 if (gdata
->relocation_computed
== 0)
1036 for (sect
= abfd
->sections
; sect
!= NULL
; sect
= sect
->next
)
1037 if ((sect
->flags
& SEC_RELOC
) != 0)
1039 gdata
->needs_relocations
= 1;
1043 gdata
->relocation_computed
= 1;
1046 return gdata
->needs_relocations
;
1049 /* See gdb_bfd.h. */
1052 gdb_bfd_get_full_section_contents (bfd
*abfd
, asection
*section
,
1053 gdb::byte_vector
*contents
)
1055 bfd_size_type section_size
= bfd_section_size (section
);
1057 contents
->resize (section_size
);
1059 return bfd_get_section_contents (abfd
, section
, contents
->data (), 0,
1063 #define AMBIGUOUS_MESS1 ".\nMatching formats:"
1064 #define AMBIGUOUS_MESS2 \
1065 ".\nUse \"set gnutarget format-name\" to specify the format."
1067 /* See gdb_bfd.h. */
1070 gdb_bfd_errmsg (bfd_error_type error_tag
, char **matching
)
1074 /* Check if errmsg just need simple return. */
1075 if (error_tag
!= bfd_error_file_ambiguously_recognized
|| matching
== NULL
)
1076 return bfd_errmsg (error_tag
);
1078 std::string
ret (bfd_errmsg (error_tag
));
1079 ret
+= AMBIGUOUS_MESS1
;
1081 for (p
= matching
; *p
; p
++)
1086 ret
+= AMBIGUOUS_MESS2
;
1093 /* A callback for htab_traverse that prints a single BFD. */
1096 print_one_bfd (void **slot
, void *data
)
1098 bfd
*abfd
= (struct bfd
*) *slot
;
1099 struct gdb_bfd_data
*gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
1100 struct ui_out
*uiout
= (struct ui_out
*) data
;
1102 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
1103 uiout
->field_signed ("refcount", gdata
->refc
);
1104 uiout
->field_string ("addr", host_address_to_string (abfd
));
1105 uiout
->field_string ("filename", bfd_get_filename (abfd
),
1106 file_name_style
.style ());
1112 /* Implement the 'maint info bfd' command. */
1115 maintenance_info_bfds (const char *arg
, int from_tty
)
1117 struct ui_out
*uiout
= current_uiout
;
1119 ui_out_emit_table
table_emitter (uiout
, 3, -1, "bfds");
1120 uiout
->table_header (10, ui_left
, "refcount", "Refcount");
1121 uiout
->table_header (18, ui_left
, "addr", "Address");
1122 uiout
->table_header (40, ui_left
, "filename", "Filename");
1124 uiout
->table_body ();
1125 htab_traverse (all_bfds
, print_one_bfd
, uiout
);
1128 void _initialize_gdb_bfd ();
1130 _initialize_gdb_bfd ()
1132 all_bfds
= htab_create_alloc (10, htab_hash_pointer
, htab_eq_pointer
,
1133 NULL
, xcalloc
, xfree
);
1135 add_cmd ("bfds", class_maintenance
, maintenance_info_bfds
, _("\
1136 List the BFDs that are currently open."),
1137 &maintenanceinfolist
);
1139 add_setshow_boolean_cmd ("bfd-sharing", no_class
,
1141 Set whether gdb will share bfds that appear to be the same file."), _("\
1142 Show whether gdb will share bfds that appear to be the same file."), _("\
1143 When enabled gdb will reuse existing bfds rather than reopening the\n\
1144 same file. To decide if two files are the same then gdb compares the\n\
1145 filename, file size, file modification time, and file inode."),
1148 &maintenance_set_cmdlist
,
1149 &maintenance_show_cmdlist
);
1151 add_setshow_boolean_cmd ("bfd-cache", class_maintenance
,
1153 _("Set bfd cache debugging."),
1154 _("Show bfd cache debugging."),
1156 When non-zero, bfd cache specific debugging is enabled."),
1158 &show_bfd_cache_debug
,
1159 &setdebuglist
, &showdebuglist
);