]> Git Repo - binutils.git/blame - bfd/elf.c
alloc2 used unnecessarily
[binutils.git] / bfd / elf.c
CommitLineData
252b5132 1/* ELF executable support for BFD.
340b6d91 2
b3adc24a 3 Copyright (C) 1993-2020 Free Software Foundation, Inc.
252b5132 4
5e8d7549 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
5e8d7549
NC
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
5e8d7549 10 (at your option) any later version.
252b5132 11
5e8d7549
NC
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
252b5132 16
5e8d7549 17 You should have received a copy of the GNU General Public License
b34976b6 18 along with this program; if not, write to the Free Software
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
252b5132 22
1b74d094
BW
23/*
24SECTION
252b5132
RH
25 ELF backends
26
27 BFD support for ELF formats is being worked on.
28 Currently, the best supported back ends are for sparc and i386
29 (running svr4 or Solaris 2).
30
31 Documentation of the internals of the support code still needs
32 to be written. The code is changing quickly enough that we
661a3fd4 33 haven't bothered yet. */
252b5132 34
7ee38065
MS
35/* For sparc64-cross-sparc32. */
36#define _SYSCALL32
252b5132 37#include "sysdep.h"
3a551c7a 38#include <limits.h>
3db64b00 39#include "bfd.h"
252b5132
RH
40#include "bfdlink.h"
41#include "libbfd.h"
42#define ARCH_SIZE 0
43#include "elf-bfd.h"
e0e8c97f 44#include "libiberty.h"
ff59fc36 45#include "safe-ctype.h"
de64ce13 46#include "elf-linux-core.h"
252b5132 47
8bc7f138
L
48#ifdef CORE_HEADER
49#include CORE_HEADER
50#endif
51
217aa764 52static int elf_sort_sections (const void *, const void *);
c84fca4d 53static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
ef10c3ac 54static bfd_boolean swap_out_syms (bfd *, struct elf_strtab_hash **, int) ;
718175fa 55static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
276da9b3 56 file_ptr offset, size_t align);
50b2bdb7 57
252b5132
RH
58/* Swap version information in and out. The version information is
59 currently size independent. If that ever changes, this code will
60 need to move into elfcode.h. */
61
62/* Swap in a Verdef structure. */
63
64void
217aa764
AM
65_bfd_elf_swap_verdef_in (bfd *abfd,
66 const Elf_External_Verdef *src,
67 Elf_Internal_Verdef *dst)
252b5132 68{
dc810e39
AM
69 dst->vd_version = H_GET_16 (abfd, src->vd_version);
70 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
71 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
72 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
73 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
74 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
75 dst->vd_next = H_GET_32 (abfd, src->vd_next);
252b5132
RH
76}
77
78/* Swap out a Verdef structure. */
79
80void
217aa764
AM
81_bfd_elf_swap_verdef_out (bfd *abfd,
82 const Elf_Internal_Verdef *src,
83 Elf_External_Verdef *dst)
252b5132 84{
dc810e39
AM
85 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
86 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
87 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
88 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
89 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
90 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
91 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
252b5132
RH
92}
93
94/* Swap in a Verdaux structure. */
95
96void
217aa764
AM
97_bfd_elf_swap_verdaux_in (bfd *abfd,
98 const Elf_External_Verdaux *src,
99 Elf_Internal_Verdaux *dst)
252b5132 100{
dc810e39
AM
101 dst->vda_name = H_GET_32 (abfd, src->vda_name);
102 dst->vda_next = H_GET_32 (abfd, src->vda_next);
252b5132
RH
103}
104
105/* Swap out a Verdaux structure. */
106
107void
217aa764
AM
108_bfd_elf_swap_verdaux_out (bfd *abfd,
109 const Elf_Internal_Verdaux *src,
110 Elf_External_Verdaux *dst)
252b5132 111{
dc810e39
AM
112 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
113 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
252b5132
RH
114}
115
116/* Swap in a Verneed structure. */
117
118void
217aa764
AM
119_bfd_elf_swap_verneed_in (bfd *abfd,
120 const Elf_External_Verneed *src,
121 Elf_Internal_Verneed *dst)
252b5132 122{
dc810e39
AM
123 dst->vn_version = H_GET_16 (abfd, src->vn_version);
124 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
125 dst->vn_file = H_GET_32 (abfd, src->vn_file);
126 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
127 dst->vn_next = H_GET_32 (abfd, src->vn_next);
252b5132
RH
128}
129
130/* Swap out a Verneed structure. */
131
132void
217aa764
AM
133_bfd_elf_swap_verneed_out (bfd *abfd,
134 const Elf_Internal_Verneed *src,
135 Elf_External_Verneed *dst)
252b5132 136{
dc810e39
AM
137 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
138 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
139 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
140 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
141 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
252b5132
RH
142}
143
144/* Swap in a Vernaux structure. */
145
146void
217aa764
AM
147_bfd_elf_swap_vernaux_in (bfd *abfd,
148 const Elf_External_Vernaux *src,
149 Elf_Internal_Vernaux *dst)
252b5132 150{
dc810e39
AM
151 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
152 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
153 dst->vna_other = H_GET_16 (abfd, src->vna_other);
154 dst->vna_name = H_GET_32 (abfd, src->vna_name);
155 dst->vna_next = H_GET_32 (abfd, src->vna_next);
252b5132
RH
156}
157
158/* Swap out a Vernaux structure. */
159
160void
217aa764
AM
161_bfd_elf_swap_vernaux_out (bfd *abfd,
162 const Elf_Internal_Vernaux *src,
163 Elf_External_Vernaux *dst)
252b5132 164{
dc810e39
AM
165 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
166 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
167 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
168 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
169 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
252b5132
RH
170}
171
172/* Swap in a Versym structure. */
173
174void
217aa764
AM
175_bfd_elf_swap_versym_in (bfd *abfd,
176 const Elf_External_Versym *src,
177 Elf_Internal_Versym *dst)
252b5132 178{
dc810e39 179 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
252b5132
RH
180}
181
182/* Swap out a Versym structure. */
183
184void
217aa764
AM
185_bfd_elf_swap_versym_out (bfd *abfd,
186 const Elf_Internal_Versym *src,
187 Elf_External_Versym *dst)
252b5132 188{
dc810e39 189 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
252b5132
RH
190}
191
192/* Standard ELF hash function. Do not change this function; you will
193 cause invalid hash tables to be generated. */
3a99b017 194
252b5132 195unsigned long
217aa764 196bfd_elf_hash (const char *namearg)
252b5132 197{
3a99b017 198 const unsigned char *name = (const unsigned char *) namearg;
252b5132
RH
199 unsigned long h = 0;
200 unsigned long g;
201 int ch;
202
203 while ((ch = *name++) != '\0')
204 {
205 h = (h << 4) + ch;
206 if ((g = (h & 0xf0000000)) != 0)
207 {
208 h ^= g >> 24;
209 /* The ELF ABI says `h &= ~g', but this is equivalent in
210 this case and on some machines one insn instead of two. */
211 h ^= g;
212 }
213 }
32dfa85d 214 return h & 0xffffffff;
252b5132
RH
215}
216
fdc90cb4
JJ
217/* DT_GNU_HASH hash function. Do not change this function; you will
218 cause invalid hash tables to be generated. */
219
220unsigned long
221bfd_elf_gnu_hash (const char *namearg)
222{
223 const unsigned char *name = (const unsigned char *) namearg;
224 unsigned long h = 5381;
225 unsigned char ch;
226
227 while ((ch = *name++) != '\0')
228 h = (h << 5) + h + ch;
229 return h & 0xffffffff;
230}
231
0c8d6e5c
AM
232/* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
233 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
b34976b6 234bfd_boolean
0c8d6e5c 235bfd_elf_allocate_object (bfd *abfd,
0ffa91dd 236 size_t object_size,
4dfe6ac6 237 enum elf_target_id object_id)
252b5132 238{
0ffa91dd
NC
239 BFD_ASSERT (object_size >= sizeof (struct elf_obj_tdata));
240 abfd->tdata.any = bfd_zalloc (abfd, object_size);
241 if (abfd->tdata.any == NULL)
242 return FALSE;
252b5132 243
0ffa91dd 244 elf_object_id (abfd) = object_id;
c0355132
AM
245 if (abfd->direction != read_direction)
246 {
247 struct output_elf_obj_tdata *o = bfd_zalloc (abfd, sizeof *o);
248 if (o == NULL)
249 return FALSE;
250 elf_tdata (abfd)->o = o;
251 elf_program_header_size (abfd) = (bfd_size_type) -1;
252 }
b34976b6 253 return TRUE;
252b5132
RH
254}
255
0ffa91dd
NC
256
257bfd_boolean
ae95ffa6 258bfd_elf_make_object (bfd *abfd)
0ffa91dd 259{
ae95ffa6 260 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
0ffa91dd 261 return bfd_elf_allocate_object (abfd, sizeof (struct elf_obj_tdata),
ae95ffa6 262 bed->target_id);
0ffa91dd
NC
263}
264
b34976b6 265bfd_boolean
217aa764 266bfd_elf_mkcorefile (bfd *abfd)
252b5132 267{
c044fabd 268 /* I think this can be done just like an object file. */
228e534f
AM
269 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
270 return FALSE;
271 elf_tdata (abfd)->core = bfd_zalloc (abfd, sizeof (*elf_tdata (abfd)->core));
272 return elf_tdata (abfd)->core != NULL;
252b5132
RH
273}
274
6d5944fc 275char *
217aa764 276bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
252b5132
RH
277{
278 Elf_Internal_Shdr **i_shdrp;
f075ee0c 279 bfd_byte *shstrtab = NULL;
dc810e39
AM
280 file_ptr offset;
281 bfd_size_type shstrtabsize;
252b5132
RH
282
283 i_shdrp = elf_elfsections (abfd);
74f2e02b
AM
284 if (i_shdrp == 0
285 || shindex >= elf_numsections (abfd)
286 || i_shdrp[shindex] == 0)
f075ee0c 287 return NULL;
252b5132 288
f075ee0c 289 shstrtab = i_shdrp[shindex]->contents;
252b5132
RH
290 if (shstrtab == NULL)
291 {
c044fabd 292 /* No cached one, attempt to read, and cache what we read. */
252b5132
RH
293 offset = i_shdrp[shindex]->sh_offset;
294 shstrtabsize = i_shdrp[shindex]->sh_size;
c6c60d09
JJ
295
296 /* Allocate and clear an extra byte at the end, to prevent crashes
297 in case the string table is not terminated. */
3471d59d 298 if (shstrtabsize + 1 <= 1
95a6d235 299 || shstrtabsize > bfd_get_file_size (abfd)
06614111
NC
300 || bfd_seek (abfd, offset, SEEK_SET) != 0
301 || (shstrtab = (bfd_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL)
c6c60d09
JJ
302 shstrtab = NULL;
303 else if (bfd_bread (shstrtab, shstrtabsize, abfd) != shstrtabsize)
304 {
305 if (bfd_get_error () != bfd_error_system_call)
306 bfd_set_error (bfd_error_file_truncated);
06614111 307 bfd_release (abfd, shstrtab);
c6c60d09 308 shstrtab = NULL;
3471d59d
CC
309 /* Once we've failed to read it, make sure we don't keep
310 trying. Otherwise, we'll keep allocating space for
311 the string table over and over. */
312 i_shdrp[shindex]->sh_size = 0;
c6c60d09
JJ
313 }
314 else
315 shstrtab[shstrtabsize] = '\0';
217aa764 316 i_shdrp[shindex]->contents = shstrtab;
252b5132 317 }
f075ee0c 318 return (char *) shstrtab;
252b5132
RH
319}
320
321char *
217aa764
AM
322bfd_elf_string_from_elf_section (bfd *abfd,
323 unsigned int shindex,
324 unsigned int strindex)
252b5132
RH
325{
326 Elf_Internal_Shdr *hdr;
327
328 if (strindex == 0)
329 return "";
330
74f2e02b
AM
331 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
332 return NULL;
333
252b5132
RH
334 hdr = elf_elfsections (abfd)[shindex];
335
06614111
NC
336 if (hdr->contents == NULL)
337 {
338 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
339 {
340 /* PR 17512: file: f057ec89. */
695344c0 341 /* xgettext:c-format */
871b3ab2 342 _bfd_error_handler (_("%pB: attempt to load strings from"
63a5468a 343 " a non-string section (number %d)"),
06614111
NC
344 abfd, shindex);
345 return NULL;
346 }
b1fa9dd6 347
06614111
NC
348 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
349 return NULL;
350 }
eed5def8
NC
351 else
352 {
353 /* PR 24273: The string section's contents may have already
354 been loaded elsewhere, eg because a corrupt file has the
355 string section index in the ELF header pointing at a group
356 section. So be paranoid, and test that the last byte of
357 the section is zero. */
358 if (hdr->sh_size == 0 || hdr->contents[hdr->sh_size - 1] != 0)
359 return NULL;
360 }
252b5132
RH
361
362 if (strindex >= hdr->sh_size)
363 {
1b3a8575 364 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
4eca0228 365 _bfd_error_handler
695344c0 366 /* xgettext:c-format */
2dcf00ce
AM
367 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
368 abfd, strindex, (uint64_t) hdr->sh_size,
1b3a8575 369 (shindex == shstrndx && strindex == hdr->sh_name
252b5132 370 ? ".shstrtab"
1b3a8575 371 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
45b222d6 372 return NULL;
252b5132
RH
373 }
374
375 return ((char *) hdr->contents) + strindex;
376}
377
6cdc0ccc
AM
378/* Read and convert symbols to internal format.
379 SYMCOUNT specifies the number of symbols to read, starting from
380 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
381 are non-NULL, they are used to store the internal symbols, external
b7c368d0
NC
382 symbols, and symbol section index extensions, respectively.
383 Returns a pointer to the internal symbol buffer (malloced if necessary)
384 or NULL if there were no symbols or some kind of problem. */
6cdc0ccc
AM
385
386Elf_Internal_Sym *
217aa764
AM
387bfd_elf_get_elf_syms (bfd *ibfd,
388 Elf_Internal_Shdr *symtab_hdr,
389 size_t symcount,
390 size_t symoffset,
391 Elf_Internal_Sym *intsym_buf,
392 void *extsym_buf,
393 Elf_External_Sym_Shndx *extshndx_buf)
6cdc0ccc
AM
394{
395 Elf_Internal_Shdr *shndx_hdr;
217aa764 396 void *alloc_ext;
df622259 397 const bfd_byte *esym;
6cdc0ccc
AM
398 Elf_External_Sym_Shndx *alloc_extshndx;
399 Elf_External_Sym_Shndx *shndx;
4dd07732 400 Elf_Internal_Sym *alloc_intsym;
6cdc0ccc
AM
401 Elf_Internal_Sym *isym;
402 Elf_Internal_Sym *isymend;
9c5bfbb7 403 const struct elf_backend_data *bed;
6cdc0ccc
AM
404 size_t extsym_size;
405 bfd_size_type amt;
406 file_ptr pos;
407
e44a2c9c
AM
408 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
409 abort ();
410
6cdc0ccc
AM
411 if (symcount == 0)
412 return intsym_buf;
413
414 /* Normal syms might have section extension entries. */
415 shndx_hdr = NULL;
6a40cf0c
NC
416 if (elf_symtab_shndx_list (ibfd) != NULL)
417 {
418 elf_section_list * entry;
419 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
420
421 /* Find an index section that is linked to this symtab section. */
422 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
315350be
NC
423 {
424 /* PR 20063. */
425 if (entry->hdr.sh_link >= elf_numsections (ibfd))
426 continue;
427
428 if (sections[entry->hdr.sh_link] == symtab_hdr)
429 {
430 shndx_hdr = & entry->hdr;
431 break;
432 };
433 }
6a40cf0c
NC
434
435 if (shndx_hdr == NULL)
436 {
437 if (symtab_hdr == & elf_symtab_hdr (ibfd))
438 /* Not really accurate, but this was how the old code used to work. */
439 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
440 /* Otherwise we do nothing. The assumption is that
441 the index table will not be needed. */
442 }
443 }
6cdc0ccc
AM
444
445 /* Read the symbols. */
446 alloc_ext = NULL;
447 alloc_extshndx = NULL;
4dd07732 448 alloc_intsym = NULL;
6cdc0ccc
AM
449 bed = get_elf_backend_data (ibfd);
450 extsym_size = bed->s->sizeof_sym;
ef53be89 451 amt = (bfd_size_type) symcount * extsym_size;
6cdc0ccc
AM
452 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
453 if (extsym_buf == NULL)
454 {
d0fb9a8d 455 alloc_ext = bfd_malloc2 (symcount, extsym_size);
6cdc0ccc
AM
456 extsym_buf = alloc_ext;
457 }
458 if (extsym_buf == NULL
459 || bfd_seek (ibfd, pos, SEEK_SET) != 0
460 || bfd_bread (extsym_buf, amt, ibfd) != amt)
461 {
462 intsym_buf = NULL;
463 goto out;
464 }
465
466 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
467 extshndx_buf = NULL;
468 else
469 {
ef53be89 470 amt = (bfd_size_type) symcount * sizeof (Elf_External_Sym_Shndx);
6cdc0ccc
AM
471 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
472 if (extshndx_buf == NULL)
473 {
a50b1753 474 alloc_extshndx = (Elf_External_Sym_Shndx *)
07d6d2b8 475 bfd_malloc2 (symcount, sizeof (Elf_External_Sym_Shndx));
6cdc0ccc
AM
476 extshndx_buf = alloc_extshndx;
477 }
478 if (extshndx_buf == NULL
479 || bfd_seek (ibfd, pos, SEEK_SET) != 0
480 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
481 {
482 intsym_buf = NULL;
483 goto out;
484 }
485 }
486
487 if (intsym_buf == NULL)
488 {
a50b1753 489 alloc_intsym = (Elf_Internal_Sym *)
07d6d2b8 490 bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
4dd07732 491 intsym_buf = alloc_intsym;
6cdc0ccc
AM
492 if (intsym_buf == NULL)
493 goto out;
494 }
495
496 /* Convert the symbols to internal form. */
497 isymend = intsym_buf + symcount;
a50b1753 498 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
07d6d2b8 499 shndx = extshndx_buf;
6cdc0ccc
AM
500 isym < isymend;
501 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
8384fb8f
AM
502 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
503 {
504 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
695344c0 505 /* xgettext:c-format */
871b3ab2 506 _bfd_error_handler (_("%pB symbol number %lu references"
63a5468a 507 " nonexistent SHT_SYMTAB_SHNDX section"),
4eca0228 508 ibfd, (unsigned long) symoffset);
4dd07732
AM
509 if (alloc_intsym != NULL)
510 free (alloc_intsym);
8384fb8f
AM
511 intsym_buf = NULL;
512 goto out;
513 }
6cdc0ccc
AM
514
515 out:
516 if (alloc_ext != NULL)
517 free (alloc_ext);
518 if (alloc_extshndx != NULL)
519 free (alloc_extshndx);
520
521 return intsym_buf;
522}
523
5cab59f6
AM
524/* Look up a symbol name. */
525const char *
be8dd2ca
AM
526bfd_elf_sym_name (bfd *abfd,
527 Elf_Internal_Shdr *symtab_hdr,
26c61ae5
L
528 Elf_Internal_Sym *isym,
529 asection *sym_sec)
5cab59f6 530{
26c61ae5 531 const char *name;
5cab59f6 532 unsigned int iname = isym->st_name;
be8dd2ca 533 unsigned int shindex = symtab_hdr->sh_link;
26c61ae5 534
138f35cc
JJ
535 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
536 /* Check for a bogus st_shndx to avoid crashing. */
4fbb74a6 537 && isym->st_shndx < elf_numsections (abfd))
5cab59f6
AM
538 {
539 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
540 shindex = elf_elfheader (abfd)->e_shstrndx;
541 }
542
26c61ae5
L
543 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
544 if (name == NULL)
545 name = "(null)";
546 else if (sym_sec && *name == '\0')
fd361982 547 name = bfd_section_name (sym_sec);
26c61ae5
L
548
549 return name;
5cab59f6
AM
550}
551
dbb410c3
AM
552/* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
553 sections. The first element is the flags, the rest are section
554 pointers. */
555
556typedef union elf_internal_group {
557 Elf_Internal_Shdr *shdr;
558 unsigned int flags;
559} Elf_Internal_Group;
560
b885599b
AM
561/* Return the name of the group signature symbol. Why isn't the
562 signature just a string? */
563
564static const char *
217aa764 565group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
b885599b 566{
9dce4196 567 Elf_Internal_Shdr *hdr;
9dce4196
AM
568 unsigned char esym[sizeof (Elf64_External_Sym)];
569 Elf_External_Sym_Shndx eshndx;
570 Elf_Internal_Sym isym;
b885599b 571
13792e9d
L
572 /* First we need to ensure the symbol table is available. Make sure
573 that it is a symbol table section. */
4fbb74a6
AM
574 if (ghdr->sh_link >= elf_numsections (abfd))
575 return NULL;
13792e9d
L
576 hdr = elf_elfsections (abfd) [ghdr->sh_link];
577 if (hdr->sh_type != SHT_SYMTAB
578 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
b885599b
AM
579 return NULL;
580
9dce4196
AM
581 /* Go read the symbol. */
582 hdr = &elf_tdata (abfd)->symtab_hdr;
6cdc0ccc
AM
583 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
584 &isym, esym, &eshndx) == NULL)
b885599b 585 return NULL;
9dce4196 586
26c61ae5 587 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
b885599b
AM
588}
589
dbb410c3
AM
590/* Set next_in_group list pointer, and group name for NEWSECT. */
591
b34976b6 592static bfd_boolean
217aa764 593setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
dbb410c3
AM
594{
595 unsigned int num_group = elf_tdata (abfd)->num_group;
596
597 /* If num_group is zero, read in all SHT_GROUP sections. The count
598 is set to -1 if there are no SHT_GROUP sections. */
599 if (num_group == 0)
600 {
601 unsigned int i, shnum;
602
603 /* First count the number of groups. If we have a SHT_GROUP
604 section with just a flag word (ie. sh_size is 4), ignore it. */
9ad5cbcf 605 shnum = elf_numsections (abfd);
dbb410c3 606 num_group = 0;
08a40648 607
44534af3 608#define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
1783205a 609 ( (shdr)->sh_type == SHT_GROUP \
44534af3 610 && (shdr)->sh_size >= minsize \
1783205a
NC
611 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
612 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
08a40648 613
dbb410c3
AM
614 for (i = 0; i < shnum; i++)
615 {
616 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 617
44534af3 618 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3
AM
619 num_group += 1;
620 }
621
622 if (num_group == 0)
20dbb49d
L
623 {
624 num_group = (unsigned) -1;
625 elf_tdata (abfd)->num_group = num_group;
ce497010 626 elf_tdata (abfd)->group_sect_ptr = NULL;
20dbb49d
L
627 }
628 else
dbb410c3
AM
629 {
630 /* We keep a list of elf section headers for group sections,
631 so we can find them quickly. */
20dbb49d 632 bfd_size_type amt;
d0fb9a8d 633
20dbb49d 634 elf_tdata (abfd)->num_group = num_group;
a50b1753 635 elf_tdata (abfd)->group_sect_ptr = (Elf_Internal_Shdr **)
07d6d2b8 636 bfd_alloc2 (abfd, num_group, sizeof (Elf_Internal_Shdr *));
dbb410c3 637 if (elf_tdata (abfd)->group_sect_ptr == NULL)
b34976b6 638 return FALSE;
4bba0fb1
AM
639 memset (elf_tdata (abfd)->group_sect_ptr, 0,
640 num_group * sizeof (Elf_Internal_Shdr *));
dbb410c3 641 num_group = 0;
ce497010 642
dbb410c3
AM
643 for (i = 0; i < shnum; i++)
644 {
645 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 646
44534af3 647 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3 648 {
973ffd63 649 unsigned char *src;
dbb410c3
AM
650 Elf_Internal_Group *dest;
651
07d6d2b8
AM
652 /* Make sure the group section has a BFD section
653 attached to it. */
654 if (!bfd_section_from_shdr (abfd, i))
655 return FALSE;
656
dbb410c3
AM
657 /* Add to list of sections. */
658 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
659 num_group += 1;
660
661 /* Read the raw contents. */
662 BFD_ASSERT (sizeof (*dest) >= 4);
663 amt = shdr->sh_size * sizeof (*dest) / 4;
a50b1753 664 shdr->contents = (unsigned char *)
eed5def8 665 bfd_alloc2 (abfd, shdr->sh_size, sizeof (*dest) / 4);
1783205a
NC
666 /* PR binutils/4110: Handle corrupt group headers. */
667 if (shdr->contents == NULL)
668 {
669 _bfd_error_handler
695344c0 670 /* xgettext:c-format */
871b3ab2 671 (_("%pB: corrupt size field in group section"
2dcf00ce
AM
672 " header: %#" PRIx64),
673 abfd, (uint64_t) shdr->sh_size);
1783205a 674 bfd_set_error (bfd_error_bad_value);
493a3386
NC
675 -- num_group;
676 continue;
1783205a
NC
677 }
678
1783205a 679 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
dbb410c3
AM
680 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
681 != shdr->sh_size))
493a3386
NC
682 {
683 _bfd_error_handler
695344c0 684 /* xgettext:c-format */
871b3ab2 685 (_("%pB: invalid size field in group section"
2dcf00ce
AM
686 " header: %#" PRIx64 ""),
687 abfd, (uint64_t) shdr->sh_size);
493a3386
NC
688 bfd_set_error (bfd_error_bad_value);
689 -- num_group;
63a5468a
AM
690 /* PR 17510: If the group contents are even
691 partially corrupt, do not allow any of the
692 contents to be used. */
327301a4
AM
693 bfd_release (abfd, shdr->contents);
694 shdr->contents = NULL;
493a3386
NC
695 continue;
696 }
708d7d0d 697
dbb410c3
AM
698 /* Translate raw contents, a flag word followed by an
699 array of elf section indices all in target byte order,
700 to the flag word followed by an array of elf section
701 pointers. */
702 src = shdr->contents + shdr->sh_size;
703 dest = (Elf_Internal_Group *) (shdr->contents + amt);
06614111 704
dbb410c3
AM
705 while (1)
706 {
707 unsigned int idx;
708
709 src -= 4;
710 --dest;
711 idx = H_GET_32 (abfd, src);
712 if (src == shdr->contents)
713 {
327301a4 714 dest->shdr = NULL;
dbb410c3 715 dest->flags = idx;
b885599b
AM
716 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
717 shdr->bfd_section->flags
718 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
dbb410c3
AM
719 break;
720 }
4bba0fb1 721 if (idx < shnum)
bae363f1
L
722 {
723 dest->shdr = elf_elfsections (abfd)[idx];
724 /* PR binutils/23199: All sections in a
725 section group should be marked with
726 SHF_GROUP. But some tools generate
727 broken objects without SHF_GROUP. Fix
728 them up here. */
729 dest->shdr->sh_flags |= SHF_GROUP;
730 }
4bba0fb1
AM
731 if (idx >= shnum
732 || dest->shdr->sh_type == SHT_GROUP)
dbb410c3 733 {
4eca0228 734 _bfd_error_handler
4bba0fb1
AM
735 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
736 abfd, i);
737 dest->shdr = NULL;
dbb410c3 738 }
dbb410c3
AM
739 }
740 }
741 }
493a3386
NC
742
743 /* PR 17510: Corrupt binaries might contain invalid groups. */
744 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
745 {
746 elf_tdata (abfd)->num_group = num_group;
747
748 /* If all groups are invalid then fail. */
749 if (num_group == 0)
750 {
751 elf_tdata (abfd)->group_sect_ptr = NULL;
752 elf_tdata (abfd)->num_group = num_group = -1;
4eca0228 753 _bfd_error_handler
871b3ab2 754 (_("%pB: no valid group sections found"), abfd);
493a3386
NC
755 bfd_set_error (bfd_error_bad_value);
756 }
757 }
dbb410c3
AM
758 }
759 }
760
761 if (num_group != (unsigned) -1)
762 {
564e11c9
JW
763 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
764 unsigned int j;
dbb410c3 765
564e11c9 766 for (j = 0; j < num_group; j++)
dbb410c3 767 {
564e11c9
JW
768 /* Begin search from previous found group. */
769 unsigned i = (j + search_offset) % num_group;
770
dbb410c3 771 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
ce497010 772 Elf_Internal_Group *idx;
0c54f692 773 bfd_size_type n_elt;
ce497010
NC
774
775 if (shdr == NULL)
776 continue;
777
778 idx = (Elf_Internal_Group *) shdr->contents;
0c54f692
NC
779 if (idx == NULL || shdr->sh_size < 4)
780 {
781 /* See PR 21957 for a reproducer. */
782 /* xgettext:c-format */
871b3ab2 783 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
0c54f692
NC
784 abfd, shdr->bfd_section);
785 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
786 bfd_set_error (bfd_error_bad_value);
787 return FALSE;
788 }
ce497010 789 n_elt = shdr->sh_size / 4;
dbb410c3
AM
790
791 /* Look through this group's sections to see if current
792 section is a member. */
793 while (--n_elt != 0)
794 if ((++idx)->shdr == hdr)
795 {
e0e8c97f 796 asection *s = NULL;
dbb410c3
AM
797
798 /* We are a member of this group. Go looking through
799 other members to see if any others are linked via
800 next_in_group. */
801 idx = (Elf_Internal_Group *) shdr->contents;
802 n_elt = shdr->sh_size / 4;
803 while (--n_elt != 0)
4bba0fb1
AM
804 if ((++idx)->shdr != NULL
805 && (s = idx->shdr->bfd_section) != NULL
945906ff 806 && elf_next_in_group (s) != NULL)
dbb410c3
AM
807 break;
808 if (n_elt != 0)
809 {
dbb410c3
AM
810 /* Snarf the group name from other member, and
811 insert current section in circular list. */
945906ff
AM
812 elf_group_name (newsect) = elf_group_name (s);
813 elf_next_in_group (newsect) = elf_next_in_group (s);
814 elf_next_in_group (s) = newsect;
dbb410c3
AM
815 }
816 else
817 {
dbb410c3
AM
818 const char *gname;
819
b885599b
AM
820 gname = group_signature (abfd, shdr);
821 if (gname == NULL)
b34976b6 822 return FALSE;
945906ff 823 elf_group_name (newsect) = gname;
dbb410c3
AM
824
825 /* Start a circular list with one element. */
945906ff 826 elf_next_in_group (newsect) = newsect;
dbb410c3 827 }
b885599b 828
9dce4196
AM
829 /* If the group section has been created, point to the
830 new member. */
dbb410c3 831 if (shdr->bfd_section != NULL)
945906ff 832 elf_next_in_group (shdr->bfd_section) = newsect;
b885599b 833
564e11c9
JW
834 elf_tdata (abfd)->group_search_offset = i;
835 j = num_group - 1;
dbb410c3
AM
836 break;
837 }
838 }
839 }
840
945906ff 841 if (elf_group_name (newsect) == NULL)
dbb410c3 842 {
695344c0 843 /* xgettext:c-format */
871b3ab2 844 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
4eca0228 845 abfd, newsect);
493a3386 846 return FALSE;
dbb410c3 847 }
b34976b6 848 return TRUE;
dbb410c3
AM
849}
850
3d7f7666 851bfd_boolean
dd863624 852_bfd_elf_setup_sections (bfd *abfd)
3d7f7666
L
853{
854 unsigned int i;
855 unsigned int num_group = elf_tdata (abfd)->num_group;
856 bfd_boolean result = TRUE;
dd863624
L
857 asection *s;
858
859 /* Process SHF_LINK_ORDER. */
860 for (s = abfd->sections; s != NULL; s = s->next)
861 {
862 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
863 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
864 {
865 unsigned int elfsec = this_hdr->sh_link;
866 /* FIXME: The old Intel compiler and old strip/objcopy may
867 not set the sh_link or sh_info fields. Hence we could
868 get the situation where elfsec is 0. */
869 if (elfsec == 0)
870 {
4fbb74a6 871 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
dd863624
L
872 if (bed->link_order_error_handler)
873 bed->link_order_error_handler
695344c0 874 /* xgettext:c-format */
871b3ab2 875 (_("%pB: warning: sh_link not set for section `%pA'"),
dd863624
L
876 abfd, s);
877 }
878 else
879 {
91d6fa6a 880 asection *linksec = NULL;
25bbc984 881
4fbb74a6
AM
882 if (elfsec < elf_numsections (abfd))
883 {
884 this_hdr = elf_elfsections (abfd)[elfsec];
91d6fa6a 885 linksec = this_hdr->bfd_section;
4fbb74a6 886 }
25bbc984
L
887
888 /* PR 1991, 2008:
889 Some strip/objcopy may leave an incorrect value in
890 sh_link. We don't want to proceed. */
91d6fa6a 891 if (linksec == NULL)
25bbc984 892 {
4eca0228 893 _bfd_error_handler
695344c0 894 /* xgettext:c-format */
871b3ab2 895 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
c08bb8dd 896 s->owner, elfsec, s);
25bbc984
L
897 result = FALSE;
898 }
899
91d6fa6a 900 elf_linked_to_section (s) = linksec;
dd863624
L
901 }
902 }
53720c49
AM
903 else if (this_hdr->sh_type == SHT_GROUP
904 && elf_next_in_group (s) == NULL)
905 {
4eca0228 906 _bfd_error_handler
695344c0 907 /* xgettext:c-format */
871b3ab2 908 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
53720c49
AM
909 abfd, elf_section_data (s)->this_idx);
910 result = FALSE;
911 }
dd863624 912 }
3d7f7666 913
dd863624 914 /* Process section groups. */
3d7f7666
L
915 if (num_group == (unsigned) -1)
916 return result;
917
918 for (i = 0; i < num_group; i++)
919 {
920 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
4b0e8a5f
NC
921 Elf_Internal_Group *idx;
922 unsigned int n_elt;
3d7f7666 923
4b0e8a5f
NC
924 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
925 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
926 {
4eca0228 927 _bfd_error_handler
695344c0 928 /* xgettext:c-format */
871b3ab2 929 (_("%pB: section group entry number %u is corrupt"),
4b0e8a5f
NC
930 abfd, i);
931 result = FALSE;
932 continue;
933 }
934
935 idx = (Elf_Internal_Group *) shdr->contents;
936 n_elt = shdr->sh_size / 4;
1b786873 937
3d7f7666 938 while (--n_elt != 0)
24d3e51b
NC
939 {
940 ++ idx;
941
942 if (idx->shdr == NULL)
943 continue;
944 else if (idx->shdr->bfd_section)
945 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
db4677b8
AM
946 else if (idx->shdr->sh_type != SHT_RELA
947 && idx->shdr->sh_type != SHT_REL)
24d3e51b
NC
948 {
949 /* There are some unknown sections in the group. */
950 _bfd_error_handler
951 /* xgettext:c-format */
871b3ab2 952 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
24d3e51b
NC
953 abfd,
954 idx->shdr->sh_type,
955 bfd_elf_string_from_elf_section (abfd,
956 (elf_elfheader (abfd)
957 ->e_shstrndx),
958 idx->shdr->sh_name),
959 shdr->bfd_section);
960 result = FALSE;
961 }
962 }
3d7f7666 963 }
24d3e51b 964
3d7f7666
L
965 return result;
966}
967
72adc230
AM
968bfd_boolean
969bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
970{
971 return elf_next_in_group (sec) != NULL;
972}
973
cb7f4b29
AM
974const char *
975bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
976{
977 if (elf_sec_group (sec) != NULL)
978 return elf_group_name (sec);
979 return NULL;
980}
981
f6fe1ccd
L
982static char *
983convert_debug_to_zdebug (bfd *abfd, const char *name)
984{
985 unsigned int len = strlen (name);
986 char *new_name = bfd_alloc (abfd, len + 2);
987 if (new_name == NULL)
988 return NULL;
989 new_name[0] = '.';
990 new_name[1] = 'z';
991 memcpy (new_name + 2, name + 1, len);
992 return new_name;
993}
994
995static char *
996convert_zdebug_to_debug (bfd *abfd, const char *name)
997{
998 unsigned int len = strlen (name);
999 char *new_name = bfd_alloc (abfd, len);
1000 if (new_name == NULL)
1001 return NULL;
1002 new_name[0] = '.';
1003 memcpy (new_name + 1, name + 2, len - 1);
1004 return new_name;
1005}
1006
cc5277b1
ML
1007/* This a copy of lto_section defined in GCC (lto-streamer.h). */
1008
1009struct lto_section
1010{
1011 int16_t major_version;
1012 int16_t minor_version;
1013 unsigned char slim_object;
1014
1015 /* Flags is a private field that is not defined publicly. */
1016 uint16_t flags;
1017};
1018
252b5132
RH
1019/* Make a BFD section from an ELF section. We store a pointer to the
1020 BFD section in the bfd_section field of the header. */
1021
b34976b6 1022bfd_boolean
217aa764
AM
1023_bfd_elf_make_section_from_shdr (bfd *abfd,
1024 Elf_Internal_Shdr *hdr,
6dc132d9
L
1025 const char *name,
1026 int shindex)
252b5132
RH
1027{
1028 asection *newsect;
1029 flagword flags;
9c5bfbb7 1030 const struct elf_backend_data *bed;
252b5132
RH
1031
1032 if (hdr->bfd_section != NULL)
4e011fb5 1033 return TRUE;
252b5132
RH
1034
1035 newsect = bfd_make_section_anyway (abfd, name);
1036 if (newsect == NULL)
b34976b6 1037 return FALSE;
252b5132 1038
1829f4b2
AM
1039 hdr->bfd_section = newsect;
1040 elf_section_data (newsect)->this_hdr = *hdr;
6dc132d9 1041 elf_section_data (newsect)->this_idx = shindex;
1829f4b2 1042
2f89ff8d
L
1043 /* Always use the real type/flags. */
1044 elf_section_type (newsect) = hdr->sh_type;
1045 elf_section_flags (newsect) = hdr->sh_flags;
1046
252b5132
RH
1047 newsect->filepos = hdr->sh_offset;
1048
fd361982
AM
1049 if (!bfd_set_section_vma (newsect, hdr->sh_addr)
1050 || !bfd_set_section_size (newsect, hdr->sh_size)
1051 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
b34976b6 1052 return FALSE;
252b5132
RH
1053
1054 flags = SEC_NO_FLAGS;
1055 if (hdr->sh_type != SHT_NOBITS)
1056 flags |= SEC_HAS_CONTENTS;
dbb410c3 1057 if (hdr->sh_type == SHT_GROUP)
7bdf4127 1058 flags |= SEC_GROUP;
252b5132
RH
1059 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1060 {
1061 flags |= SEC_ALLOC;
1062 if (hdr->sh_type != SHT_NOBITS)
1063 flags |= SEC_LOAD;
1064 }
1065 if ((hdr->sh_flags & SHF_WRITE) == 0)
1066 flags |= SEC_READONLY;
1067 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1068 flags |= SEC_CODE;
1069 else if ((flags & SEC_LOAD) != 0)
1070 flags |= SEC_DATA;
f5fa8ca2
JJ
1071 if ((hdr->sh_flags & SHF_MERGE) != 0)
1072 {
1073 flags |= SEC_MERGE;
1074 newsect->entsize = hdr->sh_entsize;
f5fa8ca2 1075 }
84865015
NC
1076 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1077 flags |= SEC_STRINGS;
dbb410c3
AM
1078 if (hdr->sh_flags & SHF_GROUP)
1079 if (!setup_group (abfd, hdr, newsect))
b34976b6 1080 return FALSE;
13ae64f3
JJ
1081 if ((hdr->sh_flags & SHF_TLS) != 0)
1082 flags |= SEC_THREAD_LOCAL;
18ae9cc1
L
1083 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1084 flags |= SEC_EXCLUDE;
252b5132 1085
df3a023b
AM
1086 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1087 {
1088 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1089 but binutils as of 2019-07-23 did not set the EI_OSABI header
1090 byte. */
1091 case ELFOSABI_NONE:
1092 case ELFOSABI_GNU:
1093 case ELFOSABI_FREEBSD:
1094 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1095 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1096 break;
1097 }
1098
3d2b39cf 1099 if ((flags & SEC_ALLOC) == 0)
7a6cc5fb 1100 {
3d2b39cf
L
1101 /* The debugging sections appear to be recognized only by name,
1102 not any sort of flag. Their SEC_ALLOC bits are cleared. */
3d2b39cf
L
1103 if (name [0] == '.')
1104 {
bb294208
AM
1105 if (strncmp (name, ".debug", 6) == 0
1106 || strncmp (name, ".gnu.linkonce.wi.", 17) == 0
1107 || strncmp (name, ".zdebug", 7) == 0)
1108 flags |= SEC_DEBUGGING | SEC_ELF_OCTETS;
1109 else if (strncmp (name, GNU_BUILD_ATTRS_SECTION_NAME, 21) == 0
1110 || strncmp (name, ".note.gnu", 9) == 0)
1111 flags |= SEC_ELF_OCTETS;
1112 else if (strncmp (name, ".line", 5) == 0
1113 || strncmp (name, ".stab", 5) == 0
1114 || strcmp (name, ".gdb_index") == 0)
3d2b39cf
L
1115 flags |= SEC_DEBUGGING;
1116 }
1117 }
252b5132
RH
1118
1119 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1120 only link a single copy of the section. This is used to support
1121 g++. g++ will emit each template expansion in its own section.
1122 The symbols will be defined as weak, so that multiple definitions
1123 are permitted. The GNU linker extension is to actually discard
1124 all but one of the sections. */
0112cd26 1125 if (CONST_STRNEQ (name, ".gnu.linkonce")
b885599b 1126 && elf_next_in_group (newsect) == NULL)
252b5132
RH
1127 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1128
fa152c49
JW
1129 bed = get_elf_backend_data (abfd);
1130 if (bed->elf_backend_section_flags)
1131 if (! bed->elf_backend_section_flags (&flags, hdr))
b34976b6 1132 return FALSE;
fa152c49 1133
fd361982 1134 if (!bfd_set_section_flags (newsect, flags))
b34976b6 1135 return FALSE;
252b5132 1136
718175fa
JK
1137 /* We do not parse the PT_NOTE segments as we are interested even in the
1138 separate debug info files which may have the segments offsets corrupted.
1139 PT_NOTEs from the core files are currently not parsed using BFD. */
1140 if (hdr->sh_type == SHT_NOTE)
1141 {
baea7ef1 1142 bfd_byte *contents;
718175fa 1143
baea7ef1 1144 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
718175fa
JK
1145 return FALSE;
1146
276da9b3
L
1147 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1148 hdr->sh_offset, hdr->sh_addralign);
718175fa
JK
1149 free (contents);
1150 }
1151
252b5132
RH
1152 if ((flags & SEC_ALLOC) != 0)
1153 {
1154 Elf_Internal_Phdr *phdr;
6ffd7900
AM
1155 unsigned int i, nload;
1156
1157 /* Some ELF linkers produce binaries with all the program header
1158 p_paddr fields zero. If we have such a binary with more than
1159 one PT_LOAD header, then leave the section lma equal to vma
1160 so that we don't create sections with overlapping lma. */
1161 phdr = elf_tdata (abfd)->phdr;
1162 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1163 if (phdr->p_paddr != 0)
1164 break;
1165 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1166 ++nload;
1167 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1168 return TRUE;
252b5132 1169
252b5132
RH
1170 phdr = elf_tdata (abfd)->phdr;
1171 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1172 {
86b2281f
AM
1173 if (((phdr->p_type == PT_LOAD
1174 && (hdr->sh_flags & SHF_TLS) == 0)
1175 || phdr->p_type == PT_TLS)
9a83a553 1176 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
252b5132 1177 {
88967714
AM
1178 if ((flags & SEC_LOAD) == 0)
1179 newsect->lma = (phdr->p_paddr
1180 + hdr->sh_addr - phdr->p_vaddr);
1181 else
1182 /* We used to use the same adjustment for SEC_LOAD
1183 sections, but that doesn't work if the segment
1184 is packed with code from multiple VMAs.
1185 Instead we calculate the section LMA based on
1186 the segment LMA. It is assumed that the
1187 segment will contain sections with contiguous
1188 LMAs, even if the VMAs are not. */
1189 newsect->lma = (phdr->p_paddr
1190 + hdr->sh_offset - phdr->p_offset);
1191
1192 /* With contiguous segments, we can't tell from file
1193 offsets whether a section with zero size should
1194 be placed at the end of one segment or the
1195 beginning of the next. Decide based on vaddr. */
1196 if (hdr->sh_addr >= phdr->p_vaddr
1197 && (hdr->sh_addr + hdr->sh_size
1198 <= phdr->p_vaddr + phdr->p_memsz))
1199 break;
252b5132
RH
1200 }
1201 }
1202 }
1203
4a114e3e
L
1204 /* Compress/decompress DWARF debug sections with names: .debug_* and
1205 .zdebug_*, after the section flags is set. */
1206 if ((flags & SEC_DEBUGGING)
1207 && ((name[1] == 'd' && name[6] == '_')
1208 || (name[1] == 'z' && name[7] == '_')))
1209 {
1210 enum { nothing, compress, decompress } action = nothing;
151411f8 1211 int compression_header_size;
dab394de 1212 bfd_size_type uncompressed_size;
4207142d 1213 unsigned int uncompressed_align_power;
151411f8
L
1214 bfd_boolean compressed
1215 = bfd_is_section_compressed_with_header (abfd, newsect,
dab394de 1216 &compression_header_size,
4207142d
MW
1217 &uncompressed_size,
1218 &uncompressed_align_power);
151411f8 1219 if (compressed)
4a114e3e
L
1220 {
1221 /* Compressed section. Check if we should decompress. */
1222 if ((abfd->flags & BFD_DECOMPRESS))
1223 action = decompress;
1224 }
151411f8
L
1225
1226 /* Compress the uncompressed section or convert from/to .zdebug*
1227 section. Check if we should compress. */
1228 if (action == nothing)
4a114e3e 1229 {
151411f8
L
1230 if (newsect->size != 0
1231 && (abfd->flags & BFD_COMPRESS)
1232 && compression_header_size >= 0
dab394de 1233 && uncompressed_size > 0
151411f8
L
1234 && (!compressed
1235 || ((compression_header_size > 0)
1236 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
4a114e3e 1237 action = compress;
151411f8
L
1238 else
1239 return TRUE;
4a114e3e
L
1240 }
1241
151411f8 1242 if (action == compress)
4a114e3e 1243 {
4a114e3e
L
1244 if (!bfd_init_section_compress_status (abfd, newsect))
1245 {
4eca0228 1246 _bfd_error_handler
695344c0 1247 /* xgettext:c-format */
871b3ab2 1248 (_("%pB: unable to initialize compress status for section %s"),
4a114e3e
L
1249 abfd, name);
1250 return FALSE;
1251 }
151411f8
L
1252 }
1253 else
1254 {
4a114e3e
L
1255 if (!bfd_init_section_decompress_status (abfd, newsect))
1256 {
4eca0228 1257 _bfd_error_handler
695344c0 1258 /* xgettext:c-format */
871b3ab2 1259 (_("%pB: unable to initialize decompress status for section %s"),
4a114e3e
L
1260 abfd, name);
1261 return FALSE;
1262 }
151411f8
L
1263 }
1264
f6fe1ccd 1265 if (abfd->is_linker_input)
151411f8 1266 {
f6fe1ccd
L
1267 if (name[1] == 'z'
1268 && (action == decompress
1269 || (action == compress
1270 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
4e011fb5 1271 {
f6fe1ccd
L
1272 /* Convert section name from .zdebug_* to .debug_* so
1273 that linker will consider this section as a debug
1274 section. */
1275 char *new_name = convert_zdebug_to_debug (abfd, name);
151411f8
L
1276 if (new_name == NULL)
1277 return FALSE;
fd361982 1278 bfd_rename_section (newsect, new_name);
151411f8 1279 }
4a114e3e 1280 }
f6fe1ccd
L
1281 else
1282 /* For objdump, don't rename the section. For objcopy, delay
1283 section rename to elf_fake_sections. */
1284 newsect->flags |= SEC_ELF_RENAME;
4a114e3e
L
1285 }
1286
cc5277b1
ML
1287 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1288 section. */
1289 const char *lto_section_name = ".gnu.lto_.lto.";
1290 if (strncmp (name, lto_section_name, strlen (lto_section_name)) == 0)
1291 {
1292 struct lto_section lsection;
1293 if (bfd_get_section_contents (abfd, newsect, &lsection, 0,
1294 sizeof (struct lto_section)))
1295 abfd->lto_slim_object = lsection.slim_object;
1296 }
1297
b34976b6 1298 return TRUE;
252b5132
RH
1299}
1300
84865015
NC
1301const char *const bfd_elf_section_type_names[] =
1302{
252b5132
RH
1303 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1304 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1305 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1306};
1307
1049f94e 1308/* ELF relocs are against symbols. If we are producing relocatable
252b5132
RH
1309 output, and the reloc is against an external symbol, and nothing
1310 has given us any additional addend, the resulting reloc will also
1311 be against the same symbol. In such a case, we don't want to
1312 change anything about the way the reloc is handled, since it will
1313 all be done at final link time. Rather than put special case code
1314 into bfd_perform_relocation, all the reloc types use this howto
1315 function. It just short circuits the reloc if producing
1049f94e 1316 relocatable output against an external symbol. */
252b5132 1317
252b5132 1318bfd_reloc_status_type
217aa764
AM
1319bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1320 arelent *reloc_entry,
1321 asymbol *symbol,
1322 void *data ATTRIBUTE_UNUSED,
1323 asection *input_section,
1324 bfd *output_bfd,
1325 char **error_message ATTRIBUTE_UNUSED)
1326{
1327 if (output_bfd != NULL
252b5132
RH
1328 && (symbol->flags & BSF_SECTION_SYM) == 0
1329 && (! reloc_entry->howto->partial_inplace
1330 || reloc_entry->addend == 0))
1331 {
1332 reloc_entry->address += input_section->output_offset;
1333 return bfd_reloc_ok;
1334 }
1335
1336 return bfd_reloc_continue;
1337}
1338\f
84865015
NC
1339/* Returns TRUE if section A matches section B.
1340 Names, addresses and links may be different, but everything else
1341 should be the same. */
1342
1343static bfd_boolean
5522f910
NC
1344section_match (const Elf_Internal_Shdr * a,
1345 const Elf_Internal_Shdr * b)
84865015 1346{
ac85e67c
AM
1347 if (a->sh_type != b->sh_type
1348 || ((a->sh_flags ^ b->sh_flags) & ~SHF_INFO_LINK) != 0
1349 || a->sh_addralign != b->sh_addralign
1350 || a->sh_entsize != b->sh_entsize)
1351 return FALSE;
1352 if (a->sh_type == SHT_SYMTAB
1353 || a->sh_type == SHT_STRTAB)
1354 return TRUE;
1355 return a->sh_size == b->sh_size;
84865015
NC
1356}
1357
1358/* Find a section in OBFD that has the same characteristics
1359 as IHEADER. Return the index of this section or SHN_UNDEF if
1360 none can be found. Check's section HINT first, as this is likely
1361 to be the correct section. */
1362
1363static unsigned int
5cc4ca83
ST
1364find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1365 const unsigned int hint)
84865015
NC
1366{
1367 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1368 unsigned int i;
1369
a55c9876
NC
1370 BFD_ASSERT (iheader != NULL);
1371
1372 /* See PR 20922 for a reproducer of the NULL test. */
5cc4ca83
ST
1373 if (hint < elf_numsections (obfd)
1374 && oheaders[hint] != NULL
a55c9876 1375 && section_match (oheaders[hint], iheader))
84865015
NC
1376 return hint;
1377
1378 for (i = 1; i < elf_numsections (obfd); i++)
1379 {
1380 Elf_Internal_Shdr * oheader = oheaders[i];
1381
a55c9876
NC
1382 if (oheader == NULL)
1383 continue;
84865015
NC
1384 if (section_match (oheader, iheader))
1385 /* FIXME: Do we care if there is a potential for
1386 multiple matches ? */
1387 return i;
1388 }
1389
1390 return SHN_UNDEF;
1391}
1392
5522f910
NC
1393/* PR 19938: Attempt to set the ELF section header fields of an OS or
1394 Processor specific section, based upon a matching input section.
1395 Returns TRUE upon success, FALSE otherwise. */
07d6d2b8 1396
5522f910
NC
1397static bfd_boolean
1398copy_special_section_fields (const bfd *ibfd,
1399 bfd *obfd,
1400 const Elf_Internal_Shdr *iheader,
1401 Elf_Internal_Shdr *oheader,
1402 const unsigned int secnum)
1403{
1404 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1405 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1406 bfd_boolean changed = FALSE;
1407 unsigned int sh_link;
1408
1409 if (oheader->sh_type == SHT_NOBITS)
1410 {
1411 /* This is a feature for objcopy --only-keep-debug:
1412 When a section's type is changed to NOBITS, we preserve
1413 the sh_link and sh_info fields so that they can be
1414 matched up with the original.
1415
1416 Note: Strictly speaking these assignments are wrong.
1417 The sh_link and sh_info fields should point to the
1418 relevent sections in the output BFD, which may not be in
1419 the same location as they were in the input BFD. But
1420 the whole point of this action is to preserve the
1421 original values of the sh_link and sh_info fields, so
1422 that they can be matched up with the section headers in
1423 the original file. So strictly speaking we may be
1424 creating an invalid ELF file, but it is only for a file
1425 that just contains debug info and only for sections
1426 without any contents. */
1427 if (oheader->sh_link == 0)
1428 oheader->sh_link = iheader->sh_link;
1429 if (oheader->sh_info == 0)
1430 oheader->sh_info = iheader->sh_info;
1431 return TRUE;
1432 }
1433
1434 /* Allow the target a chance to decide how these fields should be set. */
1435 if (bed->elf_backend_copy_special_section_fields != NULL
1436 && bed->elf_backend_copy_special_section_fields
1437 (ibfd, obfd, iheader, oheader))
1438 return TRUE;
1439
1440 /* We have an iheader which might match oheader, and which has non-zero
1441 sh_info and/or sh_link fields. Attempt to follow those links and find
1442 the section in the output bfd which corresponds to the linked section
1443 in the input bfd. */
1444 if (iheader->sh_link != SHN_UNDEF)
1445 {
4f3ca05b
NC
1446 /* See PR 20931 for a reproducer. */
1447 if (iheader->sh_link >= elf_numsections (ibfd))
1448 {
76cfced5 1449 _bfd_error_handler
4f3ca05b 1450 /* xgettext:c-format */
9793eb77 1451 (_("%pB: invalid sh_link field (%d) in section number %d"),
4f3ca05b
NC
1452 ibfd, iheader->sh_link, secnum);
1453 return FALSE;
1454 }
1455
5522f910
NC
1456 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1457 if (sh_link != SHN_UNDEF)
1458 {
1459 oheader->sh_link = sh_link;
1460 changed = TRUE;
1461 }
1462 else
1463 /* FIXME: Should we install iheader->sh_link
1464 if we could not find a match ? */
76cfced5 1465 _bfd_error_handler
695344c0 1466 /* xgettext:c-format */
9793eb77 1467 (_("%pB: failed to find link section for section %d"), obfd, secnum);
5522f910
NC
1468 }
1469
1470 if (iheader->sh_info)
1471 {
1472 /* The sh_info field can hold arbitrary information, but if the
1473 SHF_LINK_INFO flag is set then it should be interpreted as a
1474 section index. */
1475 if (iheader->sh_flags & SHF_INFO_LINK)
1476 {
1477 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1478 iheader->sh_info);
1479 if (sh_link != SHN_UNDEF)
1480 oheader->sh_flags |= SHF_INFO_LINK;
1481 }
1482 else
1483 /* No idea what it means - just copy it. */
1484 sh_link = iheader->sh_info;
1485
1486 if (sh_link != SHN_UNDEF)
1487 {
1488 oheader->sh_info = sh_link;
1489 changed = TRUE;
1490 }
1491 else
76cfced5 1492 _bfd_error_handler
695344c0 1493 /* xgettext:c-format */
9793eb77 1494 (_("%pB: failed to find info section for section %d"), obfd, secnum);
5522f910
NC
1495 }
1496
1497 return changed;
1498}
07d6d2b8 1499
0ac4564e
L
1500/* Copy the program header and other data from one object module to
1501 another. */
252b5132 1502
b34976b6 1503bfd_boolean
217aa764 1504_bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2d502050 1505{
5522f910
NC
1506 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1507 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1508 const struct elf_backend_data *bed;
84865015
NC
1509 unsigned int i;
1510
2d502050 1511 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
84865015 1512 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 1513 return TRUE;
2d502050 1514
57b828ef
L
1515 if (!elf_flags_init (obfd))
1516 {
1517 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1518 elf_flags_init (obfd) = TRUE;
1519 }
2d502050 1520
0ac4564e 1521 elf_gp (obfd) = elf_gp (ibfd);
57b828ef
L
1522
1523 /* Also copy the EI_OSABI field. */
1524 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1525 elf_elfheader (ibfd)->e_ident[EI_OSABI];
104d59d1 1526
5522f910
NC
1527 /* If set, copy the EI_ABIVERSION field. */
1528 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1529 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1530 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
07d6d2b8 1531
104d59d1
JM
1532 /* Copy object attributes. */
1533 _bfd_elf_copy_obj_attributes (ibfd, obfd);
63b9bbb7 1534
84865015
NC
1535 if (iheaders == NULL || oheaders == NULL)
1536 return TRUE;
63b9bbb7 1537
5522f910
NC
1538 bed = get_elf_backend_data (obfd);
1539
1540 /* Possibly copy other fields in the section header. */
84865015 1541 for (i = 1; i < elf_numsections (obfd); i++)
63b9bbb7 1542 {
84865015
NC
1543 unsigned int j;
1544 Elf_Internal_Shdr * oheader = oheaders[i];
63b9bbb7 1545
5522f910
NC
1546 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1547 because of a special case need for generating separate debug info
1548 files. See below for more details. */
84865015
NC
1549 if (oheader == NULL
1550 || (oheader->sh_type != SHT_NOBITS
5522f910
NC
1551 && oheader->sh_type < SHT_LOOS))
1552 continue;
1553
1554 /* Ignore empty sections, and sections whose
1555 fields have already been initialised. */
1556 if (oheader->sh_size == 0
84865015
NC
1557 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1558 continue;
63b9bbb7 1559
84865015 1560 /* Scan for the matching section in the input bfd.
5522f910
NC
1561 First we try for a direct mapping between the input and output sections. */
1562 for (j = 1; j < elf_numsections (ibfd); j++)
1563 {
1564 const Elf_Internal_Shdr * iheader = iheaders[j];
1565
1566 if (iheader == NULL)
1567 continue;
1568
1569 if (oheader->bfd_section != NULL
1570 && iheader->bfd_section != NULL
1571 && iheader->bfd_section->output_section != NULL
1572 && iheader->bfd_section->output_section == oheader->bfd_section)
1573 {
1574 /* We have found a connection from the input section to the
1575 output section. Attempt to copy the header fields. If
1576 this fails then do not try any further sections - there
1577 should only be a one-to-one mapping between input and output. */
1578 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1579 j = elf_numsections (ibfd);
1580 break;
1581 }
1582 }
1583
1584 if (j < elf_numsections (ibfd))
1585 continue;
1586
1587 /* That failed. So try to deduce the corresponding input section.
84865015
NC
1588 Unfortunately we cannot compare names as the output string table
1589 is empty, so instead we check size, address and type. */
1590 for (j = 1; j < elf_numsections (ibfd); j++)
1591 {
5522f910 1592 const Elf_Internal_Shdr * iheader = iheaders[j];
84865015 1593
5522f910
NC
1594 if (iheader == NULL)
1595 continue;
1596
1597 /* Try matching fields in the input section's header.
1598 Since --only-keep-debug turns all non-debug sections into
84865015
NC
1599 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1600 input type. */
1601 if ((oheader->sh_type == SHT_NOBITS
1602 || iheader->sh_type == oheader->sh_type)
5522f910
NC
1603 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1604 == (oheader->sh_flags & ~ SHF_INFO_LINK)
84865015
NC
1605 && iheader->sh_addralign == oheader->sh_addralign
1606 && iheader->sh_entsize == oheader->sh_entsize
1607 && iheader->sh_size == oheader->sh_size
1608 && iheader->sh_addr == oheader->sh_addr
1609 && (iheader->sh_info != oheader->sh_info
1610 || iheader->sh_link != oheader->sh_link))
63b9bbb7 1611 {
5522f910
NC
1612 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1613 break;
63b9bbb7
NC
1614 }
1615 }
5522f910
NC
1616
1617 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1618 {
1619 /* Final attempt. Call the backend copy function
1620 with a NULL input section. */
1621 if (bed->elf_backend_copy_special_section_fields != NULL)
1622 bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
1623 }
63b9bbb7
NC
1624 }
1625
b34976b6 1626 return TRUE;
2d502050
L
1627}
1628
cedc298e
L
1629static const char *
1630get_segment_type (unsigned int p_type)
1631{
1632 const char *pt;
1633 switch (p_type)
1634 {
1635 case PT_NULL: pt = "NULL"; break;
1636 case PT_LOAD: pt = "LOAD"; break;
1637 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1638 case PT_INTERP: pt = "INTERP"; break;
1639 case PT_NOTE: pt = "NOTE"; break;
1640 case PT_SHLIB: pt = "SHLIB"; break;
1641 case PT_PHDR: pt = "PHDR"; break;
1642 case PT_TLS: pt = "TLS"; break;
1643 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
2b05f1b7 1644 case PT_GNU_STACK: pt = "STACK"; break;
cedc298e
L
1645 case PT_GNU_RELRO: pt = "RELRO"; break;
1646 default: pt = NULL; break;
1647 }
1648 return pt;
1649}
1650
f0b79d91
L
1651/* Print out the program headers. */
1652
b34976b6 1653bfd_boolean
217aa764 1654_bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
252b5132 1655{
a50b1753 1656 FILE *f = (FILE *) farg;
252b5132
RH
1657 Elf_Internal_Phdr *p;
1658 asection *s;
1659 bfd_byte *dynbuf = NULL;
1660
1661 p = elf_tdata (abfd)->phdr;
1662 if (p != NULL)
1663 {
1664 unsigned int i, c;
1665
1666 fprintf (f, _("\nProgram Header:\n"));
1667 c = elf_elfheader (abfd)->e_phnum;
1668 for (i = 0; i < c; i++, p++)
1669 {
cedc298e 1670 const char *pt = get_segment_type (p->p_type);
252b5132
RH
1671 char buf[20];
1672
cedc298e 1673 if (pt == NULL)
252b5132 1674 {
cedc298e
L
1675 sprintf (buf, "0x%lx", p->p_type);
1676 pt = buf;
252b5132 1677 }
dc810e39 1678 fprintf (f, "%8s off 0x", pt);
60b89a18 1679 bfd_fprintf_vma (abfd, f, p->p_offset);
252b5132 1680 fprintf (f, " vaddr 0x");
60b89a18 1681 bfd_fprintf_vma (abfd, f, p->p_vaddr);
252b5132 1682 fprintf (f, " paddr 0x");
60b89a18 1683 bfd_fprintf_vma (abfd, f, p->p_paddr);
252b5132
RH
1684 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1685 fprintf (f, " filesz 0x");
60b89a18 1686 bfd_fprintf_vma (abfd, f, p->p_filesz);
252b5132 1687 fprintf (f, " memsz 0x");
60b89a18 1688 bfd_fprintf_vma (abfd, f, p->p_memsz);
252b5132
RH
1689 fprintf (f, " flags %c%c%c",
1690 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1691 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1692 (p->p_flags & PF_X) != 0 ? 'x' : '-');
dc810e39
AM
1693 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1694 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
252b5132
RH
1695 fprintf (f, "\n");
1696 }
1697 }
1698
1699 s = bfd_get_section_by_name (abfd, ".dynamic");
1700 if (s != NULL)
1701 {
cb33740c 1702 unsigned int elfsec;
dc810e39 1703 unsigned long shlink;
252b5132
RH
1704 bfd_byte *extdyn, *extdynend;
1705 size_t extdynsize;
217aa764 1706 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
252b5132
RH
1707
1708 fprintf (f, _("\nDynamic Section:\n"));
1709
eea6121a 1710 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
252b5132
RH
1711 goto error_return;
1712
1713 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 1714 if (elfsec == SHN_BAD)
252b5132 1715 goto error_return;
dc810e39 1716 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
252b5132
RH
1717
1718 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1719 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1720
1721 extdyn = dynbuf;
06614111
NC
1722 /* PR 17512: file: 6f427532. */
1723 if (s->size < extdynsize)
1724 goto error_return;
eea6121a 1725 extdynend = extdyn + s->size;
1036838a 1726 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
07d6d2b8 1727 Fix range check. */
1036838a 1728 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
252b5132
RH
1729 {
1730 Elf_Internal_Dyn dyn;
ad9563d6 1731 const char *name = "";
252b5132 1732 char ab[20];
b34976b6 1733 bfd_boolean stringp;
ad9563d6 1734 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 1735
217aa764 1736 (*swap_dyn_in) (abfd, extdyn, &dyn);
252b5132
RH
1737
1738 if (dyn.d_tag == DT_NULL)
1739 break;
1740
b34976b6 1741 stringp = FALSE;
252b5132
RH
1742 switch (dyn.d_tag)
1743 {
1744 default:
ad9563d6
CM
1745 if (bed->elf_backend_get_target_dtag)
1746 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1747
1748 if (!strcmp (name, ""))
1749 {
cd9af601 1750 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
ad9563d6
CM
1751 name = ab;
1752 }
252b5132
RH
1753 break;
1754
b34976b6 1755 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
252b5132
RH
1756 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1757 case DT_PLTGOT: name = "PLTGOT"; break;
1758 case DT_HASH: name = "HASH"; break;
1759 case DT_STRTAB: name = "STRTAB"; break;
1760 case DT_SYMTAB: name = "SYMTAB"; break;
1761 case DT_RELA: name = "RELA"; break;
1762 case DT_RELASZ: name = "RELASZ"; break;
1763 case DT_RELAENT: name = "RELAENT"; break;
1764 case DT_STRSZ: name = "STRSZ"; break;
1765 case DT_SYMENT: name = "SYMENT"; break;
1766 case DT_INIT: name = "INIT"; break;
1767 case DT_FINI: name = "FINI"; break;
b34976b6
AM
1768 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1769 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
252b5132
RH
1770 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1771 case DT_REL: name = "REL"; break;
1772 case DT_RELSZ: name = "RELSZ"; break;
1773 case DT_RELENT: name = "RELENT"; break;
1774 case DT_PLTREL: name = "PLTREL"; break;
1775 case DT_DEBUG: name = "DEBUG"; break;
1776 case DT_TEXTREL: name = "TEXTREL"; break;
1777 case DT_JMPREL: name = "JMPREL"; break;
94558834
L
1778 case DT_BIND_NOW: name = "BIND_NOW"; break;
1779 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1780 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1781 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1782 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
b34976b6 1783 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
94558834
L
1784 case DT_FLAGS: name = "FLAGS"; break;
1785 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1786 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
d48188b9 1787 case DT_CHECKSUM: name = "CHECKSUM"; break;
94558834
L
1788 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1789 case DT_MOVEENT: name = "MOVEENT"; break;
1790 case DT_MOVESZ: name = "MOVESZ"; break;
1791 case DT_FEATURE: name = "FEATURE"; break;
1792 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1793 case DT_SYMINSZ: name = "SYMINSZ"; break;
1794 case DT_SYMINENT: name = "SYMINENT"; break;
b34976b6
AM
1795 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1796 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1797 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
94558834
L
1798 case DT_PLTPAD: name = "PLTPAD"; break;
1799 case DT_MOVETAB: name = "MOVETAB"; break;
1800 case DT_SYMINFO: name = "SYMINFO"; break;
1801 case DT_RELACOUNT: name = "RELACOUNT"; break;
1802 case DT_RELCOUNT: name = "RELCOUNT"; break;
1803 case DT_FLAGS_1: name = "FLAGS_1"; break;
252b5132
RH
1804 case DT_VERSYM: name = "VERSYM"; break;
1805 case DT_VERDEF: name = "VERDEF"; break;
1806 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1807 case DT_VERNEED: name = "VERNEED"; break;
1808 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
b34976b6 1809 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
94558834 1810 case DT_USED: name = "USED"; break;
b34976b6 1811 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
fdc90cb4 1812 case DT_GNU_HASH: name = "GNU_HASH"; break;
252b5132
RH
1813 }
1814
ad9563d6 1815 fprintf (f, " %-20s ", name);
252b5132 1816 if (! stringp)
a1f3c56e
AN
1817 {
1818 fprintf (f, "0x");
1819 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1820 }
252b5132
RH
1821 else
1822 {
1823 const char *string;
dc810e39 1824 unsigned int tagv = dyn.d_un.d_val;
252b5132 1825
dc810e39 1826 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
252b5132
RH
1827 if (string == NULL)
1828 goto error_return;
1829 fprintf (f, "%s", string);
1830 }
1831 fprintf (f, "\n");
1832 }
1833
1834 free (dynbuf);
1835 dynbuf = NULL;
1836 }
1837
1838 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1839 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1840 {
fc0e6df6 1841 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
b34976b6 1842 return FALSE;
252b5132
RH
1843 }
1844
1845 if (elf_dynverdef (abfd) != 0)
1846 {
1847 Elf_Internal_Verdef *t;
1848
1849 fprintf (f, _("\nVersion definitions:\n"));
1850 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1851 {
1852 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
d0fb9a8d
JJ
1853 t->vd_flags, t->vd_hash,
1854 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1855 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
252b5132
RH
1856 {
1857 Elf_Internal_Verdaux *a;
1858
1859 fprintf (f, "\t");
1860 for (a = t->vd_auxptr->vda_nextptr;
1861 a != NULL;
1862 a = a->vda_nextptr)
d0fb9a8d
JJ
1863 fprintf (f, "%s ",
1864 a->vda_nodename ? a->vda_nodename : "<corrupt>");
252b5132
RH
1865 fprintf (f, "\n");
1866 }
1867 }
1868 }
1869
1870 if (elf_dynverref (abfd) != 0)
1871 {
1872 Elf_Internal_Verneed *t;
1873
1874 fprintf (f, _("\nVersion References:\n"));
1875 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1876 {
1877 Elf_Internal_Vernaux *a;
1878
d0fb9a8d
JJ
1879 fprintf (f, _(" required from %s:\n"),
1880 t->vn_filename ? t->vn_filename : "<corrupt>");
252b5132
RH
1881 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1882 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
d0fb9a8d
JJ
1883 a->vna_flags, a->vna_other,
1884 a->vna_nodename ? a->vna_nodename : "<corrupt>");
252b5132
RH
1885 }
1886 }
1887
b34976b6 1888 return TRUE;
252b5132
RH
1889
1890 error_return:
1891 if (dynbuf != NULL)
1892 free (dynbuf);
b34976b6 1893 return FALSE;
252b5132
RH
1894}
1895
bb4d2ac2
L
1896/* Get version string. */
1897
1898const char *
60bb06bc
L
1899_bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1900 bfd_boolean *hidden)
bb4d2ac2
L
1901{
1902 const char *version_string = NULL;
1903 if (elf_dynversym (abfd) != 0
1904 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1905 {
1906 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1907
1908 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1909 vernum &= VERSYM_VERSION;
1910
1911 if (vernum == 0)
1912 version_string = "";
1f6f5dba
L
1913 else if (vernum == 1
1914 && (vernum > elf_tdata (abfd)->cverdefs
1915 || (elf_tdata (abfd)->verdef[0].vd_flags
1916 == VER_FLG_BASE)))
bb4d2ac2
L
1917 version_string = "Base";
1918 else if (vernum <= elf_tdata (abfd)->cverdefs)
1919 version_string =
1920 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1921 else
1922 {
1923 Elf_Internal_Verneed *t;
1924
7a815dd5 1925 version_string = _("<corrupt>");
bb4d2ac2
L
1926 for (t = elf_tdata (abfd)->verref;
1927 t != NULL;
1928 t = t->vn_nextref)
1929 {
1930 Elf_Internal_Vernaux *a;
1931
1932 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1933 {
1934 if (a->vna_other == vernum)
1935 {
1936 version_string = a->vna_nodename;
1937 break;
1938 }
1939 }
1940 }
1941 }
1942 }
1943 return version_string;
1944}
1945
252b5132
RH
1946/* Display ELF-specific fields of a symbol. */
1947
1948void
217aa764
AM
1949bfd_elf_print_symbol (bfd *abfd,
1950 void *filep,
1951 asymbol *symbol,
1952 bfd_print_symbol_type how)
252b5132 1953{
a50b1753 1954 FILE *file = (FILE *) filep;
252b5132
RH
1955 switch (how)
1956 {
1957 case bfd_print_symbol_name:
1958 fprintf (file, "%s", symbol->name);
1959 break;
1960 case bfd_print_symbol_more:
1961 fprintf (file, "elf ");
60b89a18 1962 bfd_fprintf_vma (abfd, file, symbol->value);
cd9af601 1963 fprintf (file, " %x", symbol->flags);
252b5132
RH
1964 break;
1965 case bfd_print_symbol_all:
1966 {
4e8a9624
AM
1967 const char *section_name;
1968 const char *name = NULL;
9c5bfbb7 1969 const struct elf_backend_data *bed;
7a13edea 1970 unsigned char st_other;
dbb410c3 1971 bfd_vma val;
bb4d2ac2
L
1972 const char *version_string;
1973 bfd_boolean hidden;
c044fabd 1974
252b5132 1975 section_name = symbol->section ? symbol->section->name : "(*none*)";
587ff49e
RH
1976
1977 bed = get_elf_backend_data (abfd);
1978 if (bed->elf_backend_print_symbol_all)
c044fabd 1979 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
587ff49e
RH
1980
1981 if (name == NULL)
1982 {
7ee38065 1983 name = symbol->name;
217aa764 1984 bfd_print_symbol_vandf (abfd, file, symbol);
587ff49e
RH
1985 }
1986
252b5132
RH
1987 fprintf (file, " %s\t", section_name);
1988 /* Print the "other" value for a symbol. For common symbols,
1989 we've already printed the size; now print the alignment.
1990 For other symbols, we have no specified alignment, and
1991 we've printed the address; now print the size. */
dcf6c779 1992 if (symbol->section && bfd_is_com_section (symbol->section))
dbb410c3
AM
1993 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1994 else
1995 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1996 bfd_fprintf_vma (abfd, file, val);
252b5132
RH
1997
1998 /* If we have version information, print it. */
60bb06bc
L
1999 version_string = _bfd_elf_get_symbol_version_string (abfd,
2000 symbol,
2001 &hidden);
bb4d2ac2 2002 if (version_string)
252b5132 2003 {
bb4d2ac2 2004 if (!hidden)
252b5132
RH
2005 fprintf (file, " %-11s", version_string);
2006 else
2007 {
2008 int i;
2009
2010 fprintf (file, " (%s)", version_string);
2011 for (i = 10 - strlen (version_string); i > 0; --i)
2012 putc (' ', file);
2013 }
2014 }
2015
2016 /* If the st_other field is not zero, print it. */
7a13edea 2017 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
c044fabd 2018
7a13edea
NC
2019 switch (st_other)
2020 {
2021 case 0: break;
2022 case STV_INTERNAL: fprintf (file, " .internal"); break;
2023 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2024 case STV_PROTECTED: fprintf (file, " .protected"); break;
2025 default:
2026 /* Some other non-defined flags are also present, so print
2027 everything hex. */
2028 fprintf (file, " 0x%02x", (unsigned int) st_other);
2029 }
252b5132 2030
587ff49e 2031 fprintf (file, " %s", name);
252b5132
RH
2032 }
2033 break;
2034 }
2035}
252b5132
RH
2036\f
2037/* ELF .o/exec file reading */
2038
c044fabd 2039/* Create a new bfd section from an ELF section header. */
252b5132 2040
b34976b6 2041bfd_boolean
217aa764 2042bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
252b5132 2043{
4fbb74a6
AM
2044 Elf_Internal_Shdr *hdr;
2045 Elf_Internal_Ehdr *ehdr;
2046 const struct elf_backend_data *bed;
90937f86 2047 const char *name;
bf67003b
NC
2048 bfd_boolean ret = TRUE;
2049 static bfd_boolean * sections_being_created = NULL;
5a4b0ccc 2050 static bfd * sections_being_created_abfd = NULL;
bf67003b 2051 static unsigned int nesting = 0;
252b5132 2052
4fbb74a6
AM
2053 if (shindex >= elf_numsections (abfd))
2054 return FALSE;
2055
bf67003b
NC
2056 if (++ nesting > 3)
2057 {
2058 /* PR17512: A corrupt ELF binary might contain a recursive group of
67ce483b 2059 sections, with each the string indices pointing to the next in the
bf67003b
NC
2060 loop. Detect this here, by refusing to load a section that we are
2061 already in the process of loading. We only trigger this test if
2062 we have nested at least three sections deep as normal ELF binaries
5a4b0ccc
NC
2063 can expect to recurse at least once.
2064
2065 FIXME: It would be better if this array was attached to the bfd,
2066 rather than being held in a static pointer. */
2067
2068 if (sections_being_created_abfd != abfd)
2069 sections_being_created = NULL;
bf67003b
NC
2070 if (sections_being_created == NULL)
2071 {
446f7ed5
AM
2072 size_t amt = elf_numsections (abfd) * sizeof (bfd_boolean);
2073 sections_being_created = (bfd_boolean *) bfd_zalloc (abfd, amt);
96d3b80f
AM
2074 if (sections_being_created == NULL)
2075 return FALSE;
5a4b0ccc 2076 sections_being_created_abfd = abfd;
bf67003b
NC
2077 }
2078 if (sections_being_created [shindex])
2079 {
4eca0228 2080 _bfd_error_handler
871b3ab2 2081 (_("%pB: warning: loop in section dependencies detected"), abfd);
bf67003b
NC
2082 return FALSE;
2083 }
2084 sections_being_created [shindex] = TRUE;
2085 }
2086
4fbb74a6
AM
2087 hdr = elf_elfsections (abfd)[shindex];
2088 ehdr = elf_elfheader (abfd);
2089 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
1b3a8575 2090 hdr->sh_name);
933d961a 2091 if (name == NULL)
bf67003b 2092 goto fail;
252b5132 2093
4fbb74a6 2094 bed = get_elf_backend_data (abfd);
252b5132
RH
2095 switch (hdr->sh_type)
2096 {
2097 case SHT_NULL:
2098 /* Inactive section. Throw it away. */
bf67003b 2099 goto success;
252b5132 2100
bf67003b
NC
2101 case SHT_PROGBITS: /* Normal section with contents. */
2102 case SHT_NOBITS: /* .bss section. */
2103 case SHT_HASH: /* .hash section. */
2104 case SHT_NOTE: /* .note section. */
25e27870
L
2105 case SHT_INIT_ARRAY: /* .init_array section. */
2106 case SHT_FINI_ARRAY: /* .fini_array section. */
2107 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
7f1204bb 2108 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
fdc90cb4 2109 case SHT_GNU_HASH: /* .gnu.hash section. */
bf67003b
NC
2110 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2111 goto success;
252b5132 2112
797fc050 2113 case SHT_DYNAMIC: /* Dynamic linking information. */
6dc132d9 2114 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2115 goto fail;
2116
cfcac11d
NC
2117 if (hdr->sh_link > elf_numsections (abfd))
2118 {
caa83f8b 2119 /* PR 10478: Accept Solaris binaries with a sh_link
cfcac11d
NC
2120 field set to SHN_BEFORE or SHN_AFTER. */
2121 switch (bfd_get_arch (abfd))
2122 {
caa83f8b 2123 case bfd_arch_i386:
cfcac11d
NC
2124 case bfd_arch_sparc:
2125 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2126 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2127 break;
2128 /* Otherwise fall through. */
2129 default:
bf67003b 2130 goto fail;
cfcac11d
NC
2131 }
2132 }
2133 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
bf67003b 2134 goto fail;
cfcac11d 2135 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
797fc050
AM
2136 {
2137 Elf_Internal_Shdr *dynsymhdr;
2138
2139 /* The shared libraries distributed with hpux11 have a bogus
2140 sh_link field for the ".dynamic" section. Find the
2141 string table for the ".dynsym" section instead. */
2142 if (elf_dynsymtab (abfd) != 0)
2143 {
2144 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2145 hdr->sh_link = dynsymhdr->sh_link;
2146 }
2147 else
2148 {
2149 unsigned int i, num_sec;
2150
2151 num_sec = elf_numsections (abfd);
2152 for (i = 1; i < num_sec; i++)
2153 {
2154 dynsymhdr = elf_elfsections (abfd)[i];
2155 if (dynsymhdr->sh_type == SHT_DYNSYM)
2156 {
2157 hdr->sh_link = dynsymhdr->sh_link;
2158 break;
2159 }
2160 }
2161 }
2162 }
bf67003b 2163 goto success;
797fc050 2164
bf67003b 2165 case SHT_SYMTAB: /* A symbol table. */
252b5132 2166 if (elf_onesymtab (abfd) == shindex)
bf67003b 2167 goto success;
252b5132 2168
a50b2160 2169 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2170 goto fail;
2171
3337c1e5 2172 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
eee3b786
AM
2173 {
2174 if (hdr->sh_size != 0)
bf67003b 2175 goto fail;
eee3b786
AM
2176 /* Some assemblers erroneously set sh_info to one with a
2177 zero sh_size. ld sees this as a global symbol count
2178 of (unsigned) -1. Fix it here. */
2179 hdr->sh_info = 0;
bf67003b 2180 goto success;
eee3b786 2181 }
bf67003b 2182
16ad13ec
NC
2183 /* PR 18854: A binary might contain more than one symbol table.
2184 Unusual, but possible. Warn, but continue. */
2185 if (elf_onesymtab (abfd) != 0)
2186 {
4eca0228 2187 _bfd_error_handler
695344c0 2188 /* xgettext:c-format */
871b3ab2 2189 (_("%pB: warning: multiple symbol tables detected"
63a5468a 2190 " - ignoring the table in section %u"),
16ad13ec
NC
2191 abfd, shindex);
2192 goto success;
2193 }
252b5132 2194 elf_onesymtab (abfd) = shindex;
6a40cf0c
NC
2195 elf_symtab_hdr (abfd) = *hdr;
2196 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
252b5132
RH
2197 abfd->flags |= HAS_SYMS;
2198
2199 /* Sometimes a shared object will map in the symbol table. If
08a40648
AM
2200 SHF_ALLOC is set, and this is a shared object, then we also
2201 treat this section as a BFD section. We can not base the
2202 decision purely on SHF_ALLOC, because that flag is sometimes
2203 set in a relocatable object file, which would confuse the
2204 linker. */
252b5132
RH
2205 if ((hdr->sh_flags & SHF_ALLOC) != 0
2206 && (abfd->flags & DYNAMIC) != 0
6dc132d9
L
2207 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2208 shindex))
bf67003b 2209 goto fail;
252b5132 2210
1b3a8575
AM
2211 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2212 can't read symbols without that section loaded as well. It
2213 is most likely specified by the next section header. */
6a40cf0c
NC
2214 {
2215 elf_section_list * entry;
2216 unsigned int i, num_sec;
1b3a8575 2217
6a40cf0c
NC
2218 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2219 if (entry->hdr.sh_link == shindex)
2220 goto success;
2221
2222 num_sec = elf_numsections (abfd);
2223 for (i = shindex + 1; i < num_sec; i++)
2224 {
2225 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2226
2227 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2228 && hdr2->sh_link == shindex)
2229 break;
2230 }
2231
2232 if (i == num_sec)
2233 for (i = 1; i < shindex; i++)
1b3a8575
AM
2234 {
2235 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
6a40cf0c 2236
1b3a8575
AM
2237 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2238 && hdr2->sh_link == shindex)
2239 break;
2240 }
6a40cf0c
NC
2241
2242 if (i != shindex)
2243 ret = bfd_section_from_shdr (abfd, i);
2244 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2245 goto success;
2246 }
252b5132 2247
bf67003b 2248 case SHT_DYNSYM: /* A dynamic symbol table. */
252b5132 2249 if (elf_dynsymtab (abfd) == shindex)
bf67003b 2250 goto success;
252b5132 2251
a50b2160 2252 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2253 goto fail;
2254
eee3b786
AM
2255 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2256 {
2257 if (hdr->sh_size != 0)
bf67003b
NC
2258 goto fail;
2259
eee3b786
AM
2260 /* Some linkers erroneously set sh_info to one with a
2261 zero sh_size. ld sees this as a global symbol count
2262 of (unsigned) -1. Fix it here. */
2263 hdr->sh_info = 0;
bf67003b 2264 goto success;
eee3b786 2265 }
bf67003b 2266
16ad13ec
NC
2267 /* PR 18854: A binary might contain more than one dynamic symbol table.
2268 Unusual, but possible. Warn, but continue. */
2269 if (elf_dynsymtab (abfd) != 0)
2270 {
4eca0228 2271 _bfd_error_handler
695344c0 2272 /* xgettext:c-format */
871b3ab2 2273 (_("%pB: warning: multiple dynamic symbol tables detected"
63a5468a 2274 " - ignoring the table in section %u"),
16ad13ec
NC
2275 abfd, shindex);
2276 goto success;
2277 }
252b5132
RH
2278 elf_dynsymtab (abfd) = shindex;
2279 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2280 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2281 abfd->flags |= HAS_SYMS;
2282
2283 /* Besides being a symbol table, we also treat this as a regular
2284 section, so that objcopy can handle it. */
bf67003b
NC
2285 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2286 goto success;
252b5132 2287
bf67003b 2288 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
6a40cf0c
NC
2289 {
2290 elf_section_list * entry;
9ad5cbcf 2291
6a40cf0c
NC
2292 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2293 if (entry->ndx == shindex)
2294 goto success;
07d6d2b8 2295
7a6e0d89 2296 entry = bfd_alloc (abfd, sizeof (*entry));
6a40cf0c
NC
2297 if (entry == NULL)
2298 goto fail;
2299 entry->ndx = shindex;
2300 entry->hdr = * hdr;
2301 entry->next = elf_symtab_shndx_list (abfd);
2302 elf_symtab_shndx_list (abfd) = entry;
2303 elf_elfsections (abfd)[shindex] = & entry->hdr;
2304 goto success;
2305 }
9ad5cbcf 2306
bf67003b 2307 case SHT_STRTAB: /* A string table. */
252b5132 2308 if (hdr->bfd_section != NULL)
bf67003b
NC
2309 goto success;
2310
252b5132
RH
2311 if (ehdr->e_shstrndx == shindex)
2312 {
2313 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2314 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
bf67003b 2315 goto success;
252b5132 2316 }
bf67003b 2317
1b3a8575
AM
2318 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2319 {
2320 symtab_strtab:
2321 elf_tdata (abfd)->strtab_hdr = *hdr;
2322 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
bf67003b 2323 goto success;
1b3a8575 2324 }
bf67003b 2325
1b3a8575
AM
2326 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2327 {
2328 dynsymtab_strtab:
2329 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2330 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2331 elf_elfsections (abfd)[shindex] = hdr;
2332 /* We also treat this as a regular section, so that objcopy
2333 can handle it. */
bf67003b
NC
2334 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2335 shindex);
2336 goto success;
1b3a8575 2337 }
252b5132 2338
1b3a8575
AM
2339 /* If the string table isn't one of the above, then treat it as a
2340 regular section. We need to scan all the headers to be sure,
2341 just in case this strtab section appeared before the above. */
2342 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2343 {
2344 unsigned int i, num_sec;
252b5132 2345
1b3a8575
AM
2346 num_sec = elf_numsections (abfd);
2347 for (i = 1; i < num_sec; i++)
2348 {
2349 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2350 if (hdr2->sh_link == shindex)
2351 {
933d961a
JJ
2352 /* Prevent endless recursion on broken objects. */
2353 if (i == shindex)
bf67003b 2354 goto fail;
1b3a8575 2355 if (! bfd_section_from_shdr (abfd, i))
bf67003b 2356 goto fail;
1b3a8575
AM
2357 if (elf_onesymtab (abfd) == i)
2358 goto symtab_strtab;
2359 if (elf_dynsymtab (abfd) == i)
2360 goto dynsymtab_strtab;
2361 }
2362 }
2363 }
bf67003b
NC
2364 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2365 goto success;
252b5132
RH
2366
2367 case SHT_REL:
2368 case SHT_RELA:
2369 /* *These* do a lot of work -- but build no sections! */
2370 {
2371 asection *target_sect;
d4730f92 2372 Elf_Internal_Shdr *hdr2, **p_hdr;
9ad5cbcf 2373 unsigned int num_sec = elf_numsections (abfd);
d4730f92 2374 struct bfd_elf_section_data *esdt;
252b5132 2375
aa2ca951
JJ
2376 if (hdr->sh_entsize
2377 != (bfd_size_type) (hdr->sh_type == SHT_REL
a50b2160 2378 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
bf67003b 2379 goto fail;
a50b2160 2380
03ae5f59 2381 /* Check for a bogus link to avoid crashing. */
4fbb74a6 2382 if (hdr->sh_link >= num_sec)
03ae5f59 2383 {
4eca0228 2384 _bfd_error_handler
695344c0 2385 /* xgettext:c-format */
871b3ab2 2386 (_("%pB: invalid link %u for reloc section %s (index %u)"),
4eca0228 2387 abfd, hdr->sh_link, name, shindex);
bf67003b
NC
2388 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2389 shindex);
2390 goto success;
03ae5f59
ILT
2391 }
2392
252b5132
RH
2393 /* For some incomprehensible reason Oracle distributes
2394 libraries for Solaris in which some of the objects have
2395 bogus sh_link fields. It would be nice if we could just
2396 reject them, but, unfortunately, some people need to use
2397 them. We scan through the section headers; if we find only
2398 one suitable symbol table, we clobber the sh_link to point
83b89087
L
2399 to it. I hope this doesn't break anything.
2400
2401 Don't do it on executable nor shared library. */
2402 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2403 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
252b5132
RH
2404 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2405 {
9ad5cbcf 2406 unsigned int scan;
252b5132
RH
2407 int found;
2408
2409 found = 0;
9ad5cbcf 2410 for (scan = 1; scan < num_sec; scan++)
252b5132
RH
2411 {
2412 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2413 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2414 {
2415 if (found != 0)
2416 {
2417 found = 0;
2418 break;
2419 }
2420 found = scan;
2421 }
2422 }
2423 if (found != 0)
2424 hdr->sh_link = found;
2425 }
2426
2427 /* Get the symbol table. */
1b3a8575
AM
2428 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2429 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
252b5132 2430 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
bf67003b 2431 goto fail;
252b5132 2432
a4bcd733
AM
2433 /* If this is an alloc section in an executable or shared
2434 library, or the reloc section does not use the main symbol
2435 table we don't treat it as a reloc section. BFD can't
2436 adequately represent such a section, so at least for now,
2437 we don't try. We just present it as a normal section. We
2438 also can't use it as a reloc section if it points to the
2439 null section, an invalid section, another reloc section, or
2440 its sh_link points to the null section. */
2441 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2442 && (hdr->sh_flags & SHF_ALLOC) != 0)
83b89087 2443 || hdr->sh_link == SHN_UNDEF
a4bcd733 2444 || hdr->sh_link != elf_onesymtab (abfd)
185ef66d 2445 || hdr->sh_info == SHN_UNDEF
185ef66d
AM
2446 || hdr->sh_info >= num_sec
2447 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2448 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
bf67003b
NC
2449 {
2450 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2451 shindex);
2452 goto success;
2453 }
252b5132
RH
2454
2455 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
bf67003b
NC
2456 goto fail;
2457
252b5132
RH
2458 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2459 if (target_sect == NULL)
bf67003b 2460 goto fail;
252b5132 2461
d4730f92
BS
2462 esdt = elf_section_data (target_sect);
2463 if (hdr->sh_type == SHT_RELA)
2464 p_hdr = &esdt->rela.hdr;
252b5132 2465 else
d4730f92
BS
2466 p_hdr = &esdt->rel.hdr;
2467
a7ba3896
NC
2468 /* PR 17512: file: 0b4f81b7.
2469 Also see PR 24456, for a file which deliberately has two reloc
2470 sections. */
06614111 2471 if (*p_hdr != NULL)
a7ba3896
NC
2472 {
2473 _bfd_error_handler
2474 /* xgettext:c-format */
2475 (_("%pB: warning: multiple relocation sections for section %pA \
2476found - ignoring all but the first"),
2477 abfd, target_sect);
2478 goto success;
2479 }
ef53be89 2480 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
d4730f92 2481 if (hdr2 == NULL)
bf67003b 2482 goto fail;
252b5132 2483 *hdr2 = *hdr;
d4730f92 2484 *p_hdr = hdr2;
252b5132 2485 elf_elfsections (abfd)[shindex] = hdr2;
056bafd4
MR
2486 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2487 * bed->s->int_rels_per_ext_rel);
252b5132
RH
2488 target_sect->flags |= SEC_RELOC;
2489 target_sect->relocation = NULL;
2490 target_sect->rel_filepos = hdr->sh_offset;
bf572ba0
MM
2491 /* In the section to which the relocations apply, mark whether
2492 its relocations are of the REL or RELA variety. */
72730e0c 2493 if (hdr->sh_size != 0)
d4730f92
BS
2494 {
2495 if (hdr->sh_type == SHT_RELA)
2496 target_sect->use_rela_p = 1;
2497 }
252b5132 2498 abfd->flags |= HAS_RELOC;
bf67003b 2499 goto success;
252b5132 2500 }
252b5132
RH
2501
2502 case SHT_GNU_verdef:
2503 elf_dynverdef (abfd) = shindex;
2504 elf_tdata (abfd)->dynverdef_hdr = *hdr;
bf67003b
NC
2505 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2506 goto success;
252b5132
RH
2507
2508 case SHT_GNU_versym:
a50b2160 2509 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
bf67003b
NC
2510 goto fail;
2511
252b5132
RH
2512 elf_dynversym (abfd) = shindex;
2513 elf_tdata (abfd)->dynversym_hdr = *hdr;
bf67003b
NC
2514 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2515 goto success;
252b5132
RH
2516
2517 case SHT_GNU_verneed:
2518 elf_dynverref (abfd) = shindex;
2519 elf_tdata (abfd)->dynverref_hdr = *hdr;
bf67003b
NC
2520 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2521 goto success;
252b5132
RH
2522
2523 case SHT_SHLIB:
bf67003b 2524 goto success;
252b5132 2525
dbb410c3 2526 case SHT_GROUP:
44534af3 2527 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
bf67003b
NC
2528 goto fail;
2529
6dc132d9 2530 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2531 goto fail;
2532
bf67003b 2533 goto success;
dbb410c3 2534
252b5132 2535 default:
104d59d1
JM
2536 /* Possibly an attributes section. */
2537 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2538 || hdr->sh_type == bed->obj_attrs_section_type)
2539 {
2540 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2541 goto fail;
104d59d1 2542 _bfd_elf_parse_attributes (abfd, hdr);
bf67003b 2543 goto success;
104d59d1
JM
2544 }
2545
252b5132 2546 /* Check for any processor-specific section types. */
3eb70a79 2547 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2548 goto success;
3eb70a79
L
2549
2550 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2551 {
2552 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2553 /* FIXME: How to properly handle allocated section reserved
2554 for applications? */
4eca0228 2555 _bfd_error_handler
695344c0 2556 /* xgettext:c-format */
871b3ab2 2557 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2558 abfd, hdr->sh_type, name);
3eb70a79 2559 else
bf67003b
NC
2560 {
2561 /* Allow sections reserved for applications. */
2562 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2563 shindex);
2564 goto success;
2565 }
3eb70a79
L
2566 }
2567 else if (hdr->sh_type >= SHT_LOPROC
2568 && hdr->sh_type <= SHT_HIPROC)
2569 /* FIXME: We should handle this section. */
4eca0228 2570 _bfd_error_handler
695344c0 2571 /* xgettext:c-format */
871b3ab2 2572 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2573 abfd, hdr->sh_type, name);
3eb70a79 2574 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
ff15b240
NC
2575 {
2576 /* Unrecognised OS-specific sections. */
2577 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2578 /* SHF_OS_NONCONFORMING indicates that special knowledge is
08a40648 2579 required to correctly process the section and the file should
ff15b240 2580 be rejected with an error message. */
4eca0228 2581 _bfd_error_handler
695344c0 2582 /* xgettext:c-format */
871b3ab2 2583 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2584 abfd, hdr->sh_type, name);
ff15b240 2585 else
bf67003b
NC
2586 {
2587 /* Otherwise it should be processed. */
2588 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2589 goto success;
2590 }
ff15b240 2591 }
3eb70a79
L
2592 else
2593 /* FIXME: We should handle this section. */
4eca0228 2594 _bfd_error_handler
695344c0 2595 /* xgettext:c-format */
871b3ab2 2596 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2597 abfd, hdr->sh_type, name);
3eb70a79 2598
bf67003b 2599 goto fail;
252b5132
RH
2600 }
2601
bf67003b
NC
2602 fail:
2603 ret = FALSE;
2604 success:
e5b470e2 2605 if (sections_being_created && sections_being_created_abfd == abfd)
bf67003b
NC
2606 sections_being_created [shindex] = FALSE;
2607 if (-- nesting == 0)
5a4b0ccc
NC
2608 {
2609 sections_being_created = NULL;
2610 sections_being_created_abfd = abfd;
2611 }
bf67003b 2612 return ret;
252b5132
RH
2613}
2614
87d72d41 2615/* Return the local symbol specified by ABFD, R_SYMNDX. */
ec338859 2616
87d72d41
AM
2617Elf_Internal_Sym *
2618bfd_sym_from_r_symndx (struct sym_cache *cache,
2619 bfd *abfd,
2620 unsigned long r_symndx)
ec338859 2621{
ec338859
AM
2622 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2623
a5d1b3b5
AM
2624 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2625 {
2626 Elf_Internal_Shdr *symtab_hdr;
2627 unsigned char esym[sizeof (Elf64_External_Sym)];
2628 Elf_External_Sym_Shndx eshndx;
ec338859 2629
a5d1b3b5
AM
2630 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2631 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
87d72d41 2632 &cache->sym[ent], esym, &eshndx) == NULL)
a5d1b3b5 2633 return NULL;
9ad5cbcf 2634
a5d1b3b5
AM
2635 if (cache->abfd != abfd)
2636 {
2637 memset (cache->indx, -1, sizeof (cache->indx));
2638 cache->abfd = abfd;
2639 }
2640 cache->indx[ent] = r_symndx;
ec338859 2641 }
a5d1b3b5 2642
87d72d41 2643 return &cache->sym[ent];
ec338859
AM
2644}
2645
252b5132
RH
2646/* Given an ELF section number, retrieve the corresponding BFD
2647 section. */
2648
2649asection *
91d6fa6a 2650bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
252b5132 2651{
91d6fa6a 2652 if (sec_index >= elf_numsections (abfd))
252b5132 2653 return NULL;
91d6fa6a 2654 return elf_elfsections (abfd)[sec_index]->bfd_section;
252b5132
RH
2655}
2656
b35d266b 2657static const struct bfd_elf_special_section special_sections_b[] =
2f89ff8d 2658{
0112cd26 2659 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2660 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2661};
2662
b35d266b 2663static const struct bfd_elf_special_section special_sections_c[] =
7f4d3958 2664{
0112cd26 2665 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
1ff6de03 2666 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2667 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2668};
2669
b35d266b 2670static const struct bfd_elf_special_section special_sections_d[] =
7f4d3958 2671{
07d6d2b8
AM
2672 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2673 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
a9a72a65
DE
2674 /* There are more DWARF sections than these, but they needn't be added here
2675 unless you have to cope with broken compilers that don't emit section
2676 attributes or you want to help the user writing assembler. */
07d6d2b8
AM
2677 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2678 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2679 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2680 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
0112cd26 2681 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2682 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2683 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2684 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2685 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2686};
2687
b35d266b 2688static const struct bfd_elf_special_section special_sections_f[] =
7f4d3958 2689{
07d6d2b8 2690 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2691 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2692 { NULL, 0 , 0, 0, 0 }
7f4d3958
L
2693};
2694
b35d266b 2695static const struct bfd_elf_special_section special_sections_g[] =
7f4d3958 2696{
0112cd26 2697 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2698 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2699 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2700 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
0112cd26
NC
2701 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2702 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
07d6d2b8
AM
2703 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2704 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2705 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2706 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2707};
2708
b35d266b 2709static const struct bfd_elf_special_section special_sections_h[] =
7f4d3958 2710{
07d6d2b8
AM
2711 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2712 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2713};
2714
b35d266b 2715static const struct bfd_elf_special_section special_sections_i[] =
7f4d3958 2716{
07d6d2b8 2717 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2718 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2719 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2720 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2721};
2722
b35d266b 2723static const struct bfd_elf_special_section special_sections_l[] =
7f4d3958 2724{
0112cd26 2725 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2726 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2727};
2728
b35d266b 2729static const struct bfd_elf_special_section special_sections_n[] =
7f4d3958 2730{
0112cd26 2731 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2732 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2733 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2734};
2735
b35d266b 2736static const struct bfd_elf_special_section special_sections_p[] =
7f4d3958 2737{
6f9dbcd4 2738 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2739 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2740 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2741};
2742
b35d266b 2743static const struct bfd_elf_special_section special_sections_r[] =
7f4d3958 2744{
0112cd26
NC
2745 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2746 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
07d6d2b8
AM
2747 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2748 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2749 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2750};
2751
b35d266b 2752static const struct bfd_elf_special_section special_sections_s[] =
7f4d3958 2753{
0112cd26
NC
2754 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2755 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2756 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
60ff4dc4
HPN
2757 /* See struct bfd_elf_special_section declaration for the semantics of
2758 this special case where .prefix_length != strlen (.prefix). */
2759 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
07d6d2b8 2760 { NULL, 0, 0, 0, 0 }
2f89ff8d
L
2761};
2762
b35d266b 2763static const struct bfd_elf_special_section special_sections_t[] =
7f4d3958 2764{
07d6d2b8
AM
2765 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2766 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
0112cd26 2767 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
07d6d2b8 2768 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2769};
2770
1b315056
CS
2771static const struct bfd_elf_special_section special_sections_z[] =
2772{
07d6d2b8
AM
2773 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2774 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
1b315056
CS
2775 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2776 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2777 { NULL, 0, 0, 0, 0 }
1b315056
CS
2778};
2779
e4c93b56 2780static const struct bfd_elf_special_section * const special_sections[] =
7f4d3958 2781{
7f4d3958 2782 special_sections_b, /* 'b' */
98ece1b3 2783 special_sections_c, /* 'c' */
7f4d3958
L
2784 special_sections_d, /* 'd' */
2785 NULL, /* 'e' */
2786 special_sections_f, /* 'f' */
2787 special_sections_g, /* 'g' */
2788 special_sections_h, /* 'h' */
2789 special_sections_i, /* 'i' */
2790 NULL, /* 'j' */
2791 NULL, /* 'k' */
2792 special_sections_l, /* 'l' */
2793 NULL, /* 'm' */
2794 special_sections_n, /* 'n' */
2795 NULL, /* 'o' */
2796 special_sections_p, /* 'p' */
2797 NULL, /* 'q' */
2798 special_sections_r, /* 'r' */
2799 special_sections_s, /* 's' */
2800 special_sections_t, /* 't' */
1b315056
CS
2801 NULL, /* 'u' */
2802 NULL, /* 'v' */
2803 NULL, /* 'w' */
2804 NULL, /* 'x' */
2805 NULL, /* 'y' */
2806 special_sections_z /* 'z' */
7f4d3958
L
2807};
2808
551b43fd
AM
2809const struct bfd_elf_special_section *
2810_bfd_elf_get_special_section (const char *name,
2811 const struct bfd_elf_special_section *spec,
2812 unsigned int rela)
2f89ff8d
L
2813{
2814 int i;
7f4d3958 2815 int len;
7f4d3958 2816
551b43fd 2817 len = strlen (name);
7f4d3958 2818
551b43fd 2819 for (i = 0; spec[i].prefix != NULL; i++)
7dcb9820
AM
2820 {
2821 int suffix_len;
551b43fd 2822 int prefix_len = spec[i].prefix_length;
7dcb9820
AM
2823
2824 if (len < prefix_len)
2825 continue;
551b43fd 2826 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
7dcb9820
AM
2827 continue;
2828
551b43fd 2829 suffix_len = spec[i].suffix_length;
7dcb9820
AM
2830 if (suffix_len <= 0)
2831 {
2832 if (name[prefix_len] != 0)
2833 {
2834 if (suffix_len == 0)
2835 continue;
2836 if (name[prefix_len] != '.'
2837 && (suffix_len == -2
551b43fd 2838 || (rela && spec[i].type == SHT_REL)))
7dcb9820
AM
2839 continue;
2840 }
2841 }
2842 else
2843 {
2844 if (len < prefix_len + suffix_len)
2845 continue;
2846 if (memcmp (name + len - suffix_len,
551b43fd 2847 spec[i].prefix + prefix_len,
7dcb9820
AM
2848 suffix_len) != 0)
2849 continue;
2850 }
551b43fd 2851 return &spec[i];
7dcb9820 2852 }
2f89ff8d
L
2853
2854 return NULL;
2855}
2856
7dcb9820 2857const struct bfd_elf_special_section *
29ef7005 2858_bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2f89ff8d 2859{
551b43fd
AM
2860 int i;
2861 const struct bfd_elf_special_section *spec;
29ef7005 2862 const struct elf_backend_data *bed;
2f89ff8d
L
2863
2864 /* See if this is one of the special sections. */
551b43fd
AM
2865 if (sec->name == NULL)
2866 return NULL;
2f89ff8d 2867
29ef7005
L
2868 bed = get_elf_backend_data (abfd);
2869 spec = bed->special_sections;
2870 if (spec)
2871 {
2872 spec = _bfd_elf_get_special_section (sec->name,
2873 bed->special_sections,
2874 sec->use_rela_p);
2875 if (spec != NULL)
2876 return spec;
2877 }
2878
551b43fd
AM
2879 if (sec->name[0] != '.')
2880 return NULL;
2f89ff8d 2881
551b43fd 2882 i = sec->name[1] - 'b';
1b315056 2883 if (i < 0 || i > 'z' - 'b')
551b43fd
AM
2884 return NULL;
2885
2886 spec = special_sections[i];
2f89ff8d 2887
551b43fd
AM
2888 if (spec == NULL)
2889 return NULL;
2890
2891 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2f89ff8d
L
2892}
2893
b34976b6 2894bfd_boolean
217aa764 2895_bfd_elf_new_section_hook (bfd *abfd, asection *sec)
252b5132
RH
2896{
2897 struct bfd_elf_section_data *sdata;
551b43fd 2898 const struct elf_backend_data *bed;
7dcb9820 2899 const struct bfd_elf_special_section *ssect;
252b5132 2900
f0abc2a1
AM
2901 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2902 if (sdata == NULL)
2903 {
a50b1753 2904 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
07d6d2b8 2905 sizeof (*sdata));
f0abc2a1
AM
2906 if (sdata == NULL)
2907 return FALSE;
217aa764 2908 sec->used_by_bfd = sdata;
f0abc2a1 2909 }
bf572ba0 2910
551b43fd
AM
2911 /* Indicate whether or not this section should use RELA relocations. */
2912 bed = get_elf_backend_data (abfd);
2913 sec->use_rela_p = bed->default_use_rela_p;
2914
e843e0f8
L
2915 /* When we read a file, we don't need to set ELF section type and
2916 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2917 anyway. We will set ELF section type and flags for all linker
2918 created sections. If user specifies BFD section flags, we will
2919 set ELF section type and flags based on BFD section flags in
02ecc8e9
L
2920 elf_fake_sections. Special handling for .init_array/.fini_array
2921 output sections since they may contain .ctors/.dtors input
2922 sections. We don't want _bfd_elf_init_private_section_data to
2923 copy ELF section type from .ctors/.dtors input sections. */
2924 if (abfd->direction != read_direction
3496cb2a 2925 || (sec->flags & SEC_LINKER_CREATED) != 0)
2f89ff8d 2926 {
551b43fd 2927 ssect = (*bed->get_sec_type_attr) (abfd, sec);
02ecc8e9
L
2928 if (ssect != NULL
2929 && (!sec->flags
2930 || (sec->flags & SEC_LINKER_CREATED) != 0
2931 || ssect->type == SHT_INIT_ARRAY
2932 || ssect->type == SHT_FINI_ARRAY))
a31501e9
L
2933 {
2934 elf_section_type (sec) = ssect->type;
2935 elf_section_flags (sec) = ssect->attr;
2936 }
2f89ff8d
L
2937 }
2938
f592407e 2939 return _bfd_generic_new_section_hook (abfd, sec);
252b5132
RH
2940}
2941
2942/* Create a new bfd section from an ELF program header.
2943
2944 Since program segments have no names, we generate a synthetic name
2945 of the form segment<NUM>, where NUM is generally the index in the
2946 program header table. For segments that are split (see below) we
2947 generate the names segment<NUM>a and segment<NUM>b.
2948
2949 Note that some program segments may have a file size that is different than
2950 (less than) the memory size. All this means is that at execution the
2951 system must allocate the amount of memory specified by the memory size,
2952 but only initialize it with the first "file size" bytes read from the
2953 file. This would occur for example, with program segments consisting
2954 of combined data+bss.
2955
2956 To handle the above situation, this routine generates TWO bfd sections
2957 for the single program segment. The first has the length specified by
2958 the file size of the segment, and the second has the length specified
2959 by the difference between the two sizes. In effect, the segment is split
d5191d0c 2960 into its initialized and uninitialized parts.
252b5132
RH
2961
2962 */
2963
b34976b6 2964bfd_boolean
217aa764
AM
2965_bfd_elf_make_section_from_phdr (bfd *abfd,
2966 Elf_Internal_Phdr *hdr,
91d6fa6a 2967 int hdr_index,
a50b1753 2968 const char *type_name)
252b5132
RH
2969{
2970 asection *newsect;
2971 char *name;
2972 char namebuf[64];
d4c88bbb 2973 size_t len;
252b5132
RH
2974 int split;
2975
2976 split = ((hdr->p_memsz > 0)
2977 && (hdr->p_filesz > 0)
2978 && (hdr->p_memsz > hdr->p_filesz));
d5191d0c
AM
2979
2980 if (hdr->p_filesz > 0)
252b5132 2981 {
91d6fa6a 2982 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
d5191d0c 2983 len = strlen (namebuf) + 1;
a50b1753 2984 name = (char *) bfd_alloc (abfd, len);
d5191d0c
AM
2985 if (!name)
2986 return FALSE;
2987 memcpy (name, namebuf, len);
2988 newsect = bfd_make_section (abfd, name);
2989 if (newsect == NULL)
2990 return FALSE;
2991 newsect->vma = hdr->p_vaddr;
2992 newsect->lma = hdr->p_paddr;
2993 newsect->size = hdr->p_filesz;
2994 newsect->filepos = hdr->p_offset;
2995 newsect->flags |= SEC_HAS_CONTENTS;
2996 newsect->alignment_power = bfd_log2 (hdr->p_align);
2997 if (hdr->p_type == PT_LOAD)
252b5132 2998 {
d5191d0c
AM
2999 newsect->flags |= SEC_ALLOC;
3000 newsect->flags |= SEC_LOAD;
3001 if (hdr->p_flags & PF_X)
3002 {
3003 /* FIXME: all we known is that it has execute PERMISSION,
3004 may be data. */
3005 newsect->flags |= SEC_CODE;
3006 }
3007 }
3008 if (!(hdr->p_flags & PF_W))
3009 {
3010 newsect->flags |= SEC_READONLY;
252b5132 3011 }
252b5132
RH
3012 }
3013
d5191d0c 3014 if (hdr->p_memsz > hdr->p_filesz)
252b5132 3015 {
d5191d0c
AM
3016 bfd_vma align;
3017
91d6fa6a 3018 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
d4c88bbb 3019 len = strlen (namebuf) + 1;
a50b1753 3020 name = (char *) bfd_alloc (abfd, len);
252b5132 3021 if (!name)
b34976b6 3022 return FALSE;
d4c88bbb 3023 memcpy (name, namebuf, len);
252b5132
RH
3024 newsect = bfd_make_section (abfd, name);
3025 if (newsect == NULL)
b34976b6 3026 return FALSE;
252b5132
RH
3027 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
3028 newsect->lma = hdr->p_paddr + hdr->p_filesz;
eea6121a 3029 newsect->size = hdr->p_memsz - hdr->p_filesz;
d5191d0c
AM
3030 newsect->filepos = hdr->p_offset + hdr->p_filesz;
3031 align = newsect->vma & -newsect->vma;
3032 if (align == 0 || align > hdr->p_align)
3033 align = hdr->p_align;
3034 newsect->alignment_power = bfd_log2 (align);
252b5132
RH
3035 if (hdr->p_type == PT_LOAD)
3036 {
d5191d0c
AM
3037 /* Hack for gdb. Segments that have not been modified do
3038 not have their contents written to a core file, on the
3039 assumption that a debugger can find the contents in the
3040 executable. We flag this case by setting the fake
3041 section size to zero. Note that "real" bss sections will
3042 always have their contents dumped to the core file. */
3043 if (bfd_get_format (abfd) == bfd_core)
3044 newsect->size = 0;
252b5132
RH
3045 newsect->flags |= SEC_ALLOC;
3046 if (hdr->p_flags & PF_X)
3047 newsect->flags |= SEC_CODE;
3048 }
3049 if (!(hdr->p_flags & PF_W))
3050 newsect->flags |= SEC_READONLY;
3051 }
3052
b34976b6 3053 return TRUE;
252b5132
RH
3054}
3055
864619bb
KS
3056static bfd_boolean
3057_bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3058{
3059 /* The return value is ignored. Build-ids are considered optional. */
3060 if (templ->xvec->flavour == bfd_target_elf_flavour)
3061 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3062 (templ, offset);
3063 return FALSE;
3064}
3065
b34976b6 3066bfd_boolean
91d6fa6a 3067bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
20cfcaae 3068{
9c5bfbb7 3069 const struct elf_backend_data *bed;
20cfcaae
NC
3070
3071 switch (hdr->p_type)
3072 {
3073 case PT_NULL:
91d6fa6a 3074 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
20cfcaae
NC
3075
3076 case PT_LOAD:
864619bb
KS
3077 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
3078 return FALSE;
3079 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3080 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
3081 return TRUE;
20cfcaae
NC
3082
3083 case PT_DYNAMIC:
91d6fa6a 3084 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
20cfcaae
NC
3085
3086 case PT_INTERP:
91d6fa6a 3087 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
20cfcaae
NC
3088
3089 case PT_NOTE:
91d6fa6a 3090 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
b34976b6 3091 return FALSE;
276da9b3
L
3092 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3093 hdr->p_align))
b34976b6
AM
3094 return FALSE;
3095 return TRUE;
20cfcaae
NC
3096
3097 case PT_SHLIB:
91d6fa6a 3098 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
20cfcaae
NC
3099
3100 case PT_PHDR:
91d6fa6a 3101 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
20cfcaae 3102
811072d8 3103 case PT_GNU_EH_FRAME:
91d6fa6a 3104 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
811072d8
RM
3105 "eh_frame_hdr");
3106
2b05f1b7 3107 case PT_GNU_STACK:
91d6fa6a 3108 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
9ee5e499 3109
8c37241b 3110 case PT_GNU_RELRO:
91d6fa6a 3111 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
8c37241b 3112
20cfcaae 3113 default:
8c1acd09 3114 /* Check for any processor-specific program segment types. */
20cfcaae 3115 bed = get_elf_backend_data (abfd);
91d6fa6a 3116 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
20cfcaae
NC
3117 }
3118}
3119
d4730f92
BS
3120/* Return the REL_HDR for SEC, assuming there is only a single one, either
3121 REL or RELA. */
3122
3123Elf_Internal_Shdr *
3124_bfd_elf_single_rel_hdr (asection *sec)
3125{
3126 if (elf_section_data (sec)->rel.hdr)
3127 {
3128 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3129 return elf_section_data (sec)->rel.hdr;
3130 }
3131 else
3132 return elf_section_data (sec)->rela.hdr;
3133}
3134
3e19fb8f
L
3135static bfd_boolean
3136_bfd_elf_set_reloc_sh_name (bfd *abfd,
3137 Elf_Internal_Shdr *rel_hdr,
3138 const char *sec_name,
3139 bfd_boolean use_rela_p)
3140{
3141 char *name = (char *) bfd_alloc (abfd,
3142 sizeof ".rela" + strlen (sec_name));
3143 if (name == NULL)
3144 return FALSE;
3145
3146 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3147 rel_hdr->sh_name =
3148 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3149 FALSE);
3150 if (rel_hdr->sh_name == (unsigned int) -1)
3151 return FALSE;
3152
3153 return TRUE;
3154}
3155
d4730f92
BS
3156/* Allocate and initialize a section-header for a new reloc section,
3157 containing relocations against ASECT. It is stored in RELDATA. If
3158 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3159 relocations. */
23bc299b 3160
5d13b3b3 3161static bfd_boolean
217aa764 3162_bfd_elf_init_reloc_shdr (bfd *abfd,
d4730f92 3163 struct bfd_elf_section_reloc_data *reldata,
f6fe1ccd 3164 const char *sec_name,
3e19fb8f
L
3165 bfd_boolean use_rela_p,
3166 bfd_boolean delay_st_name_p)
23bc299b 3167{
d4730f92 3168 Elf_Internal_Shdr *rel_hdr;
9c5bfbb7 3169 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3170
d4730f92 3171 BFD_ASSERT (reldata->hdr == NULL);
ef53be89 3172 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
d4730f92 3173 reldata->hdr = rel_hdr;
23bc299b 3174
3e19fb8f
L
3175 if (delay_st_name_p)
3176 rel_hdr->sh_name = (unsigned int) -1;
3177 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3178 use_rela_p))
b34976b6 3179 return FALSE;
23bc299b
MM
3180 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3181 rel_hdr->sh_entsize = (use_rela_p
3182 ? bed->s->sizeof_rela
3183 : bed->s->sizeof_rel);
72de5009 3184 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
28e07a05 3185 rel_hdr->sh_flags = 0;
23bc299b
MM
3186 rel_hdr->sh_addr = 0;
3187 rel_hdr->sh_size = 0;
3188 rel_hdr->sh_offset = 0;
3189
b34976b6 3190 return TRUE;
23bc299b
MM
3191}
3192
94be91de
JB
3193/* Return the default section type based on the passed in section flags. */
3194
3195int
3196bfd_elf_get_default_section_type (flagword flags)
3197{
0e41bebb 3198 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
2e76e85a 3199 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
94be91de
JB
3200 return SHT_NOBITS;
3201 return SHT_PROGBITS;
3202}
3203
d4730f92
BS
3204struct fake_section_arg
3205{
3206 struct bfd_link_info *link_info;
3207 bfd_boolean failed;
3208};
3209
252b5132
RH
3210/* Set up an ELF internal section header for a section. */
3211
252b5132 3212static void
d4730f92 3213elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
252b5132 3214{
d4730f92 3215 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
9c5bfbb7 3216 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3217 struct bfd_elf_section_data *esd = elf_section_data (asect);
252b5132 3218 Elf_Internal_Shdr *this_hdr;
0414f35b 3219 unsigned int sh_type;
0ce398f1 3220 const char *name = asect->name;
3e19fb8f 3221 bfd_boolean delay_st_name_p = FALSE;
252b5132 3222
d4730f92 3223 if (arg->failed)
252b5132
RH
3224 {
3225 /* We already failed; just get out of the bfd_map_over_sections
08a40648 3226 loop. */
252b5132
RH
3227 return;
3228 }
3229
d4730f92 3230 this_hdr = &esd->this_hdr;
252b5132 3231
f6fe1ccd 3232 if (arg->link_info)
0ce398f1 3233 {
f6fe1ccd
L
3234 /* ld: compress DWARF debug sections with names: .debug_*. */
3235 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3236 && (asect->flags & SEC_DEBUGGING)
3237 && name[1] == 'd'
3238 && name[6] == '_')
3239 {
3240 /* Set SEC_ELF_COMPRESS to indicate this section should be
3241 compressed. */
3242 asect->flags |= SEC_ELF_COMPRESS;
0ce398f1 3243
dd905818 3244 /* If this section will be compressed, delay adding section
3e19fb8f
L
3245 name to section name section after it is compressed in
3246 _bfd_elf_assign_file_positions_for_non_load. */
3247 delay_st_name_p = TRUE;
f6fe1ccd
L
3248 }
3249 }
3250 else if ((asect->flags & SEC_ELF_RENAME))
3251 {
3252 /* objcopy: rename output DWARF debug section. */
3253 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3254 {
3255 /* When we decompress or compress with SHF_COMPRESSED,
3256 convert section name from .zdebug_* to .debug_* if
3257 needed. */
3258 if (name[1] == 'z')
3259 {
3260 char *new_name = convert_zdebug_to_debug (abfd, name);
3261 if (new_name == NULL)
3262 {
3263 arg->failed = TRUE;
3264 return;
3265 }
3266 name = new_name;
3267 }
3268 }
3269 else if (asect->compress_status == COMPRESS_SECTION_DONE)
0ce398f1 3270 {
f6fe1ccd
L
3271 /* PR binutils/18087: Compression does not always make a
3272 section smaller. So only rename the section when
3273 compression has actually taken place. If input section
3274 name is .zdebug_*, we should never compress it again. */
3275 char *new_name = convert_debug_to_zdebug (abfd, name);
0ce398f1
L
3276 if (new_name == NULL)
3277 {
3278 arg->failed = TRUE;
3279 return;
3280 }
f6fe1ccd
L
3281 BFD_ASSERT (name[1] != 'z');
3282 name = new_name;
0ce398f1
L
3283 }
3284 }
3285
3e19fb8f
L
3286 if (delay_st_name_p)
3287 this_hdr->sh_name = (unsigned int) -1;
3288 else
252b5132 3289 {
3e19fb8f
L
3290 this_hdr->sh_name
3291 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3292 name, FALSE);
3293 if (this_hdr->sh_name == (unsigned int) -1)
3294 {
3295 arg->failed = TRUE;
3296 return;
3297 }
252b5132
RH
3298 }
3299
a4d8e49b 3300 /* Don't clear sh_flags. Assembler may set additional bits. */
252b5132
RH
3301
3302 if ((asect->flags & SEC_ALLOC) != 0
3303 || asect->user_set_vma)
3304 this_hdr->sh_addr = asect->vma;
3305 else
3306 this_hdr->sh_addr = 0;
3307
3308 this_hdr->sh_offset = 0;
eea6121a 3309 this_hdr->sh_size = asect->size;
252b5132 3310 this_hdr->sh_link = 0;
c86934ce
NC
3311 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3312 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3313 {
4eca0228 3314 _bfd_error_handler
695344c0 3315 /* xgettext:c-format */
9793eb77 3316 (_("%pB: error: alignment power %d of section `%pA' is too big"),
c08bb8dd 3317 abfd, asect->alignment_power, asect);
c86934ce
NC
3318 arg->failed = TRUE;
3319 return;
3320 }
72de5009 3321 this_hdr->sh_addralign = (bfd_vma) 1 << asect->alignment_power;
252b5132
RH
3322 /* The sh_entsize and sh_info fields may have been set already by
3323 copy_private_section_data. */
3324
3325 this_hdr->bfd_section = asect;
3326 this_hdr->contents = NULL;
3327
3cddba1e
L
3328 /* If the section type is unspecified, we set it based on
3329 asect->flags. */
98ece1b3
AM
3330 if ((asect->flags & SEC_GROUP) != 0)
3331 sh_type = SHT_GROUP;
98ece1b3 3332 else
94be91de 3333 sh_type = bfd_elf_get_default_section_type (asect->flags);
98ece1b3 3334
3cddba1e 3335 if (this_hdr->sh_type == SHT_NULL)
98ece1b3
AM
3336 this_hdr->sh_type = sh_type;
3337 else if (this_hdr->sh_type == SHT_NOBITS
3338 && sh_type == SHT_PROGBITS
3339 && (asect->flags & SEC_ALLOC) != 0)
3cddba1e 3340 {
98ece1b3
AM
3341 /* Warn if we are changing a NOBITS section to PROGBITS, but
3342 allow the link to proceed. This can happen when users link
3343 non-bss input sections to bss output sections, or emit data
3344 to a bss output section via a linker script. */
4eca0228 3345 _bfd_error_handler
871b3ab2 3346 (_("warning: section `%pA' type changed to PROGBITS"), asect);
98ece1b3 3347 this_hdr->sh_type = sh_type;
3cddba1e
L
3348 }
3349
2f89ff8d 3350 switch (this_hdr->sh_type)
252b5132 3351 {
2f89ff8d 3352 default:
2f89ff8d
L
3353 break;
3354
3355 case SHT_STRTAB:
2f89ff8d
L
3356 case SHT_NOTE:
3357 case SHT_NOBITS:
3358 case SHT_PROGBITS:
3359 break;
606851fb
AM
3360
3361 case SHT_INIT_ARRAY:
3362 case SHT_FINI_ARRAY:
3363 case SHT_PREINIT_ARRAY:
3364 this_hdr->sh_entsize = bed->s->arch_size / 8;
3365 break;
2f89ff8d
L
3366
3367 case SHT_HASH:
c7ac6ff8 3368 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2f89ff8d 3369 break;
5de3bf90 3370
2f89ff8d 3371 case SHT_DYNSYM:
252b5132 3372 this_hdr->sh_entsize = bed->s->sizeof_sym;
2f89ff8d
L
3373 break;
3374
3375 case SHT_DYNAMIC:
252b5132 3376 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2f89ff8d
L
3377 break;
3378
3379 case SHT_RELA:
3380 if (get_elf_backend_data (abfd)->may_use_rela_p)
3381 this_hdr->sh_entsize = bed->s->sizeof_rela;
3382 break;
3383
3384 case SHT_REL:
3385 if (get_elf_backend_data (abfd)->may_use_rel_p)
3386 this_hdr->sh_entsize = bed->s->sizeof_rel;
3387 break;
3388
3389 case SHT_GNU_versym:
252b5132 3390 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2f89ff8d
L
3391 break;
3392
3393 case SHT_GNU_verdef:
252b5132
RH
3394 this_hdr->sh_entsize = 0;
3395 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3396 cverdefs. The linker will set cverdefs, but sh_info will be
3397 zero. */
252b5132
RH
3398 if (this_hdr->sh_info == 0)
3399 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3400 else
3401 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3402 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2f89ff8d
L
3403 break;
3404
3405 case SHT_GNU_verneed:
252b5132
RH
3406 this_hdr->sh_entsize = 0;
3407 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3408 cverrefs. The linker will set cverrefs, but sh_info will be
3409 zero. */
252b5132
RH
3410 if (this_hdr->sh_info == 0)
3411 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3412 else
3413 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3414 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2f89ff8d
L
3415 break;
3416
3417 case SHT_GROUP:
1783205a 3418 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
2f89ff8d 3419 break;
fdc90cb4
JJ
3420
3421 case SHT_GNU_HASH:
3422 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3423 break;
dbb410c3 3424 }
252b5132
RH
3425
3426 if ((asect->flags & SEC_ALLOC) != 0)
3427 this_hdr->sh_flags |= SHF_ALLOC;
3428 if ((asect->flags & SEC_READONLY) == 0)
3429 this_hdr->sh_flags |= SHF_WRITE;
3430 if ((asect->flags & SEC_CODE) != 0)
3431 this_hdr->sh_flags |= SHF_EXECINSTR;
f5fa8ca2
JJ
3432 if ((asect->flags & SEC_MERGE) != 0)
3433 {
3434 this_hdr->sh_flags |= SHF_MERGE;
3435 this_hdr->sh_entsize = asect->entsize;
f5fa8ca2 3436 }
84865015
NC
3437 if ((asect->flags & SEC_STRINGS) != 0)
3438 this_hdr->sh_flags |= SHF_STRINGS;
1126897b 3439 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
dbb410c3 3440 this_hdr->sh_flags |= SHF_GROUP;
13ae64f3 3441 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
704afa60
JJ
3442 {
3443 this_hdr->sh_flags |= SHF_TLS;
3a800eb9
AM
3444 if (asect->size == 0
3445 && (asect->flags & SEC_HAS_CONTENTS) == 0)
704afa60 3446 {
3a800eb9 3447 struct bfd_link_order *o = asect->map_tail.link_order;
b34976b6 3448
704afa60 3449 this_hdr->sh_size = 0;
3a800eb9
AM
3450 if (o != NULL)
3451 {
704afa60 3452 this_hdr->sh_size = o->offset + o->size;
3a800eb9
AM
3453 if (this_hdr->sh_size != 0)
3454 this_hdr->sh_type = SHT_NOBITS;
3455 }
704afa60
JJ
3456 }
3457 }
18ae9cc1
L
3458 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3459 this_hdr->sh_flags |= SHF_EXCLUDE;
252b5132 3460
d4730f92
BS
3461 /* If the section has relocs, set up a section header for the
3462 SHT_REL[A] section. If two relocation sections are required for
3463 this section, it is up to the processor-specific back-end to
3464 create the other. */
3465 if ((asect->flags & SEC_RELOC) != 0)
3466 {
3467 /* When doing a relocatable link, create both REL and RELA sections if
3468 needed. */
3469 if (arg->link_info
3470 /* Do the normal setup if we wouldn't create any sections here. */
3471 && esd->rel.count + esd->rela.count > 0
0e1862bb
L
3472 && (bfd_link_relocatable (arg->link_info)
3473 || arg->link_info->emitrelocations))
d4730f92
BS
3474 {
3475 if (esd->rel.count && esd->rel.hdr == NULL
28e07a05 3476 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
db4677b8 3477 FALSE, delay_st_name_p))
d4730f92
BS
3478 {
3479 arg->failed = TRUE;
3480 return;
3481 }
3482 if (esd->rela.count && esd->rela.hdr == NULL
28e07a05 3483 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
db4677b8 3484 TRUE, delay_st_name_p))
d4730f92
BS
3485 {
3486 arg->failed = TRUE;
3487 return;
3488 }
3489 }
3490 else if (!_bfd_elf_init_reloc_shdr (abfd,
3491 (asect->use_rela_p
3492 ? &esd->rela : &esd->rel),
f6fe1ccd 3493 name,
3e19fb8f
L
3494 asect->use_rela_p,
3495 delay_st_name_p))
db4677b8 3496 {
d4730f92 3497 arg->failed = TRUE;
db4677b8
AM
3498 return;
3499 }
d4730f92
BS
3500 }
3501
252b5132 3502 /* Check for processor-specific section types. */
0414f35b 3503 sh_type = this_hdr->sh_type;
e1fddb6b
AO
3504 if (bed->elf_backend_fake_sections
3505 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
db4677b8
AM
3506 {
3507 arg->failed = TRUE;
3508 return;
3509 }
252b5132 3510
42bb2e33 3511 if (sh_type == SHT_NOBITS && asect->size != 0)
0414f35b
AM
3512 {
3513 /* Don't change the header type from NOBITS if we are being
42bb2e33 3514 called for objcopy --only-keep-debug. */
0414f35b
AM
3515 this_hdr->sh_type = sh_type;
3516 }
252b5132
RH
3517}
3518
bcacc0f5
AM
3519/* Fill in the contents of a SHT_GROUP section. Called from
3520 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3521 when ELF targets use the generic linker, ld. Called for ld -r
3522 from bfd_elf_final_link. */
dbb410c3 3523
1126897b 3524void
217aa764 3525bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
dbb410c3 3526{
a50b1753 3527 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
9dce4196 3528 asection *elt, *first;
dbb410c3 3529 unsigned char *loc;
b34976b6 3530 bfd_boolean gas;
dbb410c3 3531
7e4111ad
L
3532 /* Ignore linker created group section. See elfNN_ia64_object_p in
3533 elfxx-ia64.c. */
ce5aecf8
AM
3534 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3535 || sec->size == 0
dbb410c3
AM
3536 || *failedptr)
3537 return;
3538
bcacc0f5
AM
3539 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3540 {
3541 unsigned long symindx = 0;
3542
3543 /* elf_group_id will have been set up by objcopy and the
3544 generic linker. */
3545 if (elf_group_id (sec) != NULL)
3546 symindx = elf_group_id (sec)->udata.i;
1126897b 3547
bcacc0f5
AM
3548 if (symindx == 0)
3549 {
3550 /* If called from the assembler, swap_out_syms will have set up
3551 elf_section_syms. */
3552 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3553 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3554 }
3555 elf_section_data (sec)->this_hdr.sh_info = symindx;
3556 }
3557 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
1126897b 3558 {
bcacc0f5
AM
3559 /* The ELF backend linker sets sh_info to -2 when the group
3560 signature symbol is global, and thus the index can't be
3561 set until all local symbols are output. */
53720c49
AM
3562 asection *igroup;
3563 struct bfd_elf_section_data *sec_data;
3564 unsigned long symndx;
3565 unsigned long extsymoff;
bcacc0f5
AM
3566 struct elf_link_hash_entry *h;
3567
53720c49
AM
3568 /* The point of this little dance to the first SHF_GROUP section
3569 then back to the SHT_GROUP section is that this gets us to
3570 the SHT_GROUP in the input object. */
3571 igroup = elf_sec_group (elf_next_in_group (sec));
3572 sec_data = elf_section_data (igroup);
3573 symndx = sec_data->this_hdr.sh_info;
3574 extsymoff = 0;
bcacc0f5
AM
3575 if (!elf_bad_symtab (igroup->owner))
3576 {
3577 Elf_Internal_Shdr *symtab_hdr;
3578
3579 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3580 extsymoff = symtab_hdr->sh_info;
3581 }
3582 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3583 while (h->root.type == bfd_link_hash_indirect
3584 || h->root.type == bfd_link_hash_warning)
3585 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3586
3587 elf_section_data (sec)->this_hdr.sh_info = h->indx;
1126897b 3588 }
dbb410c3 3589
1126897b 3590 /* The contents won't be allocated for "ld -r" or objcopy. */
b34976b6 3591 gas = TRUE;
dbb410c3
AM
3592 if (sec->contents == NULL)
3593 {
b34976b6 3594 gas = FALSE;
a50b1753 3595 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
9dce4196
AM
3596
3597 /* Arrange for the section to be written out. */
3598 elf_section_data (sec)->this_hdr.contents = sec->contents;
dbb410c3
AM
3599 if (sec->contents == NULL)
3600 {
b34976b6 3601 *failedptr = TRUE;
dbb410c3
AM
3602 return;
3603 }
3604 }
3605
eea6121a 3606 loc = sec->contents + sec->size;
dbb410c3 3607
9dce4196
AM
3608 /* Get the pointer to the first section in the group that gas
3609 squirreled away here. objcopy arranges for this to be set to the
3610 start of the input section group. */
3611 first = elt = elf_next_in_group (sec);
dbb410c3
AM
3612
3613 /* First element is a flag word. Rest of section is elf section
3614 indices for all the sections of the group. Write them backwards
3615 just to keep the group in the same order as given in .section
3616 directives, not that it matters. */
3617 while (elt != NULL)
3618 {
9dce4196 3619 asection *s;
9dce4196 3620
9dce4196 3621 s = elt;
415f38a6
AM
3622 if (!gas)
3623 s = s->output_section;
3624 if (s != NULL
3625 && !bfd_is_abs_section (s))
01e1a5bc 3626 {
db4677b8 3627 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
28e07a05
AM
3628 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3629
3630 if (elf_sec->rel.hdr != NULL
3631 && (gas
3632 || (input_elf_sec->rel.hdr != NULL
3633 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3634 {
28e07a05 3635 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3636 loc -= 4;
3637 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3638 }
28e07a05
AM
3639 if (elf_sec->rela.hdr != NULL
3640 && (gas
3641 || (input_elf_sec->rela.hdr != NULL
3642 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3643 {
28e07a05 3644 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3645 loc -= 4;
3646 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3647 }
01e1a5bc 3648 loc -= 4;
db4677b8 3649 H_PUT_32 (abfd, elf_sec->this_idx, loc);
01e1a5bc 3650 }
945906ff 3651 elt = elf_next_in_group (elt);
9dce4196
AM
3652 if (elt == first)
3653 break;
dbb410c3
AM
3654 }
3655
7bdf4127
AB
3656 loc -= 4;
3657 BFD_ASSERT (loc == sec->contents);
dbb410c3 3658
9dce4196 3659 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
dbb410c3
AM
3660}
3661
bce964aa
AM
3662/* Given NAME, the name of a relocation section stripped of its
3663 .rel/.rela prefix, return the section in ABFD to which the
3664 relocations apply. */
bd53a53a
L
3665
3666asection *
bce964aa
AM
3667_bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3668{
3669 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3670 section likely apply to .got.plt or .got section. */
3671 if (get_elf_backend_data (abfd)->want_got_plt
3672 && strcmp (name, ".plt") == 0)
3673 {
3674 asection *sec;
3675
3676 name = ".got.plt";
3677 sec = bfd_get_section_by_name (abfd, name);
3678 if (sec != NULL)
3679 return sec;
3680 name = ".got";
3681 }
3682
3683 return bfd_get_section_by_name (abfd, name);
3684}
3685
3686/* Return the section to which RELOC_SEC applies. */
3687
3688static asection *
3689elf_get_reloc_section (asection *reloc_sec)
bd53a53a
L
3690{
3691 const char *name;
3692 unsigned int type;
3693 bfd *abfd;
bce964aa 3694 const struct elf_backend_data *bed;
bd53a53a
L
3695
3696 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3697 if (type != SHT_REL && type != SHT_RELA)
3698 return NULL;
3699
3700 /* We look up the section the relocs apply to by name. */
3701 name = reloc_sec->name;
bce964aa
AM
3702 if (strncmp (name, ".rel", 4) != 0)
3703 return NULL;
3704 name += 4;
3705 if (type == SHT_RELA && *name++ != 'a')
3706 return NULL;
bd53a53a 3707
bd53a53a 3708 abfd = reloc_sec->owner;
bce964aa
AM
3709 bed = get_elf_backend_data (abfd);
3710 return bed->get_reloc_section (abfd, name);
bd53a53a
L
3711}
3712
252b5132
RH
3713/* Assign all ELF section numbers. The dummy first section is handled here
3714 too. The link/info pointers for the standard section types are filled
3715 in here too, while we're at it. */
3716
b34976b6 3717static bfd_boolean
da9f89d4 3718assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
252b5132
RH
3719{
3720 struct elf_obj_tdata *t = elf_tdata (abfd);
3721 asection *sec;
3e19fb8f 3722 unsigned int section_number;
252b5132 3723 Elf_Internal_Shdr **i_shdrp;
47cc2cf5 3724 struct bfd_elf_section_data *d;
3516e984 3725 bfd_boolean need_symtab;
446f7ed5 3726 size_t amt;
252b5132
RH
3727
3728 section_number = 1;
3729
2b0f7ef9
JJ
3730 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3731
da9f89d4 3732 /* SHT_GROUP sections are in relocatable files only. */
7bdf4127 3733 if (link_info == NULL || !link_info->resolve_section_groups)
252b5132 3734 {
ef53be89 3735 size_t reloc_count = 0;
14f2c699 3736
da9f89d4 3737 /* Put SHT_GROUP sections first. */
04dd1667 3738 for (sec = abfd->sections; sec != NULL; sec = sec->next)
47cc2cf5 3739 {
5daa8fe7 3740 d = elf_section_data (sec);
da9f89d4
L
3741
3742 if (d->this_hdr.sh_type == SHT_GROUP)
08a40648 3743 {
5daa8fe7 3744 if (sec->flags & SEC_LINKER_CREATED)
da9f89d4
L
3745 {
3746 /* Remove the linker created SHT_GROUP sections. */
5daa8fe7 3747 bfd_section_list_remove (abfd, sec);
da9f89d4 3748 abfd->section_count--;
da9f89d4 3749 }
08a40648 3750 else
4fbb74a6 3751 d->this_idx = section_number++;
da9f89d4 3752 }
14f2c699
L
3753
3754 /* Count relocations. */
3755 reloc_count += sec->reloc_count;
47cc2cf5 3756 }
14f2c699
L
3757
3758 /* Clear HAS_RELOC if there are no relocations. */
3759 if (reloc_count == 0)
3760 abfd->flags &= ~HAS_RELOC;
47cc2cf5
PB
3761 }
3762
3763 for (sec = abfd->sections; sec; sec = sec->next)
3764 {
3765 d = elf_section_data (sec);
3766
3767 if (d->this_hdr.sh_type != SHT_GROUP)
4fbb74a6 3768 d->this_idx = section_number++;
3e19fb8f
L
3769 if (d->this_hdr.sh_name != (unsigned int) -1)
3770 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
d4730f92 3771 if (d->rel.hdr)
2b0f7ef9 3772 {
d4730f92 3773 d->rel.idx = section_number++;
3e19fb8f
L
3774 if (d->rel.hdr->sh_name != (unsigned int) -1)
3775 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
2b0f7ef9 3776 }
d4730f92
BS
3777 else
3778 d->rel.idx = 0;
23bc299b 3779
d4730f92 3780 if (d->rela.hdr)
2b0f7ef9 3781 {
d4730f92 3782 d->rela.idx = section_number++;
3e19fb8f
L
3783 if (d->rela.hdr->sh_name != (unsigned int) -1)
3784 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
2b0f7ef9 3785 }
23bc299b 3786 else
d4730f92 3787 d->rela.idx = 0;
252b5132
RH
3788 }
3789
3516e984
L
3790 need_symtab = (bfd_get_symcount (abfd) > 0
3791 || (link_info == NULL
3792 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3793 == HAS_RELOC)));
3794 if (need_symtab)
252b5132 3795 {
12bd6957 3796 elf_onesymtab (abfd) = section_number++;
2b0f7ef9 3797 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
4fbb74a6 3798 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
9ad5cbcf 3799 {
7a6e0d89 3800 elf_section_list *entry;
6a40cf0c
NC
3801
3802 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3803
7a6e0d89 3804 entry = bfd_zalloc (abfd, sizeof (*entry));
6a40cf0c
NC
3805 entry->ndx = section_number++;
3806 elf_symtab_shndx_list (abfd) = entry;
3807 entry->hdr.sh_name
9ad5cbcf 3808 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
b34976b6 3809 ".symtab_shndx", FALSE);
6a40cf0c 3810 if (entry->hdr.sh_name == (unsigned int) -1)
b34976b6 3811 return FALSE;
9ad5cbcf 3812 }
12bd6957 3813 elf_strtab_sec (abfd) = section_number++;
2b0f7ef9 3814 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
252b5132
RH
3815 }
3816
dd905818
NC
3817 elf_shstrtab_sec (abfd) = section_number++;
3818 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3819 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3820
1c52a645
L
3821 if (section_number >= SHN_LORESERVE)
3822 {
695344c0 3823 /* xgettext:c-format */
871b3ab2 3824 _bfd_error_handler (_("%pB: too many sections: %u"),
1c52a645
L
3825 abfd, section_number);
3826 return FALSE;
3827 }
3828
9ad5cbcf 3829 elf_numsections (abfd) = section_number;
252b5132
RH
3830 elf_elfheader (abfd)->e_shnum = section_number;
3831
3832 /* Set up the list of section header pointers, in agreement with the
3833 indices. */
446f7ed5
AM
3834 amt = section_number * sizeof (Elf_Internal_Shdr *);
3835 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
252b5132 3836 if (i_shdrp == NULL)
b34976b6 3837 return FALSE;
252b5132 3838
a50b1753 3839 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
07d6d2b8 3840 sizeof (Elf_Internal_Shdr));
252b5132
RH
3841 if (i_shdrp[0] == NULL)
3842 {
3843 bfd_release (abfd, i_shdrp);
b34976b6 3844 return FALSE;
252b5132 3845 }
252b5132
RH
3846
3847 elf_elfsections (abfd) = i_shdrp;
3848
12bd6957 3849 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3516e984 3850 if (need_symtab)
252b5132 3851 {
12bd6957 3852 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
4fbb74a6 3853 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
9ad5cbcf 3854 {
6a40cf0c
NC
3855 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3856 BFD_ASSERT (entry != NULL);
3857 i_shdrp[entry->ndx] = & entry->hdr;
3858 entry->hdr.sh_link = elf_onesymtab (abfd);
9ad5cbcf 3859 }
12bd6957
AM
3860 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3861 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
252b5132 3862 }
38ce5b11 3863
252b5132
RH
3864 for (sec = abfd->sections; sec; sec = sec->next)
3865 {
252b5132 3866 asection *s;
252b5132 3867
91d6fa6a
NC
3868 d = elf_section_data (sec);
3869
252b5132 3870 i_shdrp[d->this_idx] = &d->this_hdr;
d4730f92
BS
3871 if (d->rel.idx != 0)
3872 i_shdrp[d->rel.idx] = d->rel.hdr;
3873 if (d->rela.idx != 0)
3874 i_shdrp[d->rela.idx] = d->rela.hdr;
252b5132
RH
3875
3876 /* Fill in the sh_link and sh_info fields while we're at it. */
3877
3878 /* sh_link of a reloc section is the section index of the symbol
3879 table. sh_info is the section index of the section to which
3880 the relocation entries apply. */
d4730f92 3881 if (d->rel.idx != 0)
252b5132 3882 {
12bd6957 3883 d->rel.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3884 d->rel.hdr->sh_info = d->this_idx;
9ef5d938 3885 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
252b5132 3886 }
d4730f92 3887 if (d->rela.idx != 0)
23bc299b 3888 {
12bd6957 3889 d->rela.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3890 d->rela.hdr->sh_info = d->this_idx;
9ef5d938 3891 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
23bc299b 3892 }
252b5132 3893
38ce5b11
L
3894 /* We need to set up sh_link for SHF_LINK_ORDER. */
3895 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3896 {
3897 s = elf_linked_to_section (sec);
3898 if (s)
38ce5b11 3899 {
f2876037 3900 /* elf_linked_to_section points to the input section. */
ccd2ec6a 3901 if (link_info != NULL)
38ce5b11 3902 {
f2876037 3903 /* Check discarded linkonce section. */
dbaa2011 3904 if (discarded_section (s))
38ce5b11 3905 {
ccd2ec6a 3906 asection *kept;
4eca0228 3907 _bfd_error_handler
695344c0 3908 /* xgettext:c-format */
871b3ab2
AM
3909 (_("%pB: sh_link of section `%pA' points to"
3910 " discarded section `%pA' of `%pB'"),
ccd2ec6a
L
3911 abfd, d->this_hdr.bfd_section,
3912 s, s->owner);
3913 /* Point to the kept section if it has the same
3914 size as the discarded one. */
c0f00686 3915 kept = _bfd_elf_check_kept_section (s, link_info);
ccd2ec6a 3916 if (kept == NULL)
185d09ad 3917 {
ccd2ec6a
L
3918 bfd_set_error (bfd_error_bad_value);
3919 return FALSE;
185d09ad 3920 }
ccd2ec6a 3921 s = kept;
38ce5b11 3922 }
e424ecc8 3923
ccd2ec6a
L
3924 s = s->output_section;
3925 BFD_ASSERT (s != NULL);
38ce5b11 3926 }
f2876037
L
3927 else
3928 {
3929 /* Handle objcopy. */
3930 if (s->output_section == NULL)
3931 {
4eca0228 3932 _bfd_error_handler
695344c0 3933 /* xgettext:c-format */
871b3ab2
AM
3934 (_("%pB: sh_link of section `%pA' points to"
3935 " removed section `%pA' of `%pB'"),
f2876037
L
3936 abfd, d->this_hdr.bfd_section, s, s->owner);
3937 bfd_set_error (bfd_error_bad_value);
3938 return FALSE;
3939 }
3940 s = s->output_section;
3941 }
ccd2ec6a
L
3942 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3943 }
3944 else
3945 {
3946 /* PR 290:
3947 The Intel C compiler generates SHT_IA_64_UNWIND with
3948 SHF_LINK_ORDER. But it doesn't set the sh_link or
3949 sh_info fields. Hence we could get the situation
08a40648 3950 where s is NULL. */
ccd2ec6a
L
3951 const struct elf_backend_data *bed
3952 = get_elf_backend_data (abfd);
3953 if (bed->link_order_error_handler)
3954 bed->link_order_error_handler
695344c0 3955 /* xgettext:c-format */
871b3ab2 3956 (_("%pB: warning: sh_link not set for section `%pA'"),
ccd2ec6a 3957 abfd, sec);
38ce5b11
L
3958 }
3959 }
3960
252b5132
RH
3961 switch (d->this_hdr.sh_type)
3962 {
3963 case SHT_REL:
3964 case SHT_RELA:
3965 /* A reloc section which we are treating as a normal BFD
3966 section. sh_link is the section index of the symbol
3967 table. sh_info is the section index of the section to
3968 which the relocation entries apply. We assume that an
3969 allocated reloc section uses the dynamic symbol table.
3970 FIXME: How can we be sure? */
3971 s = bfd_get_section_by_name (abfd, ".dynsym");
3972 if (s != NULL)
3973 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3974
bce964aa 3975 s = elf_get_reloc_section (sec);
252b5132 3976 if (s != NULL)
9ef5d938
L
3977 {
3978 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3979 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3980 }
252b5132
RH
3981 break;
3982
3983 case SHT_STRTAB:
3984 /* We assume that a section named .stab*str is a stabs
3985 string section. We look for a section with the same name
3986 but without the trailing ``str'', and set its sh_link
3987 field to point to this section. */
0112cd26 3988 if (CONST_STRNEQ (sec->name, ".stab")
252b5132
RH
3989 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3990 {
3991 size_t len;
3992 char *alc;
3993
3994 len = strlen (sec->name);
a50b1753 3995 alc = (char *) bfd_malloc (len - 2);
252b5132 3996 if (alc == NULL)
b34976b6 3997 return FALSE;
d4c88bbb 3998 memcpy (alc, sec->name, len - 3);
252b5132
RH
3999 alc[len - 3] = '\0';
4000 s = bfd_get_section_by_name (abfd, alc);
4001 free (alc);
4002 if (s != NULL)
4003 {
4004 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
4005
4006 /* This is a .stab section. */
0594c12d
AM
4007 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
4008 elf_section_data (s)->this_hdr.sh_entsize
4009 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
252b5132
RH
4010 }
4011 }
4012 break;
4013
4014 case SHT_DYNAMIC:
4015 case SHT_DYNSYM:
4016 case SHT_GNU_verneed:
4017 case SHT_GNU_verdef:
4018 /* sh_link is the section header index of the string table
4019 used for the dynamic entries, or the symbol table, or the
4020 version strings. */
4021 s = bfd_get_section_by_name (abfd, ".dynstr");
4022 if (s != NULL)
4023 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4024 break;
4025
7f1204bb
JJ
4026 case SHT_GNU_LIBLIST:
4027 /* sh_link is the section header index of the prelink library
08a40648
AM
4028 list used for the dynamic entries, or the symbol table, or
4029 the version strings. */
7f1204bb
JJ
4030 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
4031 ? ".dynstr" : ".gnu.libstr");
4032 if (s != NULL)
4033 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4034 break;
4035
252b5132 4036 case SHT_HASH:
fdc90cb4 4037 case SHT_GNU_HASH:
252b5132
RH
4038 case SHT_GNU_versym:
4039 /* sh_link is the section header index of the symbol table
4040 this hash table or version table is for. */
4041 s = bfd_get_section_by_name (abfd, ".dynsym");
4042 if (s != NULL)
4043 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4044 break;
dbb410c3
AM
4045
4046 case SHT_GROUP:
12bd6957 4047 d->this_hdr.sh_link = elf_onesymtab (abfd);
252b5132
RH
4048 }
4049 }
4050
3e19fb8f
L
4051 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
4052 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
4053 debug section name from .debug_* to .zdebug_* if needed. */
4054
b34976b6 4055 return TRUE;
252b5132
RH
4056}
4057
5372391b 4058static bfd_boolean
217aa764 4059sym_is_global (bfd *abfd, asymbol *sym)
252b5132
RH
4060{
4061 /* If the backend has a special mapping, use it. */
9c5bfbb7 4062 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764
AM
4063 if (bed->elf_backend_sym_is_global)
4064 return (*bed->elf_backend_sym_is_global) (abfd, sym);
252b5132 4065
e47bf690 4066 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
e6f7f6d1
AM
4067 || bfd_is_und_section (bfd_asymbol_section (sym))
4068 || bfd_is_com_section (bfd_asymbol_section (sym)));
252b5132
RH
4069}
4070
76359541
TP
4071/* Filter global symbols of ABFD to include in the import library. All
4072 SYMCOUNT symbols of ABFD can be examined from their pointers in
4073 SYMS. Pointers of symbols to keep should be stored contiguously at
4074 the beginning of that array.
4075
4076 Returns the number of symbols to keep. */
4077
4078unsigned int
4079_bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4080 asymbol **syms, long symcount)
4081{
4082 long src_count, dst_count = 0;
4083
4084 for (src_count = 0; src_count < symcount; src_count++)
4085 {
4086 asymbol *sym = syms[src_count];
4087 char *name = (char *) bfd_asymbol_name (sym);
4088 struct bfd_link_hash_entry *h;
4089
4090 if (!sym_is_global (abfd, sym))
4091 continue;
4092
4093 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
5df1bc57
AM
4094 if (h == NULL)
4095 continue;
76359541
TP
4096 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4097 continue;
76359541
TP
4098 if (h->linker_def || h->ldscript_def)
4099 continue;
4100
4101 syms[dst_count++] = sym;
4102 }
4103
4104 syms[dst_count] = NULL;
4105
4106 return dst_count;
4107}
4108
5372391b 4109/* Don't output section symbols for sections that are not going to be
c6d8cab4 4110 output, that are duplicates or there is no BFD section. */
5372391b
AM
4111
4112static bfd_boolean
4113ignore_section_sym (bfd *abfd, asymbol *sym)
4114{
c6d8cab4
L
4115 elf_symbol_type *type_ptr;
4116
db0c309f
NC
4117 if (sym == NULL)
4118 return FALSE;
4119
c6d8cab4
L
4120 if ((sym->flags & BSF_SECTION_SYM) == 0)
4121 return FALSE;
4122
db0c309f
NC
4123 if (sym->section == NULL)
4124 return TRUE;
4125
c6d8cab4
L
4126 type_ptr = elf_symbol_from (abfd, sym);
4127 return ((type_ptr != NULL
4128 && type_ptr->internal_elf_sym.st_shndx != 0
4129 && bfd_is_abs_section (sym->section))
4130 || !(sym->section->owner == abfd
db0c309f
NC
4131 || (sym->section->output_section != NULL
4132 && sym->section->output_section->owner == abfd
2633a79c
AM
4133 && sym->section->output_offset == 0)
4134 || bfd_is_abs_section (sym->section)));
5372391b
AM
4135}
4136
2633a79c
AM
4137/* Map symbol from it's internal number to the external number, moving
4138 all local symbols to be at the head of the list. */
4139
b34976b6 4140static bfd_boolean
12bd6957 4141elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
252b5132 4142{
dc810e39 4143 unsigned int symcount = bfd_get_symcount (abfd);
252b5132
RH
4144 asymbol **syms = bfd_get_outsymbols (abfd);
4145 asymbol **sect_syms;
dc810e39
AM
4146 unsigned int num_locals = 0;
4147 unsigned int num_globals = 0;
4148 unsigned int num_locals2 = 0;
4149 unsigned int num_globals2 = 0;
7292b3ac 4150 unsigned int max_index = 0;
dc810e39 4151 unsigned int idx;
252b5132
RH
4152 asection *asect;
4153 asymbol **new_syms;
446f7ed5 4154 size_t amt;
252b5132
RH
4155
4156#ifdef DEBUG
4157 fprintf (stderr, "elf_map_symbols\n");
4158 fflush (stderr);
4159#endif
4160
252b5132
RH
4161 for (asect = abfd->sections; asect; asect = asect->next)
4162 {
4163 if (max_index < asect->index)
4164 max_index = asect->index;
4165 }
4166
4167 max_index++;
446f7ed5
AM
4168 amt = max_index * sizeof (asymbol *);
4169 sect_syms = (asymbol **) bfd_zalloc (abfd, amt);
252b5132 4170 if (sect_syms == NULL)
b34976b6 4171 return FALSE;
252b5132 4172 elf_section_syms (abfd) = sect_syms;
4e89ac30 4173 elf_num_section_syms (abfd) = max_index;
252b5132 4174
079e9a2f
AM
4175 /* Init sect_syms entries for any section symbols we have already
4176 decided to output. */
252b5132
RH
4177 for (idx = 0; idx < symcount; idx++)
4178 {
dc810e39 4179 asymbol *sym = syms[idx];
c044fabd 4180
252b5132 4181 if ((sym->flags & BSF_SECTION_SYM) != 0
0f0a5e58 4182 && sym->value == 0
2633a79c
AM
4183 && !ignore_section_sym (abfd, sym)
4184 && !bfd_is_abs_section (sym->section))
252b5132 4185 {
5372391b 4186 asection *sec = sym->section;
252b5132 4187
5372391b
AM
4188 if (sec->owner != abfd)
4189 sec = sec->output_section;
252b5132 4190
5372391b 4191 sect_syms[sec->index] = syms[idx];
252b5132
RH
4192 }
4193 }
4194
252b5132
RH
4195 /* Classify all of the symbols. */
4196 for (idx = 0; idx < symcount; idx++)
4197 {
2633a79c 4198 if (sym_is_global (abfd, syms[idx]))
252b5132 4199 num_globals++;
2633a79c
AM
4200 else if (!ignore_section_sym (abfd, syms[idx]))
4201 num_locals++;
252b5132 4202 }
079e9a2f 4203
5372391b 4204 /* We will be adding a section symbol for each normal BFD section. Most
079e9a2f
AM
4205 sections will already have a section symbol in outsymbols, but
4206 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4207 at least in that case. */
252b5132
RH
4208 for (asect = abfd->sections; asect; asect = asect->next)
4209 {
079e9a2f 4210 if (sect_syms[asect->index] == NULL)
252b5132 4211 {
079e9a2f 4212 if (!sym_is_global (abfd, asect->symbol))
252b5132
RH
4213 num_locals++;
4214 else
4215 num_globals++;
252b5132
RH
4216 }
4217 }
4218
4219 /* Now sort the symbols so the local symbols are first. */
446f7ed5
AM
4220 amt = (num_locals + num_globals) * sizeof (asymbol *);
4221 new_syms = (asymbol **) bfd_alloc (abfd, amt);
252b5132 4222 if (new_syms == NULL)
b34976b6 4223 return FALSE;
252b5132
RH
4224
4225 for (idx = 0; idx < symcount; idx++)
4226 {
4227 asymbol *sym = syms[idx];
dc810e39 4228 unsigned int i;
252b5132 4229
2633a79c
AM
4230 if (sym_is_global (abfd, sym))
4231 i = num_locals + num_globals2++;
4232 else if (!ignore_section_sym (abfd, sym))
252b5132
RH
4233 i = num_locals2++;
4234 else
2633a79c 4235 continue;
252b5132
RH
4236 new_syms[i] = sym;
4237 sym->udata.i = i + 1;
4238 }
4239 for (asect = abfd->sections; asect; asect = asect->next)
4240 {
079e9a2f 4241 if (sect_syms[asect->index] == NULL)
252b5132 4242 {
079e9a2f 4243 asymbol *sym = asect->symbol;
dc810e39 4244 unsigned int i;
252b5132 4245
079e9a2f 4246 sect_syms[asect->index] = sym;
252b5132
RH
4247 if (!sym_is_global (abfd, sym))
4248 i = num_locals2++;
4249 else
4250 i = num_locals + num_globals2++;
4251 new_syms[i] = sym;
4252 sym->udata.i = i + 1;
4253 }
4254 }
4255
4256 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4257
12bd6957 4258 *pnum_locals = num_locals;
b34976b6 4259 return TRUE;
252b5132
RH
4260}
4261
4262/* Align to the maximum file alignment that could be required for any
4263 ELF data structure. */
4264
268b6b39 4265static inline file_ptr
217aa764 4266align_file_position (file_ptr off, int align)
252b5132
RH
4267{
4268 return (off + align - 1) & ~(align - 1);
4269}
4270
4271/* Assign a file position to a section, optionally aligning to the
4272 required section alignment. */
4273
217aa764
AM
4274file_ptr
4275_bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4276 file_ptr offset,
4277 bfd_boolean align)
252b5132 4278{
72de5009
AM
4279 if (align && i_shdrp->sh_addralign > 1)
4280 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
252b5132
RH
4281 i_shdrp->sh_offset = offset;
4282 if (i_shdrp->bfd_section != NULL)
4283 i_shdrp->bfd_section->filepos = offset;
4284 if (i_shdrp->sh_type != SHT_NOBITS)
4285 offset += i_shdrp->sh_size;
4286 return offset;
4287}
4288
4289/* Compute the file positions we are going to put the sections at, and
4290 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4291 is not NULL, this is being called by the ELF backend linker. */
4292
b34976b6 4293bfd_boolean
217aa764
AM
4294_bfd_elf_compute_section_file_positions (bfd *abfd,
4295 struct bfd_link_info *link_info)
252b5132 4296{
9c5bfbb7 4297 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 4298 struct fake_section_arg fsargs;
b34976b6 4299 bfd_boolean failed;
ef10c3ac 4300 struct elf_strtab_hash *strtab = NULL;
252b5132 4301 Elf_Internal_Shdr *shstrtab_hdr;
3516e984 4302 bfd_boolean need_symtab;
252b5132
RH
4303
4304 if (abfd->output_has_begun)
b34976b6 4305 return TRUE;
252b5132
RH
4306
4307 /* Do any elf backend specific processing first. */
4308 if (bed->elf_backend_begin_write_processing)
4309 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4310
ed7e9d0b 4311 if (!(*bed->elf_backend_init_file_header) (abfd, link_info))
b34976b6 4312 return FALSE;
252b5132 4313
d4730f92
BS
4314 fsargs.failed = FALSE;
4315 fsargs.link_info = link_info;
4316 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4317 if (fsargs.failed)
b34976b6 4318 return FALSE;
252b5132 4319
da9f89d4 4320 if (!assign_section_numbers (abfd, link_info))
b34976b6 4321 return FALSE;
252b5132
RH
4322
4323 /* The backend linker builds symbol table information itself. */
3516e984
L
4324 need_symtab = (link_info == NULL
4325 && (bfd_get_symcount (abfd) > 0
4326 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4327 == HAS_RELOC)));
4328 if (need_symtab)
252b5132
RH
4329 {
4330 /* Non-zero if doing a relocatable link. */
4331 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4332
4333 if (! swap_out_syms (abfd, &strtab, relocatable_p))
b34976b6 4334 return FALSE;
252b5132
RH
4335 }
4336
d4730f92 4337 failed = FALSE;
1126897b 4338 if (link_info == NULL)
dbb410c3 4339 {
1126897b 4340 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
dbb410c3 4341 if (failed)
b34976b6 4342 return FALSE;
dbb410c3
AM
4343 }
4344
252b5132 4345 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
ed7e9d0b 4346 /* sh_name was set in init_file_header. */
252b5132 4347 shstrtab_hdr->sh_type = SHT_STRTAB;
84865015 4348 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
252b5132 4349 shstrtab_hdr->sh_addr = 0;
946748d5 4350 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4351 shstrtab_hdr->sh_entsize = 0;
4352 shstrtab_hdr->sh_link = 0;
4353 shstrtab_hdr->sh_info = 0;
3e19fb8f 4354 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4355 shstrtab_hdr->sh_addralign = 1;
4356
c84fca4d 4357 if (!assign_file_positions_except_relocs (abfd, link_info))
b34976b6 4358 return FALSE;
252b5132 4359
3516e984 4360 if (need_symtab)
252b5132
RH
4361 {
4362 file_ptr off;
4363 Elf_Internal_Shdr *hdr;
4364
12bd6957 4365 off = elf_next_file_pos (abfd);
252b5132 4366
6a40cf0c 4367 hdr = & elf_symtab_hdr (abfd);
b34976b6 4368 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4369
6a40cf0c
NC
4370 if (elf_symtab_shndx_list (abfd) != NULL)
4371 {
4372 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4373 if (hdr->sh_size != 0)
4374 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4375 /* FIXME: What about other symtab_shndx sections in the list ? */
4376 }
9ad5cbcf 4377
252b5132 4378 hdr = &elf_tdata (abfd)->strtab_hdr;
b34976b6 4379 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4380
12bd6957 4381 elf_next_file_pos (abfd) = off;
252b5132
RH
4382
4383 /* Now that we know where the .strtab section goes, write it
08a40648 4384 out. */
252b5132 4385 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 4386 || ! _bfd_elf_strtab_emit (abfd, strtab))
b34976b6 4387 return FALSE;
ef10c3ac 4388 _bfd_elf_strtab_free (strtab);
252b5132
RH
4389 }
4390
b34976b6 4391 abfd->output_has_begun = TRUE;
252b5132 4392
b34976b6 4393 return TRUE;
252b5132
RH
4394}
4395
8ded5a0f
AM
4396/* Make an initial estimate of the size of the program header. If we
4397 get the number wrong here, we'll redo section placement. */
4398
4399static bfd_size_type
4400get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4401{
4402 size_t segs;
4403 asection *s;
2b05f1b7 4404 const struct elf_backend_data *bed;
8ded5a0f
AM
4405
4406 /* Assume we will need exactly two PT_LOAD segments: one for text
4407 and one for data. */
4408 segs = 2;
4409
4410 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4411 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4412 {
4413 /* If we have a loadable interpreter section, we need a
4414 PT_INTERP segment. In this case, assume we also need a
4415 PT_PHDR segment, although that may not be true for all
4416 targets. */
e9a38e0f 4417 segs += 2;
8ded5a0f
AM
4418 }
4419
4420 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4421 {
4422 /* We need a PT_DYNAMIC segment. */
4423 ++segs;
f210dcff 4424 }
08a40648 4425
ceae84aa 4426 if (info != NULL && info->relro)
f210dcff
L
4427 {
4428 /* We need a PT_GNU_RELRO segment. */
4429 ++segs;
8ded5a0f
AM
4430 }
4431
12bd6957 4432 if (elf_eh_frame_hdr (abfd))
8ded5a0f
AM
4433 {
4434 /* We need a PT_GNU_EH_FRAME segment. */
4435 ++segs;
4436 }
4437
12bd6957 4438 if (elf_stack_flags (abfd))
8ded5a0f 4439 {
2b05f1b7
L
4440 /* We need a PT_GNU_STACK segment. */
4441 ++segs;
4442 }
94b11780 4443
0a59decb
L
4444 s = bfd_get_section_by_name (abfd,
4445 NOTE_GNU_PROPERTY_SECTION_NAME);
4446 if (s != NULL && s->size != 0)
4447 {
4448 /* We need a PT_GNU_PROPERTY segment. */
4449 ++segs;
4450 }
4451
2b05f1b7
L
4452 for (s = abfd->sections; s != NULL; s = s->next)
4453 {
8ded5a0f 4454 if ((s->flags & SEC_LOAD) != 0
23e463ed 4455 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 4456 {
23e463ed 4457 unsigned int alignment_power;
8ded5a0f
AM
4458 /* We need a PT_NOTE segment. */
4459 ++segs;
23e463ed
L
4460 /* Try to create just one PT_NOTE segment for all adjacent
4461 loadable SHT_NOTE sections. gABI requires that within a
4462 PT_NOTE segment (and also inside of each SHT_NOTE section)
4463 each note should have the same alignment. So we check
4464 whether the sections are correctly aligned. */
4465 alignment_power = s->alignment_power;
4466 while (s->next != NULL
4467 && s->next->alignment_power == alignment_power
4468 && (s->next->flags & SEC_LOAD) != 0
4469 && elf_section_type (s->next) == SHT_NOTE)
4470 s = s->next;
8ded5a0f
AM
4471 }
4472 }
4473
4474 for (s = abfd->sections; s != NULL; s = s->next)
4475 {
4476 if (s->flags & SEC_THREAD_LOCAL)
4477 {
4478 /* We need a PT_TLS segment. */
4479 ++segs;
4480 break;
4481 }
4482 }
4483
2b05f1b7 4484 bed = get_elf_backend_data (abfd);
a91e1603 4485
df3a023b
AM
4486 if ((abfd->flags & D_PAGED) != 0
4487 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4488 {
4489 /* Add a PT_GNU_MBIND segment for each mbind section. */
4490 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4491 for (s = abfd->sections; s != NULL; s = s->next)
4492 if (elf_section_flags (s) & SHF_GNU_MBIND)
4493 {
4494 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4495 {
4496 _bfd_error_handler
4497 /* xgettext:c-format */
4498 (_("%pB: GNU_MBIND section `%pA' has invalid "
4499 "sh_info field: %d"),
4500 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4501 continue;
4502 }
4503 /* Align mbind section to page size. */
4504 if (s->alignment_power < page_align_power)
4505 s->alignment_power = page_align_power;
4506 segs ++;
4507 }
4508 }
4509
4510 /* Let the backend count up any program headers it might need. */
4511 if (bed->elf_backend_additional_program_headers)
8ded5a0f
AM
4512 {
4513 int a;
4514
4515 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4516 if (a == -1)
4517 abort ();
4518 segs += a;
4519 }
4520
4521 return segs * bed->s->sizeof_phdr;
4522}
4523
2ea37f1c
NC
4524/* Find the segment that contains the output_section of section. */
4525
4526Elf_Internal_Phdr *
4527_bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4528{
4529 struct elf_segment_map *m;
4530 Elf_Internal_Phdr *p;
4531
12bd6957 4532 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
2ea37f1c
NC
4533 m != NULL;
4534 m = m->next, p++)
4535 {
4536 int i;
4537
4538 for (i = m->count - 1; i >= 0; i--)
4539 if (m->sections[i] == section)
4540 return p;
4541 }
4542
4543 return NULL;
4544}
4545
252b5132
RH
4546/* Create a mapping from a set of sections to a program segment. */
4547
217aa764
AM
4548static struct elf_segment_map *
4549make_mapping (bfd *abfd,
4550 asection **sections,
4551 unsigned int from,
4552 unsigned int to,
4553 bfd_boolean phdr)
252b5132
RH
4554{
4555 struct elf_segment_map *m;
4556 unsigned int i;
4557 asection **hdrpp;
986f0783 4558 size_t amt;
252b5132 4559
00bee008
AM
4560 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4561 amt += (to - from) * sizeof (asection *);
a50b1753 4562 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
4563 if (m == NULL)
4564 return NULL;
4565 m->next = NULL;
4566 m->p_type = PT_LOAD;
4567 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4568 m->sections[i - from] = *hdrpp;
4569 m->count = to - from;
4570
4571 if (from == 0 && phdr)
4572 {
4573 /* Include the headers in the first PT_LOAD segment. */
4574 m->includes_filehdr = 1;
4575 m->includes_phdrs = 1;
4576 }
4577
4578 return m;
4579}
4580
229fcec5
MM
4581/* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4582 on failure. */
4583
4584struct elf_segment_map *
4585_bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4586{
4587 struct elf_segment_map *m;
4588
a50b1753 4589 m = (struct elf_segment_map *) bfd_zalloc (abfd,
07d6d2b8 4590 sizeof (struct elf_segment_map));
229fcec5
MM
4591 if (m == NULL)
4592 return NULL;
4593 m->next = NULL;
4594 m->p_type = PT_DYNAMIC;
4595 m->count = 1;
4596 m->sections[0] = dynsec;
08a40648 4597
229fcec5
MM
4598 return m;
4599}
4600
8ded5a0f 4601/* Possibly add or remove segments from the segment map. */
252b5132 4602
b34976b6 4603static bfd_boolean
3dea8fca
AM
4604elf_modify_segment_map (bfd *abfd,
4605 struct bfd_link_info *info,
4606 bfd_boolean remove_empty_load)
252b5132 4607{
252e386e 4608 struct elf_segment_map **m;
8ded5a0f 4609 const struct elf_backend_data *bed;
252b5132 4610
8ded5a0f
AM
4611 /* The placement algorithm assumes that non allocated sections are
4612 not in PT_LOAD segments. We ensure this here by removing such
4613 sections from the segment map. We also remove excluded
252e386e
AM
4614 sections. Finally, any PT_LOAD segment without sections is
4615 removed. */
12bd6957 4616 m = &elf_seg_map (abfd);
252e386e 4617 while (*m)
8ded5a0f
AM
4618 {
4619 unsigned int i, new_count;
252b5132 4620
252e386e 4621 for (new_count = 0, i = 0; i < (*m)->count; i++)
8ded5a0f 4622 {
252e386e
AM
4623 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4624 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4625 || (*m)->p_type != PT_LOAD))
8ded5a0f 4626 {
252e386e
AM
4627 (*m)->sections[new_count] = (*m)->sections[i];
4628 new_count++;
8ded5a0f
AM
4629 }
4630 }
252e386e 4631 (*m)->count = new_count;
252b5132 4632
1a9ccd70
NC
4633 if (remove_empty_load
4634 && (*m)->p_type == PT_LOAD
4635 && (*m)->count == 0
4636 && !(*m)->includes_phdrs)
252e386e
AM
4637 *m = (*m)->next;
4638 else
4639 m = &(*m)->next;
8ded5a0f 4640 }
252b5132 4641
8ded5a0f
AM
4642 bed = get_elf_backend_data (abfd);
4643 if (bed->elf_backend_modify_segment_map != NULL)
252b5132 4644 {
252e386e 4645 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
8ded5a0f 4646 return FALSE;
252b5132 4647 }
252b5132 4648
8ded5a0f
AM
4649 return TRUE;
4650}
252b5132 4651
dbc88fc1
AM
4652#define IS_TBSS(s) \
4653 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4654
8ded5a0f 4655/* Set up a mapping from BFD sections to program segments. */
252b5132 4656
8ded5a0f
AM
4657bfd_boolean
4658_bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4659{
4660 unsigned int count;
4661 struct elf_segment_map *m;
4662 asection **sections = NULL;
4663 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3dea8fca 4664 bfd_boolean no_user_phdrs;
252b5132 4665
12bd6957 4666 no_user_phdrs = elf_seg_map (abfd) == NULL;
d324f6d6
RM
4667
4668 if (info != NULL)
4669 info->user_phdrs = !no_user_phdrs;
4670
3dea8fca 4671 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
252b5132 4672 {
8ded5a0f
AM
4673 asection *s;
4674 unsigned int i;
4675 struct elf_segment_map *mfirst;
4676 struct elf_segment_map **pm;
4677 asection *last_hdr;
4678 bfd_vma last_size;
00bee008 4679 unsigned int hdr_index;
8ded5a0f
AM
4680 bfd_vma maxpagesize;
4681 asection **hdrpp;
64029e93 4682 bfd_boolean phdr_in_segment;
8ded5a0f 4683 bfd_boolean writable;
2888249f 4684 bfd_boolean executable;
446f7ed5 4685 unsigned int tls_count = 0;
8ded5a0f 4686 asection *first_tls = NULL;
a91e1603 4687 asection *first_mbind = NULL;
8ded5a0f 4688 asection *dynsec, *eh_frame_hdr;
446f7ed5 4689 size_t amt;
8d06853e 4690 bfd_vma addr_mask, wrap_to = 0;
64029e93 4691 bfd_size_type phdr_size;
252b5132 4692
8ded5a0f 4693 /* Select the allocated sections, and sort them. */
252b5132 4694
446f7ed5
AM
4695 amt = bfd_count_sections (abfd) * sizeof (asection *);
4696 sections = (asection **) bfd_malloc (amt);
8ded5a0f 4697 if (sections == NULL)
252b5132 4698 goto error_return;
252b5132 4699
8d06853e
AM
4700 /* Calculate top address, avoiding undefined behaviour of shift
4701 left operator when shift count is equal to size of type
4702 being shifted. */
4703 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4704 addr_mask = (addr_mask << 1) + 1;
4705
8ded5a0f
AM
4706 i = 0;
4707 for (s = abfd->sections; s != NULL; s = s->next)
4708 {
4709 if ((s->flags & SEC_ALLOC) != 0)
4710 {
48db3297
AM
4711 /* target_index is unused until bfd_elf_final_link
4712 starts output of section symbols. Use it to make
4713 qsort stable. */
4714 s->target_index = i;
8ded5a0f
AM
4715 sections[i] = s;
4716 ++i;
8d06853e
AM
4717 /* A wrapping section potentially clashes with header. */
4718 if (((s->lma + s->size) & addr_mask) < (s->lma & addr_mask))
4719 wrap_to = (s->lma + s->size) & addr_mask;
8ded5a0f
AM
4720 }
4721 }
4722 BFD_ASSERT (i <= bfd_count_sections (abfd));
4723 count = i;
252b5132 4724
8ded5a0f 4725 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
252b5132 4726
64029e93
AM
4727 phdr_size = elf_program_header_size (abfd);
4728 if (phdr_size == (bfd_size_type) -1)
4729 phdr_size = get_program_header_size (abfd, info);
4730 phdr_size += bed->s->sizeof_ehdr;
4731 maxpagesize = bed->maxpagesize;
4732 if (maxpagesize == 0)
4733 maxpagesize = 1;
4734 phdr_in_segment = info != NULL && info->load_phdrs;
4735 if (count != 0
4736 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4737 >= (phdr_size & (maxpagesize - 1))))
4738 /* For compatibility with old scripts that may not be using
4739 SIZEOF_HEADERS, add headers when it looks like space has
4740 been left for them. */
4741 phdr_in_segment = TRUE;
252b5132 4742
64029e93 4743 /* Build the mapping. */
8ded5a0f
AM
4744 mfirst = NULL;
4745 pm = &mfirst;
252b5132 4746
8ded5a0f
AM
4747 /* If we have a .interp section, then create a PT_PHDR segment for
4748 the program headers and a PT_INTERP segment for the .interp
4749 section. */
4750 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4751 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4752 {
4753 amt = sizeof (struct elf_segment_map);
a50b1753 4754 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4755 if (m == NULL)
4756 goto error_return;
4757 m->next = NULL;
4758 m->p_type = PT_PHDR;
f882209d 4759 m->p_flags = PF_R;
8ded5a0f
AM
4760 m->p_flags_valid = 1;
4761 m->includes_phdrs = 1;
64029e93 4762 phdr_in_segment = TRUE;
8ded5a0f
AM
4763 *pm = m;
4764 pm = &m->next;
252b5132 4765
8ded5a0f 4766 amt = sizeof (struct elf_segment_map);
a50b1753 4767 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4768 if (m == NULL)
4769 goto error_return;
4770 m->next = NULL;
4771 m->p_type = PT_INTERP;
4772 m->count = 1;
4773 m->sections[0] = s;
4774
4775 *pm = m;
4776 pm = &m->next;
252b5132 4777 }
8ded5a0f
AM
4778
4779 /* Look through the sections. We put sections in the same program
4780 segment when the start of the second section can be placed within
4781 a few bytes of the end of the first section. */
4782 last_hdr = NULL;
4783 last_size = 0;
00bee008 4784 hdr_index = 0;
8ded5a0f 4785 writable = FALSE;
2888249f 4786 executable = FALSE;
8ded5a0f
AM
4787 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4788 if (dynsec != NULL
4789 && (dynsec->flags & SEC_LOAD) == 0)
4790 dynsec = NULL;
4791
64029e93
AM
4792 if ((abfd->flags & D_PAGED) == 0)
4793 phdr_in_segment = FALSE;
4794
8ded5a0f
AM
4795 /* Deal with -Ttext or something similar such that the first section
4796 is not adjacent to the program headers. This is an
4797 approximation, since at this point we don't know exactly how many
4798 program headers we will need. */
64029e93 4799 if (phdr_in_segment && count > 0)
252b5132 4800 {
64029e93
AM
4801 bfd_vma phdr_lma;
4802 bfd_boolean separate_phdr = FALSE;
4803
4804 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4805 if (info != NULL
4806 && info->separate_code
4807 && (sections[0]->flags & SEC_CODE) != 0)
1a9ccd70 4808 {
64029e93
AM
4809 /* If data sections should be separate from code and
4810 thus not executable, and the first section is
4811 executable then put the file and program headers in
4812 their own PT_LOAD. */
4813 separate_phdr = TRUE;
4814 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4815 == (sections[0]->lma & addr_mask & -maxpagesize)))
4816 {
4817 /* The file and program headers are currently on the
4818 same page as the first section. Put them on the
4819 previous page if we can. */
4820 if (phdr_lma >= maxpagesize)
4821 phdr_lma -= maxpagesize;
4822 else
4823 separate_phdr = FALSE;
4824 }
4825 }
4826 if ((sections[0]->lma & addr_mask) < phdr_lma
4827 || (sections[0]->lma & addr_mask) < phdr_size)
4828 /* If file and program headers would be placed at the end
4829 of memory then it's probably better to omit them. */
4830 phdr_in_segment = FALSE;
4831 else if (phdr_lma < wrap_to)
4832 /* If a section wraps around to where we'll be placing
4833 file and program headers, then the headers will be
4834 overwritten. */
4835 phdr_in_segment = FALSE;
4836 else if (separate_phdr)
4837 {
4838 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4839 if (m == NULL)
4840 goto error_return;
4841 m->p_paddr = phdr_lma;
4842 m->p_vaddr_offset
4843 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4844 m->p_paddr_valid = 1;
4845 *pm = m;
4846 pm = &m->next;
4847 phdr_in_segment = FALSE;
1a9ccd70 4848 }
252b5132
RH
4849 }
4850
8ded5a0f 4851 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
252b5132 4852 {
8ded5a0f
AM
4853 asection *hdr;
4854 bfd_boolean new_segment;
4855
4856 hdr = *hdrpp;
4857
4858 /* See if this section and the last one will fit in the same
4859 segment. */
4860
4861 if (last_hdr == NULL)
4862 {
4863 /* If we don't have a segment yet, then we don't need a new
4864 one (we build the last one after this loop). */
4865 new_segment = FALSE;
4866 }
4867 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4868 {
4869 /* If this section has a different relation between the
4870 virtual address and the load address, then we need a new
4871 segment. */
4872 new_segment = TRUE;
4873 }
b5599592
AM
4874 else if (hdr->lma < last_hdr->lma + last_size
4875 || last_hdr->lma + last_size < last_hdr->lma)
4876 {
4877 /* If this section has a load address that makes it overlap
4878 the previous section, then we need a new segment. */
4879 new_segment = TRUE;
4880 }
76cb3a89
AM
4881 else if ((abfd->flags & D_PAGED) != 0
4882 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4883 == (hdr->lma & -maxpagesize)))
4884 {
4885 /* If we are demand paged then we can't map two disk
4886 pages onto the same memory page. */
4887 new_segment = FALSE;
4888 }
39948a60
NC
4889 /* In the next test we have to be careful when last_hdr->lma is close
4890 to the end of the address space. If the aligned address wraps
4891 around to the start of the address space, then there are no more
4892 pages left in memory and it is OK to assume that the current
4893 section can be included in the current segment. */
76cb3a89
AM
4894 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4895 + maxpagesize > last_hdr->lma)
4896 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4897 + maxpagesize <= hdr->lma))
8ded5a0f
AM
4898 {
4899 /* If putting this section in this segment would force us to
4900 skip a page in the segment, then we need a new segment. */
4901 new_segment = TRUE;
4902 }
4903 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
76cb3a89 4904 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
8ded5a0f 4905 {
e5654c0f
AM
4906 /* We don't want to put a loaded section after a
4907 nonloaded (ie. bss style) section in the same segment
4908 as that will force the non-loaded section to be loaded.
76cb3a89 4909 Consider .tbss sections as loaded for this purpose. */
8ded5a0f
AM
4910 new_segment = TRUE;
4911 }
4912 else if ((abfd->flags & D_PAGED) == 0)
4913 {
4914 /* If the file is not demand paged, which means that we
4915 don't require the sections to be correctly aligned in the
4916 file, then there is no other reason for a new segment. */
4917 new_segment = FALSE;
4918 }
2888249f
L
4919 else if (info != NULL
4920 && info->separate_code
4921 && executable != ((hdr->flags & SEC_CODE) != 0))
4922 {
4923 new_segment = TRUE;
4924 }
8ded5a0f 4925 else if (! writable
76cb3a89 4926 && (hdr->flags & SEC_READONLY) == 0)
8ded5a0f
AM
4927 {
4928 /* We don't want to put a writable section in a read only
76cb3a89 4929 segment. */
8ded5a0f
AM
4930 new_segment = TRUE;
4931 }
4932 else
4933 {
4934 /* Otherwise, we can use the same segment. */
4935 new_segment = FALSE;
4936 }
4937
2889e75b 4938 /* Allow interested parties a chance to override our decision. */
ceae84aa
AM
4939 if (last_hdr != NULL
4940 && info != NULL
4941 && info->callbacks->override_segment_assignment != NULL)
4942 new_segment
4943 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4944 last_hdr,
4945 new_segment);
2889e75b 4946
8ded5a0f
AM
4947 if (! new_segment)
4948 {
4949 if ((hdr->flags & SEC_READONLY) == 0)
4950 writable = TRUE;
2888249f
L
4951 if ((hdr->flags & SEC_CODE) != 0)
4952 executable = TRUE;
8ded5a0f
AM
4953 last_hdr = hdr;
4954 /* .tbss sections effectively have zero size. */
dbc88fc1 4955 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
8ded5a0f
AM
4956 continue;
4957 }
4958
4959 /* We need a new program segment. We must create a new program
00bee008 4960 header holding all the sections from hdr_index until hdr. */
8ded5a0f 4961
00bee008 4962 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4963 if (m == NULL)
4964 goto error_return;
4965
4966 *pm = m;
4967 pm = &m->next;
4968
252b5132 4969 if ((hdr->flags & SEC_READONLY) == 0)
b34976b6 4970 writable = TRUE;
8ded5a0f
AM
4971 else
4972 writable = FALSE;
4973
2888249f
L
4974 if ((hdr->flags & SEC_CODE) == 0)
4975 executable = FALSE;
4976 else
4977 executable = TRUE;
4978
baaff79e
JJ
4979 last_hdr = hdr;
4980 /* .tbss sections effectively have zero size. */
dbc88fc1 4981 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
00bee008 4982 hdr_index = i;
8ded5a0f 4983 phdr_in_segment = FALSE;
252b5132
RH
4984 }
4985
86b2281f
AM
4986 /* Create a final PT_LOAD program segment, but not if it's just
4987 for .tbss. */
4988 if (last_hdr != NULL
00bee008 4989 && (i - hdr_index != 1
dbc88fc1 4990 || !IS_TBSS (last_hdr)))
8ded5a0f 4991 {
00bee008 4992 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4993 if (m == NULL)
4994 goto error_return;
252b5132 4995
8ded5a0f
AM
4996 *pm = m;
4997 pm = &m->next;
4998 }
252b5132 4999
8ded5a0f
AM
5000 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
5001 if (dynsec != NULL)
5002 {
5003 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
5004 if (m == NULL)
5005 goto error_return;
5006 *pm = m;
5007 pm = &m->next;
5008 }
252b5132 5009
23e463ed 5010 /* For each batch of consecutive loadable SHT_NOTE sections,
1c5265b5
JJ
5011 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
5012 because if we link together nonloadable .note sections and
5013 loadable .note sections, we will generate two .note sections
23e463ed 5014 in the output file. */
8ded5a0f
AM
5015 for (s = abfd->sections; s != NULL; s = s->next)
5016 {
5017 if ((s->flags & SEC_LOAD) != 0
23e463ed 5018 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 5019 {
1c5265b5 5020 asection *s2;
23e463ed 5021 unsigned int alignment_power = s->alignment_power;
91d6fa6a
NC
5022
5023 count = 1;
23e463ed
L
5024 for (s2 = s; s2->next != NULL; s2 = s2->next)
5025 {
5026 if (s2->next->alignment_power == alignment_power
5027 && (s2->next->flags & SEC_LOAD) != 0
5028 && elf_section_type (s2->next) == SHT_NOTE
5029 && align_power (s2->lma + s2->size,
5030 alignment_power)
5031 == s2->next->lma)
5032 count++;
5033 else
5034 break;
5035 }
00bee008
AM
5036 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5037 amt += count * sizeof (asection *);
a50b1753 5038 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5039 if (m == NULL)
5040 goto error_return;
5041 m->next = NULL;
5042 m->p_type = PT_NOTE;
1c5265b5
JJ
5043 m->count = count;
5044 while (count > 1)
5045 {
5046 m->sections[m->count - count--] = s;
5047 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5048 s = s->next;
5049 }
5050 m->sections[m->count - 1] = s;
5051 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
8ded5a0f
AM
5052 *pm = m;
5053 pm = &m->next;
5054 }
5055 if (s->flags & SEC_THREAD_LOCAL)
5056 {
5057 if (! tls_count)
5058 first_tls = s;
5059 tls_count++;
5060 }
a91e1603
L
5061 if (first_mbind == NULL
5062 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5063 first_mbind = s;
8ded5a0f 5064 }
252b5132 5065
8ded5a0f
AM
5066 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5067 if (tls_count > 0)
5068 {
00bee008
AM
5069 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5070 amt += tls_count * sizeof (asection *);
a50b1753 5071 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5072 if (m == NULL)
5073 goto error_return;
5074 m->next = NULL;
5075 m->p_type = PT_TLS;
5076 m->count = tls_count;
5077 /* Mandated PF_R. */
5078 m->p_flags = PF_R;
5079 m->p_flags_valid = 1;
d923cae0 5080 s = first_tls;
446f7ed5 5081 for (i = 0; i < tls_count; ++i)
8ded5a0f 5082 {
d923cae0
L
5083 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5084 {
5085 _bfd_error_handler
871b3ab2 5086 (_("%pB: TLS sections are not adjacent:"), abfd);
d923cae0
L
5087 s = first_tls;
5088 i = 0;
446f7ed5 5089 while (i < tls_count)
d923cae0
L
5090 {
5091 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5092 {
871b3ab2 5093 _bfd_error_handler (_(" TLS: %pA"), s);
d923cae0
L
5094 i++;
5095 }
5096 else
871b3ab2 5097 _bfd_error_handler (_(" non-TLS: %pA"), s);
d923cae0
L
5098 s = s->next;
5099 }
5100 bfd_set_error (bfd_error_bad_value);
5101 goto error_return;
5102 }
5103 m->sections[i] = s;
5104 s = s->next;
8ded5a0f 5105 }
252b5132 5106
8ded5a0f
AM
5107 *pm = m;
5108 pm = &m->next;
5109 }
252b5132 5110
df3a023b
AM
5111 if (first_mbind
5112 && (abfd->flags & D_PAGED) != 0
5113 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
a91e1603
L
5114 for (s = first_mbind; s != NULL; s = s->next)
5115 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
df3a023b 5116 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
a91e1603
L
5117 {
5118 /* Mandated PF_R. */
5119 unsigned long p_flags = PF_R;
5120 if ((s->flags & SEC_READONLY) == 0)
5121 p_flags |= PF_W;
5122 if ((s->flags & SEC_CODE) != 0)
5123 p_flags |= PF_X;
5124
5125 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5126 m = bfd_zalloc (abfd, amt);
5127 if (m == NULL)
5128 goto error_return;
5129 m->next = NULL;
5130 m->p_type = (PT_GNU_MBIND_LO
5131 + elf_section_data (s)->this_hdr.sh_info);
5132 m->count = 1;
5133 m->p_flags_valid = 1;
5134 m->sections[0] = s;
5135 m->p_flags = p_flags;
5136
5137 *pm = m;
5138 pm = &m->next;
5139 }
5140
0a59decb
L
5141 s = bfd_get_section_by_name (abfd,
5142 NOTE_GNU_PROPERTY_SECTION_NAME);
5143 if (s != NULL && s->size != 0)
5144 {
5145 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5146 m = bfd_zalloc (abfd, amt);
5147 if (m == NULL)
5148 goto error_return;
5149 m->next = NULL;
5150 m->p_type = PT_GNU_PROPERTY;
5151 m->count = 1;
5152 m->p_flags_valid = 1;
5153 m->sections[0] = s;
5154 m->p_flags = PF_R;
5155 *pm = m;
5156 pm = &m->next;
5157 }
5158
8ded5a0f
AM
5159 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5160 segment. */
12bd6957 5161 eh_frame_hdr = elf_eh_frame_hdr (abfd);
8ded5a0f
AM
5162 if (eh_frame_hdr != NULL
5163 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
252b5132 5164 {
dc810e39 5165 amt = sizeof (struct elf_segment_map);
a50b1753 5166 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
5167 if (m == NULL)
5168 goto error_return;
5169 m->next = NULL;
8ded5a0f 5170 m->p_type = PT_GNU_EH_FRAME;
252b5132 5171 m->count = 1;
8ded5a0f 5172 m->sections[0] = eh_frame_hdr->output_section;
252b5132
RH
5173
5174 *pm = m;
5175 pm = &m->next;
5176 }
13ae64f3 5177
12bd6957 5178 if (elf_stack_flags (abfd))
13ae64f3 5179 {
8ded5a0f 5180 amt = sizeof (struct elf_segment_map);
a50b1753 5181 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5182 if (m == NULL)
5183 goto error_return;
5184 m->next = NULL;
2b05f1b7 5185 m->p_type = PT_GNU_STACK;
12bd6957 5186 m->p_flags = elf_stack_flags (abfd);
04c3a755 5187 m->p_align = bed->stack_align;
8ded5a0f 5188 m->p_flags_valid = 1;
04c3a755
NS
5189 m->p_align_valid = m->p_align != 0;
5190 if (info->stacksize > 0)
5191 {
5192 m->p_size = info->stacksize;
5193 m->p_size_valid = 1;
5194 }
252b5132 5195
8ded5a0f
AM
5196 *pm = m;
5197 pm = &m->next;
5198 }
65765700 5199
ceae84aa 5200 if (info != NULL && info->relro)
8ded5a0f 5201 {
f210dcff
L
5202 for (m = mfirst; m != NULL; m = m->next)
5203 {
3832a4d8
AM
5204 if (m->p_type == PT_LOAD
5205 && m->count != 0
5206 && m->sections[0]->vma >= info->relro_start
5207 && m->sections[0]->vma < info->relro_end)
f210dcff 5208 {
3832a4d8
AM
5209 i = m->count;
5210 while (--i != (unsigned) -1)
5211 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5212 == (SEC_LOAD | SEC_HAS_CONTENTS))
5213 break;
5214
43a8475c 5215 if (i != (unsigned) -1)
f210dcff
L
5216 break;
5217 }
be01b344 5218 }
f210dcff
L
5219
5220 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5221 if (m != NULL)
5222 {
5223 amt = sizeof (struct elf_segment_map);
a50b1753 5224 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
f210dcff
L
5225 if (m == NULL)
5226 goto error_return;
5227 m->next = NULL;
5228 m->p_type = PT_GNU_RELRO;
f210dcff
L
5229 *pm = m;
5230 pm = &m->next;
5231 }
8ded5a0f 5232 }
9ee5e499 5233
8ded5a0f 5234 free (sections);
12bd6957 5235 elf_seg_map (abfd) = mfirst;
9ee5e499
JJ
5236 }
5237
3dea8fca 5238 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
8ded5a0f 5239 return FALSE;
8c37241b 5240
12bd6957 5241 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
8ded5a0f 5242 ++count;
12bd6957 5243 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
252b5132 5244
b34976b6 5245 return TRUE;
252b5132
RH
5246
5247 error_return:
5248 if (sections != NULL)
5249 free (sections);
b34976b6 5250 return FALSE;
252b5132
RH
5251}
5252
5253/* Sort sections by address. */
5254
5255static int
217aa764 5256elf_sort_sections (const void *arg1, const void *arg2)
252b5132
RH
5257{
5258 const asection *sec1 = *(const asection **) arg1;
5259 const asection *sec2 = *(const asection **) arg2;
eecdbe52 5260 bfd_size_type size1, size2;
252b5132
RH
5261
5262 /* Sort by LMA first, since this is the address used to
5263 place the section into a segment. */
5264 if (sec1->lma < sec2->lma)
5265 return -1;
5266 else if (sec1->lma > sec2->lma)
5267 return 1;
5268
5269 /* Then sort by VMA. Normally the LMA and the VMA will be
5270 the same, and this will do nothing. */
5271 if (sec1->vma < sec2->vma)
5272 return -1;
5273 else if (sec1->vma > sec2->vma)
5274 return 1;
5275
5276 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5277
07c6e936 5278#define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
252b5132
RH
5279
5280 if (TOEND (sec1))
5281 {
48db3297 5282 if (!TOEND (sec2))
252b5132
RH
5283 return 1;
5284 }
00a7cdc5 5285 else if (TOEND (sec2))
252b5132
RH
5286 return -1;
5287
5288#undef TOEND
5289
00a7cdc5
NC
5290 /* Sort by size, to put zero sized sections
5291 before others at the same address. */
252b5132 5292
eea6121a
AM
5293 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5294 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
eecdbe52
JJ
5295
5296 if (size1 < size2)
252b5132 5297 return -1;
eecdbe52 5298 if (size1 > size2)
252b5132
RH
5299 return 1;
5300
5301 return sec1->target_index - sec2->target_index;
5302}
5303
30fe1832
AM
5304/* This qsort comparison functions sorts PT_LOAD segments first and
5305 by p_paddr, for assign_file_positions_for_load_sections. */
5306
5307static int
5308elf_sort_segments (const void *arg1, const void *arg2)
5309{
5310 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5311 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5312
5313 if (m1->p_type != m2->p_type)
5314 {
5315 if (m1->p_type == PT_NULL)
5316 return 1;
5317 if (m2->p_type == PT_NULL)
5318 return -1;
5319 return m1->p_type < m2->p_type ? -1 : 1;
5320 }
5321 if (m1->includes_filehdr != m2->includes_filehdr)
5322 return m1->includes_filehdr ? -1 : 1;
5323 if (m1->no_sort_lma != m2->no_sort_lma)
5324 return m1->no_sort_lma ? -1 : 1;
5325 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5326 {
5327 bfd_vma lma1, lma2;
5328 lma1 = 0;
5329 if (m1->p_paddr_valid)
5330 lma1 = m1->p_paddr;
5331 else if (m1->count != 0)
5332 lma1 = m1->sections[0]->lma + m1->p_vaddr_offset;
5333 lma2 = 0;
5334 if (m2->p_paddr_valid)
5335 lma2 = m2->p_paddr;
5336 else if (m2->count != 0)
5337 lma2 = m2->sections[0]->lma + m2->p_vaddr_offset;
5338 if (lma1 != lma2)
5339 return lma1 < lma2 ? -1 : 1;
5340 }
5341 if (m1->idx != m2->idx)
5342 return m1->idx < m2->idx ? -1 : 1;
5343 return 0;
5344}
5345
340b6d91
AC
5346/* Ian Lance Taylor writes:
5347
5348 We shouldn't be using % with a negative signed number. That's just
5349 not good. We have to make sure either that the number is not
5350 negative, or that the number has an unsigned type. When the types
5351 are all the same size they wind up as unsigned. When file_ptr is a
5352 larger signed type, the arithmetic winds up as signed long long,
5353 which is wrong.
5354
5355 What we're trying to say here is something like ``increase OFF by
5356 the least amount that will cause it to be equal to the VMA modulo
5357 the page size.'' */
5358/* In other words, something like:
5359
5360 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5361 off_offset = off % bed->maxpagesize;
5362 if (vma_offset < off_offset)
5363 adjustment = vma_offset + bed->maxpagesize - off_offset;
5364 else
5365 adjustment = vma_offset - off_offset;
08a40648 5366
de194d85 5367 which can be collapsed into the expression below. */
340b6d91
AC
5368
5369static file_ptr
5370vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5371{
dc9155b2
NC
5372 /* PR binutils/16199: Handle an alignment of zero. */
5373 if (maxpagesize == 0)
5374 maxpagesize = 1;
340b6d91
AC
5375 return ((vma - off) % maxpagesize);
5376}
5377
6d33f217
L
5378static void
5379print_segment_map (const struct elf_segment_map *m)
5380{
5381 unsigned int j;
5382 const char *pt = get_segment_type (m->p_type);
5383 char buf[32];
5384
5385 if (pt == NULL)
5386 {
5387 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5388 sprintf (buf, "LOPROC+%7.7x",
5389 (unsigned int) (m->p_type - PT_LOPROC));
5390 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5391 sprintf (buf, "LOOS+%7.7x",
5392 (unsigned int) (m->p_type - PT_LOOS));
5393 else
5394 snprintf (buf, sizeof (buf), "%8.8x",
5395 (unsigned int) m->p_type);
5396 pt = buf;
5397 }
4a97a0e5 5398 fflush (stdout);
6d33f217
L
5399 fprintf (stderr, "%s:", pt);
5400 for (j = 0; j < m->count; j++)
5401 fprintf (stderr, " %s", m->sections [j]->name);
5402 putc ('\n',stderr);
4a97a0e5 5403 fflush (stderr);
6d33f217
L
5404}
5405
32812159
AM
5406static bfd_boolean
5407write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5408{
5409 void *buf;
5410 bfd_boolean ret;
5411
5412 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5413 return FALSE;
5414 buf = bfd_zmalloc (len);
5415 if (buf == NULL)
5416 return FALSE;
5417 ret = bfd_bwrite (buf, len, abfd) == len;
5418 free (buf);
5419 return ret;
5420}
5421
252b5132
RH
5422/* Assign file positions to the sections based on the mapping from
5423 sections to segments. This function also sets up some fields in
f3520d2f 5424 the file header. */
252b5132 5425
b34976b6 5426static bfd_boolean
f3520d2f
AM
5427assign_file_positions_for_load_sections (bfd *abfd,
5428 struct bfd_link_info *link_info)
252b5132
RH
5429{
5430 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 5431 struct elf_segment_map *m;
30fe1832 5432 struct elf_segment_map *phdr_load_seg;
252b5132 5433 Elf_Internal_Phdr *phdrs;
252b5132 5434 Elf_Internal_Phdr *p;
02bf8d82 5435 file_ptr off;
3f570048 5436 bfd_size_type maxpagesize;
30fe1832 5437 unsigned int alloc, actual;
0920dee7 5438 unsigned int i, j;
30fe1832 5439 struct elf_segment_map **sorted_seg_map;
252b5132 5440
e36284ab 5441 if (link_info == NULL
ceae84aa 5442 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
8ded5a0f 5443 return FALSE;
252b5132 5444
8ded5a0f 5445 alloc = 0;
12bd6957 5446 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
30fe1832 5447 m->idx = alloc++;
252b5132 5448
82f2dbf7
NC
5449 if (alloc)
5450 {
5451 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5452 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5453 }
5454 else
5455 {
5456 /* PR binutils/12467. */
5457 elf_elfheader (abfd)->e_phoff = 0;
5458 elf_elfheader (abfd)->e_phentsize = 0;
5459 }
d324f6d6 5460
8ded5a0f 5461 elf_elfheader (abfd)->e_phnum = alloc;
252b5132 5462
12bd6957 5463 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
30fe1832
AM
5464 {
5465 actual = alloc;
5466 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5467 }
8ded5a0f 5468 else
30fe1832
AM
5469 {
5470 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5471 BFD_ASSERT (elf_program_header_size (abfd)
5472 == actual * bed->s->sizeof_phdr);
5473 BFD_ASSERT (actual >= alloc);
5474 }
252b5132
RH
5475
5476 if (alloc == 0)
f3520d2f 5477 {
12bd6957 5478 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
8ded5a0f 5479 return TRUE;
f3520d2f 5480 }
252b5132 5481
12bd6957 5482 /* We're writing the size in elf_program_header_size (abfd),
57268894
HPN
5483 see assign_file_positions_except_relocs, so make sure we have
5484 that amount allocated, with trailing space cleared.
12bd6957
AM
5485 The variable alloc contains the computed need, while
5486 elf_program_header_size (abfd) contains the size used for the
57268894
HPN
5487 layout.
5488 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5489 where the layout is forced to according to a larger size in the
5490 last iterations for the testcase ld-elf/header. */
30fe1832
AM
5491 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5492 + alloc * sizeof (*sorted_seg_map)));
5493 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
f3520d2f 5494 elf_tdata (abfd)->phdr = phdrs;
252b5132 5495 if (phdrs == NULL)
b34976b6 5496 return FALSE;
252b5132 5497
30fe1832 5498 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
252b5132 5499 {
30fe1832 5500 sorted_seg_map[j] = m;
252b5132 5501 /* If elf_segment_map is not from map_sections_to_segments, the
08a40648 5502 sections may not be correctly ordered. NOTE: sorting should
52e9b619
MS
5503 not be done to the PT_NOTE section of a corefile, which may
5504 contain several pseudo-sections artificially created by bfd.
5505 Sorting these pseudo-sections breaks things badly. */
47d9a591
AM
5506 if (m->count > 1
5507 && !(elf_elfheader (abfd)->e_type == ET_CORE
52e9b619 5508 && m->p_type == PT_NOTE))
48db3297
AM
5509 {
5510 for (i = 0; i < m->count; i++)
5511 m->sections[i]->target_index = i;
5512 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5513 elf_sort_sections);
5514 }
30fe1832
AM
5515 }
5516 if (alloc > 1)
5517 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5518 elf_sort_segments);
5519
5520 maxpagesize = 1;
5521 if ((abfd->flags & D_PAGED) != 0)
5522 maxpagesize = bed->maxpagesize;
5523
5524 /* Sections must map to file offsets past the ELF file header. */
5525 off = bed->s->sizeof_ehdr;
5526 /* And if one of the PT_LOAD headers doesn't include the program
5527 headers then we'll be mapping program headers in the usual
5528 position after the ELF file header. */
5529 phdr_load_seg = NULL;
5530 for (j = 0; j < alloc; j++)
5531 {
5532 m = sorted_seg_map[j];
5533 if (m->p_type != PT_LOAD)
5534 break;
5535 if (m->includes_phdrs)
5536 {
5537 phdr_load_seg = m;
5538 break;
5539 }
5540 }
5541 if (phdr_load_seg == NULL)
5542 off += actual * bed->s->sizeof_phdr;
5543
5544 for (j = 0; j < alloc; j++)
5545 {
5546 asection **secpp;
5547 bfd_vma off_adjust;
5548 bfd_boolean no_contents;
252b5132 5549
b301b248
AM
5550 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5551 number of sections with contents contributing to both p_filesz
5552 and p_memsz, followed by a number of sections with no contents
5553 that just contribute to p_memsz. In this loop, OFF tracks next
02bf8d82 5554 available file offset for PT_LOAD and PT_NOTE segments. */
30fe1832
AM
5555 m = sorted_seg_map[j];
5556 p = phdrs + m->idx;
252b5132 5557 p->p_type = m->p_type;
28a7f3e7 5558 p->p_flags = m->p_flags;
252b5132 5559
3f570048 5560 if (m->count == 0)
5d695627 5561 p->p_vaddr = m->p_vaddr_offset;
3f570048 5562 else
5d695627 5563 p->p_vaddr = m->sections[0]->vma + m->p_vaddr_offset;
3f570048
AM
5564
5565 if (m->p_paddr_valid)
5566 p->p_paddr = m->p_paddr;
5567 else if (m->count == 0)
5568 p->p_paddr = 0;
5569 else
5d695627 5570 p->p_paddr = m->sections[0]->lma + m->p_vaddr_offset;
3f570048
AM
5571
5572 if (p->p_type == PT_LOAD
5573 && (abfd->flags & D_PAGED) != 0)
5574 {
5575 /* p_align in demand paged PT_LOAD segments effectively stores
5576 the maximum page size. When copying an executable with
5577 objcopy, we set m->p_align from the input file. Use this
5578 value for maxpagesize rather than bed->maxpagesize, which
5579 may be different. Note that we use maxpagesize for PT_TLS
5580 segment alignment later in this function, so we are relying
5581 on at least one PT_LOAD segment appearing before a PT_TLS
5582 segment. */
5583 if (m->p_align_valid)
5584 maxpagesize = m->p_align;
5585
5586 p->p_align = maxpagesize;
5587 }
3271a814
NS
5588 else if (m->p_align_valid)
5589 p->p_align = m->p_align;
e970b90a
DJ
5590 else if (m->count == 0)
5591 p->p_align = 1 << bed->s->log_file_align;
30fe1832
AM
5592
5593 if (m == phdr_load_seg)
5594 {
5595 if (!m->includes_filehdr)
5596 p->p_offset = off;
5597 off += actual * bed->s->sizeof_phdr;
5598 }
3f570048 5599
bf988460
AM
5600 no_contents = FALSE;
5601 off_adjust = 0;
252b5132 5602 if (p->p_type == PT_LOAD
b301b248 5603 && m->count > 0)
252b5132 5604 {
b301b248 5605 bfd_size_type align;
a49e53ed 5606 unsigned int align_power = 0;
b301b248 5607
3271a814
NS
5608 if (m->p_align_valid)
5609 align = p->p_align;
5610 else
252b5132 5611 {
3271a814
NS
5612 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5613 {
5614 unsigned int secalign;
08a40648 5615
fd361982 5616 secalign = bfd_section_alignment (*secpp);
3271a814
NS
5617 if (secalign > align_power)
5618 align_power = secalign;
5619 }
5620 align = (bfd_size_type) 1 << align_power;
5621 if (align < maxpagesize)
5622 align = maxpagesize;
b301b248 5623 }
252b5132 5624
02bf8d82
AM
5625 for (i = 0; i < m->count; i++)
5626 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5627 /* If we aren't making room for this section, then
5628 it must be SHT_NOBITS regardless of what we've
5629 set via struct bfd_elf_special_section. */
5630 elf_section_type (m->sections[i]) = SHT_NOBITS;
5631
bf988460 5632 /* Find out whether this segment contains any loadable
aea274d3
AM
5633 sections. */
5634 no_contents = TRUE;
5635 for (i = 0; i < m->count; i++)
5636 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5637 {
5638 no_contents = FALSE;
5639 break;
5640 }
bf988460 5641
85cfcbfb 5642 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align);
a8c75b76
AM
5643
5644 /* Broken hardware and/or kernel require that files do not
5645 map the same page with different permissions on some hppa
5646 processors. */
30fe1832
AM
5647 if (j != 0
5648 && (abfd->flags & D_PAGED) != 0
a8c75b76
AM
5649 && bed->no_page_alias
5650 && (off & (maxpagesize - 1)) != 0
5651 && (off & -maxpagesize) == ((off + off_adjust) & -maxpagesize))
5652 off_adjust += maxpagesize;
bf988460
AM
5653 off += off_adjust;
5654 if (no_contents)
5655 {
5656 /* We shouldn't need to align the segment on disk since
5657 the segment doesn't need file space, but the gABI
5658 arguably requires the alignment and glibc ld.so
5659 checks it. So to comply with the alignment
5660 requirement but not waste file space, we adjust
5661 p_offset for just this segment. (OFF_ADJUST is
5662 subtracted from OFF later.) This may put p_offset
5663 past the end of file, but that shouldn't matter. */
5664 }
5665 else
5666 off_adjust = 0;
252b5132 5667 }
b1a6d0b1
NC
5668 /* Make sure the .dynamic section is the first section in the
5669 PT_DYNAMIC segment. */
5670 else if (p->p_type == PT_DYNAMIC
5671 && m->count > 1
5672 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5673 {
5674 _bfd_error_handler
871b3ab2 5675 (_("%pB: The first section in the PT_DYNAMIC segment"
63a5468a 5676 " is not the .dynamic section"),
b301b248 5677 abfd);
b1a6d0b1
NC
5678 bfd_set_error (bfd_error_bad_value);
5679 return FALSE;
5680 }
3f001e84
JK
5681 /* Set the note section type to SHT_NOTE. */
5682 else if (p->p_type == PT_NOTE)
5683 for (i = 0; i < m->count; i++)
5684 elf_section_type (m->sections[i]) = SHT_NOTE;
252b5132 5685
252b5132
RH
5686 if (m->includes_filehdr)
5687 {
bf988460 5688 if (!m->p_flags_valid)
252b5132 5689 p->p_flags |= PF_R;
252b5132
RH
5690 p->p_filesz = bed->s->sizeof_ehdr;
5691 p->p_memsz = bed->s->sizeof_ehdr;
30fe1832 5692 if (p->p_type == PT_LOAD)
252b5132 5693 {
30fe1832 5694 if (m->count > 0)
252b5132 5695 {
30fe1832
AM
5696 if (p->p_vaddr < (bfd_vma) off
5697 || (!m->p_paddr_valid
5698 && p->p_paddr < (bfd_vma) off))
5699 {
5700 _bfd_error_handler
5701 (_("%pB: not enough room for program headers,"
5702 " try linking with -N"),
5703 abfd);
5704 bfd_set_error (bfd_error_bad_value);
5705 return FALSE;
5706 }
5707 p->p_vaddr -= off;
5708 if (!m->p_paddr_valid)
5709 p->p_paddr -= off;
252b5132 5710 }
30fe1832
AM
5711 }
5712 else if (sorted_seg_map[0]->includes_filehdr)
5713 {
5714 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5715 p->p_vaddr = filehdr->p_vaddr;
bf988460 5716 if (!m->p_paddr_valid)
30fe1832 5717 p->p_paddr = filehdr->p_paddr;
252b5132 5718 }
252b5132
RH
5719 }
5720
5721 if (m->includes_phdrs)
5722 {
bf988460 5723 if (!m->p_flags_valid)
252b5132 5724 p->p_flags |= PF_R;
30fe1832
AM
5725 p->p_filesz += actual * bed->s->sizeof_phdr;
5726 p->p_memsz += actual * bed->s->sizeof_phdr;
f3520d2f 5727 if (!m->includes_filehdr)
252b5132 5728 {
30fe1832 5729 if (p->p_type == PT_LOAD)
252b5132 5730 {
30fe1832
AM
5731 elf_elfheader (abfd)->e_phoff = p->p_offset;
5732 if (m->count > 0)
5733 {
5734 p->p_vaddr -= off - p->p_offset;
5735 if (!m->p_paddr_valid)
5736 p->p_paddr -= off - p->p_offset;
5737 }
5738 }
5739 else if (phdr_load_seg != NULL)
5740 {
5741 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
5742 bfd_vma phdr_off = 0;
5743 if (phdr_load_seg->includes_filehdr)
5744 phdr_off = bed->s->sizeof_ehdr;
5745 p->p_vaddr = phdr->p_vaddr + phdr_off;
bf988460 5746 if (!m->p_paddr_valid)
30fe1832
AM
5747 p->p_paddr = phdr->p_paddr + phdr_off;
5748 p->p_offset = phdr->p_offset + phdr_off;
252b5132 5749 }
30fe1832
AM
5750 else
5751 p->p_offset = bed->s->sizeof_ehdr;
2b0bc088 5752 }
252b5132
RH
5753 }
5754
5755 if (p->p_type == PT_LOAD
5756 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5757 {
bf988460 5758 if (!m->includes_filehdr && !m->includes_phdrs)
0bc3450e
AM
5759 {
5760 p->p_offset = off;
5761 if (no_contents)
67641dd3
AM
5762 {
5763 /* Put meaningless p_offset for PT_LOAD segments
5764 without file contents somewhere within the first
5765 page, in an attempt to not point past EOF. */
5766 bfd_size_type align = maxpagesize;
5767 if (align < p->p_align)
5768 align = p->p_align;
5769 if (align < 1)
5770 align = 1;
5771 p->p_offset = off % align;
5772 }
0bc3450e 5773 }
252b5132
RH
5774 else
5775 {
5776 file_ptr adjust;
5777
5778 adjust = off - (p->p_offset + p->p_filesz);
bf988460
AM
5779 if (!no_contents)
5780 p->p_filesz += adjust;
252b5132
RH
5781 p->p_memsz += adjust;
5782 }
5783 }
5784
1ea63fd2
AM
5785 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5786 maps. Set filepos for sections in PT_LOAD segments, and in
5787 core files, for sections in PT_NOTE segments.
5788 assign_file_positions_for_non_load_sections will set filepos
5789 for other sections and update p_filesz for other segments. */
252b5132
RH
5790 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5791 {
5792 asection *sec;
252b5132 5793 bfd_size_type align;
627b32bc 5794 Elf_Internal_Shdr *this_hdr;
252b5132
RH
5795
5796 sec = *secpp;
02bf8d82 5797 this_hdr = &elf_section_data (sec)->this_hdr;
fd361982 5798 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
252b5132 5799
88967714
AM
5800 if ((p->p_type == PT_LOAD
5801 || p->p_type == PT_TLS)
5802 && (this_hdr->sh_type != SHT_NOBITS
5803 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5804 && ((this_hdr->sh_flags & SHF_TLS) == 0
5805 || p->p_type == PT_TLS))))
252b5132 5806 {
b5599592
AM
5807 bfd_vma p_start = p->p_paddr;
5808 bfd_vma p_end = p_start + p->p_memsz;
5809 bfd_vma s_start = sec->lma;
5810 bfd_vma adjust = s_start - p_end;
252b5132 5811
a2d1e028
L
5812 if (adjust != 0
5813 && (s_start < p_end
5814 || p_end < p_start))
252b5132 5815 {
4eca0228 5816 _bfd_error_handler
695344c0 5817 /* xgettext:c-format */
2dcf00ce
AM
5818 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5819 abfd, sec, (uint64_t) s_start, (uint64_t) p_end);
88967714 5820 adjust = 0;
b5599592 5821 sec->lma = p_end;
1cfb7d1e 5822 }
3ac9b6c9 5823 p->p_memsz += adjust;
1cfb7d1e 5824
88967714
AM
5825 if (this_hdr->sh_type != SHT_NOBITS)
5826 {
30fe1832 5827 if (p->p_type == PT_LOAD)
32812159 5828 {
30fe1832
AM
5829 if (p->p_filesz + adjust < p->p_memsz)
5830 {
5831 /* We have a PROGBITS section following NOBITS ones.
5832 Allocate file space for the NOBITS section(s) and
5833 zero it. */
5834 adjust = p->p_memsz - p->p_filesz;
5835 if (!write_zeros (abfd, off, adjust))
5836 return FALSE;
5837 }
5838 off += adjust;
32812159 5839 }
88967714 5840 p->p_filesz += adjust;
252b5132 5841 }
252b5132
RH
5842 }
5843
5844 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5845 {
b301b248
AM
5846 /* The section at i == 0 is the one that actually contains
5847 everything. */
4a938328
MS
5848 if (i == 0)
5849 {
627b32bc 5850 this_hdr->sh_offset = sec->filepos = off;
6a3cd2b4
AM
5851 off += this_hdr->sh_size;
5852 p->p_filesz = this_hdr->sh_size;
b301b248
AM
5853 p->p_memsz = 0;
5854 p->p_align = 1;
252b5132 5855 }
4a938328 5856 else
252b5132 5857 {
b301b248 5858 /* The rest are fake sections that shouldn't be written. */
252b5132 5859 sec->filepos = 0;
eea6121a 5860 sec->size = 0;
b301b248
AM
5861 sec->flags = 0;
5862 continue;
252b5132 5863 }
252b5132
RH
5864 }
5865 else
5866 {
1e951488 5867 if (p->p_type == PT_LOAD)
b301b248 5868 {
1e951488
AM
5869 this_hdr->sh_offset = sec->filepos = off;
5870 if (this_hdr->sh_type != SHT_NOBITS)
5871 off += this_hdr->sh_size;
5872 }
5873 else if (this_hdr->sh_type == SHT_NOBITS
5874 && (this_hdr->sh_flags & SHF_TLS) != 0
5875 && this_hdr->sh_offset == 0)
5876 {
5877 /* This is a .tbss section that didn't get a PT_LOAD.
5878 (See _bfd_elf_map_sections_to_segments "Create a
5879 final PT_LOAD".) Set sh_offset to the value it
5880 would have if we had created a zero p_filesz and
5881 p_memsz PT_LOAD header for the section. This
5882 also makes the PT_TLS header have the same
5883 p_offset value. */
5884 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5885 off, align);
5886 this_hdr->sh_offset = sec->filepos = off + adjust;
b301b248 5887 }
252b5132 5888
02bf8d82 5889 if (this_hdr->sh_type != SHT_NOBITS)
b301b248 5890 {
6a3cd2b4 5891 p->p_filesz += this_hdr->sh_size;
02bf8d82
AM
5892 /* A load section without SHF_ALLOC is something like
5893 a note section in a PT_NOTE segment. These take
5894 file space but are not loaded into memory. */
5895 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
6a3cd2b4 5896 p->p_memsz += this_hdr->sh_size;
b301b248 5897 }
6a3cd2b4 5898 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
13ae64f3 5899 {
6a3cd2b4
AM
5900 if (p->p_type == PT_TLS)
5901 p->p_memsz += this_hdr->sh_size;
5902
5903 /* .tbss is special. It doesn't contribute to p_memsz of
5904 normal segments. */
5905 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5906 p->p_memsz += this_hdr->sh_size;
13ae64f3
JJ
5907 }
5908
b10a8ae0
L
5909 if (align > p->p_align
5910 && !m->p_align_valid
5911 && (p->p_type != PT_LOAD
5912 || (abfd->flags & D_PAGED) == 0))
252b5132
RH
5913 p->p_align = align;
5914 }
5915
bf988460 5916 if (!m->p_flags_valid)
252b5132
RH
5917 {
5918 p->p_flags |= PF_R;
02bf8d82 5919 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
252b5132 5920 p->p_flags |= PF_X;
02bf8d82 5921 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
252b5132
RH
5922 p->p_flags |= PF_W;
5923 }
5924 }
43a8475c 5925
bf988460 5926 off -= off_adjust;
0920dee7 5927
30fe1832
AM
5928 /* PR ld/20815 - Check that the program header segment, if
5929 present, will be loaded into memory. */
5930 if (p->p_type == PT_PHDR
5931 && phdr_load_seg == NULL
5932 && !(bed->elf_backend_allow_non_load_phdr != NULL
5933 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5934 {
5935 /* The fix for this error is usually to edit the linker script being
5936 used and set up the program headers manually. Either that or
5937 leave room for the headers at the start of the SECTIONS. */
5938 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5939 " by LOAD segment"),
5940 abfd);
5941 return FALSE;
5942 }
5943
7c928300
AM
5944 /* Check that all sections are in a PT_LOAD segment.
5945 Don't check funky gdb generated core files. */
5946 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
9a83a553
AM
5947 {
5948 bfd_boolean check_vma = TRUE;
5949
5950 for (i = 1; i < m->count; i++)
5951 if (m->sections[i]->vma == m->sections[i - 1]->vma
5952 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5953 ->this_hdr), p) != 0
5954 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5955 ->this_hdr), p) != 0)
0920dee7 5956 {
9a83a553
AM
5957 /* Looks like we have overlays packed into the segment. */
5958 check_vma = FALSE;
5959 break;
0920dee7 5960 }
9a83a553
AM
5961
5962 for (i = 0; i < m->count; i++)
5963 {
5964 Elf_Internal_Shdr *this_hdr;
5965 asection *sec;
5966
5967 sec = m->sections[i];
5968 this_hdr = &(elf_section_data(sec)->this_hdr);
86b2281f
AM
5969 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5970 && !ELF_TBSS_SPECIAL (this_hdr, p))
9a83a553 5971 {
4eca0228 5972 _bfd_error_handler
695344c0 5973 /* xgettext:c-format */
871b3ab2 5974 (_("%pB: section `%pA' can't be allocated in segment %d"),
9a83a553
AM
5975 abfd, sec, j);
5976 print_segment_map (m);
5977 }
5978 }
5979 }
252b5132
RH
5980 }
5981
12bd6957 5982 elf_next_file_pos (abfd) = off;
30fe1832
AM
5983
5984 if (link_info != NULL
5985 && phdr_load_seg != NULL
5986 && phdr_load_seg->includes_filehdr)
5987 {
5988 /* There is a segment that contains both the file headers and the
5989 program headers, so provide a symbol __ehdr_start pointing there.
5990 A program can use this to examine itself robustly. */
5991
5992 struct elf_link_hash_entry *hash
5993 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5994 FALSE, FALSE, TRUE);
5995 /* If the symbol was referenced and not defined, define it. */
5996 if (hash != NULL
5997 && (hash->root.type == bfd_link_hash_new
5998 || hash->root.type == bfd_link_hash_undefined
5999 || hash->root.type == bfd_link_hash_undefweak
6000 || hash->root.type == bfd_link_hash_common))
6001 {
6002 asection *s = NULL;
6003 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr;
6004
6005 if (phdr_load_seg->count != 0)
6006 /* The segment contains sections, so use the first one. */
6007 s = phdr_load_seg->sections[0];
6008 else
6009 /* Use the first (i.e. lowest-addressed) section in any segment. */
6010 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6011 if (m->p_type == PT_LOAD && m->count != 0)
6012 {
6013 s = m->sections[0];
6014 break;
6015 }
6016
6017 if (s != NULL)
6018 {
6019 hash->root.u.def.value = filehdr_vaddr - s->vma;
6020 hash->root.u.def.section = s;
6021 }
6022 else
6023 {
6024 hash->root.u.def.value = filehdr_vaddr;
6025 hash->root.u.def.section = bfd_abs_section_ptr;
6026 }
6027
6028 hash->root.type = bfd_link_hash_defined;
6029 hash->def_regular = 1;
6030 hash->non_elf = 0;
6031 }
6032 }
6033
f3520d2f
AM
6034 return TRUE;
6035}
6036
1faa385f
NC
6037/* Determine if a bfd is a debuginfo file. Unfortunately there
6038 is no defined method for detecting such files, so we have to
6039 use heuristics instead. */
6040
6041bfd_boolean
6042is_debuginfo_file (bfd *abfd)
6043{
6044 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6045 return FALSE;
6046
6047 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6048 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6049 Elf_Internal_Shdr **headerp;
6050
6051 for (headerp = start_headers; headerp < end_headers; headerp ++)
6052 {
6053 Elf_Internal_Shdr *header = * headerp;
6054
6055 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6056 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6057 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6058 && header->sh_type != SHT_NOBITS
6059 && header->sh_type != SHT_NOTE)
6060 return FALSE;
6061 }
6062
6063 return TRUE;
6064}
6065
1ff6de03
NA
6066/* Assign file positions for the other sections, except for compressed debugging
6067 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
f3520d2f
AM
6068
6069static bfd_boolean
6070assign_file_positions_for_non_load_sections (bfd *abfd,
6071 struct bfd_link_info *link_info)
6072{
6073 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6074 Elf_Internal_Shdr **i_shdrpp;
e06efbf1 6075 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
f3520d2f
AM
6076 Elf_Internal_Phdr *phdrs;
6077 Elf_Internal_Phdr *p;
6078 struct elf_segment_map *m;
f3520d2f 6079 file_ptr off;
f3520d2f 6080
5c182d5f 6081 i_shdrpp = elf_elfsections (abfd);
e06efbf1 6082 end_hdrpp = i_shdrpp + elf_numsections (abfd);
12bd6957 6083 off = elf_next_file_pos (abfd);
e06efbf1 6084 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5c182d5f 6085 {
5c182d5f
AM
6086 Elf_Internal_Shdr *hdr;
6087
6088 hdr = *hdrpp;
6089 if (hdr->bfd_section != NULL
252e386e
AM
6090 && (hdr->bfd_section->filepos != 0
6091 || (hdr->sh_type == SHT_NOBITS
6092 && hdr->contents == NULL)))
627b32bc 6093 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5c182d5f
AM
6094 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6095 {
1faa385f
NC
6096 if (hdr->sh_size != 0
6097 /* PR 24717 - debuginfo files are known to be not strictly
6098 compliant with the ELF standard. In particular they often
6099 have .note.gnu.property sections that are outside of any
6100 loadable segment. This is not a problem for such files,
6101 so do not warn about them. */
6102 && ! is_debuginfo_file (abfd))
4eca0228 6103 _bfd_error_handler
695344c0 6104 /* xgettext:c-format */
871b3ab2 6105 (_("%pB: warning: allocated section `%s' not in segment"),
e8d2ba53
AM
6106 abfd,
6107 (hdr->bfd_section == NULL
6108 ? "*unknown*"
6109 : hdr->bfd_section->name));
3ba71138
L
6110 /* We don't need to page align empty sections. */
6111 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5c182d5f
AM
6112 off += vma_page_aligned_bias (hdr->sh_addr, off,
6113 bed->maxpagesize);
6114 else
6115 off += vma_page_aligned_bias (hdr->sh_addr, off,
6116 hdr->sh_addralign);
6117 off = _bfd_elf_assign_file_position_for_section (hdr, off,
6118 FALSE);
6119 }
6120 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6121 && hdr->bfd_section == NULL)
1ff6de03
NA
6122 /* We don't know the offset of these sections yet: their size has
6123 not been decided. */
0ce398f1 6124 || (hdr->bfd_section != NULL
1ff6de03
NA
6125 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6126 || (bfd_section_is_ctf (hdr->bfd_section)
6127 && abfd->is_linker_output)))
12bd6957 6128 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6a40cf0c
NC
6129 || (elf_symtab_shndx_list (abfd) != NULL
6130 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6131 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6132 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5c182d5f
AM
6133 hdr->sh_offset = -1;
6134 else
6135 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5c182d5f 6136 }
30fe1832 6137 elf_next_file_pos (abfd) = off;
5c182d5f 6138
252b5132
RH
6139 /* Now that we have set the section file positions, we can set up
6140 the file positions for the non PT_LOAD segments. */
f3520d2f 6141 phdrs = elf_tdata (abfd)->phdr;
12bd6957 6142 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
252b5132 6143 {
129af99f 6144 if (p->p_type == PT_GNU_RELRO)
252b5132 6145 {
f2731e0c 6146 bfd_vma start, end;
01f7e10c 6147 bfd_boolean ok;
1ea63fd2 6148
129af99f 6149 if (link_info != NULL)
8c37241b 6150 {
129af99f 6151 /* During linking the range of the RELRO segment is passed
f2731e0c
AM
6152 in link_info. Note that there may be padding between
6153 relro_start and the first RELRO section. */
6154 start = link_info->relro_start;
6155 end = link_info->relro_end;
6156 }
6157 else if (m->count != 0)
6158 {
6159 if (!m->p_size_valid)
6160 abort ();
6161 start = m->sections[0]->vma;
6162 end = start + m->p_size;
6163 }
6164 else
6165 {
6166 start = 0;
6167 end = 0;
6168 }
6169
01f7e10c 6170 ok = FALSE;
f2731e0c
AM
6171 if (start < end)
6172 {
6173 struct elf_segment_map *lm;
6174 const Elf_Internal_Phdr *lp;
6175 unsigned int i;
6176
6177 /* Find a LOAD segment containing a section in the RELRO
6178 segment. */
12bd6957 6179 for (lm = elf_seg_map (abfd), lp = phdrs;
3146fac4
AM
6180 lm != NULL;
6181 lm = lm->next, lp++)
8c37241b
JJ
6182 {
6183 if (lp->p_type == PT_LOAD
3146fac4 6184 && lm->count != 0
dbc88fc1
AM
6185 && (lm->sections[lm->count - 1]->vma
6186 + (!IS_TBSS (lm->sections[lm->count - 1])
6187 ? lm->sections[lm->count - 1]->size
6188 : 0)) > start
f2731e0c 6189 && lm->sections[0]->vma < end)
8c37241b
JJ
6190 break;
6191 }
f2731e0c 6192
01f7e10c 6193 if (lm != NULL)
129af99f 6194 {
01f7e10c
AM
6195 /* Find the section starting the RELRO segment. */
6196 for (i = 0; i < lm->count; i++)
6197 {
6198 asection *s = lm->sections[i];
6199 if (s->vma >= start
6200 && s->vma < end
6201 && s->size != 0)
6202 break;
6203 }
6204
6205 if (i < lm->count)
6206 {
6207 p->p_vaddr = lm->sections[i]->vma;
6208 p->p_paddr = lm->sections[i]->lma;
6209 p->p_offset = lm->sections[i]->filepos;
6210 p->p_memsz = end - p->p_vaddr;
6211 p->p_filesz = p->p_memsz;
6212
6213 /* The RELRO segment typically ends a few bytes
6214 into .got.plt but other layouts are possible.
6215 In cases where the end does not match any
6216 loaded section (for instance is in file
6217 padding), trim p_filesz back to correspond to
6218 the end of loaded section contents. */
6219 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6220 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6221
6222 /* Preserve the alignment and flags if they are
6223 valid. The gold linker generates RW/4 for
6224 the PT_GNU_RELRO section. It is better for
6225 objcopy/strip to honor these attributes
6226 otherwise gdb will choke when using separate
6227 debug files. */
6228 if (!m->p_align_valid)
6229 p->p_align = 1;
6230 if (!m->p_flags_valid)
6231 p->p_flags = PF_R;
6232 ok = TRUE;
6233 }
129af99f 6234 }
b84a33b5 6235 }
01f7e10c
AM
6236 if (link_info != NULL)
6237 BFD_ASSERT (ok);
6238 if (!ok)
6239 memset (p, 0, sizeof *p);
129af99f 6240 }
04c3a755
NS
6241 else if (p->p_type == PT_GNU_STACK)
6242 {
6243 if (m->p_size_valid)
6244 p->p_memsz = m->p_size;
6245 }
129af99f
AS
6246 else if (m->count != 0)
6247 {
e06efbf1 6248 unsigned int i;
1a9ccd70 6249
129af99f
AS
6250 if (p->p_type != PT_LOAD
6251 && (p->p_type != PT_NOTE
6252 || bfd_get_format (abfd) != bfd_core))
6253 {
1a9ccd70
NC
6254 /* A user specified segment layout may include a PHDR
6255 segment that overlaps with a LOAD segment... */
6256 if (p->p_type == PT_PHDR)
6257 {
6258 m->count = 0;
6259 continue;
6260 }
6261
c86934ce
NC
6262 if (m->includes_filehdr || m->includes_phdrs)
6263 {
b1fa9dd6 6264 /* PR 17512: file: 2195325e. */
4eca0228 6265 _bfd_error_handler
871b3ab2 6266 (_("%pB: error: non-load segment %d includes file header "
76cfced5
AM
6267 "and/or program header"),
6268 abfd, (int) (p - phdrs));
c86934ce
NC
6269 return FALSE;
6270 }
129af99f 6271
86b2281f 6272 p->p_filesz = 0;
129af99f 6273 p->p_offset = m->sections[0]->filepos;
86b2281f
AM
6274 for (i = m->count; i-- != 0;)
6275 {
6276 asection *sect = m->sections[i];
6277 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6278 if (hdr->sh_type != SHT_NOBITS)
6279 {
6280 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6281 + hdr->sh_size);
6282 break;
6283 }
6284 }
129af99f
AS
6285 }
6286 }
252b5132
RH
6287 }
6288
b34976b6 6289 return TRUE;
252b5132
RH
6290}
6291
6a40cf0c
NC
6292static elf_section_list *
6293find_section_in_list (unsigned int i, elf_section_list * list)
6294{
6295 for (;list != NULL; list = list->next)
6296 if (list->ndx == i)
6297 break;
6298 return list;
6299}
6300
252b5132
RH
6301/* Work out the file positions of all the sections. This is called by
6302 _bfd_elf_compute_section_file_positions. All the section sizes and
6303 VMAs must be known before this is called.
6304
e0638f70 6305 Reloc sections come in two flavours: Those processed specially as
1ff6de03
NA
6306 "side-channel" data attached to a section to which they apply, and those that
6307 bfd doesn't process as relocations. The latter sort are stored in a normal
6308 bfd section by bfd_section_from_shdr. We don't consider the former sort
6309 here, unless they form part of the loadable image. Reloc sections not
6310 assigned here (and compressed debugging sections and CTF sections which
6311 nothing else in the file can rely upon) will be handled later by
e0638f70 6312 assign_file_positions_for_relocs.
252b5132
RH
6313
6314 We also don't set the positions of the .symtab and .strtab here. */
6315
b34976b6 6316static bfd_boolean
c84fca4d
AO
6317assign_file_positions_except_relocs (bfd *abfd,
6318 struct bfd_link_info *link_info)
252b5132 6319{
5c182d5f
AM
6320 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6321 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
9c5bfbb7 6322 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6d6c25c8 6323 unsigned int alloc;
252b5132
RH
6324
6325 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6326 && bfd_get_format (abfd) != bfd_core)
6327 {
5c182d5f
AM
6328 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6329 unsigned int num_sec = elf_numsections (abfd);
252b5132
RH
6330 Elf_Internal_Shdr **hdrpp;
6331 unsigned int i;
a485e98e 6332 file_ptr off;
252b5132
RH
6333
6334 /* Start after the ELF header. */
6335 off = i_ehdrp->e_ehsize;
6336
6337 /* We are not creating an executable, which means that we are
6338 not creating a program header, and that the actual order of
6339 the sections in the file is unimportant. */
9ad5cbcf 6340 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
252b5132
RH
6341 {
6342 Elf_Internal_Shdr *hdr;
6343
6344 hdr = *hdrpp;
e0638f70
AM
6345 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6346 && hdr->bfd_section == NULL)
1ff6de03
NA
6347 /* Do not assign offsets for these sections yet: we don't know
6348 their sizes. */
0ce398f1 6349 || (hdr->bfd_section != NULL
1ff6de03
NA
6350 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6351 || (bfd_section_is_ctf (hdr->bfd_section)
6352 && abfd->is_linker_output)))
12bd6957 6353 || i == elf_onesymtab (abfd)
6a40cf0c
NC
6354 || (elf_symtab_shndx_list (abfd) != NULL
6355 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6356 || i == elf_strtab_sec (abfd)
6357 || i == elf_shstrtab_sec (abfd))
252b5132
RH
6358 {
6359 hdr->sh_offset = -1;
252b5132 6360 }
9ad5cbcf 6361 else
b34976b6 6362 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 6363 }
a485e98e
AM
6364
6365 elf_next_file_pos (abfd) = off;
6d6c25c8 6366 elf_program_header_size (abfd) = 0;
252b5132
RH
6367 }
6368 else
6369 {
252b5132 6370 /* Assign file positions for the loaded sections based on the
08a40648 6371 assignment of sections to segments. */
f3520d2f
AM
6372 if (!assign_file_positions_for_load_sections (abfd, link_info))
6373 return FALSE;
6374
6375 /* And for non-load sections. */
6376 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6377 return FALSE;
6d6c25c8 6378 }
f3520d2f 6379
6d6c25c8
AM
6380 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
6381 return FALSE;
1a9ccd70 6382
6d6c25c8
AM
6383 /* Write out the program headers. */
6384 alloc = i_ehdrp->e_phnum;
6385 if (alloc != 0)
6386 {
30fe1832 6387 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
cd584857
NC
6388 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6389 return FALSE;
252b5132
RH
6390 }
6391
b34976b6 6392 return TRUE;
252b5132
RH
6393}
6394
ed7e9d0b
AM
6395bfd_boolean
6396_bfd_elf_init_file_header (bfd *abfd,
6397 struct bfd_link_info *info ATTRIBUTE_UNUSED)
252b5132 6398{
3d540e93 6399 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
2b0f7ef9 6400 struct elf_strtab_hash *shstrtab;
9c5bfbb7 6401 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132
RH
6402
6403 i_ehdrp = elf_elfheader (abfd);
252b5132 6404
2b0f7ef9 6405 shstrtab = _bfd_elf_strtab_init ();
252b5132 6406 if (shstrtab == NULL)
b34976b6 6407 return FALSE;
252b5132
RH
6408
6409 elf_shstrtab (abfd) = shstrtab;
6410
6411 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6412 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6413 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6414 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6415
6416 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6417 i_ehdrp->e_ident[EI_DATA] =
6418 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6419 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6420
252b5132
RH
6421 if ((abfd->flags & DYNAMIC) != 0)
6422 i_ehdrp->e_type = ET_DYN;
6423 else if ((abfd->flags & EXEC_P) != 0)
6424 i_ehdrp->e_type = ET_EXEC;
6425 else if (bfd_get_format (abfd) == bfd_core)
6426 i_ehdrp->e_type = ET_CORE;
6427 else
6428 i_ehdrp->e_type = ET_REL;
6429
6430 switch (bfd_get_arch (abfd))
6431 {
6432 case bfd_arch_unknown:
6433 i_ehdrp->e_machine = EM_NONE;
6434 break;
aa4f99bb
AO
6435
6436 /* There used to be a long list of cases here, each one setting
6437 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6438 in the corresponding bfd definition. To avoid duplication,
6439 the switch was removed. Machines that need special handling
6440 can generally do it in elf_backend_final_write_processing(),
6441 unless they need the information earlier than the final write.
6442 Such need can generally be supplied by replacing the tests for
6443 e_machine with the conditions used to determine it. */
252b5132 6444 default:
9c5bfbb7
AM
6445 i_ehdrp->e_machine = bed->elf_machine_code;
6446 }
aa4f99bb 6447
252b5132
RH
6448 i_ehdrp->e_version = bed->s->ev_current;
6449 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6450
c044fabd 6451 /* No program header, for now. */
252b5132
RH
6452 i_ehdrp->e_phoff = 0;
6453 i_ehdrp->e_phentsize = 0;
6454 i_ehdrp->e_phnum = 0;
6455
c044fabd 6456 /* Each bfd section is section header entry. */
252b5132
RH
6457 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6458 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6459
252b5132 6460 elf_tdata (abfd)->symtab_hdr.sh_name =
b34976b6 6461 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
252b5132 6462 elf_tdata (abfd)->strtab_hdr.sh_name =
b34976b6 6463 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
252b5132 6464 elf_tdata (abfd)->shstrtab_hdr.sh_name =
b34976b6 6465 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
252b5132 6466 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
17ca87fc 6467 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
252b5132 6468 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
b34976b6 6469 return FALSE;
252b5132 6470
b34976b6 6471 return TRUE;
252b5132
RH
6472}
6473
6d6c25c8
AM
6474/* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6475
6476 FIXME: We used to have code here to sort the PT_LOAD segments into
6477 ascending order, as per the ELF spec. But this breaks some programs,
6478 including the Linux kernel. But really either the spec should be
6479 changed or the programs updated. */
6480
6481bfd_boolean
6482_bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6483{
6484 if (link_info != NULL && bfd_link_pie (link_info))
6485 {
6486 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6487 unsigned int num_segments = i_ehdrp->e_phnum;
6488 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6489 Elf_Internal_Phdr *segment = tdata->phdr;
6490 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6491
6492 /* Find the lowest p_vaddr in PT_LOAD segments. */
6493 bfd_vma p_vaddr = (bfd_vma) -1;
6494 for (; segment < end_segment; segment++)
6495 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6496 p_vaddr = segment->p_vaddr;
6497
6498 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6499 segments is non-zero. */
6500 if (p_vaddr)
6501 i_ehdrp->e_type = ET_EXEC;
6502 }
6503 return TRUE;
6504}
6505
252b5132 6506/* Assign file positions for all the reloc sections which are not part
a485e98e 6507 of the loadable file image, and the file position of section headers. */
252b5132 6508
0ce398f1
L
6509static bfd_boolean
6510_bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
252b5132
RH
6511{
6512 file_ptr off;
e06efbf1 6513 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
3e19fb8f 6514 Elf_Internal_Shdr *shdrp;
a485e98e
AM
6515 Elf_Internal_Ehdr *i_ehdrp;
6516 const struct elf_backend_data *bed;
252b5132 6517
12bd6957 6518 off = elf_next_file_pos (abfd);
252b5132 6519
e06efbf1
L
6520 shdrpp = elf_elfsections (abfd);
6521 end_shdrpp = shdrpp + elf_numsections (abfd);
6522 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
252b5132 6523 {
252b5132 6524 shdrp = *shdrpp;
0ce398f1
L
6525 if (shdrp->sh_offset == -1)
6526 {
3e19fb8f 6527 asection *sec = shdrp->bfd_section;
0ce398f1
L
6528 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6529 || shdrp->sh_type == SHT_RELA);
1ff6de03 6530 bfd_boolean is_ctf = sec && bfd_section_is_ctf (sec);
0ce398f1 6531 if (is_rel
1ff6de03 6532 || is_ctf
3e19fb8f 6533 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
0ce398f1 6534 {
1ff6de03 6535 if (!is_rel && !is_ctf)
0ce398f1 6536 {
3e19fb8f
L
6537 const char *name = sec->name;
6538 struct bfd_elf_section_data *d;
6539
0ce398f1 6540 /* Compress DWARF debug sections. */
3e19fb8f 6541 if (!bfd_compress_section (abfd, sec,
0ce398f1
L
6542 shdrp->contents))
6543 return FALSE;
3e19fb8f
L
6544
6545 if (sec->compress_status == COMPRESS_SECTION_DONE
6546 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6547 {
6548 /* If section is compressed with zlib-gnu, convert
6549 section name from .debug_* to .zdebug_*. */
6550 char *new_name
6551 = convert_debug_to_zdebug (abfd, name);
6552 if (new_name == NULL)
6553 return FALSE;
6554 name = new_name;
6555 }
dd905818 6556 /* Add section name to section name section. */
3e19fb8f
L
6557 if (shdrp->sh_name != (unsigned int) -1)
6558 abort ();
6559 shdrp->sh_name
6560 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6561 name, FALSE);
6562 d = elf_section_data (sec);
6563
dd905818 6564 /* Add reloc section name to section name section. */
3e19fb8f
L
6565 if (d->rel.hdr
6566 && !_bfd_elf_set_reloc_sh_name (abfd,
6567 d->rel.hdr,
6568 name, FALSE))
6569 return FALSE;
6570 if (d->rela.hdr
6571 && !_bfd_elf_set_reloc_sh_name (abfd,
6572 d->rela.hdr,
91cb26da 6573 name, TRUE))
3e19fb8f
L
6574 return FALSE;
6575
0ce398f1 6576 /* Update section size and contents. */
3e19fb8f
L
6577 shdrp->sh_size = sec->size;
6578 shdrp->contents = sec->contents;
0ce398f1
L
6579 shdrp->bfd_section->contents = NULL;
6580 }
1ff6de03
NA
6581 else if (is_ctf)
6582 {
6583 /* Update section size and contents. */
6584 shdrp->sh_size = sec->size;
6585 shdrp->contents = sec->contents;
6586 }
6587
0ce398f1
L
6588 off = _bfd_elf_assign_file_position_for_section (shdrp,
6589 off,
6590 TRUE);
6591 }
6592 }
252b5132
RH
6593 }
6594
3e19fb8f
L
6595 /* Place section name section after DWARF debug sections have been
6596 compressed. */
6597 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6598 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6599 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6600 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6601
6602 /* Place the section headers. */
a485e98e
AM
6603 i_ehdrp = elf_elfheader (abfd);
6604 bed = get_elf_backend_data (abfd);
6605 off = align_file_position (off, 1 << bed->s->log_file_align);
6606 i_ehdrp->e_shoff = off;
6607 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
12bd6957 6608 elf_next_file_pos (abfd) = off;
0ce398f1
L
6609
6610 return TRUE;
252b5132
RH
6611}
6612
b34976b6 6613bfd_boolean
217aa764 6614_bfd_elf_write_object_contents (bfd *abfd)
252b5132 6615{
9c5bfbb7 6616 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 6617 Elf_Internal_Shdr **i_shdrp;
b34976b6 6618 bfd_boolean failed;
9ad5cbcf 6619 unsigned int count, num_sec;
30e8ee25 6620 struct elf_obj_tdata *t;
252b5132
RH
6621
6622 if (! abfd->output_has_begun
217aa764 6623 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 6624 return FALSE;
db727370
JL
6625 /* Do not rewrite ELF data when the BFD has been opened for update.
6626 abfd->output_has_begun was set to TRUE on opening, so creation of new
6627 sections, and modification of existing section sizes was restricted.
6628 This means the ELF header, program headers and section headers can't have
6629 changed.
6630 If the contents of any sections has been modified, then those changes have
6631 already been written to the BFD. */
6632 else if (abfd->direction == both_direction)
6633 {
6634 BFD_ASSERT (abfd->output_has_begun);
6635 return TRUE;
6636 }
252b5132
RH
6637
6638 i_shdrp = elf_elfsections (abfd);
252b5132 6639
b34976b6 6640 failed = FALSE;
252b5132
RH
6641 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6642 if (failed)
b34976b6 6643 return FALSE;
252b5132 6644
0ce398f1
L
6645 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6646 return FALSE;
252b5132 6647
c044fabd 6648 /* After writing the headers, we need to write the sections too... */
9ad5cbcf
AM
6649 num_sec = elf_numsections (abfd);
6650 for (count = 1; count < num_sec; count++)
252b5132 6651 {
3e19fb8f
L
6652 i_shdrp[count]->sh_name
6653 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6654 i_shdrp[count]->sh_name);
252b5132 6655 if (bed->elf_backend_section_processing)
75506100
MR
6656 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6657 return FALSE;
252b5132
RH
6658 if (i_shdrp[count]->contents)
6659 {
dc810e39
AM
6660 bfd_size_type amt = i_shdrp[count]->sh_size;
6661
252b5132 6662 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
dc810e39 6663 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
b34976b6 6664 return FALSE;
252b5132
RH
6665 }
6666 }
6667
6668 /* Write out the section header names. */
30e8ee25 6669 t = elf_tdata (abfd);
26ae6d5e 6670 if (elf_shstrtab (abfd) != NULL
30e8ee25 6671 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
08a40648 6672 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
b34976b6 6673 return FALSE;
252b5132 6674
cc364be6
AM
6675 if (!(*bed->elf_backend_final_write_processing) (abfd))
6676 return FALSE;
252b5132 6677
ff59fc36
RM
6678 if (!bed->s->write_shdrs_and_ehdr (abfd))
6679 return FALSE;
6680
6681 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
c0355132
AM
6682 if (t->o->build_id.after_write_object_contents != NULL)
6683 return (*t->o->build_id.after_write_object_contents) (abfd);
ff59fc36
RM
6684
6685 return TRUE;
252b5132
RH
6686}
6687
b34976b6 6688bfd_boolean
217aa764 6689_bfd_elf_write_corefile_contents (bfd *abfd)
252b5132 6690{
c044fabd 6691 /* Hopefully this can be done just like an object file. */
252b5132
RH
6692 return _bfd_elf_write_object_contents (abfd);
6693}
c044fabd
KH
6694
6695/* Given a section, search the header to find them. */
6696
cb33740c 6697unsigned int
198beae2 6698_bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
252b5132 6699{
9c5bfbb7 6700 const struct elf_backend_data *bed;
91d6fa6a 6701 unsigned int sec_index;
252b5132 6702
9ad5cbcf
AM
6703 if (elf_section_data (asect) != NULL
6704 && elf_section_data (asect)->this_idx != 0)
6705 return elf_section_data (asect)->this_idx;
6706
6707 if (bfd_is_abs_section (asect))
91d6fa6a 6708 sec_index = SHN_ABS;
af746e92 6709 else if (bfd_is_com_section (asect))
91d6fa6a 6710 sec_index = SHN_COMMON;
af746e92 6711 else if (bfd_is_und_section (asect))
91d6fa6a 6712 sec_index = SHN_UNDEF;
af746e92 6713 else
91d6fa6a 6714 sec_index = SHN_BAD;
252b5132 6715
af746e92 6716 bed = get_elf_backend_data (abfd);
252b5132
RH
6717 if (bed->elf_backend_section_from_bfd_section)
6718 {
91d6fa6a 6719 int retval = sec_index;
9ad5cbcf 6720
af746e92
AM
6721 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6722 return retval;
252b5132
RH
6723 }
6724
91d6fa6a 6725 if (sec_index == SHN_BAD)
af746e92 6726 bfd_set_error (bfd_error_nonrepresentable_section);
252b5132 6727
91d6fa6a 6728 return sec_index;
252b5132
RH
6729}
6730
6731/* Given a BFD symbol, return the index in the ELF symbol table, or -1
6732 on error. */
6733
6734int
217aa764 6735_bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
252b5132
RH
6736{
6737 asymbol *asym_ptr = *asym_ptr_ptr;
6738 int idx;
6739 flagword flags = asym_ptr->flags;
6740
6741 /* When gas creates relocations against local labels, it creates its
6742 own symbol for the section, but does put the symbol into the
6743 symbol chain, so udata is 0. When the linker is generating
6744 relocatable output, this section symbol may be for one of the
6745 input sections rather than the output section. */
6746 if (asym_ptr->udata.i == 0
6747 && (flags & BSF_SECTION_SYM)
6748 && asym_ptr->section)
6749 {
5372391b 6750 asection *sec;
252b5132
RH
6751 int indx;
6752
5372391b
AM
6753 sec = asym_ptr->section;
6754 if (sec->owner != abfd && sec->output_section != NULL)
6755 sec = sec->output_section;
6756 if (sec->owner == abfd
6757 && (indx = sec->index) < elf_num_section_syms (abfd)
4e89ac30 6758 && elf_section_syms (abfd)[indx] != NULL)
252b5132
RH
6759 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6760 }
6761
6762 idx = asym_ptr->udata.i;
6763
6764 if (idx == 0)
6765 {
6766 /* This case can occur when using --strip-symbol on a symbol
08a40648 6767 which is used in a relocation entry. */
4eca0228 6768 _bfd_error_handler
695344c0 6769 /* xgettext:c-format */
871b3ab2 6770 (_("%pB: symbol `%s' required but not present"),
d003868e 6771 abfd, bfd_asymbol_name (asym_ptr));
252b5132
RH
6772 bfd_set_error (bfd_error_no_symbols);
6773 return -1;
6774 }
6775
6776#if DEBUG & 4
6777 {
6778 fprintf (stderr,
cd9af601
AM
6779 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6780 (long) asym_ptr, asym_ptr->name, idx, flags);
252b5132
RH
6781 fflush (stderr);
6782 }
6783#endif
6784
6785 return idx;
6786}
6787
84d1d650 6788/* Rewrite program header information. */
252b5132 6789
b34976b6 6790static bfd_boolean
84d1d650 6791rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
252b5132 6792{
b34976b6
AM
6793 Elf_Internal_Ehdr *iehdr;
6794 struct elf_segment_map *map;
6795 struct elf_segment_map *map_first;
6796 struct elf_segment_map **pointer_to_map;
6797 Elf_Internal_Phdr *segment;
6798 asection *section;
6799 unsigned int i;
6800 unsigned int num_segments;
6801 bfd_boolean phdr_included = FALSE;
5c44b38e 6802 bfd_boolean p_paddr_valid;
b34976b6
AM
6803 bfd_vma maxpagesize;
6804 struct elf_segment_map *phdr_adjust_seg = NULL;
6805 unsigned int phdr_adjust_num = 0;
9c5bfbb7 6806 const struct elf_backend_data *bed;
bc67d8a6 6807
caf47ea6 6808 bed = get_elf_backend_data (ibfd);
252b5132
RH
6809 iehdr = elf_elfheader (ibfd);
6810
bc67d8a6 6811 map_first = NULL;
c044fabd 6812 pointer_to_map = &map_first;
252b5132
RH
6813
6814 num_segments = elf_elfheader (ibfd)->e_phnum;
bc67d8a6
NC
6815 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6816
6817 /* Returns the end address of the segment + 1. */
aecc8f8a
AM
6818#define SEGMENT_END(segment, start) \
6819 (start + (segment->p_memsz > segment->p_filesz \
6820 ? segment->p_memsz : segment->p_filesz))
bc67d8a6 6821
eecdbe52
JJ
6822#define SECTION_SIZE(section, segment) \
6823 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6824 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
eea6121a 6825 ? section->size : 0)
eecdbe52 6826
b34976b6 6827 /* Returns TRUE if the given section is contained within
bc67d8a6 6828 the given segment. VMA addresses are compared. */
aecc8f8a
AM
6829#define IS_CONTAINED_BY_VMA(section, segment) \
6830 (section->vma >= segment->p_vaddr \
eecdbe52 6831 && (section->vma + SECTION_SIZE (section, segment) \
aecc8f8a 6832 <= (SEGMENT_END (segment, segment->p_vaddr))))
c044fabd 6833
b34976b6 6834 /* Returns TRUE if the given section is contained within
bc67d8a6 6835 the given segment. LMA addresses are compared. */
aecc8f8a
AM
6836#define IS_CONTAINED_BY_LMA(section, segment, base) \
6837 (section->lma >= base \
beab4532 6838 && (section->lma + SECTION_SIZE (section, segment) >= section->lma) \
eecdbe52 6839 && (section->lma + SECTION_SIZE (section, segment) \
aecc8f8a 6840 <= SEGMENT_END (segment, base)))
252b5132 6841
0efc80c8
L
6842 /* Handle PT_NOTE segment. */
6843#define IS_NOTE(p, s) \
aecc8f8a 6844 (p->p_type == PT_NOTE \
0efc80c8 6845 && elf_section_type (s) == SHT_NOTE \
aecc8f8a 6846 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6847 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6848 <= p->p_offset + p->p_filesz))
252b5132 6849
0efc80c8
L
6850 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6851 etc. */
6852#define IS_COREFILE_NOTE(p, s) \
6853 (IS_NOTE (p, s) \
6854 && bfd_get_format (ibfd) == bfd_core \
6855 && s->vma == 0 \
6856 && s->lma == 0)
6857
252b5132
RH
6858 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6859 linker, which generates a PT_INTERP section with p_vaddr and
6860 p_memsz set to 0. */
aecc8f8a
AM
6861#define IS_SOLARIS_PT_INTERP(p, s) \
6862 (p->p_vaddr == 0 \
6863 && p->p_paddr == 0 \
6864 && p->p_memsz == 0 \
6865 && p->p_filesz > 0 \
6866 && (s->flags & SEC_HAS_CONTENTS) != 0 \
eea6121a 6867 && s->size > 0 \
aecc8f8a 6868 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6869 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6870 <= p->p_offset + p->p_filesz))
5c440b1e 6871
bc67d8a6
NC
6872 /* Decide if the given section should be included in the given segment.
6873 A section will be included if:
f5ffc919 6874 1. It is within the address space of the segment -- we use the LMA
08a40648 6875 if that is set for the segment and the VMA otherwise,
0efc80c8 6876 2. It is an allocated section or a NOTE section in a PT_NOTE
d324f6d6 6877 segment.
bc67d8a6 6878 3. There is an output section associated with it,
eecdbe52 6879 4. The section has not already been allocated to a previous segment.
2b05f1b7 6880 5. PT_GNU_STACK segments do not include any sections.
03394ac9 6881 6. PT_TLS segment includes only SHF_TLS sections.
6f79b219
JJ
6882 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6883 8. PT_DYNAMIC should not contain empty sections at the beginning
08a40648 6884 (with the possible exception of .dynamic). */
9f17e2a6 6885#define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
2b05f1b7
L
6886 ((((segment->p_paddr \
6887 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
6888 : IS_CONTAINED_BY_VMA (section, segment)) \
6889 && (section->flags & SEC_ALLOC) != 0) \
0efc80c8 6890 || IS_NOTE (segment, section)) \
2b05f1b7
L
6891 && segment->p_type != PT_GNU_STACK \
6892 && (segment->p_type != PT_TLS \
6893 || (section->flags & SEC_THREAD_LOCAL)) \
6894 && (segment->p_type == PT_LOAD \
6895 || segment->p_type == PT_TLS \
6896 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6897 && (segment->p_type != PT_DYNAMIC \
6898 || SECTION_SIZE (section, segment) > 0 \
6899 || (segment->p_paddr \
6900 ? segment->p_paddr != section->lma \
6901 : segment->p_vaddr != section->vma) \
fd361982 6902 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
9933dc52 6903 && (segment->p_type != PT_LOAD || !section->segment_mark))
bc67d8a6 6904
9f17e2a6
L
6905/* If the output section of a section in the input segment is NULL,
6906 it is removed from the corresponding output segment. */
6907#define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
6908 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
6909 && section->output_section != NULL)
6910
b34976b6 6911 /* Returns TRUE iff seg1 starts after the end of seg2. */
b5f852ea
NC
6912#define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6913 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6914
6915 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6916 their VMA address ranges and their LMA address ranges overlap.
6917 It is possible to have overlapping VMA ranges without overlapping LMA
6918 ranges. RedBoot images for example can have both .data and .bss mapped
6919 to the same VMA range, but with the .data section mapped to a different
6920 LMA. */
aecc8f8a 6921#define SEGMENT_OVERLAPS(seg1, seg2) \
b5f852ea 6922 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
08a40648 6923 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
b5f852ea 6924 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
08a40648 6925 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
bc67d8a6
NC
6926
6927 /* Initialise the segment mark field. */
6928 for (section = ibfd->sections; section != NULL; section = section->next)
b34976b6 6929 section->segment_mark = FALSE;
bc67d8a6 6930
5c44b38e
AM
6931 /* The Solaris linker creates program headers in which all the
6932 p_paddr fields are zero. When we try to objcopy or strip such a
6933 file, we get confused. Check for this case, and if we find it
6934 don't set the p_paddr_valid fields. */
6935 p_paddr_valid = FALSE;
6936 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6937 i < num_segments;
6938 i++, segment++)
6939 if (segment->p_paddr != 0)
6940 {
6941 p_paddr_valid = TRUE;
6942 break;
6943 }
6944
252b5132 6945 /* Scan through the segments specified in the program header
bc67d8a6 6946 of the input BFD. For this first scan we look for overlaps
9ad5cbcf 6947 in the loadable segments. These can be created by weird
aecc8f8a 6948 parameters to objcopy. Also, fix some solaris weirdness. */
bc67d8a6
NC
6949 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6950 i < num_segments;
c044fabd 6951 i++, segment++)
252b5132 6952 {
252b5132 6953 unsigned int j;
c044fabd 6954 Elf_Internal_Phdr *segment2;
252b5132 6955
aecc8f8a
AM
6956 if (segment->p_type == PT_INTERP)
6957 for (section = ibfd->sections; section; section = section->next)
6958 if (IS_SOLARIS_PT_INTERP (segment, section))
6959 {
6960 /* Mininal change so that the normal section to segment
4cc11e76 6961 assignment code will work. */
aecc8f8a
AM
6962 segment->p_vaddr = section->vma;
6963 break;
6964 }
6965
bc67d8a6 6966 if (segment->p_type != PT_LOAD)
b10a8ae0
L
6967 {
6968 /* Remove PT_GNU_RELRO segment. */
6969 if (segment->p_type == PT_GNU_RELRO)
6970 segment->p_type = PT_NULL;
6971 continue;
6972 }
c044fabd 6973
bc67d8a6 6974 /* Determine if this segment overlaps any previous segments. */
0067a569 6975 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
bc67d8a6
NC
6976 {
6977 bfd_signed_vma extra_length;
c044fabd 6978
bc67d8a6 6979 if (segment2->p_type != PT_LOAD
0067a569 6980 || !SEGMENT_OVERLAPS (segment, segment2))
bc67d8a6 6981 continue;
c044fabd 6982
bc67d8a6
NC
6983 /* Merge the two segments together. */
6984 if (segment2->p_vaddr < segment->p_vaddr)
6985 {
c044fabd 6986 /* Extend SEGMENT2 to include SEGMENT and then delete
08a40648 6987 SEGMENT. */
0067a569
AM
6988 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6989 - SEGMENT_END (segment2, segment2->p_vaddr));
c044fabd 6990
bc67d8a6
NC
6991 if (extra_length > 0)
6992 {
0067a569 6993 segment2->p_memsz += extra_length;
bc67d8a6
NC
6994 segment2->p_filesz += extra_length;
6995 }
c044fabd 6996
bc67d8a6 6997 segment->p_type = PT_NULL;
c044fabd 6998
bc67d8a6
NC
6999 /* Since we have deleted P we must restart the outer loop. */
7000 i = 0;
7001 segment = elf_tdata (ibfd)->phdr;
7002 break;
7003 }
7004 else
7005 {
c044fabd 7006 /* Extend SEGMENT to include SEGMENT2 and then delete
08a40648 7007 SEGMENT2. */
0067a569
AM
7008 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
7009 - SEGMENT_END (segment, segment->p_vaddr));
c044fabd 7010
bc67d8a6
NC
7011 if (extra_length > 0)
7012 {
0067a569 7013 segment->p_memsz += extra_length;
bc67d8a6
NC
7014 segment->p_filesz += extra_length;
7015 }
c044fabd 7016
bc67d8a6
NC
7017 segment2->p_type = PT_NULL;
7018 }
7019 }
7020 }
c044fabd 7021
bc67d8a6
NC
7022 /* The second scan attempts to assign sections to segments. */
7023 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7024 i < num_segments;
0067a569 7025 i++, segment++)
bc67d8a6 7026 {
0067a569
AM
7027 unsigned int section_count;
7028 asection **sections;
7029 asection *output_section;
7030 unsigned int isec;
9933dc52
AM
7031 asection *matching_lma;
7032 asection *suggested_lma;
0067a569 7033 unsigned int j;
446f7ed5 7034 size_t amt;
0067a569 7035 asection *first_section;
bc67d8a6
NC
7036
7037 if (segment->p_type == PT_NULL)
7038 continue;
c044fabd 7039
9f17e2a6 7040 first_section = NULL;
bc67d8a6 7041 /* Compute how many sections might be placed into this segment. */
b5f852ea
NC
7042 for (section = ibfd->sections, section_count = 0;
7043 section != NULL;
7044 section = section->next)
9f17e2a6
L
7045 {
7046 /* Find the first section in the input segment, which may be
7047 removed from the corresponding output segment. */
7048 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
7049 {
7050 if (first_section == NULL)
7051 first_section = section;
7052 if (section->output_section != NULL)
7053 ++section_count;
7054 }
7055 }
811072d8 7056
b5f852ea
NC
7057 /* Allocate a segment map big enough to contain
7058 all of the sections we have selected. */
00bee008 7059 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7060 amt += section_count * sizeof (asection *);
a50b1753 7061 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7062 if (map == NULL)
b34976b6 7063 return FALSE;
252b5132
RH
7064
7065 /* Initialise the fields of the segment map. Default to
7066 using the physical address of the segment in the input BFD. */
0067a569
AM
7067 map->next = NULL;
7068 map->p_type = segment->p_type;
7069 map->p_flags = segment->p_flags;
bc67d8a6 7070 map->p_flags_valid = 1;
55d55ac7 7071
9f17e2a6
L
7072 /* If the first section in the input segment is removed, there is
7073 no need to preserve segment physical address in the corresponding
7074 output segment. */
945c025a 7075 if (!first_section || first_section->output_section != NULL)
9f17e2a6
L
7076 {
7077 map->p_paddr = segment->p_paddr;
5c44b38e 7078 map->p_paddr_valid = p_paddr_valid;
9f17e2a6 7079 }
252b5132
RH
7080
7081 /* Determine if this segment contains the ELF file header
7082 and if it contains the program headers themselves. */
bc67d8a6
NC
7083 map->includes_filehdr = (segment->p_offset == 0
7084 && segment->p_filesz >= iehdr->e_ehsize);
bc67d8a6 7085 map->includes_phdrs = 0;
252b5132 7086
0067a569 7087 if (!phdr_included || segment->p_type != PT_LOAD)
252b5132 7088 {
bc67d8a6
NC
7089 map->includes_phdrs =
7090 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7091 && (segment->p_offset + segment->p_filesz
252b5132
RH
7092 >= ((bfd_vma) iehdr->e_phoff
7093 + iehdr->e_phnum * iehdr->e_phentsize)));
c044fabd 7094
bc67d8a6 7095 if (segment->p_type == PT_LOAD && map->includes_phdrs)
b34976b6 7096 phdr_included = TRUE;
252b5132
RH
7097 }
7098
bc67d8a6 7099 if (section_count == 0)
252b5132
RH
7100 {
7101 /* Special segments, such as the PT_PHDR segment, may contain
7102 no sections, but ordinary, loadable segments should contain
1ed89aa9 7103 something. They are allowed by the ELF spec however, so only
07d6d2b8 7104 a warning is produced.
f98450c6
NC
7105 There is however the valid use case of embedded systems which
7106 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7107 flash memory with zeros. No warning is shown for that case. */
7108 if (segment->p_type == PT_LOAD
7109 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7110 /* xgettext:c-format */
9793eb77
AM
7111 _bfd_error_handler
7112 (_("%pB: warning: empty loadable segment detected"
7113 " at vaddr=%#" PRIx64 ", is this intentional?"),
7114 ibfd, (uint64_t) segment->p_vaddr);
252b5132 7115
5d695627 7116 map->p_vaddr_offset = segment->p_vaddr;
bc67d8a6 7117 map->count = 0;
c044fabd
KH
7118 *pointer_to_map = map;
7119 pointer_to_map = &map->next;
252b5132
RH
7120
7121 continue;
7122 }
7123
7124 /* Now scan the sections in the input BFD again and attempt
7125 to add their corresponding output sections to the segment map.
7126 The problem here is how to handle an output section which has
7127 been moved (ie had its LMA changed). There are four possibilities:
7128
7129 1. None of the sections have been moved.
7130 In this case we can continue to use the segment LMA from the
7131 input BFD.
7132
7133 2. All of the sections have been moved by the same amount.
7134 In this case we can change the segment's LMA to match the LMA
7135 of the first section.
7136
7137 3. Some of the sections have been moved, others have not.
7138 In this case those sections which have not been moved can be
7139 placed in the current segment which will have to have its size,
7140 and possibly its LMA changed, and a new segment or segments will
7141 have to be created to contain the other sections.
7142
b5f852ea 7143 4. The sections have been moved, but not by the same amount.
252b5132
RH
7144 In this case we can change the segment's LMA to match the LMA
7145 of the first section and we will have to create a new segment
7146 or segments to contain the other sections.
7147
7148 In order to save time, we allocate an array to hold the section
7149 pointers that we are interested in. As these sections get assigned
7150 to a segment, they are removed from this array. */
7151
446f7ed5
AM
7152 amt = section_count * sizeof (asection *);
7153 sections = (asection **) bfd_malloc (amt);
252b5132 7154 if (sections == NULL)
b34976b6 7155 return FALSE;
252b5132
RH
7156
7157 /* Step One: Scan for segment vs section LMA conflicts.
7158 Also add the sections to the section array allocated above.
7159 Also add the sections to the current segment. In the common
7160 case, where the sections have not been moved, this means that
7161 we have completely filled the segment, and there is nothing
7162 more to do. */
252b5132 7163 isec = 0;
9933dc52
AM
7164 matching_lma = NULL;
7165 suggested_lma = NULL;
252b5132 7166
461c4b2e 7167 for (section = first_section, j = 0;
bc67d8a6
NC
7168 section != NULL;
7169 section = section->next)
252b5132 7170 {
caf47ea6 7171 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
c0f7859b 7172 {
bc67d8a6
NC
7173 output_section = section->output_section;
7174
0067a569 7175 sections[j++] = section;
252b5132
RH
7176
7177 /* The Solaris native linker always sets p_paddr to 0.
7178 We try to catch that case here, and set it to the
5e8d7549
NC
7179 correct value. Note - some backends require that
7180 p_paddr be left as zero. */
5c44b38e 7181 if (!p_paddr_valid
4455705d 7182 && segment->p_vaddr != 0
0067a569 7183 && !bed->want_p_paddr_set_to_zero
252b5132 7184 && isec == 0
bc67d8a6 7185 && output_section->lma != 0
9933dc52
AM
7186 && (align_power (segment->p_vaddr
7187 + (map->includes_filehdr
7188 ? iehdr->e_ehsize : 0)
7189 + (map->includes_phdrs
7190 ? iehdr->e_phnum * iehdr->e_phentsize
7191 : 0),
7192 output_section->alignment_power)
7193 == output_section->vma))
bc67d8a6 7194 map->p_paddr = segment->p_vaddr;
252b5132
RH
7195
7196 /* Match up the physical address of the segment with the
7197 LMA address of the output section. */
bc67d8a6 7198 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5e8d7549 7199 || IS_COREFILE_NOTE (segment, section)
0067a569
AM
7200 || (bed->want_p_paddr_set_to_zero
7201 && IS_CONTAINED_BY_VMA (output_section, segment)))
252b5132 7202 {
9933dc52
AM
7203 if (matching_lma == NULL
7204 || output_section->lma < matching_lma->lma)
7205 matching_lma = output_section;
252b5132
RH
7206
7207 /* We assume that if the section fits within the segment
bc67d8a6 7208 then it does not overlap any other section within that
252b5132 7209 segment. */
0067a569
AM
7210 map->sections[isec++] = output_section;
7211 }
9933dc52
AM
7212 else if (suggested_lma == NULL)
7213 suggested_lma = output_section;
147d51c2
L
7214
7215 if (j == section_count)
7216 break;
252b5132
RH
7217 }
7218 }
7219
bc67d8a6 7220 BFD_ASSERT (j == section_count);
252b5132
RH
7221
7222 /* Step Two: Adjust the physical address of the current segment,
7223 if necessary. */
bc67d8a6 7224 if (isec == section_count)
252b5132
RH
7225 {
7226 /* All of the sections fitted within the segment as currently
7227 specified. This is the default case. Add the segment to
7228 the list of built segments and carry on to process the next
7229 program header in the input BFD. */
bc67d8a6 7230 map->count = section_count;
c044fabd
KH
7231 *pointer_to_map = map;
7232 pointer_to_map = &map->next;
08a40648 7233
5c44b38e 7234 if (p_paddr_valid
30fe1832
AM
7235 && !bed->want_p_paddr_set_to_zero)
7236 {
7237 bfd_vma hdr_size = 0;
7238 if (map->includes_filehdr)
7239 hdr_size = iehdr->e_ehsize;
7240 if (map->includes_phdrs)
7241 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7242
7243 /* Account for padding before the first section in the
7244 segment. */
7245 map->p_vaddr_offset = map->p_paddr + hdr_size - matching_lma->lma;
7246 }
08a40648 7247
252b5132
RH
7248 free (sections);
7249 continue;
7250 }
252b5132
RH
7251 else
7252 {
9933dc52
AM
7253 /* Change the current segment's physical address to match
7254 the LMA of the first section that fitted, or if no
7255 section fitted, the first section. */
7256 if (matching_lma == NULL)
7257 matching_lma = suggested_lma;
7258
7259 map->p_paddr = matching_lma->lma;
72730e0c 7260
bc67d8a6
NC
7261 /* Offset the segment physical address from the lma
7262 to allow for space taken up by elf headers. */
9933dc52 7263 if (map->includes_phdrs)
010c8431 7264 {
9933dc52
AM
7265 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7266
7267 /* iehdr->e_phnum is just an estimate of the number
7268 of program headers that we will need. Make a note
7269 here of the number we used and the segment we chose
7270 to hold these headers, so that we can adjust the
7271 offset when we know the correct value. */
7272 phdr_adjust_num = iehdr->e_phnum;
7273 phdr_adjust_seg = map;
010c8431 7274 }
252b5132 7275
9933dc52 7276 if (map->includes_filehdr)
bc67d8a6 7277 {
9933dc52
AM
7278 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7279 map->p_paddr -= iehdr->e_ehsize;
7280 /* We've subtracted off the size of headers from the
7281 first section lma, but there may have been some
7282 alignment padding before that section too. Try to
7283 account for that by adjusting the segment lma down to
7284 the same alignment. */
7285 if (segment->p_align != 0 && segment->p_align < align)
7286 align = segment->p_align;
7287 map->p_paddr &= -align;
bc67d8a6 7288 }
252b5132
RH
7289 }
7290
7291 /* Step Three: Loop over the sections again, this time assigning
caf47ea6 7292 those that fit to the current segment and removing them from the
252b5132
RH
7293 sections array; but making sure not to leave large gaps. Once all
7294 possible sections have been assigned to the current segment it is
7295 added to the list of built segments and if sections still remain
7296 to be assigned, a new segment is constructed before repeating
7297 the loop. */
7298 isec = 0;
7299 do
7300 {
bc67d8a6 7301 map->count = 0;
9933dc52 7302 suggested_lma = NULL;
252b5132
RH
7303
7304 /* Fill the current segment with sections that fit. */
bc67d8a6 7305 for (j = 0; j < section_count; j++)
252b5132 7306 {
bc67d8a6 7307 section = sections[j];
252b5132 7308
bc67d8a6 7309 if (section == NULL)
252b5132
RH
7310 continue;
7311
bc67d8a6 7312 output_section = section->output_section;
252b5132 7313
bc67d8a6 7314 BFD_ASSERT (output_section != NULL);
c044fabd 7315
bc67d8a6
NC
7316 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
7317 || IS_COREFILE_NOTE (segment, section))
252b5132 7318 {
bc67d8a6 7319 if (map->count == 0)
252b5132
RH
7320 {
7321 /* If the first section in a segment does not start at
bc67d8a6
NC
7322 the beginning of the segment, then something is
7323 wrong. */
9933dc52
AM
7324 if (align_power (map->p_paddr
7325 + (map->includes_filehdr
7326 ? iehdr->e_ehsize : 0)
7327 + (map->includes_phdrs
7328 ? iehdr->e_phnum * iehdr->e_phentsize
7329 : 0),
7330 output_section->alignment_power)
7331 != output_section->lma)
9aea1e31 7332 goto sorry;
252b5132
RH
7333 }
7334 else
7335 {
0067a569 7336 asection *prev_sec;
252b5132 7337
bc67d8a6 7338 prev_sec = map->sections[map->count - 1];
252b5132
RH
7339
7340 /* If the gap between the end of the previous section
bc67d8a6
NC
7341 and the start of this section is more than
7342 maxpagesize then we need to start a new segment. */
eea6121a 7343 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
079e9a2f 7344 maxpagesize)
caf47ea6 7345 < BFD_ALIGN (output_section->lma, maxpagesize))
0067a569 7346 || (prev_sec->lma + prev_sec->size
079e9a2f 7347 > output_section->lma))
252b5132 7348 {
9933dc52
AM
7349 if (suggested_lma == NULL)
7350 suggested_lma = output_section;
252b5132
RH
7351
7352 continue;
7353 }
7354 }
7355
bc67d8a6 7356 map->sections[map->count++] = output_section;
252b5132
RH
7357 ++isec;
7358 sections[j] = NULL;
9933dc52
AM
7359 if (segment->p_type == PT_LOAD)
7360 section->segment_mark = TRUE;
0067a569 7361 }
9933dc52
AM
7362 else if (suggested_lma == NULL)
7363 suggested_lma = output_section;
252b5132
RH
7364 }
7365
beab4532
NC
7366 /* PR 23932. A corrupt input file may contain sections that cannot
7367 be assigned to any segment - because for example they have a
9984857c
NC
7368 negative size - or segments that do not contain any sections.
7369 But there are also valid reasons why a segment can be empty.
7370 So allow a count of zero. */
252b5132
RH
7371
7372 /* Add the current segment to the list of built segments. */
c044fabd
KH
7373 *pointer_to_map = map;
7374 pointer_to_map = &map->next;
252b5132 7375
bc67d8a6 7376 if (isec < section_count)
252b5132
RH
7377 {
7378 /* We still have not allocated all of the sections to
7379 segments. Create a new segment here, initialise it
7380 and carry on looping. */
00bee008 7381 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7382 amt += section_count * sizeof (asection *);
5964fc3a 7383 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7384 if (map == NULL)
5ed6aba4
NC
7385 {
7386 free (sections);
7387 return FALSE;
7388 }
252b5132
RH
7389
7390 /* Initialise the fields of the segment map. Set the physical
7391 physical address to the LMA of the first section that has
7392 not yet been assigned. */
0067a569
AM
7393 map->next = NULL;
7394 map->p_type = segment->p_type;
7395 map->p_flags = segment->p_flags;
7396 map->p_flags_valid = 1;
9933dc52 7397 map->p_paddr = suggested_lma->lma;
5c44b38e 7398 map->p_paddr_valid = p_paddr_valid;
bc67d8a6 7399 map->includes_filehdr = 0;
0067a569 7400 map->includes_phdrs = 0;
252b5132 7401 }
9984857c
NC
7402
7403 continue;
7404 sorry:
7405 bfd_set_error (bfd_error_sorry);
7406 free (sections);
7407 return FALSE;
252b5132 7408 }
bc67d8a6 7409 while (isec < section_count);
252b5132
RH
7410
7411 free (sections);
7412 }
7413
12bd6957 7414 elf_seg_map (obfd) = map_first;
bc67d8a6
NC
7415
7416 /* If we had to estimate the number of program headers that were
9ad5cbcf 7417 going to be needed, then check our estimate now and adjust
bc67d8a6
NC
7418 the offset if necessary. */
7419 if (phdr_adjust_seg != NULL)
7420 {
7421 unsigned int count;
c044fabd 7422
bc67d8a6 7423 for (count = 0, map = map_first; map != NULL; map = map->next)
c044fabd 7424 count++;
252b5132 7425
bc67d8a6
NC
7426 if (count > phdr_adjust_num)
7427 phdr_adjust_seg->p_paddr
7428 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
9933dc52
AM
7429
7430 for (map = map_first; map != NULL; map = map->next)
7431 if (map->p_type == PT_PHDR)
7432 {
7433 bfd_vma adjust
7434 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7435 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7436 break;
7437 }
bc67d8a6 7438 }
c044fabd 7439
bc67d8a6 7440#undef SEGMENT_END
eecdbe52 7441#undef SECTION_SIZE
bc67d8a6
NC
7442#undef IS_CONTAINED_BY_VMA
7443#undef IS_CONTAINED_BY_LMA
0efc80c8 7444#undef IS_NOTE
252b5132 7445#undef IS_COREFILE_NOTE
bc67d8a6 7446#undef IS_SOLARIS_PT_INTERP
9f17e2a6 7447#undef IS_SECTION_IN_INPUT_SEGMENT
bc67d8a6
NC
7448#undef INCLUDE_SECTION_IN_SEGMENT
7449#undef SEGMENT_AFTER_SEGMENT
7450#undef SEGMENT_OVERLAPS
b34976b6 7451 return TRUE;
252b5132
RH
7452}
7453
84d1d650
L
7454/* Copy ELF program header information. */
7455
7456static bfd_boolean
7457copy_elf_program_header (bfd *ibfd, bfd *obfd)
7458{
7459 Elf_Internal_Ehdr *iehdr;
7460 struct elf_segment_map *map;
7461 struct elf_segment_map *map_first;
7462 struct elf_segment_map **pointer_to_map;
7463 Elf_Internal_Phdr *segment;
7464 unsigned int i;
7465 unsigned int num_segments;
7466 bfd_boolean phdr_included = FALSE;
88967714 7467 bfd_boolean p_paddr_valid;
84d1d650
L
7468
7469 iehdr = elf_elfheader (ibfd);
7470
7471 map_first = NULL;
7472 pointer_to_map = &map_first;
7473
88967714
AM
7474 /* If all the segment p_paddr fields are zero, don't set
7475 map->p_paddr_valid. */
7476 p_paddr_valid = FALSE;
84d1d650 7477 num_segments = elf_elfheader (ibfd)->e_phnum;
88967714
AM
7478 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7479 i < num_segments;
7480 i++, segment++)
7481 if (segment->p_paddr != 0)
7482 {
7483 p_paddr_valid = TRUE;
7484 break;
7485 }
7486
84d1d650
L
7487 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7488 i < num_segments;
7489 i++, segment++)
7490 {
7491 asection *section;
7492 unsigned int section_count;
986f0783 7493 size_t amt;
84d1d650 7494 Elf_Internal_Shdr *this_hdr;
53020534 7495 asection *first_section = NULL;
a76e6f2f 7496 asection *lowest_section;
84d1d650 7497
84d1d650
L
7498 /* Compute how many sections are in this segment. */
7499 for (section = ibfd->sections, section_count = 0;
7500 section != NULL;
7501 section = section->next)
7502 {
7503 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7504 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
3271a814 7505 {
a76e6f2f
AM
7506 if (first_section == NULL)
7507 first_section = section;
3271a814
NS
7508 section_count++;
7509 }
84d1d650
L
7510 }
7511
7512 /* Allocate a segment map big enough to contain
7513 all of the sections we have selected. */
00bee008 7514 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
986f0783 7515 amt += section_count * sizeof (asection *);
a50b1753 7516 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
84d1d650
L
7517 if (map == NULL)
7518 return FALSE;
7519
7520 /* Initialize the fields of the output segment map with the
7521 input segment. */
7522 map->next = NULL;
7523 map->p_type = segment->p_type;
7524 map->p_flags = segment->p_flags;
7525 map->p_flags_valid = 1;
7526 map->p_paddr = segment->p_paddr;
88967714 7527 map->p_paddr_valid = p_paddr_valid;
3f570048
AM
7528 map->p_align = segment->p_align;
7529 map->p_align_valid = 1;
3271a814 7530 map->p_vaddr_offset = 0;
84d1d650 7531
04c3a755
NS
7532 if (map->p_type == PT_GNU_RELRO
7533 || map->p_type == PT_GNU_STACK)
b10a8ae0
L
7534 {
7535 /* The PT_GNU_RELRO segment may contain the first a few
7536 bytes in the .got.plt section even if the whole .got.plt
7537 section isn't in the PT_GNU_RELRO segment. We won't
04c3a755
NS
7538 change the size of the PT_GNU_RELRO segment.
7539 Similarly, PT_GNU_STACK size is significant on uclinux
7540 systems. */
9433b9b1 7541 map->p_size = segment->p_memsz;
b10a8ae0
L
7542 map->p_size_valid = 1;
7543 }
7544
84d1d650
L
7545 /* Determine if this segment contains the ELF file header
7546 and if it contains the program headers themselves. */
7547 map->includes_filehdr = (segment->p_offset == 0
7548 && segment->p_filesz >= iehdr->e_ehsize);
7549
7550 map->includes_phdrs = 0;
7551 if (! phdr_included || segment->p_type != PT_LOAD)
7552 {
7553 map->includes_phdrs =
7554 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7555 && (segment->p_offset + segment->p_filesz
7556 >= ((bfd_vma) iehdr->e_phoff
7557 + iehdr->e_phnum * iehdr->e_phentsize)));
7558
7559 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7560 phdr_included = TRUE;
7561 }
7562
bbefd0a9 7563 lowest_section = NULL;
84d1d650
L
7564 if (section_count != 0)
7565 {
7566 unsigned int isec = 0;
7567
53020534 7568 for (section = first_section;
84d1d650
L
7569 section != NULL;
7570 section = section->next)
7571 {
7572 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7573 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
53020534
L
7574 {
7575 map->sections[isec++] = section->output_section;
a76e6f2f
AM
7576 if ((section->flags & SEC_ALLOC) != 0)
7577 {
7578 bfd_vma seg_off;
7579
bbefd0a9
AM
7580 if (lowest_section == NULL
7581 || section->lma < lowest_section->lma)
fb8a5684
AM
7582 lowest_section = section;
7583
a76e6f2f
AM
7584 /* Section lmas are set up from PT_LOAD header
7585 p_paddr in _bfd_elf_make_section_from_shdr.
7586 If this header has a p_paddr that disagrees
7587 with the section lma, flag the p_paddr as
7588 invalid. */
7589 if ((section->flags & SEC_LOAD) != 0)
7590 seg_off = this_hdr->sh_offset - segment->p_offset;
7591 else
7592 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7593 if (section->lma - segment->p_paddr != seg_off)
7594 map->p_paddr_valid = FALSE;
7595 }
53020534
L
7596 if (isec == section_count)
7597 break;
7598 }
84d1d650
L
7599 }
7600 }
7601
5d695627
AM
7602 if (section_count == 0)
7603 map->p_vaddr_offset = segment->p_vaddr;
30fe1832
AM
7604 else if (map->p_paddr_valid)
7605 {
7606 /* Account for padding before the first section in the segment. */
7607 bfd_vma hdr_size = 0;
7608 if (map->includes_filehdr)
7609 hdr_size = iehdr->e_ehsize;
7610 if (map->includes_phdrs)
7611 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7612
7613 map->p_vaddr_offset = (map->p_paddr + hdr_size
7614 - (lowest_section ? lowest_section->lma : 0));
7615 }
a76e6f2f 7616
84d1d650
L
7617 map->count = section_count;
7618 *pointer_to_map = map;
7619 pointer_to_map = &map->next;
7620 }
7621
12bd6957 7622 elf_seg_map (obfd) = map_first;
84d1d650
L
7623 return TRUE;
7624}
7625
7626/* Copy private BFD data. This copies or rewrites ELF program header
7627 information. */
7628
7629static bfd_boolean
7630copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7631{
84d1d650
L
7632 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7633 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7634 return TRUE;
7635
7636 if (elf_tdata (ibfd)->phdr == NULL)
7637 return TRUE;
7638
7639 if (ibfd->xvec == obfd->xvec)
7640 {
cb3ff1e5
NC
7641 /* Check to see if any sections in the input BFD
7642 covered by ELF program header have changed. */
d55ce4e2 7643 Elf_Internal_Phdr *segment;
84d1d650
L
7644 asection *section, *osec;
7645 unsigned int i, num_segments;
7646 Elf_Internal_Shdr *this_hdr;
147d51c2
L
7647 const struct elf_backend_data *bed;
7648
7649 bed = get_elf_backend_data (ibfd);
7650
7651 /* Regenerate the segment map if p_paddr is set to 0. */
7652 if (bed->want_p_paddr_set_to_zero)
7653 goto rewrite;
84d1d650
L
7654
7655 /* Initialize the segment mark field. */
7656 for (section = obfd->sections; section != NULL;
7657 section = section->next)
7658 section->segment_mark = FALSE;
7659
7660 num_segments = elf_elfheader (ibfd)->e_phnum;
7661 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7662 i < num_segments;
7663 i++, segment++)
7664 {
5f6999aa
NC
7665 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7666 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7667 which severly confuses things, so always regenerate the segment
7668 map in this case. */
7669 if (segment->p_paddr == 0
7670 && segment->p_memsz == 0
7671 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
cb3ff1e5 7672 goto rewrite;
5f6999aa 7673
84d1d650
L
7674 for (section = ibfd->sections;
7675 section != NULL; section = section->next)
7676 {
7677 /* We mark the output section so that we know it comes
7678 from the input BFD. */
7679 osec = section->output_section;
7680 if (osec)
7681 osec->segment_mark = TRUE;
7682
7683 /* Check if this section is covered by the segment. */
7684 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7685 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
84d1d650
L
7686 {
7687 /* FIXME: Check if its output section is changed or
7688 removed. What else do we need to check? */
7689 if (osec == NULL
7690 || section->flags != osec->flags
7691 || section->lma != osec->lma
7692 || section->vma != osec->vma
7693 || section->size != osec->size
7694 || section->rawsize != osec->rawsize
7695 || section->alignment_power != osec->alignment_power)
7696 goto rewrite;
7697 }
7698 }
7699 }
7700
cb3ff1e5 7701 /* Check to see if any output section do not come from the
84d1d650
L
7702 input BFD. */
7703 for (section = obfd->sections; section != NULL;
7704 section = section->next)
7705 {
535b785f 7706 if (!section->segment_mark)
84d1d650
L
7707 goto rewrite;
7708 else
7709 section->segment_mark = FALSE;
7710 }
7711
7712 return copy_elf_program_header (ibfd, obfd);
7713 }
7714
7715rewrite:
f1d85785
L
7716 if (ibfd->xvec == obfd->xvec)
7717 {
7718 /* When rewriting program header, set the output maxpagesize to
7719 the maximum alignment of input PT_LOAD segments. */
7720 Elf_Internal_Phdr *segment;
7721 unsigned int i;
7722 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7723 bfd_vma maxpagesize = 0;
7724
7725 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7726 i < num_segments;
7727 i++, segment++)
7728 if (segment->p_type == PT_LOAD
7729 && maxpagesize < segment->p_align)
c86934ce
NC
7730 {
7731 /* PR 17512: file: f17299af. */
7732 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
695344c0 7733 /* xgettext:c-format */
2dcf00ce
AM
7734 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7735 PRIx64 " is too large"),
7736 ibfd, (uint64_t) segment->p_align);
c86934ce
NC
7737 else
7738 maxpagesize = segment->p_align;
7739 }
f1d85785
L
7740
7741 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7742 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7743 }
7744
84d1d650
L
7745 return rewrite_elf_program_header (ibfd, obfd);
7746}
7747
ccd2ec6a
L
7748/* Initialize private output section information from input section. */
7749
7750bfd_boolean
7751_bfd_elf_init_private_section_data (bfd *ibfd,
7752 asection *isec,
7753 bfd *obfd,
7754 asection *osec,
7755 struct bfd_link_info *link_info)
7756
7757{
7758 Elf_Internal_Shdr *ihdr, *ohdr;
0e1862bb
L
7759 bfd_boolean final_link = (link_info != NULL
7760 && !bfd_link_relocatable (link_info));
ccd2ec6a
L
7761
7762 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7763 || obfd->xvec->flavour != bfd_target_elf_flavour)
7764 return TRUE;
7765
ba85c43e
NC
7766 BFD_ASSERT (elf_section_data (osec) != NULL);
7767
dfa7b0b8
AM
7768 /* For objcopy and relocatable link, don't copy the output ELF
7769 section type from input if the output BFD section flags have been
7770 set to something different. For a final link allow some flags
7771 that the linker clears to differ. */
42bb2e33 7772 if (elf_section_type (osec) == SHT_NULL
dfa7b0b8
AM
7773 && (osec->flags == isec->flags
7774 || (final_link
7775 && ((osec->flags ^ isec->flags)
0814be7d 7776 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
42bb2e33 7777 elf_section_type (osec) = elf_section_type (isec);
d270463e
L
7778
7779 /* FIXME: Is this correct for all OS/PROC specific flags? */
7780 elf_section_flags (osec) |= (elf_section_flags (isec)
7781 & (SHF_MASKOS | SHF_MASKPROC));
ccd2ec6a 7782
a91e1603 7783 /* Copy sh_info from input for mbind section. */
df3a023b
AM
7784 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7785 && elf_section_flags (isec) & SHF_GNU_MBIND)
a91e1603
L
7786 elf_section_data (osec)->this_hdr.sh_info
7787 = elf_section_data (isec)->this_hdr.sh_info;
7788
ccd2ec6a
L
7789 /* Set things up for objcopy and relocatable link. The output
7790 SHT_GROUP section will have its elf_next_in_group pointing back
7791 to the input group members. Ignore linker created group section.
7792 See elfNN_ia64_object_p in elfxx-ia64.c. */
7bdf4127
AB
7793 if ((link_info == NULL
7794 || !link_info->resolve_section_groups)
7795 && (elf_sec_group (isec) == NULL
7796 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
ccd2ec6a 7797 {
7bdf4127
AB
7798 if (elf_section_flags (isec) & SHF_GROUP)
7799 elf_section_flags (osec) |= SHF_GROUP;
7800 elf_next_in_group (osec) = elf_next_in_group (isec);
7801 elf_section_data (osec)->group = elf_section_data (isec)->group;
ccd2ec6a
L
7802 }
7803
7bdf4127
AB
7804 /* If not decompress, preserve SHF_COMPRESSED. */
7805 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7806 elf_section_flags (osec) |= (elf_section_flags (isec)
7807 & SHF_COMPRESSED);
7808
ccd2ec6a
L
7809 ihdr = &elf_section_data (isec)->this_hdr;
7810
7811 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7812 don't use the output section of the linked-to section since it
7813 may be NULL at this point. */
7814 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7815 {
7816 ohdr = &elf_section_data (osec)->this_hdr;
7817 ohdr->sh_flags |= SHF_LINK_ORDER;
7818 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7819 }
7820
7821 osec->use_rela_p = isec->use_rela_p;
7822
7823 return TRUE;
7824}
7825
252b5132
RH
7826/* Copy private section information. This copies over the entsize
7827 field, and sometimes the info field. */
7828
b34976b6 7829bfd_boolean
217aa764
AM
7830_bfd_elf_copy_private_section_data (bfd *ibfd,
7831 asection *isec,
7832 bfd *obfd,
7833 asection *osec)
252b5132
RH
7834{
7835 Elf_Internal_Shdr *ihdr, *ohdr;
7836
7837 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7838 || obfd->xvec->flavour != bfd_target_elf_flavour)
b34976b6 7839 return TRUE;
252b5132 7840
252b5132
RH
7841 ihdr = &elf_section_data (isec)->this_hdr;
7842 ohdr = &elf_section_data (osec)->this_hdr;
7843
7844 ohdr->sh_entsize = ihdr->sh_entsize;
7845
7846 if (ihdr->sh_type == SHT_SYMTAB
7847 || ihdr->sh_type == SHT_DYNSYM
7848 || ihdr->sh_type == SHT_GNU_verneed
7849 || ihdr->sh_type == SHT_GNU_verdef)
7850 ohdr->sh_info = ihdr->sh_info;
7851
ccd2ec6a
L
7852 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7853 NULL);
252b5132
RH
7854}
7855
d0bf826b
AM
7856/* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7857 necessary if we are removing either the SHT_GROUP section or any of
7858 the group member sections. DISCARDED is the value that a section's
7859 output_section has if the section will be discarded, NULL when this
7860 function is called from objcopy, bfd_abs_section_ptr when called
7861 from the linker. */
80fccad2
BW
7862
7863bfd_boolean
d0bf826b 7864_bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
80fccad2 7865{
30288845
AM
7866 asection *isec;
7867
30288845 7868 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
415f38a6 7869 if (elf_section_type (isec) == SHT_GROUP)
30288845
AM
7870 {
7871 asection *first = elf_next_in_group (isec);
7872 asection *s = first;
d0bf826b
AM
7873 bfd_size_type removed = 0;
7874
30288845
AM
7875 while (s != NULL)
7876 {
415f38a6
AM
7877 /* If this member section is being output but the
7878 SHT_GROUP section is not, then clear the group info
7879 set up by _bfd_elf_copy_private_section_data. */
d0bf826b
AM
7880 if (s->output_section != discarded
7881 && isec->output_section == discarded)
30288845
AM
7882 {
7883 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7884 elf_group_name (s->output_section) = NULL;
7885 }
415f38a6
AM
7886 /* Conversely, if the member section is not being output
7887 but the SHT_GROUP section is, then adjust its size. */
d0bf826b
AM
7888 else if (s->output_section == discarded
7889 && isec->output_section != discarded)
6e5e9d58
AM
7890 {
7891 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7892 removed += 4;
7893 if (elf_sec->rel.hdr != NULL
7894 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7895 removed += 4;
7896 if (elf_sec->rela.hdr != NULL
7897 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7898 removed += 4;
7899 }
30288845
AM
7900 s = elf_next_in_group (s);
7901 if (s == first)
7902 break;
7903 }
d0bf826b
AM
7904 if (removed != 0)
7905 {
7906 if (discarded != NULL)
7907 {
7908 /* If we've been called for ld -r, then we need to
6e5e9d58 7909 adjust the input section size. */
d0bf826b
AM
7910 if (isec->rawsize == 0)
7911 isec->rawsize = isec->size;
7912 isec->size = isec->rawsize - removed;
6e5e9d58
AM
7913 if (isec->size <= 4)
7914 {
7915 isec->size = 0;
7916 isec->flags |= SEC_EXCLUDE;
7917 }
d0bf826b
AM
7918 }
7919 else
7920 {
7921 /* Adjust the output section size when called from
7922 objcopy. */
7923 isec->output_section->size -= removed;
6e5e9d58
AM
7924 if (isec->output_section->size <= 4)
7925 {
7926 isec->output_section->size = 0;
7927 isec->output_section->flags |= SEC_EXCLUDE;
7928 }
d0bf826b
AM
7929 }
7930 }
30288845
AM
7931 }
7932
80fccad2
BW
7933 return TRUE;
7934}
7935
d0bf826b
AM
7936/* Copy private header information. */
7937
7938bfd_boolean
7939_bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7940{
7941 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7942 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7943 return TRUE;
7944
7945 /* Copy over private BFD data if it has not already been copied.
7946 This must be done here, rather than in the copy_private_bfd_data
7947 entry point, because the latter is called after the section
7948 contents have been set, which means that the program headers have
7949 already been worked out. */
12bd6957 7950 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
d0bf826b
AM
7951 {
7952 if (! copy_private_bfd_data (ibfd, obfd))
7953 return FALSE;
7954 }
7955
7956 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7957}
7958
252b5132
RH
7959/* Copy private symbol information. If this symbol is in a section
7960 which we did not map into a BFD section, try to map the section
7961 index correctly. We use special macro definitions for the mapped
7962 section indices; these definitions are interpreted by the
7963 swap_out_syms function. */
7964
9ad5cbcf
AM
7965#define MAP_ONESYMTAB (SHN_HIOS + 1)
7966#define MAP_DYNSYMTAB (SHN_HIOS + 2)
7967#define MAP_STRTAB (SHN_HIOS + 3)
7968#define MAP_SHSTRTAB (SHN_HIOS + 4)
7969#define MAP_SYM_SHNDX (SHN_HIOS + 5)
252b5132 7970
b34976b6 7971bfd_boolean
217aa764
AM
7972_bfd_elf_copy_private_symbol_data (bfd *ibfd,
7973 asymbol *isymarg,
7974 bfd *obfd,
7975 asymbol *osymarg)
252b5132
RH
7976{
7977 elf_symbol_type *isym, *osym;
7978
7979 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7980 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 7981 return TRUE;
252b5132
RH
7982
7983 isym = elf_symbol_from (ibfd, isymarg);
7984 osym = elf_symbol_from (obfd, osymarg);
7985
7986 if (isym != NULL
8424d8f5 7987 && isym->internal_elf_sym.st_shndx != 0
252b5132
RH
7988 && osym != NULL
7989 && bfd_is_abs_section (isym->symbol.section))
7990 {
7991 unsigned int shndx;
7992
7993 shndx = isym->internal_elf_sym.st_shndx;
7994 if (shndx == elf_onesymtab (ibfd))
7995 shndx = MAP_ONESYMTAB;
7996 else if (shndx == elf_dynsymtab (ibfd))
7997 shndx = MAP_DYNSYMTAB;
12bd6957 7998 else if (shndx == elf_strtab_sec (ibfd))
252b5132 7999 shndx = MAP_STRTAB;
12bd6957 8000 else if (shndx == elf_shstrtab_sec (ibfd))
252b5132 8001 shndx = MAP_SHSTRTAB;
6a40cf0c 8002 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
9ad5cbcf 8003 shndx = MAP_SYM_SHNDX;
252b5132
RH
8004 osym->internal_elf_sym.st_shndx = shndx;
8005 }
8006
b34976b6 8007 return TRUE;
252b5132
RH
8008}
8009
8010/* Swap out the symbols. */
8011
b34976b6 8012static bfd_boolean
217aa764 8013swap_out_syms (bfd *abfd,
ef10c3ac 8014 struct elf_strtab_hash **sttp,
217aa764 8015 int relocatable_p)
252b5132 8016{
9c5bfbb7 8017 const struct elf_backend_data *bed;
079e9a2f
AM
8018 int symcount;
8019 asymbol **syms;
ef10c3ac 8020 struct elf_strtab_hash *stt;
079e9a2f 8021 Elf_Internal_Shdr *symtab_hdr;
9ad5cbcf 8022 Elf_Internal_Shdr *symtab_shndx_hdr;
079e9a2f 8023 Elf_Internal_Shdr *symstrtab_hdr;
ef10c3ac 8024 struct elf_sym_strtab *symstrtab;
f075ee0c
AM
8025 bfd_byte *outbound_syms;
8026 bfd_byte *outbound_shndx;
ef10c3ac
L
8027 unsigned long outbound_syms_index;
8028 unsigned long outbound_shndx_index;
079e9a2f 8029 int idx;
12bd6957 8030 unsigned int num_locals;
079e9a2f 8031 bfd_size_type amt;
174fd7f9 8032 bfd_boolean name_local_sections;
252b5132 8033
12bd6957 8034 if (!elf_map_symbols (abfd, &num_locals))
b34976b6 8035 return FALSE;
252b5132 8036
c044fabd 8037 /* Dump out the symtabs. */
ef10c3ac 8038 stt = _bfd_elf_strtab_init ();
079e9a2f 8039 if (stt == NULL)
b34976b6 8040 return FALSE;
252b5132 8041
079e9a2f
AM
8042 bed = get_elf_backend_data (abfd);
8043 symcount = bfd_get_symcount (abfd);
8044 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8045 symtab_hdr->sh_type = SHT_SYMTAB;
8046 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8047 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
12bd6957 8048 symtab_hdr->sh_info = num_locals + 1;
72de5009 8049 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
079e9a2f
AM
8050
8051 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8052 symstrtab_hdr->sh_type = SHT_STRTAB;
8053
ef10c3ac 8054 /* Allocate buffer to swap out the .strtab section. */
7a6e0d89
AM
8055 symstrtab = (struct elf_sym_strtab *) bfd_malloc2 (symcount + 1,
8056 sizeof (*symstrtab));
ef10c3ac
L
8057 if (symstrtab == NULL)
8058 {
8059 _bfd_elf_strtab_free (stt);
8060 return FALSE;
8061 }
8062
a50b1753 8063 outbound_syms = (bfd_byte *) bfd_alloc2 (abfd, 1 + symcount,
07d6d2b8 8064 bed->s->sizeof_sym);
079e9a2f 8065 if (outbound_syms == NULL)
5ed6aba4 8066 {
ef10c3ac
L
8067error_return:
8068 _bfd_elf_strtab_free (stt);
8069 free (symstrtab);
5ed6aba4
NC
8070 return FALSE;
8071 }
217aa764 8072 symtab_hdr->contents = outbound_syms;
ef10c3ac 8073 outbound_syms_index = 0;
252b5132 8074
9ad5cbcf 8075 outbound_shndx = NULL;
ef10c3ac 8076 outbound_shndx_index = 0;
6a40cf0c
NC
8077
8078 if (elf_symtab_shndx_list (abfd))
9ad5cbcf 8079 {
6a40cf0c
NC
8080 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8081 if (symtab_shndx_hdr->sh_name != 0)
8082 {
8083 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
8084 outbound_shndx = (bfd_byte *)
8085 bfd_zalloc2 (abfd, 1 + symcount, sizeof (Elf_External_Sym_Shndx));
8086 if (outbound_shndx == NULL)
8087 goto error_return;
5ed6aba4 8088
6a40cf0c
NC
8089 symtab_shndx_hdr->contents = outbound_shndx;
8090 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8091 symtab_shndx_hdr->sh_size = amt;
8092 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8093 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8094 }
8095 /* FIXME: What about any other headers in the list ? */
9ad5cbcf
AM
8096 }
8097
589e6347 8098 /* Now generate the data (for "contents"). */
079e9a2f
AM
8099 {
8100 /* Fill in zeroth symbol and swap it out. */
8101 Elf_Internal_Sym sym;
8102 sym.st_name = 0;
8103 sym.st_value = 0;
8104 sym.st_size = 0;
8105 sym.st_info = 0;
8106 sym.st_other = 0;
8107 sym.st_shndx = SHN_UNDEF;
35fc36a8 8108 sym.st_target_internal = 0;
ef10c3ac
L
8109 symstrtab[0].sym = sym;
8110 symstrtab[0].dest_index = outbound_syms_index;
8111 symstrtab[0].destshndx_index = outbound_shndx_index;
8112 outbound_syms_index++;
9ad5cbcf 8113 if (outbound_shndx != NULL)
ef10c3ac 8114 outbound_shndx_index++;
079e9a2f 8115 }
252b5132 8116
174fd7f9
RS
8117 name_local_sections
8118 = (bed->elf_backend_name_local_section_symbols
8119 && bed->elf_backend_name_local_section_symbols (abfd));
8120
079e9a2f 8121 syms = bfd_get_outsymbols (abfd);
ef10c3ac 8122 for (idx = 0; idx < symcount;)
252b5132 8123 {
252b5132 8124 Elf_Internal_Sym sym;
079e9a2f
AM
8125 bfd_vma value = syms[idx]->value;
8126 elf_symbol_type *type_ptr;
8127 flagword flags = syms[idx]->flags;
8128 int type;
252b5132 8129
174fd7f9
RS
8130 if (!name_local_sections
8131 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
079e9a2f
AM
8132 {
8133 /* Local section symbols have no name. */
ef10c3ac 8134 sym.st_name = (unsigned long) -1;
079e9a2f
AM
8135 }
8136 else
8137 {
ef10c3ac
L
8138 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8139 to get the final offset for st_name. */
8140 sym.st_name
8141 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
8142 FALSE);
079e9a2f 8143 if (sym.st_name == (unsigned long) -1)
ef10c3ac 8144 goto error_return;
079e9a2f 8145 }
252b5132 8146
079e9a2f 8147 type_ptr = elf_symbol_from (abfd, syms[idx]);
252b5132 8148
079e9a2f
AM
8149 if ((flags & BSF_SECTION_SYM) == 0
8150 && bfd_is_com_section (syms[idx]->section))
8151 {
8152 /* ELF common symbols put the alignment into the `value' field,
8153 and the size into the `size' field. This is backwards from
8154 how BFD handles it, so reverse it here. */
8155 sym.st_size = value;
8156 if (type_ptr == NULL
8157 || type_ptr->internal_elf_sym.st_value == 0)
8158 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8159 else
8160 sym.st_value = type_ptr->internal_elf_sym.st_value;
8161 sym.st_shndx = _bfd_elf_section_from_bfd_section
8162 (abfd, syms[idx]->section);
8163 }
8164 else
8165 {
8166 asection *sec = syms[idx]->section;
cb33740c 8167 unsigned int shndx;
252b5132 8168
079e9a2f
AM
8169 if (sec->output_section)
8170 {
8171 value += sec->output_offset;
8172 sec = sec->output_section;
8173 }
589e6347 8174
079e9a2f
AM
8175 /* Don't add in the section vma for relocatable output. */
8176 if (! relocatable_p)
8177 value += sec->vma;
8178 sym.st_value = value;
8179 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8180
8181 if (bfd_is_abs_section (sec)
8182 && type_ptr != NULL
8183 && type_ptr->internal_elf_sym.st_shndx != 0)
8184 {
8185 /* This symbol is in a real ELF section which we did
8186 not create as a BFD section. Undo the mapping done
8187 by copy_private_symbol_data. */
8188 shndx = type_ptr->internal_elf_sym.st_shndx;
8189 switch (shndx)
8190 {
8191 case MAP_ONESYMTAB:
8192 shndx = elf_onesymtab (abfd);
8193 break;
8194 case MAP_DYNSYMTAB:
8195 shndx = elf_dynsymtab (abfd);
8196 break;
8197 case MAP_STRTAB:
12bd6957 8198 shndx = elf_strtab_sec (abfd);
079e9a2f
AM
8199 break;
8200 case MAP_SHSTRTAB:
12bd6957 8201 shndx = elf_shstrtab_sec (abfd);
079e9a2f 8202 break;
9ad5cbcf 8203 case MAP_SYM_SHNDX:
6a40cf0c
NC
8204 if (elf_symtab_shndx_list (abfd))
8205 shndx = elf_symtab_shndx_list (abfd)->ndx;
9ad5cbcf 8206 break;
079e9a2f 8207 default:
15bc576a 8208 shndx = SHN_ABS;
079e9a2f
AM
8209 break;
8210 }
8211 }
8212 else
8213 {
8214 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
252b5132 8215
cb33740c 8216 if (shndx == SHN_BAD)
079e9a2f
AM
8217 {
8218 asection *sec2;
8219
8220 /* Writing this would be a hell of a lot easier if
8221 we had some decent documentation on bfd, and
8222 knew what to expect of the library, and what to
8223 demand of applications. For example, it
8224 appears that `objcopy' might not set the
8225 section of a symbol to be a section that is
8226 actually in the output file. */
8227 sec2 = bfd_get_section_by_name (abfd, sec->name);
5df1bc57
AM
8228 if (sec2 != NULL)
8229 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8230 if (shndx == SHN_BAD)
589e6347 8231 {
695344c0 8232 /* xgettext:c-format */
9793eb77
AM
8233 _bfd_error_handler
8234 (_("unable to find equivalent output section"
8235 " for symbol '%s' from section '%s'"),
8236 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8237 sec->name);
811072d8 8238 bfd_set_error (bfd_error_invalid_operation);
ef10c3ac 8239 goto error_return;
589e6347 8240 }
079e9a2f
AM
8241 }
8242 }
252b5132 8243
079e9a2f
AM
8244 sym.st_shndx = shndx;
8245 }
252b5132 8246
13ae64f3
JJ
8247 if ((flags & BSF_THREAD_LOCAL) != 0)
8248 type = STT_TLS;
d8045f23
NC
8249 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8250 type = STT_GNU_IFUNC;
13ae64f3 8251 else if ((flags & BSF_FUNCTION) != 0)
079e9a2f
AM
8252 type = STT_FUNC;
8253 else if ((flags & BSF_OBJECT) != 0)
8254 type = STT_OBJECT;
d9352518
DB
8255 else if ((flags & BSF_RELC) != 0)
8256 type = STT_RELC;
8257 else if ((flags & BSF_SRELC) != 0)
8258 type = STT_SRELC;
079e9a2f
AM
8259 else
8260 type = STT_NOTYPE;
252b5132 8261
13ae64f3
JJ
8262 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8263 type = STT_TLS;
8264
589e6347 8265 /* Processor-specific types. */
079e9a2f
AM
8266 if (type_ptr != NULL
8267 && bed->elf_backend_get_symbol_type)
8268 type = ((*bed->elf_backend_get_symbol_type)
8269 (&type_ptr->internal_elf_sym, type));
252b5132 8270
079e9a2f
AM
8271 if (flags & BSF_SECTION_SYM)
8272 {
8273 if (flags & BSF_GLOBAL)
8274 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8275 else
8276 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8277 }
8278 else if (bfd_is_com_section (syms[idx]->section))
0a40daed 8279 {
b8871f35
L
8280 if (type != STT_TLS)
8281 {
8282 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8283 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8284 ? STT_COMMON : STT_OBJECT);
8285 else
8286 type = ((flags & BSF_ELF_COMMON) != 0
8287 ? STT_COMMON : STT_OBJECT);
8288 }
8289 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
0a40daed 8290 }
079e9a2f
AM
8291 else if (bfd_is_und_section (syms[idx]->section))
8292 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8293 ? STB_WEAK
8294 : STB_GLOBAL),
8295 type);
8296 else if (flags & BSF_FILE)
8297 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8298 else
8299 {
8300 int bind = STB_LOCAL;
252b5132 8301
079e9a2f
AM
8302 if (flags & BSF_LOCAL)
8303 bind = STB_LOCAL;
3e7a7d11
NC
8304 else if (flags & BSF_GNU_UNIQUE)
8305 bind = STB_GNU_UNIQUE;
079e9a2f
AM
8306 else if (flags & BSF_WEAK)
8307 bind = STB_WEAK;
8308 else if (flags & BSF_GLOBAL)
8309 bind = STB_GLOBAL;
252b5132 8310
079e9a2f
AM
8311 sym.st_info = ELF_ST_INFO (bind, type);
8312 }
252b5132 8313
079e9a2f 8314 if (type_ptr != NULL)
35fc36a8
RS
8315 {
8316 sym.st_other = type_ptr->internal_elf_sym.st_other;
8317 sym.st_target_internal
8318 = type_ptr->internal_elf_sym.st_target_internal;
8319 }
079e9a2f 8320 else
35fc36a8
RS
8321 {
8322 sym.st_other = 0;
8323 sym.st_target_internal = 0;
8324 }
252b5132 8325
ef10c3ac
L
8326 idx++;
8327 symstrtab[idx].sym = sym;
8328 symstrtab[idx].dest_index = outbound_syms_index;
8329 symstrtab[idx].destshndx_index = outbound_shndx_index;
8330
8331 outbound_syms_index++;
9ad5cbcf 8332 if (outbound_shndx != NULL)
ef10c3ac
L
8333 outbound_shndx_index++;
8334 }
8335
8336 /* Finalize the .strtab section. */
8337 _bfd_elf_strtab_finalize (stt);
8338
8339 /* Swap out the .strtab section. */
8340 for (idx = 0; idx <= symcount; idx++)
8341 {
8342 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8343 if (elfsym->sym.st_name == (unsigned long) -1)
8344 elfsym->sym.st_name = 0;
8345 else
8346 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8347 elfsym->sym.st_name);
8348 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8349 (outbound_syms
8350 + (elfsym->dest_index
8351 * bed->s->sizeof_sym)),
8352 (outbound_shndx
8353 + (elfsym->destshndx_index
8354 * sizeof (Elf_External_Sym_Shndx))));
079e9a2f 8355 }
ef10c3ac 8356 free (symstrtab);
252b5132 8357
079e9a2f 8358 *sttp = stt;
ef10c3ac 8359 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
079e9a2f 8360 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 8361 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
079e9a2f
AM
8362 symstrtab_hdr->sh_addr = 0;
8363 symstrtab_hdr->sh_entsize = 0;
8364 symstrtab_hdr->sh_link = 0;
8365 symstrtab_hdr->sh_info = 0;
8366 symstrtab_hdr->sh_addralign = 1;
252b5132 8367
b34976b6 8368 return TRUE;
252b5132
RH
8369}
8370
8371/* Return the number of bytes required to hold the symtab vector.
8372
8373 Note that we base it on the count plus 1, since we will null terminate
8374 the vector allocated based on this size. However, the ELF symbol table
8375 always has a dummy entry as symbol #0, so it ends up even. */
8376
8377long
217aa764 8378_bfd_elf_get_symtab_upper_bound (bfd *abfd)
252b5132 8379{
3a551c7a 8380 bfd_size_type symcount;
252b5132
RH
8381 long symtab_size;
8382 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8383
8384 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8385 if (symcount >= LONG_MAX / sizeof (asymbol *))
8386 {
8387 bfd_set_error (bfd_error_file_too_big);
8388 return -1;
8389 }
b99d1833
AM
8390 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8391 if (symcount > 0)
8392 symtab_size -= sizeof (asymbol *);
252b5132
RH
8393
8394 return symtab_size;
8395}
8396
8397long
217aa764 8398_bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
252b5132 8399{
3a551c7a 8400 bfd_size_type symcount;
252b5132
RH
8401 long symtab_size;
8402 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8403
8404 if (elf_dynsymtab (abfd) == 0)
8405 {
8406 bfd_set_error (bfd_error_invalid_operation);
8407 return -1;
8408 }
8409
8410 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8411 if (symcount >= LONG_MAX / sizeof (asymbol *))
8412 {
8413 bfd_set_error (bfd_error_file_too_big);
8414 return -1;
8415 }
b99d1833
AM
8416 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8417 if (symcount > 0)
8418 symtab_size -= sizeof (asymbol *);
252b5132
RH
8419
8420 return symtab_size;
8421}
8422
8423long
217aa764
AM
8424_bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
8425 sec_ptr asect)
252b5132 8426{
242a1159 8427#if SIZEOF_LONG == SIZEOF_INT
7a6e0d89
AM
8428 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8429 {
8430 bfd_set_error (bfd_error_file_too_big);
8431 return -1;
8432 }
242a1159 8433#endif
252b5132
RH
8434 return (asect->reloc_count + 1) * sizeof (arelent *);
8435}
8436
8437/* Canonicalize the relocs. */
8438
8439long
217aa764
AM
8440_bfd_elf_canonicalize_reloc (bfd *abfd,
8441 sec_ptr section,
8442 arelent **relptr,
8443 asymbol **symbols)
252b5132
RH
8444{
8445 arelent *tblptr;
8446 unsigned int i;
9c5bfbb7 8447 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 8448
b34976b6 8449 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
252b5132
RH
8450 return -1;
8451
8452 tblptr = section->relocation;
8453 for (i = 0; i < section->reloc_count; i++)
8454 *relptr++ = tblptr++;
8455
8456 *relptr = NULL;
8457
8458 return section->reloc_count;
8459}
8460
8461long
6cee3f79 8462_bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
252b5132 8463{
9c5bfbb7 8464 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8465 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
252b5132
RH
8466
8467 if (symcount >= 0)
ed48ec2e 8468 abfd->symcount = symcount;
252b5132
RH
8469 return symcount;
8470}
8471
8472long
217aa764
AM
8473_bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8474 asymbol **allocation)
252b5132 8475{
9c5bfbb7 8476 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8477 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
1f70368c
DJ
8478
8479 if (symcount >= 0)
ed48ec2e 8480 abfd->dynsymcount = symcount;
1f70368c 8481 return symcount;
252b5132
RH
8482}
8483
8615f3f2
AM
8484/* Return the size required for the dynamic reloc entries. Any loadable
8485 section that was actually installed in the BFD, and has type SHT_REL
8486 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8487 dynamic reloc section. */
252b5132
RH
8488
8489long
217aa764 8490_bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
252b5132 8491{
3a551c7a 8492 bfd_size_type count;
252b5132
RH
8493 asection *s;
8494
8495 if (elf_dynsymtab (abfd) == 0)
8496 {
8497 bfd_set_error (bfd_error_invalid_operation);
8498 return -1;
8499 }
8500
3a551c7a 8501 count = 1;
252b5132 8502 for (s = abfd->sections; s != NULL; s = s->next)
266b05cf 8503 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8504 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8505 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
3a551c7a
AM
8506 {
8507 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8508 if (count > LONG_MAX / sizeof (arelent *))
8509 {
8510 bfd_set_error (bfd_error_file_too_big);
8511 return -1;
8512 }
8513 }
8514 return count * sizeof (arelent *);
252b5132
RH
8515}
8516
8615f3f2
AM
8517/* Canonicalize the dynamic relocation entries. Note that we return the
8518 dynamic relocations as a single block, although they are actually
8519 associated with particular sections; the interface, which was
8520 designed for SunOS style shared libraries, expects that there is only
8521 one set of dynamic relocs. Any loadable section that was actually
8522 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8523 dynamic symbol table, is considered to be a dynamic reloc section. */
252b5132
RH
8524
8525long
217aa764
AM
8526_bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8527 arelent **storage,
8528 asymbol **syms)
252b5132 8529{
217aa764 8530 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
252b5132
RH
8531 asection *s;
8532 long ret;
8533
8534 if (elf_dynsymtab (abfd) == 0)
8535 {
8536 bfd_set_error (bfd_error_invalid_operation);
8537 return -1;
8538 }
8539
8540 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8541 ret = 0;
8542 for (s = abfd->sections; s != NULL; s = s->next)
8543 {
266b05cf 8544 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8545 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8546 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8547 {
8548 arelent *p;
8549 long count, i;
8550
b34976b6 8551 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
252b5132 8552 return -1;
eea6121a 8553 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
252b5132
RH
8554 p = s->relocation;
8555 for (i = 0; i < count; i++)
8556 *storage++ = p++;
8557 ret += count;
8558 }
8559 }
8560
8561 *storage = NULL;
8562
8563 return ret;
8564}
8565\f
8566/* Read in the version information. */
8567
b34976b6 8568bfd_boolean
fc0e6df6 8569_bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
252b5132
RH
8570{
8571 bfd_byte *contents = NULL;
fc0e6df6
PB
8572 unsigned int freeidx = 0;
8573
8574 if (elf_dynverref (abfd) != 0)
8575 {
8576 Elf_Internal_Shdr *hdr;
8577 Elf_External_Verneed *everneed;
8578 Elf_Internal_Verneed *iverneed;
8579 unsigned int i;
d0fb9a8d 8580 bfd_byte *contents_end;
fc0e6df6
PB
8581
8582 hdr = &elf_tdata (abfd)->dynverref_hdr;
8583
bd61e135
AM
8584 if (hdr->sh_info == 0
8585 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
d0fb9a8d 8586 {
601a03ba 8587error_return_bad_verref:
4eca0228 8588 _bfd_error_handler
871b3ab2 8589 (_("%pB: .gnu.version_r invalid entry"), abfd);
601a03ba 8590 bfd_set_error (bfd_error_bad_value);
d0fb9a8d
JJ
8591error_return_verref:
8592 elf_tdata (abfd)->verref = NULL;
8593 elf_tdata (abfd)->cverrefs = 0;
8594 goto error_return;
8595 }
601a03ba 8596
7e56c51c
NC
8597 ufile_ptr filesize = bfd_get_file_size (abfd);
8598 if (filesize > 0 && filesize < hdr->sh_size)
8599 {
8600 /* PR 24708: Avoid attempts to allocate a ridiculous amount
8601 of memory. */
8602 bfd_set_error (bfd_error_no_memory);
8603 _bfd_error_handler
8604 /* xgettext:c-format */
8605 (_("error: %pB version reference section is too large (%#" PRIx64 " bytes)"),
8606 abfd, (uint64_t) hdr->sh_size);
8607 goto error_return_verref;
8608 }
601a03ba
AM
8609 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8610 if (contents == NULL)
8611 goto error_return_verref;
8612
fc0e6df6
PB
8613 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8614 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
d0fb9a8d 8615 goto error_return_verref;
fc0e6df6 8616
601a03ba 8617 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *)
bd61e135 8618 bfd_alloc2 (abfd, hdr->sh_info, sizeof (Elf_Internal_Verneed));
601a03ba
AM
8619
8620 if (elf_tdata (abfd)->verref == NULL)
d0fb9a8d
JJ
8621 goto error_return_verref;
8622
8623 BFD_ASSERT (sizeof (Elf_External_Verneed)
8624 == sizeof (Elf_External_Vernaux));
8625 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
fc0e6df6
PB
8626 everneed = (Elf_External_Verneed *) contents;
8627 iverneed = elf_tdata (abfd)->verref;
8628 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8629 {
8630 Elf_External_Vernaux *evernaux;
8631 Elf_Internal_Vernaux *ivernaux;
8632 unsigned int j;
8633
8634 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8635
8636 iverneed->vn_bfd = abfd;
8637
8638 iverneed->vn_filename =
8639 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8640 iverneed->vn_file);
8641 if (iverneed->vn_filename == NULL)
601a03ba 8642 goto error_return_bad_verref;
fc0e6df6 8643
d0fb9a8d
JJ
8644 if (iverneed->vn_cnt == 0)
8645 iverneed->vn_auxptr = NULL;
8646 else
8647 {
a50b1753 8648 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
07d6d2b8
AM
8649 bfd_alloc2 (abfd, iverneed->vn_cnt,
8650 sizeof (Elf_Internal_Vernaux));
d0fb9a8d
JJ
8651 if (iverneed->vn_auxptr == NULL)
8652 goto error_return_verref;
8653 }
8654
8655 if (iverneed->vn_aux
8656 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8657 goto error_return_bad_verref;
fc0e6df6
PB
8658
8659 evernaux = ((Elf_External_Vernaux *)
8660 ((bfd_byte *) everneed + iverneed->vn_aux));
8661 ivernaux = iverneed->vn_auxptr;
8662 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8663 {
8664 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8665
8666 ivernaux->vna_nodename =
8667 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8668 ivernaux->vna_name);
8669 if (ivernaux->vna_nodename == NULL)
601a03ba 8670 goto error_return_bad_verref;
fc0e6df6 8671
25ff461f
AM
8672 if (ivernaux->vna_other > freeidx)
8673 freeidx = ivernaux->vna_other;
8674
8675 ivernaux->vna_nextptr = NULL;
8676 if (ivernaux->vna_next == 0)
8677 {
8678 iverneed->vn_cnt = j + 1;
8679 break;
8680 }
fc0e6df6
PB
8681 if (j + 1 < iverneed->vn_cnt)
8682 ivernaux->vna_nextptr = ivernaux + 1;
fc0e6df6 8683
d0fb9a8d
JJ
8684 if (ivernaux->vna_next
8685 > (size_t) (contents_end - (bfd_byte *) evernaux))
601a03ba 8686 goto error_return_bad_verref;
d0fb9a8d 8687
fc0e6df6
PB
8688 evernaux = ((Elf_External_Vernaux *)
8689 ((bfd_byte *) evernaux + ivernaux->vna_next));
fc0e6df6
PB
8690 }
8691
25ff461f
AM
8692 iverneed->vn_nextref = NULL;
8693 if (iverneed->vn_next == 0)
8694 break;
fc0e6df6
PB
8695 if (i + 1 < hdr->sh_info)
8696 iverneed->vn_nextref = iverneed + 1;
fc0e6df6 8697
d0fb9a8d
JJ
8698 if (iverneed->vn_next
8699 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8700 goto error_return_bad_verref;
d0fb9a8d 8701
fc0e6df6
PB
8702 everneed = ((Elf_External_Verneed *)
8703 ((bfd_byte *) everneed + iverneed->vn_next));
8704 }
25ff461f 8705 elf_tdata (abfd)->cverrefs = i;
fc0e6df6
PB
8706
8707 free (contents);
8708 contents = NULL;
8709 }
252b5132
RH
8710
8711 if (elf_dynverdef (abfd) != 0)
8712 {
8713 Elf_Internal_Shdr *hdr;
8714 Elf_External_Verdef *everdef;
8715 Elf_Internal_Verdef *iverdef;
f631889e
UD
8716 Elf_Internal_Verdef *iverdefarr;
8717 Elf_Internal_Verdef iverdefmem;
252b5132 8718 unsigned int i;
062e2358 8719 unsigned int maxidx;
d0fb9a8d 8720 bfd_byte *contents_end_def, *contents_end_aux;
252b5132
RH
8721
8722 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8723
601a03ba
AM
8724 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8725 {
8726 error_return_bad_verdef:
4eca0228 8727 _bfd_error_handler
871b3ab2 8728 (_("%pB: .gnu.version_d invalid entry"), abfd);
601a03ba
AM
8729 bfd_set_error (bfd_error_bad_value);
8730 error_return_verdef:
8731 elf_tdata (abfd)->verdef = NULL;
8732 elf_tdata (abfd)->cverdefs = 0;
8733 goto error_return;
8734 }
8735
a50b1753 8736 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
252b5132 8737 if (contents == NULL)
601a03ba 8738 goto error_return_verdef;
252b5132 8739 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
217aa764 8740 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
601a03ba 8741 goto error_return_verdef;
d0fb9a8d
JJ
8742
8743 BFD_ASSERT (sizeof (Elf_External_Verdef)
8744 >= sizeof (Elf_External_Verdaux));
8745 contents_end_def = contents + hdr->sh_size
8746 - sizeof (Elf_External_Verdef);
8747 contents_end_aux = contents + hdr->sh_size
8748 - sizeof (Elf_External_Verdaux);
8749
f631889e
UD
8750 /* We know the number of entries in the section but not the maximum
8751 index. Therefore we have to run through all entries and find
8752 the maximum. */
252b5132 8753 everdef = (Elf_External_Verdef *) contents;
f631889e
UD
8754 maxidx = 0;
8755 for (i = 0; i < hdr->sh_info; ++i)
8756 {
8757 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8758
601a03ba
AM
8759 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8760 goto error_return_bad_verdef;
062e2358
AM
8761 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8762 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
f631889e 8763
25ff461f
AM
8764 if (iverdefmem.vd_next == 0)
8765 break;
8766
d0fb9a8d
JJ
8767 if (iverdefmem.vd_next
8768 > (size_t) (contents_end_def - (bfd_byte *) everdef))
601a03ba 8769 goto error_return_bad_verdef;
d0fb9a8d 8770
f631889e
UD
8771 everdef = ((Elf_External_Verdef *)
8772 ((bfd_byte *) everdef + iverdefmem.vd_next));
8773 }
8774
fc0e6df6
PB
8775 if (default_imported_symver)
8776 {
8777 if (freeidx > maxidx)
8778 maxidx = ++freeidx;
8779 else
8780 freeidx = ++maxidx;
8781 }
201159ec 8782
601a03ba
AM
8783 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8784 bfd_zalloc2 (abfd, maxidx, sizeof (Elf_Internal_Verdef));
f631889e 8785 if (elf_tdata (abfd)->verdef == NULL)
601a03ba 8786 goto error_return_verdef;
f631889e
UD
8787
8788 elf_tdata (abfd)->cverdefs = maxidx;
8789
8790 everdef = (Elf_External_Verdef *) contents;
8791 iverdefarr = elf_tdata (abfd)->verdef;
8792 for (i = 0; i < hdr->sh_info; i++)
252b5132
RH
8793 {
8794 Elf_External_Verdaux *everdaux;
8795 Elf_Internal_Verdaux *iverdaux;
8796 unsigned int j;
8797
f631889e
UD
8798 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8799
d0fb9a8d 8800 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
601a03ba 8801 goto error_return_bad_verdef;
d0fb9a8d 8802
f631889e 8803 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
595bce75 8804 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
252b5132
RH
8805
8806 iverdef->vd_bfd = abfd;
8807
d0fb9a8d
JJ
8808 if (iverdef->vd_cnt == 0)
8809 iverdef->vd_auxptr = NULL;
8810 else
8811 {
a50b1753 8812 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
07d6d2b8
AM
8813 bfd_alloc2 (abfd, iverdef->vd_cnt,
8814 sizeof (Elf_Internal_Verdaux));
d0fb9a8d
JJ
8815 if (iverdef->vd_auxptr == NULL)
8816 goto error_return_verdef;
8817 }
8818
8819 if (iverdef->vd_aux
8820 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
601a03ba 8821 goto error_return_bad_verdef;
252b5132
RH
8822
8823 everdaux = ((Elf_External_Verdaux *)
8824 ((bfd_byte *) everdef + iverdef->vd_aux));
8825 iverdaux = iverdef->vd_auxptr;
8826 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8827 {
8828 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8829
8830 iverdaux->vda_nodename =
8831 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8832 iverdaux->vda_name);
8833 if (iverdaux->vda_nodename == NULL)
601a03ba 8834 goto error_return_bad_verdef;
252b5132 8835
25ff461f
AM
8836 iverdaux->vda_nextptr = NULL;
8837 if (iverdaux->vda_next == 0)
8838 {
8839 iverdef->vd_cnt = j + 1;
8840 break;
8841 }
252b5132
RH
8842 if (j + 1 < iverdef->vd_cnt)
8843 iverdaux->vda_nextptr = iverdaux + 1;
252b5132 8844
d0fb9a8d
JJ
8845 if (iverdaux->vda_next
8846 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
601a03ba 8847 goto error_return_bad_verdef;
d0fb9a8d 8848
252b5132
RH
8849 everdaux = ((Elf_External_Verdaux *)
8850 ((bfd_byte *) everdaux + iverdaux->vda_next));
8851 }
8852
595bce75 8853 iverdef->vd_nodename = NULL;
d0fb9a8d
JJ
8854 if (iverdef->vd_cnt)
8855 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
252b5132 8856
25ff461f
AM
8857 iverdef->vd_nextdef = NULL;
8858 if (iverdef->vd_next == 0)
8859 break;
d0fb9a8d 8860 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
252b5132 8861 iverdef->vd_nextdef = iverdef + 1;
252b5132
RH
8862
8863 everdef = ((Elf_External_Verdef *)
8864 ((bfd_byte *) everdef + iverdef->vd_next));
8865 }
8866
8867 free (contents);
8868 contents = NULL;
8869 }
fc0e6df6 8870 else if (default_imported_symver)
252b5132 8871 {
fc0e6df6
PB
8872 if (freeidx < 3)
8873 freeidx = 3;
8874 else
8875 freeidx++;
252b5132 8876
a50b1753 8877 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
07d6d2b8 8878 bfd_zalloc2 (abfd, freeidx, sizeof (Elf_Internal_Verdef));
fc0e6df6 8879 if (elf_tdata (abfd)->verdef == NULL)
252b5132
RH
8880 goto error_return;
8881
fc0e6df6
PB
8882 elf_tdata (abfd)->cverdefs = freeidx;
8883 }
252b5132 8884
fc0e6df6
PB
8885 /* Create a default version based on the soname. */
8886 if (default_imported_symver)
8887 {
8888 Elf_Internal_Verdef *iverdef;
8889 Elf_Internal_Verdaux *iverdaux;
252b5132 8890
5bb3703f 8891 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
252b5132 8892
fc0e6df6
PB
8893 iverdef->vd_version = VER_DEF_CURRENT;
8894 iverdef->vd_flags = 0;
8895 iverdef->vd_ndx = freeidx;
8896 iverdef->vd_cnt = 1;
252b5132 8897
fc0e6df6 8898 iverdef->vd_bfd = abfd;
252b5132 8899
fc0e6df6
PB
8900 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8901 if (iverdef->vd_nodename == NULL)
d0fb9a8d 8902 goto error_return_verdef;
fc0e6df6 8903 iverdef->vd_nextdef = NULL;
601a03ba
AM
8904 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8905 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
d0fb9a8d
JJ
8906 if (iverdef->vd_auxptr == NULL)
8907 goto error_return_verdef;
252b5132 8908
fc0e6df6
PB
8909 iverdaux = iverdef->vd_auxptr;
8910 iverdaux->vda_nodename = iverdef->vd_nodename;
252b5132
RH
8911 }
8912
b34976b6 8913 return TRUE;
252b5132
RH
8914
8915 error_return:
5ed6aba4 8916 if (contents != NULL)
252b5132 8917 free (contents);
b34976b6 8918 return FALSE;
252b5132
RH
8919}
8920\f
8921asymbol *
217aa764 8922_bfd_elf_make_empty_symbol (bfd *abfd)
252b5132
RH
8923{
8924 elf_symbol_type *newsym;
8925
7a6e0d89 8926 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
252b5132
RH
8927 if (!newsym)
8928 return NULL;
201159ec
NC
8929 newsym->symbol.the_bfd = abfd;
8930 return &newsym->symbol;
252b5132
RH
8931}
8932
8933void
217aa764
AM
8934_bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8935 asymbol *symbol,
8936 symbol_info *ret)
252b5132
RH
8937{
8938 bfd_symbol_info (symbol, ret);
8939}
8940
8941/* Return whether a symbol name implies a local symbol. Most targets
8942 use this function for the is_local_label_name entry point, but some
8943 override it. */
8944
b34976b6 8945bfd_boolean
217aa764
AM
8946_bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8947 const char *name)
252b5132
RH
8948{
8949 /* Normal local symbols start with ``.L''. */
8950 if (name[0] == '.' && name[1] == 'L')
b34976b6 8951 return TRUE;
252b5132
RH
8952
8953 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8954 DWARF debugging symbols starting with ``..''. */
8955 if (name[0] == '.' && name[1] == '.')
b34976b6 8956 return TRUE;
252b5132
RH
8957
8958 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
8959 emitting DWARF debugging output. I suspect this is actually a
8960 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
8961 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
8962 underscore to be emitted on some ELF targets). For ease of use,
8963 we treat such symbols as local. */
8964 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
b34976b6 8965 return TRUE;
252b5132 8966
b1fa9dd6
NC
8967 /* Treat assembler generated fake symbols, dollar local labels and
8968 forward-backward labels (aka local labels) as locals.
8969 These labels have the form:
8970
07d6d2b8 8971 L0^A.* (fake symbols)
b1fa9dd6
NC
8972
8973 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
8974
8975 Versions which start with .L will have already been matched above,
8976 so we only need to match the rest. */
8977 if (name[0] == 'L' && ISDIGIT (name[1]))
8978 {
8979 bfd_boolean ret = FALSE;
8980 const char * p;
8981 char c;
8982
8983 for (p = name + 2; (c = *p); p++)
8984 {
8985 if (c == 1 || c == 2)
8986 {
8987 if (c == 1 && p == name + 2)
8988 /* A fake symbol. */
8989 return TRUE;
8990
8991 /* FIXME: We are being paranoid here and treating symbols like
8992 L0^Bfoo as if there were non-local, on the grounds that the
8993 assembler will never generate them. But can any symbol
8994 containing an ASCII value in the range 1-31 ever be anything
8995 other than some kind of local ? */
8996 ret = TRUE;
8997 }
8998
8999 if (! ISDIGIT (c))
9000 {
9001 ret = FALSE;
9002 break;
9003 }
9004 }
9005 return ret;
9006 }
ffa54770 9007
b34976b6 9008 return FALSE;
252b5132
RH
9009}
9010
9011alent *
217aa764
AM
9012_bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9013 asymbol *symbol ATTRIBUTE_UNUSED)
252b5132
RH
9014{
9015 abort ();
9016 return NULL;
9017}
9018
b34976b6 9019bfd_boolean
217aa764
AM
9020_bfd_elf_set_arch_mach (bfd *abfd,
9021 enum bfd_architecture arch,
9022 unsigned long machine)
252b5132
RH
9023{
9024 /* If this isn't the right architecture for this backend, and this
9025 isn't the generic backend, fail. */
9026 if (arch != get_elf_backend_data (abfd)->arch
9027 && arch != bfd_arch_unknown
9028 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
b34976b6 9029 return FALSE;
252b5132
RH
9030
9031 return bfd_default_set_arch_mach (abfd, arch, machine);
9032}
9033
d1fad7c6
NC
9034/* Find the nearest line to a particular section and offset,
9035 for error reporting. */
9036
b34976b6 9037bfd_boolean
217aa764 9038_bfd_elf_find_nearest_line (bfd *abfd,
217aa764 9039 asymbol **symbols,
fb167eb2 9040 asection *section,
217aa764
AM
9041 bfd_vma offset,
9042 const char **filename_ptr,
9043 const char **functionname_ptr,
fb167eb2
AM
9044 unsigned int *line_ptr,
9045 unsigned int *discriminator_ptr)
d1fad7c6 9046{
b34976b6 9047 bfd_boolean found;
d1fad7c6 9048
fb167eb2 9049 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
4e8a9624 9050 filename_ptr, functionname_ptr,
fb167eb2 9051 line_ptr, discriminator_ptr,
9defd221 9052 dwarf_debug_sections,
e7679060
AM
9053 &elf_tdata (abfd)->dwarf2_find_line_info))
9054 return TRUE;
9055
9056 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9057 filename_ptr, functionname_ptr, line_ptr))
d1fad7c6
NC
9058 {
9059 if (!*functionname_ptr)
e00e8198
AM
9060 _bfd_elf_find_function (abfd, symbols, section, offset,
9061 *filename_ptr ? NULL : filename_ptr,
9062 functionname_ptr);
b34976b6 9063 return TRUE;
d1fad7c6
NC
9064 }
9065
9066 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
4e8a9624
AM
9067 &found, filename_ptr,
9068 functionname_ptr, line_ptr,
9069 &elf_tdata (abfd)->line_info))
b34976b6 9070 return FALSE;
dc43ada5 9071 if (found && (*functionname_ptr || *line_ptr))
b34976b6 9072 return TRUE;
d1fad7c6
NC
9073
9074 if (symbols == NULL)
b34976b6 9075 return FALSE;
d1fad7c6 9076
e00e8198
AM
9077 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9078 filename_ptr, functionname_ptr))
b34976b6 9079 return FALSE;
d1fad7c6 9080
252b5132 9081 *line_ptr = 0;
b34976b6 9082 return TRUE;
252b5132
RH
9083}
9084
5420f73d
L
9085/* Find the line for a symbol. */
9086
9087bfd_boolean
9088_bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9089 const char **filename_ptr, unsigned int *line_ptr)
9b8d1a36 9090{
fb167eb2
AM
9091 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9092 filename_ptr, NULL, line_ptr, NULL,
9defd221 9093 dwarf_debug_sections,
fb167eb2 9094 &elf_tdata (abfd)->dwarf2_find_line_info);
5420f73d
L
9095}
9096
4ab527b0
FF
9097/* After a call to bfd_find_nearest_line, successive calls to
9098 bfd_find_inliner_info can be used to get source information about
9099 each level of function inlining that terminated at the address
9100 passed to bfd_find_nearest_line. Currently this is only supported
9101 for DWARF2 with appropriate DWARF3 extensions. */
9102
9103bfd_boolean
9104_bfd_elf_find_inliner_info (bfd *abfd,
9105 const char **filename_ptr,
9106 const char **functionname_ptr,
9107 unsigned int *line_ptr)
9108{
9109 bfd_boolean found;
9110 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9111 functionname_ptr, line_ptr,
9112 & elf_tdata (abfd)->dwarf2_find_line_info);
9113 return found;
9114}
9115
252b5132 9116int
a6b96beb 9117_bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
252b5132 9118{
8ded5a0f
AM
9119 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9120 int ret = bed->s->sizeof_ehdr;
252b5132 9121
0e1862bb 9122 if (!bfd_link_relocatable (info))
8ded5a0f 9123 {
12bd6957 9124 bfd_size_type phdr_size = elf_program_header_size (abfd);
8ded5a0f 9125
62d7a5f6
AM
9126 if (phdr_size == (bfd_size_type) -1)
9127 {
9128 struct elf_segment_map *m;
9129
9130 phdr_size = 0;
12bd6957 9131 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
62d7a5f6 9132 phdr_size += bed->s->sizeof_phdr;
8ded5a0f 9133
62d7a5f6
AM
9134 if (phdr_size == 0)
9135 phdr_size = get_program_header_size (abfd, info);
9136 }
8ded5a0f 9137
12bd6957 9138 elf_program_header_size (abfd) = phdr_size;
8ded5a0f
AM
9139 ret += phdr_size;
9140 }
9141
252b5132
RH
9142 return ret;
9143}
9144
b34976b6 9145bfd_boolean
217aa764
AM
9146_bfd_elf_set_section_contents (bfd *abfd,
9147 sec_ptr section,
0f867abe 9148 const void *location,
217aa764
AM
9149 file_ptr offset,
9150 bfd_size_type count)
252b5132
RH
9151{
9152 Elf_Internal_Shdr *hdr;
1b6aeedb 9153 file_ptr pos;
252b5132
RH
9154
9155 if (! abfd->output_has_begun
217aa764 9156 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 9157 return FALSE;
252b5132 9158
0ce398f1
L
9159 if (!count)
9160 return TRUE;
9161
252b5132 9162 hdr = &elf_section_data (section)->this_hdr;
0ce398f1
L
9163 if (hdr->sh_offset == (file_ptr) -1)
9164 {
1ff6de03
NA
9165 if (bfd_section_is_ctf (section))
9166 /* Nothing to do with this section: the contents are generated
9167 later. */
9168 return TRUE;
9169
0ce398f1
L
9170 /* We must compress this section. Write output to the buffer. */
9171 unsigned char *contents = hdr->contents;
9172 if ((offset + count) > hdr->sh_size
9173 || (section->flags & SEC_ELF_COMPRESS) == 0
9174 || contents == NULL)
9175 abort ();
9176 memcpy (contents + offset, location, count);
9177 return TRUE;
9178 }
dc810e39
AM
9179 pos = hdr->sh_offset + offset;
9180 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9181 || bfd_bwrite (location, count, abfd) != count)
b34976b6 9182 return FALSE;
252b5132 9183
b34976b6 9184 return TRUE;
252b5132
RH
9185}
9186
f3185997 9187bfd_boolean
217aa764
AM
9188_bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9189 arelent *cache_ptr ATTRIBUTE_UNUSED,
9190 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
252b5132
RH
9191{
9192 abort ();
f3185997 9193 return FALSE;
252b5132
RH
9194}
9195
252b5132
RH
9196/* Try to convert a non-ELF reloc into an ELF one. */
9197
b34976b6 9198bfd_boolean
217aa764 9199_bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
252b5132 9200{
c044fabd 9201 /* Check whether we really have an ELF howto. */
252b5132
RH
9202
9203 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9204 {
9205 bfd_reloc_code_real_type code;
9206 reloc_howto_type *howto;
9207
9208 /* Alien reloc: Try to determine its type to replace it with an
c044fabd 9209 equivalent ELF reloc. */
252b5132
RH
9210
9211 if (areloc->howto->pc_relative)
9212 {
9213 switch (areloc->howto->bitsize)
9214 {
9215 case 8:
9216 code = BFD_RELOC_8_PCREL;
9217 break;
9218 case 12:
9219 code = BFD_RELOC_12_PCREL;
9220 break;
9221 case 16:
9222 code = BFD_RELOC_16_PCREL;
9223 break;
9224 case 24:
9225 code = BFD_RELOC_24_PCREL;
9226 break;
9227 case 32:
9228 code = BFD_RELOC_32_PCREL;
9229 break;
9230 case 64:
9231 code = BFD_RELOC_64_PCREL;
9232 break;
9233 default:
9234 goto fail;
9235 }
9236
9237 howto = bfd_reloc_type_lookup (abfd, code);
9238
94698d01 9239 if (howto && areloc->howto->pcrel_offset != howto->pcrel_offset)
252b5132
RH
9240 {
9241 if (howto->pcrel_offset)
9242 areloc->addend += areloc->address;
9243 else
9244 areloc->addend -= areloc->address; /* addend is unsigned!! */
9245 }
9246 }
9247 else
9248 {
9249 switch (areloc->howto->bitsize)
9250 {
9251 case 8:
9252 code = BFD_RELOC_8;
9253 break;
9254 case 14:
9255 code = BFD_RELOC_14;
9256 break;
9257 case 16:
9258 code = BFD_RELOC_16;
9259 break;
9260 case 26:
9261 code = BFD_RELOC_26;
9262 break;
9263 case 32:
9264 code = BFD_RELOC_32;
9265 break;
9266 case 64:
9267 code = BFD_RELOC_64;
9268 break;
9269 default:
9270 goto fail;
9271 }
9272
9273 howto = bfd_reloc_type_lookup (abfd, code);
9274 }
9275
9276 if (howto)
9277 areloc->howto = howto;
9278 else
9279 goto fail;
9280 }
9281
b34976b6 9282 return TRUE;
252b5132
RH
9283
9284 fail:
0aa13fee
AM
9285 /* xgettext:c-format */
9286 _bfd_error_handler (_("%pB: %s unsupported"),
9287 abfd, areloc->howto->name);
9aea1e31 9288 bfd_set_error (bfd_error_sorry);
b34976b6 9289 return FALSE;
252b5132
RH
9290}
9291
b34976b6 9292bfd_boolean
217aa764 9293_bfd_elf_close_and_cleanup (bfd *abfd)
252b5132 9294{
d9071b0c
TG
9295 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9296 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
252b5132 9297 {
c0355132 9298 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
2b0f7ef9 9299 _bfd_elf_strtab_free (elf_shstrtab (abfd));
d9071b0c 9300 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
252b5132
RH
9301 }
9302
9303 return _bfd_generic_close_and_cleanup (abfd);
9304}
9305
9306/* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9307 in the relocation's offset. Thus we cannot allow any sort of sanity
9308 range-checking to interfere. There is nothing else to do in processing
9309 this reloc. */
9310
9311bfd_reloc_status_type
217aa764
AM
9312_bfd_elf_rel_vtable_reloc_fn
9313 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
fc0a2244 9314 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
217aa764
AM
9315 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9316 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
9317{
9318 return bfd_reloc_ok;
9319}
252b5132
RH
9320\f
9321/* Elf core file support. Much of this only works on native
9322 toolchains, since we rely on knowing the
9323 machine-dependent procfs structure in order to pick
c044fabd 9324 out details about the corefile. */
252b5132
RH
9325
9326#ifdef HAVE_SYS_PROCFS_H
16231b7b
DG
9327/* Needed for new procfs interface on sparc-solaris. */
9328# define _STRUCTURED_PROC 1
252b5132
RH
9329# include <sys/procfs.h>
9330#endif
9331
261b8d08
PA
9332/* Return a PID that identifies a "thread" for threaded cores, or the
9333 PID of the main process for non-threaded cores. */
252b5132
RH
9334
9335static int
217aa764 9336elfcore_make_pid (bfd *abfd)
252b5132 9337{
261b8d08
PA
9338 int pid;
9339
228e534f 9340 pid = elf_tdata (abfd)->core->lwpid;
261b8d08 9341 if (pid == 0)
228e534f 9342 pid = elf_tdata (abfd)->core->pid;
261b8d08
PA
9343
9344 return pid;
252b5132
RH
9345}
9346
252b5132
RH
9347/* If there isn't a section called NAME, make one, using
9348 data from SECT. Note, this function will generate a
9349 reference to NAME, so you shouldn't deallocate or
c044fabd 9350 overwrite it. */
252b5132 9351
b34976b6 9352static bfd_boolean
217aa764 9353elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
252b5132 9354{
c044fabd 9355 asection *sect2;
252b5132
RH
9356
9357 if (bfd_get_section_by_name (abfd, name) != NULL)
b34976b6 9358 return TRUE;
252b5132 9359
117ed4f8 9360 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
252b5132 9361 if (sect2 == NULL)
b34976b6 9362 return FALSE;
252b5132 9363
eea6121a 9364 sect2->size = sect->size;
252b5132 9365 sect2->filepos = sect->filepos;
252b5132 9366 sect2->alignment_power = sect->alignment_power;
b34976b6 9367 return TRUE;
252b5132
RH
9368}
9369
bb0082d6
AM
9370/* Create a pseudosection containing SIZE bytes at FILEPOS. This
9371 actually creates up to two pseudosections:
9372 - For the single-threaded case, a section named NAME, unless
9373 such a section already exists.
9374 - For the multi-threaded case, a section named "NAME/PID", where
9375 PID is elfcore_make_pid (abfd).
24d3e51b 9376 Both pseudosections have identical contents. */
b34976b6 9377bfd_boolean
217aa764
AM
9378_bfd_elfcore_make_pseudosection (bfd *abfd,
9379 char *name,
9380 size_t size,
9381 ufile_ptr filepos)
bb0082d6
AM
9382{
9383 char buf[100];
9384 char *threaded_name;
d4c88bbb 9385 size_t len;
bb0082d6
AM
9386 asection *sect;
9387
9388 /* Build the section name. */
9389
9390 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
d4c88bbb 9391 len = strlen (buf) + 1;
a50b1753 9392 threaded_name = (char *) bfd_alloc (abfd, len);
bb0082d6 9393 if (threaded_name == NULL)
b34976b6 9394 return FALSE;
d4c88bbb 9395 memcpy (threaded_name, buf, len);
bb0082d6 9396
117ed4f8
AM
9397 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9398 SEC_HAS_CONTENTS);
bb0082d6 9399 if (sect == NULL)
b34976b6 9400 return FALSE;
eea6121a 9401 sect->size = size;
bb0082d6 9402 sect->filepos = filepos;
bb0082d6
AM
9403 sect->alignment_power = 2;
9404
936e320b 9405 return elfcore_maybe_make_sect (abfd, name, sect);
bb0082d6
AM
9406}
9407
58e07198
CZ
9408static bfd_boolean
9409elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9410 size_t offs)
9411{
9412 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9413 SEC_HAS_CONTENTS);
9414
9415 if (sect == NULL)
9416 return FALSE;
9417
9418 sect->size = note->descsz - offs;
9419 sect->filepos = note->descpos + offs;
9420 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9421
9422 return TRUE;
9423}
9424
252b5132 9425/* prstatus_t exists on:
4a938328 9426 solaris 2.5+
252b5132
RH
9427 linux 2.[01] + glibc
9428 unixware 4.2
9429*/
9430
9431#if defined (HAVE_PRSTATUS_T)
a7b97311 9432
b34976b6 9433static bfd_boolean
217aa764 9434elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9435{
eea6121a 9436 size_t size;
7ee38065 9437 int offset;
252b5132 9438
4a938328
MS
9439 if (note->descsz == sizeof (prstatus_t))
9440 {
9441 prstatus_t prstat;
252b5132 9442
eea6121a 9443 size = sizeof (prstat.pr_reg);
7ee38065 9444 offset = offsetof (prstatus_t, pr_reg);
4a938328 9445 memcpy (&prstat, note->descdata, sizeof (prstat));
252b5132 9446
fa49d224
NC
9447 /* Do not overwrite the core signal if it
9448 has already been set by another thread. */
228e534f
AM
9449 if (elf_tdata (abfd)->core->signal == 0)
9450 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9451 if (elf_tdata (abfd)->core->pid == 0)
9452 elf_tdata (abfd)->core->pid = prstat.pr_pid;
252b5132 9453
4a938328
MS
9454 /* pr_who exists on:
9455 solaris 2.5+
9456 unixware 4.2
9457 pr_who doesn't exist on:
9458 linux 2.[01]
9459 */
252b5132 9460#if defined (HAVE_PRSTATUS_T_PR_WHO)
228e534f 9461 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9462#else
228e534f 9463 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
252b5132 9464#endif
4a938328 9465 }
7ee38065 9466#if defined (HAVE_PRSTATUS32_T)
4a938328
MS
9467 else if (note->descsz == sizeof (prstatus32_t))
9468 {
9469 /* 64-bit host, 32-bit corefile */
9470 prstatus32_t prstat;
9471
eea6121a 9472 size = sizeof (prstat.pr_reg);
7ee38065 9473 offset = offsetof (prstatus32_t, pr_reg);
4a938328
MS
9474 memcpy (&prstat, note->descdata, sizeof (prstat));
9475
fa49d224
NC
9476 /* Do not overwrite the core signal if it
9477 has already been set by another thread. */
228e534f
AM
9478 if (elf_tdata (abfd)->core->signal == 0)
9479 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9480 if (elf_tdata (abfd)->core->pid == 0)
9481 elf_tdata (abfd)->core->pid = prstat.pr_pid;
4a938328
MS
9482
9483 /* pr_who exists on:
9484 solaris 2.5+
9485 unixware 4.2
9486 pr_who doesn't exist on:
9487 linux 2.[01]
9488 */
7ee38065 9489#if defined (HAVE_PRSTATUS32_T_PR_WHO)
228e534f 9490 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9491#else
228e534f 9492 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
4a938328
MS
9493#endif
9494 }
7ee38065 9495#endif /* HAVE_PRSTATUS32_T */
4a938328
MS
9496 else
9497 {
9498 /* Fail - we don't know how to handle any other
9499 note size (ie. data object type). */
b34976b6 9500 return TRUE;
4a938328 9501 }
252b5132 9502
bb0082d6 9503 /* Make a ".reg/999" section and a ".reg" section. */
936e320b 9504 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 9505 size, note->descpos + offset);
252b5132
RH
9506}
9507#endif /* defined (HAVE_PRSTATUS_T) */
9508
bb0082d6 9509/* Create a pseudosection containing the exact contents of NOTE. */
b34976b6 9510static bfd_boolean
217aa764
AM
9511elfcore_make_note_pseudosection (bfd *abfd,
9512 char *name,
9513 Elf_Internal_Note *note)
252b5132 9514{
936e320b
AM
9515 return _bfd_elfcore_make_pseudosection (abfd, name,
9516 note->descsz, note->descpos);
252b5132
RH
9517}
9518
ff08c6bb
JB
9519/* There isn't a consistent prfpregset_t across platforms,
9520 but it doesn't matter, because we don't have to pick this
c044fabd
KH
9521 data structure apart. */
9522
b34976b6 9523static bfd_boolean
217aa764 9524elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9525{
9526 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9527}
9528
ff08c6bb 9529/* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
971d4640 9530 type of NT_PRXFPREG. Just include the whole note's contents
ff08c6bb 9531 literally. */
c044fabd 9532
b34976b6 9533static bfd_boolean
217aa764 9534elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9535{
9536 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9537}
9538
4339cae0
L
9539/* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9540 with a note type of NT_X86_XSTATE. Just include the whole note's
9541 contents literally. */
9542
9543static bfd_boolean
9544elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9545{
9546 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9547}
9548
97753bd5
AM
9549static bfd_boolean
9550elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9551{
9552 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9553}
9554
89eeb0bc
LM
9555static bfd_boolean
9556elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9557{
9558 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9559}
97753bd5 9560
cb2366c1
EBM
9561static bfd_boolean
9562elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9563{
9564 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9565}
9566
9567static bfd_boolean
9568elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9569{
9570 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9571}
9572
9573static bfd_boolean
9574elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9575{
9576 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9577}
9578
9579static bfd_boolean
9580elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9581{
9582 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9583}
9584
9585static bfd_boolean
9586elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9587{
9588 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9589}
9590
9591static bfd_boolean
9592elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9593{
9594 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9595}
9596
9597static bfd_boolean
9598elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9599{
9600 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9601}
9602
9603static bfd_boolean
9604elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9605{
9606 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9607}
9608
9609static bfd_boolean
9610elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9611{
9612 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9613}
9614
9615static bfd_boolean
9616elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9617{
9618 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9619}
9620
9621static bfd_boolean
9622elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9623{
9624 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9625}
9626
9627static bfd_boolean
9628elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9629{
9630 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9631}
9632
9633static bfd_boolean
9634elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9635{
9636 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9637}
9638
0675e188
UW
9639static bfd_boolean
9640elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9641{
9642 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9643}
9644
d7eeb400
MS
9645static bfd_boolean
9646elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9647{
9648 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9649}
9650
9651static bfd_boolean
9652elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9653{
9654 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9655}
9656
9657static bfd_boolean
9658elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9659{
9660 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9661}
9662
9663static bfd_boolean
9664elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9665{
9666 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9667}
9668
9669static bfd_boolean
9670elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9671{
9672 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9673}
9674
355b81d9
UW
9675static bfd_boolean
9676elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9677{
9678 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9679}
9680
9681static bfd_boolean
9682elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9683{
9684 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9685}
9686
abb3f6cc
NC
9687static bfd_boolean
9688elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9689{
9690 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9691}
9692
4ef9f41a
AA
9693static bfd_boolean
9694elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9695{
9696 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9697}
9698
9699static bfd_boolean
9700elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9701{
9702 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9703}
9704
88ab90e8
AA
9705static bfd_boolean
9706elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9707{
9708 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9709}
9710
9711static bfd_boolean
9712elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9713{
9714 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9715}
9716
faa9a424
UW
9717static bfd_boolean
9718elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9719{
9720 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9721}
9722
652451f8
YZ
9723static bfd_boolean
9724elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9725{
9726 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9727}
9728
9729static bfd_boolean
9730elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9731{
9732 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9733}
9734
9735static bfd_boolean
9736elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9737{
9738 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9739}
9740
ad1cc4e4
AH
9741static bfd_boolean
9742elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9743{
9744 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9745}
9746
e6c3b5bf
AH
9747static bfd_boolean
9748elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9749{
9750 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9751}
9752
252b5132 9753#if defined (HAVE_PRPSINFO_T)
4a938328 9754typedef prpsinfo_t elfcore_psinfo_t;
7ee38065 9755#if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9756typedef prpsinfo32_t elfcore_psinfo32_t;
9757#endif
252b5132
RH
9758#endif
9759
9760#if defined (HAVE_PSINFO_T)
4a938328 9761typedef psinfo_t elfcore_psinfo_t;
7ee38065 9762#if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9763typedef psinfo32_t elfcore_psinfo32_t;
9764#endif
252b5132
RH
9765#endif
9766
252b5132
RH
9767/* return a malloc'ed copy of a string at START which is at
9768 most MAX bytes long, possibly without a terminating '\0'.
c044fabd 9769 the copy will always have a terminating '\0'. */
252b5132 9770
936e320b 9771char *
217aa764 9772_bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
252b5132 9773{
dc810e39 9774 char *dups;
a50b1753 9775 char *end = (char *) memchr (start, '\0', max);
dc810e39 9776 size_t len;
252b5132
RH
9777
9778 if (end == NULL)
9779 len = max;
9780 else
9781 len = end - start;
9782
a50b1753 9783 dups = (char *) bfd_alloc (abfd, len + 1);
dc810e39 9784 if (dups == NULL)
252b5132
RH
9785 return NULL;
9786
dc810e39
AM
9787 memcpy (dups, start, len);
9788 dups[len] = '\0';
252b5132 9789
dc810e39 9790 return dups;
252b5132
RH
9791}
9792
bb0082d6 9793#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
b34976b6 9794static bfd_boolean
217aa764 9795elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
252b5132 9796{
4a938328
MS
9797 if (note->descsz == sizeof (elfcore_psinfo_t))
9798 {
9799 elfcore_psinfo_t psinfo;
252b5132 9800
7ee38065 9801 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9802
335e41d4 9803#if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
228e534f 9804 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9805#endif
228e534f 9806 elf_tdata (abfd)->core->program
936e320b
AM
9807 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9808 sizeof (psinfo.pr_fname));
252b5132 9809
228e534f 9810 elf_tdata (abfd)->core->command
936e320b
AM
9811 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9812 sizeof (psinfo.pr_psargs));
4a938328 9813 }
7ee38065 9814#if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
4a938328
MS
9815 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9816 {
9817 /* 64-bit host, 32-bit corefile */
9818 elfcore_psinfo32_t psinfo;
9819
7ee38065 9820 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9821
335e41d4 9822#if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
228e534f 9823 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9824#endif
228e534f 9825 elf_tdata (abfd)->core->program
936e320b
AM
9826 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9827 sizeof (psinfo.pr_fname));
4a938328 9828
228e534f 9829 elf_tdata (abfd)->core->command
936e320b
AM
9830 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9831 sizeof (psinfo.pr_psargs));
4a938328
MS
9832 }
9833#endif
9834
9835 else
9836 {
9837 /* Fail - we don't know how to handle any other
9838 note size (ie. data object type). */
b34976b6 9839 return TRUE;
4a938328 9840 }
252b5132
RH
9841
9842 /* Note that for some reason, a spurious space is tacked
9843 onto the end of the args in some (at least one anyway)
c044fabd 9844 implementations, so strip it off if it exists. */
252b5132
RH
9845
9846 {
228e534f 9847 char *command = elf_tdata (abfd)->core->command;
252b5132
RH
9848 int n = strlen (command);
9849
9850 if (0 < n && command[n - 1] == ' ')
9851 command[n - 1] = '\0';
9852 }
9853
b34976b6 9854 return TRUE;
252b5132
RH
9855}
9856#endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9857
252b5132 9858#if defined (HAVE_PSTATUS_T)
b34976b6 9859static bfd_boolean
217aa764 9860elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9861{
f572a39d
AM
9862 if (note->descsz == sizeof (pstatus_t)
9863#if defined (HAVE_PXSTATUS_T)
9864 || note->descsz == sizeof (pxstatus_t)
9865#endif
9866 )
4a938328
MS
9867 {
9868 pstatus_t pstat;
252b5132 9869
4a938328 9870 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9871
228e534f 9872 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328 9873 }
7ee38065 9874#if defined (HAVE_PSTATUS32_T)
4a938328
MS
9875 else if (note->descsz == sizeof (pstatus32_t))
9876 {
9877 /* 64-bit host, 32-bit corefile */
9878 pstatus32_t pstat;
252b5132 9879
4a938328 9880 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9881
228e534f 9882 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328
MS
9883 }
9884#endif
252b5132
RH
9885 /* Could grab some more details from the "representative"
9886 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
c044fabd 9887 NT_LWPSTATUS note, presumably. */
252b5132 9888
b34976b6 9889 return TRUE;
252b5132
RH
9890}
9891#endif /* defined (HAVE_PSTATUS_T) */
9892
252b5132 9893#if defined (HAVE_LWPSTATUS_T)
b34976b6 9894static bfd_boolean
217aa764 9895elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132
RH
9896{
9897 lwpstatus_t lwpstat;
9898 char buf[100];
c044fabd 9899 char *name;
d4c88bbb 9900 size_t len;
c044fabd 9901 asection *sect;
252b5132 9902
f572a39d
AM
9903 if (note->descsz != sizeof (lwpstat)
9904#if defined (HAVE_LWPXSTATUS_T)
9905 && note->descsz != sizeof (lwpxstatus_t)
9906#endif
9907 )
b34976b6 9908 return TRUE;
252b5132
RH
9909
9910 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9911
228e534f 9912 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
a1504221
JB
9913 /* Do not overwrite the core signal if it has already been set by
9914 another thread. */
228e534f
AM
9915 if (elf_tdata (abfd)->core->signal == 0)
9916 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
252b5132 9917
c044fabd 9918 /* Make a ".reg/999" section. */
252b5132
RH
9919
9920 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
d4c88bbb 9921 len = strlen (buf) + 1;
217aa764 9922 name = bfd_alloc (abfd, len);
252b5132 9923 if (name == NULL)
b34976b6 9924 return FALSE;
d4c88bbb 9925 memcpy (name, buf, len);
252b5132 9926
117ed4f8 9927 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9928 if (sect == NULL)
b34976b6 9929 return FALSE;
252b5132
RH
9930
9931#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 9932 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
252b5132
RH
9933 sect->filepos = note->descpos
9934 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
9935#endif
9936
9937#if defined (HAVE_LWPSTATUS_T_PR_REG)
eea6121a 9938 sect->size = sizeof (lwpstat.pr_reg);
252b5132
RH
9939 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
9940#endif
9941
252b5132
RH
9942 sect->alignment_power = 2;
9943
9944 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 9945 return FALSE;
252b5132
RH
9946
9947 /* Make a ".reg2/999" section */
9948
9949 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
d4c88bbb 9950 len = strlen (buf) + 1;
217aa764 9951 name = bfd_alloc (abfd, len);
252b5132 9952 if (name == NULL)
b34976b6 9953 return FALSE;
d4c88bbb 9954 memcpy (name, buf, len);
252b5132 9955
117ed4f8 9956 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9957 if (sect == NULL)
b34976b6 9958 return FALSE;
252b5132
RH
9959
9960#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 9961 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
252b5132
RH
9962 sect->filepos = note->descpos
9963 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
9964#endif
9965
9966#if defined (HAVE_LWPSTATUS_T_PR_FPREG)
eea6121a 9967 sect->size = sizeof (lwpstat.pr_fpreg);
252b5132
RH
9968 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
9969#endif
9970
252b5132
RH
9971 sect->alignment_power = 2;
9972
936e320b 9973 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
252b5132
RH
9974}
9975#endif /* defined (HAVE_LWPSTATUS_T) */
9976
b34976b6 9977static bfd_boolean
217aa764 9978elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
16e9c715
NC
9979{
9980 char buf[30];
c044fabd 9981 char *name;
d4c88bbb 9982 size_t len;
c044fabd 9983 asection *sect;
4a6636fb
PA
9984 int type;
9985 int is_active_thread;
9986 bfd_vma base_addr;
16e9c715 9987
4a6636fb 9988 if (note->descsz < 728)
b34976b6 9989 return TRUE;
16e9c715 9990
4a6636fb
PA
9991 if (! CONST_STRNEQ (note->namedata, "win32"))
9992 return TRUE;
9993
9994 type = bfd_get_32 (abfd, note->descdata);
c044fabd 9995
4a6636fb 9996 switch (type)
16e9c715 9997 {
4a6636fb 9998 case 1 /* NOTE_INFO_PROCESS */:
228e534f 9999 /* FIXME: need to add ->core->command. */
4a6636fb 10000 /* process_info.pid */
228e534f 10001 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
4a6636fb 10002 /* process_info.signal */
228e534f 10003 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
c044fabd 10004 break;
16e9c715 10005
4a6636fb 10006 case 2 /* NOTE_INFO_THREAD */:
16e9c715 10007 /* Make a ".reg/999" section. */
4a6636fb
PA
10008 /* thread_info.tid */
10009 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
c044fabd 10010
d4c88bbb 10011 len = strlen (buf) + 1;
a50b1753 10012 name = (char *) bfd_alloc (abfd, len);
16e9c715 10013 if (name == NULL)
b34976b6 10014 return FALSE;
c044fabd 10015
d4c88bbb 10016 memcpy (name, buf, len);
16e9c715 10017
117ed4f8 10018 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
16e9c715 10019 if (sect == NULL)
b34976b6 10020 return FALSE;
c044fabd 10021
4a6636fb
PA
10022 /* sizeof (thread_info.thread_context) */
10023 sect->size = 716;
10024 /* offsetof (thread_info.thread_context) */
10025 sect->filepos = note->descpos + 12;
16e9c715
NC
10026 sect->alignment_power = 2;
10027
4a6636fb
PA
10028 /* thread_info.is_active_thread */
10029 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10030
10031 if (is_active_thread)
16e9c715 10032 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 10033 return FALSE;
16e9c715
NC
10034 break;
10035
4a6636fb 10036 case 3 /* NOTE_INFO_MODULE */:
16e9c715 10037 /* Make a ".module/xxxxxxxx" section. */
4a6636fb
PA
10038 /* module_info.base_address */
10039 base_addr = bfd_get_32 (abfd, note->descdata + 4);
0af1713e 10040 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
c044fabd 10041
d4c88bbb 10042 len = strlen (buf) + 1;
a50b1753 10043 name = (char *) bfd_alloc (abfd, len);
16e9c715 10044 if (name == NULL)
b34976b6 10045 return FALSE;
c044fabd 10046
d4c88bbb 10047 memcpy (name, buf, len);
252b5132 10048
117ed4f8 10049 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
c044fabd 10050
16e9c715 10051 if (sect == NULL)
b34976b6 10052 return FALSE;
c044fabd 10053
eea6121a 10054 sect->size = note->descsz;
16e9c715 10055 sect->filepos = note->descpos;
16e9c715
NC
10056 sect->alignment_power = 2;
10057 break;
10058
10059 default:
b34976b6 10060 return TRUE;
16e9c715
NC
10061 }
10062
b34976b6 10063 return TRUE;
16e9c715 10064}
252b5132 10065
b34976b6 10066static bfd_boolean
217aa764 10067elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
252b5132 10068{
9c5bfbb7 10069 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
bb0082d6 10070
252b5132
RH
10071 switch (note->type)
10072 {
10073 default:
b34976b6 10074 return TRUE;
252b5132 10075
252b5132 10076 case NT_PRSTATUS:
bb0082d6
AM
10077 if (bed->elf_backend_grok_prstatus)
10078 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
b34976b6 10079 return TRUE;
bb0082d6 10080#if defined (HAVE_PRSTATUS_T)
252b5132 10081 return elfcore_grok_prstatus (abfd, note);
bb0082d6 10082#else
b34976b6 10083 return TRUE;
252b5132
RH
10084#endif
10085
10086#if defined (HAVE_PSTATUS_T)
10087 case NT_PSTATUS:
10088 return elfcore_grok_pstatus (abfd, note);
10089#endif
10090
10091#if defined (HAVE_LWPSTATUS_T)
10092 case NT_LWPSTATUS:
10093 return elfcore_grok_lwpstatus (abfd, note);
10094#endif
10095
10096 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10097 return elfcore_grok_prfpreg (abfd, note);
10098
c044fabd 10099 case NT_WIN32PSTATUS:
16e9c715 10100 return elfcore_grok_win32pstatus (abfd, note);
16e9c715 10101
c044fabd 10102 case NT_PRXFPREG: /* Linux SSE extension */
e377ab71
MK
10103 if (note->namesz == 6
10104 && strcmp (note->namedata, "LINUX") == 0)
ff08c6bb
JB
10105 return elfcore_grok_prxfpreg (abfd, note);
10106 else
b34976b6 10107 return TRUE;
ff08c6bb 10108
4339cae0
L
10109 case NT_X86_XSTATE: /* Linux XSAVE extension */
10110 if (note->namesz == 6
10111 && strcmp (note->namedata, "LINUX") == 0)
10112 return elfcore_grok_xstatereg (abfd, note);
10113 else
10114 return TRUE;
10115
97753bd5
AM
10116 case NT_PPC_VMX:
10117 if (note->namesz == 6
10118 && strcmp (note->namedata, "LINUX") == 0)
10119 return elfcore_grok_ppc_vmx (abfd, note);
10120 else
10121 return TRUE;
10122
89eeb0bc
LM
10123 case NT_PPC_VSX:
10124 if (note->namesz == 6
07d6d2b8
AM
10125 && strcmp (note->namedata, "LINUX") == 0)
10126 return elfcore_grok_ppc_vsx (abfd, note);
89eeb0bc 10127 else
07d6d2b8 10128 return TRUE;
89eeb0bc 10129
cb2366c1
EBM
10130 case NT_PPC_TAR:
10131 if (note->namesz == 6
4b24dd1a
AM
10132 && strcmp (note->namedata, "LINUX") == 0)
10133 return elfcore_grok_ppc_tar (abfd, note);
cb2366c1 10134 else
4b24dd1a 10135 return TRUE;
cb2366c1
EBM
10136
10137 case NT_PPC_PPR:
10138 if (note->namesz == 6
4b24dd1a
AM
10139 && strcmp (note->namedata, "LINUX") == 0)
10140 return elfcore_grok_ppc_ppr (abfd, note);
cb2366c1 10141 else
4b24dd1a 10142 return TRUE;
cb2366c1
EBM
10143
10144 case NT_PPC_DSCR:
10145 if (note->namesz == 6
4b24dd1a
AM
10146 && strcmp (note->namedata, "LINUX") == 0)
10147 return elfcore_grok_ppc_dscr (abfd, note);
cb2366c1 10148 else
4b24dd1a 10149 return TRUE;
cb2366c1
EBM
10150
10151 case NT_PPC_EBB:
10152 if (note->namesz == 6
4b24dd1a
AM
10153 && strcmp (note->namedata, "LINUX") == 0)
10154 return elfcore_grok_ppc_ebb (abfd, note);
cb2366c1 10155 else
4b24dd1a 10156 return TRUE;
cb2366c1
EBM
10157
10158 case NT_PPC_PMU:
10159 if (note->namesz == 6
4b24dd1a
AM
10160 && strcmp (note->namedata, "LINUX") == 0)
10161 return elfcore_grok_ppc_pmu (abfd, note);
cb2366c1 10162 else
4b24dd1a 10163 return TRUE;
cb2366c1
EBM
10164
10165 case NT_PPC_TM_CGPR:
10166 if (note->namesz == 6
4b24dd1a
AM
10167 && strcmp (note->namedata, "LINUX") == 0)
10168 return elfcore_grok_ppc_tm_cgpr (abfd, note);
cb2366c1 10169 else
4b24dd1a 10170 return TRUE;
cb2366c1
EBM
10171
10172 case NT_PPC_TM_CFPR:
10173 if (note->namesz == 6
4b24dd1a
AM
10174 && strcmp (note->namedata, "LINUX") == 0)
10175 return elfcore_grok_ppc_tm_cfpr (abfd, note);
cb2366c1 10176 else
4b24dd1a 10177 return TRUE;
cb2366c1
EBM
10178
10179 case NT_PPC_TM_CVMX:
10180 if (note->namesz == 6
4b24dd1a
AM
10181 && strcmp (note->namedata, "LINUX") == 0)
10182 return elfcore_grok_ppc_tm_cvmx (abfd, note);
cb2366c1 10183 else
4b24dd1a 10184 return TRUE;
cb2366c1
EBM
10185
10186 case NT_PPC_TM_CVSX:
10187 if (note->namesz == 6
4b24dd1a
AM
10188 && strcmp (note->namedata, "LINUX") == 0)
10189 return elfcore_grok_ppc_tm_cvsx (abfd, note);
cb2366c1 10190 else
4b24dd1a 10191 return TRUE;
cb2366c1
EBM
10192
10193 case NT_PPC_TM_SPR:
10194 if (note->namesz == 6
4b24dd1a
AM
10195 && strcmp (note->namedata, "LINUX") == 0)
10196 return elfcore_grok_ppc_tm_spr (abfd, note);
cb2366c1 10197 else
4b24dd1a 10198 return TRUE;
cb2366c1
EBM
10199
10200 case NT_PPC_TM_CTAR:
10201 if (note->namesz == 6
4b24dd1a
AM
10202 && strcmp (note->namedata, "LINUX") == 0)
10203 return elfcore_grok_ppc_tm_ctar (abfd, note);
cb2366c1 10204 else
4b24dd1a 10205 return TRUE;
cb2366c1
EBM
10206
10207 case NT_PPC_TM_CPPR:
10208 if (note->namesz == 6
4b24dd1a
AM
10209 && strcmp (note->namedata, "LINUX") == 0)
10210 return elfcore_grok_ppc_tm_cppr (abfd, note);
cb2366c1 10211 else
4b24dd1a 10212 return TRUE;
cb2366c1
EBM
10213
10214 case NT_PPC_TM_CDSCR:
10215 if (note->namesz == 6
4b24dd1a
AM
10216 && strcmp (note->namedata, "LINUX") == 0)
10217 return elfcore_grok_ppc_tm_cdscr (abfd, note);
cb2366c1 10218 else
4b24dd1a 10219 return TRUE;
cb2366c1 10220
0675e188
UW
10221 case NT_S390_HIGH_GPRS:
10222 if (note->namesz == 6
07d6d2b8
AM
10223 && strcmp (note->namedata, "LINUX") == 0)
10224 return elfcore_grok_s390_high_gprs (abfd, note);
0675e188 10225 else
07d6d2b8 10226 return TRUE;
0675e188 10227
d7eeb400
MS
10228 case NT_S390_TIMER:
10229 if (note->namesz == 6
07d6d2b8
AM
10230 && strcmp (note->namedata, "LINUX") == 0)
10231 return elfcore_grok_s390_timer (abfd, note);
d7eeb400 10232 else
07d6d2b8 10233 return TRUE;
d7eeb400
MS
10234
10235 case NT_S390_TODCMP:
10236 if (note->namesz == 6
07d6d2b8
AM
10237 && strcmp (note->namedata, "LINUX") == 0)
10238 return elfcore_grok_s390_todcmp (abfd, note);
d7eeb400 10239 else
07d6d2b8 10240 return TRUE;
d7eeb400
MS
10241
10242 case NT_S390_TODPREG:
10243 if (note->namesz == 6
07d6d2b8
AM
10244 && strcmp (note->namedata, "LINUX") == 0)
10245 return elfcore_grok_s390_todpreg (abfd, note);
d7eeb400 10246 else
07d6d2b8 10247 return TRUE;
d7eeb400
MS
10248
10249 case NT_S390_CTRS:
10250 if (note->namesz == 6
07d6d2b8
AM
10251 && strcmp (note->namedata, "LINUX") == 0)
10252 return elfcore_grok_s390_ctrs (abfd, note);
d7eeb400 10253 else
07d6d2b8 10254 return TRUE;
d7eeb400
MS
10255
10256 case NT_S390_PREFIX:
10257 if (note->namesz == 6
07d6d2b8
AM
10258 && strcmp (note->namedata, "LINUX") == 0)
10259 return elfcore_grok_s390_prefix (abfd, note);
d7eeb400 10260 else
07d6d2b8 10261 return TRUE;
d7eeb400 10262
355b81d9
UW
10263 case NT_S390_LAST_BREAK:
10264 if (note->namesz == 6
07d6d2b8
AM
10265 && strcmp (note->namedata, "LINUX") == 0)
10266 return elfcore_grok_s390_last_break (abfd, note);
355b81d9 10267 else
07d6d2b8 10268 return TRUE;
355b81d9
UW
10269
10270 case NT_S390_SYSTEM_CALL:
10271 if (note->namesz == 6
07d6d2b8
AM
10272 && strcmp (note->namedata, "LINUX") == 0)
10273 return elfcore_grok_s390_system_call (abfd, note);
355b81d9 10274 else
07d6d2b8 10275 return TRUE;
355b81d9 10276
abb3f6cc
NC
10277 case NT_S390_TDB:
10278 if (note->namesz == 6
07d6d2b8
AM
10279 && strcmp (note->namedata, "LINUX") == 0)
10280 return elfcore_grok_s390_tdb (abfd, note);
abb3f6cc 10281 else
07d6d2b8 10282 return TRUE;
abb3f6cc 10283
4ef9f41a
AA
10284 case NT_S390_VXRS_LOW:
10285 if (note->namesz == 6
10286 && strcmp (note->namedata, "LINUX") == 0)
10287 return elfcore_grok_s390_vxrs_low (abfd, note);
10288 else
10289 return TRUE;
10290
10291 case NT_S390_VXRS_HIGH:
10292 if (note->namesz == 6
10293 && strcmp (note->namedata, "LINUX") == 0)
10294 return elfcore_grok_s390_vxrs_high (abfd, note);
10295 else
10296 return TRUE;
10297
88ab90e8
AA
10298 case NT_S390_GS_CB:
10299 if (note->namesz == 6
10300 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10301 return elfcore_grok_s390_gs_cb (abfd, note);
88ab90e8
AA
10302 else
10303 return TRUE;
10304
10305 case NT_S390_GS_BC:
10306 if (note->namesz == 6
10307 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10308 return elfcore_grok_s390_gs_bc (abfd, note);
88ab90e8
AA
10309 else
10310 return TRUE;
10311
faa9a424
UW
10312 case NT_ARM_VFP:
10313 if (note->namesz == 6
10314 && strcmp (note->namedata, "LINUX") == 0)
10315 return elfcore_grok_arm_vfp (abfd, note);
10316 else
10317 return TRUE;
10318
652451f8
YZ
10319 case NT_ARM_TLS:
10320 if (note->namesz == 6
10321 && strcmp (note->namedata, "LINUX") == 0)
10322 return elfcore_grok_aarch_tls (abfd, note);
10323 else
10324 return TRUE;
10325
10326 case NT_ARM_HW_BREAK:
10327 if (note->namesz == 6
10328 && strcmp (note->namedata, "LINUX") == 0)
10329 return elfcore_grok_aarch_hw_break (abfd, note);
10330 else
10331 return TRUE;
10332
10333 case NT_ARM_HW_WATCH:
10334 if (note->namesz == 6
10335 && strcmp (note->namedata, "LINUX") == 0)
10336 return elfcore_grok_aarch_hw_watch (abfd, note);
10337 else
10338 return TRUE;
10339
ad1cc4e4
AH
10340 case NT_ARM_SVE:
10341 if (note->namesz == 6
10342 && strcmp (note->namedata, "LINUX") == 0)
10343 return elfcore_grok_aarch_sve (abfd, note);
10344 else
10345 return TRUE;
10346
e6c3b5bf
AH
10347 case NT_ARM_PAC_MASK:
10348 if (note->namesz == 6
10349 && strcmp (note->namedata, "LINUX") == 0)
10350 return elfcore_grok_aarch_pauth (abfd, note);
10351 else
10352 return TRUE;
10353
252b5132
RH
10354 case NT_PRPSINFO:
10355 case NT_PSINFO:
bb0082d6
AM
10356 if (bed->elf_backend_grok_psinfo)
10357 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
b34976b6 10358 return TRUE;
bb0082d6 10359#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
252b5132 10360 return elfcore_grok_psinfo (abfd, note);
bb0082d6 10361#else
b34976b6 10362 return TRUE;
252b5132 10363#endif
3333a7c3
RM
10364
10365 case NT_AUXV:
58e07198 10366 return elfcore_make_auxv_note_section (abfd, note, 0);
9015683b 10367
451b7c33
TT
10368 case NT_FILE:
10369 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10370 note);
10371
9015683b
TT
10372 case NT_SIGINFO:
10373 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10374 note);
5b2c414d 10375
252b5132
RH
10376 }
10377}
10378
718175fa
JK
10379static bfd_boolean
10380elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10381{
c74f7d1c 10382 struct bfd_build_id* build_id;
30e8ee25
AM
10383
10384 if (note->descsz == 0)
10385 return FALSE;
10386
c74f7d1c
JT
10387 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10388 if (build_id == NULL)
718175fa
JK
10389 return FALSE;
10390
c74f7d1c
JT
10391 build_id->size = note->descsz;
10392 memcpy (build_id->data, note->descdata, note->descsz);
10393 abfd->build_id = build_id;
718175fa
JK
10394
10395 return TRUE;
10396}
10397
10398static bfd_boolean
10399elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10400{
10401 switch (note->type)
10402 {
10403 default:
10404 return TRUE;
10405
46bed679
L
10406 case NT_GNU_PROPERTY_TYPE_0:
10407 return _bfd_elf_parse_gnu_properties (abfd, note);
10408
718175fa
JK
10409 case NT_GNU_BUILD_ID:
10410 return elfobj_grok_gnu_build_id (abfd, note);
10411 }
10412}
10413
e21e5835
NC
10414static bfd_boolean
10415elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10416{
10417 struct sdt_note *cur =
7a6e0d89
AM
10418 (struct sdt_note *) bfd_alloc (abfd,
10419 sizeof (struct sdt_note) + note->descsz);
e21e5835
NC
10420
10421 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10422 cur->size = (bfd_size_type) note->descsz;
10423 memcpy (cur->data, note->descdata, note->descsz);
10424
10425 elf_tdata (abfd)->sdt_note_head = cur;
10426
10427 return TRUE;
10428}
10429
10430static bfd_boolean
10431elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10432{
10433 switch (note->type)
10434 {
10435 case NT_STAPSDT:
10436 return elfobj_grok_stapsdt_note_1 (abfd, note);
10437
10438 default:
10439 return TRUE;
10440 }
10441}
10442
aa1ed4a9
JB
10443static bfd_boolean
10444elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10445{
10446 size_t offset;
10447
b5430a3c 10448 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10449 {
b5430a3c 10450 case ELFCLASS32:
0064d223
JB
10451 if (note->descsz < 108)
10452 return FALSE;
aa1ed4a9
JB
10453 break;
10454
b5430a3c 10455 case ELFCLASS64:
0064d223
JB
10456 if (note->descsz < 120)
10457 return FALSE;
aa1ed4a9
JB
10458 break;
10459
10460 default:
10461 return FALSE;
10462 }
10463
0064d223
JB
10464 /* Check for version 1 in pr_version. */
10465 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10466 return FALSE;
80a04378 10467
0064d223
JB
10468 offset = 4;
10469
10470 /* Skip over pr_psinfosz. */
b5430a3c 10471 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
0064d223
JB
10472 offset += 4;
10473 else
10474 {
10475 offset += 4; /* Padding before pr_psinfosz. */
10476 offset += 8;
10477 }
10478
aa1ed4a9
JB
10479 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10480 elf_tdata (abfd)->core->program
10481 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10482 offset += 17;
10483
10484 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10485 elf_tdata (abfd)->core->command
10486 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
0064d223
JB
10487 offset += 81;
10488
10489 /* Padding before pr_pid. */
10490 offset += 2;
10491
10492 /* The pr_pid field was added in version "1a". */
10493 if (note->descsz < offset + 4)
10494 return TRUE;
10495
10496 elf_tdata (abfd)->core->pid
10497 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
aa1ed4a9
JB
10498
10499 return TRUE;
10500}
10501
10502static bfd_boolean
10503elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10504{
10505 size_t offset;
10506 size_t size;
24d3e51b 10507 size_t min_size;
aa1ed4a9 10508
24d3e51b
NC
10509 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10510 Also compute minimum size of this note. */
b5430a3c 10511 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10512 {
b5430a3c 10513 case ELFCLASS32:
24d3e51b
NC
10514 offset = 4 + 4;
10515 min_size = offset + (4 * 2) + 4 + 4 + 4;
aa1ed4a9
JB
10516 break;
10517
b5430a3c 10518 case ELFCLASS64:
24d3e51b
NC
10519 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10520 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
aa1ed4a9
JB
10521 break;
10522
10523 default:
10524 return FALSE;
10525 }
10526
24d3e51b
NC
10527 if (note->descsz < min_size)
10528 return FALSE;
10529
10530 /* Check for version 1 in pr_version. */
10531 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10532 return FALSE;
aa1ed4a9 10533
24d3e51b
NC
10534 /* Extract size of pr_reg from pr_gregsetsz. */
10535 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
b5430a3c 10536 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
24d3e51b
NC
10537 {
10538 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10539 offset += 4 * 2;
10540 }
b5430a3c 10541 else
24d3e51b
NC
10542 {
10543 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10544 offset += 8 * 2;
10545 }
aa1ed4a9 10546
24d3e51b 10547 /* Skip over pr_osreldate. */
aa1ed4a9
JB
10548 offset += 4;
10549
24d3e51b 10550 /* Read signal from pr_cursig. */
aa1ed4a9
JB
10551 if (elf_tdata (abfd)->core->signal == 0)
10552 elf_tdata (abfd)->core->signal
10553 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10554 offset += 4;
10555
24d3e51b 10556 /* Read TID from pr_pid. */
aa1ed4a9
JB
10557 elf_tdata (abfd)->core->lwpid
10558 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10559 offset += 4;
10560
24d3e51b 10561 /* Padding before pr_reg. */
b5430a3c 10562 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
aa1ed4a9
JB
10563 offset += 4;
10564
24d3e51b
NC
10565 /* Make sure that there is enough data remaining in the note. */
10566 if ((note->descsz - offset) < size)
10567 return FALSE;
10568
aa1ed4a9
JB
10569 /* Make a ".reg/999" section and a ".reg" section. */
10570 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10571 size, note->descpos + offset);
10572}
10573
10574static bfd_boolean
10575elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10576{
544c67cd
JB
10577 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10578
aa1ed4a9
JB
10579 switch (note->type)
10580 {
10581 case NT_PRSTATUS:
544c67cd
JB
10582 if (bed->elf_backend_grok_freebsd_prstatus)
10583 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10584 return TRUE;
aa1ed4a9
JB
10585 return elfcore_grok_freebsd_prstatus (abfd, note);
10586
10587 case NT_FPREGSET:
10588 return elfcore_grok_prfpreg (abfd, note);
10589
10590 case NT_PRPSINFO:
10591 return elfcore_grok_freebsd_psinfo (abfd, note);
10592
10593 case NT_FREEBSD_THRMISC:
10594 if (note->namesz == 8)
10595 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10596 else
10597 return TRUE;
10598
ddb2bbcf
JB
10599 case NT_FREEBSD_PROCSTAT_PROC:
10600 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10601 note);
10602
10603 case NT_FREEBSD_PROCSTAT_FILES:
10604 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10605 note);
10606
10607 case NT_FREEBSD_PROCSTAT_VMMAP:
10608 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10609 note);
10610
3350c5f5 10611 case NT_FREEBSD_PROCSTAT_AUXV:
58e07198 10612 return elfcore_make_auxv_note_section (abfd, note, 4);
3350c5f5 10613
aa1ed4a9
JB
10614 case NT_X86_XSTATE:
10615 if (note->namesz == 8)
10616 return elfcore_grok_xstatereg (abfd, note);
10617 else
10618 return TRUE;
10619
e6f3b9c3
JB
10620 case NT_FREEBSD_PTLWPINFO:
10621 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10622 note);
10623
6d5be5d6
JB
10624 case NT_ARM_VFP:
10625 return elfcore_grok_arm_vfp (abfd, note);
10626
aa1ed4a9
JB
10627 default:
10628 return TRUE;
10629 }
10630}
10631
b34976b6 10632static bfd_boolean
217aa764 10633elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
50b2bdb7
AM
10634{
10635 char *cp;
10636
10637 cp = strchr (note->namedata, '@');
10638 if (cp != NULL)
10639 {
d2b64500 10640 *lwpidp = atoi(cp + 1);
b34976b6 10641 return TRUE;
50b2bdb7 10642 }
b34976b6 10643 return FALSE;
50b2bdb7
AM
10644}
10645
b34976b6 10646static bfd_boolean
217aa764 10647elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7 10648{
80a04378
NC
10649 if (note->descsz <= 0x7c + 31)
10650 return FALSE;
10651
50b2bdb7 10652 /* Signal number at offset 0x08. */
228e534f 10653 elf_tdata (abfd)->core->signal
50b2bdb7
AM
10654 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10655
10656 /* Process ID at offset 0x50. */
228e534f 10657 elf_tdata (abfd)->core->pid
50b2bdb7
AM
10658 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10659
10660 /* Command name at 0x7c (max 32 bytes, including nul). */
228e534f 10661 elf_tdata (abfd)->core->command
50b2bdb7
AM
10662 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10663
7720ba9f
MK
10664 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10665 note);
50b2bdb7
AM
10666}
10667
b34976b6 10668static bfd_boolean
217aa764 10669elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7
AM
10670{
10671 int lwp;
10672
10673 if (elfcore_netbsd_get_lwpid (note, &lwp))
228e534f 10674 elf_tdata (abfd)->core->lwpid = lwp;
50b2bdb7 10675
58e07198 10676 switch (note->type)
50b2bdb7 10677 {
58e07198 10678 case NT_NETBSDCORE_PROCINFO:
50b2bdb7 10679 /* NetBSD-specific core "procinfo". Note that we expect to
08a40648
AM
10680 find this note before any of the others, which is fine,
10681 since the kernel writes this note out first when it
10682 creates a core file. */
50b2bdb7 10683 return elfcore_grok_netbsd_procinfo (abfd, note);
58e07198
CZ
10684#ifdef NT_NETBSDCORE_AUXV
10685 case NT_NETBSDCORE_AUXV:
10686 /* NetBSD-specific Elf Auxiliary Vector data. */
10687 return elfcore_make_auxv_note_section (abfd, note, 4);
10688#endif
10689 default:
10690 break;
50b2bdb7
AM
10691 }
10692
58e07198 10693 /* As of March 2017 there are no other machine-independent notes
b4db1224
JT
10694 defined for NetBSD core files. If the note type is less
10695 than the start of the machine-dependent note types, we don't
10696 understand it. */
47d9a591 10697
b4db1224 10698 if (note->type < NT_NETBSDCORE_FIRSTMACH)
b34976b6 10699 return TRUE;
50b2bdb7
AM
10700
10701
10702 switch (bfd_get_arch (abfd))
10703 {
08a40648
AM
10704 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10705 PT_GETFPREGS == mach+2. */
50b2bdb7
AM
10706
10707 case bfd_arch_alpha:
10708 case bfd_arch_sparc:
10709 switch (note->type)
08a40648
AM
10710 {
10711 case NT_NETBSDCORE_FIRSTMACH+0:
10712 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10713
08a40648
AM
10714 case NT_NETBSDCORE_FIRSTMACH+2:
10715 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10716
08a40648
AM
10717 default:
10718 return TRUE;
10719 }
50b2bdb7 10720
58e07198
CZ
10721 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
10722 There's also old PT___GETREGS40 == mach + 1 for old reg
10723 structure which lacks GBR. */
10724
10725 case bfd_arch_sh:
10726 switch (note->type)
10727 {
10728 case NT_NETBSDCORE_FIRSTMACH+3:
10729 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10730
10731 case NT_NETBSDCORE_FIRSTMACH+5:
10732 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10733
10734 default:
10735 return TRUE;
10736 }
10737
08a40648
AM
10738 /* On all other arch's, PT_GETREGS == mach+1 and
10739 PT_GETFPREGS == mach+3. */
50b2bdb7
AM
10740
10741 default:
10742 switch (note->type)
08a40648
AM
10743 {
10744 case NT_NETBSDCORE_FIRSTMACH+1:
10745 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10746
08a40648
AM
10747 case NT_NETBSDCORE_FIRSTMACH+3:
10748 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10749
08a40648
AM
10750 default:
10751 return TRUE;
10752 }
50b2bdb7
AM
10753 }
10754 /* NOTREACHED */
10755}
10756
67cc5033
MK
10757static bfd_boolean
10758elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10759{
80a04378
NC
10760 if (note->descsz <= 0x48 + 31)
10761 return FALSE;
10762
67cc5033 10763 /* Signal number at offset 0x08. */
228e534f 10764 elf_tdata (abfd)->core->signal
67cc5033
MK
10765 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10766
10767 /* Process ID at offset 0x20. */
228e534f 10768 elf_tdata (abfd)->core->pid
67cc5033
MK
10769 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10770
10771 /* Command name at 0x48 (max 32 bytes, including nul). */
228e534f 10772 elf_tdata (abfd)->core->command
67cc5033
MK
10773 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10774
10775 return TRUE;
10776}
10777
10778static bfd_boolean
10779elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10780{
10781 if (note->type == NT_OPENBSD_PROCINFO)
10782 return elfcore_grok_openbsd_procinfo (abfd, note);
10783
10784 if (note->type == NT_OPENBSD_REGS)
10785 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10786
10787 if (note->type == NT_OPENBSD_FPREGS)
10788 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10789
10790 if (note->type == NT_OPENBSD_XFPREGS)
10791 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
10792
10793 if (note->type == NT_OPENBSD_AUXV)
58e07198 10794 return elfcore_make_auxv_note_section (abfd, note, 0);
67cc5033
MK
10795
10796 if (note->type == NT_OPENBSD_WCOOKIE)
10797 {
10798 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
10799 SEC_HAS_CONTENTS);
10800
10801 if (sect == NULL)
10802 return FALSE;
10803 sect->size = note->descsz;
10804 sect->filepos = note->descpos;
10805 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10806
10807 return TRUE;
10808 }
10809
10810 return TRUE;
10811}
10812
07c6e936 10813static bfd_boolean
d3fd4074 10814elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
07c6e936
NC
10815{
10816 void *ddata = note->descdata;
10817 char buf[100];
10818 char *name;
10819 asection *sect;
f8843e87
AM
10820 short sig;
10821 unsigned flags;
07c6e936 10822
80a04378
NC
10823 if (note->descsz < 16)
10824 return FALSE;
10825
07c6e936 10826 /* nto_procfs_status 'pid' field is at offset 0. */
228e534f 10827 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
07c6e936 10828
f8843e87
AM
10829 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
10830 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
10831
10832 /* nto_procfs_status 'flags' field is at offset 8. */
10833 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
07c6e936
NC
10834
10835 /* nto_procfs_status 'what' field is at offset 14. */
f8843e87
AM
10836 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
10837 {
228e534f
AM
10838 elf_tdata (abfd)->core->signal = sig;
10839 elf_tdata (abfd)->core->lwpid = *tid;
f8843e87 10840 }
07c6e936 10841
f8843e87
AM
10842 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
10843 do not come from signals so we make sure we set the current
10844 thread just in case. */
10845 if (flags & 0x00000080)
228e534f 10846 elf_tdata (abfd)->core->lwpid = *tid;
07c6e936
NC
10847
10848 /* Make a ".qnx_core_status/%d" section. */
d3fd4074 10849 sprintf (buf, ".qnx_core_status/%ld", *tid);
07c6e936 10850
a50b1753 10851 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10852 if (name == NULL)
10853 return FALSE;
10854 strcpy (name, buf);
10855
117ed4f8 10856 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10857 if (sect == NULL)
10858 return FALSE;
10859
07d6d2b8
AM
10860 sect->size = note->descsz;
10861 sect->filepos = note->descpos;
07c6e936
NC
10862 sect->alignment_power = 2;
10863
10864 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
10865}
10866
10867static bfd_boolean
d69f560c
KW
10868elfcore_grok_nto_regs (bfd *abfd,
10869 Elf_Internal_Note *note,
d3fd4074 10870 long tid,
d69f560c 10871 char *base)
07c6e936
NC
10872{
10873 char buf[100];
10874 char *name;
10875 asection *sect;
10876
d69f560c 10877 /* Make a "(base)/%d" section. */
d3fd4074 10878 sprintf (buf, "%s/%ld", base, tid);
07c6e936 10879
a50b1753 10880 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10881 if (name == NULL)
10882 return FALSE;
10883 strcpy (name, buf);
10884
117ed4f8 10885 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10886 if (sect == NULL)
10887 return FALSE;
10888
07d6d2b8
AM
10889 sect->size = note->descsz;
10890 sect->filepos = note->descpos;
07c6e936
NC
10891 sect->alignment_power = 2;
10892
f8843e87 10893 /* This is the current thread. */
228e534f 10894 if (elf_tdata (abfd)->core->lwpid == tid)
d69f560c 10895 return elfcore_maybe_make_sect (abfd, base, sect);
f8843e87
AM
10896
10897 return TRUE;
07c6e936
NC
10898}
10899
10900#define BFD_QNT_CORE_INFO 7
10901#define BFD_QNT_CORE_STATUS 8
10902#define BFD_QNT_CORE_GREG 9
10903#define BFD_QNT_CORE_FPREG 10
10904
10905static bfd_boolean
217aa764 10906elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
07c6e936
NC
10907{
10908 /* Every GREG section has a STATUS section before it. Store the
811072d8 10909 tid from the previous call to pass down to the next gregs
07c6e936 10910 function. */
d3fd4074 10911 static long tid = 1;
07c6e936
NC
10912
10913 switch (note->type)
10914 {
d69f560c
KW
10915 case BFD_QNT_CORE_INFO:
10916 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
10917 case BFD_QNT_CORE_STATUS:
10918 return elfcore_grok_nto_status (abfd, note, &tid);
10919 case BFD_QNT_CORE_GREG:
10920 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
10921 case BFD_QNT_CORE_FPREG:
10922 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
10923 default:
10924 return TRUE;
07c6e936
NC
10925 }
10926}
10927
b15fa79e
AM
10928static bfd_boolean
10929elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
10930{
10931 char *name;
10932 asection *sect;
10933 size_t len;
10934
10935 /* Use note name as section name. */
10936 len = note->namesz;
a50b1753 10937 name = (char *) bfd_alloc (abfd, len);
b15fa79e
AM
10938 if (name == NULL)
10939 return FALSE;
10940 memcpy (name, note->namedata, len);
10941 name[len - 1] = '\0';
10942
10943 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10944 if (sect == NULL)
10945 return FALSE;
10946
07d6d2b8
AM
10947 sect->size = note->descsz;
10948 sect->filepos = note->descpos;
b15fa79e
AM
10949 sect->alignment_power = 1;
10950
10951 return TRUE;
10952}
10953
7c76fa91
MS
10954/* Function: elfcore_write_note
10955
47d9a591 10956 Inputs:
a39f3346 10957 buffer to hold note, and current size of buffer
7c76fa91
MS
10958 name of note
10959 type of note
10960 data for note
10961 size of data for note
10962
a39f3346
AM
10963 Writes note to end of buffer. ELF64 notes are written exactly as
10964 for ELF32, despite the current (as of 2006) ELF gabi specifying
10965 that they ought to have 8-byte namesz and descsz field, and have
10966 8-byte alignment. Other writers, eg. Linux kernel, do the same.
10967
7c76fa91 10968 Return:
a39f3346 10969 Pointer to realloc'd buffer, *BUFSIZ updated. */
7c76fa91
MS
10970
10971char *
a39f3346 10972elfcore_write_note (bfd *abfd,
217aa764 10973 char *buf,
a39f3346 10974 int *bufsiz,
217aa764 10975 const char *name,
a39f3346 10976 int type,
217aa764 10977 const void *input,
a39f3346 10978 int size)
7c76fa91
MS
10979{
10980 Elf_External_Note *xnp;
d4c88bbb 10981 size_t namesz;
d4c88bbb 10982 size_t newspace;
a39f3346 10983 char *dest;
7c76fa91 10984
d4c88bbb 10985 namesz = 0;
d4c88bbb 10986 if (name != NULL)
a39f3346 10987 namesz = strlen (name) + 1;
d4c88bbb 10988
a39f3346 10989 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
d4c88bbb 10990
a50b1753 10991 buf = (char *) realloc (buf, *bufsiz + newspace);
14b1c01e
AM
10992 if (buf == NULL)
10993 return buf;
a39f3346 10994 dest = buf + *bufsiz;
7c76fa91
MS
10995 *bufsiz += newspace;
10996 xnp = (Elf_External_Note *) dest;
10997 H_PUT_32 (abfd, namesz, xnp->namesz);
10998 H_PUT_32 (abfd, size, xnp->descsz);
10999 H_PUT_32 (abfd, type, xnp->type);
d4c88bbb
AM
11000 dest = xnp->name;
11001 if (name != NULL)
11002 {
11003 memcpy (dest, name, namesz);
11004 dest += namesz;
a39f3346 11005 while (namesz & 3)
d4c88bbb
AM
11006 {
11007 *dest++ = '\0';
a39f3346 11008 ++namesz;
d4c88bbb
AM
11009 }
11010 }
11011 memcpy (dest, input, size);
a39f3346
AM
11012 dest += size;
11013 while (size & 3)
11014 {
11015 *dest++ = '\0';
11016 ++size;
11017 }
11018 return buf;
7c76fa91
MS
11019}
11020
602f1657
AM
11021/* gcc-8 warns (*) on all the strncpy calls in this function about
11022 possible string truncation. The "truncation" is not a bug. We
11023 have an external representation of structs with fields that are not
11024 necessarily NULL terminated and corresponding internal
11025 representation fields that are one larger so that they can always
11026 be NULL terminated.
11027 gcc versions between 4.2 and 4.6 do not allow pragma control of
11028 diagnostics inside functions, giving a hard error if you try to use
11029 the finer control available with later versions.
11030 gcc prior to 4.2 warns about diagnostic push and pop.
11031 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11032 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11033 (*) Depending on your system header files! */
d99b4b92 11034#if GCC_VERSION >= 8000
602f1657
AM
11035# pragma GCC diagnostic push
11036# pragma GCC diagnostic ignored "-Wstringop-truncation"
d99b4b92 11037#endif
7c76fa91 11038char *
217aa764
AM
11039elfcore_write_prpsinfo (bfd *abfd,
11040 char *buf,
11041 int *bufsiz,
11042 const char *fname,
11043 const char *psargs)
7c76fa91 11044{
183e98be
AM
11045 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11046
11047 if (bed->elf_backend_write_core_note != NULL)
11048 {
11049 char *ret;
11050 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11051 NT_PRPSINFO, fname, psargs);
11052 if (ret != NULL)
11053 return ret;
11054 }
7c76fa91 11055
1f20dca5 11056#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
602f1657 11057# if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
183e98be
AM
11058 if (bed->s->elfclass == ELFCLASS32)
11059 {
602f1657 11060# if defined (HAVE_PSINFO32_T)
183e98be
AM
11061 psinfo32_t data;
11062 int note_type = NT_PSINFO;
602f1657 11063# else
183e98be
AM
11064 prpsinfo32_t data;
11065 int note_type = NT_PRPSINFO;
602f1657 11066# endif
183e98be
AM
11067
11068 memset (&data, 0, sizeof (data));
11069 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11070 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11071 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11072 "CORE", note_type, &data, sizeof (data));
183e98be
AM
11073 }
11074 else
602f1657 11075# endif
183e98be 11076 {
602f1657 11077# if defined (HAVE_PSINFO_T)
183e98be
AM
11078 psinfo_t data;
11079 int note_type = NT_PSINFO;
602f1657 11080# else
183e98be
AM
11081 prpsinfo_t data;
11082 int note_type = NT_PRPSINFO;
602f1657 11083# endif
7c76fa91 11084
183e98be
AM
11085 memset (&data, 0, sizeof (data));
11086 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11087 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11088 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11089 "CORE", note_type, &data, sizeof (data));
183e98be 11090 }
7c76fa91
MS
11091#endif /* PSINFO_T or PRPSINFO_T */
11092
1f20dca5
UW
11093 free (buf);
11094 return NULL;
11095}
d99b4b92 11096#if GCC_VERSION >= 8000
602f1657 11097# pragma GCC diagnostic pop
d99b4b92 11098#endif
1f20dca5 11099
70a38d42
SDJ
11100char *
11101elfcore_write_linux_prpsinfo32
11102 (bfd *abfd, char *buf, int *bufsiz,
11103 const struct elf_internal_linux_prpsinfo *prpsinfo)
11104{
a2f63b2e
MR
11105 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11106 {
11107 struct elf_external_linux_prpsinfo32_ugid16 data;
11108
11109 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11110 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11111 &data, sizeof (data));
11112 }
11113 else
11114 {
11115 struct elf_external_linux_prpsinfo32_ugid32 data;
70a38d42 11116
a2f63b2e
MR
11117 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11118 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11119 &data, sizeof (data));
11120 }
70a38d42
SDJ
11121}
11122
11123char *
11124elfcore_write_linux_prpsinfo64
11125 (bfd *abfd, char *buf, int *bufsiz,
11126 const struct elf_internal_linux_prpsinfo *prpsinfo)
11127{
3c9a7b0d
MR
11128 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11129 {
11130 struct elf_external_linux_prpsinfo64_ugid16 data;
11131
11132 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11133 return elfcore_write_note (abfd, buf, bufsiz,
11134 "CORE", NT_PRPSINFO, &data, sizeof (data));
11135 }
11136 else
11137 {
11138 struct elf_external_linux_prpsinfo64_ugid32 data;
70a38d42 11139
3c9a7b0d
MR
11140 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11141 return elfcore_write_note (abfd, buf, bufsiz,
11142 "CORE", NT_PRPSINFO, &data, sizeof (data));
11143 }
70a38d42
SDJ
11144}
11145
7c76fa91 11146char *
217aa764
AM
11147elfcore_write_prstatus (bfd *abfd,
11148 char *buf,
11149 int *bufsiz,
11150 long pid,
11151 int cursig,
11152 const void *gregs)
7c76fa91 11153{
183e98be 11154 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11155
183e98be
AM
11156 if (bed->elf_backend_write_core_note != NULL)
11157 {
11158 char *ret;
11159 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11160 NT_PRSTATUS,
11161 pid, cursig, gregs);
11162 if (ret != NULL)
11163 return ret;
11164 }
11165
1f20dca5 11166#if defined (HAVE_PRSTATUS_T)
183e98be
AM
11167#if defined (HAVE_PRSTATUS32_T)
11168 if (bed->s->elfclass == ELFCLASS32)
11169 {
11170 prstatus32_t prstat;
11171
11172 memset (&prstat, 0, sizeof (prstat));
11173 prstat.pr_pid = pid;
11174 prstat.pr_cursig = cursig;
11175 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11176 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11177 NT_PRSTATUS, &prstat, sizeof (prstat));
11178 }
11179 else
11180#endif
11181 {
11182 prstatus_t prstat;
11183
11184 memset (&prstat, 0, sizeof (prstat));
11185 prstat.pr_pid = pid;
11186 prstat.pr_cursig = cursig;
11187 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11188 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11189 NT_PRSTATUS, &prstat, sizeof (prstat));
11190 }
7c76fa91
MS
11191#endif /* HAVE_PRSTATUS_T */
11192
1f20dca5
UW
11193 free (buf);
11194 return NULL;
11195}
11196
51316059
MS
11197#if defined (HAVE_LWPSTATUS_T)
11198char *
217aa764
AM
11199elfcore_write_lwpstatus (bfd *abfd,
11200 char *buf,
11201 int *bufsiz,
11202 long pid,
11203 int cursig,
11204 const void *gregs)
51316059
MS
11205{
11206 lwpstatus_t lwpstat;
183e98be 11207 const char *note_name = "CORE";
51316059
MS
11208
11209 memset (&lwpstat, 0, sizeof (lwpstat));
11210 lwpstat.pr_lwpid = pid >> 16;
11211 lwpstat.pr_cursig = cursig;
11212#if defined (HAVE_LWPSTATUS_T_PR_REG)
d1e8523e 11213 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
51316059
MS
11214#elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11215#if !defined(gregs)
11216 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11217 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11218#else
11219 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11220 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11221#endif
11222#endif
47d9a591 11223 return elfcore_write_note (abfd, buf, bufsiz, note_name,
51316059
MS
11224 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11225}
11226#endif /* HAVE_LWPSTATUS_T */
11227
7c76fa91
MS
11228#if defined (HAVE_PSTATUS_T)
11229char *
217aa764
AM
11230elfcore_write_pstatus (bfd *abfd,
11231 char *buf,
11232 int *bufsiz,
11233 long pid,
6c10990d
NC
11234 int cursig ATTRIBUTE_UNUSED,
11235 const void *gregs ATTRIBUTE_UNUSED)
7c76fa91 11236{
183e98be
AM
11237 const char *note_name = "CORE";
11238#if defined (HAVE_PSTATUS32_T)
11239 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11240
183e98be
AM
11241 if (bed->s->elfclass == ELFCLASS32)
11242 {
11243 pstatus32_t pstat;
11244
11245 memset (&pstat, 0, sizeof (pstat));
11246 pstat.pr_pid = pid & 0xffff;
11247 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11248 NT_PSTATUS, &pstat, sizeof (pstat));
11249 return buf;
11250 }
11251 else
11252#endif
11253 {
11254 pstatus_t pstat;
11255
11256 memset (&pstat, 0, sizeof (pstat));
11257 pstat.pr_pid = pid & 0xffff;
11258 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11259 NT_PSTATUS, &pstat, sizeof (pstat));
11260 return buf;
11261 }
7c76fa91
MS
11262}
11263#endif /* HAVE_PSTATUS_T */
11264
11265char *
217aa764
AM
11266elfcore_write_prfpreg (bfd *abfd,
11267 char *buf,
11268 int *bufsiz,
11269 const void *fpregs,
11270 int size)
7c76fa91 11271{
183e98be 11272 const char *note_name = "CORE";
47d9a591 11273 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11274 note_name, NT_FPREGSET, fpregs, size);
11275}
11276
11277char *
217aa764
AM
11278elfcore_write_prxfpreg (bfd *abfd,
11279 char *buf,
11280 int *bufsiz,
11281 const void *xfpregs,
11282 int size)
7c76fa91
MS
11283{
11284 char *note_name = "LINUX";
47d9a591 11285 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11286 note_name, NT_PRXFPREG, xfpregs, size);
11287}
11288
4339cae0
L
11289char *
11290elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11291 const void *xfpregs, int size)
11292{
97de3545
JB
11293 char *note_name;
11294 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11295 note_name = "FreeBSD";
11296 else
11297 note_name = "LINUX";
4339cae0
L
11298 return elfcore_write_note (abfd, buf, bufsiz,
11299 note_name, NT_X86_XSTATE, xfpregs, size);
11300}
11301
97753bd5
AM
11302char *
11303elfcore_write_ppc_vmx (bfd *abfd,
11304 char *buf,
11305 int *bufsiz,
11306 const void *ppc_vmx,
11307 int size)
11308{
11309 char *note_name = "LINUX";
11310 return elfcore_write_note (abfd, buf, bufsiz,
11311 note_name, NT_PPC_VMX, ppc_vmx, size);
11312}
11313
89eeb0bc
LM
11314char *
11315elfcore_write_ppc_vsx (bfd *abfd,
07d6d2b8
AM
11316 char *buf,
11317 int *bufsiz,
11318 const void *ppc_vsx,
11319 int size)
89eeb0bc
LM
11320{
11321 char *note_name = "LINUX";
11322 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11323 note_name, NT_PPC_VSX, ppc_vsx, size);
89eeb0bc
LM
11324}
11325
cb2366c1
EBM
11326char *
11327elfcore_write_ppc_tar (bfd *abfd,
4b24dd1a
AM
11328 char *buf,
11329 int *bufsiz,
11330 const void *ppc_tar,
11331 int size)
cb2366c1
EBM
11332{
11333 char *note_name = "LINUX";
11334 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11335 note_name, NT_PPC_TAR, ppc_tar, size);
cb2366c1
EBM
11336}
11337
11338char *
11339elfcore_write_ppc_ppr (bfd *abfd,
4b24dd1a
AM
11340 char *buf,
11341 int *bufsiz,
11342 const void *ppc_ppr,
11343 int size)
cb2366c1
EBM
11344{
11345 char *note_name = "LINUX";
11346 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11347 note_name, NT_PPC_PPR, ppc_ppr, size);
cb2366c1
EBM
11348}
11349
11350char *
11351elfcore_write_ppc_dscr (bfd *abfd,
4b24dd1a
AM
11352 char *buf,
11353 int *bufsiz,
11354 const void *ppc_dscr,
11355 int size)
cb2366c1
EBM
11356{
11357 char *note_name = "LINUX";
11358 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11359 note_name, NT_PPC_DSCR, ppc_dscr, size);
cb2366c1
EBM
11360}
11361
11362char *
11363elfcore_write_ppc_ebb (bfd *abfd,
4b24dd1a
AM
11364 char *buf,
11365 int *bufsiz,
11366 const void *ppc_ebb,
11367 int size)
cb2366c1
EBM
11368{
11369 char *note_name = "LINUX";
11370 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11371 note_name, NT_PPC_EBB, ppc_ebb, size);
cb2366c1
EBM
11372}
11373
11374char *
11375elfcore_write_ppc_pmu (bfd *abfd,
4b24dd1a
AM
11376 char *buf,
11377 int *bufsiz,
11378 const void *ppc_pmu,
11379 int size)
cb2366c1
EBM
11380{
11381 char *note_name = "LINUX";
11382 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11383 note_name, NT_PPC_PMU, ppc_pmu, size);
cb2366c1
EBM
11384}
11385
11386char *
11387elfcore_write_ppc_tm_cgpr (bfd *abfd,
4b24dd1a
AM
11388 char *buf,
11389 int *bufsiz,
11390 const void *ppc_tm_cgpr,
11391 int size)
cb2366c1
EBM
11392{
11393 char *note_name = "LINUX";
11394 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11395 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
cb2366c1
EBM
11396}
11397
11398char *
11399elfcore_write_ppc_tm_cfpr (bfd *abfd,
4b24dd1a
AM
11400 char *buf,
11401 int *bufsiz,
11402 const void *ppc_tm_cfpr,
11403 int size)
cb2366c1
EBM
11404{
11405 char *note_name = "LINUX";
11406 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11407 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
cb2366c1
EBM
11408}
11409
11410char *
11411elfcore_write_ppc_tm_cvmx (bfd *abfd,
4b24dd1a
AM
11412 char *buf,
11413 int *bufsiz,
11414 const void *ppc_tm_cvmx,
11415 int size)
cb2366c1
EBM
11416{
11417 char *note_name = "LINUX";
11418 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11419 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
cb2366c1
EBM
11420}
11421
11422char *
11423elfcore_write_ppc_tm_cvsx (bfd *abfd,
4b24dd1a
AM
11424 char *buf,
11425 int *bufsiz,
11426 const void *ppc_tm_cvsx,
11427 int size)
cb2366c1
EBM
11428{
11429 char *note_name = "LINUX";
11430 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11431 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
cb2366c1
EBM
11432}
11433
11434char *
11435elfcore_write_ppc_tm_spr (bfd *abfd,
4b24dd1a
AM
11436 char *buf,
11437 int *bufsiz,
11438 const void *ppc_tm_spr,
11439 int size)
cb2366c1
EBM
11440{
11441 char *note_name = "LINUX";
11442 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11443 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
cb2366c1
EBM
11444}
11445
11446char *
11447elfcore_write_ppc_tm_ctar (bfd *abfd,
4b24dd1a
AM
11448 char *buf,
11449 int *bufsiz,
11450 const void *ppc_tm_ctar,
11451 int size)
cb2366c1
EBM
11452{
11453 char *note_name = "LINUX";
11454 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11455 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
cb2366c1
EBM
11456}
11457
11458char *
11459elfcore_write_ppc_tm_cppr (bfd *abfd,
4b24dd1a
AM
11460 char *buf,
11461 int *bufsiz,
11462 const void *ppc_tm_cppr,
11463 int size)
cb2366c1
EBM
11464{
11465 char *note_name = "LINUX";
11466 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11467 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
cb2366c1
EBM
11468}
11469
11470char *
11471elfcore_write_ppc_tm_cdscr (bfd *abfd,
4b24dd1a
AM
11472 char *buf,
11473 int *bufsiz,
11474 const void *ppc_tm_cdscr,
11475 int size)
cb2366c1
EBM
11476{
11477 char *note_name = "LINUX";
11478 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11479 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
cb2366c1
EBM
11480}
11481
0675e188
UW
11482static char *
11483elfcore_write_s390_high_gprs (bfd *abfd,
11484 char *buf,
11485 int *bufsiz,
11486 const void *s390_high_gprs,
11487 int size)
11488{
11489 char *note_name = "LINUX";
11490 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11491 note_name, NT_S390_HIGH_GPRS,
0675e188
UW
11492 s390_high_gprs, size);
11493}
11494
d7eeb400
MS
11495char *
11496elfcore_write_s390_timer (bfd *abfd,
07d6d2b8
AM
11497 char *buf,
11498 int *bufsiz,
11499 const void *s390_timer,
11500 int size)
d7eeb400
MS
11501{
11502 char *note_name = "LINUX";
11503 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11504 note_name, NT_S390_TIMER, s390_timer, size);
d7eeb400
MS
11505}
11506
11507char *
11508elfcore_write_s390_todcmp (bfd *abfd,
07d6d2b8
AM
11509 char *buf,
11510 int *bufsiz,
11511 const void *s390_todcmp,
11512 int size)
d7eeb400
MS
11513{
11514 char *note_name = "LINUX";
11515 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11516 note_name, NT_S390_TODCMP, s390_todcmp, size);
d7eeb400
MS
11517}
11518
11519char *
11520elfcore_write_s390_todpreg (bfd *abfd,
07d6d2b8
AM
11521 char *buf,
11522 int *bufsiz,
11523 const void *s390_todpreg,
11524 int size)
d7eeb400
MS
11525{
11526 char *note_name = "LINUX";
11527 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11528 note_name, NT_S390_TODPREG, s390_todpreg, size);
d7eeb400
MS
11529}
11530
11531char *
11532elfcore_write_s390_ctrs (bfd *abfd,
07d6d2b8
AM
11533 char *buf,
11534 int *bufsiz,
11535 const void *s390_ctrs,
11536 int size)
d7eeb400
MS
11537{
11538 char *note_name = "LINUX";
11539 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11540 note_name, NT_S390_CTRS, s390_ctrs, size);
d7eeb400
MS
11541}
11542
11543char *
11544elfcore_write_s390_prefix (bfd *abfd,
07d6d2b8
AM
11545 char *buf,
11546 int *bufsiz,
11547 const void *s390_prefix,
11548 int size)
d7eeb400
MS
11549{
11550 char *note_name = "LINUX";
11551 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11552 note_name, NT_S390_PREFIX, s390_prefix, size);
d7eeb400
MS
11553}
11554
355b81d9
UW
11555char *
11556elfcore_write_s390_last_break (bfd *abfd,
11557 char *buf,
11558 int *bufsiz,
11559 const void *s390_last_break,
11560 int size)
11561{
11562 char *note_name = "LINUX";
11563 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11564 note_name, NT_S390_LAST_BREAK,
355b81d9
UW
11565 s390_last_break, size);
11566}
11567
11568char *
11569elfcore_write_s390_system_call (bfd *abfd,
11570 char *buf,
11571 int *bufsiz,
11572 const void *s390_system_call,
11573 int size)
11574{
11575 char *note_name = "LINUX";
11576 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11577 note_name, NT_S390_SYSTEM_CALL,
355b81d9
UW
11578 s390_system_call, size);
11579}
11580
abb3f6cc
NC
11581char *
11582elfcore_write_s390_tdb (bfd *abfd,
11583 char *buf,
11584 int *bufsiz,
11585 const void *s390_tdb,
11586 int size)
11587{
11588 char *note_name = "LINUX";
11589 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11590 note_name, NT_S390_TDB, s390_tdb, size);
abb3f6cc
NC
11591}
11592
4ef9f41a
AA
11593char *
11594elfcore_write_s390_vxrs_low (bfd *abfd,
11595 char *buf,
11596 int *bufsiz,
11597 const void *s390_vxrs_low,
11598 int size)
11599{
11600 char *note_name = "LINUX";
11601 return elfcore_write_note (abfd, buf, bufsiz,
11602 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11603}
11604
11605char *
11606elfcore_write_s390_vxrs_high (bfd *abfd,
11607 char *buf,
11608 int *bufsiz,
11609 const void *s390_vxrs_high,
11610 int size)
11611{
11612 char *note_name = "LINUX";
11613 return elfcore_write_note (abfd, buf, bufsiz,
11614 note_name, NT_S390_VXRS_HIGH,
11615 s390_vxrs_high, size);
11616}
11617
88ab90e8
AA
11618char *
11619elfcore_write_s390_gs_cb (bfd *abfd,
11620 char *buf,
11621 int *bufsiz,
11622 const void *s390_gs_cb,
11623 int size)
11624{
11625 char *note_name = "LINUX";
11626 return elfcore_write_note (abfd, buf, bufsiz,
11627 note_name, NT_S390_GS_CB,
11628 s390_gs_cb, size);
11629}
11630
11631char *
11632elfcore_write_s390_gs_bc (bfd *abfd,
11633 char *buf,
11634 int *bufsiz,
11635 const void *s390_gs_bc,
11636 int size)
11637{
11638 char *note_name = "LINUX";
11639 return elfcore_write_note (abfd, buf, bufsiz,
11640 note_name, NT_S390_GS_BC,
11641 s390_gs_bc, size);
11642}
11643
faa9a424
UW
11644char *
11645elfcore_write_arm_vfp (bfd *abfd,
11646 char *buf,
11647 int *bufsiz,
11648 const void *arm_vfp,
11649 int size)
11650{
11651 char *note_name = "LINUX";
11652 return elfcore_write_note (abfd, buf, bufsiz,
11653 note_name, NT_ARM_VFP, arm_vfp, size);
11654}
11655
652451f8
YZ
11656char *
11657elfcore_write_aarch_tls (bfd *abfd,
11658 char *buf,
11659 int *bufsiz,
11660 const void *aarch_tls,
11661 int size)
11662{
11663 char *note_name = "LINUX";
11664 return elfcore_write_note (abfd, buf, bufsiz,
11665 note_name, NT_ARM_TLS, aarch_tls, size);
11666}
11667
11668char *
11669elfcore_write_aarch_hw_break (bfd *abfd,
11670 char *buf,
11671 int *bufsiz,
11672 const void *aarch_hw_break,
11673 int size)
11674{
11675 char *note_name = "LINUX";
11676 return elfcore_write_note (abfd, buf, bufsiz,
11677 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11678}
11679
11680char *
11681elfcore_write_aarch_hw_watch (bfd *abfd,
11682 char *buf,
11683 int *bufsiz,
11684 const void *aarch_hw_watch,
11685 int size)
11686{
11687 char *note_name = "LINUX";
11688 return elfcore_write_note (abfd, buf, bufsiz,
11689 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11690}
11691
ad1cc4e4
AH
11692char *
11693elfcore_write_aarch_sve (bfd *abfd,
11694 char *buf,
11695 int *bufsiz,
11696 const void *aarch_sve,
11697 int size)
11698{
11699 char *note_name = "LINUX";
11700 return elfcore_write_note (abfd, buf, bufsiz,
11701 note_name, NT_ARM_SVE, aarch_sve, size);
11702}
11703
e6c3b5bf
AH
11704char *
11705elfcore_write_aarch_pauth (bfd *abfd,
11706 char *buf,
11707 int *bufsiz,
11708 const void *aarch_pauth,
11709 int size)
11710{
11711 char *note_name = "LINUX";
11712 return elfcore_write_note (abfd, buf, bufsiz,
11713 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
11714}
11715
bb864ac1
CES
11716char *
11717elfcore_write_register_note (bfd *abfd,
11718 char *buf,
11719 int *bufsiz,
11720 const char *section,
11721 const void *data,
11722 int size)
11723{
11724 if (strcmp (section, ".reg2") == 0)
11725 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11726 if (strcmp (section, ".reg-xfp") == 0)
11727 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
4339cae0
L
11728 if (strcmp (section, ".reg-xstate") == 0)
11729 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11730 if (strcmp (section, ".reg-ppc-vmx") == 0)
11731 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
89eeb0bc
LM
11732 if (strcmp (section, ".reg-ppc-vsx") == 0)
11733 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
cb2366c1
EBM
11734 if (strcmp (section, ".reg-ppc-tar") == 0)
11735 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
11736 if (strcmp (section, ".reg-ppc-ppr") == 0)
11737 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
11738 if (strcmp (section, ".reg-ppc-dscr") == 0)
11739 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
11740 if (strcmp (section, ".reg-ppc-ebb") == 0)
11741 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
11742 if (strcmp (section, ".reg-ppc-pmu") == 0)
11743 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
11744 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
11745 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
11746 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
11747 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
11748 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
11749 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
11750 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
11751 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
11752 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
11753 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
11754 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
11755 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
11756 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
11757 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
11758 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
11759 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
0675e188
UW
11760 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11761 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
d7eeb400
MS
11762 if (strcmp (section, ".reg-s390-timer") == 0)
11763 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11764 if (strcmp (section, ".reg-s390-todcmp") == 0)
11765 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11766 if (strcmp (section, ".reg-s390-todpreg") == 0)
11767 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11768 if (strcmp (section, ".reg-s390-ctrs") == 0)
11769 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11770 if (strcmp (section, ".reg-s390-prefix") == 0)
11771 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
355b81d9
UW
11772 if (strcmp (section, ".reg-s390-last-break") == 0)
11773 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
11774 if (strcmp (section, ".reg-s390-system-call") == 0)
11775 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
abb3f6cc
NC
11776 if (strcmp (section, ".reg-s390-tdb") == 0)
11777 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
4ef9f41a
AA
11778 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
11779 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
11780 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
11781 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
88ab90e8
AA
11782 if (strcmp (section, ".reg-s390-gs-cb") == 0)
11783 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
11784 if (strcmp (section, ".reg-s390-gs-bc") == 0)
11785 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
faa9a424
UW
11786 if (strcmp (section, ".reg-arm-vfp") == 0)
11787 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
652451f8
YZ
11788 if (strcmp (section, ".reg-aarch-tls") == 0)
11789 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
11790 if (strcmp (section, ".reg-aarch-hw-break") == 0)
11791 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
11792 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
11793 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
ad1cc4e4
AH
11794 if (strcmp (section, ".reg-aarch-sve") == 0)
11795 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
e6c3b5bf
AH
11796 if (strcmp (section, ".reg-aarch-pauth") == 0)
11797 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11798 return NULL;
11799}
11800
b34976b6 11801static bfd_boolean
276da9b3
L
11802elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
11803 size_t align)
252b5132 11804{
c044fabd 11805 char *p;
252b5132 11806
276da9b3
L
11807 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
11808 gABI specifies that PT_NOTE alignment should be aligned to 4
11809 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
11810 align is less than 4, we use 4 byte alignment. */
11811 if (align < 4)
11812 align = 4;
ef135d43
NC
11813 if (align != 4 && align != 8)
11814 return FALSE;
276da9b3 11815
252b5132
RH
11816 p = buf;
11817 while (p < buf + size)
11818 {
c044fabd 11819 Elf_External_Note *xnp = (Elf_External_Note *) p;
252b5132
RH
11820 Elf_Internal_Note in;
11821
baea7ef1
AM
11822 if (offsetof (Elf_External_Note, name) > buf - p + size)
11823 return FALSE;
11824
dc810e39 11825 in.type = H_GET_32 (abfd, xnp->type);
252b5132 11826
dc810e39 11827 in.namesz = H_GET_32 (abfd, xnp->namesz);
252b5132 11828 in.namedata = xnp->name;
baea7ef1
AM
11829 if (in.namesz > buf - in.namedata + size)
11830 return FALSE;
252b5132 11831
dc810e39 11832 in.descsz = H_GET_32 (abfd, xnp->descsz);
276da9b3 11833 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
252b5132 11834 in.descpos = offset + (in.descdata - buf);
baea7ef1
AM
11835 if (in.descsz != 0
11836 && (in.descdata >= buf + size
11837 || in.descsz > buf - in.descdata + size))
11838 return FALSE;
252b5132 11839
718175fa 11840 switch (bfd_get_format (abfd))
07d6d2b8 11841 {
718175fa
JK
11842 default:
11843 return TRUE;
11844
11845 case bfd_core:
f64e188b 11846 {
8acbedd6 11847#define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
f64e188b 11848 struct
718175fa 11849 {
f64e188b 11850 const char * string;
8acbedd6 11851 size_t len;
f64e188b 11852 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
718175fa 11853 }
f64e188b 11854 grokers[] =
b15fa79e 11855 {
8acbedd6 11856 GROKER_ELEMENT ("", elfcore_grok_note),
aa1ed4a9 11857 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
8acbedd6
KS
11858 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
11859 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
11860 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
864619bb
KS
11861 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
11862 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note)
f64e188b 11863 };
8acbedd6 11864#undef GROKER_ELEMENT
f64e188b
NC
11865 int i;
11866
11867 for (i = ARRAY_SIZE (grokers); i--;)
8acbedd6
KS
11868 {
11869 if (in.namesz >= grokers[i].len
11870 && strncmp (in.namedata, grokers[i].string,
11871 grokers[i].len) == 0)
11872 {
11873 if (! grokers[i].func (abfd, & in))
11874 return FALSE;
11875 break;
11876 }
11877 }
f64e188b
NC
11878 break;
11879 }
718175fa
JK
11880
11881 case bfd_object:
11882 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
11883 {
11884 if (! elfobj_grok_gnu_note (abfd, &in))
11885 return FALSE;
11886 }
e21e5835
NC
11887 else if (in.namesz == sizeof "stapsdt"
11888 && strcmp (in.namedata, "stapsdt") == 0)
11889 {
11890 if (! elfobj_grok_stapsdt_note (abfd, &in))
11891 return FALSE;
11892 }
718175fa 11893 break;
08a40648 11894 }
252b5132 11895
276da9b3 11896 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
252b5132
RH
11897 }
11898
718175fa
JK
11899 return TRUE;
11900}
11901
864619bb 11902bfd_boolean
276da9b3
L
11903elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
11904 size_t align)
718175fa
JK
11905{
11906 char *buf;
11907
957e1fc1 11908 if (size == 0 || (size + 1) == 0)
718175fa
JK
11909 return TRUE;
11910
11911 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
11912 return FALSE;
11913
f64e188b 11914 buf = (char *) bfd_malloc (size + 1);
718175fa
JK
11915 if (buf == NULL)
11916 return FALSE;
11917
f64e188b
NC
11918 /* PR 17512: file: ec08f814
11919 0-termintate the buffer so that string searches will not overflow. */
11920 buf[size] = 0;
11921
718175fa 11922 if (bfd_bread (buf, size, abfd) != size
276da9b3 11923 || !elf_parse_notes (abfd, buf, size, offset, align))
718175fa
JK
11924 {
11925 free (buf);
11926 return FALSE;
11927 }
11928
252b5132 11929 free (buf);
b34976b6 11930 return TRUE;
252b5132 11931}
98d8431c
JB
11932\f
11933/* Providing external access to the ELF program header table. */
11934
11935/* Return an upper bound on the number of bytes required to store a
11936 copy of ABFD's program header table entries. Return -1 if an error
11937 occurs; bfd_get_error will return an appropriate code. */
c044fabd 11938
98d8431c 11939long
217aa764 11940bfd_get_elf_phdr_upper_bound (bfd *abfd)
98d8431c
JB
11941{
11942 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11943 {
11944 bfd_set_error (bfd_error_wrong_format);
11945 return -1;
11946 }
11947
936e320b 11948 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
98d8431c
JB
11949}
11950
98d8431c
JB
11951/* Copy ABFD's program header table entries to *PHDRS. The entries
11952 will be stored as an array of Elf_Internal_Phdr structures, as
11953 defined in include/elf/internal.h. To find out how large the
11954 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
11955
11956 Return the number of program header table entries read, or -1 if an
11957 error occurs; bfd_get_error will return an appropriate code. */
c044fabd 11958
98d8431c 11959int
217aa764 11960bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
98d8431c
JB
11961{
11962 int num_phdrs;
11963
11964 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11965 {
11966 bfd_set_error (bfd_error_wrong_format);
11967 return -1;
11968 }
11969
11970 num_phdrs = elf_elfheader (abfd)->e_phnum;
01bcaf63
TT
11971 if (num_phdrs != 0)
11972 memcpy (phdrs, elf_tdata (abfd)->phdr,
11973 num_phdrs * sizeof (Elf_Internal_Phdr));
98d8431c
JB
11974
11975 return num_phdrs;
11976}
ae4221d7 11977
db6751f2 11978enum elf_reloc_type_class
7e612e98
AM
11979_bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
11980 const asection *rel_sec ATTRIBUTE_UNUSED,
11981 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
db6751f2
JJ
11982{
11983 return reloc_class_normal;
11984}
f8df10f4 11985
47d9a591 11986/* For RELA architectures, return the relocation value for a
f8df10f4
JJ
11987 relocation against a local symbol. */
11988
11989bfd_vma
217aa764
AM
11990_bfd_elf_rela_local_sym (bfd *abfd,
11991 Elf_Internal_Sym *sym,
8517fae7 11992 asection **psec,
217aa764 11993 Elf_Internal_Rela *rel)
f8df10f4 11994{
8517fae7 11995 asection *sec = *psec;
f8df10f4
JJ
11996 bfd_vma relocation;
11997
6835821b
AM
11998 relocation = (sec->output_section->vma
11999 + sec->output_offset
12000 + sym->st_value);
f8df10f4 12001 if ((sec->flags & SEC_MERGE)
c629eae0 12002 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
dbaa2011 12003 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
f8df10f4 12004 {
f8df10f4 12005 rel->r_addend =
8517fae7 12006 _bfd_merged_section_offset (abfd, psec,
65765700 12007 elf_section_data (sec)->sec_info,
753731ee
AM
12008 sym->st_value + rel->r_addend);
12009 if (sec != *psec)
12010 {
12011 /* If we have changed the section, and our original section is
12012 marked with SEC_EXCLUDE, it means that the original
12013 SEC_MERGE section has been completely subsumed in some
12014 other SEC_MERGE section. In this case, we need to leave
12015 some info around for --emit-relocs. */
12016 if ((sec->flags & SEC_EXCLUDE) != 0)
12017 sec->kept_section = *psec;
12018 sec = *psec;
12019 }
8517fae7
AM
12020 rel->r_addend -= relocation;
12021 rel->r_addend += sec->output_section->vma + sec->output_offset;
f8df10f4
JJ
12022 }
12023 return relocation;
12024}
c629eae0
JJ
12025
12026bfd_vma
217aa764
AM
12027_bfd_elf_rel_local_sym (bfd *abfd,
12028 Elf_Internal_Sym *sym,
12029 asection **psec,
12030 bfd_vma addend)
47d9a591 12031{
c629eae0
JJ
12032 asection *sec = *psec;
12033
6835821b 12034 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
c629eae0
JJ
12035 return sym->st_value + addend;
12036
12037 return _bfd_merged_section_offset (abfd, psec,
65765700 12038 elf_section_data (sec)->sec_info,
753731ee 12039 sym->st_value + addend);
c629eae0
JJ
12040}
12041
37b01f6a
DG
12042/* Adjust an address within a section. Given OFFSET within SEC, return
12043 the new offset within the section, based upon changes made to the
12044 section. Returns -1 if the offset is now invalid.
12045 The offset (in abnd out) is in target sized bytes, however big a
12046 byte may be. */
12047
c629eae0 12048bfd_vma
217aa764 12049_bfd_elf_section_offset (bfd *abfd,
92e4ec35 12050 struct bfd_link_info *info,
217aa764
AM
12051 asection *sec,
12052 bfd_vma offset)
c629eae0 12053{
68bfbfcc 12054 switch (sec->sec_info_type)
65765700 12055 {
dbaa2011 12056 case SEC_INFO_TYPE_STABS:
eea6121a
AM
12057 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12058 offset);
dbaa2011 12059 case SEC_INFO_TYPE_EH_FRAME:
92e4ec35 12060 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
37b01f6a 12061
65765700 12062 default:
310fd250
L
12063 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12064 {
37b01f6a 12065 /* Reverse the offset. */
310fd250
L
12066 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12067 bfd_size_type address_size = bed->s->arch_size / 8;
37b01f6a
DG
12068
12069 /* address_size and sec->size are in octets. Convert
12070 to bytes before subtracting the original offset. */
61826503 12071 offset = ((sec->size - address_size)
bb294208 12072 / bfd_octets_per_byte (abfd, sec) - offset);
310fd250 12073 }
65765700
JJ
12074 return offset;
12075 }
c629eae0 12076}
3333a7c3
RM
12077\f
12078/* Create a new BFD as if by bfd_openr. Rather than opening a file,
12079 reconstruct an ELF file by reading the segments out of remote memory
12080 based on the ELF file header at EHDR_VMA and the ELF program headers it
12081 points to. If not null, *LOADBASEP is filled in with the difference
12082 between the VMAs from which the segments were read, and the VMAs the
12083 file headers (and hence BFD's idea of each section's VMA) put them at.
12084
12085 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12086 remote memory at target address VMA into the local buffer at MYADDR; it
12087 should return zero on success or an `errno' code on failure. TEMPL must
12088 be a BFD for an ELF target with the word size and byte order found in
12089 the remote memory. */
12090
12091bfd *
217aa764
AM
12092bfd_elf_bfd_from_remote_memory
12093 (bfd *templ,
12094 bfd_vma ehdr_vma,
f0a5d95a 12095 bfd_size_type size,
217aa764 12096 bfd_vma *loadbasep,
fe78531d 12097 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
3333a7c3
RM
12098{
12099 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
5979d6b6 12100 (templ, ehdr_vma, size, loadbasep, target_read_memory);
3333a7c3 12101}
4c45e5c9
JJ
12102\f
12103long
c9727e01
AM
12104_bfd_elf_get_synthetic_symtab (bfd *abfd,
12105 long symcount ATTRIBUTE_UNUSED,
12106 asymbol **syms ATTRIBUTE_UNUSED,
8615f3f2 12107 long dynsymcount,
c9727e01
AM
12108 asymbol **dynsyms,
12109 asymbol **ret)
4c45e5c9
JJ
12110{
12111 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12112 asection *relplt;
12113 asymbol *s;
12114 const char *relplt_name;
12115 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
12116 arelent *p;
12117 long count, i, n;
12118 size_t size;
12119 Elf_Internal_Shdr *hdr;
12120 char *names;
12121 asection *plt;
12122
8615f3f2
AM
12123 *ret = NULL;
12124
90e3cdf2
JJ
12125 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12126 return 0;
12127
8615f3f2
AM
12128 if (dynsymcount <= 0)
12129 return 0;
12130
4c45e5c9
JJ
12131 if (!bed->plt_sym_val)
12132 return 0;
12133
12134 relplt_name = bed->relplt_name;
12135 if (relplt_name == NULL)
d35fd659 12136 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
4c45e5c9
JJ
12137 relplt = bfd_get_section_by_name (abfd, relplt_name);
12138 if (relplt == NULL)
12139 return 0;
12140
12141 hdr = &elf_section_data (relplt)->this_hdr;
12142 if (hdr->sh_link != elf_dynsymtab (abfd)
12143 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12144 return 0;
12145
12146 plt = bfd_get_section_by_name (abfd, ".plt");
12147 if (plt == NULL)
12148 return 0;
12149
12150 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
c9727e01 12151 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
4c45e5c9
JJ
12152 return -1;
12153
eea6121a 12154 count = relplt->size / hdr->sh_entsize;
4c45e5c9
JJ
12155 size = count * sizeof (asymbol);
12156 p = relplt->relocation;
cb53bf42 12157 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
041de40d
AM
12158 {
12159 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12160 if (p->addend != 0)
12161 {
12162#ifdef BFD64
12163 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12164#else
12165 size += sizeof ("+0x") - 1 + 8;
12166#endif
12167 }
12168 }
4c45e5c9 12169
a50b1753 12170 s = *ret = (asymbol *) bfd_malloc (size);
4c45e5c9
JJ
12171 if (s == NULL)
12172 return -1;
12173
12174 names = (char *) (s + count);
12175 p = relplt->relocation;
12176 n = 0;
cb53bf42 12177 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
4c45e5c9
JJ
12178 {
12179 size_t len;
12180 bfd_vma addr;
12181
12182 addr = bed->plt_sym_val (i, plt, p);
12183 if (addr == (bfd_vma) -1)
12184 continue;
12185
12186 *s = **p->sym_ptr_ptr;
65a7a66f
AM
12187 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12188 we are defining a symbol, ensure one of them is set. */
12189 if ((s->flags & BSF_LOCAL) == 0)
12190 s->flags |= BSF_GLOBAL;
6ba2a415 12191 s->flags |= BSF_SYNTHETIC;
4c45e5c9
JJ
12192 s->section = plt;
12193 s->value = addr - plt->vma;
12194 s->name = names;
8f39ba8e 12195 s->udata.p = NULL;
4c45e5c9
JJ
12196 len = strlen ((*p->sym_ptr_ptr)->name);
12197 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12198 names += len;
041de40d
AM
12199 if (p->addend != 0)
12200 {
1d770845 12201 char buf[30], *a;
d324f6d6 12202
041de40d
AM
12203 memcpy (names, "+0x", sizeof ("+0x") - 1);
12204 names += sizeof ("+0x") - 1;
1d770845
L
12205 bfd_sprintf_vma (abfd, buf, p->addend);
12206 for (a = buf; *a == '0'; ++a)
12207 ;
12208 len = strlen (a);
12209 memcpy (names, a, len);
12210 names += len;
041de40d 12211 }
4c45e5c9
JJ
12212 memcpy (names, "@plt", sizeof ("@plt"));
12213 names += sizeof ("@plt");
8f39ba8e 12214 ++s, ++n;
4c45e5c9
JJ
12215 }
12216
12217 return n;
12218}
3d7f7666 12219
821e6ff6
AM
12220/* It is only used by x86-64 so far.
12221 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
7eacd66b
AM
12222 but current usage would allow all of _bfd_std_section to be zero. */
12223static const asymbol lcomm_sym
12224 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
3b22753a 12225asection _bfd_elf_large_com_section
7eacd66b 12226 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
821e6ff6 12227 "LARGE_COMMON", 0, SEC_IS_COMMON);
ecca9871 12228
cc364be6
AM
12229bfd_boolean
12230_bfd_elf_final_write_processing (bfd *abfd)
06f44071
AM
12231{
12232 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
d1036acb
L
12233
12234 i_ehdrp = elf_elfheader (abfd);
12235
06f44071
AM
12236 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12237 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
d8045f23 12238
df3a023b
AM
12239 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12240 SHF_GNU_MBIND sections or symbols of STT_GNU_IFUNC type or
12241 STB_GNU_UNIQUE binding. */
cc364be6
AM
12242 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12243 {
12244 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12245 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12246 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12247 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12248 {
12249 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
12250 _bfd_error_handler (_("GNU_MBIND section is unsupported"));
12251 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
12252 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is unsupported"));
12253 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
12254 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is unsupported"));
9aea1e31 12255 bfd_set_error (bfd_error_sorry);
cc364be6
AM
12256 return FALSE;
12257 }
12258 }
12259 return TRUE;
d1036acb 12260}
fcb93ecf
PB
12261
12262
12263/* Return TRUE for ELF symbol types that represent functions.
12264 This is the default version of this function, which is sufficient for
d8045f23 12265 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
fcb93ecf
PB
12266
12267bfd_boolean
12268_bfd_elf_is_function_type (unsigned int type)
12269{
d8045f23
NC
12270 return (type == STT_FUNC
12271 || type == STT_GNU_IFUNC);
fcb93ecf 12272}
9f296da3 12273
aef36ac1
AM
12274/* If the ELF symbol SYM might be a function in SEC, return the
12275 function size and set *CODE_OFF to the function's entry point,
12276 otherwise return zero. */
9f296da3 12277
aef36ac1
AM
12278bfd_size_type
12279_bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12280 bfd_vma *code_off)
9f296da3 12281{
aef36ac1
AM
12282 bfd_size_type size;
12283
ff9e0f5b 12284 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
aef36ac1
AM
12285 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12286 || sym->section != sec)
12287 return 0;
ff9e0f5b 12288
ff9e0f5b 12289 *code_off = sym->value;
aef36ac1
AM
12290 size = 0;
12291 if (!(sym->flags & BSF_SYNTHETIC))
12292 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
12293 if (size == 0)
12294 size = 1;
12295 return size;
9f296da3 12296}
This page took 5.136173 seconds and 4 git commands to generate.