Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / opncls.c
CommitLineData
252b5132 1/* opncls.c -- open and close a BFD.
b3adc24a 2 Copyright (C) 1990-2020 Free Software Foundation, Inc.
252b5132
RH
3
4 Written by Cygnus Support.
5
c4f3d130 6 This file is part of BFD, the Binary File Descriptor library.
252b5132 7
c4f3d130
NC
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
cd123cb7 10 the Free Software Foundation; either version 3 of the License, or
c4f3d130 11 (at your option) any later version.
252b5132 12
c4f3d130
NC
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.
252b5132 17
c4f3d130
NC
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
cd123cb7
NC
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
252b5132 22
252b5132 23#include "sysdep.h"
3db64b00 24#include "bfd.h"
252b5132
RH
25#include "objalloc.h"
26#include "libbfd.h"
31f7ba04 27#include "libiberty.h"
2425a30e 28#include "elf-bfd.h"
252b5132
RH
29
30#ifndef S_IXUSR
31#define S_IXUSR 0100 /* Execute by owner. */
32#endif
33#ifndef S_IXGRP
34#define S_IXGRP 0010 /* Execute by group. */
35#endif
36#ifndef S_IXOTH
37#define S_IXOTH 0001 /* Execute by others. */
38#endif
39
fc1cfaa5 40/* Counters used to initialize the bfd identifier. */
52b69c9e 41
fc1cfaa5
AM
42static unsigned int bfd_id_counter = 0;
43static unsigned int bfd_reserved_id_counter = 0;
44
45/*
46CODE_FRAGMENT
47.{* Set to N to open the next N BFDs using an alternate id space. *}
48.extern unsigned int bfd_use_reserved_id;
49*/
50unsigned int bfd_use_reserved_id = 0;
52b69c9e 51
252b5132
RH
52/* fdopen is a loser -- we should use stdio exclusively. Unfortunately
53 if we do that we can't use fcntl. */
54
252b5132
RH
55/* Return a new BFD. All BFD's are allocated through this routine. */
56
57bfd *
c58b9523 58_bfd_new_bfd (void)
252b5132
RH
59{
60 bfd *nbfd;
61
a50b1753 62 nbfd = (bfd *) bfd_zmalloc (sizeof (bfd));
252b5132
RH
63 if (nbfd == NULL)
64 return NULL;
65
fc1cfaa5
AM
66 if (bfd_use_reserved_id)
67 {
68 nbfd->id = --bfd_reserved_id_counter;
69 --bfd_use_reserved_id;
70 }
71 else
72 nbfd->id = bfd_id_counter++;
52b69c9e 73
c58b9523 74 nbfd->memory = objalloc_create ();
252b5132
RH
75 if (nbfd->memory == NULL)
76 {
77 bfd_set_error (bfd_error_no_memory);
73e87d70 78 free (nbfd);
252b5132
RH
79 return NULL;
80 }
81
82 nbfd->arch_info = &bfd_default_arch_struct;
83
28d39d1a 84 if (!bfd_hash_table_init_n (& nbfd->section_htab, bfd_section_hash_newfunc,
c9ba0c87 85 sizeof (struct section_hash_entry), 13))
73e87d70
AM
86 {
87 free (nbfd);
88 return NULL;
89 }
252b5132
RH
90
91 return nbfd;
92}
93
b374d0f8
AM
94static const struct bfd_iovec opncls_iovec;
95
252b5132
RH
96/* Allocate a new BFD as a member of archive OBFD. */
97
98bfd *
c58b9523 99_bfd_new_bfd_contained_in (bfd *obfd)
252b5132
RH
100{
101 bfd *nbfd;
102
103 nbfd = _bfd_new_bfd ();
301e3139
AM
104 if (nbfd == NULL)
105 return NULL;
252b5132 106 nbfd->xvec = obfd->xvec;
40838a72 107 nbfd->iovec = obfd->iovec;
b374d0f8
AM
108 if (obfd->iovec == &opncls_iovec)
109 nbfd->iostream = obfd->iostream;
252b5132
RH
110 nbfd->my_archive = obfd;
111 nbfd->direction = read_direction;
112 nbfd->target_defaulted = obfd->target_defaulted;
ce875075
AM
113 nbfd->lto_output = obfd->lto_output;
114 nbfd->no_export = obfd->no_export;
252b5132
RH
115 return nbfd;
116}
117
73e87d70
AM
118/* Delete a BFD. */
119
7b84f8da 120static void
c58b9523 121_bfd_delete_bfd (bfd *abfd)
73e87d70 122{
b25e3d87
L
123 if (abfd->memory)
124 {
125 bfd_hash_table_free (&abfd->section_htab);
126 objalloc_free ((struct objalloc *) abfd->memory);
127 }
a988325c 128
765cf5f6 129 free ((char *) bfd_get_filename (abfd));
06e7acd7 130 free (abfd->arelt_data);
73e87d70
AM
131 free (abfd);
132}
133
b25e3d87
L
134/* Free objalloc memory. */
135
136bfd_boolean
137_bfd_free_cached_info (bfd *abfd)
138{
139 if (abfd->memory)
140 {
141 bfd_hash_table_free (&abfd->section_htab);
142 objalloc_free ((struct objalloc *) abfd->memory);
143
144 abfd->sections = NULL;
145 abfd->section_last = NULL;
146 abfd->outsymbols = NULL;
147 abfd->tdata.any = NULL;
148 abfd->usrdata = NULL;
149 abfd->memory = NULL;
150 }
151
152 return TRUE;
153}
154
252b5132
RH
155/*
156SECTION
157 Opening and closing BFDs
158
1b74d094
BW
159SUBSECTION
160 Functions for opening and closing
252b5132
RH
161*/
162
163/*
164FUNCTION
2d0123b7 165 bfd_fopen
252b5132
RH
166
167SYNOPSIS
2d0123b7 168 bfd *bfd_fopen (const char *filename, const char *target,
07d6d2b8 169 const char *mode, int fd);
252b5132
RH
170
171DESCRIPTION
2d0123b7
MM
172 Open the file @var{filename} with the target @var{target}.
173 Return a pointer to the created BFD. If @var{fd} is not -1,
174 then <<fdopen>> is used to open the file; otherwise, <<fopen>>
175 is used. @var{mode} is passed directly to <<fopen>> or
68ffbac6 176 <<fdopen>>.
252b5132
RH
177
178 Calls <<bfd_find_target>>, so @var{target} is interpreted as by
179 that function.
180
a366f4ff
MM
181 The new BFD is marked as cacheable iff @var{fd} is -1.
182
252b5132 183 If <<NULL>> is returned then an error has occured. Possible errors
7c4a37eb
AM
184 are <<bfd_error_no_memory>>, <<bfd_error_invalid_target>> or
185 <<system_call>> error.
6f0c7050
TT
186
187 On error, @var{fd} is always closed.
1be5090b
NC
188
189 A copy of the @var{filename} argument is stored in the newly created
190 BFD. It can be accessed via the bfd_get_filename() macro.
252b5132
RH
191*/
192
193bfd *
2d0123b7 194bfd_fopen (const char *filename, const char *target, const char *mode, int fd)
252b5132
RH
195{
196 bfd *nbfd;
197 const bfd_target *target_vec;
198
199 nbfd = _bfd_new_bfd ();
200 if (nbfd == NULL)
6f0c7050
TT
201 {
202 if (fd != -1)
203 close (fd);
204 return NULL;
205 }
252b5132
RH
206
207 target_vec = bfd_find_target (target, nbfd);
208 if (target_vec == NULL)
209 {
6f0c7050
TT
210 if (fd != -1)
211 close (fd);
73e87d70 212 _bfd_delete_bfd (nbfd);
252b5132
RH
213 return NULL;
214 }
68ffbac6 215
2d0123b7
MM
216#ifdef HAVE_FDOPEN
217 if (fd != -1)
218 nbfd->iostream = fdopen (fd, mode);
219 else
220#endif
c7c3d11b 221 nbfd->iostream = _bfd_real_fopen (filename, mode);
2d0123b7
MM
222 if (nbfd->iostream == NULL)
223 {
92a7c1b8 224 bfd_set_error (bfd_error_system_call);
89bdc77e
AM
225 if (fd != -1)
226 close (fd);
2d0123b7
MM
227 _bfd_delete_bfd (nbfd);
228 return NULL;
229 }
252b5132 230
2d0123b7 231 /* OK, put everything where it belongs. */
1be5090b
NC
232
233 /* PR 11983: Do not cache the original filename, but
234 rather make a copy - the original might go away. */
89bdc77e
AM
235 nbfd->filename = bfd_strdup (filename);
236 if (nbfd->filename == NULL)
237 {
238 fclose (nbfd->iostream);
239 _bfd_delete_bfd (nbfd);
240 return NULL;
241 }
252b5132 242
2d0123b7
MM
243 /* Figure out whether the user is opening the file for reading,
244 writing, or both, by looking at the MODE argument. */
68ffbac6 245 if ((mode[0] == 'r' || mode[0] == 'w' || mode[0] == 'a')
2d0123b7
MM
246 && mode[1] == '+')
247 nbfd->direction = both_direction;
248 else if (mode[0] == 'r')
249 nbfd->direction = read_direction;
250 else
251 nbfd->direction = write_direction;
252
89bdc77e 253 if (!bfd_cache_init (nbfd))
252b5132 254 {
89bdc77e 255 fclose (nbfd->iostream);
73e87d70 256 _bfd_delete_bfd (nbfd);
252b5132
RH
257 return NULL;
258 }
2d0123b7 259 nbfd->opened_once = TRUE;
a253d456 260
a366f4ff
MM
261 /* If we opened the file by name, mark it cacheable; we can close it
262 and reopen it later. However, if a file descriptor was provided,
263 then it may have been opened with special flags that make it
264 unsafe to close and reopen the file. */
265 if (fd == -1)
a253d456 266 (void) bfd_set_cacheable (nbfd, TRUE);
252b5132
RH
267
268 return nbfd;
269}
270
2d0123b7
MM
271/*
272FUNCTION
273 bfd_openr
274
275SYNOPSIS
276 bfd *bfd_openr (const char *filename, const char *target);
277
278DESCRIPTION
279 Open the file @var{filename} (using <<fopen>>) with the target
280 @var{target}. Return a pointer to the created BFD.
281
282 Calls <<bfd_find_target>>, so @var{target} is interpreted as by
283 that function.
284
285 If <<NULL>> is returned then an error has occured. Possible errors
286 are <<bfd_error_no_memory>>, <<bfd_error_invalid_target>> or
287 <<system_call>> error.
1be5090b
NC
288
289 A copy of the @var{filename} argument is stored in the newly created
290 BFD. It can be accessed via the bfd_get_filename() macro.
2d0123b7
MM
291*/
292
293bfd *
294bfd_openr (const char *filename, const char *target)
295{
296 return bfd_fopen (filename, target, FOPEN_RB, -1);
297}
298
252b5132
RH
299/* Don't try to `optimize' this function:
300
301 o - We lock using stack space so that interrupting the locking
302 won't cause a storage leak.
303 o - We open the file stream last, since we don't want to have to
304 close it if anything goes wrong. Closing the stream means closing
c4f3d130 305 the file descriptor too, even though we didn't open it. */
252b5132
RH
306/*
307FUNCTION
7c4a37eb 308 bfd_fdopenr
252b5132
RH
309
310SYNOPSIS
c58b9523 311 bfd *bfd_fdopenr (const char *filename, const char *target, int fd);
252b5132
RH
312
313DESCRIPTION
7c4a37eb
AM
314 <<bfd_fdopenr>> is to <<bfd_fopenr>> much like <<fdopen>> is to
315 <<fopen>>. It opens a BFD on a file already described by the
316 @var{fd} supplied.
317
318 When the file is later <<bfd_close>>d, the file descriptor will
319 be closed. If the caller desires that this file descriptor be
320 cached by BFD (opened as needed, closed as needed to free
321 descriptors for other opens), with the supplied @var{fd} used as
322 an initial file descriptor (but subject to closure at any time),
323 call bfd_set_cacheable(bfd, 1) on the returned BFD. The default
7dee875e 324 is to assume no caching; the file descriptor will remain open
7c4a37eb
AM
325 until <<bfd_close>>, and will not be affected by BFD operations
326 on other files.
327
328 Possible errors are <<bfd_error_no_memory>>,
329 <<bfd_error_invalid_target>> and <<bfd_error_system_call>>.
6f0c7050
TT
330
331 On error, @var{fd} is closed.
1be5090b
NC
332
333 A copy of the @var{filename} argument is stored in the newly created
334 BFD. It can be accessed via the bfd_get_filename() macro.
252b5132
RH
335*/
336
337bfd *
c58b9523 338bfd_fdopenr (const char *filename, const char *target, int fd)
252b5132 339{
2d0123b7
MM
340 const char *mode;
341#if defined(HAVE_FCNTL) && defined(F_GETFL)
252b5132 342 int fdflags;
2d0123b7 343#endif
252b5132 344
252b5132 345#if ! defined(HAVE_FCNTL) || ! defined(F_GETFL)
2d0123b7 346 mode = FOPEN_RUB; /* Assume full access. */
252b5132
RH
347#else
348 fdflags = fcntl (fd, F_GETFL, NULL);
767e34d1 349 if (fdflags == -1)
d83747fa 350 {
6f0c7050
TT
351 int save = errno;
352
353 close (fd);
354 errno = save;
d83747fa
AM
355 bfd_set_error (bfd_error_system_call);
356 return NULL;
357 }
252b5132 358
c4f3d130 359 /* (O_ACCMODE) parens are to avoid Ultrix header file bug. */
252b5132
RH
360 switch (fdflags & (O_ACCMODE))
361 {
dfab97d6
MM
362 case O_RDONLY: mode = FOPEN_RB; break;
363 case O_WRONLY: mode = FOPEN_RUB; break;
364 case O_RDWR: mode = FOPEN_RUB; break;
252b5132
RH
365 default: abort ();
366 }
367#endif
368
2d0123b7 369 return bfd_fopen (filename, target, mode, fd);
252b5132
RH
370}
371
372/*
373FUNCTION
374 bfd_openstreamr
375
376SYNOPSIS
49f4617b 377 bfd *bfd_openstreamr (const char * filename, const char * target,
07d6d2b8 378 void * stream);
252b5132
RH
379
380DESCRIPTION
252b5132
RH
381 Open a BFD for read access on an existing stdio stream. When
382 the BFD is passed to <<bfd_close>>, the stream will be closed.
1be5090b
NC
383
384 A copy of the @var{filename} argument is stored in the newly created
385 BFD. It can be accessed via the bfd_get_filename() macro.
252b5132
RH
386*/
387
388bfd *
c58b9523 389bfd_openstreamr (const char *filename, const char *target, void *streamarg)
252b5132 390{
a50b1753 391 FILE *stream = (FILE *) streamarg;
252b5132
RH
392 bfd *nbfd;
393 const bfd_target *target_vec;
394
395 nbfd = _bfd_new_bfd ();
396 if (nbfd == NULL)
397 return NULL;
398
399 target_vec = bfd_find_target (target, nbfd);
400 if (target_vec == NULL)
401 {
73e87d70 402 _bfd_delete_bfd (nbfd);
252b5132
RH
403 return NULL;
404 }
405
c58b9523 406 nbfd->iostream = stream;
1be5090b
NC
407 /* PR 11983: Do not cache the original filename, but
408 rather make a copy - the original might go away. */
89bdc77e
AM
409 nbfd->filename = bfd_strdup (filename);
410 if (nbfd->filename == NULL)
411 {
412 _bfd_delete_bfd (nbfd);
413 return NULL;
414 }
252b5132 415 nbfd->direction = read_direction;
dc810e39 416
252b5132
RH
417 if (! bfd_cache_init (nbfd))
418 {
73e87d70 419 _bfd_delete_bfd (nbfd);
252b5132
RH
420 return NULL;
421 }
422
423 return nbfd;
424}
40838a72
AC
425
426/*
427FUNCTION
428 bfd_openr_iovec
429
430SYNOPSIS
07d6d2b8
AM
431 bfd *bfd_openr_iovec (const char *filename, const char *target,
432 void *(*open_func) (struct bfd *nbfd,
433 void *open_closure),
434 void *open_closure,
435 file_ptr (*pread_func) (struct bfd *nbfd,
436 void *stream,
437 void *buf,
438 file_ptr nbytes,
439 file_ptr offset),
440 int (*close_func) (struct bfd *nbfd,
441 void *stream),
e7f8eadb 442 int (*stat_func) (struct bfd *abfd,
07d6d2b8
AM
443 void *stream,
444 struct stat *sb));
40838a72
AC
445
446DESCRIPTION
07d6d2b8
AM
447 Create and return a BFD backed by a read-only @var{stream}.
448 The @var{stream} is created using @var{open_func}, accessed using
449 @var{pread_func} and destroyed using @var{close_func}.
40838a72
AC
450
451 Calls <<bfd_find_target>>, so @var{target} is interpreted as by
452 that function.
453
e7f8eadb 454 Calls @var{open_func} (which can call <<bfd_zalloc>> and
40838a72 455 <<bfd_get_filename>>) to obtain the read-only stream backing
e7f8eadb 456 the BFD. @var{open_func} either succeeds returning the
40838a72
AC
457 non-<<NULL>> @var{stream}, or fails returning <<NULL>>
458 (setting <<bfd_error>>).
459
e7f8eadb 460 Calls @var{pread_func} to request @var{nbytes} of data from
40838a72 461 @var{stream} starting at @var{offset} (e.g., via a call to
e7f8eadb 462 <<bfd_read>>). @var{pread_func} either succeeds returning the
40838a72
AC
463 number of bytes read (which can be less than @var{nbytes} when
464 end-of-file), or fails returning -1 (setting <<bfd_error>>).
465
e7f8eadb
DK
466 Calls @var{close_func} when the BFD is later closed using
467 <<bfd_close>>. @var{close_func} either succeeds returning 0, or
40838a72
AC
468 fails returning -1 (setting <<bfd_error>>).
469
e7f8eadb
DK
470 Calls @var{stat_func} to fill in a stat structure for bfd_stat,
471 bfd_get_size, and bfd_get_mtime calls. @var{stat_func} returns 0
f6cf9273
AM
472 on success, or returns -1 on failure (setting <<bfd_error>>).
473
40838a72
AC
474 If <<bfd_openr_iovec>> returns <<NULL>> then an error has
475 occurred. Possible errors are <<bfd_error_no_memory>>,
476 <<bfd_error_invalid_target>> and <<bfd_error_system_call>>.
477
1be5090b
NC
478 A copy of the @var{filename} argument is stored in the newly created
479 BFD. It can be accessed via the bfd_get_filename() macro.
40838a72
AC
480*/
481
482struct opncls
483{
484 void *stream;
485 file_ptr (*pread) (struct bfd *abfd, void *stream, void *buf,
486 file_ptr nbytes, file_ptr offset);
487 int (*close) (struct bfd *abfd, void *stream);
f6cf9273 488 int (*stat) (struct bfd *abfd, void *stream, struct stat *sb);
40838a72
AC
489 file_ptr where;
490};
491
492static file_ptr
493opncls_btell (struct bfd *abfd)
494{
a50b1753 495 struct opncls *vec = (struct opncls *) abfd->iostream;
40838a72
AC
496 return vec->where;
497}
498
499static int
500opncls_bseek (struct bfd *abfd, file_ptr offset, int whence)
501{
a50b1753 502 struct opncls *vec = (struct opncls *) abfd->iostream;
40838a72
AC
503 switch (whence)
504 {
505 case SEEK_SET: vec->where = offset; break;
506 case SEEK_CUR: vec->where += offset; break;
507 case SEEK_END: return -1;
508 }
509 return 0;
510}
511
512static file_ptr
513opncls_bread (struct bfd *abfd, void *buf, file_ptr nbytes)
514{
a50b1753 515 struct opncls *vec = (struct opncls *) abfd->iostream;
0709bb22 516 file_ptr nread = (vec->pread) (abfd, vec->stream, buf, nbytes, vec->where);
49f4617b 517
40838a72
AC
518 if (nread < 0)
519 return nread;
520 vec->where += nread;
521 return nread;
522}
523
524static file_ptr
525opncls_bwrite (struct bfd *abfd ATTRIBUTE_UNUSED,
526 const void *where ATTRIBUTE_UNUSED,
527 file_ptr nbytes ATTRIBUTE_UNUSED)
528{
529 return -1;
530}
531
405bf443 532static int
40838a72
AC
533opncls_bclose (struct bfd *abfd)
534{
a50b1753 535 struct opncls *vec = (struct opncls *) abfd->iostream;
40838a72
AC
536 /* Since the VEC's memory is bound to the bfd deleting the bfd will
537 free it. */
538 int status = 0;
49f4617b 539
40838a72 540 if (vec->close != NULL)
0709bb22 541 status = (vec->close) (abfd, vec->stream);
40838a72 542 abfd->iostream = NULL;
405bf443 543 return status;
40838a72
AC
544}
545
546static int
547opncls_bflush (struct bfd *abfd ATTRIBUTE_UNUSED)
548{
549 return 0;
550}
551
552static int
f6cf9273 553opncls_bstat (struct bfd *abfd, struct stat *sb)
40838a72 554{
a50b1753 555 struct opncls *vec = (struct opncls *) abfd->iostream;
f6cf9273 556
40838a72 557 memset (sb, 0, sizeof (*sb));
f6cf9273
AM
558 if (vec->stat == NULL)
559 return 0;
560
561 return (vec->stat) (abfd, vec->stream, sb);
40838a72
AC
562}
563
25b88f33
PP
564static void *
565opncls_bmmap (struct bfd *abfd ATTRIBUTE_UNUSED,
566 void *addr ATTRIBUTE_UNUSED,
567 bfd_size_type len ATTRIBUTE_UNUSED,
568 int prot ATTRIBUTE_UNUSED,
569 int flags ATTRIBUTE_UNUSED,
4c95ab76 570 file_ptr offset ATTRIBUTE_UNUSED,
07d6d2b8
AM
571 void **map_addr ATTRIBUTE_UNUSED,
572 bfd_size_type *map_len ATTRIBUTE_UNUSED)
25b88f33
PP
573{
574 return (void *) -1;
575}
576
49f4617b
PA
577static const struct bfd_iovec opncls_iovec =
578{
40838a72 579 &opncls_bread, &opncls_bwrite, &opncls_btell, &opncls_bseek,
25b88f33 580 &opncls_bclose, &opncls_bflush, &opncls_bstat, &opncls_bmmap
40838a72
AC
581};
582
583bfd *
584bfd_openr_iovec (const char *filename, const char *target,
662e4701 585 void *(*open_p) (struct bfd *, void *),
40838a72 586 void *open_closure,
662e4701
L
587 file_ptr (*pread_p) (struct bfd *, void *, void *,
588 file_ptr, file_ptr),
589 int (*close_p) (struct bfd *, void *),
590 int (*stat_p) (struct bfd *, void *, struct stat *))
40838a72
AC
591{
592 bfd *nbfd;
593 const bfd_target *target_vec;
594 struct opncls *vec;
595 void *stream;
596
597 nbfd = _bfd_new_bfd ();
598 if (nbfd == NULL)
599 return NULL;
600
601 target_vec = bfd_find_target (target, nbfd);
602 if (target_vec == NULL)
603 {
604 _bfd_delete_bfd (nbfd);
605 return NULL;
606 }
607
1be5090b
NC
608 /* PR 11983: Do not cache the original filename, but
609 rather make a copy - the original might go away. */
89bdc77e
AM
610 nbfd->filename = bfd_strdup (filename);
611 if (nbfd->filename == NULL)
612 {
613 _bfd_delete_bfd (nbfd);
614 return NULL;
615 }
40838a72
AC
616 nbfd->direction = read_direction;
617
662e4701
L
618 /* `open_p (...)' would get expanded by an the open(2) syscall macro. */
619 stream = (*open_p) (nbfd, open_closure);
40838a72
AC
620 if (stream == NULL)
621 {
622 _bfd_delete_bfd (nbfd);
623 return NULL;
624 }
625
a50b1753 626 vec = (struct opncls *) bfd_zalloc (nbfd, sizeof (struct opncls));
40838a72 627 vec->stream = stream;
662e4701
L
628 vec->pread = pread_p;
629 vec->close = close_p;
630 vec->stat = stat_p;
40838a72
AC
631
632 nbfd->iovec = &opncls_iovec;
633 nbfd->iostream = vec;
634
635 return nbfd;
636}
252b5132 637\f
c4f3d130
NC
638/* bfd_openw -- open for writing.
639 Returns a pointer to a freshly-allocated BFD on success, or NULL.
252b5132 640
c4f3d130 641 See comment by bfd_fdopenr before you try to modify this function. */
252b5132
RH
642
643/*
644FUNCTION
645 bfd_openw
646
647SYNOPSIS
c58b9523 648 bfd *bfd_openw (const char *filename, const char *target);
252b5132
RH
649
650DESCRIPTION
651 Create a BFD, associated with file @var{filename}, using the
652 file format @var{target}, and return a pointer to it.
653
654 Possible errors are <<bfd_error_system_call>>, <<bfd_error_no_memory>>,
655 <<bfd_error_invalid_target>>.
1be5090b
NC
656
657 A copy of the @var{filename} argument is stored in the newly created
658 BFD. It can be accessed via the bfd_get_filename() macro.
252b5132
RH
659*/
660
661bfd *
c58b9523 662bfd_openw (const char *filename, const char *target)
252b5132
RH
663{
664 bfd *nbfd;
665 const bfd_target *target_vec;
666
252b5132 667 /* nbfd has to point to head of malloc'ed block so that bfd_close may
c4f3d130 668 reclaim it correctly. */
252b5132
RH
669 nbfd = _bfd_new_bfd ();
670 if (nbfd == NULL)
671 return NULL;
672
673 target_vec = bfd_find_target (target, nbfd);
674 if (target_vec == NULL)
675 {
73e87d70 676 _bfd_delete_bfd (nbfd);
252b5132
RH
677 return NULL;
678 }
679
1be5090b
NC
680 /* PR 11983: Do not cache the original filename, but
681 rather make a copy - the original might go away. */
89bdc77e
AM
682 nbfd->filename = bfd_strdup (filename);
683 if (nbfd->filename == NULL)
684 {
685 _bfd_delete_bfd (nbfd);
686 return NULL;
687 }
252b5132
RH
688 nbfd->direction = write_direction;
689
690 if (bfd_open_file (nbfd) == NULL)
691 {
c4f3d130
NC
692 /* File not writeable, etc. */
693 bfd_set_error (bfd_error_system_call);
73e87d70 694 _bfd_delete_bfd (nbfd);
252b5132
RH
695 return NULL;
696 }
697
698 return nbfd;
699}
700
8c7d38e8
NC
701static inline void
702_maybe_make_executable (bfd * abfd)
703{
704 /* If the file was open for writing and is now executable,
705 make it so. */
706 if (abfd->direction == write_direction
dbde1c12 707 && (abfd->flags & (EXEC_P | DYNAMIC)) != 0)
8c7d38e8
NC
708 {
709 struct stat buf;
710
765cf5f6 711 if (stat (bfd_get_filename (abfd), &buf) == 0
8c7d38e8
NC
712 /* Do not attempt to change non-regular files. This is
713 here especially for configure scripts and kernel builds
714 which run tests with "ld [...] -o /dev/null". */
715 && S_ISREG(buf.st_mode))
716 {
717 unsigned int mask = umask (0);
718
719 umask (mask);
765cf5f6 720 chmod (bfd_get_filename (abfd),
8c7d38e8
NC
721 (0777
722 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
723 }
724 }
725}
726
252b5132 727/*
252b5132
RH
728FUNCTION
729 bfd_close
730
731SYNOPSIS
b34976b6 732 bfd_boolean bfd_close (bfd *abfd);
252b5132
RH
733
734DESCRIPTION
7c4a37eb
AM
735 Close a BFD. If the BFD was open for writing, then pending
736 operations are completed and the file written out and closed.
737 If the created file is executable, then <<chmod>> is called
738 to mark it as such.
252b5132
RH
739
740 All memory attached to the BFD is released.
741
742 The file descriptor associated with the BFD is closed (even
743 if it was passed in to BFD by <<bfd_fdopenr>>).
744
745RETURNS
b34976b6 746 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>.
252b5132
RH
747*/
748
b34976b6 749bfd_boolean
c58b9523 750bfd_close (bfd *abfd)
252b5132 751{
c4f3d130 752 if (bfd_write_p (abfd))
252b5132
RH
753 {
754 if (! BFD_SEND_FMT (abfd, _bfd_write_contents, (abfd)))
b34976b6 755 return FALSE;
252b5132
RH
756 }
757
e234de6b 758 return bfd_close_all_done (abfd);
252b5132
RH
759}
760
761/*
762FUNCTION
763 bfd_close_all_done
764
765SYNOPSIS
b34976b6 766 bfd_boolean bfd_close_all_done (bfd *);
252b5132
RH
767
768DESCRIPTION
7c4a37eb
AM
769 Close a BFD. Differs from <<bfd_close>> since it does not
770 complete any pending operations. This routine would be used
771 if the application had just used BFD for swapping and didn't
772 want to use any of the writing code.
252b5132
RH
773
774 If the created file is executable, then <<chmod>> is called
775 to mark it as such.
776
777 All memory attached to the BFD is released.
778
779RETURNS
b34976b6 780 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>.
252b5132
RH
781*/
782
b34976b6 783bfd_boolean
c58b9523 784bfd_close_all_done (bfd *abfd)
252b5132 785{
b34976b6 786 bfd_boolean ret;
252b5132 787
7c0ed396
L
788 if (! BFD_SEND (abfd, _close_and_cleanup, (abfd)))
789 return FALSE;
790
e234de6b
AM
791 ret = abfd->iovec->bclose (abfd) == 0;
792
8c7d38e8
NC
793 if (ret)
794 _maybe_make_executable (abfd);
252b5132 795
73e87d70 796 _bfd_delete_bfd (abfd);
252b5132
RH
797
798 return ret;
799}
800
801/*
802FUNCTION
803 bfd_create
804
805SYNOPSIS
c58b9523 806 bfd *bfd_create (const char *filename, bfd *templ);
252b5132
RH
807
808DESCRIPTION
7c4a37eb
AM
809 Create a new BFD in the manner of <<bfd_openw>>, but without
810 opening a file. The new BFD takes the target from the target
fc1cfaa5 811 used by @var{templ}. The format is always set to <<bfd_object>>.
1be5090b
NC
812
813 A copy of the @var{filename} argument is stored in the newly created
814 BFD. It can be accessed via the bfd_get_filename() macro.
252b5132
RH
815*/
816
817bfd *
c58b9523 818bfd_create (const char *filename, bfd *templ)
252b5132
RH
819{
820 bfd *nbfd;
821
822 nbfd = _bfd_new_bfd ();
823 if (nbfd == NULL)
824 return NULL;
1be5090b
NC
825 /* PR 11983: Do not cache the original filename, but
826 rather make a copy - the original might go away. */
89bdc77e
AM
827 nbfd->filename = bfd_strdup (filename);
828 if (nbfd->filename == NULL)
829 {
830 _bfd_delete_bfd (nbfd);
831 return NULL;
832 }
252b5132
RH
833 if (templ)
834 nbfd->xvec = templ->xvec;
835 nbfd->direction = no_direction;
836 bfd_set_format (nbfd, bfd_object);
c4f3d130 837
252b5132
RH
838 return nbfd;
839}
840
841/*
842FUNCTION
843 bfd_make_writable
844
845SYNOPSIS
b34976b6 846 bfd_boolean bfd_make_writable (bfd *abfd);
252b5132
RH
847
848DESCRIPTION
849 Takes a BFD as created by <<bfd_create>> and converts it
850 into one like as returned by <<bfd_openw>>. It does this
851 by converting the BFD to BFD_IN_MEMORY. It's assumed that
852 you will call <<bfd_make_readable>> on this bfd later.
853
854RETURNS
b34976b6 855 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>.
252b5132
RH
856*/
857
b34976b6 858bfd_boolean
c58b9523 859bfd_make_writable (bfd *abfd)
252b5132
RH
860{
861 struct bfd_in_memory *bim;
862
863 if (abfd->direction != no_direction)
864 {
865 bfd_set_error (bfd_error_invalid_operation);
b34976b6 866 return FALSE;
252b5132
RH
867 }
868
a50b1753 869 bim = (struct bfd_in_memory *) bfd_malloc (sizeof (struct bfd_in_memory));
f6eea5ae
MS
870 if (bim == NULL)
871 return FALSE; /* bfd_error already set. */
c58b9523 872 abfd->iostream = bim;
c4f3d130 873 /* bfd_bwrite will grow these as needed. */
252b5132
RH
874 bim->size = 0;
875 bim->buffer = 0;
876
877 abfd->flags |= BFD_IN_MEMORY;
65077aa8
TG
878 abfd->iovec = &_bfd_memory_iovec;
879 abfd->origin = 0;
252b5132
RH
880 abfd->direction = write_direction;
881 abfd->where = 0;
882
b34976b6 883 return TRUE;
252b5132
RH
884}
885
886/*
887FUNCTION
888 bfd_make_readable
889
890SYNOPSIS
b34976b6 891 bfd_boolean bfd_make_readable (bfd *abfd);
252b5132
RH
892
893DESCRIPTION
894 Takes a BFD as created by <<bfd_create>> and
895 <<bfd_make_writable>> and converts it into one like as
896 returned by <<bfd_openr>>. It does this by writing the
897 contents out to the memory buffer, then reversing the
898 direction.
899
900RETURNS
b34976b6 901 <<TRUE>> is returned if all is ok, otherwise <<FALSE>>. */
252b5132 902
b34976b6 903bfd_boolean
c58b9523 904bfd_make_readable (bfd *abfd)
252b5132
RH
905{
906 if (abfd->direction != write_direction || !(abfd->flags & BFD_IN_MEMORY))
907 {
908 bfd_set_error (bfd_error_invalid_operation);
b34976b6 909 return FALSE;
252b5132
RH
910 }
911
912 if (! BFD_SEND_FMT (abfd, _bfd_write_contents, (abfd)))
b34976b6 913 return FALSE;
252b5132
RH
914
915 if (! BFD_SEND (abfd, _close_and_cleanup, (abfd)))
b34976b6 916 return FALSE;
252b5132 917
252b5132
RH
918 abfd->arch_info = &bfd_default_arch_struct;
919
920 abfd->where = 0;
252b5132 921 abfd->format = bfd_unknown;
c58b9523 922 abfd->my_archive = NULL;
dc810e39 923 abfd->origin = 0;
b34976b6
AM
924 abfd->opened_once = FALSE;
925 abfd->output_has_begun = FALSE;
252b5132 926 abfd->section_count = 0;
c58b9523 927 abfd->usrdata = NULL;
b34976b6 928 abfd->cacheable = FALSE;
9e2278f5 929 abfd->flags |= BFD_IN_MEMORY;
b34976b6 930 abfd->mtime_set = FALSE;
252b5132 931
b34976b6 932 abfd->target_defaulted = TRUE;
252b5132
RH
933 abfd->direction = read_direction;
934 abfd->sections = 0;
935 abfd->symcount = 0;
936 abfd->outsymbols = 0;
937 abfd->tdata.any = 0;
938
e54fdaa5
AM
939 bfd_section_list_clear (abfd);
940 bfd_check_format (abfd, bfd_object);
252b5132 941
b34976b6 942 return TRUE;
252b5132
RH
943}
944
945/*
59a9808d 946FUNCTION
252b5132
RH
947 bfd_alloc
948
949SYNOPSIS
0fdea5ce 950 void *bfd_alloc (bfd *abfd, bfd_size_type wanted);
252b5132
RH
951
952DESCRIPTION
953 Allocate a block of @var{wanted} bytes of memory attached to
954 <<abfd>> and return a pointer to it.
955*/
956
c58b9523
AM
957void *
958bfd_alloc (bfd *abfd, bfd_size_type size)
252b5132 959{
c58b9523 960 void *ret;
36e9d67b 961 unsigned long ul_size = (unsigned long) size;
252b5132 962
36e9d67b 963 if (size != ul_size
db6b071a
NC
964 /* Note - although objalloc_alloc takes an unsigned long as its
965 argument, internally the size is treated as a signed long. This can
966 lead to problems where, for example, a request to allocate -1 bytes
967 can result in just 1 byte being allocated, rather than
968 ((unsigned long) -1) bytes. Also memory checkers will often
969 complain about attempts to allocate a negative amount of memory.
970 So to stop these problems we fail if the size is negative. */
971 || ((signed long) ul_size) < 0)
dc810e39
AM
972 {
973 bfd_set_error (bfd_error_no_memory);
974 return NULL;
975 }
db6b071a 976
36e9d67b 977 ret = objalloc_alloc ((struct objalloc *) abfd->memory, ul_size);
252b5132
RH
978 if (ret == NULL)
979 bfd_set_error (bfd_error_no_memory);
980 return ret;
981}
982
c3e8c140 983/*
59a9808d 984FUNCTION
c3e8c140
BE
985 bfd_zalloc
986
987SYNOPSIS
988 void *bfd_zalloc (bfd *abfd, bfd_size_type wanted);
989
990DESCRIPTION
991 Allocate a block of @var{wanted} bytes of zeroed memory
992 attached to <<abfd>> and return a pointer to it.
993*/
994
c58b9523
AM
995void *
996bfd_zalloc (bfd *abfd, bfd_size_type size)
252b5132 997{
c58b9523 998 void *res;
252b5132
RH
999
1000 res = bfd_alloc (abfd, size);
1001 if (res)
dc810e39 1002 memset (res, 0, (size_t) size);
252b5132
RH
1003 return res;
1004}
1005
73e87d70
AM
1006/* Free a block allocated for a BFD.
1007 Note: Also frees all more recently allocated blocks! */
252b5132
RH
1008
1009void
c58b9523 1010bfd_release (bfd *abfd, void *block)
252b5132
RH
1011{
1012 objalloc_free_block ((struct objalloc *) abfd->memory, block);
1013}
31f7ba04
NC
1014
1015
f12123c0
AM
1016/*
1017 GNU Extension: separate debug-info files
1018
31f7ba04
NC
1019 The idea here is that a special section called .gnu_debuglink might be
1020 embedded in a binary file, which indicates that some *other* file
1021 contains the real debugging information. This special section contains a
1022 filename and CRC32 checksum, which we read and resolve to another file,
1023 if it exists.
1024
1025 This facilitates "optional" provision of debugging information, without
1026 having to provide two complete copies of every binary object (with and
95e34fb4
NC
1027 without debug symbols). */
1028
1029#define GNU_DEBUGLINK ".gnu_debuglink"
1030#define GNU_DEBUGALTLINK ".gnu_debugaltlink"
31f7ba04 1031
31f7ba04 1032/*
2593f09a
NC
1033FUNCTION
1034 bfd_calc_gnu_debuglink_crc32
31f7ba04
NC
1035
1036SYNOPSIS
c58b9523
AM
1037 unsigned long bfd_calc_gnu_debuglink_crc32
1038 (unsigned long crc, const unsigned char *buf, bfd_size_type len);
31f7ba04
NC
1039
1040DESCRIPTION
2593f09a
NC
1041 Computes a CRC value as used in the .gnu_debuglink section.
1042 Advances the previously computed @var{crc} value by computing
1043 and adding in the crc32 for @var{len} bytes of @var{buf}.
1044
1045RETURNS
1046 Return the updated CRC32 value.
f12123c0 1047*/
31f7ba04 1048
2593f09a 1049unsigned long
c58b9523
AM
1050bfd_calc_gnu_debuglink_crc32 (unsigned long crc,
1051 const unsigned char *buf,
1052 bfd_size_type len)
31f7ba04
NC
1053{
1054 static const unsigned long crc32_table[256] =
1055 {
1056 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
1057 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
1058 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
1059 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
1060 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
1061 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
1062 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
1063 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
1064 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
1065 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
1066 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
1067 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
1068 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
1069 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
1070 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
1071 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
1072 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
1073 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
1074 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
1075 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
1076 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
1077 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
1078 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
1079 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
1080 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
1081 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
1082 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
1083 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
1084 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
1085 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
1086 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
1087 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
1088 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
1089 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
1090 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
1091 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
1092 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
1093 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
1094 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
1095 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
1096 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
1097 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
1098 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
1099 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
1100 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
1101 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
1102 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
1103 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
1104 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
1105 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
1106 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
1107 0x2d02ef8d
1108 };
1109 const unsigned char *end;
1110
1111 crc = ~crc & 0xffffffff;
1112 for (end = buf + len; buf < end; ++ buf)
1113 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
5bb3703f 1114 return ~crc & 0xffffffff;
31f7ba04
NC
1115}
1116
1117
1118/*
49f4617b
PA
1119INTERNAL_FUNCTION
1120 bfd_get_debug_link_info_1
31f7ba04
NC
1121
1122SYNOPSIS
49f4617b 1123 char *bfd_get_debug_link_info_1 (bfd *abfd, void *crc32_out);
31f7ba04
NC
1124
1125DESCRIPTION
49f4617b
PA
1126 Extracts the filename and CRC32 value for any separate debug
1127 information file associated with @var{abfd}.
1128
1129 The @var{crc32_out} parameter is an untyped pointer because
1130 this routine is used as a @code{get_func_type} function, but it
1131 is expected to be an unsigned long pointer.
1132
1133RETURNS
1134 The filename of the associated debug information file, or NULL
1135 if there is no such file. If the filename was found then the
1136 contents of @var{crc32_out} are updated to hold the corresponding
1137 CRC32 value for the file.
1138
1139 The returned filename is allocated with @code{malloc}; freeing
1140 it is the responsibility of the caller.
31f7ba04
NC
1141*/
1142
49f4617b
PA
1143static char *
1144bfd_get_debug_link_info_1 (bfd *abfd, void *crc32_out)
31f7ba04 1145{
eea6121a 1146 asection *sect;
49f4617b 1147 unsigned long *crc32 = (unsigned long *) crc32_out;
eea6121a 1148 bfd_byte *contents;
470c009b 1149 unsigned int crc_offset;
f075ee0c 1150 char *name;
64e234d4 1151 bfd_size_type size;
b03202e3 1152 ufile_ptr file_size;
31f7ba04
NC
1153
1154 BFD_ASSERT (abfd);
1155 BFD_ASSERT (crc32_out);
1156
2593f09a 1157 sect = bfd_get_section_by_name (abfd, GNU_DEBUGLINK);
31f7ba04
NC
1158
1159 if (sect == NULL)
1160 return NULL;
1161
fd361982 1162 size = bfd_section_size (sect);
b03202e3 1163 file_size = bfd_get_size (abfd);
64e234d4
NC
1164
1165 /* PR 22794: Make sure that the section has a reasonable size. */
b03202e3 1166 if (size < 8 || (file_size != 0 && size >= file_size))
64e234d4
NC
1167 return NULL;
1168
eea6121a 1169 if (!bfd_malloc_and_get_section (abfd, sect, &contents))
31f7ba04 1170 {
eea6121a
AM
1171 if (contents != NULL)
1172 free (contents);
31f7ba04
NC
1173 return NULL;
1174 }
1175
470c009b 1176 /* CRC value is stored after the filename, aligned up to 4 bytes. */
f075ee0c 1177 name = (char *) contents;
64e234d4
NC
1178 /* PR 17597: Avoid reading off the end of the buffer. */
1179 crc_offset = strnlen (name, size) + 1;
31f7ba04 1180 crc_offset = (crc_offset + 3) & ~3;
64e234d4 1181 if (crc_offset + 4 > size)
470c009b 1182 return NULL;
31f7ba04 1183
49f4617b 1184 *crc32 = bfd_get_32 (abfd, contents + crc_offset);
f075ee0c 1185 return name;
31f7ba04
NC
1186}
1187
49f4617b
PA
1188
1189/*
1190FUNCTION
1191 bfd_get_debug_link_info
1192
1193SYNOPSIS
1194 char *bfd_get_debug_link_info (bfd *abfd, unsigned long *crc32_out);
1195
1196DESCRIPTION
1197 Extracts the filename and CRC32 value for any separate debug
1198 information file associated with @var{abfd}.
1199
1200RETURNS
1201 The filename of the associated debug information file, or NULL
1202 if there is no such file. If the filename was found then the
1203 contents of @var{crc32_out} are updated to hold the corresponding
1204 CRC32 value for the file.
1205
1206 The returned filename is allocated with @code{malloc}; freeing
1207 it is the responsibility of the caller.
1208*/
1209
1210char *
1211bfd_get_debug_link_info (bfd *abfd, unsigned long *crc32_out)
1212{
1213 return bfd_get_debug_link_info_1 (abfd, crc32_out);
1214}
1215
95e34fb4
NC
1216/*
1217FUNCTION
1218 bfd_get_alt_debug_link_info
1219
1220SYNOPSIS
acd13123
TT
1221 char *bfd_get_alt_debug_link_info (bfd * abfd,
1222 bfd_size_type *buildid_len,
07d6d2b8 1223 bfd_byte **buildid_out);
95e34fb4
NC
1224
1225DESCRIPTION
1226 Fetch the filename and BuildID value for any alternate debuginfo
1227 associated with @var{abfd}. Return NULL if no such info found,
dc294be5
TT
1228 otherwise return filename and update @var{buildid_len} and
1229 @var{buildid_out}. The returned filename and build_id are
49f4617b
PA
1230 allocated with @code{malloc}; freeing them is the responsibility
1231 of the caller.
95e34fb4
NC
1232*/
1233
1234char *
acd13123 1235bfd_get_alt_debug_link_info (bfd * abfd, bfd_size_type *buildid_len,
dc294be5 1236 bfd_byte **buildid_out)
95e34fb4
NC
1237{
1238 asection *sect;
1239 bfd_byte *contents;
470c009b 1240 unsigned int buildid_offset;
95e34fb4 1241 char *name;
64e234d4 1242 bfd_size_type size;
b03202e3 1243 ufile_ptr file_size;
95e34fb4
NC
1244
1245 BFD_ASSERT (abfd);
dc294be5 1246 BFD_ASSERT (buildid_len);
95e34fb4
NC
1247 BFD_ASSERT (buildid_out);
1248
1249 sect = bfd_get_section_by_name (abfd, GNU_DEBUGALTLINK);
1250
1251 if (sect == NULL)
1252 return NULL;
1253
fd361982 1254 size = bfd_section_size (sect);
b03202e3
AM
1255 file_size = bfd_get_size (abfd);
1256 if (size < 8 || (file_size != 0 && size >= file_size))
64e234d4
NC
1257 return NULL;
1258
95e34fb4
NC
1259 if (!bfd_malloc_and_get_section (abfd, sect, & contents))
1260 {
1261 if (contents != NULL)
1262 free (contents);
1263 return NULL;
1264 }
1265
dc294be5 1266 /* BuildID value is stored after the filename. */
95e34fb4 1267 name = (char *) contents;
64e234d4 1268 buildid_offset = strnlen (name, size) + 1;
fd361982 1269 if (buildid_offset >= bfd_section_size (sect))
470c009b 1270 return NULL;
95e34fb4 1271
64e234d4 1272 *buildid_len = size - buildid_offset;
dc294be5
TT
1273 *buildid_out = bfd_malloc (*buildid_len);
1274 memcpy (*buildid_out, contents + buildid_offset, *buildid_len);
95e34fb4
NC
1275
1276 return name;
1277}
1278
31f7ba04
NC
1279/*
1280INTERNAL_FUNCTION
1281 separate_debug_file_exists
1282
1283SYNOPSIS
c58b9523 1284 bfd_boolean separate_debug_file_exists
49f4617b 1285 (char *name, void *crc32_p);
31f7ba04
NC
1286
1287DESCRIPTION
1288 Checks to see if @var{name} is a file and if its contents
49f4617b
PA
1289 match @var{crc32}, which is a pointer to an @code{unsigned
1290 long} containing a CRC32.
1291
1292 The @var{crc32_p} parameter is an untyped pointer because
1293 this routine is used as a @code{check_func_type} function.
31f7ba04
NC
1294*/
1295
1296static bfd_boolean
49f4617b 1297separate_debug_file_exists (const char *name, void *crc32_p)
31f7ba04 1298{
f075ee0c 1299 static unsigned char buffer [8 * 1024];
31f7ba04 1300 unsigned long file_crc = 0;
fed590bb 1301 FILE *f;
2593f09a 1302 bfd_size_type count;
49f4617b 1303 unsigned long crc;
31f7ba04
NC
1304
1305 BFD_ASSERT (name);
49f4617b
PA
1306 BFD_ASSERT (crc32_p);
1307
1308 crc = *(unsigned long *) crc32_p;
31f7ba04 1309
c7c3d11b 1310 f = _bfd_real_fopen (name, FOPEN_RB);
fed590bb 1311 if (f == NULL)
31f7ba04
NC
1312 return FALSE;
1313
fed590bb 1314 while ((count = fread (buffer, 1, sizeof (buffer), f)) > 0)
2593f09a 1315 file_crc = bfd_calc_gnu_debuglink_crc32 (file_crc, buffer, count);
31f7ba04 1316
fed590bb 1317 fclose (f);
31f7ba04
NC
1318
1319 return crc == file_crc;
1320}
1321
95e34fb4
NC
1322/*
1323INTERNAL_FUNCTION
1324 separate_alt_debug_file_exists
1325
1326SYNOPSIS
1327 bfd_boolean separate_alt_debug_file_exists
49f4617b 1328 (char *name, void *unused);
95e34fb4
NC
1329
1330DESCRIPTION
49f4617b 1331 Checks to see if @var{name} is a file.
95e34fb4
NC
1332*/
1333
1334static bfd_boolean
49f4617b 1335separate_alt_debug_file_exists (const char *name, void *unused ATTRIBUTE_UNUSED)
95e34fb4
NC
1336{
1337 FILE *f;
1338
1339 BFD_ASSERT (name);
1340
c7c3d11b 1341 f = _bfd_real_fopen (name, FOPEN_RB);
95e34fb4
NC
1342 if (f == NULL)
1343 return FALSE;
1344
95e34fb4
NC
1345 fclose (f);
1346
1347 return TRUE;
1348}
31f7ba04
NC
1349
1350/*
1351INTERNAL_FUNCTION
1352 find_separate_debug_file
1353
1354SYNOPSIS
2425a30e
NC
1355 char *find_separate_debug_file
1356 (bfd *abfd, const char *dir, bfd_boolean include_dirs,
49f4617b 1357 get_func_type get, check_func_type check, void *data);
31f7ba04
NC
1358
1359DESCRIPTION
2425a30e 1360 Searches for a debug information file corresponding to @var{abfd}.
49f4617b
PA
1361
1362 The name of the separate debug info file is returned by the
1363 @var{get} function. This function scans various fixed locations
1364 in the filesystem, including the file tree rooted at @var{dir}.
1365 If the @var{include_dirs} parameter is true then the directory
1366 components of @var{abfd}'s filename will be included in the
1367 searched locations.
1368
1369 @var{data} is passed unmodified to the @var{get} and @var{check}
1370 functions. It is generally used to implement build-id-like
1371 matching in the callback functions.
1372
1373RETURNS
1374 Returns the filename of the first file to be found which
1375 receives a TRUE result from the @var{check} function.
1376 Returns NULL if no valid file could be found.
31f7ba04
NC
1377*/
1378
49f4617b
PA
1379typedef char * (* get_func_type) (bfd *, void *);
1380typedef bfd_boolean (* check_func_type) (const char *, void *);
95e34fb4 1381
31f7ba04 1382static char *
07d6d2b8
AM
1383find_separate_debug_file (bfd * abfd,
1384 const char * debug_file_directory,
1385 bfd_boolean include_dirs,
1386 get_func_type get_func,
49f4617b 1387 check_func_type check_func,
07d6d2b8 1388 void * func_data)
31f7ba04 1389{
91d6fa6a 1390 char *base;
31f7ba04
NC
1391 char *dir;
1392 char *debugfile;
91910cdd 1393 char *canon_dir;
3ea6b9a5 1394 size_t dirlen;
91910cdd 1395 size_t canon_dirlen;
31f7ba04
NC
1396
1397 BFD_ASSERT (abfd);
1398 if (debug_file_directory == NULL)
1399 debug_file_directory = ".";
1400
1401 /* BFD may have been opened from a stream. */
765cf5f6 1402 if (bfd_get_filename (abfd) == NULL)
3ea6b9a5
AM
1403 {
1404 bfd_set_error (bfd_error_invalid_operation);
1405 return NULL;
1406 }
31f7ba04 1407
49f4617b 1408 base = get_func (abfd, func_data);
1b786873 1409
91d6fa6a 1410 if (base == NULL)
31f7ba04 1411 return NULL;
2593f09a 1412
91d6fa6a 1413 if (base[0] == '\0')
5ed6aba4 1414 {
91d6fa6a 1415 free (base);
3ea6b9a5 1416 bfd_set_error (bfd_error_no_debug_section);
5ed6aba4
NC
1417 return NULL;
1418 }
31f7ba04 1419
2425a30e
NC
1420 if (include_dirs)
1421 {
765cf5f6
AM
1422 const char *fname = bfd_get_filename (abfd);
1423 for (dirlen = strlen (fname); dirlen > 0; dirlen--)
1424 if (IS_DIR_SEPARATOR (fname[dirlen - 1]))
2425a30e 1425 break;
3ea6b9a5 1426
2425a30e
NC
1427 dir = (char *) bfd_malloc (dirlen + 1);
1428 if (dir == NULL)
1429 {
1430 free (base);
1431 return NULL;
1432 }
765cf5f6 1433 memcpy (dir, fname, dirlen);
2425a30e
NC
1434 dir[dirlen] = '\0';
1435 }
1436 else
2593f09a 1437 {
2425a30e
NC
1438 dir = (char *) bfd_malloc (1);
1439 * dir = 0;
1440 dirlen = 0;
2593f09a 1441 }
3ea6b9a5 1442
91910cdd
AS
1443 /* Compute the canonical name of the bfd object with all symbolic links
1444 resolved, for use in the global debugfile directory. */
765cf5f6 1445 canon_dir = lrealpath (bfd_get_filename (abfd));
91910cdd
AS
1446 for (canon_dirlen = strlen (canon_dir); canon_dirlen > 0; canon_dirlen--)
1447 if (IS_DIR_SEPARATOR (canon_dir[canon_dirlen - 1]))
1448 break;
1449 canon_dir[canon_dirlen] = '\0';
1450
2425a30e
NC
1451#ifndef EXTRA_DEBUG_ROOT1
1452#define EXTRA_DEBUG_ROOT1 "/usr/lib/debug"
1453#endif
1454#ifndef EXTRA_DEBUG_ROOT2
1455#define EXTRA_DEBUG_ROOT2 "/usr/lib/debug/usr"
49f4617b 1456#endif
2425a30e 1457
a50b1753
NC
1458 debugfile = (char *)
1459 bfd_malloc (strlen (debug_file_directory) + 1
07d6d2b8
AM
1460 + (canon_dirlen > dirlen ? canon_dirlen : dirlen)
1461 + strlen (".debug/")
2425a30e
NC
1462#ifdef EXTRA_DEBUG_ROOT1
1463 + strlen (EXTRA_DEBUG_ROOT1)
1464#endif
1465#ifdef EXTRA_DEBUG_ROOT2
1466 + strlen (EXTRA_DEBUG_ROOT2)
1467#endif
07d6d2b8
AM
1468 + strlen (base)
1469 + 1);
2593f09a 1470 if (debugfile == NULL)
95e34fb4 1471 goto found; /* Actually this returns NULL. */
31f7ba04 1472
2425a30e 1473 /* First try in the same directory as the original file.
31f7ba04 1474
2425a30e
NC
1475 FIXME: Strictly speaking if we are using the build-id method,
1476 (ie include_dirs == FALSE) then we should only check absolute
1477 paths, not relative ones like this one (and the next one).
1478 The check is left in however as this allows the binutils
1479 testsuite to exercise this feature without having to install
1480 a file into the root filesystem. (See binutils/testsuite/
1481 binutils-all/objdump.exp for the test). */
1482 sprintf (debugfile, "%s%s", dir, base);
49f4617b 1483 if (check_func (debugfile, func_data))
95e34fb4 1484 goto found;
31f7ba04
NC
1485
1486 /* Then try in a subdirectory called .debug. */
2425a30e 1487 sprintf (debugfile, "%s.debug/%s", dir, base);
49f4617b 1488 if (check_func (debugfile, func_data))
2425a30e 1489 goto found;
31f7ba04 1490
2425a30e
NC
1491#ifdef EXTRA_DEBUG_ROOT1
1492 /* Try the first extra debug file root. */
1493 sprintf (debugfile, "%s%s%s", EXTRA_DEBUG_ROOT1,
1494 include_dirs ? canon_dir : "/", base);
49f4617b 1495 if (check_func (debugfile, func_data))
95e34fb4 1496 goto found;
2425a30e 1497#endif
31f7ba04 1498
2425a30e
NC
1499#ifdef EXTRA_DEBUG_ROOT2
1500 /* Try the second extra debug file root. */
1501 sprintf (debugfile, "%s%s%s", EXTRA_DEBUG_ROOT2,
1502 include_dirs ? canon_dir : "/", base);
49f4617b 1503 if (check_func (debugfile, func_data))
2425a30e
NC
1504 goto found;
1505#endif
49f4617b 1506
31f7ba04
NC
1507 /* Then try in the global debugfile directory. */
1508 strcpy (debugfile, debug_file_directory);
91910cdd 1509 dirlen = strlen (debug_file_directory) - 1;
2425a30e
NC
1510 if (include_dirs)
1511 {
1512 if (dirlen > 0
1513 && debug_file_directory[dirlen] != '/'
1514 && canon_dir[0] != '/')
1515 strcat (debugfile, "/");
1516 strcat (debugfile, canon_dir);
1517 }
1518 else
1519 {
1520 if (dirlen > 0 && debug_file_directory[dirlen] != '/')
1521 strcat (debugfile, "/");
1522 }
91d6fa6a 1523 strcat (debugfile, base);
31f7ba04 1524
49f4617b 1525 if (check_func (debugfile, func_data))
95e34fb4 1526 goto found;
31f7ba04 1527
95e34fb4 1528 /* Failed to find the file. */
31f7ba04 1529 free (debugfile);
95e34fb4
NC
1530 debugfile = NULL;
1531
1532 found:
91d6fa6a 1533 free (base);
31f7ba04 1534 free (dir);
91910cdd 1535 free (canon_dir);
95e34fb4 1536 return debugfile;
31f7ba04
NC
1537}
1538
31f7ba04
NC
1539/*
1540FUNCTION
1541 bfd_follow_gnu_debuglink
1542
1543SYNOPSIS
c58b9523 1544 char *bfd_follow_gnu_debuglink (bfd *abfd, const char *dir);
31f7ba04
NC
1545
1546DESCRIPTION
31f7ba04 1547 Takes a BFD and searches it for a .gnu_debuglink section. If this
28d39d1a
NC
1548 section is found, it examines the section for the name and checksum
1549 of a '.debug' file containing auxiliary debugging information. It
1550 then searches the filesystem for this .debug file in some standard
31f7ba04 1551 locations, including the directory tree rooted at @var{dir}, and if
28d39d1a
NC
1552 found returns the full filename.
1553
2425a30e
NC
1554 If @var{dir} is NULL, the search will take place starting at
1555 the current directory.
31f7ba04
NC
1556
1557RETURNS
1558 <<NULL>> on any errors or failure to locate the .debug file,
1559 otherwise a pointer to a heap-allocated string containing the
28d39d1a 1560 filename. The caller is responsible for freeing this string.
31f7ba04
NC
1561*/
1562
1563char *
c58b9523 1564bfd_follow_gnu_debuglink (bfd *abfd, const char *dir)
31f7ba04 1565{
49f4617b
PA
1566 unsigned long crc32;
1567
2425a30e 1568 return find_separate_debug_file (abfd, dir, TRUE,
49f4617b
PA
1569 bfd_get_debug_link_info_1,
1570 separate_debug_file_exists, &crc32);
95e34fb4
NC
1571}
1572
49f4617b
PA
1573/* Helper for bfd_follow_gnu_debugaltlink. It just returns the name
1574 of the separate debug file. */
dc294be5
TT
1575
1576static char *
49f4617b 1577get_alt_debug_link_info_shim (bfd * abfd, void *unused ATTRIBUTE_UNUSED)
dc294be5 1578{
6e114b15 1579 bfd_size_type len;
dc294be5
TT
1580 bfd_byte *buildid = NULL;
1581 char *result = bfd_get_alt_debug_link_info (abfd, &len, &buildid);
1582
dc294be5
TT
1583 free (buildid);
1584
1585 return result;
1586}
1587
95e34fb4
NC
1588/*
1589FUNCTION
1590 bfd_follow_gnu_debugaltlink
1591
1592SYNOPSIS
1593 char *bfd_follow_gnu_debugaltlink (bfd *abfd, const char *dir);
1594
1595DESCRIPTION
95e34fb4
NC
1596 Takes a BFD and searches it for a .gnu_debugaltlink section. If this
1597 section is found, it examines the section for the name of a file
2425a30e 1598 containing auxiliary debugging information. It then searches the
95e34fb4
NC
1599 filesystem for this file in a set of standard locations, including
1600 the directory tree rooted at @var{dir}, and if found returns the
1601 full filename.
1602
2425a30e
NC
1603 If @var{dir} is NULL, the search will take place starting at
1604 the current directory.
95e34fb4
NC
1605
1606RETURNS
1607 <<NULL>> on any errors or failure to locate the debug file,
1608 otherwise a pointer to a heap-allocated string containing the
1609 filename. The caller is responsible for freeing this string.
1610*/
1611
1612char *
1613bfd_follow_gnu_debugaltlink (bfd *abfd, const char *dir)
1614{
2425a30e 1615 return find_separate_debug_file (abfd, dir, TRUE,
dc294be5 1616 get_alt_debug_link_info_shim,
49f4617b
PA
1617 separate_alt_debug_file_exists,
1618 NULL);
31f7ba04 1619}
2593f09a
NC
1620
1621/*
1622FUNCTION
e7c81c25 1623 bfd_create_gnu_debuglink_section
2593f09a
NC
1624
1625SYNOPSIS
198beae2 1626 struct bfd_section *bfd_create_gnu_debuglink_section
c58b9523 1627 (bfd *abfd, const char *filename);
2593f09a
NC
1628
1629DESCRIPTION
49f4617b
PA
1630 Takes a @var{BFD} and adds a .gnu_debuglink section to it. The
1631 section is sized to be big enough to contain a link to the specified
1632 @var{filename}.
e7c81c25
NC
1633
1634RETURNS
49f4617b
PA
1635 A pointer to the new section is returned if all is ok. Otherwise
1636 <<NULL>> is returned and bfd_error is set.
e7c81c25
NC
1637*/
1638
1639asection *
c58b9523 1640bfd_create_gnu_debuglink_section (bfd *abfd, const char *filename)
e7c81c25 1641{
c58b9523
AM
1642 asection *sect;
1643 bfd_size_type debuglink_size;
117ed4f8 1644 flagword flags;
e7c81c25
NC
1645
1646 if (abfd == NULL || filename == NULL)
1647 {
1648 bfd_set_error (bfd_error_invalid_operation);
1649 return NULL;
1650 }
1651
1652 /* Strip off any path components in filename. */
1653 filename = lbasename (filename);
f12123c0 1654
e7c81c25
NC
1655 sect = bfd_get_section_by_name (abfd, GNU_DEBUGLINK);
1656 if (sect)
1657 {
1658 /* Section already exists. */
1659 bfd_set_error (bfd_error_invalid_operation);
1660 return NULL;
1661 }
1662
117ed4f8
AM
1663 flags = SEC_HAS_CONTENTS | SEC_READONLY | SEC_DEBUGGING;
1664 sect = bfd_make_section_with_flags (abfd, GNU_DEBUGLINK, flags);
e7c81c25
NC
1665 if (sect == NULL)
1666 return NULL;
1667
758d96d8
NC
1668 /* Compute the size of the section. Allow for the CRC after the filename,
1669 and padding so that it will start on a 4-byte boundary. */
e7c81c25
NC
1670 debuglink_size = strlen (filename) + 1;
1671 debuglink_size += 3;
1672 debuglink_size &= ~3;
1673 debuglink_size += 4;
1674
fd361982 1675 if (!bfd_set_section_size (sect, debuglink_size))
e7c81c25
NC
1676 /* XXX Should we delete the section from the bfd ? */
1677 return NULL;
f12123c0 1678
758d96d8
NC
1679 /* PR 21193: Ensure that the section has 4-byte alignment for the CRC.
1680 Note - despite the name of the function being called, we are
1681 setting an alignment power, not a byte alignment value. */
fd361982 1682 bfd_set_section_alignment (sect, 2);
758d96d8 1683
e7c81c25
NC
1684 return sect;
1685}
1686
1687
1688/*
1689FUNCTION
1690 bfd_fill_in_gnu_debuglink_section
1691
1692SYNOPSIS
c58b9523 1693 bfd_boolean bfd_fill_in_gnu_debuglink_section
198beae2 1694 (bfd *abfd, struct bfd_section *sect, const char *filename);
e7c81c25
NC
1695
1696DESCRIPTION
e7c81c25
NC
1697 Takes a @var{BFD} and containing a .gnu_debuglink section @var{SECT}
1698 and fills in the contents of the section to contain a link to the
1699 specified @var{filename}. The filename should be relative to the
1700 current directory.
2593f09a
NC
1701
1702RETURNS
1703 <<TRUE>> is returned if all is ok. Otherwise <<FALSE>> is returned
f12123c0 1704 and bfd_error is set.
2593f09a
NC
1705*/
1706
1707bfd_boolean
c58b9523 1708bfd_fill_in_gnu_debuglink_section (bfd *abfd,
198beae2 1709 struct bfd_section *sect,
c58b9523 1710 const char *filename)
2593f09a 1711{
2593f09a
NC
1712 bfd_size_type debuglink_size;
1713 unsigned long crc32;
1714 char * contents;
1715 bfd_size_type crc_offset;
1716 FILE * handle;
f075ee0c 1717 static unsigned char buffer[8 * 1024];
2593f09a 1718 size_t count;
3ea6b9a5 1719 size_t filelen;
2593f09a 1720
e7c81c25 1721 if (abfd == NULL || sect == NULL || filename == NULL)
2593f09a
NC
1722 {
1723 bfd_set_error (bfd_error_invalid_operation);
1724 return FALSE;
1725 }
1726
1727 /* Make sure that we can read the file.
1728 XXX - Should we attempt to locate the debug info file using the same
1729 algorithm as gdb ? At the moment, since we are creating the
1730 .gnu_debuglink section, we insist upon the user providing us with a
1731 correct-for-section-creation-time path, but this need not conform to
1732 the gdb location algorithm. */
c7c3d11b 1733 handle = _bfd_real_fopen (filename, FOPEN_RB);
2593f09a
NC
1734 if (handle == NULL)
1735 {
1736 bfd_set_error (bfd_error_system_call);
1737 return FALSE;
1738 }
1739
1740 crc32 = 0;
1741 while ((count = fread (buffer, 1, sizeof buffer, handle)) > 0)
1742 crc32 = bfd_calc_gnu_debuglink_crc32 (crc32, buffer, count);
1743 fclose (handle);
1744
1745 /* Strip off any path components in filename,
1746 now that we no longer need them. */
1747 filename = lbasename (filename);
f12123c0 1748
3ea6b9a5
AM
1749 filelen = strlen (filename);
1750 debuglink_size = filelen + 1;
2593f09a
NC
1751 debuglink_size += 3;
1752 debuglink_size &= ~3;
1753 debuglink_size += 4;
1754
a50b1753 1755 contents = (char *) bfd_malloc (debuglink_size);
2593f09a
NC
1756 if (contents == NULL)
1757 {
1758 /* XXX Should we delete the section from the bfd ? */
2593f09a
NC
1759 return FALSE;
1760 }
1761
2593f09a 1762 crc_offset = debuglink_size - 4;
3ea6b9a5
AM
1763 memcpy (contents, filename, filelen);
1764 memset (contents + filelen, 0, crc_offset - filelen);
2593f09a 1765
c58b9523 1766 bfd_put_32 (abfd, crc32, contents + crc_offset);
2593f09a 1767
c58b9523 1768 if (! bfd_set_section_contents (abfd, sect, contents, 0, debuglink_size))
2593f09a
NC
1769 {
1770 /* XXX Should we delete the section from the bfd ? */
1771 free (contents);
1772 return FALSE;
1773 }
1774
1775 return TRUE;
1776}
2425a30e
NC
1777
1778/*
1779INTERNAL_FUNCTION
1780 get_build_id
1781
1782SYNOPSIS
49f4617b 1783 struct bfd_build_id * get_build_id (bfd *abfd);
2425a30e
NC
1784
1785DESCRIPTION
1786 Finds the build-id associated with @var{abfd}. If the build-id is
1787 extracted from the note section then a build-id structure is built
1788 for it, using memory allocated to @var{abfd}, and this is then
1789 attached to the @var{abfd}.
1790
49f4617b 1791RETURNS
2425a30e
NC
1792 Returns a pointer to the build-id structure if a build-id could be
1793 found. If no build-id is found NULL is returned and error code is
1794 set.
1795*/
1796
1797static struct bfd_build_id *
1798get_build_id (bfd *abfd)
1799{
1800 struct bfd_build_id *build_id;
1801 Elf_Internal_Note inote;
1802 Elf_External_Note *enote;
1803 bfd_byte *contents;
1804 asection *sect;
cfd14a50 1805 bfd_size_type size;
2425a30e
NC
1806
1807 BFD_ASSERT (abfd);
1808
1809 if (abfd->build_id && abfd->build_id->size > 0)
1810 /* Save some time by using the already computed build-id. */
1811 return (struct bfd_build_id *) abfd->build_id;
1812
1813 sect = bfd_get_section_by_name (abfd, ".note.gnu.build-id");
1814 if (sect == NULL)
1815 {
1816 bfd_set_error (bfd_error_no_debug_section);
1817 return NULL;
1818 }
1819
fd361982 1820 size = bfd_section_size (sect);
2425a30e 1821 /* FIXME: Should we support smaller build-id notes ? */
cfd14a50 1822 if (size < 0x24)
2425a30e
NC
1823 {
1824 bfd_set_error (bfd_error_invalid_operation);
1825 return NULL;
1826 }
1827
1828 if (!bfd_malloc_and_get_section (abfd, sect, & contents))
1829 {
1830 if (contents != NULL)
1831 free (contents);
1832 return NULL;
1833 }
1834
cfd14a50
NC
1835 /* FIXME: Paranoia - allow for compressed build-id sections.
1836 Maybe we should complain if this size is different from
1837 the one obtained above... */
fd361982 1838 size = bfd_section_size (sect);
cfd14a50
NC
1839 if (size < sizeof (Elf_External_Note))
1840 {
1841 bfd_set_error (bfd_error_invalid_operation);
1842 free (contents);
1843 return NULL;
1844 }
1845
2425a30e
NC
1846 enote = (Elf_External_Note *) contents;
1847 inote.type = H_GET_32 (abfd, enote->type);
1848 inote.namesz = H_GET_32 (abfd, enote->namesz);
1849 inote.namedata = enote->name;
1850 inote.descsz = H_GET_32 (abfd, enote->descsz);
1851 inote.descdata = inote.namedata + BFD_ALIGN (inote.namesz, 4);
1852 /* FIXME: Should we check for extra notes in this section ? */
49f4617b 1853
6077de06 1854 if (inote.descsz <= 0
2425a30e
NC
1855 || inote.type != NT_GNU_BUILD_ID
1856 || inote.namesz != 4 /* sizeof "GNU" */
cfd14a50 1857 || strncmp (inote.namedata, "GNU", 4) != 0
6077de06 1858 || inote.descsz > 0x7ffffffe
cfd14a50 1859 || size < (12 + BFD_ALIGN (inote.namesz, 4) + inote.descsz))
2425a30e
NC
1860 {
1861 free (contents);
1862 bfd_set_error (bfd_error_invalid_operation);
1863 return NULL;
1864 }
1865
1866 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) + inote.descsz);
1867 if (build_id == NULL)
1868 {
1869 free (contents);
1870 return NULL;
1871 }
1872
1873 build_id->size = inote.descsz;
1874 memcpy (build_id->data, inote.descdata, inote.descsz);
1875 abfd->build_id = build_id;
1876 free (contents);
1877
1878 return build_id;
1879}
1880
1881/*
1882INTERNAL_FUNCTION
1883 get_build_id_name
1884
1885SYNOPSIS
49f4617b 1886 char * get_build_id_name (bfd *abfd, void *build_id_out_p)
2425a30e
NC
1887
1888DESCRIPTION
1889 Searches @var{abfd} for a build-id, and then constructs a pathname
1890 from it. The path is computed as .build-id/NN/NN+NN.debug where
1891 NNNN+NN is the build-id value as a hexadecimal string.
1892
49f4617b 1893RETURNS
2425a30e
NC
1894 Returns the constructed filename or NULL upon error.
1895 It is the caller's responsibility to free the memory used to hold the
1896 filename.
49f4617b
PA
1897 If a filename is returned then the @var{build_id_out_p}
1898 parameter (which points to a @code{struct bfd_build_id}
1899 pointer) is set to a pointer to the build_id structure.
2425a30e
NC
1900*/
1901
1902static char *
49f4617b 1903get_build_id_name (bfd *abfd, void *build_id_out_p)
2425a30e 1904{
49f4617b 1905 struct bfd_build_id **build_id_out = build_id_out_p;
2425a30e
NC
1906 struct bfd_build_id *build_id;
1907 char *name;
1908 char *n;
1909 bfd_size_type s;
1910 bfd_byte *d;
1911
765cf5f6 1912 if (abfd == NULL || bfd_get_filename (abfd) == NULL || build_id_out == NULL)
2425a30e
NC
1913 {
1914 bfd_set_error (bfd_error_invalid_operation);
1915 return NULL;
1916 }
1917
1918 build_id = get_build_id (abfd);
1919 if (build_id == NULL)
1920 return NULL;
1921
1922 /* Compute the debug pathname corresponding to the build-id. */
1923 name = bfd_malloc (strlen (".build-id/") + build_id->size * 2 + 2 + strlen (".debug"));
1924 if (name == NULL)
1925 {
1926 bfd_set_error (bfd_error_no_memory);
1927 return NULL;
1928 }
1929 n = name;
1930 d = build_id->data;
1931 s = build_id->size;
1932
1933 n += sprintf (n, ".build-id/");
1934 n += sprintf (n, "%02x", (unsigned) *d++); s--;
1935 n += sprintf (n, "/");
1936 while (s--)
1937 n += sprintf (n, "%02x", (unsigned) *d++);
1938 n += sprintf (n, ".debug");
1939
49f4617b 1940 *build_id_out = build_id;
2425a30e
NC
1941 return name;
1942}
1943
1944/*
1945INTERNAL_FUNCTION
1946 check_build_id_file
1947
1948SYNOPSIS
49f4617b 1949 bfd_boolean check_build_id_file (char *name, void *buildid_p);
2425a30e
NC
1950
1951DESCRIPTION
1952 Checks to see if @var{name} is a readable file and if its build-id
1953 matches @var{buildid}.
1954
49f4617b
PA
1955RETURNS
1956 Returns TRUE if the file exists, is readable, and contains a
1957 build-id which matches the build-id pointed at by
1958 @var{build_id_p} (which is really a @code{struct bfd_build_id **}).
2425a30e
NC
1959*/
1960
1961static bfd_boolean
49f4617b 1962check_build_id_file (const char *name, void *buildid_p)
2425a30e
NC
1963{
1964 struct bfd_build_id *orig_build_id;
1965 struct bfd_build_id *build_id;
1966 bfd * file;
1967 bfd_boolean result;
1968
1969 BFD_ASSERT (name);
49f4617b 1970 BFD_ASSERT (buildid_p);
2425a30e
NC
1971
1972 file = bfd_openr (name, NULL);
1973 if (file == NULL)
1974 return FALSE;
1975
1976 /* If the file is an archive, process all of its elements. */
1977 if (! bfd_check_format (file, bfd_object))
1978 {
1979 bfd_close (file);
1980 return FALSE;
1981 }
49f4617b 1982
2425a30e
NC
1983 build_id = get_build_id (file);
1984 if (build_id == NULL)
1985 {
1986 bfd_close (file);
1987 return FALSE;
1988 }
1989
49f4617b 1990 orig_build_id = *(struct bfd_build_id **) buildid_p;
2425a30e
NC
1991
1992 result = build_id->size == orig_build_id->size
1993 && memcmp (build_id->data, orig_build_id->data, build_id->size) == 0;
1994
1995 (void) bfd_close (file);
1996
1997 return result;
1998}
1999
2000/*
2001FUNCTION
2002 bfd_follow_build_id_debuglink
2003
2004SYNOPSIS
2005 char *bfd_follow_build_id_debuglink (bfd *abfd, const char *dir);
2006
2007DESCRIPTION
2425a30e
NC
2008 Takes @var{abfd} and searches it for a .note.gnu.build-id section.
2009 If this section is found, it extracts the value of the NT_GNU_BUILD_ID
2010 note, which should be a hexadecimal value @var{NNNN+NN} (for
2011 32+ hex digits). It then searches the filesystem for a file named
2012 @var{.build-id/NN/NN+NN.debug} in a set of standard locations,
2013 including the directory tree rooted at @var{dir}. The filename
2014 of the first matching file to be found is returned. A matching
2015 file should contain a .note.gnu.build-id section with the same
2016 @var{NNNN+NN} note as @var{abfd}, although this check is currently
2017 not implemented.
2018
2019 If @var{dir} is NULL, the search will take place starting at
2020 the current directory.
2021
2022RETURNS
2023 <<NULL>> on any errors or failure to locate the debug file,
2024 otherwise a pointer to a heap-allocated string containing the
2025 filename. The caller is responsible for freeing this string.
2026*/
2027
2028char *
2029bfd_follow_build_id_debuglink (bfd *abfd, const char *dir)
2030{
49f4617b
PA
2031 struct bfd_build_id *build_id;
2032
2425a30e
NC
2033 return find_separate_debug_file (abfd, dir, FALSE,
2034 get_build_id_name,
49f4617b 2035 check_build_id_file, &build_id);
2425a30e 2036}
64b2d4a0
TT
2037
2038/*
2039FUNCTION
2040 bfd_set_filename
2041
2042SYNOPSIS
2043 void bfd_set_filename (bfd *abfd, char *filename);
2044
2045DESCRIPTION
2046 Set the filename of @var{abfd}. The old filename, if any, is freed.
2047 @var{filename} must be allocated using @code{xmalloc}. After
2048 this call, it is owned @var{abfd}.
2049*/
2050
2051void
2052bfd_set_filename (bfd *abfd, char *filename)
2053{
2054 free ((char *) abfd->filename);
2055 abfd->filename = filename;
2056}
This page took 1.247808 seconds and 4 git commands to generate.