1 /* opncls.c -- open and close a BFD.
2 Copyright (C) 1990-2020 Free Software Foundation, Inc.
4 Written by Cygnus Support.
6 This file is part of BFD, the Binary File Descriptor library.
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.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
27 #include "libiberty.h"
31 #define S_IXUSR 0100 /* Execute by owner. */
34 #define S_IXGRP 0010 /* Execute by group. */
37 #define S_IXOTH 0001 /* Execute by others. */
40 /* Counters used to initialize the bfd identifier. */
42 static unsigned int bfd_id_counter = 0;
43 static unsigned int bfd_reserved_id_counter = 0;
47 .{* Set to N to open the next N BFDs using an alternate id space. *}
48 .extern unsigned int bfd_use_reserved_id;
50 unsigned int bfd_use_reserved_id = 0;
52 /* fdopen is a loser -- we should use stdio exclusively. Unfortunately
53 if we do that we can't use fcntl. */
55 /* Return a new BFD. All BFD's are allocated through this routine. */
62 nbfd = (bfd *) bfd_zmalloc (sizeof (bfd));
66 if (bfd_use_reserved_id)
68 nbfd->id = --bfd_reserved_id_counter;
69 --bfd_use_reserved_id;
72 nbfd->id = bfd_id_counter++;
74 nbfd->memory = objalloc_create ();
75 if (nbfd->memory == NULL)
77 bfd_set_error (bfd_error_no_memory);
82 nbfd->arch_info = &bfd_default_arch_struct;
84 if (!bfd_hash_table_init_n (& nbfd->section_htab, bfd_section_hash_newfunc,
85 sizeof (struct section_hash_entry), 13))
94 static const struct bfd_iovec opncls_iovec;
96 /* Allocate a new BFD as a member of archive OBFD. */
99 _bfd_new_bfd_contained_in (bfd *obfd)
103 nbfd = _bfd_new_bfd ();
106 nbfd->xvec = obfd->xvec;
107 nbfd->iovec = obfd->iovec;
108 if (obfd->iovec == &opncls_iovec)
109 nbfd->iostream = obfd->iostream;
110 nbfd->my_archive = obfd;
111 nbfd->direction = read_direction;
112 nbfd->target_defaulted = obfd->target_defaulted;
113 nbfd->lto_output = obfd->lto_output;
114 nbfd->no_export = obfd->no_export;
121 _bfd_delete_bfd (bfd *abfd)
125 bfd_hash_table_free (&abfd->section_htab);
126 objalloc_free ((struct objalloc *) abfd->memory);
129 free (abfd->arelt_data);
133 /* Free objalloc memory. */
136 _bfd_free_cached_info (bfd *abfd)
140 bfd_hash_table_free (&abfd->section_htab);
141 objalloc_free ((struct objalloc *) abfd->memory);
143 abfd->sections = NULL;
144 abfd->section_last = NULL;
145 abfd->outsymbols = NULL;
146 abfd->tdata.any = NULL;
147 abfd->usrdata = NULL;
156 Opening and closing BFDs
159 Functions for opening and closing
167 bfd *bfd_fopen (const char *filename, const char *target,
168 const char *mode, int fd);
171 Open the file @var{filename} with the target @var{target}.
172 Return a pointer to the created BFD. If @var{fd} is not -1,
173 then <<fdopen>> is used to open the file; otherwise, <<fopen>>
174 is used. @var{mode} is passed directly to <<fopen>> or
177 Calls <<bfd_find_target>>, so @var{target} is interpreted as by
180 The new BFD is marked as cacheable iff @var{fd} is -1.
182 If <<NULL>> is returned then an error has occured. Possible errors
183 are <<bfd_error_no_memory>>, <<bfd_error_invalid_target>> or
184 <<system_call>> error.
186 On error, @var{fd} is always closed.
188 A copy of the @var{filename} argument is stored in the newly created
189 BFD. It can be accessed via the bfd_get_filename() macro.
193 bfd_fopen (const char *filename, const char *target, const char *mode, int fd)
196 const bfd_target *target_vec;
198 nbfd = _bfd_new_bfd ();
206 target_vec = bfd_find_target (target, nbfd);
207 if (target_vec == NULL)
211 _bfd_delete_bfd (nbfd);
217 nbfd->iostream = fdopen (fd, mode);
220 nbfd->iostream = _bfd_real_fopen (filename, mode);
221 if (nbfd->iostream == NULL)
223 bfd_set_error (bfd_error_system_call);
226 _bfd_delete_bfd (nbfd);
230 /* OK, put everything where it belongs. */
232 /* PR 11983: Do not cache the original filename, but
233 rather make a copy - the original might go away. */
234 if (!bfd_set_filename (nbfd, filename))
236 fclose (nbfd->iostream);
237 _bfd_delete_bfd (nbfd);
241 /* Figure out whether the user is opening the file for reading,
242 writing, or both, by looking at the MODE argument. */
243 if ((mode[0] == 'r' || mode[0] == 'w' || mode[0] == 'a')
245 nbfd->direction = both_direction;
246 else if (mode[0] == 'r')
247 nbfd->direction = read_direction;
249 nbfd->direction = write_direction;
251 if (!bfd_cache_init (nbfd))
253 fclose (nbfd->iostream);
254 _bfd_delete_bfd (nbfd);
257 nbfd->opened_once = TRUE;
259 /* If we opened the file by name, mark it cacheable; we can close it
260 and reopen it later. However, if a file descriptor was provided,
261 then it may have been opened with special flags that make it
262 unsafe to close and reopen the file. */
264 (void) bfd_set_cacheable (nbfd, TRUE);
274 bfd *bfd_openr (const char *filename, const char *target);
277 Open the file @var{filename} (using <<fopen>>) with the target
278 @var{target}. Return a pointer to the created BFD.
280 Calls <<bfd_find_target>>, so @var{target} is interpreted as by
283 If <<NULL>> is returned then an error has occured. Possible errors
284 are <<bfd_error_no_memory>>, <<bfd_error_invalid_target>> or
285 <<system_call>> error.
287 A copy of the @var{filename} argument is stored in the newly created
288 BFD. It can be accessed via the bfd_get_filename() macro.
292 bfd_openr (const char *filename, const char *target)
294 return bfd_fopen (filename, target, FOPEN_RB, -1);
297 /* Don't try to `optimize' this function:
299 o - We lock using stack space so that interrupting the locking
300 won't cause a storage leak.
301 o - We open the file stream last, since we don't want to have to
302 close it if anything goes wrong. Closing the stream means closing
303 the file descriptor too, even though we didn't open it. */
309 bfd *bfd_fdopenr (const char *filename, const char *target, int fd);
312 <<bfd_fdopenr>> is to <<bfd_fopenr>> much like <<fdopen>> is to
313 <<fopen>>. It opens a BFD on a file already described by the
316 When the file is later <<bfd_close>>d, the file descriptor will
317 be closed. If the caller desires that this file descriptor be
318 cached by BFD (opened as needed, closed as needed to free
319 descriptors for other opens), with the supplied @var{fd} used as
320 an initial file descriptor (but subject to closure at any time),
321 call bfd_set_cacheable(bfd, 1) on the returned BFD. The default
322 is to assume no caching; the file descriptor will remain open
323 until <<bfd_close>>, and will not be affected by BFD operations
326 Possible errors are <<bfd_error_no_memory>>,
327 <<bfd_error_invalid_target>> and <<bfd_error_system_call>>.
329 On error, @var{fd} is closed.
331 A copy of the @var{filename} argument is stored in the newly created
332 BFD. It can be accessed via the bfd_get_filename() macro.
336 bfd_fdopenr (const char *filename, const char *target, int fd)
339 #if defined(HAVE_FCNTL) && defined(F_GETFL)
343 #if ! defined(HAVE_FCNTL) || ! defined(F_GETFL)
344 mode = FOPEN_RUB; /* Assume full access. */
346 fdflags = fcntl (fd, F_GETFL, NULL);
353 bfd_set_error (bfd_error_system_call);
357 /* (O_ACCMODE) parens are to avoid Ultrix header file bug. */
358 switch (fdflags & (O_ACCMODE))
360 case O_RDONLY: mode = FOPEN_RB; break;
361 case O_WRONLY: mode = FOPEN_RUB; break;
362 case O_RDWR: mode = FOPEN_RUB; break;
367 return bfd_fopen (filename, target, mode, fd);
375 bfd *bfd_openstreamr (const char * filename, const char * target,
379 Open a BFD for read access on an existing stdio stream. When
380 the BFD is passed to <<bfd_close>>, the stream will be closed.
382 A copy of the @var{filename} argument is stored in the newly created
383 BFD. It can be accessed via the bfd_get_filename() macro.
387 bfd_openstreamr (const char *filename, const char *target, void *streamarg)
389 FILE *stream = (FILE *) streamarg;
391 const bfd_target *target_vec;
393 nbfd = _bfd_new_bfd ();
397 target_vec = bfd_find_target (target, nbfd);
398 if (target_vec == NULL)
400 _bfd_delete_bfd (nbfd);
404 nbfd->iostream = stream;
405 /* PR 11983: Do not cache the original filename, but
406 rather make a copy - the original might go away. */
407 if (!bfd_set_filename (nbfd, filename))
409 _bfd_delete_bfd (nbfd);
412 nbfd->direction = read_direction;
414 if (! bfd_cache_init (nbfd))
416 _bfd_delete_bfd (nbfd);
428 bfd *bfd_openr_iovec (const char *filename, const char *target,
429 void *(*open_func) (struct bfd *nbfd,
432 file_ptr (*pread_func) (struct bfd *nbfd,
437 int (*close_func) (struct bfd *nbfd,
439 int (*stat_func) (struct bfd *abfd,
444 Create and return a BFD backed by a read-only @var{stream}.
445 The @var{stream} is created using @var{open_func}, accessed using
446 @var{pread_func} and destroyed using @var{close_func}.
448 Calls <<bfd_find_target>>, so @var{target} is interpreted as by
451 Calls @var{open_func} (which can call <<bfd_zalloc>> and
452 <<bfd_get_filename>>) to obtain the read-only stream backing
453 the BFD. @var{open_func} either succeeds returning the
454 non-<<NULL>> @var{stream}, or fails returning <<NULL>>
455 (setting <<bfd_error>>).
457 Calls @var{pread_func} to request @var{nbytes} of data from
458 @var{stream} starting at @var{offset} (e.g., via a call to
459 <<bfd_read>>). @var{pread_func} either succeeds returning the
460 number of bytes read (which can be less than @var{nbytes} when
461 end-of-file), or fails returning -1 (setting <<bfd_error>>).
463 Calls @var{close_func} when the BFD is later closed using
464 <<bfd_close>>. @var{close_func} either succeeds returning 0, or
465 fails returning -1 (setting <<bfd_error>>).
467 Calls @var{stat_func} to fill in a stat structure for bfd_stat,
468 bfd_get_size, and bfd_get_mtime calls. @var{stat_func} returns 0
469 on success, or returns -1 on failure (setting <<bfd_error>>).
471 If <<bfd_openr_iovec>> returns <<NULL>> then an error has
472 occurred. Possible errors are <<bfd_error_no_memory>>,
473 <<bfd_error_invalid_target>> and <<bfd_error_system_call>>.
475 A copy of the @var{filename} argument is stored in the newly created
476 BFD. It can be accessed via the bfd_get_filename() macro.
482 file_ptr (*pread) (struct bfd *abfd, void *stream, void *buf,
483 file_ptr nbytes, file_ptr offset);
484 int (*close) (struct bfd *abfd, void *stream);
485 int (*stat) (struct bfd *abfd, void *stream, struct stat *sb);
490 opncls_btell (struct bfd *abfd)
492 struct opncls *vec = (struct opncls *) abfd->iostream;
497 opncls_bseek (struct bfd *abfd, file_ptr offset, int whence)
499 struct opncls *vec = (struct opncls *) abfd->iostream;
502 case SEEK_SET: vec->where = offset; break;
503 case SEEK_CUR: vec->where += offset; break;
504 case SEEK_END: return -1;
510 opncls_bread (struct bfd *abfd, void *buf, file_ptr nbytes)
512 struct opncls *vec = (struct opncls *) abfd->iostream;
513 file_ptr nread = (vec->pread) (abfd, vec->stream, buf, nbytes, vec->where);
522 opncls_bwrite (struct bfd *abfd ATTRIBUTE_UNUSED,
523 const void *where ATTRIBUTE_UNUSED,
524 file_ptr nbytes ATTRIBUTE_UNUSED)
530 opncls_bclose (struct bfd *abfd)
532 struct opncls *vec = (struct opncls *) abfd->iostream;
533 /* Since the VEC's memory is bound to the bfd deleting the bfd will
537 if (vec->close != NULL)
538 status = (vec->close) (abfd, vec->stream);
539 abfd->iostream = NULL;
544 opncls_bflush (struct bfd *abfd ATTRIBUTE_UNUSED)
550 opncls_bstat (struct bfd *abfd, struct stat *sb)
552 struct opncls *vec = (struct opncls *) abfd->iostream;
554 memset (sb, 0, sizeof (*sb));
555 if (vec->stat == NULL)
558 return (vec->stat) (abfd, vec->stream, sb);
562 opncls_bmmap (struct bfd *abfd ATTRIBUTE_UNUSED,
563 void *addr ATTRIBUTE_UNUSED,
564 bfd_size_type len ATTRIBUTE_UNUSED,
565 int prot ATTRIBUTE_UNUSED,
566 int flags ATTRIBUTE_UNUSED,
567 file_ptr offset ATTRIBUTE_UNUSED,
568 void **map_addr ATTRIBUTE_UNUSED,
569 bfd_size_type *map_len ATTRIBUTE_UNUSED)
574 static const struct bfd_iovec opncls_iovec =
576 &opncls_bread, &opncls_bwrite, &opncls_btell, &opncls_bseek,
577 &opncls_bclose, &opncls_bflush, &opncls_bstat, &opncls_bmmap
581 bfd_openr_iovec (const char *filename, const char *target,
582 void *(*open_p) (struct bfd *, void *),
584 file_ptr (*pread_p) (struct bfd *, void *, void *,
586 int (*close_p) (struct bfd *, void *),
587 int (*stat_p) (struct bfd *, void *, struct stat *))
590 const bfd_target *target_vec;
594 nbfd = _bfd_new_bfd ();
598 target_vec = bfd_find_target (target, nbfd);
599 if (target_vec == NULL)
601 _bfd_delete_bfd (nbfd);
605 /* PR 11983: Do not cache the original filename, but
606 rather make a copy - the original might go away. */
607 if (!bfd_set_filename (nbfd, filename))
609 _bfd_delete_bfd (nbfd);
612 nbfd->direction = read_direction;
614 /* `open_p (...)' would get expanded by an the open(2) syscall macro. */
615 stream = (*open_p) (nbfd, open_closure);
618 _bfd_delete_bfd (nbfd);
622 vec = (struct opncls *) bfd_zalloc (nbfd, sizeof (struct opncls));
623 vec->stream = stream;
624 vec->pread = pread_p;
625 vec->close = close_p;
628 nbfd->iovec = &opncls_iovec;
629 nbfd->iostream = vec;
634 /* bfd_openw -- open for writing.
635 Returns a pointer to a freshly-allocated BFD on success, or NULL.
637 See comment by bfd_fdopenr before you try to modify this function. */
644 bfd *bfd_openw (const char *filename, const char *target);
647 Create a BFD, associated with file @var{filename}, using the
648 file format @var{target}, and return a pointer to it.
650 Possible errors are <<bfd_error_system_call>>, <<bfd_error_no_memory>>,
651 <<bfd_error_invalid_target>>.
653 A copy of the @var{filename} argument is stored in the newly created
654 BFD. It can be accessed via the bfd_get_filename() macro.
658 bfd_openw (const char *filename, const char *target)
661 const bfd_target *target_vec;
663 /* nbfd has to point to head of malloc'ed block so that bfd_close may
664 reclaim it correctly. */
665 nbfd = _bfd_new_bfd ();
669 target_vec = bfd_find_target (target, nbfd);
670 if (target_vec == NULL)
672 _bfd_delete_bfd (nbfd);
676 /* PR 11983: Do not cache the original filename, but
677 rather make a copy - the original might go away. */
678 if (!bfd_set_filename (nbfd, filename))
680 _bfd_delete_bfd (nbfd);
683 nbfd->direction = write_direction;
685 if (bfd_open_file (nbfd) == NULL)
687 /* File not writeable, etc. */
688 bfd_set_error (bfd_error_system_call);
689 _bfd_delete_bfd (nbfd);
697 _maybe_make_executable (bfd * abfd)
699 /* If the file was open for writing and is now executable,
701 if (abfd->direction == write_direction
702 && (abfd->flags & (EXEC_P | DYNAMIC)) != 0)
706 if (stat (bfd_get_filename (abfd), &buf) == 0
707 /* Do not attempt to change non-regular files. This is
708 here especially for configure scripts and kernel builds
709 which run tests with "ld [...] -o /dev/null". */
710 && S_ISREG(buf.st_mode))
712 unsigned int mask = umask (0);
715 chmod (bfd_get_filename (abfd),
717 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
727 bfd_boolean bfd_close (bfd *abfd);
730 Close a BFD. If the BFD was open for writing, then pending
731 operations are completed and the file written out and closed.
732 If the created file is executable, then <<chmod>> is called
735 All memory attached to the BFD is released.
737 The file descriptor associated with the BFD is closed (even
738 if it was passed in to BFD by <<bfd_fdopenr>>).
741 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>.
745 bfd_close (bfd *abfd)
747 if (bfd_write_p (abfd))
749 if (! BFD_SEND_FMT (abfd, _bfd_write_contents, (abfd)))
753 return bfd_close_all_done (abfd);
761 bfd_boolean bfd_close_all_done (bfd *);
764 Close a BFD. Differs from <<bfd_close>> since it does not
765 complete any pending operations. This routine would be used
766 if the application had just used BFD for swapping and didn't
767 want to use any of the writing code.
769 If the created file is executable, then <<chmod>> is called
772 All memory attached to the BFD is released.
775 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>.
779 bfd_close_all_done (bfd *abfd)
783 if (! BFD_SEND (abfd, _close_and_cleanup, (abfd)))
786 ret = abfd->iovec->bclose (abfd) == 0;
789 _maybe_make_executable (abfd);
791 _bfd_delete_bfd (abfd);
801 bfd *bfd_create (const char *filename, bfd *templ);
804 Create a new BFD in the manner of <<bfd_openw>>, but without
805 opening a file. The new BFD takes the target from the target
806 used by @var{templ}. The format is always set to <<bfd_object>>.
808 A copy of the @var{filename} argument is stored in the newly created
809 BFD. It can be accessed via the bfd_get_filename() macro.
813 bfd_create (const char *filename, bfd *templ)
817 nbfd = _bfd_new_bfd ();
820 /* PR 11983: Do not cache the original filename, but
821 rather make a copy - the original might go away. */
822 if (!bfd_set_filename (nbfd, filename))
824 _bfd_delete_bfd (nbfd);
828 nbfd->xvec = templ->xvec;
829 nbfd->direction = no_direction;
830 bfd_set_format (nbfd, bfd_object);
840 bfd_boolean bfd_make_writable (bfd *abfd);
843 Takes a BFD as created by <<bfd_create>> and converts it
844 into one like as returned by <<bfd_openw>>. It does this
845 by converting the BFD to BFD_IN_MEMORY. It's assumed that
846 you will call <<bfd_make_readable>> on this bfd later.
849 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>.
853 bfd_make_writable (bfd *abfd)
855 struct bfd_in_memory *bim;
857 if (abfd->direction != no_direction)
859 bfd_set_error (bfd_error_invalid_operation);
863 bim = (struct bfd_in_memory *) bfd_malloc (sizeof (struct bfd_in_memory));
865 return FALSE; /* bfd_error already set. */
866 abfd->iostream = bim;
867 /* bfd_bwrite will grow these as needed. */
871 abfd->flags |= BFD_IN_MEMORY;
872 abfd->iovec = &_bfd_memory_iovec;
874 abfd->direction = write_direction;
885 bfd_boolean bfd_make_readable (bfd *abfd);
888 Takes a BFD as created by <<bfd_create>> and
889 <<bfd_make_writable>> and converts it into one like as
890 returned by <<bfd_openr>>. It does this by writing the
891 contents out to the memory buffer, then reversing the
895 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>. */
898 bfd_make_readable (bfd *abfd)
900 if (abfd->direction != write_direction || !(abfd->flags & BFD_IN_MEMORY))
902 bfd_set_error (bfd_error_invalid_operation);
906 if (! BFD_SEND_FMT (abfd, _bfd_write_contents, (abfd)))
909 if (! BFD_SEND (abfd, _close_and_cleanup, (abfd)))
912 abfd->arch_info = &bfd_default_arch_struct;
915 abfd->format = bfd_unknown;
916 abfd->my_archive = NULL;
918 abfd->opened_once = FALSE;
919 abfd->output_has_begun = FALSE;
920 abfd->section_count = 0;
921 abfd->usrdata = NULL;
922 abfd->cacheable = FALSE;
923 abfd->flags |= BFD_IN_MEMORY;
924 abfd->mtime_set = FALSE;
926 abfd->target_defaulted = TRUE;
927 abfd->direction = read_direction;
930 abfd->outsymbols = 0;
933 bfd_section_list_clear (abfd);
934 bfd_check_format (abfd, bfd_object);
944 void *bfd_alloc (bfd *abfd, bfd_size_type wanted);
947 Allocate a block of @var{wanted} bytes of memory attached to
948 <<abfd>> and return a pointer to it.
952 bfd_alloc (bfd *abfd, bfd_size_type size)
955 unsigned long ul_size = (unsigned long) size;
958 /* Note - although objalloc_alloc takes an unsigned long as its
959 argument, internally the size is treated as a signed long. This can
960 lead to problems where, for example, a request to allocate -1 bytes
961 can result in just 1 byte being allocated, rather than
962 ((unsigned long) -1) bytes. Also memory checkers will often
963 complain about attempts to allocate a negative amount of memory.
964 So to stop these problems we fail if the size is negative. */
965 || ((signed long) ul_size) < 0)
967 bfd_set_error (bfd_error_no_memory);
971 ret = objalloc_alloc ((struct objalloc *) abfd->memory, ul_size);
973 bfd_set_error (bfd_error_no_memory);
982 void *bfd_zalloc (bfd *abfd, bfd_size_type wanted);
985 Allocate a block of @var{wanted} bytes of zeroed memory
986 attached to <<abfd>> and return a pointer to it.
990 bfd_zalloc (bfd *abfd, bfd_size_type size)
994 res = bfd_alloc (abfd, size);
996 memset (res, 0, (size_t) size);
1000 /* Free a block allocated for a BFD.
1001 Note: Also frees all more recently allocated blocks! */
1004 bfd_release (bfd *abfd, void *block)
1006 objalloc_free_block ((struct objalloc *) abfd->memory, block);
1011 GNU Extension: separate debug-info files
1013 The idea here is that a special section called .gnu_debuglink might be
1014 embedded in a binary file, which indicates that some *other* file
1015 contains the real debugging information. This special section contains a
1016 filename and CRC32 checksum, which we read and resolve to another file,
1019 This facilitates "optional" provision of debugging information, without
1020 having to provide two complete copies of every binary object (with and
1021 without debug symbols). */
1023 #define GNU_DEBUGLINK ".gnu_debuglink"
1024 #define GNU_DEBUGALTLINK ".gnu_debugaltlink"
1028 bfd_calc_gnu_debuglink_crc32
1031 unsigned long bfd_calc_gnu_debuglink_crc32
1032 (unsigned long crc, const unsigned char *buf, bfd_size_type len);
1035 Computes a CRC value as used in the .gnu_debuglink section.
1036 Advances the previously computed @var{crc} value by computing
1037 and adding in the crc32 for @var{len} bytes of @var{buf}.
1040 Return the updated CRC32 value.
1044 bfd_calc_gnu_debuglink_crc32 (unsigned long crc,
1045 const unsigned char *buf,
1048 static const unsigned long crc32_table[256] =
1050 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
1051 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
1052 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
1053 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
1054 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
1055 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
1056 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
1057 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
1058 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
1059 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
1060 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
1061 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
1062 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
1063 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
1064 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
1065 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
1066 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
1067 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
1068 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
1069 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
1070 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
1071 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
1072 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
1073 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
1074 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
1075 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
1076 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
1077 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
1078 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
1079 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
1080 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
1081 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
1082 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
1083 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
1084 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
1085 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
1086 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
1087 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
1088 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
1089 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
1090 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
1091 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
1092 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
1093 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
1094 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
1095 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
1096 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
1097 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
1098 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
1099 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
1100 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
1103 const unsigned char *end;
1105 crc = ~crc & 0xffffffff;
1106 for (end = buf + len; buf < end; ++ buf)
1107 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
1108 return ~crc & 0xffffffff;
1114 bfd_get_debug_link_info_1
1117 char *bfd_get_debug_link_info_1 (bfd *abfd, void *crc32_out);
1120 Extracts the filename and CRC32 value for any separate debug
1121 information file associated with @var{abfd}.
1123 The @var{crc32_out} parameter is an untyped pointer because
1124 this routine is used as a @code{get_func_type} function, but it
1125 is expected to be an unsigned long pointer.
1128 The filename of the associated debug information file, or NULL
1129 if there is no such file. If the filename was found then the
1130 contents of @var{crc32_out} are updated to hold the corresponding
1131 CRC32 value for the file.
1133 The returned filename is allocated with @code{malloc}; freeing
1134 it is the responsibility of the caller.
1138 bfd_get_debug_link_info_1 (bfd *abfd, void *crc32_out)
1141 unsigned long *crc32 = (unsigned long *) crc32_out;
1143 unsigned int crc_offset;
1146 ufile_ptr file_size;
1149 BFD_ASSERT (crc32_out);
1151 sect = bfd_get_section_by_name (abfd, GNU_DEBUGLINK);
1156 size = bfd_section_size (sect);
1157 file_size = bfd_get_size (abfd);
1159 /* PR 22794: Make sure that the section has a reasonable size. */
1160 if (size < 8 || (file_size != 0 && size >= file_size))
1163 if (!bfd_malloc_and_get_section (abfd, sect, &contents))
1165 if (contents != NULL)
1170 /* CRC value is stored after the filename, aligned up to 4 bytes. */
1171 name = (char *) contents;
1172 /* PR 17597: Avoid reading off the end of the buffer. */
1173 crc_offset = strnlen (name, size) + 1;
1174 crc_offset = (crc_offset + 3) & ~3;
1175 if (crc_offset + 4 > size)
1178 *crc32 = bfd_get_32 (abfd, contents + crc_offset);
1185 bfd_get_debug_link_info
1188 char *bfd_get_debug_link_info (bfd *abfd, unsigned long *crc32_out);
1191 Extracts the filename and CRC32 value for any separate debug
1192 information file associated with @var{abfd}.
1195 The filename of the associated debug information file, or NULL
1196 if there is no such file. If the filename was found then the
1197 contents of @var{crc32_out} are updated to hold the corresponding
1198 CRC32 value for the file.
1200 The returned filename is allocated with @code{malloc}; freeing
1201 it is the responsibility of the caller.
1205 bfd_get_debug_link_info (bfd *abfd, unsigned long *crc32_out)
1207 return bfd_get_debug_link_info_1 (abfd, crc32_out);
1212 bfd_get_alt_debug_link_info
1215 char *bfd_get_alt_debug_link_info (bfd * abfd,
1216 bfd_size_type *buildid_len,
1217 bfd_byte **buildid_out);
1220 Fetch the filename and BuildID value for any alternate debuginfo
1221 associated with @var{abfd}. Return NULL if no such info found,
1222 otherwise return filename and update @var{buildid_len} and
1223 @var{buildid_out}. The returned filename and build_id are
1224 allocated with @code{malloc}; freeing them is the responsibility
1229 bfd_get_alt_debug_link_info (bfd * abfd, bfd_size_type *buildid_len,
1230 bfd_byte **buildid_out)
1234 unsigned int buildid_offset;
1237 ufile_ptr file_size;
1240 BFD_ASSERT (buildid_len);
1241 BFD_ASSERT (buildid_out);
1243 sect = bfd_get_section_by_name (abfd, GNU_DEBUGALTLINK);
1248 size = bfd_section_size (sect);
1249 file_size = bfd_get_size (abfd);
1250 if (size < 8 || (file_size != 0 && size >= file_size))
1253 if (!bfd_malloc_and_get_section (abfd, sect, & contents))
1255 if (contents != NULL)
1260 /* BuildID value is stored after the filename. */
1261 name = (char *) contents;
1262 buildid_offset = strnlen (name, size) + 1;
1263 if (buildid_offset >= bfd_section_size (sect))
1266 *buildid_len = size - buildid_offset;
1267 *buildid_out = bfd_malloc (*buildid_len);
1268 memcpy (*buildid_out, contents + buildid_offset, *buildid_len);
1275 separate_debug_file_exists
1278 bfd_boolean separate_debug_file_exists
1279 (char *name, void *crc32_p);
1282 Checks to see if @var{name} is a file and if its contents
1283 match @var{crc32}, which is a pointer to an @code{unsigned
1284 long} containing a CRC32.
1286 The @var{crc32_p} parameter is an untyped pointer because
1287 this routine is used as a @code{check_func_type} function.
1291 separate_debug_file_exists (const char *name, void *crc32_p)
1293 static unsigned char buffer [8 * 1024];
1294 unsigned long file_crc = 0;
1296 bfd_size_type count;
1300 BFD_ASSERT (crc32_p);
1302 crc = *(unsigned long *) crc32_p;
1304 f = _bfd_real_fopen (name, FOPEN_RB);
1308 while ((count = fread (buffer, 1, sizeof (buffer), f)) > 0)
1309 file_crc = bfd_calc_gnu_debuglink_crc32 (file_crc, buffer, count);
1313 return crc == file_crc;
1318 separate_alt_debug_file_exists
1321 bfd_boolean separate_alt_debug_file_exists
1322 (char *name, void *unused);
1325 Checks to see if @var{name} is a file.
1329 separate_alt_debug_file_exists (const char *name, void *unused ATTRIBUTE_UNUSED)
1335 f = _bfd_real_fopen (name, FOPEN_RB);
1346 find_separate_debug_file
1349 char *find_separate_debug_file
1350 (bfd *abfd, const char *dir, bfd_boolean include_dirs,
1351 get_func_type get, check_func_type check, void *data);
1354 Searches for a debug information file corresponding to @var{abfd}.
1356 The name of the separate debug info file is returned by the
1357 @var{get} function. This function scans various fixed locations
1358 in the filesystem, including the file tree rooted at @var{dir}.
1359 If the @var{include_dirs} parameter is true then the directory
1360 components of @var{abfd}'s filename will be included in the
1363 @var{data} is passed unmodified to the @var{get} and @var{check}
1364 functions. It is generally used to implement build-id-like
1365 matching in the callback functions.
1368 Returns the filename of the first file to be found which
1369 receives a TRUE result from the @var{check} function.
1370 Returns NULL if no valid file could be found.
1373 typedef char * (* get_func_type) (bfd *, void *);
1374 typedef bfd_boolean (* check_func_type) (const char *, void *);
1377 find_separate_debug_file (bfd * abfd,
1378 const char * debug_file_directory,
1379 bfd_boolean include_dirs,
1380 get_func_type get_func,
1381 check_func_type check_func,
1389 size_t canon_dirlen;
1392 if (debug_file_directory == NULL)
1393 debug_file_directory = ".";
1395 /* BFD may have been opened from a stream. */
1396 if (bfd_get_filename (abfd) == NULL)
1398 bfd_set_error (bfd_error_invalid_operation);
1402 base = get_func (abfd, func_data);
1407 if (base[0] == '\0')
1410 bfd_set_error (bfd_error_no_debug_section);
1416 const char *fname = bfd_get_filename (abfd);
1417 for (dirlen = strlen (fname); dirlen > 0; dirlen--)
1418 if (IS_DIR_SEPARATOR (fname[dirlen - 1]))
1421 dir = (char *) bfd_malloc (dirlen + 1);
1427 memcpy (dir, fname, dirlen);
1432 dir = (char *) bfd_malloc (1);
1437 /* Compute the canonical name of the bfd object with all symbolic links
1438 resolved, for use in the global debugfile directory. */
1439 canon_dir = lrealpath (bfd_get_filename (abfd));
1440 for (canon_dirlen = strlen (canon_dir); canon_dirlen > 0; canon_dirlen--)
1441 if (IS_DIR_SEPARATOR (canon_dir[canon_dirlen - 1]))
1443 canon_dir[canon_dirlen] = '\0';
1445 #ifndef EXTRA_DEBUG_ROOT1
1446 #define EXTRA_DEBUG_ROOT1 "/usr/lib/debug"
1448 #ifndef EXTRA_DEBUG_ROOT2
1449 #define EXTRA_DEBUG_ROOT2 "/usr/lib/debug/usr"
1452 debugfile = (char *)
1453 bfd_malloc (strlen (debug_file_directory) + 1
1454 + (canon_dirlen > dirlen ? canon_dirlen : dirlen)
1455 + strlen (".debug/")
1456 #ifdef EXTRA_DEBUG_ROOT1
1457 + strlen (EXTRA_DEBUG_ROOT1)
1459 #ifdef EXTRA_DEBUG_ROOT2
1460 + strlen (EXTRA_DEBUG_ROOT2)
1464 if (debugfile == NULL)
1465 goto found; /* Actually this returns NULL. */
1467 /* First try in the same directory as the original file.
1469 FIXME: Strictly speaking if we are using the build-id method,
1470 (ie include_dirs == FALSE) then we should only check absolute
1471 paths, not relative ones like this one (and the next one).
1472 The check is left in however as this allows the binutils
1473 testsuite to exercise this feature without having to install
1474 a file into the root filesystem. (See binutils/testsuite/
1475 binutils-all/objdump.exp for the test). */
1476 sprintf (debugfile, "%s%s", dir, base);
1477 if (check_func (debugfile, func_data))
1480 /* Then try in a subdirectory called .debug. */
1481 sprintf (debugfile, "%s.debug/%s", dir, base);
1482 if (check_func (debugfile, func_data))
1485 #ifdef EXTRA_DEBUG_ROOT1
1486 /* Try the first extra debug file root. */
1487 sprintf (debugfile, "%s%s%s", EXTRA_DEBUG_ROOT1,
1488 include_dirs ? canon_dir : "/", base);
1489 if (check_func (debugfile, func_data))
1493 #ifdef EXTRA_DEBUG_ROOT2
1494 /* Try the second extra debug file root. */
1495 sprintf (debugfile, "%s%s%s", EXTRA_DEBUG_ROOT2,
1496 include_dirs ? canon_dir : "/", base);
1497 if (check_func (debugfile, func_data))
1501 /* Then try in the global debugfile directory. */
1502 strcpy (debugfile, debug_file_directory);
1503 dirlen = strlen (debug_file_directory) - 1;
1507 && debug_file_directory[dirlen] != '/'
1508 && canon_dir[0] != '/')
1509 strcat (debugfile, "/");
1510 strcat (debugfile, canon_dir);
1514 if (dirlen > 0 && debug_file_directory[dirlen] != '/')
1515 strcat (debugfile, "/");
1517 strcat (debugfile, base);
1519 if (check_func (debugfile, func_data))
1522 /* Failed to find the file. */
1535 bfd_follow_gnu_debuglink
1538 char *bfd_follow_gnu_debuglink (bfd *abfd, const char *dir);
1541 Takes a BFD and searches it for a .gnu_debuglink section. If this
1542 section is found, it examines the section for the name and checksum
1543 of a '.debug' file containing auxiliary debugging information. It
1544 then searches the filesystem for this .debug file in some standard
1545 locations, including the directory tree rooted at @var{dir}, and if
1546 found returns the full filename.
1548 If @var{dir} is NULL, the search will take place starting at
1549 the current directory.
1552 <<NULL>> on any errors or failure to locate the .debug file,
1553 otherwise a pointer to a heap-allocated string containing the
1554 filename. The caller is responsible for freeing this string.
1558 bfd_follow_gnu_debuglink (bfd *abfd, const char *dir)
1560 unsigned long crc32;
1562 return find_separate_debug_file (abfd, dir, TRUE,
1563 bfd_get_debug_link_info_1,
1564 separate_debug_file_exists, &crc32);
1567 /* Helper for bfd_follow_gnu_debugaltlink. It just returns the name
1568 of the separate debug file. */
1571 get_alt_debug_link_info_shim (bfd * abfd, void *unused ATTRIBUTE_UNUSED)
1574 bfd_byte *buildid = NULL;
1575 char *result = bfd_get_alt_debug_link_info (abfd, &len, &buildid);
1584 bfd_follow_gnu_debugaltlink
1587 char *bfd_follow_gnu_debugaltlink (bfd *abfd, const char *dir);
1590 Takes a BFD and searches it for a .gnu_debugaltlink section. If this
1591 section is found, it examines the section for the name of a file
1592 containing auxiliary debugging information. It then searches the
1593 filesystem for this file in a set of standard locations, including
1594 the directory tree rooted at @var{dir}, and if found returns the
1597 If @var{dir} is NULL, the search will take place starting at
1598 the current directory.
1601 <<NULL>> on any errors or failure to locate the debug file,
1602 otherwise a pointer to a heap-allocated string containing the
1603 filename. The caller is responsible for freeing this string.
1607 bfd_follow_gnu_debugaltlink (bfd *abfd, const char *dir)
1609 return find_separate_debug_file (abfd, dir, TRUE,
1610 get_alt_debug_link_info_shim,
1611 separate_alt_debug_file_exists,
1617 bfd_create_gnu_debuglink_section
1620 struct bfd_section *bfd_create_gnu_debuglink_section
1621 (bfd *abfd, const char *filename);
1624 Takes a @var{BFD} and adds a .gnu_debuglink section to it. The
1625 section is sized to be big enough to contain a link to the specified
1629 A pointer to the new section is returned if all is ok. Otherwise
1630 <<NULL>> is returned and bfd_error is set.
1634 bfd_create_gnu_debuglink_section (bfd *abfd, const char *filename)
1637 bfd_size_type debuglink_size;
1640 if (abfd == NULL || filename == NULL)
1642 bfd_set_error (bfd_error_invalid_operation);
1646 /* Strip off any path components in filename. */
1647 filename = lbasename (filename);
1649 sect = bfd_get_section_by_name (abfd, GNU_DEBUGLINK);
1652 /* Section already exists. */
1653 bfd_set_error (bfd_error_invalid_operation);
1657 flags = SEC_HAS_CONTENTS | SEC_READONLY | SEC_DEBUGGING;
1658 sect = bfd_make_section_with_flags (abfd, GNU_DEBUGLINK, flags);
1662 /* Compute the size of the section. Allow for the CRC after the filename,
1663 and padding so that it will start on a 4-byte boundary. */
1664 debuglink_size = strlen (filename) + 1;
1665 debuglink_size += 3;
1666 debuglink_size &= ~3;
1667 debuglink_size += 4;
1669 if (!bfd_set_section_size (sect, debuglink_size))
1670 /* XXX Should we delete the section from the bfd ? */
1673 /* PR 21193: Ensure that the section has 4-byte alignment for the CRC.
1674 Note - despite the name of the function being called, we are
1675 setting an alignment power, not a byte alignment value. */
1676 bfd_set_section_alignment (sect, 2);
1684 bfd_fill_in_gnu_debuglink_section
1687 bfd_boolean bfd_fill_in_gnu_debuglink_section
1688 (bfd *abfd, struct bfd_section *sect, const char *filename);
1691 Takes a @var{BFD} and containing a .gnu_debuglink section @var{SECT}
1692 and fills in the contents of the section to contain a link to the
1693 specified @var{filename}. The filename should be relative to the
1697 <<TRUE>> is returned if all is ok. Otherwise <<FALSE>> is returned
1698 and bfd_error is set.
1702 bfd_fill_in_gnu_debuglink_section (bfd *abfd,
1703 struct bfd_section *sect,
1704 const char *filename)
1706 bfd_size_type debuglink_size;
1707 unsigned long crc32;
1709 bfd_size_type crc_offset;
1711 static unsigned char buffer[8 * 1024];
1715 if (abfd == NULL || sect == NULL || filename == NULL)
1717 bfd_set_error (bfd_error_invalid_operation);
1721 /* Make sure that we can read the file.
1722 XXX - Should we attempt to locate the debug info file using the same
1723 algorithm as gdb ? At the moment, since we are creating the
1724 .gnu_debuglink section, we insist upon the user providing us with a
1725 correct-for-section-creation-time path, but this need not conform to
1726 the gdb location algorithm. */
1727 handle = _bfd_real_fopen (filename, FOPEN_RB);
1730 bfd_set_error (bfd_error_system_call);
1735 while ((count = fread (buffer, 1, sizeof buffer, handle)) > 0)
1736 crc32 = bfd_calc_gnu_debuglink_crc32 (crc32, buffer, count);
1739 /* Strip off any path components in filename,
1740 now that we no longer need them. */
1741 filename = lbasename (filename);
1743 filelen = strlen (filename);
1744 debuglink_size = filelen + 1;
1745 debuglink_size += 3;
1746 debuglink_size &= ~3;
1747 debuglink_size += 4;
1749 contents = (char *) bfd_malloc (debuglink_size);
1750 if (contents == NULL)
1752 /* XXX Should we delete the section from the bfd ? */
1756 crc_offset = debuglink_size - 4;
1757 memcpy (contents, filename, filelen);
1758 memset (contents + filelen, 0, crc_offset - filelen);
1760 bfd_put_32 (abfd, crc32, contents + crc_offset);
1762 if (! bfd_set_section_contents (abfd, sect, contents, 0, debuglink_size))
1764 /* XXX Should we delete the section from the bfd ? */
1777 struct bfd_build_id * get_build_id (bfd *abfd);
1780 Finds the build-id associated with @var{abfd}. If the build-id is
1781 extracted from the note section then a build-id structure is built
1782 for it, using memory allocated to @var{abfd}, and this is then
1783 attached to the @var{abfd}.
1786 Returns a pointer to the build-id structure if a build-id could be
1787 found. If no build-id is found NULL is returned and error code is
1791 static struct bfd_build_id *
1792 get_build_id (bfd *abfd)
1794 struct bfd_build_id *build_id;
1795 Elf_Internal_Note inote;
1796 Elf_External_Note *enote;
1803 if (abfd->build_id && abfd->build_id->size > 0)
1804 /* Save some time by using the already computed build-id. */
1805 return (struct bfd_build_id *) abfd->build_id;
1807 sect = bfd_get_section_by_name (abfd, ".note.gnu.build-id");
1810 bfd_set_error (bfd_error_no_debug_section);
1814 size = bfd_section_size (sect);
1815 /* FIXME: Should we support smaller build-id notes ? */
1818 bfd_set_error (bfd_error_invalid_operation);
1822 if (!bfd_malloc_and_get_section (abfd, sect, & contents))
1824 if (contents != NULL)
1829 /* FIXME: Paranoia - allow for compressed build-id sections.
1830 Maybe we should complain if this size is different from
1831 the one obtained above... */
1832 size = bfd_section_size (sect);
1833 if (size < sizeof (Elf_External_Note))
1835 bfd_set_error (bfd_error_invalid_operation);
1840 enote = (Elf_External_Note *) contents;
1841 inote.type = H_GET_32 (abfd, enote->type);
1842 inote.namesz = H_GET_32 (abfd, enote->namesz);
1843 inote.namedata = enote->name;
1844 inote.descsz = H_GET_32 (abfd, enote->descsz);
1845 inote.descdata = inote.namedata + BFD_ALIGN (inote.namesz, 4);
1846 /* FIXME: Should we check for extra notes in this section ? */
1848 if (inote.descsz <= 0
1849 || inote.type != NT_GNU_BUILD_ID
1850 || inote.namesz != 4 /* sizeof "GNU" */
1851 || strncmp (inote.namedata, "GNU", 4) != 0
1852 || inote.descsz > 0x7ffffffe
1853 || size < (12 + BFD_ALIGN (inote.namesz, 4) + inote.descsz))
1856 bfd_set_error (bfd_error_invalid_operation);
1860 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) + inote.descsz);
1861 if (build_id == NULL)
1867 build_id->size = inote.descsz;
1868 memcpy (build_id->data, inote.descdata, inote.descsz);
1869 abfd->build_id = build_id;
1880 char * get_build_id_name (bfd *abfd, void *build_id_out_p)
1883 Searches @var{abfd} for a build-id, and then constructs a pathname
1884 from it. The path is computed as .build-id/NN/NN+NN.debug where
1885 NNNN+NN is the build-id value as a hexadecimal string.
1888 Returns the constructed filename or NULL upon error.
1889 It is the caller's responsibility to free the memory used to hold the
1891 If a filename is returned then the @var{build_id_out_p}
1892 parameter (which points to a @code{struct bfd_build_id}
1893 pointer) is set to a pointer to the build_id structure.
1897 get_build_id_name (bfd *abfd, void *build_id_out_p)
1899 struct bfd_build_id **build_id_out = build_id_out_p;
1900 struct bfd_build_id *build_id;
1906 if (abfd == NULL || bfd_get_filename (abfd) == NULL || build_id_out == NULL)
1908 bfd_set_error (bfd_error_invalid_operation);
1912 build_id = get_build_id (abfd);
1913 if (build_id == NULL)
1916 /* Compute the debug pathname corresponding to the build-id. */
1917 name = bfd_malloc (strlen (".build-id/") + build_id->size * 2 + 2 + strlen (".debug"));
1920 bfd_set_error (bfd_error_no_memory);
1927 n += sprintf (n, ".build-id/");
1928 n += sprintf (n, "%02x", (unsigned) *d++); s--;
1929 n += sprintf (n, "/");
1931 n += sprintf (n, "%02x", (unsigned) *d++);
1932 n += sprintf (n, ".debug");
1934 *build_id_out = build_id;
1943 bfd_boolean check_build_id_file (char *name, void *buildid_p);
1946 Checks to see if @var{name} is a readable file and if its build-id
1947 matches @var{buildid}.
1950 Returns TRUE if the file exists, is readable, and contains a
1951 build-id which matches the build-id pointed at by
1952 @var{build_id_p} (which is really a @code{struct bfd_build_id **}).
1956 check_build_id_file (const char *name, void *buildid_p)
1958 struct bfd_build_id *orig_build_id;
1959 struct bfd_build_id *build_id;
1964 BFD_ASSERT (buildid_p);
1966 file = bfd_openr (name, NULL);
1970 /* If the file is an archive, process all of its elements. */
1971 if (! bfd_check_format (file, bfd_object))
1977 build_id = get_build_id (file);
1978 if (build_id == NULL)
1984 orig_build_id = *(struct bfd_build_id **) buildid_p;
1986 result = build_id->size == orig_build_id->size
1987 && memcmp (build_id->data, orig_build_id->data, build_id->size) == 0;
1989 (void) bfd_close (file);
1996 bfd_follow_build_id_debuglink
1999 char *bfd_follow_build_id_debuglink (bfd *abfd, const char *dir);
2002 Takes @var{abfd} and searches it for a .note.gnu.build-id section.
2003 If this section is found, it extracts the value of the NT_GNU_BUILD_ID
2004 note, which should be a hexadecimal value @var{NNNN+NN} (for
2005 32+ hex digits). It then searches the filesystem for a file named
2006 @var{.build-id/NN/NN+NN.debug} in a set of standard locations,
2007 including the directory tree rooted at @var{dir}. The filename
2008 of the first matching file to be found is returned. A matching
2009 file should contain a .note.gnu.build-id section with the same
2010 @var{NNNN+NN} note as @var{abfd}, although this check is currently
2013 If @var{dir} is NULL, the search will take place starting at
2014 the current directory.
2017 <<NULL>> on any errors or failure to locate the debug file,
2018 otherwise a pointer to a heap-allocated string containing the
2019 filename. The caller is responsible for freeing this string.
2023 bfd_follow_build_id_debuglink (bfd *abfd, const char *dir)
2025 struct bfd_build_id *build_id;
2027 return find_separate_debug_file (abfd, dir, FALSE,
2029 check_build_id_file, &build_id);
2037 const char *bfd_set_filename (bfd *abfd, const char *filename);
2040 Set the filename of @var{abfd}, copying the FILENAME parameter to
2041 bfd_alloc'd memory owned by @var{abfd}. Returns a pointer the
2042 newly allocated name, or NULL if the allocation failed.
2046 bfd_set_filename (bfd *abfd, const char *filename)
2048 size_t len = strlen (filename) + 1;
2049 char *n = bfd_alloc (abfd, len);
2052 memcpy (n, filename, len);