]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf.c
Non-contiguous memory regions support: Avoid calls to abort
[thirdparty/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
06614111 299 || bfd_seek (abfd, offset, SEEK_SET) != 0
2bb3687b
AM
300 || (shstrtab = _bfd_alloc_and_read (abfd, shstrtabsize + 1,
301 shstrtabsize)) == NULL)
302 {
3471d59d
CC
303 /* Once we've failed to read it, make sure we don't keep
304 trying. Otherwise, we'll keep allocating space for
305 the string table over and over. */
306 i_shdrp[shindex]->sh_size = 0;
c6c60d09
JJ
307 }
308 else
309 shstrtab[shstrtabsize] = '\0';
217aa764 310 i_shdrp[shindex]->contents = shstrtab;
252b5132 311 }
f075ee0c 312 return (char *) shstrtab;
252b5132
RH
313}
314
315char *
217aa764
AM
316bfd_elf_string_from_elf_section (bfd *abfd,
317 unsigned int shindex,
318 unsigned int strindex)
252b5132
RH
319{
320 Elf_Internal_Shdr *hdr;
321
322 if (strindex == 0)
323 return "";
324
74f2e02b
AM
325 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
326 return NULL;
327
252b5132
RH
328 hdr = elf_elfsections (abfd)[shindex];
329
06614111
NC
330 if (hdr->contents == NULL)
331 {
332 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
333 {
334 /* PR 17512: file: f057ec89. */
695344c0 335 /* xgettext:c-format */
871b3ab2 336 _bfd_error_handler (_("%pB: attempt to load strings from"
63a5468a 337 " a non-string section (number %d)"),
06614111
NC
338 abfd, shindex);
339 return NULL;
340 }
b1fa9dd6 341
06614111
NC
342 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
343 return NULL;
344 }
eed5def8
NC
345 else
346 {
347 /* PR 24273: The string section's contents may have already
348 been loaded elsewhere, eg because a corrupt file has the
349 string section index in the ELF header pointing at a group
350 section. So be paranoid, and test that the last byte of
351 the section is zero. */
352 if (hdr->sh_size == 0 || hdr->contents[hdr->sh_size - 1] != 0)
353 return NULL;
354 }
252b5132
RH
355
356 if (strindex >= hdr->sh_size)
357 {
1b3a8575 358 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
4eca0228 359 _bfd_error_handler
695344c0 360 /* xgettext:c-format */
2dcf00ce
AM
361 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
362 abfd, strindex, (uint64_t) hdr->sh_size,
1b3a8575 363 (shindex == shstrndx && strindex == hdr->sh_name
252b5132 364 ? ".shstrtab"
1b3a8575 365 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
45b222d6 366 return NULL;
252b5132
RH
367 }
368
369 return ((char *) hdr->contents) + strindex;
370}
371
6cdc0ccc
AM
372/* Read and convert symbols to internal format.
373 SYMCOUNT specifies the number of symbols to read, starting from
374 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
375 are non-NULL, they are used to store the internal symbols, external
b7c368d0
NC
376 symbols, and symbol section index extensions, respectively.
377 Returns a pointer to the internal symbol buffer (malloced if necessary)
378 or NULL if there were no symbols or some kind of problem. */
6cdc0ccc
AM
379
380Elf_Internal_Sym *
217aa764
AM
381bfd_elf_get_elf_syms (bfd *ibfd,
382 Elf_Internal_Shdr *symtab_hdr,
383 size_t symcount,
384 size_t symoffset,
385 Elf_Internal_Sym *intsym_buf,
386 void *extsym_buf,
387 Elf_External_Sym_Shndx *extshndx_buf)
6cdc0ccc
AM
388{
389 Elf_Internal_Shdr *shndx_hdr;
217aa764 390 void *alloc_ext;
df622259 391 const bfd_byte *esym;
6cdc0ccc
AM
392 Elf_External_Sym_Shndx *alloc_extshndx;
393 Elf_External_Sym_Shndx *shndx;
4dd07732 394 Elf_Internal_Sym *alloc_intsym;
6cdc0ccc
AM
395 Elf_Internal_Sym *isym;
396 Elf_Internal_Sym *isymend;
9c5bfbb7 397 const struct elf_backend_data *bed;
6cdc0ccc 398 size_t extsym_size;
1f4361a7 399 size_t amt;
6cdc0ccc
AM
400 file_ptr pos;
401
e44a2c9c
AM
402 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
403 abort ();
404
6cdc0ccc
AM
405 if (symcount == 0)
406 return intsym_buf;
407
408 /* Normal syms might have section extension entries. */
409 shndx_hdr = NULL;
6a40cf0c
NC
410 if (elf_symtab_shndx_list (ibfd) != NULL)
411 {
412 elf_section_list * entry;
413 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
414
415 /* Find an index section that is linked to this symtab section. */
416 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
315350be
NC
417 {
418 /* PR 20063. */
419 if (entry->hdr.sh_link >= elf_numsections (ibfd))
420 continue;
421
422 if (sections[entry->hdr.sh_link] == symtab_hdr)
423 {
424 shndx_hdr = & entry->hdr;
425 break;
426 };
427 }
6a40cf0c
NC
428
429 if (shndx_hdr == NULL)
430 {
431 if (symtab_hdr == & elf_symtab_hdr (ibfd))
432 /* Not really accurate, but this was how the old code used to work. */
433 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
434 /* Otherwise we do nothing. The assumption is that
435 the index table will not be needed. */
436 }
437 }
6cdc0ccc
AM
438
439 /* Read the symbols. */
440 alloc_ext = NULL;
441 alloc_extshndx = NULL;
4dd07732 442 alloc_intsym = NULL;
6cdc0ccc
AM
443 bed = get_elf_backend_data (ibfd);
444 extsym_size = bed->s->sizeof_sym;
1f4361a7
AM
445 if (_bfd_mul_overflow (symcount, extsym_size, &amt))
446 {
447 bfd_set_error (bfd_error_file_too_big);
448 intsym_buf = NULL;
449 goto out;
450 }
6cdc0ccc
AM
451 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
452 if (extsym_buf == NULL)
453 {
1f4361a7 454 alloc_ext = bfd_malloc (amt);
6cdc0ccc
AM
455 extsym_buf = alloc_ext;
456 }
457 if (extsym_buf == NULL
458 || bfd_seek (ibfd, pos, SEEK_SET) != 0
459 || bfd_bread (extsym_buf, amt, ibfd) != amt)
460 {
461 intsym_buf = NULL;
462 goto out;
463 }
464
465 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
466 extshndx_buf = NULL;
467 else
468 {
1f4361a7
AM
469 if (_bfd_mul_overflow (symcount, sizeof (Elf_External_Sym_Shndx), &amt))
470 {
471 bfd_set_error (bfd_error_file_too_big);
472 intsym_buf = NULL;
473 goto out;
474 }
6cdc0ccc
AM
475 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
476 if (extshndx_buf == NULL)
477 {
1f4361a7 478 alloc_extshndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
6cdc0ccc
AM
479 extshndx_buf = alloc_extshndx;
480 }
481 if (extshndx_buf == NULL
482 || bfd_seek (ibfd, pos, SEEK_SET) != 0
483 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
484 {
485 intsym_buf = NULL;
486 goto out;
487 }
488 }
489
490 if (intsym_buf == NULL)
491 {
1f4361a7
AM
492 if (_bfd_mul_overflow (symcount, sizeof (Elf_Internal_Sym), &amt))
493 {
494 bfd_set_error (bfd_error_file_too_big);
495 goto out;
496 }
497 alloc_intsym = (Elf_Internal_Sym *) bfd_malloc (amt);
4dd07732 498 intsym_buf = alloc_intsym;
6cdc0ccc
AM
499 if (intsym_buf == NULL)
500 goto out;
501 }
502
503 /* Convert the symbols to internal form. */
504 isymend = intsym_buf + symcount;
a50b1753 505 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
07d6d2b8 506 shndx = extshndx_buf;
6cdc0ccc
AM
507 isym < isymend;
508 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
8384fb8f
AM
509 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
510 {
511 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
695344c0 512 /* xgettext:c-format */
871b3ab2 513 _bfd_error_handler (_("%pB symbol number %lu references"
63a5468a 514 " nonexistent SHT_SYMTAB_SHNDX section"),
4eca0228 515 ibfd, (unsigned long) symoffset);
4dd07732
AM
516 if (alloc_intsym != NULL)
517 free (alloc_intsym);
8384fb8f
AM
518 intsym_buf = NULL;
519 goto out;
520 }
6cdc0ccc
AM
521
522 out:
523 if (alloc_ext != NULL)
524 free (alloc_ext);
525 if (alloc_extshndx != NULL)
526 free (alloc_extshndx);
527
528 return intsym_buf;
529}
530
5cab59f6
AM
531/* Look up a symbol name. */
532const char *
be8dd2ca
AM
533bfd_elf_sym_name (bfd *abfd,
534 Elf_Internal_Shdr *symtab_hdr,
26c61ae5
L
535 Elf_Internal_Sym *isym,
536 asection *sym_sec)
5cab59f6 537{
26c61ae5 538 const char *name;
5cab59f6 539 unsigned int iname = isym->st_name;
be8dd2ca 540 unsigned int shindex = symtab_hdr->sh_link;
26c61ae5 541
138f35cc
JJ
542 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
543 /* Check for a bogus st_shndx to avoid crashing. */
4fbb74a6 544 && isym->st_shndx < elf_numsections (abfd))
5cab59f6
AM
545 {
546 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
547 shindex = elf_elfheader (abfd)->e_shstrndx;
548 }
549
26c61ae5
L
550 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
551 if (name == NULL)
552 name = "(null)";
553 else if (sym_sec && *name == '\0')
fd361982 554 name = bfd_section_name (sym_sec);
26c61ae5
L
555
556 return name;
5cab59f6
AM
557}
558
dbb410c3
AM
559/* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
560 sections. The first element is the flags, the rest are section
561 pointers. */
562
563typedef union elf_internal_group {
564 Elf_Internal_Shdr *shdr;
565 unsigned int flags;
566} Elf_Internal_Group;
567
b885599b
AM
568/* Return the name of the group signature symbol. Why isn't the
569 signature just a string? */
570
571static const char *
217aa764 572group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
b885599b 573{
9dce4196 574 Elf_Internal_Shdr *hdr;
9dce4196
AM
575 unsigned char esym[sizeof (Elf64_External_Sym)];
576 Elf_External_Sym_Shndx eshndx;
577 Elf_Internal_Sym isym;
b885599b 578
13792e9d
L
579 /* First we need to ensure the symbol table is available. Make sure
580 that it is a symbol table section. */
4fbb74a6
AM
581 if (ghdr->sh_link >= elf_numsections (abfd))
582 return NULL;
13792e9d
L
583 hdr = elf_elfsections (abfd) [ghdr->sh_link];
584 if (hdr->sh_type != SHT_SYMTAB
585 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
b885599b
AM
586 return NULL;
587
9dce4196
AM
588 /* Go read the symbol. */
589 hdr = &elf_tdata (abfd)->symtab_hdr;
6cdc0ccc
AM
590 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
591 &isym, esym, &eshndx) == NULL)
b885599b 592 return NULL;
9dce4196 593
26c61ae5 594 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
b885599b
AM
595}
596
dbb410c3
AM
597/* Set next_in_group list pointer, and group name for NEWSECT. */
598
b34976b6 599static bfd_boolean
217aa764 600setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
dbb410c3
AM
601{
602 unsigned int num_group = elf_tdata (abfd)->num_group;
603
604 /* If num_group is zero, read in all SHT_GROUP sections. The count
605 is set to -1 if there are no SHT_GROUP sections. */
606 if (num_group == 0)
607 {
608 unsigned int i, shnum;
609
610 /* First count the number of groups. If we have a SHT_GROUP
611 section with just a flag word (ie. sh_size is 4), ignore it. */
9ad5cbcf 612 shnum = elf_numsections (abfd);
dbb410c3 613 num_group = 0;
08a40648 614
44534af3 615#define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
1783205a 616 ( (shdr)->sh_type == SHT_GROUP \
44534af3 617 && (shdr)->sh_size >= minsize \
1783205a
NC
618 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
619 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
08a40648 620
dbb410c3
AM
621 for (i = 0; i < shnum; i++)
622 {
623 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 624
44534af3 625 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3
AM
626 num_group += 1;
627 }
628
629 if (num_group == 0)
20dbb49d
L
630 {
631 num_group = (unsigned) -1;
632 elf_tdata (abfd)->num_group = num_group;
ce497010 633 elf_tdata (abfd)->group_sect_ptr = NULL;
20dbb49d
L
634 }
635 else
dbb410c3
AM
636 {
637 /* We keep a list of elf section headers for group sections,
638 so we can find them quickly. */
1f4361a7 639 size_t amt;
d0fb9a8d 640
20dbb49d 641 elf_tdata (abfd)->num_group = num_group;
1f4361a7
AM
642 amt = num_group * sizeof (Elf_Internal_Shdr *);
643 elf_tdata (abfd)->group_sect_ptr
644 = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
dbb410c3 645 if (elf_tdata (abfd)->group_sect_ptr == NULL)
b34976b6 646 return FALSE;
dbb410c3 647 num_group = 0;
ce497010 648
dbb410c3
AM
649 for (i = 0; i < shnum; i++)
650 {
651 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 652
44534af3 653 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3 654 {
973ffd63 655 unsigned char *src;
dbb410c3
AM
656 Elf_Internal_Group *dest;
657
07d6d2b8
AM
658 /* Make sure the group section has a BFD section
659 attached to it. */
660 if (!bfd_section_from_shdr (abfd, i))
661 return FALSE;
662
dbb410c3
AM
663 /* Add to list of sections. */
664 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
665 num_group += 1;
666
667 /* Read the raw contents. */
1f4361a7
AM
668 BFD_ASSERT (sizeof (*dest) >= 4 && sizeof (*dest) % 4 == 0);
669 shdr->contents = NULL;
670 if (_bfd_mul_overflow (shdr->sh_size,
671 sizeof (*dest) / 4, &amt)
1f4361a7 672 || bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
2bb3687b
AM
673 || !(shdr->contents
674 = _bfd_alloc_and_read (abfd, amt, shdr->sh_size)))
493a3386
NC
675 {
676 _bfd_error_handler
695344c0 677 /* xgettext:c-format */
871b3ab2 678 (_("%pB: invalid size field in group section"
2dcf00ce
AM
679 " header: %#" PRIx64 ""),
680 abfd, (uint64_t) shdr->sh_size);
493a3386
NC
681 bfd_set_error (bfd_error_bad_value);
682 -- num_group;
493a3386
NC
683 continue;
684 }
708d7d0d 685
dbb410c3
AM
686 /* Translate raw contents, a flag word followed by an
687 array of elf section indices all in target byte order,
688 to the flag word followed by an array of elf section
689 pointers. */
690 src = shdr->contents + shdr->sh_size;
691 dest = (Elf_Internal_Group *) (shdr->contents + amt);
06614111 692
dbb410c3
AM
693 while (1)
694 {
695 unsigned int idx;
696
697 src -= 4;
698 --dest;
699 idx = H_GET_32 (abfd, src);
700 if (src == shdr->contents)
701 {
327301a4 702 dest->shdr = NULL;
dbb410c3 703 dest->flags = idx;
b885599b
AM
704 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
705 shdr->bfd_section->flags
706 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
dbb410c3
AM
707 break;
708 }
4bba0fb1 709 if (idx < shnum)
bae363f1
L
710 {
711 dest->shdr = elf_elfsections (abfd)[idx];
712 /* PR binutils/23199: All sections in a
713 section group should be marked with
714 SHF_GROUP. But some tools generate
715 broken objects without SHF_GROUP. Fix
716 them up here. */
717 dest->shdr->sh_flags |= SHF_GROUP;
718 }
4bba0fb1
AM
719 if (idx >= shnum
720 || dest->shdr->sh_type == SHT_GROUP)
dbb410c3 721 {
4eca0228 722 _bfd_error_handler
4bba0fb1
AM
723 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
724 abfd, i);
725 dest->shdr = NULL;
dbb410c3 726 }
dbb410c3
AM
727 }
728 }
729 }
493a3386
NC
730
731 /* PR 17510: Corrupt binaries might contain invalid groups. */
732 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
733 {
734 elf_tdata (abfd)->num_group = num_group;
735
736 /* If all groups are invalid then fail. */
737 if (num_group == 0)
738 {
739 elf_tdata (abfd)->group_sect_ptr = NULL;
740 elf_tdata (abfd)->num_group = num_group = -1;
4eca0228 741 _bfd_error_handler
871b3ab2 742 (_("%pB: no valid group sections found"), abfd);
493a3386
NC
743 bfd_set_error (bfd_error_bad_value);
744 }
745 }
dbb410c3
AM
746 }
747 }
748
749 if (num_group != (unsigned) -1)
750 {
564e11c9
JW
751 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
752 unsigned int j;
dbb410c3 753
564e11c9 754 for (j = 0; j < num_group; j++)
dbb410c3 755 {
564e11c9
JW
756 /* Begin search from previous found group. */
757 unsigned i = (j + search_offset) % num_group;
758
dbb410c3 759 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
ce497010 760 Elf_Internal_Group *idx;
0c54f692 761 bfd_size_type n_elt;
ce497010
NC
762
763 if (shdr == NULL)
764 continue;
765
766 idx = (Elf_Internal_Group *) shdr->contents;
0c54f692
NC
767 if (idx == NULL || shdr->sh_size < 4)
768 {
769 /* See PR 21957 for a reproducer. */
770 /* xgettext:c-format */
871b3ab2 771 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
0c54f692
NC
772 abfd, shdr->bfd_section);
773 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
774 bfd_set_error (bfd_error_bad_value);
775 return FALSE;
776 }
ce497010 777 n_elt = shdr->sh_size / 4;
dbb410c3
AM
778
779 /* Look through this group's sections to see if current
780 section is a member. */
781 while (--n_elt != 0)
782 if ((++idx)->shdr == hdr)
783 {
e0e8c97f 784 asection *s = NULL;
dbb410c3
AM
785
786 /* We are a member of this group. Go looking through
787 other members to see if any others are linked via
788 next_in_group. */
789 idx = (Elf_Internal_Group *) shdr->contents;
790 n_elt = shdr->sh_size / 4;
791 while (--n_elt != 0)
4bba0fb1
AM
792 if ((++idx)->shdr != NULL
793 && (s = idx->shdr->bfd_section) != NULL
945906ff 794 && elf_next_in_group (s) != NULL)
dbb410c3
AM
795 break;
796 if (n_elt != 0)
797 {
dbb410c3
AM
798 /* Snarf the group name from other member, and
799 insert current section in circular list. */
945906ff
AM
800 elf_group_name (newsect) = elf_group_name (s);
801 elf_next_in_group (newsect) = elf_next_in_group (s);
802 elf_next_in_group (s) = newsect;
dbb410c3
AM
803 }
804 else
805 {
dbb410c3
AM
806 const char *gname;
807
b885599b
AM
808 gname = group_signature (abfd, shdr);
809 if (gname == NULL)
b34976b6 810 return FALSE;
945906ff 811 elf_group_name (newsect) = gname;
dbb410c3
AM
812
813 /* Start a circular list with one element. */
945906ff 814 elf_next_in_group (newsect) = newsect;
dbb410c3 815 }
b885599b 816
9dce4196
AM
817 /* If the group section has been created, point to the
818 new member. */
dbb410c3 819 if (shdr->bfd_section != NULL)
945906ff 820 elf_next_in_group (shdr->bfd_section) = newsect;
b885599b 821
564e11c9
JW
822 elf_tdata (abfd)->group_search_offset = i;
823 j = num_group - 1;
dbb410c3
AM
824 break;
825 }
826 }
827 }
828
945906ff 829 if (elf_group_name (newsect) == NULL)
dbb410c3 830 {
695344c0 831 /* xgettext:c-format */
871b3ab2 832 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
4eca0228 833 abfd, newsect);
493a3386 834 return FALSE;
dbb410c3 835 }
b34976b6 836 return TRUE;
dbb410c3
AM
837}
838
3d7f7666 839bfd_boolean
dd863624 840_bfd_elf_setup_sections (bfd *abfd)
3d7f7666
L
841{
842 unsigned int i;
843 unsigned int num_group = elf_tdata (abfd)->num_group;
844 bfd_boolean result = TRUE;
dd863624
L
845 asection *s;
846
847 /* Process SHF_LINK_ORDER. */
848 for (s = abfd->sections; s != NULL; s = s->next)
849 {
850 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
851 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
852 {
853 unsigned int elfsec = this_hdr->sh_link;
854 /* FIXME: The old Intel compiler and old strip/objcopy may
855 not set the sh_link or sh_info fields. Hence we could
856 get the situation where elfsec is 0. */
857 if (elfsec == 0)
858 {
4fbb74a6 859 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
dd863624
L
860 if (bed->link_order_error_handler)
861 bed->link_order_error_handler
695344c0 862 /* xgettext:c-format */
871b3ab2 863 (_("%pB: warning: sh_link not set for section `%pA'"),
dd863624
L
864 abfd, s);
865 }
866 else
867 {
91d6fa6a 868 asection *linksec = NULL;
25bbc984 869
4fbb74a6
AM
870 if (elfsec < elf_numsections (abfd))
871 {
872 this_hdr = elf_elfsections (abfd)[elfsec];
91d6fa6a 873 linksec = this_hdr->bfd_section;
4fbb74a6 874 }
25bbc984
L
875
876 /* PR 1991, 2008:
877 Some strip/objcopy may leave an incorrect value in
878 sh_link. We don't want to proceed. */
91d6fa6a 879 if (linksec == NULL)
25bbc984 880 {
4eca0228 881 _bfd_error_handler
695344c0 882 /* xgettext:c-format */
871b3ab2 883 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
c08bb8dd 884 s->owner, elfsec, s);
25bbc984
L
885 result = FALSE;
886 }
887
91d6fa6a 888 elf_linked_to_section (s) = linksec;
dd863624
L
889 }
890 }
53720c49
AM
891 else if (this_hdr->sh_type == SHT_GROUP
892 && elf_next_in_group (s) == NULL)
893 {
4eca0228 894 _bfd_error_handler
695344c0 895 /* xgettext:c-format */
871b3ab2 896 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
53720c49
AM
897 abfd, elf_section_data (s)->this_idx);
898 result = FALSE;
899 }
dd863624 900 }
3d7f7666 901
dd863624 902 /* Process section groups. */
3d7f7666
L
903 if (num_group == (unsigned) -1)
904 return result;
905
906 for (i = 0; i < num_group; i++)
907 {
908 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
4b0e8a5f
NC
909 Elf_Internal_Group *idx;
910 unsigned int n_elt;
3d7f7666 911
4b0e8a5f
NC
912 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
913 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
914 {
4eca0228 915 _bfd_error_handler
695344c0 916 /* xgettext:c-format */
871b3ab2 917 (_("%pB: section group entry number %u is corrupt"),
4b0e8a5f
NC
918 abfd, i);
919 result = FALSE;
920 continue;
921 }
922
923 idx = (Elf_Internal_Group *) shdr->contents;
924 n_elt = shdr->sh_size / 4;
1b786873 925
3d7f7666 926 while (--n_elt != 0)
24d3e51b
NC
927 {
928 ++ idx;
929
930 if (idx->shdr == NULL)
931 continue;
932 else if (idx->shdr->bfd_section)
933 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
db4677b8
AM
934 else if (idx->shdr->sh_type != SHT_RELA
935 && idx->shdr->sh_type != SHT_REL)
24d3e51b
NC
936 {
937 /* There are some unknown sections in the group. */
938 _bfd_error_handler
939 /* xgettext:c-format */
871b3ab2 940 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
24d3e51b
NC
941 abfd,
942 idx->shdr->sh_type,
943 bfd_elf_string_from_elf_section (abfd,
944 (elf_elfheader (abfd)
945 ->e_shstrndx),
946 idx->shdr->sh_name),
947 shdr->bfd_section);
948 result = FALSE;
949 }
950 }
3d7f7666 951 }
24d3e51b 952
3d7f7666
L
953 return result;
954}
955
72adc230
AM
956bfd_boolean
957bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
958{
959 return elf_next_in_group (sec) != NULL;
960}
961
cb7f4b29
AM
962const char *
963bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
964{
965 if (elf_sec_group (sec) != NULL)
966 return elf_group_name (sec);
967 return NULL;
968}
969
f6fe1ccd
L
970static char *
971convert_debug_to_zdebug (bfd *abfd, const char *name)
972{
973 unsigned int len = strlen (name);
974 char *new_name = bfd_alloc (abfd, len + 2);
975 if (new_name == NULL)
976 return NULL;
977 new_name[0] = '.';
978 new_name[1] = 'z';
979 memcpy (new_name + 2, name + 1, len);
980 return new_name;
981}
982
983static char *
984convert_zdebug_to_debug (bfd *abfd, const char *name)
985{
986 unsigned int len = strlen (name);
987 char *new_name = bfd_alloc (abfd, len);
988 if (new_name == NULL)
989 return NULL;
990 new_name[0] = '.';
991 memcpy (new_name + 1, name + 2, len - 1);
992 return new_name;
993}
994
cc5277b1
ML
995/* This a copy of lto_section defined in GCC (lto-streamer.h). */
996
997struct lto_section
998{
999 int16_t major_version;
1000 int16_t minor_version;
1001 unsigned char slim_object;
1002
1003 /* Flags is a private field that is not defined publicly. */
1004 uint16_t flags;
1005};
1006
252b5132
RH
1007/* Make a BFD section from an ELF section. We store a pointer to the
1008 BFD section in the bfd_section field of the header. */
1009
b34976b6 1010bfd_boolean
217aa764
AM
1011_bfd_elf_make_section_from_shdr (bfd *abfd,
1012 Elf_Internal_Shdr *hdr,
6dc132d9
L
1013 const char *name,
1014 int shindex)
252b5132
RH
1015{
1016 asection *newsect;
1017 flagword flags;
9c5bfbb7 1018 const struct elf_backend_data *bed;
502794d4 1019 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
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
252b5132
RH
1038 flags = SEC_NO_FLAGS;
1039 if (hdr->sh_type != SHT_NOBITS)
1040 flags |= SEC_HAS_CONTENTS;
dbb410c3 1041 if (hdr->sh_type == SHT_GROUP)
7bdf4127 1042 flags |= SEC_GROUP;
252b5132
RH
1043 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1044 {
1045 flags |= SEC_ALLOC;
1046 if (hdr->sh_type != SHT_NOBITS)
1047 flags |= SEC_LOAD;
1048 }
1049 if ((hdr->sh_flags & SHF_WRITE) == 0)
1050 flags |= SEC_READONLY;
1051 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1052 flags |= SEC_CODE;
1053 else if ((flags & SEC_LOAD) != 0)
1054 flags |= SEC_DATA;
f5fa8ca2
JJ
1055 if ((hdr->sh_flags & SHF_MERGE) != 0)
1056 {
1057 flags |= SEC_MERGE;
1058 newsect->entsize = hdr->sh_entsize;
f5fa8ca2 1059 }
84865015
NC
1060 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1061 flags |= SEC_STRINGS;
dbb410c3
AM
1062 if (hdr->sh_flags & SHF_GROUP)
1063 if (!setup_group (abfd, hdr, newsect))
b34976b6 1064 return FALSE;
13ae64f3
JJ
1065 if ((hdr->sh_flags & SHF_TLS) != 0)
1066 flags |= SEC_THREAD_LOCAL;
18ae9cc1
L
1067 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1068 flags |= SEC_EXCLUDE;
252b5132 1069
df3a023b
AM
1070 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1071 {
1072 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1073 but binutils as of 2019-07-23 did not set the EI_OSABI header
1074 byte. */
1075 case ELFOSABI_NONE:
1076 case ELFOSABI_GNU:
1077 case ELFOSABI_FREEBSD:
1078 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1079 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1080 break;
1081 }
1082
3d2b39cf 1083 if ((flags & SEC_ALLOC) == 0)
7a6cc5fb 1084 {
3d2b39cf
L
1085 /* The debugging sections appear to be recognized only by name,
1086 not any sort of flag. Their SEC_ALLOC bits are cleared. */
3d2b39cf
L
1087 if (name [0] == '.')
1088 {
bb294208
AM
1089 if (strncmp (name, ".debug", 6) == 0
1090 || strncmp (name, ".gnu.linkonce.wi.", 17) == 0
1091 || strncmp (name, ".zdebug", 7) == 0)
1092 flags |= SEC_DEBUGGING | SEC_ELF_OCTETS;
1093 else if (strncmp (name, GNU_BUILD_ATTRS_SECTION_NAME, 21) == 0
1094 || strncmp (name, ".note.gnu", 9) == 0)
502794d4
CE
1095 {
1096 flags |= SEC_ELF_OCTETS;
1097 opb = 1;
1098 }
bb294208
AM
1099 else if (strncmp (name, ".line", 5) == 0
1100 || strncmp (name, ".stab", 5) == 0
1101 || strcmp (name, ".gdb_index") == 0)
3d2b39cf
L
1102 flags |= SEC_DEBUGGING;
1103 }
1104 }
252b5132 1105
502794d4
CE
1106 if (!bfd_set_section_vma (newsect, hdr->sh_addr / opb)
1107 || !bfd_set_section_size (newsect, hdr->sh_size)
1108 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
1109 return FALSE;
1110
252b5132
RH
1111 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1112 only link a single copy of the section. This is used to support
1113 g++. g++ will emit each template expansion in its own section.
1114 The symbols will be defined as weak, so that multiple definitions
1115 are permitted. The GNU linker extension is to actually discard
1116 all but one of the sections. */
0112cd26 1117 if (CONST_STRNEQ (name, ".gnu.linkonce")
b885599b 1118 && elf_next_in_group (newsect) == NULL)
252b5132
RH
1119 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1120
8c803a2d
AM
1121 if (!bfd_set_section_flags (newsect, flags))
1122 return FALSE;
1123
fa152c49
JW
1124 bed = get_elf_backend_data (abfd);
1125 if (bed->elf_backend_section_flags)
8c803a2d 1126 if (!bed->elf_backend_section_flags (hdr))
b34976b6 1127 return FALSE;
fa152c49 1128
718175fa
JK
1129 /* We do not parse the PT_NOTE segments as we are interested even in the
1130 separate debug info files which may have the segments offsets corrupted.
1131 PT_NOTEs from the core files are currently not parsed using BFD. */
1132 if (hdr->sh_type == SHT_NOTE)
1133 {
baea7ef1 1134 bfd_byte *contents;
718175fa 1135
baea7ef1 1136 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
718175fa
JK
1137 return FALSE;
1138
276da9b3
L
1139 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1140 hdr->sh_offset, hdr->sh_addralign);
718175fa
JK
1141 free (contents);
1142 }
1143
8c803a2d 1144 if ((newsect->flags & SEC_ALLOC) != 0)
252b5132
RH
1145 {
1146 Elf_Internal_Phdr *phdr;
6ffd7900
AM
1147 unsigned int i, nload;
1148
1149 /* Some ELF linkers produce binaries with all the program header
1150 p_paddr fields zero. If we have such a binary with more than
1151 one PT_LOAD header, then leave the section lma equal to vma
1152 so that we don't create sections with overlapping lma. */
1153 phdr = elf_tdata (abfd)->phdr;
1154 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1155 if (phdr->p_paddr != 0)
1156 break;
1157 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1158 ++nload;
1159 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1160 return TRUE;
252b5132 1161
252b5132
RH
1162 phdr = elf_tdata (abfd)->phdr;
1163 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1164 {
86b2281f
AM
1165 if (((phdr->p_type == PT_LOAD
1166 && (hdr->sh_flags & SHF_TLS) == 0)
1167 || phdr->p_type == PT_TLS)
9a83a553 1168 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
252b5132 1169 {
8c803a2d 1170 if ((newsect->flags & SEC_LOAD) == 0)
88967714 1171 newsect->lma = (phdr->p_paddr
502794d4 1172 + hdr->sh_addr - phdr->p_vaddr) / opb;
88967714
AM
1173 else
1174 /* We used to use the same adjustment for SEC_LOAD
1175 sections, but that doesn't work if the segment
1176 is packed with code from multiple VMAs.
1177 Instead we calculate the section LMA based on
1178 the segment LMA. It is assumed that the
1179 segment will contain sections with contiguous
1180 LMAs, even if the VMAs are not. */
1181 newsect->lma = (phdr->p_paddr
502794d4 1182 + hdr->sh_offset - phdr->p_offset) / opb;
88967714
AM
1183
1184 /* With contiguous segments, we can't tell from file
1185 offsets whether a section with zero size should
1186 be placed at the end of one segment or the
1187 beginning of the next. Decide based on vaddr. */
1188 if (hdr->sh_addr >= phdr->p_vaddr
1189 && (hdr->sh_addr + hdr->sh_size
1190 <= phdr->p_vaddr + phdr->p_memsz))
1191 break;
252b5132
RH
1192 }
1193 }
1194 }
1195
4a114e3e
L
1196 /* Compress/decompress DWARF debug sections with names: .debug_* and
1197 .zdebug_*, after the section flags is set. */
8c803a2d 1198 if ((newsect->flags & SEC_DEBUGGING)
4a114e3e
L
1199 && ((name[1] == 'd' && name[6] == '_')
1200 || (name[1] == 'z' && name[7] == '_')))
1201 {
1202 enum { nothing, compress, decompress } action = nothing;
151411f8 1203 int compression_header_size;
dab394de 1204 bfd_size_type uncompressed_size;
4207142d 1205 unsigned int uncompressed_align_power;
151411f8
L
1206 bfd_boolean compressed
1207 = bfd_is_section_compressed_with_header (abfd, newsect,
dab394de 1208 &compression_header_size,
4207142d
MW
1209 &uncompressed_size,
1210 &uncompressed_align_power);
151411f8 1211 if (compressed)
4a114e3e
L
1212 {
1213 /* Compressed section. Check if we should decompress. */
1214 if ((abfd->flags & BFD_DECOMPRESS))
1215 action = decompress;
1216 }
151411f8
L
1217
1218 /* Compress the uncompressed section or convert from/to .zdebug*
1219 section. Check if we should compress. */
1220 if (action == nothing)
4a114e3e 1221 {
151411f8
L
1222 if (newsect->size != 0
1223 && (abfd->flags & BFD_COMPRESS)
1224 && compression_header_size >= 0
dab394de 1225 && uncompressed_size > 0
151411f8
L
1226 && (!compressed
1227 || ((compression_header_size > 0)
1228 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
4a114e3e 1229 action = compress;
151411f8
L
1230 else
1231 return TRUE;
4a114e3e
L
1232 }
1233
151411f8 1234 if (action == compress)
4a114e3e 1235 {
4a114e3e
L
1236 if (!bfd_init_section_compress_status (abfd, newsect))
1237 {
4eca0228 1238 _bfd_error_handler
695344c0 1239 /* xgettext:c-format */
871b3ab2 1240 (_("%pB: unable to initialize compress status for section %s"),
4a114e3e
L
1241 abfd, name);
1242 return FALSE;
1243 }
151411f8
L
1244 }
1245 else
1246 {
4a114e3e
L
1247 if (!bfd_init_section_decompress_status (abfd, newsect))
1248 {
4eca0228 1249 _bfd_error_handler
695344c0 1250 /* xgettext:c-format */
871b3ab2 1251 (_("%pB: unable to initialize decompress status for section %s"),
4a114e3e
L
1252 abfd, name);
1253 return FALSE;
1254 }
151411f8
L
1255 }
1256
f6fe1ccd 1257 if (abfd->is_linker_input)
151411f8 1258 {
f6fe1ccd
L
1259 if (name[1] == 'z'
1260 && (action == decompress
1261 || (action == compress
1262 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
4e011fb5 1263 {
f6fe1ccd
L
1264 /* Convert section name from .zdebug_* to .debug_* so
1265 that linker will consider this section as a debug
1266 section. */
1267 char *new_name = convert_zdebug_to_debug (abfd, name);
151411f8
L
1268 if (new_name == NULL)
1269 return FALSE;
fd361982 1270 bfd_rename_section (newsect, new_name);
151411f8 1271 }
4a114e3e 1272 }
f6fe1ccd
L
1273 else
1274 /* For objdump, don't rename the section. For objcopy, delay
1275 section rename to elf_fake_sections. */
1276 newsect->flags |= SEC_ELF_RENAME;
4a114e3e
L
1277 }
1278
cc5277b1
ML
1279 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1280 section. */
1281 const char *lto_section_name = ".gnu.lto_.lto.";
1282 if (strncmp (name, lto_section_name, strlen (lto_section_name)) == 0)
1283 {
1284 struct lto_section lsection;
1285 if (bfd_get_section_contents (abfd, newsect, &lsection, 0,
1286 sizeof (struct lto_section)))
1287 abfd->lto_slim_object = lsection.slim_object;
1288 }
1289
b34976b6 1290 return TRUE;
252b5132
RH
1291}
1292
84865015
NC
1293const char *const bfd_elf_section_type_names[] =
1294{
252b5132
RH
1295 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1296 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1297 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1298};
1299
1049f94e 1300/* ELF relocs are against symbols. If we are producing relocatable
252b5132
RH
1301 output, and the reloc is against an external symbol, and nothing
1302 has given us any additional addend, the resulting reloc will also
1303 be against the same symbol. In such a case, we don't want to
1304 change anything about the way the reloc is handled, since it will
1305 all be done at final link time. Rather than put special case code
1306 into bfd_perform_relocation, all the reloc types use this howto
1307 function. It just short circuits the reloc if producing
1049f94e 1308 relocatable output against an external symbol. */
252b5132 1309
252b5132 1310bfd_reloc_status_type
217aa764
AM
1311bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1312 arelent *reloc_entry,
1313 asymbol *symbol,
1314 void *data ATTRIBUTE_UNUSED,
1315 asection *input_section,
1316 bfd *output_bfd,
1317 char **error_message ATTRIBUTE_UNUSED)
1318{
1319 if (output_bfd != NULL
252b5132
RH
1320 && (symbol->flags & BSF_SECTION_SYM) == 0
1321 && (! reloc_entry->howto->partial_inplace
1322 || reloc_entry->addend == 0))
1323 {
1324 reloc_entry->address += input_section->output_offset;
1325 return bfd_reloc_ok;
1326 }
1327
1328 return bfd_reloc_continue;
1329}
1330\f
84865015
NC
1331/* Returns TRUE if section A matches section B.
1332 Names, addresses and links may be different, but everything else
1333 should be the same. */
1334
1335static bfd_boolean
5522f910
NC
1336section_match (const Elf_Internal_Shdr * a,
1337 const Elf_Internal_Shdr * b)
84865015 1338{
ac85e67c
AM
1339 if (a->sh_type != b->sh_type
1340 || ((a->sh_flags ^ b->sh_flags) & ~SHF_INFO_LINK) != 0
1341 || a->sh_addralign != b->sh_addralign
1342 || a->sh_entsize != b->sh_entsize)
1343 return FALSE;
1344 if (a->sh_type == SHT_SYMTAB
1345 || a->sh_type == SHT_STRTAB)
1346 return TRUE;
1347 return a->sh_size == b->sh_size;
84865015
NC
1348}
1349
1350/* Find a section in OBFD that has the same characteristics
1351 as IHEADER. Return the index of this section or SHN_UNDEF if
1352 none can be found. Check's section HINT first, as this is likely
1353 to be the correct section. */
1354
1355static unsigned int
5cc4ca83
ST
1356find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1357 const unsigned int hint)
84865015
NC
1358{
1359 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1360 unsigned int i;
1361
a55c9876
NC
1362 BFD_ASSERT (iheader != NULL);
1363
1364 /* See PR 20922 for a reproducer of the NULL test. */
5cc4ca83
ST
1365 if (hint < elf_numsections (obfd)
1366 && oheaders[hint] != NULL
a55c9876 1367 && section_match (oheaders[hint], iheader))
84865015
NC
1368 return hint;
1369
1370 for (i = 1; i < elf_numsections (obfd); i++)
1371 {
1372 Elf_Internal_Shdr * oheader = oheaders[i];
1373
a55c9876
NC
1374 if (oheader == NULL)
1375 continue;
84865015
NC
1376 if (section_match (oheader, iheader))
1377 /* FIXME: Do we care if there is a potential for
1378 multiple matches ? */
1379 return i;
1380 }
1381
1382 return SHN_UNDEF;
1383}
1384
5522f910
NC
1385/* PR 19938: Attempt to set the ELF section header fields of an OS or
1386 Processor specific section, based upon a matching input section.
1387 Returns TRUE upon success, FALSE otherwise. */
07d6d2b8 1388
5522f910
NC
1389static bfd_boolean
1390copy_special_section_fields (const bfd *ibfd,
1391 bfd *obfd,
1392 const Elf_Internal_Shdr *iheader,
1393 Elf_Internal_Shdr *oheader,
1394 const unsigned int secnum)
1395{
1396 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1397 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1398 bfd_boolean changed = FALSE;
1399 unsigned int sh_link;
1400
1401 if (oheader->sh_type == SHT_NOBITS)
1402 {
1403 /* This is a feature for objcopy --only-keep-debug:
1404 When a section's type is changed to NOBITS, we preserve
1405 the sh_link and sh_info fields so that they can be
1406 matched up with the original.
1407
1408 Note: Strictly speaking these assignments are wrong.
1409 The sh_link and sh_info fields should point to the
1410 relevent sections in the output BFD, which may not be in
1411 the same location as they were in the input BFD. But
1412 the whole point of this action is to preserve the
1413 original values of the sh_link and sh_info fields, so
1414 that they can be matched up with the section headers in
1415 the original file. So strictly speaking we may be
1416 creating an invalid ELF file, but it is only for a file
1417 that just contains debug info and only for sections
1418 without any contents. */
1419 if (oheader->sh_link == 0)
1420 oheader->sh_link = iheader->sh_link;
1421 if (oheader->sh_info == 0)
1422 oheader->sh_info = iheader->sh_info;
1423 return TRUE;
1424 }
1425
1426 /* Allow the target a chance to decide how these fields should be set. */
1427 if (bed->elf_backend_copy_special_section_fields != NULL
1428 && bed->elf_backend_copy_special_section_fields
1429 (ibfd, obfd, iheader, oheader))
1430 return TRUE;
1431
1432 /* We have an iheader which might match oheader, and which has non-zero
1433 sh_info and/or sh_link fields. Attempt to follow those links and find
1434 the section in the output bfd which corresponds to the linked section
1435 in the input bfd. */
1436 if (iheader->sh_link != SHN_UNDEF)
1437 {
4f3ca05b
NC
1438 /* See PR 20931 for a reproducer. */
1439 if (iheader->sh_link >= elf_numsections (ibfd))
1440 {
76cfced5 1441 _bfd_error_handler
4f3ca05b 1442 /* xgettext:c-format */
9793eb77 1443 (_("%pB: invalid sh_link field (%d) in section number %d"),
4f3ca05b
NC
1444 ibfd, iheader->sh_link, secnum);
1445 return FALSE;
1446 }
1447
5522f910
NC
1448 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1449 if (sh_link != SHN_UNDEF)
1450 {
1451 oheader->sh_link = sh_link;
1452 changed = TRUE;
1453 }
1454 else
1455 /* FIXME: Should we install iheader->sh_link
1456 if we could not find a match ? */
76cfced5 1457 _bfd_error_handler
695344c0 1458 /* xgettext:c-format */
9793eb77 1459 (_("%pB: failed to find link section for section %d"), obfd, secnum);
5522f910
NC
1460 }
1461
1462 if (iheader->sh_info)
1463 {
1464 /* The sh_info field can hold arbitrary information, but if the
1465 SHF_LINK_INFO flag is set then it should be interpreted as a
1466 section index. */
1467 if (iheader->sh_flags & SHF_INFO_LINK)
1468 {
1469 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1470 iheader->sh_info);
1471 if (sh_link != SHN_UNDEF)
1472 oheader->sh_flags |= SHF_INFO_LINK;
1473 }
1474 else
1475 /* No idea what it means - just copy it. */
1476 sh_link = iheader->sh_info;
1477
1478 if (sh_link != SHN_UNDEF)
1479 {
1480 oheader->sh_info = sh_link;
1481 changed = TRUE;
1482 }
1483 else
76cfced5 1484 _bfd_error_handler
695344c0 1485 /* xgettext:c-format */
9793eb77 1486 (_("%pB: failed to find info section for section %d"), obfd, secnum);
5522f910
NC
1487 }
1488
1489 return changed;
1490}
07d6d2b8 1491
0ac4564e
L
1492/* Copy the program header and other data from one object module to
1493 another. */
252b5132 1494
b34976b6 1495bfd_boolean
217aa764 1496_bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2d502050 1497{
5522f910
NC
1498 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1499 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1500 const struct elf_backend_data *bed;
84865015
NC
1501 unsigned int i;
1502
2d502050 1503 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
84865015 1504 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 1505 return TRUE;
2d502050 1506
57b828ef
L
1507 if (!elf_flags_init (obfd))
1508 {
1509 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1510 elf_flags_init (obfd) = TRUE;
1511 }
2d502050 1512
0ac4564e 1513 elf_gp (obfd) = elf_gp (ibfd);
57b828ef
L
1514
1515 /* Also copy the EI_OSABI field. */
1516 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1517 elf_elfheader (ibfd)->e_ident[EI_OSABI];
104d59d1 1518
5522f910
NC
1519 /* If set, copy the EI_ABIVERSION field. */
1520 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1521 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1522 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
07d6d2b8 1523
104d59d1
JM
1524 /* Copy object attributes. */
1525 _bfd_elf_copy_obj_attributes (ibfd, obfd);
63b9bbb7 1526
84865015
NC
1527 if (iheaders == NULL || oheaders == NULL)
1528 return TRUE;
63b9bbb7 1529
5522f910
NC
1530 bed = get_elf_backend_data (obfd);
1531
1532 /* Possibly copy other fields in the section header. */
84865015 1533 for (i = 1; i < elf_numsections (obfd); i++)
63b9bbb7 1534 {
84865015
NC
1535 unsigned int j;
1536 Elf_Internal_Shdr * oheader = oheaders[i];
63b9bbb7 1537
5522f910
NC
1538 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1539 because of a special case need for generating separate debug info
1540 files. See below for more details. */
84865015
NC
1541 if (oheader == NULL
1542 || (oheader->sh_type != SHT_NOBITS
5522f910
NC
1543 && oheader->sh_type < SHT_LOOS))
1544 continue;
1545
1546 /* Ignore empty sections, and sections whose
1547 fields have already been initialised. */
1548 if (oheader->sh_size == 0
84865015
NC
1549 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1550 continue;
63b9bbb7 1551
84865015 1552 /* Scan for the matching section in the input bfd.
5522f910
NC
1553 First we try for a direct mapping between the input and output sections. */
1554 for (j = 1; j < elf_numsections (ibfd); j++)
1555 {
1556 const Elf_Internal_Shdr * iheader = iheaders[j];
1557
1558 if (iheader == NULL)
1559 continue;
1560
1561 if (oheader->bfd_section != NULL
1562 && iheader->bfd_section != NULL
1563 && iheader->bfd_section->output_section != NULL
1564 && iheader->bfd_section->output_section == oheader->bfd_section)
1565 {
1566 /* We have found a connection from the input section to the
1567 output section. Attempt to copy the header fields. If
1568 this fails then do not try any further sections - there
1569 should only be a one-to-one mapping between input and output. */
1570 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1571 j = elf_numsections (ibfd);
1572 break;
1573 }
1574 }
1575
1576 if (j < elf_numsections (ibfd))
1577 continue;
1578
1579 /* That failed. So try to deduce the corresponding input section.
84865015
NC
1580 Unfortunately we cannot compare names as the output string table
1581 is empty, so instead we check size, address and type. */
1582 for (j = 1; j < elf_numsections (ibfd); j++)
1583 {
5522f910 1584 const Elf_Internal_Shdr * iheader = iheaders[j];
84865015 1585
5522f910
NC
1586 if (iheader == NULL)
1587 continue;
1588
1589 /* Try matching fields in the input section's header.
1590 Since --only-keep-debug turns all non-debug sections into
84865015
NC
1591 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1592 input type. */
1593 if ((oheader->sh_type == SHT_NOBITS
1594 || iheader->sh_type == oheader->sh_type)
5522f910
NC
1595 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1596 == (oheader->sh_flags & ~ SHF_INFO_LINK)
84865015
NC
1597 && iheader->sh_addralign == oheader->sh_addralign
1598 && iheader->sh_entsize == oheader->sh_entsize
1599 && iheader->sh_size == oheader->sh_size
1600 && iheader->sh_addr == oheader->sh_addr
1601 && (iheader->sh_info != oheader->sh_info
1602 || iheader->sh_link != oheader->sh_link))
63b9bbb7 1603 {
5522f910
NC
1604 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1605 break;
63b9bbb7
NC
1606 }
1607 }
5522f910
NC
1608
1609 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1610 {
1611 /* Final attempt. Call the backend copy function
1612 with a NULL input section. */
1613 if (bed->elf_backend_copy_special_section_fields != NULL)
a8e14f4c 1614 (void) bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
5522f910 1615 }
63b9bbb7
NC
1616 }
1617
b34976b6 1618 return TRUE;
2d502050
L
1619}
1620
cedc298e
L
1621static const char *
1622get_segment_type (unsigned int p_type)
1623{
1624 const char *pt;
1625 switch (p_type)
1626 {
1627 case PT_NULL: pt = "NULL"; break;
1628 case PT_LOAD: pt = "LOAD"; break;
1629 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1630 case PT_INTERP: pt = "INTERP"; break;
1631 case PT_NOTE: pt = "NOTE"; break;
1632 case PT_SHLIB: pt = "SHLIB"; break;
1633 case PT_PHDR: pt = "PHDR"; break;
1634 case PT_TLS: pt = "TLS"; break;
1635 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
2b05f1b7 1636 case PT_GNU_STACK: pt = "STACK"; break;
cedc298e
L
1637 case PT_GNU_RELRO: pt = "RELRO"; break;
1638 default: pt = NULL; break;
1639 }
1640 return pt;
1641}
1642
f0b79d91
L
1643/* Print out the program headers. */
1644
b34976b6 1645bfd_boolean
217aa764 1646_bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
252b5132 1647{
a50b1753 1648 FILE *f = (FILE *) farg;
252b5132
RH
1649 Elf_Internal_Phdr *p;
1650 asection *s;
1651 bfd_byte *dynbuf = NULL;
1652
1653 p = elf_tdata (abfd)->phdr;
1654 if (p != NULL)
1655 {
1656 unsigned int i, c;
1657
1658 fprintf (f, _("\nProgram Header:\n"));
1659 c = elf_elfheader (abfd)->e_phnum;
1660 for (i = 0; i < c; i++, p++)
1661 {
cedc298e 1662 const char *pt = get_segment_type (p->p_type);
252b5132
RH
1663 char buf[20];
1664
cedc298e 1665 if (pt == NULL)
252b5132 1666 {
cedc298e
L
1667 sprintf (buf, "0x%lx", p->p_type);
1668 pt = buf;
252b5132 1669 }
dc810e39 1670 fprintf (f, "%8s off 0x", pt);
60b89a18 1671 bfd_fprintf_vma (abfd, f, p->p_offset);
252b5132 1672 fprintf (f, " vaddr 0x");
60b89a18 1673 bfd_fprintf_vma (abfd, f, p->p_vaddr);
252b5132 1674 fprintf (f, " paddr 0x");
60b89a18 1675 bfd_fprintf_vma (abfd, f, p->p_paddr);
252b5132
RH
1676 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1677 fprintf (f, " filesz 0x");
60b89a18 1678 bfd_fprintf_vma (abfd, f, p->p_filesz);
252b5132 1679 fprintf (f, " memsz 0x");
60b89a18 1680 bfd_fprintf_vma (abfd, f, p->p_memsz);
252b5132
RH
1681 fprintf (f, " flags %c%c%c",
1682 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1683 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1684 (p->p_flags & PF_X) != 0 ? 'x' : '-');
dc810e39
AM
1685 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1686 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
252b5132
RH
1687 fprintf (f, "\n");
1688 }
1689 }
1690
1691 s = bfd_get_section_by_name (abfd, ".dynamic");
1692 if (s != NULL)
1693 {
cb33740c 1694 unsigned int elfsec;
dc810e39 1695 unsigned long shlink;
252b5132
RH
1696 bfd_byte *extdyn, *extdynend;
1697 size_t extdynsize;
217aa764 1698 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
252b5132
RH
1699
1700 fprintf (f, _("\nDynamic Section:\n"));
1701
eea6121a 1702 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
252b5132
RH
1703 goto error_return;
1704
1705 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 1706 if (elfsec == SHN_BAD)
252b5132 1707 goto error_return;
dc810e39 1708 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
252b5132
RH
1709
1710 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1711 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1712
1713 extdyn = dynbuf;
06614111
NC
1714 /* PR 17512: file: 6f427532. */
1715 if (s->size < extdynsize)
1716 goto error_return;
eea6121a 1717 extdynend = extdyn + s->size;
1036838a 1718 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
07d6d2b8 1719 Fix range check. */
1036838a 1720 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
252b5132
RH
1721 {
1722 Elf_Internal_Dyn dyn;
ad9563d6 1723 const char *name = "";
252b5132 1724 char ab[20];
b34976b6 1725 bfd_boolean stringp;
ad9563d6 1726 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 1727
217aa764 1728 (*swap_dyn_in) (abfd, extdyn, &dyn);
252b5132
RH
1729
1730 if (dyn.d_tag == DT_NULL)
1731 break;
1732
b34976b6 1733 stringp = FALSE;
252b5132
RH
1734 switch (dyn.d_tag)
1735 {
1736 default:
ad9563d6
CM
1737 if (bed->elf_backend_get_target_dtag)
1738 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1739
1740 if (!strcmp (name, ""))
1741 {
cd9af601 1742 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
ad9563d6
CM
1743 name = ab;
1744 }
252b5132
RH
1745 break;
1746
b34976b6 1747 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
252b5132
RH
1748 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1749 case DT_PLTGOT: name = "PLTGOT"; break;
1750 case DT_HASH: name = "HASH"; break;
1751 case DT_STRTAB: name = "STRTAB"; break;
1752 case DT_SYMTAB: name = "SYMTAB"; break;
1753 case DT_RELA: name = "RELA"; break;
1754 case DT_RELASZ: name = "RELASZ"; break;
1755 case DT_RELAENT: name = "RELAENT"; break;
1756 case DT_STRSZ: name = "STRSZ"; break;
1757 case DT_SYMENT: name = "SYMENT"; break;
1758 case DT_INIT: name = "INIT"; break;
1759 case DT_FINI: name = "FINI"; break;
b34976b6
AM
1760 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1761 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
252b5132
RH
1762 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1763 case DT_REL: name = "REL"; break;
1764 case DT_RELSZ: name = "RELSZ"; break;
1765 case DT_RELENT: name = "RELENT"; break;
1766 case DT_PLTREL: name = "PLTREL"; break;
1767 case DT_DEBUG: name = "DEBUG"; break;
1768 case DT_TEXTREL: name = "TEXTREL"; break;
1769 case DT_JMPREL: name = "JMPREL"; break;
94558834
L
1770 case DT_BIND_NOW: name = "BIND_NOW"; break;
1771 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1772 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1773 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1774 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
b34976b6 1775 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
94558834
L
1776 case DT_FLAGS: name = "FLAGS"; break;
1777 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1778 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
d48188b9 1779 case DT_CHECKSUM: name = "CHECKSUM"; break;
94558834
L
1780 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1781 case DT_MOVEENT: name = "MOVEENT"; break;
1782 case DT_MOVESZ: name = "MOVESZ"; break;
1783 case DT_FEATURE: name = "FEATURE"; break;
1784 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1785 case DT_SYMINSZ: name = "SYMINSZ"; break;
1786 case DT_SYMINENT: name = "SYMINENT"; break;
b34976b6
AM
1787 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1788 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1789 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
94558834
L
1790 case DT_PLTPAD: name = "PLTPAD"; break;
1791 case DT_MOVETAB: name = "MOVETAB"; break;
1792 case DT_SYMINFO: name = "SYMINFO"; break;
1793 case DT_RELACOUNT: name = "RELACOUNT"; break;
1794 case DT_RELCOUNT: name = "RELCOUNT"; break;
1795 case DT_FLAGS_1: name = "FLAGS_1"; break;
252b5132
RH
1796 case DT_VERSYM: name = "VERSYM"; break;
1797 case DT_VERDEF: name = "VERDEF"; break;
1798 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1799 case DT_VERNEED: name = "VERNEED"; break;
1800 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
b34976b6 1801 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
94558834 1802 case DT_USED: name = "USED"; break;
b34976b6 1803 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
fdc90cb4 1804 case DT_GNU_HASH: name = "GNU_HASH"; break;
252b5132
RH
1805 }
1806
ad9563d6 1807 fprintf (f, " %-20s ", name);
252b5132 1808 if (! stringp)
a1f3c56e
AN
1809 {
1810 fprintf (f, "0x");
1811 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1812 }
252b5132
RH
1813 else
1814 {
1815 const char *string;
dc810e39 1816 unsigned int tagv = dyn.d_un.d_val;
252b5132 1817
dc810e39 1818 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
252b5132
RH
1819 if (string == NULL)
1820 goto error_return;
1821 fprintf (f, "%s", string);
1822 }
1823 fprintf (f, "\n");
1824 }
1825
1826 free (dynbuf);
1827 dynbuf = NULL;
1828 }
1829
1830 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1831 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1832 {
fc0e6df6 1833 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
b34976b6 1834 return FALSE;
252b5132
RH
1835 }
1836
1837 if (elf_dynverdef (abfd) != 0)
1838 {
1839 Elf_Internal_Verdef *t;
1840
1841 fprintf (f, _("\nVersion definitions:\n"));
1842 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1843 {
1844 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
d0fb9a8d
JJ
1845 t->vd_flags, t->vd_hash,
1846 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1847 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
252b5132
RH
1848 {
1849 Elf_Internal_Verdaux *a;
1850
1851 fprintf (f, "\t");
1852 for (a = t->vd_auxptr->vda_nextptr;
1853 a != NULL;
1854 a = a->vda_nextptr)
d0fb9a8d
JJ
1855 fprintf (f, "%s ",
1856 a->vda_nodename ? a->vda_nodename : "<corrupt>");
252b5132
RH
1857 fprintf (f, "\n");
1858 }
1859 }
1860 }
1861
1862 if (elf_dynverref (abfd) != 0)
1863 {
1864 Elf_Internal_Verneed *t;
1865
1866 fprintf (f, _("\nVersion References:\n"));
1867 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1868 {
1869 Elf_Internal_Vernaux *a;
1870
d0fb9a8d
JJ
1871 fprintf (f, _(" required from %s:\n"),
1872 t->vn_filename ? t->vn_filename : "<corrupt>");
252b5132
RH
1873 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1874 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
d0fb9a8d
JJ
1875 a->vna_flags, a->vna_other,
1876 a->vna_nodename ? a->vna_nodename : "<corrupt>");
252b5132
RH
1877 }
1878 }
1879
b34976b6 1880 return TRUE;
252b5132
RH
1881
1882 error_return:
1883 if (dynbuf != NULL)
1884 free (dynbuf);
b34976b6 1885 return FALSE;
252b5132
RH
1886}
1887
bb4d2ac2
L
1888/* Get version string. */
1889
1890const char *
60bb06bc
L
1891_bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1892 bfd_boolean *hidden)
bb4d2ac2
L
1893{
1894 const char *version_string = NULL;
1895 if (elf_dynversym (abfd) != 0
1896 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1897 {
1898 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1899
1900 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1901 vernum &= VERSYM_VERSION;
1902
1903 if (vernum == 0)
1904 version_string = "";
1f6f5dba
L
1905 else if (vernum == 1
1906 && (vernum > elf_tdata (abfd)->cverdefs
1907 || (elf_tdata (abfd)->verdef[0].vd_flags
1908 == VER_FLG_BASE)))
bb4d2ac2
L
1909 version_string = "Base";
1910 else if (vernum <= elf_tdata (abfd)->cverdefs)
1911 version_string =
1912 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1913 else
1914 {
1915 Elf_Internal_Verneed *t;
1916
7a815dd5 1917 version_string = _("<corrupt>");
bb4d2ac2
L
1918 for (t = elf_tdata (abfd)->verref;
1919 t != NULL;
1920 t = t->vn_nextref)
1921 {
1922 Elf_Internal_Vernaux *a;
1923
1924 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1925 {
1926 if (a->vna_other == vernum)
1927 {
1928 version_string = a->vna_nodename;
1929 break;
1930 }
1931 }
1932 }
1933 }
1934 }
1935 return version_string;
1936}
1937
252b5132
RH
1938/* Display ELF-specific fields of a symbol. */
1939
1940void
217aa764
AM
1941bfd_elf_print_symbol (bfd *abfd,
1942 void *filep,
1943 asymbol *symbol,
1944 bfd_print_symbol_type how)
252b5132 1945{
a50b1753 1946 FILE *file = (FILE *) filep;
252b5132
RH
1947 switch (how)
1948 {
1949 case bfd_print_symbol_name:
1950 fprintf (file, "%s", symbol->name);
1951 break;
1952 case bfd_print_symbol_more:
1953 fprintf (file, "elf ");
60b89a18 1954 bfd_fprintf_vma (abfd, file, symbol->value);
cd9af601 1955 fprintf (file, " %x", symbol->flags);
252b5132
RH
1956 break;
1957 case bfd_print_symbol_all:
1958 {
4e8a9624
AM
1959 const char *section_name;
1960 const char *name = NULL;
9c5bfbb7 1961 const struct elf_backend_data *bed;
7a13edea 1962 unsigned char st_other;
dbb410c3 1963 bfd_vma val;
bb4d2ac2
L
1964 const char *version_string;
1965 bfd_boolean hidden;
c044fabd 1966
252b5132 1967 section_name = symbol->section ? symbol->section->name : "(*none*)";
587ff49e
RH
1968
1969 bed = get_elf_backend_data (abfd);
1970 if (bed->elf_backend_print_symbol_all)
c044fabd 1971 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
587ff49e
RH
1972
1973 if (name == NULL)
1974 {
7ee38065 1975 name = symbol->name;
217aa764 1976 bfd_print_symbol_vandf (abfd, file, symbol);
587ff49e
RH
1977 }
1978
252b5132
RH
1979 fprintf (file, " %s\t", section_name);
1980 /* Print the "other" value for a symbol. For common symbols,
1981 we've already printed the size; now print the alignment.
1982 For other symbols, we have no specified alignment, and
1983 we've printed the address; now print the size. */
dcf6c779 1984 if (symbol->section && bfd_is_com_section (symbol->section))
dbb410c3
AM
1985 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1986 else
1987 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1988 bfd_fprintf_vma (abfd, file, val);
252b5132
RH
1989
1990 /* If we have version information, print it. */
60bb06bc
L
1991 version_string = _bfd_elf_get_symbol_version_string (abfd,
1992 symbol,
1993 &hidden);
bb4d2ac2 1994 if (version_string)
252b5132 1995 {
bb4d2ac2 1996 if (!hidden)
252b5132
RH
1997 fprintf (file, " %-11s", version_string);
1998 else
1999 {
2000 int i;
2001
2002 fprintf (file, " (%s)", version_string);
2003 for (i = 10 - strlen (version_string); i > 0; --i)
2004 putc (' ', file);
2005 }
2006 }
2007
2008 /* If the st_other field is not zero, print it. */
7a13edea 2009 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
c044fabd 2010
7a13edea
NC
2011 switch (st_other)
2012 {
2013 case 0: break;
2014 case STV_INTERNAL: fprintf (file, " .internal"); break;
2015 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2016 case STV_PROTECTED: fprintf (file, " .protected"); break;
2017 default:
2018 /* Some other non-defined flags are also present, so print
2019 everything hex. */
2020 fprintf (file, " 0x%02x", (unsigned int) st_other);
2021 }
252b5132 2022
587ff49e 2023 fprintf (file, " %s", name);
252b5132
RH
2024 }
2025 break;
2026 }
2027}
252b5132
RH
2028\f
2029/* ELF .o/exec file reading */
2030
c044fabd 2031/* Create a new bfd section from an ELF section header. */
252b5132 2032
b34976b6 2033bfd_boolean
217aa764 2034bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
252b5132 2035{
4fbb74a6
AM
2036 Elf_Internal_Shdr *hdr;
2037 Elf_Internal_Ehdr *ehdr;
2038 const struct elf_backend_data *bed;
90937f86 2039 const char *name;
bf67003b
NC
2040 bfd_boolean ret = TRUE;
2041 static bfd_boolean * sections_being_created = NULL;
5a4b0ccc 2042 static bfd * sections_being_created_abfd = NULL;
bf67003b 2043 static unsigned int nesting = 0;
252b5132 2044
4fbb74a6
AM
2045 if (shindex >= elf_numsections (abfd))
2046 return FALSE;
2047
bf67003b
NC
2048 if (++ nesting > 3)
2049 {
2050 /* PR17512: A corrupt ELF binary might contain a recursive group of
67ce483b 2051 sections, with each the string indices pointing to the next in the
bf67003b
NC
2052 loop. Detect this here, by refusing to load a section that we are
2053 already in the process of loading. We only trigger this test if
2054 we have nested at least three sections deep as normal ELF binaries
5a4b0ccc
NC
2055 can expect to recurse at least once.
2056
2057 FIXME: It would be better if this array was attached to the bfd,
2058 rather than being held in a static pointer. */
2059
2060 if (sections_being_created_abfd != abfd)
2061 sections_being_created = NULL;
bf67003b
NC
2062 if (sections_being_created == NULL)
2063 {
446f7ed5
AM
2064 size_t amt = elf_numsections (abfd) * sizeof (bfd_boolean);
2065 sections_being_created = (bfd_boolean *) bfd_zalloc (abfd, amt);
96d3b80f
AM
2066 if (sections_being_created == NULL)
2067 return FALSE;
5a4b0ccc 2068 sections_being_created_abfd = abfd;
bf67003b
NC
2069 }
2070 if (sections_being_created [shindex])
2071 {
4eca0228 2072 _bfd_error_handler
871b3ab2 2073 (_("%pB: warning: loop in section dependencies detected"), abfd);
bf67003b
NC
2074 return FALSE;
2075 }
2076 sections_being_created [shindex] = TRUE;
2077 }
2078
4fbb74a6
AM
2079 hdr = elf_elfsections (abfd)[shindex];
2080 ehdr = elf_elfheader (abfd);
2081 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
1b3a8575 2082 hdr->sh_name);
933d961a 2083 if (name == NULL)
bf67003b 2084 goto fail;
252b5132 2085
4fbb74a6 2086 bed = get_elf_backend_data (abfd);
252b5132
RH
2087 switch (hdr->sh_type)
2088 {
2089 case SHT_NULL:
2090 /* Inactive section. Throw it away. */
bf67003b 2091 goto success;
252b5132 2092
bf67003b
NC
2093 case SHT_PROGBITS: /* Normal section with contents. */
2094 case SHT_NOBITS: /* .bss section. */
2095 case SHT_HASH: /* .hash section. */
2096 case SHT_NOTE: /* .note section. */
25e27870
L
2097 case SHT_INIT_ARRAY: /* .init_array section. */
2098 case SHT_FINI_ARRAY: /* .fini_array section. */
2099 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
7f1204bb 2100 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
fdc90cb4 2101 case SHT_GNU_HASH: /* .gnu.hash section. */
bf67003b
NC
2102 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2103 goto success;
252b5132 2104
797fc050 2105 case SHT_DYNAMIC: /* Dynamic linking information. */
6dc132d9 2106 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2107 goto fail;
2108
cfcac11d
NC
2109 if (hdr->sh_link > elf_numsections (abfd))
2110 {
caa83f8b 2111 /* PR 10478: Accept Solaris binaries with a sh_link
cfcac11d
NC
2112 field set to SHN_BEFORE or SHN_AFTER. */
2113 switch (bfd_get_arch (abfd))
2114 {
caa83f8b 2115 case bfd_arch_i386:
cfcac11d
NC
2116 case bfd_arch_sparc:
2117 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2118 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2119 break;
2120 /* Otherwise fall through. */
2121 default:
bf67003b 2122 goto fail;
cfcac11d
NC
2123 }
2124 }
2125 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
bf67003b 2126 goto fail;
cfcac11d 2127 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
797fc050
AM
2128 {
2129 Elf_Internal_Shdr *dynsymhdr;
2130
2131 /* The shared libraries distributed with hpux11 have a bogus
2132 sh_link field for the ".dynamic" section. Find the
2133 string table for the ".dynsym" section instead. */
2134 if (elf_dynsymtab (abfd) != 0)
2135 {
2136 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2137 hdr->sh_link = dynsymhdr->sh_link;
2138 }
2139 else
2140 {
2141 unsigned int i, num_sec;
2142
2143 num_sec = elf_numsections (abfd);
2144 for (i = 1; i < num_sec; i++)
2145 {
2146 dynsymhdr = elf_elfsections (abfd)[i];
2147 if (dynsymhdr->sh_type == SHT_DYNSYM)
2148 {
2149 hdr->sh_link = dynsymhdr->sh_link;
2150 break;
2151 }
2152 }
2153 }
2154 }
bf67003b 2155 goto success;
797fc050 2156
bf67003b 2157 case SHT_SYMTAB: /* A symbol table. */
252b5132 2158 if (elf_onesymtab (abfd) == shindex)
bf67003b 2159 goto success;
252b5132 2160
a50b2160 2161 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2162 goto fail;
2163
3337c1e5 2164 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
eee3b786
AM
2165 {
2166 if (hdr->sh_size != 0)
bf67003b 2167 goto fail;
eee3b786
AM
2168 /* Some assemblers erroneously set sh_info to one with a
2169 zero sh_size. ld sees this as a global symbol count
2170 of (unsigned) -1. Fix it here. */
2171 hdr->sh_info = 0;
bf67003b 2172 goto success;
eee3b786 2173 }
bf67003b 2174
16ad13ec
NC
2175 /* PR 18854: A binary might contain more than one symbol table.
2176 Unusual, but possible. Warn, but continue. */
2177 if (elf_onesymtab (abfd) != 0)
2178 {
4eca0228 2179 _bfd_error_handler
695344c0 2180 /* xgettext:c-format */
871b3ab2 2181 (_("%pB: warning: multiple symbol tables detected"
63a5468a 2182 " - ignoring the table in section %u"),
16ad13ec
NC
2183 abfd, shindex);
2184 goto success;
2185 }
252b5132 2186 elf_onesymtab (abfd) = shindex;
6a40cf0c
NC
2187 elf_symtab_hdr (abfd) = *hdr;
2188 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
252b5132
RH
2189 abfd->flags |= HAS_SYMS;
2190
2191 /* Sometimes a shared object will map in the symbol table. If
08a40648
AM
2192 SHF_ALLOC is set, and this is a shared object, then we also
2193 treat this section as a BFD section. We can not base the
2194 decision purely on SHF_ALLOC, because that flag is sometimes
2195 set in a relocatable object file, which would confuse the
2196 linker. */
252b5132
RH
2197 if ((hdr->sh_flags & SHF_ALLOC) != 0
2198 && (abfd->flags & DYNAMIC) != 0
6dc132d9
L
2199 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2200 shindex))
bf67003b 2201 goto fail;
252b5132 2202
1b3a8575
AM
2203 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2204 can't read symbols without that section loaded as well. It
2205 is most likely specified by the next section header. */
6a40cf0c
NC
2206 {
2207 elf_section_list * entry;
2208 unsigned int i, num_sec;
1b3a8575 2209
6a40cf0c
NC
2210 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2211 if (entry->hdr.sh_link == shindex)
2212 goto success;
2213
2214 num_sec = elf_numsections (abfd);
2215 for (i = shindex + 1; i < num_sec; i++)
2216 {
2217 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2218
2219 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2220 && hdr2->sh_link == shindex)
2221 break;
2222 }
2223
2224 if (i == num_sec)
2225 for (i = 1; i < shindex; i++)
1b3a8575
AM
2226 {
2227 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
6a40cf0c 2228
1b3a8575
AM
2229 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2230 && hdr2->sh_link == shindex)
2231 break;
2232 }
6a40cf0c
NC
2233
2234 if (i != shindex)
2235 ret = bfd_section_from_shdr (abfd, i);
2236 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2237 goto success;
2238 }
252b5132 2239
bf67003b 2240 case SHT_DYNSYM: /* A dynamic symbol table. */
252b5132 2241 if (elf_dynsymtab (abfd) == shindex)
bf67003b 2242 goto success;
252b5132 2243
a50b2160 2244 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2245 goto fail;
2246
eee3b786
AM
2247 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2248 {
2249 if (hdr->sh_size != 0)
bf67003b
NC
2250 goto fail;
2251
eee3b786
AM
2252 /* Some linkers erroneously set sh_info to one with a
2253 zero sh_size. ld sees this as a global symbol count
2254 of (unsigned) -1. Fix it here. */
2255 hdr->sh_info = 0;
bf67003b 2256 goto success;
eee3b786 2257 }
bf67003b 2258
16ad13ec
NC
2259 /* PR 18854: A binary might contain more than one dynamic symbol table.
2260 Unusual, but possible. Warn, but continue. */
2261 if (elf_dynsymtab (abfd) != 0)
2262 {
4eca0228 2263 _bfd_error_handler
695344c0 2264 /* xgettext:c-format */
871b3ab2 2265 (_("%pB: warning: multiple dynamic symbol tables detected"
63a5468a 2266 " - ignoring the table in section %u"),
16ad13ec
NC
2267 abfd, shindex);
2268 goto success;
2269 }
252b5132
RH
2270 elf_dynsymtab (abfd) = shindex;
2271 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2272 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2273 abfd->flags |= HAS_SYMS;
2274
2275 /* Besides being a symbol table, we also treat this as a regular
2276 section, so that objcopy can handle it. */
bf67003b
NC
2277 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2278 goto success;
252b5132 2279
bf67003b 2280 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
6a40cf0c
NC
2281 {
2282 elf_section_list * entry;
9ad5cbcf 2283
6a40cf0c
NC
2284 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2285 if (entry->ndx == shindex)
2286 goto success;
07d6d2b8 2287
7a6e0d89 2288 entry = bfd_alloc (abfd, sizeof (*entry));
6a40cf0c
NC
2289 if (entry == NULL)
2290 goto fail;
2291 entry->ndx = shindex;
2292 entry->hdr = * hdr;
2293 entry->next = elf_symtab_shndx_list (abfd);
2294 elf_symtab_shndx_list (abfd) = entry;
2295 elf_elfsections (abfd)[shindex] = & entry->hdr;
2296 goto success;
2297 }
9ad5cbcf 2298
bf67003b 2299 case SHT_STRTAB: /* A string table. */
252b5132 2300 if (hdr->bfd_section != NULL)
bf67003b
NC
2301 goto success;
2302
252b5132
RH
2303 if (ehdr->e_shstrndx == shindex)
2304 {
2305 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2306 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
bf67003b 2307 goto success;
252b5132 2308 }
bf67003b 2309
1b3a8575
AM
2310 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2311 {
2312 symtab_strtab:
2313 elf_tdata (abfd)->strtab_hdr = *hdr;
2314 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
bf67003b 2315 goto success;
1b3a8575 2316 }
bf67003b 2317
1b3a8575
AM
2318 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2319 {
2320 dynsymtab_strtab:
2321 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2322 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2323 elf_elfsections (abfd)[shindex] = hdr;
2324 /* We also treat this as a regular section, so that objcopy
2325 can handle it. */
bf67003b
NC
2326 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2327 shindex);
2328 goto success;
1b3a8575 2329 }
252b5132 2330
1b3a8575
AM
2331 /* If the string table isn't one of the above, then treat it as a
2332 regular section. We need to scan all the headers to be sure,
2333 just in case this strtab section appeared before the above. */
2334 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2335 {
2336 unsigned int i, num_sec;
252b5132 2337
1b3a8575
AM
2338 num_sec = elf_numsections (abfd);
2339 for (i = 1; i < num_sec; i++)
2340 {
2341 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2342 if (hdr2->sh_link == shindex)
2343 {
933d961a
JJ
2344 /* Prevent endless recursion on broken objects. */
2345 if (i == shindex)
bf67003b 2346 goto fail;
1b3a8575 2347 if (! bfd_section_from_shdr (abfd, i))
bf67003b 2348 goto fail;
1b3a8575
AM
2349 if (elf_onesymtab (abfd) == i)
2350 goto symtab_strtab;
2351 if (elf_dynsymtab (abfd) == i)
2352 goto dynsymtab_strtab;
2353 }
2354 }
2355 }
bf67003b
NC
2356 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2357 goto success;
252b5132
RH
2358
2359 case SHT_REL:
2360 case SHT_RELA:
2361 /* *These* do a lot of work -- but build no sections! */
2362 {
2363 asection *target_sect;
d4730f92 2364 Elf_Internal_Shdr *hdr2, **p_hdr;
9ad5cbcf 2365 unsigned int num_sec = elf_numsections (abfd);
d4730f92 2366 struct bfd_elf_section_data *esdt;
252b5132 2367
aa2ca951
JJ
2368 if (hdr->sh_entsize
2369 != (bfd_size_type) (hdr->sh_type == SHT_REL
a50b2160 2370 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
bf67003b 2371 goto fail;
a50b2160 2372
03ae5f59 2373 /* Check for a bogus link to avoid crashing. */
4fbb74a6 2374 if (hdr->sh_link >= num_sec)
03ae5f59 2375 {
4eca0228 2376 _bfd_error_handler
695344c0 2377 /* xgettext:c-format */
871b3ab2 2378 (_("%pB: invalid link %u for reloc section %s (index %u)"),
4eca0228 2379 abfd, hdr->sh_link, name, shindex);
bf67003b
NC
2380 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2381 shindex);
2382 goto success;
03ae5f59
ILT
2383 }
2384
252b5132
RH
2385 /* For some incomprehensible reason Oracle distributes
2386 libraries for Solaris in which some of the objects have
2387 bogus sh_link fields. It would be nice if we could just
2388 reject them, but, unfortunately, some people need to use
2389 them. We scan through the section headers; if we find only
2390 one suitable symbol table, we clobber the sh_link to point
83b89087
L
2391 to it. I hope this doesn't break anything.
2392
2393 Don't do it on executable nor shared library. */
2394 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2395 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
252b5132
RH
2396 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2397 {
9ad5cbcf 2398 unsigned int scan;
252b5132
RH
2399 int found;
2400
2401 found = 0;
9ad5cbcf 2402 for (scan = 1; scan < num_sec; scan++)
252b5132
RH
2403 {
2404 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2405 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2406 {
2407 if (found != 0)
2408 {
2409 found = 0;
2410 break;
2411 }
2412 found = scan;
2413 }
2414 }
2415 if (found != 0)
2416 hdr->sh_link = found;
2417 }
2418
2419 /* Get the symbol table. */
1b3a8575
AM
2420 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2421 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
252b5132 2422 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
bf67003b 2423 goto fail;
252b5132 2424
a4bcd733
AM
2425 /* If this is an alloc section in an executable or shared
2426 library, or the reloc section does not use the main symbol
2427 table we don't treat it as a reloc section. BFD can't
2428 adequately represent such a section, so at least for now,
2429 we don't try. We just present it as a normal section. We
2430 also can't use it as a reloc section if it points to the
2431 null section, an invalid section, another reloc section, or
2432 its sh_link points to the null section. */
2433 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2434 && (hdr->sh_flags & SHF_ALLOC) != 0)
83b89087 2435 || hdr->sh_link == SHN_UNDEF
a4bcd733 2436 || hdr->sh_link != elf_onesymtab (abfd)
185ef66d 2437 || hdr->sh_info == SHN_UNDEF
185ef66d
AM
2438 || hdr->sh_info >= num_sec
2439 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2440 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
bf67003b
NC
2441 {
2442 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2443 shindex);
2444 goto success;
2445 }
252b5132
RH
2446
2447 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
bf67003b
NC
2448 goto fail;
2449
252b5132
RH
2450 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2451 if (target_sect == NULL)
bf67003b 2452 goto fail;
252b5132 2453
d4730f92
BS
2454 esdt = elf_section_data (target_sect);
2455 if (hdr->sh_type == SHT_RELA)
2456 p_hdr = &esdt->rela.hdr;
252b5132 2457 else
d4730f92
BS
2458 p_hdr = &esdt->rel.hdr;
2459
a7ba3896
NC
2460 /* PR 17512: file: 0b4f81b7.
2461 Also see PR 24456, for a file which deliberately has two reloc
2462 sections. */
06614111 2463 if (*p_hdr != NULL)
a7ba3896 2464 {
a8e14f4c
NC
2465 if (bed->init_secondary_reloc_section == NULL
2466 || ! bed->init_secondary_reloc_section (abfd, hdr, name, shindex))
2467 {
2468 _bfd_error_handler
2469 /* xgettext:c-format */
2470 (_("%pB: warning: secondary relocation section '%s' for section %pA found - ignoring"),
2471 abfd, name, target_sect);
2472 }
a7ba3896
NC
2473 goto success;
2474 }
a8e14f4c 2475
ef53be89 2476 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
d4730f92 2477 if (hdr2 == NULL)
bf67003b 2478 goto fail;
252b5132 2479 *hdr2 = *hdr;
d4730f92 2480 *p_hdr = hdr2;
252b5132 2481 elf_elfsections (abfd)[shindex] = hdr2;
056bafd4
MR
2482 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2483 * bed->s->int_rels_per_ext_rel);
252b5132
RH
2484 target_sect->flags |= SEC_RELOC;
2485 target_sect->relocation = NULL;
2486 target_sect->rel_filepos = hdr->sh_offset;
bf572ba0
MM
2487 /* In the section to which the relocations apply, mark whether
2488 its relocations are of the REL or RELA variety. */
72730e0c 2489 if (hdr->sh_size != 0)
d4730f92
BS
2490 {
2491 if (hdr->sh_type == SHT_RELA)
2492 target_sect->use_rela_p = 1;
2493 }
252b5132 2494 abfd->flags |= HAS_RELOC;
bf67003b 2495 goto success;
252b5132 2496 }
252b5132
RH
2497
2498 case SHT_GNU_verdef:
2499 elf_dynverdef (abfd) = shindex;
2500 elf_tdata (abfd)->dynverdef_hdr = *hdr;
bf67003b
NC
2501 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2502 goto success;
252b5132
RH
2503
2504 case SHT_GNU_versym:
a50b2160 2505 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
bf67003b
NC
2506 goto fail;
2507
252b5132
RH
2508 elf_dynversym (abfd) = shindex;
2509 elf_tdata (abfd)->dynversym_hdr = *hdr;
bf67003b
NC
2510 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2511 goto success;
252b5132
RH
2512
2513 case SHT_GNU_verneed:
2514 elf_dynverref (abfd) = shindex;
2515 elf_tdata (abfd)->dynverref_hdr = *hdr;
bf67003b
NC
2516 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2517 goto success;
252b5132
RH
2518
2519 case SHT_SHLIB:
bf67003b 2520 goto success;
252b5132 2521
dbb410c3 2522 case SHT_GROUP:
44534af3 2523 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
bf67003b
NC
2524 goto fail;
2525
6dc132d9 2526 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2527 goto fail;
2528
bf67003b 2529 goto success;
dbb410c3 2530
252b5132 2531 default:
104d59d1
JM
2532 /* Possibly an attributes section. */
2533 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2534 || hdr->sh_type == bed->obj_attrs_section_type)
2535 {
2536 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2537 goto fail;
104d59d1 2538 _bfd_elf_parse_attributes (abfd, hdr);
bf67003b 2539 goto success;
104d59d1
JM
2540 }
2541
252b5132 2542 /* Check for any processor-specific section types. */
3eb70a79 2543 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2544 goto success;
3eb70a79
L
2545
2546 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2547 {
2548 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2549 /* FIXME: How to properly handle allocated section reserved
2550 for applications? */
4eca0228 2551 _bfd_error_handler
695344c0 2552 /* xgettext:c-format */
871b3ab2 2553 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2554 abfd, hdr->sh_type, name);
3eb70a79 2555 else
bf67003b
NC
2556 {
2557 /* Allow sections reserved for applications. */
2558 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2559 shindex);
2560 goto success;
2561 }
3eb70a79
L
2562 }
2563 else if (hdr->sh_type >= SHT_LOPROC
2564 && hdr->sh_type <= SHT_HIPROC)
2565 /* FIXME: We should handle this section. */
4eca0228 2566 _bfd_error_handler
695344c0 2567 /* xgettext:c-format */
871b3ab2 2568 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2569 abfd, hdr->sh_type, name);
3eb70a79 2570 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
ff15b240
NC
2571 {
2572 /* Unrecognised OS-specific sections. */
2573 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2574 /* SHF_OS_NONCONFORMING indicates that special knowledge is
08a40648 2575 required to correctly process the section and the file should
ff15b240 2576 be rejected with an error message. */
4eca0228 2577 _bfd_error_handler
695344c0 2578 /* xgettext:c-format */
871b3ab2 2579 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2580 abfd, hdr->sh_type, name);
ff15b240 2581 else
bf67003b
NC
2582 {
2583 /* Otherwise it should be processed. */
2584 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2585 goto success;
2586 }
ff15b240 2587 }
3eb70a79
L
2588 else
2589 /* FIXME: We should handle this section. */
4eca0228 2590 _bfd_error_handler
695344c0 2591 /* xgettext:c-format */
871b3ab2 2592 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2593 abfd, hdr->sh_type, name);
3eb70a79 2594
bf67003b 2595 goto fail;
252b5132
RH
2596 }
2597
bf67003b
NC
2598 fail:
2599 ret = FALSE;
2600 success:
e5b470e2 2601 if (sections_being_created && sections_being_created_abfd == abfd)
bf67003b
NC
2602 sections_being_created [shindex] = FALSE;
2603 if (-- nesting == 0)
5a4b0ccc
NC
2604 {
2605 sections_being_created = NULL;
2606 sections_being_created_abfd = abfd;
2607 }
bf67003b 2608 return ret;
252b5132
RH
2609}
2610
87d72d41 2611/* Return the local symbol specified by ABFD, R_SYMNDX. */
ec338859 2612
87d72d41
AM
2613Elf_Internal_Sym *
2614bfd_sym_from_r_symndx (struct sym_cache *cache,
2615 bfd *abfd,
2616 unsigned long r_symndx)
ec338859 2617{
ec338859
AM
2618 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2619
a5d1b3b5
AM
2620 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2621 {
2622 Elf_Internal_Shdr *symtab_hdr;
2623 unsigned char esym[sizeof (Elf64_External_Sym)];
2624 Elf_External_Sym_Shndx eshndx;
ec338859 2625
a5d1b3b5
AM
2626 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2627 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
87d72d41 2628 &cache->sym[ent], esym, &eshndx) == NULL)
a5d1b3b5 2629 return NULL;
9ad5cbcf 2630
a5d1b3b5
AM
2631 if (cache->abfd != abfd)
2632 {
2633 memset (cache->indx, -1, sizeof (cache->indx));
2634 cache->abfd = abfd;
2635 }
2636 cache->indx[ent] = r_symndx;
ec338859 2637 }
a5d1b3b5 2638
87d72d41 2639 return &cache->sym[ent];
ec338859
AM
2640}
2641
252b5132
RH
2642/* Given an ELF section number, retrieve the corresponding BFD
2643 section. */
2644
2645asection *
91d6fa6a 2646bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
252b5132 2647{
91d6fa6a 2648 if (sec_index >= elf_numsections (abfd))
252b5132 2649 return NULL;
91d6fa6a 2650 return elf_elfsections (abfd)[sec_index]->bfd_section;
252b5132
RH
2651}
2652
b35d266b 2653static const struct bfd_elf_special_section special_sections_b[] =
2f89ff8d 2654{
0112cd26 2655 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2656 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2657};
2658
b35d266b 2659static const struct bfd_elf_special_section special_sections_c[] =
7f4d3958 2660{
0112cd26 2661 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
1ff6de03 2662 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2663 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2664};
2665
b35d266b 2666static const struct bfd_elf_special_section special_sections_d[] =
7f4d3958 2667{
07d6d2b8
AM
2668 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2669 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
a9a72a65
DE
2670 /* There are more DWARF sections than these, but they needn't be added here
2671 unless you have to cope with broken compilers that don't emit section
2672 attributes or you want to help the user writing assembler. */
07d6d2b8
AM
2673 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2674 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2675 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2676 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
0112cd26 2677 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2678 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2679 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2680 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2681 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2682};
2683
b35d266b 2684static const struct bfd_elf_special_section special_sections_f[] =
7f4d3958 2685{
07d6d2b8 2686 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2687 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2688 { NULL, 0 , 0, 0, 0 }
7f4d3958
L
2689};
2690
b35d266b 2691static const struct bfd_elf_special_section special_sections_g[] =
7f4d3958 2692{
0112cd26 2693 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2694 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2695 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2696 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
0112cd26
NC
2697 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2698 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
07d6d2b8
AM
2699 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2700 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2701 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2702 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2703};
2704
b35d266b 2705static const struct bfd_elf_special_section special_sections_h[] =
7f4d3958 2706{
07d6d2b8
AM
2707 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2708 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2709};
2710
b35d266b 2711static const struct bfd_elf_special_section special_sections_i[] =
7f4d3958 2712{
07d6d2b8 2713 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2714 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2715 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2716 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2717};
2718
b35d266b 2719static const struct bfd_elf_special_section special_sections_l[] =
7f4d3958 2720{
0112cd26 2721 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2722 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2723};
2724
b35d266b 2725static const struct bfd_elf_special_section special_sections_n[] =
7f4d3958 2726{
0112cd26 2727 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2728 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2729 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2730};
2731
b35d266b 2732static const struct bfd_elf_special_section special_sections_p[] =
7f4d3958 2733{
6f9dbcd4 2734 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2735 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2736 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2737};
2738
b35d266b 2739static const struct bfd_elf_special_section special_sections_r[] =
7f4d3958 2740{
0112cd26
NC
2741 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2742 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
07d6d2b8
AM
2743 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2744 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2745 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2746};
2747
b35d266b 2748static const struct bfd_elf_special_section special_sections_s[] =
7f4d3958 2749{
0112cd26
NC
2750 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2751 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2752 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
60ff4dc4
HPN
2753 /* See struct bfd_elf_special_section declaration for the semantics of
2754 this special case where .prefix_length != strlen (.prefix). */
2755 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
07d6d2b8 2756 { NULL, 0, 0, 0, 0 }
2f89ff8d
L
2757};
2758
b35d266b 2759static const struct bfd_elf_special_section special_sections_t[] =
7f4d3958 2760{
07d6d2b8
AM
2761 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2762 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
0112cd26 2763 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
07d6d2b8 2764 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2765};
2766
1b315056
CS
2767static const struct bfd_elf_special_section special_sections_z[] =
2768{
07d6d2b8
AM
2769 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2770 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
1b315056
CS
2771 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2772 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2773 { NULL, 0, 0, 0, 0 }
1b315056
CS
2774};
2775
e4c93b56 2776static const struct bfd_elf_special_section * const special_sections[] =
7f4d3958 2777{
7f4d3958 2778 special_sections_b, /* 'b' */
98ece1b3 2779 special_sections_c, /* 'c' */
7f4d3958
L
2780 special_sections_d, /* 'd' */
2781 NULL, /* 'e' */
2782 special_sections_f, /* 'f' */
2783 special_sections_g, /* 'g' */
2784 special_sections_h, /* 'h' */
2785 special_sections_i, /* 'i' */
2786 NULL, /* 'j' */
2787 NULL, /* 'k' */
2788 special_sections_l, /* 'l' */
2789 NULL, /* 'm' */
2790 special_sections_n, /* 'n' */
2791 NULL, /* 'o' */
2792 special_sections_p, /* 'p' */
2793 NULL, /* 'q' */
2794 special_sections_r, /* 'r' */
2795 special_sections_s, /* 's' */
2796 special_sections_t, /* 't' */
1b315056
CS
2797 NULL, /* 'u' */
2798 NULL, /* 'v' */
2799 NULL, /* 'w' */
2800 NULL, /* 'x' */
2801 NULL, /* 'y' */
2802 special_sections_z /* 'z' */
7f4d3958
L
2803};
2804
551b43fd
AM
2805const struct bfd_elf_special_section *
2806_bfd_elf_get_special_section (const char *name,
2807 const struct bfd_elf_special_section *spec,
2808 unsigned int rela)
2f89ff8d
L
2809{
2810 int i;
7f4d3958 2811 int len;
7f4d3958 2812
551b43fd 2813 len = strlen (name);
7f4d3958 2814
551b43fd 2815 for (i = 0; spec[i].prefix != NULL; i++)
7dcb9820
AM
2816 {
2817 int suffix_len;
551b43fd 2818 int prefix_len = spec[i].prefix_length;
7dcb9820
AM
2819
2820 if (len < prefix_len)
2821 continue;
551b43fd 2822 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
7dcb9820
AM
2823 continue;
2824
551b43fd 2825 suffix_len = spec[i].suffix_length;
7dcb9820
AM
2826 if (suffix_len <= 0)
2827 {
2828 if (name[prefix_len] != 0)
2829 {
2830 if (suffix_len == 0)
2831 continue;
2832 if (name[prefix_len] != '.'
2833 && (suffix_len == -2
551b43fd 2834 || (rela && spec[i].type == SHT_REL)))
7dcb9820
AM
2835 continue;
2836 }
2837 }
2838 else
2839 {
2840 if (len < prefix_len + suffix_len)
2841 continue;
2842 if (memcmp (name + len - suffix_len,
551b43fd 2843 spec[i].prefix + prefix_len,
7dcb9820
AM
2844 suffix_len) != 0)
2845 continue;
2846 }
551b43fd 2847 return &spec[i];
7dcb9820 2848 }
2f89ff8d
L
2849
2850 return NULL;
2851}
2852
7dcb9820 2853const struct bfd_elf_special_section *
29ef7005 2854_bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2f89ff8d 2855{
551b43fd
AM
2856 int i;
2857 const struct bfd_elf_special_section *spec;
29ef7005 2858 const struct elf_backend_data *bed;
2f89ff8d
L
2859
2860 /* See if this is one of the special sections. */
551b43fd
AM
2861 if (sec->name == NULL)
2862 return NULL;
2f89ff8d 2863
29ef7005
L
2864 bed = get_elf_backend_data (abfd);
2865 spec = bed->special_sections;
2866 if (spec)
2867 {
2868 spec = _bfd_elf_get_special_section (sec->name,
2869 bed->special_sections,
2870 sec->use_rela_p);
2871 if (spec != NULL)
2872 return spec;
2873 }
2874
551b43fd
AM
2875 if (sec->name[0] != '.')
2876 return NULL;
2f89ff8d 2877
551b43fd 2878 i = sec->name[1] - 'b';
1b315056 2879 if (i < 0 || i > 'z' - 'b')
551b43fd
AM
2880 return NULL;
2881
2882 spec = special_sections[i];
2f89ff8d 2883
551b43fd
AM
2884 if (spec == NULL)
2885 return NULL;
2886
2887 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2f89ff8d
L
2888}
2889
b34976b6 2890bfd_boolean
217aa764 2891_bfd_elf_new_section_hook (bfd *abfd, asection *sec)
252b5132
RH
2892{
2893 struct bfd_elf_section_data *sdata;
551b43fd 2894 const struct elf_backend_data *bed;
7dcb9820 2895 const struct bfd_elf_special_section *ssect;
252b5132 2896
f0abc2a1
AM
2897 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2898 if (sdata == NULL)
2899 {
a50b1753 2900 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
07d6d2b8 2901 sizeof (*sdata));
f0abc2a1
AM
2902 if (sdata == NULL)
2903 return FALSE;
217aa764 2904 sec->used_by_bfd = sdata;
f0abc2a1 2905 }
bf572ba0 2906
551b43fd
AM
2907 /* Indicate whether or not this section should use RELA relocations. */
2908 bed = get_elf_backend_data (abfd);
2909 sec->use_rela_p = bed->default_use_rela_p;
2910
8c803a2d
AM
2911 /* Set up ELF section type and flags for newly created sections, if
2912 there is an ABI mandated section. */
2913 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2914 if (ssect != NULL)
2f89ff8d 2915 {
8c803a2d
AM
2916 elf_section_type (sec) = ssect->type;
2917 elf_section_flags (sec) = ssect->attr;
2f89ff8d
L
2918 }
2919
f592407e 2920 return _bfd_generic_new_section_hook (abfd, sec);
252b5132
RH
2921}
2922
2923/* Create a new bfd section from an ELF program header.
2924
2925 Since program segments have no names, we generate a synthetic name
2926 of the form segment<NUM>, where NUM is generally the index in the
2927 program header table. For segments that are split (see below) we
2928 generate the names segment<NUM>a and segment<NUM>b.
2929
2930 Note that some program segments may have a file size that is different than
2931 (less than) the memory size. All this means is that at execution the
2932 system must allocate the amount of memory specified by the memory size,
2933 but only initialize it with the first "file size" bytes read from the
2934 file. This would occur for example, with program segments consisting
2935 of combined data+bss.
2936
2937 To handle the above situation, this routine generates TWO bfd sections
2938 for the single program segment. The first has the length specified by
2939 the file size of the segment, and the second has the length specified
2940 by the difference between the two sizes. In effect, the segment is split
d5191d0c 2941 into its initialized and uninitialized parts.
252b5132
RH
2942
2943 */
2944
b34976b6 2945bfd_boolean
217aa764
AM
2946_bfd_elf_make_section_from_phdr (bfd *abfd,
2947 Elf_Internal_Phdr *hdr,
91d6fa6a 2948 int hdr_index,
a50b1753 2949 const char *type_name)
252b5132
RH
2950{
2951 asection *newsect;
2952 char *name;
2953 char namebuf[64];
d4c88bbb 2954 size_t len;
252b5132 2955 int split;
502794d4 2956 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132
RH
2957
2958 split = ((hdr->p_memsz > 0)
2959 && (hdr->p_filesz > 0)
2960 && (hdr->p_memsz > hdr->p_filesz));
d5191d0c
AM
2961
2962 if (hdr->p_filesz > 0)
252b5132 2963 {
91d6fa6a 2964 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
d5191d0c 2965 len = strlen (namebuf) + 1;
a50b1753 2966 name = (char *) bfd_alloc (abfd, len);
d5191d0c
AM
2967 if (!name)
2968 return FALSE;
2969 memcpy (name, namebuf, len);
2970 newsect = bfd_make_section (abfd, name);
2971 if (newsect == NULL)
2972 return FALSE;
502794d4
CE
2973 newsect->vma = hdr->p_vaddr / opb;
2974 newsect->lma = hdr->p_paddr / opb;
d5191d0c
AM
2975 newsect->size = hdr->p_filesz;
2976 newsect->filepos = hdr->p_offset;
2977 newsect->flags |= SEC_HAS_CONTENTS;
2978 newsect->alignment_power = bfd_log2 (hdr->p_align);
2979 if (hdr->p_type == PT_LOAD)
252b5132 2980 {
d5191d0c
AM
2981 newsect->flags |= SEC_ALLOC;
2982 newsect->flags |= SEC_LOAD;
2983 if (hdr->p_flags & PF_X)
2984 {
2985 /* FIXME: all we known is that it has execute PERMISSION,
2986 may be data. */
2987 newsect->flags |= SEC_CODE;
2988 }
2989 }
2990 if (!(hdr->p_flags & PF_W))
2991 {
2992 newsect->flags |= SEC_READONLY;
252b5132 2993 }
252b5132
RH
2994 }
2995
d5191d0c 2996 if (hdr->p_memsz > hdr->p_filesz)
252b5132 2997 {
d5191d0c
AM
2998 bfd_vma align;
2999
91d6fa6a 3000 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
d4c88bbb 3001 len = strlen (namebuf) + 1;
a50b1753 3002 name = (char *) bfd_alloc (abfd, len);
252b5132 3003 if (!name)
b34976b6 3004 return FALSE;
d4c88bbb 3005 memcpy (name, namebuf, len);
252b5132
RH
3006 newsect = bfd_make_section (abfd, name);
3007 if (newsect == NULL)
b34976b6 3008 return FALSE;
502794d4
CE
3009 newsect->vma = (hdr->p_vaddr + hdr->p_filesz) / opb;
3010 newsect->lma = (hdr->p_paddr + hdr->p_filesz) / opb;
eea6121a 3011 newsect->size = hdr->p_memsz - hdr->p_filesz;
d5191d0c
AM
3012 newsect->filepos = hdr->p_offset + hdr->p_filesz;
3013 align = newsect->vma & -newsect->vma;
3014 if (align == 0 || align > hdr->p_align)
3015 align = hdr->p_align;
3016 newsect->alignment_power = bfd_log2 (align);
252b5132
RH
3017 if (hdr->p_type == PT_LOAD)
3018 {
d5191d0c
AM
3019 /* Hack for gdb. Segments that have not been modified do
3020 not have their contents written to a core file, on the
3021 assumption that a debugger can find the contents in the
3022 executable. We flag this case by setting the fake
3023 section size to zero. Note that "real" bss sections will
3024 always have their contents dumped to the core file. */
3025 if (bfd_get_format (abfd) == bfd_core)
3026 newsect->size = 0;
252b5132
RH
3027 newsect->flags |= SEC_ALLOC;
3028 if (hdr->p_flags & PF_X)
3029 newsect->flags |= SEC_CODE;
3030 }
3031 if (!(hdr->p_flags & PF_W))
3032 newsect->flags |= SEC_READONLY;
3033 }
3034
b34976b6 3035 return TRUE;
252b5132
RH
3036}
3037
864619bb
KS
3038static bfd_boolean
3039_bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3040{
3041 /* The return value is ignored. Build-ids are considered optional. */
3042 if (templ->xvec->flavour == bfd_target_elf_flavour)
3043 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3044 (templ, offset);
3045 return FALSE;
3046}
3047
b34976b6 3048bfd_boolean
91d6fa6a 3049bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
20cfcaae 3050{
9c5bfbb7 3051 const struct elf_backend_data *bed;
20cfcaae
NC
3052
3053 switch (hdr->p_type)
3054 {
3055 case PT_NULL:
91d6fa6a 3056 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
20cfcaae
NC
3057
3058 case PT_LOAD:
864619bb
KS
3059 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
3060 return FALSE;
3061 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3062 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
3063 return TRUE;
20cfcaae
NC
3064
3065 case PT_DYNAMIC:
91d6fa6a 3066 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
20cfcaae
NC
3067
3068 case PT_INTERP:
91d6fa6a 3069 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
20cfcaae
NC
3070
3071 case PT_NOTE:
91d6fa6a 3072 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
b34976b6 3073 return FALSE;
276da9b3
L
3074 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3075 hdr->p_align))
b34976b6
AM
3076 return FALSE;
3077 return TRUE;
20cfcaae
NC
3078
3079 case PT_SHLIB:
91d6fa6a 3080 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
20cfcaae
NC
3081
3082 case PT_PHDR:
91d6fa6a 3083 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
20cfcaae 3084
811072d8 3085 case PT_GNU_EH_FRAME:
91d6fa6a 3086 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
811072d8
RM
3087 "eh_frame_hdr");
3088
2b05f1b7 3089 case PT_GNU_STACK:
91d6fa6a 3090 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
9ee5e499 3091
8c37241b 3092 case PT_GNU_RELRO:
91d6fa6a 3093 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
8c37241b 3094
20cfcaae 3095 default:
8c1acd09 3096 /* Check for any processor-specific program segment types. */
20cfcaae 3097 bed = get_elf_backend_data (abfd);
91d6fa6a 3098 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
20cfcaae
NC
3099 }
3100}
3101
d4730f92
BS
3102/* Return the REL_HDR for SEC, assuming there is only a single one, either
3103 REL or RELA. */
3104
3105Elf_Internal_Shdr *
3106_bfd_elf_single_rel_hdr (asection *sec)
3107{
3108 if (elf_section_data (sec)->rel.hdr)
3109 {
3110 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3111 return elf_section_data (sec)->rel.hdr;
3112 }
3113 else
3114 return elf_section_data (sec)->rela.hdr;
3115}
3116
3e19fb8f
L
3117static bfd_boolean
3118_bfd_elf_set_reloc_sh_name (bfd *abfd,
3119 Elf_Internal_Shdr *rel_hdr,
3120 const char *sec_name,
3121 bfd_boolean use_rela_p)
3122{
3123 char *name = (char *) bfd_alloc (abfd,
3124 sizeof ".rela" + strlen (sec_name));
3125 if (name == NULL)
3126 return FALSE;
3127
3128 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3129 rel_hdr->sh_name =
3130 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3131 FALSE);
3132 if (rel_hdr->sh_name == (unsigned int) -1)
3133 return FALSE;
3134
3135 return TRUE;
3136}
3137
d4730f92
BS
3138/* Allocate and initialize a section-header for a new reloc section,
3139 containing relocations against ASECT. It is stored in RELDATA. If
3140 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3141 relocations. */
23bc299b 3142
5d13b3b3 3143static bfd_boolean
217aa764 3144_bfd_elf_init_reloc_shdr (bfd *abfd,
d4730f92 3145 struct bfd_elf_section_reloc_data *reldata,
f6fe1ccd 3146 const char *sec_name,
3e19fb8f
L
3147 bfd_boolean use_rela_p,
3148 bfd_boolean delay_st_name_p)
23bc299b 3149{
d4730f92 3150 Elf_Internal_Shdr *rel_hdr;
9c5bfbb7 3151 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3152
d4730f92 3153 BFD_ASSERT (reldata->hdr == NULL);
ef53be89 3154 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
d4730f92 3155 reldata->hdr = rel_hdr;
23bc299b 3156
3e19fb8f
L
3157 if (delay_st_name_p)
3158 rel_hdr->sh_name = (unsigned int) -1;
3159 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3160 use_rela_p))
b34976b6 3161 return FALSE;
23bc299b
MM
3162 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3163 rel_hdr->sh_entsize = (use_rela_p
3164 ? bed->s->sizeof_rela
3165 : bed->s->sizeof_rel);
72de5009 3166 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
28e07a05 3167 rel_hdr->sh_flags = 0;
23bc299b
MM
3168 rel_hdr->sh_addr = 0;
3169 rel_hdr->sh_size = 0;
3170 rel_hdr->sh_offset = 0;
3171
b34976b6 3172 return TRUE;
23bc299b
MM
3173}
3174
94be91de
JB
3175/* Return the default section type based on the passed in section flags. */
3176
3177int
3178bfd_elf_get_default_section_type (flagword flags)
3179{
0e41bebb 3180 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
2e76e85a 3181 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
94be91de
JB
3182 return SHT_NOBITS;
3183 return SHT_PROGBITS;
3184}
3185
d4730f92
BS
3186struct fake_section_arg
3187{
3188 struct bfd_link_info *link_info;
3189 bfd_boolean failed;
3190};
3191
252b5132
RH
3192/* Set up an ELF internal section header for a section. */
3193
252b5132 3194static void
d4730f92 3195elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
252b5132 3196{
d4730f92 3197 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
9c5bfbb7 3198 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3199 struct bfd_elf_section_data *esd = elf_section_data (asect);
252b5132 3200 Elf_Internal_Shdr *this_hdr;
0414f35b 3201 unsigned int sh_type;
0ce398f1 3202 const char *name = asect->name;
3e19fb8f 3203 bfd_boolean delay_st_name_p = FALSE;
233bf4f8 3204 bfd_vma mask;
252b5132 3205
d4730f92 3206 if (arg->failed)
252b5132
RH
3207 {
3208 /* We already failed; just get out of the bfd_map_over_sections
08a40648 3209 loop. */
252b5132
RH
3210 return;
3211 }
3212
d4730f92 3213 this_hdr = &esd->this_hdr;
252b5132 3214
f6fe1ccd 3215 if (arg->link_info)
0ce398f1 3216 {
f6fe1ccd
L
3217 /* ld: compress DWARF debug sections with names: .debug_*. */
3218 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3219 && (asect->flags & SEC_DEBUGGING)
3220 && name[1] == 'd'
3221 && name[6] == '_')
3222 {
3223 /* Set SEC_ELF_COMPRESS to indicate this section should be
3224 compressed. */
3225 asect->flags |= SEC_ELF_COMPRESS;
dd905818 3226 /* If this section will be compressed, delay adding section
3e19fb8f
L
3227 name to section name section after it is compressed in
3228 _bfd_elf_assign_file_positions_for_non_load. */
3229 delay_st_name_p = TRUE;
f6fe1ccd
L
3230 }
3231 }
3232 else if ((asect->flags & SEC_ELF_RENAME))
3233 {
3234 /* objcopy: rename output DWARF debug section. */
3235 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3236 {
3237 /* When we decompress or compress with SHF_COMPRESSED,
3238 convert section name from .zdebug_* to .debug_* if
3239 needed. */
3240 if (name[1] == 'z')
3241 {
3242 char *new_name = convert_zdebug_to_debug (abfd, name);
3243 if (new_name == NULL)
3244 {
3245 arg->failed = TRUE;
3246 return;
3247 }
3248 name = new_name;
3249 }
3250 }
3251 else if (asect->compress_status == COMPRESS_SECTION_DONE)
0ce398f1 3252 {
f6fe1ccd
L
3253 /* PR binutils/18087: Compression does not always make a
3254 section smaller. So only rename the section when
3255 compression has actually taken place. If input section
3256 name is .zdebug_*, we should never compress it again. */
3257 char *new_name = convert_debug_to_zdebug (abfd, name);
0ce398f1
L
3258 if (new_name == NULL)
3259 {
3260 arg->failed = TRUE;
3261 return;
3262 }
f6fe1ccd
L
3263 BFD_ASSERT (name[1] != 'z');
3264 name = new_name;
0ce398f1
L
3265 }
3266 }
3267
3e19fb8f
L
3268 if (delay_st_name_p)
3269 this_hdr->sh_name = (unsigned int) -1;
3270 else
252b5132 3271 {
3e19fb8f
L
3272 this_hdr->sh_name
3273 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3274 name, FALSE);
3275 if (this_hdr->sh_name == (unsigned int) -1)
3276 {
3277 arg->failed = TRUE;
3278 return;
3279 }
252b5132
RH
3280 }
3281
a4d8e49b 3282 /* Don't clear sh_flags. Assembler may set additional bits. */
252b5132
RH
3283
3284 if ((asect->flags & SEC_ALLOC) != 0
3285 || asect->user_set_vma)
502794d4 3286 this_hdr->sh_addr = asect->vma * bfd_octets_per_byte (abfd, asect);
252b5132
RH
3287 else
3288 this_hdr->sh_addr = 0;
3289
3290 this_hdr->sh_offset = 0;
eea6121a 3291 this_hdr->sh_size = asect->size;
252b5132 3292 this_hdr->sh_link = 0;
c86934ce
NC
3293 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3294 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3295 {
4eca0228 3296 _bfd_error_handler
695344c0 3297 /* xgettext:c-format */
9793eb77 3298 (_("%pB: error: alignment power %d of section `%pA' is too big"),
c08bb8dd 3299 abfd, asect->alignment_power, asect);
c86934ce
NC
3300 arg->failed = TRUE;
3301 return;
3302 }
233bf4f8
AM
3303 /* Set sh_addralign to the highest power of two given by alignment
3304 consistent with the section VMA. Linker scripts can force VMA. */
3305 mask = ((bfd_vma) 1 << asect->alignment_power) | this_hdr->sh_addr;
3306 this_hdr->sh_addralign = mask & -mask;
252b5132
RH
3307 /* The sh_entsize and sh_info fields may have been set already by
3308 copy_private_section_data. */
3309
3310 this_hdr->bfd_section = asect;
3311 this_hdr->contents = NULL;
3312
3cddba1e
L
3313 /* If the section type is unspecified, we set it based on
3314 asect->flags. */
98ece1b3
AM
3315 if ((asect->flags & SEC_GROUP) != 0)
3316 sh_type = SHT_GROUP;
98ece1b3 3317 else
94be91de 3318 sh_type = bfd_elf_get_default_section_type (asect->flags);
98ece1b3 3319
3cddba1e 3320 if (this_hdr->sh_type == SHT_NULL)
98ece1b3
AM
3321 this_hdr->sh_type = sh_type;
3322 else if (this_hdr->sh_type == SHT_NOBITS
3323 && sh_type == SHT_PROGBITS
3324 && (asect->flags & SEC_ALLOC) != 0)
3cddba1e 3325 {
98ece1b3
AM
3326 /* Warn if we are changing a NOBITS section to PROGBITS, but
3327 allow the link to proceed. This can happen when users link
3328 non-bss input sections to bss output sections, or emit data
3329 to a bss output section via a linker script. */
4eca0228 3330 _bfd_error_handler
871b3ab2 3331 (_("warning: section `%pA' type changed to PROGBITS"), asect);
98ece1b3 3332 this_hdr->sh_type = sh_type;
3cddba1e
L
3333 }
3334
2f89ff8d 3335 switch (this_hdr->sh_type)
252b5132 3336 {
2f89ff8d 3337 default:
2f89ff8d
L
3338 break;
3339
3340 case SHT_STRTAB:
2f89ff8d
L
3341 case SHT_NOTE:
3342 case SHT_NOBITS:
3343 case SHT_PROGBITS:
3344 break;
606851fb
AM
3345
3346 case SHT_INIT_ARRAY:
3347 case SHT_FINI_ARRAY:
3348 case SHT_PREINIT_ARRAY:
3349 this_hdr->sh_entsize = bed->s->arch_size / 8;
3350 break;
2f89ff8d
L
3351
3352 case SHT_HASH:
c7ac6ff8 3353 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2f89ff8d 3354 break;
5de3bf90 3355
2f89ff8d 3356 case SHT_DYNSYM:
252b5132 3357 this_hdr->sh_entsize = bed->s->sizeof_sym;
2f89ff8d
L
3358 break;
3359
3360 case SHT_DYNAMIC:
252b5132 3361 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2f89ff8d
L
3362 break;
3363
3364 case SHT_RELA:
3365 if (get_elf_backend_data (abfd)->may_use_rela_p)
3366 this_hdr->sh_entsize = bed->s->sizeof_rela;
3367 break;
3368
3369 case SHT_REL:
3370 if (get_elf_backend_data (abfd)->may_use_rel_p)
3371 this_hdr->sh_entsize = bed->s->sizeof_rel;
3372 break;
3373
3374 case SHT_GNU_versym:
252b5132 3375 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2f89ff8d
L
3376 break;
3377
3378 case SHT_GNU_verdef:
252b5132
RH
3379 this_hdr->sh_entsize = 0;
3380 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3381 cverdefs. The linker will set cverdefs, but sh_info will be
3382 zero. */
252b5132
RH
3383 if (this_hdr->sh_info == 0)
3384 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3385 else
3386 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3387 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2f89ff8d
L
3388 break;
3389
3390 case SHT_GNU_verneed:
252b5132
RH
3391 this_hdr->sh_entsize = 0;
3392 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3393 cverrefs. The linker will set cverrefs, but sh_info will be
3394 zero. */
252b5132
RH
3395 if (this_hdr->sh_info == 0)
3396 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3397 else
3398 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3399 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2f89ff8d
L
3400 break;
3401
3402 case SHT_GROUP:
1783205a 3403 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
2f89ff8d 3404 break;
fdc90cb4
JJ
3405
3406 case SHT_GNU_HASH:
3407 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3408 break;
dbb410c3 3409 }
252b5132
RH
3410
3411 if ((asect->flags & SEC_ALLOC) != 0)
3412 this_hdr->sh_flags |= SHF_ALLOC;
3413 if ((asect->flags & SEC_READONLY) == 0)
3414 this_hdr->sh_flags |= SHF_WRITE;
3415 if ((asect->flags & SEC_CODE) != 0)
3416 this_hdr->sh_flags |= SHF_EXECINSTR;
f5fa8ca2
JJ
3417 if ((asect->flags & SEC_MERGE) != 0)
3418 {
3419 this_hdr->sh_flags |= SHF_MERGE;
3420 this_hdr->sh_entsize = asect->entsize;
f5fa8ca2 3421 }
84865015
NC
3422 if ((asect->flags & SEC_STRINGS) != 0)
3423 this_hdr->sh_flags |= SHF_STRINGS;
1126897b 3424 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
dbb410c3 3425 this_hdr->sh_flags |= SHF_GROUP;
13ae64f3 3426 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
704afa60
JJ
3427 {
3428 this_hdr->sh_flags |= SHF_TLS;
3a800eb9
AM
3429 if (asect->size == 0
3430 && (asect->flags & SEC_HAS_CONTENTS) == 0)
704afa60 3431 {
3a800eb9 3432 struct bfd_link_order *o = asect->map_tail.link_order;
b34976b6 3433
704afa60 3434 this_hdr->sh_size = 0;
3a800eb9
AM
3435 if (o != NULL)
3436 {
704afa60 3437 this_hdr->sh_size = o->offset + o->size;
3a800eb9
AM
3438 if (this_hdr->sh_size != 0)
3439 this_hdr->sh_type = SHT_NOBITS;
3440 }
704afa60
JJ
3441 }
3442 }
18ae9cc1
L
3443 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3444 this_hdr->sh_flags |= SHF_EXCLUDE;
252b5132 3445
d4730f92
BS
3446 /* If the section has relocs, set up a section header for the
3447 SHT_REL[A] section. If two relocation sections are required for
3448 this section, it is up to the processor-specific back-end to
3449 create the other. */
3450 if ((asect->flags & SEC_RELOC) != 0)
3451 {
3452 /* When doing a relocatable link, create both REL and RELA sections if
3453 needed. */
3454 if (arg->link_info
3455 /* Do the normal setup if we wouldn't create any sections here. */
3456 && esd->rel.count + esd->rela.count > 0
0e1862bb
L
3457 && (bfd_link_relocatable (arg->link_info)
3458 || arg->link_info->emitrelocations))
d4730f92
BS
3459 {
3460 if (esd->rel.count && esd->rel.hdr == NULL
28e07a05 3461 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
db4677b8 3462 FALSE, delay_st_name_p))
d4730f92
BS
3463 {
3464 arg->failed = TRUE;
3465 return;
3466 }
3467 if (esd->rela.count && esd->rela.hdr == NULL
28e07a05 3468 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
db4677b8 3469 TRUE, delay_st_name_p))
d4730f92
BS
3470 {
3471 arg->failed = TRUE;
3472 return;
3473 }
3474 }
3475 else if (!_bfd_elf_init_reloc_shdr (abfd,
3476 (asect->use_rela_p
3477 ? &esd->rela : &esd->rel),
f6fe1ccd 3478 name,
3e19fb8f
L
3479 asect->use_rela_p,
3480 delay_st_name_p))
db4677b8 3481 {
d4730f92 3482 arg->failed = TRUE;
db4677b8
AM
3483 return;
3484 }
d4730f92
BS
3485 }
3486
252b5132 3487 /* Check for processor-specific section types. */
0414f35b 3488 sh_type = this_hdr->sh_type;
e1fddb6b
AO
3489 if (bed->elf_backend_fake_sections
3490 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
db4677b8
AM
3491 {
3492 arg->failed = TRUE;
3493 return;
3494 }
252b5132 3495
42bb2e33 3496 if (sh_type == SHT_NOBITS && asect->size != 0)
0414f35b
AM
3497 {
3498 /* Don't change the header type from NOBITS if we are being
42bb2e33 3499 called for objcopy --only-keep-debug. */
0414f35b
AM
3500 this_hdr->sh_type = sh_type;
3501 }
252b5132
RH
3502}
3503
bcacc0f5
AM
3504/* Fill in the contents of a SHT_GROUP section. Called from
3505 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3506 when ELF targets use the generic linker, ld. Called for ld -r
3507 from bfd_elf_final_link. */
dbb410c3 3508
1126897b 3509void
217aa764 3510bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
dbb410c3 3511{
a50b1753 3512 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
9dce4196 3513 asection *elt, *first;
dbb410c3 3514 unsigned char *loc;
b34976b6 3515 bfd_boolean gas;
dbb410c3 3516
7e4111ad
L
3517 /* Ignore linker created group section. See elfNN_ia64_object_p in
3518 elfxx-ia64.c. */
ce5aecf8
AM
3519 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3520 || sec->size == 0
dbb410c3
AM
3521 || *failedptr)
3522 return;
3523
bcacc0f5
AM
3524 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3525 {
3526 unsigned long symindx = 0;
3527
3528 /* elf_group_id will have been set up by objcopy and the
3529 generic linker. */
3530 if (elf_group_id (sec) != NULL)
3531 symindx = elf_group_id (sec)->udata.i;
1126897b 3532
bcacc0f5
AM
3533 if (symindx == 0)
3534 {
3535 /* If called from the assembler, swap_out_syms will have set up
3536 elf_section_syms. */
3537 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3538 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3539 }
3540 elf_section_data (sec)->this_hdr.sh_info = symindx;
3541 }
3542 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
1126897b 3543 {
bcacc0f5
AM
3544 /* The ELF backend linker sets sh_info to -2 when the group
3545 signature symbol is global, and thus the index can't be
3546 set until all local symbols are output. */
53720c49
AM
3547 asection *igroup;
3548 struct bfd_elf_section_data *sec_data;
3549 unsigned long symndx;
3550 unsigned long extsymoff;
bcacc0f5
AM
3551 struct elf_link_hash_entry *h;
3552
53720c49
AM
3553 /* The point of this little dance to the first SHF_GROUP section
3554 then back to the SHT_GROUP section is that this gets us to
3555 the SHT_GROUP in the input object. */
3556 igroup = elf_sec_group (elf_next_in_group (sec));
3557 sec_data = elf_section_data (igroup);
3558 symndx = sec_data->this_hdr.sh_info;
3559 extsymoff = 0;
bcacc0f5
AM
3560 if (!elf_bad_symtab (igroup->owner))
3561 {
3562 Elf_Internal_Shdr *symtab_hdr;
3563
3564 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3565 extsymoff = symtab_hdr->sh_info;
3566 }
3567 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3568 while (h->root.type == bfd_link_hash_indirect
3569 || h->root.type == bfd_link_hash_warning)
3570 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3571
3572 elf_section_data (sec)->this_hdr.sh_info = h->indx;
1126897b 3573 }
dbb410c3 3574
1126897b 3575 /* The contents won't be allocated for "ld -r" or objcopy. */
b34976b6 3576 gas = TRUE;
dbb410c3
AM
3577 if (sec->contents == NULL)
3578 {
b34976b6 3579 gas = FALSE;
a50b1753 3580 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
9dce4196
AM
3581
3582 /* Arrange for the section to be written out. */
3583 elf_section_data (sec)->this_hdr.contents = sec->contents;
dbb410c3
AM
3584 if (sec->contents == NULL)
3585 {
b34976b6 3586 *failedptr = TRUE;
dbb410c3
AM
3587 return;
3588 }
3589 }
3590
eea6121a 3591 loc = sec->contents + sec->size;
dbb410c3 3592
9dce4196
AM
3593 /* Get the pointer to the first section in the group that gas
3594 squirreled away here. objcopy arranges for this to be set to the
3595 start of the input section group. */
3596 first = elt = elf_next_in_group (sec);
dbb410c3
AM
3597
3598 /* First element is a flag word. Rest of section is elf section
3599 indices for all the sections of the group. Write them backwards
3600 just to keep the group in the same order as given in .section
3601 directives, not that it matters. */
3602 while (elt != NULL)
3603 {
9dce4196 3604 asection *s;
9dce4196 3605
9dce4196 3606 s = elt;
415f38a6
AM
3607 if (!gas)
3608 s = s->output_section;
3609 if (s != NULL
3610 && !bfd_is_abs_section (s))
01e1a5bc 3611 {
db4677b8 3612 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
28e07a05
AM
3613 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3614
3615 if (elf_sec->rel.hdr != NULL
3616 && (gas
3617 || (input_elf_sec->rel.hdr != NULL
3618 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3619 {
28e07a05 3620 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3621 loc -= 4;
3622 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3623 }
28e07a05
AM
3624 if (elf_sec->rela.hdr != NULL
3625 && (gas
3626 || (input_elf_sec->rela.hdr != NULL
3627 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3628 {
28e07a05 3629 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3630 loc -= 4;
3631 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3632 }
01e1a5bc 3633 loc -= 4;
db4677b8 3634 H_PUT_32 (abfd, elf_sec->this_idx, loc);
01e1a5bc 3635 }
945906ff 3636 elt = elf_next_in_group (elt);
9dce4196
AM
3637 if (elt == first)
3638 break;
dbb410c3
AM
3639 }
3640
7bdf4127
AB
3641 loc -= 4;
3642 BFD_ASSERT (loc == sec->contents);
dbb410c3 3643
9dce4196 3644 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
dbb410c3
AM
3645}
3646
bce964aa
AM
3647/* Given NAME, the name of a relocation section stripped of its
3648 .rel/.rela prefix, return the section in ABFD to which the
3649 relocations apply. */
bd53a53a
L
3650
3651asection *
bce964aa
AM
3652_bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3653{
3654 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3655 section likely apply to .got.plt or .got section. */
3656 if (get_elf_backend_data (abfd)->want_got_plt
3657 && strcmp (name, ".plt") == 0)
3658 {
3659 asection *sec;
3660
3661 name = ".got.plt";
3662 sec = bfd_get_section_by_name (abfd, name);
3663 if (sec != NULL)
3664 return sec;
3665 name = ".got";
3666 }
3667
3668 return bfd_get_section_by_name (abfd, name);
3669}
3670
3671/* Return the section to which RELOC_SEC applies. */
3672
3673static asection *
3674elf_get_reloc_section (asection *reloc_sec)
bd53a53a
L
3675{
3676 const char *name;
3677 unsigned int type;
3678 bfd *abfd;
bce964aa 3679 const struct elf_backend_data *bed;
bd53a53a
L
3680
3681 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3682 if (type != SHT_REL && type != SHT_RELA)
3683 return NULL;
3684
3685 /* We look up the section the relocs apply to by name. */
3686 name = reloc_sec->name;
bce964aa
AM
3687 if (strncmp (name, ".rel", 4) != 0)
3688 return NULL;
3689 name += 4;
3690 if (type == SHT_RELA && *name++ != 'a')
3691 return NULL;
bd53a53a 3692
bd53a53a 3693 abfd = reloc_sec->owner;
bce964aa
AM
3694 bed = get_elf_backend_data (abfd);
3695 return bed->get_reloc_section (abfd, name);
bd53a53a
L
3696}
3697
252b5132
RH
3698/* Assign all ELF section numbers. The dummy first section is handled here
3699 too. The link/info pointers for the standard section types are filled
3700 in here too, while we're at it. */
3701
b34976b6 3702static bfd_boolean
da9f89d4 3703assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
252b5132
RH
3704{
3705 struct elf_obj_tdata *t = elf_tdata (abfd);
3706 asection *sec;
3e19fb8f 3707 unsigned int section_number;
252b5132 3708 Elf_Internal_Shdr **i_shdrp;
47cc2cf5 3709 struct bfd_elf_section_data *d;
3516e984 3710 bfd_boolean need_symtab;
446f7ed5 3711 size_t amt;
252b5132
RH
3712
3713 section_number = 1;
3714
2b0f7ef9
JJ
3715 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3716
da9f89d4 3717 /* SHT_GROUP sections are in relocatable files only. */
7bdf4127 3718 if (link_info == NULL || !link_info->resolve_section_groups)
252b5132 3719 {
ef53be89 3720 size_t reloc_count = 0;
14f2c699 3721
da9f89d4 3722 /* Put SHT_GROUP sections first. */
04dd1667 3723 for (sec = abfd->sections; sec != NULL; sec = sec->next)
47cc2cf5 3724 {
5daa8fe7 3725 d = elf_section_data (sec);
da9f89d4
L
3726
3727 if (d->this_hdr.sh_type == SHT_GROUP)
08a40648 3728 {
5daa8fe7 3729 if (sec->flags & SEC_LINKER_CREATED)
da9f89d4
L
3730 {
3731 /* Remove the linker created SHT_GROUP sections. */
5daa8fe7 3732 bfd_section_list_remove (abfd, sec);
da9f89d4 3733 abfd->section_count--;
da9f89d4 3734 }
08a40648 3735 else
4fbb74a6 3736 d->this_idx = section_number++;
da9f89d4 3737 }
14f2c699
L
3738
3739 /* Count relocations. */
3740 reloc_count += sec->reloc_count;
47cc2cf5 3741 }
14f2c699
L
3742
3743 /* Clear HAS_RELOC if there are no relocations. */
3744 if (reloc_count == 0)
3745 abfd->flags &= ~HAS_RELOC;
47cc2cf5
PB
3746 }
3747
3748 for (sec = abfd->sections; sec; sec = sec->next)
3749 {
3750 d = elf_section_data (sec);
3751
3752 if (d->this_hdr.sh_type != SHT_GROUP)
4fbb74a6 3753 d->this_idx = section_number++;
3e19fb8f
L
3754 if (d->this_hdr.sh_name != (unsigned int) -1)
3755 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
d4730f92 3756 if (d->rel.hdr)
2b0f7ef9 3757 {
d4730f92 3758 d->rel.idx = section_number++;
3e19fb8f
L
3759 if (d->rel.hdr->sh_name != (unsigned int) -1)
3760 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
2b0f7ef9 3761 }
d4730f92
BS
3762 else
3763 d->rel.idx = 0;
23bc299b 3764
d4730f92 3765 if (d->rela.hdr)
2b0f7ef9 3766 {
d4730f92 3767 d->rela.idx = section_number++;
3e19fb8f
L
3768 if (d->rela.hdr->sh_name != (unsigned int) -1)
3769 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
2b0f7ef9 3770 }
23bc299b 3771 else
d4730f92 3772 d->rela.idx = 0;
252b5132
RH
3773 }
3774
3516e984
L
3775 need_symtab = (bfd_get_symcount (abfd) > 0
3776 || (link_info == NULL
3777 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3778 == HAS_RELOC)));
3779 if (need_symtab)
252b5132 3780 {
12bd6957 3781 elf_onesymtab (abfd) = section_number++;
2b0f7ef9 3782 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
4fbb74a6 3783 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
9ad5cbcf 3784 {
7a6e0d89 3785 elf_section_list *entry;
6a40cf0c
NC
3786
3787 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3788
7a6e0d89 3789 entry = bfd_zalloc (abfd, sizeof (*entry));
6a40cf0c
NC
3790 entry->ndx = section_number++;
3791 elf_symtab_shndx_list (abfd) = entry;
3792 entry->hdr.sh_name
9ad5cbcf 3793 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
b34976b6 3794 ".symtab_shndx", FALSE);
6a40cf0c 3795 if (entry->hdr.sh_name == (unsigned int) -1)
b34976b6 3796 return FALSE;
9ad5cbcf 3797 }
12bd6957 3798 elf_strtab_sec (abfd) = section_number++;
2b0f7ef9 3799 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
252b5132
RH
3800 }
3801
dd905818
NC
3802 elf_shstrtab_sec (abfd) = section_number++;
3803 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3804 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3805
1c52a645
L
3806 if (section_number >= SHN_LORESERVE)
3807 {
695344c0 3808 /* xgettext:c-format */
871b3ab2 3809 _bfd_error_handler (_("%pB: too many sections: %u"),
1c52a645
L
3810 abfd, section_number);
3811 return FALSE;
3812 }
3813
9ad5cbcf 3814 elf_numsections (abfd) = section_number;
252b5132
RH
3815 elf_elfheader (abfd)->e_shnum = section_number;
3816
3817 /* Set up the list of section header pointers, in agreement with the
3818 indices. */
446f7ed5
AM
3819 amt = section_number * sizeof (Elf_Internal_Shdr *);
3820 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
252b5132 3821 if (i_shdrp == NULL)
b34976b6 3822 return FALSE;
252b5132 3823
a50b1753 3824 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
07d6d2b8 3825 sizeof (Elf_Internal_Shdr));
252b5132
RH
3826 if (i_shdrp[0] == NULL)
3827 {
3828 bfd_release (abfd, i_shdrp);
b34976b6 3829 return FALSE;
252b5132 3830 }
252b5132
RH
3831
3832 elf_elfsections (abfd) = i_shdrp;
3833
12bd6957 3834 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3516e984 3835 if (need_symtab)
252b5132 3836 {
12bd6957 3837 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
4fbb74a6 3838 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
9ad5cbcf 3839 {
6a40cf0c
NC
3840 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3841 BFD_ASSERT (entry != NULL);
3842 i_shdrp[entry->ndx] = & entry->hdr;
3843 entry->hdr.sh_link = elf_onesymtab (abfd);
9ad5cbcf 3844 }
12bd6957
AM
3845 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3846 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
252b5132 3847 }
38ce5b11 3848
252b5132
RH
3849 for (sec = abfd->sections; sec; sec = sec->next)
3850 {
252b5132 3851 asection *s;
252b5132 3852
91d6fa6a
NC
3853 d = elf_section_data (sec);
3854
252b5132 3855 i_shdrp[d->this_idx] = &d->this_hdr;
d4730f92
BS
3856 if (d->rel.idx != 0)
3857 i_shdrp[d->rel.idx] = d->rel.hdr;
3858 if (d->rela.idx != 0)
3859 i_shdrp[d->rela.idx] = d->rela.hdr;
252b5132
RH
3860
3861 /* Fill in the sh_link and sh_info fields while we're at it. */
3862
3863 /* sh_link of a reloc section is the section index of the symbol
3864 table. sh_info is the section index of the section to which
3865 the relocation entries apply. */
d4730f92 3866 if (d->rel.idx != 0)
252b5132 3867 {
12bd6957 3868 d->rel.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3869 d->rel.hdr->sh_info = d->this_idx;
9ef5d938 3870 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
252b5132 3871 }
d4730f92 3872 if (d->rela.idx != 0)
23bc299b 3873 {
12bd6957 3874 d->rela.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3875 d->rela.hdr->sh_info = d->this_idx;
9ef5d938 3876 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
23bc299b 3877 }
252b5132 3878
38ce5b11
L
3879 /* We need to set up sh_link for SHF_LINK_ORDER. */
3880 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3881 {
3882 s = elf_linked_to_section (sec);
3883 if (s)
38ce5b11 3884 {
f2876037 3885 /* elf_linked_to_section points to the input section. */
ccd2ec6a 3886 if (link_info != NULL)
38ce5b11 3887 {
f2876037 3888 /* Check discarded linkonce section. */
dbaa2011 3889 if (discarded_section (s))
38ce5b11 3890 {
ccd2ec6a 3891 asection *kept;
4eca0228 3892 _bfd_error_handler
695344c0 3893 /* xgettext:c-format */
871b3ab2
AM
3894 (_("%pB: sh_link of section `%pA' points to"
3895 " discarded section `%pA' of `%pB'"),
ccd2ec6a
L
3896 abfd, d->this_hdr.bfd_section,
3897 s, s->owner);
3898 /* Point to the kept section if it has the same
3899 size as the discarded one. */
c0f00686 3900 kept = _bfd_elf_check_kept_section (s, link_info);
ccd2ec6a 3901 if (kept == NULL)
185d09ad 3902 {
ccd2ec6a
L
3903 bfd_set_error (bfd_error_bad_value);
3904 return FALSE;
185d09ad 3905 }
ccd2ec6a 3906 s = kept;
38ce5b11 3907 }
e424ecc8 3908
ccd2ec6a
L
3909 s = s->output_section;
3910 BFD_ASSERT (s != NULL);
38ce5b11 3911 }
f2876037
L
3912 else
3913 {
3914 /* Handle objcopy. */
3915 if (s->output_section == NULL)
3916 {
4eca0228 3917 _bfd_error_handler
695344c0 3918 /* xgettext:c-format */
871b3ab2
AM
3919 (_("%pB: sh_link of section `%pA' points to"
3920 " removed section `%pA' of `%pB'"),
f2876037
L
3921 abfd, d->this_hdr.bfd_section, s, s->owner);
3922 bfd_set_error (bfd_error_bad_value);
3923 return FALSE;
3924 }
3925 s = s->output_section;
3926 }
ccd2ec6a
L
3927 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3928 }
3929 else
3930 {
3931 /* PR 290:
3932 The Intel C compiler generates SHT_IA_64_UNWIND with
3933 SHF_LINK_ORDER. But it doesn't set the sh_link or
3934 sh_info fields. Hence we could get the situation
08a40648 3935 where s is NULL. */
ccd2ec6a
L
3936 const struct elf_backend_data *bed
3937 = get_elf_backend_data (abfd);
3938 if (bed->link_order_error_handler)
3939 bed->link_order_error_handler
695344c0 3940 /* xgettext:c-format */
871b3ab2 3941 (_("%pB: warning: sh_link not set for section `%pA'"),
ccd2ec6a 3942 abfd, sec);
38ce5b11
L
3943 }
3944 }
3945
252b5132
RH
3946 switch (d->this_hdr.sh_type)
3947 {
3948 case SHT_REL:
3949 case SHT_RELA:
3950 /* A reloc section which we are treating as a normal BFD
3951 section. sh_link is the section index of the symbol
3952 table. sh_info is the section index of the section to
3953 which the relocation entries apply. We assume that an
3954 allocated reloc section uses the dynamic symbol table.
3955 FIXME: How can we be sure? */
3956 s = bfd_get_section_by_name (abfd, ".dynsym");
3957 if (s != NULL)
3958 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3959
bce964aa 3960 s = elf_get_reloc_section (sec);
252b5132 3961 if (s != NULL)
9ef5d938
L
3962 {
3963 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3964 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3965 }
252b5132
RH
3966 break;
3967
3968 case SHT_STRTAB:
3969 /* We assume that a section named .stab*str is a stabs
3970 string section. We look for a section with the same name
3971 but without the trailing ``str'', and set its sh_link
3972 field to point to this section. */
0112cd26 3973 if (CONST_STRNEQ (sec->name, ".stab")
252b5132
RH
3974 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3975 {
3976 size_t len;
3977 char *alc;
3978
3979 len = strlen (sec->name);
a50b1753 3980 alc = (char *) bfd_malloc (len - 2);
252b5132 3981 if (alc == NULL)
b34976b6 3982 return FALSE;
d4c88bbb 3983 memcpy (alc, sec->name, len - 3);
252b5132
RH
3984 alc[len - 3] = '\0';
3985 s = bfd_get_section_by_name (abfd, alc);
3986 free (alc);
3987 if (s != NULL)
3988 {
3989 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3990
3991 /* This is a .stab section. */
0594c12d
AM
3992 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
3993 elf_section_data (s)->this_hdr.sh_entsize
3994 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
252b5132
RH
3995 }
3996 }
3997 break;
3998
3999 case SHT_DYNAMIC:
4000 case SHT_DYNSYM:
4001 case SHT_GNU_verneed:
4002 case SHT_GNU_verdef:
4003 /* sh_link is the section header index of the string table
4004 used for the dynamic entries, or the symbol table, or the
4005 version strings. */
4006 s = bfd_get_section_by_name (abfd, ".dynstr");
4007 if (s != NULL)
4008 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4009 break;
4010
7f1204bb
JJ
4011 case SHT_GNU_LIBLIST:
4012 /* sh_link is the section header index of the prelink library
08a40648
AM
4013 list used for the dynamic entries, or the symbol table, or
4014 the version strings. */
7f1204bb
JJ
4015 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
4016 ? ".dynstr" : ".gnu.libstr");
4017 if (s != NULL)
4018 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4019 break;
4020
252b5132 4021 case SHT_HASH:
fdc90cb4 4022 case SHT_GNU_HASH:
252b5132
RH
4023 case SHT_GNU_versym:
4024 /* sh_link is the section header index of the symbol table
4025 this hash table or version table is for. */
4026 s = bfd_get_section_by_name (abfd, ".dynsym");
4027 if (s != NULL)
4028 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4029 break;
dbb410c3
AM
4030
4031 case SHT_GROUP:
12bd6957 4032 d->this_hdr.sh_link = elf_onesymtab (abfd);
252b5132
RH
4033 }
4034 }
4035
3e19fb8f
L
4036 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
4037 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
4038 debug section name from .debug_* to .zdebug_* if needed. */
4039
b34976b6 4040 return TRUE;
252b5132
RH
4041}
4042
5372391b 4043static bfd_boolean
217aa764 4044sym_is_global (bfd *abfd, asymbol *sym)
252b5132
RH
4045{
4046 /* If the backend has a special mapping, use it. */
9c5bfbb7 4047 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764
AM
4048 if (bed->elf_backend_sym_is_global)
4049 return (*bed->elf_backend_sym_is_global) (abfd, sym);
252b5132 4050
e47bf690 4051 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
e6f7f6d1
AM
4052 || bfd_is_und_section (bfd_asymbol_section (sym))
4053 || bfd_is_com_section (bfd_asymbol_section (sym)));
252b5132
RH
4054}
4055
76359541
TP
4056/* Filter global symbols of ABFD to include in the import library. All
4057 SYMCOUNT symbols of ABFD can be examined from their pointers in
4058 SYMS. Pointers of symbols to keep should be stored contiguously at
4059 the beginning of that array.
4060
4061 Returns the number of symbols to keep. */
4062
4063unsigned int
4064_bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4065 asymbol **syms, long symcount)
4066{
4067 long src_count, dst_count = 0;
4068
4069 for (src_count = 0; src_count < symcount; src_count++)
4070 {
4071 asymbol *sym = syms[src_count];
4072 char *name = (char *) bfd_asymbol_name (sym);
4073 struct bfd_link_hash_entry *h;
4074
4075 if (!sym_is_global (abfd, sym))
4076 continue;
4077
4078 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
5df1bc57
AM
4079 if (h == NULL)
4080 continue;
76359541
TP
4081 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4082 continue;
76359541
TP
4083 if (h->linker_def || h->ldscript_def)
4084 continue;
4085
4086 syms[dst_count++] = sym;
4087 }
4088
4089 syms[dst_count] = NULL;
4090
4091 return dst_count;
4092}
4093
5372391b 4094/* Don't output section symbols for sections that are not going to be
c6d8cab4 4095 output, that are duplicates or there is no BFD section. */
5372391b
AM
4096
4097static bfd_boolean
4098ignore_section_sym (bfd *abfd, asymbol *sym)
4099{
c6d8cab4
L
4100 elf_symbol_type *type_ptr;
4101
db0c309f
NC
4102 if (sym == NULL)
4103 return FALSE;
4104
c6d8cab4
L
4105 if ((sym->flags & BSF_SECTION_SYM) == 0)
4106 return FALSE;
4107
db0c309f
NC
4108 if (sym->section == NULL)
4109 return TRUE;
4110
c6d8cab4
L
4111 type_ptr = elf_symbol_from (abfd, sym);
4112 return ((type_ptr != NULL
4113 && type_ptr->internal_elf_sym.st_shndx != 0
4114 && bfd_is_abs_section (sym->section))
4115 || !(sym->section->owner == abfd
db0c309f
NC
4116 || (sym->section->output_section != NULL
4117 && sym->section->output_section->owner == abfd
2633a79c
AM
4118 && sym->section->output_offset == 0)
4119 || bfd_is_abs_section (sym->section)));
5372391b
AM
4120}
4121
2633a79c
AM
4122/* Map symbol from it's internal number to the external number, moving
4123 all local symbols to be at the head of the list. */
4124
b34976b6 4125static bfd_boolean
12bd6957 4126elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
252b5132 4127{
dc810e39 4128 unsigned int symcount = bfd_get_symcount (abfd);
252b5132
RH
4129 asymbol **syms = bfd_get_outsymbols (abfd);
4130 asymbol **sect_syms;
dc810e39
AM
4131 unsigned int num_locals = 0;
4132 unsigned int num_globals = 0;
4133 unsigned int num_locals2 = 0;
4134 unsigned int num_globals2 = 0;
7292b3ac 4135 unsigned int max_index = 0;
dc810e39 4136 unsigned int idx;
252b5132
RH
4137 asection *asect;
4138 asymbol **new_syms;
446f7ed5 4139 size_t amt;
252b5132
RH
4140
4141#ifdef DEBUG
4142 fprintf (stderr, "elf_map_symbols\n");
4143 fflush (stderr);
4144#endif
4145
252b5132
RH
4146 for (asect = abfd->sections; asect; asect = asect->next)
4147 {
4148 if (max_index < asect->index)
4149 max_index = asect->index;
4150 }
4151
4152 max_index++;
446f7ed5
AM
4153 amt = max_index * sizeof (asymbol *);
4154 sect_syms = (asymbol **) bfd_zalloc (abfd, amt);
252b5132 4155 if (sect_syms == NULL)
b34976b6 4156 return FALSE;
252b5132 4157 elf_section_syms (abfd) = sect_syms;
4e89ac30 4158 elf_num_section_syms (abfd) = max_index;
252b5132 4159
079e9a2f
AM
4160 /* Init sect_syms entries for any section symbols we have already
4161 decided to output. */
252b5132
RH
4162 for (idx = 0; idx < symcount; idx++)
4163 {
dc810e39 4164 asymbol *sym = syms[idx];
c044fabd 4165
252b5132 4166 if ((sym->flags & BSF_SECTION_SYM) != 0
0f0a5e58 4167 && sym->value == 0
2633a79c
AM
4168 && !ignore_section_sym (abfd, sym)
4169 && !bfd_is_abs_section (sym->section))
252b5132 4170 {
5372391b 4171 asection *sec = sym->section;
252b5132 4172
5372391b
AM
4173 if (sec->owner != abfd)
4174 sec = sec->output_section;
252b5132 4175
5372391b 4176 sect_syms[sec->index] = syms[idx];
252b5132
RH
4177 }
4178 }
4179
252b5132
RH
4180 /* Classify all of the symbols. */
4181 for (idx = 0; idx < symcount; idx++)
4182 {
2633a79c 4183 if (sym_is_global (abfd, syms[idx]))
252b5132 4184 num_globals++;
2633a79c
AM
4185 else if (!ignore_section_sym (abfd, syms[idx]))
4186 num_locals++;
252b5132 4187 }
079e9a2f 4188
5372391b 4189 /* We will be adding a section symbol for each normal BFD section. Most
079e9a2f
AM
4190 sections will already have a section symbol in outsymbols, but
4191 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4192 at least in that case. */
252b5132
RH
4193 for (asect = abfd->sections; asect; asect = asect->next)
4194 {
079e9a2f 4195 if (sect_syms[asect->index] == NULL)
252b5132 4196 {
079e9a2f 4197 if (!sym_is_global (abfd, asect->symbol))
252b5132
RH
4198 num_locals++;
4199 else
4200 num_globals++;
252b5132
RH
4201 }
4202 }
4203
4204 /* Now sort the symbols so the local symbols are first. */
446f7ed5
AM
4205 amt = (num_locals + num_globals) * sizeof (asymbol *);
4206 new_syms = (asymbol **) bfd_alloc (abfd, amt);
252b5132 4207 if (new_syms == NULL)
b34976b6 4208 return FALSE;
252b5132
RH
4209
4210 for (idx = 0; idx < symcount; idx++)
4211 {
4212 asymbol *sym = syms[idx];
dc810e39 4213 unsigned int i;
252b5132 4214
2633a79c
AM
4215 if (sym_is_global (abfd, sym))
4216 i = num_locals + num_globals2++;
4217 else if (!ignore_section_sym (abfd, sym))
252b5132
RH
4218 i = num_locals2++;
4219 else
2633a79c 4220 continue;
252b5132
RH
4221 new_syms[i] = sym;
4222 sym->udata.i = i + 1;
4223 }
4224 for (asect = abfd->sections; asect; asect = asect->next)
4225 {
079e9a2f 4226 if (sect_syms[asect->index] == NULL)
252b5132 4227 {
079e9a2f 4228 asymbol *sym = asect->symbol;
dc810e39 4229 unsigned int i;
252b5132 4230
079e9a2f 4231 sect_syms[asect->index] = sym;
252b5132
RH
4232 if (!sym_is_global (abfd, sym))
4233 i = num_locals2++;
4234 else
4235 i = num_locals + num_globals2++;
4236 new_syms[i] = sym;
4237 sym->udata.i = i + 1;
4238 }
4239 }
4240
4241 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4242
12bd6957 4243 *pnum_locals = num_locals;
b34976b6 4244 return TRUE;
252b5132
RH
4245}
4246
4247/* Align to the maximum file alignment that could be required for any
4248 ELF data structure. */
4249
268b6b39 4250static inline file_ptr
217aa764 4251align_file_position (file_ptr off, int align)
252b5132
RH
4252{
4253 return (off + align - 1) & ~(align - 1);
4254}
4255
4256/* Assign a file position to a section, optionally aligning to the
4257 required section alignment. */
4258
217aa764
AM
4259file_ptr
4260_bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4261 file_ptr offset,
4262 bfd_boolean align)
252b5132 4263{
72de5009
AM
4264 if (align && i_shdrp->sh_addralign > 1)
4265 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
252b5132
RH
4266 i_shdrp->sh_offset = offset;
4267 if (i_shdrp->bfd_section != NULL)
4268 i_shdrp->bfd_section->filepos = offset;
4269 if (i_shdrp->sh_type != SHT_NOBITS)
4270 offset += i_shdrp->sh_size;
4271 return offset;
4272}
4273
4274/* Compute the file positions we are going to put the sections at, and
4275 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4276 is not NULL, this is being called by the ELF backend linker. */
4277
b34976b6 4278bfd_boolean
217aa764
AM
4279_bfd_elf_compute_section_file_positions (bfd *abfd,
4280 struct bfd_link_info *link_info)
252b5132 4281{
9c5bfbb7 4282 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 4283 struct fake_section_arg fsargs;
b34976b6 4284 bfd_boolean failed;
ef10c3ac 4285 struct elf_strtab_hash *strtab = NULL;
252b5132 4286 Elf_Internal_Shdr *shstrtab_hdr;
3516e984 4287 bfd_boolean need_symtab;
252b5132
RH
4288
4289 if (abfd->output_has_begun)
b34976b6 4290 return TRUE;
252b5132
RH
4291
4292 /* Do any elf backend specific processing first. */
4293 if (bed->elf_backend_begin_write_processing)
4294 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4295
ed7e9d0b 4296 if (!(*bed->elf_backend_init_file_header) (abfd, link_info))
b34976b6 4297 return FALSE;
252b5132 4298
d4730f92
BS
4299 fsargs.failed = FALSE;
4300 fsargs.link_info = link_info;
4301 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4302 if (fsargs.failed)
b34976b6 4303 return FALSE;
252b5132 4304
da9f89d4 4305 if (!assign_section_numbers (abfd, link_info))
b34976b6 4306 return FALSE;
252b5132
RH
4307
4308 /* The backend linker builds symbol table information itself. */
3516e984
L
4309 need_symtab = (link_info == NULL
4310 && (bfd_get_symcount (abfd) > 0
4311 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4312 == HAS_RELOC)));
4313 if (need_symtab)
252b5132
RH
4314 {
4315 /* Non-zero if doing a relocatable link. */
4316 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4317
4318 if (! swap_out_syms (abfd, &strtab, relocatable_p))
b34976b6 4319 return FALSE;
252b5132
RH
4320 }
4321
d4730f92 4322 failed = FALSE;
1126897b 4323 if (link_info == NULL)
dbb410c3 4324 {
1126897b 4325 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
dbb410c3 4326 if (failed)
b34976b6 4327 return FALSE;
dbb410c3
AM
4328 }
4329
252b5132 4330 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
ed7e9d0b 4331 /* sh_name was set in init_file_header. */
252b5132 4332 shstrtab_hdr->sh_type = SHT_STRTAB;
84865015 4333 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
252b5132 4334 shstrtab_hdr->sh_addr = 0;
946748d5 4335 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4336 shstrtab_hdr->sh_entsize = 0;
4337 shstrtab_hdr->sh_link = 0;
4338 shstrtab_hdr->sh_info = 0;
3e19fb8f 4339 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4340 shstrtab_hdr->sh_addralign = 1;
4341
c84fca4d 4342 if (!assign_file_positions_except_relocs (abfd, link_info))
b34976b6 4343 return FALSE;
252b5132 4344
3516e984 4345 if (need_symtab)
252b5132
RH
4346 {
4347 file_ptr off;
4348 Elf_Internal_Shdr *hdr;
4349
12bd6957 4350 off = elf_next_file_pos (abfd);
252b5132 4351
6a40cf0c 4352 hdr = & elf_symtab_hdr (abfd);
b34976b6 4353 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4354
6a40cf0c
NC
4355 if (elf_symtab_shndx_list (abfd) != NULL)
4356 {
4357 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4358 if (hdr->sh_size != 0)
4359 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4360 /* FIXME: What about other symtab_shndx sections in the list ? */
4361 }
9ad5cbcf 4362
252b5132 4363 hdr = &elf_tdata (abfd)->strtab_hdr;
b34976b6 4364 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4365
12bd6957 4366 elf_next_file_pos (abfd) = off;
252b5132
RH
4367
4368 /* Now that we know where the .strtab section goes, write it
08a40648 4369 out. */
252b5132 4370 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 4371 || ! _bfd_elf_strtab_emit (abfd, strtab))
b34976b6 4372 return FALSE;
ef10c3ac 4373 _bfd_elf_strtab_free (strtab);
252b5132
RH
4374 }
4375
b34976b6 4376 abfd->output_has_begun = TRUE;
252b5132 4377
b34976b6 4378 return TRUE;
252b5132
RH
4379}
4380
8ded5a0f
AM
4381/* Make an initial estimate of the size of the program header. If we
4382 get the number wrong here, we'll redo section placement. */
4383
4384static bfd_size_type
4385get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4386{
4387 size_t segs;
4388 asection *s;
2b05f1b7 4389 const struct elf_backend_data *bed;
8ded5a0f
AM
4390
4391 /* Assume we will need exactly two PT_LOAD segments: one for text
4392 and one for data. */
4393 segs = 2;
4394
4395 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4396 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4397 {
4398 /* If we have a loadable interpreter section, we need a
4399 PT_INTERP segment. In this case, assume we also need a
4400 PT_PHDR segment, although that may not be true for all
4401 targets. */
e9a38e0f 4402 segs += 2;
8ded5a0f
AM
4403 }
4404
4405 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4406 {
4407 /* We need a PT_DYNAMIC segment. */
4408 ++segs;
f210dcff 4409 }
08a40648 4410
ceae84aa 4411 if (info != NULL && info->relro)
f210dcff
L
4412 {
4413 /* We need a PT_GNU_RELRO segment. */
4414 ++segs;
8ded5a0f
AM
4415 }
4416
12bd6957 4417 if (elf_eh_frame_hdr (abfd))
8ded5a0f
AM
4418 {
4419 /* We need a PT_GNU_EH_FRAME segment. */
4420 ++segs;
4421 }
4422
12bd6957 4423 if (elf_stack_flags (abfd))
8ded5a0f 4424 {
2b05f1b7
L
4425 /* We need a PT_GNU_STACK segment. */
4426 ++segs;
4427 }
94b11780 4428
0a59decb
L
4429 s = bfd_get_section_by_name (abfd,
4430 NOTE_GNU_PROPERTY_SECTION_NAME);
4431 if (s != NULL && s->size != 0)
4432 {
4433 /* We need a PT_GNU_PROPERTY segment. */
4434 ++segs;
4435 }
4436
2b05f1b7
L
4437 for (s = abfd->sections; s != NULL; s = s->next)
4438 {
8ded5a0f 4439 if ((s->flags & SEC_LOAD) != 0
23e463ed 4440 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 4441 {
23e463ed 4442 unsigned int alignment_power;
8ded5a0f
AM
4443 /* We need a PT_NOTE segment. */
4444 ++segs;
23e463ed
L
4445 /* Try to create just one PT_NOTE segment for all adjacent
4446 loadable SHT_NOTE sections. gABI requires that within a
4447 PT_NOTE segment (and also inside of each SHT_NOTE section)
4448 each note should have the same alignment. So we check
4449 whether the sections are correctly aligned. */
4450 alignment_power = s->alignment_power;
4451 while (s->next != NULL
4452 && s->next->alignment_power == alignment_power
4453 && (s->next->flags & SEC_LOAD) != 0
4454 && elf_section_type (s->next) == SHT_NOTE)
4455 s = s->next;
8ded5a0f
AM
4456 }
4457 }
4458
4459 for (s = abfd->sections; s != NULL; s = s->next)
4460 {
4461 if (s->flags & SEC_THREAD_LOCAL)
4462 {
4463 /* We need a PT_TLS segment. */
4464 ++segs;
4465 break;
4466 }
4467 }
4468
2b05f1b7 4469 bed = get_elf_backend_data (abfd);
a91e1603 4470
df3a023b
AM
4471 if ((abfd->flags & D_PAGED) != 0
4472 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4473 {
4474 /* Add a PT_GNU_MBIND segment for each mbind section. */
4475 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4476 for (s = abfd->sections; s != NULL; s = s->next)
4477 if (elf_section_flags (s) & SHF_GNU_MBIND)
4478 {
4479 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4480 {
4481 _bfd_error_handler
4482 /* xgettext:c-format */
4483 (_("%pB: GNU_MBIND section `%pA' has invalid "
4484 "sh_info field: %d"),
4485 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4486 continue;
4487 }
4488 /* Align mbind section to page size. */
4489 if (s->alignment_power < page_align_power)
4490 s->alignment_power = page_align_power;
4491 segs ++;
4492 }
4493 }
4494
4495 /* Let the backend count up any program headers it might need. */
4496 if (bed->elf_backend_additional_program_headers)
8ded5a0f
AM
4497 {
4498 int a;
4499
4500 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4501 if (a == -1)
4502 abort ();
4503 segs += a;
4504 }
4505
4506 return segs * bed->s->sizeof_phdr;
4507}
4508
2ea37f1c
NC
4509/* Find the segment that contains the output_section of section. */
4510
4511Elf_Internal_Phdr *
4512_bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4513{
4514 struct elf_segment_map *m;
4515 Elf_Internal_Phdr *p;
4516
12bd6957 4517 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
2ea37f1c
NC
4518 m != NULL;
4519 m = m->next, p++)
4520 {
4521 int i;
4522
4523 for (i = m->count - 1; i >= 0; i--)
4524 if (m->sections[i] == section)
4525 return p;
4526 }
4527
4528 return NULL;
4529}
4530
252b5132
RH
4531/* Create a mapping from a set of sections to a program segment. */
4532
217aa764
AM
4533static struct elf_segment_map *
4534make_mapping (bfd *abfd,
4535 asection **sections,
4536 unsigned int from,
4537 unsigned int to,
4538 bfd_boolean phdr)
252b5132
RH
4539{
4540 struct elf_segment_map *m;
4541 unsigned int i;
4542 asection **hdrpp;
986f0783 4543 size_t amt;
252b5132 4544
00bee008
AM
4545 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4546 amt += (to - from) * sizeof (asection *);
a50b1753 4547 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
4548 if (m == NULL)
4549 return NULL;
4550 m->next = NULL;
4551 m->p_type = PT_LOAD;
4552 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4553 m->sections[i - from] = *hdrpp;
4554 m->count = to - from;
4555
4556 if (from == 0 && phdr)
4557 {
4558 /* Include the headers in the first PT_LOAD segment. */
4559 m->includes_filehdr = 1;
4560 m->includes_phdrs = 1;
4561 }
4562
4563 return m;
4564}
4565
229fcec5
MM
4566/* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4567 on failure. */
4568
4569struct elf_segment_map *
4570_bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4571{
4572 struct elf_segment_map *m;
4573
a50b1753 4574 m = (struct elf_segment_map *) bfd_zalloc (abfd,
07d6d2b8 4575 sizeof (struct elf_segment_map));
229fcec5
MM
4576 if (m == NULL)
4577 return NULL;
4578 m->next = NULL;
4579 m->p_type = PT_DYNAMIC;
4580 m->count = 1;
4581 m->sections[0] = dynsec;
08a40648 4582
229fcec5
MM
4583 return m;
4584}
4585
8ded5a0f 4586/* Possibly add or remove segments from the segment map. */
252b5132 4587
b34976b6 4588static bfd_boolean
3dea8fca
AM
4589elf_modify_segment_map (bfd *abfd,
4590 struct bfd_link_info *info,
4591 bfd_boolean remove_empty_load)
252b5132 4592{
252e386e 4593 struct elf_segment_map **m;
8ded5a0f 4594 const struct elf_backend_data *bed;
252b5132 4595
8ded5a0f
AM
4596 /* The placement algorithm assumes that non allocated sections are
4597 not in PT_LOAD segments. We ensure this here by removing such
4598 sections from the segment map. We also remove excluded
252e386e
AM
4599 sections. Finally, any PT_LOAD segment without sections is
4600 removed. */
12bd6957 4601 m = &elf_seg_map (abfd);
252e386e 4602 while (*m)
8ded5a0f
AM
4603 {
4604 unsigned int i, new_count;
252b5132 4605
252e386e 4606 for (new_count = 0, i = 0; i < (*m)->count; i++)
8ded5a0f 4607 {
252e386e
AM
4608 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4609 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4610 || (*m)->p_type != PT_LOAD))
8ded5a0f 4611 {
252e386e
AM
4612 (*m)->sections[new_count] = (*m)->sections[i];
4613 new_count++;
8ded5a0f
AM
4614 }
4615 }
252e386e 4616 (*m)->count = new_count;
252b5132 4617
1a9ccd70
NC
4618 if (remove_empty_load
4619 && (*m)->p_type == PT_LOAD
4620 && (*m)->count == 0
4621 && !(*m)->includes_phdrs)
252e386e
AM
4622 *m = (*m)->next;
4623 else
4624 m = &(*m)->next;
8ded5a0f 4625 }
252b5132 4626
8ded5a0f
AM
4627 bed = get_elf_backend_data (abfd);
4628 if (bed->elf_backend_modify_segment_map != NULL)
252b5132 4629 {
252e386e 4630 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
8ded5a0f 4631 return FALSE;
252b5132 4632 }
252b5132 4633
8ded5a0f
AM
4634 return TRUE;
4635}
252b5132 4636
dbc88fc1
AM
4637#define IS_TBSS(s) \
4638 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4639
8ded5a0f 4640/* Set up a mapping from BFD sections to program segments. */
252b5132 4641
8ded5a0f
AM
4642bfd_boolean
4643_bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4644{
4645 unsigned int count;
4646 struct elf_segment_map *m;
4647 asection **sections = NULL;
4648 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3dea8fca 4649 bfd_boolean no_user_phdrs;
252b5132 4650
12bd6957 4651 no_user_phdrs = elf_seg_map (abfd) == NULL;
d324f6d6
RM
4652
4653 if (info != NULL)
4654 info->user_phdrs = !no_user_phdrs;
4655
3dea8fca 4656 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
252b5132 4657 {
8ded5a0f
AM
4658 asection *s;
4659 unsigned int i;
4660 struct elf_segment_map *mfirst;
4661 struct elf_segment_map **pm;
4662 asection *last_hdr;
4663 bfd_vma last_size;
00bee008 4664 unsigned int hdr_index;
8ded5a0f
AM
4665 bfd_vma maxpagesize;
4666 asection **hdrpp;
64029e93 4667 bfd_boolean phdr_in_segment;
8ded5a0f 4668 bfd_boolean writable;
2888249f 4669 bfd_boolean executable;
446f7ed5 4670 unsigned int tls_count = 0;
8ded5a0f 4671 asection *first_tls = NULL;
a91e1603 4672 asection *first_mbind = NULL;
8ded5a0f 4673 asection *dynsec, *eh_frame_hdr;
446f7ed5 4674 size_t amt;
66631823
CE
4675 bfd_vma addr_mask, wrap_to = 0; /* Bytes. */
4676 bfd_size_type phdr_size; /* Octets/bytes. */
502794d4 4677 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132 4678
8ded5a0f 4679 /* Select the allocated sections, and sort them. */
252b5132 4680
446f7ed5
AM
4681 amt = bfd_count_sections (abfd) * sizeof (asection *);
4682 sections = (asection **) bfd_malloc (amt);
8ded5a0f 4683 if (sections == NULL)
252b5132 4684 goto error_return;
252b5132 4685
8d06853e
AM
4686 /* Calculate top address, avoiding undefined behaviour of shift
4687 left operator when shift count is equal to size of type
4688 being shifted. */
4689 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4690 addr_mask = (addr_mask << 1) + 1;
4691
8ded5a0f
AM
4692 i = 0;
4693 for (s = abfd->sections; s != NULL; s = s->next)
4694 {
4695 if ((s->flags & SEC_ALLOC) != 0)
4696 {
48db3297
AM
4697 /* target_index is unused until bfd_elf_final_link
4698 starts output of section symbols. Use it to make
4699 qsort stable. */
4700 s->target_index = i;
8ded5a0f
AM
4701 sections[i] = s;
4702 ++i;
8d06853e 4703 /* A wrapping section potentially clashes with header. */
66631823
CE
4704 if (((s->lma + s->size / opb) & addr_mask) < (s->lma & addr_mask))
4705 wrap_to = (s->lma + s->size / opb) & addr_mask;
8ded5a0f
AM
4706 }
4707 }
4708 BFD_ASSERT (i <= bfd_count_sections (abfd));
4709 count = i;
252b5132 4710
8ded5a0f 4711 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
252b5132 4712
64029e93
AM
4713 phdr_size = elf_program_header_size (abfd);
4714 if (phdr_size == (bfd_size_type) -1)
4715 phdr_size = get_program_header_size (abfd, info);
4716 phdr_size += bed->s->sizeof_ehdr;
502794d4
CE
4717 /* phdr_size is compared to LMA values which are in bytes. */
4718 phdr_size /= opb;
64029e93
AM
4719 maxpagesize = bed->maxpagesize;
4720 if (maxpagesize == 0)
4721 maxpagesize = 1;
4722 phdr_in_segment = info != NULL && info->load_phdrs;
4723 if (count != 0
4724 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4725 >= (phdr_size & (maxpagesize - 1))))
4726 /* For compatibility with old scripts that may not be using
4727 SIZEOF_HEADERS, add headers when it looks like space has
4728 been left for them. */
4729 phdr_in_segment = TRUE;
252b5132 4730
64029e93 4731 /* Build the mapping. */
8ded5a0f
AM
4732 mfirst = NULL;
4733 pm = &mfirst;
252b5132 4734
8ded5a0f
AM
4735 /* If we have a .interp section, then create a PT_PHDR segment for
4736 the program headers and a PT_INTERP segment for the .interp
4737 section. */
4738 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4739 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4740 {
4741 amt = sizeof (struct elf_segment_map);
a50b1753 4742 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4743 if (m == NULL)
4744 goto error_return;
4745 m->next = NULL;
4746 m->p_type = PT_PHDR;
f882209d 4747 m->p_flags = PF_R;
8ded5a0f
AM
4748 m->p_flags_valid = 1;
4749 m->includes_phdrs = 1;
64029e93 4750 phdr_in_segment = TRUE;
8ded5a0f
AM
4751 *pm = m;
4752 pm = &m->next;
252b5132 4753
8ded5a0f 4754 amt = sizeof (struct elf_segment_map);
a50b1753 4755 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4756 if (m == NULL)
4757 goto error_return;
4758 m->next = NULL;
4759 m->p_type = PT_INTERP;
4760 m->count = 1;
4761 m->sections[0] = s;
4762
4763 *pm = m;
4764 pm = &m->next;
252b5132 4765 }
8ded5a0f
AM
4766
4767 /* Look through the sections. We put sections in the same program
4768 segment when the start of the second section can be placed within
4769 a few bytes of the end of the first section. */
4770 last_hdr = NULL;
4771 last_size = 0;
00bee008 4772 hdr_index = 0;
8ded5a0f 4773 writable = FALSE;
2888249f 4774 executable = FALSE;
8ded5a0f
AM
4775 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4776 if (dynsec != NULL
4777 && (dynsec->flags & SEC_LOAD) == 0)
4778 dynsec = NULL;
4779
64029e93
AM
4780 if ((abfd->flags & D_PAGED) == 0)
4781 phdr_in_segment = FALSE;
4782
8ded5a0f
AM
4783 /* Deal with -Ttext or something similar such that the first section
4784 is not adjacent to the program headers. This is an
4785 approximation, since at this point we don't know exactly how many
4786 program headers we will need. */
64029e93 4787 if (phdr_in_segment && count > 0)
252b5132 4788 {
66631823 4789 bfd_vma phdr_lma; /* Bytes. */
64029e93
AM
4790 bfd_boolean separate_phdr = FALSE;
4791
4792 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4793 if (info != NULL
4794 && info->separate_code
4795 && (sections[0]->flags & SEC_CODE) != 0)
1a9ccd70 4796 {
64029e93
AM
4797 /* If data sections should be separate from code and
4798 thus not executable, and the first section is
4799 executable then put the file and program headers in
4800 their own PT_LOAD. */
4801 separate_phdr = TRUE;
4802 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4803 == (sections[0]->lma & addr_mask & -maxpagesize)))
4804 {
4805 /* The file and program headers are currently on the
4806 same page as the first section. Put them on the
4807 previous page if we can. */
4808 if (phdr_lma >= maxpagesize)
4809 phdr_lma -= maxpagesize;
4810 else
4811 separate_phdr = FALSE;
4812 }
4813 }
4814 if ((sections[0]->lma & addr_mask) < phdr_lma
4815 || (sections[0]->lma & addr_mask) < phdr_size)
4816 /* If file and program headers would be placed at the end
4817 of memory then it's probably better to omit them. */
4818 phdr_in_segment = FALSE;
4819 else if (phdr_lma < wrap_to)
4820 /* If a section wraps around to where we'll be placing
4821 file and program headers, then the headers will be
4822 overwritten. */
4823 phdr_in_segment = FALSE;
4824 else if (separate_phdr)
4825 {
4826 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4827 if (m == NULL)
4828 goto error_return;
66631823 4829 m->p_paddr = phdr_lma * opb;
64029e93
AM
4830 m->p_vaddr_offset
4831 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4832 m->p_paddr_valid = 1;
4833 *pm = m;
4834 pm = &m->next;
4835 phdr_in_segment = FALSE;
1a9ccd70 4836 }
252b5132
RH
4837 }
4838
8ded5a0f 4839 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
252b5132 4840 {
8ded5a0f
AM
4841 asection *hdr;
4842 bfd_boolean new_segment;
4843
4844 hdr = *hdrpp;
4845
4846 /* See if this section and the last one will fit in the same
4847 segment. */
4848
4849 if (last_hdr == NULL)
4850 {
4851 /* If we don't have a segment yet, then we don't need a new
4852 one (we build the last one after this loop). */
4853 new_segment = FALSE;
4854 }
4855 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4856 {
4857 /* If this section has a different relation between the
4858 virtual address and the load address, then we need a new
4859 segment. */
4860 new_segment = TRUE;
4861 }
b5599592
AM
4862 else if (hdr->lma < last_hdr->lma + last_size
4863 || last_hdr->lma + last_size < last_hdr->lma)
4864 {
4865 /* If this section has a load address that makes it overlap
4866 the previous section, then we need a new segment. */
4867 new_segment = TRUE;
4868 }
76cb3a89
AM
4869 else if ((abfd->flags & D_PAGED) != 0
4870 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4871 == (hdr->lma & -maxpagesize)))
4872 {
4873 /* If we are demand paged then we can't map two disk
4874 pages onto the same memory page. */
4875 new_segment = FALSE;
4876 }
39948a60
NC
4877 /* In the next test we have to be careful when last_hdr->lma is close
4878 to the end of the address space. If the aligned address wraps
4879 around to the start of the address space, then there are no more
4880 pages left in memory and it is OK to assume that the current
4881 section can be included in the current segment. */
76cb3a89
AM
4882 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4883 + maxpagesize > last_hdr->lma)
4884 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4885 + maxpagesize <= hdr->lma))
8ded5a0f
AM
4886 {
4887 /* If putting this section in this segment would force us to
4888 skip a page in the segment, then we need a new segment. */
4889 new_segment = TRUE;
4890 }
4891 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
76cb3a89 4892 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
8ded5a0f 4893 {
e5654c0f
AM
4894 /* We don't want to put a loaded section after a
4895 nonloaded (ie. bss style) section in the same segment
4896 as that will force the non-loaded section to be loaded.
76cb3a89 4897 Consider .tbss sections as loaded for this purpose. */
8ded5a0f
AM
4898 new_segment = TRUE;
4899 }
4900 else if ((abfd->flags & D_PAGED) == 0)
4901 {
4902 /* If the file is not demand paged, which means that we
4903 don't require the sections to be correctly aligned in the
4904 file, then there is no other reason for a new segment. */
4905 new_segment = FALSE;
4906 }
2888249f
L
4907 else if (info != NULL
4908 && info->separate_code
4909 && executable != ((hdr->flags & SEC_CODE) != 0))
4910 {
4911 new_segment = TRUE;
4912 }
8ded5a0f 4913 else if (! writable
76cb3a89 4914 && (hdr->flags & SEC_READONLY) == 0)
8ded5a0f
AM
4915 {
4916 /* We don't want to put a writable section in a read only
76cb3a89 4917 segment. */
8ded5a0f
AM
4918 new_segment = TRUE;
4919 }
4920 else
4921 {
4922 /* Otherwise, we can use the same segment. */
4923 new_segment = FALSE;
4924 }
4925
2889e75b 4926 /* Allow interested parties a chance to override our decision. */
ceae84aa
AM
4927 if (last_hdr != NULL
4928 && info != NULL
4929 && info->callbacks->override_segment_assignment != NULL)
4930 new_segment
4931 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4932 last_hdr,
4933 new_segment);
2889e75b 4934
8ded5a0f
AM
4935 if (! new_segment)
4936 {
4937 if ((hdr->flags & SEC_READONLY) == 0)
4938 writable = TRUE;
2888249f
L
4939 if ((hdr->flags & SEC_CODE) != 0)
4940 executable = TRUE;
8ded5a0f
AM
4941 last_hdr = hdr;
4942 /* .tbss sections effectively have zero size. */
502794d4 4943 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
8ded5a0f
AM
4944 continue;
4945 }
4946
4947 /* We need a new program segment. We must create a new program
00bee008 4948 header holding all the sections from hdr_index until hdr. */
8ded5a0f 4949
00bee008 4950 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4951 if (m == NULL)
4952 goto error_return;
4953
4954 *pm = m;
4955 pm = &m->next;
4956
252b5132 4957 if ((hdr->flags & SEC_READONLY) == 0)
b34976b6 4958 writable = TRUE;
8ded5a0f
AM
4959 else
4960 writable = FALSE;
4961
2888249f
L
4962 if ((hdr->flags & SEC_CODE) == 0)
4963 executable = FALSE;
4964 else
4965 executable = TRUE;
4966
baaff79e
JJ
4967 last_hdr = hdr;
4968 /* .tbss sections effectively have zero size. */
502794d4 4969 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
00bee008 4970 hdr_index = i;
8ded5a0f 4971 phdr_in_segment = FALSE;
252b5132
RH
4972 }
4973
86b2281f
AM
4974 /* Create a final PT_LOAD program segment, but not if it's just
4975 for .tbss. */
4976 if (last_hdr != NULL
00bee008 4977 && (i - hdr_index != 1
dbc88fc1 4978 || !IS_TBSS (last_hdr)))
8ded5a0f 4979 {
00bee008 4980 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4981 if (m == NULL)
4982 goto error_return;
252b5132 4983
8ded5a0f
AM
4984 *pm = m;
4985 pm = &m->next;
4986 }
252b5132 4987
8ded5a0f
AM
4988 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4989 if (dynsec != NULL)
4990 {
4991 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4992 if (m == NULL)
4993 goto error_return;
4994 *pm = m;
4995 pm = &m->next;
4996 }
252b5132 4997
23e463ed 4998 /* For each batch of consecutive loadable SHT_NOTE sections,
1c5265b5
JJ
4999 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
5000 because if we link together nonloadable .note sections and
5001 loadable .note sections, we will generate two .note sections
23e463ed 5002 in the output file. */
8ded5a0f
AM
5003 for (s = abfd->sections; s != NULL; s = s->next)
5004 {
5005 if ((s->flags & SEC_LOAD) != 0
23e463ed 5006 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 5007 {
1c5265b5 5008 asection *s2;
23e463ed 5009 unsigned int alignment_power = s->alignment_power;
91d6fa6a
NC
5010
5011 count = 1;
23e463ed
L
5012 for (s2 = s; s2->next != NULL; s2 = s2->next)
5013 {
5014 if (s2->next->alignment_power == alignment_power
5015 && (s2->next->flags & SEC_LOAD) != 0
5016 && elf_section_type (s2->next) == SHT_NOTE
66631823 5017 && align_power (s2->lma + s2->size / opb,
23e463ed
L
5018 alignment_power)
5019 == s2->next->lma)
5020 count++;
5021 else
5022 break;
5023 }
00bee008
AM
5024 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5025 amt += count * sizeof (asection *);
a50b1753 5026 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5027 if (m == NULL)
5028 goto error_return;
5029 m->next = NULL;
5030 m->p_type = PT_NOTE;
1c5265b5
JJ
5031 m->count = count;
5032 while (count > 1)
5033 {
5034 m->sections[m->count - count--] = s;
5035 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5036 s = s->next;
5037 }
5038 m->sections[m->count - 1] = s;
5039 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
8ded5a0f
AM
5040 *pm = m;
5041 pm = &m->next;
5042 }
5043 if (s->flags & SEC_THREAD_LOCAL)
5044 {
5045 if (! tls_count)
5046 first_tls = s;
5047 tls_count++;
5048 }
a91e1603
L
5049 if (first_mbind == NULL
5050 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5051 first_mbind = s;
8ded5a0f 5052 }
252b5132 5053
8ded5a0f
AM
5054 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5055 if (tls_count > 0)
5056 {
00bee008
AM
5057 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5058 amt += tls_count * sizeof (asection *);
a50b1753 5059 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5060 if (m == NULL)
5061 goto error_return;
5062 m->next = NULL;
5063 m->p_type = PT_TLS;
5064 m->count = tls_count;
5065 /* Mandated PF_R. */
5066 m->p_flags = PF_R;
5067 m->p_flags_valid = 1;
d923cae0 5068 s = first_tls;
446f7ed5 5069 for (i = 0; i < tls_count; ++i)
8ded5a0f 5070 {
d923cae0
L
5071 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5072 {
5073 _bfd_error_handler
871b3ab2 5074 (_("%pB: TLS sections are not adjacent:"), abfd);
d923cae0
L
5075 s = first_tls;
5076 i = 0;
446f7ed5 5077 while (i < tls_count)
d923cae0
L
5078 {
5079 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5080 {
871b3ab2 5081 _bfd_error_handler (_(" TLS: %pA"), s);
d923cae0
L
5082 i++;
5083 }
5084 else
871b3ab2 5085 _bfd_error_handler (_(" non-TLS: %pA"), s);
d923cae0
L
5086 s = s->next;
5087 }
5088 bfd_set_error (bfd_error_bad_value);
5089 goto error_return;
5090 }
5091 m->sections[i] = s;
5092 s = s->next;
8ded5a0f 5093 }
252b5132 5094
8ded5a0f
AM
5095 *pm = m;
5096 pm = &m->next;
5097 }
252b5132 5098
df3a023b
AM
5099 if (first_mbind
5100 && (abfd->flags & D_PAGED) != 0
5101 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
a91e1603
L
5102 for (s = first_mbind; s != NULL; s = s->next)
5103 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
df3a023b 5104 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
a91e1603
L
5105 {
5106 /* Mandated PF_R. */
5107 unsigned long p_flags = PF_R;
5108 if ((s->flags & SEC_READONLY) == 0)
5109 p_flags |= PF_W;
5110 if ((s->flags & SEC_CODE) != 0)
5111 p_flags |= PF_X;
5112
5113 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5114 m = bfd_zalloc (abfd, amt);
5115 if (m == NULL)
5116 goto error_return;
5117 m->next = NULL;
5118 m->p_type = (PT_GNU_MBIND_LO
5119 + elf_section_data (s)->this_hdr.sh_info);
5120 m->count = 1;
5121 m->p_flags_valid = 1;
5122 m->sections[0] = s;
5123 m->p_flags = p_flags;
5124
5125 *pm = m;
5126 pm = &m->next;
5127 }
5128
0a59decb
L
5129 s = bfd_get_section_by_name (abfd,
5130 NOTE_GNU_PROPERTY_SECTION_NAME);
5131 if (s != NULL && s->size != 0)
5132 {
5133 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5134 m = bfd_zalloc (abfd, amt);
5135 if (m == NULL)
5136 goto error_return;
5137 m->next = NULL;
5138 m->p_type = PT_GNU_PROPERTY;
5139 m->count = 1;
5140 m->p_flags_valid = 1;
5141 m->sections[0] = s;
5142 m->p_flags = PF_R;
5143 *pm = m;
5144 pm = &m->next;
5145 }
5146
8ded5a0f
AM
5147 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5148 segment. */
12bd6957 5149 eh_frame_hdr = elf_eh_frame_hdr (abfd);
8ded5a0f
AM
5150 if (eh_frame_hdr != NULL
5151 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
252b5132 5152 {
dc810e39 5153 amt = sizeof (struct elf_segment_map);
a50b1753 5154 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
5155 if (m == NULL)
5156 goto error_return;
5157 m->next = NULL;
8ded5a0f 5158 m->p_type = PT_GNU_EH_FRAME;
252b5132 5159 m->count = 1;
8ded5a0f 5160 m->sections[0] = eh_frame_hdr->output_section;
252b5132
RH
5161
5162 *pm = m;
5163 pm = &m->next;
5164 }
13ae64f3 5165
12bd6957 5166 if (elf_stack_flags (abfd))
13ae64f3 5167 {
8ded5a0f 5168 amt = sizeof (struct elf_segment_map);
a50b1753 5169 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5170 if (m == NULL)
5171 goto error_return;
5172 m->next = NULL;
2b05f1b7 5173 m->p_type = PT_GNU_STACK;
12bd6957 5174 m->p_flags = elf_stack_flags (abfd);
04c3a755 5175 m->p_align = bed->stack_align;
8ded5a0f 5176 m->p_flags_valid = 1;
04c3a755
NS
5177 m->p_align_valid = m->p_align != 0;
5178 if (info->stacksize > 0)
5179 {
5180 m->p_size = info->stacksize;
5181 m->p_size_valid = 1;
5182 }
252b5132 5183
8ded5a0f
AM
5184 *pm = m;
5185 pm = &m->next;
5186 }
65765700 5187
ceae84aa 5188 if (info != NULL && info->relro)
8ded5a0f 5189 {
f210dcff
L
5190 for (m = mfirst; m != NULL; m = m->next)
5191 {
3832a4d8
AM
5192 if (m->p_type == PT_LOAD
5193 && m->count != 0
5194 && m->sections[0]->vma >= info->relro_start
5195 && m->sections[0]->vma < info->relro_end)
f210dcff 5196 {
3832a4d8
AM
5197 i = m->count;
5198 while (--i != (unsigned) -1)
5199 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5200 == (SEC_LOAD | SEC_HAS_CONTENTS))
5201 break;
5202
43a8475c 5203 if (i != (unsigned) -1)
f210dcff
L
5204 break;
5205 }
be01b344 5206 }
f210dcff
L
5207
5208 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5209 if (m != NULL)
5210 {
5211 amt = sizeof (struct elf_segment_map);
a50b1753 5212 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
f210dcff
L
5213 if (m == NULL)
5214 goto error_return;
5215 m->next = NULL;
5216 m->p_type = PT_GNU_RELRO;
f210dcff
L
5217 *pm = m;
5218 pm = &m->next;
5219 }
8ded5a0f 5220 }
9ee5e499 5221
8ded5a0f 5222 free (sections);
12bd6957 5223 elf_seg_map (abfd) = mfirst;
9ee5e499
JJ
5224 }
5225
3dea8fca 5226 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
8ded5a0f 5227 return FALSE;
8c37241b 5228
12bd6957 5229 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
8ded5a0f 5230 ++count;
12bd6957 5231 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
252b5132 5232
b34976b6 5233 return TRUE;
252b5132
RH
5234
5235 error_return:
5236 if (sections != NULL)
5237 free (sections);
b34976b6 5238 return FALSE;
252b5132
RH
5239}
5240
5241/* Sort sections by address. */
5242
5243static int
217aa764 5244elf_sort_sections (const void *arg1, const void *arg2)
252b5132
RH
5245{
5246 const asection *sec1 = *(const asection **) arg1;
5247 const asection *sec2 = *(const asection **) arg2;
eecdbe52 5248 bfd_size_type size1, size2;
252b5132
RH
5249
5250 /* Sort by LMA first, since this is the address used to
5251 place the section into a segment. */
5252 if (sec1->lma < sec2->lma)
5253 return -1;
5254 else if (sec1->lma > sec2->lma)
5255 return 1;
5256
5257 /* Then sort by VMA. Normally the LMA and the VMA will be
5258 the same, and this will do nothing. */
5259 if (sec1->vma < sec2->vma)
5260 return -1;
5261 else if (sec1->vma > sec2->vma)
5262 return 1;
5263
5264 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5265
07c6e936 5266#define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
252b5132
RH
5267
5268 if (TOEND (sec1))
5269 {
48db3297 5270 if (!TOEND (sec2))
252b5132
RH
5271 return 1;
5272 }
00a7cdc5 5273 else if (TOEND (sec2))
252b5132
RH
5274 return -1;
5275
5276#undef TOEND
5277
00a7cdc5
NC
5278 /* Sort by size, to put zero sized sections
5279 before others at the same address. */
252b5132 5280
eea6121a
AM
5281 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5282 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
eecdbe52
JJ
5283
5284 if (size1 < size2)
252b5132 5285 return -1;
eecdbe52 5286 if (size1 > size2)
252b5132
RH
5287 return 1;
5288
5289 return sec1->target_index - sec2->target_index;
5290}
5291
30fe1832
AM
5292/* This qsort comparison functions sorts PT_LOAD segments first and
5293 by p_paddr, for assign_file_positions_for_load_sections. */
5294
5295static int
5296elf_sort_segments (const void *arg1, const void *arg2)
5297{
5298 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5299 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5300
5301 if (m1->p_type != m2->p_type)
5302 {
5303 if (m1->p_type == PT_NULL)
5304 return 1;
5305 if (m2->p_type == PT_NULL)
5306 return -1;
5307 return m1->p_type < m2->p_type ? -1 : 1;
5308 }
5309 if (m1->includes_filehdr != m2->includes_filehdr)
5310 return m1->includes_filehdr ? -1 : 1;
5311 if (m1->no_sort_lma != m2->no_sort_lma)
5312 return m1->no_sort_lma ? -1 : 1;
5313 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5314 {
4b3ecb3b 5315 bfd_vma lma1, lma2; /* Octets. */
30fe1832
AM
5316 lma1 = 0;
5317 if (m1->p_paddr_valid)
4b3ecb3b 5318 lma1 = m1->p_paddr;
30fe1832 5319 else if (m1->count != 0)
4b3ecb3b
AM
5320 {
5321 unsigned int opb = bfd_octets_per_byte (m1->sections[0]->owner,
5322 m1->sections[0]);
5323 lma1 = (m1->sections[0]->lma + m1->p_vaddr_offset) * opb;
5324 }
30fe1832
AM
5325 lma2 = 0;
5326 if (m2->p_paddr_valid)
4b3ecb3b 5327 lma2 = m2->p_paddr;
30fe1832 5328 else if (m2->count != 0)
4b3ecb3b
AM
5329 {
5330 unsigned int opb = bfd_octets_per_byte (m2->sections[0]->owner,
5331 m2->sections[0]);
5332 lma2 = (m2->sections[0]->lma + m2->p_vaddr_offset) * opb;
5333 }
30fe1832
AM
5334 if (lma1 != lma2)
5335 return lma1 < lma2 ? -1 : 1;
5336 }
5337 if (m1->idx != m2->idx)
5338 return m1->idx < m2->idx ? -1 : 1;
5339 return 0;
5340}
5341
340b6d91
AC
5342/* Ian Lance Taylor writes:
5343
5344 We shouldn't be using % with a negative signed number. That's just
5345 not good. We have to make sure either that the number is not
5346 negative, or that the number has an unsigned type. When the types
5347 are all the same size they wind up as unsigned. When file_ptr is a
5348 larger signed type, the arithmetic winds up as signed long long,
5349 which is wrong.
5350
5351 What we're trying to say here is something like ``increase OFF by
5352 the least amount that will cause it to be equal to the VMA modulo
5353 the page size.'' */
5354/* In other words, something like:
5355
5356 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5357 off_offset = off % bed->maxpagesize;
5358 if (vma_offset < off_offset)
5359 adjustment = vma_offset + bed->maxpagesize - off_offset;
5360 else
5361 adjustment = vma_offset - off_offset;
08a40648 5362
de194d85 5363 which can be collapsed into the expression below. */
340b6d91
AC
5364
5365static file_ptr
5366vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5367{
dc9155b2
NC
5368 /* PR binutils/16199: Handle an alignment of zero. */
5369 if (maxpagesize == 0)
5370 maxpagesize = 1;
340b6d91
AC
5371 return ((vma - off) % maxpagesize);
5372}
5373
6d33f217
L
5374static void
5375print_segment_map (const struct elf_segment_map *m)
5376{
5377 unsigned int j;
5378 const char *pt = get_segment_type (m->p_type);
5379 char buf[32];
5380
5381 if (pt == NULL)
5382 {
5383 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5384 sprintf (buf, "LOPROC+%7.7x",
5385 (unsigned int) (m->p_type - PT_LOPROC));
5386 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5387 sprintf (buf, "LOOS+%7.7x",
5388 (unsigned int) (m->p_type - PT_LOOS));
5389 else
5390 snprintf (buf, sizeof (buf), "%8.8x",
5391 (unsigned int) m->p_type);
5392 pt = buf;
5393 }
4a97a0e5 5394 fflush (stdout);
6d33f217
L
5395 fprintf (stderr, "%s:", pt);
5396 for (j = 0; j < m->count; j++)
5397 fprintf (stderr, " %s", m->sections [j]->name);
5398 putc ('\n',stderr);
4a97a0e5 5399 fflush (stderr);
6d33f217
L
5400}
5401
32812159
AM
5402static bfd_boolean
5403write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5404{
5405 void *buf;
5406 bfd_boolean ret;
5407
5408 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5409 return FALSE;
5410 buf = bfd_zmalloc (len);
5411 if (buf == NULL)
5412 return FALSE;
5413 ret = bfd_bwrite (buf, len, abfd) == len;
5414 free (buf);
5415 return ret;
5416}
5417
252b5132
RH
5418/* Assign file positions to the sections based on the mapping from
5419 sections to segments. This function also sets up some fields in
f3520d2f 5420 the file header. */
252b5132 5421
b34976b6 5422static bfd_boolean
f3520d2f
AM
5423assign_file_positions_for_load_sections (bfd *abfd,
5424 struct bfd_link_info *link_info)
252b5132
RH
5425{
5426 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 5427 struct elf_segment_map *m;
30fe1832 5428 struct elf_segment_map *phdr_load_seg;
252b5132 5429 Elf_Internal_Phdr *phdrs;
252b5132 5430 Elf_Internal_Phdr *p;
502794d4 5431 file_ptr off; /* Octets. */
3f570048 5432 bfd_size_type maxpagesize;
30fe1832 5433 unsigned int alloc, actual;
0920dee7 5434 unsigned int i, j;
30fe1832 5435 struct elf_segment_map **sorted_seg_map;
502794d4 5436 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132 5437
e36284ab 5438 if (link_info == NULL
ceae84aa 5439 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
8ded5a0f 5440 return FALSE;
252b5132 5441
8ded5a0f 5442 alloc = 0;
12bd6957 5443 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
30fe1832 5444 m->idx = alloc++;
252b5132 5445
82f2dbf7
NC
5446 if (alloc)
5447 {
5448 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5449 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5450 }
5451 else
5452 {
5453 /* PR binutils/12467. */
5454 elf_elfheader (abfd)->e_phoff = 0;
5455 elf_elfheader (abfd)->e_phentsize = 0;
5456 }
d324f6d6 5457
8ded5a0f 5458 elf_elfheader (abfd)->e_phnum = alloc;
252b5132 5459
12bd6957 5460 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
30fe1832
AM
5461 {
5462 actual = alloc;
5463 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5464 }
8ded5a0f 5465 else
30fe1832
AM
5466 {
5467 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5468 BFD_ASSERT (elf_program_header_size (abfd)
5469 == actual * bed->s->sizeof_phdr);
5470 BFD_ASSERT (actual >= alloc);
5471 }
252b5132
RH
5472
5473 if (alloc == 0)
f3520d2f 5474 {
12bd6957 5475 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
8ded5a0f 5476 return TRUE;
f3520d2f 5477 }
252b5132 5478
12bd6957 5479 /* We're writing the size in elf_program_header_size (abfd),
57268894
HPN
5480 see assign_file_positions_except_relocs, so make sure we have
5481 that amount allocated, with trailing space cleared.
12bd6957
AM
5482 The variable alloc contains the computed need, while
5483 elf_program_header_size (abfd) contains the size used for the
57268894
HPN
5484 layout.
5485 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5486 where the layout is forced to according to a larger size in the
5487 last iterations for the testcase ld-elf/header. */
30fe1832
AM
5488 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5489 + alloc * sizeof (*sorted_seg_map)));
5490 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
f3520d2f 5491 elf_tdata (abfd)->phdr = phdrs;
252b5132 5492 if (phdrs == NULL)
b34976b6 5493 return FALSE;
252b5132 5494
30fe1832 5495 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
252b5132 5496 {
30fe1832 5497 sorted_seg_map[j] = m;
252b5132 5498 /* If elf_segment_map is not from map_sections_to_segments, the
08a40648 5499 sections may not be correctly ordered. NOTE: sorting should
52e9b619
MS
5500 not be done to the PT_NOTE section of a corefile, which may
5501 contain several pseudo-sections artificially created by bfd.
5502 Sorting these pseudo-sections breaks things badly. */
47d9a591
AM
5503 if (m->count > 1
5504 && !(elf_elfheader (abfd)->e_type == ET_CORE
52e9b619 5505 && m->p_type == PT_NOTE))
48db3297
AM
5506 {
5507 for (i = 0; i < m->count; i++)
5508 m->sections[i]->target_index = i;
5509 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5510 elf_sort_sections);
5511 }
30fe1832
AM
5512 }
5513 if (alloc > 1)
5514 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5515 elf_sort_segments);
5516
5517 maxpagesize = 1;
5518 if ((abfd->flags & D_PAGED) != 0)
5519 maxpagesize = bed->maxpagesize;
5520
5521 /* Sections must map to file offsets past the ELF file header. */
5522 off = bed->s->sizeof_ehdr;
5523 /* And if one of the PT_LOAD headers doesn't include the program
5524 headers then we'll be mapping program headers in the usual
5525 position after the ELF file header. */
5526 phdr_load_seg = NULL;
5527 for (j = 0; j < alloc; j++)
5528 {
5529 m = sorted_seg_map[j];
5530 if (m->p_type != PT_LOAD)
5531 break;
5532 if (m->includes_phdrs)
5533 {
5534 phdr_load_seg = m;
5535 break;
5536 }
5537 }
5538 if (phdr_load_seg == NULL)
5539 off += actual * bed->s->sizeof_phdr;
5540
5541 for (j = 0; j < alloc; j++)
5542 {
5543 asection **secpp;
502794d4 5544 bfd_vma off_adjust; /* Octets. */
30fe1832 5545 bfd_boolean no_contents;
252b5132 5546
b301b248
AM
5547 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5548 number of sections with contents contributing to both p_filesz
5549 and p_memsz, followed by a number of sections with no contents
5550 that just contribute to p_memsz. In this loop, OFF tracks next
02bf8d82 5551 available file offset for PT_LOAD and PT_NOTE segments. */
30fe1832
AM
5552 m = sorted_seg_map[j];
5553 p = phdrs + m->idx;
252b5132 5554 p->p_type = m->p_type;
28a7f3e7 5555 p->p_flags = m->p_flags;
252b5132 5556
3f570048 5557 if (m->count == 0)
502794d4 5558 p->p_vaddr = m->p_vaddr_offset * opb;
3f570048 5559 else
502794d4 5560 p->p_vaddr = (m->sections[0]->vma + m->p_vaddr_offset) * opb;
3f570048
AM
5561
5562 if (m->p_paddr_valid)
5563 p->p_paddr = m->p_paddr;
5564 else if (m->count == 0)
5565 p->p_paddr = 0;
5566 else
502794d4 5567 p->p_paddr = (m->sections[0]->lma + m->p_vaddr_offset) * opb;
3f570048
AM
5568
5569 if (p->p_type == PT_LOAD
5570 && (abfd->flags & D_PAGED) != 0)
5571 {
5572 /* p_align in demand paged PT_LOAD segments effectively stores
5573 the maximum page size. When copying an executable with
5574 objcopy, we set m->p_align from the input file. Use this
5575 value for maxpagesize rather than bed->maxpagesize, which
5576 may be different. Note that we use maxpagesize for PT_TLS
5577 segment alignment later in this function, so we are relying
5578 on at least one PT_LOAD segment appearing before a PT_TLS
5579 segment. */
5580 if (m->p_align_valid)
5581 maxpagesize = m->p_align;
5582
5583 p->p_align = maxpagesize;
5584 }
3271a814
NS
5585 else if (m->p_align_valid)
5586 p->p_align = m->p_align;
e970b90a
DJ
5587 else if (m->count == 0)
5588 p->p_align = 1 << bed->s->log_file_align;
30fe1832
AM
5589
5590 if (m == phdr_load_seg)
5591 {
5592 if (!m->includes_filehdr)
5593 p->p_offset = off;
5594 off += actual * bed->s->sizeof_phdr;
5595 }
3f570048 5596
bf988460
AM
5597 no_contents = FALSE;
5598 off_adjust = 0;
252b5132 5599 if (p->p_type == PT_LOAD
b301b248 5600 && m->count > 0)
252b5132 5601 {
66631823 5602 bfd_size_type align; /* Bytes. */
a49e53ed 5603 unsigned int align_power = 0;
b301b248 5604
3271a814
NS
5605 if (m->p_align_valid)
5606 align = p->p_align;
5607 else
252b5132 5608 {
3271a814
NS
5609 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5610 {
5611 unsigned int secalign;
08a40648 5612
fd361982 5613 secalign = bfd_section_alignment (*secpp);
3271a814
NS
5614 if (secalign > align_power)
5615 align_power = secalign;
5616 }
5617 align = (bfd_size_type) 1 << align_power;
5618 if (align < maxpagesize)
5619 align = maxpagesize;
b301b248 5620 }
252b5132 5621
02bf8d82
AM
5622 for (i = 0; i < m->count; i++)
5623 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5624 /* If we aren't making room for this section, then
5625 it must be SHT_NOBITS regardless of what we've
5626 set via struct bfd_elf_special_section. */
5627 elf_section_type (m->sections[i]) = SHT_NOBITS;
5628
bf988460 5629 /* Find out whether this segment contains any loadable
aea274d3
AM
5630 sections. */
5631 no_contents = TRUE;
5632 for (i = 0; i < m->count; i++)
5633 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5634 {
5635 no_contents = FALSE;
5636 break;
5637 }
bf988460 5638
66631823 5639 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align * opb);
a8c75b76
AM
5640
5641 /* Broken hardware and/or kernel require that files do not
5642 map the same page with different permissions on some hppa
5643 processors. */
30fe1832
AM
5644 if (j != 0
5645 && (abfd->flags & D_PAGED) != 0
a8c75b76
AM
5646 && bed->no_page_alias
5647 && (off & (maxpagesize - 1)) != 0
502794d4
CE
5648 && ((off & -maxpagesize)
5649 == ((off + off_adjust) & -maxpagesize)))
a8c75b76 5650 off_adjust += maxpagesize;
bf988460
AM
5651 off += off_adjust;
5652 if (no_contents)
5653 {
5654 /* We shouldn't need to align the segment on disk since
5655 the segment doesn't need file space, but the gABI
5656 arguably requires the alignment and glibc ld.so
5657 checks it. So to comply with the alignment
5658 requirement but not waste file space, we adjust
5659 p_offset for just this segment. (OFF_ADJUST is
5660 subtracted from OFF later.) This may put p_offset
5661 past the end of file, but that shouldn't matter. */
5662 }
5663 else
5664 off_adjust = 0;
252b5132 5665 }
b1a6d0b1
NC
5666 /* Make sure the .dynamic section is the first section in the
5667 PT_DYNAMIC segment. */
5668 else if (p->p_type == PT_DYNAMIC
5669 && m->count > 1
5670 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5671 {
5672 _bfd_error_handler
871b3ab2 5673 (_("%pB: The first section in the PT_DYNAMIC segment"
63a5468a 5674 " is not the .dynamic section"),
b301b248 5675 abfd);
b1a6d0b1
NC
5676 bfd_set_error (bfd_error_bad_value);
5677 return FALSE;
5678 }
3f001e84
JK
5679 /* Set the note section type to SHT_NOTE. */
5680 else if (p->p_type == PT_NOTE)
5681 for (i = 0; i < m->count; i++)
5682 elf_section_type (m->sections[i]) = SHT_NOTE;
252b5132 5683
252b5132
RH
5684 if (m->includes_filehdr)
5685 {
bf988460 5686 if (!m->p_flags_valid)
252b5132 5687 p->p_flags |= PF_R;
252b5132
RH
5688 p->p_filesz = bed->s->sizeof_ehdr;
5689 p->p_memsz = bed->s->sizeof_ehdr;
30fe1832 5690 if (p->p_type == PT_LOAD)
252b5132 5691 {
30fe1832 5692 if (m->count > 0)
252b5132 5693 {
30fe1832
AM
5694 if (p->p_vaddr < (bfd_vma) off
5695 || (!m->p_paddr_valid
5696 && p->p_paddr < (bfd_vma) off))
5697 {
5698 _bfd_error_handler
5699 (_("%pB: not enough room for program headers,"
5700 " try linking with -N"),
5701 abfd);
5702 bfd_set_error (bfd_error_bad_value);
5703 return FALSE;
5704 }
5705 p->p_vaddr -= off;
5706 if (!m->p_paddr_valid)
5707 p->p_paddr -= off;
252b5132 5708 }
30fe1832
AM
5709 }
5710 else if (sorted_seg_map[0]->includes_filehdr)
5711 {
5712 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5713 p->p_vaddr = filehdr->p_vaddr;
bf988460 5714 if (!m->p_paddr_valid)
30fe1832 5715 p->p_paddr = filehdr->p_paddr;
252b5132 5716 }
252b5132
RH
5717 }
5718
5719 if (m->includes_phdrs)
5720 {
bf988460 5721 if (!m->p_flags_valid)
252b5132 5722 p->p_flags |= PF_R;
30fe1832
AM
5723 p->p_filesz += actual * bed->s->sizeof_phdr;
5724 p->p_memsz += actual * bed->s->sizeof_phdr;
f3520d2f 5725 if (!m->includes_filehdr)
252b5132 5726 {
30fe1832 5727 if (p->p_type == PT_LOAD)
252b5132 5728 {
30fe1832
AM
5729 elf_elfheader (abfd)->e_phoff = p->p_offset;
5730 if (m->count > 0)
5731 {
5732 p->p_vaddr -= off - p->p_offset;
5733 if (!m->p_paddr_valid)
5734 p->p_paddr -= off - p->p_offset;
5735 }
5736 }
5737 else if (phdr_load_seg != NULL)
5738 {
5739 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
502794d4 5740 bfd_vma phdr_off = 0; /* Octets. */
30fe1832
AM
5741 if (phdr_load_seg->includes_filehdr)
5742 phdr_off = bed->s->sizeof_ehdr;
5743 p->p_vaddr = phdr->p_vaddr + phdr_off;
bf988460 5744 if (!m->p_paddr_valid)
30fe1832
AM
5745 p->p_paddr = phdr->p_paddr + phdr_off;
5746 p->p_offset = phdr->p_offset + phdr_off;
252b5132 5747 }
30fe1832
AM
5748 else
5749 p->p_offset = bed->s->sizeof_ehdr;
2b0bc088 5750 }
252b5132
RH
5751 }
5752
5753 if (p->p_type == PT_LOAD
5754 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5755 {
bf988460 5756 if (!m->includes_filehdr && !m->includes_phdrs)
0bc3450e
AM
5757 {
5758 p->p_offset = off;
5759 if (no_contents)
67641dd3
AM
5760 {
5761 /* Put meaningless p_offset for PT_LOAD segments
5762 without file contents somewhere within the first
5763 page, in an attempt to not point past EOF. */
5764 bfd_size_type align = maxpagesize;
5765 if (align < p->p_align)
5766 align = p->p_align;
5767 if (align < 1)
5768 align = 1;
5769 p->p_offset = off % align;
5770 }
0bc3450e 5771 }
252b5132
RH
5772 else
5773 {
502794d4 5774 file_ptr adjust; /* Octets. */
252b5132
RH
5775
5776 adjust = off - (p->p_offset + p->p_filesz);
bf988460
AM
5777 if (!no_contents)
5778 p->p_filesz += adjust;
252b5132
RH
5779 p->p_memsz += adjust;
5780 }
5781 }
5782
1ea63fd2
AM
5783 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5784 maps. Set filepos for sections in PT_LOAD segments, and in
5785 core files, for sections in PT_NOTE segments.
5786 assign_file_positions_for_non_load_sections will set filepos
5787 for other sections and update p_filesz for other segments. */
252b5132
RH
5788 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5789 {
5790 asection *sec;
252b5132 5791 bfd_size_type align;
627b32bc 5792 Elf_Internal_Shdr *this_hdr;
252b5132
RH
5793
5794 sec = *secpp;
02bf8d82 5795 this_hdr = &elf_section_data (sec)->this_hdr;
fd361982 5796 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
252b5132 5797
88967714
AM
5798 if ((p->p_type == PT_LOAD
5799 || p->p_type == PT_TLS)
5800 && (this_hdr->sh_type != SHT_NOBITS
5801 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5802 && ((this_hdr->sh_flags & SHF_TLS) == 0
5803 || p->p_type == PT_TLS))))
252b5132 5804 {
502794d4
CE
5805 bfd_vma p_start = p->p_paddr; /* Octets. */
5806 bfd_vma p_end = p_start + p->p_memsz; /* Octets. */
5807 bfd_vma s_start = sec->lma * opb; /* Octets. */
5808 bfd_vma adjust = s_start - p_end; /* Octets. */
252b5132 5809
a2d1e028
L
5810 if (adjust != 0
5811 && (s_start < p_end
5812 || p_end < p_start))
252b5132 5813 {
4eca0228 5814 _bfd_error_handler
695344c0 5815 /* xgettext:c-format */
2dcf00ce 5816 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
502794d4
CE
5817 abfd, sec, (uint64_t) s_start / opb,
5818 (uint64_t) p_end / opb);
88967714 5819 adjust = 0;
502794d4 5820 sec->lma = p_end / opb;
1cfb7d1e 5821 }
3ac9b6c9 5822 p->p_memsz += adjust;
1cfb7d1e 5823
88967714
AM
5824 if (this_hdr->sh_type != SHT_NOBITS)
5825 {
30fe1832 5826 if (p->p_type == PT_LOAD)
32812159 5827 {
30fe1832
AM
5828 if (p->p_filesz + adjust < p->p_memsz)
5829 {
5830 /* We have a PROGBITS section following NOBITS ones.
5831 Allocate file space for the NOBITS section(s) and
5832 zero it. */
5833 adjust = p->p_memsz - p->p_filesz;
5834 if (!write_zeros (abfd, off, adjust))
5835 return FALSE;
5836 }
5837 off += adjust;
32812159 5838 }
88967714 5839 p->p_filesz += adjust;
252b5132 5840 }
252b5132
RH
5841 }
5842
5843 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5844 {
b301b248
AM
5845 /* The section at i == 0 is the one that actually contains
5846 everything. */
4a938328
MS
5847 if (i == 0)
5848 {
627b32bc 5849 this_hdr->sh_offset = sec->filepos = off;
6a3cd2b4
AM
5850 off += this_hdr->sh_size;
5851 p->p_filesz = this_hdr->sh_size;
b301b248
AM
5852 p->p_memsz = 0;
5853 p->p_align = 1;
252b5132 5854 }
4a938328 5855 else
252b5132 5856 {
b301b248 5857 /* The rest are fake sections that shouldn't be written. */
252b5132 5858 sec->filepos = 0;
eea6121a 5859 sec->size = 0;
b301b248
AM
5860 sec->flags = 0;
5861 continue;
252b5132 5862 }
252b5132
RH
5863 }
5864 else
5865 {
1e951488 5866 if (p->p_type == PT_LOAD)
b301b248 5867 {
1e951488
AM
5868 this_hdr->sh_offset = sec->filepos = off;
5869 if (this_hdr->sh_type != SHT_NOBITS)
5870 off += this_hdr->sh_size;
5871 }
5872 else if (this_hdr->sh_type == SHT_NOBITS
5873 && (this_hdr->sh_flags & SHF_TLS) != 0
5874 && this_hdr->sh_offset == 0)
5875 {
5876 /* This is a .tbss section that didn't get a PT_LOAD.
5877 (See _bfd_elf_map_sections_to_segments "Create a
5878 final PT_LOAD".) Set sh_offset to the value it
5879 would have if we had created a zero p_filesz and
5880 p_memsz PT_LOAD header for the section. This
5881 also makes the PT_TLS header have the same
5882 p_offset value. */
5883 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5884 off, align);
5885 this_hdr->sh_offset = sec->filepos = off + adjust;
b301b248 5886 }
252b5132 5887
02bf8d82 5888 if (this_hdr->sh_type != SHT_NOBITS)
b301b248 5889 {
6a3cd2b4 5890 p->p_filesz += this_hdr->sh_size;
02bf8d82
AM
5891 /* A load section without SHF_ALLOC is something like
5892 a note section in a PT_NOTE segment. These take
5893 file space but are not loaded into memory. */
5894 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
6a3cd2b4 5895 p->p_memsz += this_hdr->sh_size;
b301b248 5896 }
6a3cd2b4 5897 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
13ae64f3 5898 {
6a3cd2b4
AM
5899 if (p->p_type == PT_TLS)
5900 p->p_memsz += this_hdr->sh_size;
5901
5902 /* .tbss is special. It doesn't contribute to p_memsz of
5903 normal segments. */
5904 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5905 p->p_memsz += this_hdr->sh_size;
13ae64f3
JJ
5906 }
5907
b10a8ae0
L
5908 if (align > p->p_align
5909 && !m->p_align_valid
5910 && (p->p_type != PT_LOAD
5911 || (abfd->flags & D_PAGED) == 0))
252b5132
RH
5912 p->p_align = align;
5913 }
5914
bf988460 5915 if (!m->p_flags_valid)
252b5132
RH
5916 {
5917 p->p_flags |= PF_R;
02bf8d82 5918 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
252b5132 5919 p->p_flags |= PF_X;
02bf8d82 5920 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
252b5132
RH
5921 p->p_flags |= PF_W;
5922 }
5923 }
43a8475c 5924
bf988460 5925 off -= off_adjust;
0920dee7 5926
30fe1832
AM
5927 /* PR ld/20815 - Check that the program header segment, if
5928 present, will be loaded into memory. */
5929 if (p->p_type == PT_PHDR
5930 && phdr_load_seg == NULL
5931 && !(bed->elf_backend_allow_non_load_phdr != NULL
5932 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5933 {
5934 /* The fix for this error is usually to edit the linker script being
5935 used and set up the program headers manually. Either that or
5936 leave room for the headers at the start of the SECTIONS. */
5937 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5938 " by LOAD segment"),
5939 abfd);
7b3c2715
AM
5940 if (link_info == NULL)
5941 return FALSE;
5942 /* Arrange for the linker to exit with an error, deleting
5943 the output file unless --noinhibit-exec is given. */
5944 link_info->callbacks->info ("%X");
30fe1832
AM
5945 }
5946
7c928300
AM
5947 /* Check that all sections are in a PT_LOAD segment.
5948 Don't check funky gdb generated core files. */
5949 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
9a83a553
AM
5950 {
5951 bfd_boolean check_vma = TRUE;
5952
5953 for (i = 1; i < m->count; i++)
5954 if (m->sections[i]->vma == m->sections[i - 1]->vma
5955 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5956 ->this_hdr), p) != 0
5957 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5958 ->this_hdr), p) != 0)
0920dee7 5959 {
9a83a553
AM
5960 /* Looks like we have overlays packed into the segment. */
5961 check_vma = FALSE;
5962 break;
0920dee7 5963 }
9a83a553
AM
5964
5965 for (i = 0; i < m->count; i++)
5966 {
5967 Elf_Internal_Shdr *this_hdr;
5968 asection *sec;
5969
5970 sec = m->sections[i];
5971 this_hdr = &(elf_section_data(sec)->this_hdr);
86b2281f
AM
5972 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5973 && !ELF_TBSS_SPECIAL (this_hdr, p))
9a83a553 5974 {
4eca0228 5975 _bfd_error_handler
695344c0 5976 /* xgettext:c-format */
871b3ab2 5977 (_("%pB: section `%pA' can't be allocated in segment %d"),
9a83a553
AM
5978 abfd, sec, j);
5979 print_segment_map (m);
5980 }
5981 }
5982 }
252b5132
RH
5983 }
5984
12bd6957 5985 elf_next_file_pos (abfd) = off;
30fe1832
AM
5986
5987 if (link_info != NULL
5988 && phdr_load_seg != NULL
5989 && phdr_load_seg->includes_filehdr)
5990 {
5991 /* There is a segment that contains both the file headers and the
5992 program headers, so provide a symbol __ehdr_start pointing there.
5993 A program can use this to examine itself robustly. */
5994
5995 struct elf_link_hash_entry *hash
5996 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5997 FALSE, FALSE, TRUE);
5998 /* If the symbol was referenced and not defined, define it. */
5999 if (hash != NULL
6000 && (hash->root.type == bfd_link_hash_new
6001 || hash->root.type == bfd_link_hash_undefined
6002 || hash->root.type == bfd_link_hash_undefweak
6003 || hash->root.type == bfd_link_hash_common))
6004 {
6005 asection *s = NULL;
66631823 6006 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr / opb;
30fe1832
AM
6007
6008 if (phdr_load_seg->count != 0)
6009 /* The segment contains sections, so use the first one. */
6010 s = phdr_load_seg->sections[0];
6011 else
6012 /* Use the first (i.e. lowest-addressed) section in any segment. */
6013 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6014 if (m->p_type == PT_LOAD && m->count != 0)
6015 {
6016 s = m->sections[0];
6017 break;
6018 }
6019
6020 if (s != NULL)
6021 {
6022 hash->root.u.def.value = filehdr_vaddr - s->vma;
6023 hash->root.u.def.section = s;
6024 }
6025 else
6026 {
6027 hash->root.u.def.value = filehdr_vaddr;
6028 hash->root.u.def.section = bfd_abs_section_ptr;
6029 }
6030
6031 hash->root.type = bfd_link_hash_defined;
6032 hash->def_regular = 1;
6033 hash->non_elf = 0;
6034 }
6035 }
6036
f3520d2f
AM
6037 return TRUE;
6038}
6039
1faa385f
NC
6040/* Determine if a bfd is a debuginfo file. Unfortunately there
6041 is no defined method for detecting such files, so we have to
6042 use heuristics instead. */
6043
6044bfd_boolean
6045is_debuginfo_file (bfd *abfd)
6046{
6047 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6048 return FALSE;
6049
6050 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6051 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6052 Elf_Internal_Shdr **headerp;
6053
6054 for (headerp = start_headers; headerp < end_headers; headerp ++)
6055 {
6056 Elf_Internal_Shdr *header = * headerp;
6057
6058 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6059 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6060 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6061 && header->sh_type != SHT_NOBITS
6062 && header->sh_type != SHT_NOTE)
6063 return FALSE;
6064 }
6065
6066 return TRUE;
6067}
6068
1ff6de03
NA
6069/* Assign file positions for the other sections, except for compressed debugging
6070 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
f3520d2f
AM
6071
6072static bfd_boolean
6073assign_file_positions_for_non_load_sections (bfd *abfd,
6074 struct bfd_link_info *link_info)
6075{
6076 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6077 Elf_Internal_Shdr **i_shdrpp;
e06efbf1 6078 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
f3520d2f
AM
6079 Elf_Internal_Phdr *phdrs;
6080 Elf_Internal_Phdr *p;
6081 struct elf_segment_map *m;
f3520d2f 6082 file_ptr off;
66631823 6083 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
f3520d2f 6084
5c182d5f 6085 i_shdrpp = elf_elfsections (abfd);
e06efbf1 6086 end_hdrpp = i_shdrpp + elf_numsections (abfd);
12bd6957 6087 off = elf_next_file_pos (abfd);
e06efbf1 6088 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5c182d5f 6089 {
5c182d5f
AM
6090 Elf_Internal_Shdr *hdr;
6091
6092 hdr = *hdrpp;
6093 if (hdr->bfd_section != NULL
252e386e
AM
6094 && (hdr->bfd_section->filepos != 0
6095 || (hdr->sh_type == SHT_NOBITS
6096 && hdr->contents == NULL)))
627b32bc 6097 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5c182d5f
AM
6098 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6099 {
1faa385f
NC
6100 if (hdr->sh_size != 0
6101 /* PR 24717 - debuginfo files are known to be not strictly
6102 compliant with the ELF standard. In particular they often
6103 have .note.gnu.property sections that are outside of any
6104 loadable segment. This is not a problem for such files,
6105 so do not warn about them. */
6106 && ! is_debuginfo_file (abfd))
4eca0228 6107 _bfd_error_handler
695344c0 6108 /* xgettext:c-format */
871b3ab2 6109 (_("%pB: warning: allocated section `%s' not in segment"),
e8d2ba53
AM
6110 abfd,
6111 (hdr->bfd_section == NULL
6112 ? "*unknown*"
6113 : hdr->bfd_section->name));
3ba71138
L
6114 /* We don't need to page align empty sections. */
6115 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5c182d5f
AM
6116 off += vma_page_aligned_bias (hdr->sh_addr, off,
6117 bed->maxpagesize);
6118 else
6119 off += vma_page_aligned_bias (hdr->sh_addr, off,
6120 hdr->sh_addralign);
6121 off = _bfd_elf_assign_file_position_for_section (hdr, off,
6122 FALSE);
6123 }
6124 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6125 && hdr->bfd_section == NULL)
1ff6de03
NA
6126 /* We don't know the offset of these sections yet: their size has
6127 not been decided. */
0ce398f1 6128 || (hdr->bfd_section != NULL
1ff6de03
NA
6129 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6130 || (bfd_section_is_ctf (hdr->bfd_section)
6131 && abfd->is_linker_output)))
12bd6957 6132 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6a40cf0c
NC
6133 || (elf_symtab_shndx_list (abfd) != NULL
6134 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6135 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6136 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5c182d5f
AM
6137 hdr->sh_offset = -1;
6138 else
6139 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5c182d5f 6140 }
30fe1832 6141 elf_next_file_pos (abfd) = off;
5c182d5f 6142
252b5132
RH
6143 /* Now that we have set the section file positions, we can set up
6144 the file positions for the non PT_LOAD segments. */
f3520d2f 6145 phdrs = elf_tdata (abfd)->phdr;
12bd6957 6146 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
252b5132 6147 {
129af99f 6148 if (p->p_type == PT_GNU_RELRO)
252b5132 6149 {
66631823 6150 bfd_vma start, end; /* Bytes. */
01f7e10c 6151 bfd_boolean ok;
1ea63fd2 6152
129af99f 6153 if (link_info != NULL)
8c37241b 6154 {
129af99f 6155 /* During linking the range of the RELRO segment is passed
f2731e0c
AM
6156 in link_info. Note that there may be padding between
6157 relro_start and the first RELRO section. */
6158 start = link_info->relro_start;
6159 end = link_info->relro_end;
6160 }
6161 else if (m->count != 0)
6162 {
6163 if (!m->p_size_valid)
6164 abort ();
6165 start = m->sections[0]->vma;
66631823 6166 end = start + m->p_size / opb;
f2731e0c
AM
6167 }
6168 else
6169 {
6170 start = 0;
6171 end = 0;
6172 }
6173
01f7e10c 6174 ok = FALSE;
f2731e0c
AM
6175 if (start < end)
6176 {
6177 struct elf_segment_map *lm;
6178 const Elf_Internal_Phdr *lp;
6179 unsigned int i;
6180
6181 /* Find a LOAD segment containing a section in the RELRO
6182 segment. */
12bd6957 6183 for (lm = elf_seg_map (abfd), lp = phdrs;
3146fac4
AM
6184 lm != NULL;
6185 lm = lm->next, lp++)
8c37241b
JJ
6186 {
6187 if (lp->p_type == PT_LOAD
3146fac4 6188 && lm->count != 0
dbc88fc1
AM
6189 && (lm->sections[lm->count - 1]->vma
6190 + (!IS_TBSS (lm->sections[lm->count - 1])
66631823 6191 ? lm->sections[lm->count - 1]->size / opb
dbc88fc1 6192 : 0)) > start
f2731e0c 6193 && lm->sections[0]->vma < end)
8c37241b
JJ
6194 break;
6195 }
f2731e0c 6196
01f7e10c 6197 if (lm != NULL)
129af99f 6198 {
01f7e10c
AM
6199 /* Find the section starting the RELRO segment. */
6200 for (i = 0; i < lm->count; i++)
6201 {
6202 asection *s = lm->sections[i];
6203 if (s->vma >= start
6204 && s->vma < end
6205 && s->size != 0)
6206 break;
6207 }
6208
6209 if (i < lm->count)
6210 {
502794d4
CE
6211 p->p_vaddr = lm->sections[i]->vma * opb;
6212 p->p_paddr = lm->sections[i]->lma * opb;
01f7e10c 6213 p->p_offset = lm->sections[i]->filepos;
66631823 6214 p->p_memsz = end * opb - p->p_vaddr;
01f7e10c
AM
6215 p->p_filesz = p->p_memsz;
6216
6217 /* The RELRO segment typically ends a few bytes
6218 into .got.plt but other layouts are possible.
6219 In cases where the end does not match any
6220 loaded section (for instance is in file
6221 padding), trim p_filesz back to correspond to
6222 the end of loaded section contents. */
6223 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6224 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6225
6226 /* Preserve the alignment and flags if they are
6227 valid. The gold linker generates RW/4 for
6228 the PT_GNU_RELRO section. It is better for
6229 objcopy/strip to honor these attributes
6230 otherwise gdb will choke when using separate
6231 debug files. */
6232 if (!m->p_align_valid)
6233 p->p_align = 1;
6234 if (!m->p_flags_valid)
6235 p->p_flags = PF_R;
6236 ok = TRUE;
6237 }
129af99f 6238 }
b84a33b5 6239 }
01f7e10c
AM
6240 if (link_info != NULL)
6241 BFD_ASSERT (ok);
6242 if (!ok)
6243 memset (p, 0, sizeof *p);
129af99f 6244 }
04c3a755
NS
6245 else if (p->p_type == PT_GNU_STACK)
6246 {
6247 if (m->p_size_valid)
6248 p->p_memsz = m->p_size;
6249 }
129af99f
AS
6250 else if (m->count != 0)
6251 {
e06efbf1 6252 unsigned int i;
1a9ccd70 6253
129af99f
AS
6254 if (p->p_type != PT_LOAD
6255 && (p->p_type != PT_NOTE
6256 || bfd_get_format (abfd) != bfd_core))
6257 {
1a9ccd70
NC
6258 /* A user specified segment layout may include a PHDR
6259 segment that overlaps with a LOAD segment... */
6260 if (p->p_type == PT_PHDR)
6261 {
6262 m->count = 0;
6263 continue;
6264 }
6265
c86934ce
NC
6266 if (m->includes_filehdr || m->includes_phdrs)
6267 {
b1fa9dd6 6268 /* PR 17512: file: 2195325e. */
4eca0228 6269 _bfd_error_handler
871b3ab2 6270 (_("%pB: error: non-load segment %d includes file header "
76cfced5
AM
6271 "and/or program header"),
6272 abfd, (int) (p - phdrs));
c86934ce
NC
6273 return FALSE;
6274 }
129af99f 6275
86b2281f 6276 p->p_filesz = 0;
129af99f 6277 p->p_offset = m->sections[0]->filepos;
86b2281f
AM
6278 for (i = m->count; i-- != 0;)
6279 {
6280 asection *sect = m->sections[i];
6281 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6282 if (hdr->sh_type != SHT_NOBITS)
6283 {
6284 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6285 + hdr->sh_size);
6286 break;
6287 }
6288 }
129af99f
AS
6289 }
6290 }
252b5132
RH
6291 }
6292
b34976b6 6293 return TRUE;
252b5132
RH
6294}
6295
6a40cf0c
NC
6296static elf_section_list *
6297find_section_in_list (unsigned int i, elf_section_list * list)
6298{
6299 for (;list != NULL; list = list->next)
6300 if (list->ndx == i)
6301 break;
6302 return list;
6303}
6304
252b5132
RH
6305/* Work out the file positions of all the sections. This is called by
6306 _bfd_elf_compute_section_file_positions. All the section sizes and
6307 VMAs must be known before this is called.
6308
e0638f70 6309 Reloc sections come in two flavours: Those processed specially as
1ff6de03
NA
6310 "side-channel" data attached to a section to which they apply, and those that
6311 bfd doesn't process as relocations. The latter sort are stored in a normal
6312 bfd section by bfd_section_from_shdr. We don't consider the former sort
6313 here, unless they form part of the loadable image. Reloc sections not
6314 assigned here (and compressed debugging sections and CTF sections which
6315 nothing else in the file can rely upon) will be handled later by
e0638f70 6316 assign_file_positions_for_relocs.
252b5132
RH
6317
6318 We also don't set the positions of the .symtab and .strtab here. */
6319
b34976b6 6320static bfd_boolean
c84fca4d
AO
6321assign_file_positions_except_relocs (bfd *abfd,
6322 struct bfd_link_info *link_info)
252b5132 6323{
5c182d5f
AM
6324 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6325 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
9c5bfbb7 6326 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6d6c25c8 6327 unsigned int alloc;
252b5132
RH
6328
6329 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6330 && bfd_get_format (abfd) != bfd_core)
6331 {
5c182d5f
AM
6332 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6333 unsigned int num_sec = elf_numsections (abfd);
252b5132
RH
6334 Elf_Internal_Shdr **hdrpp;
6335 unsigned int i;
a485e98e 6336 file_ptr off;
252b5132
RH
6337
6338 /* Start after the ELF header. */
6339 off = i_ehdrp->e_ehsize;
6340
6341 /* We are not creating an executable, which means that we are
6342 not creating a program header, and that the actual order of
6343 the sections in the file is unimportant. */
9ad5cbcf 6344 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
252b5132
RH
6345 {
6346 Elf_Internal_Shdr *hdr;
6347
6348 hdr = *hdrpp;
e0638f70
AM
6349 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6350 && hdr->bfd_section == NULL)
1ff6de03
NA
6351 /* Do not assign offsets for these sections yet: we don't know
6352 their sizes. */
0ce398f1 6353 || (hdr->bfd_section != NULL
1ff6de03
NA
6354 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6355 || (bfd_section_is_ctf (hdr->bfd_section)
6356 && abfd->is_linker_output)))
12bd6957 6357 || i == elf_onesymtab (abfd)
6a40cf0c
NC
6358 || (elf_symtab_shndx_list (abfd) != NULL
6359 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6360 || i == elf_strtab_sec (abfd)
6361 || i == elf_shstrtab_sec (abfd))
252b5132
RH
6362 {
6363 hdr->sh_offset = -1;
252b5132 6364 }
9ad5cbcf 6365 else
b34976b6 6366 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 6367 }
a485e98e
AM
6368
6369 elf_next_file_pos (abfd) = off;
6d6c25c8 6370 elf_program_header_size (abfd) = 0;
252b5132
RH
6371 }
6372 else
6373 {
252b5132 6374 /* Assign file positions for the loaded sections based on the
08a40648 6375 assignment of sections to segments. */
f3520d2f
AM
6376 if (!assign_file_positions_for_load_sections (abfd, link_info))
6377 return FALSE;
6378
6379 /* And for non-load sections. */
6380 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6381 return FALSE;
6d6c25c8 6382 }
f3520d2f 6383
6d6c25c8
AM
6384 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
6385 return FALSE;
1a9ccd70 6386
6d6c25c8
AM
6387 /* Write out the program headers. */
6388 alloc = i_ehdrp->e_phnum;
6389 if (alloc != 0)
6390 {
30fe1832 6391 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
cd584857
NC
6392 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6393 return FALSE;
252b5132
RH
6394 }
6395
b34976b6 6396 return TRUE;
252b5132
RH
6397}
6398
ed7e9d0b
AM
6399bfd_boolean
6400_bfd_elf_init_file_header (bfd *abfd,
6401 struct bfd_link_info *info ATTRIBUTE_UNUSED)
252b5132 6402{
3d540e93 6403 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
2b0f7ef9 6404 struct elf_strtab_hash *shstrtab;
9c5bfbb7 6405 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132
RH
6406
6407 i_ehdrp = elf_elfheader (abfd);
252b5132 6408
2b0f7ef9 6409 shstrtab = _bfd_elf_strtab_init ();
252b5132 6410 if (shstrtab == NULL)
b34976b6 6411 return FALSE;
252b5132
RH
6412
6413 elf_shstrtab (abfd) = shstrtab;
6414
6415 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6416 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6417 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6418 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6419
6420 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6421 i_ehdrp->e_ident[EI_DATA] =
6422 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6423 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6424
252b5132
RH
6425 if ((abfd->flags & DYNAMIC) != 0)
6426 i_ehdrp->e_type = ET_DYN;
6427 else if ((abfd->flags & EXEC_P) != 0)
6428 i_ehdrp->e_type = ET_EXEC;
6429 else if (bfd_get_format (abfd) == bfd_core)
6430 i_ehdrp->e_type = ET_CORE;
6431 else
6432 i_ehdrp->e_type = ET_REL;
6433
6434 switch (bfd_get_arch (abfd))
6435 {
6436 case bfd_arch_unknown:
6437 i_ehdrp->e_machine = EM_NONE;
6438 break;
aa4f99bb
AO
6439
6440 /* There used to be a long list of cases here, each one setting
6441 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6442 in the corresponding bfd definition. To avoid duplication,
6443 the switch was removed. Machines that need special handling
6444 can generally do it in elf_backend_final_write_processing(),
6445 unless they need the information earlier than the final write.
6446 Such need can generally be supplied by replacing the tests for
6447 e_machine with the conditions used to determine it. */
252b5132 6448 default:
9c5bfbb7
AM
6449 i_ehdrp->e_machine = bed->elf_machine_code;
6450 }
aa4f99bb 6451
252b5132
RH
6452 i_ehdrp->e_version = bed->s->ev_current;
6453 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6454
c044fabd 6455 /* No program header, for now. */
252b5132
RH
6456 i_ehdrp->e_phoff = 0;
6457 i_ehdrp->e_phentsize = 0;
6458 i_ehdrp->e_phnum = 0;
6459
c044fabd 6460 /* Each bfd section is section header entry. */
252b5132
RH
6461 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6462 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6463
252b5132 6464 elf_tdata (abfd)->symtab_hdr.sh_name =
b34976b6 6465 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
252b5132 6466 elf_tdata (abfd)->strtab_hdr.sh_name =
b34976b6 6467 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
252b5132 6468 elf_tdata (abfd)->shstrtab_hdr.sh_name =
b34976b6 6469 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
252b5132 6470 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
17ca87fc 6471 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
252b5132 6472 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
b34976b6 6473 return FALSE;
252b5132 6474
b34976b6 6475 return TRUE;
252b5132
RH
6476}
6477
6d6c25c8
AM
6478/* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6479
6480 FIXME: We used to have code here to sort the PT_LOAD segments into
6481 ascending order, as per the ELF spec. But this breaks some programs,
6482 including the Linux kernel. But really either the spec should be
6483 changed or the programs updated. */
6484
6485bfd_boolean
6486_bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6487{
6488 if (link_info != NULL && bfd_link_pie (link_info))
6489 {
6490 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6491 unsigned int num_segments = i_ehdrp->e_phnum;
6492 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6493 Elf_Internal_Phdr *segment = tdata->phdr;
6494 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6495
6496 /* Find the lowest p_vaddr in PT_LOAD segments. */
6497 bfd_vma p_vaddr = (bfd_vma) -1;
6498 for (; segment < end_segment; segment++)
6499 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6500 p_vaddr = segment->p_vaddr;
6501
6502 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6503 segments is non-zero. */
6504 if (p_vaddr)
6505 i_ehdrp->e_type = ET_EXEC;
6506 }
6507 return TRUE;
6508}
6509
252b5132 6510/* Assign file positions for all the reloc sections which are not part
a485e98e 6511 of the loadable file image, and the file position of section headers. */
252b5132 6512
0ce398f1
L
6513static bfd_boolean
6514_bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
252b5132
RH
6515{
6516 file_ptr off;
e06efbf1 6517 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
3e19fb8f 6518 Elf_Internal_Shdr *shdrp;
a485e98e
AM
6519 Elf_Internal_Ehdr *i_ehdrp;
6520 const struct elf_backend_data *bed;
252b5132 6521
12bd6957 6522 off = elf_next_file_pos (abfd);
252b5132 6523
e06efbf1
L
6524 shdrpp = elf_elfsections (abfd);
6525 end_shdrpp = shdrpp + elf_numsections (abfd);
6526 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
252b5132 6527 {
252b5132 6528 shdrp = *shdrpp;
0ce398f1
L
6529 if (shdrp->sh_offset == -1)
6530 {
3e19fb8f 6531 asection *sec = shdrp->bfd_section;
0ce398f1
L
6532 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6533 || shdrp->sh_type == SHT_RELA);
1ff6de03 6534 bfd_boolean is_ctf = sec && bfd_section_is_ctf (sec);
0ce398f1 6535 if (is_rel
1ff6de03 6536 || is_ctf
3e19fb8f 6537 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
0ce398f1 6538 {
1ff6de03 6539 if (!is_rel && !is_ctf)
0ce398f1 6540 {
3e19fb8f
L
6541 const char *name = sec->name;
6542 struct bfd_elf_section_data *d;
6543
0ce398f1 6544 /* Compress DWARF debug sections. */
3e19fb8f 6545 if (!bfd_compress_section (abfd, sec,
0ce398f1
L
6546 shdrp->contents))
6547 return FALSE;
3e19fb8f
L
6548
6549 if (sec->compress_status == COMPRESS_SECTION_DONE
6550 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6551 {
6552 /* If section is compressed with zlib-gnu, convert
6553 section name from .debug_* to .zdebug_*. */
6554 char *new_name
6555 = convert_debug_to_zdebug (abfd, name);
6556 if (new_name == NULL)
6557 return FALSE;
6558 name = new_name;
6559 }
dd905818 6560 /* Add section name to section name section. */
3e19fb8f
L
6561 if (shdrp->sh_name != (unsigned int) -1)
6562 abort ();
6563 shdrp->sh_name
6564 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6565 name, FALSE);
6566 d = elf_section_data (sec);
6567
dd905818 6568 /* Add reloc section name to section name section. */
3e19fb8f
L
6569 if (d->rel.hdr
6570 && !_bfd_elf_set_reloc_sh_name (abfd,
6571 d->rel.hdr,
6572 name, FALSE))
6573 return FALSE;
6574 if (d->rela.hdr
6575 && !_bfd_elf_set_reloc_sh_name (abfd,
6576 d->rela.hdr,
91cb26da 6577 name, TRUE))
3e19fb8f
L
6578 return FALSE;
6579
0ce398f1 6580 /* Update section size and contents. */
3e19fb8f
L
6581 shdrp->sh_size = sec->size;
6582 shdrp->contents = sec->contents;
0ce398f1
L
6583 shdrp->bfd_section->contents = NULL;
6584 }
1ff6de03
NA
6585 else if (is_ctf)
6586 {
6587 /* Update section size and contents. */
6588 shdrp->sh_size = sec->size;
6589 shdrp->contents = sec->contents;
6590 }
6591
0ce398f1
L
6592 off = _bfd_elf_assign_file_position_for_section (shdrp,
6593 off,
6594 TRUE);
6595 }
6596 }
252b5132
RH
6597 }
6598
3e19fb8f
L
6599 /* Place section name section after DWARF debug sections have been
6600 compressed. */
6601 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6602 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6603 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6604 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6605
6606 /* Place the section headers. */
a485e98e
AM
6607 i_ehdrp = elf_elfheader (abfd);
6608 bed = get_elf_backend_data (abfd);
6609 off = align_file_position (off, 1 << bed->s->log_file_align);
6610 i_ehdrp->e_shoff = off;
6611 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
12bd6957 6612 elf_next_file_pos (abfd) = off;
0ce398f1
L
6613
6614 return TRUE;
252b5132
RH
6615}
6616
b34976b6 6617bfd_boolean
217aa764 6618_bfd_elf_write_object_contents (bfd *abfd)
252b5132 6619{
9c5bfbb7 6620 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 6621 Elf_Internal_Shdr **i_shdrp;
b34976b6 6622 bfd_boolean failed;
9ad5cbcf 6623 unsigned int count, num_sec;
30e8ee25 6624 struct elf_obj_tdata *t;
252b5132
RH
6625
6626 if (! abfd->output_has_begun
217aa764 6627 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 6628 return FALSE;
db727370
JL
6629 /* Do not rewrite ELF data when the BFD has been opened for update.
6630 abfd->output_has_begun was set to TRUE on opening, so creation of new
6631 sections, and modification of existing section sizes was restricted.
6632 This means the ELF header, program headers and section headers can't have
6633 changed.
6634 If the contents of any sections has been modified, then those changes have
6635 already been written to the BFD. */
6636 else if (abfd->direction == both_direction)
6637 {
6638 BFD_ASSERT (abfd->output_has_begun);
6639 return TRUE;
6640 }
252b5132
RH
6641
6642 i_shdrp = elf_elfsections (abfd);
252b5132 6643
b34976b6 6644 failed = FALSE;
252b5132
RH
6645 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6646 if (failed)
b34976b6 6647 return FALSE;
252b5132 6648
0ce398f1
L
6649 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6650 return FALSE;
252b5132 6651
c044fabd 6652 /* After writing the headers, we need to write the sections too... */
9ad5cbcf
AM
6653 num_sec = elf_numsections (abfd);
6654 for (count = 1; count < num_sec; count++)
252b5132 6655 {
3e19fb8f
L
6656 i_shdrp[count]->sh_name
6657 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6658 i_shdrp[count]->sh_name);
252b5132 6659 if (bed->elf_backend_section_processing)
75506100
MR
6660 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6661 return FALSE;
252b5132
RH
6662 if (i_shdrp[count]->contents)
6663 {
dc810e39
AM
6664 bfd_size_type amt = i_shdrp[count]->sh_size;
6665
252b5132 6666 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
dc810e39 6667 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
b34976b6 6668 return FALSE;
252b5132
RH
6669 }
6670 }
6671
6672 /* Write out the section header names. */
30e8ee25 6673 t = elf_tdata (abfd);
26ae6d5e 6674 if (elf_shstrtab (abfd) != NULL
30e8ee25 6675 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
08a40648 6676 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
b34976b6 6677 return FALSE;
252b5132 6678
cc364be6
AM
6679 if (!(*bed->elf_backend_final_write_processing) (abfd))
6680 return FALSE;
252b5132 6681
ff59fc36
RM
6682 if (!bed->s->write_shdrs_and_ehdr (abfd))
6683 return FALSE;
6684
6685 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
c0355132
AM
6686 if (t->o->build_id.after_write_object_contents != NULL)
6687 return (*t->o->build_id.after_write_object_contents) (abfd);
ff59fc36
RM
6688
6689 return TRUE;
252b5132
RH
6690}
6691
b34976b6 6692bfd_boolean
217aa764 6693_bfd_elf_write_corefile_contents (bfd *abfd)
252b5132 6694{
c044fabd 6695 /* Hopefully this can be done just like an object file. */
252b5132
RH
6696 return _bfd_elf_write_object_contents (abfd);
6697}
c044fabd
KH
6698
6699/* Given a section, search the header to find them. */
6700
cb33740c 6701unsigned int
198beae2 6702_bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
252b5132 6703{
9c5bfbb7 6704 const struct elf_backend_data *bed;
91d6fa6a 6705 unsigned int sec_index;
252b5132 6706
9ad5cbcf
AM
6707 if (elf_section_data (asect) != NULL
6708 && elf_section_data (asect)->this_idx != 0)
6709 return elf_section_data (asect)->this_idx;
6710
6711 if (bfd_is_abs_section (asect))
91d6fa6a 6712 sec_index = SHN_ABS;
af746e92 6713 else if (bfd_is_com_section (asect))
91d6fa6a 6714 sec_index = SHN_COMMON;
af746e92 6715 else if (bfd_is_und_section (asect))
91d6fa6a 6716 sec_index = SHN_UNDEF;
af746e92 6717 else
91d6fa6a 6718 sec_index = SHN_BAD;
252b5132 6719
af746e92 6720 bed = get_elf_backend_data (abfd);
252b5132
RH
6721 if (bed->elf_backend_section_from_bfd_section)
6722 {
91d6fa6a 6723 int retval = sec_index;
9ad5cbcf 6724
af746e92
AM
6725 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6726 return retval;
252b5132
RH
6727 }
6728
91d6fa6a 6729 if (sec_index == SHN_BAD)
af746e92 6730 bfd_set_error (bfd_error_nonrepresentable_section);
252b5132 6731
91d6fa6a 6732 return sec_index;
252b5132
RH
6733}
6734
6735/* Given a BFD symbol, return the index in the ELF symbol table, or -1
6736 on error. */
6737
6738int
217aa764 6739_bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
252b5132
RH
6740{
6741 asymbol *asym_ptr = *asym_ptr_ptr;
6742 int idx;
6743 flagword flags = asym_ptr->flags;
6744
6745 /* When gas creates relocations against local labels, it creates its
6746 own symbol for the section, but does put the symbol into the
6747 symbol chain, so udata is 0. When the linker is generating
6748 relocatable output, this section symbol may be for one of the
6749 input sections rather than the output section. */
6750 if (asym_ptr->udata.i == 0
6751 && (flags & BSF_SECTION_SYM)
6752 && asym_ptr->section)
6753 {
5372391b 6754 asection *sec;
252b5132
RH
6755 int indx;
6756
5372391b
AM
6757 sec = asym_ptr->section;
6758 if (sec->owner != abfd && sec->output_section != NULL)
6759 sec = sec->output_section;
6760 if (sec->owner == abfd
6761 && (indx = sec->index) < elf_num_section_syms (abfd)
4e89ac30 6762 && elf_section_syms (abfd)[indx] != NULL)
252b5132
RH
6763 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6764 }
6765
6766 idx = asym_ptr->udata.i;
6767
6768 if (idx == 0)
6769 {
6770 /* This case can occur when using --strip-symbol on a symbol
08a40648 6771 which is used in a relocation entry. */
4eca0228 6772 _bfd_error_handler
695344c0 6773 /* xgettext:c-format */
871b3ab2 6774 (_("%pB: symbol `%s' required but not present"),
d003868e 6775 abfd, bfd_asymbol_name (asym_ptr));
252b5132
RH
6776 bfd_set_error (bfd_error_no_symbols);
6777 return -1;
6778 }
6779
6780#if DEBUG & 4
6781 {
6782 fprintf (stderr,
cd9af601
AM
6783 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6784 (long) asym_ptr, asym_ptr->name, idx, flags);
252b5132
RH
6785 fflush (stderr);
6786 }
6787#endif
6788
6789 return idx;
6790}
6791
84d1d650 6792/* Rewrite program header information. */
252b5132 6793
b34976b6 6794static bfd_boolean
84d1d650 6795rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
252b5132 6796{
b34976b6
AM
6797 Elf_Internal_Ehdr *iehdr;
6798 struct elf_segment_map *map;
6799 struct elf_segment_map *map_first;
6800 struct elf_segment_map **pointer_to_map;
6801 Elf_Internal_Phdr *segment;
6802 asection *section;
6803 unsigned int i;
6804 unsigned int num_segments;
6805 bfd_boolean phdr_included = FALSE;
5c44b38e 6806 bfd_boolean p_paddr_valid;
b34976b6
AM
6807 bfd_vma maxpagesize;
6808 struct elf_segment_map *phdr_adjust_seg = NULL;
6809 unsigned int phdr_adjust_num = 0;
9c5bfbb7 6810 const struct elf_backend_data *bed;
502794d4 6811 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
bc67d8a6 6812
caf47ea6 6813 bed = get_elf_backend_data (ibfd);
252b5132
RH
6814 iehdr = elf_elfheader (ibfd);
6815
bc67d8a6 6816 map_first = NULL;
c044fabd 6817 pointer_to_map = &map_first;
252b5132
RH
6818
6819 num_segments = elf_elfheader (ibfd)->e_phnum;
bc67d8a6
NC
6820 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6821
6822 /* Returns the end address of the segment + 1. */
aecc8f8a
AM
6823#define SEGMENT_END(segment, start) \
6824 (start + (segment->p_memsz > segment->p_filesz \
6825 ? segment->p_memsz : segment->p_filesz))
bc67d8a6 6826
eecdbe52
JJ
6827#define SECTION_SIZE(section, segment) \
6828 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6829 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
eea6121a 6830 ? section->size : 0)
eecdbe52 6831
b34976b6 6832 /* Returns TRUE if the given section is contained within
bc67d8a6 6833 the given segment. VMA addresses are compared. */
502794d4
CE
6834#define IS_CONTAINED_BY_VMA(section, segment, opb) \
6835 (section->vma * (opb) >= segment->p_vaddr \
6836 && (section->vma * (opb) + SECTION_SIZE (section, segment) \
aecc8f8a 6837 <= (SEGMENT_END (segment, segment->p_vaddr))))
c044fabd 6838
b34976b6 6839 /* Returns TRUE if the given section is contained within
bc67d8a6 6840 the given segment. LMA addresses are compared. */
502794d4
CE
6841#define IS_CONTAINED_BY_LMA(section, segment, base, opb) \
6842 (section->lma * (opb) >= base \
6843 && (section->lma + SECTION_SIZE (section, segment) / (opb) >= section->lma) \
6844 && (section->lma * (opb) + SECTION_SIZE (section, segment) \
aecc8f8a 6845 <= SEGMENT_END (segment, base)))
252b5132 6846
0efc80c8
L
6847 /* Handle PT_NOTE segment. */
6848#define IS_NOTE(p, s) \
aecc8f8a 6849 (p->p_type == PT_NOTE \
0efc80c8 6850 && elf_section_type (s) == SHT_NOTE \
aecc8f8a 6851 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6852 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6853 <= p->p_offset + p->p_filesz))
252b5132 6854
0efc80c8
L
6855 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6856 etc. */
6857#define IS_COREFILE_NOTE(p, s) \
6858 (IS_NOTE (p, s) \
6859 && bfd_get_format (ibfd) == bfd_core \
6860 && s->vma == 0 \
6861 && s->lma == 0)
6862
252b5132
RH
6863 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6864 linker, which generates a PT_INTERP section with p_vaddr and
6865 p_memsz set to 0. */
aecc8f8a
AM
6866#define IS_SOLARIS_PT_INTERP(p, s) \
6867 (p->p_vaddr == 0 \
6868 && p->p_paddr == 0 \
6869 && p->p_memsz == 0 \
6870 && p->p_filesz > 0 \
6871 && (s->flags & SEC_HAS_CONTENTS) != 0 \
eea6121a 6872 && s->size > 0 \
aecc8f8a 6873 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6874 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6875 <= p->p_offset + p->p_filesz))
5c440b1e 6876
bc67d8a6
NC
6877 /* Decide if the given section should be included in the given segment.
6878 A section will be included if:
f5ffc919 6879 1. It is within the address space of the segment -- we use the LMA
08a40648 6880 if that is set for the segment and the VMA otherwise,
0efc80c8 6881 2. It is an allocated section or a NOTE section in a PT_NOTE
d324f6d6 6882 segment.
bc67d8a6 6883 3. There is an output section associated with it,
eecdbe52 6884 4. The section has not already been allocated to a previous segment.
2b05f1b7 6885 5. PT_GNU_STACK segments do not include any sections.
03394ac9 6886 6. PT_TLS segment includes only SHF_TLS sections.
6f79b219
JJ
6887 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6888 8. PT_DYNAMIC should not contain empty sections at the beginning
08a40648 6889 (with the possible exception of .dynamic). */
502794d4 6890#define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed, opb) \
2b05f1b7 6891 ((((segment->p_paddr \
502794d4
CE
6892 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr, opb) \
6893 : IS_CONTAINED_BY_VMA (section, segment, opb)) \
2b05f1b7 6894 && (section->flags & SEC_ALLOC) != 0) \
0efc80c8 6895 || IS_NOTE (segment, section)) \
2b05f1b7
L
6896 && segment->p_type != PT_GNU_STACK \
6897 && (segment->p_type != PT_TLS \
6898 || (section->flags & SEC_THREAD_LOCAL)) \
6899 && (segment->p_type == PT_LOAD \
6900 || segment->p_type == PT_TLS \
6901 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6902 && (segment->p_type != PT_DYNAMIC \
6903 || SECTION_SIZE (section, segment) > 0 \
6904 || (segment->p_paddr \
502794d4
CE
6905 ? segment->p_paddr != section->lma * (opb) \
6906 : segment->p_vaddr != section->vma * (opb)) \
fd361982 6907 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
9933dc52 6908 && (segment->p_type != PT_LOAD || !section->segment_mark))
bc67d8a6 6909
9f17e2a6
L
6910/* If the output section of a section in the input segment is NULL,
6911 it is removed from the corresponding output segment. */
502794d4
CE
6912#define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed, opb) \
6913 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb) \
9f17e2a6
L
6914 && section->output_section != NULL)
6915
b34976b6 6916 /* Returns TRUE iff seg1 starts after the end of seg2. */
b5f852ea
NC
6917#define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6918 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6919
6920 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6921 their VMA address ranges and their LMA address ranges overlap.
6922 It is possible to have overlapping VMA ranges without overlapping LMA
6923 ranges. RedBoot images for example can have both .data and .bss mapped
6924 to the same VMA range, but with the .data section mapped to a different
6925 LMA. */
aecc8f8a 6926#define SEGMENT_OVERLAPS(seg1, seg2) \
b5f852ea 6927 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
08a40648 6928 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
b5f852ea 6929 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
08a40648 6930 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
bc67d8a6
NC
6931
6932 /* Initialise the segment mark field. */
6933 for (section = ibfd->sections; section != NULL; section = section->next)
b34976b6 6934 section->segment_mark = FALSE;
bc67d8a6 6935
5c44b38e
AM
6936 /* The Solaris linker creates program headers in which all the
6937 p_paddr fields are zero. When we try to objcopy or strip such a
6938 file, we get confused. Check for this case, and if we find it
6939 don't set the p_paddr_valid fields. */
6940 p_paddr_valid = FALSE;
6941 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6942 i < num_segments;
6943 i++, segment++)
6944 if (segment->p_paddr != 0)
6945 {
6946 p_paddr_valid = TRUE;
6947 break;
6948 }
6949
252b5132 6950 /* Scan through the segments specified in the program header
bc67d8a6 6951 of the input BFD. For this first scan we look for overlaps
9ad5cbcf 6952 in the loadable segments. These can be created by weird
aecc8f8a 6953 parameters to objcopy. Also, fix some solaris weirdness. */
bc67d8a6
NC
6954 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6955 i < num_segments;
c044fabd 6956 i++, segment++)
252b5132 6957 {
252b5132 6958 unsigned int j;
c044fabd 6959 Elf_Internal_Phdr *segment2;
252b5132 6960
aecc8f8a
AM
6961 if (segment->p_type == PT_INTERP)
6962 for (section = ibfd->sections; section; section = section->next)
6963 if (IS_SOLARIS_PT_INTERP (segment, section))
6964 {
6965 /* Mininal change so that the normal section to segment
4cc11e76 6966 assignment code will work. */
502794d4 6967 segment->p_vaddr = section->vma * opb;
aecc8f8a
AM
6968 break;
6969 }
6970
bc67d8a6 6971 if (segment->p_type != PT_LOAD)
b10a8ae0
L
6972 {
6973 /* Remove PT_GNU_RELRO segment. */
6974 if (segment->p_type == PT_GNU_RELRO)
6975 segment->p_type = PT_NULL;
6976 continue;
6977 }
c044fabd 6978
bc67d8a6 6979 /* Determine if this segment overlaps any previous segments. */
0067a569 6980 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
bc67d8a6
NC
6981 {
6982 bfd_signed_vma extra_length;
c044fabd 6983
bc67d8a6 6984 if (segment2->p_type != PT_LOAD
0067a569 6985 || !SEGMENT_OVERLAPS (segment, segment2))
bc67d8a6 6986 continue;
c044fabd 6987
bc67d8a6
NC
6988 /* Merge the two segments together. */
6989 if (segment2->p_vaddr < segment->p_vaddr)
6990 {
c044fabd 6991 /* Extend SEGMENT2 to include SEGMENT and then delete
08a40648 6992 SEGMENT. */
0067a569
AM
6993 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6994 - SEGMENT_END (segment2, segment2->p_vaddr));
c044fabd 6995
bc67d8a6
NC
6996 if (extra_length > 0)
6997 {
0067a569 6998 segment2->p_memsz += extra_length;
bc67d8a6
NC
6999 segment2->p_filesz += extra_length;
7000 }
c044fabd 7001
bc67d8a6 7002 segment->p_type = PT_NULL;
c044fabd 7003
bc67d8a6
NC
7004 /* Since we have deleted P we must restart the outer loop. */
7005 i = 0;
7006 segment = elf_tdata (ibfd)->phdr;
7007 break;
7008 }
7009 else
7010 {
c044fabd 7011 /* Extend SEGMENT to include SEGMENT2 and then delete
08a40648 7012 SEGMENT2. */
0067a569
AM
7013 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
7014 - SEGMENT_END (segment, segment->p_vaddr));
c044fabd 7015
bc67d8a6
NC
7016 if (extra_length > 0)
7017 {
0067a569 7018 segment->p_memsz += extra_length;
bc67d8a6
NC
7019 segment->p_filesz += extra_length;
7020 }
c044fabd 7021
bc67d8a6
NC
7022 segment2->p_type = PT_NULL;
7023 }
7024 }
7025 }
c044fabd 7026
bc67d8a6
NC
7027 /* The second scan attempts to assign sections to segments. */
7028 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7029 i < num_segments;
0067a569 7030 i++, segment++)
bc67d8a6 7031 {
0067a569
AM
7032 unsigned int section_count;
7033 asection **sections;
7034 asection *output_section;
7035 unsigned int isec;
9933dc52
AM
7036 asection *matching_lma;
7037 asection *suggested_lma;
0067a569 7038 unsigned int j;
446f7ed5 7039 size_t amt;
0067a569 7040 asection *first_section;
bc67d8a6
NC
7041
7042 if (segment->p_type == PT_NULL)
7043 continue;
c044fabd 7044
9f17e2a6 7045 first_section = NULL;
bc67d8a6 7046 /* Compute how many sections might be placed into this segment. */
b5f852ea
NC
7047 for (section = ibfd->sections, section_count = 0;
7048 section != NULL;
7049 section = section->next)
9f17e2a6
L
7050 {
7051 /* Find the first section in the input segment, which may be
7052 removed from the corresponding output segment. */
502794d4 7053 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb))
9f17e2a6
L
7054 {
7055 if (first_section == NULL)
7056 first_section = section;
7057 if (section->output_section != NULL)
7058 ++section_count;
7059 }
7060 }
811072d8 7061
b5f852ea
NC
7062 /* Allocate a segment map big enough to contain
7063 all of the sections we have selected. */
00bee008 7064 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7065 amt += section_count * sizeof (asection *);
a50b1753 7066 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7067 if (map == NULL)
b34976b6 7068 return FALSE;
252b5132
RH
7069
7070 /* Initialise the fields of the segment map. Default to
7071 using the physical address of the segment in the input BFD. */
0067a569
AM
7072 map->next = NULL;
7073 map->p_type = segment->p_type;
7074 map->p_flags = segment->p_flags;
bc67d8a6 7075 map->p_flags_valid = 1;
55d55ac7 7076
9f17e2a6
L
7077 /* If the first section in the input segment is removed, there is
7078 no need to preserve segment physical address in the corresponding
7079 output segment. */
945c025a 7080 if (!first_section || first_section->output_section != NULL)
9f17e2a6
L
7081 {
7082 map->p_paddr = segment->p_paddr;
5c44b38e 7083 map->p_paddr_valid = p_paddr_valid;
9f17e2a6 7084 }
252b5132
RH
7085
7086 /* Determine if this segment contains the ELF file header
7087 and if it contains the program headers themselves. */
bc67d8a6
NC
7088 map->includes_filehdr = (segment->p_offset == 0
7089 && segment->p_filesz >= iehdr->e_ehsize);
bc67d8a6 7090 map->includes_phdrs = 0;
252b5132 7091
0067a569 7092 if (!phdr_included || segment->p_type != PT_LOAD)
252b5132 7093 {
bc67d8a6
NC
7094 map->includes_phdrs =
7095 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7096 && (segment->p_offset + segment->p_filesz
252b5132
RH
7097 >= ((bfd_vma) iehdr->e_phoff
7098 + iehdr->e_phnum * iehdr->e_phentsize)));
c044fabd 7099
bc67d8a6 7100 if (segment->p_type == PT_LOAD && map->includes_phdrs)
b34976b6 7101 phdr_included = TRUE;
252b5132
RH
7102 }
7103
bc67d8a6 7104 if (section_count == 0)
252b5132
RH
7105 {
7106 /* Special segments, such as the PT_PHDR segment, may contain
7107 no sections, but ordinary, loadable segments should contain
1ed89aa9 7108 something. They are allowed by the ELF spec however, so only
07d6d2b8 7109 a warning is produced.
f98450c6
NC
7110 There is however the valid use case of embedded systems which
7111 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7112 flash memory with zeros. No warning is shown for that case. */
7113 if (segment->p_type == PT_LOAD
7114 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7115 /* xgettext:c-format */
9793eb77
AM
7116 _bfd_error_handler
7117 (_("%pB: warning: empty loadable segment detected"
7118 " at vaddr=%#" PRIx64 ", is this intentional?"),
7119 ibfd, (uint64_t) segment->p_vaddr);
252b5132 7120
502794d4 7121 map->p_vaddr_offset = segment->p_vaddr / opb;
bc67d8a6 7122 map->count = 0;
c044fabd
KH
7123 *pointer_to_map = map;
7124 pointer_to_map = &map->next;
252b5132
RH
7125
7126 continue;
7127 }
7128
7129 /* Now scan the sections in the input BFD again and attempt
7130 to add their corresponding output sections to the segment map.
7131 The problem here is how to handle an output section which has
7132 been moved (ie had its LMA changed). There are four possibilities:
7133
7134 1. None of the sections have been moved.
7135 In this case we can continue to use the segment LMA from the
7136 input BFD.
7137
7138 2. All of the sections have been moved by the same amount.
7139 In this case we can change the segment's LMA to match the LMA
7140 of the first section.
7141
7142 3. Some of the sections have been moved, others have not.
7143 In this case those sections which have not been moved can be
7144 placed in the current segment which will have to have its size,
7145 and possibly its LMA changed, and a new segment or segments will
7146 have to be created to contain the other sections.
7147
b5f852ea 7148 4. The sections have been moved, but not by the same amount.
252b5132
RH
7149 In this case we can change the segment's LMA to match the LMA
7150 of the first section and we will have to create a new segment
7151 or segments to contain the other sections.
7152
7153 In order to save time, we allocate an array to hold the section
7154 pointers that we are interested in. As these sections get assigned
7155 to a segment, they are removed from this array. */
7156
446f7ed5
AM
7157 amt = section_count * sizeof (asection *);
7158 sections = (asection **) bfd_malloc (amt);
252b5132 7159 if (sections == NULL)
b34976b6 7160 return FALSE;
252b5132
RH
7161
7162 /* Step One: Scan for segment vs section LMA conflicts.
7163 Also add the sections to the section array allocated above.
7164 Also add the sections to the current segment. In the common
7165 case, where the sections have not been moved, this means that
7166 we have completely filled the segment, and there is nothing
7167 more to do. */
252b5132 7168 isec = 0;
9933dc52
AM
7169 matching_lma = NULL;
7170 suggested_lma = NULL;
252b5132 7171
461c4b2e 7172 for (section = first_section, j = 0;
bc67d8a6
NC
7173 section != NULL;
7174 section = section->next)
252b5132 7175 {
502794d4 7176 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed, opb))
c0f7859b 7177 {
bc67d8a6
NC
7178 output_section = section->output_section;
7179
0067a569 7180 sections[j++] = section;
252b5132
RH
7181
7182 /* The Solaris native linker always sets p_paddr to 0.
7183 We try to catch that case here, and set it to the
5e8d7549
NC
7184 correct value. Note - some backends require that
7185 p_paddr be left as zero. */
5c44b38e 7186 if (!p_paddr_valid
4455705d 7187 && segment->p_vaddr != 0
0067a569 7188 && !bed->want_p_paddr_set_to_zero
252b5132 7189 && isec == 0
bc67d8a6 7190 && output_section->lma != 0
9933dc52
AM
7191 && (align_power (segment->p_vaddr
7192 + (map->includes_filehdr
7193 ? iehdr->e_ehsize : 0)
7194 + (map->includes_phdrs
7195 ? iehdr->e_phnum * iehdr->e_phentsize
7196 : 0),
66631823
CE
7197 output_section->alignment_power * opb)
7198 == (output_section->vma * opb)))
bc67d8a6 7199 map->p_paddr = segment->p_vaddr;
252b5132
RH
7200
7201 /* Match up the physical address of the segment with the
7202 LMA address of the output section. */
502794d4
CE
7203 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7204 opb)
5e8d7549 7205 || IS_COREFILE_NOTE (segment, section)
0067a569 7206 || (bed->want_p_paddr_set_to_zero
502794d4 7207 && IS_CONTAINED_BY_VMA (output_section, segment, opb)))
252b5132 7208 {
9933dc52
AM
7209 if (matching_lma == NULL
7210 || output_section->lma < matching_lma->lma)
7211 matching_lma = output_section;
252b5132
RH
7212
7213 /* We assume that if the section fits within the segment
bc67d8a6 7214 then it does not overlap any other section within that
252b5132 7215 segment. */
0067a569
AM
7216 map->sections[isec++] = output_section;
7217 }
9933dc52
AM
7218 else if (suggested_lma == NULL)
7219 suggested_lma = output_section;
147d51c2
L
7220
7221 if (j == section_count)
7222 break;
252b5132
RH
7223 }
7224 }
7225
bc67d8a6 7226 BFD_ASSERT (j == section_count);
252b5132
RH
7227
7228 /* Step Two: Adjust the physical address of the current segment,
7229 if necessary. */
bc67d8a6 7230 if (isec == section_count)
252b5132
RH
7231 {
7232 /* All of the sections fitted within the segment as currently
7233 specified. This is the default case. Add the segment to
7234 the list of built segments and carry on to process the next
7235 program header in the input BFD. */
bc67d8a6 7236 map->count = section_count;
c044fabd
KH
7237 *pointer_to_map = map;
7238 pointer_to_map = &map->next;
08a40648 7239
5c44b38e 7240 if (p_paddr_valid
30fe1832
AM
7241 && !bed->want_p_paddr_set_to_zero)
7242 {
7243 bfd_vma hdr_size = 0;
7244 if (map->includes_filehdr)
7245 hdr_size = iehdr->e_ehsize;
7246 if (map->includes_phdrs)
7247 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7248
7249 /* Account for padding before the first section in the
7250 segment. */
502794d4
CE
7251 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
7252 - matching_lma->lma);
30fe1832 7253 }
08a40648 7254
252b5132
RH
7255 free (sections);
7256 continue;
7257 }
252b5132
RH
7258 else
7259 {
9933dc52
AM
7260 /* Change the current segment's physical address to match
7261 the LMA of the first section that fitted, or if no
7262 section fitted, the first section. */
7263 if (matching_lma == NULL)
7264 matching_lma = suggested_lma;
7265
66631823 7266 map->p_paddr = matching_lma->lma * opb;
72730e0c 7267
bc67d8a6
NC
7268 /* Offset the segment physical address from the lma
7269 to allow for space taken up by elf headers. */
9933dc52 7270 if (map->includes_phdrs)
010c8431 7271 {
9933dc52
AM
7272 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7273
7274 /* iehdr->e_phnum is just an estimate of the number
7275 of program headers that we will need. Make a note
7276 here of the number we used and the segment we chose
7277 to hold these headers, so that we can adjust the
7278 offset when we know the correct value. */
7279 phdr_adjust_num = iehdr->e_phnum;
7280 phdr_adjust_seg = map;
010c8431 7281 }
252b5132 7282
9933dc52 7283 if (map->includes_filehdr)
bc67d8a6 7284 {
9933dc52
AM
7285 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7286 map->p_paddr -= iehdr->e_ehsize;
7287 /* We've subtracted off the size of headers from the
7288 first section lma, but there may have been some
7289 alignment padding before that section too. Try to
7290 account for that by adjusting the segment lma down to
7291 the same alignment. */
7292 if (segment->p_align != 0 && segment->p_align < align)
7293 align = segment->p_align;
66631823 7294 map->p_paddr &= -(align * opb);
bc67d8a6 7295 }
252b5132
RH
7296 }
7297
7298 /* Step Three: Loop over the sections again, this time assigning
caf47ea6 7299 those that fit to the current segment and removing them from the
252b5132
RH
7300 sections array; but making sure not to leave large gaps. Once all
7301 possible sections have been assigned to the current segment it is
7302 added to the list of built segments and if sections still remain
7303 to be assigned, a new segment is constructed before repeating
7304 the loop. */
7305 isec = 0;
7306 do
7307 {
bc67d8a6 7308 map->count = 0;
9933dc52 7309 suggested_lma = NULL;
252b5132
RH
7310
7311 /* Fill the current segment with sections that fit. */
bc67d8a6 7312 for (j = 0; j < section_count; j++)
252b5132 7313 {
bc67d8a6 7314 section = sections[j];
252b5132 7315
bc67d8a6 7316 if (section == NULL)
252b5132
RH
7317 continue;
7318
bc67d8a6 7319 output_section = section->output_section;
252b5132 7320
bc67d8a6 7321 BFD_ASSERT (output_section != NULL);
c044fabd 7322
502794d4
CE
7323 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7324 opb)
bc67d8a6 7325 || IS_COREFILE_NOTE (segment, section))
252b5132 7326 {
bc67d8a6 7327 if (map->count == 0)
252b5132
RH
7328 {
7329 /* If the first section in a segment does not start at
bc67d8a6
NC
7330 the beginning of the segment, then something is
7331 wrong. */
9933dc52
AM
7332 if (align_power (map->p_paddr
7333 + (map->includes_filehdr
7334 ? iehdr->e_ehsize : 0)
7335 + (map->includes_phdrs
7336 ? iehdr->e_phnum * iehdr->e_phentsize
7337 : 0),
66631823
CE
7338 output_section->alignment_power * opb)
7339 != output_section->lma * opb)
9aea1e31 7340 goto sorry;
252b5132
RH
7341 }
7342 else
7343 {
0067a569 7344 asection *prev_sec;
252b5132 7345
bc67d8a6 7346 prev_sec = map->sections[map->count - 1];
252b5132
RH
7347
7348 /* If the gap between the end of the previous section
bc67d8a6
NC
7349 and the start of this section is more than
7350 maxpagesize then we need to start a new segment. */
eea6121a 7351 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
079e9a2f 7352 maxpagesize)
caf47ea6 7353 < BFD_ALIGN (output_section->lma, maxpagesize))
0067a569 7354 || (prev_sec->lma + prev_sec->size
079e9a2f 7355 > output_section->lma))
252b5132 7356 {
9933dc52
AM
7357 if (suggested_lma == NULL)
7358 suggested_lma = output_section;
252b5132
RH
7359
7360 continue;
7361 }
7362 }
7363
bc67d8a6 7364 map->sections[map->count++] = output_section;
252b5132
RH
7365 ++isec;
7366 sections[j] = NULL;
9933dc52
AM
7367 if (segment->p_type == PT_LOAD)
7368 section->segment_mark = TRUE;
0067a569 7369 }
9933dc52
AM
7370 else if (suggested_lma == NULL)
7371 suggested_lma = output_section;
252b5132
RH
7372 }
7373
beab4532
NC
7374 /* PR 23932. A corrupt input file may contain sections that cannot
7375 be assigned to any segment - because for example they have a
9984857c
NC
7376 negative size - or segments that do not contain any sections.
7377 But there are also valid reasons why a segment can be empty.
7378 So allow a count of zero. */
252b5132
RH
7379
7380 /* Add the current segment to the list of built segments. */
c044fabd
KH
7381 *pointer_to_map = map;
7382 pointer_to_map = &map->next;
252b5132 7383
bc67d8a6 7384 if (isec < section_count)
252b5132
RH
7385 {
7386 /* We still have not allocated all of the sections to
7387 segments. Create a new segment here, initialise it
7388 and carry on looping. */
00bee008 7389 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7390 amt += section_count * sizeof (asection *);
5964fc3a 7391 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7392 if (map == NULL)
5ed6aba4
NC
7393 {
7394 free (sections);
7395 return FALSE;
7396 }
252b5132
RH
7397
7398 /* Initialise the fields of the segment map. Set the physical
7399 physical address to the LMA of the first section that has
7400 not yet been assigned. */
0067a569
AM
7401 map->next = NULL;
7402 map->p_type = segment->p_type;
7403 map->p_flags = segment->p_flags;
7404 map->p_flags_valid = 1;
66631823 7405 map->p_paddr = suggested_lma->lma * opb;
5c44b38e 7406 map->p_paddr_valid = p_paddr_valid;
bc67d8a6 7407 map->includes_filehdr = 0;
0067a569 7408 map->includes_phdrs = 0;
252b5132 7409 }
9984857c
NC
7410
7411 continue;
7412 sorry:
7413 bfd_set_error (bfd_error_sorry);
7414 free (sections);
7415 return FALSE;
252b5132 7416 }
bc67d8a6 7417 while (isec < section_count);
252b5132
RH
7418
7419 free (sections);
7420 }
7421
12bd6957 7422 elf_seg_map (obfd) = map_first;
bc67d8a6
NC
7423
7424 /* If we had to estimate the number of program headers that were
9ad5cbcf 7425 going to be needed, then check our estimate now and adjust
bc67d8a6
NC
7426 the offset if necessary. */
7427 if (phdr_adjust_seg != NULL)
7428 {
7429 unsigned int count;
c044fabd 7430
bc67d8a6 7431 for (count = 0, map = map_first; map != NULL; map = map->next)
c044fabd 7432 count++;
252b5132 7433
bc67d8a6
NC
7434 if (count > phdr_adjust_num)
7435 phdr_adjust_seg->p_paddr
7436 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
9933dc52
AM
7437
7438 for (map = map_first; map != NULL; map = map->next)
7439 if (map->p_type == PT_PHDR)
7440 {
7441 bfd_vma adjust
7442 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7443 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7444 break;
7445 }
bc67d8a6 7446 }
c044fabd 7447
bc67d8a6 7448#undef SEGMENT_END
eecdbe52 7449#undef SECTION_SIZE
bc67d8a6
NC
7450#undef IS_CONTAINED_BY_VMA
7451#undef IS_CONTAINED_BY_LMA
0efc80c8 7452#undef IS_NOTE
252b5132 7453#undef IS_COREFILE_NOTE
bc67d8a6 7454#undef IS_SOLARIS_PT_INTERP
9f17e2a6 7455#undef IS_SECTION_IN_INPUT_SEGMENT
bc67d8a6
NC
7456#undef INCLUDE_SECTION_IN_SEGMENT
7457#undef SEGMENT_AFTER_SEGMENT
7458#undef SEGMENT_OVERLAPS
b34976b6 7459 return TRUE;
252b5132
RH
7460}
7461
84d1d650
L
7462/* Copy ELF program header information. */
7463
7464static bfd_boolean
7465copy_elf_program_header (bfd *ibfd, bfd *obfd)
7466{
7467 Elf_Internal_Ehdr *iehdr;
7468 struct elf_segment_map *map;
7469 struct elf_segment_map *map_first;
7470 struct elf_segment_map **pointer_to_map;
7471 Elf_Internal_Phdr *segment;
7472 unsigned int i;
7473 unsigned int num_segments;
7474 bfd_boolean phdr_included = FALSE;
88967714 7475 bfd_boolean p_paddr_valid;
502794d4 7476 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
84d1d650
L
7477
7478 iehdr = elf_elfheader (ibfd);
7479
7480 map_first = NULL;
7481 pointer_to_map = &map_first;
7482
88967714
AM
7483 /* If all the segment p_paddr fields are zero, don't set
7484 map->p_paddr_valid. */
7485 p_paddr_valid = FALSE;
84d1d650 7486 num_segments = elf_elfheader (ibfd)->e_phnum;
88967714
AM
7487 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7488 i < num_segments;
7489 i++, segment++)
7490 if (segment->p_paddr != 0)
7491 {
7492 p_paddr_valid = TRUE;
7493 break;
7494 }
7495
84d1d650
L
7496 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7497 i < num_segments;
7498 i++, segment++)
7499 {
7500 asection *section;
7501 unsigned int section_count;
986f0783 7502 size_t amt;
84d1d650 7503 Elf_Internal_Shdr *this_hdr;
53020534 7504 asection *first_section = NULL;
a76e6f2f 7505 asection *lowest_section;
84d1d650 7506
84d1d650
L
7507 /* Compute how many sections are in this segment. */
7508 for (section = ibfd->sections, section_count = 0;
7509 section != NULL;
7510 section = section->next)
7511 {
7512 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7513 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
3271a814 7514 {
a76e6f2f
AM
7515 if (first_section == NULL)
7516 first_section = section;
3271a814
NS
7517 section_count++;
7518 }
84d1d650
L
7519 }
7520
7521 /* Allocate a segment map big enough to contain
7522 all of the sections we have selected. */
00bee008 7523 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
986f0783 7524 amt += section_count * sizeof (asection *);
a50b1753 7525 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
84d1d650
L
7526 if (map == NULL)
7527 return FALSE;
7528
7529 /* Initialize the fields of the output segment map with the
7530 input segment. */
7531 map->next = NULL;
7532 map->p_type = segment->p_type;
7533 map->p_flags = segment->p_flags;
7534 map->p_flags_valid = 1;
7535 map->p_paddr = segment->p_paddr;
88967714 7536 map->p_paddr_valid = p_paddr_valid;
3f570048
AM
7537 map->p_align = segment->p_align;
7538 map->p_align_valid = 1;
3271a814 7539 map->p_vaddr_offset = 0;
84d1d650 7540
04c3a755
NS
7541 if (map->p_type == PT_GNU_RELRO
7542 || map->p_type == PT_GNU_STACK)
b10a8ae0
L
7543 {
7544 /* The PT_GNU_RELRO segment may contain the first a few
7545 bytes in the .got.plt section even if the whole .got.plt
7546 section isn't in the PT_GNU_RELRO segment. We won't
04c3a755
NS
7547 change the size of the PT_GNU_RELRO segment.
7548 Similarly, PT_GNU_STACK size is significant on uclinux
7549 systems. */
9433b9b1 7550 map->p_size = segment->p_memsz;
b10a8ae0
L
7551 map->p_size_valid = 1;
7552 }
7553
84d1d650
L
7554 /* Determine if this segment contains the ELF file header
7555 and if it contains the program headers themselves. */
7556 map->includes_filehdr = (segment->p_offset == 0
7557 && segment->p_filesz >= iehdr->e_ehsize);
7558
7559 map->includes_phdrs = 0;
7560 if (! phdr_included || segment->p_type != PT_LOAD)
7561 {
7562 map->includes_phdrs =
7563 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7564 && (segment->p_offset + segment->p_filesz
7565 >= ((bfd_vma) iehdr->e_phoff
7566 + iehdr->e_phnum * iehdr->e_phentsize)));
7567
7568 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7569 phdr_included = TRUE;
7570 }
7571
bbefd0a9 7572 lowest_section = NULL;
84d1d650
L
7573 if (section_count != 0)
7574 {
7575 unsigned int isec = 0;
7576
53020534 7577 for (section = first_section;
84d1d650
L
7578 section != NULL;
7579 section = section->next)
7580 {
7581 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7582 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
53020534
L
7583 {
7584 map->sections[isec++] = section->output_section;
a76e6f2f
AM
7585 if ((section->flags & SEC_ALLOC) != 0)
7586 {
7587 bfd_vma seg_off;
7588
bbefd0a9
AM
7589 if (lowest_section == NULL
7590 || section->lma < lowest_section->lma)
fb8a5684
AM
7591 lowest_section = section;
7592
a76e6f2f
AM
7593 /* Section lmas are set up from PT_LOAD header
7594 p_paddr in _bfd_elf_make_section_from_shdr.
7595 If this header has a p_paddr that disagrees
7596 with the section lma, flag the p_paddr as
7597 invalid. */
7598 if ((section->flags & SEC_LOAD) != 0)
7599 seg_off = this_hdr->sh_offset - segment->p_offset;
7600 else
7601 seg_off = this_hdr->sh_addr - segment->p_vaddr;
502794d4 7602 if (section->lma * opb - segment->p_paddr != seg_off)
a76e6f2f
AM
7603 map->p_paddr_valid = FALSE;
7604 }
53020534
L
7605 if (isec == section_count)
7606 break;
7607 }
84d1d650
L
7608 }
7609 }
7610
5d695627 7611 if (section_count == 0)
502794d4 7612 map->p_vaddr_offset = segment->p_vaddr / opb;
30fe1832
AM
7613 else if (map->p_paddr_valid)
7614 {
7615 /* Account for padding before the first section in the segment. */
7616 bfd_vma hdr_size = 0;
7617 if (map->includes_filehdr)
7618 hdr_size = iehdr->e_ehsize;
7619 if (map->includes_phdrs)
7620 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7621
502794d4 7622 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
30fe1832
AM
7623 - (lowest_section ? lowest_section->lma : 0));
7624 }
a76e6f2f 7625
84d1d650
L
7626 map->count = section_count;
7627 *pointer_to_map = map;
7628 pointer_to_map = &map->next;
7629 }
7630
12bd6957 7631 elf_seg_map (obfd) = map_first;
84d1d650
L
7632 return TRUE;
7633}
7634
7635/* Copy private BFD data. This copies or rewrites ELF program header
7636 information. */
7637
7638static bfd_boolean
7639copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7640{
84d1d650
L
7641 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7642 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7643 return TRUE;
7644
7645 if (elf_tdata (ibfd)->phdr == NULL)
7646 return TRUE;
7647
7648 if (ibfd->xvec == obfd->xvec)
7649 {
cb3ff1e5
NC
7650 /* Check to see if any sections in the input BFD
7651 covered by ELF program header have changed. */
d55ce4e2 7652 Elf_Internal_Phdr *segment;
84d1d650
L
7653 asection *section, *osec;
7654 unsigned int i, num_segments;
7655 Elf_Internal_Shdr *this_hdr;
147d51c2
L
7656 const struct elf_backend_data *bed;
7657
7658 bed = get_elf_backend_data (ibfd);
7659
7660 /* Regenerate the segment map if p_paddr is set to 0. */
7661 if (bed->want_p_paddr_set_to_zero)
7662 goto rewrite;
84d1d650
L
7663
7664 /* Initialize the segment mark field. */
7665 for (section = obfd->sections; section != NULL;
7666 section = section->next)
7667 section->segment_mark = FALSE;
7668
7669 num_segments = elf_elfheader (ibfd)->e_phnum;
7670 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7671 i < num_segments;
7672 i++, segment++)
7673 {
5f6999aa
NC
7674 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7675 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7676 which severly confuses things, so always regenerate the segment
7677 map in this case. */
7678 if (segment->p_paddr == 0
7679 && segment->p_memsz == 0
7680 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
cb3ff1e5 7681 goto rewrite;
5f6999aa 7682
84d1d650
L
7683 for (section = ibfd->sections;
7684 section != NULL; section = section->next)
7685 {
7686 /* We mark the output section so that we know it comes
7687 from the input BFD. */
7688 osec = section->output_section;
7689 if (osec)
7690 osec->segment_mark = TRUE;
7691
7692 /* Check if this section is covered by the segment. */
7693 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7694 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
84d1d650
L
7695 {
7696 /* FIXME: Check if its output section is changed or
7697 removed. What else do we need to check? */
7698 if (osec == NULL
7699 || section->flags != osec->flags
7700 || section->lma != osec->lma
7701 || section->vma != osec->vma
7702 || section->size != osec->size
7703 || section->rawsize != osec->rawsize
7704 || section->alignment_power != osec->alignment_power)
7705 goto rewrite;
7706 }
7707 }
7708 }
7709
cb3ff1e5 7710 /* Check to see if any output section do not come from the
84d1d650
L
7711 input BFD. */
7712 for (section = obfd->sections; section != NULL;
7713 section = section->next)
7714 {
535b785f 7715 if (!section->segment_mark)
84d1d650
L
7716 goto rewrite;
7717 else
7718 section->segment_mark = FALSE;
7719 }
7720
7721 return copy_elf_program_header (ibfd, obfd);
7722 }
7723
dc1e8a47 7724 rewrite:
f1d85785
L
7725 if (ibfd->xvec == obfd->xvec)
7726 {
7727 /* When rewriting program header, set the output maxpagesize to
7728 the maximum alignment of input PT_LOAD segments. */
7729 Elf_Internal_Phdr *segment;
7730 unsigned int i;
7731 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7732 bfd_vma maxpagesize = 0;
7733
7734 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7735 i < num_segments;
7736 i++, segment++)
7737 if (segment->p_type == PT_LOAD
7738 && maxpagesize < segment->p_align)
c86934ce
NC
7739 {
7740 /* PR 17512: file: f17299af. */
7741 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
695344c0 7742 /* xgettext:c-format */
2dcf00ce
AM
7743 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7744 PRIx64 " is too large"),
7745 ibfd, (uint64_t) segment->p_align);
c86934ce
NC
7746 else
7747 maxpagesize = segment->p_align;
7748 }
f1d85785
L
7749
7750 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7751 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7752 }
7753
84d1d650
L
7754 return rewrite_elf_program_header (ibfd, obfd);
7755}
7756
ccd2ec6a
L
7757/* Initialize private output section information from input section. */
7758
7759bfd_boolean
7760_bfd_elf_init_private_section_data (bfd *ibfd,
7761 asection *isec,
7762 bfd *obfd,
7763 asection *osec,
7764 struct bfd_link_info *link_info)
7765
7766{
7767 Elf_Internal_Shdr *ihdr, *ohdr;
0e1862bb
L
7768 bfd_boolean final_link = (link_info != NULL
7769 && !bfd_link_relocatable (link_info));
ccd2ec6a
L
7770
7771 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7772 || obfd->xvec->flavour != bfd_target_elf_flavour)
7773 return TRUE;
7774
ba85c43e
NC
7775 BFD_ASSERT (elf_section_data (osec) != NULL);
7776
8c803a2d
AM
7777 /* If this is a known ABI section, ELF section type and flags may
7778 have been set up when OSEC was created. For normal sections we
7779 allow the user to override the type and flags other than
7780 SHF_MASKOS and SHF_MASKPROC. */
7781 if (elf_section_type (osec) == SHT_PROGBITS
7782 || elf_section_type (osec) == SHT_NOTE
7783 || elf_section_type (osec) == SHT_NOBITS)
7784 elf_section_type (osec) = SHT_NULL;
7785 /* For objcopy and relocatable link, copy the ELF section type from
7786 the input file if the BFD section flags are the same. (If they
7787 are different the user may be doing something like
7788 "objcopy --set-section-flags .text=alloc,data".) For a final
7789 link allow some flags that the linker clears to differ. */
42bb2e33 7790 if (elf_section_type (osec) == SHT_NULL
dfa7b0b8
AM
7791 && (osec->flags == isec->flags
7792 || (final_link
7793 && ((osec->flags ^ isec->flags)
0814be7d 7794 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
42bb2e33 7795 elf_section_type (osec) = elf_section_type (isec);
d270463e
L
7796
7797 /* FIXME: Is this correct for all OS/PROC specific flags? */
8c803a2d
AM
7798 elf_section_flags (osec) = (elf_section_flags (isec)
7799 & (SHF_MASKOS | SHF_MASKPROC));
ccd2ec6a 7800
a91e1603 7801 /* Copy sh_info from input for mbind section. */
df3a023b
AM
7802 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7803 && elf_section_flags (isec) & SHF_GNU_MBIND)
a91e1603
L
7804 elf_section_data (osec)->this_hdr.sh_info
7805 = elf_section_data (isec)->this_hdr.sh_info;
7806
ccd2ec6a
L
7807 /* Set things up for objcopy and relocatable link. The output
7808 SHT_GROUP section will have its elf_next_in_group pointing back
7809 to the input group members. Ignore linker created group section.
7810 See elfNN_ia64_object_p in elfxx-ia64.c. */
7bdf4127
AB
7811 if ((link_info == NULL
7812 || !link_info->resolve_section_groups)
7813 && (elf_sec_group (isec) == NULL
7814 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
ccd2ec6a 7815 {
7bdf4127
AB
7816 if (elf_section_flags (isec) & SHF_GROUP)
7817 elf_section_flags (osec) |= SHF_GROUP;
7818 elf_next_in_group (osec) = elf_next_in_group (isec);
7819 elf_section_data (osec)->group = elf_section_data (isec)->group;
ccd2ec6a
L
7820 }
7821
7bdf4127
AB
7822 /* If not decompress, preserve SHF_COMPRESSED. */
7823 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7824 elf_section_flags (osec) |= (elf_section_flags (isec)
7825 & SHF_COMPRESSED);
7826
ccd2ec6a
L
7827 ihdr = &elf_section_data (isec)->this_hdr;
7828
7829 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7830 don't use the output section of the linked-to section since it
7831 may be NULL at this point. */
7832 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7833 {
7834 ohdr = &elf_section_data (osec)->this_hdr;
7835 ohdr->sh_flags |= SHF_LINK_ORDER;
7836 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7837 }
7838
7839 osec->use_rela_p = isec->use_rela_p;
7840
7841 return TRUE;
7842}
7843
252b5132
RH
7844/* Copy private section information. This copies over the entsize
7845 field, and sometimes the info field. */
7846
b34976b6 7847bfd_boolean
217aa764
AM
7848_bfd_elf_copy_private_section_data (bfd *ibfd,
7849 asection *isec,
7850 bfd *obfd,
7851 asection *osec)
252b5132
RH
7852{
7853 Elf_Internal_Shdr *ihdr, *ohdr;
7854
7855 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7856 || obfd->xvec->flavour != bfd_target_elf_flavour)
b34976b6 7857 return TRUE;
252b5132 7858
252b5132
RH
7859 ihdr = &elf_section_data (isec)->this_hdr;
7860 ohdr = &elf_section_data (osec)->this_hdr;
7861
7862 ohdr->sh_entsize = ihdr->sh_entsize;
7863
7864 if (ihdr->sh_type == SHT_SYMTAB
7865 || ihdr->sh_type == SHT_DYNSYM
7866 || ihdr->sh_type == SHT_GNU_verneed
7867 || ihdr->sh_type == SHT_GNU_verdef)
7868 ohdr->sh_info = ihdr->sh_info;
7869
ccd2ec6a
L
7870 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7871 NULL);
252b5132
RH
7872}
7873
d0bf826b
AM
7874/* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7875 necessary if we are removing either the SHT_GROUP section or any of
7876 the group member sections. DISCARDED is the value that a section's
7877 output_section has if the section will be discarded, NULL when this
7878 function is called from objcopy, bfd_abs_section_ptr when called
7879 from the linker. */
80fccad2
BW
7880
7881bfd_boolean
d0bf826b 7882_bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
80fccad2 7883{
30288845
AM
7884 asection *isec;
7885
30288845 7886 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
415f38a6 7887 if (elf_section_type (isec) == SHT_GROUP)
30288845
AM
7888 {
7889 asection *first = elf_next_in_group (isec);
7890 asection *s = first;
d0bf826b
AM
7891 bfd_size_type removed = 0;
7892
30288845
AM
7893 while (s != NULL)
7894 {
415f38a6
AM
7895 /* If this member section is being output but the
7896 SHT_GROUP section is not, then clear the group info
7897 set up by _bfd_elf_copy_private_section_data. */
d0bf826b
AM
7898 if (s->output_section != discarded
7899 && isec->output_section == discarded)
30288845
AM
7900 {
7901 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7902 elf_group_name (s->output_section) = NULL;
7903 }
415f38a6
AM
7904 /* Conversely, if the member section is not being output
7905 but the SHT_GROUP section is, then adjust its size. */
d0bf826b
AM
7906 else if (s->output_section == discarded
7907 && isec->output_section != discarded)
6e5e9d58
AM
7908 {
7909 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7910 removed += 4;
7911 if (elf_sec->rel.hdr != NULL
7912 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7913 removed += 4;
7914 if (elf_sec->rela.hdr != NULL
7915 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7916 removed += 4;
7917 }
30288845
AM
7918 s = elf_next_in_group (s);
7919 if (s == first)
7920 break;
7921 }
d0bf826b
AM
7922 if (removed != 0)
7923 {
7924 if (discarded != NULL)
7925 {
7926 /* If we've been called for ld -r, then we need to
6e5e9d58 7927 adjust the input section size. */
d0bf826b
AM
7928 if (isec->rawsize == 0)
7929 isec->rawsize = isec->size;
7930 isec->size = isec->rawsize - removed;
6e5e9d58
AM
7931 if (isec->size <= 4)
7932 {
7933 isec->size = 0;
7934 isec->flags |= SEC_EXCLUDE;
7935 }
d0bf826b
AM
7936 }
7937 else
7938 {
7939 /* Adjust the output section size when called from
7940 objcopy. */
7941 isec->output_section->size -= removed;
6e5e9d58
AM
7942 if (isec->output_section->size <= 4)
7943 {
7944 isec->output_section->size = 0;
7945 isec->output_section->flags |= SEC_EXCLUDE;
7946 }
d0bf826b
AM
7947 }
7948 }
30288845
AM
7949 }
7950
80fccad2
BW
7951 return TRUE;
7952}
7953
d0bf826b
AM
7954/* Copy private header information. */
7955
7956bfd_boolean
7957_bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7958{
7959 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7960 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7961 return TRUE;
7962
7963 /* Copy over private BFD data if it has not already been copied.
7964 This must be done here, rather than in the copy_private_bfd_data
7965 entry point, because the latter is called after the section
7966 contents have been set, which means that the program headers have
7967 already been worked out. */
12bd6957 7968 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
d0bf826b
AM
7969 {
7970 if (! copy_private_bfd_data (ibfd, obfd))
7971 return FALSE;
7972 }
7973
7974 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7975}
7976
252b5132
RH
7977/* Copy private symbol information. If this symbol is in a section
7978 which we did not map into a BFD section, try to map the section
7979 index correctly. We use special macro definitions for the mapped
7980 section indices; these definitions are interpreted by the
7981 swap_out_syms function. */
7982
9ad5cbcf
AM
7983#define MAP_ONESYMTAB (SHN_HIOS + 1)
7984#define MAP_DYNSYMTAB (SHN_HIOS + 2)
7985#define MAP_STRTAB (SHN_HIOS + 3)
7986#define MAP_SHSTRTAB (SHN_HIOS + 4)
7987#define MAP_SYM_SHNDX (SHN_HIOS + 5)
252b5132 7988
b34976b6 7989bfd_boolean
217aa764
AM
7990_bfd_elf_copy_private_symbol_data (bfd *ibfd,
7991 asymbol *isymarg,
7992 bfd *obfd,
7993 asymbol *osymarg)
252b5132
RH
7994{
7995 elf_symbol_type *isym, *osym;
7996
7997 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7998 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 7999 return TRUE;
252b5132
RH
8000
8001 isym = elf_symbol_from (ibfd, isymarg);
8002 osym = elf_symbol_from (obfd, osymarg);
8003
8004 if (isym != NULL
8424d8f5 8005 && isym->internal_elf_sym.st_shndx != 0
252b5132
RH
8006 && osym != NULL
8007 && bfd_is_abs_section (isym->symbol.section))
8008 {
8009 unsigned int shndx;
8010
8011 shndx = isym->internal_elf_sym.st_shndx;
8012 if (shndx == elf_onesymtab (ibfd))
8013 shndx = MAP_ONESYMTAB;
8014 else if (shndx == elf_dynsymtab (ibfd))
8015 shndx = MAP_DYNSYMTAB;
12bd6957 8016 else if (shndx == elf_strtab_sec (ibfd))
252b5132 8017 shndx = MAP_STRTAB;
12bd6957 8018 else if (shndx == elf_shstrtab_sec (ibfd))
252b5132 8019 shndx = MAP_SHSTRTAB;
6a40cf0c 8020 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
9ad5cbcf 8021 shndx = MAP_SYM_SHNDX;
252b5132
RH
8022 osym->internal_elf_sym.st_shndx = shndx;
8023 }
8024
b34976b6 8025 return TRUE;
252b5132
RH
8026}
8027
8028/* Swap out the symbols. */
8029
b34976b6 8030static bfd_boolean
217aa764 8031swap_out_syms (bfd *abfd,
ef10c3ac 8032 struct elf_strtab_hash **sttp,
217aa764 8033 int relocatable_p)
252b5132 8034{
9c5bfbb7 8035 const struct elf_backend_data *bed;
1f4361a7 8036 unsigned int symcount;
079e9a2f 8037 asymbol **syms;
ef10c3ac 8038 struct elf_strtab_hash *stt;
079e9a2f 8039 Elf_Internal_Shdr *symtab_hdr;
9ad5cbcf 8040 Elf_Internal_Shdr *symtab_shndx_hdr;
079e9a2f 8041 Elf_Internal_Shdr *symstrtab_hdr;
ef10c3ac 8042 struct elf_sym_strtab *symstrtab;
f075ee0c
AM
8043 bfd_byte *outbound_syms;
8044 bfd_byte *outbound_shndx;
ef10c3ac
L
8045 unsigned long outbound_syms_index;
8046 unsigned long outbound_shndx_index;
1f4361a7 8047 unsigned int idx;
12bd6957 8048 unsigned int num_locals;
1f4361a7 8049 size_t amt;
174fd7f9 8050 bfd_boolean name_local_sections;
252b5132 8051
12bd6957 8052 if (!elf_map_symbols (abfd, &num_locals))
b34976b6 8053 return FALSE;
252b5132 8054
c044fabd 8055 /* Dump out the symtabs. */
ef10c3ac 8056 stt = _bfd_elf_strtab_init ();
079e9a2f 8057 if (stt == NULL)
b34976b6 8058 return FALSE;
252b5132 8059
079e9a2f
AM
8060 bed = get_elf_backend_data (abfd);
8061 symcount = bfd_get_symcount (abfd);
8062 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8063 symtab_hdr->sh_type = SHT_SYMTAB;
8064 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8065 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
12bd6957 8066 symtab_hdr->sh_info = num_locals + 1;
72de5009 8067 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
079e9a2f
AM
8068
8069 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8070 symstrtab_hdr->sh_type = SHT_STRTAB;
8071
ef10c3ac 8072 /* Allocate buffer to swap out the .strtab section. */
1f4361a7
AM
8073 if (_bfd_mul_overflow (symcount + 1, sizeof (*symstrtab), &amt)
8074 || (symstrtab = (struct elf_sym_strtab *) bfd_malloc (amt)) == NULL)
ef10c3ac 8075 {
1f4361a7 8076 bfd_set_error (bfd_error_no_memory);
ef10c3ac
L
8077 _bfd_elf_strtab_free (stt);
8078 return FALSE;
8079 }
8080
1f4361a7
AM
8081 if (_bfd_mul_overflow (symcount + 1, bed->s->sizeof_sym, &amt)
8082 || (outbound_syms = (bfd_byte *) bfd_alloc (abfd, amt)) == NULL)
5ed6aba4 8083 {
1f4361a7
AM
8084 error_no_mem:
8085 bfd_set_error (bfd_error_no_memory);
8086 error_return:
ef10c3ac 8087 free (symstrtab);
1f4361a7 8088 _bfd_elf_strtab_free (stt);
5ed6aba4
NC
8089 return FALSE;
8090 }
217aa764 8091 symtab_hdr->contents = outbound_syms;
ef10c3ac 8092 outbound_syms_index = 0;
252b5132 8093
9ad5cbcf 8094 outbound_shndx = NULL;
ef10c3ac 8095 outbound_shndx_index = 0;
6a40cf0c
NC
8096
8097 if (elf_symtab_shndx_list (abfd))
9ad5cbcf 8098 {
6a40cf0c
NC
8099 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8100 if (symtab_shndx_hdr->sh_name != 0)
8101 {
1f4361a7
AM
8102 if (_bfd_mul_overflow (symcount + 1,
8103 sizeof (Elf_External_Sym_Shndx), &amt))
8104 goto error_no_mem;
8105 outbound_shndx = (bfd_byte *) bfd_zalloc (abfd, amt);
6a40cf0c
NC
8106 if (outbound_shndx == NULL)
8107 goto error_return;
5ed6aba4 8108
6a40cf0c
NC
8109 symtab_shndx_hdr->contents = outbound_shndx;
8110 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8111 symtab_shndx_hdr->sh_size = amt;
8112 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8113 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8114 }
8115 /* FIXME: What about any other headers in the list ? */
9ad5cbcf
AM
8116 }
8117
589e6347 8118 /* Now generate the data (for "contents"). */
079e9a2f
AM
8119 {
8120 /* Fill in zeroth symbol and swap it out. */
8121 Elf_Internal_Sym sym;
8122 sym.st_name = 0;
8123 sym.st_value = 0;
8124 sym.st_size = 0;
8125 sym.st_info = 0;
8126 sym.st_other = 0;
8127 sym.st_shndx = SHN_UNDEF;
35fc36a8 8128 sym.st_target_internal = 0;
ef10c3ac
L
8129 symstrtab[0].sym = sym;
8130 symstrtab[0].dest_index = outbound_syms_index;
8131 symstrtab[0].destshndx_index = outbound_shndx_index;
8132 outbound_syms_index++;
9ad5cbcf 8133 if (outbound_shndx != NULL)
ef10c3ac 8134 outbound_shndx_index++;
079e9a2f 8135 }
252b5132 8136
174fd7f9
RS
8137 name_local_sections
8138 = (bed->elf_backend_name_local_section_symbols
8139 && bed->elf_backend_name_local_section_symbols (abfd));
8140
079e9a2f 8141 syms = bfd_get_outsymbols (abfd);
ef10c3ac 8142 for (idx = 0; idx < symcount;)
252b5132 8143 {
252b5132 8144 Elf_Internal_Sym sym;
079e9a2f
AM
8145 bfd_vma value = syms[idx]->value;
8146 elf_symbol_type *type_ptr;
8147 flagword flags = syms[idx]->flags;
8148 int type;
252b5132 8149
174fd7f9
RS
8150 if (!name_local_sections
8151 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
079e9a2f
AM
8152 {
8153 /* Local section symbols have no name. */
ef10c3ac 8154 sym.st_name = (unsigned long) -1;
079e9a2f
AM
8155 }
8156 else
8157 {
ef10c3ac
L
8158 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8159 to get the final offset for st_name. */
8160 sym.st_name
8161 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
8162 FALSE);
079e9a2f 8163 if (sym.st_name == (unsigned long) -1)
ef10c3ac 8164 goto error_return;
079e9a2f 8165 }
252b5132 8166
079e9a2f 8167 type_ptr = elf_symbol_from (abfd, syms[idx]);
252b5132 8168
079e9a2f
AM
8169 if ((flags & BSF_SECTION_SYM) == 0
8170 && bfd_is_com_section (syms[idx]->section))
8171 {
8172 /* ELF common symbols put the alignment into the `value' field,
8173 and the size into the `size' field. This is backwards from
8174 how BFD handles it, so reverse it here. */
8175 sym.st_size = value;
8176 if (type_ptr == NULL
8177 || type_ptr->internal_elf_sym.st_value == 0)
8178 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8179 else
8180 sym.st_value = type_ptr->internal_elf_sym.st_value;
8181 sym.st_shndx = _bfd_elf_section_from_bfd_section
8182 (abfd, syms[idx]->section);
8183 }
8184 else
8185 {
8186 asection *sec = syms[idx]->section;
cb33740c 8187 unsigned int shndx;
252b5132 8188
079e9a2f
AM
8189 if (sec->output_section)
8190 {
8191 value += sec->output_offset;
8192 sec = sec->output_section;
8193 }
589e6347 8194
079e9a2f
AM
8195 /* Don't add in the section vma for relocatable output. */
8196 if (! relocatable_p)
8197 value += sec->vma;
8198 sym.st_value = value;
8199 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8200
8201 if (bfd_is_abs_section (sec)
8202 && type_ptr != NULL
8203 && type_ptr->internal_elf_sym.st_shndx != 0)
8204 {
8205 /* This symbol is in a real ELF section which we did
8206 not create as a BFD section. Undo the mapping done
8207 by copy_private_symbol_data. */
8208 shndx = type_ptr->internal_elf_sym.st_shndx;
8209 switch (shndx)
8210 {
8211 case MAP_ONESYMTAB:
8212 shndx = elf_onesymtab (abfd);
8213 break;
8214 case MAP_DYNSYMTAB:
8215 shndx = elf_dynsymtab (abfd);
8216 break;
8217 case MAP_STRTAB:
12bd6957 8218 shndx = elf_strtab_sec (abfd);
079e9a2f
AM
8219 break;
8220 case MAP_SHSTRTAB:
12bd6957 8221 shndx = elf_shstrtab_sec (abfd);
079e9a2f 8222 break;
9ad5cbcf 8223 case MAP_SYM_SHNDX:
6a40cf0c
NC
8224 if (elf_symtab_shndx_list (abfd))
8225 shndx = elf_symtab_shndx_list (abfd)->ndx;
9ad5cbcf 8226 break;
00e49dff
NC
8227 case SHN_COMMON:
8228 case SHN_ABS:
15bc576a 8229 shndx = SHN_ABS;
079e9a2f 8230 break;
00e49dff
NC
8231 default:
8232 if (shndx >= SHN_LOPROC && shndx <= SHN_HIOS)
8233 {
8234 if (bed->symbol_section_index)
8235 shndx = bed->symbol_section_index (abfd, type_ptr);
8236 /* Otherwise just leave the index alone. */
8237 }
8238 else
8239 {
8240 if (shndx > SHN_HIOS && shndx < SHN_HIRESERVE)
8241 _bfd_error_handler (_("%pB: \
8242Unable to handle section index %x in ELF symbol. Using ABS instead."),
8243 abfd, shndx);
8244 shndx = SHN_ABS;
8245 }
8246 break;
079e9a2f
AM
8247 }
8248 }
8249 else
8250 {
8251 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
252b5132 8252
cb33740c 8253 if (shndx == SHN_BAD)
079e9a2f
AM
8254 {
8255 asection *sec2;
8256
8257 /* Writing this would be a hell of a lot easier if
8258 we had some decent documentation on bfd, and
8259 knew what to expect of the library, and what to
8260 demand of applications. For example, it
8261 appears that `objcopy' might not set the
8262 section of a symbol to be a section that is
8263 actually in the output file. */
8264 sec2 = bfd_get_section_by_name (abfd, sec->name);
5df1bc57
AM
8265 if (sec2 != NULL)
8266 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8267 if (shndx == SHN_BAD)
589e6347 8268 {
695344c0 8269 /* xgettext:c-format */
9793eb77
AM
8270 _bfd_error_handler
8271 (_("unable to find equivalent output section"
8272 " for symbol '%s' from section '%s'"),
8273 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8274 sec->name);
811072d8 8275 bfd_set_error (bfd_error_invalid_operation);
ef10c3ac 8276 goto error_return;
589e6347 8277 }
079e9a2f
AM
8278 }
8279 }
252b5132 8280
079e9a2f
AM
8281 sym.st_shndx = shndx;
8282 }
252b5132 8283
13ae64f3
JJ
8284 if ((flags & BSF_THREAD_LOCAL) != 0)
8285 type = STT_TLS;
d8045f23
NC
8286 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8287 type = STT_GNU_IFUNC;
13ae64f3 8288 else if ((flags & BSF_FUNCTION) != 0)
079e9a2f
AM
8289 type = STT_FUNC;
8290 else if ((flags & BSF_OBJECT) != 0)
8291 type = STT_OBJECT;
d9352518
DB
8292 else if ((flags & BSF_RELC) != 0)
8293 type = STT_RELC;
8294 else if ((flags & BSF_SRELC) != 0)
8295 type = STT_SRELC;
079e9a2f
AM
8296 else
8297 type = STT_NOTYPE;
252b5132 8298
13ae64f3
JJ
8299 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8300 type = STT_TLS;
8301
589e6347 8302 /* Processor-specific types. */
079e9a2f
AM
8303 if (type_ptr != NULL
8304 && bed->elf_backend_get_symbol_type)
8305 type = ((*bed->elf_backend_get_symbol_type)
8306 (&type_ptr->internal_elf_sym, type));
252b5132 8307
079e9a2f
AM
8308 if (flags & BSF_SECTION_SYM)
8309 {
8310 if (flags & BSF_GLOBAL)
8311 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8312 else
8313 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8314 }
8315 else if (bfd_is_com_section (syms[idx]->section))
0a40daed 8316 {
b8871f35
L
8317 if (type != STT_TLS)
8318 {
8319 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8320 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8321 ? STT_COMMON : STT_OBJECT);
8322 else
8323 type = ((flags & BSF_ELF_COMMON) != 0
8324 ? STT_COMMON : STT_OBJECT);
8325 }
8326 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
0a40daed 8327 }
079e9a2f
AM
8328 else if (bfd_is_und_section (syms[idx]->section))
8329 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8330 ? STB_WEAK
8331 : STB_GLOBAL),
8332 type);
8333 else if (flags & BSF_FILE)
8334 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8335 else
8336 {
8337 int bind = STB_LOCAL;
252b5132 8338
079e9a2f
AM
8339 if (flags & BSF_LOCAL)
8340 bind = STB_LOCAL;
3e7a7d11
NC
8341 else if (flags & BSF_GNU_UNIQUE)
8342 bind = STB_GNU_UNIQUE;
079e9a2f
AM
8343 else if (flags & BSF_WEAK)
8344 bind = STB_WEAK;
8345 else if (flags & BSF_GLOBAL)
8346 bind = STB_GLOBAL;
252b5132 8347
079e9a2f
AM
8348 sym.st_info = ELF_ST_INFO (bind, type);
8349 }
252b5132 8350
079e9a2f 8351 if (type_ptr != NULL)
35fc36a8
RS
8352 {
8353 sym.st_other = type_ptr->internal_elf_sym.st_other;
8354 sym.st_target_internal
8355 = type_ptr->internal_elf_sym.st_target_internal;
8356 }
079e9a2f 8357 else
35fc36a8
RS
8358 {
8359 sym.st_other = 0;
8360 sym.st_target_internal = 0;
8361 }
252b5132 8362
ef10c3ac
L
8363 idx++;
8364 symstrtab[idx].sym = sym;
8365 symstrtab[idx].dest_index = outbound_syms_index;
8366 symstrtab[idx].destshndx_index = outbound_shndx_index;
8367
8368 outbound_syms_index++;
9ad5cbcf 8369 if (outbound_shndx != NULL)
ef10c3ac
L
8370 outbound_shndx_index++;
8371 }
8372
8373 /* Finalize the .strtab section. */
8374 _bfd_elf_strtab_finalize (stt);
8375
8376 /* Swap out the .strtab section. */
8377 for (idx = 0; idx <= symcount; idx++)
8378 {
8379 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8380 if (elfsym->sym.st_name == (unsigned long) -1)
8381 elfsym->sym.st_name = 0;
8382 else
8383 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8384 elfsym->sym.st_name);
8385 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8386 (outbound_syms
8387 + (elfsym->dest_index
8388 * bed->s->sizeof_sym)),
8389 (outbound_shndx
8390 + (elfsym->destshndx_index
8391 * sizeof (Elf_External_Sym_Shndx))));
079e9a2f 8392 }
ef10c3ac 8393 free (symstrtab);
252b5132 8394
079e9a2f 8395 *sttp = stt;
ef10c3ac 8396 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
079e9a2f 8397 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 8398 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
079e9a2f
AM
8399 symstrtab_hdr->sh_addr = 0;
8400 symstrtab_hdr->sh_entsize = 0;
8401 symstrtab_hdr->sh_link = 0;
8402 symstrtab_hdr->sh_info = 0;
8403 symstrtab_hdr->sh_addralign = 1;
252b5132 8404
b34976b6 8405 return TRUE;
252b5132
RH
8406}
8407
8408/* Return the number of bytes required to hold the symtab vector.
8409
8410 Note that we base it on the count plus 1, since we will null terminate
8411 the vector allocated based on this size. However, the ELF symbol table
8412 always has a dummy entry as symbol #0, so it ends up even. */
8413
8414long
217aa764 8415_bfd_elf_get_symtab_upper_bound (bfd *abfd)
252b5132 8416{
3a551c7a 8417 bfd_size_type symcount;
252b5132
RH
8418 long symtab_size;
8419 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8420
8421 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8422 if (symcount >= LONG_MAX / sizeof (asymbol *))
8423 {
8424 bfd_set_error (bfd_error_file_too_big);
8425 return -1;
8426 }
b99d1833
AM
8427 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8428 if (symcount > 0)
8429 symtab_size -= sizeof (asymbol *);
252b5132
RH
8430
8431 return symtab_size;
8432}
8433
8434long
217aa764 8435_bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
252b5132 8436{
3a551c7a 8437 bfd_size_type symcount;
252b5132
RH
8438 long symtab_size;
8439 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8440
8441 if (elf_dynsymtab (abfd) == 0)
8442 {
8443 bfd_set_error (bfd_error_invalid_operation);
8444 return -1;
8445 }
8446
8447 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8448 if (symcount >= LONG_MAX / sizeof (asymbol *))
8449 {
8450 bfd_set_error (bfd_error_file_too_big);
8451 return -1;
8452 }
b99d1833
AM
8453 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8454 if (symcount > 0)
8455 symtab_size -= sizeof (asymbol *);
252b5132
RH
8456
8457 return symtab_size;
8458}
8459
8460long
217aa764
AM
8461_bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
8462 sec_ptr asect)
252b5132 8463{
242a1159 8464#if SIZEOF_LONG == SIZEOF_INT
7a6e0d89
AM
8465 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8466 {
8467 bfd_set_error (bfd_error_file_too_big);
8468 return -1;
8469 }
242a1159 8470#endif
252b5132
RH
8471 return (asect->reloc_count + 1) * sizeof (arelent *);
8472}
8473
8474/* Canonicalize the relocs. */
8475
8476long
217aa764
AM
8477_bfd_elf_canonicalize_reloc (bfd *abfd,
8478 sec_ptr section,
8479 arelent **relptr,
8480 asymbol **symbols)
252b5132
RH
8481{
8482 arelent *tblptr;
8483 unsigned int i;
9c5bfbb7 8484 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 8485
b34976b6 8486 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
252b5132
RH
8487 return -1;
8488
8489 tblptr = section->relocation;
8490 for (i = 0; i < section->reloc_count; i++)
8491 *relptr++ = tblptr++;
8492
8493 *relptr = NULL;
8494
8495 return section->reloc_count;
8496}
8497
8498long
6cee3f79 8499_bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
252b5132 8500{
9c5bfbb7 8501 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8502 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
252b5132
RH
8503
8504 if (symcount >= 0)
ed48ec2e 8505 abfd->symcount = symcount;
252b5132
RH
8506 return symcount;
8507}
8508
8509long
217aa764
AM
8510_bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8511 asymbol **allocation)
252b5132 8512{
9c5bfbb7 8513 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8514 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
1f70368c
DJ
8515
8516 if (symcount >= 0)
ed48ec2e 8517 abfd->dynsymcount = symcount;
1f70368c 8518 return symcount;
252b5132
RH
8519}
8520
8615f3f2
AM
8521/* Return the size required for the dynamic reloc entries. Any loadable
8522 section that was actually installed in the BFD, and has type SHT_REL
8523 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8524 dynamic reloc section. */
252b5132
RH
8525
8526long
217aa764 8527_bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
252b5132 8528{
3a551c7a 8529 bfd_size_type count;
252b5132
RH
8530 asection *s;
8531
8532 if (elf_dynsymtab (abfd) == 0)
8533 {
8534 bfd_set_error (bfd_error_invalid_operation);
8535 return -1;
8536 }
8537
3a551c7a 8538 count = 1;
252b5132 8539 for (s = abfd->sections; s != NULL; s = s->next)
266b05cf 8540 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8541 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8542 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
3a551c7a
AM
8543 {
8544 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8545 if (count > LONG_MAX / sizeof (arelent *))
8546 {
8547 bfd_set_error (bfd_error_file_too_big);
8548 return -1;
8549 }
8550 }
8551 return count * sizeof (arelent *);
252b5132
RH
8552}
8553
8615f3f2
AM
8554/* Canonicalize the dynamic relocation entries. Note that we return the
8555 dynamic relocations as a single block, although they are actually
8556 associated with particular sections; the interface, which was
8557 designed for SunOS style shared libraries, expects that there is only
8558 one set of dynamic relocs. Any loadable section that was actually
8559 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8560 dynamic symbol table, is considered to be a dynamic reloc section. */
252b5132
RH
8561
8562long
217aa764
AM
8563_bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8564 arelent **storage,
8565 asymbol **syms)
252b5132 8566{
217aa764 8567 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
252b5132
RH
8568 asection *s;
8569 long ret;
8570
8571 if (elf_dynsymtab (abfd) == 0)
8572 {
8573 bfd_set_error (bfd_error_invalid_operation);
8574 return -1;
8575 }
8576
8577 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8578 ret = 0;
8579 for (s = abfd->sections; s != NULL; s = s->next)
8580 {
266b05cf 8581 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8582 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8583 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8584 {
8585 arelent *p;
8586 long count, i;
8587
b34976b6 8588 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
252b5132 8589 return -1;
eea6121a 8590 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
252b5132
RH
8591 p = s->relocation;
8592 for (i = 0; i < count; i++)
8593 *storage++ = p++;
8594 ret += count;
8595 }
8596 }
8597
8598 *storage = NULL;
8599
8600 return ret;
8601}
8602\f
8603/* Read in the version information. */
8604
b34976b6 8605bfd_boolean
fc0e6df6 8606_bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
252b5132
RH
8607{
8608 bfd_byte *contents = NULL;
fc0e6df6 8609 unsigned int freeidx = 0;
1f4361a7 8610 size_t amt;
fc0e6df6
PB
8611
8612 if (elf_dynverref (abfd) != 0)
8613 {
8614 Elf_Internal_Shdr *hdr;
8615 Elf_External_Verneed *everneed;
8616 Elf_Internal_Verneed *iverneed;
8617 unsigned int i;
d0fb9a8d 8618 bfd_byte *contents_end;
fc0e6df6
PB
8619
8620 hdr = &elf_tdata (abfd)->dynverref_hdr;
8621
bd61e135
AM
8622 if (hdr->sh_info == 0
8623 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
d0fb9a8d 8624 {
dc1e8a47 8625 error_return_bad_verref:
4eca0228 8626 _bfd_error_handler
871b3ab2 8627 (_("%pB: .gnu.version_r invalid entry"), abfd);
601a03ba 8628 bfd_set_error (bfd_error_bad_value);
dc1e8a47 8629 error_return_verref:
d0fb9a8d
JJ
8630 elf_tdata (abfd)->verref = NULL;
8631 elf_tdata (abfd)->cverrefs = 0;
8632 goto error_return;
8633 }
601a03ba 8634
2bb3687b
AM
8635 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8636 goto error_return_verref;
8637 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8638 if (contents == NULL)
d0fb9a8d 8639 goto error_return_verref;
fc0e6df6 8640
1f4361a7
AM
8641 if (_bfd_mul_overflow (hdr->sh_info, sizeof (Elf_Internal_Verneed), &amt))
8642 {
8643 bfd_set_error (bfd_error_file_too_big);
8644 goto error_return_verref;
8645 }
8646 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *) bfd_alloc (abfd, amt);
601a03ba 8647 if (elf_tdata (abfd)->verref == NULL)
d0fb9a8d
JJ
8648 goto error_return_verref;
8649
8650 BFD_ASSERT (sizeof (Elf_External_Verneed)
8651 == sizeof (Elf_External_Vernaux));
8652 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
fc0e6df6
PB
8653 everneed = (Elf_External_Verneed *) contents;
8654 iverneed = elf_tdata (abfd)->verref;
8655 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8656 {
8657 Elf_External_Vernaux *evernaux;
8658 Elf_Internal_Vernaux *ivernaux;
8659 unsigned int j;
8660
8661 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8662
8663 iverneed->vn_bfd = abfd;
8664
8665 iverneed->vn_filename =
8666 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8667 iverneed->vn_file);
8668 if (iverneed->vn_filename == NULL)
601a03ba 8669 goto error_return_bad_verref;
fc0e6df6 8670
d0fb9a8d
JJ
8671 if (iverneed->vn_cnt == 0)
8672 iverneed->vn_auxptr = NULL;
8673 else
8674 {
1f4361a7
AM
8675 if (_bfd_mul_overflow (iverneed->vn_cnt,
8676 sizeof (Elf_Internal_Vernaux), &amt))
8677 {
8678 bfd_set_error (bfd_error_file_too_big);
8679 goto error_return_verref;
8680 }
a50b1753 8681 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
1f4361a7 8682 bfd_alloc (abfd, amt);
d0fb9a8d
JJ
8683 if (iverneed->vn_auxptr == NULL)
8684 goto error_return_verref;
8685 }
8686
8687 if (iverneed->vn_aux
8688 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8689 goto error_return_bad_verref;
fc0e6df6
PB
8690
8691 evernaux = ((Elf_External_Vernaux *)
8692 ((bfd_byte *) everneed + iverneed->vn_aux));
8693 ivernaux = iverneed->vn_auxptr;
8694 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8695 {
8696 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8697
8698 ivernaux->vna_nodename =
8699 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8700 ivernaux->vna_name);
8701 if (ivernaux->vna_nodename == NULL)
601a03ba 8702 goto error_return_bad_verref;
fc0e6df6 8703
25ff461f
AM
8704 if (ivernaux->vna_other > freeidx)
8705 freeidx = ivernaux->vna_other;
8706
8707 ivernaux->vna_nextptr = NULL;
8708 if (ivernaux->vna_next == 0)
8709 {
8710 iverneed->vn_cnt = j + 1;
8711 break;
8712 }
fc0e6df6
PB
8713 if (j + 1 < iverneed->vn_cnt)
8714 ivernaux->vna_nextptr = ivernaux + 1;
fc0e6df6 8715
d0fb9a8d
JJ
8716 if (ivernaux->vna_next
8717 > (size_t) (contents_end - (bfd_byte *) evernaux))
601a03ba 8718 goto error_return_bad_verref;
d0fb9a8d 8719
fc0e6df6
PB
8720 evernaux = ((Elf_External_Vernaux *)
8721 ((bfd_byte *) evernaux + ivernaux->vna_next));
fc0e6df6
PB
8722 }
8723
25ff461f
AM
8724 iverneed->vn_nextref = NULL;
8725 if (iverneed->vn_next == 0)
8726 break;
fc0e6df6
PB
8727 if (i + 1 < hdr->sh_info)
8728 iverneed->vn_nextref = iverneed + 1;
fc0e6df6 8729
d0fb9a8d
JJ
8730 if (iverneed->vn_next
8731 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8732 goto error_return_bad_verref;
d0fb9a8d 8733
fc0e6df6
PB
8734 everneed = ((Elf_External_Verneed *)
8735 ((bfd_byte *) everneed + iverneed->vn_next));
8736 }
25ff461f 8737 elf_tdata (abfd)->cverrefs = i;
fc0e6df6
PB
8738
8739 free (contents);
8740 contents = NULL;
8741 }
252b5132
RH
8742
8743 if (elf_dynverdef (abfd) != 0)
8744 {
8745 Elf_Internal_Shdr *hdr;
8746 Elf_External_Verdef *everdef;
8747 Elf_Internal_Verdef *iverdef;
f631889e
UD
8748 Elf_Internal_Verdef *iverdefarr;
8749 Elf_Internal_Verdef iverdefmem;
252b5132 8750 unsigned int i;
062e2358 8751 unsigned int maxidx;
d0fb9a8d 8752 bfd_byte *contents_end_def, *contents_end_aux;
252b5132
RH
8753
8754 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8755
601a03ba
AM
8756 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8757 {
8758 error_return_bad_verdef:
4eca0228 8759 _bfd_error_handler
871b3ab2 8760 (_("%pB: .gnu.version_d invalid entry"), abfd);
601a03ba
AM
8761 bfd_set_error (bfd_error_bad_value);
8762 error_return_verdef:
8763 elf_tdata (abfd)->verdef = NULL;
8764 elf_tdata (abfd)->cverdefs = 0;
8765 goto error_return;
8766 }
8767
2bb3687b 8768 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
601a03ba 8769 goto error_return_verdef;
2bb3687b
AM
8770 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8771 if (contents == NULL)
601a03ba 8772 goto error_return_verdef;
d0fb9a8d
JJ
8773
8774 BFD_ASSERT (sizeof (Elf_External_Verdef)
8775 >= sizeof (Elf_External_Verdaux));
8776 contents_end_def = contents + hdr->sh_size
8777 - sizeof (Elf_External_Verdef);
8778 contents_end_aux = contents + hdr->sh_size
8779 - sizeof (Elf_External_Verdaux);
8780
f631889e
UD
8781 /* We know the number of entries in the section but not the maximum
8782 index. Therefore we have to run through all entries and find
8783 the maximum. */
252b5132 8784 everdef = (Elf_External_Verdef *) contents;
f631889e
UD
8785 maxidx = 0;
8786 for (i = 0; i < hdr->sh_info; ++i)
8787 {
8788 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8789
601a03ba
AM
8790 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8791 goto error_return_bad_verdef;
062e2358
AM
8792 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8793 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
f631889e 8794
25ff461f
AM
8795 if (iverdefmem.vd_next == 0)
8796 break;
8797
d0fb9a8d
JJ
8798 if (iverdefmem.vd_next
8799 > (size_t) (contents_end_def - (bfd_byte *) everdef))
601a03ba 8800 goto error_return_bad_verdef;
d0fb9a8d 8801
f631889e
UD
8802 everdef = ((Elf_External_Verdef *)
8803 ((bfd_byte *) everdef + iverdefmem.vd_next));
8804 }
8805
fc0e6df6
PB
8806 if (default_imported_symver)
8807 {
8808 if (freeidx > maxidx)
8809 maxidx = ++freeidx;
8810 else
8811 freeidx = ++maxidx;
8812 }
1f4361a7
AM
8813 if (_bfd_mul_overflow (maxidx, sizeof (Elf_Internal_Verdef), &amt))
8814 {
8815 bfd_set_error (bfd_error_file_too_big);
8816 goto error_return_verdef;
8817 }
8818 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
f631889e 8819 if (elf_tdata (abfd)->verdef == NULL)
601a03ba 8820 goto error_return_verdef;
f631889e
UD
8821
8822 elf_tdata (abfd)->cverdefs = maxidx;
8823
8824 everdef = (Elf_External_Verdef *) contents;
8825 iverdefarr = elf_tdata (abfd)->verdef;
8826 for (i = 0; i < hdr->sh_info; i++)
252b5132
RH
8827 {
8828 Elf_External_Verdaux *everdaux;
8829 Elf_Internal_Verdaux *iverdaux;
8830 unsigned int j;
8831
f631889e
UD
8832 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8833
d0fb9a8d 8834 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
601a03ba 8835 goto error_return_bad_verdef;
d0fb9a8d 8836
f631889e 8837 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
595bce75 8838 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
252b5132
RH
8839
8840 iverdef->vd_bfd = abfd;
8841
d0fb9a8d
JJ
8842 if (iverdef->vd_cnt == 0)
8843 iverdef->vd_auxptr = NULL;
8844 else
8845 {
1f4361a7
AM
8846 if (_bfd_mul_overflow (iverdef->vd_cnt,
8847 sizeof (Elf_Internal_Verdaux), &amt))
8848 {
8849 bfd_set_error (bfd_error_file_too_big);
8850 goto error_return_verdef;
8851 }
a50b1753 8852 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
1f4361a7 8853 bfd_alloc (abfd, amt);
d0fb9a8d
JJ
8854 if (iverdef->vd_auxptr == NULL)
8855 goto error_return_verdef;
8856 }
8857
8858 if (iverdef->vd_aux
8859 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
601a03ba 8860 goto error_return_bad_verdef;
252b5132
RH
8861
8862 everdaux = ((Elf_External_Verdaux *)
8863 ((bfd_byte *) everdef + iverdef->vd_aux));
8864 iverdaux = iverdef->vd_auxptr;
8865 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8866 {
8867 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8868
8869 iverdaux->vda_nodename =
8870 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8871 iverdaux->vda_name);
8872 if (iverdaux->vda_nodename == NULL)
601a03ba 8873 goto error_return_bad_verdef;
252b5132 8874
25ff461f
AM
8875 iverdaux->vda_nextptr = NULL;
8876 if (iverdaux->vda_next == 0)
8877 {
8878 iverdef->vd_cnt = j + 1;
8879 break;
8880 }
252b5132
RH
8881 if (j + 1 < iverdef->vd_cnt)
8882 iverdaux->vda_nextptr = iverdaux + 1;
252b5132 8883
d0fb9a8d
JJ
8884 if (iverdaux->vda_next
8885 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
601a03ba 8886 goto error_return_bad_verdef;
d0fb9a8d 8887
252b5132
RH
8888 everdaux = ((Elf_External_Verdaux *)
8889 ((bfd_byte *) everdaux + iverdaux->vda_next));
8890 }
8891
595bce75 8892 iverdef->vd_nodename = NULL;
d0fb9a8d
JJ
8893 if (iverdef->vd_cnt)
8894 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
252b5132 8895
25ff461f
AM
8896 iverdef->vd_nextdef = NULL;
8897 if (iverdef->vd_next == 0)
8898 break;
d0fb9a8d 8899 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
252b5132 8900 iverdef->vd_nextdef = iverdef + 1;
252b5132
RH
8901
8902 everdef = ((Elf_External_Verdef *)
8903 ((bfd_byte *) everdef + iverdef->vd_next));
8904 }
8905
8906 free (contents);
8907 contents = NULL;
8908 }
fc0e6df6 8909 else if (default_imported_symver)
252b5132 8910 {
fc0e6df6
PB
8911 if (freeidx < 3)
8912 freeidx = 3;
8913 else
8914 freeidx++;
252b5132 8915
1f4361a7
AM
8916 if (_bfd_mul_overflow (freeidx, sizeof (Elf_Internal_Verdef), &amt))
8917 {
8918 bfd_set_error (bfd_error_file_too_big);
8919 goto error_return;
8920 }
8921 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
fc0e6df6 8922 if (elf_tdata (abfd)->verdef == NULL)
252b5132
RH
8923 goto error_return;
8924
fc0e6df6
PB
8925 elf_tdata (abfd)->cverdefs = freeidx;
8926 }
252b5132 8927
fc0e6df6
PB
8928 /* Create a default version based on the soname. */
8929 if (default_imported_symver)
8930 {
8931 Elf_Internal_Verdef *iverdef;
8932 Elf_Internal_Verdaux *iverdaux;
252b5132 8933
5bb3703f 8934 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
252b5132 8935
fc0e6df6
PB
8936 iverdef->vd_version = VER_DEF_CURRENT;
8937 iverdef->vd_flags = 0;
8938 iverdef->vd_ndx = freeidx;
8939 iverdef->vd_cnt = 1;
252b5132 8940
fc0e6df6 8941 iverdef->vd_bfd = abfd;
252b5132 8942
fc0e6df6
PB
8943 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8944 if (iverdef->vd_nodename == NULL)
d0fb9a8d 8945 goto error_return_verdef;
fc0e6df6 8946 iverdef->vd_nextdef = NULL;
601a03ba
AM
8947 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8948 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
d0fb9a8d
JJ
8949 if (iverdef->vd_auxptr == NULL)
8950 goto error_return_verdef;
252b5132 8951
fc0e6df6
PB
8952 iverdaux = iverdef->vd_auxptr;
8953 iverdaux->vda_nodename = iverdef->vd_nodename;
252b5132
RH
8954 }
8955
b34976b6 8956 return TRUE;
252b5132
RH
8957
8958 error_return:
5ed6aba4 8959 if (contents != NULL)
252b5132 8960 free (contents);
b34976b6 8961 return FALSE;
252b5132
RH
8962}
8963\f
8964asymbol *
217aa764 8965_bfd_elf_make_empty_symbol (bfd *abfd)
252b5132
RH
8966{
8967 elf_symbol_type *newsym;
8968
7a6e0d89 8969 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
252b5132
RH
8970 if (!newsym)
8971 return NULL;
201159ec
NC
8972 newsym->symbol.the_bfd = abfd;
8973 return &newsym->symbol;
252b5132
RH
8974}
8975
8976void
217aa764
AM
8977_bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8978 asymbol *symbol,
8979 symbol_info *ret)
252b5132
RH
8980{
8981 bfd_symbol_info (symbol, ret);
8982}
8983
8984/* Return whether a symbol name implies a local symbol. Most targets
8985 use this function for the is_local_label_name entry point, but some
8986 override it. */
8987
b34976b6 8988bfd_boolean
217aa764
AM
8989_bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8990 const char *name)
252b5132
RH
8991{
8992 /* Normal local symbols start with ``.L''. */
8993 if (name[0] == '.' && name[1] == 'L')
b34976b6 8994 return TRUE;
252b5132
RH
8995
8996 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8997 DWARF debugging symbols starting with ``..''. */
8998 if (name[0] == '.' && name[1] == '.')
b34976b6 8999 return TRUE;
252b5132
RH
9000
9001 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
9002 emitting DWARF debugging output. I suspect this is actually a
9003 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
9004 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
9005 underscore to be emitted on some ELF targets). For ease of use,
9006 we treat such symbols as local. */
9007 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
b34976b6 9008 return TRUE;
252b5132 9009
b1fa9dd6
NC
9010 /* Treat assembler generated fake symbols, dollar local labels and
9011 forward-backward labels (aka local labels) as locals.
9012 These labels have the form:
9013
07d6d2b8 9014 L0^A.* (fake symbols)
b1fa9dd6
NC
9015
9016 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
9017
9018 Versions which start with .L will have already been matched above,
9019 so we only need to match the rest. */
9020 if (name[0] == 'L' && ISDIGIT (name[1]))
9021 {
9022 bfd_boolean ret = FALSE;
9023 const char * p;
9024 char c;
9025
9026 for (p = name + 2; (c = *p); p++)
9027 {
9028 if (c == 1 || c == 2)
9029 {
9030 if (c == 1 && p == name + 2)
9031 /* A fake symbol. */
9032 return TRUE;
9033
9034 /* FIXME: We are being paranoid here and treating symbols like
9035 L0^Bfoo as if there were non-local, on the grounds that the
9036 assembler will never generate them. But can any symbol
9037 containing an ASCII value in the range 1-31 ever be anything
9038 other than some kind of local ? */
9039 ret = TRUE;
9040 }
9041
9042 if (! ISDIGIT (c))
9043 {
9044 ret = FALSE;
9045 break;
9046 }
9047 }
9048 return ret;
9049 }
ffa54770 9050
b34976b6 9051 return FALSE;
252b5132
RH
9052}
9053
9054alent *
217aa764
AM
9055_bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9056 asymbol *symbol ATTRIBUTE_UNUSED)
252b5132
RH
9057{
9058 abort ();
9059 return NULL;
9060}
9061
b34976b6 9062bfd_boolean
217aa764
AM
9063_bfd_elf_set_arch_mach (bfd *abfd,
9064 enum bfd_architecture arch,
9065 unsigned long machine)
252b5132
RH
9066{
9067 /* If this isn't the right architecture for this backend, and this
9068 isn't the generic backend, fail. */
9069 if (arch != get_elf_backend_data (abfd)->arch
9070 && arch != bfd_arch_unknown
9071 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
b34976b6 9072 return FALSE;
252b5132
RH
9073
9074 return bfd_default_set_arch_mach (abfd, arch, machine);
9075}
9076
d1fad7c6
NC
9077/* Find the nearest line to a particular section and offset,
9078 for error reporting. */
9079
b34976b6 9080bfd_boolean
217aa764 9081_bfd_elf_find_nearest_line (bfd *abfd,
217aa764 9082 asymbol **symbols,
fb167eb2 9083 asection *section,
217aa764
AM
9084 bfd_vma offset,
9085 const char **filename_ptr,
9086 const char **functionname_ptr,
fb167eb2
AM
9087 unsigned int *line_ptr,
9088 unsigned int *discriminator_ptr)
d1fad7c6 9089{
b34976b6 9090 bfd_boolean found;
d1fad7c6 9091
fb167eb2 9092 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
4e8a9624 9093 filename_ptr, functionname_ptr,
fb167eb2 9094 line_ptr, discriminator_ptr,
9defd221 9095 dwarf_debug_sections,
e7679060
AM
9096 &elf_tdata (abfd)->dwarf2_find_line_info))
9097 return TRUE;
9098
9099 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9100 filename_ptr, functionname_ptr, line_ptr))
d1fad7c6
NC
9101 {
9102 if (!*functionname_ptr)
e00e8198
AM
9103 _bfd_elf_find_function (abfd, symbols, section, offset,
9104 *filename_ptr ? NULL : filename_ptr,
9105 functionname_ptr);
b34976b6 9106 return TRUE;
d1fad7c6
NC
9107 }
9108
9109 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
4e8a9624
AM
9110 &found, filename_ptr,
9111 functionname_ptr, line_ptr,
9112 &elf_tdata (abfd)->line_info))
b34976b6 9113 return FALSE;
dc43ada5 9114 if (found && (*functionname_ptr || *line_ptr))
b34976b6 9115 return TRUE;
d1fad7c6
NC
9116
9117 if (symbols == NULL)
b34976b6 9118 return FALSE;
d1fad7c6 9119
e00e8198
AM
9120 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9121 filename_ptr, functionname_ptr))
b34976b6 9122 return FALSE;
d1fad7c6 9123
252b5132 9124 *line_ptr = 0;
b34976b6 9125 return TRUE;
252b5132
RH
9126}
9127
5420f73d
L
9128/* Find the line for a symbol. */
9129
9130bfd_boolean
9131_bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9132 const char **filename_ptr, unsigned int *line_ptr)
9b8d1a36 9133{
fb167eb2
AM
9134 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9135 filename_ptr, NULL, line_ptr, NULL,
9defd221 9136 dwarf_debug_sections,
fb167eb2 9137 &elf_tdata (abfd)->dwarf2_find_line_info);
5420f73d
L
9138}
9139
4ab527b0
FF
9140/* After a call to bfd_find_nearest_line, successive calls to
9141 bfd_find_inliner_info can be used to get source information about
9142 each level of function inlining that terminated at the address
9143 passed to bfd_find_nearest_line. Currently this is only supported
9144 for DWARF2 with appropriate DWARF3 extensions. */
9145
9146bfd_boolean
9147_bfd_elf_find_inliner_info (bfd *abfd,
9148 const char **filename_ptr,
9149 const char **functionname_ptr,
9150 unsigned int *line_ptr)
9151{
9152 bfd_boolean found;
9153 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9154 functionname_ptr, line_ptr,
9155 & elf_tdata (abfd)->dwarf2_find_line_info);
9156 return found;
9157}
9158
252b5132 9159int
a6b96beb 9160_bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
252b5132 9161{
8ded5a0f
AM
9162 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9163 int ret = bed->s->sizeof_ehdr;
252b5132 9164
0e1862bb 9165 if (!bfd_link_relocatable (info))
8ded5a0f 9166 {
12bd6957 9167 bfd_size_type phdr_size = elf_program_header_size (abfd);
8ded5a0f 9168
62d7a5f6
AM
9169 if (phdr_size == (bfd_size_type) -1)
9170 {
9171 struct elf_segment_map *m;
9172
9173 phdr_size = 0;
12bd6957 9174 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
62d7a5f6 9175 phdr_size += bed->s->sizeof_phdr;
8ded5a0f 9176
62d7a5f6
AM
9177 if (phdr_size == 0)
9178 phdr_size = get_program_header_size (abfd, info);
9179 }
8ded5a0f 9180
12bd6957 9181 elf_program_header_size (abfd) = phdr_size;
8ded5a0f
AM
9182 ret += phdr_size;
9183 }
9184
252b5132
RH
9185 return ret;
9186}
9187
b34976b6 9188bfd_boolean
217aa764
AM
9189_bfd_elf_set_section_contents (bfd *abfd,
9190 sec_ptr section,
0f867abe 9191 const void *location,
217aa764
AM
9192 file_ptr offset,
9193 bfd_size_type count)
252b5132
RH
9194{
9195 Elf_Internal_Shdr *hdr;
1b6aeedb 9196 file_ptr pos;
252b5132
RH
9197
9198 if (! abfd->output_has_begun
217aa764 9199 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 9200 return FALSE;
252b5132 9201
0ce398f1
L
9202 if (!count)
9203 return TRUE;
9204
252b5132 9205 hdr = &elf_section_data (section)->this_hdr;
0ce398f1
L
9206 if (hdr->sh_offset == (file_ptr) -1)
9207 {
a0dcf297
NC
9208 unsigned char *contents;
9209
1ff6de03
NA
9210 if (bfd_section_is_ctf (section))
9211 /* Nothing to do with this section: the contents are generated
9212 later. */
9213 return TRUE;
9214
a0dcf297
NC
9215 if ((section->flags & SEC_ELF_COMPRESS) == 0)
9216 {
9217 _bfd_error_handler
9218 (_("%pB:%pA: error: attempting to write into an unallocated compressed section"),
9219 abfd, section);
9220 bfd_set_error (bfd_error_invalid_operation);
9221 return FALSE;
9222 }
9223
9224 if ((offset + count) > hdr->sh_size)
9225 {
9226 _bfd_error_handler
9227 (_("%pB:%pA: error: attempting to write over the end of the section"),
9228 abfd, section);
9229
9230 bfd_set_error (bfd_error_invalid_operation);
9231 return FALSE;
9232 }
9233
9234 contents = hdr->contents;
9235 if (contents == NULL)
9236 {
9237 _bfd_error_handler
9238 (_("%pB:%pA: error: attempting to write section into an empty buffer"),
9239 abfd, section);
9240
9241 bfd_set_error (bfd_error_invalid_operation);
9242 return FALSE;
9243 }
9244
0ce398f1
L
9245 memcpy (contents + offset, location, count);
9246 return TRUE;
9247 }
a0dcf297 9248
dc810e39
AM
9249 pos = hdr->sh_offset + offset;
9250 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9251 || bfd_bwrite (location, count, abfd) != count)
b34976b6 9252 return FALSE;
252b5132 9253
b34976b6 9254 return TRUE;
252b5132
RH
9255}
9256
f3185997 9257bfd_boolean
217aa764
AM
9258_bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9259 arelent *cache_ptr ATTRIBUTE_UNUSED,
9260 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
252b5132
RH
9261{
9262 abort ();
f3185997 9263 return FALSE;
252b5132
RH
9264}
9265
252b5132
RH
9266/* Try to convert a non-ELF reloc into an ELF one. */
9267
b34976b6 9268bfd_boolean
217aa764 9269_bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
252b5132 9270{
c044fabd 9271 /* Check whether we really have an ELF howto. */
252b5132
RH
9272
9273 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9274 {
9275 bfd_reloc_code_real_type code;
9276 reloc_howto_type *howto;
9277
9278 /* Alien reloc: Try to determine its type to replace it with an
c044fabd 9279 equivalent ELF reloc. */
252b5132
RH
9280
9281 if (areloc->howto->pc_relative)
9282 {
9283 switch (areloc->howto->bitsize)
9284 {
9285 case 8:
9286 code = BFD_RELOC_8_PCREL;
9287 break;
9288 case 12:
9289 code = BFD_RELOC_12_PCREL;
9290 break;
9291 case 16:
9292 code = BFD_RELOC_16_PCREL;
9293 break;
9294 case 24:
9295 code = BFD_RELOC_24_PCREL;
9296 break;
9297 case 32:
9298 code = BFD_RELOC_32_PCREL;
9299 break;
9300 case 64:
9301 code = BFD_RELOC_64_PCREL;
9302 break;
9303 default:
9304 goto fail;
9305 }
9306
9307 howto = bfd_reloc_type_lookup (abfd, code);
9308
94698d01 9309 if (howto && areloc->howto->pcrel_offset != howto->pcrel_offset)
252b5132
RH
9310 {
9311 if (howto->pcrel_offset)
9312 areloc->addend += areloc->address;
9313 else
9314 areloc->addend -= areloc->address; /* addend is unsigned!! */
9315 }
9316 }
9317 else
9318 {
9319 switch (areloc->howto->bitsize)
9320 {
9321 case 8:
9322 code = BFD_RELOC_8;
9323 break;
9324 case 14:
9325 code = BFD_RELOC_14;
9326 break;
9327 case 16:
9328 code = BFD_RELOC_16;
9329 break;
9330 case 26:
9331 code = BFD_RELOC_26;
9332 break;
9333 case 32:
9334 code = BFD_RELOC_32;
9335 break;
9336 case 64:
9337 code = BFD_RELOC_64;
9338 break;
9339 default:
9340 goto fail;
9341 }
9342
9343 howto = bfd_reloc_type_lookup (abfd, code);
9344 }
9345
9346 if (howto)
9347 areloc->howto = howto;
9348 else
9349 goto fail;
9350 }
9351
b34976b6 9352 return TRUE;
252b5132
RH
9353
9354 fail:
0aa13fee
AM
9355 /* xgettext:c-format */
9356 _bfd_error_handler (_("%pB: %s unsupported"),
9357 abfd, areloc->howto->name);
9aea1e31 9358 bfd_set_error (bfd_error_sorry);
b34976b6 9359 return FALSE;
252b5132
RH
9360}
9361
b34976b6 9362bfd_boolean
217aa764 9363_bfd_elf_close_and_cleanup (bfd *abfd)
252b5132 9364{
d9071b0c
TG
9365 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9366 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
252b5132 9367 {
c0355132 9368 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
2b0f7ef9 9369 _bfd_elf_strtab_free (elf_shstrtab (abfd));
d9071b0c 9370 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
252b5132
RH
9371 }
9372
9373 return _bfd_generic_close_and_cleanup (abfd);
9374}
9375
9376/* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9377 in the relocation's offset. Thus we cannot allow any sort of sanity
9378 range-checking to interfere. There is nothing else to do in processing
9379 this reloc. */
9380
9381bfd_reloc_status_type
217aa764
AM
9382_bfd_elf_rel_vtable_reloc_fn
9383 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
fc0a2244 9384 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
217aa764
AM
9385 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9386 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
9387{
9388 return bfd_reloc_ok;
9389}
252b5132
RH
9390\f
9391/* Elf core file support. Much of this only works on native
9392 toolchains, since we rely on knowing the
9393 machine-dependent procfs structure in order to pick
c044fabd 9394 out details about the corefile. */
252b5132
RH
9395
9396#ifdef HAVE_SYS_PROCFS_H
16231b7b
DG
9397/* Needed for new procfs interface on sparc-solaris. */
9398# define _STRUCTURED_PROC 1
252b5132
RH
9399# include <sys/procfs.h>
9400#endif
9401
261b8d08
PA
9402/* Return a PID that identifies a "thread" for threaded cores, or the
9403 PID of the main process for non-threaded cores. */
252b5132
RH
9404
9405static int
217aa764 9406elfcore_make_pid (bfd *abfd)
252b5132 9407{
261b8d08
PA
9408 int pid;
9409
228e534f 9410 pid = elf_tdata (abfd)->core->lwpid;
261b8d08 9411 if (pid == 0)
228e534f 9412 pid = elf_tdata (abfd)->core->pid;
261b8d08
PA
9413
9414 return pid;
252b5132
RH
9415}
9416
252b5132
RH
9417/* If there isn't a section called NAME, make one, using
9418 data from SECT. Note, this function will generate a
9419 reference to NAME, so you shouldn't deallocate or
c044fabd 9420 overwrite it. */
252b5132 9421
b34976b6 9422static bfd_boolean
217aa764 9423elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
252b5132 9424{
c044fabd 9425 asection *sect2;
252b5132
RH
9426
9427 if (bfd_get_section_by_name (abfd, name) != NULL)
b34976b6 9428 return TRUE;
252b5132 9429
117ed4f8 9430 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
252b5132 9431 if (sect2 == NULL)
b34976b6 9432 return FALSE;
252b5132 9433
eea6121a 9434 sect2->size = sect->size;
252b5132 9435 sect2->filepos = sect->filepos;
252b5132 9436 sect2->alignment_power = sect->alignment_power;
b34976b6 9437 return TRUE;
252b5132
RH
9438}
9439
bb0082d6
AM
9440/* Create a pseudosection containing SIZE bytes at FILEPOS. This
9441 actually creates up to two pseudosections:
9442 - For the single-threaded case, a section named NAME, unless
9443 such a section already exists.
9444 - For the multi-threaded case, a section named "NAME/PID", where
9445 PID is elfcore_make_pid (abfd).
24d3e51b 9446 Both pseudosections have identical contents. */
b34976b6 9447bfd_boolean
217aa764
AM
9448_bfd_elfcore_make_pseudosection (bfd *abfd,
9449 char *name,
9450 size_t size,
9451 ufile_ptr filepos)
bb0082d6
AM
9452{
9453 char buf[100];
9454 char *threaded_name;
d4c88bbb 9455 size_t len;
bb0082d6
AM
9456 asection *sect;
9457
9458 /* Build the section name. */
9459
9460 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
d4c88bbb 9461 len = strlen (buf) + 1;
a50b1753 9462 threaded_name = (char *) bfd_alloc (abfd, len);
bb0082d6 9463 if (threaded_name == NULL)
b34976b6 9464 return FALSE;
d4c88bbb 9465 memcpy (threaded_name, buf, len);
bb0082d6 9466
117ed4f8
AM
9467 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9468 SEC_HAS_CONTENTS);
bb0082d6 9469 if (sect == NULL)
b34976b6 9470 return FALSE;
eea6121a 9471 sect->size = size;
bb0082d6 9472 sect->filepos = filepos;
bb0082d6
AM
9473 sect->alignment_power = 2;
9474
936e320b 9475 return elfcore_maybe_make_sect (abfd, name, sect);
bb0082d6
AM
9476}
9477
58e07198
CZ
9478static bfd_boolean
9479elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9480 size_t offs)
9481{
9482 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9483 SEC_HAS_CONTENTS);
9484
9485 if (sect == NULL)
9486 return FALSE;
9487
9488 sect->size = note->descsz - offs;
9489 sect->filepos = note->descpos + offs;
9490 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9491
9492 return TRUE;
9493}
9494
252b5132 9495/* prstatus_t exists on:
4a938328 9496 solaris 2.5+
252b5132
RH
9497 linux 2.[01] + glibc
9498 unixware 4.2
9499*/
9500
9501#if defined (HAVE_PRSTATUS_T)
a7b97311 9502
b34976b6 9503static bfd_boolean
217aa764 9504elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9505{
eea6121a 9506 size_t size;
7ee38065 9507 int offset;
252b5132 9508
4a938328
MS
9509 if (note->descsz == sizeof (prstatus_t))
9510 {
9511 prstatus_t prstat;
252b5132 9512
eea6121a 9513 size = sizeof (prstat.pr_reg);
7ee38065 9514 offset = offsetof (prstatus_t, pr_reg);
4a938328 9515 memcpy (&prstat, note->descdata, sizeof (prstat));
252b5132 9516
fa49d224
NC
9517 /* Do not overwrite the core signal if it
9518 has already been set by another thread. */
228e534f
AM
9519 if (elf_tdata (abfd)->core->signal == 0)
9520 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9521 if (elf_tdata (abfd)->core->pid == 0)
9522 elf_tdata (abfd)->core->pid = prstat.pr_pid;
252b5132 9523
4a938328
MS
9524 /* pr_who exists on:
9525 solaris 2.5+
9526 unixware 4.2
9527 pr_who doesn't exist on:
9528 linux 2.[01]
9529 */
252b5132 9530#if defined (HAVE_PRSTATUS_T_PR_WHO)
228e534f 9531 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9532#else
228e534f 9533 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
252b5132 9534#endif
4a938328 9535 }
7ee38065 9536#if defined (HAVE_PRSTATUS32_T)
4a938328
MS
9537 else if (note->descsz == sizeof (prstatus32_t))
9538 {
9539 /* 64-bit host, 32-bit corefile */
9540 prstatus32_t prstat;
9541
eea6121a 9542 size = sizeof (prstat.pr_reg);
7ee38065 9543 offset = offsetof (prstatus32_t, pr_reg);
4a938328
MS
9544 memcpy (&prstat, note->descdata, sizeof (prstat));
9545
fa49d224
NC
9546 /* Do not overwrite the core signal if it
9547 has already been set by another thread. */
228e534f
AM
9548 if (elf_tdata (abfd)->core->signal == 0)
9549 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9550 if (elf_tdata (abfd)->core->pid == 0)
9551 elf_tdata (abfd)->core->pid = prstat.pr_pid;
4a938328
MS
9552
9553 /* pr_who exists on:
9554 solaris 2.5+
9555 unixware 4.2
9556 pr_who doesn't exist on:
9557 linux 2.[01]
9558 */
7ee38065 9559#if defined (HAVE_PRSTATUS32_T_PR_WHO)
228e534f 9560 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9561#else
228e534f 9562 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
4a938328
MS
9563#endif
9564 }
7ee38065 9565#endif /* HAVE_PRSTATUS32_T */
4a938328
MS
9566 else
9567 {
9568 /* Fail - we don't know how to handle any other
9569 note size (ie. data object type). */
b34976b6 9570 return TRUE;
4a938328 9571 }
252b5132 9572
bb0082d6 9573 /* Make a ".reg/999" section and a ".reg" section. */
936e320b 9574 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 9575 size, note->descpos + offset);
252b5132
RH
9576}
9577#endif /* defined (HAVE_PRSTATUS_T) */
9578
bb0082d6 9579/* Create a pseudosection containing the exact contents of NOTE. */
b34976b6 9580static bfd_boolean
217aa764
AM
9581elfcore_make_note_pseudosection (bfd *abfd,
9582 char *name,
9583 Elf_Internal_Note *note)
252b5132 9584{
936e320b
AM
9585 return _bfd_elfcore_make_pseudosection (abfd, name,
9586 note->descsz, note->descpos);
252b5132
RH
9587}
9588
ff08c6bb
JB
9589/* There isn't a consistent prfpregset_t across platforms,
9590 but it doesn't matter, because we don't have to pick this
c044fabd
KH
9591 data structure apart. */
9592
b34976b6 9593static bfd_boolean
217aa764 9594elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9595{
9596 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9597}
9598
ff08c6bb 9599/* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
971d4640 9600 type of NT_PRXFPREG. Just include the whole note's contents
ff08c6bb 9601 literally. */
c044fabd 9602
b34976b6 9603static bfd_boolean
217aa764 9604elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9605{
9606 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9607}
9608
4339cae0
L
9609/* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9610 with a note type of NT_X86_XSTATE. Just include the whole note's
9611 contents literally. */
9612
9613static bfd_boolean
9614elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9615{
9616 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9617}
9618
97753bd5
AM
9619static bfd_boolean
9620elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9621{
9622 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9623}
9624
89eeb0bc
LM
9625static bfd_boolean
9626elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9627{
9628 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9629}
97753bd5 9630
cb2366c1
EBM
9631static bfd_boolean
9632elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9633{
9634 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9635}
9636
9637static bfd_boolean
9638elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9639{
9640 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9641}
9642
9643static bfd_boolean
9644elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9645{
9646 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9647}
9648
9649static bfd_boolean
9650elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9651{
9652 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9653}
9654
9655static bfd_boolean
9656elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9657{
9658 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9659}
9660
9661static bfd_boolean
9662elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9663{
9664 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9665}
9666
9667static bfd_boolean
9668elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9669{
9670 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9671}
9672
9673static bfd_boolean
9674elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9675{
9676 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9677}
9678
9679static bfd_boolean
9680elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9681{
9682 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9683}
9684
9685static bfd_boolean
9686elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9687{
9688 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9689}
9690
9691static bfd_boolean
9692elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9693{
9694 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9695}
9696
9697static bfd_boolean
9698elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9699{
9700 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9701}
9702
9703static bfd_boolean
9704elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9705{
9706 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9707}
9708
0675e188
UW
9709static bfd_boolean
9710elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9711{
9712 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9713}
9714
d7eeb400
MS
9715static bfd_boolean
9716elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9717{
9718 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9719}
9720
9721static bfd_boolean
9722elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9723{
9724 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9725}
9726
9727static bfd_boolean
9728elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9729{
9730 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9731}
9732
9733static bfd_boolean
9734elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9735{
9736 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9737}
9738
9739static bfd_boolean
9740elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9741{
9742 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9743}
9744
355b81d9
UW
9745static bfd_boolean
9746elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9747{
9748 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9749}
9750
9751static bfd_boolean
9752elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9753{
9754 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9755}
9756
abb3f6cc
NC
9757static bfd_boolean
9758elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9759{
9760 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9761}
9762
4ef9f41a
AA
9763static bfd_boolean
9764elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9765{
9766 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9767}
9768
9769static bfd_boolean
9770elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9771{
9772 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9773}
9774
88ab90e8
AA
9775static bfd_boolean
9776elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9777{
9778 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9779}
9780
9781static bfd_boolean
9782elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9783{
9784 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9785}
9786
faa9a424
UW
9787static bfd_boolean
9788elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9789{
9790 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9791}
9792
652451f8
YZ
9793static bfd_boolean
9794elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9795{
9796 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9797}
9798
9799static bfd_boolean
9800elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9801{
9802 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9803}
9804
9805static bfd_boolean
9806elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9807{
9808 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9809}
9810
ad1cc4e4
AH
9811static bfd_boolean
9812elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9813{
9814 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9815}
9816
e6c3b5bf
AH
9817static bfd_boolean
9818elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9819{
9820 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9821}
9822
252b5132 9823#if defined (HAVE_PRPSINFO_T)
4a938328 9824typedef prpsinfo_t elfcore_psinfo_t;
7ee38065 9825#if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9826typedef prpsinfo32_t elfcore_psinfo32_t;
9827#endif
252b5132
RH
9828#endif
9829
9830#if defined (HAVE_PSINFO_T)
4a938328 9831typedef psinfo_t elfcore_psinfo_t;
7ee38065 9832#if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9833typedef psinfo32_t elfcore_psinfo32_t;
9834#endif
252b5132
RH
9835#endif
9836
252b5132
RH
9837/* return a malloc'ed copy of a string at START which is at
9838 most MAX bytes long, possibly without a terminating '\0'.
c044fabd 9839 the copy will always have a terminating '\0'. */
252b5132 9840
936e320b 9841char *
217aa764 9842_bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
252b5132 9843{
dc810e39 9844 char *dups;
a50b1753 9845 char *end = (char *) memchr (start, '\0', max);
dc810e39 9846 size_t len;
252b5132
RH
9847
9848 if (end == NULL)
9849 len = max;
9850 else
9851 len = end - start;
9852
a50b1753 9853 dups = (char *) bfd_alloc (abfd, len + 1);
dc810e39 9854 if (dups == NULL)
252b5132
RH
9855 return NULL;
9856
dc810e39
AM
9857 memcpy (dups, start, len);
9858 dups[len] = '\0';
252b5132 9859
dc810e39 9860 return dups;
252b5132
RH
9861}
9862
bb0082d6 9863#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
b34976b6 9864static bfd_boolean
217aa764 9865elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
252b5132 9866{
4a938328
MS
9867 if (note->descsz == sizeof (elfcore_psinfo_t))
9868 {
9869 elfcore_psinfo_t psinfo;
252b5132 9870
7ee38065 9871 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9872
335e41d4 9873#if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
228e534f 9874 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9875#endif
228e534f 9876 elf_tdata (abfd)->core->program
936e320b
AM
9877 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9878 sizeof (psinfo.pr_fname));
252b5132 9879
228e534f 9880 elf_tdata (abfd)->core->command
936e320b
AM
9881 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9882 sizeof (psinfo.pr_psargs));
4a938328 9883 }
7ee38065 9884#if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
4a938328
MS
9885 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9886 {
9887 /* 64-bit host, 32-bit corefile */
9888 elfcore_psinfo32_t psinfo;
9889
7ee38065 9890 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9891
335e41d4 9892#if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
228e534f 9893 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9894#endif
228e534f 9895 elf_tdata (abfd)->core->program
936e320b
AM
9896 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9897 sizeof (psinfo.pr_fname));
4a938328 9898
228e534f 9899 elf_tdata (abfd)->core->command
936e320b
AM
9900 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9901 sizeof (psinfo.pr_psargs));
4a938328
MS
9902 }
9903#endif
9904
9905 else
9906 {
9907 /* Fail - we don't know how to handle any other
9908 note size (ie. data object type). */
b34976b6 9909 return TRUE;
4a938328 9910 }
252b5132
RH
9911
9912 /* Note that for some reason, a spurious space is tacked
9913 onto the end of the args in some (at least one anyway)
c044fabd 9914 implementations, so strip it off if it exists. */
252b5132
RH
9915
9916 {
228e534f 9917 char *command = elf_tdata (abfd)->core->command;
252b5132
RH
9918 int n = strlen (command);
9919
9920 if (0 < n && command[n - 1] == ' ')
9921 command[n - 1] = '\0';
9922 }
9923
b34976b6 9924 return TRUE;
252b5132
RH
9925}
9926#endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9927
252b5132 9928#if defined (HAVE_PSTATUS_T)
b34976b6 9929static bfd_boolean
217aa764 9930elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9931{
f572a39d
AM
9932 if (note->descsz == sizeof (pstatus_t)
9933#if defined (HAVE_PXSTATUS_T)
9934 || note->descsz == sizeof (pxstatus_t)
9935#endif
9936 )
4a938328
MS
9937 {
9938 pstatus_t pstat;
252b5132 9939
4a938328 9940 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9941
228e534f 9942 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328 9943 }
7ee38065 9944#if defined (HAVE_PSTATUS32_T)
4a938328
MS
9945 else if (note->descsz == sizeof (pstatus32_t))
9946 {
9947 /* 64-bit host, 32-bit corefile */
9948 pstatus32_t pstat;
252b5132 9949
4a938328 9950 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9951
228e534f 9952 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328
MS
9953 }
9954#endif
252b5132
RH
9955 /* Could grab some more details from the "representative"
9956 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
c044fabd 9957 NT_LWPSTATUS note, presumably. */
252b5132 9958
b34976b6 9959 return TRUE;
252b5132
RH
9960}
9961#endif /* defined (HAVE_PSTATUS_T) */
9962
252b5132 9963#if defined (HAVE_LWPSTATUS_T)
b34976b6 9964static bfd_boolean
217aa764 9965elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132
RH
9966{
9967 lwpstatus_t lwpstat;
9968 char buf[100];
c044fabd 9969 char *name;
d4c88bbb 9970 size_t len;
c044fabd 9971 asection *sect;
252b5132 9972
f572a39d
AM
9973 if (note->descsz != sizeof (lwpstat)
9974#if defined (HAVE_LWPXSTATUS_T)
9975 && note->descsz != sizeof (lwpxstatus_t)
9976#endif
9977 )
b34976b6 9978 return TRUE;
252b5132
RH
9979
9980 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9981
228e534f 9982 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
a1504221
JB
9983 /* Do not overwrite the core signal if it has already been set by
9984 another thread. */
228e534f
AM
9985 if (elf_tdata (abfd)->core->signal == 0)
9986 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
252b5132 9987
c044fabd 9988 /* Make a ".reg/999" section. */
252b5132
RH
9989
9990 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
d4c88bbb 9991 len = strlen (buf) + 1;
217aa764 9992 name = bfd_alloc (abfd, len);
252b5132 9993 if (name == NULL)
b34976b6 9994 return FALSE;
d4c88bbb 9995 memcpy (name, buf, len);
252b5132 9996
117ed4f8 9997 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9998 if (sect == NULL)
b34976b6 9999 return FALSE;
252b5132
RH
10000
10001#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 10002 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
252b5132
RH
10003 sect->filepos = note->descpos
10004 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
10005#endif
10006
10007#if defined (HAVE_LWPSTATUS_T_PR_REG)
eea6121a 10008 sect->size = sizeof (lwpstat.pr_reg);
252b5132
RH
10009 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
10010#endif
10011
252b5132
RH
10012 sect->alignment_power = 2;
10013
10014 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 10015 return FALSE;
252b5132
RH
10016
10017 /* Make a ".reg2/999" section */
10018
10019 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
d4c88bbb 10020 len = strlen (buf) + 1;
217aa764 10021 name = bfd_alloc (abfd, len);
252b5132 10022 if (name == NULL)
b34976b6 10023 return FALSE;
d4c88bbb 10024 memcpy (name, buf, len);
252b5132 10025
117ed4f8 10026 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 10027 if (sect == NULL)
b34976b6 10028 return FALSE;
252b5132
RH
10029
10030#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 10031 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
252b5132
RH
10032 sect->filepos = note->descpos
10033 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
10034#endif
10035
10036#if defined (HAVE_LWPSTATUS_T_PR_FPREG)
eea6121a 10037 sect->size = sizeof (lwpstat.pr_fpreg);
252b5132
RH
10038 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
10039#endif
10040
252b5132
RH
10041 sect->alignment_power = 2;
10042
936e320b 10043 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
252b5132
RH
10044}
10045#endif /* defined (HAVE_LWPSTATUS_T) */
10046
b34976b6 10047static bfd_boolean
217aa764 10048elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
16e9c715
NC
10049{
10050 char buf[30];
c044fabd 10051 char *name;
d4c88bbb 10052 size_t len;
c044fabd 10053 asection *sect;
4a6636fb
PA
10054 int type;
10055 int is_active_thread;
10056 bfd_vma base_addr;
16e9c715 10057
4a6636fb 10058 if (note->descsz < 728)
b34976b6 10059 return TRUE;
16e9c715 10060
4a6636fb
PA
10061 if (! CONST_STRNEQ (note->namedata, "win32"))
10062 return TRUE;
10063
10064 type = bfd_get_32 (abfd, note->descdata);
c044fabd 10065
4a6636fb 10066 switch (type)
16e9c715 10067 {
4a6636fb 10068 case 1 /* NOTE_INFO_PROCESS */:
228e534f 10069 /* FIXME: need to add ->core->command. */
4a6636fb 10070 /* process_info.pid */
228e534f 10071 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
4a6636fb 10072 /* process_info.signal */
228e534f 10073 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
c044fabd 10074 break;
16e9c715 10075
4a6636fb 10076 case 2 /* NOTE_INFO_THREAD */:
16e9c715 10077 /* Make a ".reg/999" section. */
4a6636fb
PA
10078 /* thread_info.tid */
10079 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
c044fabd 10080
d4c88bbb 10081 len = strlen (buf) + 1;
a50b1753 10082 name = (char *) bfd_alloc (abfd, len);
16e9c715 10083 if (name == NULL)
b34976b6 10084 return FALSE;
c044fabd 10085
d4c88bbb 10086 memcpy (name, buf, len);
16e9c715 10087
117ed4f8 10088 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
16e9c715 10089 if (sect == NULL)
b34976b6 10090 return FALSE;
c044fabd 10091
4a6636fb
PA
10092 /* sizeof (thread_info.thread_context) */
10093 sect->size = 716;
10094 /* offsetof (thread_info.thread_context) */
10095 sect->filepos = note->descpos + 12;
16e9c715
NC
10096 sect->alignment_power = 2;
10097
4a6636fb
PA
10098 /* thread_info.is_active_thread */
10099 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10100
10101 if (is_active_thread)
16e9c715 10102 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 10103 return FALSE;
16e9c715
NC
10104 break;
10105
4a6636fb 10106 case 3 /* NOTE_INFO_MODULE */:
16e9c715 10107 /* Make a ".module/xxxxxxxx" section. */
4a6636fb
PA
10108 /* module_info.base_address */
10109 base_addr = bfd_get_32 (abfd, note->descdata + 4);
0af1713e 10110 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
c044fabd 10111
d4c88bbb 10112 len = strlen (buf) + 1;
a50b1753 10113 name = (char *) bfd_alloc (abfd, len);
16e9c715 10114 if (name == NULL)
b34976b6 10115 return FALSE;
c044fabd 10116
d4c88bbb 10117 memcpy (name, buf, len);
252b5132 10118
117ed4f8 10119 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
c044fabd 10120
16e9c715 10121 if (sect == NULL)
b34976b6 10122 return FALSE;
c044fabd 10123
eea6121a 10124 sect->size = note->descsz;
16e9c715 10125 sect->filepos = note->descpos;
16e9c715
NC
10126 sect->alignment_power = 2;
10127 break;
10128
10129 default:
b34976b6 10130 return TRUE;
16e9c715
NC
10131 }
10132
b34976b6 10133 return TRUE;
16e9c715 10134}
252b5132 10135
b34976b6 10136static bfd_boolean
217aa764 10137elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
252b5132 10138{
9c5bfbb7 10139 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
bb0082d6 10140
252b5132
RH
10141 switch (note->type)
10142 {
10143 default:
b34976b6 10144 return TRUE;
252b5132 10145
252b5132 10146 case NT_PRSTATUS:
bb0082d6
AM
10147 if (bed->elf_backend_grok_prstatus)
10148 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
b34976b6 10149 return TRUE;
bb0082d6 10150#if defined (HAVE_PRSTATUS_T)
252b5132 10151 return elfcore_grok_prstatus (abfd, note);
bb0082d6 10152#else
b34976b6 10153 return TRUE;
252b5132
RH
10154#endif
10155
10156#if defined (HAVE_PSTATUS_T)
10157 case NT_PSTATUS:
10158 return elfcore_grok_pstatus (abfd, note);
10159#endif
10160
10161#if defined (HAVE_LWPSTATUS_T)
10162 case NT_LWPSTATUS:
10163 return elfcore_grok_lwpstatus (abfd, note);
10164#endif
10165
10166 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10167 return elfcore_grok_prfpreg (abfd, note);
10168
c044fabd 10169 case NT_WIN32PSTATUS:
16e9c715 10170 return elfcore_grok_win32pstatus (abfd, note);
16e9c715 10171
c044fabd 10172 case NT_PRXFPREG: /* Linux SSE extension */
e377ab71
MK
10173 if (note->namesz == 6
10174 && strcmp (note->namedata, "LINUX") == 0)
ff08c6bb
JB
10175 return elfcore_grok_prxfpreg (abfd, note);
10176 else
b34976b6 10177 return TRUE;
ff08c6bb 10178
4339cae0
L
10179 case NT_X86_XSTATE: /* Linux XSAVE extension */
10180 if (note->namesz == 6
10181 && strcmp (note->namedata, "LINUX") == 0)
10182 return elfcore_grok_xstatereg (abfd, note);
10183 else
10184 return TRUE;
10185
97753bd5
AM
10186 case NT_PPC_VMX:
10187 if (note->namesz == 6
10188 && strcmp (note->namedata, "LINUX") == 0)
10189 return elfcore_grok_ppc_vmx (abfd, note);
10190 else
10191 return TRUE;
10192
89eeb0bc
LM
10193 case NT_PPC_VSX:
10194 if (note->namesz == 6
07d6d2b8
AM
10195 && strcmp (note->namedata, "LINUX") == 0)
10196 return elfcore_grok_ppc_vsx (abfd, note);
89eeb0bc 10197 else
07d6d2b8 10198 return TRUE;
89eeb0bc 10199
cb2366c1
EBM
10200 case NT_PPC_TAR:
10201 if (note->namesz == 6
4b24dd1a
AM
10202 && strcmp (note->namedata, "LINUX") == 0)
10203 return elfcore_grok_ppc_tar (abfd, note);
cb2366c1 10204 else
4b24dd1a 10205 return TRUE;
cb2366c1
EBM
10206
10207 case NT_PPC_PPR:
10208 if (note->namesz == 6
4b24dd1a
AM
10209 && strcmp (note->namedata, "LINUX") == 0)
10210 return elfcore_grok_ppc_ppr (abfd, note);
cb2366c1 10211 else
4b24dd1a 10212 return TRUE;
cb2366c1
EBM
10213
10214 case NT_PPC_DSCR:
10215 if (note->namesz == 6
4b24dd1a
AM
10216 && strcmp (note->namedata, "LINUX") == 0)
10217 return elfcore_grok_ppc_dscr (abfd, note);
cb2366c1 10218 else
4b24dd1a 10219 return TRUE;
cb2366c1
EBM
10220
10221 case NT_PPC_EBB:
10222 if (note->namesz == 6
4b24dd1a
AM
10223 && strcmp (note->namedata, "LINUX") == 0)
10224 return elfcore_grok_ppc_ebb (abfd, note);
cb2366c1 10225 else
4b24dd1a 10226 return TRUE;
cb2366c1
EBM
10227
10228 case NT_PPC_PMU:
10229 if (note->namesz == 6
4b24dd1a
AM
10230 && strcmp (note->namedata, "LINUX") == 0)
10231 return elfcore_grok_ppc_pmu (abfd, note);
cb2366c1 10232 else
4b24dd1a 10233 return TRUE;
cb2366c1
EBM
10234
10235 case NT_PPC_TM_CGPR:
10236 if (note->namesz == 6
4b24dd1a
AM
10237 && strcmp (note->namedata, "LINUX") == 0)
10238 return elfcore_grok_ppc_tm_cgpr (abfd, note);
cb2366c1 10239 else
4b24dd1a 10240 return TRUE;
cb2366c1
EBM
10241
10242 case NT_PPC_TM_CFPR:
10243 if (note->namesz == 6
4b24dd1a
AM
10244 && strcmp (note->namedata, "LINUX") == 0)
10245 return elfcore_grok_ppc_tm_cfpr (abfd, note);
cb2366c1 10246 else
4b24dd1a 10247 return TRUE;
cb2366c1
EBM
10248
10249 case NT_PPC_TM_CVMX:
10250 if (note->namesz == 6
4b24dd1a
AM
10251 && strcmp (note->namedata, "LINUX") == 0)
10252 return elfcore_grok_ppc_tm_cvmx (abfd, note);
cb2366c1 10253 else
4b24dd1a 10254 return TRUE;
cb2366c1
EBM
10255
10256 case NT_PPC_TM_CVSX:
10257 if (note->namesz == 6
4b24dd1a
AM
10258 && strcmp (note->namedata, "LINUX") == 0)
10259 return elfcore_grok_ppc_tm_cvsx (abfd, note);
cb2366c1 10260 else
4b24dd1a 10261 return TRUE;
cb2366c1
EBM
10262
10263 case NT_PPC_TM_SPR:
10264 if (note->namesz == 6
4b24dd1a
AM
10265 && strcmp (note->namedata, "LINUX") == 0)
10266 return elfcore_grok_ppc_tm_spr (abfd, note);
cb2366c1 10267 else
4b24dd1a 10268 return TRUE;
cb2366c1
EBM
10269
10270 case NT_PPC_TM_CTAR:
10271 if (note->namesz == 6
4b24dd1a
AM
10272 && strcmp (note->namedata, "LINUX") == 0)
10273 return elfcore_grok_ppc_tm_ctar (abfd, note);
cb2366c1 10274 else
4b24dd1a 10275 return TRUE;
cb2366c1
EBM
10276
10277 case NT_PPC_TM_CPPR:
10278 if (note->namesz == 6
4b24dd1a
AM
10279 && strcmp (note->namedata, "LINUX") == 0)
10280 return elfcore_grok_ppc_tm_cppr (abfd, note);
cb2366c1 10281 else
4b24dd1a 10282 return TRUE;
cb2366c1
EBM
10283
10284 case NT_PPC_TM_CDSCR:
10285 if (note->namesz == 6
4b24dd1a
AM
10286 && strcmp (note->namedata, "LINUX") == 0)
10287 return elfcore_grok_ppc_tm_cdscr (abfd, note);
cb2366c1 10288 else
4b24dd1a 10289 return TRUE;
cb2366c1 10290
0675e188
UW
10291 case NT_S390_HIGH_GPRS:
10292 if (note->namesz == 6
07d6d2b8
AM
10293 && strcmp (note->namedata, "LINUX") == 0)
10294 return elfcore_grok_s390_high_gprs (abfd, note);
0675e188 10295 else
07d6d2b8 10296 return TRUE;
0675e188 10297
d7eeb400
MS
10298 case NT_S390_TIMER:
10299 if (note->namesz == 6
07d6d2b8
AM
10300 && strcmp (note->namedata, "LINUX") == 0)
10301 return elfcore_grok_s390_timer (abfd, note);
d7eeb400 10302 else
07d6d2b8 10303 return TRUE;
d7eeb400
MS
10304
10305 case NT_S390_TODCMP:
10306 if (note->namesz == 6
07d6d2b8
AM
10307 && strcmp (note->namedata, "LINUX") == 0)
10308 return elfcore_grok_s390_todcmp (abfd, note);
d7eeb400 10309 else
07d6d2b8 10310 return TRUE;
d7eeb400
MS
10311
10312 case NT_S390_TODPREG:
10313 if (note->namesz == 6
07d6d2b8
AM
10314 && strcmp (note->namedata, "LINUX") == 0)
10315 return elfcore_grok_s390_todpreg (abfd, note);
d7eeb400 10316 else
07d6d2b8 10317 return TRUE;
d7eeb400
MS
10318
10319 case NT_S390_CTRS:
10320 if (note->namesz == 6
07d6d2b8
AM
10321 && strcmp (note->namedata, "LINUX") == 0)
10322 return elfcore_grok_s390_ctrs (abfd, note);
d7eeb400 10323 else
07d6d2b8 10324 return TRUE;
d7eeb400
MS
10325
10326 case NT_S390_PREFIX:
10327 if (note->namesz == 6
07d6d2b8
AM
10328 && strcmp (note->namedata, "LINUX") == 0)
10329 return elfcore_grok_s390_prefix (abfd, note);
d7eeb400 10330 else
07d6d2b8 10331 return TRUE;
d7eeb400 10332
355b81d9
UW
10333 case NT_S390_LAST_BREAK:
10334 if (note->namesz == 6
07d6d2b8
AM
10335 && strcmp (note->namedata, "LINUX") == 0)
10336 return elfcore_grok_s390_last_break (abfd, note);
355b81d9 10337 else
07d6d2b8 10338 return TRUE;
355b81d9
UW
10339
10340 case NT_S390_SYSTEM_CALL:
10341 if (note->namesz == 6
07d6d2b8
AM
10342 && strcmp (note->namedata, "LINUX") == 0)
10343 return elfcore_grok_s390_system_call (abfd, note);
355b81d9 10344 else
07d6d2b8 10345 return TRUE;
355b81d9 10346
abb3f6cc
NC
10347 case NT_S390_TDB:
10348 if (note->namesz == 6
07d6d2b8
AM
10349 && strcmp (note->namedata, "LINUX") == 0)
10350 return elfcore_grok_s390_tdb (abfd, note);
abb3f6cc 10351 else
07d6d2b8 10352 return TRUE;
abb3f6cc 10353
4ef9f41a
AA
10354 case NT_S390_VXRS_LOW:
10355 if (note->namesz == 6
10356 && strcmp (note->namedata, "LINUX") == 0)
10357 return elfcore_grok_s390_vxrs_low (abfd, note);
10358 else
10359 return TRUE;
10360
10361 case NT_S390_VXRS_HIGH:
10362 if (note->namesz == 6
10363 && strcmp (note->namedata, "LINUX") == 0)
10364 return elfcore_grok_s390_vxrs_high (abfd, note);
10365 else
10366 return TRUE;
10367
88ab90e8
AA
10368 case NT_S390_GS_CB:
10369 if (note->namesz == 6
10370 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10371 return elfcore_grok_s390_gs_cb (abfd, note);
88ab90e8
AA
10372 else
10373 return TRUE;
10374
10375 case NT_S390_GS_BC:
10376 if (note->namesz == 6
10377 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10378 return elfcore_grok_s390_gs_bc (abfd, note);
88ab90e8
AA
10379 else
10380 return TRUE;
10381
faa9a424
UW
10382 case NT_ARM_VFP:
10383 if (note->namesz == 6
10384 && strcmp (note->namedata, "LINUX") == 0)
10385 return elfcore_grok_arm_vfp (abfd, note);
10386 else
10387 return TRUE;
10388
652451f8
YZ
10389 case NT_ARM_TLS:
10390 if (note->namesz == 6
10391 && strcmp (note->namedata, "LINUX") == 0)
10392 return elfcore_grok_aarch_tls (abfd, note);
10393 else
10394 return TRUE;
10395
10396 case NT_ARM_HW_BREAK:
10397 if (note->namesz == 6
10398 && strcmp (note->namedata, "LINUX") == 0)
10399 return elfcore_grok_aarch_hw_break (abfd, note);
10400 else
10401 return TRUE;
10402
10403 case NT_ARM_HW_WATCH:
10404 if (note->namesz == 6
10405 && strcmp (note->namedata, "LINUX") == 0)
10406 return elfcore_grok_aarch_hw_watch (abfd, note);
10407 else
10408 return TRUE;
10409
ad1cc4e4
AH
10410 case NT_ARM_SVE:
10411 if (note->namesz == 6
10412 && strcmp (note->namedata, "LINUX") == 0)
10413 return elfcore_grok_aarch_sve (abfd, note);
10414 else
10415 return TRUE;
10416
e6c3b5bf
AH
10417 case NT_ARM_PAC_MASK:
10418 if (note->namesz == 6
10419 && strcmp (note->namedata, "LINUX") == 0)
10420 return elfcore_grok_aarch_pauth (abfd, note);
10421 else
10422 return TRUE;
10423
252b5132
RH
10424 case NT_PRPSINFO:
10425 case NT_PSINFO:
bb0082d6
AM
10426 if (bed->elf_backend_grok_psinfo)
10427 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
b34976b6 10428 return TRUE;
bb0082d6 10429#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
252b5132 10430 return elfcore_grok_psinfo (abfd, note);
bb0082d6 10431#else
b34976b6 10432 return TRUE;
252b5132 10433#endif
3333a7c3
RM
10434
10435 case NT_AUXV:
58e07198 10436 return elfcore_make_auxv_note_section (abfd, note, 0);
9015683b 10437
451b7c33
TT
10438 case NT_FILE:
10439 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10440 note);
10441
9015683b
TT
10442 case NT_SIGINFO:
10443 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10444 note);
5b2c414d 10445
252b5132
RH
10446 }
10447}
10448
718175fa
JK
10449static bfd_boolean
10450elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10451{
c74f7d1c 10452 struct bfd_build_id* build_id;
30e8ee25
AM
10453
10454 if (note->descsz == 0)
10455 return FALSE;
10456
c74f7d1c
JT
10457 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10458 if (build_id == NULL)
718175fa
JK
10459 return FALSE;
10460
c74f7d1c
JT
10461 build_id->size = note->descsz;
10462 memcpy (build_id->data, note->descdata, note->descsz);
10463 abfd->build_id = build_id;
718175fa
JK
10464
10465 return TRUE;
10466}
10467
10468static bfd_boolean
10469elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10470{
10471 switch (note->type)
10472 {
10473 default:
10474 return TRUE;
10475
46bed679
L
10476 case NT_GNU_PROPERTY_TYPE_0:
10477 return _bfd_elf_parse_gnu_properties (abfd, note);
10478
718175fa
JK
10479 case NT_GNU_BUILD_ID:
10480 return elfobj_grok_gnu_build_id (abfd, note);
10481 }
10482}
10483
e21e5835
NC
10484static bfd_boolean
10485elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10486{
10487 struct sdt_note *cur =
7a6e0d89
AM
10488 (struct sdt_note *) bfd_alloc (abfd,
10489 sizeof (struct sdt_note) + note->descsz);
e21e5835
NC
10490
10491 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10492 cur->size = (bfd_size_type) note->descsz;
10493 memcpy (cur->data, note->descdata, note->descsz);
10494
10495 elf_tdata (abfd)->sdt_note_head = cur;
10496
10497 return TRUE;
10498}
10499
10500static bfd_boolean
10501elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10502{
10503 switch (note->type)
10504 {
10505 case NT_STAPSDT:
10506 return elfobj_grok_stapsdt_note_1 (abfd, note);
10507
10508 default:
10509 return TRUE;
10510 }
10511}
10512
aa1ed4a9
JB
10513static bfd_boolean
10514elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10515{
10516 size_t offset;
10517
b5430a3c 10518 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10519 {
b5430a3c 10520 case ELFCLASS32:
0064d223
JB
10521 if (note->descsz < 108)
10522 return FALSE;
aa1ed4a9
JB
10523 break;
10524
b5430a3c 10525 case ELFCLASS64:
0064d223
JB
10526 if (note->descsz < 120)
10527 return FALSE;
aa1ed4a9
JB
10528 break;
10529
10530 default:
10531 return FALSE;
10532 }
10533
0064d223
JB
10534 /* Check for version 1 in pr_version. */
10535 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10536 return FALSE;
80a04378 10537
0064d223
JB
10538 offset = 4;
10539
10540 /* Skip over pr_psinfosz. */
b5430a3c 10541 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
0064d223
JB
10542 offset += 4;
10543 else
10544 {
10545 offset += 4; /* Padding before pr_psinfosz. */
10546 offset += 8;
10547 }
10548
aa1ed4a9
JB
10549 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10550 elf_tdata (abfd)->core->program
10551 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10552 offset += 17;
10553
10554 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10555 elf_tdata (abfd)->core->command
10556 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
0064d223
JB
10557 offset += 81;
10558
10559 /* Padding before pr_pid. */
10560 offset += 2;
10561
10562 /* The pr_pid field was added in version "1a". */
10563 if (note->descsz < offset + 4)
10564 return TRUE;
10565
10566 elf_tdata (abfd)->core->pid
10567 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
aa1ed4a9
JB
10568
10569 return TRUE;
10570}
10571
10572static bfd_boolean
10573elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10574{
10575 size_t offset;
10576 size_t size;
24d3e51b 10577 size_t min_size;
aa1ed4a9 10578
24d3e51b
NC
10579 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10580 Also compute minimum size of this note. */
b5430a3c 10581 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10582 {
b5430a3c 10583 case ELFCLASS32:
24d3e51b
NC
10584 offset = 4 + 4;
10585 min_size = offset + (4 * 2) + 4 + 4 + 4;
aa1ed4a9
JB
10586 break;
10587
b5430a3c 10588 case ELFCLASS64:
24d3e51b
NC
10589 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10590 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
aa1ed4a9
JB
10591 break;
10592
10593 default:
10594 return FALSE;
10595 }
10596
24d3e51b
NC
10597 if (note->descsz < min_size)
10598 return FALSE;
10599
10600 /* Check for version 1 in pr_version. */
10601 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10602 return FALSE;
aa1ed4a9 10603
24d3e51b
NC
10604 /* Extract size of pr_reg from pr_gregsetsz. */
10605 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
b5430a3c 10606 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
24d3e51b
NC
10607 {
10608 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10609 offset += 4 * 2;
10610 }
b5430a3c 10611 else
24d3e51b
NC
10612 {
10613 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10614 offset += 8 * 2;
10615 }
aa1ed4a9 10616
24d3e51b 10617 /* Skip over pr_osreldate. */
aa1ed4a9
JB
10618 offset += 4;
10619
24d3e51b 10620 /* Read signal from pr_cursig. */
aa1ed4a9
JB
10621 if (elf_tdata (abfd)->core->signal == 0)
10622 elf_tdata (abfd)->core->signal
10623 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10624 offset += 4;
10625
24d3e51b 10626 /* Read TID from pr_pid. */
aa1ed4a9
JB
10627 elf_tdata (abfd)->core->lwpid
10628 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10629 offset += 4;
10630
24d3e51b 10631 /* Padding before pr_reg. */
b5430a3c 10632 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
aa1ed4a9
JB
10633 offset += 4;
10634
24d3e51b
NC
10635 /* Make sure that there is enough data remaining in the note. */
10636 if ((note->descsz - offset) < size)
10637 return FALSE;
10638
aa1ed4a9
JB
10639 /* Make a ".reg/999" section and a ".reg" section. */
10640 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10641 size, note->descpos + offset);
10642}
10643
10644static bfd_boolean
10645elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10646{
544c67cd
JB
10647 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10648
aa1ed4a9
JB
10649 switch (note->type)
10650 {
10651 case NT_PRSTATUS:
544c67cd
JB
10652 if (bed->elf_backend_grok_freebsd_prstatus)
10653 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10654 return TRUE;
aa1ed4a9
JB
10655 return elfcore_grok_freebsd_prstatus (abfd, note);
10656
10657 case NT_FPREGSET:
10658 return elfcore_grok_prfpreg (abfd, note);
10659
10660 case NT_PRPSINFO:
10661 return elfcore_grok_freebsd_psinfo (abfd, note);
10662
10663 case NT_FREEBSD_THRMISC:
10664 if (note->namesz == 8)
10665 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10666 else
10667 return TRUE;
10668
ddb2bbcf
JB
10669 case NT_FREEBSD_PROCSTAT_PROC:
10670 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10671 note);
10672
10673 case NT_FREEBSD_PROCSTAT_FILES:
10674 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10675 note);
10676
10677 case NT_FREEBSD_PROCSTAT_VMMAP:
10678 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10679 note);
10680
3350c5f5 10681 case NT_FREEBSD_PROCSTAT_AUXV:
58e07198 10682 return elfcore_make_auxv_note_section (abfd, note, 4);
3350c5f5 10683
aa1ed4a9
JB
10684 case NT_X86_XSTATE:
10685 if (note->namesz == 8)
10686 return elfcore_grok_xstatereg (abfd, note);
10687 else
10688 return TRUE;
10689
e6f3b9c3
JB
10690 case NT_FREEBSD_PTLWPINFO:
10691 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10692 note);
10693
6d5be5d6
JB
10694 case NT_ARM_VFP:
10695 return elfcore_grok_arm_vfp (abfd, note);
10696
aa1ed4a9
JB
10697 default:
10698 return TRUE;
10699 }
10700}
10701
b34976b6 10702static bfd_boolean
217aa764 10703elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
50b2bdb7
AM
10704{
10705 char *cp;
10706
10707 cp = strchr (note->namedata, '@');
10708 if (cp != NULL)
10709 {
d2b64500 10710 *lwpidp = atoi(cp + 1);
b34976b6 10711 return TRUE;
50b2bdb7 10712 }
b34976b6 10713 return FALSE;
50b2bdb7
AM
10714}
10715
b34976b6 10716static bfd_boolean
217aa764 10717elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7 10718{
80a04378
NC
10719 if (note->descsz <= 0x7c + 31)
10720 return FALSE;
10721
50b2bdb7 10722 /* Signal number at offset 0x08. */
228e534f 10723 elf_tdata (abfd)->core->signal
50b2bdb7
AM
10724 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10725
10726 /* Process ID at offset 0x50. */
228e534f 10727 elf_tdata (abfd)->core->pid
50b2bdb7
AM
10728 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10729
10730 /* Command name at 0x7c (max 32 bytes, including nul). */
228e534f 10731 elf_tdata (abfd)->core->command
50b2bdb7
AM
10732 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10733
7720ba9f
MK
10734 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10735 note);
50b2bdb7
AM
10736}
10737
b34976b6 10738static bfd_boolean
217aa764 10739elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7
AM
10740{
10741 int lwp;
10742
10743 if (elfcore_netbsd_get_lwpid (note, &lwp))
228e534f 10744 elf_tdata (abfd)->core->lwpid = lwp;
50b2bdb7 10745
58e07198 10746 switch (note->type)
50b2bdb7 10747 {
58e07198 10748 case NT_NETBSDCORE_PROCINFO:
50b2bdb7 10749 /* NetBSD-specific core "procinfo". Note that we expect to
08a40648
AM
10750 find this note before any of the others, which is fine,
10751 since the kernel writes this note out first when it
10752 creates a core file. */
50b2bdb7 10753 return elfcore_grok_netbsd_procinfo (abfd, note);
58e07198
CZ
10754#ifdef NT_NETBSDCORE_AUXV
10755 case NT_NETBSDCORE_AUXV:
10756 /* NetBSD-specific Elf Auxiliary Vector data. */
10757 return elfcore_make_auxv_note_section (abfd, note, 4);
06d949ec
KR
10758#endif
10759#ifdef NT_NETBSDCORE_LWPSTATUS
10760 case NT_NETBSDCORE_LWPSTATUS:
10761 return elfcore_make_note_pseudosection (abfd,
10762 ".note.netbsdcore.lwpstatus",
10763 note);
58e07198
CZ
10764#endif
10765 default:
10766 break;
50b2bdb7
AM
10767 }
10768
06d949ec 10769 /* As of March 2020 there are no other machine-independent notes
b4db1224
JT
10770 defined for NetBSD core files. If the note type is less
10771 than the start of the machine-dependent note types, we don't
10772 understand it. */
47d9a591 10773
b4db1224 10774 if (note->type < NT_NETBSDCORE_FIRSTMACH)
b34976b6 10775 return TRUE;
50b2bdb7
AM
10776
10777
10778 switch (bfd_get_arch (abfd))
10779 {
08a40648
AM
10780 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10781 PT_GETFPREGS == mach+2. */
50b2bdb7 10782
015ec493 10783 case bfd_arch_aarch64:
50b2bdb7
AM
10784 case bfd_arch_alpha:
10785 case bfd_arch_sparc:
10786 switch (note->type)
08a40648
AM
10787 {
10788 case NT_NETBSDCORE_FIRSTMACH+0:
10789 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10790
08a40648
AM
10791 case NT_NETBSDCORE_FIRSTMACH+2:
10792 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10793
08a40648
AM
10794 default:
10795 return TRUE;
10796 }
50b2bdb7 10797
58e07198
CZ
10798 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
10799 There's also old PT___GETREGS40 == mach + 1 for old reg
10800 structure which lacks GBR. */
10801
10802 case bfd_arch_sh:
10803 switch (note->type)
10804 {
10805 case NT_NETBSDCORE_FIRSTMACH+3:
10806 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10807
10808 case NT_NETBSDCORE_FIRSTMACH+5:
10809 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10810
10811 default:
10812 return TRUE;
10813 }
10814
08a40648
AM
10815 /* On all other arch's, PT_GETREGS == mach+1 and
10816 PT_GETFPREGS == mach+3. */
50b2bdb7
AM
10817
10818 default:
10819 switch (note->type)
08a40648
AM
10820 {
10821 case NT_NETBSDCORE_FIRSTMACH+1:
10822 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10823
08a40648
AM
10824 case NT_NETBSDCORE_FIRSTMACH+3:
10825 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10826
08a40648
AM
10827 default:
10828 return TRUE;
10829 }
50b2bdb7
AM
10830 }
10831 /* NOTREACHED */
10832}
10833
67cc5033
MK
10834static bfd_boolean
10835elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10836{
80a04378
NC
10837 if (note->descsz <= 0x48 + 31)
10838 return FALSE;
10839
67cc5033 10840 /* Signal number at offset 0x08. */
228e534f 10841 elf_tdata (abfd)->core->signal
67cc5033
MK
10842 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10843
10844 /* Process ID at offset 0x20. */
228e534f 10845 elf_tdata (abfd)->core->pid
67cc5033
MK
10846 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10847
10848 /* Command name at 0x48 (max 32 bytes, including nul). */
228e534f 10849 elf_tdata (abfd)->core->command
67cc5033
MK
10850 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10851
10852 return TRUE;
10853}
10854
10855static bfd_boolean
10856elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10857{
10858 if (note->type == NT_OPENBSD_PROCINFO)
10859 return elfcore_grok_openbsd_procinfo (abfd, note);
10860
10861 if (note->type == NT_OPENBSD_REGS)
10862 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10863
10864 if (note->type == NT_OPENBSD_FPREGS)
10865 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10866
10867 if (note->type == NT_OPENBSD_XFPREGS)
10868 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
10869
10870 if (note->type == NT_OPENBSD_AUXV)
58e07198 10871 return elfcore_make_auxv_note_section (abfd, note, 0);
67cc5033
MK
10872
10873 if (note->type == NT_OPENBSD_WCOOKIE)
10874 {
10875 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
10876 SEC_HAS_CONTENTS);
10877
10878 if (sect == NULL)
10879 return FALSE;
10880 sect->size = note->descsz;
10881 sect->filepos = note->descpos;
10882 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10883
10884 return TRUE;
10885 }
10886
10887 return TRUE;
10888}
10889
07c6e936 10890static bfd_boolean
d3fd4074 10891elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
07c6e936
NC
10892{
10893 void *ddata = note->descdata;
10894 char buf[100];
10895 char *name;
10896 asection *sect;
f8843e87
AM
10897 short sig;
10898 unsigned flags;
07c6e936 10899
80a04378
NC
10900 if (note->descsz < 16)
10901 return FALSE;
10902
07c6e936 10903 /* nto_procfs_status 'pid' field is at offset 0. */
228e534f 10904 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
07c6e936 10905
f8843e87
AM
10906 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
10907 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
10908
10909 /* nto_procfs_status 'flags' field is at offset 8. */
10910 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
07c6e936
NC
10911
10912 /* nto_procfs_status 'what' field is at offset 14. */
f8843e87
AM
10913 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
10914 {
228e534f
AM
10915 elf_tdata (abfd)->core->signal = sig;
10916 elf_tdata (abfd)->core->lwpid = *tid;
f8843e87 10917 }
07c6e936 10918
f8843e87
AM
10919 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
10920 do not come from signals so we make sure we set the current
10921 thread just in case. */
10922 if (flags & 0x00000080)
228e534f 10923 elf_tdata (abfd)->core->lwpid = *tid;
07c6e936
NC
10924
10925 /* Make a ".qnx_core_status/%d" section. */
d3fd4074 10926 sprintf (buf, ".qnx_core_status/%ld", *tid);
07c6e936 10927
a50b1753 10928 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10929 if (name == NULL)
10930 return FALSE;
10931 strcpy (name, buf);
10932
117ed4f8 10933 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10934 if (sect == NULL)
10935 return FALSE;
10936
07d6d2b8
AM
10937 sect->size = note->descsz;
10938 sect->filepos = note->descpos;
07c6e936
NC
10939 sect->alignment_power = 2;
10940
10941 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
10942}
10943
10944static bfd_boolean
d69f560c
KW
10945elfcore_grok_nto_regs (bfd *abfd,
10946 Elf_Internal_Note *note,
d3fd4074 10947 long tid,
d69f560c 10948 char *base)
07c6e936
NC
10949{
10950 char buf[100];
10951 char *name;
10952 asection *sect;
10953
d69f560c 10954 /* Make a "(base)/%d" section. */
d3fd4074 10955 sprintf (buf, "%s/%ld", base, tid);
07c6e936 10956
a50b1753 10957 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10958 if (name == NULL)
10959 return FALSE;
10960 strcpy (name, buf);
10961
117ed4f8 10962 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10963 if (sect == NULL)
10964 return FALSE;
10965
07d6d2b8
AM
10966 sect->size = note->descsz;
10967 sect->filepos = note->descpos;
07c6e936
NC
10968 sect->alignment_power = 2;
10969
f8843e87 10970 /* This is the current thread. */
228e534f 10971 if (elf_tdata (abfd)->core->lwpid == tid)
d69f560c 10972 return elfcore_maybe_make_sect (abfd, base, sect);
f8843e87
AM
10973
10974 return TRUE;
07c6e936
NC
10975}
10976
10977#define BFD_QNT_CORE_INFO 7
10978#define BFD_QNT_CORE_STATUS 8
10979#define BFD_QNT_CORE_GREG 9
10980#define BFD_QNT_CORE_FPREG 10
10981
10982static bfd_boolean
217aa764 10983elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
07c6e936
NC
10984{
10985 /* Every GREG section has a STATUS section before it. Store the
811072d8 10986 tid from the previous call to pass down to the next gregs
07c6e936 10987 function. */
d3fd4074 10988 static long tid = 1;
07c6e936
NC
10989
10990 switch (note->type)
10991 {
d69f560c
KW
10992 case BFD_QNT_CORE_INFO:
10993 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
10994 case BFD_QNT_CORE_STATUS:
10995 return elfcore_grok_nto_status (abfd, note, &tid);
10996 case BFD_QNT_CORE_GREG:
10997 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
10998 case BFD_QNT_CORE_FPREG:
10999 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
11000 default:
11001 return TRUE;
07c6e936
NC
11002 }
11003}
11004
b15fa79e
AM
11005static bfd_boolean
11006elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
11007{
11008 char *name;
11009 asection *sect;
11010 size_t len;
11011
11012 /* Use note name as section name. */
11013 len = note->namesz;
a50b1753 11014 name = (char *) bfd_alloc (abfd, len);
b15fa79e
AM
11015 if (name == NULL)
11016 return FALSE;
11017 memcpy (name, note->namedata, len);
11018 name[len - 1] = '\0';
11019
11020 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11021 if (sect == NULL)
11022 return FALSE;
11023
07d6d2b8
AM
11024 sect->size = note->descsz;
11025 sect->filepos = note->descpos;
b15fa79e
AM
11026 sect->alignment_power = 1;
11027
11028 return TRUE;
11029}
11030
7c76fa91
MS
11031/* Function: elfcore_write_note
11032
47d9a591 11033 Inputs:
a39f3346 11034 buffer to hold note, and current size of buffer
7c76fa91
MS
11035 name of note
11036 type of note
11037 data for note
11038 size of data for note
11039
a39f3346
AM
11040 Writes note to end of buffer. ELF64 notes are written exactly as
11041 for ELF32, despite the current (as of 2006) ELF gabi specifying
11042 that they ought to have 8-byte namesz and descsz field, and have
11043 8-byte alignment. Other writers, eg. Linux kernel, do the same.
11044
7c76fa91 11045 Return:
a39f3346 11046 Pointer to realloc'd buffer, *BUFSIZ updated. */
7c76fa91
MS
11047
11048char *
a39f3346 11049elfcore_write_note (bfd *abfd,
217aa764 11050 char *buf,
a39f3346 11051 int *bufsiz,
217aa764 11052 const char *name,
a39f3346 11053 int type,
217aa764 11054 const void *input,
a39f3346 11055 int size)
7c76fa91
MS
11056{
11057 Elf_External_Note *xnp;
d4c88bbb 11058 size_t namesz;
d4c88bbb 11059 size_t newspace;
a39f3346 11060 char *dest;
7c76fa91 11061
d4c88bbb 11062 namesz = 0;
d4c88bbb 11063 if (name != NULL)
a39f3346 11064 namesz = strlen (name) + 1;
d4c88bbb 11065
a39f3346 11066 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
d4c88bbb 11067
a50b1753 11068 buf = (char *) realloc (buf, *bufsiz + newspace);
14b1c01e
AM
11069 if (buf == NULL)
11070 return buf;
a39f3346 11071 dest = buf + *bufsiz;
7c76fa91
MS
11072 *bufsiz += newspace;
11073 xnp = (Elf_External_Note *) dest;
11074 H_PUT_32 (abfd, namesz, xnp->namesz);
11075 H_PUT_32 (abfd, size, xnp->descsz);
11076 H_PUT_32 (abfd, type, xnp->type);
d4c88bbb
AM
11077 dest = xnp->name;
11078 if (name != NULL)
11079 {
11080 memcpy (dest, name, namesz);
11081 dest += namesz;
a39f3346 11082 while (namesz & 3)
d4c88bbb
AM
11083 {
11084 *dest++ = '\0';
a39f3346 11085 ++namesz;
d4c88bbb
AM
11086 }
11087 }
11088 memcpy (dest, input, size);
a39f3346
AM
11089 dest += size;
11090 while (size & 3)
11091 {
11092 *dest++ = '\0';
11093 ++size;
11094 }
11095 return buf;
7c76fa91
MS
11096}
11097
602f1657
AM
11098/* gcc-8 warns (*) on all the strncpy calls in this function about
11099 possible string truncation. The "truncation" is not a bug. We
11100 have an external representation of structs with fields that are not
11101 necessarily NULL terminated and corresponding internal
11102 representation fields that are one larger so that they can always
11103 be NULL terminated.
11104 gcc versions between 4.2 and 4.6 do not allow pragma control of
11105 diagnostics inside functions, giving a hard error if you try to use
11106 the finer control available with later versions.
11107 gcc prior to 4.2 warns about diagnostic push and pop.
11108 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11109 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11110 (*) Depending on your system header files! */
d99b4b92 11111#if GCC_VERSION >= 8000
602f1657
AM
11112# pragma GCC diagnostic push
11113# pragma GCC diagnostic ignored "-Wstringop-truncation"
d99b4b92 11114#endif
7c76fa91 11115char *
217aa764
AM
11116elfcore_write_prpsinfo (bfd *abfd,
11117 char *buf,
11118 int *bufsiz,
11119 const char *fname,
11120 const char *psargs)
7c76fa91 11121{
183e98be
AM
11122 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11123
11124 if (bed->elf_backend_write_core_note != NULL)
11125 {
11126 char *ret;
11127 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11128 NT_PRPSINFO, fname, psargs);
11129 if (ret != NULL)
11130 return ret;
11131 }
7c76fa91 11132
1f20dca5 11133#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
602f1657 11134# if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
183e98be
AM
11135 if (bed->s->elfclass == ELFCLASS32)
11136 {
602f1657 11137# if defined (HAVE_PSINFO32_T)
183e98be
AM
11138 psinfo32_t data;
11139 int note_type = NT_PSINFO;
602f1657 11140# else
183e98be
AM
11141 prpsinfo32_t data;
11142 int note_type = NT_PRPSINFO;
602f1657 11143# endif
183e98be
AM
11144
11145 memset (&data, 0, sizeof (data));
11146 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11147 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11148 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11149 "CORE", note_type, &data, sizeof (data));
183e98be
AM
11150 }
11151 else
602f1657 11152# endif
183e98be 11153 {
602f1657 11154# if defined (HAVE_PSINFO_T)
183e98be
AM
11155 psinfo_t data;
11156 int note_type = NT_PSINFO;
602f1657 11157# else
183e98be
AM
11158 prpsinfo_t data;
11159 int note_type = NT_PRPSINFO;
602f1657 11160# endif
7c76fa91 11161
183e98be
AM
11162 memset (&data, 0, sizeof (data));
11163 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11164 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11165 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11166 "CORE", note_type, &data, sizeof (data));
183e98be 11167 }
7c76fa91
MS
11168#endif /* PSINFO_T or PRPSINFO_T */
11169
1f20dca5
UW
11170 free (buf);
11171 return NULL;
11172}
d99b4b92 11173#if GCC_VERSION >= 8000
602f1657 11174# pragma GCC diagnostic pop
d99b4b92 11175#endif
1f20dca5 11176
70a38d42
SDJ
11177char *
11178elfcore_write_linux_prpsinfo32
11179 (bfd *abfd, char *buf, int *bufsiz,
11180 const struct elf_internal_linux_prpsinfo *prpsinfo)
11181{
a2f63b2e
MR
11182 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11183 {
11184 struct elf_external_linux_prpsinfo32_ugid16 data;
11185
11186 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11187 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11188 &data, sizeof (data));
11189 }
11190 else
11191 {
11192 struct elf_external_linux_prpsinfo32_ugid32 data;
70a38d42 11193
a2f63b2e
MR
11194 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11195 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11196 &data, sizeof (data));
11197 }
70a38d42
SDJ
11198}
11199
11200char *
11201elfcore_write_linux_prpsinfo64
11202 (bfd *abfd, char *buf, int *bufsiz,
11203 const struct elf_internal_linux_prpsinfo *prpsinfo)
11204{
3c9a7b0d
MR
11205 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11206 {
11207 struct elf_external_linux_prpsinfo64_ugid16 data;
11208
11209 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11210 return elfcore_write_note (abfd, buf, bufsiz,
11211 "CORE", NT_PRPSINFO, &data, sizeof (data));
11212 }
11213 else
11214 {
11215 struct elf_external_linux_prpsinfo64_ugid32 data;
70a38d42 11216
3c9a7b0d
MR
11217 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11218 return elfcore_write_note (abfd, buf, bufsiz,
11219 "CORE", NT_PRPSINFO, &data, sizeof (data));
11220 }
70a38d42
SDJ
11221}
11222
7c76fa91 11223char *
217aa764
AM
11224elfcore_write_prstatus (bfd *abfd,
11225 char *buf,
11226 int *bufsiz,
11227 long pid,
11228 int cursig,
11229 const void *gregs)
7c76fa91 11230{
183e98be 11231 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11232
183e98be
AM
11233 if (bed->elf_backend_write_core_note != NULL)
11234 {
11235 char *ret;
11236 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11237 NT_PRSTATUS,
11238 pid, cursig, gregs);
11239 if (ret != NULL)
11240 return ret;
11241 }
11242
1f20dca5 11243#if defined (HAVE_PRSTATUS_T)
183e98be
AM
11244#if defined (HAVE_PRSTATUS32_T)
11245 if (bed->s->elfclass == ELFCLASS32)
11246 {
11247 prstatus32_t prstat;
11248
11249 memset (&prstat, 0, sizeof (prstat));
11250 prstat.pr_pid = pid;
11251 prstat.pr_cursig = cursig;
11252 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11253 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11254 NT_PRSTATUS, &prstat, sizeof (prstat));
11255 }
11256 else
11257#endif
11258 {
11259 prstatus_t prstat;
11260
11261 memset (&prstat, 0, sizeof (prstat));
11262 prstat.pr_pid = pid;
11263 prstat.pr_cursig = cursig;
11264 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11265 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11266 NT_PRSTATUS, &prstat, sizeof (prstat));
11267 }
7c76fa91
MS
11268#endif /* HAVE_PRSTATUS_T */
11269
1f20dca5
UW
11270 free (buf);
11271 return NULL;
11272}
11273
51316059
MS
11274#if defined (HAVE_LWPSTATUS_T)
11275char *
217aa764
AM
11276elfcore_write_lwpstatus (bfd *abfd,
11277 char *buf,
11278 int *bufsiz,
11279 long pid,
11280 int cursig,
11281 const void *gregs)
51316059
MS
11282{
11283 lwpstatus_t lwpstat;
183e98be 11284 const char *note_name = "CORE";
51316059
MS
11285
11286 memset (&lwpstat, 0, sizeof (lwpstat));
11287 lwpstat.pr_lwpid = pid >> 16;
11288 lwpstat.pr_cursig = cursig;
11289#if defined (HAVE_LWPSTATUS_T_PR_REG)
d1e8523e 11290 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
51316059
MS
11291#elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11292#if !defined(gregs)
11293 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11294 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11295#else
11296 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11297 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11298#endif
11299#endif
47d9a591 11300 return elfcore_write_note (abfd, buf, bufsiz, note_name,
51316059
MS
11301 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11302}
11303#endif /* HAVE_LWPSTATUS_T */
11304
7c76fa91
MS
11305#if defined (HAVE_PSTATUS_T)
11306char *
217aa764
AM
11307elfcore_write_pstatus (bfd *abfd,
11308 char *buf,
11309 int *bufsiz,
11310 long pid,
6c10990d
NC
11311 int cursig ATTRIBUTE_UNUSED,
11312 const void *gregs ATTRIBUTE_UNUSED)
7c76fa91 11313{
183e98be
AM
11314 const char *note_name = "CORE";
11315#if defined (HAVE_PSTATUS32_T)
11316 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11317
183e98be
AM
11318 if (bed->s->elfclass == ELFCLASS32)
11319 {
11320 pstatus32_t pstat;
11321
11322 memset (&pstat, 0, sizeof (pstat));
11323 pstat.pr_pid = pid & 0xffff;
11324 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11325 NT_PSTATUS, &pstat, sizeof (pstat));
11326 return buf;
11327 }
11328 else
11329#endif
11330 {
11331 pstatus_t pstat;
11332
11333 memset (&pstat, 0, sizeof (pstat));
11334 pstat.pr_pid = pid & 0xffff;
11335 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11336 NT_PSTATUS, &pstat, sizeof (pstat));
11337 return buf;
11338 }
7c76fa91
MS
11339}
11340#endif /* HAVE_PSTATUS_T */
11341
11342char *
217aa764
AM
11343elfcore_write_prfpreg (bfd *abfd,
11344 char *buf,
11345 int *bufsiz,
11346 const void *fpregs,
11347 int size)
7c76fa91 11348{
183e98be 11349 const char *note_name = "CORE";
47d9a591 11350 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11351 note_name, NT_FPREGSET, fpregs, size);
11352}
11353
11354char *
217aa764
AM
11355elfcore_write_prxfpreg (bfd *abfd,
11356 char *buf,
11357 int *bufsiz,
11358 const void *xfpregs,
11359 int size)
7c76fa91
MS
11360{
11361 char *note_name = "LINUX";
47d9a591 11362 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11363 note_name, NT_PRXFPREG, xfpregs, size);
11364}
11365
4339cae0
L
11366char *
11367elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11368 const void *xfpregs, int size)
11369{
97de3545
JB
11370 char *note_name;
11371 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11372 note_name = "FreeBSD";
11373 else
11374 note_name = "LINUX";
4339cae0
L
11375 return elfcore_write_note (abfd, buf, bufsiz,
11376 note_name, NT_X86_XSTATE, xfpregs, size);
11377}
11378
97753bd5
AM
11379char *
11380elfcore_write_ppc_vmx (bfd *abfd,
11381 char *buf,
11382 int *bufsiz,
11383 const void *ppc_vmx,
11384 int size)
11385{
11386 char *note_name = "LINUX";
11387 return elfcore_write_note (abfd, buf, bufsiz,
11388 note_name, NT_PPC_VMX, ppc_vmx, size);
11389}
11390
89eeb0bc
LM
11391char *
11392elfcore_write_ppc_vsx (bfd *abfd,
07d6d2b8
AM
11393 char *buf,
11394 int *bufsiz,
11395 const void *ppc_vsx,
11396 int size)
89eeb0bc
LM
11397{
11398 char *note_name = "LINUX";
11399 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11400 note_name, NT_PPC_VSX, ppc_vsx, size);
89eeb0bc
LM
11401}
11402
cb2366c1
EBM
11403char *
11404elfcore_write_ppc_tar (bfd *abfd,
4b24dd1a
AM
11405 char *buf,
11406 int *bufsiz,
11407 const void *ppc_tar,
11408 int size)
cb2366c1
EBM
11409{
11410 char *note_name = "LINUX";
11411 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11412 note_name, NT_PPC_TAR, ppc_tar, size);
cb2366c1
EBM
11413}
11414
11415char *
11416elfcore_write_ppc_ppr (bfd *abfd,
4b24dd1a
AM
11417 char *buf,
11418 int *bufsiz,
11419 const void *ppc_ppr,
11420 int size)
cb2366c1
EBM
11421{
11422 char *note_name = "LINUX";
11423 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11424 note_name, NT_PPC_PPR, ppc_ppr, size);
cb2366c1
EBM
11425}
11426
11427char *
11428elfcore_write_ppc_dscr (bfd *abfd,
4b24dd1a
AM
11429 char *buf,
11430 int *bufsiz,
11431 const void *ppc_dscr,
11432 int size)
cb2366c1
EBM
11433{
11434 char *note_name = "LINUX";
11435 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11436 note_name, NT_PPC_DSCR, ppc_dscr, size);
cb2366c1
EBM
11437}
11438
11439char *
11440elfcore_write_ppc_ebb (bfd *abfd,
4b24dd1a
AM
11441 char *buf,
11442 int *bufsiz,
11443 const void *ppc_ebb,
11444 int size)
cb2366c1
EBM
11445{
11446 char *note_name = "LINUX";
11447 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11448 note_name, NT_PPC_EBB, ppc_ebb, size);
cb2366c1
EBM
11449}
11450
11451char *
11452elfcore_write_ppc_pmu (bfd *abfd,
4b24dd1a
AM
11453 char *buf,
11454 int *bufsiz,
11455 const void *ppc_pmu,
11456 int size)
cb2366c1
EBM
11457{
11458 char *note_name = "LINUX";
11459 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11460 note_name, NT_PPC_PMU, ppc_pmu, size);
cb2366c1
EBM
11461}
11462
11463char *
11464elfcore_write_ppc_tm_cgpr (bfd *abfd,
4b24dd1a
AM
11465 char *buf,
11466 int *bufsiz,
11467 const void *ppc_tm_cgpr,
11468 int size)
cb2366c1
EBM
11469{
11470 char *note_name = "LINUX";
11471 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11472 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
cb2366c1
EBM
11473}
11474
11475char *
11476elfcore_write_ppc_tm_cfpr (bfd *abfd,
4b24dd1a
AM
11477 char *buf,
11478 int *bufsiz,
11479 const void *ppc_tm_cfpr,
11480 int size)
cb2366c1
EBM
11481{
11482 char *note_name = "LINUX";
11483 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11484 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
cb2366c1
EBM
11485}
11486
11487char *
11488elfcore_write_ppc_tm_cvmx (bfd *abfd,
4b24dd1a
AM
11489 char *buf,
11490 int *bufsiz,
11491 const void *ppc_tm_cvmx,
11492 int size)
cb2366c1
EBM
11493{
11494 char *note_name = "LINUX";
11495 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11496 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
cb2366c1
EBM
11497}
11498
11499char *
11500elfcore_write_ppc_tm_cvsx (bfd *abfd,
4b24dd1a
AM
11501 char *buf,
11502 int *bufsiz,
11503 const void *ppc_tm_cvsx,
11504 int size)
cb2366c1
EBM
11505{
11506 char *note_name = "LINUX";
11507 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11508 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
cb2366c1
EBM
11509}
11510
11511char *
11512elfcore_write_ppc_tm_spr (bfd *abfd,
4b24dd1a
AM
11513 char *buf,
11514 int *bufsiz,
11515 const void *ppc_tm_spr,
11516 int size)
cb2366c1
EBM
11517{
11518 char *note_name = "LINUX";
11519 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11520 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
cb2366c1
EBM
11521}
11522
11523char *
11524elfcore_write_ppc_tm_ctar (bfd *abfd,
4b24dd1a
AM
11525 char *buf,
11526 int *bufsiz,
11527 const void *ppc_tm_ctar,
11528 int size)
cb2366c1
EBM
11529{
11530 char *note_name = "LINUX";
11531 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11532 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
cb2366c1
EBM
11533}
11534
11535char *
11536elfcore_write_ppc_tm_cppr (bfd *abfd,
4b24dd1a
AM
11537 char *buf,
11538 int *bufsiz,
11539 const void *ppc_tm_cppr,
11540 int size)
cb2366c1
EBM
11541{
11542 char *note_name = "LINUX";
11543 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11544 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
cb2366c1
EBM
11545}
11546
11547char *
11548elfcore_write_ppc_tm_cdscr (bfd *abfd,
4b24dd1a
AM
11549 char *buf,
11550 int *bufsiz,
11551 const void *ppc_tm_cdscr,
11552 int size)
cb2366c1
EBM
11553{
11554 char *note_name = "LINUX";
11555 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11556 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
cb2366c1
EBM
11557}
11558
0675e188
UW
11559static char *
11560elfcore_write_s390_high_gprs (bfd *abfd,
11561 char *buf,
11562 int *bufsiz,
11563 const void *s390_high_gprs,
11564 int size)
11565{
11566 char *note_name = "LINUX";
11567 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11568 note_name, NT_S390_HIGH_GPRS,
0675e188
UW
11569 s390_high_gprs, size);
11570}
11571
d7eeb400
MS
11572char *
11573elfcore_write_s390_timer (bfd *abfd,
07d6d2b8
AM
11574 char *buf,
11575 int *bufsiz,
11576 const void *s390_timer,
11577 int size)
d7eeb400
MS
11578{
11579 char *note_name = "LINUX";
11580 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11581 note_name, NT_S390_TIMER, s390_timer, size);
d7eeb400
MS
11582}
11583
11584char *
11585elfcore_write_s390_todcmp (bfd *abfd,
07d6d2b8
AM
11586 char *buf,
11587 int *bufsiz,
11588 const void *s390_todcmp,
11589 int size)
d7eeb400
MS
11590{
11591 char *note_name = "LINUX";
11592 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11593 note_name, NT_S390_TODCMP, s390_todcmp, size);
d7eeb400
MS
11594}
11595
11596char *
11597elfcore_write_s390_todpreg (bfd *abfd,
07d6d2b8
AM
11598 char *buf,
11599 int *bufsiz,
11600 const void *s390_todpreg,
11601 int size)
d7eeb400
MS
11602{
11603 char *note_name = "LINUX";
11604 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11605 note_name, NT_S390_TODPREG, s390_todpreg, size);
d7eeb400
MS
11606}
11607
11608char *
11609elfcore_write_s390_ctrs (bfd *abfd,
07d6d2b8
AM
11610 char *buf,
11611 int *bufsiz,
11612 const void *s390_ctrs,
11613 int size)
d7eeb400
MS
11614{
11615 char *note_name = "LINUX";
11616 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11617 note_name, NT_S390_CTRS, s390_ctrs, size);
d7eeb400
MS
11618}
11619
11620char *
11621elfcore_write_s390_prefix (bfd *abfd,
07d6d2b8
AM
11622 char *buf,
11623 int *bufsiz,
11624 const void *s390_prefix,
11625 int size)
d7eeb400
MS
11626{
11627 char *note_name = "LINUX";
11628 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11629 note_name, NT_S390_PREFIX, s390_prefix, size);
d7eeb400
MS
11630}
11631
355b81d9
UW
11632char *
11633elfcore_write_s390_last_break (bfd *abfd,
11634 char *buf,
11635 int *bufsiz,
11636 const void *s390_last_break,
11637 int size)
11638{
11639 char *note_name = "LINUX";
11640 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11641 note_name, NT_S390_LAST_BREAK,
355b81d9
UW
11642 s390_last_break, size);
11643}
11644
11645char *
11646elfcore_write_s390_system_call (bfd *abfd,
11647 char *buf,
11648 int *bufsiz,
11649 const void *s390_system_call,
11650 int size)
11651{
11652 char *note_name = "LINUX";
11653 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11654 note_name, NT_S390_SYSTEM_CALL,
355b81d9
UW
11655 s390_system_call, size);
11656}
11657
abb3f6cc
NC
11658char *
11659elfcore_write_s390_tdb (bfd *abfd,
11660 char *buf,
11661 int *bufsiz,
11662 const void *s390_tdb,
11663 int size)
11664{
11665 char *note_name = "LINUX";
11666 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11667 note_name, NT_S390_TDB, s390_tdb, size);
abb3f6cc
NC
11668}
11669
4ef9f41a
AA
11670char *
11671elfcore_write_s390_vxrs_low (bfd *abfd,
11672 char *buf,
11673 int *bufsiz,
11674 const void *s390_vxrs_low,
11675 int size)
11676{
11677 char *note_name = "LINUX";
11678 return elfcore_write_note (abfd, buf, bufsiz,
11679 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11680}
11681
11682char *
11683elfcore_write_s390_vxrs_high (bfd *abfd,
11684 char *buf,
11685 int *bufsiz,
11686 const void *s390_vxrs_high,
11687 int size)
11688{
11689 char *note_name = "LINUX";
11690 return elfcore_write_note (abfd, buf, bufsiz,
11691 note_name, NT_S390_VXRS_HIGH,
11692 s390_vxrs_high, size);
11693}
11694
88ab90e8
AA
11695char *
11696elfcore_write_s390_gs_cb (bfd *abfd,
11697 char *buf,
11698 int *bufsiz,
11699 const void *s390_gs_cb,
11700 int size)
11701{
11702 char *note_name = "LINUX";
11703 return elfcore_write_note (abfd, buf, bufsiz,
11704 note_name, NT_S390_GS_CB,
11705 s390_gs_cb, size);
11706}
11707
11708char *
11709elfcore_write_s390_gs_bc (bfd *abfd,
11710 char *buf,
11711 int *bufsiz,
11712 const void *s390_gs_bc,
11713 int size)
11714{
11715 char *note_name = "LINUX";
11716 return elfcore_write_note (abfd, buf, bufsiz,
11717 note_name, NT_S390_GS_BC,
11718 s390_gs_bc, size);
11719}
11720
faa9a424
UW
11721char *
11722elfcore_write_arm_vfp (bfd *abfd,
11723 char *buf,
11724 int *bufsiz,
11725 const void *arm_vfp,
11726 int size)
11727{
11728 char *note_name = "LINUX";
11729 return elfcore_write_note (abfd, buf, bufsiz,
11730 note_name, NT_ARM_VFP, arm_vfp, size);
11731}
11732
652451f8
YZ
11733char *
11734elfcore_write_aarch_tls (bfd *abfd,
11735 char *buf,
11736 int *bufsiz,
11737 const void *aarch_tls,
11738 int size)
11739{
11740 char *note_name = "LINUX";
11741 return elfcore_write_note (abfd, buf, bufsiz,
11742 note_name, NT_ARM_TLS, aarch_tls, size);
11743}
11744
11745char *
11746elfcore_write_aarch_hw_break (bfd *abfd,
11747 char *buf,
11748 int *bufsiz,
11749 const void *aarch_hw_break,
11750 int size)
11751{
11752 char *note_name = "LINUX";
11753 return elfcore_write_note (abfd, buf, bufsiz,
11754 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11755}
11756
11757char *
11758elfcore_write_aarch_hw_watch (bfd *abfd,
11759 char *buf,
11760 int *bufsiz,
11761 const void *aarch_hw_watch,
11762 int size)
11763{
11764 char *note_name = "LINUX";
11765 return elfcore_write_note (abfd, buf, bufsiz,
11766 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11767}
11768
ad1cc4e4
AH
11769char *
11770elfcore_write_aarch_sve (bfd *abfd,
11771 char *buf,
11772 int *bufsiz,
11773 const void *aarch_sve,
11774 int size)
11775{
11776 char *note_name = "LINUX";
11777 return elfcore_write_note (abfd, buf, bufsiz,
11778 note_name, NT_ARM_SVE, aarch_sve, size);
11779}
11780
e6c3b5bf
AH
11781char *
11782elfcore_write_aarch_pauth (bfd *abfd,
11783 char *buf,
11784 int *bufsiz,
11785 const void *aarch_pauth,
11786 int size)
11787{
11788 char *note_name = "LINUX";
11789 return elfcore_write_note (abfd, buf, bufsiz,
11790 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
11791}
11792
bb864ac1
CES
11793char *
11794elfcore_write_register_note (bfd *abfd,
11795 char *buf,
11796 int *bufsiz,
11797 const char *section,
11798 const void *data,
11799 int size)
11800{
11801 if (strcmp (section, ".reg2") == 0)
11802 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11803 if (strcmp (section, ".reg-xfp") == 0)
11804 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
4339cae0
L
11805 if (strcmp (section, ".reg-xstate") == 0)
11806 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11807 if (strcmp (section, ".reg-ppc-vmx") == 0)
11808 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
89eeb0bc
LM
11809 if (strcmp (section, ".reg-ppc-vsx") == 0)
11810 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
cb2366c1
EBM
11811 if (strcmp (section, ".reg-ppc-tar") == 0)
11812 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
11813 if (strcmp (section, ".reg-ppc-ppr") == 0)
11814 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
11815 if (strcmp (section, ".reg-ppc-dscr") == 0)
11816 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
11817 if (strcmp (section, ".reg-ppc-ebb") == 0)
11818 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
11819 if (strcmp (section, ".reg-ppc-pmu") == 0)
11820 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
11821 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
11822 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
11823 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
11824 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
11825 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
11826 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
11827 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
11828 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
11829 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
11830 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
11831 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
11832 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
11833 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
11834 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
11835 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
11836 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
0675e188
UW
11837 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11838 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
d7eeb400
MS
11839 if (strcmp (section, ".reg-s390-timer") == 0)
11840 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11841 if (strcmp (section, ".reg-s390-todcmp") == 0)
11842 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11843 if (strcmp (section, ".reg-s390-todpreg") == 0)
11844 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11845 if (strcmp (section, ".reg-s390-ctrs") == 0)
11846 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11847 if (strcmp (section, ".reg-s390-prefix") == 0)
11848 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
355b81d9
UW
11849 if (strcmp (section, ".reg-s390-last-break") == 0)
11850 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
11851 if (strcmp (section, ".reg-s390-system-call") == 0)
11852 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
abb3f6cc
NC
11853 if (strcmp (section, ".reg-s390-tdb") == 0)
11854 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
4ef9f41a
AA
11855 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
11856 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
11857 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
11858 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
88ab90e8
AA
11859 if (strcmp (section, ".reg-s390-gs-cb") == 0)
11860 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
11861 if (strcmp (section, ".reg-s390-gs-bc") == 0)
11862 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
faa9a424
UW
11863 if (strcmp (section, ".reg-arm-vfp") == 0)
11864 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
652451f8
YZ
11865 if (strcmp (section, ".reg-aarch-tls") == 0)
11866 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
11867 if (strcmp (section, ".reg-aarch-hw-break") == 0)
11868 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
11869 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
11870 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
ad1cc4e4
AH
11871 if (strcmp (section, ".reg-aarch-sve") == 0)
11872 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
e6c3b5bf
AH
11873 if (strcmp (section, ".reg-aarch-pauth") == 0)
11874 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11875 return NULL;
11876}
11877
b34976b6 11878static bfd_boolean
276da9b3
L
11879elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
11880 size_t align)
252b5132 11881{
c044fabd 11882 char *p;
252b5132 11883
276da9b3
L
11884 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
11885 gABI specifies that PT_NOTE alignment should be aligned to 4
11886 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
11887 align is less than 4, we use 4 byte alignment. */
11888 if (align < 4)
11889 align = 4;
ef135d43
NC
11890 if (align != 4 && align != 8)
11891 return FALSE;
276da9b3 11892
252b5132
RH
11893 p = buf;
11894 while (p < buf + size)
11895 {
c044fabd 11896 Elf_External_Note *xnp = (Elf_External_Note *) p;
252b5132
RH
11897 Elf_Internal_Note in;
11898
baea7ef1
AM
11899 if (offsetof (Elf_External_Note, name) > buf - p + size)
11900 return FALSE;
11901
dc810e39 11902 in.type = H_GET_32 (abfd, xnp->type);
252b5132 11903
dc810e39 11904 in.namesz = H_GET_32 (abfd, xnp->namesz);
252b5132 11905 in.namedata = xnp->name;
baea7ef1
AM
11906 if (in.namesz > buf - in.namedata + size)
11907 return FALSE;
252b5132 11908
dc810e39 11909 in.descsz = H_GET_32 (abfd, xnp->descsz);
276da9b3 11910 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
252b5132 11911 in.descpos = offset + (in.descdata - buf);
baea7ef1
AM
11912 if (in.descsz != 0
11913 && (in.descdata >= buf + size
11914 || in.descsz > buf - in.descdata + size))
11915 return FALSE;
252b5132 11916
718175fa 11917 switch (bfd_get_format (abfd))
07d6d2b8 11918 {
718175fa
JK
11919 default:
11920 return TRUE;
11921
11922 case bfd_core:
f64e188b 11923 {
8acbedd6 11924#define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
f64e188b 11925 struct
718175fa 11926 {
f64e188b 11927 const char * string;
8acbedd6 11928 size_t len;
f64e188b 11929 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
718175fa 11930 }
f64e188b 11931 grokers[] =
b15fa79e 11932 {
8acbedd6 11933 GROKER_ELEMENT ("", elfcore_grok_note),
aa1ed4a9 11934 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
8acbedd6
KS
11935 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
11936 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
11937 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
864619bb
KS
11938 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
11939 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note)
f64e188b 11940 };
8acbedd6 11941#undef GROKER_ELEMENT
f64e188b
NC
11942 int i;
11943
11944 for (i = ARRAY_SIZE (grokers); i--;)
8acbedd6
KS
11945 {
11946 if (in.namesz >= grokers[i].len
11947 && strncmp (in.namedata, grokers[i].string,
11948 grokers[i].len) == 0)
11949 {
11950 if (! grokers[i].func (abfd, & in))
11951 return FALSE;
11952 break;
11953 }
11954 }
f64e188b
NC
11955 break;
11956 }
718175fa
JK
11957
11958 case bfd_object:
11959 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
11960 {
11961 if (! elfobj_grok_gnu_note (abfd, &in))
11962 return FALSE;
11963 }
e21e5835
NC
11964 else if (in.namesz == sizeof "stapsdt"
11965 && strcmp (in.namedata, "stapsdt") == 0)
11966 {
11967 if (! elfobj_grok_stapsdt_note (abfd, &in))
11968 return FALSE;
11969 }
718175fa 11970 break;
08a40648 11971 }
252b5132 11972
276da9b3 11973 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
252b5132
RH
11974 }
11975
718175fa
JK
11976 return TRUE;
11977}
11978
864619bb 11979bfd_boolean
276da9b3
L
11980elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
11981 size_t align)
718175fa
JK
11982{
11983 char *buf;
11984
957e1fc1 11985 if (size == 0 || (size + 1) == 0)
718175fa
JK
11986 return TRUE;
11987
11988 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
11989 return FALSE;
11990
2bb3687b 11991 buf = (char *) _bfd_malloc_and_read (abfd, size + 1, size);
718175fa
JK
11992 if (buf == NULL)
11993 return FALSE;
11994
f64e188b
NC
11995 /* PR 17512: file: ec08f814
11996 0-termintate the buffer so that string searches will not overflow. */
11997 buf[size] = 0;
11998
2bb3687b 11999 if (!elf_parse_notes (abfd, buf, size, offset, align))
718175fa
JK
12000 {
12001 free (buf);
12002 return FALSE;
12003 }
12004
252b5132 12005 free (buf);
b34976b6 12006 return TRUE;
252b5132 12007}
98d8431c
JB
12008\f
12009/* Providing external access to the ELF program header table. */
12010
12011/* Return an upper bound on the number of bytes required to store a
12012 copy of ABFD's program header table entries. Return -1 if an error
12013 occurs; bfd_get_error will return an appropriate code. */
c044fabd 12014
98d8431c 12015long
217aa764 12016bfd_get_elf_phdr_upper_bound (bfd *abfd)
98d8431c
JB
12017{
12018 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12019 {
12020 bfd_set_error (bfd_error_wrong_format);
12021 return -1;
12022 }
12023
936e320b 12024 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
98d8431c
JB
12025}
12026
98d8431c
JB
12027/* Copy ABFD's program header table entries to *PHDRS. The entries
12028 will be stored as an array of Elf_Internal_Phdr structures, as
12029 defined in include/elf/internal.h. To find out how large the
12030 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
12031
12032 Return the number of program header table entries read, or -1 if an
12033 error occurs; bfd_get_error will return an appropriate code. */
c044fabd 12034
98d8431c 12035int
217aa764 12036bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
98d8431c
JB
12037{
12038 int num_phdrs;
12039
12040 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12041 {
12042 bfd_set_error (bfd_error_wrong_format);
12043 return -1;
12044 }
12045
12046 num_phdrs = elf_elfheader (abfd)->e_phnum;
01bcaf63
TT
12047 if (num_phdrs != 0)
12048 memcpy (phdrs, elf_tdata (abfd)->phdr,
12049 num_phdrs * sizeof (Elf_Internal_Phdr));
98d8431c
JB
12050
12051 return num_phdrs;
12052}
ae4221d7 12053
db6751f2 12054enum elf_reloc_type_class
7e612e98
AM
12055_bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
12056 const asection *rel_sec ATTRIBUTE_UNUSED,
12057 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
db6751f2
JJ
12058{
12059 return reloc_class_normal;
12060}
f8df10f4 12061
47d9a591 12062/* For RELA architectures, return the relocation value for a
f8df10f4
JJ
12063 relocation against a local symbol. */
12064
12065bfd_vma
217aa764
AM
12066_bfd_elf_rela_local_sym (bfd *abfd,
12067 Elf_Internal_Sym *sym,
8517fae7 12068 asection **psec,
217aa764 12069 Elf_Internal_Rela *rel)
f8df10f4 12070{
8517fae7 12071 asection *sec = *psec;
f8df10f4
JJ
12072 bfd_vma relocation;
12073
6835821b
AM
12074 relocation = (sec->output_section->vma
12075 + sec->output_offset
12076 + sym->st_value);
f8df10f4 12077 if ((sec->flags & SEC_MERGE)
c629eae0 12078 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
dbaa2011 12079 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
f8df10f4 12080 {
f8df10f4 12081 rel->r_addend =
8517fae7 12082 _bfd_merged_section_offset (abfd, psec,
65765700 12083 elf_section_data (sec)->sec_info,
753731ee
AM
12084 sym->st_value + rel->r_addend);
12085 if (sec != *psec)
12086 {
12087 /* If we have changed the section, and our original section is
12088 marked with SEC_EXCLUDE, it means that the original
12089 SEC_MERGE section has been completely subsumed in some
12090 other SEC_MERGE section. In this case, we need to leave
12091 some info around for --emit-relocs. */
12092 if ((sec->flags & SEC_EXCLUDE) != 0)
12093 sec->kept_section = *psec;
12094 sec = *psec;
12095 }
8517fae7
AM
12096 rel->r_addend -= relocation;
12097 rel->r_addend += sec->output_section->vma + sec->output_offset;
f8df10f4
JJ
12098 }
12099 return relocation;
12100}
c629eae0
JJ
12101
12102bfd_vma
217aa764
AM
12103_bfd_elf_rel_local_sym (bfd *abfd,
12104 Elf_Internal_Sym *sym,
12105 asection **psec,
12106 bfd_vma addend)
47d9a591 12107{
c629eae0
JJ
12108 asection *sec = *psec;
12109
6835821b 12110 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
c629eae0
JJ
12111 return sym->st_value + addend;
12112
12113 return _bfd_merged_section_offset (abfd, psec,
65765700 12114 elf_section_data (sec)->sec_info,
753731ee 12115 sym->st_value + addend);
c629eae0
JJ
12116}
12117
37b01f6a
DG
12118/* Adjust an address within a section. Given OFFSET within SEC, return
12119 the new offset within the section, based upon changes made to the
12120 section. Returns -1 if the offset is now invalid.
12121 The offset (in abnd out) is in target sized bytes, however big a
12122 byte may be. */
12123
c629eae0 12124bfd_vma
217aa764 12125_bfd_elf_section_offset (bfd *abfd,
92e4ec35 12126 struct bfd_link_info *info,
217aa764
AM
12127 asection *sec,
12128 bfd_vma offset)
c629eae0 12129{
68bfbfcc 12130 switch (sec->sec_info_type)
65765700 12131 {
dbaa2011 12132 case SEC_INFO_TYPE_STABS:
eea6121a
AM
12133 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12134 offset);
dbaa2011 12135 case SEC_INFO_TYPE_EH_FRAME:
92e4ec35 12136 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
37b01f6a 12137
65765700 12138 default:
310fd250
L
12139 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12140 {
37b01f6a 12141 /* Reverse the offset. */
310fd250
L
12142 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12143 bfd_size_type address_size = bed->s->arch_size / 8;
37b01f6a
DG
12144
12145 /* address_size and sec->size are in octets. Convert
12146 to bytes before subtracting the original offset. */
61826503 12147 offset = ((sec->size - address_size)
bb294208 12148 / bfd_octets_per_byte (abfd, sec) - offset);
310fd250 12149 }
65765700
JJ
12150 return offset;
12151 }
c629eae0 12152}
3333a7c3
RM
12153\f
12154/* Create a new BFD as if by bfd_openr. Rather than opening a file,
12155 reconstruct an ELF file by reading the segments out of remote memory
12156 based on the ELF file header at EHDR_VMA and the ELF program headers it
12157 points to. If not null, *LOADBASEP is filled in with the difference
12158 between the VMAs from which the segments were read, and the VMAs the
12159 file headers (and hence BFD's idea of each section's VMA) put them at.
12160
12161 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12162 remote memory at target address VMA into the local buffer at MYADDR; it
12163 should return zero on success or an `errno' code on failure. TEMPL must
12164 be a BFD for an ELF target with the word size and byte order found in
12165 the remote memory. */
12166
12167bfd *
217aa764
AM
12168bfd_elf_bfd_from_remote_memory
12169 (bfd *templ,
12170 bfd_vma ehdr_vma,
f0a5d95a 12171 bfd_size_type size,
217aa764 12172 bfd_vma *loadbasep,
fe78531d 12173 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
3333a7c3
RM
12174{
12175 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
5979d6b6 12176 (templ, ehdr_vma, size, loadbasep, target_read_memory);
3333a7c3 12177}
4c45e5c9
JJ
12178\f
12179long
c9727e01
AM
12180_bfd_elf_get_synthetic_symtab (bfd *abfd,
12181 long symcount ATTRIBUTE_UNUSED,
12182 asymbol **syms ATTRIBUTE_UNUSED,
8615f3f2 12183 long dynsymcount,
c9727e01
AM
12184 asymbol **dynsyms,
12185 asymbol **ret)
4c45e5c9
JJ
12186{
12187 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12188 asection *relplt;
12189 asymbol *s;
12190 const char *relplt_name;
12191 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
12192 arelent *p;
12193 long count, i, n;
12194 size_t size;
12195 Elf_Internal_Shdr *hdr;
12196 char *names;
12197 asection *plt;
12198
8615f3f2
AM
12199 *ret = NULL;
12200
90e3cdf2
JJ
12201 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12202 return 0;
12203
8615f3f2
AM
12204 if (dynsymcount <= 0)
12205 return 0;
12206
4c45e5c9
JJ
12207 if (!bed->plt_sym_val)
12208 return 0;
12209
12210 relplt_name = bed->relplt_name;
12211 if (relplt_name == NULL)
d35fd659 12212 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
4c45e5c9
JJ
12213 relplt = bfd_get_section_by_name (abfd, relplt_name);
12214 if (relplt == NULL)
12215 return 0;
12216
12217 hdr = &elf_section_data (relplt)->this_hdr;
12218 if (hdr->sh_link != elf_dynsymtab (abfd)
12219 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12220 return 0;
12221
12222 plt = bfd_get_section_by_name (abfd, ".plt");
12223 if (plt == NULL)
12224 return 0;
12225
12226 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
c9727e01 12227 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
4c45e5c9
JJ
12228 return -1;
12229
eea6121a 12230 count = relplt->size / hdr->sh_entsize;
4c45e5c9
JJ
12231 size = count * sizeof (asymbol);
12232 p = relplt->relocation;
cb53bf42 12233 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
041de40d
AM
12234 {
12235 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12236 if (p->addend != 0)
12237 {
12238#ifdef BFD64
12239 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12240#else
12241 size += sizeof ("+0x") - 1 + 8;
12242#endif
12243 }
12244 }
4c45e5c9 12245
a50b1753 12246 s = *ret = (asymbol *) bfd_malloc (size);
4c45e5c9
JJ
12247 if (s == NULL)
12248 return -1;
12249
12250 names = (char *) (s + count);
12251 p = relplt->relocation;
12252 n = 0;
cb53bf42 12253 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
4c45e5c9
JJ
12254 {
12255 size_t len;
12256 bfd_vma addr;
12257
12258 addr = bed->plt_sym_val (i, plt, p);
12259 if (addr == (bfd_vma) -1)
12260 continue;
12261
12262 *s = **p->sym_ptr_ptr;
65a7a66f
AM
12263 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12264 we are defining a symbol, ensure one of them is set. */
12265 if ((s->flags & BSF_LOCAL) == 0)
12266 s->flags |= BSF_GLOBAL;
6ba2a415 12267 s->flags |= BSF_SYNTHETIC;
4c45e5c9
JJ
12268 s->section = plt;
12269 s->value = addr - plt->vma;
12270 s->name = names;
8f39ba8e 12271 s->udata.p = NULL;
4c45e5c9
JJ
12272 len = strlen ((*p->sym_ptr_ptr)->name);
12273 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12274 names += len;
041de40d
AM
12275 if (p->addend != 0)
12276 {
1d770845 12277 char buf[30], *a;
d324f6d6 12278
041de40d
AM
12279 memcpy (names, "+0x", sizeof ("+0x") - 1);
12280 names += sizeof ("+0x") - 1;
1d770845
L
12281 bfd_sprintf_vma (abfd, buf, p->addend);
12282 for (a = buf; *a == '0'; ++a)
12283 ;
12284 len = strlen (a);
12285 memcpy (names, a, len);
12286 names += len;
041de40d 12287 }
4c45e5c9
JJ
12288 memcpy (names, "@plt", sizeof ("@plt"));
12289 names += sizeof ("@plt");
8f39ba8e 12290 ++s, ++n;
4c45e5c9
JJ
12291 }
12292
12293 return n;
12294}
3d7f7666 12295
821e6ff6
AM
12296/* It is only used by x86-64 so far.
12297 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
7eacd66b
AM
12298 but current usage would allow all of _bfd_std_section to be zero. */
12299static const asymbol lcomm_sym
12300 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
3b22753a 12301asection _bfd_elf_large_com_section
7eacd66b 12302 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
821e6ff6 12303 "LARGE_COMMON", 0, SEC_IS_COMMON);
ecca9871 12304
cc364be6
AM
12305bfd_boolean
12306_bfd_elf_final_write_processing (bfd *abfd)
06f44071
AM
12307{
12308 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
d1036acb
L
12309
12310 i_ehdrp = elf_elfheader (abfd);
12311
06f44071
AM
12312 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12313 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
d8045f23 12314
df3a023b
AM
12315 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12316 SHF_GNU_MBIND sections or symbols of STT_GNU_IFUNC type or
12317 STB_GNU_UNIQUE binding. */
cc364be6
AM
12318 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12319 {
12320 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12321 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12322 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12323 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12324 {
12325 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
12326 _bfd_error_handler (_("GNU_MBIND section is unsupported"));
12327 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
12328 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is unsupported"));
12329 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
12330 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is unsupported"));
9aea1e31 12331 bfd_set_error (bfd_error_sorry);
cc364be6
AM
12332 return FALSE;
12333 }
12334 }
12335 return TRUE;
d1036acb 12336}
fcb93ecf
PB
12337
12338
12339/* Return TRUE for ELF symbol types that represent functions.
12340 This is the default version of this function, which is sufficient for
d8045f23 12341 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
fcb93ecf
PB
12342
12343bfd_boolean
12344_bfd_elf_is_function_type (unsigned int type)
12345{
d8045f23
NC
12346 return (type == STT_FUNC
12347 || type == STT_GNU_IFUNC);
fcb93ecf 12348}
9f296da3 12349
aef36ac1
AM
12350/* If the ELF symbol SYM might be a function in SEC, return the
12351 function size and set *CODE_OFF to the function's entry point,
12352 otherwise return zero. */
9f296da3 12353
aef36ac1
AM
12354bfd_size_type
12355_bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12356 bfd_vma *code_off)
9f296da3 12357{
aef36ac1
AM
12358 bfd_size_type size;
12359
ff9e0f5b 12360 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
aef36ac1
AM
12361 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12362 || sym->section != sec)
12363 return 0;
ff9e0f5b 12364
ff9e0f5b 12365 *code_off = sym->value;
aef36ac1
AM
12366 size = 0;
12367 if (!(sym->flags & BSF_SYNTHETIC))
12368 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
12369 if (size == 0)
12370 size = 1;
12371 return size;
9f296da3 12372}
a8e14f4c
NC
12373
12374/* Set to non-zero to enable some debug messages. */
12375#define DEBUG_SECONDARY_RELOCS 0
12376
12377/* An internal-to-the-bfd-library only section type
12378 used to indicate a cached secondary reloc section. */
12379#define SHT_SECONDARY_RELOC (SHT_LOOS + SHT_RELA)
12380
12381/* Create a BFD section to hold a secondary reloc section. */
12382
12383bfd_boolean
12384_bfd_elf_init_secondary_reloc_section (bfd * abfd,
12385 Elf_Internal_Shdr *hdr,
12386 const char * name,
12387 unsigned int shindex)
12388{
12389 /* We only support RELA secondary relocs. */
12390 if (hdr->sh_type != SHT_RELA)
12391 return FALSE;
12392
12393#if DEBUG_SECONDARY_RELOCS
12394 fprintf (stderr, "secondary reloc section %s encountered\n", name);
12395#endif
12396 hdr->sh_type = SHT_SECONDARY_RELOC;
12397 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
12398}
12399
12400/* Read in any secondary relocs associated with SEC. */
12401
12402bfd_boolean
12403_bfd_elf_slurp_secondary_reloc_section (bfd * abfd,
12404 asection * sec,
12405 asymbol ** symbols)
12406{
12407 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12408 asection * relsec;
12409 bfd_boolean result = TRUE;
12410 bfd_vma (*r_sym) (bfd_vma);
12411
12412#if BFD_DEFAULT_TARGET_SIZE > 32
12413 if (bfd_arch_bits_per_address (abfd) != 32)
12414 r_sym = elf64_r_sym;
12415 else
12416#endif
12417 r_sym = elf32_r_sym;
12418
12419 /* Discover if there are any secondary reloc sections
12420 associated with SEC. */
12421 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
12422 {
12423 Elf_Internal_Shdr * hdr = & elf_section_data (relsec)->this_hdr;
12424
12425 if (hdr->sh_type == SHT_SECONDARY_RELOC
12426 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx)
12427 {
12428 bfd_byte * native_relocs;
12429 bfd_byte * native_reloc;
12430 arelent * internal_relocs;
12431 arelent * internal_reloc;
12432 unsigned int i;
12433 unsigned int entsize;
12434 unsigned int symcount;
12435 unsigned int reloc_count;
12436 size_t amt;
12437
12438 if (ebd->elf_info_to_howto == NULL)
12439 return FALSE;
12440
12441#if DEBUG_SECONDARY_RELOCS
12442 fprintf (stderr, "read secondary relocs for %s from %s\n",
12443 sec->name, relsec->name);
12444#endif
12445 entsize = hdr->sh_entsize;
12446
12447 native_relocs = bfd_malloc (hdr->sh_size);
12448 if (native_relocs == NULL)
12449 {
12450 result = FALSE;
12451 continue;
12452 }
12453
12454 reloc_count = NUM_SHDR_ENTRIES (hdr);
12455 if (_bfd_mul_overflow (reloc_count, sizeof (arelent), & amt))
12456 {
ecbbbdba 12457 free (native_relocs);
a8e14f4c
NC
12458 bfd_set_error (bfd_error_file_too_big);
12459 result = FALSE;
12460 continue;
12461 }
12462
12463 internal_relocs = (arelent *) bfd_alloc (abfd, amt);
12464 if (internal_relocs == NULL)
12465 {
12466 free (native_relocs);
12467 result = FALSE;
12468 continue;
12469 }
12470
12471 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
12472 || (bfd_bread (native_relocs, hdr->sh_size, abfd)
12473 != hdr->sh_size))
12474 {
12475 free (native_relocs);
ecbbbdba
NC
12476 /* The internal_relocs will be freed when
12477 the memory for the bfd is released. */
a8e14f4c
NC
12478 result = FALSE;
12479 continue;
12480 }
12481
12482 symcount = bfd_get_symcount (abfd);
12483
12484 for (i = 0, internal_reloc = internal_relocs,
12485 native_reloc = native_relocs;
12486 i < reloc_count;
12487 i++, internal_reloc++, native_reloc += entsize)
12488 {
12489 bfd_boolean res;
12490 Elf_Internal_Rela rela;
12491
12492 ebd->s->swap_reloca_in (abfd, native_reloc, & rela);
12493
12494 /* The address of an ELF reloc is section relative for an object
12495 file, and absolute for an executable file or shared library.
12496 The address of a normal BFD reloc is always section relative,
12497 and the address of a dynamic reloc is absolute.. */
12498 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
12499 internal_reloc->address = rela.r_offset;
12500 else
12501 internal_reloc->address = rela.r_offset - sec->vma;
12502
12503 if (r_sym (rela.r_info) == STN_UNDEF)
12504 {
12505 /* FIXME: This and the error case below mean that we
12506 have a symbol on relocs that is not elf_symbol_type. */
12507 internal_reloc->sym_ptr_ptr =
12508 bfd_abs_section_ptr->symbol_ptr_ptr;
12509 }
12510 else if (r_sym (rela.r_info) > symcount)
12511 {
12512 _bfd_error_handler
12513 /* xgettext:c-format */
12514 (_("%pB(%pA): relocation %d has invalid symbol index %ld"),
12515 abfd, sec, i, (long) r_sym (rela.r_info));
12516 bfd_set_error (bfd_error_bad_value);
12517 internal_reloc->sym_ptr_ptr =
12518 bfd_abs_section_ptr->symbol_ptr_ptr;
12519 result = FALSE;
12520 }
12521 else
12522 {
12523 asymbol **ps;
12524
12525 ps = symbols + r_sym (rela.r_info) - 1;
12526
12527 internal_reloc->sym_ptr_ptr = ps;
12528 /* Make sure that this symbol is not removed by strip. */
12529 (*ps)->flags |= BSF_KEEP;
12530 }
12531
12532 internal_reloc->addend = rela.r_addend;
12533
12534 res = ebd->elf_info_to_howto (abfd, internal_reloc, & rela);
12535 if (! res || internal_reloc->howto == NULL)
12536 {
12537#if DEBUG_SECONDARY_RELOCS
12538 fprintf (stderr, "there is no howto associated with reloc %lx\n",
12539 rela.r_info);
12540#endif
12541 result = FALSE;
12542 }
12543 }
12544
12545 free (native_relocs);
12546 /* Store the internal relocs. */
12547 elf_section_data (relsec)->sec_info = internal_relocs;
12548 }
12549 }
12550
12551 return result;
12552}
12553
12554/* Set the ELF section header fields of an output secondary reloc section. */
12555
12556bfd_boolean
12557_bfd_elf_copy_special_section_fields (const bfd * ibfd ATTRIBUTE_UNUSED,
12558 bfd * obfd ATTRIBUTE_UNUSED,
12559 const Elf_Internal_Shdr * isection,
12560 Elf_Internal_Shdr * osection)
12561{
12562 asection * isec;
12563 asection * osec;
12564
12565 if (isection == NULL)
12566 return FALSE;
12567
12568 if (isection->sh_type != SHT_SECONDARY_RELOC)
12569 return TRUE;
12570
12571 isec = isection->bfd_section;
12572 if (isec == NULL)
12573 return FALSE;
12574
12575 osec = osection->bfd_section;
12576 if (osec == NULL)
12577 return FALSE;
12578
12579 BFD_ASSERT (elf_section_data (osec)->sec_info == NULL);
12580 elf_section_data (osec)->sec_info = elf_section_data (isec)->sec_info;
12581 osection->sh_type = SHT_RELA;
12582 osection->sh_link = elf_onesymtab (obfd);
12583 if (osection->sh_link == 0)
12584 {
12585 /* There is no symbol table - we are hosed... */
12586 _bfd_error_handler
12587 /* xgettext:c-format */
12588 (_("%pB(%pA): link section cannot be set because the output file does not have a symbol table"),
12589 obfd, osec);
12590 bfd_set_error (bfd_error_bad_value);
12591 return FALSE;
12592 }
12593
12594 /* Find the output section that corresponds to the isection's sh_info link. */
327ef784
NC
12595 if (isection->sh_info == 0
12596 || isection->sh_info >= elf_numsections (ibfd))
12597 {
12598 _bfd_error_handler
12599 /* xgettext:c-format */
12600 (_("%pB(%pA): info section index is invalid"),
12601 obfd, osec);
12602 bfd_set_error (bfd_error_bad_value);
12603 return FALSE;
12604 }
12605
a8e14f4c
NC
12606 isection = elf_elfsections (ibfd)[isection->sh_info];
12607
327ef784
NC
12608 if (isection == NULL
12609 || isection->bfd_section == NULL
12610 || isection->bfd_section->output_section == NULL)
12611 {
12612 _bfd_error_handler
12613 /* xgettext:c-format */
12614 (_("%pB(%pA): info section index cannot be set because the section is not in the output"),
12615 obfd, osec);
12616 bfd_set_error (bfd_error_bad_value);
12617 return FALSE;
12618 }
12619
a8e14f4c
NC
12620 osection->sh_info =
12621 elf_section_data (isection->bfd_section->output_section)->this_idx;
12622
12623#if DEBUG_SECONDARY_RELOCS
12624 fprintf (stderr, "update header of %s, sh_link = %u, sh_info = %u\n",
12625 osec->name, osection->sh_link, osection->sh_info);
12626#endif
12627
12628 return TRUE;
12629}
12630
12631/* Write out a secondary reloc section. */
12632
12633bfd_boolean
12634_bfd_elf_write_secondary_reloc_section (bfd *abfd, asection *sec)
12635{
12636 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12637 bfd_vma addr_offset;
12638 asection * relsec;
12639 bfd_vma (*r_info) (bfd_vma, bfd_vma);
12640
12641#if BFD_DEFAULT_TARGET_SIZE > 32
12642 if (bfd_arch_bits_per_address (abfd) != 32)
12643 r_info = elf64_r_info;
12644 else
12645#endif
12646 r_info = elf32_r_info;
12647
12648 if (sec == NULL)
12649 return FALSE;
12650
12651 /* The address of an ELF reloc is section relative for an object
12652 file, and absolute for an executable file or shared library.
12653 The address of a BFD reloc is always section relative. */
12654 addr_offset = 0;
12655 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
12656 addr_offset = sec->vma;
12657
12658 /* Discover if there are any secondary reloc sections
12659 associated with SEC. */
12660 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
12661 {
12662 const struct bfd_elf_section_data * const esd = elf_section_data (relsec);
12663 Elf_Internal_Shdr * const hdr = (Elf_Internal_Shdr *) & esd->this_hdr;
12664
12665 if (hdr->sh_type == SHT_RELA
12666 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx)
12667 {
12668 asymbol * last_sym;
12669 int last_sym_idx;
12670 unsigned int reloc_count;
12671 unsigned int idx;
12672 arelent * src_irel;
12673 bfd_byte * dst_rela;
12674
12675 BFD_ASSERT (hdr->contents == NULL);
12676
12677 reloc_count = hdr->sh_size / hdr->sh_entsize;
12678 BFD_ASSERT (reloc_count > 0);
12679
12680 hdr->contents = bfd_alloc (abfd, hdr->sh_size);
12681 if (hdr->contents == NULL)
12682 continue;
12683
12684#if DEBUG_SECONDARY_RELOCS
12685 fprintf (stderr, "write %u secondary relocs for %s from %s\n",
12686 reloc_count, sec->name, relsec->name);
12687#endif
12688 last_sym = NULL;
12689 last_sym_idx = 0;
12690 dst_rela = hdr->contents;
12691 src_irel = (arelent *) esd->sec_info;
12692 BFD_ASSERT (src_irel != NULL);
12693
12694 for (idx = 0; idx < reloc_count; idx++, dst_rela += hdr->sh_entsize)
12695 {
12696 Elf_Internal_Rela src_rela;
12697 arelent *ptr;
12698 asymbol *sym;
12699 int n;
12700
12701 ptr = src_irel + idx;
12702 sym = *ptr->sym_ptr_ptr;
12703
12704 if (sym == last_sym)
12705 n = last_sym_idx;
12706 else
12707 {
12708 last_sym = sym;
12709 n = _bfd_elf_symbol_from_bfd_symbol (abfd, & sym);
12710 if (n < 0)
12711 {
12712#if DEBUG_SECONDARY_RELOCS
12713 fprintf (stderr, "failed to find symbol %s whilst rewriting relocs\n",
12714 sym->name);
12715#endif
12716 /* FIXME: Signal failure somehow. */
12717 n = 0;
12718 }
12719 last_sym_idx = n;
12720 }
12721
12722 if ((*ptr->sym_ptr_ptr)->the_bfd != NULL
12723 && (*ptr->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec
12724 && ! _bfd_elf_validate_reloc (abfd, ptr))
12725 {
12726#if DEBUG_SECONDARY_RELOCS
12727 fprintf (stderr, "symbol %s is not in the output bfd\n",
12728 sym->name);
12729#endif
12730 /* FIXME: Signal failure somehow. */
12731 n = 0;
12732 }
12733
12734 if (ptr->howto == NULL)
12735 {
12736#if DEBUG_SECONDARY_RELOCS
12737 fprintf (stderr, "reloc for symbol %s does not have a howto associated with it\n",
12738 sym->name);
12739#endif
12740 /* FIXME: Signal failure somehow. */
12741 n = 0;
12742 }
12743
12744 src_rela.r_offset = ptr->address + addr_offset;
12745 src_rela.r_info = r_info (n, ptr->howto->type);
12746 src_rela.r_addend = ptr->addend;
12747 ebd->s->swap_reloca_out (abfd, &src_rela, dst_rela);
12748 }
12749 }
12750 }
12751
12752 return TRUE;
12753}