]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdb_bfd.h
Finalized intl-update patches
[thirdparty/binutils-gdb.git] / gdb / gdb_bfd.h
CommitLineData
cbb099e8
TT
1/* Definitions for BFD wrappers used by GDB.
2
213516ef 3 Copyright (C) 2011-2023 Free Software Foundation, Inc.
cbb099e8
TT
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 3 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, see <http://www.gnu.org/licenses/>. */
19
20#ifndef GDB_BFD_H
21#define GDB_BFD_H
22
e992eda4 23#include "registry.h"
e0fc5c3f 24#include "gdbsupport/byte-vector.h"
bb75a869 25#include "gdbsupport/function-view.h"
268a13a5 26#include "gdbsupport/gdb_ref_ptr.h"
9be25986 27#include "gdbsupport/iterator-range.h"
b886559f 28#include "gdbsupport/next-iterator.h"
e992eda4 29
08b8a139
TT
30/* A registry adaptor for BFD. This arranges to store the registry in
31 gdb's per-BFD data, which is stored as the bfd_usrdata. */
32template<>
33struct registry_accessor<bfd>
34{
35 static registry<bfd> *get (bfd *abfd);
36};
e992eda4 37
f08e97fe
GB
38/* If supplied a path starting with this sequence, gdb_bfd_open will
39 open BFDs using target fileio operations. */
40
41#define TARGET_SYSROOT_PREFIX "target:"
42
43/* Returns nonzero if NAME starts with TARGET_SYSROOT_PREFIX, zero
44 otherwise. */
45
46int is_target_filename (const char *name);
47
48/* Returns nonzero if the filename associated with ABFD starts with
49 TARGET_SYSROOT_PREFIX, zero otherwise. */
50
51int gdb_bfd_has_target_filename (struct bfd *abfd);
52
192b62ce
TT
53/* Increment the reference count of ABFD. It is fine for ABFD to be
54 NULL; in this case the function does nothing. */
55
56void gdb_bfd_ref (struct bfd *abfd);
57
58/* Decrement the reference count of ABFD. If this is the last
59 reference, ABFD will be freed. If ABFD is NULL, this function does
60 nothing. */
61
62void gdb_bfd_unref (struct bfd *abfd);
63
64/* A policy class for gdb::ref_ptr for BFD reference counting. */
65struct gdb_bfd_ref_policy
66{
67 static void incref (struct bfd *abfd)
68 {
69 gdb_bfd_ref (abfd);
70 }
71
72 static void decref (struct bfd *abfd)
73 {
74 gdb_bfd_unref (abfd);
75 }
76};
77
78/* A gdb::ref_ptr that has been specialized for BFD objects. */
79typedef gdb::ref_ptr<struct bfd, gdb_bfd_ref_policy> gdb_bfd_ref_ptr;
80
6ec53d05 81/* Open a read-only (FOPEN_RB) BFD given arguments like bfd_fopen.
f08e97fe
GB
82 If NAME starts with TARGET_SYSROOT_PREFIX then the BFD will be
83 opened using target fileio operations if necessary. Returns NULL
1831a9f9
TT
84 on error. On success, returns a new reference to the BFD. BFDs
85 returned by this call are shared among all callers opening the same
86 file. If FD is not -1, then after this call it is owned by BFD.
87 If the BFD was not accessed using target fileio operations then the
88 filename associated with the BFD and accessible with
89 bfd_get_filename will not be exactly NAME but rather NAME with
98c59b52
PA
90 TARGET_SYSROOT_PREFIX stripped. If WARN_IF_SLOW is true, print a
91 warning message if the file is being accessed over a link that may
92 be slow. */
6ec53d05 93
ad80db5b 94gdb_bfd_ref_ptr gdb_bfd_open (const char *name, const char *target,
98c59b52 95 int fd = -1, bool warn_if_slow = true);
cbb099e8 96
0cd61f44
TT
97/* Mark the CHILD BFD as being a member of PARENT. Also, increment
98 the reference count of CHILD. Calling this function ensures that
99 as along as CHILD remains alive, PARENT will as well. Both CHILD
100 and PARENT must be non-NULL. This can be called more than once
101 with the same arguments; but it is not allowed to call it for a
102 single CHILD with different values for PARENT. */
103
104void gdb_bfd_mark_parent (bfd *child, bfd *parent);
105
13aaf454
DE
106/* Mark INCLUDEE as being included by INCLUDER.
107 This is used to associate the life time of INCLUDEE with INCLUDER.
108 For example, with Fission, one file can refer to debug info in another
109 file, and internal tables we build for the main file (INCLUDER) may refer
110 to data contained in INCLUDEE. Therefore we want to keep INCLUDEE around
111 at least as long as INCLUDER exists.
112
113 Note that this is different than gdb_bfd_mark_parent because in our case
114 lifetime tracking is based on the "parent" whereas in gdb_bfd_mark_parent
115 lifetime tracking is based on the "child". Plus in our case INCLUDEE could
116 have multiple different "parents". */
117
118void gdb_bfd_record_inclusion (bfd *includer, bfd *includee);
119
41667530
MG
120/* Try to read or map the contents of the section SECT. If successful, the
121 section data is returned and *SIZE is set to the size of the section data;
fd361982 122 this may not be the same as the size according to bfd_section_size if the
41667530
MG
123 section was compressed. The returned section data is associated with the BFD
124 and will be destroyed when the BFD is destroyed. There is no other way to
125 free it; for temporary uses of section data, see bfd_malloc_and_get_section.
126 SECT may not have relocations. If there is an error reading the section,
127 this issues a warning, sets *SIZE to 0, and returns NULL. */
4bf44c1c
TT
128
129const gdb_byte *gdb_bfd_map_section (asection *section, bfd_size_type *size);
130
dccee2de
TT
131/* Compute the CRC for ABFD. The CRC is used to find and verify
132 separate debug files. When successful, this fills in *CRC_OUT and
133 returns 1. Otherwise, this issues a warning and returns 0. */
134
135int gdb_bfd_crc (struct bfd *abfd, unsigned long *crc_out);
136
64c31149
TT
137\f
138
139/* A wrapper for bfd_fopen that initializes the gdb-specific reference
adcf2eed 140 count. */
64c31149 141
192b62ce 142gdb_bfd_ref_ptr gdb_bfd_fopen (const char *, const char *, const char *, int);
64c31149
TT
143
144/* A wrapper for bfd_openr that initializes the gdb-specific reference
adcf2eed 145 count. */
64c31149 146
192b62ce 147gdb_bfd_ref_ptr gdb_bfd_openr (const char *, const char *);
64c31149
TT
148
149/* A wrapper for bfd_openw that initializes the gdb-specific reference
adcf2eed 150 count. */
64c31149 151
192b62ce 152gdb_bfd_ref_ptr gdb_bfd_openw (const char *, const char *);
64c31149 153
bb75a869
TT
154/* The base class for BFD "iovec" implementations. This is used by
155 gdb_bfd_openr_iovec and enables better type safety. */
156
157class gdb_bfd_iovec_base
158{
159protected:
160
161 gdb_bfd_iovec_base () = default;
162
163public:
164
165 virtual ~gdb_bfd_iovec_base () = default;
166
167 /* The "read" callback. */
168 virtual file_ptr read (bfd *abfd, void *buffer, file_ptr nbytes,
169 file_ptr offset) = 0;
170
171 /* The "stat" callback. */
172 virtual int stat (struct bfd *abfd, struct stat *sb) = 0;
173};
174
175/* The type of the function used to open a new iovec-based BFD. */
176using gdb_iovec_opener_ftype
177 = gdb::function_view<gdb_bfd_iovec_base * (bfd *)>;
178
179/* A type-safe wrapper for bfd_openr_iovec. */
180
181gdb_bfd_ref_ptr gdb_bfd_openr_iovec (const char *filename, const char *target,
182 gdb_iovec_opener_ftype open_fn);
183
64c31149 184/* A wrapper for bfd_openr_next_archived_file that initializes the
adcf2eed 185 gdb-specific reference count. */
64c31149 186
192b62ce 187gdb_bfd_ref_ptr gdb_bfd_openr_next_archived_file (bfd *archive, bfd *previous);
64c31149 188
64c31149 189
65cf3563
TT
190\f
191
192/* Return the index of the BFD section SECTION. Ordinarily this is
193 just the section's index, but for some special sections, like
194 bfd_com_section_ptr, it will be a synthesized value. */
195
196int gdb_bfd_section_index (bfd *abfd, asection *section);
197
198
199/* Like bfd_count_sections, but include any possible global sections,
200 like bfd_com_section_ptr. */
201
202int gdb_bfd_count_sections (bfd *abfd);
203
1da77581
TT
204/* Return true if any section requires relocations, false
205 otherwise. */
206
207int gdb_bfd_requires_relocations (bfd *abfd);
208
e0fc5c3f
SM
209/* Alternative to bfd_get_full_section_contents that returns the section
210 contents in *CONTENTS, instead of an allocated buffer.
211
212 Return true on success, false otherwise. */
213
214bool gdb_bfd_get_full_section_contents (bfd *abfd, asection *section,
215 gdb::byte_vector *contents);
216
322dd71c
AB
217/* Create and initialize a BFD handle from a target in-memory range. The
218 BFD starts at ADDR and is SIZE bytes long. TARGET is the BFD target
219 name as used in bfd_find_target. */
15cc148f
MS
220
221gdb_bfd_ref_ptr gdb_bfd_open_from_target_memory (CORE_ADDR addr, ULONGEST size,
322dd71c 222 const char *target);
15cc148f 223
b886559f
SM
224/* Range adapter for a BFD's sections.
225
226 To be used as:
227
228 for (asection *sect : gdb_bfd_all_sections (bfd))
229 ... use SECT ...
230 */
231
9be25986 232using gdb_bfd_section_range = next_range<asection>;
b886559f 233
cafb0d81
TT
234static inline gdb_bfd_section_range
235gdb_bfd_sections (bfd *abfd)
b886559f
SM
236{
237 return gdb_bfd_section_range (abfd->sections);
238}
239
cafb0d81
TT
240static inline gdb_bfd_section_range
241gdb_bfd_sections (const gdb_bfd_ref_ptr &abfd)
242{
243 return gdb_bfd_section_range (abfd->sections);
244};
245
34b965f7
TT
246/* A wrapper for bfd_errmsg to produce a more helpful error message
247 in the case of bfd_error_file_ambiguously recognized.
248 MATCHING, if non-NULL, is the corresponding argument to
249 bfd_check_format_matches, and will be freed. */
250
251extern std::string gdb_bfd_errmsg (bfd_error_type error_tag, char **matching);
252
cbb099e8 253#endif /* GDB_BFD_H */