* NEWS: Mention maint info bfds.
[deliverable/binutils-gdb.git] / gdb / gdb_bfd.c
CommitLineData
cbb099e8
TT
1/* Definitions for BFD wrappers used by GDB.
2
6ec53d05 3 Copyright (C) 2011, 2012
cbb099e8
TT
4 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21#include "defs.h"
22#include "gdb_bfd.h"
23#include "gdb_assert.h"
a4453b7e 24#include "gdb_string.h"
d6b28940
TT
25#include "ui-out.h"
26#include "gdbcmd.h"
6ec53d05 27#include "hashtab.h"
4bf44c1c
TT
28#ifdef HAVE_ZLIB_H
29#include <zlib.h>
30#endif
31#ifdef HAVE_MMAP
32#include <sys/mman.h>
33#ifndef MAP_FAILED
34#define MAP_FAILED ((void *) -1)
35#endif
36#endif
37
38/* An object of this type is stored in the section's user data when
39 mapping a section. */
40
41struct gdb_bfd_section_data
42{
43 /* Size of the data. */
44 bfd_size_type size;
45 /* If the data was mmapped, this is the length of the map. */
46 bfd_size_type map_len;
47 /* The data. If NULL, the section data has not been read. */
48 void *data;
49 /* If the data was mmapped, this is the map address. */
50 void *map_addr;
51};
a4453b7e 52
d6b28940
TT
53/* A hash table holding every BFD that gdb knows about. This is not
54 to be confused with 'gdb_bfd_cache', which is used for sharing
55 BFDs; in contrast, this hash is used just to implement
56 "maint info bfd". */
57
58static htab_t all_bfds;
59
a4453b7e
TT
60/* See gdb_bfd.h. */
61
62void
63gdb_bfd_stash_filename (struct bfd *abfd)
64{
65 char *name = bfd_get_filename (abfd);
66 char *data;
67
68 data = bfd_alloc (abfd, strlen (name) + 1);
69 strcpy (data, name);
70
71 /* Unwarranted chumminess with BFD. */
72 abfd->filename = data;
73}
cbb099e8 74
6ec53d05
TT
75/* An object of this type is stored in each BFD's user data. */
76
77struct gdb_bfd_data
78{
79 /* The reference count. */
80 int refc;
81
82 /* The mtime of the BFD at the point the cache entry was made. */
83 time_t mtime;
84};
85
86/* A hash table storing all the BFDs maintained in the cache. */
87
88static htab_t gdb_bfd_cache;
89
90/* The type of an object being looked up in gdb_bfd_cache. We use
91 htab's capability of storing one kind of object (BFD in this case)
92 and using a different sort of object for searching. */
93
94struct gdb_bfd_cache_search
95{
96 /* The filename. */
97 const char *filename;
98 /* The mtime. */
99 time_t mtime;
100};
101
102/* A hash function for BFDs. */
103
104static hashval_t
105hash_bfd (const void *b)
106{
107 const bfd *abfd = b;
108
109 /* It is simplest to just hash the filename. */
110 return htab_hash_string (bfd_get_filename (abfd));
111}
112
113/* An equality function for BFDs. Note that this expects the caller
114 to search using struct gdb_bfd_cache_search only, not BFDs. */
115
116static int
117eq_bfd (const void *a, const void *b)
118{
119 const bfd *abfd = a;
120 const struct gdb_bfd_cache_search *s = b;
121 struct gdb_bfd_data *gdata = bfd_usrdata (abfd);
122
123 return (gdata->mtime == s->mtime
124 && strcmp (bfd_get_filename (abfd), s->filename) == 0);
125}
126
127/* See gdb_bfd.h. */
128
129struct bfd *
130gdb_bfd_open (const char *name, const char *target, int fd)
131{
132 hashval_t hash;
133 void **slot;
134 bfd *abfd;
135 struct gdb_bfd_cache_search search;
136 struct stat st;
137
138 if (gdb_bfd_cache == NULL)
139 gdb_bfd_cache = htab_create_alloc (1, hash_bfd, eq_bfd, NULL,
140 xcalloc, xfree);
141
142 if (fd == -1)
143 {
144 fd = open (name, O_RDONLY | O_BINARY);
145 if (fd == -1)
146 {
147 bfd_set_error (bfd_error_system_call);
148 return NULL;
149 }
150 }
151
152 search.filename = name;
153 if (fstat (fd, &st) < 0)
154 {
155 /* Weird situation here. */
156 search.mtime = 0;
157 }
158 else
159 search.mtime = st.st_mtime;
160
161 /* Note that this must compute the same result as hash_bfd. */
162 hash = htab_hash_string (name);
163 /* Note that we cannot use htab_find_slot_with_hash here, because
164 opening the BFD may fail; and this would violate hashtab
165 invariants. */
166 abfd = htab_find_with_hash (gdb_bfd_cache, &search, hash);
167 if (abfd != NULL)
168 {
169 close (fd);
520b0001
TT
170 gdb_bfd_ref (abfd);
171 return abfd;
6ec53d05
TT
172 }
173
174 abfd = bfd_fopen (name, target, FOPEN_RB, fd);
175 if (abfd == NULL)
176 return NULL;
177
178 slot = htab_find_slot_with_hash (gdb_bfd_cache, &search, hash, INSERT);
179 gdb_assert (!*slot);
180 *slot = abfd;
181
182 gdb_bfd_stash_filename (abfd);
520b0001
TT
183 gdb_bfd_ref (abfd);
184 return abfd;
6ec53d05
TT
185}
186
4bf44c1c
TT
187/* A helper function that releases any section data attached to the
188 BFD. */
189
190static void
191free_one_bfd_section (bfd *abfd, asection *sectp, void *ignore)
192{
193 struct gdb_bfd_section_data *sect = bfd_get_section_userdata (abfd, sectp);
194
195 if (sect != NULL && sect->data != NULL)
196 {
197#ifdef HAVE_MMAP
198 if (sect->map_addr != NULL)
199 {
200 int res;
201
202 res = munmap (sect->map_addr, sect->map_len);
203 gdb_assert (res == 0);
204 }
205 else
206#endif
207 xfree (sect->data);
208 }
209}
210
cbb099e8
TT
211/* Close ABFD, and warn if that fails. */
212
213static int
214gdb_bfd_close_or_warn (struct bfd *abfd)
215{
216 int ret;
217 char *name = bfd_get_filename (abfd);
218
4bf44c1c
TT
219 bfd_map_over_sections (abfd, free_one_bfd_section, NULL);
220
cbb099e8
TT
221 ret = bfd_close (abfd);
222
223 if (!ret)
224 warning (_("cannot close \"%s\": %s"),
225 name, bfd_errmsg (bfd_get_error ()));
226
227 return ret;
228}
229
596f7d67 230/* See gdb_bfd.h. */
cbb099e8 231
520b0001 232void
cbb099e8
TT
233gdb_bfd_ref (struct bfd *abfd)
234{
6ec53d05 235 struct gdb_bfd_data *gdata;
d6b28940 236 void **slot;
cbb099e8
TT
237
238 if (abfd == NULL)
520b0001 239 return;
cbb099e8 240
6ec53d05 241 gdata = bfd_usrdata (abfd);
cbb099e8 242
6ec53d05 243 if (gdata != NULL)
cbb099e8 244 {
6ec53d05 245 gdata->refc += 1;
520b0001 246 return;
cbb099e8
TT
247 }
248
6ec53d05
TT
249 gdata = bfd_zalloc (abfd, sizeof (struct gdb_bfd_data));
250 gdata->refc = 1;
251 gdata->mtime = bfd_get_mtime (abfd);
252 bfd_usrdata (abfd) = gdata;
d6b28940
TT
253
254 /* This is the first we've seen it, so add it to the hash table. */
255 slot = htab_find_slot (all_bfds, abfd, INSERT);
256 gdb_assert (slot && !*slot);
257 *slot = abfd;
cbb099e8
TT
258}
259
596f7d67 260/* See gdb_bfd.h. */
cbb099e8
TT
261
262void
263gdb_bfd_unref (struct bfd *abfd)
264{
6ec53d05
TT
265 struct gdb_bfd_data *gdata;
266 struct gdb_bfd_cache_search search;
d6b28940 267 void **slot;
cbb099e8
TT
268
269 if (abfd == NULL)
270 return;
271
6ec53d05
TT
272 gdata = bfd_usrdata (abfd);
273 gdb_assert (gdata->refc >= 1);
cbb099e8 274
6ec53d05
TT
275 gdata->refc -= 1;
276 if (gdata->refc > 0)
cbb099e8
TT
277 return;
278
6ec53d05
TT
279 search.filename = bfd_get_filename (abfd);
280
281 if (gdb_bfd_cache && search.filename)
282 {
283 hashval_t hash = htab_hash_string (search.filename);
284 void **slot;
285
286 search.mtime = gdata->mtime;
287 slot = htab_find_slot_with_hash (gdb_bfd_cache, &search, hash,
288 NO_INSERT);
289
290 if (slot && *slot)
291 htab_clear_slot (gdb_bfd_cache, slot);
292 }
293
cbb099e8
TT
294 bfd_usrdata (abfd) = NULL; /* Paranoia. */
295
d6b28940
TT
296 htab_remove_elt (all_bfds, abfd);
297
cbb099e8
TT
298 gdb_bfd_close_or_warn (abfd);
299}
4bf44c1c
TT
300
301/* A helper function that returns the section data descriptor
302 associated with SECTION. If no such descriptor exists, a new one
303 is allocated and cleared. */
304
305static struct gdb_bfd_section_data *
306get_section_descriptor (asection *section)
307{
308 struct gdb_bfd_section_data *result;
309
310 result = bfd_get_section_userdata (section->owner, section);
311
312 if (result == NULL)
313 {
314 result = bfd_zalloc (section->owner, sizeof (*result));
315 bfd_set_section_userdata (section->owner, section, result);
316 }
317
318 return result;
319}
320
321/* Decompress a section that was compressed using zlib. Store the
322 decompressed buffer, and its size, in DESCRIPTOR. */
323
324static void
325zlib_decompress_section (asection *sectp,
326 struct gdb_bfd_section_data *descriptor)
327{
328 bfd *abfd = sectp->owner;
329#ifndef HAVE_ZLIB_H
330 error (_("Support for zlib-compressed data (from '%s', section '%s') "
331 "is disabled in this copy of GDB"),
332 bfd_get_filename (abfd),
1634dcbe 333 bfd_get_section_name (abfd, sectp));
4bf44c1c
TT
334#else
335 bfd_size_type compressed_size = bfd_get_section_size (sectp);
336 gdb_byte *compressed_buffer = xmalloc (compressed_size);
337 struct cleanup *cleanup = make_cleanup (xfree, compressed_buffer);
338 struct cleanup *inner_cleanup;
339 bfd_size_type uncompressed_size;
340 gdb_byte *uncompressed_buffer;
341 z_stream strm;
342 int rc;
343 int header_size = 12;
344 struct dwarf2_per_bfd_section *section_data;
345
346 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
347 || bfd_bread (compressed_buffer,
348 compressed_size, abfd) != compressed_size)
349 error (_("can't read data from '%s', section '%s'"),
350 bfd_get_filename (abfd),
351 bfd_get_section_name (abfd, sectp));
352
353 /* Read the zlib header. In this case, it should be "ZLIB" followed
354 by the uncompressed section size, 8 bytes in big-endian order. */
355 if (compressed_size < header_size
356 || strncmp (compressed_buffer, "ZLIB", 4) != 0)
357 error (_("corrupt ZLIB header from '%s', section '%s'"),
358 bfd_get_filename (abfd),
359 bfd_get_section_name (abfd, sectp));
360 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
361 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
362 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
363 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
364 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
365 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
366 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
367 uncompressed_size += compressed_buffer[11];
368
369 /* It is possible the section consists of several compressed
370 buffers concatenated together, so we uncompress in a loop. */
371 strm.zalloc = NULL;
372 strm.zfree = NULL;
373 strm.opaque = NULL;
374 strm.avail_in = compressed_size - header_size;
375 strm.next_in = (Bytef*) compressed_buffer + header_size;
376 strm.avail_out = uncompressed_size;
377 uncompressed_buffer = xmalloc (uncompressed_size);
378 inner_cleanup = make_cleanup (xfree, uncompressed_buffer);
379 rc = inflateInit (&strm);
380 while (strm.avail_in > 0)
381 {
382 if (rc != Z_OK)
383 error (_("setting up uncompression in '%s', section '%s': %d"),
384 bfd_get_filename (abfd),
385 bfd_get_section_name (abfd, sectp),
386 rc);
387 strm.next_out = ((Bytef*) uncompressed_buffer
388 + (uncompressed_size - strm.avail_out));
389 rc = inflate (&strm, Z_FINISH);
390 if (rc != Z_STREAM_END)
391 error (_("zlib error uncompressing from '%s', section '%s': %d"),
392 bfd_get_filename (abfd),
393 bfd_get_section_name (abfd, sectp),
394 rc);
395 rc = inflateReset (&strm);
396 }
397 rc = inflateEnd (&strm);
398 if (rc != Z_OK
399 || strm.avail_out != 0)
400 error (_("concluding uncompression in '%s', section '%s': %d"),
401 bfd_get_filename (abfd),
402 bfd_get_section_name (abfd, sectp),
403 rc);
404
405 discard_cleanups (inner_cleanup);
406 do_cleanups (cleanup);
407
408 /* Attach the data to the BFD section. */
409 descriptor->data = uncompressed_buffer;
410 descriptor->size = uncompressed_size;
411#endif
412}
413
414/* See gdb_bfd.h. */
415
416const gdb_byte *
417gdb_bfd_map_section (asection *sectp, bfd_size_type *size)
418{
419 bfd *abfd;
420 gdb_byte *buf, *retbuf;
421 unsigned char header[4];
422 struct gdb_bfd_section_data *descriptor;
423
424 gdb_assert ((sectp->flags & SEC_RELOC) == 0);
425 gdb_assert (size != NULL);
426
427 abfd = sectp->owner;
428
429 descriptor = get_section_descriptor (sectp);
430
431 /* If the data was already read for this BFD, just reuse it. */
432 if (descriptor->data != NULL)
433 goto done;
434
435 /* Check if the file has a 4-byte header indicating compression. */
436 if (bfd_get_section_size (sectp) > sizeof (header)
437 && bfd_seek (abfd, sectp->filepos, SEEK_SET) == 0
438 && bfd_bread (header, sizeof (header), abfd) == sizeof (header))
439 {
440 /* Upon decompression, update the buffer and its size. */
441 if (strncmp (header, "ZLIB", sizeof (header)) == 0)
442 {
443 zlib_decompress_section (sectp, descriptor);
444 goto done;
445 }
446 }
447
448#ifdef HAVE_MMAP
449 {
450 /* The page size, used when mmapping. */
451 static int pagesize;
452
453 if (pagesize == 0)
454 pagesize = getpagesize ();
455
456 /* Only try to mmap sections which are large enough: we don't want
457 to waste space due to fragmentation. */
458
459 if (bfd_get_section_size (sectp) > 4 * pagesize)
460 {
461 descriptor->size = bfd_get_section_size (sectp);
462 descriptor->data = bfd_mmap (abfd, 0, descriptor->size, PROT_READ,
463 MAP_PRIVATE, sectp->filepos,
464 &descriptor->map_addr,
465 &descriptor->map_len);
466
467 if ((caddr_t)descriptor->data != MAP_FAILED)
468 {
469#if HAVE_POSIX_MADVISE
470 posix_madvise (descriptor->map_addr, descriptor->map_len,
471 POSIX_MADV_WILLNEED);
472#endif
473 goto done;
474 }
475
476 /* On failure, clear out the section data and try again. */
477 memset (descriptor, 0, sizeof (*descriptor));
478 }
479 }
480#endif /* HAVE_MMAP */
481
482 /* If we get here, we are a normal, not-compressed section. */
483
484 descriptor->size = bfd_get_section_size (sectp);
485 descriptor->data = xmalloc (descriptor->size);
486
487 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
488 || bfd_bread (descriptor->data, bfd_get_section_size (sectp),
489 abfd) != bfd_get_section_size (sectp))
490 {
491 xfree (descriptor->data);
492 descriptor->data = NULL;
493 error (_("Can't read data for section '%s'"),
494 bfd_get_filename (abfd));
495 }
496
497 done:
498 gdb_assert (descriptor->data != NULL);
499 *size = descriptor->size;
500 return descriptor->data;
501}
64c31149
TT
502
503\f
504
505/* See gdb_bfd.h. */
506
507bfd *
508gdb_bfd_fopen (const char *filename, const char *target, const char *mode,
509 int fd)
510{
511 bfd *result = bfd_fopen (filename, target, mode, fd);
512
513 if (result)
514 {
515 gdb_bfd_stash_filename (result);
516 gdb_bfd_ref (result);
517 }
518
519 return result;
520}
521
522/* See gdb_bfd.h. */
523
524bfd *
525gdb_bfd_openr (const char *filename, const char *target)
526{
527 bfd *result = bfd_openr (filename, target);
528
529 if (result)
530 {
531 gdb_bfd_stash_filename (result);
532 gdb_bfd_ref (result);
533 }
534
535 return result;
536}
537
538/* See gdb_bfd.h. */
539
540bfd *
541gdb_bfd_openw (const char *filename, const char *target)
542{
543 bfd *result = bfd_openw (filename, target);
544
545 if (result)
546 {
547 gdb_bfd_stash_filename (result);
548 gdb_bfd_ref (result);
549 }
550
551 return result;
552}
553
554/* See gdb_bfd.h. */
555
556bfd *
557gdb_bfd_openr_iovec (const char *filename, const char *target,
558 void *(*open_func) (struct bfd *nbfd,
559 void *open_closure),
560 void *open_closure,
561 file_ptr (*pread_func) (struct bfd *nbfd,
562 void *stream,
563 void *buf,
564 file_ptr nbytes,
565 file_ptr offset),
566 int (*close_func) (struct bfd *nbfd,
567 void *stream),
568 int (*stat_func) (struct bfd *abfd,
569 void *stream,
570 struct stat *sb))
571{
572 bfd *result = bfd_openr_iovec (filename, target,
573 open_func, open_closure,
574 pread_func, close_func, stat_func);
575
576 if (result)
577 {
578 gdb_bfd_ref (result);
579 gdb_bfd_stash_filename (result);
580 }
581
582 return result;
583}
584
585/* See gdb_bfd.h. */
586
587bfd *
588gdb_bfd_openr_next_archived_file (bfd *archive, bfd *previous)
589{
590 bfd *result = bfd_openr_next_archived_file (archive, previous);
591
592 if (result)
593 {
594 gdb_bfd_ref (result);
595 /* No need to stash the filename here. */
596 }
597
598 return result;
599}
600
601/* See gdb_bfd.h. */
602
603bfd *
604gdb_bfd_fdopenr (const char *filename, const char *target, int fd)
605{
606 bfd *result = bfd_fdopenr (filename, target, fd);
607
608 if (result)
609 {
610 gdb_bfd_ref (result);
611 gdb_bfd_stash_filename (result);
612 }
613
614 return result;
615}
d6b28940
TT
616
617\f
618
619/* A callback for htab_traverse that prints a single BFD. */
620
621static int
622print_one_bfd (void **slot, void *data)
623{
624 bfd *abfd = *slot;
625 struct gdb_bfd_data *gdata = bfd_usrdata (abfd);
626 struct ui_out *uiout = data;
627 struct cleanup *inner;
628
629 inner = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
630 ui_out_field_int (uiout, "refcount", gdata->refc);
631 ui_out_field_string (uiout, "addr", host_address_to_string (abfd));
632 ui_out_field_string (uiout, "filename", bfd_get_filename (abfd));
633 ui_out_text (uiout, "\n");
634 do_cleanups (inner);
635
636 return 1;
637}
638
639/* Implement the 'maint info bfd' command. */
640
641static void
642maintenance_info_bfds (char *arg, int from_tty)
643{
644 struct cleanup *cleanup;
645 struct ui_out *uiout = current_uiout;
646
647 cleanup = make_cleanup_ui_out_table_begin_end (uiout, 3, -1, "bfds");
648 ui_out_table_header (uiout, 10, ui_left, "refcount", "Refcount");
649 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");
650 ui_out_table_header (uiout, 40, ui_left, "filename", "Filename");
651
652 ui_out_table_body (uiout);
653 htab_traverse (all_bfds, print_one_bfd, uiout);
654
655 do_cleanups (cleanup);
656}
657
658/* -Wmissing-prototypes */
659extern initialize_file_ftype _initialize_gdb_bfd;
660
661void
662_initialize_gdb_bfd (void)
663{
664 all_bfds = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
665 NULL, xcalloc, xfree);
666
667 add_cmd ("bfds", class_maintenance, maintenance_info_bfds, _("\
668List the BFDs that are currently open."),
669 &maintenanceinfolist);
670}
This page took 0.056649 seconds and 4 git commands to generate.