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_FIELDS
= {};
118 #define GDB_BFD_DATA_ACCESSOR(ABFD) \
119 ((struct gdb_bfd_data *) bfd_usrdata (ABFD))
121 DEFINE_REGISTRY (bfd
, GDB_BFD_DATA_ACCESSOR
)
123 /* A hash table storing all the BFDs maintained in the cache. */
125 static htab_t gdb_bfd_cache
;
127 /* When true gdb will reuse an existing bfd object if the filename,
128 modification time, and file size all match. */
130 static bool bfd_sharing
= true;
132 show_bfd_sharing (struct ui_file
*file
, int from_tty
,
133 struct cmd_list_element
*c
, const char *value
)
135 gdb_printf (file
, _("BFD sharing is %s.\n"), value
);
138 /* When true debugging of the bfd caches is enabled. */
140 static bool debug_bfd_cache
;
142 /* Print an "bfd-cache" debug statement. */
144 #define bfd_cache_debug_printf(fmt, ...) \
145 debug_prefixed_printf_cond (debug_bfd_cache, "bfd-cache", fmt, ##__VA_ARGS__)
148 show_bfd_cache_debug (struct ui_file
*file
, int from_tty
,
149 struct cmd_list_element
*c
, const char *value
)
151 gdb_printf (file
, _("BFD cache debugging is %s.\n"), value
);
154 /* The type of an object being looked up in gdb_bfd_cache. We use
155 htab's capability of storing one kind of object (BFD in this case)
156 and using a different sort of object for searching. */
158 struct gdb_bfd_cache_search
161 const char *filename
;
164 /* The file size (in bytes). */
166 /* The inode of the file. */
168 /* The device id of the file. */
172 /* A hash function for BFDs. */
175 hash_bfd (const void *b
)
177 const bfd
*abfd
= (const struct bfd
*) b
;
179 /* It is simplest to just hash the filename. */
180 return htab_hash_string (bfd_get_filename (abfd
));
183 /* An equality function for BFDs. Note that this expects the caller
184 to search using struct gdb_bfd_cache_search only, not BFDs. */
187 eq_bfd (const void *a
, const void *b
)
189 const bfd
*abfd
= (const struct bfd
*) a
;
190 const struct gdb_bfd_cache_search
*s
191 = (const struct gdb_bfd_cache_search
*) b
;
192 struct gdb_bfd_data
*gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
194 return (gdata
->mtime
== s
->mtime
195 && gdata
->size
== s
->size
196 && gdata
->inode
== s
->inode
197 && gdata
->device_id
== s
->device_id
198 && strcmp (bfd_get_filename (abfd
), s
->filename
) == 0);
204 is_target_filename (const char *name
)
206 return startswith (name
, TARGET_SYSROOT_PREFIX
);
212 gdb_bfd_has_target_filename (struct bfd
*abfd
)
214 return is_target_filename (bfd_get_filename (abfd
));
217 /* For `gdb_bfd_open_from_target_memory`. */
225 /* For `gdb_bfd_open_from_target_memory`. Opening the file is a no-op. */
228 mem_bfd_iovec_open (struct bfd
*abfd
, void *open_closure
)
233 /* For `gdb_bfd_open_from_target_memory`. Closing the file is just freeing the
234 base/size pair on our side. */
237 mem_bfd_iovec_close (struct bfd
*abfd
, void *stream
)
241 /* Zero means success. */
245 /* For `gdb_bfd_open_from_target_memory`. For reading the file, we just need to
246 pass through to target_read_memory and fix up the arguments and return
250 mem_bfd_iovec_pread (struct bfd
*abfd
, void *stream
, void *buf
,
251 file_ptr nbytes
, file_ptr offset
)
254 struct target_buffer
*buffer
= (struct target_buffer
*) stream
;
256 /* If this read will read all of the file, limit it to just the rest. */
257 if (offset
+ nbytes
> buffer
->size
)
258 nbytes
= buffer
->size
- offset
;
260 /* If there are no more bytes left, we've reached EOF. */
264 err
= target_read_memory (buffer
->base
+ offset
, (gdb_byte
*) buf
, nbytes
);
271 /* For `gdb_bfd_open_from_target_memory`. For statting the file, we only
272 support the st_size attribute. */
275 mem_bfd_iovec_stat (struct bfd
*abfd
, void *stream
, struct stat
*sb
)
277 struct target_buffer
*buffer
= (struct target_buffer
*) stream
;
279 memset (sb
, 0, sizeof (struct stat
));
280 sb
->st_size
= buffer
->size
;
287 gdb_bfd_open_from_target_memory (CORE_ADDR addr
, ULONGEST size
,
289 const char *filename
)
291 struct target_buffer
*buffer
= XNEW (struct target_buffer
);
295 return gdb_bfd_openr_iovec (filename
? filename
: "<in-memory>", target
,
303 /* Return the system error number corresponding to ERRNUM. */
306 fileio_errno_to_host (int errnum
)
350 case FILEIO_ENAMETOOLONG
:
356 /* bfd_openr_iovec OPEN_CLOSURE data for gdb_bfd_open. */
357 struct gdb_bfd_open_closure
363 /* Wrapper for target_fileio_open suitable for passing as the
364 OPEN_FUNC argument to gdb_bfd_openr_iovec. */
367 gdb_bfd_iovec_fileio_open (struct bfd
*abfd
, void *open_closure
)
369 const char *filename
= bfd_get_filename (abfd
);
370 int fd
, target_errno
;
372 gdb_bfd_open_closure
*oclosure
= (gdb_bfd_open_closure
*) open_closure
;
374 gdb_assert (is_target_filename (filename
));
376 fd
= target_fileio_open (oclosure
->inf
,
377 filename
+ strlen (TARGET_SYSROOT_PREFIX
),
378 FILEIO_O_RDONLY
, 0, oclosure
->warn_if_slow
,
382 errno
= fileio_errno_to_host (target_errno
);
383 bfd_set_error (bfd_error_system_call
);
387 stream
= XCNEW (int);
392 /* Wrapper for target_fileio_pread suitable for passing as the
393 PREAD_FUNC argument to gdb_bfd_openr_iovec. */
396 gdb_bfd_iovec_fileio_pread (struct bfd
*abfd
, void *stream
, void *buf
,
397 file_ptr nbytes
, file_ptr offset
)
399 int fd
= *(int *) stream
;
408 bytes
= target_fileio_pread (fd
, (gdb_byte
*) buf
+ pos
,
409 nbytes
- pos
, offset
+ pos
,
412 /* Success, but no bytes, means end-of-file. */
416 errno
= fileio_errno_to_host (target_errno
);
417 bfd_set_error (bfd_error_system_call
);
427 /* Warn that it wasn't possible to close a bfd for file NAME, because
431 gdb_bfd_close_warning (const char *name
, const char *reason
)
433 warning (_("cannot close \"%s\": %s"), name
, reason
);
436 /* Wrapper for target_fileio_close suitable for passing as the
437 CLOSE_FUNC argument to gdb_bfd_openr_iovec. */
440 gdb_bfd_iovec_fileio_close (struct bfd
*abfd
, void *stream
)
442 int fd
= *(int *) stream
;
447 /* Ignore errors on close. These may happen with remote
448 targets if the connection has already been torn down. */
451 target_fileio_close (fd
, &target_errno
);
453 catch (const gdb_exception
&ex
)
455 /* Also avoid crossing exceptions over bfd. */
456 gdb_bfd_close_warning (bfd_get_filename (abfd
),
457 ex
.message
->c_str ());
460 /* Zero means success. */
464 /* Wrapper for target_fileio_fstat suitable for passing as the
465 STAT_FUNC argument to gdb_bfd_openr_iovec. */
468 gdb_bfd_iovec_fileio_fstat (struct bfd
*abfd
, void *stream
,
471 int fd
= *(int *) stream
;
475 result
= target_fileio_fstat (fd
, sb
, &target_errno
);
478 errno
= fileio_errno_to_host (target_errno
);
479 bfd_set_error (bfd_error_system_call
);
485 /* A helper function to initialize the data that gdb attaches to each
489 gdb_bfd_init_data (struct bfd
*abfd
, struct stat
*st
)
491 struct gdb_bfd_data
*gdata
;
494 gdb_assert (bfd_usrdata (abfd
) == nullptr);
496 /* Ask BFD to decompress sections in bfd_get_full_section_contents. */
497 abfd
->flags
|= BFD_DECOMPRESS
;
499 gdata
= new gdb_bfd_data (abfd
, st
);
500 bfd_set_usrdata (abfd
, gdata
);
501 bfd_alloc_data (abfd
);
503 /* This is the first we've seen it, so add it to the hash table. */
504 slot
= htab_find_slot (all_bfds
, abfd
, INSERT
);
505 gdb_assert (slot
&& !*slot
);
512 gdb_bfd_open (const char *name
, const char *target
, int fd
,
518 struct gdb_bfd_cache_search search
;
521 if (is_target_filename (name
))
523 if (!target_filesystem_is_local ())
525 gdb_assert (fd
== -1);
527 gdb_bfd_open_closure open_closure
{ current_inferior (), warn_if_slow
};
528 return gdb_bfd_openr_iovec (name
, target
,
529 gdb_bfd_iovec_fileio_open
,
531 gdb_bfd_iovec_fileio_pread
,
532 gdb_bfd_iovec_fileio_close
,
533 gdb_bfd_iovec_fileio_fstat
);
536 name
+= strlen (TARGET_SYSROOT_PREFIX
);
539 if (gdb_bfd_cache
== NULL
)
540 gdb_bfd_cache
= htab_create_alloc (1, hash_bfd
, eq_bfd
, NULL
,
545 fd
= gdb_open_cloexec (name
, O_RDONLY
| O_BINARY
, 0).release ();
548 bfd_set_error (bfd_error_system_call
);
553 if (fstat (fd
, &st
) < 0)
555 /* Weird situation here -- don't cache if we can't stat. */
556 bfd_cache_debug_printf ("Could not stat %s - not caching", name
);
557 abfd
= bfd_fopen (name
, target
, FOPEN_RB
, fd
);
560 return gdb_bfd_ref_ptr::new_reference (abfd
);
563 search
.filename
= name
;
564 search
.mtime
= st
.st_mtime
;
565 search
.size
= st
.st_size
;
566 search
.inode
= st
.st_ino
;
567 search
.device_id
= st
.st_dev
;
569 /* Note that this must compute the same result as hash_bfd. */
570 hash
= htab_hash_string (name
);
571 /* Note that we cannot use htab_find_slot_with_hash here, because
572 opening the BFD may fail; and this would violate hashtab
574 abfd
= (struct bfd
*) htab_find_with_hash (gdb_bfd_cache
, &search
, hash
);
575 if (bfd_sharing
&& abfd
!= NULL
)
577 bfd_cache_debug_printf ("Reusing cached bfd %s for %s",
578 host_address_to_string (abfd
),
579 bfd_get_filename (abfd
));
581 return gdb_bfd_ref_ptr::new_reference (abfd
);
584 abfd
= bfd_fopen (name
, target
, FOPEN_RB
, fd
);
588 bfd_cache_debug_printf ("Creating new bfd %s for %s",
589 host_address_to_string (abfd
),
590 bfd_get_filename (abfd
));
594 slot
= htab_find_slot_with_hash (gdb_bfd_cache
, &search
, hash
, INSERT
);
599 /* It's important to pass the already-computed stat info here,
600 rather than, say, calling gdb_bfd_ref_ptr::new_reference. BFD by
601 default will "stat" the file each time bfd_get_mtime is called --
602 and since we already entered it into the hash table using this
603 mtime, if the file changed at the wrong moment, the race would
604 lead to a hash table corruption. */
605 gdb_bfd_init_data (abfd
, &st
);
606 return gdb_bfd_ref_ptr (abfd
);
609 /* A helper function that releases any section data attached to the
613 free_one_bfd_section (asection
*sectp
)
615 struct gdb_bfd_section_data
*sect
616 = (struct gdb_bfd_section_data
*) bfd_section_userdata (sectp
);
618 if (sect
!= NULL
&& sect
->data
!= NULL
)
621 if (sect
->map_addr
!= NULL
)
625 res
= munmap (sect
->map_addr
, sect
->map_len
);
626 gdb_assert (res
== 0);
634 /* Close ABFD, and warn if that fails. */
637 gdb_bfd_close_or_warn (struct bfd
*abfd
)
640 const char *name
= bfd_get_filename (abfd
);
642 for (asection
*sect
: gdb_bfd_sections (abfd
))
643 free_one_bfd_section (sect
);
645 ret
= bfd_close (abfd
);
648 gdb_bfd_close_warning (name
,
649 bfd_errmsg (bfd_get_error ()));
657 gdb_bfd_ref (struct bfd
*abfd
)
659 struct gdb_bfd_data
*gdata
;
664 gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
666 bfd_cache_debug_printf ("Increase reference count on bfd %s (%s)",
667 host_address_to_string (abfd
),
668 bfd_get_filename (abfd
));
676 /* Caching only happens via gdb_bfd_open, so passing nullptr here is
678 gdb_bfd_init_data (abfd
, nullptr);
684 gdb_bfd_unref (struct bfd
*abfd
)
686 struct gdb_bfd_data
*gdata
;
687 struct gdb_bfd_cache_search search
;
693 gdata
= (struct gdb_bfd_data
*) bfd_usrdata (abfd
);
694 gdb_assert (gdata
->refc
>= 1);
699 bfd_cache_debug_printf ("Decrease reference count on bfd %s (%s)",
700 host_address_to_string (abfd
),
701 bfd_get_filename (abfd
));
705 bfd_cache_debug_printf ("Delete final reference count on bfd %s (%s)",
706 host_address_to_string (abfd
),
707 bfd_get_filename (abfd
));
709 archive_bfd
= gdata
->archive_bfd
;
710 search
.filename
= bfd_get_filename (abfd
);
712 if (gdb_bfd_cache
&& search
.filename
)
714 hashval_t hash
= htab_hash_string (search
.filename
);
717 search
.mtime
= gdata
->mtime
;
718 search
.size
= gdata
->size
;
719 search
.inode
= gdata
->inode
;
720 search
.device_id
= gdata
->device_id
;
721 slot
= htab_find_slot_with_hash (gdb_bfd_cache
, &search
, hash
,
725 htab_clear_slot (gdb_bfd_cache
, slot
);
728 bfd_free_data (abfd
);
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
);