[gdb/testsuite] Fix gdb.base/coredump-filter-build-id.exp with older eu-unstrip
[deliverable/binutils-gdb.git] / gdb / gdb_bfd.c
CommitLineData
cbb099e8
TT
1/* Definitions for BFD wrappers used by GDB.
2
3666a048 3 Copyright (C) 2011-2021 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#include "defs.h"
21#include "gdb_bfd.h"
d6b28940
TT
22#include "ui-out.h"
23#include "gdbcmd.h"
6ec53d05 24#include "hashtab.h"
268a13a5 25#include "gdbsupport/filestuff.h"
4bf44c1c
TT
26#ifdef HAVE_MMAP
27#include <sys/mman.h>
28#ifndef MAP_FAILED
29#define MAP_FAILED ((void *) -1)
30#endif
31#endif
f08e97fe
GB
32#include "target.h"
33#include "gdb/fileio.h"
07c138c8 34#include "inferior.h"
4bf44c1c
TT
35
36/* An object of this type is stored in the section's user data when
37 mapping a section. */
38
39struct gdb_bfd_section_data
40{
41 /* Size of the data. */
42 bfd_size_type size;
43 /* If the data was mmapped, this is the length of the map. */
44 bfd_size_type map_len;
45 /* The data. If NULL, the section data has not been read. */
46 void *data;
47 /* If the data was mmapped, this is the map address. */
48 void *map_addr;
49};
a4453b7e 50
d6b28940
TT
51/* A hash table holding every BFD that gdb knows about. This is not
52 to be confused with 'gdb_bfd_cache', which is used for sharing
53 BFDs; in contrast, this hash is used just to implement
54 "maint info bfd". */
55
56static htab_t all_bfds;
57
6ec53d05
TT
58/* An object of this type is stored in each BFD's user data. */
59
60struct gdb_bfd_data
61{
3cae4447
TT
62 /* Note that if ST is nullptr, then we simply fill in zeroes. */
63 gdb_bfd_data (bfd *abfd, struct stat *st)
64 : mtime (st == nullptr ? 0 : st->st_mtime),
65 size (st == nullptr ? 0 : st->st_size),
66 inode (st == nullptr ? 0 : st->st_ino),
67 device_id (st == nullptr ? 0 : st->st_dev),
06d5bbc8
TT
68 relocation_computed (0),
69 needs_relocations (0),
70 crc_computed (0)
71 {
06d5bbc8
TT
72 }
73
74 ~gdb_bfd_data ()
75 {
06d5bbc8
TT
76 }
77
6ec53d05 78 /* The reference count. */
06d5bbc8 79 int refc = 1;
6ec53d05
TT
80
81 /* The mtime of the BFD at the point the cache entry was made. */
82 time_t mtime;
b82d08cd 83
c04fe68f
AB
84 /* The file size (in bytes) at the point the cache entry was made. */
85 off_t size;
86
87 /* The inode of the file at the point the cache entry was made. */
88 ino_t inode;
89
90 /* The device id of the file at the point the cache entry was made. */
91 dev_t device_id;
92
1da77581
TT
93 /* This is true if we have determined whether this BFD has any
94 sections requiring relocation. */
95 unsigned int relocation_computed : 1;
96
97 /* This is true if any section needs relocation. */
98 unsigned int needs_relocations : 1;
99
dccee2de
TT
100 /* This is true if we have successfully computed the file's CRC. */
101 unsigned int crc_computed : 1;
102
103 /* The file's CRC. */
06d5bbc8 104 unsigned long crc = 0;
dccee2de 105
b82d08cd
TT
106 /* If the BFD comes from an archive, this points to the archive's
107 BFD. Otherwise, this is NULL. */
06d5bbc8 108 bfd *archive_bfd = nullptr;
e992eda4 109
13aaf454 110 /* Table of all the bfds this bfd has included. */
d5833c62 111 std::vector<gdb_bfd_ref_ptr> included_bfds;
13aaf454 112
e992eda4 113 /* The registry. */
06d5bbc8 114 REGISTRY_FIELDS = {};
6ec53d05
TT
115};
116
e992eda4
TT
117#define GDB_BFD_DATA_ACCESSOR(ABFD) \
118 ((struct gdb_bfd_data *) bfd_usrdata (ABFD))
119
120DEFINE_REGISTRY (bfd, GDB_BFD_DATA_ACCESSOR)
121
6ec53d05
TT
122/* A hash table storing all the BFDs maintained in the cache. */
123
124static htab_t gdb_bfd_cache;
125
18989b3c
AB
126/* When true gdb will reuse an existing bfd object if the filename,
127 modification time, and file size all match. */
128
491144b5 129static bool bfd_sharing = true;
18989b3c
AB
130static void
131show_bfd_sharing (struct ui_file *file, int from_tty,
132 struct cmd_list_element *c, const char *value)
133{
134 fprintf_filtered (file, _("BFD sharing is %s.\n"), value);
135}
136
d4dd4fca
SM
137/* When true debugging of the bfd caches is enabled. */
138
139static bool debug_bfd_cache;
566f5e3b 140
1e15fcac
SM
141/* Print an "bfd-cache" debug statement. */
142
143#define bfd_cache_debug_printf(fmt, ...) \
144 debug_prefixed_printf_cond (debug_bfd_cache, "bfd-cache", fmt, ##__VA_ARGS__)
145
566f5e3b
AB
146static void
147show_bfd_cache_debug (struct ui_file *file, int from_tty,
148 struct cmd_list_element *c, const char *value)
149{
150 fprintf_filtered (file, _("BFD cache debugging is %s.\n"), value);
151}
152
6ec53d05
TT
153/* The type of an object being looked up in gdb_bfd_cache. We use
154 htab's capability of storing one kind of object (BFD in this case)
155 and using a different sort of object for searching. */
156
157struct gdb_bfd_cache_search
158{
159 /* The filename. */
160 const char *filename;
161 /* The mtime. */
162 time_t mtime;
c04fe68f
AB
163 /* The file size (in bytes). */
164 off_t size;
165 /* The inode of the file. */
166 ino_t inode;
167 /* The device id of the file. */
168 dev_t device_id;
6ec53d05
TT
169};
170
171/* A hash function for BFDs. */
172
173static hashval_t
174hash_bfd (const void *b)
175{
9a3c8263 176 const bfd *abfd = (const struct bfd *) b;
6ec53d05
TT
177
178 /* It is simplest to just hash the filename. */
179 return htab_hash_string (bfd_get_filename (abfd));
180}
181
182/* An equality function for BFDs. Note that this expects the caller
183 to search using struct gdb_bfd_cache_search only, not BFDs. */
184
185static int
186eq_bfd (const void *a, const void *b)
187{
9a3c8263
SM
188 const bfd *abfd = (const struct bfd *) a;
189 const struct gdb_bfd_cache_search *s
190 = (const struct gdb_bfd_cache_search *) b;
191 struct gdb_bfd_data *gdata = (struct gdb_bfd_data *) bfd_usrdata (abfd);
6ec53d05
TT
192
193 return (gdata->mtime == s->mtime
c04fe68f
AB
194 && gdata->size == s->size
195 && gdata->inode == s->inode
196 && gdata->device_id == s->device_id
6ec53d05
TT
197 && strcmp (bfd_get_filename (abfd), s->filename) == 0);
198}
199
200/* See gdb_bfd.h. */
201
f08e97fe
GB
202int
203is_target_filename (const char *name)
204{
205 return startswith (name, TARGET_SYSROOT_PREFIX);
206}
207
208/* See gdb_bfd.h. */
209
210int
211gdb_bfd_has_target_filename (struct bfd *abfd)
212{
213 return is_target_filename (bfd_get_filename (abfd));
214}
215
15cc148f
MS
216/* For `gdb_bfd_open_from_target_memory`. */
217
218struct target_buffer
219{
220 CORE_ADDR base;
221 ULONGEST size;
222};
223
224/* For `gdb_bfd_open_from_target_memory`. Opening the file is a no-op. */
225
226static void *
227mem_bfd_iovec_open (struct bfd *abfd, void *open_closure)
228{
229 return open_closure;
230}
231
232/* For `gdb_bfd_open_from_target_memory`. Closing the file is just freeing the
233 base/size pair on our side. */
234
235static int
236mem_bfd_iovec_close (struct bfd *abfd, void *stream)
237{
238 xfree (stream);
239
240 /* Zero means success. */
241 return 0;
242}
243
244/* For `gdb_bfd_open_from_target_memory`. For reading the file, we just need to
245 pass through to target_read_memory and fix up the arguments and return
246 values. */
247
248static file_ptr
249mem_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
250 file_ptr nbytes, file_ptr offset)
251{
252 int err;
253 struct target_buffer *buffer = (struct target_buffer *) stream;
254
255 /* If this read will read all of the file, limit it to just the rest. */
256 if (offset + nbytes > buffer->size)
257 nbytes = buffer->size - offset;
258
259 /* If there are no more bytes left, we've reached EOF. */
260 if (nbytes == 0)
261 return 0;
262
263 err = target_read_memory (buffer->base + offset, (gdb_byte *) buf, nbytes);
264 if (err)
265 return -1;
266
267 return nbytes;
268}
269
270/* For `gdb_bfd_open_from_target_memory`. For statting the file, we only
271 support the st_size attribute. */
272
273static int
274mem_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
275{
276 struct target_buffer *buffer = (struct target_buffer*) stream;
277
278 memset (sb, 0, sizeof (struct stat));
279 sb->st_size = buffer->size;
280 return 0;
281}
282
283/* See gdb_bfd.h. */
284
285gdb_bfd_ref_ptr
286gdb_bfd_open_from_target_memory (CORE_ADDR addr, ULONGEST size,
287 const char *target,
288 const char *filename)
289{
290 struct target_buffer *buffer = XNEW (struct target_buffer);
291
292 buffer->base = addr;
293 buffer->size = size;
294 return gdb_bfd_openr_iovec (filename ? filename : "<in-memory>", target,
295 mem_bfd_iovec_open,
296 buffer,
297 mem_bfd_iovec_pread,
298 mem_bfd_iovec_close,
299 mem_bfd_iovec_stat);
300}
f08e97fe
GB
301
302/* Return the system error number corresponding to ERRNUM. */
303
304static int
305fileio_errno_to_host (int errnum)
306{
307 switch (errnum)
308 {
309 case FILEIO_EPERM:
dda83cd7 310 return EPERM;
f08e97fe 311 case FILEIO_ENOENT:
dda83cd7 312 return ENOENT;
f08e97fe 313 case FILEIO_EINTR:
dda83cd7 314 return EINTR;
f08e97fe 315 case FILEIO_EIO:
dda83cd7 316 return EIO;
f08e97fe 317 case FILEIO_EBADF:
dda83cd7 318 return EBADF;
f08e97fe 319 case FILEIO_EACCES:
dda83cd7 320 return EACCES;
f08e97fe 321 case FILEIO_EFAULT:
dda83cd7 322 return EFAULT;
f08e97fe 323 case FILEIO_EBUSY:
dda83cd7 324 return EBUSY;
f08e97fe 325 case FILEIO_EEXIST:
dda83cd7 326 return EEXIST;
f08e97fe 327 case FILEIO_ENODEV:
dda83cd7 328 return ENODEV;
f08e97fe 329 case FILEIO_ENOTDIR:
dda83cd7 330 return ENOTDIR;
f08e97fe 331 case FILEIO_EISDIR:
dda83cd7 332 return EISDIR;
f08e97fe 333 case FILEIO_EINVAL:
dda83cd7 334 return EINVAL;
f08e97fe 335 case FILEIO_ENFILE:
dda83cd7 336 return ENFILE;
f08e97fe 337 case FILEIO_EMFILE:
dda83cd7 338 return EMFILE;
f08e97fe 339 case FILEIO_EFBIG:
dda83cd7 340 return EFBIG;
f08e97fe 341 case FILEIO_ENOSPC:
dda83cd7 342 return ENOSPC;
f08e97fe 343 case FILEIO_ESPIPE:
dda83cd7 344 return ESPIPE;
f08e97fe 345 case FILEIO_EROFS:
dda83cd7 346 return EROFS;
f08e97fe 347 case FILEIO_ENOSYS:
dda83cd7 348 return ENOSYS;
f08e97fe 349 case FILEIO_ENAMETOOLONG:
dda83cd7 350 return ENAMETOOLONG;
f08e97fe
GB
351 }
352 return -1;
353}
354
98c59b52
PA
355/* bfd_openr_iovec OPEN_CLOSURE data for gdb_bfd_open. */
356struct gdb_bfd_open_closure
357{
358 inferior *inf;
359 bool warn_if_slow;
360};
361
f08e97fe 362/* Wrapper for target_fileio_open suitable for passing as the
98c59b52 363 OPEN_FUNC argument to gdb_bfd_openr_iovec. */
f08e97fe
GB
364
365static void *
98c59b52 366gdb_bfd_iovec_fileio_open (struct bfd *abfd, void *open_closure)
f08e97fe
GB
367{
368 const char *filename = bfd_get_filename (abfd);
369 int fd, target_errno;
370 int *stream;
98c59b52 371 gdb_bfd_open_closure *oclosure = (gdb_bfd_open_closure *) open_closure;
f08e97fe
GB
372
373 gdb_assert (is_target_filename (filename));
374
98c59b52 375 fd = target_fileio_open (oclosure->inf,
4111f652 376 filename + strlen (TARGET_SYSROOT_PREFIX),
98c59b52 377 FILEIO_O_RDONLY, 0, oclosure->warn_if_slow,
4111f652 378 &target_errno);
f08e97fe
GB
379 if (fd == -1)
380 {
381 errno = fileio_errno_to_host (target_errno);
382 bfd_set_error (bfd_error_system_call);
383 return NULL;
384 }
385
386 stream = XCNEW (int);
387 *stream = fd;
388 return stream;
389}
390
391/* Wrapper for target_fileio_pread suitable for passing as the
392 PREAD_FUNC argument to gdb_bfd_openr_iovec. */
393
394static file_ptr
395gdb_bfd_iovec_fileio_pread (struct bfd *abfd, void *stream, void *buf,
396 file_ptr nbytes, file_ptr offset)
397{
398 int fd = *(int *) stream;
399 int target_errno;
400 file_ptr pos, bytes;
401
402 pos = 0;
403 while (nbytes > pos)
404 {
2d7711a3
GB
405 QUIT;
406
f08e97fe
GB
407 bytes = target_fileio_pread (fd, (gdb_byte *) buf + pos,
408 nbytes - pos, offset + pos,
409 &target_errno);
410 if (bytes == 0)
dda83cd7
SM
411 /* Success, but no bytes, means end-of-file. */
412 break;
f08e97fe
GB
413 if (bytes == -1)
414 {
415 errno = fileio_errno_to_host (target_errno);
416 bfd_set_error (bfd_error_system_call);
417 return -1;
418 }
419
420 pos += bytes;
421 }
422
423 return pos;
424}
425
3e0910a5
PA
426/* Warn that it wasn't possible to close a bfd for file NAME, because
427 of REASON. */
428
429static void
430gdb_bfd_close_warning (const char *name, const char *reason)
431{
432 warning (_("cannot close \"%s\": %s"), name, reason);
433}
434
f08e97fe
GB
435/* Wrapper for target_fileio_close suitable for passing as the
436 CLOSE_FUNC argument to gdb_bfd_openr_iovec. */
437
438static int
439gdb_bfd_iovec_fileio_close (struct bfd *abfd, void *stream)
440{
441 int fd = *(int *) stream;
442 int target_errno;
443
444 xfree (stream);
445
446 /* Ignore errors on close. These may happen with remote
447 targets if the connection has already been torn down. */
3e0910a5
PA
448 try
449 {
450 target_fileio_close (fd, &target_errno);
451 }
452 catch (const gdb_exception &ex)
453 {
454 /* Also avoid crossing exceptions over bfd. */
455 gdb_bfd_close_warning (bfd_get_filename (abfd),
456 ex.message->c_str ());
457 }
f08e97fe
GB
458
459 /* Zero means success. */
460 return 0;
461}
462
463/* Wrapper for target_fileio_fstat suitable for passing as the
464 STAT_FUNC argument to gdb_bfd_openr_iovec. */
465
466static int
467gdb_bfd_iovec_fileio_fstat (struct bfd *abfd, void *stream,
468 struct stat *sb)
469{
470 int fd = *(int *) stream;
471 int target_errno;
472 int result;
473
474 result = target_fileio_fstat (fd, sb, &target_errno);
475 if (result == -1)
476 {
477 errno = fileio_errno_to_host (target_errno);
478 bfd_set_error (bfd_error_system_call);
479 }
480
481 return result;
482}
483
3cae4447
TT
484/* A helper function to initialize the data that gdb attaches to each
485 BFD. */
486
487static void
488gdb_bfd_init_data (struct bfd *abfd, struct stat *st)
489{
490 struct gdb_bfd_data *gdata;
491 void **slot;
492
493 gdb_assert (bfd_usrdata (abfd) == nullptr);
494
495 /* Ask BFD to decompress sections in bfd_get_full_section_contents. */
496 abfd->flags |= BFD_DECOMPRESS;
497
498 gdata = new gdb_bfd_data (abfd, st);
499 bfd_set_usrdata (abfd, gdata);
500 bfd_alloc_data (abfd);
501
502 /* This is the first we've seen it, so add it to the hash table. */
503 slot = htab_find_slot (all_bfds, abfd, INSERT);
504 gdb_assert (slot && !*slot);
505 *slot = abfd;
506}
507
f08e97fe
GB
508/* See gdb_bfd.h. */
509
192b62ce 510gdb_bfd_ref_ptr
98c59b52
PA
511gdb_bfd_open (const char *name, const char *target, int fd,
512 bool warn_if_slow)
6ec53d05
TT
513{
514 hashval_t hash;
515 void **slot;
516 bfd *abfd;
517 struct gdb_bfd_cache_search search;
518 struct stat st;
519
f08e97fe
GB
520 if (is_target_filename (name))
521 {
522 if (!target_filesystem_is_local ())
523 {
524 gdb_assert (fd == -1);
525
98c59b52 526 gdb_bfd_open_closure open_closure { current_inferior (), warn_if_slow };
e3dd7556 527 return gdb_bfd_openr_iovec (name, target,
07c138c8 528 gdb_bfd_iovec_fileio_open,
98c59b52 529 &open_closure,
f08e97fe
GB
530 gdb_bfd_iovec_fileio_pread,
531 gdb_bfd_iovec_fileio_close,
532 gdb_bfd_iovec_fileio_fstat);
f08e97fe
GB
533 }
534
535 name += strlen (TARGET_SYSROOT_PREFIX);
536 }
537
6ec53d05
TT
538 if (gdb_bfd_cache == NULL)
539 gdb_bfd_cache = htab_create_alloc (1, hash_bfd, eq_bfd, NULL,
540 xcalloc, xfree);
541
542 if (fd == -1)
543 {
614c279d 544 fd = gdb_open_cloexec (name, O_RDONLY | O_BINARY, 0);
6ec53d05
TT
545 if (fd == -1)
546 {
547 bfd_set_error (bfd_error_system_call);
548 return NULL;
549 }
550 }
551
6ec53d05
TT
552 if (fstat (fd, &st) < 0)
553 {
3cae4447 554 /* Weird situation here -- don't cache if we can't stat. */
1e15fcac 555 bfd_cache_debug_printf ("Could not stat %s - not caching", name);
03b0a45f
TT
556 abfd = bfd_fopen (name, target, FOPEN_RB, fd);
557 if (abfd == nullptr)
558 return nullptr;
3cae4447 559 return gdb_bfd_ref_ptr::new_reference (abfd);
c04fe68f 560 }
6ec53d05 561
3cae4447
TT
562 search.filename = name;
563 search.mtime = st.st_mtime;
564 search.size = st.st_size;
565 search.inode = st.st_ino;
566 search.device_id = st.st_dev;
567
6ec53d05
TT
568 /* Note that this must compute the same result as hash_bfd. */
569 hash = htab_hash_string (name);
570 /* Note that we cannot use htab_find_slot_with_hash here, because
571 opening the BFD may fail; and this would violate hashtab
572 invariants. */
9a3c8263 573 abfd = (struct bfd *) htab_find_with_hash (gdb_bfd_cache, &search, hash);
18989b3c 574 if (bfd_sharing && abfd != NULL)
6ec53d05 575 {
1e15fcac
SM
576 bfd_cache_debug_printf ("Reusing cached bfd %s for %s",
577 host_address_to_string (abfd),
578 bfd_get_filename (abfd));
6ec53d05 579 close (fd);
1831a9f9 580 return gdb_bfd_ref_ptr::new_reference (abfd);
6ec53d05
TT
581 }
582
583 abfd = bfd_fopen (name, target, FOPEN_RB, fd);
584 if (abfd == NULL)
585 return NULL;
586
1e15fcac
SM
587 bfd_cache_debug_printf ("Creating new bfd %s for %s",
588 host_address_to_string (abfd),
589 bfd_get_filename (abfd));
566f5e3b 590
18989b3c
AB
591 if (bfd_sharing)
592 {
593 slot = htab_find_slot_with_hash (gdb_bfd_cache, &search, hash, INSERT);
594 gdb_assert (!*slot);
595 *slot = abfd;
596 }
6ec53d05 597
3cae4447
TT
598 /* It's important to pass the already-computed stat info here,
599 rather than, say, calling gdb_bfd_ref_ptr::new_reference. BFD by
600 default will "stat" the file each time bfd_get_mtime is called --
601 and since we already entered it into the hash table using this
602 mtime, if the file changed at the wrong moment, the race would
603 lead to a hash table corruption. */
604 gdb_bfd_init_data (abfd, &st);
605 return gdb_bfd_ref_ptr (abfd);
6ec53d05
TT
606}
607
4bf44c1c
TT
608/* A helper function that releases any section data attached to the
609 BFD. */
610
611static void
1ce51eb5 612free_one_bfd_section (asection *sectp)
4bf44c1c 613{
9a3c8263 614 struct gdb_bfd_section_data *sect
fd361982 615 = (struct gdb_bfd_section_data *) bfd_section_userdata (sectp);
4bf44c1c
TT
616
617 if (sect != NULL && sect->data != NULL)
618 {
619#ifdef HAVE_MMAP
620 if (sect->map_addr != NULL)
621 {
622 int res;
623
624 res = munmap (sect->map_addr, sect->map_len);
625 gdb_assert (res == 0);
626 }
627 else
628#endif
629 xfree (sect->data);
630 }
631}
632
cbb099e8
TT
633/* Close ABFD, and warn if that fails. */
634
635static int
636gdb_bfd_close_or_warn (struct bfd *abfd)
637{
638 int ret;
b16c44de 639 const char *name = bfd_get_filename (abfd);
cbb099e8 640
1ce51eb5
TT
641 for (asection *sect : gdb_bfd_sections (abfd))
642 free_one_bfd_section (sect);
4bf44c1c 643
cbb099e8
TT
644 ret = bfd_close (abfd);
645
646 if (!ret)
3e0910a5
PA
647 gdb_bfd_close_warning (name,
648 bfd_errmsg (bfd_get_error ()));
cbb099e8
TT
649
650 return ret;
651}
652
596f7d67 653/* See gdb_bfd.h. */
cbb099e8 654
520b0001 655void
cbb099e8
TT
656gdb_bfd_ref (struct bfd *abfd)
657{
6ec53d05 658 struct gdb_bfd_data *gdata;
cbb099e8
TT
659
660 if (abfd == NULL)
520b0001 661 return;
cbb099e8 662
9a3c8263 663 gdata = (struct gdb_bfd_data *) bfd_usrdata (abfd);
cbb099e8 664
1e15fcac
SM
665 bfd_cache_debug_printf ("Increase reference count on bfd %s (%s)",
666 host_address_to_string (abfd),
667 bfd_get_filename (abfd));
566f5e3b 668
6ec53d05 669 if (gdata != NULL)
cbb099e8 670 {
6ec53d05 671 gdata->refc += 1;
520b0001 672 return;
cbb099e8
TT
673 }
674
3cae4447
TT
675 /* Caching only happens via gdb_bfd_open, so passing nullptr here is
676 fine. */
677 gdb_bfd_init_data (abfd, nullptr);
cbb099e8
TT
678}
679
596f7d67 680/* See gdb_bfd.h. */
cbb099e8
TT
681
682void
683gdb_bfd_unref (struct bfd *abfd)
684{
6ec53d05
TT
685 struct gdb_bfd_data *gdata;
686 struct gdb_bfd_cache_search search;
06d5bbc8 687 bfd *archive_bfd;
cbb099e8
TT
688
689 if (abfd == NULL)
690 return;
691
9a3c8263 692 gdata = (struct gdb_bfd_data *) bfd_usrdata (abfd);
6ec53d05 693 gdb_assert (gdata->refc >= 1);
cbb099e8 694
6ec53d05
TT
695 gdata->refc -= 1;
696 if (gdata->refc > 0)
566f5e3b 697 {
1e15fcac
SM
698 bfd_cache_debug_printf ("Decrease reference count on bfd %s (%s)",
699 host_address_to_string (abfd),
700 bfd_get_filename (abfd));
566f5e3b
AB
701 return;
702 }
703
1e15fcac
SM
704 bfd_cache_debug_printf ("Delete final reference count on bfd %s (%s)",
705 host_address_to_string (abfd),
706 bfd_get_filename (abfd));
cbb099e8 707
b82d08cd 708 archive_bfd = gdata->archive_bfd;
6ec53d05
TT
709 search.filename = bfd_get_filename (abfd);
710
711 if (gdb_bfd_cache && search.filename)
712 {
713 hashval_t hash = htab_hash_string (search.filename);
714 void **slot;
715
716 search.mtime = gdata->mtime;
c04fe68f
AB
717 search.size = gdata->size;
718 search.inode = gdata->inode;
719 search.device_id = gdata->device_id;
6ec53d05
TT
720 slot = htab_find_slot_with_hash (gdb_bfd_cache, &search, hash,
721 NO_INSERT);
722
723 if (slot && *slot)
724 htab_clear_slot (gdb_bfd_cache, slot);
725 }
726
e992eda4 727 bfd_free_data (abfd);
06d5bbc8 728 delete gdata;
00f93c44 729 bfd_set_usrdata (abfd, NULL); /* Paranoia. */
cbb099e8 730
d6b28940
TT
731 htab_remove_elt (all_bfds, abfd);
732
cbb099e8 733 gdb_bfd_close_or_warn (abfd);
b82d08cd
TT
734
735 gdb_bfd_unref (archive_bfd);
cbb099e8 736}
4bf44c1c
TT
737
738/* A helper function that returns the section data descriptor
739 associated with SECTION. If no such descriptor exists, a new one
740 is allocated and cleared. */
741
742static struct gdb_bfd_section_data *
743get_section_descriptor (asection *section)
744{
745 struct gdb_bfd_section_data *result;
746
fd361982 747 result = (struct gdb_bfd_section_data *) bfd_section_userdata (section);
4bf44c1c
TT
748
749 if (result == NULL)
750 {
224c3ddb
SM
751 result = ((struct gdb_bfd_section_data *)
752 bfd_zalloc (section->owner, sizeof (*result)));
fd361982 753 bfd_set_section_userdata (section, result);
4bf44c1c
TT
754 }
755
756 return result;
757}
758
4bf44c1c
TT
759/* See gdb_bfd.h. */
760
761const gdb_byte *
762gdb_bfd_map_section (asection *sectp, bfd_size_type *size)
763{
764 bfd *abfd;
4bf44c1c 765 struct gdb_bfd_section_data *descriptor;
ea9f10bb 766 bfd_byte *data;
4bf44c1c
TT
767
768 gdb_assert ((sectp->flags & SEC_RELOC) == 0);
769 gdb_assert (size != NULL);
770
771 abfd = sectp->owner;
772
773 descriptor = get_section_descriptor (sectp);
774
775 /* If the data was already read for this BFD, just reuse it. */
776 if (descriptor->data != NULL)
777 goto done;
778
ea9f10bb
TT
779#ifdef HAVE_MMAP
780 if (!bfd_is_section_compressed (abfd, sectp))
4bf44c1c 781 {
ea9f10bb
TT
782 /* The page size, used when mmapping. */
783 static int pagesize;
4bf44c1c 784
ea9f10bb
TT
785 if (pagesize == 0)
786 pagesize = getpagesize ();
787
788 /* Only try to mmap sections which are large enough: we don't want
789 to waste space due to fragmentation. */
790
fd361982 791 if (bfd_section_size (sectp) > 4 * pagesize)
ea9f10bb 792 {
fd361982 793 descriptor->size = bfd_section_size (sectp);
ea9f10bb
TT
794 descriptor->data = bfd_mmap (abfd, 0, descriptor->size, PROT_READ,
795 MAP_PRIVATE, sectp->filepos,
796 &descriptor->map_addr,
797 &descriptor->map_len);
798
799 if ((caddr_t)descriptor->data != MAP_FAILED)
800 {
4bf44c1c 801#if HAVE_POSIX_MADVISE
ea9f10bb
TT
802 posix_madvise (descriptor->map_addr, descriptor->map_len,
803 POSIX_MADV_WILLNEED);
4bf44c1c 804#endif
ea9f10bb
TT
805 goto done;
806 }
4bf44c1c 807
ea9f10bb
TT
808 /* On failure, clear out the section data and try again. */
809 memset (descriptor, 0, sizeof (*descriptor));
810 }
811 }
4bf44c1c
TT
812#endif /* HAVE_MMAP */
813
ea9f10bb
TT
814 /* Handle compressed sections, or ordinary uncompressed sections in
815 the no-mmap case. */
4bf44c1c 816
fd361982 817 descriptor->size = bfd_section_size (sectp);
ea9f10bb 818 descriptor->data = NULL;
4bf44c1c 819
ea9f10bb
TT
820 data = NULL;
821 if (!bfd_get_full_section_contents (abfd, sectp, &data))
41667530
MG
822 {
823 warning (_("Can't read data for section '%s' in file '%s'"),
fd361982 824 bfd_section_name (sectp),
41667530
MG
825 bfd_get_filename (abfd));
826 /* Set size to 0 to prevent further attempts to read the invalid
827 section. */
828 *size = 0;
cafb3438 829 return NULL;
41667530 830 }
ea9f10bb 831 descriptor->data = data;
4bf44c1c
TT
832
833 done:
834 gdb_assert (descriptor->data != NULL);
835 *size = descriptor->size;
9a3c8263 836 return (const gdb_byte *) descriptor->data;
4bf44c1c 837}
64c31149 838
dccee2de
TT
839/* Return 32-bit CRC for ABFD. If successful store it to *FILE_CRC_RETURN and
840 return 1. Otherwise print a warning and return 0. ABFD seek position is
841 not preserved. */
842
843static int
844get_file_crc (bfd *abfd, unsigned long *file_crc_return)
845{
846 unsigned long file_crc = 0;
847
848 if (bfd_seek (abfd, 0, SEEK_SET) != 0)
849 {
850 warning (_("Problem reading \"%s\" for CRC: %s"),
851 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
852 return 0;
853 }
854
855 for (;;)
856 {
857 gdb_byte buffer[8 * 1024];
858 bfd_size_type count;
859
860 count = bfd_bread (buffer, sizeof (buffer), abfd);
861 if (count == (bfd_size_type) -1)
862 {
863 warning (_("Problem reading \"%s\" for CRC: %s"),
864 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
865 return 0;
866 }
867 if (count == 0)
868 break;
869 file_crc = bfd_calc_gnu_debuglink_crc32 (file_crc, buffer, count);
870 }
871
872 *file_crc_return = file_crc;
873 return 1;
874}
875
876/* See gdb_bfd.h. */
877
878int
879gdb_bfd_crc (struct bfd *abfd, unsigned long *crc_out)
880{
9a3c8263 881 struct gdb_bfd_data *gdata = (struct gdb_bfd_data *) bfd_usrdata (abfd);
dccee2de
TT
882
883 if (!gdata->crc_computed)
884 gdata->crc_computed = get_file_crc (abfd, &gdata->crc);
885
886 if (gdata->crc_computed)
887 *crc_out = gdata->crc;
888 return gdata->crc_computed;
889}
890
64c31149
TT
891\f
892
893/* See gdb_bfd.h. */
894
192b62ce 895gdb_bfd_ref_ptr
64c31149
TT
896gdb_bfd_fopen (const char *filename, const char *target, const char *mode,
897 int fd)
898{
899 bfd *result = bfd_fopen (filename, target, mode, fd);
900
1831a9f9 901 return gdb_bfd_ref_ptr::new_reference (result);
64c31149
TT
902}
903
904/* See gdb_bfd.h. */
905
192b62ce 906gdb_bfd_ref_ptr
64c31149
TT
907gdb_bfd_openr (const char *filename, const char *target)
908{
909 bfd *result = bfd_openr (filename, target);
910
1831a9f9 911 return gdb_bfd_ref_ptr::new_reference (result);
64c31149
TT
912}
913
914/* See gdb_bfd.h. */
915
192b62ce 916gdb_bfd_ref_ptr
64c31149
TT
917gdb_bfd_openw (const char *filename, const char *target)
918{
919 bfd *result = bfd_openw (filename, target);
920
1831a9f9 921 return gdb_bfd_ref_ptr::new_reference (result);
64c31149
TT
922}
923
924/* See gdb_bfd.h. */
925
192b62ce 926gdb_bfd_ref_ptr
64c31149
TT
927gdb_bfd_openr_iovec (const char *filename, const char *target,
928 void *(*open_func) (struct bfd *nbfd,
929 void *open_closure),
930 void *open_closure,
931 file_ptr (*pread_func) (struct bfd *nbfd,
932 void *stream,
933 void *buf,
934 file_ptr nbytes,
935 file_ptr offset),
936 int (*close_func) (struct bfd *nbfd,
937 void *stream),
938 int (*stat_func) (struct bfd *abfd,
939 void *stream,
940 struct stat *sb))
941{
942 bfd *result = bfd_openr_iovec (filename, target,
943 open_func, open_closure,
944 pread_func, close_func, stat_func);
945
1831a9f9 946 return gdb_bfd_ref_ptr::new_reference (result);
64c31149
TT
947}
948
949/* See gdb_bfd.h. */
950
0cd61f44
TT
951void
952gdb_bfd_mark_parent (bfd *child, bfd *parent)
953{
954 struct gdb_bfd_data *gdata;
955
956 gdb_bfd_ref (child);
957 /* No need to stash the filename here, because we also keep a
958 reference on the parent archive. */
959
9a3c8263 960 gdata = (struct gdb_bfd_data *) bfd_usrdata (child);
0cd61f44
TT
961 if (gdata->archive_bfd == NULL)
962 {
963 gdata->archive_bfd = parent;
964 gdb_bfd_ref (parent);
965 }
966 else
967 gdb_assert (gdata->archive_bfd == parent);
968}
969
970/* See gdb_bfd.h. */
971
192b62ce 972gdb_bfd_ref_ptr
64c31149
TT
973gdb_bfd_openr_next_archived_file (bfd *archive, bfd *previous)
974{
975 bfd *result = bfd_openr_next_archived_file (archive, previous);
976
977 if (result)
0cd61f44 978 gdb_bfd_mark_parent (result, archive);
64c31149 979
192b62ce 980 return gdb_bfd_ref_ptr (result);
64c31149
TT
981}
982
983/* See gdb_bfd.h. */
984
13aaf454
DE
985void
986gdb_bfd_record_inclusion (bfd *includer, bfd *includee)
987{
988 struct gdb_bfd_data *gdata;
989
9a3c8263 990 gdata = (struct gdb_bfd_data *) bfd_usrdata (includer);
1831a9f9 991 gdata->included_bfds.push_back (gdb_bfd_ref_ptr::new_reference (includee));
13aaf454
DE
992}
993
d6b28940
TT
994\f
995
65cf3563
TT
996gdb_static_assert (ARRAY_SIZE (_bfd_std_section) == 4);
997
998/* See gdb_bfd.h. */
999
1000int
1001gdb_bfd_section_index (bfd *abfd, asection *section)
1002{
1003 if (section == NULL)
1004 return -1;
1005 else if (section == bfd_com_section_ptr)
ce9c0ca1 1006 return bfd_count_sections (abfd);
65cf3563 1007 else if (section == bfd_und_section_ptr)
ce9c0ca1 1008 return bfd_count_sections (abfd) + 1;
65cf3563 1009 else if (section == bfd_abs_section_ptr)
ce9c0ca1 1010 return bfd_count_sections (abfd) + 2;
65cf3563 1011 else if (section == bfd_ind_section_ptr)
ce9c0ca1 1012 return bfd_count_sections (abfd) + 3;
65cf3563
TT
1013 return section->index;
1014}
1015
1016/* See gdb_bfd.h. */
1017
1018int
1019gdb_bfd_count_sections (bfd *abfd)
1020{
1021 return bfd_count_sections (abfd) + 4;
1022}
1023
1da77581
TT
1024/* See gdb_bfd.h. */
1025
1026int
1027gdb_bfd_requires_relocations (bfd *abfd)
1028{
9a3c8263 1029 struct gdb_bfd_data *gdata = (struct gdb_bfd_data *) bfd_usrdata (abfd);
1da77581
TT
1030
1031 if (gdata->relocation_computed == 0)
1032 {
1033 asection *sect;
1034
1035 for (sect = abfd->sections; sect != NULL; sect = sect->next)
1036 if ((sect->flags & SEC_RELOC) != 0)
1037 {
1038 gdata->needs_relocations = 1;
1039 break;
1040 }
1041
1042 gdata->relocation_computed = 1;
1043 }
1044
1045 return gdata->needs_relocations;
1046}
1047
e0fc5c3f
SM
1048/* See gdb_bfd.h. */
1049
1050bool
1051gdb_bfd_get_full_section_contents (bfd *abfd, asection *section,
1052 gdb::byte_vector *contents)
1053{
1054 bfd_size_type section_size = bfd_section_size (section);
1055
1056 contents->resize (section_size);
1057
1058 return bfd_get_section_contents (abfd, section, contents->data (), 0,
1059 section_size);
1060}
65cf3563 1061
d6b28940
TT
1062/* A callback for htab_traverse that prints a single BFD. */
1063
1064static int
1065print_one_bfd (void **slot, void *data)
1066{
9a3c8263
SM
1067 bfd *abfd = (struct bfd *) *slot;
1068 struct gdb_bfd_data *gdata = (struct gdb_bfd_data *) bfd_usrdata (abfd);
1069 struct ui_out *uiout = (struct ui_out *) data;
d6b28940 1070
2e783024 1071 ui_out_emit_tuple tuple_emitter (uiout, NULL);
381befee 1072 uiout->field_signed ("refcount", gdata->refc);
112e8700
SM
1073 uiout->field_string ("addr", host_address_to_string (abfd));
1074 uiout->field_string ("filename", bfd_get_filename (abfd));
1075 uiout->text ("\n");
d6b28940
TT
1076
1077 return 1;
1078}
1079
1080/* Implement the 'maint info bfd' command. */
1081
1082static void
e4e33335 1083maintenance_info_bfds (const char *arg, int from_tty)
d6b28940 1084{
d6b28940
TT
1085 struct ui_out *uiout = current_uiout;
1086
4a2b031d 1087 ui_out_emit_table table_emitter (uiout, 3, -1, "bfds");
112e8700
SM
1088 uiout->table_header (10, ui_left, "refcount", "Refcount");
1089 uiout->table_header (18, ui_left, "addr", "Address");
1090 uiout->table_header (40, ui_left, "filename", "Filename");
d6b28940 1091
112e8700 1092 uiout->table_body ();
d6b28940 1093 htab_traverse (all_bfds, print_one_bfd, uiout);
d6b28940
TT
1094}
1095
6c265988 1096void _initialize_gdb_bfd ();
d6b28940 1097void
6c265988 1098_initialize_gdb_bfd ()
d6b28940
TT
1099{
1100 all_bfds = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
1101 NULL, xcalloc, xfree);
1102
1103 add_cmd ("bfds", class_maintenance, maintenance_info_bfds, _("\
1104List the BFDs that are currently open."),
1105 &maintenanceinfolist);
18989b3c
AB
1106
1107 add_setshow_boolean_cmd ("bfd-sharing", no_class,
1108 &bfd_sharing, _("\
1109Set whether gdb will share bfds that appear to be the same file."), _("\
1110Show whether gdb will share bfds that appear to be the same file."), _("\
1111When enabled gdb will reuse existing bfds rather than reopening the\n\
1112same file. To decide if two files are the same then gdb compares the\n\
1113filename, file size, file modification time, and file inode."),
1114 NULL,
1115 &show_bfd_sharing,
1116 &maintenance_set_cmdlist,
1117 &maintenance_show_cmdlist);
566f5e3b 1118
d4dd4fca
SM
1119 add_setshow_boolean_cmd ("bfd-cache", class_maintenance,
1120 &debug_bfd_cache,
1121 _("Set bfd cache debugging."),
1122 _("Show bfd cache debugging."),
1123 _("\
566f5e3b 1124When non-zero, bfd cache specific debugging is enabled."),
d4dd4fca
SM
1125 NULL,
1126 &show_bfd_cache_debug,
1127 &setdebuglist, &showdebuglist);
d6b28940 1128}
This page took 1.367746 seconds and 4 git commands to generate.