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