_bfd_alloc_and_read
[deliverable/binutils-gdb.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 300 || bfd_seek (abfd, offset, SEEK_SET) != 0
2bb3687b
AM
301 || (shstrtab = _bfd_alloc_and_read (abfd, shstrtabsize + 1,
302 shstrtabsize)) == NULL)
303 {
3471d59d
CC
304 /* Once we've failed to read it, make sure we don't keep
305 trying. Otherwise, we'll keep allocating space for
306 the string table over and over. */
307 i_shdrp[shindex]->sh_size = 0;
c6c60d09
JJ
308 }
309 else
310 shstrtab[shstrtabsize] = '\0';
217aa764 311 i_shdrp[shindex]->contents = shstrtab;
252b5132 312 }
f075ee0c 313 return (char *) shstrtab;
252b5132
RH
314}
315
316char *
217aa764
AM
317bfd_elf_string_from_elf_section (bfd *abfd,
318 unsigned int shindex,
319 unsigned int strindex)
252b5132
RH
320{
321 Elf_Internal_Shdr *hdr;
322
323 if (strindex == 0)
324 return "";
325
74f2e02b
AM
326 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
327 return NULL;
328
252b5132
RH
329 hdr = elf_elfsections (abfd)[shindex];
330
06614111
NC
331 if (hdr->contents == NULL)
332 {
333 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
334 {
335 /* PR 17512: file: f057ec89. */
695344c0 336 /* xgettext:c-format */
871b3ab2 337 _bfd_error_handler (_("%pB: attempt to load strings from"
63a5468a 338 " a non-string section (number %d)"),
06614111
NC
339 abfd, shindex);
340 return NULL;
341 }
b1fa9dd6 342
06614111
NC
343 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
344 return NULL;
345 }
eed5def8
NC
346 else
347 {
348 /* PR 24273: The string section's contents may have already
349 been loaded elsewhere, eg because a corrupt file has the
350 string section index in the ELF header pointing at a group
351 section. So be paranoid, and test that the last byte of
352 the section is zero. */
353 if (hdr->sh_size == 0 || hdr->contents[hdr->sh_size - 1] != 0)
354 return NULL;
355 }
252b5132
RH
356
357 if (strindex >= hdr->sh_size)
358 {
1b3a8575 359 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
4eca0228 360 _bfd_error_handler
695344c0 361 /* xgettext:c-format */
2dcf00ce
AM
362 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
363 abfd, strindex, (uint64_t) hdr->sh_size,
1b3a8575 364 (shindex == shstrndx && strindex == hdr->sh_name
252b5132 365 ? ".shstrtab"
1b3a8575 366 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
45b222d6 367 return NULL;
252b5132
RH
368 }
369
370 return ((char *) hdr->contents) + strindex;
371}
372
6cdc0ccc
AM
373/* Read and convert symbols to internal format.
374 SYMCOUNT specifies the number of symbols to read, starting from
375 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
376 are non-NULL, they are used to store the internal symbols, external
b7c368d0
NC
377 symbols, and symbol section index extensions, respectively.
378 Returns a pointer to the internal symbol buffer (malloced if necessary)
379 or NULL if there were no symbols or some kind of problem. */
6cdc0ccc
AM
380
381Elf_Internal_Sym *
217aa764
AM
382bfd_elf_get_elf_syms (bfd *ibfd,
383 Elf_Internal_Shdr *symtab_hdr,
384 size_t symcount,
385 size_t symoffset,
386 Elf_Internal_Sym *intsym_buf,
387 void *extsym_buf,
388 Elf_External_Sym_Shndx *extshndx_buf)
6cdc0ccc
AM
389{
390 Elf_Internal_Shdr *shndx_hdr;
217aa764 391 void *alloc_ext;
df622259 392 const bfd_byte *esym;
6cdc0ccc
AM
393 Elf_External_Sym_Shndx *alloc_extshndx;
394 Elf_External_Sym_Shndx *shndx;
4dd07732 395 Elf_Internal_Sym *alloc_intsym;
6cdc0ccc
AM
396 Elf_Internal_Sym *isym;
397 Elf_Internal_Sym *isymend;
9c5bfbb7 398 const struct elf_backend_data *bed;
6cdc0ccc 399 size_t extsym_size;
1f4361a7 400 size_t amt;
6cdc0ccc
AM
401 file_ptr pos;
402
e44a2c9c
AM
403 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
404 abort ();
405
6cdc0ccc
AM
406 if (symcount == 0)
407 return intsym_buf;
408
409 /* Normal syms might have section extension entries. */
410 shndx_hdr = NULL;
6a40cf0c
NC
411 if (elf_symtab_shndx_list (ibfd) != NULL)
412 {
413 elf_section_list * entry;
414 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
415
416 /* Find an index section that is linked to this symtab section. */
417 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
315350be
NC
418 {
419 /* PR 20063. */
420 if (entry->hdr.sh_link >= elf_numsections (ibfd))
421 continue;
422
423 if (sections[entry->hdr.sh_link] == symtab_hdr)
424 {
425 shndx_hdr = & entry->hdr;
426 break;
427 };
428 }
6a40cf0c
NC
429
430 if (shndx_hdr == NULL)
431 {
432 if (symtab_hdr == & elf_symtab_hdr (ibfd))
433 /* Not really accurate, but this was how the old code used to work. */
434 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
435 /* Otherwise we do nothing. The assumption is that
436 the index table will not be needed. */
437 }
438 }
6cdc0ccc
AM
439
440 /* Read the symbols. */
441 alloc_ext = NULL;
442 alloc_extshndx = NULL;
4dd07732 443 alloc_intsym = NULL;
6cdc0ccc
AM
444 bed = get_elf_backend_data (ibfd);
445 extsym_size = bed->s->sizeof_sym;
1f4361a7
AM
446 if (_bfd_mul_overflow (symcount, extsym_size, &amt))
447 {
448 bfd_set_error (bfd_error_file_too_big);
449 intsym_buf = NULL;
450 goto out;
451 }
6cdc0ccc
AM
452 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
453 if (extsym_buf == NULL)
454 {
1f4361a7 455 alloc_ext = bfd_malloc (amt);
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 {
1f4361a7
AM
470 if (_bfd_mul_overflow (symcount, sizeof (Elf_External_Sym_Shndx), &amt))
471 {
472 bfd_set_error (bfd_error_file_too_big);
473 intsym_buf = NULL;
474 goto out;
475 }
6cdc0ccc
AM
476 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
477 if (extshndx_buf == NULL)
478 {
1f4361a7 479 alloc_extshndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
6cdc0ccc
AM
480 extshndx_buf = alloc_extshndx;
481 }
482 if (extshndx_buf == NULL
483 || bfd_seek (ibfd, pos, SEEK_SET) != 0
484 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
485 {
486 intsym_buf = NULL;
487 goto out;
488 }
489 }
490
491 if (intsym_buf == NULL)
492 {
1f4361a7
AM
493 if (_bfd_mul_overflow (symcount, sizeof (Elf_Internal_Sym), &amt))
494 {
495 bfd_set_error (bfd_error_file_too_big);
496 goto out;
497 }
498 alloc_intsym = (Elf_Internal_Sym *) bfd_malloc (amt);
4dd07732 499 intsym_buf = alloc_intsym;
6cdc0ccc
AM
500 if (intsym_buf == NULL)
501 goto out;
502 }
503
504 /* Convert the symbols to internal form. */
505 isymend = intsym_buf + symcount;
a50b1753 506 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
07d6d2b8 507 shndx = extshndx_buf;
6cdc0ccc
AM
508 isym < isymend;
509 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
8384fb8f
AM
510 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
511 {
512 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
695344c0 513 /* xgettext:c-format */
871b3ab2 514 _bfd_error_handler (_("%pB symbol number %lu references"
63a5468a 515 " nonexistent SHT_SYMTAB_SHNDX section"),
4eca0228 516 ibfd, (unsigned long) symoffset);
4dd07732
AM
517 if (alloc_intsym != NULL)
518 free (alloc_intsym);
8384fb8f
AM
519 intsym_buf = NULL;
520 goto out;
521 }
6cdc0ccc
AM
522
523 out:
524 if (alloc_ext != NULL)
525 free (alloc_ext);
526 if (alloc_extshndx != NULL)
527 free (alloc_extshndx);
528
529 return intsym_buf;
530}
531
5cab59f6
AM
532/* Look up a symbol name. */
533const char *
be8dd2ca
AM
534bfd_elf_sym_name (bfd *abfd,
535 Elf_Internal_Shdr *symtab_hdr,
26c61ae5
L
536 Elf_Internal_Sym *isym,
537 asection *sym_sec)
5cab59f6 538{
26c61ae5 539 const char *name;
5cab59f6 540 unsigned int iname = isym->st_name;
be8dd2ca 541 unsigned int shindex = symtab_hdr->sh_link;
26c61ae5 542
138f35cc
JJ
543 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
544 /* Check for a bogus st_shndx to avoid crashing. */
4fbb74a6 545 && isym->st_shndx < elf_numsections (abfd))
5cab59f6
AM
546 {
547 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
548 shindex = elf_elfheader (abfd)->e_shstrndx;
549 }
550
26c61ae5
L
551 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
552 if (name == NULL)
553 name = "(null)";
554 else if (sym_sec && *name == '\0')
fd361982 555 name = bfd_section_name (sym_sec);
26c61ae5
L
556
557 return name;
5cab59f6
AM
558}
559
dbb410c3
AM
560/* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
561 sections. The first element is the flags, the rest are section
562 pointers. */
563
564typedef union elf_internal_group {
565 Elf_Internal_Shdr *shdr;
566 unsigned int flags;
567} Elf_Internal_Group;
568
b885599b
AM
569/* Return the name of the group signature symbol. Why isn't the
570 signature just a string? */
571
572static const char *
217aa764 573group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
b885599b 574{
9dce4196 575 Elf_Internal_Shdr *hdr;
9dce4196
AM
576 unsigned char esym[sizeof (Elf64_External_Sym)];
577 Elf_External_Sym_Shndx eshndx;
578 Elf_Internal_Sym isym;
b885599b 579
13792e9d
L
580 /* First we need to ensure the symbol table is available. Make sure
581 that it is a symbol table section. */
4fbb74a6
AM
582 if (ghdr->sh_link >= elf_numsections (abfd))
583 return NULL;
13792e9d
L
584 hdr = elf_elfsections (abfd) [ghdr->sh_link];
585 if (hdr->sh_type != SHT_SYMTAB
586 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
b885599b
AM
587 return NULL;
588
9dce4196
AM
589 /* Go read the symbol. */
590 hdr = &elf_tdata (abfd)->symtab_hdr;
6cdc0ccc
AM
591 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
592 &isym, esym, &eshndx) == NULL)
b885599b 593 return NULL;
9dce4196 594
26c61ae5 595 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
b885599b
AM
596}
597
dbb410c3
AM
598/* Set next_in_group list pointer, and group name for NEWSECT. */
599
b34976b6 600static bfd_boolean
217aa764 601setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
dbb410c3
AM
602{
603 unsigned int num_group = elf_tdata (abfd)->num_group;
604
605 /* If num_group is zero, read in all SHT_GROUP sections. The count
606 is set to -1 if there are no SHT_GROUP sections. */
607 if (num_group == 0)
608 {
609 unsigned int i, shnum;
610
611 /* First count the number of groups. If we have a SHT_GROUP
612 section with just a flag word (ie. sh_size is 4), ignore it. */
9ad5cbcf 613 shnum = elf_numsections (abfd);
dbb410c3 614 num_group = 0;
08a40648 615
44534af3 616#define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
1783205a 617 ( (shdr)->sh_type == SHT_GROUP \
44534af3 618 && (shdr)->sh_size >= minsize \
1783205a
NC
619 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
620 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
08a40648 621
dbb410c3
AM
622 for (i = 0; i < shnum; i++)
623 {
624 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 625
44534af3 626 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3
AM
627 num_group += 1;
628 }
629
630 if (num_group == 0)
20dbb49d
L
631 {
632 num_group = (unsigned) -1;
633 elf_tdata (abfd)->num_group = num_group;
ce497010 634 elf_tdata (abfd)->group_sect_ptr = NULL;
20dbb49d
L
635 }
636 else
dbb410c3
AM
637 {
638 /* We keep a list of elf section headers for group sections,
639 so we can find them quickly. */
1f4361a7 640 size_t amt;
d0fb9a8d 641
20dbb49d 642 elf_tdata (abfd)->num_group = num_group;
1f4361a7
AM
643 amt = num_group * sizeof (Elf_Internal_Shdr *);
644 elf_tdata (abfd)->group_sect_ptr
645 = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
dbb410c3 646 if (elf_tdata (abfd)->group_sect_ptr == NULL)
b34976b6 647 return FALSE;
dbb410c3 648 num_group = 0;
ce497010 649
dbb410c3
AM
650 for (i = 0; i < shnum; i++)
651 {
652 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 653
44534af3 654 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3 655 {
973ffd63 656 unsigned char *src;
dbb410c3
AM
657 Elf_Internal_Group *dest;
658
07d6d2b8
AM
659 /* Make sure the group section has a BFD section
660 attached to it. */
661 if (!bfd_section_from_shdr (abfd, i))
662 return FALSE;
663
dbb410c3
AM
664 /* Add to list of sections. */
665 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
666 num_group += 1;
667
668 /* Read the raw contents. */
1f4361a7
AM
669 BFD_ASSERT (sizeof (*dest) >= 4 && sizeof (*dest) % 4 == 0);
670 shdr->contents = NULL;
671 if (_bfd_mul_overflow (shdr->sh_size,
672 sizeof (*dest) / 4, &amt)
1f4361a7 673 || bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
2bb3687b
AM
674 || !(shdr->contents
675 = _bfd_alloc_and_read (abfd, amt, shdr->sh_size)))
493a3386
NC
676 {
677 _bfd_error_handler
695344c0 678 /* xgettext:c-format */
871b3ab2 679 (_("%pB: invalid size field in group section"
2dcf00ce
AM
680 " header: %#" PRIx64 ""),
681 abfd, (uint64_t) shdr->sh_size);
493a3386
NC
682 bfd_set_error (bfd_error_bad_value);
683 -- num_group;
493a3386
NC
684 continue;
685 }
708d7d0d 686
dbb410c3
AM
687 /* Translate raw contents, a flag word followed by an
688 array of elf section indices all in target byte order,
689 to the flag word followed by an array of elf section
690 pointers. */
691 src = shdr->contents + shdr->sh_size;
692 dest = (Elf_Internal_Group *) (shdr->contents + amt);
06614111 693
dbb410c3
AM
694 while (1)
695 {
696 unsigned int idx;
697
698 src -= 4;
699 --dest;
700 idx = H_GET_32 (abfd, src);
701 if (src == shdr->contents)
702 {
327301a4 703 dest->shdr = NULL;
dbb410c3 704 dest->flags = idx;
b885599b
AM
705 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
706 shdr->bfd_section->flags
707 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
dbb410c3
AM
708 break;
709 }
4bba0fb1 710 if (idx < shnum)
bae363f1
L
711 {
712 dest->shdr = elf_elfsections (abfd)[idx];
713 /* PR binutils/23199: All sections in a
714 section group should be marked with
715 SHF_GROUP. But some tools generate
716 broken objects without SHF_GROUP. Fix
717 them up here. */
718 dest->shdr->sh_flags |= SHF_GROUP;
719 }
4bba0fb1
AM
720 if (idx >= shnum
721 || dest->shdr->sh_type == SHT_GROUP)
dbb410c3 722 {
4eca0228 723 _bfd_error_handler
4bba0fb1
AM
724 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
725 abfd, i);
726 dest->shdr = NULL;
dbb410c3 727 }
dbb410c3
AM
728 }
729 }
730 }
493a3386
NC
731
732 /* PR 17510: Corrupt binaries might contain invalid groups. */
733 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
734 {
735 elf_tdata (abfd)->num_group = num_group;
736
737 /* If all groups are invalid then fail. */
738 if (num_group == 0)
739 {
740 elf_tdata (abfd)->group_sect_ptr = NULL;
741 elf_tdata (abfd)->num_group = num_group = -1;
4eca0228 742 _bfd_error_handler
871b3ab2 743 (_("%pB: no valid group sections found"), abfd);
493a3386
NC
744 bfd_set_error (bfd_error_bad_value);
745 }
746 }
dbb410c3
AM
747 }
748 }
749
750 if (num_group != (unsigned) -1)
751 {
564e11c9
JW
752 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
753 unsigned int j;
dbb410c3 754
564e11c9 755 for (j = 0; j < num_group; j++)
dbb410c3 756 {
564e11c9
JW
757 /* Begin search from previous found group. */
758 unsigned i = (j + search_offset) % num_group;
759
dbb410c3 760 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
ce497010 761 Elf_Internal_Group *idx;
0c54f692 762 bfd_size_type n_elt;
ce497010
NC
763
764 if (shdr == NULL)
765 continue;
766
767 idx = (Elf_Internal_Group *) shdr->contents;
0c54f692
NC
768 if (idx == NULL || shdr->sh_size < 4)
769 {
770 /* See PR 21957 for a reproducer. */
771 /* xgettext:c-format */
871b3ab2 772 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
0c54f692
NC
773 abfd, shdr->bfd_section);
774 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
775 bfd_set_error (bfd_error_bad_value);
776 return FALSE;
777 }
ce497010 778 n_elt = shdr->sh_size / 4;
dbb410c3
AM
779
780 /* Look through this group's sections to see if current
781 section is a member. */
782 while (--n_elt != 0)
783 if ((++idx)->shdr == hdr)
784 {
e0e8c97f 785 asection *s = NULL;
dbb410c3
AM
786
787 /* We are a member of this group. Go looking through
788 other members to see if any others are linked via
789 next_in_group. */
790 idx = (Elf_Internal_Group *) shdr->contents;
791 n_elt = shdr->sh_size / 4;
792 while (--n_elt != 0)
4bba0fb1
AM
793 if ((++idx)->shdr != NULL
794 && (s = idx->shdr->bfd_section) != NULL
945906ff 795 && elf_next_in_group (s) != NULL)
dbb410c3
AM
796 break;
797 if (n_elt != 0)
798 {
dbb410c3
AM
799 /* Snarf the group name from other member, and
800 insert current section in circular list. */
945906ff
AM
801 elf_group_name (newsect) = elf_group_name (s);
802 elf_next_in_group (newsect) = elf_next_in_group (s);
803 elf_next_in_group (s) = newsect;
dbb410c3
AM
804 }
805 else
806 {
dbb410c3
AM
807 const char *gname;
808
b885599b
AM
809 gname = group_signature (abfd, shdr);
810 if (gname == NULL)
b34976b6 811 return FALSE;
945906ff 812 elf_group_name (newsect) = gname;
dbb410c3
AM
813
814 /* Start a circular list with one element. */
945906ff 815 elf_next_in_group (newsect) = newsect;
dbb410c3 816 }
b885599b 817
9dce4196
AM
818 /* If the group section has been created, point to the
819 new member. */
dbb410c3 820 if (shdr->bfd_section != NULL)
945906ff 821 elf_next_in_group (shdr->bfd_section) = newsect;
b885599b 822
564e11c9
JW
823 elf_tdata (abfd)->group_search_offset = i;
824 j = num_group - 1;
dbb410c3
AM
825 break;
826 }
827 }
828 }
829
945906ff 830 if (elf_group_name (newsect) == NULL)
dbb410c3 831 {
695344c0 832 /* xgettext:c-format */
871b3ab2 833 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
4eca0228 834 abfd, newsect);
493a3386 835 return FALSE;
dbb410c3 836 }
b34976b6 837 return TRUE;
dbb410c3
AM
838}
839
3d7f7666 840bfd_boolean
dd863624 841_bfd_elf_setup_sections (bfd *abfd)
3d7f7666
L
842{
843 unsigned int i;
844 unsigned int num_group = elf_tdata (abfd)->num_group;
845 bfd_boolean result = TRUE;
dd863624
L
846 asection *s;
847
848 /* Process SHF_LINK_ORDER. */
849 for (s = abfd->sections; s != NULL; s = s->next)
850 {
851 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
852 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
853 {
854 unsigned int elfsec = this_hdr->sh_link;
855 /* FIXME: The old Intel compiler and old strip/objcopy may
856 not set the sh_link or sh_info fields. Hence we could
857 get the situation where elfsec is 0. */
858 if (elfsec == 0)
859 {
4fbb74a6 860 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
dd863624
L
861 if (bed->link_order_error_handler)
862 bed->link_order_error_handler
695344c0 863 /* xgettext:c-format */
871b3ab2 864 (_("%pB: warning: sh_link not set for section `%pA'"),
dd863624
L
865 abfd, s);
866 }
867 else
868 {
91d6fa6a 869 asection *linksec = NULL;
25bbc984 870
4fbb74a6
AM
871 if (elfsec < elf_numsections (abfd))
872 {
873 this_hdr = elf_elfsections (abfd)[elfsec];
91d6fa6a 874 linksec = this_hdr->bfd_section;
4fbb74a6 875 }
25bbc984
L
876
877 /* PR 1991, 2008:
878 Some strip/objcopy may leave an incorrect value in
879 sh_link. We don't want to proceed. */
91d6fa6a 880 if (linksec == NULL)
25bbc984 881 {
4eca0228 882 _bfd_error_handler
695344c0 883 /* xgettext:c-format */
871b3ab2 884 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
c08bb8dd 885 s->owner, elfsec, s);
25bbc984
L
886 result = FALSE;
887 }
888
91d6fa6a 889 elf_linked_to_section (s) = linksec;
dd863624
L
890 }
891 }
53720c49
AM
892 else if (this_hdr->sh_type == SHT_GROUP
893 && elf_next_in_group (s) == NULL)
894 {
4eca0228 895 _bfd_error_handler
695344c0 896 /* xgettext:c-format */
871b3ab2 897 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
53720c49
AM
898 abfd, elf_section_data (s)->this_idx);
899 result = FALSE;
900 }
dd863624 901 }
3d7f7666 902
dd863624 903 /* Process section groups. */
3d7f7666
L
904 if (num_group == (unsigned) -1)
905 return result;
906
907 for (i = 0; i < num_group; i++)
908 {
909 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
4b0e8a5f
NC
910 Elf_Internal_Group *idx;
911 unsigned int n_elt;
3d7f7666 912
4b0e8a5f
NC
913 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
914 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
915 {
4eca0228 916 _bfd_error_handler
695344c0 917 /* xgettext:c-format */
871b3ab2 918 (_("%pB: section group entry number %u is corrupt"),
4b0e8a5f
NC
919 abfd, i);
920 result = FALSE;
921 continue;
922 }
923
924 idx = (Elf_Internal_Group *) shdr->contents;
925 n_elt = shdr->sh_size / 4;
1b786873 926
3d7f7666 927 while (--n_elt != 0)
24d3e51b
NC
928 {
929 ++ idx;
930
931 if (idx->shdr == NULL)
932 continue;
933 else if (idx->shdr->bfd_section)
934 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
db4677b8
AM
935 else if (idx->shdr->sh_type != SHT_RELA
936 && idx->shdr->sh_type != SHT_REL)
24d3e51b
NC
937 {
938 /* There are some unknown sections in the group. */
939 _bfd_error_handler
940 /* xgettext:c-format */
871b3ab2 941 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
24d3e51b
NC
942 abfd,
943 idx->shdr->sh_type,
944 bfd_elf_string_from_elf_section (abfd,
945 (elf_elfheader (abfd)
946 ->e_shstrndx),
947 idx->shdr->sh_name),
948 shdr->bfd_section);
949 result = FALSE;
950 }
951 }
3d7f7666 952 }
24d3e51b 953
3d7f7666
L
954 return result;
955}
956
72adc230
AM
957bfd_boolean
958bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
959{
960 return elf_next_in_group (sec) != NULL;
961}
962
cb7f4b29
AM
963const char *
964bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
965{
966 if (elf_sec_group (sec) != NULL)
967 return elf_group_name (sec);
968 return NULL;
969}
970
f6fe1ccd
L
971static char *
972convert_debug_to_zdebug (bfd *abfd, const char *name)
973{
974 unsigned int len = strlen (name);
975 char *new_name = bfd_alloc (abfd, len + 2);
976 if (new_name == NULL)
977 return NULL;
978 new_name[0] = '.';
979 new_name[1] = 'z';
980 memcpy (new_name + 2, name + 1, len);
981 return new_name;
982}
983
984static char *
985convert_zdebug_to_debug (bfd *abfd, const char *name)
986{
987 unsigned int len = strlen (name);
988 char *new_name = bfd_alloc (abfd, len);
989 if (new_name == NULL)
990 return NULL;
991 new_name[0] = '.';
992 memcpy (new_name + 1, name + 2, len - 1);
993 return new_name;
994}
995
cc5277b1
ML
996/* This a copy of lto_section defined in GCC (lto-streamer.h). */
997
998struct lto_section
999{
1000 int16_t major_version;
1001 int16_t minor_version;
1002 unsigned char slim_object;
1003
1004 /* Flags is a private field that is not defined publicly. */
1005 uint16_t flags;
1006};
1007
252b5132
RH
1008/* Make a BFD section from an ELF section. We store a pointer to the
1009 BFD section in the bfd_section field of the header. */
1010
b34976b6 1011bfd_boolean
217aa764
AM
1012_bfd_elf_make_section_from_shdr (bfd *abfd,
1013 Elf_Internal_Shdr *hdr,
6dc132d9
L
1014 const char *name,
1015 int shindex)
252b5132
RH
1016{
1017 asection *newsect;
1018 flagword flags;
9c5bfbb7 1019 const struct elf_backend_data *bed;
252b5132
RH
1020
1021 if (hdr->bfd_section != NULL)
4e011fb5 1022 return TRUE;
252b5132
RH
1023
1024 newsect = bfd_make_section_anyway (abfd, name);
1025 if (newsect == NULL)
b34976b6 1026 return FALSE;
252b5132 1027
1829f4b2
AM
1028 hdr->bfd_section = newsect;
1029 elf_section_data (newsect)->this_hdr = *hdr;
6dc132d9 1030 elf_section_data (newsect)->this_idx = shindex;
1829f4b2 1031
2f89ff8d
L
1032 /* Always use the real type/flags. */
1033 elf_section_type (newsect) = hdr->sh_type;
1034 elf_section_flags (newsect) = hdr->sh_flags;
1035
252b5132
RH
1036 newsect->filepos = hdr->sh_offset;
1037
fd361982
AM
1038 if (!bfd_set_section_vma (newsect, hdr->sh_addr)
1039 || !bfd_set_section_size (newsect, hdr->sh_size)
1040 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
b34976b6 1041 return FALSE;
252b5132
RH
1042
1043 flags = SEC_NO_FLAGS;
1044 if (hdr->sh_type != SHT_NOBITS)
1045 flags |= SEC_HAS_CONTENTS;
dbb410c3 1046 if (hdr->sh_type == SHT_GROUP)
7bdf4127 1047 flags |= SEC_GROUP;
252b5132
RH
1048 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1049 {
1050 flags |= SEC_ALLOC;
1051 if (hdr->sh_type != SHT_NOBITS)
1052 flags |= SEC_LOAD;
1053 }
1054 if ((hdr->sh_flags & SHF_WRITE) == 0)
1055 flags |= SEC_READONLY;
1056 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1057 flags |= SEC_CODE;
1058 else if ((flags & SEC_LOAD) != 0)
1059 flags |= SEC_DATA;
f5fa8ca2
JJ
1060 if ((hdr->sh_flags & SHF_MERGE) != 0)
1061 {
1062 flags |= SEC_MERGE;
1063 newsect->entsize = hdr->sh_entsize;
f5fa8ca2 1064 }
84865015
NC
1065 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1066 flags |= SEC_STRINGS;
dbb410c3
AM
1067 if (hdr->sh_flags & SHF_GROUP)
1068 if (!setup_group (abfd, hdr, newsect))
b34976b6 1069 return FALSE;
13ae64f3
JJ
1070 if ((hdr->sh_flags & SHF_TLS) != 0)
1071 flags |= SEC_THREAD_LOCAL;
18ae9cc1
L
1072 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1073 flags |= SEC_EXCLUDE;
252b5132 1074
df3a023b
AM
1075 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1076 {
1077 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1078 but binutils as of 2019-07-23 did not set the EI_OSABI header
1079 byte. */
1080 case ELFOSABI_NONE:
1081 case ELFOSABI_GNU:
1082 case ELFOSABI_FREEBSD:
1083 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1084 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1085 break;
1086 }
1087
3d2b39cf 1088 if ((flags & SEC_ALLOC) == 0)
7a6cc5fb 1089 {
3d2b39cf
L
1090 /* The debugging sections appear to be recognized only by name,
1091 not any sort of flag. Their SEC_ALLOC bits are cleared. */
3d2b39cf
L
1092 if (name [0] == '.')
1093 {
bb294208
AM
1094 if (strncmp (name, ".debug", 6) == 0
1095 || strncmp (name, ".gnu.linkonce.wi.", 17) == 0
1096 || strncmp (name, ".zdebug", 7) == 0)
1097 flags |= SEC_DEBUGGING | SEC_ELF_OCTETS;
1098 else if (strncmp (name, GNU_BUILD_ATTRS_SECTION_NAME, 21) == 0
1099 || strncmp (name, ".note.gnu", 9) == 0)
1100 flags |= SEC_ELF_OCTETS;
1101 else if (strncmp (name, ".line", 5) == 0
1102 || strncmp (name, ".stab", 5) == 0
1103 || strcmp (name, ".gdb_index") == 0)
3d2b39cf
L
1104 flags |= SEC_DEBUGGING;
1105 }
1106 }
252b5132
RH
1107
1108 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1109 only link a single copy of the section. This is used to support
1110 g++. g++ will emit each template expansion in its own section.
1111 The symbols will be defined as weak, so that multiple definitions
1112 are permitted. The GNU linker extension is to actually discard
1113 all but one of the sections. */
0112cd26 1114 if (CONST_STRNEQ (name, ".gnu.linkonce")
b885599b 1115 && elf_next_in_group (newsect) == NULL)
252b5132
RH
1116 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1117
fa152c49
JW
1118 bed = get_elf_backend_data (abfd);
1119 if (bed->elf_backend_section_flags)
1120 if (! bed->elf_backend_section_flags (&flags, hdr))
b34976b6 1121 return FALSE;
fa152c49 1122
fd361982 1123 if (!bfd_set_section_flags (newsect, flags))
b34976b6 1124 return FALSE;
252b5132 1125
718175fa
JK
1126 /* We do not parse the PT_NOTE segments as we are interested even in the
1127 separate debug info files which may have the segments offsets corrupted.
1128 PT_NOTEs from the core files are currently not parsed using BFD. */
1129 if (hdr->sh_type == SHT_NOTE)
1130 {
baea7ef1 1131 bfd_byte *contents;
718175fa 1132
baea7ef1 1133 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
718175fa
JK
1134 return FALSE;
1135
276da9b3
L
1136 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1137 hdr->sh_offset, hdr->sh_addralign);
718175fa
JK
1138 free (contents);
1139 }
1140
252b5132
RH
1141 if ((flags & SEC_ALLOC) != 0)
1142 {
1143 Elf_Internal_Phdr *phdr;
6ffd7900
AM
1144 unsigned int i, nload;
1145
1146 /* Some ELF linkers produce binaries with all the program header
1147 p_paddr fields zero. If we have such a binary with more than
1148 one PT_LOAD header, then leave the section lma equal to vma
1149 so that we don't create sections with overlapping lma. */
1150 phdr = elf_tdata (abfd)->phdr;
1151 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1152 if (phdr->p_paddr != 0)
1153 break;
1154 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1155 ++nload;
1156 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1157 return TRUE;
252b5132 1158
252b5132
RH
1159 phdr = elf_tdata (abfd)->phdr;
1160 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1161 {
86b2281f
AM
1162 if (((phdr->p_type == PT_LOAD
1163 && (hdr->sh_flags & SHF_TLS) == 0)
1164 || phdr->p_type == PT_TLS)
9a83a553 1165 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
252b5132 1166 {
88967714
AM
1167 if ((flags & SEC_LOAD) == 0)
1168 newsect->lma = (phdr->p_paddr
1169 + hdr->sh_addr - phdr->p_vaddr);
1170 else
1171 /* We used to use the same adjustment for SEC_LOAD
1172 sections, but that doesn't work if the segment
1173 is packed with code from multiple VMAs.
1174 Instead we calculate the section LMA based on
1175 the segment LMA. It is assumed that the
1176 segment will contain sections with contiguous
1177 LMAs, even if the VMAs are not. */
1178 newsect->lma = (phdr->p_paddr
1179 + hdr->sh_offset - phdr->p_offset);
1180
1181 /* With contiguous segments, we can't tell from file
1182 offsets whether a section with zero size should
1183 be placed at the end of one segment or the
1184 beginning of the next. Decide based on vaddr. */
1185 if (hdr->sh_addr >= phdr->p_vaddr
1186 && (hdr->sh_addr + hdr->sh_size
1187 <= phdr->p_vaddr + phdr->p_memsz))
1188 break;
252b5132
RH
1189 }
1190 }
1191 }
1192
4a114e3e
L
1193 /* Compress/decompress DWARF debug sections with names: .debug_* and
1194 .zdebug_*, after the section flags is set. */
1195 if ((flags & SEC_DEBUGGING)
1196 && ((name[1] == 'd' && name[6] == '_')
1197 || (name[1] == 'z' && name[7] == '_')))
1198 {
1199 enum { nothing, compress, decompress } action = nothing;
151411f8 1200 int compression_header_size;
dab394de 1201 bfd_size_type uncompressed_size;
4207142d 1202 unsigned int uncompressed_align_power;
151411f8
L
1203 bfd_boolean compressed
1204 = bfd_is_section_compressed_with_header (abfd, newsect,
dab394de 1205 &compression_header_size,
4207142d
MW
1206 &uncompressed_size,
1207 &uncompressed_align_power);
151411f8 1208 if (compressed)
4a114e3e
L
1209 {
1210 /* Compressed section. Check if we should decompress. */
1211 if ((abfd->flags & BFD_DECOMPRESS))
1212 action = decompress;
1213 }
151411f8
L
1214
1215 /* Compress the uncompressed section or convert from/to .zdebug*
1216 section. Check if we should compress. */
1217 if (action == nothing)
4a114e3e 1218 {
151411f8
L
1219 if (newsect->size != 0
1220 && (abfd->flags & BFD_COMPRESS)
1221 && compression_header_size >= 0
dab394de 1222 && uncompressed_size > 0
151411f8
L
1223 && (!compressed
1224 || ((compression_header_size > 0)
1225 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
4a114e3e 1226 action = compress;
151411f8
L
1227 else
1228 return TRUE;
4a114e3e
L
1229 }
1230
151411f8 1231 if (action == compress)
4a114e3e 1232 {
4a114e3e
L
1233 if (!bfd_init_section_compress_status (abfd, newsect))
1234 {
4eca0228 1235 _bfd_error_handler
695344c0 1236 /* xgettext:c-format */
871b3ab2 1237 (_("%pB: unable to initialize compress status for section %s"),
4a114e3e
L
1238 abfd, name);
1239 return FALSE;
1240 }
151411f8
L
1241 }
1242 else
1243 {
4a114e3e
L
1244 if (!bfd_init_section_decompress_status (abfd, newsect))
1245 {
4eca0228 1246 _bfd_error_handler
695344c0 1247 /* xgettext:c-format */
871b3ab2 1248 (_("%pB: unable to initialize decompress status for section %s"),
4a114e3e
L
1249 abfd, name);
1250 return FALSE;
1251 }
151411f8
L
1252 }
1253
f6fe1ccd 1254 if (abfd->is_linker_input)
151411f8 1255 {
f6fe1ccd
L
1256 if (name[1] == 'z'
1257 && (action == decompress
1258 || (action == compress
1259 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
4e011fb5 1260 {
f6fe1ccd
L
1261 /* Convert section name from .zdebug_* to .debug_* so
1262 that linker will consider this section as a debug
1263 section. */
1264 char *new_name = convert_zdebug_to_debug (abfd, name);
151411f8
L
1265 if (new_name == NULL)
1266 return FALSE;
fd361982 1267 bfd_rename_section (newsect, new_name);
151411f8 1268 }
4a114e3e 1269 }
f6fe1ccd
L
1270 else
1271 /* For objdump, don't rename the section. For objcopy, delay
1272 section rename to elf_fake_sections. */
1273 newsect->flags |= SEC_ELF_RENAME;
4a114e3e
L
1274 }
1275
cc5277b1
ML
1276 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1277 section. */
1278 const char *lto_section_name = ".gnu.lto_.lto.";
1279 if (strncmp (name, lto_section_name, strlen (lto_section_name)) == 0)
1280 {
1281 struct lto_section lsection;
1282 if (bfd_get_section_contents (abfd, newsect, &lsection, 0,
1283 sizeof (struct lto_section)))
1284 abfd->lto_slim_object = lsection.slim_object;
1285 }
1286
b34976b6 1287 return TRUE;
252b5132
RH
1288}
1289
84865015
NC
1290const char *const bfd_elf_section_type_names[] =
1291{
252b5132
RH
1292 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1293 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1294 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1295};
1296
1049f94e 1297/* ELF relocs are against symbols. If we are producing relocatable
252b5132
RH
1298 output, and the reloc is against an external symbol, and nothing
1299 has given us any additional addend, the resulting reloc will also
1300 be against the same symbol. In such a case, we don't want to
1301 change anything about the way the reloc is handled, since it will
1302 all be done at final link time. Rather than put special case code
1303 into bfd_perform_relocation, all the reloc types use this howto
1304 function. It just short circuits the reloc if producing
1049f94e 1305 relocatable output against an external symbol. */
252b5132 1306
252b5132 1307bfd_reloc_status_type
217aa764
AM
1308bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1309 arelent *reloc_entry,
1310 asymbol *symbol,
1311 void *data ATTRIBUTE_UNUSED,
1312 asection *input_section,
1313 bfd *output_bfd,
1314 char **error_message ATTRIBUTE_UNUSED)
1315{
1316 if (output_bfd != NULL
252b5132
RH
1317 && (symbol->flags & BSF_SECTION_SYM) == 0
1318 && (! reloc_entry->howto->partial_inplace
1319 || reloc_entry->addend == 0))
1320 {
1321 reloc_entry->address += input_section->output_offset;
1322 return bfd_reloc_ok;
1323 }
1324
1325 return bfd_reloc_continue;
1326}
1327\f
84865015
NC
1328/* Returns TRUE if section A matches section B.
1329 Names, addresses and links may be different, but everything else
1330 should be the same. */
1331
1332static bfd_boolean
5522f910
NC
1333section_match (const Elf_Internal_Shdr * a,
1334 const Elf_Internal_Shdr * b)
84865015 1335{
ac85e67c
AM
1336 if (a->sh_type != b->sh_type
1337 || ((a->sh_flags ^ b->sh_flags) & ~SHF_INFO_LINK) != 0
1338 || a->sh_addralign != b->sh_addralign
1339 || a->sh_entsize != b->sh_entsize)
1340 return FALSE;
1341 if (a->sh_type == SHT_SYMTAB
1342 || a->sh_type == SHT_STRTAB)
1343 return TRUE;
1344 return a->sh_size == b->sh_size;
84865015
NC
1345}
1346
1347/* Find a section in OBFD that has the same characteristics
1348 as IHEADER. Return the index of this section or SHN_UNDEF if
1349 none can be found. Check's section HINT first, as this is likely
1350 to be the correct section. */
1351
1352static unsigned int
5cc4ca83
ST
1353find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1354 const unsigned int hint)
84865015
NC
1355{
1356 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1357 unsigned int i;
1358
a55c9876
NC
1359 BFD_ASSERT (iheader != NULL);
1360
1361 /* See PR 20922 for a reproducer of the NULL test. */
5cc4ca83
ST
1362 if (hint < elf_numsections (obfd)
1363 && oheaders[hint] != NULL
a55c9876 1364 && section_match (oheaders[hint], iheader))
84865015
NC
1365 return hint;
1366
1367 for (i = 1; i < elf_numsections (obfd); i++)
1368 {
1369 Elf_Internal_Shdr * oheader = oheaders[i];
1370
a55c9876
NC
1371 if (oheader == NULL)
1372 continue;
84865015
NC
1373 if (section_match (oheader, iheader))
1374 /* FIXME: Do we care if there is a potential for
1375 multiple matches ? */
1376 return i;
1377 }
1378
1379 return SHN_UNDEF;
1380}
1381
5522f910
NC
1382/* PR 19938: Attempt to set the ELF section header fields of an OS or
1383 Processor specific section, based upon a matching input section.
1384 Returns TRUE upon success, FALSE otherwise. */
07d6d2b8 1385
5522f910
NC
1386static bfd_boolean
1387copy_special_section_fields (const bfd *ibfd,
1388 bfd *obfd,
1389 const Elf_Internal_Shdr *iheader,
1390 Elf_Internal_Shdr *oheader,
1391 const unsigned int secnum)
1392{
1393 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1394 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1395 bfd_boolean changed = FALSE;
1396 unsigned int sh_link;
1397
1398 if (oheader->sh_type == SHT_NOBITS)
1399 {
1400 /* This is a feature for objcopy --only-keep-debug:
1401 When a section's type is changed to NOBITS, we preserve
1402 the sh_link and sh_info fields so that they can be
1403 matched up with the original.
1404
1405 Note: Strictly speaking these assignments are wrong.
1406 The sh_link and sh_info fields should point to the
1407 relevent sections in the output BFD, which may not be in
1408 the same location as they were in the input BFD. But
1409 the whole point of this action is to preserve the
1410 original values of the sh_link and sh_info fields, so
1411 that they can be matched up with the section headers in
1412 the original file. So strictly speaking we may be
1413 creating an invalid ELF file, but it is only for a file
1414 that just contains debug info and only for sections
1415 without any contents. */
1416 if (oheader->sh_link == 0)
1417 oheader->sh_link = iheader->sh_link;
1418 if (oheader->sh_info == 0)
1419 oheader->sh_info = iheader->sh_info;
1420 return TRUE;
1421 }
1422
1423 /* Allow the target a chance to decide how these fields should be set. */
1424 if (bed->elf_backend_copy_special_section_fields != NULL
1425 && bed->elf_backend_copy_special_section_fields
1426 (ibfd, obfd, iheader, oheader))
1427 return TRUE;
1428
1429 /* We have an iheader which might match oheader, and which has non-zero
1430 sh_info and/or sh_link fields. Attempt to follow those links and find
1431 the section in the output bfd which corresponds to the linked section
1432 in the input bfd. */
1433 if (iheader->sh_link != SHN_UNDEF)
1434 {
4f3ca05b
NC
1435 /* See PR 20931 for a reproducer. */
1436 if (iheader->sh_link >= elf_numsections (ibfd))
1437 {
76cfced5 1438 _bfd_error_handler
4f3ca05b 1439 /* xgettext:c-format */
9793eb77 1440 (_("%pB: invalid sh_link field (%d) in section number %d"),
4f3ca05b
NC
1441 ibfd, iheader->sh_link, secnum);
1442 return FALSE;
1443 }
1444
5522f910
NC
1445 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1446 if (sh_link != SHN_UNDEF)
1447 {
1448 oheader->sh_link = sh_link;
1449 changed = TRUE;
1450 }
1451 else
1452 /* FIXME: Should we install iheader->sh_link
1453 if we could not find a match ? */
76cfced5 1454 _bfd_error_handler
695344c0 1455 /* xgettext:c-format */
9793eb77 1456 (_("%pB: failed to find link section for section %d"), obfd, secnum);
5522f910
NC
1457 }
1458
1459 if (iheader->sh_info)
1460 {
1461 /* The sh_info field can hold arbitrary information, but if the
1462 SHF_LINK_INFO flag is set then it should be interpreted as a
1463 section index. */
1464 if (iheader->sh_flags & SHF_INFO_LINK)
1465 {
1466 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1467 iheader->sh_info);
1468 if (sh_link != SHN_UNDEF)
1469 oheader->sh_flags |= SHF_INFO_LINK;
1470 }
1471 else
1472 /* No idea what it means - just copy it. */
1473 sh_link = iheader->sh_info;
1474
1475 if (sh_link != SHN_UNDEF)
1476 {
1477 oheader->sh_info = sh_link;
1478 changed = TRUE;
1479 }
1480 else
76cfced5 1481 _bfd_error_handler
695344c0 1482 /* xgettext:c-format */
9793eb77 1483 (_("%pB: failed to find info section for section %d"), obfd, secnum);
5522f910
NC
1484 }
1485
1486 return changed;
1487}
07d6d2b8 1488
0ac4564e
L
1489/* Copy the program header and other data from one object module to
1490 another. */
252b5132 1491
b34976b6 1492bfd_boolean
217aa764 1493_bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2d502050 1494{
5522f910
NC
1495 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1496 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1497 const struct elf_backend_data *bed;
84865015
NC
1498 unsigned int i;
1499
2d502050 1500 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
84865015 1501 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 1502 return TRUE;
2d502050 1503
57b828ef
L
1504 if (!elf_flags_init (obfd))
1505 {
1506 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1507 elf_flags_init (obfd) = TRUE;
1508 }
2d502050 1509
0ac4564e 1510 elf_gp (obfd) = elf_gp (ibfd);
57b828ef
L
1511
1512 /* Also copy the EI_OSABI field. */
1513 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1514 elf_elfheader (ibfd)->e_ident[EI_OSABI];
104d59d1 1515
5522f910
NC
1516 /* If set, copy the EI_ABIVERSION field. */
1517 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1518 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1519 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
07d6d2b8 1520
104d59d1
JM
1521 /* Copy object attributes. */
1522 _bfd_elf_copy_obj_attributes (ibfd, obfd);
63b9bbb7 1523
84865015
NC
1524 if (iheaders == NULL || oheaders == NULL)
1525 return TRUE;
63b9bbb7 1526
5522f910
NC
1527 bed = get_elf_backend_data (obfd);
1528
1529 /* Possibly copy other fields in the section header. */
84865015 1530 for (i = 1; i < elf_numsections (obfd); i++)
63b9bbb7 1531 {
84865015
NC
1532 unsigned int j;
1533 Elf_Internal_Shdr * oheader = oheaders[i];
63b9bbb7 1534
5522f910
NC
1535 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1536 because of a special case need for generating separate debug info
1537 files. See below for more details. */
84865015
NC
1538 if (oheader == NULL
1539 || (oheader->sh_type != SHT_NOBITS
5522f910
NC
1540 && oheader->sh_type < SHT_LOOS))
1541 continue;
1542
1543 /* Ignore empty sections, and sections whose
1544 fields have already been initialised. */
1545 if (oheader->sh_size == 0
84865015
NC
1546 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1547 continue;
63b9bbb7 1548
84865015 1549 /* Scan for the matching section in the input bfd.
5522f910
NC
1550 First we try for a direct mapping between the input and output sections. */
1551 for (j = 1; j < elf_numsections (ibfd); j++)
1552 {
1553 const Elf_Internal_Shdr * iheader = iheaders[j];
1554
1555 if (iheader == NULL)
1556 continue;
1557
1558 if (oheader->bfd_section != NULL
1559 && iheader->bfd_section != NULL
1560 && iheader->bfd_section->output_section != NULL
1561 && iheader->bfd_section->output_section == oheader->bfd_section)
1562 {
1563 /* We have found a connection from the input section to the
1564 output section. Attempt to copy the header fields. If
1565 this fails then do not try any further sections - there
1566 should only be a one-to-one mapping between input and output. */
1567 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1568 j = elf_numsections (ibfd);
1569 break;
1570 }
1571 }
1572
1573 if (j < elf_numsections (ibfd))
1574 continue;
1575
1576 /* That failed. So try to deduce the corresponding input section.
84865015
NC
1577 Unfortunately we cannot compare names as the output string table
1578 is empty, so instead we check size, address and type. */
1579 for (j = 1; j < elf_numsections (ibfd); j++)
1580 {
5522f910 1581 const Elf_Internal_Shdr * iheader = iheaders[j];
84865015 1582
5522f910
NC
1583 if (iheader == NULL)
1584 continue;
1585
1586 /* Try matching fields in the input section's header.
1587 Since --only-keep-debug turns all non-debug sections into
84865015
NC
1588 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1589 input type. */
1590 if ((oheader->sh_type == SHT_NOBITS
1591 || iheader->sh_type == oheader->sh_type)
5522f910
NC
1592 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1593 == (oheader->sh_flags & ~ SHF_INFO_LINK)
84865015
NC
1594 && iheader->sh_addralign == oheader->sh_addralign
1595 && iheader->sh_entsize == oheader->sh_entsize
1596 && iheader->sh_size == oheader->sh_size
1597 && iheader->sh_addr == oheader->sh_addr
1598 && (iheader->sh_info != oheader->sh_info
1599 || iheader->sh_link != oheader->sh_link))
63b9bbb7 1600 {
5522f910
NC
1601 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1602 break;
63b9bbb7
NC
1603 }
1604 }
5522f910
NC
1605
1606 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1607 {
1608 /* Final attempt. Call the backend copy function
1609 with a NULL input section. */
1610 if (bed->elf_backend_copy_special_section_fields != NULL)
1611 bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
1612 }
63b9bbb7
NC
1613 }
1614
b34976b6 1615 return TRUE;
2d502050
L
1616}
1617
cedc298e
L
1618static const char *
1619get_segment_type (unsigned int p_type)
1620{
1621 const char *pt;
1622 switch (p_type)
1623 {
1624 case PT_NULL: pt = "NULL"; break;
1625 case PT_LOAD: pt = "LOAD"; break;
1626 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1627 case PT_INTERP: pt = "INTERP"; break;
1628 case PT_NOTE: pt = "NOTE"; break;
1629 case PT_SHLIB: pt = "SHLIB"; break;
1630 case PT_PHDR: pt = "PHDR"; break;
1631 case PT_TLS: pt = "TLS"; break;
1632 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
2b05f1b7 1633 case PT_GNU_STACK: pt = "STACK"; break;
cedc298e
L
1634 case PT_GNU_RELRO: pt = "RELRO"; break;
1635 default: pt = NULL; break;
1636 }
1637 return pt;
1638}
1639
f0b79d91
L
1640/* Print out the program headers. */
1641
b34976b6 1642bfd_boolean
217aa764 1643_bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
252b5132 1644{
a50b1753 1645 FILE *f = (FILE *) farg;
252b5132
RH
1646 Elf_Internal_Phdr *p;
1647 asection *s;
1648 bfd_byte *dynbuf = NULL;
1649
1650 p = elf_tdata (abfd)->phdr;
1651 if (p != NULL)
1652 {
1653 unsigned int i, c;
1654
1655 fprintf (f, _("\nProgram Header:\n"));
1656 c = elf_elfheader (abfd)->e_phnum;
1657 for (i = 0; i < c; i++, p++)
1658 {
cedc298e 1659 const char *pt = get_segment_type (p->p_type);
252b5132
RH
1660 char buf[20];
1661
cedc298e 1662 if (pt == NULL)
252b5132 1663 {
cedc298e
L
1664 sprintf (buf, "0x%lx", p->p_type);
1665 pt = buf;
252b5132 1666 }
dc810e39 1667 fprintf (f, "%8s off 0x", pt);
60b89a18 1668 bfd_fprintf_vma (abfd, f, p->p_offset);
252b5132 1669 fprintf (f, " vaddr 0x");
60b89a18 1670 bfd_fprintf_vma (abfd, f, p->p_vaddr);
252b5132 1671 fprintf (f, " paddr 0x");
60b89a18 1672 bfd_fprintf_vma (abfd, f, p->p_paddr);
252b5132
RH
1673 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1674 fprintf (f, " filesz 0x");
60b89a18 1675 bfd_fprintf_vma (abfd, f, p->p_filesz);
252b5132 1676 fprintf (f, " memsz 0x");
60b89a18 1677 bfd_fprintf_vma (abfd, f, p->p_memsz);
252b5132
RH
1678 fprintf (f, " flags %c%c%c",
1679 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1680 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1681 (p->p_flags & PF_X) != 0 ? 'x' : '-');
dc810e39
AM
1682 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1683 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
252b5132
RH
1684 fprintf (f, "\n");
1685 }
1686 }
1687
1688 s = bfd_get_section_by_name (abfd, ".dynamic");
1689 if (s != NULL)
1690 {
cb33740c 1691 unsigned int elfsec;
dc810e39 1692 unsigned long shlink;
252b5132
RH
1693 bfd_byte *extdyn, *extdynend;
1694 size_t extdynsize;
217aa764 1695 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
252b5132
RH
1696
1697 fprintf (f, _("\nDynamic Section:\n"));
1698
eea6121a 1699 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
252b5132
RH
1700 goto error_return;
1701
1702 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 1703 if (elfsec == SHN_BAD)
252b5132 1704 goto error_return;
dc810e39 1705 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
252b5132
RH
1706
1707 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1708 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1709
1710 extdyn = dynbuf;
06614111
NC
1711 /* PR 17512: file: 6f427532. */
1712 if (s->size < extdynsize)
1713 goto error_return;
eea6121a 1714 extdynend = extdyn + s->size;
1036838a 1715 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
07d6d2b8 1716 Fix range check. */
1036838a 1717 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
252b5132
RH
1718 {
1719 Elf_Internal_Dyn dyn;
ad9563d6 1720 const char *name = "";
252b5132 1721 char ab[20];
b34976b6 1722 bfd_boolean stringp;
ad9563d6 1723 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 1724
217aa764 1725 (*swap_dyn_in) (abfd, extdyn, &dyn);
252b5132
RH
1726
1727 if (dyn.d_tag == DT_NULL)
1728 break;
1729
b34976b6 1730 stringp = FALSE;
252b5132
RH
1731 switch (dyn.d_tag)
1732 {
1733 default:
ad9563d6
CM
1734 if (bed->elf_backend_get_target_dtag)
1735 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1736
1737 if (!strcmp (name, ""))
1738 {
cd9af601 1739 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
ad9563d6
CM
1740 name = ab;
1741 }
252b5132
RH
1742 break;
1743
b34976b6 1744 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
252b5132
RH
1745 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1746 case DT_PLTGOT: name = "PLTGOT"; break;
1747 case DT_HASH: name = "HASH"; break;
1748 case DT_STRTAB: name = "STRTAB"; break;
1749 case DT_SYMTAB: name = "SYMTAB"; break;
1750 case DT_RELA: name = "RELA"; break;
1751 case DT_RELASZ: name = "RELASZ"; break;
1752 case DT_RELAENT: name = "RELAENT"; break;
1753 case DT_STRSZ: name = "STRSZ"; break;
1754 case DT_SYMENT: name = "SYMENT"; break;
1755 case DT_INIT: name = "INIT"; break;
1756 case DT_FINI: name = "FINI"; break;
b34976b6
AM
1757 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1758 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
252b5132
RH
1759 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1760 case DT_REL: name = "REL"; break;
1761 case DT_RELSZ: name = "RELSZ"; break;
1762 case DT_RELENT: name = "RELENT"; break;
1763 case DT_PLTREL: name = "PLTREL"; break;
1764 case DT_DEBUG: name = "DEBUG"; break;
1765 case DT_TEXTREL: name = "TEXTREL"; break;
1766 case DT_JMPREL: name = "JMPREL"; break;
94558834
L
1767 case DT_BIND_NOW: name = "BIND_NOW"; break;
1768 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1769 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1770 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1771 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
b34976b6 1772 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
94558834
L
1773 case DT_FLAGS: name = "FLAGS"; break;
1774 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1775 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
d48188b9 1776 case DT_CHECKSUM: name = "CHECKSUM"; break;
94558834
L
1777 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1778 case DT_MOVEENT: name = "MOVEENT"; break;
1779 case DT_MOVESZ: name = "MOVESZ"; break;
1780 case DT_FEATURE: name = "FEATURE"; break;
1781 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1782 case DT_SYMINSZ: name = "SYMINSZ"; break;
1783 case DT_SYMINENT: name = "SYMINENT"; break;
b34976b6
AM
1784 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1785 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1786 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
94558834
L
1787 case DT_PLTPAD: name = "PLTPAD"; break;
1788 case DT_MOVETAB: name = "MOVETAB"; break;
1789 case DT_SYMINFO: name = "SYMINFO"; break;
1790 case DT_RELACOUNT: name = "RELACOUNT"; break;
1791 case DT_RELCOUNT: name = "RELCOUNT"; break;
1792 case DT_FLAGS_1: name = "FLAGS_1"; break;
252b5132
RH
1793 case DT_VERSYM: name = "VERSYM"; break;
1794 case DT_VERDEF: name = "VERDEF"; break;
1795 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1796 case DT_VERNEED: name = "VERNEED"; break;
1797 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
b34976b6 1798 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
94558834 1799 case DT_USED: name = "USED"; break;
b34976b6 1800 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
fdc90cb4 1801 case DT_GNU_HASH: name = "GNU_HASH"; break;
252b5132
RH
1802 }
1803
ad9563d6 1804 fprintf (f, " %-20s ", name);
252b5132 1805 if (! stringp)
a1f3c56e
AN
1806 {
1807 fprintf (f, "0x");
1808 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1809 }
252b5132
RH
1810 else
1811 {
1812 const char *string;
dc810e39 1813 unsigned int tagv = dyn.d_un.d_val;
252b5132 1814
dc810e39 1815 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
252b5132
RH
1816 if (string == NULL)
1817 goto error_return;
1818 fprintf (f, "%s", string);
1819 }
1820 fprintf (f, "\n");
1821 }
1822
1823 free (dynbuf);
1824 dynbuf = NULL;
1825 }
1826
1827 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1828 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1829 {
fc0e6df6 1830 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
b34976b6 1831 return FALSE;
252b5132
RH
1832 }
1833
1834 if (elf_dynverdef (abfd) != 0)
1835 {
1836 Elf_Internal_Verdef *t;
1837
1838 fprintf (f, _("\nVersion definitions:\n"));
1839 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1840 {
1841 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
d0fb9a8d
JJ
1842 t->vd_flags, t->vd_hash,
1843 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1844 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
252b5132
RH
1845 {
1846 Elf_Internal_Verdaux *a;
1847
1848 fprintf (f, "\t");
1849 for (a = t->vd_auxptr->vda_nextptr;
1850 a != NULL;
1851 a = a->vda_nextptr)
d0fb9a8d
JJ
1852 fprintf (f, "%s ",
1853 a->vda_nodename ? a->vda_nodename : "<corrupt>");
252b5132
RH
1854 fprintf (f, "\n");
1855 }
1856 }
1857 }
1858
1859 if (elf_dynverref (abfd) != 0)
1860 {
1861 Elf_Internal_Verneed *t;
1862
1863 fprintf (f, _("\nVersion References:\n"));
1864 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1865 {
1866 Elf_Internal_Vernaux *a;
1867
d0fb9a8d
JJ
1868 fprintf (f, _(" required from %s:\n"),
1869 t->vn_filename ? t->vn_filename : "<corrupt>");
252b5132
RH
1870 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1871 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
d0fb9a8d
JJ
1872 a->vna_flags, a->vna_other,
1873 a->vna_nodename ? a->vna_nodename : "<corrupt>");
252b5132
RH
1874 }
1875 }
1876
b34976b6 1877 return TRUE;
252b5132
RH
1878
1879 error_return:
1880 if (dynbuf != NULL)
1881 free (dynbuf);
b34976b6 1882 return FALSE;
252b5132
RH
1883}
1884
bb4d2ac2
L
1885/* Get version string. */
1886
1887const char *
60bb06bc
L
1888_bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1889 bfd_boolean *hidden)
bb4d2ac2
L
1890{
1891 const char *version_string = NULL;
1892 if (elf_dynversym (abfd) != 0
1893 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1894 {
1895 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1896
1897 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1898 vernum &= VERSYM_VERSION;
1899
1900 if (vernum == 0)
1901 version_string = "";
1f6f5dba
L
1902 else if (vernum == 1
1903 && (vernum > elf_tdata (abfd)->cverdefs
1904 || (elf_tdata (abfd)->verdef[0].vd_flags
1905 == VER_FLG_BASE)))
bb4d2ac2
L
1906 version_string = "Base";
1907 else if (vernum <= elf_tdata (abfd)->cverdefs)
1908 version_string =
1909 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1910 else
1911 {
1912 Elf_Internal_Verneed *t;
1913
7a815dd5 1914 version_string = _("<corrupt>");
bb4d2ac2
L
1915 for (t = elf_tdata (abfd)->verref;
1916 t != NULL;
1917 t = t->vn_nextref)
1918 {
1919 Elf_Internal_Vernaux *a;
1920
1921 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1922 {
1923 if (a->vna_other == vernum)
1924 {
1925 version_string = a->vna_nodename;
1926 break;
1927 }
1928 }
1929 }
1930 }
1931 }
1932 return version_string;
1933}
1934
252b5132
RH
1935/* Display ELF-specific fields of a symbol. */
1936
1937void
217aa764
AM
1938bfd_elf_print_symbol (bfd *abfd,
1939 void *filep,
1940 asymbol *symbol,
1941 bfd_print_symbol_type how)
252b5132 1942{
a50b1753 1943 FILE *file = (FILE *) filep;
252b5132
RH
1944 switch (how)
1945 {
1946 case bfd_print_symbol_name:
1947 fprintf (file, "%s", symbol->name);
1948 break;
1949 case bfd_print_symbol_more:
1950 fprintf (file, "elf ");
60b89a18 1951 bfd_fprintf_vma (abfd, file, symbol->value);
cd9af601 1952 fprintf (file, " %x", symbol->flags);
252b5132
RH
1953 break;
1954 case bfd_print_symbol_all:
1955 {
4e8a9624
AM
1956 const char *section_name;
1957 const char *name = NULL;
9c5bfbb7 1958 const struct elf_backend_data *bed;
7a13edea 1959 unsigned char st_other;
dbb410c3 1960 bfd_vma val;
bb4d2ac2
L
1961 const char *version_string;
1962 bfd_boolean hidden;
c044fabd 1963
252b5132 1964 section_name = symbol->section ? symbol->section->name : "(*none*)";
587ff49e
RH
1965
1966 bed = get_elf_backend_data (abfd);
1967 if (bed->elf_backend_print_symbol_all)
c044fabd 1968 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
587ff49e
RH
1969
1970 if (name == NULL)
1971 {
7ee38065 1972 name = symbol->name;
217aa764 1973 bfd_print_symbol_vandf (abfd, file, symbol);
587ff49e
RH
1974 }
1975
252b5132
RH
1976 fprintf (file, " %s\t", section_name);
1977 /* Print the "other" value for a symbol. For common symbols,
1978 we've already printed the size; now print the alignment.
1979 For other symbols, we have no specified alignment, and
1980 we've printed the address; now print the size. */
dcf6c779 1981 if (symbol->section && bfd_is_com_section (symbol->section))
dbb410c3
AM
1982 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1983 else
1984 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1985 bfd_fprintf_vma (abfd, file, val);
252b5132
RH
1986
1987 /* If we have version information, print it. */
60bb06bc
L
1988 version_string = _bfd_elf_get_symbol_version_string (abfd,
1989 symbol,
1990 &hidden);
bb4d2ac2 1991 if (version_string)
252b5132 1992 {
bb4d2ac2 1993 if (!hidden)
252b5132
RH
1994 fprintf (file, " %-11s", version_string);
1995 else
1996 {
1997 int i;
1998
1999 fprintf (file, " (%s)", version_string);
2000 for (i = 10 - strlen (version_string); i > 0; --i)
2001 putc (' ', file);
2002 }
2003 }
2004
2005 /* If the st_other field is not zero, print it. */
7a13edea 2006 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
c044fabd 2007
7a13edea
NC
2008 switch (st_other)
2009 {
2010 case 0: break;
2011 case STV_INTERNAL: fprintf (file, " .internal"); break;
2012 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2013 case STV_PROTECTED: fprintf (file, " .protected"); break;
2014 default:
2015 /* Some other non-defined flags are also present, so print
2016 everything hex. */
2017 fprintf (file, " 0x%02x", (unsigned int) st_other);
2018 }
252b5132 2019
587ff49e 2020 fprintf (file, " %s", name);
252b5132
RH
2021 }
2022 break;
2023 }
2024}
252b5132
RH
2025\f
2026/* ELF .o/exec file reading */
2027
c044fabd 2028/* Create a new bfd section from an ELF section header. */
252b5132 2029
b34976b6 2030bfd_boolean
217aa764 2031bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
252b5132 2032{
4fbb74a6
AM
2033 Elf_Internal_Shdr *hdr;
2034 Elf_Internal_Ehdr *ehdr;
2035 const struct elf_backend_data *bed;
90937f86 2036 const char *name;
bf67003b
NC
2037 bfd_boolean ret = TRUE;
2038 static bfd_boolean * sections_being_created = NULL;
5a4b0ccc 2039 static bfd * sections_being_created_abfd = NULL;
bf67003b 2040 static unsigned int nesting = 0;
252b5132 2041
4fbb74a6
AM
2042 if (shindex >= elf_numsections (abfd))
2043 return FALSE;
2044
bf67003b
NC
2045 if (++ nesting > 3)
2046 {
2047 /* PR17512: A corrupt ELF binary might contain a recursive group of
67ce483b 2048 sections, with each the string indices pointing to the next in the
bf67003b
NC
2049 loop. Detect this here, by refusing to load a section that we are
2050 already in the process of loading. We only trigger this test if
2051 we have nested at least three sections deep as normal ELF binaries
5a4b0ccc
NC
2052 can expect to recurse at least once.
2053
2054 FIXME: It would be better if this array was attached to the bfd,
2055 rather than being held in a static pointer. */
2056
2057 if (sections_being_created_abfd != abfd)
2058 sections_being_created = NULL;
bf67003b
NC
2059 if (sections_being_created == NULL)
2060 {
446f7ed5
AM
2061 size_t amt = elf_numsections (abfd) * sizeof (bfd_boolean);
2062 sections_being_created = (bfd_boolean *) bfd_zalloc (abfd, amt);
96d3b80f
AM
2063 if (sections_being_created == NULL)
2064 return FALSE;
5a4b0ccc 2065 sections_being_created_abfd = abfd;
bf67003b
NC
2066 }
2067 if (sections_being_created [shindex])
2068 {
4eca0228 2069 _bfd_error_handler
871b3ab2 2070 (_("%pB: warning: loop in section dependencies detected"), abfd);
bf67003b
NC
2071 return FALSE;
2072 }
2073 sections_being_created [shindex] = TRUE;
2074 }
2075
4fbb74a6
AM
2076 hdr = elf_elfsections (abfd)[shindex];
2077 ehdr = elf_elfheader (abfd);
2078 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
1b3a8575 2079 hdr->sh_name);
933d961a 2080 if (name == NULL)
bf67003b 2081 goto fail;
252b5132 2082
4fbb74a6 2083 bed = get_elf_backend_data (abfd);
252b5132
RH
2084 switch (hdr->sh_type)
2085 {
2086 case SHT_NULL:
2087 /* Inactive section. Throw it away. */
bf67003b 2088 goto success;
252b5132 2089
bf67003b
NC
2090 case SHT_PROGBITS: /* Normal section with contents. */
2091 case SHT_NOBITS: /* .bss section. */
2092 case SHT_HASH: /* .hash section. */
2093 case SHT_NOTE: /* .note section. */
25e27870
L
2094 case SHT_INIT_ARRAY: /* .init_array section. */
2095 case SHT_FINI_ARRAY: /* .fini_array section. */
2096 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
7f1204bb 2097 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
fdc90cb4 2098 case SHT_GNU_HASH: /* .gnu.hash section. */
bf67003b
NC
2099 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2100 goto success;
252b5132 2101
797fc050 2102 case SHT_DYNAMIC: /* Dynamic linking information. */
6dc132d9 2103 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2104 goto fail;
2105
cfcac11d
NC
2106 if (hdr->sh_link > elf_numsections (abfd))
2107 {
caa83f8b 2108 /* PR 10478: Accept Solaris binaries with a sh_link
cfcac11d
NC
2109 field set to SHN_BEFORE or SHN_AFTER. */
2110 switch (bfd_get_arch (abfd))
2111 {
caa83f8b 2112 case bfd_arch_i386:
cfcac11d
NC
2113 case bfd_arch_sparc:
2114 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2115 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2116 break;
2117 /* Otherwise fall through. */
2118 default:
bf67003b 2119 goto fail;
cfcac11d
NC
2120 }
2121 }
2122 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
bf67003b 2123 goto fail;
cfcac11d 2124 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
797fc050
AM
2125 {
2126 Elf_Internal_Shdr *dynsymhdr;
2127
2128 /* The shared libraries distributed with hpux11 have a bogus
2129 sh_link field for the ".dynamic" section. Find the
2130 string table for the ".dynsym" section instead. */
2131 if (elf_dynsymtab (abfd) != 0)
2132 {
2133 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2134 hdr->sh_link = dynsymhdr->sh_link;
2135 }
2136 else
2137 {
2138 unsigned int i, num_sec;
2139
2140 num_sec = elf_numsections (abfd);
2141 for (i = 1; i < num_sec; i++)
2142 {
2143 dynsymhdr = elf_elfsections (abfd)[i];
2144 if (dynsymhdr->sh_type == SHT_DYNSYM)
2145 {
2146 hdr->sh_link = dynsymhdr->sh_link;
2147 break;
2148 }
2149 }
2150 }
2151 }
bf67003b 2152 goto success;
797fc050 2153
bf67003b 2154 case SHT_SYMTAB: /* A symbol table. */
252b5132 2155 if (elf_onesymtab (abfd) == shindex)
bf67003b 2156 goto success;
252b5132 2157
a50b2160 2158 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2159 goto fail;
2160
3337c1e5 2161 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
eee3b786
AM
2162 {
2163 if (hdr->sh_size != 0)
bf67003b 2164 goto fail;
eee3b786
AM
2165 /* Some assemblers erroneously set sh_info to one with a
2166 zero sh_size. ld sees this as a global symbol count
2167 of (unsigned) -1. Fix it here. */
2168 hdr->sh_info = 0;
bf67003b 2169 goto success;
eee3b786 2170 }
bf67003b 2171
16ad13ec
NC
2172 /* PR 18854: A binary might contain more than one symbol table.
2173 Unusual, but possible. Warn, but continue. */
2174 if (elf_onesymtab (abfd) != 0)
2175 {
4eca0228 2176 _bfd_error_handler
695344c0 2177 /* xgettext:c-format */
871b3ab2 2178 (_("%pB: warning: multiple symbol tables detected"
63a5468a 2179 " - ignoring the table in section %u"),
16ad13ec
NC
2180 abfd, shindex);
2181 goto success;
2182 }
252b5132 2183 elf_onesymtab (abfd) = shindex;
6a40cf0c
NC
2184 elf_symtab_hdr (abfd) = *hdr;
2185 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
252b5132
RH
2186 abfd->flags |= HAS_SYMS;
2187
2188 /* Sometimes a shared object will map in the symbol table. If
08a40648
AM
2189 SHF_ALLOC is set, and this is a shared object, then we also
2190 treat this section as a BFD section. We can not base the
2191 decision purely on SHF_ALLOC, because that flag is sometimes
2192 set in a relocatable object file, which would confuse the
2193 linker. */
252b5132
RH
2194 if ((hdr->sh_flags & SHF_ALLOC) != 0
2195 && (abfd->flags & DYNAMIC) != 0
6dc132d9
L
2196 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2197 shindex))
bf67003b 2198 goto fail;
252b5132 2199
1b3a8575
AM
2200 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2201 can't read symbols without that section loaded as well. It
2202 is most likely specified by the next section header. */
6a40cf0c
NC
2203 {
2204 elf_section_list * entry;
2205 unsigned int i, num_sec;
1b3a8575 2206
6a40cf0c
NC
2207 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2208 if (entry->hdr.sh_link == shindex)
2209 goto success;
2210
2211 num_sec = elf_numsections (abfd);
2212 for (i = shindex + 1; i < num_sec; i++)
2213 {
2214 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2215
2216 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2217 && hdr2->sh_link == shindex)
2218 break;
2219 }
2220
2221 if (i == num_sec)
2222 for (i = 1; i < shindex; i++)
1b3a8575
AM
2223 {
2224 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
6a40cf0c 2225
1b3a8575
AM
2226 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2227 && hdr2->sh_link == shindex)
2228 break;
2229 }
6a40cf0c
NC
2230
2231 if (i != shindex)
2232 ret = bfd_section_from_shdr (abfd, i);
2233 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2234 goto success;
2235 }
252b5132 2236
bf67003b 2237 case SHT_DYNSYM: /* A dynamic symbol table. */
252b5132 2238 if (elf_dynsymtab (abfd) == shindex)
bf67003b 2239 goto success;
252b5132 2240
a50b2160 2241 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2242 goto fail;
2243
eee3b786
AM
2244 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2245 {
2246 if (hdr->sh_size != 0)
bf67003b
NC
2247 goto fail;
2248
eee3b786
AM
2249 /* Some linkers erroneously set sh_info to one with a
2250 zero sh_size. ld sees this as a global symbol count
2251 of (unsigned) -1. Fix it here. */
2252 hdr->sh_info = 0;
bf67003b 2253 goto success;
eee3b786 2254 }
bf67003b 2255
16ad13ec
NC
2256 /* PR 18854: A binary might contain more than one dynamic symbol table.
2257 Unusual, but possible. Warn, but continue. */
2258 if (elf_dynsymtab (abfd) != 0)
2259 {
4eca0228 2260 _bfd_error_handler
695344c0 2261 /* xgettext:c-format */
871b3ab2 2262 (_("%pB: warning: multiple dynamic symbol tables detected"
63a5468a 2263 " - ignoring the table in section %u"),
16ad13ec
NC
2264 abfd, shindex);
2265 goto success;
2266 }
252b5132
RH
2267 elf_dynsymtab (abfd) = shindex;
2268 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2269 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2270 abfd->flags |= HAS_SYMS;
2271
2272 /* Besides being a symbol table, we also treat this as a regular
2273 section, so that objcopy can handle it. */
bf67003b
NC
2274 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2275 goto success;
252b5132 2276
bf67003b 2277 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
6a40cf0c
NC
2278 {
2279 elf_section_list * entry;
9ad5cbcf 2280
6a40cf0c
NC
2281 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2282 if (entry->ndx == shindex)
2283 goto success;
07d6d2b8 2284
7a6e0d89 2285 entry = bfd_alloc (abfd, sizeof (*entry));
6a40cf0c
NC
2286 if (entry == NULL)
2287 goto fail;
2288 entry->ndx = shindex;
2289 entry->hdr = * hdr;
2290 entry->next = elf_symtab_shndx_list (abfd);
2291 elf_symtab_shndx_list (abfd) = entry;
2292 elf_elfsections (abfd)[shindex] = & entry->hdr;
2293 goto success;
2294 }
9ad5cbcf 2295
bf67003b 2296 case SHT_STRTAB: /* A string table. */
252b5132 2297 if (hdr->bfd_section != NULL)
bf67003b
NC
2298 goto success;
2299
252b5132
RH
2300 if (ehdr->e_shstrndx == shindex)
2301 {
2302 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2303 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
bf67003b 2304 goto success;
252b5132 2305 }
bf67003b 2306
1b3a8575
AM
2307 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2308 {
2309 symtab_strtab:
2310 elf_tdata (abfd)->strtab_hdr = *hdr;
2311 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
bf67003b 2312 goto success;
1b3a8575 2313 }
bf67003b 2314
1b3a8575
AM
2315 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2316 {
2317 dynsymtab_strtab:
2318 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2319 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2320 elf_elfsections (abfd)[shindex] = hdr;
2321 /* We also treat this as a regular section, so that objcopy
2322 can handle it. */
bf67003b
NC
2323 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2324 shindex);
2325 goto success;
1b3a8575 2326 }
252b5132 2327
1b3a8575
AM
2328 /* If the string table isn't one of the above, then treat it as a
2329 regular section. We need to scan all the headers to be sure,
2330 just in case this strtab section appeared before the above. */
2331 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2332 {
2333 unsigned int i, num_sec;
252b5132 2334
1b3a8575
AM
2335 num_sec = elf_numsections (abfd);
2336 for (i = 1; i < num_sec; i++)
2337 {
2338 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2339 if (hdr2->sh_link == shindex)
2340 {
933d961a
JJ
2341 /* Prevent endless recursion on broken objects. */
2342 if (i == shindex)
bf67003b 2343 goto fail;
1b3a8575 2344 if (! bfd_section_from_shdr (abfd, i))
bf67003b 2345 goto fail;
1b3a8575
AM
2346 if (elf_onesymtab (abfd) == i)
2347 goto symtab_strtab;
2348 if (elf_dynsymtab (abfd) == i)
2349 goto dynsymtab_strtab;
2350 }
2351 }
2352 }
bf67003b
NC
2353 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2354 goto success;
252b5132
RH
2355
2356 case SHT_REL:
2357 case SHT_RELA:
2358 /* *These* do a lot of work -- but build no sections! */
2359 {
2360 asection *target_sect;
d4730f92 2361 Elf_Internal_Shdr *hdr2, **p_hdr;
9ad5cbcf 2362 unsigned int num_sec = elf_numsections (abfd);
d4730f92 2363 struct bfd_elf_section_data *esdt;
252b5132 2364
aa2ca951
JJ
2365 if (hdr->sh_entsize
2366 != (bfd_size_type) (hdr->sh_type == SHT_REL
a50b2160 2367 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
bf67003b 2368 goto fail;
a50b2160 2369
03ae5f59 2370 /* Check for a bogus link to avoid crashing. */
4fbb74a6 2371 if (hdr->sh_link >= num_sec)
03ae5f59 2372 {
4eca0228 2373 _bfd_error_handler
695344c0 2374 /* xgettext:c-format */
871b3ab2 2375 (_("%pB: invalid link %u for reloc section %s (index %u)"),
4eca0228 2376 abfd, hdr->sh_link, name, shindex);
bf67003b
NC
2377 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2378 shindex);
2379 goto success;
03ae5f59
ILT
2380 }
2381
252b5132
RH
2382 /* For some incomprehensible reason Oracle distributes
2383 libraries for Solaris in which some of the objects have
2384 bogus sh_link fields. It would be nice if we could just
2385 reject them, but, unfortunately, some people need to use
2386 them. We scan through the section headers; if we find only
2387 one suitable symbol table, we clobber the sh_link to point
83b89087
L
2388 to it. I hope this doesn't break anything.
2389
2390 Don't do it on executable nor shared library. */
2391 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2392 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
252b5132
RH
2393 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2394 {
9ad5cbcf 2395 unsigned int scan;
252b5132
RH
2396 int found;
2397
2398 found = 0;
9ad5cbcf 2399 for (scan = 1; scan < num_sec; scan++)
252b5132
RH
2400 {
2401 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2402 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2403 {
2404 if (found != 0)
2405 {
2406 found = 0;
2407 break;
2408 }
2409 found = scan;
2410 }
2411 }
2412 if (found != 0)
2413 hdr->sh_link = found;
2414 }
2415
2416 /* Get the symbol table. */
1b3a8575
AM
2417 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2418 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
252b5132 2419 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
bf67003b 2420 goto fail;
252b5132 2421
a4bcd733
AM
2422 /* If this is an alloc section in an executable or shared
2423 library, or the reloc section does not use the main symbol
2424 table we don't treat it as a reloc section. BFD can't
2425 adequately represent such a section, so at least for now,
2426 we don't try. We just present it as a normal section. We
2427 also can't use it as a reloc section if it points to the
2428 null section, an invalid section, another reloc section, or
2429 its sh_link points to the null section. */
2430 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2431 && (hdr->sh_flags & SHF_ALLOC) != 0)
83b89087 2432 || hdr->sh_link == SHN_UNDEF
a4bcd733 2433 || hdr->sh_link != elf_onesymtab (abfd)
185ef66d 2434 || hdr->sh_info == SHN_UNDEF
185ef66d
AM
2435 || hdr->sh_info >= num_sec
2436 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2437 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
bf67003b
NC
2438 {
2439 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2440 shindex);
2441 goto success;
2442 }
252b5132
RH
2443
2444 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
bf67003b
NC
2445 goto fail;
2446
252b5132
RH
2447 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2448 if (target_sect == NULL)
bf67003b 2449 goto fail;
252b5132 2450
d4730f92
BS
2451 esdt = elf_section_data (target_sect);
2452 if (hdr->sh_type == SHT_RELA)
2453 p_hdr = &esdt->rela.hdr;
252b5132 2454 else
d4730f92
BS
2455 p_hdr = &esdt->rel.hdr;
2456
a7ba3896
NC
2457 /* PR 17512: file: 0b4f81b7.
2458 Also see PR 24456, for a file which deliberately has two reloc
2459 sections. */
06614111 2460 if (*p_hdr != NULL)
a7ba3896
NC
2461 {
2462 _bfd_error_handler
2463 /* xgettext:c-format */
2464 (_("%pB: warning: multiple relocation sections for section %pA \
2465found - ignoring all but the first"),
2466 abfd, target_sect);
2467 goto success;
2468 }
ef53be89 2469 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
d4730f92 2470 if (hdr2 == NULL)
bf67003b 2471 goto fail;
252b5132 2472 *hdr2 = *hdr;
d4730f92 2473 *p_hdr = hdr2;
252b5132 2474 elf_elfsections (abfd)[shindex] = hdr2;
056bafd4
MR
2475 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2476 * bed->s->int_rels_per_ext_rel);
252b5132
RH
2477 target_sect->flags |= SEC_RELOC;
2478 target_sect->relocation = NULL;
2479 target_sect->rel_filepos = hdr->sh_offset;
bf572ba0
MM
2480 /* In the section to which the relocations apply, mark whether
2481 its relocations are of the REL or RELA variety. */
72730e0c 2482 if (hdr->sh_size != 0)
d4730f92
BS
2483 {
2484 if (hdr->sh_type == SHT_RELA)
2485 target_sect->use_rela_p = 1;
2486 }
252b5132 2487 abfd->flags |= HAS_RELOC;
bf67003b 2488 goto success;
252b5132 2489 }
252b5132
RH
2490
2491 case SHT_GNU_verdef:
2492 elf_dynverdef (abfd) = shindex;
2493 elf_tdata (abfd)->dynverdef_hdr = *hdr;
bf67003b
NC
2494 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2495 goto success;
252b5132
RH
2496
2497 case SHT_GNU_versym:
a50b2160 2498 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
bf67003b
NC
2499 goto fail;
2500
252b5132
RH
2501 elf_dynversym (abfd) = shindex;
2502 elf_tdata (abfd)->dynversym_hdr = *hdr;
bf67003b
NC
2503 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2504 goto success;
252b5132
RH
2505
2506 case SHT_GNU_verneed:
2507 elf_dynverref (abfd) = shindex;
2508 elf_tdata (abfd)->dynverref_hdr = *hdr;
bf67003b
NC
2509 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2510 goto success;
252b5132
RH
2511
2512 case SHT_SHLIB:
bf67003b 2513 goto success;
252b5132 2514
dbb410c3 2515 case SHT_GROUP:
44534af3 2516 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
bf67003b
NC
2517 goto fail;
2518
6dc132d9 2519 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2520 goto fail;
2521
bf67003b 2522 goto success;
dbb410c3 2523
252b5132 2524 default:
104d59d1
JM
2525 /* Possibly an attributes section. */
2526 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2527 || hdr->sh_type == bed->obj_attrs_section_type)
2528 {
2529 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2530 goto fail;
104d59d1 2531 _bfd_elf_parse_attributes (abfd, hdr);
bf67003b 2532 goto success;
104d59d1
JM
2533 }
2534
252b5132 2535 /* Check for any processor-specific section types. */
3eb70a79 2536 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2537 goto success;
3eb70a79
L
2538
2539 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2540 {
2541 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2542 /* FIXME: How to properly handle allocated section reserved
2543 for applications? */
4eca0228 2544 _bfd_error_handler
695344c0 2545 /* xgettext:c-format */
871b3ab2 2546 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2547 abfd, hdr->sh_type, name);
3eb70a79 2548 else
bf67003b
NC
2549 {
2550 /* Allow sections reserved for applications. */
2551 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2552 shindex);
2553 goto success;
2554 }
3eb70a79
L
2555 }
2556 else if (hdr->sh_type >= SHT_LOPROC
2557 && hdr->sh_type <= SHT_HIPROC)
2558 /* FIXME: We should handle this section. */
4eca0228 2559 _bfd_error_handler
695344c0 2560 /* xgettext:c-format */
871b3ab2 2561 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2562 abfd, hdr->sh_type, name);
3eb70a79 2563 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
ff15b240
NC
2564 {
2565 /* Unrecognised OS-specific sections. */
2566 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2567 /* SHF_OS_NONCONFORMING indicates that special knowledge is
08a40648 2568 required to correctly process the section and the file should
ff15b240 2569 be rejected with an error message. */
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);
ff15b240 2574 else
bf67003b
NC
2575 {
2576 /* Otherwise it should be processed. */
2577 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2578 goto success;
2579 }
ff15b240 2580 }
3eb70a79
L
2581 else
2582 /* FIXME: We should handle this section. */
4eca0228 2583 _bfd_error_handler
695344c0 2584 /* xgettext:c-format */
871b3ab2 2585 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2586 abfd, hdr->sh_type, name);
3eb70a79 2587
bf67003b 2588 goto fail;
252b5132
RH
2589 }
2590
bf67003b
NC
2591 fail:
2592 ret = FALSE;
2593 success:
e5b470e2 2594 if (sections_being_created && sections_being_created_abfd == abfd)
bf67003b
NC
2595 sections_being_created [shindex] = FALSE;
2596 if (-- nesting == 0)
5a4b0ccc
NC
2597 {
2598 sections_being_created = NULL;
2599 sections_being_created_abfd = abfd;
2600 }
bf67003b 2601 return ret;
252b5132
RH
2602}
2603
87d72d41 2604/* Return the local symbol specified by ABFD, R_SYMNDX. */
ec338859 2605
87d72d41
AM
2606Elf_Internal_Sym *
2607bfd_sym_from_r_symndx (struct sym_cache *cache,
2608 bfd *abfd,
2609 unsigned long r_symndx)
ec338859 2610{
ec338859
AM
2611 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2612
a5d1b3b5
AM
2613 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2614 {
2615 Elf_Internal_Shdr *symtab_hdr;
2616 unsigned char esym[sizeof (Elf64_External_Sym)];
2617 Elf_External_Sym_Shndx eshndx;
ec338859 2618
a5d1b3b5
AM
2619 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2620 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
87d72d41 2621 &cache->sym[ent], esym, &eshndx) == NULL)
a5d1b3b5 2622 return NULL;
9ad5cbcf 2623
a5d1b3b5
AM
2624 if (cache->abfd != abfd)
2625 {
2626 memset (cache->indx, -1, sizeof (cache->indx));
2627 cache->abfd = abfd;
2628 }
2629 cache->indx[ent] = r_symndx;
ec338859 2630 }
a5d1b3b5 2631
87d72d41 2632 return &cache->sym[ent];
ec338859
AM
2633}
2634
252b5132
RH
2635/* Given an ELF section number, retrieve the corresponding BFD
2636 section. */
2637
2638asection *
91d6fa6a 2639bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
252b5132 2640{
91d6fa6a 2641 if (sec_index >= elf_numsections (abfd))
252b5132 2642 return NULL;
91d6fa6a 2643 return elf_elfsections (abfd)[sec_index]->bfd_section;
252b5132
RH
2644}
2645
b35d266b 2646static const struct bfd_elf_special_section special_sections_b[] =
2f89ff8d 2647{
0112cd26 2648 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2649 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2650};
2651
b35d266b 2652static const struct bfd_elf_special_section special_sections_c[] =
7f4d3958 2653{
0112cd26 2654 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
1ff6de03 2655 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2656 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2657};
2658
b35d266b 2659static const struct bfd_elf_special_section special_sections_d[] =
7f4d3958 2660{
07d6d2b8
AM
2661 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2662 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
a9a72a65
DE
2663 /* There are more DWARF sections than these, but they needn't be added here
2664 unless you have to cope with broken compilers that don't emit section
2665 attributes or you want to help the user writing assembler. */
07d6d2b8
AM
2666 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2667 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2668 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2669 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
0112cd26 2670 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2671 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2672 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2673 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2674 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2675};
2676
b35d266b 2677static const struct bfd_elf_special_section special_sections_f[] =
7f4d3958 2678{
07d6d2b8 2679 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2680 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2681 { NULL, 0 , 0, 0, 0 }
7f4d3958
L
2682};
2683
b35d266b 2684static const struct bfd_elf_special_section special_sections_g[] =
7f4d3958 2685{
0112cd26 2686 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2687 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2688 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2689 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
0112cd26
NC
2690 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2691 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
07d6d2b8
AM
2692 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2693 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2694 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2695 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2696};
2697
b35d266b 2698static const struct bfd_elf_special_section special_sections_h[] =
7f4d3958 2699{
07d6d2b8
AM
2700 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2701 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2702};
2703
b35d266b 2704static const struct bfd_elf_special_section special_sections_i[] =
7f4d3958 2705{
07d6d2b8 2706 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2707 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2708 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2709 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2710};
2711
b35d266b 2712static const struct bfd_elf_special_section special_sections_l[] =
7f4d3958 2713{
0112cd26 2714 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2715 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2716};
2717
b35d266b 2718static const struct bfd_elf_special_section special_sections_n[] =
7f4d3958 2719{
0112cd26 2720 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2721 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2722 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2723};
2724
b35d266b 2725static const struct bfd_elf_special_section special_sections_p[] =
7f4d3958 2726{
6f9dbcd4 2727 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2728 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2729 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2730};
2731
b35d266b 2732static const struct bfd_elf_special_section special_sections_r[] =
7f4d3958 2733{
0112cd26
NC
2734 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2735 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
07d6d2b8
AM
2736 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2737 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2738 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2739};
2740
b35d266b 2741static const struct bfd_elf_special_section special_sections_s[] =
7f4d3958 2742{
0112cd26
NC
2743 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2744 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2745 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
60ff4dc4
HPN
2746 /* See struct bfd_elf_special_section declaration for the semantics of
2747 this special case where .prefix_length != strlen (.prefix). */
2748 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
07d6d2b8 2749 { NULL, 0, 0, 0, 0 }
2f89ff8d
L
2750};
2751
b35d266b 2752static const struct bfd_elf_special_section special_sections_t[] =
7f4d3958 2753{
07d6d2b8
AM
2754 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2755 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
0112cd26 2756 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
07d6d2b8 2757 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2758};
2759
1b315056
CS
2760static const struct bfd_elf_special_section special_sections_z[] =
2761{
07d6d2b8
AM
2762 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2763 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
1b315056
CS
2764 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2765 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2766 { NULL, 0, 0, 0, 0 }
1b315056
CS
2767};
2768
e4c93b56 2769static const struct bfd_elf_special_section * const special_sections[] =
7f4d3958 2770{
7f4d3958 2771 special_sections_b, /* 'b' */
98ece1b3 2772 special_sections_c, /* 'c' */
7f4d3958
L
2773 special_sections_d, /* 'd' */
2774 NULL, /* 'e' */
2775 special_sections_f, /* 'f' */
2776 special_sections_g, /* 'g' */
2777 special_sections_h, /* 'h' */
2778 special_sections_i, /* 'i' */
2779 NULL, /* 'j' */
2780 NULL, /* 'k' */
2781 special_sections_l, /* 'l' */
2782 NULL, /* 'm' */
2783 special_sections_n, /* 'n' */
2784 NULL, /* 'o' */
2785 special_sections_p, /* 'p' */
2786 NULL, /* 'q' */
2787 special_sections_r, /* 'r' */
2788 special_sections_s, /* 's' */
2789 special_sections_t, /* 't' */
1b315056
CS
2790 NULL, /* 'u' */
2791 NULL, /* 'v' */
2792 NULL, /* 'w' */
2793 NULL, /* 'x' */
2794 NULL, /* 'y' */
2795 special_sections_z /* 'z' */
7f4d3958
L
2796};
2797
551b43fd
AM
2798const struct bfd_elf_special_section *
2799_bfd_elf_get_special_section (const char *name,
2800 const struct bfd_elf_special_section *spec,
2801 unsigned int rela)
2f89ff8d
L
2802{
2803 int i;
7f4d3958 2804 int len;
7f4d3958 2805
551b43fd 2806 len = strlen (name);
7f4d3958 2807
551b43fd 2808 for (i = 0; spec[i].prefix != NULL; i++)
7dcb9820
AM
2809 {
2810 int suffix_len;
551b43fd 2811 int prefix_len = spec[i].prefix_length;
7dcb9820
AM
2812
2813 if (len < prefix_len)
2814 continue;
551b43fd 2815 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
7dcb9820
AM
2816 continue;
2817
551b43fd 2818 suffix_len = spec[i].suffix_length;
7dcb9820
AM
2819 if (suffix_len <= 0)
2820 {
2821 if (name[prefix_len] != 0)
2822 {
2823 if (suffix_len == 0)
2824 continue;
2825 if (name[prefix_len] != '.'
2826 && (suffix_len == -2
551b43fd 2827 || (rela && spec[i].type == SHT_REL)))
7dcb9820
AM
2828 continue;
2829 }
2830 }
2831 else
2832 {
2833 if (len < prefix_len + suffix_len)
2834 continue;
2835 if (memcmp (name + len - suffix_len,
551b43fd 2836 spec[i].prefix + prefix_len,
7dcb9820
AM
2837 suffix_len) != 0)
2838 continue;
2839 }
551b43fd 2840 return &spec[i];
7dcb9820 2841 }
2f89ff8d
L
2842
2843 return NULL;
2844}
2845
7dcb9820 2846const struct bfd_elf_special_section *
29ef7005 2847_bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2f89ff8d 2848{
551b43fd
AM
2849 int i;
2850 const struct bfd_elf_special_section *spec;
29ef7005 2851 const struct elf_backend_data *bed;
2f89ff8d
L
2852
2853 /* See if this is one of the special sections. */
551b43fd
AM
2854 if (sec->name == NULL)
2855 return NULL;
2f89ff8d 2856
29ef7005
L
2857 bed = get_elf_backend_data (abfd);
2858 spec = bed->special_sections;
2859 if (spec)
2860 {
2861 spec = _bfd_elf_get_special_section (sec->name,
2862 bed->special_sections,
2863 sec->use_rela_p);
2864 if (spec != NULL)
2865 return spec;
2866 }
2867
551b43fd
AM
2868 if (sec->name[0] != '.')
2869 return NULL;
2f89ff8d 2870
551b43fd 2871 i = sec->name[1] - 'b';
1b315056 2872 if (i < 0 || i > 'z' - 'b')
551b43fd
AM
2873 return NULL;
2874
2875 spec = special_sections[i];
2f89ff8d 2876
551b43fd
AM
2877 if (spec == NULL)
2878 return NULL;
2879
2880 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2f89ff8d
L
2881}
2882
b34976b6 2883bfd_boolean
217aa764 2884_bfd_elf_new_section_hook (bfd *abfd, asection *sec)
252b5132
RH
2885{
2886 struct bfd_elf_section_data *sdata;
551b43fd 2887 const struct elf_backend_data *bed;
7dcb9820 2888 const struct bfd_elf_special_section *ssect;
252b5132 2889
f0abc2a1
AM
2890 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2891 if (sdata == NULL)
2892 {
a50b1753 2893 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
07d6d2b8 2894 sizeof (*sdata));
f0abc2a1
AM
2895 if (sdata == NULL)
2896 return FALSE;
217aa764 2897 sec->used_by_bfd = sdata;
f0abc2a1 2898 }
bf572ba0 2899
551b43fd
AM
2900 /* Indicate whether or not this section should use RELA relocations. */
2901 bed = get_elf_backend_data (abfd);
2902 sec->use_rela_p = bed->default_use_rela_p;
2903
e843e0f8
L
2904 /* When we read a file, we don't need to set ELF section type and
2905 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2906 anyway. We will set ELF section type and flags for all linker
2907 created sections. If user specifies BFD section flags, we will
2908 set ELF section type and flags based on BFD section flags in
02ecc8e9
L
2909 elf_fake_sections. Special handling for .init_array/.fini_array
2910 output sections since they may contain .ctors/.dtors input
2911 sections. We don't want _bfd_elf_init_private_section_data to
2912 copy ELF section type from .ctors/.dtors input sections. */
2913 if (abfd->direction != read_direction
3496cb2a 2914 || (sec->flags & SEC_LINKER_CREATED) != 0)
2f89ff8d 2915 {
551b43fd 2916 ssect = (*bed->get_sec_type_attr) (abfd, sec);
02ecc8e9
L
2917 if (ssect != NULL
2918 && (!sec->flags
2919 || (sec->flags & SEC_LINKER_CREATED) != 0
2920 || ssect->type == SHT_INIT_ARRAY
2921 || ssect->type == SHT_FINI_ARRAY))
a31501e9
L
2922 {
2923 elf_section_type (sec) = ssect->type;
2924 elf_section_flags (sec) = ssect->attr;
2925 }
2f89ff8d
L
2926 }
2927
f592407e 2928 return _bfd_generic_new_section_hook (abfd, sec);
252b5132
RH
2929}
2930
2931/* Create a new bfd section from an ELF program header.
2932
2933 Since program segments have no names, we generate a synthetic name
2934 of the form segment<NUM>, where NUM is generally the index in the
2935 program header table. For segments that are split (see below) we
2936 generate the names segment<NUM>a and segment<NUM>b.
2937
2938 Note that some program segments may have a file size that is different than
2939 (less than) the memory size. All this means is that at execution the
2940 system must allocate the amount of memory specified by the memory size,
2941 but only initialize it with the first "file size" bytes read from the
2942 file. This would occur for example, with program segments consisting
2943 of combined data+bss.
2944
2945 To handle the above situation, this routine generates TWO bfd sections
2946 for the single program segment. The first has the length specified by
2947 the file size of the segment, and the second has the length specified
2948 by the difference between the two sizes. In effect, the segment is split
d5191d0c 2949 into its initialized and uninitialized parts.
252b5132
RH
2950
2951 */
2952
b34976b6 2953bfd_boolean
217aa764
AM
2954_bfd_elf_make_section_from_phdr (bfd *abfd,
2955 Elf_Internal_Phdr *hdr,
91d6fa6a 2956 int hdr_index,
a50b1753 2957 const char *type_name)
252b5132
RH
2958{
2959 asection *newsect;
2960 char *name;
2961 char namebuf[64];
d4c88bbb 2962 size_t len;
252b5132
RH
2963 int split;
2964
2965 split = ((hdr->p_memsz > 0)
2966 && (hdr->p_filesz > 0)
2967 && (hdr->p_memsz > hdr->p_filesz));
d5191d0c
AM
2968
2969 if (hdr->p_filesz > 0)
252b5132 2970 {
91d6fa6a 2971 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
d5191d0c 2972 len = strlen (namebuf) + 1;
a50b1753 2973 name = (char *) bfd_alloc (abfd, len);
d5191d0c
AM
2974 if (!name)
2975 return FALSE;
2976 memcpy (name, namebuf, len);
2977 newsect = bfd_make_section (abfd, name);
2978 if (newsect == NULL)
2979 return FALSE;
2980 newsect->vma = hdr->p_vaddr;
2981 newsect->lma = hdr->p_paddr;
2982 newsect->size = hdr->p_filesz;
2983 newsect->filepos = hdr->p_offset;
2984 newsect->flags |= SEC_HAS_CONTENTS;
2985 newsect->alignment_power = bfd_log2 (hdr->p_align);
2986 if (hdr->p_type == PT_LOAD)
252b5132 2987 {
d5191d0c
AM
2988 newsect->flags |= SEC_ALLOC;
2989 newsect->flags |= SEC_LOAD;
2990 if (hdr->p_flags & PF_X)
2991 {
2992 /* FIXME: all we known is that it has execute PERMISSION,
2993 may be data. */
2994 newsect->flags |= SEC_CODE;
2995 }
2996 }
2997 if (!(hdr->p_flags & PF_W))
2998 {
2999 newsect->flags |= SEC_READONLY;
252b5132 3000 }
252b5132
RH
3001 }
3002
d5191d0c 3003 if (hdr->p_memsz > hdr->p_filesz)
252b5132 3004 {
d5191d0c
AM
3005 bfd_vma align;
3006
91d6fa6a 3007 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
d4c88bbb 3008 len = strlen (namebuf) + 1;
a50b1753 3009 name = (char *) bfd_alloc (abfd, len);
252b5132 3010 if (!name)
b34976b6 3011 return FALSE;
d4c88bbb 3012 memcpy (name, namebuf, len);
252b5132
RH
3013 newsect = bfd_make_section (abfd, name);
3014 if (newsect == NULL)
b34976b6 3015 return FALSE;
252b5132
RH
3016 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
3017 newsect->lma = hdr->p_paddr + hdr->p_filesz;
eea6121a 3018 newsect->size = hdr->p_memsz - hdr->p_filesz;
d5191d0c
AM
3019 newsect->filepos = hdr->p_offset + hdr->p_filesz;
3020 align = newsect->vma & -newsect->vma;
3021 if (align == 0 || align > hdr->p_align)
3022 align = hdr->p_align;
3023 newsect->alignment_power = bfd_log2 (align);
252b5132
RH
3024 if (hdr->p_type == PT_LOAD)
3025 {
d5191d0c
AM
3026 /* Hack for gdb. Segments that have not been modified do
3027 not have their contents written to a core file, on the
3028 assumption that a debugger can find the contents in the
3029 executable. We flag this case by setting the fake
3030 section size to zero. Note that "real" bss sections will
3031 always have their contents dumped to the core file. */
3032 if (bfd_get_format (abfd) == bfd_core)
3033 newsect->size = 0;
252b5132
RH
3034 newsect->flags |= SEC_ALLOC;
3035 if (hdr->p_flags & PF_X)
3036 newsect->flags |= SEC_CODE;
3037 }
3038 if (!(hdr->p_flags & PF_W))
3039 newsect->flags |= SEC_READONLY;
3040 }
3041
b34976b6 3042 return TRUE;
252b5132
RH
3043}
3044
864619bb
KS
3045static bfd_boolean
3046_bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3047{
3048 /* The return value is ignored. Build-ids are considered optional. */
3049 if (templ->xvec->flavour == bfd_target_elf_flavour)
3050 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3051 (templ, offset);
3052 return FALSE;
3053}
3054
b34976b6 3055bfd_boolean
91d6fa6a 3056bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
20cfcaae 3057{
9c5bfbb7 3058 const struct elf_backend_data *bed;
20cfcaae
NC
3059
3060 switch (hdr->p_type)
3061 {
3062 case PT_NULL:
91d6fa6a 3063 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
20cfcaae
NC
3064
3065 case PT_LOAD:
864619bb
KS
3066 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
3067 return FALSE;
3068 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3069 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
3070 return TRUE;
20cfcaae
NC
3071
3072 case PT_DYNAMIC:
91d6fa6a 3073 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
20cfcaae
NC
3074
3075 case PT_INTERP:
91d6fa6a 3076 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
20cfcaae
NC
3077
3078 case PT_NOTE:
91d6fa6a 3079 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
b34976b6 3080 return FALSE;
276da9b3
L
3081 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3082 hdr->p_align))
b34976b6
AM
3083 return FALSE;
3084 return TRUE;
20cfcaae
NC
3085
3086 case PT_SHLIB:
91d6fa6a 3087 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
20cfcaae
NC
3088
3089 case PT_PHDR:
91d6fa6a 3090 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
20cfcaae 3091
811072d8 3092 case PT_GNU_EH_FRAME:
91d6fa6a 3093 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
811072d8
RM
3094 "eh_frame_hdr");
3095
2b05f1b7 3096 case PT_GNU_STACK:
91d6fa6a 3097 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
9ee5e499 3098
8c37241b 3099 case PT_GNU_RELRO:
91d6fa6a 3100 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
8c37241b 3101
20cfcaae 3102 default:
8c1acd09 3103 /* Check for any processor-specific program segment types. */
20cfcaae 3104 bed = get_elf_backend_data (abfd);
91d6fa6a 3105 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
20cfcaae
NC
3106 }
3107}
3108
d4730f92
BS
3109/* Return the REL_HDR for SEC, assuming there is only a single one, either
3110 REL or RELA. */
3111
3112Elf_Internal_Shdr *
3113_bfd_elf_single_rel_hdr (asection *sec)
3114{
3115 if (elf_section_data (sec)->rel.hdr)
3116 {
3117 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3118 return elf_section_data (sec)->rel.hdr;
3119 }
3120 else
3121 return elf_section_data (sec)->rela.hdr;
3122}
3123
3e19fb8f
L
3124static bfd_boolean
3125_bfd_elf_set_reloc_sh_name (bfd *abfd,
3126 Elf_Internal_Shdr *rel_hdr,
3127 const char *sec_name,
3128 bfd_boolean use_rela_p)
3129{
3130 char *name = (char *) bfd_alloc (abfd,
3131 sizeof ".rela" + strlen (sec_name));
3132 if (name == NULL)
3133 return FALSE;
3134
3135 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3136 rel_hdr->sh_name =
3137 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3138 FALSE);
3139 if (rel_hdr->sh_name == (unsigned int) -1)
3140 return FALSE;
3141
3142 return TRUE;
3143}
3144
d4730f92
BS
3145/* Allocate and initialize a section-header for a new reloc section,
3146 containing relocations against ASECT. It is stored in RELDATA. If
3147 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3148 relocations. */
23bc299b 3149
5d13b3b3 3150static bfd_boolean
217aa764 3151_bfd_elf_init_reloc_shdr (bfd *abfd,
d4730f92 3152 struct bfd_elf_section_reloc_data *reldata,
f6fe1ccd 3153 const char *sec_name,
3e19fb8f
L
3154 bfd_boolean use_rela_p,
3155 bfd_boolean delay_st_name_p)
23bc299b 3156{
d4730f92 3157 Elf_Internal_Shdr *rel_hdr;
9c5bfbb7 3158 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3159
d4730f92 3160 BFD_ASSERT (reldata->hdr == NULL);
ef53be89 3161 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
d4730f92 3162 reldata->hdr = rel_hdr;
23bc299b 3163
3e19fb8f
L
3164 if (delay_st_name_p)
3165 rel_hdr->sh_name = (unsigned int) -1;
3166 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3167 use_rela_p))
b34976b6 3168 return FALSE;
23bc299b
MM
3169 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3170 rel_hdr->sh_entsize = (use_rela_p
3171 ? bed->s->sizeof_rela
3172 : bed->s->sizeof_rel);
72de5009 3173 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
28e07a05 3174 rel_hdr->sh_flags = 0;
23bc299b
MM
3175 rel_hdr->sh_addr = 0;
3176 rel_hdr->sh_size = 0;
3177 rel_hdr->sh_offset = 0;
3178
b34976b6 3179 return TRUE;
23bc299b
MM
3180}
3181
94be91de
JB
3182/* Return the default section type based on the passed in section flags. */
3183
3184int
3185bfd_elf_get_default_section_type (flagword flags)
3186{
0e41bebb 3187 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
2e76e85a 3188 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
94be91de
JB
3189 return SHT_NOBITS;
3190 return SHT_PROGBITS;
3191}
3192
d4730f92
BS
3193struct fake_section_arg
3194{
3195 struct bfd_link_info *link_info;
3196 bfd_boolean failed;
3197};
3198
252b5132
RH
3199/* Set up an ELF internal section header for a section. */
3200
252b5132 3201static void
d4730f92 3202elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
252b5132 3203{
d4730f92 3204 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
9c5bfbb7 3205 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3206 struct bfd_elf_section_data *esd = elf_section_data (asect);
252b5132 3207 Elf_Internal_Shdr *this_hdr;
0414f35b 3208 unsigned int sh_type;
0ce398f1 3209 const char *name = asect->name;
3e19fb8f 3210 bfd_boolean delay_st_name_p = FALSE;
252b5132 3211
d4730f92 3212 if (arg->failed)
252b5132
RH
3213 {
3214 /* We already failed; just get out of the bfd_map_over_sections
08a40648 3215 loop. */
252b5132
RH
3216 return;
3217 }
3218
d4730f92 3219 this_hdr = &esd->this_hdr;
252b5132 3220
f6fe1ccd 3221 if (arg->link_info)
0ce398f1 3222 {
f6fe1ccd
L
3223 /* ld: compress DWARF debug sections with names: .debug_*. */
3224 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3225 && (asect->flags & SEC_DEBUGGING)
3226 && name[1] == 'd'
3227 && name[6] == '_')
3228 {
3229 /* Set SEC_ELF_COMPRESS to indicate this section should be
3230 compressed. */
3231 asect->flags |= SEC_ELF_COMPRESS;
0ce398f1 3232
dd905818 3233 /* If this section will be compressed, delay adding section
3e19fb8f
L
3234 name to section name section after it is compressed in
3235 _bfd_elf_assign_file_positions_for_non_load. */
3236 delay_st_name_p = TRUE;
f6fe1ccd
L
3237 }
3238 }
3239 else if ((asect->flags & SEC_ELF_RENAME))
3240 {
3241 /* objcopy: rename output DWARF debug section. */
3242 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3243 {
3244 /* When we decompress or compress with SHF_COMPRESSED,
3245 convert section name from .zdebug_* to .debug_* if
3246 needed. */
3247 if (name[1] == 'z')
3248 {
3249 char *new_name = convert_zdebug_to_debug (abfd, name);
3250 if (new_name == NULL)
3251 {
3252 arg->failed = TRUE;
3253 return;
3254 }
3255 name = new_name;
3256 }
3257 }
3258 else if (asect->compress_status == COMPRESS_SECTION_DONE)
0ce398f1 3259 {
f6fe1ccd
L
3260 /* PR binutils/18087: Compression does not always make a
3261 section smaller. So only rename the section when
3262 compression has actually taken place. If input section
3263 name is .zdebug_*, we should never compress it again. */
3264 char *new_name = convert_debug_to_zdebug (abfd, name);
0ce398f1
L
3265 if (new_name == NULL)
3266 {
3267 arg->failed = TRUE;
3268 return;
3269 }
f6fe1ccd
L
3270 BFD_ASSERT (name[1] != 'z');
3271 name = new_name;
0ce398f1
L
3272 }
3273 }
3274
3e19fb8f
L
3275 if (delay_st_name_p)
3276 this_hdr->sh_name = (unsigned int) -1;
3277 else
252b5132 3278 {
3e19fb8f
L
3279 this_hdr->sh_name
3280 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3281 name, FALSE);
3282 if (this_hdr->sh_name == (unsigned int) -1)
3283 {
3284 arg->failed = TRUE;
3285 return;
3286 }
252b5132
RH
3287 }
3288
a4d8e49b 3289 /* Don't clear sh_flags. Assembler may set additional bits. */
252b5132
RH
3290
3291 if ((asect->flags & SEC_ALLOC) != 0
3292 || asect->user_set_vma)
3293 this_hdr->sh_addr = asect->vma;
3294 else
3295 this_hdr->sh_addr = 0;
3296
3297 this_hdr->sh_offset = 0;
eea6121a 3298 this_hdr->sh_size = asect->size;
252b5132 3299 this_hdr->sh_link = 0;
c86934ce
NC
3300 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3301 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3302 {
4eca0228 3303 _bfd_error_handler
695344c0 3304 /* xgettext:c-format */
9793eb77 3305 (_("%pB: error: alignment power %d of section `%pA' is too big"),
c08bb8dd 3306 abfd, asect->alignment_power, asect);
c86934ce
NC
3307 arg->failed = TRUE;
3308 return;
3309 }
72de5009 3310 this_hdr->sh_addralign = (bfd_vma) 1 << asect->alignment_power;
252b5132
RH
3311 /* The sh_entsize and sh_info fields may have been set already by
3312 copy_private_section_data. */
3313
3314 this_hdr->bfd_section = asect;
3315 this_hdr->contents = NULL;
3316
3cddba1e
L
3317 /* If the section type is unspecified, we set it based on
3318 asect->flags. */
98ece1b3
AM
3319 if ((asect->flags & SEC_GROUP) != 0)
3320 sh_type = SHT_GROUP;
98ece1b3 3321 else
94be91de 3322 sh_type = bfd_elf_get_default_section_type (asect->flags);
98ece1b3 3323
3cddba1e 3324 if (this_hdr->sh_type == SHT_NULL)
98ece1b3
AM
3325 this_hdr->sh_type = sh_type;
3326 else if (this_hdr->sh_type == SHT_NOBITS
3327 && sh_type == SHT_PROGBITS
3328 && (asect->flags & SEC_ALLOC) != 0)
3cddba1e 3329 {
98ece1b3
AM
3330 /* Warn if we are changing a NOBITS section to PROGBITS, but
3331 allow the link to proceed. This can happen when users link
3332 non-bss input sections to bss output sections, or emit data
3333 to a bss output section via a linker script. */
4eca0228 3334 _bfd_error_handler
871b3ab2 3335 (_("warning: section `%pA' type changed to PROGBITS"), asect);
98ece1b3 3336 this_hdr->sh_type = sh_type;
3cddba1e
L
3337 }
3338
2f89ff8d 3339 switch (this_hdr->sh_type)
252b5132 3340 {
2f89ff8d 3341 default:
2f89ff8d
L
3342 break;
3343
3344 case SHT_STRTAB:
2f89ff8d
L
3345 case SHT_NOTE:
3346 case SHT_NOBITS:
3347 case SHT_PROGBITS:
3348 break;
606851fb
AM
3349
3350 case SHT_INIT_ARRAY:
3351 case SHT_FINI_ARRAY:
3352 case SHT_PREINIT_ARRAY:
3353 this_hdr->sh_entsize = bed->s->arch_size / 8;
3354 break;
2f89ff8d
L
3355
3356 case SHT_HASH:
c7ac6ff8 3357 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2f89ff8d 3358 break;
5de3bf90 3359
2f89ff8d 3360 case SHT_DYNSYM:
252b5132 3361 this_hdr->sh_entsize = bed->s->sizeof_sym;
2f89ff8d
L
3362 break;
3363
3364 case SHT_DYNAMIC:
252b5132 3365 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2f89ff8d
L
3366 break;
3367
3368 case SHT_RELA:
3369 if (get_elf_backend_data (abfd)->may_use_rela_p)
3370 this_hdr->sh_entsize = bed->s->sizeof_rela;
3371 break;
3372
3373 case SHT_REL:
3374 if (get_elf_backend_data (abfd)->may_use_rel_p)
3375 this_hdr->sh_entsize = bed->s->sizeof_rel;
3376 break;
3377
3378 case SHT_GNU_versym:
252b5132 3379 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2f89ff8d
L
3380 break;
3381
3382 case SHT_GNU_verdef:
252b5132
RH
3383 this_hdr->sh_entsize = 0;
3384 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3385 cverdefs. The linker will set cverdefs, but sh_info will be
3386 zero. */
252b5132
RH
3387 if (this_hdr->sh_info == 0)
3388 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3389 else
3390 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3391 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2f89ff8d
L
3392 break;
3393
3394 case SHT_GNU_verneed:
252b5132
RH
3395 this_hdr->sh_entsize = 0;
3396 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3397 cverrefs. The linker will set cverrefs, but sh_info will be
3398 zero. */
252b5132
RH
3399 if (this_hdr->sh_info == 0)
3400 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3401 else
3402 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3403 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2f89ff8d
L
3404 break;
3405
3406 case SHT_GROUP:
1783205a 3407 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
2f89ff8d 3408 break;
fdc90cb4
JJ
3409
3410 case SHT_GNU_HASH:
3411 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3412 break;
dbb410c3 3413 }
252b5132
RH
3414
3415 if ((asect->flags & SEC_ALLOC) != 0)
3416 this_hdr->sh_flags |= SHF_ALLOC;
3417 if ((asect->flags & SEC_READONLY) == 0)
3418 this_hdr->sh_flags |= SHF_WRITE;
3419 if ((asect->flags & SEC_CODE) != 0)
3420 this_hdr->sh_flags |= SHF_EXECINSTR;
f5fa8ca2
JJ
3421 if ((asect->flags & SEC_MERGE) != 0)
3422 {
3423 this_hdr->sh_flags |= SHF_MERGE;
3424 this_hdr->sh_entsize = asect->entsize;
f5fa8ca2 3425 }
84865015
NC
3426 if ((asect->flags & SEC_STRINGS) != 0)
3427 this_hdr->sh_flags |= SHF_STRINGS;
1126897b 3428 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
dbb410c3 3429 this_hdr->sh_flags |= SHF_GROUP;
13ae64f3 3430 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
704afa60
JJ
3431 {
3432 this_hdr->sh_flags |= SHF_TLS;
3a800eb9
AM
3433 if (asect->size == 0
3434 && (asect->flags & SEC_HAS_CONTENTS) == 0)
704afa60 3435 {
3a800eb9 3436 struct bfd_link_order *o = asect->map_tail.link_order;
b34976b6 3437
704afa60 3438 this_hdr->sh_size = 0;
3a800eb9
AM
3439 if (o != NULL)
3440 {
704afa60 3441 this_hdr->sh_size = o->offset + o->size;
3a800eb9
AM
3442 if (this_hdr->sh_size != 0)
3443 this_hdr->sh_type = SHT_NOBITS;
3444 }
704afa60
JJ
3445 }
3446 }
18ae9cc1
L
3447 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3448 this_hdr->sh_flags |= SHF_EXCLUDE;
252b5132 3449
d4730f92
BS
3450 /* If the section has relocs, set up a section header for the
3451 SHT_REL[A] section. If two relocation sections are required for
3452 this section, it is up to the processor-specific back-end to
3453 create the other. */
3454 if ((asect->flags & SEC_RELOC) != 0)
3455 {
3456 /* When doing a relocatable link, create both REL and RELA sections if
3457 needed. */
3458 if (arg->link_info
3459 /* Do the normal setup if we wouldn't create any sections here. */
3460 && esd->rel.count + esd->rela.count > 0
0e1862bb
L
3461 && (bfd_link_relocatable (arg->link_info)
3462 || arg->link_info->emitrelocations))
d4730f92
BS
3463 {
3464 if (esd->rel.count && esd->rel.hdr == NULL
28e07a05 3465 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
db4677b8 3466 FALSE, delay_st_name_p))
d4730f92
BS
3467 {
3468 arg->failed = TRUE;
3469 return;
3470 }
3471 if (esd->rela.count && esd->rela.hdr == NULL
28e07a05 3472 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
db4677b8 3473 TRUE, delay_st_name_p))
d4730f92
BS
3474 {
3475 arg->failed = TRUE;
3476 return;
3477 }
3478 }
3479 else if (!_bfd_elf_init_reloc_shdr (abfd,
3480 (asect->use_rela_p
3481 ? &esd->rela : &esd->rel),
f6fe1ccd 3482 name,
3e19fb8f
L
3483 asect->use_rela_p,
3484 delay_st_name_p))
db4677b8 3485 {
d4730f92 3486 arg->failed = TRUE;
db4677b8
AM
3487 return;
3488 }
d4730f92
BS
3489 }
3490
252b5132 3491 /* Check for processor-specific section types. */
0414f35b 3492 sh_type = this_hdr->sh_type;
e1fddb6b
AO
3493 if (bed->elf_backend_fake_sections
3494 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
db4677b8
AM
3495 {
3496 arg->failed = TRUE;
3497 return;
3498 }
252b5132 3499
42bb2e33 3500 if (sh_type == SHT_NOBITS && asect->size != 0)
0414f35b
AM
3501 {
3502 /* Don't change the header type from NOBITS if we are being
42bb2e33 3503 called for objcopy --only-keep-debug. */
0414f35b
AM
3504 this_hdr->sh_type = sh_type;
3505 }
252b5132
RH
3506}
3507
bcacc0f5
AM
3508/* Fill in the contents of a SHT_GROUP section. Called from
3509 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3510 when ELF targets use the generic linker, ld. Called for ld -r
3511 from bfd_elf_final_link. */
dbb410c3 3512
1126897b 3513void
217aa764 3514bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
dbb410c3 3515{
a50b1753 3516 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
9dce4196 3517 asection *elt, *first;
dbb410c3 3518 unsigned char *loc;
b34976b6 3519 bfd_boolean gas;
dbb410c3 3520
7e4111ad
L
3521 /* Ignore linker created group section. See elfNN_ia64_object_p in
3522 elfxx-ia64.c. */
ce5aecf8
AM
3523 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3524 || sec->size == 0
dbb410c3
AM
3525 || *failedptr)
3526 return;
3527
bcacc0f5
AM
3528 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3529 {
3530 unsigned long symindx = 0;
3531
3532 /* elf_group_id will have been set up by objcopy and the
3533 generic linker. */
3534 if (elf_group_id (sec) != NULL)
3535 symindx = elf_group_id (sec)->udata.i;
1126897b 3536
bcacc0f5
AM
3537 if (symindx == 0)
3538 {
3539 /* If called from the assembler, swap_out_syms will have set up
3540 elf_section_syms. */
3541 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3542 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3543 }
3544 elf_section_data (sec)->this_hdr.sh_info = symindx;
3545 }
3546 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
1126897b 3547 {
bcacc0f5
AM
3548 /* The ELF backend linker sets sh_info to -2 when the group
3549 signature symbol is global, and thus the index can't be
3550 set until all local symbols are output. */
53720c49
AM
3551 asection *igroup;
3552 struct bfd_elf_section_data *sec_data;
3553 unsigned long symndx;
3554 unsigned long extsymoff;
bcacc0f5
AM
3555 struct elf_link_hash_entry *h;
3556
53720c49
AM
3557 /* The point of this little dance to the first SHF_GROUP section
3558 then back to the SHT_GROUP section is that this gets us to
3559 the SHT_GROUP in the input object. */
3560 igroup = elf_sec_group (elf_next_in_group (sec));
3561 sec_data = elf_section_data (igroup);
3562 symndx = sec_data->this_hdr.sh_info;
3563 extsymoff = 0;
bcacc0f5
AM
3564 if (!elf_bad_symtab (igroup->owner))
3565 {
3566 Elf_Internal_Shdr *symtab_hdr;
3567
3568 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3569 extsymoff = symtab_hdr->sh_info;
3570 }
3571 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3572 while (h->root.type == bfd_link_hash_indirect
3573 || h->root.type == bfd_link_hash_warning)
3574 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3575
3576 elf_section_data (sec)->this_hdr.sh_info = h->indx;
1126897b 3577 }
dbb410c3 3578
1126897b 3579 /* The contents won't be allocated for "ld -r" or objcopy. */
b34976b6 3580 gas = TRUE;
dbb410c3
AM
3581 if (sec->contents == NULL)
3582 {
b34976b6 3583 gas = FALSE;
a50b1753 3584 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
9dce4196
AM
3585
3586 /* Arrange for the section to be written out. */
3587 elf_section_data (sec)->this_hdr.contents = sec->contents;
dbb410c3
AM
3588 if (sec->contents == NULL)
3589 {
b34976b6 3590 *failedptr = TRUE;
dbb410c3
AM
3591 return;
3592 }
3593 }
3594
eea6121a 3595 loc = sec->contents + sec->size;
dbb410c3 3596
9dce4196
AM
3597 /* Get the pointer to the first section in the group that gas
3598 squirreled away here. objcopy arranges for this to be set to the
3599 start of the input section group. */
3600 first = elt = elf_next_in_group (sec);
dbb410c3
AM
3601
3602 /* First element is a flag word. Rest of section is elf section
3603 indices for all the sections of the group. Write them backwards
3604 just to keep the group in the same order as given in .section
3605 directives, not that it matters. */
3606 while (elt != NULL)
3607 {
9dce4196 3608 asection *s;
9dce4196 3609
9dce4196 3610 s = elt;
415f38a6
AM
3611 if (!gas)
3612 s = s->output_section;
3613 if (s != NULL
3614 && !bfd_is_abs_section (s))
01e1a5bc 3615 {
db4677b8 3616 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
28e07a05
AM
3617 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3618
3619 if (elf_sec->rel.hdr != NULL
3620 && (gas
3621 || (input_elf_sec->rel.hdr != NULL
3622 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3623 {
28e07a05 3624 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3625 loc -= 4;
3626 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3627 }
28e07a05
AM
3628 if (elf_sec->rela.hdr != NULL
3629 && (gas
3630 || (input_elf_sec->rela.hdr != NULL
3631 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3632 {
28e07a05 3633 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3634 loc -= 4;
3635 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3636 }
01e1a5bc 3637 loc -= 4;
db4677b8 3638 H_PUT_32 (abfd, elf_sec->this_idx, loc);
01e1a5bc 3639 }
945906ff 3640 elt = elf_next_in_group (elt);
9dce4196
AM
3641 if (elt == first)
3642 break;
dbb410c3
AM
3643 }
3644
7bdf4127
AB
3645 loc -= 4;
3646 BFD_ASSERT (loc == sec->contents);
dbb410c3 3647
9dce4196 3648 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
dbb410c3
AM
3649}
3650
bce964aa
AM
3651/* Given NAME, the name of a relocation section stripped of its
3652 .rel/.rela prefix, return the section in ABFD to which the
3653 relocations apply. */
bd53a53a
L
3654
3655asection *
bce964aa
AM
3656_bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3657{
3658 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3659 section likely apply to .got.plt or .got section. */
3660 if (get_elf_backend_data (abfd)->want_got_plt
3661 && strcmp (name, ".plt") == 0)
3662 {
3663 asection *sec;
3664
3665 name = ".got.plt";
3666 sec = bfd_get_section_by_name (abfd, name);
3667 if (sec != NULL)
3668 return sec;
3669 name = ".got";
3670 }
3671
3672 return bfd_get_section_by_name (abfd, name);
3673}
3674
3675/* Return the section to which RELOC_SEC applies. */
3676
3677static asection *
3678elf_get_reloc_section (asection *reloc_sec)
bd53a53a
L
3679{
3680 const char *name;
3681 unsigned int type;
3682 bfd *abfd;
bce964aa 3683 const struct elf_backend_data *bed;
bd53a53a
L
3684
3685 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3686 if (type != SHT_REL && type != SHT_RELA)
3687 return NULL;
3688
3689 /* We look up the section the relocs apply to by name. */
3690 name = reloc_sec->name;
bce964aa
AM
3691 if (strncmp (name, ".rel", 4) != 0)
3692 return NULL;
3693 name += 4;
3694 if (type == SHT_RELA && *name++ != 'a')
3695 return NULL;
bd53a53a 3696
bd53a53a 3697 abfd = reloc_sec->owner;
bce964aa
AM
3698 bed = get_elf_backend_data (abfd);
3699 return bed->get_reloc_section (abfd, name);
bd53a53a
L
3700}
3701
252b5132
RH
3702/* Assign all ELF section numbers. The dummy first section is handled here
3703 too. The link/info pointers for the standard section types are filled
3704 in here too, while we're at it. */
3705
b34976b6 3706static bfd_boolean
da9f89d4 3707assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
252b5132
RH
3708{
3709 struct elf_obj_tdata *t = elf_tdata (abfd);
3710 asection *sec;
3e19fb8f 3711 unsigned int section_number;
252b5132 3712 Elf_Internal_Shdr **i_shdrp;
47cc2cf5 3713 struct bfd_elf_section_data *d;
3516e984 3714 bfd_boolean need_symtab;
446f7ed5 3715 size_t amt;
252b5132
RH
3716
3717 section_number = 1;
3718
2b0f7ef9
JJ
3719 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3720
da9f89d4 3721 /* SHT_GROUP sections are in relocatable files only. */
7bdf4127 3722 if (link_info == NULL || !link_info->resolve_section_groups)
252b5132 3723 {
ef53be89 3724 size_t reloc_count = 0;
14f2c699 3725
da9f89d4 3726 /* Put SHT_GROUP sections first. */
04dd1667 3727 for (sec = abfd->sections; sec != NULL; sec = sec->next)
47cc2cf5 3728 {
5daa8fe7 3729 d = elf_section_data (sec);
da9f89d4
L
3730
3731 if (d->this_hdr.sh_type == SHT_GROUP)
08a40648 3732 {
5daa8fe7 3733 if (sec->flags & SEC_LINKER_CREATED)
da9f89d4
L
3734 {
3735 /* Remove the linker created SHT_GROUP sections. */
5daa8fe7 3736 bfd_section_list_remove (abfd, sec);
da9f89d4 3737 abfd->section_count--;
da9f89d4 3738 }
08a40648 3739 else
4fbb74a6 3740 d->this_idx = section_number++;
da9f89d4 3741 }
14f2c699
L
3742
3743 /* Count relocations. */
3744 reloc_count += sec->reloc_count;
47cc2cf5 3745 }
14f2c699
L
3746
3747 /* Clear HAS_RELOC if there are no relocations. */
3748 if (reloc_count == 0)
3749 abfd->flags &= ~HAS_RELOC;
47cc2cf5
PB
3750 }
3751
3752 for (sec = abfd->sections; sec; sec = sec->next)
3753 {
3754 d = elf_section_data (sec);
3755
3756 if (d->this_hdr.sh_type != SHT_GROUP)
4fbb74a6 3757 d->this_idx = section_number++;
3e19fb8f
L
3758 if (d->this_hdr.sh_name != (unsigned int) -1)
3759 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
d4730f92 3760 if (d->rel.hdr)
2b0f7ef9 3761 {
d4730f92 3762 d->rel.idx = section_number++;
3e19fb8f
L
3763 if (d->rel.hdr->sh_name != (unsigned int) -1)
3764 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
2b0f7ef9 3765 }
d4730f92
BS
3766 else
3767 d->rel.idx = 0;
23bc299b 3768
d4730f92 3769 if (d->rela.hdr)
2b0f7ef9 3770 {
d4730f92 3771 d->rela.idx = section_number++;
3e19fb8f
L
3772 if (d->rela.hdr->sh_name != (unsigned int) -1)
3773 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
2b0f7ef9 3774 }
23bc299b 3775 else
d4730f92 3776 d->rela.idx = 0;
252b5132
RH
3777 }
3778
3516e984
L
3779 need_symtab = (bfd_get_symcount (abfd) > 0
3780 || (link_info == NULL
3781 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3782 == HAS_RELOC)));
3783 if (need_symtab)
252b5132 3784 {
12bd6957 3785 elf_onesymtab (abfd) = section_number++;
2b0f7ef9 3786 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
4fbb74a6 3787 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
9ad5cbcf 3788 {
7a6e0d89 3789 elf_section_list *entry;
6a40cf0c
NC
3790
3791 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3792
7a6e0d89 3793 entry = bfd_zalloc (abfd, sizeof (*entry));
6a40cf0c
NC
3794 entry->ndx = section_number++;
3795 elf_symtab_shndx_list (abfd) = entry;
3796 entry->hdr.sh_name
9ad5cbcf 3797 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
b34976b6 3798 ".symtab_shndx", FALSE);
6a40cf0c 3799 if (entry->hdr.sh_name == (unsigned int) -1)
b34976b6 3800 return FALSE;
9ad5cbcf 3801 }
12bd6957 3802 elf_strtab_sec (abfd) = section_number++;
2b0f7ef9 3803 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
252b5132
RH
3804 }
3805
dd905818
NC
3806 elf_shstrtab_sec (abfd) = section_number++;
3807 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3808 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3809
1c52a645
L
3810 if (section_number >= SHN_LORESERVE)
3811 {
695344c0 3812 /* xgettext:c-format */
871b3ab2 3813 _bfd_error_handler (_("%pB: too many sections: %u"),
1c52a645
L
3814 abfd, section_number);
3815 return FALSE;
3816 }
3817
9ad5cbcf 3818 elf_numsections (abfd) = section_number;
252b5132
RH
3819 elf_elfheader (abfd)->e_shnum = section_number;
3820
3821 /* Set up the list of section header pointers, in agreement with the
3822 indices. */
446f7ed5
AM
3823 amt = section_number * sizeof (Elf_Internal_Shdr *);
3824 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
252b5132 3825 if (i_shdrp == NULL)
b34976b6 3826 return FALSE;
252b5132 3827
a50b1753 3828 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
07d6d2b8 3829 sizeof (Elf_Internal_Shdr));
252b5132
RH
3830 if (i_shdrp[0] == NULL)
3831 {
3832 bfd_release (abfd, i_shdrp);
b34976b6 3833 return FALSE;
252b5132 3834 }
252b5132
RH
3835
3836 elf_elfsections (abfd) = i_shdrp;
3837
12bd6957 3838 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3516e984 3839 if (need_symtab)
252b5132 3840 {
12bd6957 3841 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
4fbb74a6 3842 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
9ad5cbcf 3843 {
6a40cf0c
NC
3844 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3845 BFD_ASSERT (entry != NULL);
3846 i_shdrp[entry->ndx] = & entry->hdr;
3847 entry->hdr.sh_link = elf_onesymtab (abfd);
9ad5cbcf 3848 }
12bd6957
AM
3849 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3850 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
252b5132 3851 }
38ce5b11 3852
252b5132
RH
3853 for (sec = abfd->sections; sec; sec = sec->next)
3854 {
252b5132 3855 asection *s;
252b5132 3856
91d6fa6a
NC
3857 d = elf_section_data (sec);
3858
252b5132 3859 i_shdrp[d->this_idx] = &d->this_hdr;
d4730f92
BS
3860 if (d->rel.idx != 0)
3861 i_shdrp[d->rel.idx] = d->rel.hdr;
3862 if (d->rela.idx != 0)
3863 i_shdrp[d->rela.idx] = d->rela.hdr;
252b5132
RH
3864
3865 /* Fill in the sh_link and sh_info fields while we're at it. */
3866
3867 /* sh_link of a reloc section is the section index of the symbol
3868 table. sh_info is the section index of the section to which
3869 the relocation entries apply. */
d4730f92 3870 if (d->rel.idx != 0)
252b5132 3871 {
12bd6957 3872 d->rel.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3873 d->rel.hdr->sh_info = d->this_idx;
9ef5d938 3874 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
252b5132 3875 }
d4730f92 3876 if (d->rela.idx != 0)
23bc299b 3877 {
12bd6957 3878 d->rela.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3879 d->rela.hdr->sh_info = d->this_idx;
9ef5d938 3880 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
23bc299b 3881 }
252b5132 3882
38ce5b11
L
3883 /* We need to set up sh_link for SHF_LINK_ORDER. */
3884 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3885 {
3886 s = elf_linked_to_section (sec);
3887 if (s)
38ce5b11 3888 {
f2876037 3889 /* elf_linked_to_section points to the input section. */
ccd2ec6a 3890 if (link_info != NULL)
38ce5b11 3891 {
f2876037 3892 /* Check discarded linkonce section. */
dbaa2011 3893 if (discarded_section (s))
38ce5b11 3894 {
ccd2ec6a 3895 asection *kept;
4eca0228 3896 _bfd_error_handler
695344c0 3897 /* xgettext:c-format */
871b3ab2
AM
3898 (_("%pB: sh_link of section `%pA' points to"
3899 " discarded section `%pA' of `%pB'"),
ccd2ec6a
L
3900 abfd, d->this_hdr.bfd_section,
3901 s, s->owner);
3902 /* Point to the kept section if it has the same
3903 size as the discarded one. */
c0f00686 3904 kept = _bfd_elf_check_kept_section (s, link_info);
ccd2ec6a 3905 if (kept == NULL)
185d09ad 3906 {
ccd2ec6a
L
3907 bfd_set_error (bfd_error_bad_value);
3908 return FALSE;
185d09ad 3909 }
ccd2ec6a 3910 s = kept;
38ce5b11 3911 }
e424ecc8 3912
ccd2ec6a
L
3913 s = s->output_section;
3914 BFD_ASSERT (s != NULL);
38ce5b11 3915 }
f2876037
L
3916 else
3917 {
3918 /* Handle objcopy. */
3919 if (s->output_section == NULL)
3920 {
4eca0228 3921 _bfd_error_handler
695344c0 3922 /* xgettext:c-format */
871b3ab2
AM
3923 (_("%pB: sh_link of section `%pA' points to"
3924 " removed section `%pA' of `%pB'"),
f2876037
L
3925 abfd, d->this_hdr.bfd_section, s, s->owner);
3926 bfd_set_error (bfd_error_bad_value);
3927 return FALSE;
3928 }
3929 s = s->output_section;
3930 }
ccd2ec6a
L
3931 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3932 }
3933 else
3934 {
3935 /* PR 290:
3936 The Intel C compiler generates SHT_IA_64_UNWIND with
3937 SHF_LINK_ORDER. But it doesn't set the sh_link or
3938 sh_info fields. Hence we could get the situation
08a40648 3939 where s is NULL. */
ccd2ec6a
L
3940 const struct elf_backend_data *bed
3941 = get_elf_backend_data (abfd);
3942 if (bed->link_order_error_handler)
3943 bed->link_order_error_handler
695344c0 3944 /* xgettext:c-format */
871b3ab2 3945 (_("%pB: warning: sh_link not set for section `%pA'"),
ccd2ec6a 3946 abfd, sec);
38ce5b11
L
3947 }
3948 }
3949
252b5132
RH
3950 switch (d->this_hdr.sh_type)
3951 {
3952 case SHT_REL:
3953 case SHT_RELA:
3954 /* A reloc section which we are treating as a normal BFD
3955 section. sh_link is the section index of the symbol
3956 table. sh_info is the section index of the section to
3957 which the relocation entries apply. We assume that an
3958 allocated reloc section uses the dynamic symbol table.
3959 FIXME: How can we be sure? */
3960 s = bfd_get_section_by_name (abfd, ".dynsym");
3961 if (s != NULL)
3962 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3963
bce964aa 3964 s = elf_get_reloc_section (sec);
252b5132 3965 if (s != NULL)
9ef5d938
L
3966 {
3967 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3968 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3969 }
252b5132
RH
3970 break;
3971
3972 case SHT_STRTAB:
3973 /* We assume that a section named .stab*str is a stabs
3974 string section. We look for a section with the same name
3975 but without the trailing ``str'', and set its sh_link
3976 field to point to this section. */
0112cd26 3977 if (CONST_STRNEQ (sec->name, ".stab")
252b5132
RH
3978 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3979 {
3980 size_t len;
3981 char *alc;
3982
3983 len = strlen (sec->name);
a50b1753 3984 alc = (char *) bfd_malloc (len - 2);
252b5132 3985 if (alc == NULL)
b34976b6 3986 return FALSE;
d4c88bbb 3987 memcpy (alc, sec->name, len - 3);
252b5132
RH
3988 alc[len - 3] = '\0';
3989 s = bfd_get_section_by_name (abfd, alc);
3990 free (alc);
3991 if (s != NULL)
3992 {
3993 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3994
3995 /* This is a .stab section. */
0594c12d
AM
3996 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
3997 elf_section_data (s)->this_hdr.sh_entsize
3998 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
252b5132
RH
3999 }
4000 }
4001 break;
4002
4003 case SHT_DYNAMIC:
4004 case SHT_DYNSYM:
4005 case SHT_GNU_verneed:
4006 case SHT_GNU_verdef:
4007 /* sh_link is the section header index of the string table
4008 used for the dynamic entries, or the symbol table, or the
4009 version strings. */
4010 s = bfd_get_section_by_name (abfd, ".dynstr");
4011 if (s != NULL)
4012 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4013 break;
4014
7f1204bb
JJ
4015 case SHT_GNU_LIBLIST:
4016 /* sh_link is the section header index of the prelink library
08a40648
AM
4017 list used for the dynamic entries, or the symbol table, or
4018 the version strings. */
7f1204bb
JJ
4019 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
4020 ? ".dynstr" : ".gnu.libstr");
4021 if (s != NULL)
4022 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4023 break;
4024
252b5132 4025 case SHT_HASH:
fdc90cb4 4026 case SHT_GNU_HASH:
252b5132
RH
4027 case SHT_GNU_versym:
4028 /* sh_link is the section header index of the symbol table
4029 this hash table or version table is for. */
4030 s = bfd_get_section_by_name (abfd, ".dynsym");
4031 if (s != NULL)
4032 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4033 break;
dbb410c3
AM
4034
4035 case SHT_GROUP:
12bd6957 4036 d->this_hdr.sh_link = elf_onesymtab (abfd);
252b5132
RH
4037 }
4038 }
4039
3e19fb8f
L
4040 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
4041 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
4042 debug section name from .debug_* to .zdebug_* if needed. */
4043
b34976b6 4044 return TRUE;
252b5132
RH
4045}
4046
5372391b 4047static bfd_boolean
217aa764 4048sym_is_global (bfd *abfd, asymbol *sym)
252b5132
RH
4049{
4050 /* If the backend has a special mapping, use it. */
9c5bfbb7 4051 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764
AM
4052 if (bed->elf_backend_sym_is_global)
4053 return (*bed->elf_backend_sym_is_global) (abfd, sym);
252b5132 4054
e47bf690 4055 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
e6f7f6d1
AM
4056 || bfd_is_und_section (bfd_asymbol_section (sym))
4057 || bfd_is_com_section (bfd_asymbol_section (sym)));
252b5132
RH
4058}
4059
76359541
TP
4060/* Filter global symbols of ABFD to include in the import library. All
4061 SYMCOUNT symbols of ABFD can be examined from their pointers in
4062 SYMS. Pointers of symbols to keep should be stored contiguously at
4063 the beginning of that array.
4064
4065 Returns the number of symbols to keep. */
4066
4067unsigned int
4068_bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4069 asymbol **syms, long symcount)
4070{
4071 long src_count, dst_count = 0;
4072
4073 for (src_count = 0; src_count < symcount; src_count++)
4074 {
4075 asymbol *sym = syms[src_count];
4076 char *name = (char *) bfd_asymbol_name (sym);
4077 struct bfd_link_hash_entry *h;
4078
4079 if (!sym_is_global (abfd, sym))
4080 continue;
4081
4082 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
5df1bc57
AM
4083 if (h == NULL)
4084 continue;
76359541
TP
4085 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4086 continue;
76359541
TP
4087 if (h->linker_def || h->ldscript_def)
4088 continue;
4089
4090 syms[dst_count++] = sym;
4091 }
4092
4093 syms[dst_count] = NULL;
4094
4095 return dst_count;
4096}
4097
5372391b 4098/* Don't output section symbols for sections that are not going to be
c6d8cab4 4099 output, that are duplicates or there is no BFD section. */
5372391b
AM
4100
4101static bfd_boolean
4102ignore_section_sym (bfd *abfd, asymbol *sym)
4103{
c6d8cab4
L
4104 elf_symbol_type *type_ptr;
4105
db0c309f
NC
4106 if (sym == NULL)
4107 return FALSE;
4108
c6d8cab4
L
4109 if ((sym->flags & BSF_SECTION_SYM) == 0)
4110 return FALSE;
4111
db0c309f
NC
4112 if (sym->section == NULL)
4113 return TRUE;
4114
c6d8cab4
L
4115 type_ptr = elf_symbol_from (abfd, sym);
4116 return ((type_ptr != NULL
4117 && type_ptr->internal_elf_sym.st_shndx != 0
4118 && bfd_is_abs_section (sym->section))
4119 || !(sym->section->owner == abfd
db0c309f
NC
4120 || (sym->section->output_section != NULL
4121 && sym->section->output_section->owner == abfd
2633a79c
AM
4122 && sym->section->output_offset == 0)
4123 || bfd_is_abs_section (sym->section)));
5372391b
AM
4124}
4125
2633a79c
AM
4126/* Map symbol from it's internal number to the external number, moving
4127 all local symbols to be at the head of the list. */
4128
b34976b6 4129static bfd_boolean
12bd6957 4130elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
252b5132 4131{
dc810e39 4132 unsigned int symcount = bfd_get_symcount (abfd);
252b5132
RH
4133 asymbol **syms = bfd_get_outsymbols (abfd);
4134 asymbol **sect_syms;
dc810e39
AM
4135 unsigned int num_locals = 0;
4136 unsigned int num_globals = 0;
4137 unsigned int num_locals2 = 0;
4138 unsigned int num_globals2 = 0;
7292b3ac 4139 unsigned int max_index = 0;
dc810e39 4140 unsigned int idx;
252b5132
RH
4141 asection *asect;
4142 asymbol **new_syms;
446f7ed5 4143 size_t amt;
252b5132
RH
4144
4145#ifdef DEBUG
4146 fprintf (stderr, "elf_map_symbols\n");
4147 fflush (stderr);
4148#endif
4149
252b5132
RH
4150 for (asect = abfd->sections; asect; asect = asect->next)
4151 {
4152 if (max_index < asect->index)
4153 max_index = asect->index;
4154 }
4155
4156 max_index++;
446f7ed5
AM
4157 amt = max_index * sizeof (asymbol *);
4158 sect_syms = (asymbol **) bfd_zalloc (abfd, amt);
252b5132 4159 if (sect_syms == NULL)
b34976b6 4160 return FALSE;
252b5132 4161 elf_section_syms (abfd) = sect_syms;
4e89ac30 4162 elf_num_section_syms (abfd) = max_index;
252b5132 4163
079e9a2f
AM
4164 /* Init sect_syms entries for any section symbols we have already
4165 decided to output. */
252b5132
RH
4166 for (idx = 0; idx < symcount; idx++)
4167 {
dc810e39 4168 asymbol *sym = syms[idx];
c044fabd 4169
252b5132 4170 if ((sym->flags & BSF_SECTION_SYM) != 0
0f0a5e58 4171 && sym->value == 0
2633a79c
AM
4172 && !ignore_section_sym (abfd, sym)
4173 && !bfd_is_abs_section (sym->section))
252b5132 4174 {
5372391b 4175 asection *sec = sym->section;
252b5132 4176
5372391b
AM
4177 if (sec->owner != abfd)
4178 sec = sec->output_section;
252b5132 4179
5372391b 4180 sect_syms[sec->index] = syms[idx];
252b5132
RH
4181 }
4182 }
4183
252b5132
RH
4184 /* Classify all of the symbols. */
4185 for (idx = 0; idx < symcount; idx++)
4186 {
2633a79c 4187 if (sym_is_global (abfd, syms[idx]))
252b5132 4188 num_globals++;
2633a79c
AM
4189 else if (!ignore_section_sym (abfd, syms[idx]))
4190 num_locals++;
252b5132 4191 }
079e9a2f 4192
5372391b 4193 /* We will be adding a section symbol for each normal BFD section. Most
079e9a2f
AM
4194 sections will already have a section symbol in outsymbols, but
4195 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4196 at least in that case. */
252b5132
RH
4197 for (asect = abfd->sections; asect; asect = asect->next)
4198 {
079e9a2f 4199 if (sect_syms[asect->index] == NULL)
252b5132 4200 {
079e9a2f 4201 if (!sym_is_global (abfd, asect->symbol))
252b5132
RH
4202 num_locals++;
4203 else
4204 num_globals++;
252b5132
RH
4205 }
4206 }
4207
4208 /* Now sort the symbols so the local symbols are first. */
446f7ed5
AM
4209 amt = (num_locals + num_globals) * sizeof (asymbol *);
4210 new_syms = (asymbol **) bfd_alloc (abfd, amt);
252b5132 4211 if (new_syms == NULL)
b34976b6 4212 return FALSE;
252b5132
RH
4213
4214 for (idx = 0; idx < symcount; idx++)
4215 {
4216 asymbol *sym = syms[idx];
dc810e39 4217 unsigned int i;
252b5132 4218
2633a79c
AM
4219 if (sym_is_global (abfd, sym))
4220 i = num_locals + num_globals2++;
4221 else if (!ignore_section_sym (abfd, sym))
252b5132
RH
4222 i = num_locals2++;
4223 else
2633a79c 4224 continue;
252b5132
RH
4225 new_syms[i] = sym;
4226 sym->udata.i = i + 1;
4227 }
4228 for (asect = abfd->sections; asect; asect = asect->next)
4229 {
079e9a2f 4230 if (sect_syms[asect->index] == NULL)
252b5132 4231 {
079e9a2f 4232 asymbol *sym = asect->symbol;
dc810e39 4233 unsigned int i;
252b5132 4234
079e9a2f 4235 sect_syms[asect->index] = sym;
252b5132
RH
4236 if (!sym_is_global (abfd, sym))
4237 i = num_locals2++;
4238 else
4239 i = num_locals + num_globals2++;
4240 new_syms[i] = sym;
4241 sym->udata.i = i + 1;
4242 }
4243 }
4244
4245 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4246
12bd6957 4247 *pnum_locals = num_locals;
b34976b6 4248 return TRUE;
252b5132
RH
4249}
4250
4251/* Align to the maximum file alignment that could be required for any
4252 ELF data structure. */
4253
268b6b39 4254static inline file_ptr
217aa764 4255align_file_position (file_ptr off, int align)
252b5132
RH
4256{
4257 return (off + align - 1) & ~(align - 1);
4258}
4259
4260/* Assign a file position to a section, optionally aligning to the
4261 required section alignment. */
4262
217aa764
AM
4263file_ptr
4264_bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4265 file_ptr offset,
4266 bfd_boolean align)
252b5132 4267{
72de5009
AM
4268 if (align && i_shdrp->sh_addralign > 1)
4269 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
252b5132
RH
4270 i_shdrp->sh_offset = offset;
4271 if (i_shdrp->bfd_section != NULL)
4272 i_shdrp->bfd_section->filepos = offset;
4273 if (i_shdrp->sh_type != SHT_NOBITS)
4274 offset += i_shdrp->sh_size;
4275 return offset;
4276}
4277
4278/* Compute the file positions we are going to put the sections at, and
4279 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4280 is not NULL, this is being called by the ELF backend linker. */
4281
b34976b6 4282bfd_boolean
217aa764
AM
4283_bfd_elf_compute_section_file_positions (bfd *abfd,
4284 struct bfd_link_info *link_info)
252b5132 4285{
9c5bfbb7 4286 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 4287 struct fake_section_arg fsargs;
b34976b6 4288 bfd_boolean failed;
ef10c3ac 4289 struct elf_strtab_hash *strtab = NULL;
252b5132 4290 Elf_Internal_Shdr *shstrtab_hdr;
3516e984 4291 bfd_boolean need_symtab;
252b5132
RH
4292
4293 if (abfd->output_has_begun)
b34976b6 4294 return TRUE;
252b5132
RH
4295
4296 /* Do any elf backend specific processing first. */
4297 if (bed->elf_backend_begin_write_processing)
4298 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4299
ed7e9d0b 4300 if (!(*bed->elf_backend_init_file_header) (abfd, link_info))
b34976b6 4301 return FALSE;
252b5132 4302
d4730f92
BS
4303 fsargs.failed = FALSE;
4304 fsargs.link_info = link_info;
4305 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4306 if (fsargs.failed)
b34976b6 4307 return FALSE;
252b5132 4308
da9f89d4 4309 if (!assign_section_numbers (abfd, link_info))
b34976b6 4310 return FALSE;
252b5132
RH
4311
4312 /* The backend linker builds symbol table information itself. */
3516e984
L
4313 need_symtab = (link_info == NULL
4314 && (bfd_get_symcount (abfd) > 0
4315 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4316 == HAS_RELOC)));
4317 if (need_symtab)
252b5132
RH
4318 {
4319 /* Non-zero if doing a relocatable link. */
4320 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4321
4322 if (! swap_out_syms (abfd, &strtab, relocatable_p))
b34976b6 4323 return FALSE;
252b5132
RH
4324 }
4325
d4730f92 4326 failed = FALSE;
1126897b 4327 if (link_info == NULL)
dbb410c3 4328 {
1126897b 4329 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
dbb410c3 4330 if (failed)
b34976b6 4331 return FALSE;
dbb410c3
AM
4332 }
4333
252b5132 4334 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
ed7e9d0b 4335 /* sh_name was set in init_file_header. */
252b5132 4336 shstrtab_hdr->sh_type = SHT_STRTAB;
84865015 4337 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
252b5132 4338 shstrtab_hdr->sh_addr = 0;
946748d5 4339 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4340 shstrtab_hdr->sh_entsize = 0;
4341 shstrtab_hdr->sh_link = 0;
4342 shstrtab_hdr->sh_info = 0;
3e19fb8f 4343 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4344 shstrtab_hdr->sh_addralign = 1;
4345
c84fca4d 4346 if (!assign_file_positions_except_relocs (abfd, link_info))
b34976b6 4347 return FALSE;
252b5132 4348
3516e984 4349 if (need_symtab)
252b5132
RH
4350 {
4351 file_ptr off;
4352 Elf_Internal_Shdr *hdr;
4353
12bd6957 4354 off = elf_next_file_pos (abfd);
252b5132 4355
6a40cf0c 4356 hdr = & elf_symtab_hdr (abfd);
b34976b6 4357 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4358
6a40cf0c
NC
4359 if (elf_symtab_shndx_list (abfd) != NULL)
4360 {
4361 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4362 if (hdr->sh_size != 0)
4363 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4364 /* FIXME: What about other symtab_shndx sections in the list ? */
4365 }
9ad5cbcf 4366
252b5132 4367 hdr = &elf_tdata (abfd)->strtab_hdr;
b34976b6 4368 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4369
12bd6957 4370 elf_next_file_pos (abfd) = off;
252b5132
RH
4371
4372 /* Now that we know where the .strtab section goes, write it
08a40648 4373 out. */
252b5132 4374 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 4375 || ! _bfd_elf_strtab_emit (abfd, strtab))
b34976b6 4376 return FALSE;
ef10c3ac 4377 _bfd_elf_strtab_free (strtab);
252b5132
RH
4378 }
4379
b34976b6 4380 abfd->output_has_begun = TRUE;
252b5132 4381
b34976b6 4382 return TRUE;
252b5132
RH
4383}
4384
8ded5a0f
AM
4385/* Make an initial estimate of the size of the program header. If we
4386 get the number wrong here, we'll redo section placement. */
4387
4388static bfd_size_type
4389get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4390{
4391 size_t segs;
4392 asection *s;
2b05f1b7 4393 const struct elf_backend_data *bed;
8ded5a0f
AM
4394
4395 /* Assume we will need exactly two PT_LOAD segments: one for text
4396 and one for data. */
4397 segs = 2;
4398
4399 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4400 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4401 {
4402 /* If we have a loadable interpreter section, we need a
4403 PT_INTERP segment. In this case, assume we also need a
4404 PT_PHDR segment, although that may not be true for all
4405 targets. */
e9a38e0f 4406 segs += 2;
8ded5a0f
AM
4407 }
4408
4409 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4410 {
4411 /* We need a PT_DYNAMIC segment. */
4412 ++segs;
f210dcff 4413 }
08a40648 4414
ceae84aa 4415 if (info != NULL && info->relro)
f210dcff
L
4416 {
4417 /* We need a PT_GNU_RELRO segment. */
4418 ++segs;
8ded5a0f
AM
4419 }
4420
12bd6957 4421 if (elf_eh_frame_hdr (abfd))
8ded5a0f
AM
4422 {
4423 /* We need a PT_GNU_EH_FRAME segment. */
4424 ++segs;
4425 }
4426
12bd6957 4427 if (elf_stack_flags (abfd))
8ded5a0f 4428 {
2b05f1b7
L
4429 /* We need a PT_GNU_STACK segment. */
4430 ++segs;
4431 }
94b11780 4432
0a59decb
L
4433 s = bfd_get_section_by_name (abfd,
4434 NOTE_GNU_PROPERTY_SECTION_NAME);
4435 if (s != NULL && s->size != 0)
4436 {
4437 /* We need a PT_GNU_PROPERTY segment. */
4438 ++segs;
4439 }
4440
2b05f1b7
L
4441 for (s = abfd->sections; s != NULL; s = s->next)
4442 {
8ded5a0f 4443 if ((s->flags & SEC_LOAD) != 0
23e463ed 4444 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 4445 {
23e463ed 4446 unsigned int alignment_power;
8ded5a0f
AM
4447 /* We need a PT_NOTE segment. */
4448 ++segs;
23e463ed
L
4449 /* Try to create just one PT_NOTE segment for all adjacent
4450 loadable SHT_NOTE sections. gABI requires that within a
4451 PT_NOTE segment (and also inside of each SHT_NOTE section)
4452 each note should have the same alignment. So we check
4453 whether the sections are correctly aligned. */
4454 alignment_power = s->alignment_power;
4455 while (s->next != NULL
4456 && s->next->alignment_power == alignment_power
4457 && (s->next->flags & SEC_LOAD) != 0
4458 && elf_section_type (s->next) == SHT_NOTE)
4459 s = s->next;
8ded5a0f
AM
4460 }
4461 }
4462
4463 for (s = abfd->sections; s != NULL; s = s->next)
4464 {
4465 if (s->flags & SEC_THREAD_LOCAL)
4466 {
4467 /* We need a PT_TLS segment. */
4468 ++segs;
4469 break;
4470 }
4471 }
4472
2b05f1b7 4473 bed = get_elf_backend_data (abfd);
a91e1603 4474
df3a023b
AM
4475 if ((abfd->flags & D_PAGED) != 0
4476 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4477 {
4478 /* Add a PT_GNU_MBIND segment for each mbind section. */
4479 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4480 for (s = abfd->sections; s != NULL; s = s->next)
4481 if (elf_section_flags (s) & SHF_GNU_MBIND)
4482 {
4483 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4484 {
4485 _bfd_error_handler
4486 /* xgettext:c-format */
4487 (_("%pB: GNU_MBIND section `%pA' has invalid "
4488 "sh_info field: %d"),
4489 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4490 continue;
4491 }
4492 /* Align mbind section to page size. */
4493 if (s->alignment_power < page_align_power)
4494 s->alignment_power = page_align_power;
4495 segs ++;
4496 }
4497 }
4498
4499 /* Let the backend count up any program headers it might need. */
4500 if (bed->elf_backend_additional_program_headers)
8ded5a0f
AM
4501 {
4502 int a;
4503
4504 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4505 if (a == -1)
4506 abort ();
4507 segs += a;
4508 }
4509
4510 return segs * bed->s->sizeof_phdr;
4511}
4512
2ea37f1c
NC
4513/* Find the segment that contains the output_section of section. */
4514
4515Elf_Internal_Phdr *
4516_bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4517{
4518 struct elf_segment_map *m;
4519 Elf_Internal_Phdr *p;
4520
12bd6957 4521 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
2ea37f1c
NC
4522 m != NULL;
4523 m = m->next, p++)
4524 {
4525 int i;
4526
4527 for (i = m->count - 1; i >= 0; i--)
4528 if (m->sections[i] == section)
4529 return p;
4530 }
4531
4532 return NULL;
4533}
4534
252b5132
RH
4535/* Create a mapping from a set of sections to a program segment. */
4536
217aa764
AM
4537static struct elf_segment_map *
4538make_mapping (bfd *abfd,
4539 asection **sections,
4540 unsigned int from,
4541 unsigned int to,
4542 bfd_boolean phdr)
252b5132
RH
4543{
4544 struct elf_segment_map *m;
4545 unsigned int i;
4546 asection **hdrpp;
986f0783 4547 size_t amt;
252b5132 4548
00bee008
AM
4549 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4550 amt += (to - from) * sizeof (asection *);
a50b1753 4551 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
4552 if (m == NULL)
4553 return NULL;
4554 m->next = NULL;
4555 m->p_type = PT_LOAD;
4556 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4557 m->sections[i - from] = *hdrpp;
4558 m->count = to - from;
4559
4560 if (from == 0 && phdr)
4561 {
4562 /* Include the headers in the first PT_LOAD segment. */
4563 m->includes_filehdr = 1;
4564 m->includes_phdrs = 1;
4565 }
4566
4567 return m;
4568}
4569
229fcec5
MM
4570/* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4571 on failure. */
4572
4573struct elf_segment_map *
4574_bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4575{
4576 struct elf_segment_map *m;
4577
a50b1753 4578 m = (struct elf_segment_map *) bfd_zalloc (abfd,
07d6d2b8 4579 sizeof (struct elf_segment_map));
229fcec5
MM
4580 if (m == NULL)
4581 return NULL;
4582 m->next = NULL;
4583 m->p_type = PT_DYNAMIC;
4584 m->count = 1;
4585 m->sections[0] = dynsec;
08a40648 4586
229fcec5
MM
4587 return m;
4588}
4589
8ded5a0f 4590/* Possibly add or remove segments from the segment map. */
252b5132 4591
b34976b6 4592static bfd_boolean
3dea8fca
AM
4593elf_modify_segment_map (bfd *abfd,
4594 struct bfd_link_info *info,
4595 bfd_boolean remove_empty_load)
252b5132 4596{
252e386e 4597 struct elf_segment_map **m;
8ded5a0f 4598 const struct elf_backend_data *bed;
252b5132 4599
8ded5a0f
AM
4600 /* The placement algorithm assumes that non allocated sections are
4601 not in PT_LOAD segments. We ensure this here by removing such
4602 sections from the segment map. We also remove excluded
252e386e
AM
4603 sections. Finally, any PT_LOAD segment without sections is
4604 removed. */
12bd6957 4605 m = &elf_seg_map (abfd);
252e386e 4606 while (*m)
8ded5a0f
AM
4607 {
4608 unsigned int i, new_count;
252b5132 4609
252e386e 4610 for (new_count = 0, i = 0; i < (*m)->count; i++)
8ded5a0f 4611 {
252e386e
AM
4612 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4613 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4614 || (*m)->p_type != PT_LOAD))
8ded5a0f 4615 {
252e386e
AM
4616 (*m)->sections[new_count] = (*m)->sections[i];
4617 new_count++;
8ded5a0f
AM
4618 }
4619 }
252e386e 4620 (*m)->count = new_count;
252b5132 4621
1a9ccd70
NC
4622 if (remove_empty_load
4623 && (*m)->p_type == PT_LOAD
4624 && (*m)->count == 0
4625 && !(*m)->includes_phdrs)
252e386e
AM
4626 *m = (*m)->next;
4627 else
4628 m = &(*m)->next;
8ded5a0f 4629 }
252b5132 4630
8ded5a0f
AM
4631 bed = get_elf_backend_data (abfd);
4632 if (bed->elf_backend_modify_segment_map != NULL)
252b5132 4633 {
252e386e 4634 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
8ded5a0f 4635 return FALSE;
252b5132 4636 }
252b5132 4637
8ded5a0f
AM
4638 return TRUE;
4639}
252b5132 4640
dbc88fc1
AM
4641#define IS_TBSS(s) \
4642 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4643
8ded5a0f 4644/* Set up a mapping from BFD sections to program segments. */
252b5132 4645
8ded5a0f
AM
4646bfd_boolean
4647_bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4648{
4649 unsigned int count;
4650 struct elf_segment_map *m;
4651 asection **sections = NULL;
4652 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3dea8fca 4653 bfd_boolean no_user_phdrs;
252b5132 4654
12bd6957 4655 no_user_phdrs = elf_seg_map (abfd) == NULL;
d324f6d6
RM
4656
4657 if (info != NULL)
4658 info->user_phdrs = !no_user_phdrs;
4659
3dea8fca 4660 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
252b5132 4661 {
8ded5a0f
AM
4662 asection *s;
4663 unsigned int i;
4664 struct elf_segment_map *mfirst;
4665 struct elf_segment_map **pm;
4666 asection *last_hdr;
4667 bfd_vma last_size;
00bee008 4668 unsigned int hdr_index;
8ded5a0f
AM
4669 bfd_vma maxpagesize;
4670 asection **hdrpp;
64029e93 4671 bfd_boolean phdr_in_segment;
8ded5a0f 4672 bfd_boolean writable;
2888249f 4673 bfd_boolean executable;
446f7ed5 4674 unsigned int tls_count = 0;
8ded5a0f 4675 asection *first_tls = NULL;
a91e1603 4676 asection *first_mbind = NULL;
8ded5a0f 4677 asection *dynsec, *eh_frame_hdr;
446f7ed5 4678 size_t amt;
8d06853e 4679 bfd_vma addr_mask, wrap_to = 0;
64029e93 4680 bfd_size_type phdr_size;
252b5132 4681
8ded5a0f 4682 /* Select the allocated sections, and sort them. */
252b5132 4683
446f7ed5
AM
4684 amt = bfd_count_sections (abfd) * sizeof (asection *);
4685 sections = (asection **) bfd_malloc (amt);
8ded5a0f 4686 if (sections == NULL)
252b5132 4687 goto error_return;
252b5132 4688
8d06853e
AM
4689 /* Calculate top address, avoiding undefined behaviour of shift
4690 left operator when shift count is equal to size of type
4691 being shifted. */
4692 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4693 addr_mask = (addr_mask << 1) + 1;
4694
8ded5a0f
AM
4695 i = 0;
4696 for (s = abfd->sections; s != NULL; s = s->next)
4697 {
4698 if ((s->flags & SEC_ALLOC) != 0)
4699 {
48db3297
AM
4700 /* target_index is unused until bfd_elf_final_link
4701 starts output of section symbols. Use it to make
4702 qsort stable. */
4703 s->target_index = i;
8ded5a0f
AM
4704 sections[i] = s;
4705 ++i;
8d06853e
AM
4706 /* A wrapping section potentially clashes with header. */
4707 if (((s->lma + s->size) & addr_mask) < (s->lma & addr_mask))
4708 wrap_to = (s->lma + s->size) & addr_mask;
8ded5a0f
AM
4709 }
4710 }
4711 BFD_ASSERT (i <= bfd_count_sections (abfd));
4712 count = i;
252b5132 4713
8ded5a0f 4714 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
252b5132 4715
64029e93
AM
4716 phdr_size = elf_program_header_size (abfd);
4717 if (phdr_size == (bfd_size_type) -1)
4718 phdr_size = get_program_header_size (abfd, info);
4719 phdr_size += bed->s->sizeof_ehdr;
4720 maxpagesize = bed->maxpagesize;
4721 if (maxpagesize == 0)
4722 maxpagesize = 1;
4723 phdr_in_segment = info != NULL && info->load_phdrs;
4724 if (count != 0
4725 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4726 >= (phdr_size & (maxpagesize - 1))))
4727 /* For compatibility with old scripts that may not be using
4728 SIZEOF_HEADERS, add headers when it looks like space has
4729 been left for them. */
4730 phdr_in_segment = TRUE;
252b5132 4731
64029e93 4732 /* Build the mapping. */
8ded5a0f
AM
4733 mfirst = NULL;
4734 pm = &mfirst;
252b5132 4735
8ded5a0f
AM
4736 /* If we have a .interp section, then create a PT_PHDR segment for
4737 the program headers and a PT_INTERP segment for the .interp
4738 section. */
4739 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4740 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4741 {
4742 amt = sizeof (struct elf_segment_map);
a50b1753 4743 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4744 if (m == NULL)
4745 goto error_return;
4746 m->next = NULL;
4747 m->p_type = PT_PHDR;
f882209d 4748 m->p_flags = PF_R;
8ded5a0f
AM
4749 m->p_flags_valid = 1;
4750 m->includes_phdrs = 1;
64029e93 4751 phdr_in_segment = TRUE;
8ded5a0f
AM
4752 *pm = m;
4753 pm = &m->next;
252b5132 4754
8ded5a0f 4755 amt = sizeof (struct elf_segment_map);
a50b1753 4756 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4757 if (m == NULL)
4758 goto error_return;
4759 m->next = NULL;
4760 m->p_type = PT_INTERP;
4761 m->count = 1;
4762 m->sections[0] = s;
4763
4764 *pm = m;
4765 pm = &m->next;
252b5132 4766 }
8ded5a0f
AM
4767
4768 /* Look through the sections. We put sections in the same program
4769 segment when the start of the second section can be placed within
4770 a few bytes of the end of the first section. */
4771 last_hdr = NULL;
4772 last_size = 0;
00bee008 4773 hdr_index = 0;
8ded5a0f 4774 writable = FALSE;
2888249f 4775 executable = FALSE;
8ded5a0f
AM
4776 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4777 if (dynsec != NULL
4778 && (dynsec->flags & SEC_LOAD) == 0)
4779 dynsec = NULL;
4780
64029e93
AM
4781 if ((abfd->flags & D_PAGED) == 0)
4782 phdr_in_segment = FALSE;
4783
8ded5a0f
AM
4784 /* Deal with -Ttext or something similar such that the first section
4785 is not adjacent to the program headers. This is an
4786 approximation, since at this point we don't know exactly how many
4787 program headers we will need. */
64029e93 4788 if (phdr_in_segment && count > 0)
252b5132 4789 {
64029e93
AM
4790 bfd_vma phdr_lma;
4791 bfd_boolean separate_phdr = FALSE;
4792
4793 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4794 if (info != NULL
4795 && info->separate_code
4796 && (sections[0]->flags & SEC_CODE) != 0)
1a9ccd70 4797 {
64029e93
AM
4798 /* If data sections should be separate from code and
4799 thus not executable, and the first section is
4800 executable then put the file and program headers in
4801 their own PT_LOAD. */
4802 separate_phdr = TRUE;
4803 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4804 == (sections[0]->lma & addr_mask & -maxpagesize)))
4805 {
4806 /* The file and program headers are currently on the
4807 same page as the first section. Put them on the
4808 previous page if we can. */
4809 if (phdr_lma >= maxpagesize)
4810 phdr_lma -= maxpagesize;
4811 else
4812 separate_phdr = FALSE;
4813 }
4814 }
4815 if ((sections[0]->lma & addr_mask) < phdr_lma
4816 || (sections[0]->lma & addr_mask) < phdr_size)
4817 /* If file and program headers would be placed at the end
4818 of memory then it's probably better to omit them. */
4819 phdr_in_segment = FALSE;
4820 else if (phdr_lma < wrap_to)
4821 /* If a section wraps around to where we'll be placing
4822 file and program headers, then the headers will be
4823 overwritten. */
4824 phdr_in_segment = FALSE;
4825 else if (separate_phdr)
4826 {
4827 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4828 if (m == NULL)
4829 goto error_return;
4830 m->p_paddr = phdr_lma;
4831 m->p_vaddr_offset
4832 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4833 m->p_paddr_valid = 1;
4834 *pm = m;
4835 pm = &m->next;
4836 phdr_in_segment = FALSE;
1a9ccd70 4837 }
252b5132
RH
4838 }
4839
8ded5a0f 4840 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
252b5132 4841 {
8ded5a0f
AM
4842 asection *hdr;
4843 bfd_boolean new_segment;
4844
4845 hdr = *hdrpp;
4846
4847 /* See if this section and the last one will fit in the same
4848 segment. */
4849
4850 if (last_hdr == NULL)
4851 {
4852 /* If we don't have a segment yet, then we don't need a new
4853 one (we build the last one after this loop). */
4854 new_segment = FALSE;
4855 }
4856 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4857 {
4858 /* If this section has a different relation between the
4859 virtual address and the load address, then we need a new
4860 segment. */
4861 new_segment = TRUE;
4862 }
b5599592
AM
4863 else if (hdr->lma < last_hdr->lma + last_size
4864 || last_hdr->lma + last_size < last_hdr->lma)
4865 {
4866 /* If this section has a load address that makes it overlap
4867 the previous section, then we need a new segment. */
4868 new_segment = TRUE;
4869 }
76cb3a89
AM
4870 else if ((abfd->flags & D_PAGED) != 0
4871 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4872 == (hdr->lma & -maxpagesize)))
4873 {
4874 /* If we are demand paged then we can't map two disk
4875 pages onto the same memory page. */
4876 new_segment = FALSE;
4877 }
39948a60
NC
4878 /* In the next test we have to be careful when last_hdr->lma is close
4879 to the end of the address space. If the aligned address wraps
4880 around to the start of the address space, then there are no more
4881 pages left in memory and it is OK to assume that the current
4882 section can be included in the current segment. */
76cb3a89
AM
4883 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4884 + maxpagesize > last_hdr->lma)
4885 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4886 + maxpagesize <= hdr->lma))
8ded5a0f
AM
4887 {
4888 /* If putting this section in this segment would force us to
4889 skip a page in the segment, then we need a new segment. */
4890 new_segment = TRUE;
4891 }
4892 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
76cb3a89 4893 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
8ded5a0f 4894 {
e5654c0f
AM
4895 /* We don't want to put a loaded section after a
4896 nonloaded (ie. bss style) section in the same segment
4897 as that will force the non-loaded section to be loaded.
76cb3a89 4898 Consider .tbss sections as loaded for this purpose. */
8ded5a0f
AM
4899 new_segment = TRUE;
4900 }
4901 else if ((abfd->flags & D_PAGED) == 0)
4902 {
4903 /* If the file is not demand paged, which means that we
4904 don't require the sections to be correctly aligned in the
4905 file, then there is no other reason for a new segment. */
4906 new_segment = FALSE;
4907 }
2888249f
L
4908 else if (info != NULL
4909 && info->separate_code
4910 && executable != ((hdr->flags & SEC_CODE) != 0))
4911 {
4912 new_segment = TRUE;
4913 }
8ded5a0f 4914 else if (! writable
76cb3a89 4915 && (hdr->flags & SEC_READONLY) == 0)
8ded5a0f
AM
4916 {
4917 /* We don't want to put a writable section in a read only
76cb3a89 4918 segment. */
8ded5a0f
AM
4919 new_segment = TRUE;
4920 }
4921 else
4922 {
4923 /* Otherwise, we can use the same segment. */
4924 new_segment = FALSE;
4925 }
4926
2889e75b 4927 /* Allow interested parties a chance to override our decision. */
ceae84aa
AM
4928 if (last_hdr != NULL
4929 && info != NULL
4930 && info->callbacks->override_segment_assignment != NULL)
4931 new_segment
4932 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4933 last_hdr,
4934 new_segment);
2889e75b 4935
8ded5a0f
AM
4936 if (! new_segment)
4937 {
4938 if ((hdr->flags & SEC_READONLY) == 0)
4939 writable = TRUE;
2888249f
L
4940 if ((hdr->flags & SEC_CODE) != 0)
4941 executable = TRUE;
8ded5a0f
AM
4942 last_hdr = hdr;
4943 /* .tbss sections effectively have zero size. */
dbc88fc1 4944 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
8ded5a0f
AM
4945 continue;
4946 }
4947
4948 /* We need a new program segment. We must create a new program
00bee008 4949 header holding all the sections from hdr_index until hdr. */
8ded5a0f 4950
00bee008 4951 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4952 if (m == NULL)
4953 goto error_return;
4954
4955 *pm = m;
4956 pm = &m->next;
4957
252b5132 4958 if ((hdr->flags & SEC_READONLY) == 0)
b34976b6 4959 writable = TRUE;
8ded5a0f
AM
4960 else
4961 writable = FALSE;
4962
2888249f
L
4963 if ((hdr->flags & SEC_CODE) == 0)
4964 executable = FALSE;
4965 else
4966 executable = TRUE;
4967
baaff79e
JJ
4968 last_hdr = hdr;
4969 /* .tbss sections effectively have zero size. */
dbc88fc1 4970 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
00bee008 4971 hdr_index = i;
8ded5a0f 4972 phdr_in_segment = FALSE;
252b5132
RH
4973 }
4974
86b2281f
AM
4975 /* Create a final PT_LOAD program segment, but not if it's just
4976 for .tbss. */
4977 if (last_hdr != NULL
00bee008 4978 && (i - hdr_index != 1
dbc88fc1 4979 || !IS_TBSS (last_hdr)))
8ded5a0f 4980 {
00bee008 4981 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4982 if (m == NULL)
4983 goto error_return;
252b5132 4984
8ded5a0f
AM
4985 *pm = m;
4986 pm = &m->next;
4987 }
252b5132 4988
8ded5a0f
AM
4989 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4990 if (dynsec != NULL)
4991 {
4992 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4993 if (m == NULL)
4994 goto error_return;
4995 *pm = m;
4996 pm = &m->next;
4997 }
252b5132 4998
23e463ed 4999 /* For each batch of consecutive loadable SHT_NOTE sections,
1c5265b5
JJ
5000 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
5001 because if we link together nonloadable .note sections and
5002 loadable .note sections, we will generate two .note sections
23e463ed 5003 in the output file. */
8ded5a0f
AM
5004 for (s = abfd->sections; s != NULL; s = s->next)
5005 {
5006 if ((s->flags & SEC_LOAD) != 0
23e463ed 5007 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 5008 {
1c5265b5 5009 asection *s2;
23e463ed 5010 unsigned int alignment_power = s->alignment_power;
91d6fa6a
NC
5011
5012 count = 1;
23e463ed
L
5013 for (s2 = s; s2->next != NULL; s2 = s2->next)
5014 {
5015 if (s2->next->alignment_power == alignment_power
5016 && (s2->next->flags & SEC_LOAD) != 0
5017 && elf_section_type (s2->next) == SHT_NOTE
5018 && align_power (s2->lma + s2->size,
5019 alignment_power)
5020 == s2->next->lma)
5021 count++;
5022 else
5023 break;
5024 }
00bee008
AM
5025 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5026 amt += count * sizeof (asection *);
a50b1753 5027 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5028 if (m == NULL)
5029 goto error_return;
5030 m->next = NULL;
5031 m->p_type = PT_NOTE;
1c5265b5
JJ
5032 m->count = count;
5033 while (count > 1)
5034 {
5035 m->sections[m->count - count--] = s;
5036 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5037 s = s->next;
5038 }
5039 m->sections[m->count - 1] = s;
5040 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
8ded5a0f
AM
5041 *pm = m;
5042 pm = &m->next;
5043 }
5044 if (s->flags & SEC_THREAD_LOCAL)
5045 {
5046 if (! tls_count)
5047 first_tls = s;
5048 tls_count++;
5049 }
a91e1603
L
5050 if (first_mbind == NULL
5051 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5052 first_mbind = s;
8ded5a0f 5053 }
252b5132 5054
8ded5a0f
AM
5055 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5056 if (tls_count > 0)
5057 {
00bee008
AM
5058 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5059 amt += tls_count * sizeof (asection *);
a50b1753 5060 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5061 if (m == NULL)
5062 goto error_return;
5063 m->next = NULL;
5064 m->p_type = PT_TLS;
5065 m->count = tls_count;
5066 /* Mandated PF_R. */
5067 m->p_flags = PF_R;
5068 m->p_flags_valid = 1;
d923cae0 5069 s = first_tls;
446f7ed5 5070 for (i = 0; i < tls_count; ++i)
8ded5a0f 5071 {
d923cae0
L
5072 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5073 {
5074 _bfd_error_handler
871b3ab2 5075 (_("%pB: TLS sections are not adjacent:"), abfd);
d923cae0
L
5076 s = first_tls;
5077 i = 0;
446f7ed5 5078 while (i < tls_count)
d923cae0
L
5079 {
5080 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5081 {
871b3ab2 5082 _bfd_error_handler (_(" TLS: %pA"), s);
d923cae0
L
5083 i++;
5084 }
5085 else
871b3ab2 5086 _bfd_error_handler (_(" non-TLS: %pA"), s);
d923cae0
L
5087 s = s->next;
5088 }
5089 bfd_set_error (bfd_error_bad_value);
5090 goto error_return;
5091 }
5092 m->sections[i] = s;
5093 s = s->next;
8ded5a0f 5094 }
252b5132 5095
8ded5a0f
AM
5096 *pm = m;
5097 pm = &m->next;
5098 }
252b5132 5099
df3a023b
AM
5100 if (first_mbind
5101 && (abfd->flags & D_PAGED) != 0
5102 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
a91e1603
L
5103 for (s = first_mbind; s != NULL; s = s->next)
5104 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
df3a023b 5105 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
a91e1603
L
5106 {
5107 /* Mandated PF_R. */
5108 unsigned long p_flags = PF_R;
5109 if ((s->flags & SEC_READONLY) == 0)
5110 p_flags |= PF_W;
5111 if ((s->flags & SEC_CODE) != 0)
5112 p_flags |= PF_X;
5113
5114 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5115 m = bfd_zalloc (abfd, amt);
5116 if (m == NULL)
5117 goto error_return;
5118 m->next = NULL;
5119 m->p_type = (PT_GNU_MBIND_LO
5120 + elf_section_data (s)->this_hdr.sh_info);
5121 m->count = 1;
5122 m->p_flags_valid = 1;
5123 m->sections[0] = s;
5124 m->p_flags = p_flags;
5125
5126 *pm = m;
5127 pm = &m->next;
5128 }
5129
0a59decb
L
5130 s = bfd_get_section_by_name (abfd,
5131 NOTE_GNU_PROPERTY_SECTION_NAME);
5132 if (s != NULL && s->size != 0)
5133 {
5134 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5135 m = bfd_zalloc (abfd, amt);
5136 if (m == NULL)
5137 goto error_return;
5138 m->next = NULL;
5139 m->p_type = PT_GNU_PROPERTY;
5140 m->count = 1;
5141 m->p_flags_valid = 1;
5142 m->sections[0] = s;
5143 m->p_flags = PF_R;
5144 *pm = m;
5145 pm = &m->next;
5146 }
5147
8ded5a0f
AM
5148 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5149 segment. */
12bd6957 5150 eh_frame_hdr = elf_eh_frame_hdr (abfd);
8ded5a0f
AM
5151 if (eh_frame_hdr != NULL
5152 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
252b5132 5153 {
dc810e39 5154 amt = sizeof (struct elf_segment_map);
a50b1753 5155 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
5156 if (m == NULL)
5157 goto error_return;
5158 m->next = NULL;
8ded5a0f 5159 m->p_type = PT_GNU_EH_FRAME;
252b5132 5160 m->count = 1;
8ded5a0f 5161 m->sections[0] = eh_frame_hdr->output_section;
252b5132
RH
5162
5163 *pm = m;
5164 pm = &m->next;
5165 }
13ae64f3 5166
12bd6957 5167 if (elf_stack_flags (abfd))
13ae64f3 5168 {
8ded5a0f 5169 amt = sizeof (struct elf_segment_map);
a50b1753 5170 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5171 if (m == NULL)
5172 goto error_return;
5173 m->next = NULL;
2b05f1b7 5174 m->p_type = PT_GNU_STACK;
12bd6957 5175 m->p_flags = elf_stack_flags (abfd);
04c3a755 5176 m->p_align = bed->stack_align;
8ded5a0f 5177 m->p_flags_valid = 1;
04c3a755
NS
5178 m->p_align_valid = m->p_align != 0;
5179 if (info->stacksize > 0)
5180 {
5181 m->p_size = info->stacksize;
5182 m->p_size_valid = 1;
5183 }
252b5132 5184
8ded5a0f
AM
5185 *pm = m;
5186 pm = &m->next;
5187 }
65765700 5188
ceae84aa 5189 if (info != NULL && info->relro)
8ded5a0f 5190 {
f210dcff
L
5191 for (m = mfirst; m != NULL; m = m->next)
5192 {
3832a4d8
AM
5193 if (m->p_type == PT_LOAD
5194 && m->count != 0
5195 && m->sections[0]->vma >= info->relro_start
5196 && m->sections[0]->vma < info->relro_end)
f210dcff 5197 {
3832a4d8
AM
5198 i = m->count;
5199 while (--i != (unsigned) -1)
5200 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5201 == (SEC_LOAD | SEC_HAS_CONTENTS))
5202 break;
5203
43a8475c 5204 if (i != (unsigned) -1)
f210dcff
L
5205 break;
5206 }
be01b344 5207 }
f210dcff
L
5208
5209 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5210 if (m != NULL)
5211 {
5212 amt = sizeof (struct elf_segment_map);
a50b1753 5213 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
f210dcff
L
5214 if (m == NULL)
5215 goto error_return;
5216 m->next = NULL;
5217 m->p_type = PT_GNU_RELRO;
f210dcff
L
5218 *pm = m;
5219 pm = &m->next;
5220 }
8ded5a0f 5221 }
9ee5e499 5222
8ded5a0f 5223 free (sections);
12bd6957 5224 elf_seg_map (abfd) = mfirst;
9ee5e499
JJ
5225 }
5226
3dea8fca 5227 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
8ded5a0f 5228 return FALSE;
8c37241b 5229
12bd6957 5230 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
8ded5a0f 5231 ++count;
12bd6957 5232 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
252b5132 5233
b34976b6 5234 return TRUE;
252b5132
RH
5235
5236 error_return:
5237 if (sections != NULL)
5238 free (sections);
b34976b6 5239 return FALSE;
252b5132
RH
5240}
5241
5242/* Sort sections by address. */
5243
5244static int
217aa764 5245elf_sort_sections (const void *arg1, const void *arg2)
252b5132
RH
5246{
5247 const asection *sec1 = *(const asection **) arg1;
5248 const asection *sec2 = *(const asection **) arg2;
eecdbe52 5249 bfd_size_type size1, size2;
252b5132
RH
5250
5251 /* Sort by LMA first, since this is the address used to
5252 place the section into a segment. */
5253 if (sec1->lma < sec2->lma)
5254 return -1;
5255 else if (sec1->lma > sec2->lma)
5256 return 1;
5257
5258 /* Then sort by VMA. Normally the LMA and the VMA will be
5259 the same, and this will do nothing. */
5260 if (sec1->vma < sec2->vma)
5261 return -1;
5262 else if (sec1->vma > sec2->vma)
5263 return 1;
5264
5265 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5266
07c6e936 5267#define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
252b5132
RH
5268
5269 if (TOEND (sec1))
5270 {
48db3297 5271 if (!TOEND (sec2))
252b5132
RH
5272 return 1;
5273 }
00a7cdc5 5274 else if (TOEND (sec2))
252b5132
RH
5275 return -1;
5276
5277#undef TOEND
5278
00a7cdc5
NC
5279 /* Sort by size, to put zero sized sections
5280 before others at the same address. */
252b5132 5281
eea6121a
AM
5282 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5283 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
eecdbe52
JJ
5284
5285 if (size1 < size2)
252b5132 5286 return -1;
eecdbe52 5287 if (size1 > size2)
252b5132
RH
5288 return 1;
5289
5290 return sec1->target_index - sec2->target_index;
5291}
5292
30fe1832
AM
5293/* This qsort comparison functions sorts PT_LOAD segments first and
5294 by p_paddr, for assign_file_positions_for_load_sections. */
5295
5296static int
5297elf_sort_segments (const void *arg1, const void *arg2)
5298{
5299 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5300 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5301
5302 if (m1->p_type != m2->p_type)
5303 {
5304 if (m1->p_type == PT_NULL)
5305 return 1;
5306 if (m2->p_type == PT_NULL)
5307 return -1;
5308 return m1->p_type < m2->p_type ? -1 : 1;
5309 }
5310 if (m1->includes_filehdr != m2->includes_filehdr)
5311 return m1->includes_filehdr ? -1 : 1;
5312 if (m1->no_sort_lma != m2->no_sort_lma)
5313 return m1->no_sort_lma ? -1 : 1;
5314 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5315 {
5316 bfd_vma lma1, lma2;
5317 lma1 = 0;
5318 if (m1->p_paddr_valid)
5319 lma1 = m1->p_paddr;
5320 else if (m1->count != 0)
5321 lma1 = m1->sections[0]->lma + m1->p_vaddr_offset;
5322 lma2 = 0;
5323 if (m2->p_paddr_valid)
5324 lma2 = m2->p_paddr;
5325 else if (m2->count != 0)
5326 lma2 = m2->sections[0]->lma + m2->p_vaddr_offset;
5327 if (lma1 != lma2)
5328 return lma1 < lma2 ? -1 : 1;
5329 }
5330 if (m1->idx != m2->idx)
5331 return m1->idx < m2->idx ? -1 : 1;
5332 return 0;
5333}
5334
340b6d91
AC
5335/* Ian Lance Taylor writes:
5336
5337 We shouldn't be using % with a negative signed number. That's just
5338 not good. We have to make sure either that the number is not
5339 negative, or that the number has an unsigned type. When the types
5340 are all the same size they wind up as unsigned. When file_ptr is a
5341 larger signed type, the arithmetic winds up as signed long long,
5342 which is wrong.
5343
5344 What we're trying to say here is something like ``increase OFF by
5345 the least amount that will cause it to be equal to the VMA modulo
5346 the page size.'' */
5347/* In other words, something like:
5348
5349 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5350 off_offset = off % bed->maxpagesize;
5351 if (vma_offset < off_offset)
5352 adjustment = vma_offset + bed->maxpagesize - off_offset;
5353 else
5354 adjustment = vma_offset - off_offset;
08a40648 5355
de194d85 5356 which can be collapsed into the expression below. */
340b6d91
AC
5357
5358static file_ptr
5359vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5360{
dc9155b2
NC
5361 /* PR binutils/16199: Handle an alignment of zero. */
5362 if (maxpagesize == 0)
5363 maxpagesize = 1;
340b6d91
AC
5364 return ((vma - off) % maxpagesize);
5365}
5366
6d33f217
L
5367static void
5368print_segment_map (const struct elf_segment_map *m)
5369{
5370 unsigned int j;
5371 const char *pt = get_segment_type (m->p_type);
5372 char buf[32];
5373
5374 if (pt == NULL)
5375 {
5376 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5377 sprintf (buf, "LOPROC+%7.7x",
5378 (unsigned int) (m->p_type - PT_LOPROC));
5379 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5380 sprintf (buf, "LOOS+%7.7x",
5381 (unsigned int) (m->p_type - PT_LOOS));
5382 else
5383 snprintf (buf, sizeof (buf), "%8.8x",
5384 (unsigned int) m->p_type);
5385 pt = buf;
5386 }
4a97a0e5 5387 fflush (stdout);
6d33f217
L
5388 fprintf (stderr, "%s:", pt);
5389 for (j = 0; j < m->count; j++)
5390 fprintf (stderr, " %s", m->sections [j]->name);
5391 putc ('\n',stderr);
4a97a0e5 5392 fflush (stderr);
6d33f217
L
5393}
5394
32812159
AM
5395static bfd_boolean
5396write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5397{
5398 void *buf;
5399 bfd_boolean ret;
5400
5401 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5402 return FALSE;
5403 buf = bfd_zmalloc (len);
5404 if (buf == NULL)
5405 return FALSE;
5406 ret = bfd_bwrite (buf, len, abfd) == len;
5407 free (buf);
5408 return ret;
5409}
5410
252b5132
RH
5411/* Assign file positions to the sections based on the mapping from
5412 sections to segments. This function also sets up some fields in
f3520d2f 5413 the file header. */
252b5132 5414
b34976b6 5415static bfd_boolean
f3520d2f
AM
5416assign_file_positions_for_load_sections (bfd *abfd,
5417 struct bfd_link_info *link_info)
252b5132
RH
5418{
5419 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 5420 struct elf_segment_map *m;
30fe1832 5421 struct elf_segment_map *phdr_load_seg;
252b5132 5422 Elf_Internal_Phdr *phdrs;
252b5132 5423 Elf_Internal_Phdr *p;
02bf8d82 5424 file_ptr off;
3f570048 5425 bfd_size_type maxpagesize;
30fe1832 5426 unsigned int alloc, actual;
0920dee7 5427 unsigned int i, j;
30fe1832 5428 struct elf_segment_map **sorted_seg_map;
252b5132 5429
e36284ab 5430 if (link_info == NULL
ceae84aa 5431 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
8ded5a0f 5432 return FALSE;
252b5132 5433
8ded5a0f 5434 alloc = 0;
12bd6957 5435 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
30fe1832 5436 m->idx = alloc++;
252b5132 5437
82f2dbf7
NC
5438 if (alloc)
5439 {
5440 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5441 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5442 }
5443 else
5444 {
5445 /* PR binutils/12467. */
5446 elf_elfheader (abfd)->e_phoff = 0;
5447 elf_elfheader (abfd)->e_phentsize = 0;
5448 }
d324f6d6 5449
8ded5a0f 5450 elf_elfheader (abfd)->e_phnum = alloc;
252b5132 5451
12bd6957 5452 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
30fe1832
AM
5453 {
5454 actual = alloc;
5455 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5456 }
8ded5a0f 5457 else
30fe1832
AM
5458 {
5459 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5460 BFD_ASSERT (elf_program_header_size (abfd)
5461 == actual * bed->s->sizeof_phdr);
5462 BFD_ASSERT (actual >= alloc);
5463 }
252b5132
RH
5464
5465 if (alloc == 0)
f3520d2f 5466 {
12bd6957 5467 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
8ded5a0f 5468 return TRUE;
f3520d2f 5469 }
252b5132 5470
12bd6957 5471 /* We're writing the size in elf_program_header_size (abfd),
57268894
HPN
5472 see assign_file_positions_except_relocs, so make sure we have
5473 that amount allocated, with trailing space cleared.
12bd6957
AM
5474 The variable alloc contains the computed need, while
5475 elf_program_header_size (abfd) contains the size used for the
57268894
HPN
5476 layout.
5477 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5478 where the layout is forced to according to a larger size in the
5479 last iterations for the testcase ld-elf/header. */
30fe1832
AM
5480 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5481 + alloc * sizeof (*sorted_seg_map)));
5482 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
f3520d2f 5483 elf_tdata (abfd)->phdr = phdrs;
252b5132 5484 if (phdrs == NULL)
b34976b6 5485 return FALSE;
252b5132 5486
30fe1832 5487 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
252b5132 5488 {
30fe1832 5489 sorted_seg_map[j] = m;
252b5132 5490 /* If elf_segment_map is not from map_sections_to_segments, the
08a40648 5491 sections may not be correctly ordered. NOTE: sorting should
52e9b619
MS
5492 not be done to the PT_NOTE section of a corefile, which may
5493 contain several pseudo-sections artificially created by bfd.
5494 Sorting these pseudo-sections breaks things badly. */
47d9a591
AM
5495 if (m->count > 1
5496 && !(elf_elfheader (abfd)->e_type == ET_CORE
52e9b619 5497 && m->p_type == PT_NOTE))
48db3297
AM
5498 {
5499 for (i = 0; i < m->count; i++)
5500 m->sections[i]->target_index = i;
5501 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5502 elf_sort_sections);
5503 }
30fe1832
AM
5504 }
5505 if (alloc > 1)
5506 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5507 elf_sort_segments);
5508
5509 maxpagesize = 1;
5510 if ((abfd->flags & D_PAGED) != 0)
5511 maxpagesize = bed->maxpagesize;
5512
5513 /* Sections must map to file offsets past the ELF file header. */
5514 off = bed->s->sizeof_ehdr;
5515 /* And if one of the PT_LOAD headers doesn't include the program
5516 headers then we'll be mapping program headers in the usual
5517 position after the ELF file header. */
5518 phdr_load_seg = NULL;
5519 for (j = 0; j < alloc; j++)
5520 {
5521 m = sorted_seg_map[j];
5522 if (m->p_type != PT_LOAD)
5523 break;
5524 if (m->includes_phdrs)
5525 {
5526 phdr_load_seg = m;
5527 break;
5528 }
5529 }
5530 if (phdr_load_seg == NULL)
5531 off += actual * bed->s->sizeof_phdr;
5532
5533 for (j = 0; j < alloc; j++)
5534 {
5535 asection **secpp;
5536 bfd_vma off_adjust;
5537 bfd_boolean no_contents;
252b5132 5538
b301b248
AM
5539 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5540 number of sections with contents contributing to both p_filesz
5541 and p_memsz, followed by a number of sections with no contents
5542 that just contribute to p_memsz. In this loop, OFF tracks next
02bf8d82 5543 available file offset for PT_LOAD and PT_NOTE segments. */
30fe1832
AM
5544 m = sorted_seg_map[j];
5545 p = phdrs + m->idx;
252b5132 5546 p->p_type = m->p_type;
28a7f3e7 5547 p->p_flags = m->p_flags;
252b5132 5548
3f570048 5549 if (m->count == 0)
5d695627 5550 p->p_vaddr = m->p_vaddr_offset;
3f570048 5551 else
5d695627 5552 p->p_vaddr = m->sections[0]->vma + m->p_vaddr_offset;
3f570048
AM
5553
5554 if (m->p_paddr_valid)
5555 p->p_paddr = m->p_paddr;
5556 else if (m->count == 0)
5557 p->p_paddr = 0;
5558 else
5d695627 5559 p->p_paddr = m->sections[0]->lma + m->p_vaddr_offset;
3f570048
AM
5560
5561 if (p->p_type == PT_LOAD
5562 && (abfd->flags & D_PAGED) != 0)
5563 {
5564 /* p_align in demand paged PT_LOAD segments effectively stores
5565 the maximum page size. When copying an executable with
5566 objcopy, we set m->p_align from the input file. Use this
5567 value for maxpagesize rather than bed->maxpagesize, which
5568 may be different. Note that we use maxpagesize for PT_TLS
5569 segment alignment later in this function, so we are relying
5570 on at least one PT_LOAD segment appearing before a PT_TLS
5571 segment. */
5572 if (m->p_align_valid)
5573 maxpagesize = m->p_align;
5574
5575 p->p_align = maxpagesize;
5576 }
3271a814
NS
5577 else if (m->p_align_valid)
5578 p->p_align = m->p_align;
e970b90a
DJ
5579 else if (m->count == 0)
5580 p->p_align = 1 << bed->s->log_file_align;
30fe1832
AM
5581
5582 if (m == phdr_load_seg)
5583 {
5584 if (!m->includes_filehdr)
5585 p->p_offset = off;
5586 off += actual * bed->s->sizeof_phdr;
5587 }
3f570048 5588
bf988460
AM
5589 no_contents = FALSE;
5590 off_adjust = 0;
252b5132 5591 if (p->p_type == PT_LOAD
b301b248 5592 && m->count > 0)
252b5132 5593 {
b301b248 5594 bfd_size_type align;
a49e53ed 5595 unsigned int align_power = 0;
b301b248 5596
3271a814
NS
5597 if (m->p_align_valid)
5598 align = p->p_align;
5599 else
252b5132 5600 {
3271a814
NS
5601 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5602 {
5603 unsigned int secalign;
08a40648 5604
fd361982 5605 secalign = bfd_section_alignment (*secpp);
3271a814
NS
5606 if (secalign > align_power)
5607 align_power = secalign;
5608 }
5609 align = (bfd_size_type) 1 << align_power;
5610 if (align < maxpagesize)
5611 align = maxpagesize;
b301b248 5612 }
252b5132 5613
02bf8d82
AM
5614 for (i = 0; i < m->count; i++)
5615 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5616 /* If we aren't making room for this section, then
5617 it must be SHT_NOBITS regardless of what we've
5618 set via struct bfd_elf_special_section. */
5619 elf_section_type (m->sections[i]) = SHT_NOBITS;
5620
bf988460 5621 /* Find out whether this segment contains any loadable
aea274d3
AM
5622 sections. */
5623 no_contents = TRUE;
5624 for (i = 0; i < m->count; i++)
5625 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5626 {
5627 no_contents = FALSE;
5628 break;
5629 }
bf988460 5630
85cfcbfb 5631 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align);
a8c75b76
AM
5632
5633 /* Broken hardware and/or kernel require that files do not
5634 map the same page with different permissions on some hppa
5635 processors. */
30fe1832
AM
5636 if (j != 0
5637 && (abfd->flags & D_PAGED) != 0
a8c75b76
AM
5638 && bed->no_page_alias
5639 && (off & (maxpagesize - 1)) != 0
5640 && (off & -maxpagesize) == ((off + off_adjust) & -maxpagesize))
5641 off_adjust += maxpagesize;
bf988460
AM
5642 off += off_adjust;
5643 if (no_contents)
5644 {
5645 /* We shouldn't need to align the segment on disk since
5646 the segment doesn't need file space, but the gABI
5647 arguably requires the alignment and glibc ld.so
5648 checks it. So to comply with the alignment
5649 requirement but not waste file space, we adjust
5650 p_offset for just this segment. (OFF_ADJUST is
5651 subtracted from OFF later.) This may put p_offset
5652 past the end of file, but that shouldn't matter. */
5653 }
5654 else
5655 off_adjust = 0;
252b5132 5656 }
b1a6d0b1
NC
5657 /* Make sure the .dynamic section is the first section in the
5658 PT_DYNAMIC segment. */
5659 else if (p->p_type == PT_DYNAMIC
5660 && m->count > 1
5661 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5662 {
5663 _bfd_error_handler
871b3ab2 5664 (_("%pB: The first section in the PT_DYNAMIC segment"
63a5468a 5665 " is not the .dynamic section"),
b301b248 5666 abfd);
b1a6d0b1
NC
5667 bfd_set_error (bfd_error_bad_value);
5668 return FALSE;
5669 }
3f001e84
JK
5670 /* Set the note section type to SHT_NOTE. */
5671 else if (p->p_type == PT_NOTE)
5672 for (i = 0; i < m->count; i++)
5673 elf_section_type (m->sections[i]) = SHT_NOTE;
252b5132 5674
252b5132
RH
5675 if (m->includes_filehdr)
5676 {
bf988460 5677 if (!m->p_flags_valid)
252b5132 5678 p->p_flags |= PF_R;
252b5132
RH
5679 p->p_filesz = bed->s->sizeof_ehdr;
5680 p->p_memsz = bed->s->sizeof_ehdr;
30fe1832 5681 if (p->p_type == PT_LOAD)
252b5132 5682 {
30fe1832 5683 if (m->count > 0)
252b5132 5684 {
30fe1832
AM
5685 if (p->p_vaddr < (bfd_vma) off
5686 || (!m->p_paddr_valid
5687 && p->p_paddr < (bfd_vma) off))
5688 {
5689 _bfd_error_handler
5690 (_("%pB: not enough room for program headers,"
5691 " try linking with -N"),
5692 abfd);
5693 bfd_set_error (bfd_error_bad_value);
5694 return FALSE;
5695 }
5696 p->p_vaddr -= off;
5697 if (!m->p_paddr_valid)
5698 p->p_paddr -= off;
252b5132 5699 }
30fe1832
AM
5700 }
5701 else if (sorted_seg_map[0]->includes_filehdr)
5702 {
5703 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5704 p->p_vaddr = filehdr->p_vaddr;
bf988460 5705 if (!m->p_paddr_valid)
30fe1832 5706 p->p_paddr = filehdr->p_paddr;
252b5132 5707 }
252b5132
RH
5708 }
5709
5710 if (m->includes_phdrs)
5711 {
bf988460 5712 if (!m->p_flags_valid)
252b5132 5713 p->p_flags |= PF_R;
30fe1832
AM
5714 p->p_filesz += actual * bed->s->sizeof_phdr;
5715 p->p_memsz += actual * bed->s->sizeof_phdr;
f3520d2f 5716 if (!m->includes_filehdr)
252b5132 5717 {
30fe1832 5718 if (p->p_type == PT_LOAD)
252b5132 5719 {
30fe1832
AM
5720 elf_elfheader (abfd)->e_phoff = p->p_offset;
5721 if (m->count > 0)
5722 {
5723 p->p_vaddr -= off - p->p_offset;
5724 if (!m->p_paddr_valid)
5725 p->p_paddr -= off - p->p_offset;
5726 }
5727 }
5728 else if (phdr_load_seg != NULL)
5729 {
5730 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
5731 bfd_vma phdr_off = 0;
5732 if (phdr_load_seg->includes_filehdr)
5733 phdr_off = bed->s->sizeof_ehdr;
5734 p->p_vaddr = phdr->p_vaddr + phdr_off;
bf988460 5735 if (!m->p_paddr_valid)
30fe1832
AM
5736 p->p_paddr = phdr->p_paddr + phdr_off;
5737 p->p_offset = phdr->p_offset + phdr_off;
252b5132 5738 }
30fe1832
AM
5739 else
5740 p->p_offset = bed->s->sizeof_ehdr;
2b0bc088 5741 }
252b5132
RH
5742 }
5743
5744 if (p->p_type == PT_LOAD
5745 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5746 {
bf988460 5747 if (!m->includes_filehdr && !m->includes_phdrs)
0bc3450e
AM
5748 {
5749 p->p_offset = off;
5750 if (no_contents)
67641dd3
AM
5751 {
5752 /* Put meaningless p_offset for PT_LOAD segments
5753 without file contents somewhere within the first
5754 page, in an attempt to not point past EOF. */
5755 bfd_size_type align = maxpagesize;
5756 if (align < p->p_align)
5757 align = p->p_align;
5758 if (align < 1)
5759 align = 1;
5760 p->p_offset = off % align;
5761 }
0bc3450e 5762 }
252b5132
RH
5763 else
5764 {
5765 file_ptr adjust;
5766
5767 adjust = off - (p->p_offset + p->p_filesz);
bf988460
AM
5768 if (!no_contents)
5769 p->p_filesz += adjust;
252b5132
RH
5770 p->p_memsz += adjust;
5771 }
5772 }
5773
1ea63fd2
AM
5774 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5775 maps. Set filepos for sections in PT_LOAD segments, and in
5776 core files, for sections in PT_NOTE segments.
5777 assign_file_positions_for_non_load_sections will set filepos
5778 for other sections and update p_filesz for other segments. */
252b5132
RH
5779 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5780 {
5781 asection *sec;
252b5132 5782 bfd_size_type align;
627b32bc 5783 Elf_Internal_Shdr *this_hdr;
252b5132
RH
5784
5785 sec = *secpp;
02bf8d82 5786 this_hdr = &elf_section_data (sec)->this_hdr;
fd361982 5787 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
252b5132 5788
88967714
AM
5789 if ((p->p_type == PT_LOAD
5790 || p->p_type == PT_TLS)
5791 && (this_hdr->sh_type != SHT_NOBITS
5792 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5793 && ((this_hdr->sh_flags & SHF_TLS) == 0
5794 || p->p_type == PT_TLS))))
252b5132 5795 {
b5599592
AM
5796 bfd_vma p_start = p->p_paddr;
5797 bfd_vma p_end = p_start + p->p_memsz;
5798 bfd_vma s_start = sec->lma;
5799 bfd_vma adjust = s_start - p_end;
252b5132 5800
a2d1e028
L
5801 if (adjust != 0
5802 && (s_start < p_end
5803 || p_end < p_start))
252b5132 5804 {
4eca0228 5805 _bfd_error_handler
695344c0 5806 /* xgettext:c-format */
2dcf00ce
AM
5807 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5808 abfd, sec, (uint64_t) s_start, (uint64_t) p_end);
88967714 5809 adjust = 0;
b5599592 5810 sec->lma = p_end;
1cfb7d1e 5811 }
3ac9b6c9 5812 p->p_memsz += adjust;
1cfb7d1e 5813
88967714
AM
5814 if (this_hdr->sh_type != SHT_NOBITS)
5815 {
30fe1832 5816 if (p->p_type == PT_LOAD)
32812159 5817 {
30fe1832
AM
5818 if (p->p_filesz + adjust < p->p_memsz)
5819 {
5820 /* We have a PROGBITS section following NOBITS ones.
5821 Allocate file space for the NOBITS section(s) and
5822 zero it. */
5823 adjust = p->p_memsz - p->p_filesz;
5824 if (!write_zeros (abfd, off, adjust))
5825 return FALSE;
5826 }
5827 off += adjust;
32812159 5828 }
88967714 5829 p->p_filesz += adjust;
252b5132 5830 }
252b5132
RH
5831 }
5832
5833 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5834 {
b301b248
AM
5835 /* The section at i == 0 is the one that actually contains
5836 everything. */
4a938328
MS
5837 if (i == 0)
5838 {
627b32bc 5839 this_hdr->sh_offset = sec->filepos = off;
6a3cd2b4
AM
5840 off += this_hdr->sh_size;
5841 p->p_filesz = this_hdr->sh_size;
b301b248
AM
5842 p->p_memsz = 0;
5843 p->p_align = 1;
252b5132 5844 }
4a938328 5845 else
252b5132 5846 {
b301b248 5847 /* The rest are fake sections that shouldn't be written. */
252b5132 5848 sec->filepos = 0;
eea6121a 5849 sec->size = 0;
b301b248
AM
5850 sec->flags = 0;
5851 continue;
252b5132 5852 }
252b5132
RH
5853 }
5854 else
5855 {
1e951488 5856 if (p->p_type == PT_LOAD)
b301b248 5857 {
1e951488
AM
5858 this_hdr->sh_offset = sec->filepos = off;
5859 if (this_hdr->sh_type != SHT_NOBITS)
5860 off += this_hdr->sh_size;
5861 }
5862 else if (this_hdr->sh_type == SHT_NOBITS
5863 && (this_hdr->sh_flags & SHF_TLS) != 0
5864 && this_hdr->sh_offset == 0)
5865 {
5866 /* This is a .tbss section that didn't get a PT_LOAD.
5867 (See _bfd_elf_map_sections_to_segments "Create a
5868 final PT_LOAD".) Set sh_offset to the value it
5869 would have if we had created a zero p_filesz and
5870 p_memsz PT_LOAD header for the section. This
5871 also makes the PT_TLS header have the same
5872 p_offset value. */
5873 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5874 off, align);
5875 this_hdr->sh_offset = sec->filepos = off + adjust;
b301b248 5876 }
252b5132 5877
02bf8d82 5878 if (this_hdr->sh_type != SHT_NOBITS)
b301b248 5879 {
6a3cd2b4 5880 p->p_filesz += this_hdr->sh_size;
02bf8d82
AM
5881 /* A load section without SHF_ALLOC is something like
5882 a note section in a PT_NOTE segment. These take
5883 file space but are not loaded into memory. */
5884 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
6a3cd2b4 5885 p->p_memsz += this_hdr->sh_size;
b301b248 5886 }
6a3cd2b4 5887 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
13ae64f3 5888 {
6a3cd2b4
AM
5889 if (p->p_type == PT_TLS)
5890 p->p_memsz += this_hdr->sh_size;
5891
5892 /* .tbss is special. It doesn't contribute to p_memsz of
5893 normal segments. */
5894 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5895 p->p_memsz += this_hdr->sh_size;
13ae64f3
JJ
5896 }
5897
b10a8ae0
L
5898 if (align > p->p_align
5899 && !m->p_align_valid
5900 && (p->p_type != PT_LOAD
5901 || (abfd->flags & D_PAGED) == 0))
252b5132
RH
5902 p->p_align = align;
5903 }
5904
bf988460 5905 if (!m->p_flags_valid)
252b5132
RH
5906 {
5907 p->p_flags |= PF_R;
02bf8d82 5908 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
252b5132 5909 p->p_flags |= PF_X;
02bf8d82 5910 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
252b5132
RH
5911 p->p_flags |= PF_W;
5912 }
5913 }
43a8475c 5914
bf988460 5915 off -= off_adjust;
0920dee7 5916
30fe1832
AM
5917 /* PR ld/20815 - Check that the program header segment, if
5918 present, will be loaded into memory. */
5919 if (p->p_type == PT_PHDR
5920 && phdr_load_seg == NULL
5921 && !(bed->elf_backend_allow_non_load_phdr != NULL
5922 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5923 {
5924 /* The fix for this error is usually to edit the linker script being
5925 used and set up the program headers manually. Either that or
5926 leave room for the headers at the start of the SECTIONS. */
5927 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5928 " by LOAD segment"),
5929 abfd);
5930 return FALSE;
5931 }
5932
7c928300
AM
5933 /* Check that all sections are in a PT_LOAD segment.
5934 Don't check funky gdb generated core files. */
5935 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
9a83a553
AM
5936 {
5937 bfd_boolean check_vma = TRUE;
5938
5939 for (i = 1; i < m->count; i++)
5940 if (m->sections[i]->vma == m->sections[i - 1]->vma
5941 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5942 ->this_hdr), p) != 0
5943 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5944 ->this_hdr), p) != 0)
0920dee7 5945 {
9a83a553
AM
5946 /* Looks like we have overlays packed into the segment. */
5947 check_vma = FALSE;
5948 break;
0920dee7 5949 }
9a83a553
AM
5950
5951 for (i = 0; i < m->count; i++)
5952 {
5953 Elf_Internal_Shdr *this_hdr;
5954 asection *sec;
5955
5956 sec = m->sections[i];
5957 this_hdr = &(elf_section_data(sec)->this_hdr);
86b2281f
AM
5958 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5959 && !ELF_TBSS_SPECIAL (this_hdr, p))
9a83a553 5960 {
4eca0228 5961 _bfd_error_handler
695344c0 5962 /* xgettext:c-format */
871b3ab2 5963 (_("%pB: section `%pA' can't be allocated in segment %d"),
9a83a553
AM
5964 abfd, sec, j);
5965 print_segment_map (m);
5966 }
5967 }
5968 }
252b5132
RH
5969 }
5970
12bd6957 5971 elf_next_file_pos (abfd) = off;
30fe1832
AM
5972
5973 if (link_info != NULL
5974 && phdr_load_seg != NULL
5975 && phdr_load_seg->includes_filehdr)
5976 {
5977 /* There is a segment that contains both the file headers and the
5978 program headers, so provide a symbol __ehdr_start pointing there.
5979 A program can use this to examine itself robustly. */
5980
5981 struct elf_link_hash_entry *hash
5982 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5983 FALSE, FALSE, TRUE);
5984 /* If the symbol was referenced and not defined, define it. */
5985 if (hash != NULL
5986 && (hash->root.type == bfd_link_hash_new
5987 || hash->root.type == bfd_link_hash_undefined
5988 || hash->root.type == bfd_link_hash_undefweak
5989 || hash->root.type == bfd_link_hash_common))
5990 {
5991 asection *s = NULL;
5992 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr;
5993
5994 if (phdr_load_seg->count != 0)
5995 /* The segment contains sections, so use the first one. */
5996 s = phdr_load_seg->sections[0];
5997 else
5998 /* Use the first (i.e. lowest-addressed) section in any segment. */
5999 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6000 if (m->p_type == PT_LOAD && m->count != 0)
6001 {
6002 s = m->sections[0];
6003 break;
6004 }
6005
6006 if (s != NULL)
6007 {
6008 hash->root.u.def.value = filehdr_vaddr - s->vma;
6009 hash->root.u.def.section = s;
6010 }
6011 else
6012 {
6013 hash->root.u.def.value = filehdr_vaddr;
6014 hash->root.u.def.section = bfd_abs_section_ptr;
6015 }
6016
6017 hash->root.type = bfd_link_hash_defined;
6018 hash->def_regular = 1;
6019 hash->non_elf = 0;
6020 }
6021 }
6022
f3520d2f
AM
6023 return TRUE;
6024}
6025
1faa385f
NC
6026/* Determine if a bfd is a debuginfo file. Unfortunately there
6027 is no defined method for detecting such files, so we have to
6028 use heuristics instead. */
6029
6030bfd_boolean
6031is_debuginfo_file (bfd *abfd)
6032{
6033 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6034 return FALSE;
6035
6036 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6037 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6038 Elf_Internal_Shdr **headerp;
6039
6040 for (headerp = start_headers; headerp < end_headers; headerp ++)
6041 {
6042 Elf_Internal_Shdr *header = * headerp;
6043
6044 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6045 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6046 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6047 && header->sh_type != SHT_NOBITS
6048 && header->sh_type != SHT_NOTE)
6049 return FALSE;
6050 }
6051
6052 return TRUE;
6053}
6054
1ff6de03
NA
6055/* Assign file positions for the other sections, except for compressed debugging
6056 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
f3520d2f
AM
6057
6058static bfd_boolean
6059assign_file_positions_for_non_load_sections (bfd *abfd,
6060 struct bfd_link_info *link_info)
6061{
6062 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6063 Elf_Internal_Shdr **i_shdrpp;
e06efbf1 6064 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
f3520d2f
AM
6065 Elf_Internal_Phdr *phdrs;
6066 Elf_Internal_Phdr *p;
6067 struct elf_segment_map *m;
f3520d2f 6068 file_ptr off;
f3520d2f 6069
5c182d5f 6070 i_shdrpp = elf_elfsections (abfd);
e06efbf1 6071 end_hdrpp = i_shdrpp + elf_numsections (abfd);
12bd6957 6072 off = elf_next_file_pos (abfd);
e06efbf1 6073 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5c182d5f 6074 {
5c182d5f
AM
6075 Elf_Internal_Shdr *hdr;
6076
6077 hdr = *hdrpp;
6078 if (hdr->bfd_section != NULL
252e386e
AM
6079 && (hdr->bfd_section->filepos != 0
6080 || (hdr->sh_type == SHT_NOBITS
6081 && hdr->contents == NULL)))
627b32bc 6082 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5c182d5f
AM
6083 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6084 {
1faa385f
NC
6085 if (hdr->sh_size != 0
6086 /* PR 24717 - debuginfo files are known to be not strictly
6087 compliant with the ELF standard. In particular they often
6088 have .note.gnu.property sections that are outside of any
6089 loadable segment. This is not a problem for such files,
6090 so do not warn about them. */
6091 && ! is_debuginfo_file (abfd))
4eca0228 6092 _bfd_error_handler
695344c0 6093 /* xgettext:c-format */
871b3ab2 6094 (_("%pB: warning: allocated section `%s' not in segment"),
e8d2ba53
AM
6095 abfd,
6096 (hdr->bfd_section == NULL
6097 ? "*unknown*"
6098 : hdr->bfd_section->name));
3ba71138
L
6099 /* We don't need to page align empty sections. */
6100 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5c182d5f
AM
6101 off += vma_page_aligned_bias (hdr->sh_addr, off,
6102 bed->maxpagesize);
6103 else
6104 off += vma_page_aligned_bias (hdr->sh_addr, off,
6105 hdr->sh_addralign);
6106 off = _bfd_elf_assign_file_position_for_section (hdr, off,
6107 FALSE);
6108 }
6109 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6110 && hdr->bfd_section == NULL)
1ff6de03
NA
6111 /* We don't know the offset of these sections yet: their size has
6112 not been decided. */
0ce398f1 6113 || (hdr->bfd_section != NULL
1ff6de03
NA
6114 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6115 || (bfd_section_is_ctf (hdr->bfd_section)
6116 && abfd->is_linker_output)))
12bd6957 6117 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6a40cf0c
NC
6118 || (elf_symtab_shndx_list (abfd) != NULL
6119 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6120 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6121 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5c182d5f
AM
6122 hdr->sh_offset = -1;
6123 else
6124 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5c182d5f 6125 }
30fe1832 6126 elf_next_file_pos (abfd) = off;
5c182d5f 6127
252b5132
RH
6128 /* Now that we have set the section file positions, we can set up
6129 the file positions for the non PT_LOAD segments. */
f3520d2f 6130 phdrs = elf_tdata (abfd)->phdr;
12bd6957 6131 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
252b5132 6132 {
129af99f 6133 if (p->p_type == PT_GNU_RELRO)
252b5132 6134 {
f2731e0c 6135 bfd_vma start, end;
01f7e10c 6136 bfd_boolean ok;
1ea63fd2 6137
129af99f 6138 if (link_info != NULL)
8c37241b 6139 {
129af99f 6140 /* During linking the range of the RELRO segment is passed
f2731e0c
AM
6141 in link_info. Note that there may be padding between
6142 relro_start and the first RELRO section. */
6143 start = link_info->relro_start;
6144 end = link_info->relro_end;
6145 }
6146 else if (m->count != 0)
6147 {
6148 if (!m->p_size_valid)
6149 abort ();
6150 start = m->sections[0]->vma;
6151 end = start + m->p_size;
6152 }
6153 else
6154 {
6155 start = 0;
6156 end = 0;
6157 }
6158
01f7e10c 6159 ok = FALSE;
f2731e0c
AM
6160 if (start < end)
6161 {
6162 struct elf_segment_map *lm;
6163 const Elf_Internal_Phdr *lp;
6164 unsigned int i;
6165
6166 /* Find a LOAD segment containing a section in the RELRO
6167 segment. */
12bd6957 6168 for (lm = elf_seg_map (abfd), lp = phdrs;
3146fac4
AM
6169 lm != NULL;
6170 lm = lm->next, lp++)
8c37241b
JJ
6171 {
6172 if (lp->p_type == PT_LOAD
3146fac4 6173 && lm->count != 0
dbc88fc1
AM
6174 && (lm->sections[lm->count - 1]->vma
6175 + (!IS_TBSS (lm->sections[lm->count - 1])
6176 ? lm->sections[lm->count - 1]->size
6177 : 0)) > start
f2731e0c 6178 && lm->sections[0]->vma < end)
8c37241b
JJ
6179 break;
6180 }
f2731e0c 6181
01f7e10c 6182 if (lm != NULL)
129af99f 6183 {
01f7e10c
AM
6184 /* Find the section starting the RELRO segment. */
6185 for (i = 0; i < lm->count; i++)
6186 {
6187 asection *s = lm->sections[i];
6188 if (s->vma >= start
6189 && s->vma < end
6190 && s->size != 0)
6191 break;
6192 }
6193
6194 if (i < lm->count)
6195 {
6196 p->p_vaddr = lm->sections[i]->vma;
6197 p->p_paddr = lm->sections[i]->lma;
6198 p->p_offset = lm->sections[i]->filepos;
6199 p->p_memsz = end - p->p_vaddr;
6200 p->p_filesz = p->p_memsz;
6201
6202 /* The RELRO segment typically ends a few bytes
6203 into .got.plt but other layouts are possible.
6204 In cases where the end does not match any
6205 loaded section (for instance is in file
6206 padding), trim p_filesz back to correspond to
6207 the end of loaded section contents. */
6208 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6209 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6210
6211 /* Preserve the alignment and flags if they are
6212 valid. The gold linker generates RW/4 for
6213 the PT_GNU_RELRO section. It is better for
6214 objcopy/strip to honor these attributes
6215 otherwise gdb will choke when using separate
6216 debug files. */
6217 if (!m->p_align_valid)
6218 p->p_align = 1;
6219 if (!m->p_flags_valid)
6220 p->p_flags = PF_R;
6221 ok = TRUE;
6222 }
129af99f 6223 }
b84a33b5 6224 }
01f7e10c
AM
6225 if (link_info != NULL)
6226 BFD_ASSERT (ok);
6227 if (!ok)
6228 memset (p, 0, sizeof *p);
129af99f 6229 }
04c3a755
NS
6230 else if (p->p_type == PT_GNU_STACK)
6231 {
6232 if (m->p_size_valid)
6233 p->p_memsz = m->p_size;
6234 }
129af99f
AS
6235 else if (m->count != 0)
6236 {
e06efbf1 6237 unsigned int i;
1a9ccd70 6238
129af99f
AS
6239 if (p->p_type != PT_LOAD
6240 && (p->p_type != PT_NOTE
6241 || bfd_get_format (abfd) != bfd_core))
6242 {
1a9ccd70
NC
6243 /* A user specified segment layout may include a PHDR
6244 segment that overlaps with a LOAD segment... */
6245 if (p->p_type == PT_PHDR)
6246 {
6247 m->count = 0;
6248 continue;
6249 }
6250
c86934ce
NC
6251 if (m->includes_filehdr || m->includes_phdrs)
6252 {
b1fa9dd6 6253 /* PR 17512: file: 2195325e. */
4eca0228 6254 _bfd_error_handler
871b3ab2 6255 (_("%pB: error: non-load segment %d includes file header "
76cfced5
AM
6256 "and/or program header"),
6257 abfd, (int) (p - phdrs));
c86934ce
NC
6258 return FALSE;
6259 }
129af99f 6260
86b2281f 6261 p->p_filesz = 0;
129af99f 6262 p->p_offset = m->sections[0]->filepos;
86b2281f
AM
6263 for (i = m->count; i-- != 0;)
6264 {
6265 asection *sect = m->sections[i];
6266 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6267 if (hdr->sh_type != SHT_NOBITS)
6268 {
6269 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6270 + hdr->sh_size);
6271 break;
6272 }
6273 }
129af99f
AS
6274 }
6275 }
252b5132
RH
6276 }
6277
b34976b6 6278 return TRUE;
252b5132
RH
6279}
6280
6a40cf0c
NC
6281static elf_section_list *
6282find_section_in_list (unsigned int i, elf_section_list * list)
6283{
6284 for (;list != NULL; list = list->next)
6285 if (list->ndx == i)
6286 break;
6287 return list;
6288}
6289
252b5132
RH
6290/* Work out the file positions of all the sections. This is called by
6291 _bfd_elf_compute_section_file_positions. All the section sizes and
6292 VMAs must be known before this is called.
6293
e0638f70 6294 Reloc sections come in two flavours: Those processed specially as
1ff6de03
NA
6295 "side-channel" data attached to a section to which they apply, and those that
6296 bfd doesn't process as relocations. The latter sort are stored in a normal
6297 bfd section by bfd_section_from_shdr. We don't consider the former sort
6298 here, unless they form part of the loadable image. Reloc sections not
6299 assigned here (and compressed debugging sections and CTF sections which
6300 nothing else in the file can rely upon) will be handled later by
e0638f70 6301 assign_file_positions_for_relocs.
252b5132
RH
6302
6303 We also don't set the positions of the .symtab and .strtab here. */
6304
b34976b6 6305static bfd_boolean
c84fca4d
AO
6306assign_file_positions_except_relocs (bfd *abfd,
6307 struct bfd_link_info *link_info)
252b5132 6308{
5c182d5f
AM
6309 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6310 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
9c5bfbb7 6311 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6d6c25c8 6312 unsigned int alloc;
252b5132
RH
6313
6314 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6315 && bfd_get_format (abfd) != bfd_core)
6316 {
5c182d5f
AM
6317 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6318 unsigned int num_sec = elf_numsections (abfd);
252b5132
RH
6319 Elf_Internal_Shdr **hdrpp;
6320 unsigned int i;
a485e98e 6321 file_ptr off;
252b5132
RH
6322
6323 /* Start after the ELF header. */
6324 off = i_ehdrp->e_ehsize;
6325
6326 /* We are not creating an executable, which means that we are
6327 not creating a program header, and that the actual order of
6328 the sections in the file is unimportant. */
9ad5cbcf 6329 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
252b5132
RH
6330 {
6331 Elf_Internal_Shdr *hdr;
6332
6333 hdr = *hdrpp;
e0638f70
AM
6334 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6335 && hdr->bfd_section == NULL)
1ff6de03
NA
6336 /* Do not assign offsets for these sections yet: we don't know
6337 their sizes. */
0ce398f1 6338 || (hdr->bfd_section != NULL
1ff6de03
NA
6339 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6340 || (bfd_section_is_ctf (hdr->bfd_section)
6341 && abfd->is_linker_output)))
12bd6957 6342 || i == elf_onesymtab (abfd)
6a40cf0c
NC
6343 || (elf_symtab_shndx_list (abfd) != NULL
6344 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6345 || i == elf_strtab_sec (abfd)
6346 || i == elf_shstrtab_sec (abfd))
252b5132
RH
6347 {
6348 hdr->sh_offset = -1;
252b5132 6349 }
9ad5cbcf 6350 else
b34976b6 6351 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 6352 }
a485e98e
AM
6353
6354 elf_next_file_pos (abfd) = off;
6d6c25c8 6355 elf_program_header_size (abfd) = 0;
252b5132
RH
6356 }
6357 else
6358 {
252b5132 6359 /* Assign file positions for the loaded sections based on the
08a40648 6360 assignment of sections to segments. */
f3520d2f
AM
6361 if (!assign_file_positions_for_load_sections (abfd, link_info))
6362 return FALSE;
6363
6364 /* And for non-load sections. */
6365 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6366 return FALSE;
6d6c25c8 6367 }
f3520d2f 6368
6d6c25c8
AM
6369 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
6370 return FALSE;
1a9ccd70 6371
6d6c25c8
AM
6372 /* Write out the program headers. */
6373 alloc = i_ehdrp->e_phnum;
6374 if (alloc != 0)
6375 {
30fe1832 6376 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
cd584857
NC
6377 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6378 return FALSE;
252b5132
RH
6379 }
6380
b34976b6 6381 return TRUE;
252b5132
RH
6382}
6383
ed7e9d0b
AM
6384bfd_boolean
6385_bfd_elf_init_file_header (bfd *abfd,
6386 struct bfd_link_info *info ATTRIBUTE_UNUSED)
252b5132 6387{
3d540e93 6388 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
2b0f7ef9 6389 struct elf_strtab_hash *shstrtab;
9c5bfbb7 6390 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132
RH
6391
6392 i_ehdrp = elf_elfheader (abfd);
252b5132 6393
2b0f7ef9 6394 shstrtab = _bfd_elf_strtab_init ();
252b5132 6395 if (shstrtab == NULL)
b34976b6 6396 return FALSE;
252b5132
RH
6397
6398 elf_shstrtab (abfd) = shstrtab;
6399
6400 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6401 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6402 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6403 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6404
6405 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6406 i_ehdrp->e_ident[EI_DATA] =
6407 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6408 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6409
252b5132
RH
6410 if ((abfd->flags & DYNAMIC) != 0)
6411 i_ehdrp->e_type = ET_DYN;
6412 else if ((abfd->flags & EXEC_P) != 0)
6413 i_ehdrp->e_type = ET_EXEC;
6414 else if (bfd_get_format (abfd) == bfd_core)
6415 i_ehdrp->e_type = ET_CORE;
6416 else
6417 i_ehdrp->e_type = ET_REL;
6418
6419 switch (bfd_get_arch (abfd))
6420 {
6421 case bfd_arch_unknown:
6422 i_ehdrp->e_machine = EM_NONE;
6423 break;
aa4f99bb
AO
6424
6425 /* There used to be a long list of cases here, each one setting
6426 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6427 in the corresponding bfd definition. To avoid duplication,
6428 the switch was removed. Machines that need special handling
6429 can generally do it in elf_backend_final_write_processing(),
6430 unless they need the information earlier than the final write.
6431 Such need can generally be supplied by replacing the tests for
6432 e_machine with the conditions used to determine it. */
252b5132 6433 default:
9c5bfbb7
AM
6434 i_ehdrp->e_machine = bed->elf_machine_code;
6435 }
aa4f99bb 6436
252b5132
RH
6437 i_ehdrp->e_version = bed->s->ev_current;
6438 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6439
c044fabd 6440 /* No program header, for now. */
252b5132
RH
6441 i_ehdrp->e_phoff = 0;
6442 i_ehdrp->e_phentsize = 0;
6443 i_ehdrp->e_phnum = 0;
6444
c044fabd 6445 /* Each bfd section is section header entry. */
252b5132
RH
6446 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6447 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6448
252b5132 6449 elf_tdata (abfd)->symtab_hdr.sh_name =
b34976b6 6450 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
252b5132 6451 elf_tdata (abfd)->strtab_hdr.sh_name =
b34976b6 6452 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
252b5132 6453 elf_tdata (abfd)->shstrtab_hdr.sh_name =
b34976b6 6454 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
252b5132 6455 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
17ca87fc 6456 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
252b5132 6457 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
b34976b6 6458 return FALSE;
252b5132 6459
b34976b6 6460 return TRUE;
252b5132
RH
6461}
6462
6d6c25c8
AM
6463/* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6464
6465 FIXME: We used to have code here to sort the PT_LOAD segments into
6466 ascending order, as per the ELF spec. But this breaks some programs,
6467 including the Linux kernel. But really either the spec should be
6468 changed or the programs updated. */
6469
6470bfd_boolean
6471_bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6472{
6473 if (link_info != NULL && bfd_link_pie (link_info))
6474 {
6475 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6476 unsigned int num_segments = i_ehdrp->e_phnum;
6477 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6478 Elf_Internal_Phdr *segment = tdata->phdr;
6479 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6480
6481 /* Find the lowest p_vaddr in PT_LOAD segments. */
6482 bfd_vma p_vaddr = (bfd_vma) -1;
6483 for (; segment < end_segment; segment++)
6484 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6485 p_vaddr = segment->p_vaddr;
6486
6487 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6488 segments is non-zero. */
6489 if (p_vaddr)
6490 i_ehdrp->e_type = ET_EXEC;
6491 }
6492 return TRUE;
6493}
6494
252b5132 6495/* Assign file positions for all the reloc sections which are not part
a485e98e 6496 of the loadable file image, and the file position of section headers. */
252b5132 6497
0ce398f1
L
6498static bfd_boolean
6499_bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
252b5132
RH
6500{
6501 file_ptr off;
e06efbf1 6502 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
3e19fb8f 6503 Elf_Internal_Shdr *shdrp;
a485e98e
AM
6504 Elf_Internal_Ehdr *i_ehdrp;
6505 const struct elf_backend_data *bed;
252b5132 6506
12bd6957 6507 off = elf_next_file_pos (abfd);
252b5132 6508
e06efbf1
L
6509 shdrpp = elf_elfsections (abfd);
6510 end_shdrpp = shdrpp + elf_numsections (abfd);
6511 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
252b5132 6512 {
252b5132 6513 shdrp = *shdrpp;
0ce398f1
L
6514 if (shdrp->sh_offset == -1)
6515 {
3e19fb8f 6516 asection *sec = shdrp->bfd_section;
0ce398f1
L
6517 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6518 || shdrp->sh_type == SHT_RELA);
1ff6de03 6519 bfd_boolean is_ctf = sec && bfd_section_is_ctf (sec);
0ce398f1 6520 if (is_rel
1ff6de03 6521 || is_ctf
3e19fb8f 6522 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
0ce398f1 6523 {
1ff6de03 6524 if (!is_rel && !is_ctf)
0ce398f1 6525 {
3e19fb8f
L
6526 const char *name = sec->name;
6527 struct bfd_elf_section_data *d;
6528
0ce398f1 6529 /* Compress DWARF debug sections. */
3e19fb8f 6530 if (!bfd_compress_section (abfd, sec,
0ce398f1
L
6531 shdrp->contents))
6532 return FALSE;
3e19fb8f
L
6533
6534 if (sec->compress_status == COMPRESS_SECTION_DONE
6535 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6536 {
6537 /* If section is compressed with zlib-gnu, convert
6538 section name from .debug_* to .zdebug_*. */
6539 char *new_name
6540 = convert_debug_to_zdebug (abfd, name);
6541 if (new_name == NULL)
6542 return FALSE;
6543 name = new_name;
6544 }
dd905818 6545 /* Add section name to section name section. */
3e19fb8f
L
6546 if (shdrp->sh_name != (unsigned int) -1)
6547 abort ();
6548 shdrp->sh_name
6549 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6550 name, FALSE);
6551 d = elf_section_data (sec);
6552
dd905818 6553 /* Add reloc section name to section name section. */
3e19fb8f
L
6554 if (d->rel.hdr
6555 && !_bfd_elf_set_reloc_sh_name (abfd,
6556 d->rel.hdr,
6557 name, FALSE))
6558 return FALSE;
6559 if (d->rela.hdr
6560 && !_bfd_elf_set_reloc_sh_name (abfd,
6561 d->rela.hdr,
91cb26da 6562 name, TRUE))
3e19fb8f
L
6563 return FALSE;
6564
0ce398f1 6565 /* Update section size and contents. */
3e19fb8f
L
6566 shdrp->sh_size = sec->size;
6567 shdrp->contents = sec->contents;
0ce398f1
L
6568 shdrp->bfd_section->contents = NULL;
6569 }
1ff6de03
NA
6570 else if (is_ctf)
6571 {
6572 /* Update section size and contents. */
6573 shdrp->sh_size = sec->size;
6574 shdrp->contents = sec->contents;
6575 }
6576
0ce398f1
L
6577 off = _bfd_elf_assign_file_position_for_section (shdrp,
6578 off,
6579 TRUE);
6580 }
6581 }
252b5132
RH
6582 }
6583
3e19fb8f
L
6584 /* Place section name section after DWARF debug sections have been
6585 compressed. */
6586 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6587 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6588 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6589 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6590
6591 /* Place the section headers. */
a485e98e
AM
6592 i_ehdrp = elf_elfheader (abfd);
6593 bed = get_elf_backend_data (abfd);
6594 off = align_file_position (off, 1 << bed->s->log_file_align);
6595 i_ehdrp->e_shoff = off;
6596 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
12bd6957 6597 elf_next_file_pos (abfd) = off;
0ce398f1
L
6598
6599 return TRUE;
252b5132
RH
6600}
6601
b34976b6 6602bfd_boolean
217aa764 6603_bfd_elf_write_object_contents (bfd *abfd)
252b5132 6604{
9c5bfbb7 6605 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 6606 Elf_Internal_Shdr **i_shdrp;
b34976b6 6607 bfd_boolean failed;
9ad5cbcf 6608 unsigned int count, num_sec;
30e8ee25 6609 struct elf_obj_tdata *t;
252b5132
RH
6610
6611 if (! abfd->output_has_begun
217aa764 6612 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 6613 return FALSE;
db727370
JL
6614 /* Do not rewrite ELF data when the BFD has been opened for update.
6615 abfd->output_has_begun was set to TRUE on opening, so creation of new
6616 sections, and modification of existing section sizes was restricted.
6617 This means the ELF header, program headers and section headers can't have
6618 changed.
6619 If the contents of any sections has been modified, then those changes have
6620 already been written to the BFD. */
6621 else if (abfd->direction == both_direction)
6622 {
6623 BFD_ASSERT (abfd->output_has_begun);
6624 return TRUE;
6625 }
252b5132
RH
6626
6627 i_shdrp = elf_elfsections (abfd);
252b5132 6628
b34976b6 6629 failed = FALSE;
252b5132
RH
6630 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6631 if (failed)
b34976b6 6632 return FALSE;
252b5132 6633
0ce398f1
L
6634 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6635 return FALSE;
252b5132 6636
c044fabd 6637 /* After writing the headers, we need to write the sections too... */
9ad5cbcf
AM
6638 num_sec = elf_numsections (abfd);
6639 for (count = 1; count < num_sec; count++)
252b5132 6640 {
3e19fb8f
L
6641 i_shdrp[count]->sh_name
6642 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6643 i_shdrp[count]->sh_name);
252b5132 6644 if (bed->elf_backend_section_processing)
75506100
MR
6645 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6646 return FALSE;
252b5132
RH
6647 if (i_shdrp[count]->contents)
6648 {
dc810e39
AM
6649 bfd_size_type amt = i_shdrp[count]->sh_size;
6650
252b5132 6651 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
dc810e39 6652 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
b34976b6 6653 return FALSE;
252b5132
RH
6654 }
6655 }
6656
6657 /* Write out the section header names. */
30e8ee25 6658 t = elf_tdata (abfd);
26ae6d5e 6659 if (elf_shstrtab (abfd) != NULL
30e8ee25 6660 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
08a40648 6661 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
b34976b6 6662 return FALSE;
252b5132 6663
cc364be6
AM
6664 if (!(*bed->elf_backend_final_write_processing) (abfd))
6665 return FALSE;
252b5132 6666
ff59fc36
RM
6667 if (!bed->s->write_shdrs_and_ehdr (abfd))
6668 return FALSE;
6669
6670 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
c0355132
AM
6671 if (t->o->build_id.after_write_object_contents != NULL)
6672 return (*t->o->build_id.after_write_object_contents) (abfd);
ff59fc36
RM
6673
6674 return TRUE;
252b5132
RH
6675}
6676
b34976b6 6677bfd_boolean
217aa764 6678_bfd_elf_write_corefile_contents (bfd *abfd)
252b5132 6679{
c044fabd 6680 /* Hopefully this can be done just like an object file. */
252b5132
RH
6681 return _bfd_elf_write_object_contents (abfd);
6682}
c044fabd
KH
6683
6684/* Given a section, search the header to find them. */
6685
cb33740c 6686unsigned int
198beae2 6687_bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
252b5132 6688{
9c5bfbb7 6689 const struct elf_backend_data *bed;
91d6fa6a 6690 unsigned int sec_index;
252b5132 6691
9ad5cbcf
AM
6692 if (elf_section_data (asect) != NULL
6693 && elf_section_data (asect)->this_idx != 0)
6694 return elf_section_data (asect)->this_idx;
6695
6696 if (bfd_is_abs_section (asect))
91d6fa6a 6697 sec_index = SHN_ABS;
af746e92 6698 else if (bfd_is_com_section (asect))
91d6fa6a 6699 sec_index = SHN_COMMON;
af746e92 6700 else if (bfd_is_und_section (asect))
91d6fa6a 6701 sec_index = SHN_UNDEF;
af746e92 6702 else
91d6fa6a 6703 sec_index = SHN_BAD;
252b5132 6704
af746e92 6705 bed = get_elf_backend_data (abfd);
252b5132
RH
6706 if (bed->elf_backend_section_from_bfd_section)
6707 {
91d6fa6a 6708 int retval = sec_index;
9ad5cbcf 6709
af746e92
AM
6710 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6711 return retval;
252b5132
RH
6712 }
6713
91d6fa6a 6714 if (sec_index == SHN_BAD)
af746e92 6715 bfd_set_error (bfd_error_nonrepresentable_section);
252b5132 6716
91d6fa6a 6717 return sec_index;
252b5132
RH
6718}
6719
6720/* Given a BFD symbol, return the index in the ELF symbol table, or -1
6721 on error. */
6722
6723int
217aa764 6724_bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
252b5132
RH
6725{
6726 asymbol *asym_ptr = *asym_ptr_ptr;
6727 int idx;
6728 flagword flags = asym_ptr->flags;
6729
6730 /* When gas creates relocations against local labels, it creates its
6731 own symbol for the section, but does put the symbol into the
6732 symbol chain, so udata is 0. When the linker is generating
6733 relocatable output, this section symbol may be for one of the
6734 input sections rather than the output section. */
6735 if (asym_ptr->udata.i == 0
6736 && (flags & BSF_SECTION_SYM)
6737 && asym_ptr->section)
6738 {
5372391b 6739 asection *sec;
252b5132
RH
6740 int indx;
6741
5372391b
AM
6742 sec = asym_ptr->section;
6743 if (sec->owner != abfd && sec->output_section != NULL)
6744 sec = sec->output_section;
6745 if (sec->owner == abfd
6746 && (indx = sec->index) < elf_num_section_syms (abfd)
4e89ac30 6747 && elf_section_syms (abfd)[indx] != NULL)
252b5132
RH
6748 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6749 }
6750
6751 idx = asym_ptr->udata.i;
6752
6753 if (idx == 0)
6754 {
6755 /* This case can occur when using --strip-symbol on a symbol
08a40648 6756 which is used in a relocation entry. */
4eca0228 6757 _bfd_error_handler
695344c0 6758 /* xgettext:c-format */
871b3ab2 6759 (_("%pB: symbol `%s' required but not present"),
d003868e 6760 abfd, bfd_asymbol_name (asym_ptr));
252b5132
RH
6761 bfd_set_error (bfd_error_no_symbols);
6762 return -1;
6763 }
6764
6765#if DEBUG & 4
6766 {
6767 fprintf (stderr,
cd9af601
AM
6768 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6769 (long) asym_ptr, asym_ptr->name, idx, flags);
252b5132
RH
6770 fflush (stderr);
6771 }
6772#endif
6773
6774 return idx;
6775}
6776
84d1d650 6777/* Rewrite program header information. */
252b5132 6778
b34976b6 6779static bfd_boolean
84d1d650 6780rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
252b5132 6781{
b34976b6
AM
6782 Elf_Internal_Ehdr *iehdr;
6783 struct elf_segment_map *map;
6784 struct elf_segment_map *map_first;
6785 struct elf_segment_map **pointer_to_map;
6786 Elf_Internal_Phdr *segment;
6787 asection *section;
6788 unsigned int i;
6789 unsigned int num_segments;
6790 bfd_boolean phdr_included = FALSE;
5c44b38e 6791 bfd_boolean p_paddr_valid;
b34976b6
AM
6792 bfd_vma maxpagesize;
6793 struct elf_segment_map *phdr_adjust_seg = NULL;
6794 unsigned int phdr_adjust_num = 0;
9c5bfbb7 6795 const struct elf_backend_data *bed;
bc67d8a6 6796
caf47ea6 6797 bed = get_elf_backend_data (ibfd);
252b5132
RH
6798 iehdr = elf_elfheader (ibfd);
6799
bc67d8a6 6800 map_first = NULL;
c044fabd 6801 pointer_to_map = &map_first;
252b5132
RH
6802
6803 num_segments = elf_elfheader (ibfd)->e_phnum;
bc67d8a6
NC
6804 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6805
6806 /* Returns the end address of the segment + 1. */
aecc8f8a
AM
6807#define SEGMENT_END(segment, start) \
6808 (start + (segment->p_memsz > segment->p_filesz \
6809 ? segment->p_memsz : segment->p_filesz))
bc67d8a6 6810
eecdbe52
JJ
6811#define SECTION_SIZE(section, segment) \
6812 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6813 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
eea6121a 6814 ? section->size : 0)
eecdbe52 6815
b34976b6 6816 /* Returns TRUE if the given section is contained within
bc67d8a6 6817 the given segment. VMA addresses are compared. */
aecc8f8a
AM
6818#define IS_CONTAINED_BY_VMA(section, segment) \
6819 (section->vma >= segment->p_vaddr \
eecdbe52 6820 && (section->vma + SECTION_SIZE (section, segment) \
aecc8f8a 6821 <= (SEGMENT_END (segment, segment->p_vaddr))))
c044fabd 6822
b34976b6 6823 /* Returns TRUE if the given section is contained within
bc67d8a6 6824 the given segment. LMA addresses are compared. */
aecc8f8a
AM
6825#define IS_CONTAINED_BY_LMA(section, segment, base) \
6826 (section->lma >= base \
beab4532 6827 && (section->lma + SECTION_SIZE (section, segment) >= section->lma) \
eecdbe52 6828 && (section->lma + SECTION_SIZE (section, segment) \
aecc8f8a 6829 <= SEGMENT_END (segment, base)))
252b5132 6830
0efc80c8
L
6831 /* Handle PT_NOTE segment. */
6832#define IS_NOTE(p, s) \
aecc8f8a 6833 (p->p_type == PT_NOTE \
0efc80c8 6834 && elf_section_type (s) == SHT_NOTE \
aecc8f8a 6835 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6836 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6837 <= p->p_offset + p->p_filesz))
252b5132 6838
0efc80c8
L
6839 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6840 etc. */
6841#define IS_COREFILE_NOTE(p, s) \
6842 (IS_NOTE (p, s) \
6843 && bfd_get_format (ibfd) == bfd_core \
6844 && s->vma == 0 \
6845 && s->lma == 0)
6846
252b5132
RH
6847 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6848 linker, which generates a PT_INTERP section with p_vaddr and
6849 p_memsz set to 0. */
aecc8f8a
AM
6850#define IS_SOLARIS_PT_INTERP(p, s) \
6851 (p->p_vaddr == 0 \
6852 && p->p_paddr == 0 \
6853 && p->p_memsz == 0 \
6854 && p->p_filesz > 0 \
6855 && (s->flags & SEC_HAS_CONTENTS) != 0 \
eea6121a 6856 && s->size > 0 \
aecc8f8a 6857 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6858 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6859 <= p->p_offset + p->p_filesz))
5c440b1e 6860
bc67d8a6
NC
6861 /* Decide if the given section should be included in the given segment.
6862 A section will be included if:
f5ffc919 6863 1. It is within the address space of the segment -- we use the LMA
08a40648 6864 if that is set for the segment and the VMA otherwise,
0efc80c8 6865 2. It is an allocated section or a NOTE section in a PT_NOTE
d324f6d6 6866 segment.
bc67d8a6 6867 3. There is an output section associated with it,
eecdbe52 6868 4. The section has not already been allocated to a previous segment.
2b05f1b7 6869 5. PT_GNU_STACK segments do not include any sections.
03394ac9 6870 6. PT_TLS segment includes only SHF_TLS sections.
6f79b219
JJ
6871 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6872 8. PT_DYNAMIC should not contain empty sections at the beginning
08a40648 6873 (with the possible exception of .dynamic). */
9f17e2a6 6874#define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
2b05f1b7
L
6875 ((((segment->p_paddr \
6876 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
6877 : IS_CONTAINED_BY_VMA (section, segment)) \
6878 && (section->flags & SEC_ALLOC) != 0) \
0efc80c8 6879 || IS_NOTE (segment, section)) \
2b05f1b7
L
6880 && segment->p_type != PT_GNU_STACK \
6881 && (segment->p_type != PT_TLS \
6882 || (section->flags & SEC_THREAD_LOCAL)) \
6883 && (segment->p_type == PT_LOAD \
6884 || segment->p_type == PT_TLS \
6885 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6886 && (segment->p_type != PT_DYNAMIC \
6887 || SECTION_SIZE (section, segment) > 0 \
6888 || (segment->p_paddr \
6889 ? segment->p_paddr != section->lma \
6890 : segment->p_vaddr != section->vma) \
fd361982 6891 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
9933dc52 6892 && (segment->p_type != PT_LOAD || !section->segment_mark))
bc67d8a6 6893
9f17e2a6
L
6894/* If the output section of a section in the input segment is NULL,
6895 it is removed from the corresponding output segment. */
6896#define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
6897 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
6898 && section->output_section != NULL)
6899
b34976b6 6900 /* Returns TRUE iff seg1 starts after the end of seg2. */
b5f852ea
NC
6901#define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6902 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6903
6904 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6905 their VMA address ranges and their LMA address ranges overlap.
6906 It is possible to have overlapping VMA ranges without overlapping LMA
6907 ranges. RedBoot images for example can have both .data and .bss mapped
6908 to the same VMA range, but with the .data section mapped to a different
6909 LMA. */
aecc8f8a 6910#define SEGMENT_OVERLAPS(seg1, seg2) \
b5f852ea 6911 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
08a40648 6912 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
b5f852ea 6913 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
08a40648 6914 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
bc67d8a6
NC
6915
6916 /* Initialise the segment mark field. */
6917 for (section = ibfd->sections; section != NULL; section = section->next)
b34976b6 6918 section->segment_mark = FALSE;
bc67d8a6 6919
5c44b38e
AM
6920 /* The Solaris linker creates program headers in which all the
6921 p_paddr fields are zero. When we try to objcopy or strip such a
6922 file, we get confused. Check for this case, and if we find it
6923 don't set the p_paddr_valid fields. */
6924 p_paddr_valid = FALSE;
6925 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6926 i < num_segments;
6927 i++, segment++)
6928 if (segment->p_paddr != 0)
6929 {
6930 p_paddr_valid = TRUE;
6931 break;
6932 }
6933
252b5132 6934 /* Scan through the segments specified in the program header
bc67d8a6 6935 of the input BFD. For this first scan we look for overlaps
9ad5cbcf 6936 in the loadable segments. These can be created by weird
aecc8f8a 6937 parameters to objcopy. Also, fix some solaris weirdness. */
bc67d8a6
NC
6938 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6939 i < num_segments;
c044fabd 6940 i++, segment++)
252b5132 6941 {
252b5132 6942 unsigned int j;
c044fabd 6943 Elf_Internal_Phdr *segment2;
252b5132 6944
aecc8f8a
AM
6945 if (segment->p_type == PT_INTERP)
6946 for (section = ibfd->sections; section; section = section->next)
6947 if (IS_SOLARIS_PT_INTERP (segment, section))
6948 {
6949 /* Mininal change so that the normal section to segment
4cc11e76 6950 assignment code will work. */
aecc8f8a
AM
6951 segment->p_vaddr = section->vma;
6952 break;
6953 }
6954
bc67d8a6 6955 if (segment->p_type != PT_LOAD)
b10a8ae0
L
6956 {
6957 /* Remove PT_GNU_RELRO segment. */
6958 if (segment->p_type == PT_GNU_RELRO)
6959 segment->p_type = PT_NULL;
6960 continue;
6961 }
c044fabd 6962
bc67d8a6 6963 /* Determine if this segment overlaps any previous segments. */
0067a569 6964 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
bc67d8a6
NC
6965 {
6966 bfd_signed_vma extra_length;
c044fabd 6967
bc67d8a6 6968 if (segment2->p_type != PT_LOAD
0067a569 6969 || !SEGMENT_OVERLAPS (segment, segment2))
bc67d8a6 6970 continue;
c044fabd 6971
bc67d8a6
NC
6972 /* Merge the two segments together. */
6973 if (segment2->p_vaddr < segment->p_vaddr)
6974 {
c044fabd 6975 /* Extend SEGMENT2 to include SEGMENT and then delete
08a40648 6976 SEGMENT. */
0067a569
AM
6977 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6978 - SEGMENT_END (segment2, segment2->p_vaddr));
c044fabd 6979
bc67d8a6
NC
6980 if (extra_length > 0)
6981 {
0067a569 6982 segment2->p_memsz += extra_length;
bc67d8a6
NC
6983 segment2->p_filesz += extra_length;
6984 }
c044fabd 6985
bc67d8a6 6986 segment->p_type = PT_NULL;
c044fabd 6987
bc67d8a6
NC
6988 /* Since we have deleted P we must restart the outer loop. */
6989 i = 0;
6990 segment = elf_tdata (ibfd)->phdr;
6991 break;
6992 }
6993 else
6994 {
c044fabd 6995 /* Extend SEGMENT to include SEGMENT2 and then delete
08a40648 6996 SEGMENT2. */
0067a569
AM
6997 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
6998 - SEGMENT_END (segment, segment->p_vaddr));
c044fabd 6999
bc67d8a6
NC
7000 if (extra_length > 0)
7001 {
0067a569 7002 segment->p_memsz += extra_length;
bc67d8a6
NC
7003 segment->p_filesz += extra_length;
7004 }
c044fabd 7005
bc67d8a6
NC
7006 segment2->p_type = PT_NULL;
7007 }
7008 }
7009 }
c044fabd 7010
bc67d8a6
NC
7011 /* The second scan attempts to assign sections to segments. */
7012 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7013 i < num_segments;
0067a569 7014 i++, segment++)
bc67d8a6 7015 {
0067a569
AM
7016 unsigned int section_count;
7017 asection **sections;
7018 asection *output_section;
7019 unsigned int isec;
9933dc52
AM
7020 asection *matching_lma;
7021 asection *suggested_lma;
0067a569 7022 unsigned int j;
446f7ed5 7023 size_t amt;
0067a569 7024 asection *first_section;
bc67d8a6
NC
7025
7026 if (segment->p_type == PT_NULL)
7027 continue;
c044fabd 7028
9f17e2a6 7029 first_section = NULL;
bc67d8a6 7030 /* Compute how many sections might be placed into this segment. */
b5f852ea
NC
7031 for (section = ibfd->sections, section_count = 0;
7032 section != NULL;
7033 section = section->next)
9f17e2a6
L
7034 {
7035 /* Find the first section in the input segment, which may be
7036 removed from the corresponding output segment. */
7037 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
7038 {
7039 if (first_section == NULL)
7040 first_section = section;
7041 if (section->output_section != NULL)
7042 ++section_count;
7043 }
7044 }
811072d8 7045
b5f852ea
NC
7046 /* Allocate a segment map big enough to contain
7047 all of the sections we have selected. */
00bee008 7048 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7049 amt += section_count * sizeof (asection *);
a50b1753 7050 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7051 if (map == NULL)
b34976b6 7052 return FALSE;
252b5132
RH
7053
7054 /* Initialise the fields of the segment map. Default to
7055 using the physical address of the segment in the input BFD. */
0067a569
AM
7056 map->next = NULL;
7057 map->p_type = segment->p_type;
7058 map->p_flags = segment->p_flags;
bc67d8a6 7059 map->p_flags_valid = 1;
55d55ac7 7060
9f17e2a6
L
7061 /* If the first section in the input segment is removed, there is
7062 no need to preserve segment physical address in the corresponding
7063 output segment. */
945c025a 7064 if (!first_section || first_section->output_section != NULL)
9f17e2a6
L
7065 {
7066 map->p_paddr = segment->p_paddr;
5c44b38e 7067 map->p_paddr_valid = p_paddr_valid;
9f17e2a6 7068 }
252b5132
RH
7069
7070 /* Determine if this segment contains the ELF file header
7071 and if it contains the program headers themselves. */
bc67d8a6
NC
7072 map->includes_filehdr = (segment->p_offset == 0
7073 && segment->p_filesz >= iehdr->e_ehsize);
bc67d8a6 7074 map->includes_phdrs = 0;
252b5132 7075
0067a569 7076 if (!phdr_included || segment->p_type != PT_LOAD)
252b5132 7077 {
bc67d8a6
NC
7078 map->includes_phdrs =
7079 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7080 && (segment->p_offset + segment->p_filesz
252b5132
RH
7081 >= ((bfd_vma) iehdr->e_phoff
7082 + iehdr->e_phnum * iehdr->e_phentsize)));
c044fabd 7083
bc67d8a6 7084 if (segment->p_type == PT_LOAD && map->includes_phdrs)
b34976b6 7085 phdr_included = TRUE;
252b5132
RH
7086 }
7087
bc67d8a6 7088 if (section_count == 0)
252b5132
RH
7089 {
7090 /* Special segments, such as the PT_PHDR segment, may contain
7091 no sections, but ordinary, loadable segments should contain
1ed89aa9 7092 something. They are allowed by the ELF spec however, so only
07d6d2b8 7093 a warning is produced.
f98450c6
NC
7094 There is however the valid use case of embedded systems which
7095 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7096 flash memory with zeros. No warning is shown for that case. */
7097 if (segment->p_type == PT_LOAD
7098 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7099 /* xgettext:c-format */
9793eb77
AM
7100 _bfd_error_handler
7101 (_("%pB: warning: empty loadable segment detected"
7102 " at vaddr=%#" PRIx64 ", is this intentional?"),
7103 ibfd, (uint64_t) segment->p_vaddr);
252b5132 7104
5d695627 7105 map->p_vaddr_offset = segment->p_vaddr;
bc67d8a6 7106 map->count = 0;
c044fabd
KH
7107 *pointer_to_map = map;
7108 pointer_to_map = &map->next;
252b5132
RH
7109
7110 continue;
7111 }
7112
7113 /* Now scan the sections in the input BFD again and attempt
7114 to add their corresponding output sections to the segment map.
7115 The problem here is how to handle an output section which has
7116 been moved (ie had its LMA changed). There are four possibilities:
7117
7118 1. None of the sections have been moved.
7119 In this case we can continue to use the segment LMA from the
7120 input BFD.
7121
7122 2. All of the sections have been moved by the same amount.
7123 In this case we can change the segment's LMA to match the LMA
7124 of the first section.
7125
7126 3. Some of the sections have been moved, others have not.
7127 In this case those sections which have not been moved can be
7128 placed in the current segment which will have to have its size,
7129 and possibly its LMA changed, and a new segment or segments will
7130 have to be created to contain the other sections.
7131
b5f852ea 7132 4. The sections have been moved, but not by the same amount.
252b5132
RH
7133 In this case we can change the segment's LMA to match the LMA
7134 of the first section and we will have to create a new segment
7135 or segments to contain the other sections.
7136
7137 In order to save time, we allocate an array to hold the section
7138 pointers that we are interested in. As these sections get assigned
7139 to a segment, they are removed from this array. */
7140
446f7ed5
AM
7141 amt = section_count * sizeof (asection *);
7142 sections = (asection **) bfd_malloc (amt);
252b5132 7143 if (sections == NULL)
b34976b6 7144 return FALSE;
252b5132
RH
7145
7146 /* Step One: Scan for segment vs section LMA conflicts.
7147 Also add the sections to the section array allocated above.
7148 Also add the sections to the current segment. In the common
7149 case, where the sections have not been moved, this means that
7150 we have completely filled the segment, and there is nothing
7151 more to do. */
252b5132 7152 isec = 0;
9933dc52
AM
7153 matching_lma = NULL;
7154 suggested_lma = NULL;
252b5132 7155
461c4b2e 7156 for (section = first_section, j = 0;
bc67d8a6
NC
7157 section != NULL;
7158 section = section->next)
252b5132 7159 {
caf47ea6 7160 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
c0f7859b 7161 {
bc67d8a6
NC
7162 output_section = section->output_section;
7163
0067a569 7164 sections[j++] = section;
252b5132
RH
7165
7166 /* The Solaris native linker always sets p_paddr to 0.
7167 We try to catch that case here, and set it to the
5e8d7549
NC
7168 correct value. Note - some backends require that
7169 p_paddr be left as zero. */
5c44b38e 7170 if (!p_paddr_valid
4455705d 7171 && segment->p_vaddr != 0
0067a569 7172 && !bed->want_p_paddr_set_to_zero
252b5132 7173 && isec == 0
bc67d8a6 7174 && output_section->lma != 0
9933dc52
AM
7175 && (align_power (segment->p_vaddr
7176 + (map->includes_filehdr
7177 ? iehdr->e_ehsize : 0)
7178 + (map->includes_phdrs
7179 ? iehdr->e_phnum * iehdr->e_phentsize
7180 : 0),
7181 output_section->alignment_power)
7182 == output_section->vma))
bc67d8a6 7183 map->p_paddr = segment->p_vaddr;
252b5132
RH
7184
7185 /* Match up the physical address of the segment with the
7186 LMA address of the output section. */
bc67d8a6 7187 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5e8d7549 7188 || IS_COREFILE_NOTE (segment, section)
0067a569
AM
7189 || (bed->want_p_paddr_set_to_zero
7190 && IS_CONTAINED_BY_VMA (output_section, segment)))
252b5132 7191 {
9933dc52
AM
7192 if (matching_lma == NULL
7193 || output_section->lma < matching_lma->lma)
7194 matching_lma = output_section;
252b5132
RH
7195
7196 /* We assume that if the section fits within the segment
bc67d8a6 7197 then it does not overlap any other section within that
252b5132 7198 segment. */
0067a569
AM
7199 map->sections[isec++] = output_section;
7200 }
9933dc52
AM
7201 else if (suggested_lma == NULL)
7202 suggested_lma = output_section;
147d51c2
L
7203
7204 if (j == section_count)
7205 break;
252b5132
RH
7206 }
7207 }
7208
bc67d8a6 7209 BFD_ASSERT (j == section_count);
252b5132
RH
7210
7211 /* Step Two: Adjust the physical address of the current segment,
7212 if necessary. */
bc67d8a6 7213 if (isec == section_count)
252b5132
RH
7214 {
7215 /* All of the sections fitted within the segment as currently
7216 specified. This is the default case. Add the segment to
7217 the list of built segments and carry on to process the next
7218 program header in the input BFD. */
bc67d8a6 7219 map->count = section_count;
c044fabd
KH
7220 *pointer_to_map = map;
7221 pointer_to_map = &map->next;
08a40648 7222
5c44b38e 7223 if (p_paddr_valid
30fe1832
AM
7224 && !bed->want_p_paddr_set_to_zero)
7225 {
7226 bfd_vma hdr_size = 0;
7227 if (map->includes_filehdr)
7228 hdr_size = iehdr->e_ehsize;
7229 if (map->includes_phdrs)
7230 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7231
7232 /* Account for padding before the first section in the
7233 segment. */
7234 map->p_vaddr_offset = map->p_paddr + hdr_size - matching_lma->lma;
7235 }
08a40648 7236
252b5132
RH
7237 free (sections);
7238 continue;
7239 }
252b5132
RH
7240 else
7241 {
9933dc52
AM
7242 /* Change the current segment's physical address to match
7243 the LMA of the first section that fitted, or if no
7244 section fitted, the first section. */
7245 if (matching_lma == NULL)
7246 matching_lma = suggested_lma;
7247
7248 map->p_paddr = matching_lma->lma;
72730e0c 7249
bc67d8a6
NC
7250 /* Offset the segment physical address from the lma
7251 to allow for space taken up by elf headers. */
9933dc52 7252 if (map->includes_phdrs)
010c8431 7253 {
9933dc52
AM
7254 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7255
7256 /* iehdr->e_phnum is just an estimate of the number
7257 of program headers that we will need. Make a note
7258 here of the number we used and the segment we chose
7259 to hold these headers, so that we can adjust the
7260 offset when we know the correct value. */
7261 phdr_adjust_num = iehdr->e_phnum;
7262 phdr_adjust_seg = map;
010c8431 7263 }
252b5132 7264
9933dc52 7265 if (map->includes_filehdr)
bc67d8a6 7266 {
9933dc52
AM
7267 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7268 map->p_paddr -= iehdr->e_ehsize;
7269 /* We've subtracted off the size of headers from the
7270 first section lma, but there may have been some
7271 alignment padding before that section too. Try to
7272 account for that by adjusting the segment lma down to
7273 the same alignment. */
7274 if (segment->p_align != 0 && segment->p_align < align)
7275 align = segment->p_align;
7276 map->p_paddr &= -align;
bc67d8a6 7277 }
252b5132
RH
7278 }
7279
7280 /* Step Three: Loop over the sections again, this time assigning
caf47ea6 7281 those that fit to the current segment and removing them from the
252b5132
RH
7282 sections array; but making sure not to leave large gaps. Once all
7283 possible sections have been assigned to the current segment it is
7284 added to the list of built segments and if sections still remain
7285 to be assigned, a new segment is constructed before repeating
7286 the loop. */
7287 isec = 0;
7288 do
7289 {
bc67d8a6 7290 map->count = 0;
9933dc52 7291 suggested_lma = NULL;
252b5132
RH
7292
7293 /* Fill the current segment with sections that fit. */
bc67d8a6 7294 for (j = 0; j < section_count; j++)
252b5132 7295 {
bc67d8a6 7296 section = sections[j];
252b5132 7297
bc67d8a6 7298 if (section == NULL)
252b5132
RH
7299 continue;
7300
bc67d8a6 7301 output_section = section->output_section;
252b5132 7302
bc67d8a6 7303 BFD_ASSERT (output_section != NULL);
c044fabd 7304
bc67d8a6
NC
7305 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
7306 || IS_COREFILE_NOTE (segment, section))
252b5132 7307 {
bc67d8a6 7308 if (map->count == 0)
252b5132
RH
7309 {
7310 /* If the first section in a segment does not start at
bc67d8a6
NC
7311 the beginning of the segment, then something is
7312 wrong. */
9933dc52
AM
7313 if (align_power (map->p_paddr
7314 + (map->includes_filehdr
7315 ? iehdr->e_ehsize : 0)
7316 + (map->includes_phdrs
7317 ? iehdr->e_phnum * iehdr->e_phentsize
7318 : 0),
7319 output_section->alignment_power)
7320 != output_section->lma)
9aea1e31 7321 goto sorry;
252b5132
RH
7322 }
7323 else
7324 {
0067a569 7325 asection *prev_sec;
252b5132 7326
bc67d8a6 7327 prev_sec = map->sections[map->count - 1];
252b5132
RH
7328
7329 /* If the gap between the end of the previous section
bc67d8a6
NC
7330 and the start of this section is more than
7331 maxpagesize then we need to start a new segment. */
eea6121a 7332 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
079e9a2f 7333 maxpagesize)
caf47ea6 7334 < BFD_ALIGN (output_section->lma, maxpagesize))
0067a569 7335 || (prev_sec->lma + prev_sec->size
079e9a2f 7336 > output_section->lma))
252b5132 7337 {
9933dc52
AM
7338 if (suggested_lma == NULL)
7339 suggested_lma = output_section;
252b5132
RH
7340
7341 continue;
7342 }
7343 }
7344
bc67d8a6 7345 map->sections[map->count++] = output_section;
252b5132
RH
7346 ++isec;
7347 sections[j] = NULL;
9933dc52
AM
7348 if (segment->p_type == PT_LOAD)
7349 section->segment_mark = TRUE;
0067a569 7350 }
9933dc52
AM
7351 else if (suggested_lma == NULL)
7352 suggested_lma = output_section;
252b5132
RH
7353 }
7354
beab4532
NC
7355 /* PR 23932. A corrupt input file may contain sections that cannot
7356 be assigned to any segment - because for example they have a
9984857c
NC
7357 negative size - or segments that do not contain any sections.
7358 But there are also valid reasons why a segment can be empty.
7359 So allow a count of zero. */
252b5132
RH
7360
7361 /* Add the current segment to the list of built segments. */
c044fabd
KH
7362 *pointer_to_map = map;
7363 pointer_to_map = &map->next;
252b5132 7364
bc67d8a6 7365 if (isec < section_count)
252b5132
RH
7366 {
7367 /* We still have not allocated all of the sections to
7368 segments. Create a new segment here, initialise it
7369 and carry on looping. */
00bee008 7370 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7371 amt += section_count * sizeof (asection *);
5964fc3a 7372 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7373 if (map == NULL)
5ed6aba4
NC
7374 {
7375 free (sections);
7376 return FALSE;
7377 }
252b5132
RH
7378
7379 /* Initialise the fields of the segment map. Set the physical
7380 physical address to the LMA of the first section that has
7381 not yet been assigned. */
0067a569
AM
7382 map->next = NULL;
7383 map->p_type = segment->p_type;
7384 map->p_flags = segment->p_flags;
7385 map->p_flags_valid = 1;
9933dc52 7386 map->p_paddr = suggested_lma->lma;
5c44b38e 7387 map->p_paddr_valid = p_paddr_valid;
bc67d8a6 7388 map->includes_filehdr = 0;
0067a569 7389 map->includes_phdrs = 0;
252b5132 7390 }
9984857c
NC
7391
7392 continue;
7393 sorry:
7394 bfd_set_error (bfd_error_sorry);
7395 free (sections);
7396 return FALSE;
252b5132 7397 }
bc67d8a6 7398 while (isec < section_count);
252b5132
RH
7399
7400 free (sections);
7401 }
7402
12bd6957 7403 elf_seg_map (obfd) = map_first;
bc67d8a6
NC
7404
7405 /* If we had to estimate the number of program headers that were
9ad5cbcf 7406 going to be needed, then check our estimate now and adjust
bc67d8a6
NC
7407 the offset if necessary. */
7408 if (phdr_adjust_seg != NULL)
7409 {
7410 unsigned int count;
c044fabd 7411
bc67d8a6 7412 for (count = 0, map = map_first; map != NULL; map = map->next)
c044fabd 7413 count++;
252b5132 7414
bc67d8a6
NC
7415 if (count > phdr_adjust_num)
7416 phdr_adjust_seg->p_paddr
7417 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
9933dc52
AM
7418
7419 for (map = map_first; map != NULL; map = map->next)
7420 if (map->p_type == PT_PHDR)
7421 {
7422 bfd_vma adjust
7423 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7424 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7425 break;
7426 }
bc67d8a6 7427 }
c044fabd 7428
bc67d8a6 7429#undef SEGMENT_END
eecdbe52 7430#undef SECTION_SIZE
bc67d8a6
NC
7431#undef IS_CONTAINED_BY_VMA
7432#undef IS_CONTAINED_BY_LMA
0efc80c8 7433#undef IS_NOTE
252b5132 7434#undef IS_COREFILE_NOTE
bc67d8a6 7435#undef IS_SOLARIS_PT_INTERP
9f17e2a6 7436#undef IS_SECTION_IN_INPUT_SEGMENT
bc67d8a6
NC
7437#undef INCLUDE_SECTION_IN_SEGMENT
7438#undef SEGMENT_AFTER_SEGMENT
7439#undef SEGMENT_OVERLAPS
b34976b6 7440 return TRUE;
252b5132
RH
7441}
7442
84d1d650
L
7443/* Copy ELF program header information. */
7444
7445static bfd_boolean
7446copy_elf_program_header (bfd *ibfd, bfd *obfd)
7447{
7448 Elf_Internal_Ehdr *iehdr;
7449 struct elf_segment_map *map;
7450 struct elf_segment_map *map_first;
7451 struct elf_segment_map **pointer_to_map;
7452 Elf_Internal_Phdr *segment;
7453 unsigned int i;
7454 unsigned int num_segments;
7455 bfd_boolean phdr_included = FALSE;
88967714 7456 bfd_boolean p_paddr_valid;
84d1d650
L
7457
7458 iehdr = elf_elfheader (ibfd);
7459
7460 map_first = NULL;
7461 pointer_to_map = &map_first;
7462
88967714
AM
7463 /* If all the segment p_paddr fields are zero, don't set
7464 map->p_paddr_valid. */
7465 p_paddr_valid = FALSE;
84d1d650 7466 num_segments = elf_elfheader (ibfd)->e_phnum;
88967714
AM
7467 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7468 i < num_segments;
7469 i++, segment++)
7470 if (segment->p_paddr != 0)
7471 {
7472 p_paddr_valid = TRUE;
7473 break;
7474 }
7475
84d1d650
L
7476 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7477 i < num_segments;
7478 i++, segment++)
7479 {
7480 asection *section;
7481 unsigned int section_count;
986f0783 7482 size_t amt;
84d1d650 7483 Elf_Internal_Shdr *this_hdr;
53020534 7484 asection *first_section = NULL;
a76e6f2f 7485 asection *lowest_section;
84d1d650 7486
84d1d650
L
7487 /* Compute how many sections are in this segment. */
7488 for (section = ibfd->sections, section_count = 0;
7489 section != NULL;
7490 section = section->next)
7491 {
7492 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7493 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
3271a814 7494 {
a76e6f2f
AM
7495 if (first_section == NULL)
7496 first_section = section;
3271a814
NS
7497 section_count++;
7498 }
84d1d650
L
7499 }
7500
7501 /* Allocate a segment map big enough to contain
7502 all of the sections we have selected. */
00bee008 7503 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
986f0783 7504 amt += section_count * sizeof (asection *);
a50b1753 7505 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
84d1d650
L
7506 if (map == NULL)
7507 return FALSE;
7508
7509 /* Initialize the fields of the output segment map with the
7510 input segment. */
7511 map->next = NULL;
7512 map->p_type = segment->p_type;
7513 map->p_flags = segment->p_flags;
7514 map->p_flags_valid = 1;
7515 map->p_paddr = segment->p_paddr;
88967714 7516 map->p_paddr_valid = p_paddr_valid;
3f570048
AM
7517 map->p_align = segment->p_align;
7518 map->p_align_valid = 1;
3271a814 7519 map->p_vaddr_offset = 0;
84d1d650 7520
04c3a755
NS
7521 if (map->p_type == PT_GNU_RELRO
7522 || map->p_type == PT_GNU_STACK)
b10a8ae0
L
7523 {
7524 /* The PT_GNU_RELRO segment may contain the first a few
7525 bytes in the .got.plt section even if the whole .got.plt
7526 section isn't in the PT_GNU_RELRO segment. We won't
04c3a755
NS
7527 change the size of the PT_GNU_RELRO segment.
7528 Similarly, PT_GNU_STACK size is significant on uclinux
7529 systems. */
9433b9b1 7530 map->p_size = segment->p_memsz;
b10a8ae0
L
7531 map->p_size_valid = 1;
7532 }
7533
84d1d650
L
7534 /* Determine if this segment contains the ELF file header
7535 and if it contains the program headers themselves. */
7536 map->includes_filehdr = (segment->p_offset == 0
7537 && segment->p_filesz >= iehdr->e_ehsize);
7538
7539 map->includes_phdrs = 0;
7540 if (! phdr_included || segment->p_type != PT_LOAD)
7541 {
7542 map->includes_phdrs =
7543 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7544 && (segment->p_offset + segment->p_filesz
7545 >= ((bfd_vma) iehdr->e_phoff
7546 + iehdr->e_phnum * iehdr->e_phentsize)));
7547
7548 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7549 phdr_included = TRUE;
7550 }
7551
bbefd0a9 7552 lowest_section = NULL;
84d1d650
L
7553 if (section_count != 0)
7554 {
7555 unsigned int isec = 0;
7556
53020534 7557 for (section = first_section;
84d1d650
L
7558 section != NULL;
7559 section = section->next)
7560 {
7561 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7562 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
53020534
L
7563 {
7564 map->sections[isec++] = section->output_section;
a76e6f2f
AM
7565 if ((section->flags & SEC_ALLOC) != 0)
7566 {
7567 bfd_vma seg_off;
7568
bbefd0a9
AM
7569 if (lowest_section == NULL
7570 || section->lma < lowest_section->lma)
fb8a5684
AM
7571 lowest_section = section;
7572
a76e6f2f
AM
7573 /* Section lmas are set up from PT_LOAD header
7574 p_paddr in _bfd_elf_make_section_from_shdr.
7575 If this header has a p_paddr that disagrees
7576 with the section lma, flag the p_paddr as
7577 invalid. */
7578 if ((section->flags & SEC_LOAD) != 0)
7579 seg_off = this_hdr->sh_offset - segment->p_offset;
7580 else
7581 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7582 if (section->lma - segment->p_paddr != seg_off)
7583 map->p_paddr_valid = FALSE;
7584 }
53020534
L
7585 if (isec == section_count)
7586 break;
7587 }
84d1d650
L
7588 }
7589 }
7590
5d695627
AM
7591 if (section_count == 0)
7592 map->p_vaddr_offset = segment->p_vaddr;
30fe1832
AM
7593 else if (map->p_paddr_valid)
7594 {
7595 /* Account for padding before the first section in the segment. */
7596 bfd_vma hdr_size = 0;
7597 if (map->includes_filehdr)
7598 hdr_size = iehdr->e_ehsize;
7599 if (map->includes_phdrs)
7600 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7601
7602 map->p_vaddr_offset = (map->p_paddr + hdr_size
7603 - (lowest_section ? lowest_section->lma : 0));
7604 }
a76e6f2f 7605
84d1d650
L
7606 map->count = section_count;
7607 *pointer_to_map = map;
7608 pointer_to_map = &map->next;
7609 }
7610
12bd6957 7611 elf_seg_map (obfd) = map_first;
84d1d650
L
7612 return TRUE;
7613}
7614
7615/* Copy private BFD data. This copies or rewrites ELF program header
7616 information. */
7617
7618static bfd_boolean
7619copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7620{
84d1d650
L
7621 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7622 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7623 return TRUE;
7624
7625 if (elf_tdata (ibfd)->phdr == NULL)
7626 return TRUE;
7627
7628 if (ibfd->xvec == obfd->xvec)
7629 {
cb3ff1e5
NC
7630 /* Check to see if any sections in the input BFD
7631 covered by ELF program header have changed. */
d55ce4e2 7632 Elf_Internal_Phdr *segment;
84d1d650
L
7633 asection *section, *osec;
7634 unsigned int i, num_segments;
7635 Elf_Internal_Shdr *this_hdr;
147d51c2
L
7636 const struct elf_backend_data *bed;
7637
7638 bed = get_elf_backend_data (ibfd);
7639
7640 /* Regenerate the segment map if p_paddr is set to 0. */
7641 if (bed->want_p_paddr_set_to_zero)
7642 goto rewrite;
84d1d650
L
7643
7644 /* Initialize the segment mark field. */
7645 for (section = obfd->sections; section != NULL;
7646 section = section->next)
7647 section->segment_mark = FALSE;
7648
7649 num_segments = elf_elfheader (ibfd)->e_phnum;
7650 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7651 i < num_segments;
7652 i++, segment++)
7653 {
5f6999aa
NC
7654 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7655 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7656 which severly confuses things, so always regenerate the segment
7657 map in this case. */
7658 if (segment->p_paddr == 0
7659 && segment->p_memsz == 0
7660 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
cb3ff1e5 7661 goto rewrite;
5f6999aa 7662
84d1d650
L
7663 for (section = ibfd->sections;
7664 section != NULL; section = section->next)
7665 {
7666 /* We mark the output section so that we know it comes
7667 from the input BFD. */
7668 osec = section->output_section;
7669 if (osec)
7670 osec->segment_mark = TRUE;
7671
7672 /* Check if this section is covered by the segment. */
7673 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7674 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
84d1d650
L
7675 {
7676 /* FIXME: Check if its output section is changed or
7677 removed. What else do we need to check? */
7678 if (osec == NULL
7679 || section->flags != osec->flags
7680 || section->lma != osec->lma
7681 || section->vma != osec->vma
7682 || section->size != osec->size
7683 || section->rawsize != osec->rawsize
7684 || section->alignment_power != osec->alignment_power)
7685 goto rewrite;
7686 }
7687 }
7688 }
7689
cb3ff1e5 7690 /* Check to see if any output section do not come from the
84d1d650
L
7691 input BFD. */
7692 for (section = obfd->sections; section != NULL;
7693 section = section->next)
7694 {
535b785f 7695 if (!section->segment_mark)
84d1d650
L
7696 goto rewrite;
7697 else
7698 section->segment_mark = FALSE;
7699 }
7700
7701 return copy_elf_program_header (ibfd, obfd);
7702 }
7703
7704rewrite:
f1d85785
L
7705 if (ibfd->xvec == obfd->xvec)
7706 {
7707 /* When rewriting program header, set the output maxpagesize to
7708 the maximum alignment of input PT_LOAD segments. */
7709 Elf_Internal_Phdr *segment;
7710 unsigned int i;
7711 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7712 bfd_vma maxpagesize = 0;
7713
7714 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7715 i < num_segments;
7716 i++, segment++)
7717 if (segment->p_type == PT_LOAD
7718 && maxpagesize < segment->p_align)
c86934ce
NC
7719 {
7720 /* PR 17512: file: f17299af. */
7721 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
695344c0 7722 /* xgettext:c-format */
2dcf00ce
AM
7723 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7724 PRIx64 " is too large"),
7725 ibfd, (uint64_t) segment->p_align);
c86934ce
NC
7726 else
7727 maxpagesize = segment->p_align;
7728 }
f1d85785
L
7729
7730 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7731 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7732 }
7733
84d1d650
L
7734 return rewrite_elf_program_header (ibfd, obfd);
7735}
7736
ccd2ec6a
L
7737/* Initialize private output section information from input section. */
7738
7739bfd_boolean
7740_bfd_elf_init_private_section_data (bfd *ibfd,
7741 asection *isec,
7742 bfd *obfd,
7743 asection *osec,
7744 struct bfd_link_info *link_info)
7745
7746{
7747 Elf_Internal_Shdr *ihdr, *ohdr;
0e1862bb
L
7748 bfd_boolean final_link = (link_info != NULL
7749 && !bfd_link_relocatable (link_info));
ccd2ec6a
L
7750
7751 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7752 || obfd->xvec->flavour != bfd_target_elf_flavour)
7753 return TRUE;
7754
ba85c43e
NC
7755 BFD_ASSERT (elf_section_data (osec) != NULL);
7756
dfa7b0b8
AM
7757 /* For objcopy and relocatable link, don't copy the output ELF
7758 section type from input if the output BFD section flags have been
7759 set to something different. For a final link allow some flags
7760 that the linker clears to differ. */
42bb2e33 7761 if (elf_section_type (osec) == SHT_NULL
dfa7b0b8
AM
7762 && (osec->flags == isec->flags
7763 || (final_link
7764 && ((osec->flags ^ isec->flags)
0814be7d 7765 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
42bb2e33 7766 elf_section_type (osec) = elf_section_type (isec);
d270463e
L
7767
7768 /* FIXME: Is this correct for all OS/PROC specific flags? */
7769 elf_section_flags (osec) |= (elf_section_flags (isec)
7770 & (SHF_MASKOS | SHF_MASKPROC));
ccd2ec6a 7771
a91e1603 7772 /* Copy sh_info from input for mbind section. */
df3a023b
AM
7773 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7774 && elf_section_flags (isec) & SHF_GNU_MBIND)
a91e1603
L
7775 elf_section_data (osec)->this_hdr.sh_info
7776 = elf_section_data (isec)->this_hdr.sh_info;
7777
ccd2ec6a
L
7778 /* Set things up for objcopy and relocatable link. The output
7779 SHT_GROUP section will have its elf_next_in_group pointing back
7780 to the input group members. Ignore linker created group section.
7781 See elfNN_ia64_object_p in elfxx-ia64.c. */
7bdf4127
AB
7782 if ((link_info == NULL
7783 || !link_info->resolve_section_groups)
7784 && (elf_sec_group (isec) == NULL
7785 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
ccd2ec6a 7786 {
7bdf4127
AB
7787 if (elf_section_flags (isec) & SHF_GROUP)
7788 elf_section_flags (osec) |= SHF_GROUP;
7789 elf_next_in_group (osec) = elf_next_in_group (isec);
7790 elf_section_data (osec)->group = elf_section_data (isec)->group;
ccd2ec6a
L
7791 }
7792
7bdf4127
AB
7793 /* If not decompress, preserve SHF_COMPRESSED. */
7794 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7795 elf_section_flags (osec) |= (elf_section_flags (isec)
7796 & SHF_COMPRESSED);
7797
ccd2ec6a
L
7798 ihdr = &elf_section_data (isec)->this_hdr;
7799
7800 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7801 don't use the output section of the linked-to section since it
7802 may be NULL at this point. */
7803 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7804 {
7805 ohdr = &elf_section_data (osec)->this_hdr;
7806 ohdr->sh_flags |= SHF_LINK_ORDER;
7807 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7808 }
7809
7810 osec->use_rela_p = isec->use_rela_p;
7811
7812 return TRUE;
7813}
7814
252b5132
RH
7815/* Copy private section information. This copies over the entsize
7816 field, and sometimes the info field. */
7817
b34976b6 7818bfd_boolean
217aa764
AM
7819_bfd_elf_copy_private_section_data (bfd *ibfd,
7820 asection *isec,
7821 bfd *obfd,
7822 asection *osec)
252b5132
RH
7823{
7824 Elf_Internal_Shdr *ihdr, *ohdr;
7825
7826 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7827 || obfd->xvec->flavour != bfd_target_elf_flavour)
b34976b6 7828 return TRUE;
252b5132 7829
252b5132
RH
7830 ihdr = &elf_section_data (isec)->this_hdr;
7831 ohdr = &elf_section_data (osec)->this_hdr;
7832
7833 ohdr->sh_entsize = ihdr->sh_entsize;
7834
7835 if (ihdr->sh_type == SHT_SYMTAB
7836 || ihdr->sh_type == SHT_DYNSYM
7837 || ihdr->sh_type == SHT_GNU_verneed
7838 || ihdr->sh_type == SHT_GNU_verdef)
7839 ohdr->sh_info = ihdr->sh_info;
7840
ccd2ec6a
L
7841 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7842 NULL);
252b5132
RH
7843}
7844
d0bf826b
AM
7845/* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7846 necessary if we are removing either the SHT_GROUP section or any of
7847 the group member sections. DISCARDED is the value that a section's
7848 output_section has if the section will be discarded, NULL when this
7849 function is called from objcopy, bfd_abs_section_ptr when called
7850 from the linker. */
80fccad2
BW
7851
7852bfd_boolean
d0bf826b 7853_bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
80fccad2 7854{
30288845
AM
7855 asection *isec;
7856
30288845 7857 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
415f38a6 7858 if (elf_section_type (isec) == SHT_GROUP)
30288845
AM
7859 {
7860 asection *first = elf_next_in_group (isec);
7861 asection *s = first;
d0bf826b
AM
7862 bfd_size_type removed = 0;
7863
30288845
AM
7864 while (s != NULL)
7865 {
415f38a6
AM
7866 /* If this member section is being output but the
7867 SHT_GROUP section is not, then clear the group info
7868 set up by _bfd_elf_copy_private_section_data. */
d0bf826b
AM
7869 if (s->output_section != discarded
7870 && isec->output_section == discarded)
30288845
AM
7871 {
7872 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7873 elf_group_name (s->output_section) = NULL;
7874 }
415f38a6
AM
7875 /* Conversely, if the member section is not being output
7876 but the SHT_GROUP section is, then adjust its size. */
d0bf826b
AM
7877 else if (s->output_section == discarded
7878 && isec->output_section != discarded)
6e5e9d58
AM
7879 {
7880 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7881 removed += 4;
7882 if (elf_sec->rel.hdr != NULL
7883 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7884 removed += 4;
7885 if (elf_sec->rela.hdr != NULL
7886 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7887 removed += 4;
7888 }
30288845
AM
7889 s = elf_next_in_group (s);
7890 if (s == first)
7891 break;
7892 }
d0bf826b
AM
7893 if (removed != 0)
7894 {
7895 if (discarded != NULL)
7896 {
7897 /* If we've been called for ld -r, then we need to
6e5e9d58 7898 adjust the input section size. */
d0bf826b
AM
7899 if (isec->rawsize == 0)
7900 isec->rawsize = isec->size;
7901 isec->size = isec->rawsize - removed;
6e5e9d58
AM
7902 if (isec->size <= 4)
7903 {
7904 isec->size = 0;
7905 isec->flags |= SEC_EXCLUDE;
7906 }
d0bf826b
AM
7907 }
7908 else
7909 {
7910 /* Adjust the output section size when called from
7911 objcopy. */
7912 isec->output_section->size -= removed;
6e5e9d58
AM
7913 if (isec->output_section->size <= 4)
7914 {
7915 isec->output_section->size = 0;
7916 isec->output_section->flags |= SEC_EXCLUDE;
7917 }
d0bf826b
AM
7918 }
7919 }
30288845
AM
7920 }
7921
80fccad2
BW
7922 return TRUE;
7923}
7924
d0bf826b
AM
7925/* Copy private header information. */
7926
7927bfd_boolean
7928_bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7929{
7930 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7931 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7932 return TRUE;
7933
7934 /* Copy over private BFD data if it has not already been copied.
7935 This must be done here, rather than in the copy_private_bfd_data
7936 entry point, because the latter is called after the section
7937 contents have been set, which means that the program headers have
7938 already been worked out. */
12bd6957 7939 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
d0bf826b
AM
7940 {
7941 if (! copy_private_bfd_data (ibfd, obfd))
7942 return FALSE;
7943 }
7944
7945 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7946}
7947
252b5132
RH
7948/* Copy private symbol information. If this symbol is in a section
7949 which we did not map into a BFD section, try to map the section
7950 index correctly. We use special macro definitions for the mapped
7951 section indices; these definitions are interpreted by the
7952 swap_out_syms function. */
7953
9ad5cbcf
AM
7954#define MAP_ONESYMTAB (SHN_HIOS + 1)
7955#define MAP_DYNSYMTAB (SHN_HIOS + 2)
7956#define MAP_STRTAB (SHN_HIOS + 3)
7957#define MAP_SHSTRTAB (SHN_HIOS + 4)
7958#define MAP_SYM_SHNDX (SHN_HIOS + 5)
252b5132 7959
b34976b6 7960bfd_boolean
217aa764
AM
7961_bfd_elf_copy_private_symbol_data (bfd *ibfd,
7962 asymbol *isymarg,
7963 bfd *obfd,
7964 asymbol *osymarg)
252b5132
RH
7965{
7966 elf_symbol_type *isym, *osym;
7967
7968 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7969 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 7970 return TRUE;
252b5132
RH
7971
7972 isym = elf_symbol_from (ibfd, isymarg);
7973 osym = elf_symbol_from (obfd, osymarg);
7974
7975 if (isym != NULL
8424d8f5 7976 && isym->internal_elf_sym.st_shndx != 0
252b5132
RH
7977 && osym != NULL
7978 && bfd_is_abs_section (isym->symbol.section))
7979 {
7980 unsigned int shndx;
7981
7982 shndx = isym->internal_elf_sym.st_shndx;
7983 if (shndx == elf_onesymtab (ibfd))
7984 shndx = MAP_ONESYMTAB;
7985 else if (shndx == elf_dynsymtab (ibfd))
7986 shndx = MAP_DYNSYMTAB;
12bd6957 7987 else if (shndx == elf_strtab_sec (ibfd))
252b5132 7988 shndx = MAP_STRTAB;
12bd6957 7989 else if (shndx == elf_shstrtab_sec (ibfd))
252b5132 7990 shndx = MAP_SHSTRTAB;
6a40cf0c 7991 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
9ad5cbcf 7992 shndx = MAP_SYM_SHNDX;
252b5132
RH
7993 osym->internal_elf_sym.st_shndx = shndx;
7994 }
7995
b34976b6 7996 return TRUE;
252b5132
RH
7997}
7998
7999/* Swap out the symbols. */
8000
b34976b6 8001static bfd_boolean
217aa764 8002swap_out_syms (bfd *abfd,
ef10c3ac 8003 struct elf_strtab_hash **sttp,
217aa764 8004 int relocatable_p)
252b5132 8005{
9c5bfbb7 8006 const struct elf_backend_data *bed;
1f4361a7 8007 unsigned int symcount;
079e9a2f 8008 asymbol **syms;
ef10c3ac 8009 struct elf_strtab_hash *stt;
079e9a2f 8010 Elf_Internal_Shdr *symtab_hdr;
9ad5cbcf 8011 Elf_Internal_Shdr *symtab_shndx_hdr;
079e9a2f 8012 Elf_Internal_Shdr *symstrtab_hdr;
ef10c3ac 8013 struct elf_sym_strtab *symstrtab;
f075ee0c
AM
8014 bfd_byte *outbound_syms;
8015 bfd_byte *outbound_shndx;
ef10c3ac
L
8016 unsigned long outbound_syms_index;
8017 unsigned long outbound_shndx_index;
1f4361a7 8018 unsigned int idx;
12bd6957 8019 unsigned int num_locals;
1f4361a7 8020 size_t amt;
174fd7f9 8021 bfd_boolean name_local_sections;
252b5132 8022
12bd6957 8023 if (!elf_map_symbols (abfd, &num_locals))
b34976b6 8024 return FALSE;
252b5132 8025
c044fabd 8026 /* Dump out the symtabs. */
ef10c3ac 8027 stt = _bfd_elf_strtab_init ();
079e9a2f 8028 if (stt == NULL)
b34976b6 8029 return FALSE;
252b5132 8030
079e9a2f
AM
8031 bed = get_elf_backend_data (abfd);
8032 symcount = bfd_get_symcount (abfd);
8033 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8034 symtab_hdr->sh_type = SHT_SYMTAB;
8035 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8036 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
12bd6957 8037 symtab_hdr->sh_info = num_locals + 1;
72de5009 8038 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
079e9a2f
AM
8039
8040 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8041 symstrtab_hdr->sh_type = SHT_STRTAB;
8042
ef10c3ac 8043 /* Allocate buffer to swap out the .strtab section. */
1f4361a7
AM
8044 if (_bfd_mul_overflow (symcount + 1, sizeof (*symstrtab), &amt)
8045 || (symstrtab = (struct elf_sym_strtab *) bfd_malloc (amt)) == NULL)
ef10c3ac 8046 {
1f4361a7 8047 bfd_set_error (bfd_error_no_memory);
ef10c3ac
L
8048 _bfd_elf_strtab_free (stt);
8049 return FALSE;
8050 }
8051
1f4361a7
AM
8052 if (_bfd_mul_overflow (symcount + 1, bed->s->sizeof_sym, &amt)
8053 || (outbound_syms = (bfd_byte *) bfd_alloc (abfd, amt)) == NULL)
5ed6aba4 8054 {
1f4361a7
AM
8055 error_no_mem:
8056 bfd_set_error (bfd_error_no_memory);
8057 error_return:
ef10c3ac 8058 free (symstrtab);
1f4361a7 8059 _bfd_elf_strtab_free (stt);
5ed6aba4
NC
8060 return FALSE;
8061 }
217aa764 8062 symtab_hdr->contents = outbound_syms;
ef10c3ac 8063 outbound_syms_index = 0;
252b5132 8064
9ad5cbcf 8065 outbound_shndx = NULL;
ef10c3ac 8066 outbound_shndx_index = 0;
6a40cf0c
NC
8067
8068 if (elf_symtab_shndx_list (abfd))
9ad5cbcf 8069 {
6a40cf0c
NC
8070 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8071 if (symtab_shndx_hdr->sh_name != 0)
8072 {
1f4361a7
AM
8073 if (_bfd_mul_overflow (symcount + 1,
8074 sizeof (Elf_External_Sym_Shndx), &amt))
8075 goto error_no_mem;
8076 outbound_shndx = (bfd_byte *) bfd_zalloc (abfd, amt);
6a40cf0c
NC
8077 if (outbound_shndx == NULL)
8078 goto error_return;
5ed6aba4 8079
6a40cf0c
NC
8080 symtab_shndx_hdr->contents = outbound_shndx;
8081 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8082 symtab_shndx_hdr->sh_size = amt;
8083 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8084 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8085 }
8086 /* FIXME: What about any other headers in the list ? */
9ad5cbcf
AM
8087 }
8088
589e6347 8089 /* Now generate the data (for "contents"). */
079e9a2f
AM
8090 {
8091 /* Fill in zeroth symbol and swap it out. */
8092 Elf_Internal_Sym sym;
8093 sym.st_name = 0;
8094 sym.st_value = 0;
8095 sym.st_size = 0;
8096 sym.st_info = 0;
8097 sym.st_other = 0;
8098 sym.st_shndx = SHN_UNDEF;
35fc36a8 8099 sym.st_target_internal = 0;
ef10c3ac
L
8100 symstrtab[0].sym = sym;
8101 symstrtab[0].dest_index = outbound_syms_index;
8102 symstrtab[0].destshndx_index = outbound_shndx_index;
8103 outbound_syms_index++;
9ad5cbcf 8104 if (outbound_shndx != NULL)
ef10c3ac 8105 outbound_shndx_index++;
079e9a2f 8106 }
252b5132 8107
174fd7f9
RS
8108 name_local_sections
8109 = (bed->elf_backend_name_local_section_symbols
8110 && bed->elf_backend_name_local_section_symbols (abfd));
8111
079e9a2f 8112 syms = bfd_get_outsymbols (abfd);
ef10c3ac 8113 for (idx = 0; idx < symcount;)
252b5132 8114 {
252b5132 8115 Elf_Internal_Sym sym;
079e9a2f
AM
8116 bfd_vma value = syms[idx]->value;
8117 elf_symbol_type *type_ptr;
8118 flagword flags = syms[idx]->flags;
8119 int type;
252b5132 8120
174fd7f9
RS
8121 if (!name_local_sections
8122 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
079e9a2f
AM
8123 {
8124 /* Local section symbols have no name. */
ef10c3ac 8125 sym.st_name = (unsigned long) -1;
079e9a2f
AM
8126 }
8127 else
8128 {
ef10c3ac
L
8129 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8130 to get the final offset for st_name. */
8131 sym.st_name
8132 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
8133 FALSE);
079e9a2f 8134 if (sym.st_name == (unsigned long) -1)
ef10c3ac 8135 goto error_return;
079e9a2f 8136 }
252b5132 8137
079e9a2f 8138 type_ptr = elf_symbol_from (abfd, syms[idx]);
252b5132 8139
079e9a2f
AM
8140 if ((flags & BSF_SECTION_SYM) == 0
8141 && bfd_is_com_section (syms[idx]->section))
8142 {
8143 /* ELF common symbols put the alignment into the `value' field,
8144 and the size into the `size' field. This is backwards from
8145 how BFD handles it, so reverse it here. */
8146 sym.st_size = value;
8147 if (type_ptr == NULL
8148 || type_ptr->internal_elf_sym.st_value == 0)
8149 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8150 else
8151 sym.st_value = type_ptr->internal_elf_sym.st_value;
8152 sym.st_shndx = _bfd_elf_section_from_bfd_section
8153 (abfd, syms[idx]->section);
8154 }
8155 else
8156 {
8157 asection *sec = syms[idx]->section;
cb33740c 8158 unsigned int shndx;
252b5132 8159
079e9a2f
AM
8160 if (sec->output_section)
8161 {
8162 value += sec->output_offset;
8163 sec = sec->output_section;
8164 }
589e6347 8165
079e9a2f
AM
8166 /* Don't add in the section vma for relocatable output. */
8167 if (! relocatable_p)
8168 value += sec->vma;
8169 sym.st_value = value;
8170 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8171
8172 if (bfd_is_abs_section (sec)
8173 && type_ptr != NULL
8174 && type_ptr->internal_elf_sym.st_shndx != 0)
8175 {
8176 /* This symbol is in a real ELF section which we did
8177 not create as a BFD section. Undo the mapping done
8178 by copy_private_symbol_data. */
8179 shndx = type_ptr->internal_elf_sym.st_shndx;
8180 switch (shndx)
8181 {
8182 case MAP_ONESYMTAB:
8183 shndx = elf_onesymtab (abfd);
8184 break;
8185 case MAP_DYNSYMTAB:
8186 shndx = elf_dynsymtab (abfd);
8187 break;
8188 case MAP_STRTAB:
12bd6957 8189 shndx = elf_strtab_sec (abfd);
079e9a2f
AM
8190 break;
8191 case MAP_SHSTRTAB:
12bd6957 8192 shndx = elf_shstrtab_sec (abfd);
079e9a2f 8193 break;
9ad5cbcf 8194 case MAP_SYM_SHNDX:
6a40cf0c
NC
8195 if (elf_symtab_shndx_list (abfd))
8196 shndx = elf_symtab_shndx_list (abfd)->ndx;
9ad5cbcf 8197 break;
079e9a2f 8198 default:
15bc576a 8199 shndx = SHN_ABS;
079e9a2f
AM
8200 break;
8201 }
8202 }
8203 else
8204 {
8205 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
252b5132 8206
cb33740c 8207 if (shndx == SHN_BAD)
079e9a2f
AM
8208 {
8209 asection *sec2;
8210
8211 /* Writing this would be a hell of a lot easier if
8212 we had some decent documentation on bfd, and
8213 knew what to expect of the library, and what to
8214 demand of applications. For example, it
8215 appears that `objcopy' might not set the
8216 section of a symbol to be a section that is
8217 actually in the output file. */
8218 sec2 = bfd_get_section_by_name (abfd, sec->name);
5df1bc57
AM
8219 if (sec2 != NULL)
8220 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8221 if (shndx == SHN_BAD)
589e6347 8222 {
695344c0 8223 /* xgettext:c-format */
9793eb77
AM
8224 _bfd_error_handler
8225 (_("unable to find equivalent output section"
8226 " for symbol '%s' from section '%s'"),
8227 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8228 sec->name);
811072d8 8229 bfd_set_error (bfd_error_invalid_operation);
ef10c3ac 8230 goto error_return;
589e6347 8231 }
079e9a2f
AM
8232 }
8233 }
252b5132 8234
079e9a2f
AM
8235 sym.st_shndx = shndx;
8236 }
252b5132 8237
13ae64f3
JJ
8238 if ((flags & BSF_THREAD_LOCAL) != 0)
8239 type = STT_TLS;
d8045f23
NC
8240 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8241 type = STT_GNU_IFUNC;
13ae64f3 8242 else if ((flags & BSF_FUNCTION) != 0)
079e9a2f
AM
8243 type = STT_FUNC;
8244 else if ((flags & BSF_OBJECT) != 0)
8245 type = STT_OBJECT;
d9352518
DB
8246 else if ((flags & BSF_RELC) != 0)
8247 type = STT_RELC;
8248 else if ((flags & BSF_SRELC) != 0)
8249 type = STT_SRELC;
079e9a2f
AM
8250 else
8251 type = STT_NOTYPE;
252b5132 8252
13ae64f3
JJ
8253 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8254 type = STT_TLS;
8255
589e6347 8256 /* Processor-specific types. */
079e9a2f
AM
8257 if (type_ptr != NULL
8258 && bed->elf_backend_get_symbol_type)
8259 type = ((*bed->elf_backend_get_symbol_type)
8260 (&type_ptr->internal_elf_sym, type));
252b5132 8261
079e9a2f
AM
8262 if (flags & BSF_SECTION_SYM)
8263 {
8264 if (flags & BSF_GLOBAL)
8265 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8266 else
8267 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8268 }
8269 else if (bfd_is_com_section (syms[idx]->section))
0a40daed 8270 {
b8871f35
L
8271 if (type != STT_TLS)
8272 {
8273 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8274 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8275 ? STT_COMMON : STT_OBJECT);
8276 else
8277 type = ((flags & BSF_ELF_COMMON) != 0
8278 ? STT_COMMON : STT_OBJECT);
8279 }
8280 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
0a40daed 8281 }
079e9a2f
AM
8282 else if (bfd_is_und_section (syms[idx]->section))
8283 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8284 ? STB_WEAK
8285 : STB_GLOBAL),
8286 type);
8287 else if (flags & BSF_FILE)
8288 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8289 else
8290 {
8291 int bind = STB_LOCAL;
252b5132 8292
079e9a2f
AM
8293 if (flags & BSF_LOCAL)
8294 bind = STB_LOCAL;
3e7a7d11
NC
8295 else if (flags & BSF_GNU_UNIQUE)
8296 bind = STB_GNU_UNIQUE;
079e9a2f
AM
8297 else if (flags & BSF_WEAK)
8298 bind = STB_WEAK;
8299 else if (flags & BSF_GLOBAL)
8300 bind = STB_GLOBAL;
252b5132 8301
079e9a2f
AM
8302 sym.st_info = ELF_ST_INFO (bind, type);
8303 }
252b5132 8304
079e9a2f 8305 if (type_ptr != NULL)
35fc36a8
RS
8306 {
8307 sym.st_other = type_ptr->internal_elf_sym.st_other;
8308 sym.st_target_internal
8309 = type_ptr->internal_elf_sym.st_target_internal;
8310 }
079e9a2f 8311 else
35fc36a8
RS
8312 {
8313 sym.st_other = 0;
8314 sym.st_target_internal = 0;
8315 }
252b5132 8316
ef10c3ac
L
8317 idx++;
8318 symstrtab[idx].sym = sym;
8319 symstrtab[idx].dest_index = outbound_syms_index;
8320 symstrtab[idx].destshndx_index = outbound_shndx_index;
8321
8322 outbound_syms_index++;
9ad5cbcf 8323 if (outbound_shndx != NULL)
ef10c3ac
L
8324 outbound_shndx_index++;
8325 }
8326
8327 /* Finalize the .strtab section. */
8328 _bfd_elf_strtab_finalize (stt);
8329
8330 /* Swap out the .strtab section. */
8331 for (idx = 0; idx <= symcount; idx++)
8332 {
8333 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8334 if (elfsym->sym.st_name == (unsigned long) -1)
8335 elfsym->sym.st_name = 0;
8336 else
8337 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8338 elfsym->sym.st_name);
8339 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8340 (outbound_syms
8341 + (elfsym->dest_index
8342 * bed->s->sizeof_sym)),
8343 (outbound_shndx
8344 + (elfsym->destshndx_index
8345 * sizeof (Elf_External_Sym_Shndx))));
079e9a2f 8346 }
ef10c3ac 8347 free (symstrtab);
252b5132 8348
079e9a2f 8349 *sttp = stt;
ef10c3ac 8350 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
079e9a2f 8351 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 8352 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
079e9a2f
AM
8353 symstrtab_hdr->sh_addr = 0;
8354 symstrtab_hdr->sh_entsize = 0;
8355 symstrtab_hdr->sh_link = 0;
8356 symstrtab_hdr->sh_info = 0;
8357 symstrtab_hdr->sh_addralign = 1;
252b5132 8358
b34976b6 8359 return TRUE;
252b5132
RH
8360}
8361
8362/* Return the number of bytes required to hold the symtab vector.
8363
8364 Note that we base it on the count plus 1, since we will null terminate
8365 the vector allocated based on this size. However, the ELF symbol table
8366 always has a dummy entry as symbol #0, so it ends up even. */
8367
8368long
217aa764 8369_bfd_elf_get_symtab_upper_bound (bfd *abfd)
252b5132 8370{
3a551c7a 8371 bfd_size_type symcount;
252b5132
RH
8372 long symtab_size;
8373 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8374
8375 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8376 if (symcount >= LONG_MAX / sizeof (asymbol *))
8377 {
8378 bfd_set_error (bfd_error_file_too_big);
8379 return -1;
8380 }
b99d1833
AM
8381 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8382 if (symcount > 0)
8383 symtab_size -= sizeof (asymbol *);
252b5132
RH
8384
8385 return symtab_size;
8386}
8387
8388long
217aa764 8389_bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
252b5132 8390{
3a551c7a 8391 bfd_size_type symcount;
252b5132
RH
8392 long symtab_size;
8393 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8394
8395 if (elf_dynsymtab (abfd) == 0)
8396 {
8397 bfd_set_error (bfd_error_invalid_operation);
8398 return -1;
8399 }
8400
8401 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8402 if (symcount >= LONG_MAX / sizeof (asymbol *))
8403 {
8404 bfd_set_error (bfd_error_file_too_big);
8405 return -1;
8406 }
b99d1833
AM
8407 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8408 if (symcount > 0)
8409 symtab_size -= sizeof (asymbol *);
252b5132
RH
8410
8411 return symtab_size;
8412}
8413
8414long
217aa764
AM
8415_bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
8416 sec_ptr asect)
252b5132 8417{
242a1159 8418#if SIZEOF_LONG == SIZEOF_INT
7a6e0d89
AM
8419 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8420 {
8421 bfd_set_error (bfd_error_file_too_big);
8422 return -1;
8423 }
242a1159 8424#endif
252b5132
RH
8425 return (asect->reloc_count + 1) * sizeof (arelent *);
8426}
8427
8428/* Canonicalize the relocs. */
8429
8430long
217aa764
AM
8431_bfd_elf_canonicalize_reloc (bfd *abfd,
8432 sec_ptr section,
8433 arelent **relptr,
8434 asymbol **symbols)
252b5132
RH
8435{
8436 arelent *tblptr;
8437 unsigned int i;
9c5bfbb7 8438 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 8439
b34976b6 8440 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
252b5132
RH
8441 return -1;
8442
8443 tblptr = section->relocation;
8444 for (i = 0; i < section->reloc_count; i++)
8445 *relptr++ = tblptr++;
8446
8447 *relptr = NULL;
8448
8449 return section->reloc_count;
8450}
8451
8452long
6cee3f79 8453_bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
252b5132 8454{
9c5bfbb7 8455 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8456 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
252b5132
RH
8457
8458 if (symcount >= 0)
ed48ec2e 8459 abfd->symcount = symcount;
252b5132
RH
8460 return symcount;
8461}
8462
8463long
217aa764
AM
8464_bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8465 asymbol **allocation)
252b5132 8466{
9c5bfbb7 8467 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8468 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
1f70368c
DJ
8469
8470 if (symcount >= 0)
ed48ec2e 8471 abfd->dynsymcount = symcount;
1f70368c 8472 return symcount;
252b5132
RH
8473}
8474
8615f3f2
AM
8475/* Return the size required for the dynamic reloc entries. Any loadable
8476 section that was actually installed in the BFD, and has type SHT_REL
8477 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8478 dynamic reloc section. */
252b5132
RH
8479
8480long
217aa764 8481_bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
252b5132 8482{
3a551c7a 8483 bfd_size_type count;
252b5132
RH
8484 asection *s;
8485
8486 if (elf_dynsymtab (abfd) == 0)
8487 {
8488 bfd_set_error (bfd_error_invalid_operation);
8489 return -1;
8490 }
8491
3a551c7a 8492 count = 1;
252b5132 8493 for (s = abfd->sections; s != NULL; s = s->next)
266b05cf 8494 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8495 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8496 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
3a551c7a
AM
8497 {
8498 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8499 if (count > LONG_MAX / sizeof (arelent *))
8500 {
8501 bfd_set_error (bfd_error_file_too_big);
8502 return -1;
8503 }
8504 }
8505 return count * sizeof (arelent *);
252b5132
RH
8506}
8507
8615f3f2
AM
8508/* Canonicalize the dynamic relocation entries. Note that we return the
8509 dynamic relocations as a single block, although they are actually
8510 associated with particular sections; the interface, which was
8511 designed for SunOS style shared libraries, expects that there is only
8512 one set of dynamic relocs. Any loadable section that was actually
8513 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8514 dynamic symbol table, is considered to be a dynamic reloc section. */
252b5132
RH
8515
8516long
217aa764
AM
8517_bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8518 arelent **storage,
8519 asymbol **syms)
252b5132 8520{
217aa764 8521 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
252b5132
RH
8522 asection *s;
8523 long ret;
8524
8525 if (elf_dynsymtab (abfd) == 0)
8526 {
8527 bfd_set_error (bfd_error_invalid_operation);
8528 return -1;
8529 }
8530
8531 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8532 ret = 0;
8533 for (s = abfd->sections; s != NULL; s = s->next)
8534 {
266b05cf 8535 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8536 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8537 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8538 {
8539 arelent *p;
8540 long count, i;
8541
b34976b6 8542 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
252b5132 8543 return -1;
eea6121a 8544 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
252b5132
RH
8545 p = s->relocation;
8546 for (i = 0; i < count; i++)
8547 *storage++ = p++;
8548 ret += count;
8549 }
8550 }
8551
8552 *storage = NULL;
8553
8554 return ret;
8555}
8556\f
8557/* Read in the version information. */
8558
b34976b6 8559bfd_boolean
fc0e6df6 8560_bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
252b5132
RH
8561{
8562 bfd_byte *contents = NULL;
fc0e6df6 8563 unsigned int freeidx = 0;
1f4361a7 8564 size_t amt;
fc0e6df6
PB
8565
8566 if (elf_dynverref (abfd) != 0)
8567 {
8568 Elf_Internal_Shdr *hdr;
8569 Elf_External_Verneed *everneed;
8570 Elf_Internal_Verneed *iverneed;
8571 unsigned int i;
d0fb9a8d 8572 bfd_byte *contents_end;
fc0e6df6
PB
8573
8574 hdr = &elf_tdata (abfd)->dynverref_hdr;
8575
bd61e135
AM
8576 if (hdr->sh_info == 0
8577 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
d0fb9a8d 8578 {
601a03ba 8579error_return_bad_verref:
4eca0228 8580 _bfd_error_handler
871b3ab2 8581 (_("%pB: .gnu.version_r invalid entry"), abfd);
601a03ba 8582 bfd_set_error (bfd_error_bad_value);
d0fb9a8d
JJ
8583error_return_verref:
8584 elf_tdata (abfd)->verref = NULL;
8585 elf_tdata (abfd)->cverrefs = 0;
8586 goto error_return;
8587 }
601a03ba 8588
7e56c51c
NC
8589 ufile_ptr filesize = bfd_get_file_size (abfd);
8590 if (filesize > 0 && filesize < hdr->sh_size)
8591 {
8592 /* PR 24708: Avoid attempts to allocate a ridiculous amount
8593 of memory. */
8594 bfd_set_error (bfd_error_no_memory);
8595 _bfd_error_handler
8596 /* xgettext:c-format */
8597 (_("error: %pB version reference section is too large (%#" PRIx64 " bytes)"),
8598 abfd, (uint64_t) hdr->sh_size);
8599 goto error_return_verref;
8600 }
601a03ba 8601
2bb3687b
AM
8602 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8603 goto error_return_verref;
8604 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8605 if (contents == NULL)
d0fb9a8d 8606 goto error_return_verref;
fc0e6df6 8607
1f4361a7
AM
8608 if (_bfd_mul_overflow (hdr->sh_info, sizeof (Elf_Internal_Verneed), &amt))
8609 {
8610 bfd_set_error (bfd_error_file_too_big);
8611 goto error_return_verref;
8612 }
8613 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *) bfd_alloc (abfd, amt);
601a03ba 8614 if (elf_tdata (abfd)->verref == NULL)
d0fb9a8d
JJ
8615 goto error_return_verref;
8616
8617 BFD_ASSERT (sizeof (Elf_External_Verneed)
8618 == sizeof (Elf_External_Vernaux));
8619 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
fc0e6df6
PB
8620 everneed = (Elf_External_Verneed *) contents;
8621 iverneed = elf_tdata (abfd)->verref;
8622 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8623 {
8624 Elf_External_Vernaux *evernaux;
8625 Elf_Internal_Vernaux *ivernaux;
8626 unsigned int j;
8627
8628 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8629
8630 iverneed->vn_bfd = abfd;
8631
8632 iverneed->vn_filename =
8633 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8634 iverneed->vn_file);
8635 if (iverneed->vn_filename == NULL)
601a03ba 8636 goto error_return_bad_verref;
fc0e6df6 8637
d0fb9a8d
JJ
8638 if (iverneed->vn_cnt == 0)
8639 iverneed->vn_auxptr = NULL;
8640 else
8641 {
1f4361a7
AM
8642 if (_bfd_mul_overflow (iverneed->vn_cnt,
8643 sizeof (Elf_Internal_Vernaux), &amt))
8644 {
8645 bfd_set_error (bfd_error_file_too_big);
8646 goto error_return_verref;
8647 }
a50b1753 8648 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
1f4361a7 8649 bfd_alloc (abfd, amt);
d0fb9a8d
JJ
8650 if (iverneed->vn_auxptr == NULL)
8651 goto error_return_verref;
8652 }
8653
8654 if (iverneed->vn_aux
8655 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8656 goto error_return_bad_verref;
fc0e6df6
PB
8657
8658 evernaux = ((Elf_External_Vernaux *)
8659 ((bfd_byte *) everneed + iverneed->vn_aux));
8660 ivernaux = iverneed->vn_auxptr;
8661 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8662 {
8663 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8664
8665 ivernaux->vna_nodename =
8666 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8667 ivernaux->vna_name);
8668 if (ivernaux->vna_nodename == NULL)
601a03ba 8669 goto error_return_bad_verref;
fc0e6df6 8670
25ff461f
AM
8671 if (ivernaux->vna_other > freeidx)
8672 freeidx = ivernaux->vna_other;
8673
8674 ivernaux->vna_nextptr = NULL;
8675 if (ivernaux->vna_next == 0)
8676 {
8677 iverneed->vn_cnt = j + 1;
8678 break;
8679 }
fc0e6df6
PB
8680 if (j + 1 < iverneed->vn_cnt)
8681 ivernaux->vna_nextptr = ivernaux + 1;
fc0e6df6 8682
d0fb9a8d
JJ
8683 if (ivernaux->vna_next
8684 > (size_t) (contents_end - (bfd_byte *) evernaux))
601a03ba 8685 goto error_return_bad_verref;
d0fb9a8d 8686
fc0e6df6
PB
8687 evernaux = ((Elf_External_Vernaux *)
8688 ((bfd_byte *) evernaux + ivernaux->vna_next));
fc0e6df6
PB
8689 }
8690
25ff461f
AM
8691 iverneed->vn_nextref = NULL;
8692 if (iverneed->vn_next == 0)
8693 break;
fc0e6df6
PB
8694 if (i + 1 < hdr->sh_info)
8695 iverneed->vn_nextref = iverneed + 1;
fc0e6df6 8696
d0fb9a8d
JJ
8697 if (iverneed->vn_next
8698 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8699 goto error_return_bad_verref;
d0fb9a8d 8700
fc0e6df6
PB
8701 everneed = ((Elf_External_Verneed *)
8702 ((bfd_byte *) everneed + iverneed->vn_next));
8703 }
25ff461f 8704 elf_tdata (abfd)->cverrefs = i;
fc0e6df6
PB
8705
8706 free (contents);
8707 contents = NULL;
8708 }
252b5132
RH
8709
8710 if (elf_dynverdef (abfd) != 0)
8711 {
8712 Elf_Internal_Shdr *hdr;
8713 Elf_External_Verdef *everdef;
8714 Elf_Internal_Verdef *iverdef;
f631889e
UD
8715 Elf_Internal_Verdef *iverdefarr;
8716 Elf_Internal_Verdef iverdefmem;
252b5132 8717 unsigned int i;
062e2358 8718 unsigned int maxidx;
d0fb9a8d 8719 bfd_byte *contents_end_def, *contents_end_aux;
252b5132
RH
8720
8721 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8722
601a03ba
AM
8723 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8724 {
8725 error_return_bad_verdef:
4eca0228 8726 _bfd_error_handler
871b3ab2 8727 (_("%pB: .gnu.version_d invalid entry"), abfd);
601a03ba
AM
8728 bfd_set_error (bfd_error_bad_value);
8729 error_return_verdef:
8730 elf_tdata (abfd)->verdef = NULL;
8731 elf_tdata (abfd)->cverdefs = 0;
8732 goto error_return;
8733 }
8734
2bb3687b 8735 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
601a03ba 8736 goto error_return_verdef;
2bb3687b
AM
8737 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8738 if (contents == NULL)
601a03ba 8739 goto error_return_verdef;
d0fb9a8d
JJ
8740
8741 BFD_ASSERT (sizeof (Elf_External_Verdef)
8742 >= sizeof (Elf_External_Verdaux));
8743 contents_end_def = contents + hdr->sh_size
8744 - sizeof (Elf_External_Verdef);
8745 contents_end_aux = contents + hdr->sh_size
8746 - sizeof (Elf_External_Verdaux);
8747
f631889e
UD
8748 /* We know the number of entries in the section but not the maximum
8749 index. Therefore we have to run through all entries and find
8750 the maximum. */
252b5132 8751 everdef = (Elf_External_Verdef *) contents;
f631889e
UD
8752 maxidx = 0;
8753 for (i = 0; i < hdr->sh_info; ++i)
8754 {
8755 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8756
601a03ba
AM
8757 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8758 goto error_return_bad_verdef;
062e2358
AM
8759 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8760 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
f631889e 8761
25ff461f
AM
8762 if (iverdefmem.vd_next == 0)
8763 break;
8764
d0fb9a8d
JJ
8765 if (iverdefmem.vd_next
8766 > (size_t) (contents_end_def - (bfd_byte *) everdef))
601a03ba 8767 goto error_return_bad_verdef;
d0fb9a8d 8768
f631889e
UD
8769 everdef = ((Elf_External_Verdef *)
8770 ((bfd_byte *) everdef + iverdefmem.vd_next));
8771 }
8772
fc0e6df6
PB
8773 if (default_imported_symver)
8774 {
8775 if (freeidx > maxidx)
8776 maxidx = ++freeidx;
8777 else
8778 freeidx = ++maxidx;
8779 }
1f4361a7
AM
8780 if (_bfd_mul_overflow (maxidx, sizeof (Elf_Internal_Verdef), &amt))
8781 {
8782 bfd_set_error (bfd_error_file_too_big);
8783 goto error_return_verdef;
8784 }
8785 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
f631889e 8786 if (elf_tdata (abfd)->verdef == NULL)
601a03ba 8787 goto error_return_verdef;
f631889e
UD
8788
8789 elf_tdata (abfd)->cverdefs = maxidx;
8790
8791 everdef = (Elf_External_Verdef *) contents;
8792 iverdefarr = elf_tdata (abfd)->verdef;
8793 for (i = 0; i < hdr->sh_info; i++)
252b5132
RH
8794 {
8795 Elf_External_Verdaux *everdaux;
8796 Elf_Internal_Verdaux *iverdaux;
8797 unsigned int j;
8798
f631889e
UD
8799 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8800
d0fb9a8d 8801 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
601a03ba 8802 goto error_return_bad_verdef;
d0fb9a8d 8803
f631889e 8804 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
595bce75 8805 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
252b5132
RH
8806
8807 iverdef->vd_bfd = abfd;
8808
d0fb9a8d
JJ
8809 if (iverdef->vd_cnt == 0)
8810 iverdef->vd_auxptr = NULL;
8811 else
8812 {
1f4361a7
AM
8813 if (_bfd_mul_overflow (iverdef->vd_cnt,
8814 sizeof (Elf_Internal_Verdaux), &amt))
8815 {
8816 bfd_set_error (bfd_error_file_too_big);
8817 goto error_return_verdef;
8818 }
a50b1753 8819 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
1f4361a7 8820 bfd_alloc (abfd, amt);
d0fb9a8d
JJ
8821 if (iverdef->vd_auxptr == NULL)
8822 goto error_return_verdef;
8823 }
8824
8825 if (iverdef->vd_aux
8826 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
601a03ba 8827 goto error_return_bad_verdef;
252b5132
RH
8828
8829 everdaux = ((Elf_External_Verdaux *)
8830 ((bfd_byte *) everdef + iverdef->vd_aux));
8831 iverdaux = iverdef->vd_auxptr;
8832 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8833 {
8834 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8835
8836 iverdaux->vda_nodename =
8837 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8838 iverdaux->vda_name);
8839 if (iverdaux->vda_nodename == NULL)
601a03ba 8840 goto error_return_bad_verdef;
252b5132 8841
25ff461f
AM
8842 iverdaux->vda_nextptr = NULL;
8843 if (iverdaux->vda_next == 0)
8844 {
8845 iverdef->vd_cnt = j + 1;
8846 break;
8847 }
252b5132
RH
8848 if (j + 1 < iverdef->vd_cnt)
8849 iverdaux->vda_nextptr = iverdaux + 1;
252b5132 8850
d0fb9a8d
JJ
8851 if (iverdaux->vda_next
8852 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
601a03ba 8853 goto error_return_bad_verdef;
d0fb9a8d 8854
252b5132
RH
8855 everdaux = ((Elf_External_Verdaux *)
8856 ((bfd_byte *) everdaux + iverdaux->vda_next));
8857 }
8858
595bce75 8859 iverdef->vd_nodename = NULL;
d0fb9a8d
JJ
8860 if (iverdef->vd_cnt)
8861 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
252b5132 8862
25ff461f
AM
8863 iverdef->vd_nextdef = NULL;
8864 if (iverdef->vd_next == 0)
8865 break;
d0fb9a8d 8866 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
252b5132 8867 iverdef->vd_nextdef = iverdef + 1;
252b5132
RH
8868
8869 everdef = ((Elf_External_Verdef *)
8870 ((bfd_byte *) everdef + iverdef->vd_next));
8871 }
8872
8873 free (contents);
8874 contents = NULL;
8875 }
fc0e6df6 8876 else if (default_imported_symver)
252b5132 8877 {
fc0e6df6
PB
8878 if (freeidx < 3)
8879 freeidx = 3;
8880 else
8881 freeidx++;
252b5132 8882
1f4361a7
AM
8883 if (_bfd_mul_overflow (freeidx, sizeof (Elf_Internal_Verdef), &amt))
8884 {
8885 bfd_set_error (bfd_error_file_too_big);
8886 goto error_return;
8887 }
8888 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
fc0e6df6 8889 if (elf_tdata (abfd)->verdef == NULL)
252b5132
RH
8890 goto error_return;
8891
fc0e6df6
PB
8892 elf_tdata (abfd)->cverdefs = freeidx;
8893 }
252b5132 8894
fc0e6df6
PB
8895 /* Create a default version based on the soname. */
8896 if (default_imported_symver)
8897 {
8898 Elf_Internal_Verdef *iverdef;
8899 Elf_Internal_Verdaux *iverdaux;
252b5132 8900
5bb3703f 8901 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
252b5132 8902
fc0e6df6
PB
8903 iverdef->vd_version = VER_DEF_CURRENT;
8904 iverdef->vd_flags = 0;
8905 iverdef->vd_ndx = freeidx;
8906 iverdef->vd_cnt = 1;
252b5132 8907
fc0e6df6 8908 iverdef->vd_bfd = abfd;
252b5132 8909
fc0e6df6
PB
8910 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8911 if (iverdef->vd_nodename == NULL)
d0fb9a8d 8912 goto error_return_verdef;
fc0e6df6 8913 iverdef->vd_nextdef = NULL;
601a03ba
AM
8914 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8915 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
d0fb9a8d
JJ
8916 if (iverdef->vd_auxptr == NULL)
8917 goto error_return_verdef;
252b5132 8918
fc0e6df6
PB
8919 iverdaux = iverdef->vd_auxptr;
8920 iverdaux->vda_nodename = iverdef->vd_nodename;
252b5132
RH
8921 }
8922
b34976b6 8923 return TRUE;
252b5132
RH
8924
8925 error_return:
5ed6aba4 8926 if (contents != NULL)
252b5132 8927 free (contents);
b34976b6 8928 return FALSE;
252b5132
RH
8929}
8930\f
8931asymbol *
217aa764 8932_bfd_elf_make_empty_symbol (bfd *abfd)
252b5132
RH
8933{
8934 elf_symbol_type *newsym;
8935
7a6e0d89 8936 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
252b5132
RH
8937 if (!newsym)
8938 return NULL;
201159ec
NC
8939 newsym->symbol.the_bfd = abfd;
8940 return &newsym->symbol;
252b5132
RH
8941}
8942
8943void
217aa764
AM
8944_bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8945 asymbol *symbol,
8946 symbol_info *ret)
252b5132
RH
8947{
8948 bfd_symbol_info (symbol, ret);
8949}
8950
8951/* Return whether a symbol name implies a local symbol. Most targets
8952 use this function for the is_local_label_name entry point, but some
8953 override it. */
8954
b34976b6 8955bfd_boolean
217aa764
AM
8956_bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8957 const char *name)
252b5132
RH
8958{
8959 /* Normal local symbols start with ``.L''. */
8960 if (name[0] == '.' && name[1] == 'L')
b34976b6 8961 return TRUE;
252b5132
RH
8962
8963 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8964 DWARF debugging symbols starting with ``..''. */
8965 if (name[0] == '.' && name[1] == '.')
b34976b6 8966 return TRUE;
252b5132
RH
8967
8968 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
8969 emitting DWARF debugging output. I suspect this is actually a
8970 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
8971 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
8972 underscore to be emitted on some ELF targets). For ease of use,
8973 we treat such symbols as local. */
8974 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
b34976b6 8975 return TRUE;
252b5132 8976
b1fa9dd6
NC
8977 /* Treat assembler generated fake symbols, dollar local labels and
8978 forward-backward labels (aka local labels) as locals.
8979 These labels have the form:
8980
07d6d2b8 8981 L0^A.* (fake symbols)
b1fa9dd6
NC
8982
8983 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
8984
8985 Versions which start with .L will have already been matched above,
8986 so we only need to match the rest. */
8987 if (name[0] == 'L' && ISDIGIT (name[1]))
8988 {
8989 bfd_boolean ret = FALSE;
8990 const char * p;
8991 char c;
8992
8993 for (p = name + 2; (c = *p); p++)
8994 {
8995 if (c == 1 || c == 2)
8996 {
8997 if (c == 1 && p == name + 2)
8998 /* A fake symbol. */
8999 return TRUE;
9000
9001 /* FIXME: We are being paranoid here and treating symbols like
9002 L0^Bfoo as if there were non-local, on the grounds that the
9003 assembler will never generate them. But can any symbol
9004 containing an ASCII value in the range 1-31 ever be anything
9005 other than some kind of local ? */
9006 ret = TRUE;
9007 }
9008
9009 if (! ISDIGIT (c))
9010 {
9011 ret = FALSE;
9012 break;
9013 }
9014 }
9015 return ret;
9016 }
ffa54770 9017
b34976b6 9018 return FALSE;
252b5132
RH
9019}
9020
9021alent *
217aa764
AM
9022_bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9023 asymbol *symbol ATTRIBUTE_UNUSED)
252b5132
RH
9024{
9025 abort ();
9026 return NULL;
9027}
9028
b34976b6 9029bfd_boolean
217aa764
AM
9030_bfd_elf_set_arch_mach (bfd *abfd,
9031 enum bfd_architecture arch,
9032 unsigned long machine)
252b5132
RH
9033{
9034 /* If this isn't the right architecture for this backend, and this
9035 isn't the generic backend, fail. */
9036 if (arch != get_elf_backend_data (abfd)->arch
9037 && arch != bfd_arch_unknown
9038 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
b34976b6 9039 return FALSE;
252b5132
RH
9040
9041 return bfd_default_set_arch_mach (abfd, arch, machine);
9042}
9043
d1fad7c6
NC
9044/* Find the nearest line to a particular section and offset,
9045 for error reporting. */
9046
b34976b6 9047bfd_boolean
217aa764 9048_bfd_elf_find_nearest_line (bfd *abfd,
217aa764 9049 asymbol **symbols,
fb167eb2 9050 asection *section,
217aa764
AM
9051 bfd_vma offset,
9052 const char **filename_ptr,
9053 const char **functionname_ptr,
fb167eb2
AM
9054 unsigned int *line_ptr,
9055 unsigned int *discriminator_ptr)
d1fad7c6 9056{
b34976b6 9057 bfd_boolean found;
d1fad7c6 9058
fb167eb2 9059 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
4e8a9624 9060 filename_ptr, functionname_ptr,
fb167eb2 9061 line_ptr, discriminator_ptr,
9defd221 9062 dwarf_debug_sections,
e7679060
AM
9063 &elf_tdata (abfd)->dwarf2_find_line_info))
9064 return TRUE;
9065
9066 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9067 filename_ptr, functionname_ptr, line_ptr))
d1fad7c6
NC
9068 {
9069 if (!*functionname_ptr)
e00e8198
AM
9070 _bfd_elf_find_function (abfd, symbols, section, offset,
9071 *filename_ptr ? NULL : filename_ptr,
9072 functionname_ptr);
b34976b6 9073 return TRUE;
d1fad7c6
NC
9074 }
9075
9076 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
4e8a9624
AM
9077 &found, filename_ptr,
9078 functionname_ptr, line_ptr,
9079 &elf_tdata (abfd)->line_info))
b34976b6 9080 return FALSE;
dc43ada5 9081 if (found && (*functionname_ptr || *line_ptr))
b34976b6 9082 return TRUE;
d1fad7c6
NC
9083
9084 if (symbols == NULL)
b34976b6 9085 return FALSE;
d1fad7c6 9086
e00e8198
AM
9087 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9088 filename_ptr, functionname_ptr))
b34976b6 9089 return FALSE;
d1fad7c6 9090
252b5132 9091 *line_ptr = 0;
b34976b6 9092 return TRUE;
252b5132
RH
9093}
9094
5420f73d
L
9095/* Find the line for a symbol. */
9096
9097bfd_boolean
9098_bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9099 const char **filename_ptr, unsigned int *line_ptr)
9b8d1a36 9100{
fb167eb2
AM
9101 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9102 filename_ptr, NULL, line_ptr, NULL,
9defd221 9103 dwarf_debug_sections,
fb167eb2 9104 &elf_tdata (abfd)->dwarf2_find_line_info);
5420f73d
L
9105}
9106
4ab527b0
FF
9107/* After a call to bfd_find_nearest_line, successive calls to
9108 bfd_find_inliner_info can be used to get source information about
9109 each level of function inlining that terminated at the address
9110 passed to bfd_find_nearest_line. Currently this is only supported
9111 for DWARF2 with appropriate DWARF3 extensions. */
9112
9113bfd_boolean
9114_bfd_elf_find_inliner_info (bfd *abfd,
9115 const char **filename_ptr,
9116 const char **functionname_ptr,
9117 unsigned int *line_ptr)
9118{
9119 bfd_boolean found;
9120 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9121 functionname_ptr, line_ptr,
9122 & elf_tdata (abfd)->dwarf2_find_line_info);
9123 return found;
9124}
9125
252b5132 9126int
a6b96beb 9127_bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
252b5132 9128{
8ded5a0f
AM
9129 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9130 int ret = bed->s->sizeof_ehdr;
252b5132 9131
0e1862bb 9132 if (!bfd_link_relocatable (info))
8ded5a0f 9133 {
12bd6957 9134 bfd_size_type phdr_size = elf_program_header_size (abfd);
8ded5a0f 9135
62d7a5f6
AM
9136 if (phdr_size == (bfd_size_type) -1)
9137 {
9138 struct elf_segment_map *m;
9139
9140 phdr_size = 0;
12bd6957 9141 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
62d7a5f6 9142 phdr_size += bed->s->sizeof_phdr;
8ded5a0f 9143
62d7a5f6
AM
9144 if (phdr_size == 0)
9145 phdr_size = get_program_header_size (abfd, info);
9146 }
8ded5a0f 9147
12bd6957 9148 elf_program_header_size (abfd) = phdr_size;
8ded5a0f
AM
9149 ret += phdr_size;
9150 }
9151
252b5132
RH
9152 return ret;
9153}
9154
b34976b6 9155bfd_boolean
217aa764
AM
9156_bfd_elf_set_section_contents (bfd *abfd,
9157 sec_ptr section,
0f867abe 9158 const void *location,
217aa764
AM
9159 file_ptr offset,
9160 bfd_size_type count)
252b5132
RH
9161{
9162 Elf_Internal_Shdr *hdr;
1b6aeedb 9163 file_ptr pos;
252b5132
RH
9164
9165 if (! abfd->output_has_begun
217aa764 9166 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 9167 return FALSE;
252b5132 9168
0ce398f1
L
9169 if (!count)
9170 return TRUE;
9171
252b5132 9172 hdr = &elf_section_data (section)->this_hdr;
0ce398f1
L
9173 if (hdr->sh_offset == (file_ptr) -1)
9174 {
1ff6de03
NA
9175 if (bfd_section_is_ctf (section))
9176 /* Nothing to do with this section: the contents are generated
9177 later. */
9178 return TRUE;
9179
0ce398f1
L
9180 /* We must compress this section. Write output to the buffer. */
9181 unsigned char *contents = hdr->contents;
9182 if ((offset + count) > hdr->sh_size
9183 || (section->flags & SEC_ELF_COMPRESS) == 0
9184 || contents == NULL)
9185 abort ();
9186 memcpy (contents + offset, location, count);
9187 return TRUE;
9188 }
dc810e39
AM
9189 pos = hdr->sh_offset + offset;
9190 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9191 || bfd_bwrite (location, count, abfd) != count)
b34976b6 9192 return FALSE;
252b5132 9193
b34976b6 9194 return TRUE;
252b5132
RH
9195}
9196
f3185997 9197bfd_boolean
217aa764
AM
9198_bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9199 arelent *cache_ptr ATTRIBUTE_UNUSED,
9200 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
252b5132
RH
9201{
9202 abort ();
f3185997 9203 return FALSE;
252b5132
RH
9204}
9205
252b5132
RH
9206/* Try to convert a non-ELF reloc into an ELF one. */
9207
b34976b6 9208bfd_boolean
217aa764 9209_bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
252b5132 9210{
c044fabd 9211 /* Check whether we really have an ELF howto. */
252b5132
RH
9212
9213 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9214 {
9215 bfd_reloc_code_real_type code;
9216 reloc_howto_type *howto;
9217
9218 /* Alien reloc: Try to determine its type to replace it with an
c044fabd 9219 equivalent ELF reloc. */
252b5132
RH
9220
9221 if (areloc->howto->pc_relative)
9222 {
9223 switch (areloc->howto->bitsize)
9224 {
9225 case 8:
9226 code = BFD_RELOC_8_PCREL;
9227 break;
9228 case 12:
9229 code = BFD_RELOC_12_PCREL;
9230 break;
9231 case 16:
9232 code = BFD_RELOC_16_PCREL;
9233 break;
9234 case 24:
9235 code = BFD_RELOC_24_PCREL;
9236 break;
9237 case 32:
9238 code = BFD_RELOC_32_PCREL;
9239 break;
9240 case 64:
9241 code = BFD_RELOC_64_PCREL;
9242 break;
9243 default:
9244 goto fail;
9245 }
9246
9247 howto = bfd_reloc_type_lookup (abfd, code);
9248
94698d01 9249 if (howto && areloc->howto->pcrel_offset != howto->pcrel_offset)
252b5132
RH
9250 {
9251 if (howto->pcrel_offset)
9252 areloc->addend += areloc->address;
9253 else
9254 areloc->addend -= areloc->address; /* addend is unsigned!! */
9255 }
9256 }
9257 else
9258 {
9259 switch (areloc->howto->bitsize)
9260 {
9261 case 8:
9262 code = BFD_RELOC_8;
9263 break;
9264 case 14:
9265 code = BFD_RELOC_14;
9266 break;
9267 case 16:
9268 code = BFD_RELOC_16;
9269 break;
9270 case 26:
9271 code = BFD_RELOC_26;
9272 break;
9273 case 32:
9274 code = BFD_RELOC_32;
9275 break;
9276 case 64:
9277 code = BFD_RELOC_64;
9278 break;
9279 default:
9280 goto fail;
9281 }
9282
9283 howto = bfd_reloc_type_lookup (abfd, code);
9284 }
9285
9286 if (howto)
9287 areloc->howto = howto;
9288 else
9289 goto fail;
9290 }
9291
b34976b6 9292 return TRUE;
252b5132
RH
9293
9294 fail:
0aa13fee
AM
9295 /* xgettext:c-format */
9296 _bfd_error_handler (_("%pB: %s unsupported"),
9297 abfd, areloc->howto->name);
9aea1e31 9298 bfd_set_error (bfd_error_sorry);
b34976b6 9299 return FALSE;
252b5132
RH
9300}
9301
b34976b6 9302bfd_boolean
217aa764 9303_bfd_elf_close_and_cleanup (bfd *abfd)
252b5132 9304{
d9071b0c
TG
9305 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9306 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
252b5132 9307 {
c0355132 9308 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
2b0f7ef9 9309 _bfd_elf_strtab_free (elf_shstrtab (abfd));
d9071b0c 9310 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
252b5132
RH
9311 }
9312
9313 return _bfd_generic_close_and_cleanup (abfd);
9314}
9315
9316/* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9317 in the relocation's offset. Thus we cannot allow any sort of sanity
9318 range-checking to interfere. There is nothing else to do in processing
9319 this reloc. */
9320
9321bfd_reloc_status_type
217aa764
AM
9322_bfd_elf_rel_vtable_reloc_fn
9323 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
fc0a2244 9324 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
217aa764
AM
9325 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9326 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
9327{
9328 return bfd_reloc_ok;
9329}
252b5132
RH
9330\f
9331/* Elf core file support. Much of this only works on native
9332 toolchains, since we rely on knowing the
9333 machine-dependent procfs structure in order to pick
c044fabd 9334 out details about the corefile. */
252b5132
RH
9335
9336#ifdef HAVE_SYS_PROCFS_H
16231b7b
DG
9337/* Needed for new procfs interface on sparc-solaris. */
9338# define _STRUCTURED_PROC 1
252b5132
RH
9339# include <sys/procfs.h>
9340#endif
9341
261b8d08
PA
9342/* Return a PID that identifies a "thread" for threaded cores, or the
9343 PID of the main process for non-threaded cores. */
252b5132
RH
9344
9345static int
217aa764 9346elfcore_make_pid (bfd *abfd)
252b5132 9347{
261b8d08
PA
9348 int pid;
9349
228e534f 9350 pid = elf_tdata (abfd)->core->lwpid;
261b8d08 9351 if (pid == 0)
228e534f 9352 pid = elf_tdata (abfd)->core->pid;
261b8d08
PA
9353
9354 return pid;
252b5132
RH
9355}
9356
252b5132
RH
9357/* If there isn't a section called NAME, make one, using
9358 data from SECT. Note, this function will generate a
9359 reference to NAME, so you shouldn't deallocate or
c044fabd 9360 overwrite it. */
252b5132 9361
b34976b6 9362static bfd_boolean
217aa764 9363elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
252b5132 9364{
c044fabd 9365 asection *sect2;
252b5132
RH
9366
9367 if (bfd_get_section_by_name (abfd, name) != NULL)
b34976b6 9368 return TRUE;
252b5132 9369
117ed4f8 9370 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
252b5132 9371 if (sect2 == NULL)
b34976b6 9372 return FALSE;
252b5132 9373
eea6121a 9374 sect2->size = sect->size;
252b5132 9375 sect2->filepos = sect->filepos;
252b5132 9376 sect2->alignment_power = sect->alignment_power;
b34976b6 9377 return TRUE;
252b5132
RH
9378}
9379
bb0082d6
AM
9380/* Create a pseudosection containing SIZE bytes at FILEPOS. This
9381 actually creates up to two pseudosections:
9382 - For the single-threaded case, a section named NAME, unless
9383 such a section already exists.
9384 - For the multi-threaded case, a section named "NAME/PID", where
9385 PID is elfcore_make_pid (abfd).
24d3e51b 9386 Both pseudosections have identical contents. */
b34976b6 9387bfd_boolean
217aa764
AM
9388_bfd_elfcore_make_pseudosection (bfd *abfd,
9389 char *name,
9390 size_t size,
9391 ufile_ptr filepos)
bb0082d6
AM
9392{
9393 char buf[100];
9394 char *threaded_name;
d4c88bbb 9395 size_t len;
bb0082d6
AM
9396 asection *sect;
9397
9398 /* Build the section name. */
9399
9400 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
d4c88bbb 9401 len = strlen (buf) + 1;
a50b1753 9402 threaded_name = (char *) bfd_alloc (abfd, len);
bb0082d6 9403 if (threaded_name == NULL)
b34976b6 9404 return FALSE;
d4c88bbb 9405 memcpy (threaded_name, buf, len);
bb0082d6 9406
117ed4f8
AM
9407 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9408 SEC_HAS_CONTENTS);
bb0082d6 9409 if (sect == NULL)
b34976b6 9410 return FALSE;
eea6121a 9411 sect->size = size;
bb0082d6 9412 sect->filepos = filepos;
bb0082d6
AM
9413 sect->alignment_power = 2;
9414
936e320b 9415 return elfcore_maybe_make_sect (abfd, name, sect);
bb0082d6
AM
9416}
9417
58e07198
CZ
9418static bfd_boolean
9419elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9420 size_t offs)
9421{
9422 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9423 SEC_HAS_CONTENTS);
9424
9425 if (sect == NULL)
9426 return FALSE;
9427
9428 sect->size = note->descsz - offs;
9429 sect->filepos = note->descpos + offs;
9430 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9431
9432 return TRUE;
9433}
9434
252b5132 9435/* prstatus_t exists on:
4a938328 9436 solaris 2.5+
252b5132
RH
9437 linux 2.[01] + glibc
9438 unixware 4.2
9439*/
9440
9441#if defined (HAVE_PRSTATUS_T)
a7b97311 9442
b34976b6 9443static bfd_boolean
217aa764 9444elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9445{
eea6121a 9446 size_t size;
7ee38065 9447 int offset;
252b5132 9448
4a938328
MS
9449 if (note->descsz == sizeof (prstatus_t))
9450 {
9451 prstatus_t prstat;
252b5132 9452
eea6121a 9453 size = sizeof (prstat.pr_reg);
7ee38065 9454 offset = offsetof (prstatus_t, pr_reg);
4a938328 9455 memcpy (&prstat, note->descdata, sizeof (prstat));
252b5132 9456
fa49d224
NC
9457 /* Do not overwrite the core signal if it
9458 has already been set by another thread. */
228e534f
AM
9459 if (elf_tdata (abfd)->core->signal == 0)
9460 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9461 if (elf_tdata (abfd)->core->pid == 0)
9462 elf_tdata (abfd)->core->pid = prstat.pr_pid;
252b5132 9463
4a938328
MS
9464 /* pr_who exists on:
9465 solaris 2.5+
9466 unixware 4.2
9467 pr_who doesn't exist on:
9468 linux 2.[01]
9469 */
252b5132 9470#if defined (HAVE_PRSTATUS_T_PR_WHO)
228e534f 9471 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9472#else
228e534f 9473 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
252b5132 9474#endif
4a938328 9475 }
7ee38065 9476#if defined (HAVE_PRSTATUS32_T)
4a938328
MS
9477 else if (note->descsz == sizeof (prstatus32_t))
9478 {
9479 /* 64-bit host, 32-bit corefile */
9480 prstatus32_t prstat;
9481
eea6121a 9482 size = sizeof (prstat.pr_reg);
7ee38065 9483 offset = offsetof (prstatus32_t, pr_reg);
4a938328
MS
9484 memcpy (&prstat, note->descdata, sizeof (prstat));
9485
fa49d224
NC
9486 /* Do not overwrite the core signal if it
9487 has already been set by another thread. */
228e534f
AM
9488 if (elf_tdata (abfd)->core->signal == 0)
9489 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9490 if (elf_tdata (abfd)->core->pid == 0)
9491 elf_tdata (abfd)->core->pid = prstat.pr_pid;
4a938328
MS
9492
9493 /* pr_who exists on:
9494 solaris 2.5+
9495 unixware 4.2
9496 pr_who doesn't exist on:
9497 linux 2.[01]
9498 */
7ee38065 9499#if defined (HAVE_PRSTATUS32_T_PR_WHO)
228e534f 9500 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9501#else
228e534f 9502 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
4a938328
MS
9503#endif
9504 }
7ee38065 9505#endif /* HAVE_PRSTATUS32_T */
4a938328
MS
9506 else
9507 {
9508 /* Fail - we don't know how to handle any other
9509 note size (ie. data object type). */
b34976b6 9510 return TRUE;
4a938328 9511 }
252b5132 9512
bb0082d6 9513 /* Make a ".reg/999" section and a ".reg" section. */
936e320b 9514 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 9515 size, note->descpos + offset);
252b5132
RH
9516}
9517#endif /* defined (HAVE_PRSTATUS_T) */
9518
bb0082d6 9519/* Create a pseudosection containing the exact contents of NOTE. */
b34976b6 9520static bfd_boolean
217aa764
AM
9521elfcore_make_note_pseudosection (bfd *abfd,
9522 char *name,
9523 Elf_Internal_Note *note)
252b5132 9524{
936e320b
AM
9525 return _bfd_elfcore_make_pseudosection (abfd, name,
9526 note->descsz, note->descpos);
252b5132
RH
9527}
9528
ff08c6bb
JB
9529/* There isn't a consistent prfpregset_t across platforms,
9530 but it doesn't matter, because we don't have to pick this
c044fabd
KH
9531 data structure apart. */
9532
b34976b6 9533static bfd_boolean
217aa764 9534elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9535{
9536 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9537}
9538
ff08c6bb 9539/* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
971d4640 9540 type of NT_PRXFPREG. Just include the whole note's contents
ff08c6bb 9541 literally. */
c044fabd 9542
b34976b6 9543static bfd_boolean
217aa764 9544elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9545{
9546 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9547}
9548
4339cae0
L
9549/* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9550 with a note type of NT_X86_XSTATE. Just include the whole note's
9551 contents literally. */
9552
9553static bfd_boolean
9554elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9555{
9556 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9557}
9558
97753bd5
AM
9559static bfd_boolean
9560elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9561{
9562 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9563}
9564
89eeb0bc
LM
9565static bfd_boolean
9566elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9567{
9568 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9569}
97753bd5 9570
cb2366c1
EBM
9571static bfd_boolean
9572elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9573{
9574 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9575}
9576
9577static bfd_boolean
9578elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9579{
9580 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9581}
9582
9583static bfd_boolean
9584elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9585{
9586 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9587}
9588
9589static bfd_boolean
9590elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9591{
9592 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9593}
9594
9595static bfd_boolean
9596elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9597{
9598 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9599}
9600
9601static bfd_boolean
9602elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9603{
9604 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9605}
9606
9607static bfd_boolean
9608elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9609{
9610 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9611}
9612
9613static bfd_boolean
9614elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9615{
9616 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9617}
9618
9619static bfd_boolean
9620elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9621{
9622 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9623}
9624
9625static bfd_boolean
9626elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9627{
9628 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9629}
9630
9631static bfd_boolean
9632elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9633{
9634 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9635}
9636
9637static bfd_boolean
9638elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9639{
9640 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9641}
9642
9643static bfd_boolean
9644elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9645{
9646 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9647}
9648
0675e188
UW
9649static bfd_boolean
9650elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9651{
9652 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9653}
9654
d7eeb400
MS
9655static bfd_boolean
9656elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9657{
9658 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9659}
9660
9661static bfd_boolean
9662elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9663{
9664 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9665}
9666
9667static bfd_boolean
9668elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9669{
9670 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9671}
9672
9673static bfd_boolean
9674elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9675{
9676 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9677}
9678
9679static bfd_boolean
9680elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9681{
9682 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9683}
9684
355b81d9
UW
9685static bfd_boolean
9686elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9687{
9688 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9689}
9690
9691static bfd_boolean
9692elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9693{
9694 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9695}
9696
abb3f6cc
NC
9697static bfd_boolean
9698elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9699{
9700 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9701}
9702
4ef9f41a
AA
9703static bfd_boolean
9704elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9705{
9706 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9707}
9708
9709static bfd_boolean
9710elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9711{
9712 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9713}
9714
88ab90e8
AA
9715static bfd_boolean
9716elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9717{
9718 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9719}
9720
9721static bfd_boolean
9722elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9723{
9724 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9725}
9726
faa9a424
UW
9727static bfd_boolean
9728elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9729{
9730 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9731}
9732
652451f8
YZ
9733static bfd_boolean
9734elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9735{
9736 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9737}
9738
9739static bfd_boolean
9740elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9741{
9742 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9743}
9744
9745static bfd_boolean
9746elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9747{
9748 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9749}
9750
ad1cc4e4
AH
9751static bfd_boolean
9752elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9753{
9754 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9755}
9756
e6c3b5bf
AH
9757static bfd_boolean
9758elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9759{
9760 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9761}
9762
252b5132 9763#if defined (HAVE_PRPSINFO_T)
4a938328 9764typedef prpsinfo_t elfcore_psinfo_t;
7ee38065 9765#if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9766typedef prpsinfo32_t elfcore_psinfo32_t;
9767#endif
252b5132
RH
9768#endif
9769
9770#if defined (HAVE_PSINFO_T)
4a938328 9771typedef psinfo_t elfcore_psinfo_t;
7ee38065 9772#if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9773typedef psinfo32_t elfcore_psinfo32_t;
9774#endif
252b5132
RH
9775#endif
9776
252b5132
RH
9777/* return a malloc'ed copy of a string at START which is at
9778 most MAX bytes long, possibly without a terminating '\0'.
c044fabd 9779 the copy will always have a terminating '\0'. */
252b5132 9780
936e320b 9781char *
217aa764 9782_bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
252b5132 9783{
dc810e39 9784 char *dups;
a50b1753 9785 char *end = (char *) memchr (start, '\0', max);
dc810e39 9786 size_t len;
252b5132
RH
9787
9788 if (end == NULL)
9789 len = max;
9790 else
9791 len = end - start;
9792
a50b1753 9793 dups = (char *) bfd_alloc (abfd, len + 1);
dc810e39 9794 if (dups == NULL)
252b5132
RH
9795 return NULL;
9796
dc810e39
AM
9797 memcpy (dups, start, len);
9798 dups[len] = '\0';
252b5132 9799
dc810e39 9800 return dups;
252b5132
RH
9801}
9802
bb0082d6 9803#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
b34976b6 9804static bfd_boolean
217aa764 9805elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
252b5132 9806{
4a938328
MS
9807 if (note->descsz == sizeof (elfcore_psinfo_t))
9808 {
9809 elfcore_psinfo_t psinfo;
252b5132 9810
7ee38065 9811 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9812
335e41d4 9813#if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
228e534f 9814 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9815#endif
228e534f 9816 elf_tdata (abfd)->core->program
936e320b
AM
9817 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9818 sizeof (psinfo.pr_fname));
252b5132 9819
228e534f 9820 elf_tdata (abfd)->core->command
936e320b
AM
9821 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9822 sizeof (psinfo.pr_psargs));
4a938328 9823 }
7ee38065 9824#if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
4a938328
MS
9825 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9826 {
9827 /* 64-bit host, 32-bit corefile */
9828 elfcore_psinfo32_t psinfo;
9829
7ee38065 9830 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9831
335e41d4 9832#if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
228e534f 9833 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9834#endif
228e534f 9835 elf_tdata (abfd)->core->program
936e320b
AM
9836 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9837 sizeof (psinfo.pr_fname));
4a938328 9838
228e534f 9839 elf_tdata (abfd)->core->command
936e320b
AM
9840 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9841 sizeof (psinfo.pr_psargs));
4a938328
MS
9842 }
9843#endif
9844
9845 else
9846 {
9847 /* Fail - we don't know how to handle any other
9848 note size (ie. data object type). */
b34976b6 9849 return TRUE;
4a938328 9850 }
252b5132
RH
9851
9852 /* Note that for some reason, a spurious space is tacked
9853 onto the end of the args in some (at least one anyway)
c044fabd 9854 implementations, so strip it off if it exists. */
252b5132
RH
9855
9856 {
228e534f 9857 char *command = elf_tdata (abfd)->core->command;
252b5132
RH
9858 int n = strlen (command);
9859
9860 if (0 < n && command[n - 1] == ' ')
9861 command[n - 1] = '\0';
9862 }
9863
b34976b6 9864 return TRUE;
252b5132
RH
9865}
9866#endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9867
252b5132 9868#if defined (HAVE_PSTATUS_T)
b34976b6 9869static bfd_boolean
217aa764 9870elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9871{
f572a39d
AM
9872 if (note->descsz == sizeof (pstatus_t)
9873#if defined (HAVE_PXSTATUS_T)
9874 || note->descsz == sizeof (pxstatus_t)
9875#endif
9876 )
4a938328
MS
9877 {
9878 pstatus_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 9883 }
7ee38065 9884#if defined (HAVE_PSTATUS32_T)
4a938328
MS
9885 else if (note->descsz == sizeof (pstatus32_t))
9886 {
9887 /* 64-bit host, 32-bit corefile */
9888 pstatus32_t pstat;
252b5132 9889
4a938328 9890 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9891
228e534f 9892 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328
MS
9893 }
9894#endif
252b5132
RH
9895 /* Could grab some more details from the "representative"
9896 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
c044fabd 9897 NT_LWPSTATUS note, presumably. */
252b5132 9898
b34976b6 9899 return TRUE;
252b5132
RH
9900}
9901#endif /* defined (HAVE_PSTATUS_T) */
9902
252b5132 9903#if defined (HAVE_LWPSTATUS_T)
b34976b6 9904static bfd_boolean
217aa764 9905elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132
RH
9906{
9907 lwpstatus_t lwpstat;
9908 char buf[100];
c044fabd 9909 char *name;
d4c88bbb 9910 size_t len;
c044fabd 9911 asection *sect;
252b5132 9912
f572a39d
AM
9913 if (note->descsz != sizeof (lwpstat)
9914#if defined (HAVE_LWPXSTATUS_T)
9915 && note->descsz != sizeof (lwpxstatus_t)
9916#endif
9917 )
b34976b6 9918 return TRUE;
252b5132
RH
9919
9920 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9921
228e534f 9922 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
a1504221
JB
9923 /* Do not overwrite the core signal if it has already been set by
9924 another thread. */
228e534f
AM
9925 if (elf_tdata (abfd)->core->signal == 0)
9926 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
252b5132 9927
c044fabd 9928 /* Make a ".reg/999" section. */
252b5132
RH
9929
9930 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
d4c88bbb 9931 len = strlen (buf) + 1;
217aa764 9932 name = bfd_alloc (abfd, len);
252b5132 9933 if (name == NULL)
b34976b6 9934 return FALSE;
d4c88bbb 9935 memcpy (name, buf, len);
252b5132 9936
117ed4f8 9937 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9938 if (sect == NULL)
b34976b6 9939 return FALSE;
252b5132
RH
9940
9941#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 9942 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
252b5132
RH
9943 sect->filepos = note->descpos
9944 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
9945#endif
9946
9947#if defined (HAVE_LWPSTATUS_T_PR_REG)
eea6121a 9948 sect->size = sizeof (lwpstat.pr_reg);
252b5132
RH
9949 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
9950#endif
9951
252b5132
RH
9952 sect->alignment_power = 2;
9953
9954 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 9955 return FALSE;
252b5132
RH
9956
9957 /* Make a ".reg2/999" section */
9958
9959 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
d4c88bbb 9960 len = strlen (buf) + 1;
217aa764 9961 name = bfd_alloc (abfd, len);
252b5132 9962 if (name == NULL)
b34976b6 9963 return FALSE;
d4c88bbb 9964 memcpy (name, buf, len);
252b5132 9965
117ed4f8 9966 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9967 if (sect == NULL)
b34976b6 9968 return FALSE;
252b5132
RH
9969
9970#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 9971 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
252b5132
RH
9972 sect->filepos = note->descpos
9973 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
9974#endif
9975
9976#if defined (HAVE_LWPSTATUS_T_PR_FPREG)
eea6121a 9977 sect->size = sizeof (lwpstat.pr_fpreg);
252b5132
RH
9978 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
9979#endif
9980
252b5132
RH
9981 sect->alignment_power = 2;
9982
936e320b 9983 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
252b5132
RH
9984}
9985#endif /* defined (HAVE_LWPSTATUS_T) */
9986
b34976b6 9987static bfd_boolean
217aa764 9988elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
16e9c715
NC
9989{
9990 char buf[30];
c044fabd 9991 char *name;
d4c88bbb 9992 size_t len;
c044fabd 9993 asection *sect;
4a6636fb
PA
9994 int type;
9995 int is_active_thread;
9996 bfd_vma base_addr;
16e9c715 9997
4a6636fb 9998 if (note->descsz < 728)
b34976b6 9999 return TRUE;
16e9c715 10000
4a6636fb
PA
10001 if (! CONST_STRNEQ (note->namedata, "win32"))
10002 return TRUE;
10003
10004 type = bfd_get_32 (abfd, note->descdata);
c044fabd 10005
4a6636fb 10006 switch (type)
16e9c715 10007 {
4a6636fb 10008 case 1 /* NOTE_INFO_PROCESS */:
228e534f 10009 /* FIXME: need to add ->core->command. */
4a6636fb 10010 /* process_info.pid */
228e534f 10011 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
4a6636fb 10012 /* process_info.signal */
228e534f 10013 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
c044fabd 10014 break;
16e9c715 10015
4a6636fb 10016 case 2 /* NOTE_INFO_THREAD */:
16e9c715 10017 /* Make a ".reg/999" section. */
4a6636fb
PA
10018 /* thread_info.tid */
10019 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
c044fabd 10020
d4c88bbb 10021 len = strlen (buf) + 1;
a50b1753 10022 name = (char *) bfd_alloc (abfd, len);
16e9c715 10023 if (name == NULL)
b34976b6 10024 return FALSE;
c044fabd 10025
d4c88bbb 10026 memcpy (name, buf, len);
16e9c715 10027
117ed4f8 10028 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
16e9c715 10029 if (sect == NULL)
b34976b6 10030 return FALSE;
c044fabd 10031
4a6636fb
PA
10032 /* sizeof (thread_info.thread_context) */
10033 sect->size = 716;
10034 /* offsetof (thread_info.thread_context) */
10035 sect->filepos = note->descpos + 12;
16e9c715
NC
10036 sect->alignment_power = 2;
10037
4a6636fb
PA
10038 /* thread_info.is_active_thread */
10039 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10040
10041 if (is_active_thread)
16e9c715 10042 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 10043 return FALSE;
16e9c715
NC
10044 break;
10045
4a6636fb 10046 case 3 /* NOTE_INFO_MODULE */:
16e9c715 10047 /* Make a ".module/xxxxxxxx" section. */
4a6636fb
PA
10048 /* module_info.base_address */
10049 base_addr = bfd_get_32 (abfd, note->descdata + 4);
0af1713e 10050 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
c044fabd 10051
d4c88bbb 10052 len = strlen (buf) + 1;
a50b1753 10053 name = (char *) bfd_alloc (abfd, len);
16e9c715 10054 if (name == NULL)
b34976b6 10055 return FALSE;
c044fabd 10056
d4c88bbb 10057 memcpy (name, buf, len);
252b5132 10058
117ed4f8 10059 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
c044fabd 10060
16e9c715 10061 if (sect == NULL)
b34976b6 10062 return FALSE;
c044fabd 10063
eea6121a 10064 sect->size = note->descsz;
16e9c715 10065 sect->filepos = note->descpos;
16e9c715
NC
10066 sect->alignment_power = 2;
10067 break;
10068
10069 default:
b34976b6 10070 return TRUE;
16e9c715
NC
10071 }
10072
b34976b6 10073 return TRUE;
16e9c715 10074}
252b5132 10075
b34976b6 10076static bfd_boolean
217aa764 10077elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
252b5132 10078{
9c5bfbb7 10079 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
bb0082d6 10080
252b5132
RH
10081 switch (note->type)
10082 {
10083 default:
b34976b6 10084 return TRUE;
252b5132 10085
252b5132 10086 case NT_PRSTATUS:
bb0082d6
AM
10087 if (bed->elf_backend_grok_prstatus)
10088 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
b34976b6 10089 return TRUE;
bb0082d6 10090#if defined (HAVE_PRSTATUS_T)
252b5132 10091 return elfcore_grok_prstatus (abfd, note);
bb0082d6 10092#else
b34976b6 10093 return TRUE;
252b5132
RH
10094#endif
10095
10096#if defined (HAVE_PSTATUS_T)
10097 case NT_PSTATUS:
10098 return elfcore_grok_pstatus (abfd, note);
10099#endif
10100
10101#if defined (HAVE_LWPSTATUS_T)
10102 case NT_LWPSTATUS:
10103 return elfcore_grok_lwpstatus (abfd, note);
10104#endif
10105
10106 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10107 return elfcore_grok_prfpreg (abfd, note);
10108
c044fabd 10109 case NT_WIN32PSTATUS:
16e9c715 10110 return elfcore_grok_win32pstatus (abfd, note);
16e9c715 10111
c044fabd 10112 case NT_PRXFPREG: /* Linux SSE extension */
e377ab71
MK
10113 if (note->namesz == 6
10114 && strcmp (note->namedata, "LINUX") == 0)
ff08c6bb
JB
10115 return elfcore_grok_prxfpreg (abfd, note);
10116 else
b34976b6 10117 return TRUE;
ff08c6bb 10118
4339cae0
L
10119 case NT_X86_XSTATE: /* Linux XSAVE extension */
10120 if (note->namesz == 6
10121 && strcmp (note->namedata, "LINUX") == 0)
10122 return elfcore_grok_xstatereg (abfd, note);
10123 else
10124 return TRUE;
10125
97753bd5
AM
10126 case NT_PPC_VMX:
10127 if (note->namesz == 6
10128 && strcmp (note->namedata, "LINUX") == 0)
10129 return elfcore_grok_ppc_vmx (abfd, note);
10130 else
10131 return TRUE;
10132
89eeb0bc
LM
10133 case NT_PPC_VSX:
10134 if (note->namesz == 6
07d6d2b8
AM
10135 && strcmp (note->namedata, "LINUX") == 0)
10136 return elfcore_grok_ppc_vsx (abfd, note);
89eeb0bc 10137 else
07d6d2b8 10138 return TRUE;
89eeb0bc 10139
cb2366c1
EBM
10140 case NT_PPC_TAR:
10141 if (note->namesz == 6
4b24dd1a
AM
10142 && strcmp (note->namedata, "LINUX") == 0)
10143 return elfcore_grok_ppc_tar (abfd, note);
cb2366c1 10144 else
4b24dd1a 10145 return TRUE;
cb2366c1
EBM
10146
10147 case NT_PPC_PPR:
10148 if (note->namesz == 6
4b24dd1a
AM
10149 && strcmp (note->namedata, "LINUX") == 0)
10150 return elfcore_grok_ppc_ppr (abfd, note);
cb2366c1 10151 else
4b24dd1a 10152 return TRUE;
cb2366c1
EBM
10153
10154 case NT_PPC_DSCR:
10155 if (note->namesz == 6
4b24dd1a
AM
10156 && strcmp (note->namedata, "LINUX") == 0)
10157 return elfcore_grok_ppc_dscr (abfd, note);
cb2366c1 10158 else
4b24dd1a 10159 return TRUE;
cb2366c1
EBM
10160
10161 case NT_PPC_EBB:
10162 if (note->namesz == 6
4b24dd1a
AM
10163 && strcmp (note->namedata, "LINUX") == 0)
10164 return elfcore_grok_ppc_ebb (abfd, note);
cb2366c1 10165 else
4b24dd1a 10166 return TRUE;
cb2366c1
EBM
10167
10168 case NT_PPC_PMU:
10169 if (note->namesz == 6
4b24dd1a
AM
10170 && strcmp (note->namedata, "LINUX") == 0)
10171 return elfcore_grok_ppc_pmu (abfd, note);
cb2366c1 10172 else
4b24dd1a 10173 return TRUE;
cb2366c1
EBM
10174
10175 case NT_PPC_TM_CGPR:
10176 if (note->namesz == 6
4b24dd1a
AM
10177 && strcmp (note->namedata, "LINUX") == 0)
10178 return elfcore_grok_ppc_tm_cgpr (abfd, note);
cb2366c1 10179 else
4b24dd1a 10180 return TRUE;
cb2366c1
EBM
10181
10182 case NT_PPC_TM_CFPR:
10183 if (note->namesz == 6
4b24dd1a
AM
10184 && strcmp (note->namedata, "LINUX") == 0)
10185 return elfcore_grok_ppc_tm_cfpr (abfd, note);
cb2366c1 10186 else
4b24dd1a 10187 return TRUE;
cb2366c1
EBM
10188
10189 case NT_PPC_TM_CVMX:
10190 if (note->namesz == 6
4b24dd1a
AM
10191 && strcmp (note->namedata, "LINUX") == 0)
10192 return elfcore_grok_ppc_tm_cvmx (abfd, note);
cb2366c1 10193 else
4b24dd1a 10194 return TRUE;
cb2366c1
EBM
10195
10196 case NT_PPC_TM_CVSX:
10197 if (note->namesz == 6
4b24dd1a
AM
10198 && strcmp (note->namedata, "LINUX") == 0)
10199 return elfcore_grok_ppc_tm_cvsx (abfd, note);
cb2366c1 10200 else
4b24dd1a 10201 return TRUE;
cb2366c1
EBM
10202
10203 case NT_PPC_TM_SPR:
10204 if (note->namesz == 6
4b24dd1a
AM
10205 && strcmp (note->namedata, "LINUX") == 0)
10206 return elfcore_grok_ppc_tm_spr (abfd, note);
cb2366c1 10207 else
4b24dd1a 10208 return TRUE;
cb2366c1
EBM
10209
10210 case NT_PPC_TM_CTAR:
10211 if (note->namesz == 6
4b24dd1a
AM
10212 && strcmp (note->namedata, "LINUX") == 0)
10213 return elfcore_grok_ppc_tm_ctar (abfd, note);
cb2366c1 10214 else
4b24dd1a 10215 return TRUE;
cb2366c1
EBM
10216
10217 case NT_PPC_TM_CPPR:
10218 if (note->namesz == 6
4b24dd1a
AM
10219 && strcmp (note->namedata, "LINUX") == 0)
10220 return elfcore_grok_ppc_tm_cppr (abfd, note);
cb2366c1 10221 else
4b24dd1a 10222 return TRUE;
cb2366c1
EBM
10223
10224 case NT_PPC_TM_CDSCR:
10225 if (note->namesz == 6
4b24dd1a
AM
10226 && strcmp (note->namedata, "LINUX") == 0)
10227 return elfcore_grok_ppc_tm_cdscr (abfd, note);
cb2366c1 10228 else
4b24dd1a 10229 return TRUE;
cb2366c1 10230
0675e188
UW
10231 case NT_S390_HIGH_GPRS:
10232 if (note->namesz == 6
07d6d2b8
AM
10233 && strcmp (note->namedata, "LINUX") == 0)
10234 return elfcore_grok_s390_high_gprs (abfd, note);
0675e188 10235 else
07d6d2b8 10236 return TRUE;
0675e188 10237
d7eeb400
MS
10238 case NT_S390_TIMER:
10239 if (note->namesz == 6
07d6d2b8
AM
10240 && strcmp (note->namedata, "LINUX") == 0)
10241 return elfcore_grok_s390_timer (abfd, note);
d7eeb400 10242 else
07d6d2b8 10243 return TRUE;
d7eeb400
MS
10244
10245 case NT_S390_TODCMP:
10246 if (note->namesz == 6
07d6d2b8
AM
10247 && strcmp (note->namedata, "LINUX") == 0)
10248 return elfcore_grok_s390_todcmp (abfd, note);
d7eeb400 10249 else
07d6d2b8 10250 return TRUE;
d7eeb400
MS
10251
10252 case NT_S390_TODPREG:
10253 if (note->namesz == 6
07d6d2b8
AM
10254 && strcmp (note->namedata, "LINUX") == 0)
10255 return elfcore_grok_s390_todpreg (abfd, note);
d7eeb400 10256 else
07d6d2b8 10257 return TRUE;
d7eeb400
MS
10258
10259 case NT_S390_CTRS:
10260 if (note->namesz == 6
07d6d2b8
AM
10261 && strcmp (note->namedata, "LINUX") == 0)
10262 return elfcore_grok_s390_ctrs (abfd, note);
d7eeb400 10263 else
07d6d2b8 10264 return TRUE;
d7eeb400
MS
10265
10266 case NT_S390_PREFIX:
10267 if (note->namesz == 6
07d6d2b8
AM
10268 && strcmp (note->namedata, "LINUX") == 0)
10269 return elfcore_grok_s390_prefix (abfd, note);
d7eeb400 10270 else
07d6d2b8 10271 return TRUE;
d7eeb400 10272
355b81d9
UW
10273 case NT_S390_LAST_BREAK:
10274 if (note->namesz == 6
07d6d2b8
AM
10275 && strcmp (note->namedata, "LINUX") == 0)
10276 return elfcore_grok_s390_last_break (abfd, note);
355b81d9 10277 else
07d6d2b8 10278 return TRUE;
355b81d9
UW
10279
10280 case NT_S390_SYSTEM_CALL:
10281 if (note->namesz == 6
07d6d2b8
AM
10282 && strcmp (note->namedata, "LINUX") == 0)
10283 return elfcore_grok_s390_system_call (abfd, note);
355b81d9 10284 else
07d6d2b8 10285 return TRUE;
355b81d9 10286
abb3f6cc
NC
10287 case NT_S390_TDB:
10288 if (note->namesz == 6
07d6d2b8
AM
10289 && strcmp (note->namedata, "LINUX") == 0)
10290 return elfcore_grok_s390_tdb (abfd, note);
abb3f6cc 10291 else
07d6d2b8 10292 return TRUE;
abb3f6cc 10293
4ef9f41a
AA
10294 case NT_S390_VXRS_LOW:
10295 if (note->namesz == 6
10296 && strcmp (note->namedata, "LINUX") == 0)
10297 return elfcore_grok_s390_vxrs_low (abfd, note);
10298 else
10299 return TRUE;
10300
10301 case NT_S390_VXRS_HIGH:
10302 if (note->namesz == 6
10303 && strcmp (note->namedata, "LINUX") == 0)
10304 return elfcore_grok_s390_vxrs_high (abfd, note);
10305 else
10306 return TRUE;
10307
88ab90e8
AA
10308 case NT_S390_GS_CB:
10309 if (note->namesz == 6
10310 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10311 return elfcore_grok_s390_gs_cb (abfd, note);
88ab90e8
AA
10312 else
10313 return TRUE;
10314
10315 case NT_S390_GS_BC:
10316 if (note->namesz == 6
10317 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10318 return elfcore_grok_s390_gs_bc (abfd, note);
88ab90e8
AA
10319 else
10320 return TRUE;
10321
faa9a424
UW
10322 case NT_ARM_VFP:
10323 if (note->namesz == 6
10324 && strcmp (note->namedata, "LINUX") == 0)
10325 return elfcore_grok_arm_vfp (abfd, note);
10326 else
10327 return TRUE;
10328
652451f8
YZ
10329 case NT_ARM_TLS:
10330 if (note->namesz == 6
10331 && strcmp (note->namedata, "LINUX") == 0)
10332 return elfcore_grok_aarch_tls (abfd, note);
10333 else
10334 return TRUE;
10335
10336 case NT_ARM_HW_BREAK:
10337 if (note->namesz == 6
10338 && strcmp (note->namedata, "LINUX") == 0)
10339 return elfcore_grok_aarch_hw_break (abfd, note);
10340 else
10341 return TRUE;
10342
10343 case NT_ARM_HW_WATCH:
10344 if (note->namesz == 6
10345 && strcmp (note->namedata, "LINUX") == 0)
10346 return elfcore_grok_aarch_hw_watch (abfd, note);
10347 else
10348 return TRUE;
10349
ad1cc4e4
AH
10350 case NT_ARM_SVE:
10351 if (note->namesz == 6
10352 && strcmp (note->namedata, "LINUX") == 0)
10353 return elfcore_grok_aarch_sve (abfd, note);
10354 else
10355 return TRUE;
10356
e6c3b5bf
AH
10357 case NT_ARM_PAC_MASK:
10358 if (note->namesz == 6
10359 && strcmp (note->namedata, "LINUX") == 0)
10360 return elfcore_grok_aarch_pauth (abfd, note);
10361 else
10362 return TRUE;
10363
252b5132
RH
10364 case NT_PRPSINFO:
10365 case NT_PSINFO:
bb0082d6
AM
10366 if (bed->elf_backend_grok_psinfo)
10367 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
b34976b6 10368 return TRUE;
bb0082d6 10369#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
252b5132 10370 return elfcore_grok_psinfo (abfd, note);
bb0082d6 10371#else
b34976b6 10372 return TRUE;
252b5132 10373#endif
3333a7c3
RM
10374
10375 case NT_AUXV:
58e07198 10376 return elfcore_make_auxv_note_section (abfd, note, 0);
9015683b 10377
451b7c33
TT
10378 case NT_FILE:
10379 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10380 note);
10381
9015683b
TT
10382 case NT_SIGINFO:
10383 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10384 note);
5b2c414d 10385
252b5132
RH
10386 }
10387}
10388
718175fa
JK
10389static bfd_boolean
10390elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10391{
c74f7d1c 10392 struct bfd_build_id* build_id;
30e8ee25
AM
10393
10394 if (note->descsz == 0)
10395 return FALSE;
10396
c74f7d1c
JT
10397 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10398 if (build_id == NULL)
718175fa
JK
10399 return FALSE;
10400
c74f7d1c
JT
10401 build_id->size = note->descsz;
10402 memcpy (build_id->data, note->descdata, note->descsz);
10403 abfd->build_id = build_id;
718175fa
JK
10404
10405 return TRUE;
10406}
10407
10408static bfd_boolean
10409elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10410{
10411 switch (note->type)
10412 {
10413 default:
10414 return TRUE;
10415
46bed679
L
10416 case NT_GNU_PROPERTY_TYPE_0:
10417 return _bfd_elf_parse_gnu_properties (abfd, note);
10418
718175fa
JK
10419 case NT_GNU_BUILD_ID:
10420 return elfobj_grok_gnu_build_id (abfd, note);
10421 }
10422}
10423
e21e5835
NC
10424static bfd_boolean
10425elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10426{
10427 struct sdt_note *cur =
7a6e0d89
AM
10428 (struct sdt_note *) bfd_alloc (abfd,
10429 sizeof (struct sdt_note) + note->descsz);
e21e5835
NC
10430
10431 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10432 cur->size = (bfd_size_type) note->descsz;
10433 memcpy (cur->data, note->descdata, note->descsz);
10434
10435 elf_tdata (abfd)->sdt_note_head = cur;
10436
10437 return TRUE;
10438}
10439
10440static bfd_boolean
10441elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10442{
10443 switch (note->type)
10444 {
10445 case NT_STAPSDT:
10446 return elfobj_grok_stapsdt_note_1 (abfd, note);
10447
10448 default:
10449 return TRUE;
10450 }
10451}
10452
aa1ed4a9
JB
10453static bfd_boolean
10454elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10455{
10456 size_t offset;
10457
b5430a3c 10458 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10459 {
b5430a3c 10460 case ELFCLASS32:
0064d223
JB
10461 if (note->descsz < 108)
10462 return FALSE;
aa1ed4a9
JB
10463 break;
10464
b5430a3c 10465 case ELFCLASS64:
0064d223
JB
10466 if (note->descsz < 120)
10467 return FALSE;
aa1ed4a9
JB
10468 break;
10469
10470 default:
10471 return FALSE;
10472 }
10473
0064d223
JB
10474 /* Check for version 1 in pr_version. */
10475 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10476 return FALSE;
80a04378 10477
0064d223
JB
10478 offset = 4;
10479
10480 /* Skip over pr_psinfosz. */
b5430a3c 10481 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
0064d223
JB
10482 offset += 4;
10483 else
10484 {
10485 offset += 4; /* Padding before pr_psinfosz. */
10486 offset += 8;
10487 }
10488
aa1ed4a9
JB
10489 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10490 elf_tdata (abfd)->core->program
10491 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10492 offset += 17;
10493
10494 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10495 elf_tdata (abfd)->core->command
10496 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
0064d223
JB
10497 offset += 81;
10498
10499 /* Padding before pr_pid. */
10500 offset += 2;
10501
10502 /* The pr_pid field was added in version "1a". */
10503 if (note->descsz < offset + 4)
10504 return TRUE;
10505
10506 elf_tdata (abfd)->core->pid
10507 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
aa1ed4a9
JB
10508
10509 return TRUE;
10510}
10511
10512static bfd_boolean
10513elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10514{
10515 size_t offset;
10516 size_t size;
24d3e51b 10517 size_t min_size;
aa1ed4a9 10518
24d3e51b
NC
10519 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10520 Also compute minimum size of this note. */
b5430a3c 10521 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10522 {
b5430a3c 10523 case ELFCLASS32:
24d3e51b
NC
10524 offset = 4 + 4;
10525 min_size = offset + (4 * 2) + 4 + 4 + 4;
aa1ed4a9
JB
10526 break;
10527
b5430a3c 10528 case ELFCLASS64:
24d3e51b
NC
10529 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10530 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
aa1ed4a9
JB
10531 break;
10532
10533 default:
10534 return FALSE;
10535 }
10536
24d3e51b
NC
10537 if (note->descsz < min_size)
10538 return FALSE;
10539
10540 /* Check for version 1 in pr_version. */
10541 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10542 return FALSE;
aa1ed4a9 10543
24d3e51b
NC
10544 /* Extract size of pr_reg from pr_gregsetsz. */
10545 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
b5430a3c 10546 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
24d3e51b
NC
10547 {
10548 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10549 offset += 4 * 2;
10550 }
b5430a3c 10551 else
24d3e51b
NC
10552 {
10553 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10554 offset += 8 * 2;
10555 }
aa1ed4a9 10556
24d3e51b 10557 /* Skip over pr_osreldate. */
aa1ed4a9
JB
10558 offset += 4;
10559
24d3e51b 10560 /* Read signal from pr_cursig. */
aa1ed4a9
JB
10561 if (elf_tdata (abfd)->core->signal == 0)
10562 elf_tdata (abfd)->core->signal
10563 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10564 offset += 4;
10565
24d3e51b 10566 /* Read TID from pr_pid. */
aa1ed4a9
JB
10567 elf_tdata (abfd)->core->lwpid
10568 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10569 offset += 4;
10570
24d3e51b 10571 /* Padding before pr_reg. */
b5430a3c 10572 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
aa1ed4a9
JB
10573 offset += 4;
10574
24d3e51b
NC
10575 /* Make sure that there is enough data remaining in the note. */
10576 if ((note->descsz - offset) < size)
10577 return FALSE;
10578
aa1ed4a9
JB
10579 /* Make a ".reg/999" section and a ".reg" section. */
10580 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10581 size, note->descpos + offset);
10582}
10583
10584static bfd_boolean
10585elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10586{
544c67cd
JB
10587 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10588
aa1ed4a9
JB
10589 switch (note->type)
10590 {
10591 case NT_PRSTATUS:
544c67cd
JB
10592 if (bed->elf_backend_grok_freebsd_prstatus)
10593 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10594 return TRUE;
aa1ed4a9
JB
10595 return elfcore_grok_freebsd_prstatus (abfd, note);
10596
10597 case NT_FPREGSET:
10598 return elfcore_grok_prfpreg (abfd, note);
10599
10600 case NT_PRPSINFO:
10601 return elfcore_grok_freebsd_psinfo (abfd, note);
10602
10603 case NT_FREEBSD_THRMISC:
10604 if (note->namesz == 8)
10605 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10606 else
10607 return TRUE;
10608
ddb2bbcf
JB
10609 case NT_FREEBSD_PROCSTAT_PROC:
10610 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10611 note);
10612
10613 case NT_FREEBSD_PROCSTAT_FILES:
10614 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10615 note);
10616
10617 case NT_FREEBSD_PROCSTAT_VMMAP:
10618 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10619 note);
10620
3350c5f5 10621 case NT_FREEBSD_PROCSTAT_AUXV:
58e07198 10622 return elfcore_make_auxv_note_section (abfd, note, 4);
3350c5f5 10623
aa1ed4a9
JB
10624 case NT_X86_XSTATE:
10625 if (note->namesz == 8)
10626 return elfcore_grok_xstatereg (abfd, note);
10627 else
10628 return TRUE;
10629
e6f3b9c3
JB
10630 case NT_FREEBSD_PTLWPINFO:
10631 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10632 note);
10633
6d5be5d6
JB
10634 case NT_ARM_VFP:
10635 return elfcore_grok_arm_vfp (abfd, note);
10636
aa1ed4a9
JB
10637 default:
10638 return TRUE;
10639 }
10640}
10641
b34976b6 10642static bfd_boolean
217aa764 10643elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
50b2bdb7
AM
10644{
10645 char *cp;
10646
10647 cp = strchr (note->namedata, '@');
10648 if (cp != NULL)
10649 {
d2b64500 10650 *lwpidp = atoi(cp + 1);
b34976b6 10651 return TRUE;
50b2bdb7 10652 }
b34976b6 10653 return FALSE;
50b2bdb7
AM
10654}
10655
b34976b6 10656static bfd_boolean
217aa764 10657elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7 10658{
80a04378
NC
10659 if (note->descsz <= 0x7c + 31)
10660 return FALSE;
10661
50b2bdb7 10662 /* Signal number at offset 0x08. */
228e534f 10663 elf_tdata (abfd)->core->signal
50b2bdb7
AM
10664 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10665
10666 /* Process ID at offset 0x50. */
228e534f 10667 elf_tdata (abfd)->core->pid
50b2bdb7
AM
10668 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10669
10670 /* Command name at 0x7c (max 32 bytes, including nul). */
228e534f 10671 elf_tdata (abfd)->core->command
50b2bdb7
AM
10672 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10673
7720ba9f
MK
10674 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10675 note);
50b2bdb7
AM
10676}
10677
b34976b6 10678static bfd_boolean
217aa764 10679elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7
AM
10680{
10681 int lwp;
10682
10683 if (elfcore_netbsd_get_lwpid (note, &lwp))
228e534f 10684 elf_tdata (abfd)->core->lwpid = lwp;
50b2bdb7 10685
58e07198 10686 switch (note->type)
50b2bdb7 10687 {
58e07198 10688 case NT_NETBSDCORE_PROCINFO:
50b2bdb7 10689 /* NetBSD-specific core "procinfo". Note that we expect to
08a40648
AM
10690 find this note before any of the others, which is fine,
10691 since the kernel writes this note out first when it
10692 creates a core file. */
50b2bdb7 10693 return elfcore_grok_netbsd_procinfo (abfd, note);
58e07198
CZ
10694#ifdef NT_NETBSDCORE_AUXV
10695 case NT_NETBSDCORE_AUXV:
10696 /* NetBSD-specific Elf Auxiliary Vector data. */
10697 return elfcore_make_auxv_note_section (abfd, note, 4);
10698#endif
10699 default:
10700 break;
50b2bdb7
AM
10701 }
10702
58e07198 10703 /* As of March 2017 there are no other machine-independent notes
b4db1224
JT
10704 defined for NetBSD core files. If the note type is less
10705 than the start of the machine-dependent note types, we don't
10706 understand it. */
47d9a591 10707
b4db1224 10708 if (note->type < NT_NETBSDCORE_FIRSTMACH)
b34976b6 10709 return TRUE;
50b2bdb7
AM
10710
10711
10712 switch (bfd_get_arch (abfd))
10713 {
08a40648
AM
10714 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10715 PT_GETFPREGS == mach+2. */
50b2bdb7
AM
10716
10717 case bfd_arch_alpha:
10718 case bfd_arch_sparc:
10719 switch (note->type)
08a40648
AM
10720 {
10721 case NT_NETBSDCORE_FIRSTMACH+0:
10722 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10723
08a40648
AM
10724 case NT_NETBSDCORE_FIRSTMACH+2:
10725 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10726
08a40648
AM
10727 default:
10728 return TRUE;
10729 }
50b2bdb7 10730
58e07198
CZ
10731 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
10732 There's also old PT___GETREGS40 == mach + 1 for old reg
10733 structure which lacks GBR. */
10734
10735 case bfd_arch_sh:
10736 switch (note->type)
10737 {
10738 case NT_NETBSDCORE_FIRSTMACH+3:
10739 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10740
10741 case NT_NETBSDCORE_FIRSTMACH+5:
10742 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10743
10744 default:
10745 return TRUE;
10746 }
10747
08a40648
AM
10748 /* On all other arch's, PT_GETREGS == mach+1 and
10749 PT_GETFPREGS == mach+3. */
50b2bdb7
AM
10750
10751 default:
10752 switch (note->type)
08a40648
AM
10753 {
10754 case NT_NETBSDCORE_FIRSTMACH+1:
10755 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10756
08a40648
AM
10757 case NT_NETBSDCORE_FIRSTMACH+3:
10758 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10759
08a40648
AM
10760 default:
10761 return TRUE;
10762 }
50b2bdb7
AM
10763 }
10764 /* NOTREACHED */
10765}
10766
67cc5033
MK
10767static bfd_boolean
10768elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10769{
80a04378
NC
10770 if (note->descsz <= 0x48 + 31)
10771 return FALSE;
10772
67cc5033 10773 /* Signal number at offset 0x08. */
228e534f 10774 elf_tdata (abfd)->core->signal
67cc5033
MK
10775 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10776
10777 /* Process ID at offset 0x20. */
228e534f 10778 elf_tdata (abfd)->core->pid
67cc5033
MK
10779 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10780
10781 /* Command name at 0x48 (max 32 bytes, including nul). */
228e534f 10782 elf_tdata (abfd)->core->command
67cc5033
MK
10783 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10784
10785 return TRUE;
10786}
10787
10788static bfd_boolean
10789elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10790{
10791 if (note->type == NT_OPENBSD_PROCINFO)
10792 return elfcore_grok_openbsd_procinfo (abfd, note);
10793
10794 if (note->type == NT_OPENBSD_REGS)
10795 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10796
10797 if (note->type == NT_OPENBSD_FPREGS)
10798 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10799
10800 if (note->type == NT_OPENBSD_XFPREGS)
10801 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
10802
10803 if (note->type == NT_OPENBSD_AUXV)
58e07198 10804 return elfcore_make_auxv_note_section (abfd, note, 0);
67cc5033
MK
10805
10806 if (note->type == NT_OPENBSD_WCOOKIE)
10807 {
10808 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
10809 SEC_HAS_CONTENTS);
10810
10811 if (sect == NULL)
10812 return FALSE;
10813 sect->size = note->descsz;
10814 sect->filepos = note->descpos;
10815 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10816
10817 return TRUE;
10818 }
10819
10820 return TRUE;
10821}
10822
07c6e936 10823static bfd_boolean
d3fd4074 10824elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
07c6e936
NC
10825{
10826 void *ddata = note->descdata;
10827 char buf[100];
10828 char *name;
10829 asection *sect;
f8843e87
AM
10830 short sig;
10831 unsigned flags;
07c6e936 10832
80a04378
NC
10833 if (note->descsz < 16)
10834 return FALSE;
10835
07c6e936 10836 /* nto_procfs_status 'pid' field is at offset 0. */
228e534f 10837 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
07c6e936 10838
f8843e87
AM
10839 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
10840 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
10841
10842 /* nto_procfs_status 'flags' field is at offset 8. */
10843 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
07c6e936
NC
10844
10845 /* nto_procfs_status 'what' field is at offset 14. */
f8843e87
AM
10846 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
10847 {
228e534f
AM
10848 elf_tdata (abfd)->core->signal = sig;
10849 elf_tdata (abfd)->core->lwpid = *tid;
f8843e87 10850 }
07c6e936 10851
f8843e87
AM
10852 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
10853 do not come from signals so we make sure we set the current
10854 thread just in case. */
10855 if (flags & 0x00000080)
228e534f 10856 elf_tdata (abfd)->core->lwpid = *tid;
07c6e936
NC
10857
10858 /* Make a ".qnx_core_status/%d" section. */
d3fd4074 10859 sprintf (buf, ".qnx_core_status/%ld", *tid);
07c6e936 10860
a50b1753 10861 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10862 if (name == NULL)
10863 return FALSE;
10864 strcpy (name, buf);
10865
117ed4f8 10866 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10867 if (sect == NULL)
10868 return FALSE;
10869
07d6d2b8
AM
10870 sect->size = note->descsz;
10871 sect->filepos = note->descpos;
07c6e936
NC
10872 sect->alignment_power = 2;
10873
10874 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
10875}
10876
10877static bfd_boolean
d69f560c
KW
10878elfcore_grok_nto_regs (bfd *abfd,
10879 Elf_Internal_Note *note,
d3fd4074 10880 long tid,
d69f560c 10881 char *base)
07c6e936
NC
10882{
10883 char buf[100];
10884 char *name;
10885 asection *sect;
10886
d69f560c 10887 /* Make a "(base)/%d" section. */
d3fd4074 10888 sprintf (buf, "%s/%ld", base, tid);
07c6e936 10889
a50b1753 10890 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10891 if (name == NULL)
10892 return FALSE;
10893 strcpy (name, buf);
10894
117ed4f8 10895 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10896 if (sect == NULL)
10897 return FALSE;
10898
07d6d2b8
AM
10899 sect->size = note->descsz;
10900 sect->filepos = note->descpos;
07c6e936
NC
10901 sect->alignment_power = 2;
10902
f8843e87 10903 /* This is the current thread. */
228e534f 10904 if (elf_tdata (abfd)->core->lwpid == tid)
d69f560c 10905 return elfcore_maybe_make_sect (abfd, base, sect);
f8843e87
AM
10906
10907 return TRUE;
07c6e936
NC
10908}
10909
10910#define BFD_QNT_CORE_INFO 7
10911#define BFD_QNT_CORE_STATUS 8
10912#define BFD_QNT_CORE_GREG 9
10913#define BFD_QNT_CORE_FPREG 10
10914
10915static bfd_boolean
217aa764 10916elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
07c6e936
NC
10917{
10918 /* Every GREG section has a STATUS section before it. Store the
811072d8 10919 tid from the previous call to pass down to the next gregs
07c6e936 10920 function. */
d3fd4074 10921 static long tid = 1;
07c6e936
NC
10922
10923 switch (note->type)
10924 {
d69f560c
KW
10925 case BFD_QNT_CORE_INFO:
10926 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
10927 case BFD_QNT_CORE_STATUS:
10928 return elfcore_grok_nto_status (abfd, note, &tid);
10929 case BFD_QNT_CORE_GREG:
10930 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
10931 case BFD_QNT_CORE_FPREG:
10932 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
10933 default:
10934 return TRUE;
07c6e936
NC
10935 }
10936}
10937
b15fa79e
AM
10938static bfd_boolean
10939elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
10940{
10941 char *name;
10942 asection *sect;
10943 size_t len;
10944
10945 /* Use note name as section name. */
10946 len = note->namesz;
a50b1753 10947 name = (char *) bfd_alloc (abfd, len);
b15fa79e
AM
10948 if (name == NULL)
10949 return FALSE;
10950 memcpy (name, note->namedata, len);
10951 name[len - 1] = '\0';
10952
10953 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10954 if (sect == NULL)
10955 return FALSE;
10956
07d6d2b8
AM
10957 sect->size = note->descsz;
10958 sect->filepos = note->descpos;
b15fa79e
AM
10959 sect->alignment_power = 1;
10960
10961 return TRUE;
10962}
10963
7c76fa91
MS
10964/* Function: elfcore_write_note
10965
47d9a591 10966 Inputs:
a39f3346 10967 buffer to hold note, and current size of buffer
7c76fa91
MS
10968 name of note
10969 type of note
10970 data for note
10971 size of data for note
10972
a39f3346
AM
10973 Writes note to end of buffer. ELF64 notes are written exactly as
10974 for ELF32, despite the current (as of 2006) ELF gabi specifying
10975 that they ought to have 8-byte namesz and descsz field, and have
10976 8-byte alignment. Other writers, eg. Linux kernel, do the same.
10977
7c76fa91 10978 Return:
a39f3346 10979 Pointer to realloc'd buffer, *BUFSIZ updated. */
7c76fa91
MS
10980
10981char *
a39f3346 10982elfcore_write_note (bfd *abfd,
217aa764 10983 char *buf,
a39f3346 10984 int *bufsiz,
217aa764 10985 const char *name,
a39f3346 10986 int type,
217aa764 10987 const void *input,
a39f3346 10988 int size)
7c76fa91
MS
10989{
10990 Elf_External_Note *xnp;
d4c88bbb 10991 size_t namesz;
d4c88bbb 10992 size_t newspace;
a39f3346 10993 char *dest;
7c76fa91 10994
d4c88bbb 10995 namesz = 0;
d4c88bbb 10996 if (name != NULL)
a39f3346 10997 namesz = strlen (name) + 1;
d4c88bbb 10998
a39f3346 10999 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
d4c88bbb 11000
a50b1753 11001 buf = (char *) realloc (buf, *bufsiz + newspace);
14b1c01e
AM
11002 if (buf == NULL)
11003 return buf;
a39f3346 11004 dest = buf + *bufsiz;
7c76fa91
MS
11005 *bufsiz += newspace;
11006 xnp = (Elf_External_Note *) dest;
11007 H_PUT_32 (abfd, namesz, xnp->namesz);
11008 H_PUT_32 (abfd, size, xnp->descsz);
11009 H_PUT_32 (abfd, type, xnp->type);
d4c88bbb
AM
11010 dest = xnp->name;
11011 if (name != NULL)
11012 {
11013 memcpy (dest, name, namesz);
11014 dest += namesz;
a39f3346 11015 while (namesz & 3)
d4c88bbb
AM
11016 {
11017 *dest++ = '\0';
a39f3346 11018 ++namesz;
d4c88bbb
AM
11019 }
11020 }
11021 memcpy (dest, input, size);
a39f3346
AM
11022 dest += size;
11023 while (size & 3)
11024 {
11025 *dest++ = '\0';
11026 ++size;
11027 }
11028 return buf;
7c76fa91
MS
11029}
11030
602f1657
AM
11031/* gcc-8 warns (*) on all the strncpy calls in this function about
11032 possible string truncation. The "truncation" is not a bug. We
11033 have an external representation of structs with fields that are not
11034 necessarily NULL terminated and corresponding internal
11035 representation fields that are one larger so that they can always
11036 be NULL terminated.
11037 gcc versions between 4.2 and 4.6 do not allow pragma control of
11038 diagnostics inside functions, giving a hard error if you try to use
11039 the finer control available with later versions.
11040 gcc prior to 4.2 warns about diagnostic push and pop.
11041 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11042 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11043 (*) Depending on your system header files! */
d99b4b92 11044#if GCC_VERSION >= 8000
602f1657
AM
11045# pragma GCC diagnostic push
11046# pragma GCC diagnostic ignored "-Wstringop-truncation"
d99b4b92 11047#endif
7c76fa91 11048char *
217aa764
AM
11049elfcore_write_prpsinfo (bfd *abfd,
11050 char *buf,
11051 int *bufsiz,
11052 const char *fname,
11053 const char *psargs)
7c76fa91 11054{
183e98be
AM
11055 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11056
11057 if (bed->elf_backend_write_core_note != NULL)
11058 {
11059 char *ret;
11060 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11061 NT_PRPSINFO, fname, psargs);
11062 if (ret != NULL)
11063 return ret;
11064 }
7c76fa91 11065
1f20dca5 11066#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
602f1657 11067# if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
183e98be
AM
11068 if (bed->s->elfclass == ELFCLASS32)
11069 {
602f1657 11070# if defined (HAVE_PSINFO32_T)
183e98be
AM
11071 psinfo32_t data;
11072 int note_type = NT_PSINFO;
602f1657 11073# else
183e98be
AM
11074 prpsinfo32_t data;
11075 int note_type = NT_PRPSINFO;
602f1657 11076# endif
183e98be
AM
11077
11078 memset (&data, 0, sizeof (data));
11079 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11080 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11081 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11082 "CORE", note_type, &data, sizeof (data));
183e98be
AM
11083 }
11084 else
602f1657 11085# endif
183e98be 11086 {
602f1657 11087# if defined (HAVE_PSINFO_T)
183e98be
AM
11088 psinfo_t data;
11089 int note_type = NT_PSINFO;
602f1657 11090# else
183e98be
AM
11091 prpsinfo_t data;
11092 int note_type = NT_PRPSINFO;
602f1657 11093# endif
7c76fa91 11094
183e98be
AM
11095 memset (&data, 0, sizeof (data));
11096 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11097 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11098 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11099 "CORE", note_type, &data, sizeof (data));
183e98be 11100 }
7c76fa91
MS
11101#endif /* PSINFO_T or PRPSINFO_T */
11102
1f20dca5
UW
11103 free (buf);
11104 return NULL;
11105}
d99b4b92 11106#if GCC_VERSION >= 8000
602f1657 11107# pragma GCC diagnostic pop
d99b4b92 11108#endif
1f20dca5 11109
70a38d42
SDJ
11110char *
11111elfcore_write_linux_prpsinfo32
11112 (bfd *abfd, char *buf, int *bufsiz,
11113 const struct elf_internal_linux_prpsinfo *prpsinfo)
11114{
a2f63b2e
MR
11115 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11116 {
11117 struct elf_external_linux_prpsinfo32_ugid16 data;
11118
11119 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11120 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11121 &data, sizeof (data));
11122 }
11123 else
11124 {
11125 struct elf_external_linux_prpsinfo32_ugid32 data;
70a38d42 11126
a2f63b2e
MR
11127 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11128 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11129 &data, sizeof (data));
11130 }
70a38d42
SDJ
11131}
11132
11133char *
11134elfcore_write_linux_prpsinfo64
11135 (bfd *abfd, char *buf, int *bufsiz,
11136 const struct elf_internal_linux_prpsinfo *prpsinfo)
11137{
3c9a7b0d
MR
11138 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11139 {
11140 struct elf_external_linux_prpsinfo64_ugid16 data;
11141
11142 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11143 return elfcore_write_note (abfd, buf, bufsiz,
11144 "CORE", NT_PRPSINFO, &data, sizeof (data));
11145 }
11146 else
11147 {
11148 struct elf_external_linux_prpsinfo64_ugid32 data;
70a38d42 11149
3c9a7b0d
MR
11150 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11151 return elfcore_write_note (abfd, buf, bufsiz,
11152 "CORE", NT_PRPSINFO, &data, sizeof (data));
11153 }
70a38d42
SDJ
11154}
11155
7c76fa91 11156char *
217aa764
AM
11157elfcore_write_prstatus (bfd *abfd,
11158 char *buf,
11159 int *bufsiz,
11160 long pid,
11161 int cursig,
11162 const void *gregs)
7c76fa91 11163{
183e98be 11164 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11165
183e98be
AM
11166 if (bed->elf_backend_write_core_note != NULL)
11167 {
11168 char *ret;
11169 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11170 NT_PRSTATUS,
11171 pid, cursig, gregs);
11172 if (ret != NULL)
11173 return ret;
11174 }
11175
1f20dca5 11176#if defined (HAVE_PRSTATUS_T)
183e98be
AM
11177#if defined (HAVE_PRSTATUS32_T)
11178 if (bed->s->elfclass == ELFCLASS32)
11179 {
11180 prstatus32_t prstat;
11181
11182 memset (&prstat, 0, sizeof (prstat));
11183 prstat.pr_pid = pid;
11184 prstat.pr_cursig = cursig;
11185 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11186 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11187 NT_PRSTATUS, &prstat, sizeof (prstat));
11188 }
11189 else
11190#endif
11191 {
11192 prstatus_t prstat;
11193
11194 memset (&prstat, 0, sizeof (prstat));
11195 prstat.pr_pid = pid;
11196 prstat.pr_cursig = cursig;
11197 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11198 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11199 NT_PRSTATUS, &prstat, sizeof (prstat));
11200 }
7c76fa91
MS
11201#endif /* HAVE_PRSTATUS_T */
11202
1f20dca5
UW
11203 free (buf);
11204 return NULL;
11205}
11206
51316059
MS
11207#if defined (HAVE_LWPSTATUS_T)
11208char *
217aa764
AM
11209elfcore_write_lwpstatus (bfd *abfd,
11210 char *buf,
11211 int *bufsiz,
11212 long pid,
11213 int cursig,
11214 const void *gregs)
51316059
MS
11215{
11216 lwpstatus_t lwpstat;
183e98be 11217 const char *note_name = "CORE";
51316059
MS
11218
11219 memset (&lwpstat, 0, sizeof (lwpstat));
11220 lwpstat.pr_lwpid = pid >> 16;
11221 lwpstat.pr_cursig = cursig;
11222#if defined (HAVE_LWPSTATUS_T_PR_REG)
d1e8523e 11223 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
51316059
MS
11224#elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11225#if !defined(gregs)
11226 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11227 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11228#else
11229 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11230 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11231#endif
11232#endif
47d9a591 11233 return elfcore_write_note (abfd, buf, bufsiz, note_name,
51316059
MS
11234 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11235}
11236#endif /* HAVE_LWPSTATUS_T */
11237
7c76fa91
MS
11238#if defined (HAVE_PSTATUS_T)
11239char *
217aa764
AM
11240elfcore_write_pstatus (bfd *abfd,
11241 char *buf,
11242 int *bufsiz,
11243 long pid,
6c10990d
NC
11244 int cursig ATTRIBUTE_UNUSED,
11245 const void *gregs ATTRIBUTE_UNUSED)
7c76fa91 11246{
183e98be
AM
11247 const char *note_name = "CORE";
11248#if defined (HAVE_PSTATUS32_T)
11249 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11250
183e98be
AM
11251 if (bed->s->elfclass == ELFCLASS32)
11252 {
11253 pstatus32_t pstat;
11254
11255 memset (&pstat, 0, sizeof (pstat));
11256 pstat.pr_pid = pid & 0xffff;
11257 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11258 NT_PSTATUS, &pstat, sizeof (pstat));
11259 return buf;
11260 }
11261 else
11262#endif
11263 {
11264 pstatus_t pstat;
11265
11266 memset (&pstat, 0, sizeof (pstat));
11267 pstat.pr_pid = pid & 0xffff;
11268 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11269 NT_PSTATUS, &pstat, sizeof (pstat));
11270 return buf;
11271 }
7c76fa91
MS
11272}
11273#endif /* HAVE_PSTATUS_T */
11274
11275char *
217aa764
AM
11276elfcore_write_prfpreg (bfd *abfd,
11277 char *buf,
11278 int *bufsiz,
11279 const void *fpregs,
11280 int size)
7c76fa91 11281{
183e98be 11282 const char *note_name = "CORE";
47d9a591 11283 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11284 note_name, NT_FPREGSET, fpregs, size);
11285}
11286
11287char *
217aa764
AM
11288elfcore_write_prxfpreg (bfd *abfd,
11289 char *buf,
11290 int *bufsiz,
11291 const void *xfpregs,
11292 int size)
7c76fa91
MS
11293{
11294 char *note_name = "LINUX";
47d9a591 11295 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11296 note_name, NT_PRXFPREG, xfpregs, size);
11297}
11298
4339cae0
L
11299char *
11300elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11301 const void *xfpregs, int size)
11302{
97de3545
JB
11303 char *note_name;
11304 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11305 note_name = "FreeBSD";
11306 else
11307 note_name = "LINUX";
4339cae0
L
11308 return elfcore_write_note (abfd, buf, bufsiz,
11309 note_name, NT_X86_XSTATE, xfpregs, size);
11310}
11311
97753bd5
AM
11312char *
11313elfcore_write_ppc_vmx (bfd *abfd,
11314 char *buf,
11315 int *bufsiz,
11316 const void *ppc_vmx,
11317 int size)
11318{
11319 char *note_name = "LINUX";
11320 return elfcore_write_note (abfd, buf, bufsiz,
11321 note_name, NT_PPC_VMX, ppc_vmx, size);
11322}
11323
89eeb0bc
LM
11324char *
11325elfcore_write_ppc_vsx (bfd *abfd,
07d6d2b8
AM
11326 char *buf,
11327 int *bufsiz,
11328 const void *ppc_vsx,
11329 int size)
89eeb0bc
LM
11330{
11331 char *note_name = "LINUX";
11332 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11333 note_name, NT_PPC_VSX, ppc_vsx, size);
89eeb0bc
LM
11334}
11335
cb2366c1
EBM
11336char *
11337elfcore_write_ppc_tar (bfd *abfd,
4b24dd1a
AM
11338 char *buf,
11339 int *bufsiz,
11340 const void *ppc_tar,
11341 int size)
cb2366c1
EBM
11342{
11343 char *note_name = "LINUX";
11344 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11345 note_name, NT_PPC_TAR, ppc_tar, size);
cb2366c1
EBM
11346}
11347
11348char *
11349elfcore_write_ppc_ppr (bfd *abfd,
4b24dd1a
AM
11350 char *buf,
11351 int *bufsiz,
11352 const void *ppc_ppr,
11353 int size)
cb2366c1
EBM
11354{
11355 char *note_name = "LINUX";
11356 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11357 note_name, NT_PPC_PPR, ppc_ppr, size);
cb2366c1
EBM
11358}
11359
11360char *
11361elfcore_write_ppc_dscr (bfd *abfd,
4b24dd1a
AM
11362 char *buf,
11363 int *bufsiz,
11364 const void *ppc_dscr,
11365 int size)
cb2366c1
EBM
11366{
11367 char *note_name = "LINUX";
11368 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11369 note_name, NT_PPC_DSCR, ppc_dscr, size);
cb2366c1
EBM
11370}
11371
11372char *
11373elfcore_write_ppc_ebb (bfd *abfd,
4b24dd1a
AM
11374 char *buf,
11375 int *bufsiz,
11376 const void *ppc_ebb,
11377 int size)
cb2366c1
EBM
11378{
11379 char *note_name = "LINUX";
11380 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11381 note_name, NT_PPC_EBB, ppc_ebb, size);
cb2366c1
EBM
11382}
11383
11384char *
11385elfcore_write_ppc_pmu (bfd *abfd,
4b24dd1a
AM
11386 char *buf,
11387 int *bufsiz,
11388 const void *ppc_pmu,
11389 int size)
cb2366c1
EBM
11390{
11391 char *note_name = "LINUX";
11392 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11393 note_name, NT_PPC_PMU, ppc_pmu, size);
cb2366c1
EBM
11394}
11395
11396char *
11397elfcore_write_ppc_tm_cgpr (bfd *abfd,
4b24dd1a
AM
11398 char *buf,
11399 int *bufsiz,
11400 const void *ppc_tm_cgpr,
11401 int size)
cb2366c1
EBM
11402{
11403 char *note_name = "LINUX";
11404 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11405 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
cb2366c1
EBM
11406}
11407
11408char *
11409elfcore_write_ppc_tm_cfpr (bfd *abfd,
4b24dd1a
AM
11410 char *buf,
11411 int *bufsiz,
11412 const void *ppc_tm_cfpr,
11413 int size)
cb2366c1
EBM
11414{
11415 char *note_name = "LINUX";
11416 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11417 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
cb2366c1
EBM
11418}
11419
11420char *
11421elfcore_write_ppc_tm_cvmx (bfd *abfd,
4b24dd1a
AM
11422 char *buf,
11423 int *bufsiz,
11424 const void *ppc_tm_cvmx,
11425 int size)
cb2366c1
EBM
11426{
11427 char *note_name = "LINUX";
11428 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11429 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
cb2366c1
EBM
11430}
11431
11432char *
11433elfcore_write_ppc_tm_cvsx (bfd *abfd,
4b24dd1a
AM
11434 char *buf,
11435 int *bufsiz,
11436 const void *ppc_tm_cvsx,
11437 int size)
cb2366c1
EBM
11438{
11439 char *note_name = "LINUX";
11440 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11441 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
cb2366c1
EBM
11442}
11443
11444char *
11445elfcore_write_ppc_tm_spr (bfd *abfd,
4b24dd1a
AM
11446 char *buf,
11447 int *bufsiz,
11448 const void *ppc_tm_spr,
11449 int size)
cb2366c1
EBM
11450{
11451 char *note_name = "LINUX";
11452 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11453 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
cb2366c1
EBM
11454}
11455
11456char *
11457elfcore_write_ppc_tm_ctar (bfd *abfd,
4b24dd1a
AM
11458 char *buf,
11459 int *bufsiz,
11460 const void *ppc_tm_ctar,
11461 int size)
cb2366c1
EBM
11462{
11463 char *note_name = "LINUX";
11464 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11465 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
cb2366c1
EBM
11466}
11467
11468char *
11469elfcore_write_ppc_tm_cppr (bfd *abfd,
4b24dd1a
AM
11470 char *buf,
11471 int *bufsiz,
11472 const void *ppc_tm_cppr,
11473 int size)
cb2366c1
EBM
11474{
11475 char *note_name = "LINUX";
11476 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11477 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
cb2366c1
EBM
11478}
11479
11480char *
11481elfcore_write_ppc_tm_cdscr (bfd *abfd,
4b24dd1a
AM
11482 char *buf,
11483 int *bufsiz,
11484 const void *ppc_tm_cdscr,
11485 int size)
cb2366c1
EBM
11486{
11487 char *note_name = "LINUX";
11488 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11489 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
cb2366c1
EBM
11490}
11491
0675e188
UW
11492static char *
11493elfcore_write_s390_high_gprs (bfd *abfd,
11494 char *buf,
11495 int *bufsiz,
11496 const void *s390_high_gprs,
11497 int size)
11498{
11499 char *note_name = "LINUX";
11500 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11501 note_name, NT_S390_HIGH_GPRS,
0675e188
UW
11502 s390_high_gprs, size);
11503}
11504
d7eeb400
MS
11505char *
11506elfcore_write_s390_timer (bfd *abfd,
07d6d2b8
AM
11507 char *buf,
11508 int *bufsiz,
11509 const void *s390_timer,
11510 int size)
d7eeb400
MS
11511{
11512 char *note_name = "LINUX";
11513 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11514 note_name, NT_S390_TIMER, s390_timer, size);
d7eeb400
MS
11515}
11516
11517char *
11518elfcore_write_s390_todcmp (bfd *abfd,
07d6d2b8
AM
11519 char *buf,
11520 int *bufsiz,
11521 const void *s390_todcmp,
11522 int size)
d7eeb400
MS
11523{
11524 char *note_name = "LINUX";
11525 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11526 note_name, NT_S390_TODCMP, s390_todcmp, size);
d7eeb400
MS
11527}
11528
11529char *
11530elfcore_write_s390_todpreg (bfd *abfd,
07d6d2b8
AM
11531 char *buf,
11532 int *bufsiz,
11533 const void *s390_todpreg,
11534 int size)
d7eeb400
MS
11535{
11536 char *note_name = "LINUX";
11537 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11538 note_name, NT_S390_TODPREG, s390_todpreg, size);
d7eeb400
MS
11539}
11540
11541char *
11542elfcore_write_s390_ctrs (bfd *abfd,
07d6d2b8
AM
11543 char *buf,
11544 int *bufsiz,
11545 const void *s390_ctrs,
11546 int size)
d7eeb400
MS
11547{
11548 char *note_name = "LINUX";
11549 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11550 note_name, NT_S390_CTRS, s390_ctrs, size);
d7eeb400
MS
11551}
11552
11553char *
11554elfcore_write_s390_prefix (bfd *abfd,
07d6d2b8
AM
11555 char *buf,
11556 int *bufsiz,
11557 const void *s390_prefix,
11558 int size)
d7eeb400
MS
11559{
11560 char *note_name = "LINUX";
11561 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11562 note_name, NT_S390_PREFIX, s390_prefix, size);
d7eeb400
MS
11563}
11564
355b81d9
UW
11565char *
11566elfcore_write_s390_last_break (bfd *abfd,
11567 char *buf,
11568 int *bufsiz,
11569 const void *s390_last_break,
11570 int size)
11571{
11572 char *note_name = "LINUX";
11573 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11574 note_name, NT_S390_LAST_BREAK,
355b81d9
UW
11575 s390_last_break, size);
11576}
11577
11578char *
11579elfcore_write_s390_system_call (bfd *abfd,
11580 char *buf,
11581 int *bufsiz,
11582 const void *s390_system_call,
11583 int size)
11584{
11585 char *note_name = "LINUX";
11586 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11587 note_name, NT_S390_SYSTEM_CALL,
355b81d9
UW
11588 s390_system_call, size);
11589}
11590
abb3f6cc
NC
11591char *
11592elfcore_write_s390_tdb (bfd *abfd,
11593 char *buf,
11594 int *bufsiz,
11595 const void *s390_tdb,
11596 int size)
11597{
11598 char *note_name = "LINUX";
11599 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11600 note_name, NT_S390_TDB, s390_tdb, size);
abb3f6cc
NC
11601}
11602
4ef9f41a
AA
11603char *
11604elfcore_write_s390_vxrs_low (bfd *abfd,
11605 char *buf,
11606 int *bufsiz,
11607 const void *s390_vxrs_low,
11608 int size)
11609{
11610 char *note_name = "LINUX";
11611 return elfcore_write_note (abfd, buf, bufsiz,
11612 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11613}
11614
11615char *
11616elfcore_write_s390_vxrs_high (bfd *abfd,
11617 char *buf,
11618 int *bufsiz,
11619 const void *s390_vxrs_high,
11620 int size)
11621{
11622 char *note_name = "LINUX";
11623 return elfcore_write_note (abfd, buf, bufsiz,
11624 note_name, NT_S390_VXRS_HIGH,
11625 s390_vxrs_high, size);
11626}
11627
88ab90e8
AA
11628char *
11629elfcore_write_s390_gs_cb (bfd *abfd,
11630 char *buf,
11631 int *bufsiz,
11632 const void *s390_gs_cb,
11633 int size)
11634{
11635 char *note_name = "LINUX";
11636 return elfcore_write_note (abfd, buf, bufsiz,
11637 note_name, NT_S390_GS_CB,
11638 s390_gs_cb, size);
11639}
11640
11641char *
11642elfcore_write_s390_gs_bc (bfd *abfd,
11643 char *buf,
11644 int *bufsiz,
11645 const void *s390_gs_bc,
11646 int size)
11647{
11648 char *note_name = "LINUX";
11649 return elfcore_write_note (abfd, buf, bufsiz,
11650 note_name, NT_S390_GS_BC,
11651 s390_gs_bc, size);
11652}
11653
faa9a424
UW
11654char *
11655elfcore_write_arm_vfp (bfd *abfd,
11656 char *buf,
11657 int *bufsiz,
11658 const void *arm_vfp,
11659 int size)
11660{
11661 char *note_name = "LINUX";
11662 return elfcore_write_note (abfd, buf, bufsiz,
11663 note_name, NT_ARM_VFP, arm_vfp, size);
11664}
11665
652451f8
YZ
11666char *
11667elfcore_write_aarch_tls (bfd *abfd,
11668 char *buf,
11669 int *bufsiz,
11670 const void *aarch_tls,
11671 int size)
11672{
11673 char *note_name = "LINUX";
11674 return elfcore_write_note (abfd, buf, bufsiz,
11675 note_name, NT_ARM_TLS, aarch_tls, size);
11676}
11677
11678char *
11679elfcore_write_aarch_hw_break (bfd *abfd,
11680 char *buf,
11681 int *bufsiz,
11682 const void *aarch_hw_break,
11683 int size)
11684{
11685 char *note_name = "LINUX";
11686 return elfcore_write_note (abfd, buf, bufsiz,
11687 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11688}
11689
11690char *
11691elfcore_write_aarch_hw_watch (bfd *abfd,
11692 char *buf,
11693 int *bufsiz,
11694 const void *aarch_hw_watch,
11695 int size)
11696{
11697 char *note_name = "LINUX";
11698 return elfcore_write_note (abfd, buf, bufsiz,
11699 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11700}
11701
ad1cc4e4
AH
11702char *
11703elfcore_write_aarch_sve (bfd *abfd,
11704 char *buf,
11705 int *bufsiz,
11706 const void *aarch_sve,
11707 int size)
11708{
11709 char *note_name = "LINUX";
11710 return elfcore_write_note (abfd, buf, bufsiz,
11711 note_name, NT_ARM_SVE, aarch_sve, size);
11712}
11713
e6c3b5bf
AH
11714char *
11715elfcore_write_aarch_pauth (bfd *abfd,
11716 char *buf,
11717 int *bufsiz,
11718 const void *aarch_pauth,
11719 int size)
11720{
11721 char *note_name = "LINUX";
11722 return elfcore_write_note (abfd, buf, bufsiz,
11723 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
11724}
11725
bb864ac1
CES
11726char *
11727elfcore_write_register_note (bfd *abfd,
11728 char *buf,
11729 int *bufsiz,
11730 const char *section,
11731 const void *data,
11732 int size)
11733{
11734 if (strcmp (section, ".reg2") == 0)
11735 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11736 if (strcmp (section, ".reg-xfp") == 0)
11737 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
4339cae0
L
11738 if (strcmp (section, ".reg-xstate") == 0)
11739 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11740 if (strcmp (section, ".reg-ppc-vmx") == 0)
11741 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
89eeb0bc
LM
11742 if (strcmp (section, ".reg-ppc-vsx") == 0)
11743 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
cb2366c1
EBM
11744 if (strcmp (section, ".reg-ppc-tar") == 0)
11745 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
11746 if (strcmp (section, ".reg-ppc-ppr") == 0)
11747 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
11748 if (strcmp (section, ".reg-ppc-dscr") == 0)
11749 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
11750 if (strcmp (section, ".reg-ppc-ebb") == 0)
11751 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
11752 if (strcmp (section, ".reg-ppc-pmu") == 0)
11753 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
11754 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
11755 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
11756 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
11757 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
11758 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
11759 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
11760 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
11761 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
11762 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
11763 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
11764 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
11765 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
11766 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
11767 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
11768 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
11769 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
0675e188
UW
11770 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11771 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
d7eeb400
MS
11772 if (strcmp (section, ".reg-s390-timer") == 0)
11773 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11774 if (strcmp (section, ".reg-s390-todcmp") == 0)
11775 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11776 if (strcmp (section, ".reg-s390-todpreg") == 0)
11777 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11778 if (strcmp (section, ".reg-s390-ctrs") == 0)
11779 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11780 if (strcmp (section, ".reg-s390-prefix") == 0)
11781 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
355b81d9
UW
11782 if (strcmp (section, ".reg-s390-last-break") == 0)
11783 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
11784 if (strcmp (section, ".reg-s390-system-call") == 0)
11785 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
abb3f6cc
NC
11786 if (strcmp (section, ".reg-s390-tdb") == 0)
11787 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
4ef9f41a
AA
11788 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
11789 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
11790 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
11791 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
88ab90e8
AA
11792 if (strcmp (section, ".reg-s390-gs-cb") == 0)
11793 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
11794 if (strcmp (section, ".reg-s390-gs-bc") == 0)
11795 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
faa9a424
UW
11796 if (strcmp (section, ".reg-arm-vfp") == 0)
11797 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
652451f8
YZ
11798 if (strcmp (section, ".reg-aarch-tls") == 0)
11799 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
11800 if (strcmp (section, ".reg-aarch-hw-break") == 0)
11801 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
11802 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
11803 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
ad1cc4e4
AH
11804 if (strcmp (section, ".reg-aarch-sve") == 0)
11805 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
e6c3b5bf
AH
11806 if (strcmp (section, ".reg-aarch-pauth") == 0)
11807 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11808 return NULL;
11809}
11810
b34976b6 11811static bfd_boolean
276da9b3
L
11812elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
11813 size_t align)
252b5132 11814{
c044fabd 11815 char *p;
252b5132 11816
276da9b3
L
11817 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
11818 gABI specifies that PT_NOTE alignment should be aligned to 4
11819 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
11820 align is less than 4, we use 4 byte alignment. */
11821 if (align < 4)
11822 align = 4;
ef135d43
NC
11823 if (align != 4 && align != 8)
11824 return FALSE;
276da9b3 11825
252b5132
RH
11826 p = buf;
11827 while (p < buf + size)
11828 {
c044fabd 11829 Elf_External_Note *xnp = (Elf_External_Note *) p;
252b5132
RH
11830 Elf_Internal_Note in;
11831
baea7ef1
AM
11832 if (offsetof (Elf_External_Note, name) > buf - p + size)
11833 return FALSE;
11834
dc810e39 11835 in.type = H_GET_32 (abfd, xnp->type);
252b5132 11836
dc810e39 11837 in.namesz = H_GET_32 (abfd, xnp->namesz);
252b5132 11838 in.namedata = xnp->name;
baea7ef1
AM
11839 if (in.namesz > buf - in.namedata + size)
11840 return FALSE;
252b5132 11841
dc810e39 11842 in.descsz = H_GET_32 (abfd, xnp->descsz);
276da9b3 11843 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
252b5132 11844 in.descpos = offset + (in.descdata - buf);
baea7ef1
AM
11845 if (in.descsz != 0
11846 && (in.descdata >= buf + size
11847 || in.descsz > buf - in.descdata + size))
11848 return FALSE;
252b5132 11849
718175fa 11850 switch (bfd_get_format (abfd))
07d6d2b8 11851 {
718175fa
JK
11852 default:
11853 return TRUE;
11854
11855 case bfd_core:
f64e188b 11856 {
8acbedd6 11857#define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
f64e188b 11858 struct
718175fa 11859 {
f64e188b 11860 const char * string;
8acbedd6 11861 size_t len;
f64e188b 11862 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
718175fa 11863 }
f64e188b 11864 grokers[] =
b15fa79e 11865 {
8acbedd6 11866 GROKER_ELEMENT ("", elfcore_grok_note),
aa1ed4a9 11867 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
8acbedd6
KS
11868 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
11869 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
11870 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
864619bb
KS
11871 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
11872 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note)
f64e188b 11873 };
8acbedd6 11874#undef GROKER_ELEMENT
f64e188b
NC
11875 int i;
11876
11877 for (i = ARRAY_SIZE (grokers); i--;)
8acbedd6
KS
11878 {
11879 if (in.namesz >= grokers[i].len
11880 && strncmp (in.namedata, grokers[i].string,
11881 grokers[i].len) == 0)
11882 {
11883 if (! grokers[i].func (abfd, & in))
11884 return FALSE;
11885 break;
11886 }
11887 }
f64e188b
NC
11888 break;
11889 }
718175fa
JK
11890
11891 case bfd_object:
11892 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
11893 {
11894 if (! elfobj_grok_gnu_note (abfd, &in))
11895 return FALSE;
11896 }
e21e5835
NC
11897 else if (in.namesz == sizeof "stapsdt"
11898 && strcmp (in.namedata, "stapsdt") == 0)
11899 {
11900 if (! elfobj_grok_stapsdt_note (abfd, &in))
11901 return FALSE;
11902 }
718175fa 11903 break;
08a40648 11904 }
252b5132 11905
276da9b3 11906 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
252b5132
RH
11907 }
11908
718175fa
JK
11909 return TRUE;
11910}
11911
864619bb 11912bfd_boolean
276da9b3
L
11913elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
11914 size_t align)
718175fa
JK
11915{
11916 char *buf;
11917
957e1fc1 11918 if (size == 0 || (size + 1) == 0)
718175fa
JK
11919 return TRUE;
11920
11921 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
11922 return FALSE;
11923
2bb3687b 11924 buf = (char *) _bfd_malloc_and_read (abfd, size + 1, size);
718175fa
JK
11925 if (buf == NULL)
11926 return FALSE;
11927
f64e188b
NC
11928 /* PR 17512: file: ec08f814
11929 0-termintate the buffer so that string searches will not overflow. */
11930 buf[size] = 0;
11931
2bb3687b 11932 if (!elf_parse_notes (abfd, buf, size, offset, align))
718175fa
JK
11933 {
11934 free (buf);
11935 return FALSE;
11936 }
11937
252b5132 11938 free (buf);
b34976b6 11939 return TRUE;
252b5132 11940}
98d8431c
JB
11941\f
11942/* Providing external access to the ELF program header table. */
11943
11944/* Return an upper bound on the number of bytes required to store a
11945 copy of ABFD's program header table entries. Return -1 if an error
11946 occurs; bfd_get_error will return an appropriate code. */
c044fabd 11947
98d8431c 11948long
217aa764 11949bfd_get_elf_phdr_upper_bound (bfd *abfd)
98d8431c
JB
11950{
11951 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11952 {
11953 bfd_set_error (bfd_error_wrong_format);
11954 return -1;
11955 }
11956
936e320b 11957 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
98d8431c
JB
11958}
11959
98d8431c
JB
11960/* Copy ABFD's program header table entries to *PHDRS. The entries
11961 will be stored as an array of Elf_Internal_Phdr structures, as
11962 defined in include/elf/internal.h. To find out how large the
11963 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
11964
11965 Return the number of program header table entries read, or -1 if an
11966 error occurs; bfd_get_error will return an appropriate code. */
c044fabd 11967
98d8431c 11968int
217aa764 11969bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
98d8431c
JB
11970{
11971 int num_phdrs;
11972
11973 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11974 {
11975 bfd_set_error (bfd_error_wrong_format);
11976 return -1;
11977 }
11978
11979 num_phdrs = elf_elfheader (abfd)->e_phnum;
01bcaf63
TT
11980 if (num_phdrs != 0)
11981 memcpy (phdrs, elf_tdata (abfd)->phdr,
11982 num_phdrs * sizeof (Elf_Internal_Phdr));
98d8431c
JB
11983
11984 return num_phdrs;
11985}
ae4221d7 11986
db6751f2 11987enum elf_reloc_type_class
7e612e98
AM
11988_bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
11989 const asection *rel_sec ATTRIBUTE_UNUSED,
11990 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
db6751f2
JJ
11991{
11992 return reloc_class_normal;
11993}
f8df10f4 11994
47d9a591 11995/* For RELA architectures, return the relocation value for a
f8df10f4
JJ
11996 relocation against a local symbol. */
11997
11998bfd_vma
217aa764
AM
11999_bfd_elf_rela_local_sym (bfd *abfd,
12000 Elf_Internal_Sym *sym,
8517fae7 12001 asection **psec,
217aa764 12002 Elf_Internal_Rela *rel)
f8df10f4 12003{
8517fae7 12004 asection *sec = *psec;
f8df10f4
JJ
12005 bfd_vma relocation;
12006
6835821b
AM
12007 relocation = (sec->output_section->vma
12008 + sec->output_offset
12009 + sym->st_value);
f8df10f4 12010 if ((sec->flags & SEC_MERGE)
c629eae0 12011 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
dbaa2011 12012 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
f8df10f4 12013 {
f8df10f4 12014 rel->r_addend =
8517fae7 12015 _bfd_merged_section_offset (abfd, psec,
65765700 12016 elf_section_data (sec)->sec_info,
753731ee
AM
12017 sym->st_value + rel->r_addend);
12018 if (sec != *psec)
12019 {
12020 /* If we have changed the section, and our original section is
12021 marked with SEC_EXCLUDE, it means that the original
12022 SEC_MERGE section has been completely subsumed in some
12023 other SEC_MERGE section. In this case, we need to leave
12024 some info around for --emit-relocs. */
12025 if ((sec->flags & SEC_EXCLUDE) != 0)
12026 sec->kept_section = *psec;
12027 sec = *psec;
12028 }
8517fae7
AM
12029 rel->r_addend -= relocation;
12030 rel->r_addend += sec->output_section->vma + sec->output_offset;
f8df10f4
JJ
12031 }
12032 return relocation;
12033}
c629eae0
JJ
12034
12035bfd_vma
217aa764
AM
12036_bfd_elf_rel_local_sym (bfd *abfd,
12037 Elf_Internal_Sym *sym,
12038 asection **psec,
12039 bfd_vma addend)
47d9a591 12040{
c629eae0
JJ
12041 asection *sec = *psec;
12042
6835821b 12043 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
c629eae0
JJ
12044 return sym->st_value + addend;
12045
12046 return _bfd_merged_section_offset (abfd, psec,
65765700 12047 elf_section_data (sec)->sec_info,
753731ee 12048 sym->st_value + addend);
c629eae0
JJ
12049}
12050
37b01f6a
DG
12051/* Adjust an address within a section. Given OFFSET within SEC, return
12052 the new offset within the section, based upon changes made to the
12053 section. Returns -1 if the offset is now invalid.
12054 The offset (in abnd out) is in target sized bytes, however big a
12055 byte may be. */
12056
c629eae0 12057bfd_vma
217aa764 12058_bfd_elf_section_offset (bfd *abfd,
92e4ec35 12059 struct bfd_link_info *info,
217aa764
AM
12060 asection *sec,
12061 bfd_vma offset)
c629eae0 12062{
68bfbfcc 12063 switch (sec->sec_info_type)
65765700 12064 {
dbaa2011 12065 case SEC_INFO_TYPE_STABS:
eea6121a
AM
12066 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12067 offset);
dbaa2011 12068 case SEC_INFO_TYPE_EH_FRAME:
92e4ec35 12069 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
37b01f6a 12070
65765700 12071 default:
310fd250
L
12072 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12073 {
37b01f6a 12074 /* Reverse the offset. */
310fd250
L
12075 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12076 bfd_size_type address_size = bed->s->arch_size / 8;
37b01f6a
DG
12077
12078 /* address_size and sec->size are in octets. Convert
12079 to bytes before subtracting the original offset. */
61826503 12080 offset = ((sec->size - address_size)
bb294208 12081 / bfd_octets_per_byte (abfd, sec) - offset);
310fd250 12082 }
65765700
JJ
12083 return offset;
12084 }
c629eae0 12085}
3333a7c3
RM
12086\f
12087/* Create a new BFD as if by bfd_openr. Rather than opening a file,
12088 reconstruct an ELF file by reading the segments out of remote memory
12089 based on the ELF file header at EHDR_VMA and the ELF program headers it
12090 points to. If not null, *LOADBASEP is filled in with the difference
12091 between the VMAs from which the segments were read, and the VMAs the
12092 file headers (and hence BFD's idea of each section's VMA) put them at.
12093
12094 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12095 remote memory at target address VMA into the local buffer at MYADDR; it
12096 should return zero on success or an `errno' code on failure. TEMPL must
12097 be a BFD for an ELF target with the word size and byte order found in
12098 the remote memory. */
12099
12100bfd *
217aa764
AM
12101bfd_elf_bfd_from_remote_memory
12102 (bfd *templ,
12103 bfd_vma ehdr_vma,
f0a5d95a 12104 bfd_size_type size,
217aa764 12105 bfd_vma *loadbasep,
fe78531d 12106 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
3333a7c3
RM
12107{
12108 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
5979d6b6 12109 (templ, ehdr_vma, size, loadbasep, target_read_memory);
3333a7c3 12110}
4c45e5c9
JJ
12111\f
12112long
c9727e01
AM
12113_bfd_elf_get_synthetic_symtab (bfd *abfd,
12114 long symcount ATTRIBUTE_UNUSED,
12115 asymbol **syms ATTRIBUTE_UNUSED,
8615f3f2 12116 long dynsymcount,
c9727e01
AM
12117 asymbol **dynsyms,
12118 asymbol **ret)
4c45e5c9
JJ
12119{
12120 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12121 asection *relplt;
12122 asymbol *s;
12123 const char *relplt_name;
12124 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
12125 arelent *p;
12126 long count, i, n;
12127 size_t size;
12128 Elf_Internal_Shdr *hdr;
12129 char *names;
12130 asection *plt;
12131
8615f3f2
AM
12132 *ret = NULL;
12133
90e3cdf2
JJ
12134 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12135 return 0;
12136
8615f3f2
AM
12137 if (dynsymcount <= 0)
12138 return 0;
12139
4c45e5c9
JJ
12140 if (!bed->plt_sym_val)
12141 return 0;
12142
12143 relplt_name = bed->relplt_name;
12144 if (relplt_name == NULL)
d35fd659 12145 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
4c45e5c9
JJ
12146 relplt = bfd_get_section_by_name (abfd, relplt_name);
12147 if (relplt == NULL)
12148 return 0;
12149
12150 hdr = &elf_section_data (relplt)->this_hdr;
12151 if (hdr->sh_link != elf_dynsymtab (abfd)
12152 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12153 return 0;
12154
12155 plt = bfd_get_section_by_name (abfd, ".plt");
12156 if (plt == NULL)
12157 return 0;
12158
12159 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
c9727e01 12160 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
4c45e5c9
JJ
12161 return -1;
12162
eea6121a 12163 count = relplt->size / hdr->sh_entsize;
4c45e5c9
JJ
12164 size = count * sizeof (asymbol);
12165 p = relplt->relocation;
cb53bf42 12166 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
041de40d
AM
12167 {
12168 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12169 if (p->addend != 0)
12170 {
12171#ifdef BFD64
12172 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12173#else
12174 size += sizeof ("+0x") - 1 + 8;
12175#endif
12176 }
12177 }
4c45e5c9 12178
a50b1753 12179 s = *ret = (asymbol *) bfd_malloc (size);
4c45e5c9
JJ
12180 if (s == NULL)
12181 return -1;
12182
12183 names = (char *) (s + count);
12184 p = relplt->relocation;
12185 n = 0;
cb53bf42 12186 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
4c45e5c9
JJ
12187 {
12188 size_t len;
12189 bfd_vma addr;
12190
12191 addr = bed->plt_sym_val (i, plt, p);
12192 if (addr == (bfd_vma) -1)
12193 continue;
12194
12195 *s = **p->sym_ptr_ptr;
65a7a66f
AM
12196 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12197 we are defining a symbol, ensure one of them is set. */
12198 if ((s->flags & BSF_LOCAL) == 0)
12199 s->flags |= BSF_GLOBAL;
6ba2a415 12200 s->flags |= BSF_SYNTHETIC;
4c45e5c9
JJ
12201 s->section = plt;
12202 s->value = addr - plt->vma;
12203 s->name = names;
8f39ba8e 12204 s->udata.p = NULL;
4c45e5c9
JJ
12205 len = strlen ((*p->sym_ptr_ptr)->name);
12206 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12207 names += len;
041de40d
AM
12208 if (p->addend != 0)
12209 {
1d770845 12210 char buf[30], *a;
d324f6d6 12211
041de40d
AM
12212 memcpy (names, "+0x", sizeof ("+0x") - 1);
12213 names += sizeof ("+0x") - 1;
1d770845
L
12214 bfd_sprintf_vma (abfd, buf, p->addend);
12215 for (a = buf; *a == '0'; ++a)
12216 ;
12217 len = strlen (a);
12218 memcpy (names, a, len);
12219 names += len;
041de40d 12220 }
4c45e5c9
JJ
12221 memcpy (names, "@plt", sizeof ("@plt"));
12222 names += sizeof ("@plt");
8f39ba8e 12223 ++s, ++n;
4c45e5c9
JJ
12224 }
12225
12226 return n;
12227}
3d7f7666 12228
821e6ff6
AM
12229/* It is only used by x86-64 so far.
12230 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
7eacd66b
AM
12231 but current usage would allow all of _bfd_std_section to be zero. */
12232static const asymbol lcomm_sym
12233 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
3b22753a 12234asection _bfd_elf_large_com_section
7eacd66b 12235 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
821e6ff6 12236 "LARGE_COMMON", 0, SEC_IS_COMMON);
ecca9871 12237
cc364be6
AM
12238bfd_boolean
12239_bfd_elf_final_write_processing (bfd *abfd)
06f44071
AM
12240{
12241 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
d1036acb
L
12242
12243 i_ehdrp = elf_elfheader (abfd);
12244
06f44071
AM
12245 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12246 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
d8045f23 12247
df3a023b
AM
12248 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12249 SHF_GNU_MBIND sections or symbols of STT_GNU_IFUNC type or
12250 STB_GNU_UNIQUE binding. */
cc364be6
AM
12251 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12252 {
12253 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12254 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12255 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12256 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12257 {
12258 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
12259 _bfd_error_handler (_("GNU_MBIND section is unsupported"));
12260 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
12261 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is unsupported"));
12262 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
12263 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is unsupported"));
9aea1e31 12264 bfd_set_error (bfd_error_sorry);
cc364be6
AM
12265 return FALSE;
12266 }
12267 }
12268 return TRUE;
d1036acb 12269}
fcb93ecf
PB
12270
12271
12272/* Return TRUE for ELF symbol types that represent functions.
12273 This is the default version of this function, which is sufficient for
d8045f23 12274 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
fcb93ecf
PB
12275
12276bfd_boolean
12277_bfd_elf_is_function_type (unsigned int type)
12278{
d8045f23
NC
12279 return (type == STT_FUNC
12280 || type == STT_GNU_IFUNC);
fcb93ecf 12281}
9f296da3 12282
aef36ac1
AM
12283/* If the ELF symbol SYM might be a function in SEC, return the
12284 function size and set *CODE_OFF to the function's entry point,
12285 otherwise return zero. */
9f296da3 12286
aef36ac1
AM
12287bfd_size_type
12288_bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12289 bfd_vma *code_off)
9f296da3 12290{
aef36ac1
AM
12291 bfd_size_type size;
12292
ff9e0f5b 12293 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
aef36ac1
AM
12294 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12295 || sym->section != sec)
12296 return 0;
ff9e0f5b 12297
ff9e0f5b 12298 *code_off = sym->value;
aef36ac1
AM
12299 size = 0;
12300 if (!(sym->flags & BSF_SYNTHETIC))
12301 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
12302 if (size == 0)
12303 size = 1;
12304 return size;
9f296da3 12305}
This page took 2.360367 seconds and 4 git commands to generate.