]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf.c
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / bfd / elf.c
CommitLineData
252b5132 1/* ELF executable support for BFD.
340b6d91 2
250d07de 3 Copyright (C) 1993-2021 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 *);
0a1b45a2
AM
53static bool assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
54static bool swap_out_syms (bfd *, struct elf_strtab_hash **, int,
55 struct bfd_link_info *);
56static bool elf_parse_notes (bfd *abfd, char *buf, size_t size,
57 file_ptr offset, size_t align);
50b2bdb7 58
252b5132
RH
59/* Swap version information in and out. The version information is
60 currently size independent. If that ever changes, this code will
61 need to move into elfcode.h. */
62
63/* Swap in a Verdef structure. */
64
65void
217aa764
AM
66_bfd_elf_swap_verdef_in (bfd *abfd,
67 const Elf_External_Verdef *src,
68 Elf_Internal_Verdef *dst)
252b5132 69{
dc810e39
AM
70 dst->vd_version = H_GET_16 (abfd, src->vd_version);
71 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
72 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
73 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
74 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
75 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
76 dst->vd_next = H_GET_32 (abfd, src->vd_next);
252b5132
RH
77}
78
79/* Swap out a Verdef structure. */
80
81void
217aa764
AM
82_bfd_elf_swap_verdef_out (bfd *abfd,
83 const Elf_Internal_Verdef *src,
84 Elf_External_Verdef *dst)
252b5132 85{
dc810e39
AM
86 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
87 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
88 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
89 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
90 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
91 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
92 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
252b5132
RH
93}
94
95/* Swap in a Verdaux structure. */
96
97void
217aa764
AM
98_bfd_elf_swap_verdaux_in (bfd *abfd,
99 const Elf_External_Verdaux *src,
100 Elf_Internal_Verdaux *dst)
252b5132 101{
dc810e39
AM
102 dst->vda_name = H_GET_32 (abfd, src->vda_name);
103 dst->vda_next = H_GET_32 (abfd, src->vda_next);
252b5132
RH
104}
105
106/* Swap out a Verdaux structure. */
107
108void
217aa764
AM
109_bfd_elf_swap_verdaux_out (bfd *abfd,
110 const Elf_Internal_Verdaux *src,
111 Elf_External_Verdaux *dst)
252b5132 112{
dc810e39
AM
113 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
114 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
252b5132
RH
115}
116
117/* Swap in a Verneed structure. */
118
119void
217aa764
AM
120_bfd_elf_swap_verneed_in (bfd *abfd,
121 const Elf_External_Verneed *src,
122 Elf_Internal_Verneed *dst)
252b5132 123{
dc810e39
AM
124 dst->vn_version = H_GET_16 (abfd, src->vn_version);
125 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
126 dst->vn_file = H_GET_32 (abfd, src->vn_file);
127 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
128 dst->vn_next = H_GET_32 (abfd, src->vn_next);
252b5132
RH
129}
130
131/* Swap out a Verneed structure. */
132
133void
217aa764
AM
134_bfd_elf_swap_verneed_out (bfd *abfd,
135 const Elf_Internal_Verneed *src,
136 Elf_External_Verneed *dst)
252b5132 137{
dc810e39
AM
138 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
139 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
140 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
141 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
142 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
252b5132
RH
143}
144
145/* Swap in a Vernaux structure. */
146
147void
217aa764
AM
148_bfd_elf_swap_vernaux_in (bfd *abfd,
149 const Elf_External_Vernaux *src,
150 Elf_Internal_Vernaux *dst)
252b5132 151{
dc810e39
AM
152 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
153 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
154 dst->vna_other = H_GET_16 (abfd, src->vna_other);
155 dst->vna_name = H_GET_32 (abfd, src->vna_name);
156 dst->vna_next = H_GET_32 (abfd, src->vna_next);
252b5132
RH
157}
158
159/* Swap out a Vernaux structure. */
160
161void
217aa764
AM
162_bfd_elf_swap_vernaux_out (bfd *abfd,
163 const Elf_Internal_Vernaux *src,
164 Elf_External_Vernaux *dst)
252b5132 165{
dc810e39
AM
166 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
167 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
168 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
169 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
170 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
252b5132
RH
171}
172
173/* Swap in a Versym structure. */
174
175void
217aa764
AM
176_bfd_elf_swap_versym_in (bfd *abfd,
177 const Elf_External_Versym *src,
178 Elf_Internal_Versym *dst)
252b5132 179{
dc810e39 180 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
252b5132
RH
181}
182
183/* Swap out a Versym structure. */
184
185void
217aa764
AM
186_bfd_elf_swap_versym_out (bfd *abfd,
187 const Elf_Internal_Versym *src,
188 Elf_External_Versym *dst)
252b5132 189{
dc810e39 190 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
252b5132
RH
191}
192
193/* Standard ELF hash function. Do not change this function; you will
194 cause invalid hash tables to be generated. */
3a99b017 195
252b5132 196unsigned long
217aa764 197bfd_elf_hash (const char *namearg)
252b5132 198{
3a99b017 199 const unsigned char *name = (const unsigned char *) namearg;
252b5132
RH
200 unsigned long h = 0;
201 unsigned long g;
202 int ch;
203
204 while ((ch = *name++) != '\0')
205 {
206 h = (h << 4) + ch;
207 if ((g = (h & 0xf0000000)) != 0)
208 {
209 h ^= g >> 24;
210 /* The ELF ABI says `h &= ~g', but this is equivalent in
211 this case and on some machines one insn instead of two. */
212 h ^= g;
213 }
214 }
32dfa85d 215 return h & 0xffffffff;
252b5132
RH
216}
217
fdc90cb4
JJ
218/* DT_GNU_HASH hash function. Do not change this function; you will
219 cause invalid hash tables to be generated. */
220
221unsigned long
222bfd_elf_gnu_hash (const char *namearg)
223{
224 const unsigned char *name = (const unsigned char *) namearg;
225 unsigned long h = 5381;
226 unsigned char ch;
227
228 while ((ch = *name++) != '\0')
229 h = (h << 5) + h + ch;
230 return h & 0xffffffff;
231}
232
0c8d6e5c
AM
233/* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
234 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
0a1b45a2 235bool
0c8d6e5c 236bfd_elf_allocate_object (bfd *abfd,
0ffa91dd 237 size_t object_size,
4dfe6ac6 238 enum elf_target_id object_id)
252b5132 239{
0ffa91dd
NC
240 BFD_ASSERT (object_size >= sizeof (struct elf_obj_tdata));
241 abfd->tdata.any = bfd_zalloc (abfd, object_size);
242 if (abfd->tdata.any == NULL)
0a1b45a2 243 return false;
252b5132 244
0ffa91dd 245 elf_object_id (abfd) = object_id;
c0355132
AM
246 if (abfd->direction != read_direction)
247 {
248 struct output_elf_obj_tdata *o = bfd_zalloc (abfd, sizeof *o);
249 if (o == NULL)
0a1b45a2 250 return false;
c0355132
AM
251 elf_tdata (abfd)->o = o;
252 elf_program_header_size (abfd) = (bfd_size_type) -1;
253 }
0a1b45a2 254 return true;
252b5132
RH
255}
256
0ffa91dd 257
0a1b45a2 258bool
ae95ffa6 259bfd_elf_make_object (bfd *abfd)
0ffa91dd 260{
ae95ffa6 261 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
0ffa91dd 262 return bfd_elf_allocate_object (abfd, sizeof (struct elf_obj_tdata),
ae95ffa6 263 bed->target_id);
0ffa91dd
NC
264}
265
0a1b45a2 266bool
217aa764 267bfd_elf_mkcorefile (bfd *abfd)
252b5132 268{
c044fabd 269 /* I think this can be done just like an object file. */
228e534f 270 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
0a1b45a2 271 return false;
228e534f
AM
272 elf_tdata (abfd)->core = bfd_zalloc (abfd, sizeof (*elf_tdata (abfd)->core));
273 return elf_tdata (abfd)->core != NULL;
252b5132
RH
274}
275
6d5944fc 276char *
217aa764 277bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
252b5132
RH
278{
279 Elf_Internal_Shdr **i_shdrp;
f075ee0c 280 bfd_byte *shstrtab = NULL;
dc810e39
AM
281 file_ptr offset;
282 bfd_size_type shstrtabsize;
252b5132
RH
283
284 i_shdrp = elf_elfsections (abfd);
74f2e02b
AM
285 if (i_shdrp == 0
286 || shindex >= elf_numsections (abfd)
287 || i_shdrp[shindex] == 0)
f075ee0c 288 return NULL;
252b5132 289
f075ee0c 290 shstrtab = i_shdrp[shindex]->contents;
252b5132
RH
291 if (shstrtab == NULL)
292 {
c044fabd 293 /* No cached one, attempt to read, and cache what we read. */
252b5132
RH
294 offset = i_shdrp[shindex]->sh_offset;
295 shstrtabsize = i_shdrp[shindex]->sh_size;
c6c60d09
JJ
296
297 /* Allocate and clear an extra byte at the end, to prevent crashes
298 in case the string table is not terminated. */
3471d59d 299 if (shstrtabsize + 1 <= 1
06614111 300 || bfd_seek (abfd, offset, SEEK_SET) != 0
2bb3687b
AM
301 || (shstrtab = _bfd_alloc_and_read (abfd, shstrtabsize + 1,
302 shstrtabsize)) == NULL)
303 {
3471d59d
CC
304 /* Once we've failed to read it, make sure we don't keep
305 trying. Otherwise, we'll keep allocating space for
306 the string table over and over. */
307 i_shdrp[shindex]->sh_size = 0;
c6c60d09
JJ
308 }
309 else
310 shstrtab[shstrtabsize] = '\0';
217aa764 311 i_shdrp[shindex]->contents = shstrtab;
252b5132 312 }
f075ee0c 313 return (char *) shstrtab;
252b5132
RH
314}
315
316char *
217aa764
AM
317bfd_elf_string_from_elf_section (bfd *abfd,
318 unsigned int shindex,
319 unsigned int strindex)
252b5132
RH
320{
321 Elf_Internal_Shdr *hdr;
322
323 if (strindex == 0)
324 return "";
325
74f2e02b
AM
326 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
327 return NULL;
328
252b5132
RH
329 hdr = elf_elfsections (abfd)[shindex];
330
06614111
NC
331 if (hdr->contents == NULL)
332 {
333 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
334 {
335 /* PR 17512: file: f057ec89. */
695344c0 336 /* xgettext:c-format */
871b3ab2 337 _bfd_error_handler (_("%pB: attempt to load strings from"
63a5468a 338 " a non-string section (number %d)"),
06614111
NC
339 abfd, shindex);
340 return NULL;
341 }
b1fa9dd6 342
06614111
NC
343 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
344 return NULL;
345 }
eed5def8
NC
346 else
347 {
348 /* PR 24273: The string section's contents may have already
349 been loaded elsewhere, eg because a corrupt file has the
350 string section index in the ELF header pointing at a group
351 section. So be paranoid, and test that the last byte of
352 the section is zero. */
353 if (hdr->sh_size == 0 || hdr->contents[hdr->sh_size - 1] != 0)
354 return NULL;
355 }
252b5132
RH
356
357 if (strindex >= hdr->sh_size)
358 {
1b3a8575 359 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
4eca0228 360 _bfd_error_handler
695344c0 361 /* xgettext:c-format */
2dcf00ce
AM
362 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
363 abfd, strindex, (uint64_t) hdr->sh_size,
1b3a8575 364 (shindex == shstrndx && strindex == hdr->sh_name
252b5132 365 ? ".shstrtab"
1b3a8575 366 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
45b222d6 367 return NULL;
252b5132
RH
368 }
369
370 return ((char *) hdr->contents) + strindex;
371}
372
6cdc0ccc
AM
373/* Read and convert symbols to internal format.
374 SYMCOUNT specifies the number of symbols to read, starting from
375 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
376 are non-NULL, they are used to store the internal symbols, external
b7c368d0
NC
377 symbols, and symbol section index extensions, respectively.
378 Returns a pointer to the internal symbol buffer (malloced if necessary)
379 or NULL if there were no symbols or some kind of problem. */
6cdc0ccc
AM
380
381Elf_Internal_Sym *
217aa764
AM
382bfd_elf_get_elf_syms (bfd *ibfd,
383 Elf_Internal_Shdr *symtab_hdr,
384 size_t symcount,
385 size_t symoffset,
386 Elf_Internal_Sym *intsym_buf,
387 void *extsym_buf,
388 Elf_External_Sym_Shndx *extshndx_buf)
6cdc0ccc
AM
389{
390 Elf_Internal_Shdr *shndx_hdr;
217aa764 391 void *alloc_ext;
df622259 392 const bfd_byte *esym;
6cdc0ccc
AM
393 Elf_External_Sym_Shndx *alloc_extshndx;
394 Elf_External_Sym_Shndx *shndx;
4dd07732 395 Elf_Internal_Sym *alloc_intsym;
6cdc0ccc
AM
396 Elf_Internal_Sym *isym;
397 Elf_Internal_Sym *isymend;
9c5bfbb7 398 const struct elf_backend_data *bed;
6cdc0ccc 399 size_t extsym_size;
1f4361a7 400 size_t amt;
6cdc0ccc
AM
401 file_ptr pos;
402
e44a2c9c
AM
403 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
404 abort ();
405
6cdc0ccc
AM
406 if (symcount == 0)
407 return intsym_buf;
408
409 /* Normal syms might have section extension entries. */
410 shndx_hdr = NULL;
6a40cf0c
NC
411 if (elf_symtab_shndx_list (ibfd) != NULL)
412 {
413 elf_section_list * entry;
414 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
415
416 /* Find an index section that is linked to this symtab section. */
417 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
315350be
NC
418 {
419 /* PR 20063. */
420 if (entry->hdr.sh_link >= elf_numsections (ibfd))
421 continue;
422
423 if (sections[entry->hdr.sh_link] == symtab_hdr)
424 {
425 shndx_hdr = & entry->hdr;
426 break;
427 };
428 }
6a40cf0c
NC
429
430 if (shndx_hdr == NULL)
431 {
432 if (symtab_hdr == & elf_symtab_hdr (ibfd))
433 /* Not really accurate, but this was how the old code used to work. */
434 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
435 /* Otherwise we do nothing. The assumption is that
436 the index table will not be needed. */
437 }
438 }
6cdc0ccc
AM
439
440 /* Read the symbols. */
441 alloc_ext = NULL;
442 alloc_extshndx = NULL;
4dd07732 443 alloc_intsym = NULL;
6cdc0ccc
AM
444 bed = get_elf_backend_data (ibfd);
445 extsym_size = bed->s->sizeof_sym;
1f4361a7
AM
446 if (_bfd_mul_overflow (symcount, extsym_size, &amt))
447 {
448 bfd_set_error (bfd_error_file_too_big);
449 intsym_buf = NULL;
450 goto out;
451 }
6cdc0ccc
AM
452 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
453 if (extsym_buf == NULL)
454 {
1f4361a7 455 alloc_ext = bfd_malloc (amt);
6cdc0ccc
AM
456 extsym_buf = alloc_ext;
457 }
458 if (extsym_buf == NULL
459 || bfd_seek (ibfd, pos, SEEK_SET) != 0
460 || bfd_bread (extsym_buf, amt, ibfd) != amt)
461 {
462 intsym_buf = NULL;
463 goto out;
464 }
465
466 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
467 extshndx_buf = NULL;
468 else
469 {
1f4361a7
AM
470 if (_bfd_mul_overflow (symcount, sizeof (Elf_External_Sym_Shndx), &amt))
471 {
472 bfd_set_error (bfd_error_file_too_big);
473 intsym_buf = NULL;
474 goto out;
475 }
6cdc0ccc
AM
476 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
477 if (extshndx_buf == NULL)
478 {
1f4361a7 479 alloc_extshndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
6cdc0ccc
AM
480 extshndx_buf = alloc_extshndx;
481 }
482 if (extshndx_buf == NULL
483 || bfd_seek (ibfd, pos, SEEK_SET) != 0
484 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
485 {
486 intsym_buf = NULL;
487 goto out;
488 }
489 }
490
491 if (intsym_buf == NULL)
492 {
1f4361a7
AM
493 if (_bfd_mul_overflow (symcount, sizeof (Elf_Internal_Sym), &amt))
494 {
495 bfd_set_error (bfd_error_file_too_big);
496 goto out;
497 }
498 alloc_intsym = (Elf_Internal_Sym *) bfd_malloc (amt);
4dd07732 499 intsym_buf = alloc_intsym;
6cdc0ccc
AM
500 if (intsym_buf == NULL)
501 goto out;
502 }
503
504 /* Convert the symbols to internal form. */
505 isymend = intsym_buf + symcount;
a50b1753 506 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
07d6d2b8 507 shndx = extshndx_buf;
6cdc0ccc
AM
508 isym < isymend;
509 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
8384fb8f
AM
510 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
511 {
512 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
695344c0 513 /* xgettext:c-format */
871b3ab2 514 _bfd_error_handler (_("%pB symbol number %lu references"
63a5468a 515 " nonexistent SHT_SYMTAB_SHNDX section"),
4eca0228 516 ibfd, (unsigned long) symoffset);
c9594989 517 free (alloc_intsym);
8384fb8f
AM
518 intsym_buf = NULL;
519 goto out;
520 }
6cdc0ccc
AM
521
522 out:
c9594989
AM
523 free (alloc_ext);
524 free (alloc_extshndx);
6cdc0ccc
AM
525
526 return intsym_buf;
527}
528
5cab59f6
AM
529/* Look up a symbol name. */
530const char *
be8dd2ca
AM
531bfd_elf_sym_name (bfd *abfd,
532 Elf_Internal_Shdr *symtab_hdr,
26c61ae5
L
533 Elf_Internal_Sym *isym,
534 asection *sym_sec)
5cab59f6 535{
26c61ae5 536 const char *name;
5cab59f6 537 unsigned int iname = isym->st_name;
be8dd2ca 538 unsigned int shindex = symtab_hdr->sh_link;
26c61ae5 539
138f35cc
JJ
540 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
541 /* Check for a bogus st_shndx to avoid crashing. */
4fbb74a6 542 && isym->st_shndx < elf_numsections (abfd))
5cab59f6
AM
543 {
544 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
545 shindex = elf_elfheader (abfd)->e_shstrndx;
546 }
547
26c61ae5
L
548 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
549 if (name == NULL)
550 name = "(null)";
551 else if (sym_sec && *name == '\0')
fd361982 552 name = bfd_section_name (sym_sec);
26c61ae5
L
553
554 return name;
5cab59f6
AM
555}
556
dbb410c3
AM
557/* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
558 sections. The first element is the flags, the rest are section
559 pointers. */
560
561typedef union elf_internal_group {
562 Elf_Internal_Shdr *shdr;
563 unsigned int flags;
564} Elf_Internal_Group;
565
b885599b
AM
566/* Return the name of the group signature symbol. Why isn't the
567 signature just a string? */
568
569static const char *
217aa764 570group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
b885599b 571{
9dce4196 572 Elf_Internal_Shdr *hdr;
9dce4196
AM
573 unsigned char esym[sizeof (Elf64_External_Sym)];
574 Elf_External_Sym_Shndx eshndx;
575 Elf_Internal_Sym isym;
b885599b 576
13792e9d
L
577 /* First we need to ensure the symbol table is available. Make sure
578 that it is a symbol table section. */
4fbb74a6
AM
579 if (ghdr->sh_link >= elf_numsections (abfd))
580 return NULL;
13792e9d
L
581 hdr = elf_elfsections (abfd) [ghdr->sh_link];
582 if (hdr->sh_type != SHT_SYMTAB
583 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
b885599b
AM
584 return NULL;
585
9dce4196
AM
586 /* Go read the symbol. */
587 hdr = &elf_tdata (abfd)->symtab_hdr;
6cdc0ccc
AM
588 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
589 &isym, esym, &eshndx) == NULL)
b885599b 590 return NULL;
9dce4196 591
26c61ae5 592 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
b885599b
AM
593}
594
dbb410c3
AM
595/* Set next_in_group list pointer, and group name for NEWSECT. */
596
0a1b45a2 597static bool
217aa764 598setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
dbb410c3
AM
599{
600 unsigned int num_group = elf_tdata (abfd)->num_group;
601
602 /* If num_group is zero, read in all SHT_GROUP sections. The count
603 is set to -1 if there are no SHT_GROUP sections. */
604 if (num_group == 0)
605 {
606 unsigned int i, shnum;
607
608 /* First count the number of groups. If we have a SHT_GROUP
609 section with just a flag word (ie. sh_size is 4), ignore it. */
9ad5cbcf 610 shnum = elf_numsections (abfd);
dbb410c3 611 num_group = 0;
08a40648 612
44534af3 613#define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
1783205a 614 ( (shdr)->sh_type == SHT_GROUP \
44534af3 615 && (shdr)->sh_size >= minsize \
1783205a
NC
616 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
617 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
08a40648 618
dbb410c3
AM
619 for (i = 0; i < shnum; i++)
620 {
621 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 622
44534af3 623 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3
AM
624 num_group += 1;
625 }
626
627 if (num_group == 0)
20dbb49d
L
628 {
629 num_group = (unsigned) -1;
630 elf_tdata (abfd)->num_group = num_group;
ce497010 631 elf_tdata (abfd)->group_sect_ptr = NULL;
20dbb49d
L
632 }
633 else
dbb410c3
AM
634 {
635 /* We keep a list of elf section headers for group sections,
636 so we can find them quickly. */
1f4361a7 637 size_t amt;
d0fb9a8d 638
20dbb49d 639 elf_tdata (abfd)->num_group = num_group;
1f4361a7
AM
640 amt = num_group * sizeof (Elf_Internal_Shdr *);
641 elf_tdata (abfd)->group_sect_ptr
642 = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
dbb410c3 643 if (elf_tdata (abfd)->group_sect_ptr == NULL)
0a1b45a2 644 return false;
dbb410c3 645 num_group = 0;
ce497010 646
dbb410c3
AM
647 for (i = 0; i < shnum; i++)
648 {
649 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 650
44534af3 651 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3 652 {
973ffd63 653 unsigned char *src;
dbb410c3
AM
654 Elf_Internal_Group *dest;
655
07d6d2b8
AM
656 /* Make sure the group section has a BFD section
657 attached to it. */
658 if (!bfd_section_from_shdr (abfd, i))
0a1b45a2 659 return false;
07d6d2b8 660
dbb410c3
AM
661 /* Add to list of sections. */
662 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
663 num_group += 1;
664
665 /* Read the raw contents. */
1f4361a7
AM
666 BFD_ASSERT (sizeof (*dest) >= 4 && sizeof (*dest) % 4 == 0);
667 shdr->contents = NULL;
668 if (_bfd_mul_overflow (shdr->sh_size,
669 sizeof (*dest) / 4, &amt)
1f4361a7 670 || bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
2bb3687b
AM
671 || !(shdr->contents
672 = _bfd_alloc_and_read (abfd, amt, shdr->sh_size)))
493a3386
NC
673 {
674 _bfd_error_handler
695344c0 675 /* xgettext:c-format */
871b3ab2 676 (_("%pB: invalid size field in group section"
2dcf00ce
AM
677 " header: %#" PRIx64 ""),
678 abfd, (uint64_t) shdr->sh_size);
493a3386
NC
679 bfd_set_error (bfd_error_bad_value);
680 -- num_group;
493a3386
NC
681 continue;
682 }
708d7d0d 683
dbb410c3
AM
684 /* Translate raw contents, a flag word followed by an
685 array of elf section indices all in target byte order,
686 to the flag word followed by an array of elf section
687 pointers. */
688 src = shdr->contents + shdr->sh_size;
689 dest = (Elf_Internal_Group *) (shdr->contents + amt);
06614111 690
dbb410c3
AM
691 while (1)
692 {
693 unsigned int idx;
694
695 src -= 4;
696 --dest;
697 idx = H_GET_32 (abfd, src);
698 if (src == shdr->contents)
699 {
327301a4 700 dest->shdr = NULL;
dbb410c3 701 dest->flags = idx;
b885599b
AM
702 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
703 shdr->bfd_section->flags
704 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
dbb410c3
AM
705 break;
706 }
4bba0fb1 707 if (idx < shnum)
bae363f1
L
708 {
709 dest->shdr = elf_elfsections (abfd)[idx];
710 /* PR binutils/23199: All sections in a
711 section group should be marked with
712 SHF_GROUP. But some tools generate
713 broken objects without SHF_GROUP. Fix
714 them up here. */
715 dest->shdr->sh_flags |= SHF_GROUP;
716 }
4bba0fb1
AM
717 if (idx >= shnum
718 || dest->shdr->sh_type == SHT_GROUP)
dbb410c3 719 {
4eca0228 720 _bfd_error_handler
4bba0fb1
AM
721 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
722 abfd, i);
723 dest->shdr = NULL;
dbb410c3 724 }
dbb410c3
AM
725 }
726 }
727 }
493a3386
NC
728
729 /* PR 17510: Corrupt binaries might contain invalid groups. */
730 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
731 {
732 elf_tdata (abfd)->num_group = num_group;
733
734 /* If all groups are invalid then fail. */
735 if (num_group == 0)
736 {
737 elf_tdata (abfd)->group_sect_ptr = NULL;
738 elf_tdata (abfd)->num_group = num_group = -1;
4eca0228 739 _bfd_error_handler
871b3ab2 740 (_("%pB: no valid group sections found"), abfd);
493a3386
NC
741 bfd_set_error (bfd_error_bad_value);
742 }
743 }
dbb410c3
AM
744 }
745 }
746
747 if (num_group != (unsigned) -1)
748 {
564e11c9
JW
749 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
750 unsigned int j;
dbb410c3 751
564e11c9 752 for (j = 0; j < num_group; j++)
dbb410c3 753 {
564e11c9
JW
754 /* Begin search from previous found group. */
755 unsigned i = (j + search_offset) % num_group;
756
dbb410c3 757 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
ce497010 758 Elf_Internal_Group *idx;
0c54f692 759 bfd_size_type n_elt;
ce497010
NC
760
761 if (shdr == NULL)
762 continue;
763
764 idx = (Elf_Internal_Group *) shdr->contents;
0c54f692
NC
765 if (idx == NULL || shdr->sh_size < 4)
766 {
767 /* See PR 21957 for a reproducer. */
768 /* xgettext:c-format */
871b3ab2 769 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
0c54f692
NC
770 abfd, shdr->bfd_section);
771 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
772 bfd_set_error (bfd_error_bad_value);
0a1b45a2 773 return false;
0c54f692 774 }
ce497010 775 n_elt = shdr->sh_size / 4;
dbb410c3
AM
776
777 /* Look through this group's sections to see if current
778 section is a member. */
779 while (--n_elt != 0)
780 if ((++idx)->shdr == hdr)
781 {
e0e8c97f 782 asection *s = NULL;
dbb410c3
AM
783
784 /* We are a member of this group. Go looking through
785 other members to see if any others are linked via
786 next_in_group. */
787 idx = (Elf_Internal_Group *) shdr->contents;
788 n_elt = shdr->sh_size / 4;
789 while (--n_elt != 0)
4bba0fb1
AM
790 if ((++idx)->shdr != NULL
791 && (s = idx->shdr->bfd_section) != NULL
945906ff 792 && elf_next_in_group (s) != NULL)
dbb410c3
AM
793 break;
794 if (n_elt != 0)
795 {
dbb410c3
AM
796 /* Snarf the group name from other member, and
797 insert current section in circular list. */
945906ff
AM
798 elf_group_name (newsect) = elf_group_name (s);
799 elf_next_in_group (newsect) = elf_next_in_group (s);
800 elf_next_in_group (s) = newsect;
dbb410c3
AM
801 }
802 else
803 {
dbb410c3
AM
804 const char *gname;
805
b885599b
AM
806 gname = group_signature (abfd, shdr);
807 if (gname == NULL)
0a1b45a2 808 return false;
945906ff 809 elf_group_name (newsect) = gname;
dbb410c3
AM
810
811 /* Start a circular list with one element. */
945906ff 812 elf_next_in_group (newsect) = newsect;
dbb410c3 813 }
b885599b 814
9dce4196
AM
815 /* If the group section has been created, point to the
816 new member. */
dbb410c3 817 if (shdr->bfd_section != NULL)
945906ff 818 elf_next_in_group (shdr->bfd_section) = newsect;
b885599b 819
564e11c9
JW
820 elf_tdata (abfd)->group_search_offset = i;
821 j = num_group - 1;
dbb410c3
AM
822 break;
823 }
824 }
825 }
826
945906ff 827 if (elf_group_name (newsect) == NULL)
dbb410c3 828 {
695344c0 829 /* xgettext:c-format */
871b3ab2 830 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
4eca0228 831 abfd, newsect);
0a1b45a2 832 return false;
dbb410c3 833 }
0a1b45a2 834 return true;
dbb410c3
AM
835}
836
0a1b45a2 837bool
dd863624 838_bfd_elf_setup_sections (bfd *abfd)
3d7f7666
L
839{
840 unsigned int i;
841 unsigned int num_group = elf_tdata (abfd)->num_group;
0a1b45a2 842 bool result = true;
dd863624
L
843 asection *s;
844
845 /* Process SHF_LINK_ORDER. */
846 for (s = abfd->sections; s != NULL; s = s->next)
847 {
848 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
849 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
850 {
851 unsigned int elfsec = this_hdr->sh_link;
b71702f1
NC
852 /* An sh_link value of 0 is now allowed. It indicates that linked
853 to section has already been discarded, but that the current
854 section has been retained for some other reason. This linking
855 section is still a candidate for later garbage collection
856 however. */
dd863624
L
857 if (elfsec == 0)
858 {
b71702f1 859 elf_linked_to_section (s) = NULL;
dd863624
L
860 }
861 else
862 {
91d6fa6a 863 asection *linksec = NULL;
25bbc984 864
4fbb74a6
AM
865 if (elfsec < elf_numsections (abfd))
866 {
867 this_hdr = elf_elfsections (abfd)[elfsec];
91d6fa6a 868 linksec = this_hdr->bfd_section;
4fbb74a6 869 }
25bbc984
L
870
871 /* PR 1991, 2008:
872 Some strip/objcopy may leave an incorrect value in
873 sh_link. We don't want to proceed. */
91d6fa6a 874 if (linksec == NULL)
25bbc984 875 {
4eca0228 876 _bfd_error_handler
695344c0 877 /* xgettext:c-format */
871b3ab2 878 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
c08bb8dd 879 s->owner, elfsec, s);
0a1b45a2 880 result = false;
25bbc984
L
881 }
882
91d6fa6a 883 elf_linked_to_section (s) = linksec;
dd863624
L
884 }
885 }
53720c49
AM
886 else if (this_hdr->sh_type == SHT_GROUP
887 && elf_next_in_group (s) == NULL)
888 {
4eca0228 889 _bfd_error_handler
695344c0 890 /* xgettext:c-format */
871b3ab2 891 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
53720c49 892 abfd, elf_section_data (s)->this_idx);
0a1b45a2 893 result = false;
53720c49 894 }
dd863624 895 }
3d7f7666 896
dd863624 897 /* Process section groups. */
3d7f7666
L
898 if (num_group == (unsigned) -1)
899 return result;
900
901 for (i = 0; i < num_group; i++)
902 {
903 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
4b0e8a5f
NC
904 Elf_Internal_Group *idx;
905 unsigned int n_elt;
3d7f7666 906
4b0e8a5f
NC
907 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
908 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
909 {
4eca0228 910 _bfd_error_handler
695344c0 911 /* xgettext:c-format */
871b3ab2 912 (_("%pB: section group entry number %u is corrupt"),
4b0e8a5f 913 abfd, i);
0a1b45a2 914 result = false;
4b0e8a5f
NC
915 continue;
916 }
917
918 idx = (Elf_Internal_Group *) shdr->contents;
919 n_elt = shdr->sh_size / 4;
1b786873 920
3d7f7666 921 while (--n_elt != 0)
24d3e51b
NC
922 {
923 ++ idx;
924
925 if (idx->shdr == NULL)
926 continue;
927 else if (idx->shdr->bfd_section)
928 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
db4677b8
AM
929 else if (idx->shdr->sh_type != SHT_RELA
930 && idx->shdr->sh_type != SHT_REL)
24d3e51b
NC
931 {
932 /* There are some unknown sections in the group. */
933 _bfd_error_handler
934 /* xgettext:c-format */
871b3ab2 935 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
24d3e51b
NC
936 abfd,
937 idx->shdr->sh_type,
938 bfd_elf_string_from_elf_section (abfd,
939 (elf_elfheader (abfd)
940 ->e_shstrndx),
941 idx->shdr->sh_name),
942 shdr->bfd_section);
0a1b45a2 943 result = false;
24d3e51b
NC
944 }
945 }
3d7f7666 946 }
24d3e51b 947
3d7f7666
L
948 return result;
949}
950
0a1b45a2 951bool
72adc230
AM
952bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
953{
954 return elf_next_in_group (sec) != NULL;
955}
956
cb7f4b29
AM
957const char *
958bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
959{
960 if (elf_sec_group (sec) != NULL)
961 return elf_group_name (sec);
962 return NULL;
963}
964
f6fe1ccd
L
965static char *
966convert_debug_to_zdebug (bfd *abfd, const char *name)
967{
968 unsigned int len = strlen (name);
969 char *new_name = bfd_alloc (abfd, len + 2);
970 if (new_name == NULL)
971 return NULL;
972 new_name[0] = '.';
973 new_name[1] = 'z';
974 memcpy (new_name + 2, name + 1, len);
975 return new_name;
976}
977
978static char *
979convert_zdebug_to_debug (bfd *abfd, const char *name)
980{
981 unsigned int len = strlen (name);
982 char *new_name = bfd_alloc (abfd, len);
983 if (new_name == NULL)
984 return NULL;
985 new_name[0] = '.';
986 memcpy (new_name + 1, name + 2, len - 1);
987 return new_name;
988}
989
cc5277b1
ML
990/* This a copy of lto_section defined in GCC (lto-streamer.h). */
991
992struct lto_section
993{
994 int16_t major_version;
995 int16_t minor_version;
996 unsigned char slim_object;
997
998 /* Flags is a private field that is not defined publicly. */
999 uint16_t flags;
1000};
1001
252b5132
RH
1002/* Make a BFD section from an ELF section. We store a pointer to the
1003 BFD section in the bfd_section field of the header. */
1004
0a1b45a2 1005bool
217aa764
AM
1006_bfd_elf_make_section_from_shdr (bfd *abfd,
1007 Elf_Internal_Shdr *hdr,
6dc132d9
L
1008 const char *name,
1009 int shindex)
252b5132
RH
1010{
1011 asection *newsect;
1012 flagword flags;
9c5bfbb7 1013 const struct elf_backend_data *bed;
502794d4 1014 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132
RH
1015
1016 if (hdr->bfd_section != NULL)
0a1b45a2 1017 return true;
252b5132
RH
1018
1019 newsect = bfd_make_section_anyway (abfd, name);
1020 if (newsect == NULL)
0a1b45a2 1021 return false;
252b5132 1022
1829f4b2
AM
1023 hdr->bfd_section = newsect;
1024 elf_section_data (newsect)->this_hdr = *hdr;
6dc132d9 1025 elf_section_data (newsect)->this_idx = shindex;
1829f4b2 1026
2f89ff8d
L
1027 /* Always use the real type/flags. */
1028 elf_section_type (newsect) = hdr->sh_type;
1029 elf_section_flags (newsect) = hdr->sh_flags;
1030
252b5132
RH
1031 newsect->filepos = hdr->sh_offset;
1032
252b5132
RH
1033 flags = SEC_NO_FLAGS;
1034 if (hdr->sh_type != SHT_NOBITS)
1035 flags |= SEC_HAS_CONTENTS;
dbb410c3 1036 if (hdr->sh_type == SHT_GROUP)
7bdf4127 1037 flags |= SEC_GROUP;
252b5132
RH
1038 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1039 {
1040 flags |= SEC_ALLOC;
1041 if (hdr->sh_type != SHT_NOBITS)
1042 flags |= SEC_LOAD;
1043 }
1044 if ((hdr->sh_flags & SHF_WRITE) == 0)
1045 flags |= SEC_READONLY;
1046 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1047 flags |= SEC_CODE;
1048 else if ((flags & SEC_LOAD) != 0)
1049 flags |= SEC_DATA;
f5fa8ca2
JJ
1050 if ((hdr->sh_flags & SHF_MERGE) != 0)
1051 {
1052 flags |= SEC_MERGE;
1053 newsect->entsize = hdr->sh_entsize;
f5fa8ca2 1054 }
84865015
NC
1055 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1056 flags |= SEC_STRINGS;
dbb410c3
AM
1057 if (hdr->sh_flags & SHF_GROUP)
1058 if (!setup_group (abfd, hdr, newsect))
0a1b45a2 1059 return false;
13ae64f3
JJ
1060 if ((hdr->sh_flags & SHF_TLS) != 0)
1061 flags |= SEC_THREAD_LOCAL;
18ae9cc1
L
1062 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1063 flags |= SEC_EXCLUDE;
252b5132 1064
df3a023b
AM
1065 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1066 {
1067 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1068 but binutils as of 2019-07-23 did not set the EI_OSABI header
1069 byte. */
df3a023b
AM
1070 case ELFOSABI_GNU:
1071 case ELFOSABI_FREEBSD:
99fabbc9
JL
1072 if ((hdr->sh_flags & SHF_GNU_RETAIN) != 0)
1073 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_retain;
1074 /* Fall through */
1075 case ELFOSABI_NONE:
df3a023b
AM
1076 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1077 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1078 break;
1079 }
1080
3d2b39cf 1081 if ((flags & SEC_ALLOC) == 0)
7a6cc5fb 1082 {
3d2b39cf
L
1083 /* The debugging sections appear to be recognized only by name,
1084 not any sort of flag. Their SEC_ALLOC bits are cleared. */
3d2b39cf
L
1085 if (name [0] == '.')
1086 {
3f3328b8
ML
1087 if (startswith (name, ".debug")
1088 || startswith (name, ".gnu.debuglto_.debug_")
1089 || startswith (name, ".gnu.linkonce.wi.")
1090 || startswith (name, ".zdebug"))
bb294208 1091 flags |= SEC_DEBUGGING | SEC_ELF_OCTETS;
3f3328b8
ML
1092 else if (startswith (name, GNU_BUILD_ATTRS_SECTION_NAME)
1093 || startswith (name, ".note.gnu"))
502794d4
CE
1094 {
1095 flags |= SEC_ELF_OCTETS;
1096 opb = 1;
1097 }
3f3328b8
ML
1098 else if (startswith (name, ".line")
1099 || startswith (name, ".stab")
bb294208 1100 || strcmp (name, ".gdb_index") == 0)
3d2b39cf
L
1101 flags |= SEC_DEBUGGING;
1102 }
1103 }
252b5132 1104
502794d4
CE
1105 if (!bfd_set_section_vma (newsect, hdr->sh_addr / opb)
1106 || !bfd_set_section_size (newsect, hdr->sh_size)
1107 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
0a1b45a2 1108 return false;
502794d4 1109
252b5132
RH
1110 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1111 only link a single copy of the section. This is used to support
1112 g++. g++ will emit each template expansion in its own section.
1113 The symbols will be defined as weak, so that multiple definitions
1114 are permitted. The GNU linker extension is to actually discard
1115 all but one of the sections. */
08dedd66 1116 if (startswith (name, ".gnu.linkonce")
b885599b 1117 && elf_next_in_group (newsect) == NULL)
252b5132
RH
1118 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1119
8c803a2d 1120 if (!bfd_set_section_flags (newsect, flags))
0a1b45a2 1121 return false;
8c803a2d 1122
fa152c49
JW
1123 bed = get_elf_backend_data (abfd);
1124 if (bed->elf_backend_section_flags)
8c803a2d 1125 if (!bed->elf_backend_section_flags (hdr))
0a1b45a2 1126 return false;
fa152c49 1127
718175fa
JK
1128 /* We do not parse the PT_NOTE segments as we are interested even in the
1129 separate debug info files which may have the segments offsets corrupted.
1130 PT_NOTEs from the core files are currently not parsed using BFD. */
1131 if (hdr->sh_type == SHT_NOTE)
1132 {
baea7ef1 1133 bfd_byte *contents;
718175fa 1134
baea7ef1 1135 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
0a1b45a2 1136 return false;
718175fa 1137
276da9b3
L
1138 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1139 hdr->sh_offset, hdr->sh_addralign);
718175fa
JK
1140 free (contents);
1141 }
1142
8c803a2d 1143 if ((newsect->flags & SEC_ALLOC) != 0)
252b5132
RH
1144 {
1145 Elf_Internal_Phdr *phdr;
6ffd7900
AM
1146 unsigned int i, nload;
1147
1148 /* Some ELF linkers produce binaries with all the program header
1149 p_paddr fields zero. If we have such a binary with more than
1150 one PT_LOAD header, then leave the section lma equal to vma
1151 so that we don't create sections with overlapping lma. */
1152 phdr = elf_tdata (abfd)->phdr;
1153 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1154 if (phdr->p_paddr != 0)
1155 break;
1156 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1157 ++nload;
1158 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
0a1b45a2 1159 return true;
252b5132 1160
252b5132
RH
1161 phdr = elf_tdata (abfd)->phdr;
1162 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1163 {
86b2281f
AM
1164 if (((phdr->p_type == PT_LOAD
1165 && (hdr->sh_flags & SHF_TLS) == 0)
1166 || phdr->p_type == PT_TLS)
9a83a553 1167 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
252b5132 1168 {
8c803a2d 1169 if ((newsect->flags & SEC_LOAD) == 0)
88967714 1170 newsect->lma = (phdr->p_paddr
502794d4 1171 + hdr->sh_addr - phdr->p_vaddr) / opb;
88967714
AM
1172 else
1173 /* We used to use the same adjustment for SEC_LOAD
1174 sections, but that doesn't work if the segment
1175 is packed with code from multiple VMAs.
1176 Instead we calculate the section LMA based on
1177 the segment LMA. It is assumed that the
1178 segment will contain sections with contiguous
1179 LMAs, even if the VMAs are not. */
1180 newsect->lma = (phdr->p_paddr
502794d4 1181 + hdr->sh_offset - phdr->p_offset) / opb;
88967714
AM
1182
1183 /* With contiguous segments, we can't tell from file
1184 offsets whether a section with zero size should
1185 be placed at the end of one segment or the
1186 beginning of the next. Decide based on vaddr. */
1187 if (hdr->sh_addr >= phdr->p_vaddr
1188 && (hdr->sh_addr + hdr->sh_size
1189 <= phdr->p_vaddr + phdr->p_memsz))
1190 break;
252b5132
RH
1191 }
1192 }
1193 }
1194
4a114e3e
L
1195 /* Compress/decompress DWARF debug sections with names: .debug_* and
1196 .zdebug_*, after the section flags is set. */
8c803a2d 1197 if ((newsect->flags & SEC_DEBUGGING)
4a114e3e
L
1198 && ((name[1] == 'd' && name[6] == '_')
1199 || (name[1] == 'z' && name[7] == '_')))
1200 {
1201 enum { nothing, compress, decompress } action = nothing;
151411f8 1202 int compression_header_size;
dab394de 1203 bfd_size_type uncompressed_size;
4207142d 1204 unsigned int uncompressed_align_power;
0a1b45a2 1205 bool compressed
151411f8 1206 = bfd_is_section_compressed_with_header (abfd, newsect,
dab394de 1207 &compression_header_size,
4207142d
MW
1208 &uncompressed_size,
1209 &uncompressed_align_power);
151411f8 1210 if (compressed)
4a114e3e
L
1211 {
1212 /* Compressed section. Check if we should decompress. */
1213 if ((abfd->flags & BFD_DECOMPRESS))
1214 action = decompress;
1215 }
151411f8
L
1216
1217 /* Compress the uncompressed section or convert from/to .zdebug*
1218 section. Check if we should compress. */
1219 if (action == nothing)
4a114e3e 1220 {
151411f8
L
1221 if (newsect->size != 0
1222 && (abfd->flags & BFD_COMPRESS)
1223 && compression_header_size >= 0
dab394de 1224 && uncompressed_size > 0
151411f8
L
1225 && (!compressed
1226 || ((compression_header_size > 0)
1227 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
4a114e3e 1228 action = compress;
151411f8 1229 else
0a1b45a2 1230 return true;
4a114e3e
L
1231 }
1232
151411f8 1233 if (action == compress)
4a114e3e 1234 {
4a114e3e
L
1235 if (!bfd_init_section_compress_status (abfd, newsect))
1236 {
4eca0228 1237 _bfd_error_handler
695344c0 1238 /* xgettext:c-format */
871b3ab2 1239 (_("%pB: unable to initialize compress status for section %s"),
4a114e3e 1240 abfd, name);
0a1b45a2 1241 return false;
4a114e3e 1242 }
151411f8
L
1243 }
1244 else
1245 {
4a114e3e
L
1246 if (!bfd_init_section_decompress_status (abfd, newsect))
1247 {
4eca0228 1248 _bfd_error_handler
695344c0 1249 /* xgettext:c-format */
871b3ab2 1250 (_("%pB: unable to initialize decompress status for section %s"),
4a114e3e 1251 abfd, name);
0a1b45a2 1252 return false;
4a114e3e 1253 }
151411f8
L
1254 }
1255
f6fe1ccd 1256 if (abfd->is_linker_input)
151411f8 1257 {
f6fe1ccd
L
1258 if (name[1] == 'z'
1259 && (action == decompress
1260 || (action == compress
1261 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
4e011fb5 1262 {
f6fe1ccd
L
1263 /* Convert section name from .zdebug_* to .debug_* so
1264 that linker will consider this section as a debug
1265 section. */
1266 char *new_name = convert_zdebug_to_debug (abfd, name);
151411f8 1267 if (new_name == NULL)
0a1b45a2 1268 return false;
fd361982 1269 bfd_rename_section (newsect, new_name);
151411f8 1270 }
4a114e3e 1271 }
f6fe1ccd
L
1272 else
1273 /* For objdump, don't rename the section. For objcopy, delay
1274 section rename to elf_fake_sections. */
1275 newsect->flags |= SEC_ELF_RENAME;
4a114e3e
L
1276 }
1277
cc5277b1
ML
1278 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1279 section. */
3f3328b8 1280 if (startswith (name, ".gnu.lto_.lto."))
cc5277b1
ML
1281 {
1282 struct lto_section lsection;
1283 if (bfd_get_section_contents (abfd, newsect, &lsection, 0,
1284 sizeof (struct lto_section)))
1285 abfd->lto_slim_object = lsection.slim_object;
1286 }
1287
0a1b45a2 1288 return true;
252b5132
RH
1289}
1290
84865015
NC
1291const char *const bfd_elf_section_type_names[] =
1292{
252b5132
RH
1293 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1294 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1295 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1296};
1297
1049f94e 1298/* ELF relocs are against symbols. If we are producing relocatable
252b5132
RH
1299 output, and the reloc is against an external symbol, and nothing
1300 has given us any additional addend, the resulting reloc will also
1301 be against the same symbol. In such a case, we don't want to
1302 change anything about the way the reloc is handled, since it will
1303 all be done at final link time. Rather than put special case code
1304 into bfd_perform_relocation, all the reloc types use this howto
2dfa8341 1305 function, or should call this function for relocatable output. */
252b5132 1306
252b5132 1307bfd_reloc_status_type
217aa764
AM
1308bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1309 arelent *reloc_entry,
1310 asymbol *symbol,
1311 void *data ATTRIBUTE_UNUSED,
1312 asection *input_section,
1313 bfd *output_bfd,
1314 char **error_message ATTRIBUTE_UNUSED)
1315{
1316 if (output_bfd != NULL
252b5132
RH
1317 && (symbol->flags & BSF_SECTION_SYM) == 0
1318 && (! reloc_entry->howto->partial_inplace
1319 || reloc_entry->addend == 0))
1320 {
1321 reloc_entry->address += input_section->output_offset;
1322 return bfd_reloc_ok;
1323 }
1324
2dfa8341
AM
1325 /* In some cases the relocation should be treated as output section
1326 relative, as when linking ELF DWARF into PE COFF. Many ELF
1327 targets lack section relative relocations and instead use
1328 ordinary absolute relocations for references between DWARF
1329 sections. That is arguably a bug in those targets but it happens
1330 to work for the usual case of linking to non-loaded ELF debug
1331 sections with VMAs forced to zero. PE COFF on the other hand
1332 doesn't allow a section VMA of zero. */
1333 if (output_bfd == NULL
1334 && !reloc_entry->howto->pc_relative
1335 && (symbol->section->flags & SEC_DEBUGGING) != 0
1336 && (input_section->flags & SEC_DEBUGGING) != 0)
1337 reloc_entry->addend -= symbol->section->output_section->vma;
1338
252b5132
RH
1339 return bfd_reloc_continue;
1340}
1341\f
84865015
NC
1342/* Returns TRUE if section A matches section B.
1343 Names, addresses and links may be different, but everything else
1344 should be the same. */
1345
0a1b45a2 1346static bool
5522f910
NC
1347section_match (const Elf_Internal_Shdr * a,
1348 const Elf_Internal_Shdr * b)
84865015 1349{
ac85e67c
AM
1350 if (a->sh_type != b->sh_type
1351 || ((a->sh_flags ^ b->sh_flags) & ~SHF_INFO_LINK) != 0
1352 || a->sh_addralign != b->sh_addralign
1353 || a->sh_entsize != b->sh_entsize)
0a1b45a2 1354 return false;
ac85e67c
AM
1355 if (a->sh_type == SHT_SYMTAB
1356 || a->sh_type == SHT_STRTAB)
0a1b45a2 1357 return true;
ac85e67c 1358 return a->sh_size == b->sh_size;
84865015
NC
1359}
1360
1361/* Find a section in OBFD that has the same characteristics
1362 as IHEADER. Return the index of this section or SHN_UNDEF if
1363 none can be found. Check's section HINT first, as this is likely
1364 to be the correct section. */
1365
1366static unsigned int
5cc4ca83
ST
1367find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1368 const unsigned int hint)
84865015
NC
1369{
1370 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1371 unsigned int i;
1372
a55c9876
NC
1373 BFD_ASSERT (iheader != NULL);
1374
1375 /* See PR 20922 for a reproducer of the NULL test. */
5cc4ca83
ST
1376 if (hint < elf_numsections (obfd)
1377 && oheaders[hint] != NULL
a55c9876 1378 && section_match (oheaders[hint], iheader))
84865015
NC
1379 return hint;
1380
1381 for (i = 1; i < elf_numsections (obfd); i++)
1382 {
1383 Elf_Internal_Shdr * oheader = oheaders[i];
1384
a55c9876
NC
1385 if (oheader == NULL)
1386 continue;
84865015
NC
1387 if (section_match (oheader, iheader))
1388 /* FIXME: Do we care if there is a potential for
1389 multiple matches ? */
1390 return i;
1391 }
1392
1393 return SHN_UNDEF;
1394}
1395
5522f910
NC
1396/* PR 19938: Attempt to set the ELF section header fields of an OS or
1397 Processor specific section, based upon a matching input section.
1398 Returns TRUE upon success, FALSE otherwise. */
07d6d2b8 1399
0a1b45a2 1400static bool
5522f910
NC
1401copy_special_section_fields (const bfd *ibfd,
1402 bfd *obfd,
1403 const Elf_Internal_Shdr *iheader,
1404 Elf_Internal_Shdr *oheader,
1405 const unsigned int secnum)
1406{
1407 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1408 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
0a1b45a2 1409 bool changed = false;
5522f910
NC
1410 unsigned int sh_link;
1411
1412 if (oheader->sh_type == SHT_NOBITS)
1413 {
1414 /* This is a feature for objcopy --only-keep-debug:
1415 When a section's type is changed to NOBITS, we preserve
1416 the sh_link and sh_info fields so that they can be
1417 matched up with the original.
1418
1419 Note: Strictly speaking these assignments are wrong.
1420 The sh_link and sh_info fields should point to the
1421 relevent sections in the output BFD, which may not be in
1422 the same location as they were in the input BFD. But
1423 the whole point of this action is to preserve the
1424 original values of the sh_link and sh_info fields, so
1425 that they can be matched up with the section headers in
1426 the original file. So strictly speaking we may be
1427 creating an invalid ELF file, but it is only for a file
1428 that just contains debug info and only for sections
1429 without any contents. */
1430 if (oheader->sh_link == 0)
1431 oheader->sh_link = iheader->sh_link;
1432 if (oheader->sh_info == 0)
1433 oheader->sh_info = iheader->sh_info;
0a1b45a2 1434 return true;
5522f910
NC
1435 }
1436
1437 /* Allow the target a chance to decide how these fields should be set. */
a859124d
AM
1438 if (bed->elf_backend_copy_special_section_fields (ibfd, obfd,
1439 iheader, oheader))
0a1b45a2 1440 return true;
5522f910
NC
1441
1442 /* We have an iheader which might match oheader, and which has non-zero
1443 sh_info and/or sh_link fields. Attempt to follow those links and find
1444 the section in the output bfd which corresponds to the linked section
1445 in the input bfd. */
1446 if (iheader->sh_link != SHN_UNDEF)
1447 {
4f3ca05b
NC
1448 /* See PR 20931 for a reproducer. */
1449 if (iheader->sh_link >= elf_numsections (ibfd))
1450 {
76cfced5 1451 _bfd_error_handler
4f3ca05b 1452 /* xgettext:c-format */
9793eb77 1453 (_("%pB: invalid sh_link field (%d) in section number %d"),
4f3ca05b 1454 ibfd, iheader->sh_link, secnum);
0a1b45a2 1455 return false;
4f3ca05b
NC
1456 }
1457
5522f910
NC
1458 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1459 if (sh_link != SHN_UNDEF)
1460 {
1461 oheader->sh_link = sh_link;
0a1b45a2 1462 changed = true;
5522f910
NC
1463 }
1464 else
1465 /* FIXME: Should we install iheader->sh_link
1466 if we could not find a match ? */
76cfced5 1467 _bfd_error_handler
695344c0 1468 /* xgettext:c-format */
9793eb77 1469 (_("%pB: failed to find link section for section %d"), obfd, secnum);
5522f910
NC
1470 }
1471
1472 if (iheader->sh_info)
1473 {
1474 /* The sh_info field can hold arbitrary information, but if the
1475 SHF_LINK_INFO flag is set then it should be interpreted as a
1476 section index. */
1477 if (iheader->sh_flags & SHF_INFO_LINK)
1478 {
1479 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1480 iheader->sh_info);
1481 if (sh_link != SHN_UNDEF)
1482 oheader->sh_flags |= SHF_INFO_LINK;
1483 }
1484 else
1485 /* No idea what it means - just copy it. */
1486 sh_link = iheader->sh_info;
1487
1488 if (sh_link != SHN_UNDEF)
1489 {
1490 oheader->sh_info = sh_link;
0a1b45a2 1491 changed = true;
5522f910
NC
1492 }
1493 else
76cfced5 1494 _bfd_error_handler
695344c0 1495 /* xgettext:c-format */
9793eb77 1496 (_("%pB: failed to find info section for section %d"), obfd, secnum);
5522f910
NC
1497 }
1498
1499 return changed;
1500}
07d6d2b8 1501
0ac4564e
L
1502/* Copy the program header and other data from one object module to
1503 another. */
252b5132 1504
0a1b45a2 1505bool
217aa764 1506_bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2d502050 1507{
5522f910
NC
1508 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1509 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1510 const struct elf_backend_data *bed;
84865015
NC
1511 unsigned int i;
1512
2d502050 1513 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
84865015 1514 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
0a1b45a2 1515 return true;
2d502050 1516
57b828ef
L
1517 if (!elf_flags_init (obfd))
1518 {
1519 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
0a1b45a2 1520 elf_flags_init (obfd) = true;
57b828ef 1521 }
2d502050 1522
0ac4564e 1523 elf_gp (obfd) = elf_gp (ibfd);
57b828ef
L
1524
1525 /* Also copy the EI_OSABI field. */
1526 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1527 elf_elfheader (ibfd)->e_ident[EI_OSABI];
104d59d1 1528
5522f910
NC
1529 /* If set, copy the EI_ABIVERSION field. */
1530 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1531 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1532 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
07d6d2b8 1533
104d59d1
JM
1534 /* Copy object attributes. */
1535 _bfd_elf_copy_obj_attributes (ibfd, obfd);
63b9bbb7 1536
84865015 1537 if (iheaders == NULL || oheaders == NULL)
0a1b45a2 1538 return true;
63b9bbb7 1539
5522f910
NC
1540 bed = get_elf_backend_data (obfd);
1541
1542 /* Possibly copy other fields in the section header. */
84865015 1543 for (i = 1; i < elf_numsections (obfd); i++)
63b9bbb7 1544 {
84865015
NC
1545 unsigned int j;
1546 Elf_Internal_Shdr * oheader = oheaders[i];
63b9bbb7 1547
5522f910
NC
1548 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1549 because of a special case need for generating separate debug info
1550 files. See below for more details. */
84865015
NC
1551 if (oheader == NULL
1552 || (oheader->sh_type != SHT_NOBITS
5522f910
NC
1553 && oheader->sh_type < SHT_LOOS))
1554 continue;
1555
1556 /* Ignore empty sections, and sections whose
1557 fields have already been initialised. */
1558 if (oheader->sh_size == 0
84865015
NC
1559 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1560 continue;
63b9bbb7 1561
84865015 1562 /* Scan for the matching section in the input bfd.
5522f910
NC
1563 First we try for a direct mapping between the input and output sections. */
1564 for (j = 1; j < elf_numsections (ibfd); j++)
1565 {
1566 const Elf_Internal_Shdr * iheader = iheaders[j];
1567
1568 if (iheader == NULL)
1569 continue;
1570
1571 if (oheader->bfd_section != NULL
1572 && iheader->bfd_section != NULL
1573 && iheader->bfd_section->output_section != NULL
1574 && iheader->bfd_section->output_section == oheader->bfd_section)
1575 {
1576 /* We have found a connection from the input section to the
1577 output section. Attempt to copy the header fields. If
1578 this fails then do not try any further sections - there
1579 should only be a one-to-one mapping between input and output. */
1580 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1581 j = elf_numsections (ibfd);
1582 break;
1583 }
1584 }
1585
1586 if (j < elf_numsections (ibfd))
1587 continue;
1588
1589 /* That failed. So try to deduce the corresponding input section.
84865015
NC
1590 Unfortunately we cannot compare names as the output string table
1591 is empty, so instead we check size, address and type. */
1592 for (j = 1; j < elf_numsections (ibfd); j++)
1593 {
5522f910 1594 const Elf_Internal_Shdr * iheader = iheaders[j];
84865015 1595
5522f910
NC
1596 if (iheader == NULL)
1597 continue;
1598
1599 /* Try matching fields in the input section's header.
1600 Since --only-keep-debug turns all non-debug sections into
84865015
NC
1601 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1602 input type. */
1603 if ((oheader->sh_type == SHT_NOBITS
1604 || iheader->sh_type == oheader->sh_type)
5522f910
NC
1605 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1606 == (oheader->sh_flags & ~ SHF_INFO_LINK)
84865015
NC
1607 && iheader->sh_addralign == oheader->sh_addralign
1608 && iheader->sh_entsize == oheader->sh_entsize
1609 && iheader->sh_size == oheader->sh_size
1610 && iheader->sh_addr == oheader->sh_addr
1611 && (iheader->sh_info != oheader->sh_info
1612 || iheader->sh_link != oheader->sh_link))
63b9bbb7 1613 {
5522f910
NC
1614 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1615 break;
63b9bbb7
NC
1616 }
1617 }
5522f910
NC
1618
1619 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1620 {
1621 /* Final attempt. Call the backend copy function
1622 with a NULL input section. */
a859124d
AM
1623 (void) bed->elf_backend_copy_special_section_fields (ibfd, obfd,
1624 NULL, oheader);
5522f910 1625 }
63b9bbb7
NC
1626 }
1627
0a1b45a2 1628 return true;
2d502050
L
1629}
1630
cedc298e
L
1631static const char *
1632get_segment_type (unsigned int p_type)
1633{
1634 const char *pt;
1635 switch (p_type)
1636 {
1637 case PT_NULL: pt = "NULL"; break;
1638 case PT_LOAD: pt = "LOAD"; break;
1639 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1640 case PT_INTERP: pt = "INTERP"; break;
1641 case PT_NOTE: pt = "NOTE"; break;
1642 case PT_SHLIB: pt = "SHLIB"; break;
1643 case PT_PHDR: pt = "PHDR"; break;
1644 case PT_TLS: pt = "TLS"; break;
1645 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
2b05f1b7 1646 case PT_GNU_STACK: pt = "STACK"; break;
cedc298e
L
1647 case PT_GNU_RELRO: pt = "RELRO"; break;
1648 default: pt = NULL; break;
1649 }
1650 return pt;
1651}
1652
f0b79d91
L
1653/* Print out the program headers. */
1654
0a1b45a2 1655bool
217aa764 1656_bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
252b5132 1657{
a50b1753 1658 FILE *f = (FILE *) farg;
252b5132
RH
1659 Elf_Internal_Phdr *p;
1660 asection *s;
1661 bfd_byte *dynbuf = NULL;
1662
1663 p = elf_tdata (abfd)->phdr;
1664 if (p != NULL)
1665 {
1666 unsigned int i, c;
1667
1668 fprintf (f, _("\nProgram Header:\n"));
1669 c = elf_elfheader (abfd)->e_phnum;
1670 for (i = 0; i < c; i++, p++)
1671 {
cedc298e 1672 const char *pt = get_segment_type (p->p_type);
252b5132
RH
1673 char buf[20];
1674
cedc298e 1675 if (pt == NULL)
252b5132 1676 {
cedc298e
L
1677 sprintf (buf, "0x%lx", p->p_type);
1678 pt = buf;
252b5132 1679 }
dc810e39 1680 fprintf (f, "%8s off 0x", pt);
60b89a18 1681 bfd_fprintf_vma (abfd, f, p->p_offset);
252b5132 1682 fprintf (f, " vaddr 0x");
60b89a18 1683 bfd_fprintf_vma (abfd, f, p->p_vaddr);
252b5132 1684 fprintf (f, " paddr 0x");
60b89a18 1685 bfd_fprintf_vma (abfd, f, p->p_paddr);
252b5132
RH
1686 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1687 fprintf (f, " filesz 0x");
60b89a18 1688 bfd_fprintf_vma (abfd, f, p->p_filesz);
252b5132 1689 fprintf (f, " memsz 0x");
60b89a18 1690 bfd_fprintf_vma (abfd, f, p->p_memsz);
252b5132
RH
1691 fprintf (f, " flags %c%c%c",
1692 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1693 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1694 (p->p_flags & PF_X) != 0 ? 'x' : '-');
dc810e39
AM
1695 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1696 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
252b5132
RH
1697 fprintf (f, "\n");
1698 }
1699 }
1700
1701 s = bfd_get_section_by_name (abfd, ".dynamic");
1702 if (s != NULL)
1703 {
cb33740c 1704 unsigned int elfsec;
dc810e39 1705 unsigned long shlink;
252b5132
RH
1706 bfd_byte *extdyn, *extdynend;
1707 size_t extdynsize;
217aa764 1708 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
252b5132
RH
1709
1710 fprintf (f, _("\nDynamic Section:\n"));
1711
eea6121a 1712 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
252b5132
RH
1713 goto error_return;
1714
1715 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 1716 if (elfsec == SHN_BAD)
252b5132 1717 goto error_return;
dc810e39 1718 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
252b5132
RH
1719
1720 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1721 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1722
1723 extdyn = dynbuf;
06614111
NC
1724 /* PR 17512: file: 6f427532. */
1725 if (s->size < extdynsize)
1726 goto error_return;
eea6121a 1727 extdynend = extdyn + s->size;
1036838a 1728 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
07d6d2b8 1729 Fix range check. */
1036838a 1730 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
252b5132
RH
1731 {
1732 Elf_Internal_Dyn dyn;
ad9563d6 1733 const char *name = "";
252b5132 1734 char ab[20];
0a1b45a2 1735 bool stringp;
ad9563d6 1736 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 1737
217aa764 1738 (*swap_dyn_in) (abfd, extdyn, &dyn);
252b5132
RH
1739
1740 if (dyn.d_tag == DT_NULL)
1741 break;
1742
0a1b45a2 1743 stringp = false;
252b5132
RH
1744 switch (dyn.d_tag)
1745 {
1746 default:
ad9563d6
CM
1747 if (bed->elf_backend_get_target_dtag)
1748 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1749
1750 if (!strcmp (name, ""))
1751 {
cd9af601 1752 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
ad9563d6
CM
1753 name = ab;
1754 }
252b5132
RH
1755 break;
1756
0a1b45a2 1757 case DT_NEEDED: name = "NEEDED"; stringp = true; break;
252b5132
RH
1758 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1759 case DT_PLTGOT: name = "PLTGOT"; break;
1760 case DT_HASH: name = "HASH"; break;
1761 case DT_STRTAB: name = "STRTAB"; break;
1762 case DT_SYMTAB: name = "SYMTAB"; break;
1763 case DT_RELA: name = "RELA"; break;
1764 case DT_RELASZ: name = "RELASZ"; break;
1765 case DT_RELAENT: name = "RELAENT"; break;
1766 case DT_STRSZ: name = "STRSZ"; break;
1767 case DT_SYMENT: name = "SYMENT"; break;
1768 case DT_INIT: name = "INIT"; break;
1769 case DT_FINI: name = "FINI"; break;
0a1b45a2
AM
1770 case DT_SONAME: name = "SONAME"; stringp = true; break;
1771 case DT_RPATH: name = "RPATH"; stringp = true; break;
252b5132
RH
1772 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1773 case DT_REL: name = "REL"; break;
1774 case DT_RELSZ: name = "RELSZ"; break;
1775 case DT_RELENT: name = "RELENT"; break;
dd207c13
FS
1776 case DT_RELR: name = "RELR"; break;
1777 case DT_RELRSZ: name = "RELRSZ"; break;
1778 case DT_RELRENT: name = "RELRENT"; break;
252b5132
RH
1779 case DT_PLTREL: name = "PLTREL"; break;
1780 case DT_DEBUG: name = "DEBUG"; break;
1781 case DT_TEXTREL: name = "TEXTREL"; break;
1782 case DT_JMPREL: name = "JMPREL"; break;
94558834
L
1783 case DT_BIND_NOW: name = "BIND_NOW"; break;
1784 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1785 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1786 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1787 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
0a1b45a2 1788 case DT_RUNPATH: name = "RUNPATH"; stringp = true; break;
94558834
L
1789 case DT_FLAGS: name = "FLAGS"; break;
1790 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1791 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
d48188b9 1792 case DT_CHECKSUM: name = "CHECKSUM"; break;
94558834
L
1793 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1794 case DT_MOVEENT: name = "MOVEENT"; break;
1795 case DT_MOVESZ: name = "MOVESZ"; break;
1796 case DT_FEATURE: name = "FEATURE"; break;
1797 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1798 case DT_SYMINSZ: name = "SYMINSZ"; break;
1799 case DT_SYMINENT: name = "SYMINENT"; break;
0a1b45a2
AM
1800 case DT_CONFIG: name = "CONFIG"; stringp = true; break;
1801 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = true; break;
1802 case DT_AUDIT: name = "AUDIT"; stringp = true; break;
94558834
L
1803 case DT_PLTPAD: name = "PLTPAD"; break;
1804 case DT_MOVETAB: name = "MOVETAB"; break;
1805 case DT_SYMINFO: name = "SYMINFO"; break;
1806 case DT_RELACOUNT: name = "RELACOUNT"; break;
1807 case DT_RELCOUNT: name = "RELCOUNT"; break;
1808 case DT_FLAGS_1: name = "FLAGS_1"; break;
252b5132
RH
1809 case DT_VERSYM: name = "VERSYM"; break;
1810 case DT_VERDEF: name = "VERDEF"; break;
1811 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1812 case DT_VERNEED: name = "VERNEED"; break;
1813 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
0a1b45a2 1814 case DT_AUXILIARY: name = "AUXILIARY"; stringp = true; break;
94558834 1815 case DT_USED: name = "USED"; break;
0a1b45a2 1816 case DT_FILTER: name = "FILTER"; stringp = true; break;
fdc90cb4 1817 case DT_GNU_HASH: name = "GNU_HASH"; break;
252b5132
RH
1818 }
1819
ad9563d6 1820 fprintf (f, " %-20s ", name);
252b5132 1821 if (! stringp)
a1f3c56e
AN
1822 {
1823 fprintf (f, "0x");
1824 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1825 }
252b5132
RH
1826 else
1827 {
1828 const char *string;
dc810e39 1829 unsigned int tagv = dyn.d_un.d_val;
252b5132 1830
dc810e39 1831 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
252b5132
RH
1832 if (string == NULL)
1833 goto error_return;
1834 fprintf (f, "%s", string);
1835 }
1836 fprintf (f, "\n");
1837 }
1838
1839 free (dynbuf);
1840 dynbuf = NULL;
1841 }
1842
1843 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1844 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1845 {
0a1b45a2
AM
1846 if (! _bfd_elf_slurp_version_tables (abfd, false))
1847 return false;
252b5132
RH
1848 }
1849
1850 if (elf_dynverdef (abfd) != 0)
1851 {
1852 Elf_Internal_Verdef *t;
1853
1854 fprintf (f, _("\nVersion definitions:\n"));
1855 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1856 {
1857 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
d0fb9a8d
JJ
1858 t->vd_flags, t->vd_hash,
1859 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1860 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
252b5132
RH
1861 {
1862 Elf_Internal_Verdaux *a;
1863
1864 fprintf (f, "\t");
1865 for (a = t->vd_auxptr->vda_nextptr;
1866 a != NULL;
1867 a = a->vda_nextptr)
d0fb9a8d
JJ
1868 fprintf (f, "%s ",
1869 a->vda_nodename ? a->vda_nodename : "<corrupt>");
252b5132
RH
1870 fprintf (f, "\n");
1871 }
1872 }
1873 }
1874
1875 if (elf_dynverref (abfd) != 0)
1876 {
1877 Elf_Internal_Verneed *t;
1878
1879 fprintf (f, _("\nVersion References:\n"));
1880 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1881 {
1882 Elf_Internal_Vernaux *a;
1883
d0fb9a8d
JJ
1884 fprintf (f, _(" required from %s:\n"),
1885 t->vn_filename ? t->vn_filename : "<corrupt>");
252b5132
RH
1886 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1887 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
d0fb9a8d
JJ
1888 a->vna_flags, a->vna_other,
1889 a->vna_nodename ? a->vna_nodename : "<corrupt>");
252b5132
RH
1890 }
1891 }
1892
0a1b45a2 1893 return true;
252b5132
RH
1894
1895 error_return:
c9594989 1896 free (dynbuf);
0a1b45a2 1897 return false;
252b5132
RH
1898}
1899
7e6e972f
L
1900/* Get version name. If BASE_P is TRUE, return "Base" for VER_FLG_BASE
1901 and return symbol version for symbol version itself. */
bb4d2ac2
L
1902
1903const char *
1081065c 1904_bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
0a1b45a2
AM
1905 bool base_p,
1906 bool *hidden)
bb4d2ac2
L
1907{
1908 const char *version_string = NULL;
1909 if (elf_dynversym (abfd) != 0
1910 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1911 {
1912 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1913
1914 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1915 vernum &= VERSYM_VERSION;
1916
1917 if (vernum == 0)
1918 version_string = "";
1f6f5dba
L
1919 else if (vernum == 1
1920 && (vernum > elf_tdata (abfd)->cverdefs
1921 || (elf_tdata (abfd)->verdef[0].vd_flags
1922 == VER_FLG_BASE)))
7e6e972f 1923 version_string = base_p ? "Base" : "";
bb4d2ac2 1924 else if (vernum <= elf_tdata (abfd)->cverdefs)
7e6e972f
L
1925 {
1926 const char *nodename
1927 = elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
8d55d10a
AM
1928 version_string = "";
1929 if (base_p
1930 || nodename == NULL
1931 || symbol->name == NULL
1932 || strcmp (symbol->name, nodename) != 0)
1933 version_string = nodename;
7e6e972f 1934 }
bb4d2ac2
L
1935 else
1936 {
1937 Elf_Internal_Verneed *t;
1938
7a815dd5 1939 version_string = _("<corrupt>");
bb4d2ac2
L
1940 for (t = elf_tdata (abfd)->verref;
1941 t != NULL;
1942 t = t->vn_nextref)
1943 {
1944 Elf_Internal_Vernaux *a;
1945
1946 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1947 {
1948 if (a->vna_other == vernum)
1949 {
f897689c 1950 *hidden = true;
bb4d2ac2
L
1951 version_string = a->vna_nodename;
1952 break;
1953 }
1954 }
1955 }
1956 }
1957 }
1958 return version_string;
1959}
1960
252b5132
RH
1961/* Display ELF-specific fields of a symbol. */
1962
1963void
217aa764
AM
1964bfd_elf_print_symbol (bfd *abfd,
1965 void *filep,
1966 asymbol *symbol,
1967 bfd_print_symbol_type how)
252b5132 1968{
a50b1753 1969 FILE *file = (FILE *) filep;
252b5132
RH
1970 switch (how)
1971 {
1972 case bfd_print_symbol_name:
1973 fprintf (file, "%s", symbol->name);
1974 break;
1975 case bfd_print_symbol_more:
1976 fprintf (file, "elf ");
60b89a18 1977 bfd_fprintf_vma (abfd, file, symbol->value);
cd9af601 1978 fprintf (file, " %x", symbol->flags);
252b5132
RH
1979 break;
1980 case bfd_print_symbol_all:
1981 {
4e8a9624
AM
1982 const char *section_name;
1983 const char *name = NULL;
9c5bfbb7 1984 const struct elf_backend_data *bed;
7a13edea 1985 unsigned char st_other;
dbb410c3 1986 bfd_vma val;
bb4d2ac2 1987 const char *version_string;
0a1b45a2 1988 bool hidden;
c044fabd 1989
252b5132 1990 section_name = symbol->section ? symbol->section->name : "(*none*)";
587ff49e
RH
1991
1992 bed = get_elf_backend_data (abfd);
1993 if (bed->elf_backend_print_symbol_all)
c044fabd 1994 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
587ff49e
RH
1995
1996 if (name == NULL)
1997 {
7ee38065 1998 name = symbol->name;
217aa764 1999 bfd_print_symbol_vandf (abfd, file, symbol);
587ff49e
RH
2000 }
2001
252b5132
RH
2002 fprintf (file, " %s\t", section_name);
2003 /* Print the "other" value for a symbol. For common symbols,
2004 we've already printed the size; now print the alignment.
2005 For other symbols, we have no specified alignment, and
2006 we've printed the address; now print the size. */
dcf6c779 2007 if (symbol->section && bfd_is_com_section (symbol->section))
dbb410c3
AM
2008 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
2009 else
2010 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
2011 bfd_fprintf_vma (abfd, file, val);
252b5132
RH
2012
2013 /* If we have version information, print it. */
60bb06bc
L
2014 version_string = _bfd_elf_get_symbol_version_string (abfd,
2015 symbol,
0a1b45a2 2016 true,
60bb06bc 2017 &hidden);
bb4d2ac2 2018 if (version_string)
252b5132 2019 {
bb4d2ac2 2020 if (!hidden)
252b5132
RH
2021 fprintf (file, " %-11s", version_string);
2022 else
2023 {
2024 int i;
2025
2026 fprintf (file, " (%s)", version_string);
2027 for (i = 10 - strlen (version_string); i > 0; --i)
2028 putc (' ', file);
2029 }
2030 }
2031
2032 /* If the st_other field is not zero, print it. */
7a13edea 2033 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
c044fabd 2034
7a13edea
NC
2035 switch (st_other)
2036 {
2037 case 0: break;
2038 case STV_INTERNAL: fprintf (file, " .internal"); break;
2039 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2040 case STV_PROTECTED: fprintf (file, " .protected"); break;
2041 default:
2042 /* Some other non-defined flags are also present, so print
2043 everything hex. */
2044 fprintf (file, " 0x%02x", (unsigned int) st_other);
2045 }
252b5132 2046
587ff49e 2047 fprintf (file, " %s", name);
252b5132
RH
2048 }
2049 break;
2050 }
2051}
252b5132
RH
2052\f
2053/* ELF .o/exec file reading */
2054
c044fabd 2055/* Create a new bfd section from an ELF section header. */
252b5132 2056
0a1b45a2 2057bool
217aa764 2058bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
252b5132 2059{
4fbb74a6
AM
2060 Elf_Internal_Shdr *hdr;
2061 Elf_Internal_Ehdr *ehdr;
2062 const struct elf_backend_data *bed;
90937f86 2063 const char *name;
0a1b45a2 2064 bool ret = true;
252b5132 2065
4fbb74a6 2066 if (shindex >= elf_numsections (abfd))
0a1b45a2 2067 return false;
4fbb74a6 2068
a86c6c19
AM
2069 /* PR17512: A corrupt ELF binary might contain a loop of sections via
2070 sh_link or sh_info. Detect this here, by refusing to load a
2071 section that we are already in the process of loading. */
2072 if (elf_tdata (abfd)->being_created[shindex])
bf67003b 2073 {
a86c6c19
AM
2074 _bfd_error_handler
2075 (_("%pB: warning: loop in section dependencies detected"), abfd);
0a1b45a2 2076 return false;
bf67003b 2077 }
0a1b45a2 2078 elf_tdata (abfd)->being_created[shindex] = true;
bf67003b 2079
4fbb74a6
AM
2080 hdr = elf_elfsections (abfd)[shindex];
2081 ehdr = elf_elfheader (abfd);
2082 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
1b3a8575 2083 hdr->sh_name);
933d961a 2084 if (name == NULL)
bf67003b 2085 goto fail;
252b5132 2086
4fbb74a6 2087 bed = get_elf_backend_data (abfd);
252b5132
RH
2088 switch (hdr->sh_type)
2089 {
2090 case SHT_NULL:
2091 /* Inactive section. Throw it away. */
bf67003b 2092 goto success;
252b5132 2093
bf67003b
NC
2094 case SHT_PROGBITS: /* Normal section with contents. */
2095 case SHT_NOBITS: /* .bss section. */
2096 case SHT_HASH: /* .hash section. */
2097 case SHT_NOTE: /* .note section. */
25e27870
L
2098 case SHT_INIT_ARRAY: /* .init_array section. */
2099 case SHT_FINI_ARRAY: /* .fini_array section. */
2100 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
7f1204bb 2101 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
fdc90cb4 2102 case SHT_GNU_HASH: /* .gnu.hash section. */
bf67003b
NC
2103 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2104 goto success;
252b5132 2105
797fc050 2106 case SHT_DYNAMIC: /* Dynamic linking information. */
6dc132d9 2107 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2108 goto fail;
2109
cfcac11d
NC
2110 if (hdr->sh_link > elf_numsections (abfd))
2111 {
caa83f8b 2112 /* PR 10478: Accept Solaris binaries with a sh_link
cfcac11d
NC
2113 field set to SHN_BEFORE or SHN_AFTER. */
2114 switch (bfd_get_arch (abfd))
2115 {
caa83f8b 2116 case bfd_arch_i386:
cfcac11d
NC
2117 case bfd_arch_sparc:
2118 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2119 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2120 break;
2121 /* Otherwise fall through. */
2122 default:
bf67003b 2123 goto fail;
cfcac11d
NC
2124 }
2125 }
2126 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
bf67003b 2127 goto fail;
cfcac11d 2128 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
797fc050
AM
2129 {
2130 Elf_Internal_Shdr *dynsymhdr;
2131
2132 /* The shared libraries distributed with hpux11 have a bogus
2133 sh_link field for the ".dynamic" section. Find the
2134 string table for the ".dynsym" section instead. */
2135 if (elf_dynsymtab (abfd) != 0)
2136 {
2137 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2138 hdr->sh_link = dynsymhdr->sh_link;
2139 }
2140 else
2141 {
2142 unsigned int i, num_sec;
2143
2144 num_sec = elf_numsections (abfd);
2145 for (i = 1; i < num_sec; i++)
2146 {
2147 dynsymhdr = elf_elfsections (abfd)[i];
2148 if (dynsymhdr->sh_type == SHT_DYNSYM)
2149 {
2150 hdr->sh_link = dynsymhdr->sh_link;
2151 break;
2152 }
2153 }
2154 }
2155 }
bf67003b 2156 goto success;
797fc050 2157
bf67003b 2158 case SHT_SYMTAB: /* A symbol table. */
252b5132 2159 if (elf_onesymtab (abfd) == shindex)
bf67003b 2160 goto success;
252b5132 2161
a50b2160 2162 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2163 goto fail;
2164
3337c1e5 2165 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
eee3b786
AM
2166 {
2167 if (hdr->sh_size != 0)
bf67003b 2168 goto fail;
eee3b786
AM
2169 /* Some assemblers erroneously set sh_info to one with a
2170 zero sh_size. ld sees this as a global symbol count
2171 of (unsigned) -1. Fix it here. */
2172 hdr->sh_info = 0;
bf67003b 2173 goto success;
eee3b786 2174 }
bf67003b 2175
16ad13ec
NC
2176 /* PR 18854: A binary might contain more than one symbol table.
2177 Unusual, but possible. Warn, but continue. */
2178 if (elf_onesymtab (abfd) != 0)
2179 {
4eca0228 2180 _bfd_error_handler
695344c0 2181 /* xgettext:c-format */
871b3ab2 2182 (_("%pB: warning: multiple symbol tables detected"
63a5468a 2183 " - ignoring the table in section %u"),
16ad13ec
NC
2184 abfd, shindex);
2185 goto success;
2186 }
252b5132 2187 elf_onesymtab (abfd) = shindex;
6a40cf0c
NC
2188 elf_symtab_hdr (abfd) = *hdr;
2189 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
252b5132
RH
2190 abfd->flags |= HAS_SYMS;
2191
2192 /* Sometimes a shared object will map in the symbol table. If
08a40648
AM
2193 SHF_ALLOC is set, and this is a shared object, then we also
2194 treat this section as a BFD section. We can not base the
2195 decision purely on SHF_ALLOC, because that flag is sometimes
2196 set in a relocatable object file, which would confuse the
2197 linker. */
252b5132
RH
2198 if ((hdr->sh_flags & SHF_ALLOC) != 0
2199 && (abfd->flags & DYNAMIC) != 0
6dc132d9
L
2200 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2201 shindex))
bf67003b 2202 goto fail;
252b5132 2203
1b3a8575
AM
2204 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2205 can't read symbols without that section loaded as well. It
2206 is most likely specified by the next section header. */
6a40cf0c
NC
2207 {
2208 elf_section_list * entry;
2209 unsigned int i, num_sec;
1b3a8575 2210
6a40cf0c
NC
2211 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2212 if (entry->hdr.sh_link == shindex)
2213 goto success;
2214
2215 num_sec = elf_numsections (abfd);
2216 for (i = shindex + 1; i < num_sec; i++)
2217 {
2218 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2219
2220 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2221 && hdr2->sh_link == shindex)
2222 break;
2223 }
2224
2225 if (i == num_sec)
2226 for (i = 1; i < shindex; i++)
1b3a8575
AM
2227 {
2228 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
6a40cf0c 2229
1b3a8575
AM
2230 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2231 && hdr2->sh_link == shindex)
2232 break;
2233 }
6a40cf0c
NC
2234
2235 if (i != shindex)
2236 ret = bfd_section_from_shdr (abfd, i);
2237 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2238 goto success;
2239 }
252b5132 2240
bf67003b 2241 case SHT_DYNSYM: /* A dynamic symbol table. */
252b5132 2242 if (elf_dynsymtab (abfd) == shindex)
bf67003b 2243 goto success;
252b5132 2244
a50b2160 2245 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2246 goto fail;
2247
eee3b786
AM
2248 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2249 {
2250 if (hdr->sh_size != 0)
bf67003b
NC
2251 goto fail;
2252
eee3b786
AM
2253 /* Some linkers erroneously set sh_info to one with a
2254 zero sh_size. ld sees this as a global symbol count
2255 of (unsigned) -1. Fix it here. */
2256 hdr->sh_info = 0;
bf67003b 2257 goto success;
eee3b786 2258 }
bf67003b 2259
16ad13ec
NC
2260 /* PR 18854: A binary might contain more than one dynamic symbol table.
2261 Unusual, but possible. Warn, but continue. */
2262 if (elf_dynsymtab (abfd) != 0)
2263 {
4eca0228 2264 _bfd_error_handler
695344c0 2265 /* xgettext:c-format */
871b3ab2 2266 (_("%pB: warning: multiple dynamic symbol tables detected"
63a5468a 2267 " - ignoring the table in section %u"),
16ad13ec
NC
2268 abfd, shindex);
2269 goto success;
2270 }
252b5132
RH
2271 elf_dynsymtab (abfd) = shindex;
2272 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2273 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2274 abfd->flags |= HAS_SYMS;
2275
2276 /* Besides being a symbol table, we also treat this as a regular
2277 section, so that objcopy can handle it. */
bf67003b
NC
2278 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2279 goto success;
252b5132 2280
bf67003b 2281 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
6a40cf0c
NC
2282 {
2283 elf_section_list * entry;
9ad5cbcf 2284
6a40cf0c
NC
2285 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2286 if (entry->ndx == shindex)
2287 goto success;
07d6d2b8 2288
7a6e0d89 2289 entry = bfd_alloc (abfd, sizeof (*entry));
6a40cf0c
NC
2290 if (entry == NULL)
2291 goto fail;
2292 entry->ndx = shindex;
2293 entry->hdr = * hdr;
2294 entry->next = elf_symtab_shndx_list (abfd);
2295 elf_symtab_shndx_list (abfd) = entry;
2296 elf_elfsections (abfd)[shindex] = & entry->hdr;
2297 goto success;
2298 }
9ad5cbcf 2299
bf67003b 2300 case SHT_STRTAB: /* A string table. */
252b5132 2301 if (hdr->bfd_section != NULL)
bf67003b
NC
2302 goto success;
2303
252b5132
RH
2304 if (ehdr->e_shstrndx == shindex)
2305 {
2306 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2307 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
bf67003b 2308 goto success;
252b5132 2309 }
bf67003b 2310
1b3a8575
AM
2311 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2312 {
2313 symtab_strtab:
2314 elf_tdata (abfd)->strtab_hdr = *hdr;
2315 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
bf67003b 2316 goto success;
1b3a8575 2317 }
bf67003b 2318
1b3a8575
AM
2319 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2320 {
2321 dynsymtab_strtab:
2322 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2323 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2324 elf_elfsections (abfd)[shindex] = hdr;
2325 /* We also treat this as a regular section, so that objcopy
2326 can handle it. */
bf67003b
NC
2327 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2328 shindex);
2329 goto success;
1b3a8575 2330 }
252b5132 2331
1b3a8575
AM
2332 /* If the string table isn't one of the above, then treat it as a
2333 regular section. We need to scan all the headers to be sure,
2334 just in case this strtab section appeared before the above. */
2335 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2336 {
2337 unsigned int i, num_sec;
252b5132 2338
1b3a8575
AM
2339 num_sec = elf_numsections (abfd);
2340 for (i = 1; i < num_sec; i++)
2341 {
2342 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2343 if (hdr2->sh_link == shindex)
2344 {
933d961a
JJ
2345 /* Prevent endless recursion on broken objects. */
2346 if (i == shindex)
bf67003b 2347 goto fail;
1b3a8575 2348 if (! bfd_section_from_shdr (abfd, i))
bf67003b 2349 goto fail;
1b3a8575
AM
2350 if (elf_onesymtab (abfd) == i)
2351 goto symtab_strtab;
2352 if (elf_dynsymtab (abfd) == i)
2353 goto dynsymtab_strtab;
2354 }
2355 }
2356 }
bf67003b
NC
2357 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2358 goto success;
252b5132
RH
2359
2360 case SHT_REL:
2361 case SHT_RELA:
a619b587 2362 case SHT_RELR:
252b5132
RH
2363 /* *These* do a lot of work -- but build no sections! */
2364 {
2365 asection *target_sect;
d4730f92 2366 Elf_Internal_Shdr *hdr2, **p_hdr;
9ad5cbcf 2367 unsigned int num_sec = elf_numsections (abfd);
d4730f92 2368 struct bfd_elf_section_data *esdt;
a619b587 2369 bfd_size_type size;
252b5132 2370
a619b587
FS
2371 if (hdr->sh_type == SHT_REL)
2372 size = bed->s->sizeof_rel;
2373 else if (hdr->sh_type == SHT_RELA)
2374 size = bed->s->sizeof_rela;
2375 else
2376 size = bed->s->arch_size / 8;
2377 if (hdr->sh_entsize != size)
bf67003b 2378 goto fail;
a50b2160 2379
03ae5f59 2380 /* Check for a bogus link to avoid crashing. */
4fbb74a6 2381 if (hdr->sh_link >= num_sec)
03ae5f59 2382 {
4eca0228 2383 _bfd_error_handler
695344c0 2384 /* xgettext:c-format */
871b3ab2 2385 (_("%pB: invalid link %u for reloc section %s (index %u)"),
4eca0228 2386 abfd, hdr->sh_link, name, shindex);
bf67003b
NC
2387 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2388 shindex);
2389 goto success;
03ae5f59
ILT
2390 }
2391
252b5132 2392 /* Get the symbol table. */
1b3a8575
AM
2393 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2394 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
252b5132 2395 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
bf67003b 2396 goto fail;
252b5132 2397
a4bcd733
AM
2398 /* If this is an alloc section in an executable or shared
2399 library, or the reloc section does not use the main symbol
2400 table we don't treat it as a reloc section. BFD can't
2401 adequately represent such a section, so at least for now,
2402 we don't try. We just present it as a normal section. We
2403 also can't use it as a reloc section if it points to the
2404 null section, an invalid section, another reloc section, or
2405 its sh_link points to the null section. */
2406 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2407 && (hdr->sh_flags & SHF_ALLOC) != 0)
83b89087 2408 || hdr->sh_link == SHN_UNDEF
a4bcd733 2409 || hdr->sh_link != elf_onesymtab (abfd)
185ef66d 2410 || hdr->sh_info == SHN_UNDEF
185ef66d
AM
2411 || hdr->sh_info >= num_sec
2412 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2413 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
bf67003b
NC
2414 {
2415 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2416 shindex);
2417 goto success;
2418 }
252b5132
RH
2419
2420 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
bf67003b
NC
2421 goto fail;
2422
252b5132
RH
2423 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2424 if (target_sect == NULL)
bf67003b 2425 goto fail;
252b5132 2426
d4730f92
BS
2427 esdt = elf_section_data (target_sect);
2428 if (hdr->sh_type == SHT_RELA)
2429 p_hdr = &esdt->rela.hdr;
252b5132 2430 else
d4730f92
BS
2431 p_hdr = &esdt->rel.hdr;
2432
a7ba3896
NC
2433 /* PR 17512: file: 0b4f81b7.
2434 Also see PR 24456, for a file which deliberately has two reloc
2435 sections. */
06614111 2436 if (*p_hdr != NULL)
a7ba3896 2437 {
a859124d 2438 if (!bed->init_secondary_reloc_section (abfd, hdr, name, shindex))
a8e14f4c
NC
2439 {
2440 _bfd_error_handler
2441 /* xgettext:c-format */
a859124d
AM
2442 (_("%pB: warning: secondary relocation section '%s' "
2443 "for section %pA found - ignoring"),
a8e14f4c
NC
2444 abfd, name, target_sect);
2445 }
956ea65c
MM
2446 else
2447 esdt->has_secondary_relocs = true;
a7ba3896
NC
2448 goto success;
2449 }
a8e14f4c 2450
ef53be89 2451 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
d4730f92 2452 if (hdr2 == NULL)
bf67003b 2453 goto fail;
252b5132 2454 *hdr2 = *hdr;
d4730f92 2455 *p_hdr = hdr2;
252b5132 2456 elf_elfsections (abfd)[shindex] = hdr2;
056bafd4
MR
2457 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2458 * bed->s->int_rels_per_ext_rel);
252b5132
RH
2459 target_sect->flags |= SEC_RELOC;
2460 target_sect->relocation = NULL;
2461 target_sect->rel_filepos = hdr->sh_offset;
bf572ba0
MM
2462 /* In the section to which the relocations apply, mark whether
2463 its relocations are of the REL or RELA variety. */
72730e0c 2464 if (hdr->sh_size != 0)
d4730f92
BS
2465 {
2466 if (hdr->sh_type == SHT_RELA)
2467 target_sect->use_rela_p = 1;
2468 }
252b5132 2469 abfd->flags |= HAS_RELOC;
bf67003b 2470 goto success;
252b5132 2471 }
252b5132
RH
2472
2473 case SHT_GNU_verdef:
2474 elf_dynverdef (abfd) = shindex;
2475 elf_tdata (abfd)->dynverdef_hdr = *hdr;
bf67003b
NC
2476 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2477 goto success;
252b5132
RH
2478
2479 case SHT_GNU_versym:
a50b2160 2480 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
bf67003b
NC
2481 goto fail;
2482
252b5132
RH
2483 elf_dynversym (abfd) = shindex;
2484 elf_tdata (abfd)->dynversym_hdr = *hdr;
bf67003b
NC
2485 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2486 goto success;
252b5132
RH
2487
2488 case SHT_GNU_verneed:
2489 elf_dynverref (abfd) = shindex;
2490 elf_tdata (abfd)->dynverref_hdr = *hdr;
bf67003b
NC
2491 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2492 goto success;
252b5132
RH
2493
2494 case SHT_SHLIB:
bf67003b 2495 goto success;
252b5132 2496
dbb410c3 2497 case SHT_GROUP:
44534af3 2498 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
bf67003b
NC
2499 goto fail;
2500
6dc132d9 2501 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2502 goto fail;
2503
bf67003b 2504 goto success;
dbb410c3 2505
252b5132 2506 default:
104d59d1
JM
2507 /* Possibly an attributes section. */
2508 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2509 || hdr->sh_type == bed->obj_attrs_section_type)
2510 {
2511 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2512 goto fail;
104d59d1 2513 _bfd_elf_parse_attributes (abfd, hdr);
bf67003b 2514 goto success;
104d59d1
JM
2515 }
2516
252b5132 2517 /* Check for any processor-specific section types. */
3eb70a79 2518 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2519 goto success;
3eb70a79
L
2520
2521 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2522 {
2523 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2524 /* FIXME: How to properly handle allocated section reserved
2525 for applications? */
4eca0228 2526 _bfd_error_handler
695344c0 2527 /* xgettext:c-format */
871b3ab2 2528 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2529 abfd, hdr->sh_type, name);
3eb70a79 2530 else
bf67003b
NC
2531 {
2532 /* Allow sections reserved for applications. */
2533 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2534 shindex);
2535 goto success;
2536 }
3eb70a79
L
2537 }
2538 else if (hdr->sh_type >= SHT_LOPROC
2539 && hdr->sh_type <= SHT_HIPROC)
2540 /* FIXME: We should handle this section. */
4eca0228 2541 _bfd_error_handler
695344c0 2542 /* xgettext:c-format */
871b3ab2 2543 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2544 abfd, hdr->sh_type, name);
3eb70a79 2545 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
ff15b240
NC
2546 {
2547 /* Unrecognised OS-specific sections. */
2548 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2549 /* SHF_OS_NONCONFORMING indicates that special knowledge is
08a40648 2550 required to correctly process the section and the file should
ff15b240 2551 be rejected with an error message. */
4eca0228 2552 _bfd_error_handler
695344c0 2553 /* xgettext:c-format */
871b3ab2 2554 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2555 abfd, hdr->sh_type, name);
ff15b240 2556 else
bf67003b
NC
2557 {
2558 /* Otherwise it should be processed. */
2559 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2560 goto success;
2561 }
ff15b240 2562 }
3eb70a79
L
2563 else
2564 /* FIXME: We should handle this section. */
4eca0228 2565 _bfd_error_handler
695344c0 2566 /* xgettext:c-format */
871b3ab2 2567 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2568 abfd, hdr->sh_type, name);
3eb70a79 2569
bf67003b 2570 goto fail;
252b5132
RH
2571 }
2572
bf67003b 2573 fail:
0a1b45a2 2574 ret = false;
bf67003b 2575 success:
0a1b45a2 2576 elf_tdata (abfd)->being_created[shindex] = false;
bf67003b 2577 return ret;
252b5132
RH
2578}
2579
87d72d41 2580/* Return the local symbol specified by ABFD, R_SYMNDX. */
ec338859 2581
87d72d41
AM
2582Elf_Internal_Sym *
2583bfd_sym_from_r_symndx (struct sym_cache *cache,
2584 bfd *abfd,
2585 unsigned long r_symndx)
ec338859 2586{
ec338859
AM
2587 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2588
a5d1b3b5
AM
2589 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2590 {
2591 Elf_Internal_Shdr *symtab_hdr;
2592 unsigned char esym[sizeof (Elf64_External_Sym)];
2593 Elf_External_Sym_Shndx eshndx;
ec338859 2594
a5d1b3b5
AM
2595 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2596 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
87d72d41 2597 &cache->sym[ent], esym, &eshndx) == NULL)
a5d1b3b5 2598 return NULL;
9ad5cbcf 2599
a5d1b3b5
AM
2600 if (cache->abfd != abfd)
2601 {
2602 memset (cache->indx, -1, sizeof (cache->indx));
2603 cache->abfd = abfd;
2604 }
2605 cache->indx[ent] = r_symndx;
ec338859 2606 }
a5d1b3b5 2607
87d72d41 2608 return &cache->sym[ent];
ec338859
AM
2609}
2610
252b5132
RH
2611/* Given an ELF section number, retrieve the corresponding BFD
2612 section. */
2613
2614asection *
91d6fa6a 2615bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
252b5132 2616{
91d6fa6a 2617 if (sec_index >= elf_numsections (abfd))
252b5132 2618 return NULL;
91d6fa6a 2619 return elf_elfsections (abfd)[sec_index]->bfd_section;
252b5132
RH
2620}
2621
b35d266b 2622static const struct bfd_elf_special_section special_sections_b[] =
2f89ff8d 2623{
0112cd26 2624 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2625 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2626};
2627
b35d266b 2628static const struct bfd_elf_special_section special_sections_c[] =
7f4d3958 2629{
0112cd26 2630 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
1ff6de03 2631 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2632 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2633};
2634
b35d266b 2635static const struct bfd_elf_special_section special_sections_d[] =
7f4d3958 2636{
07d6d2b8
AM
2637 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2638 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
a9a72a65
DE
2639 /* There are more DWARF sections than these, but they needn't be added here
2640 unless you have to cope with broken compilers that don't emit section
2641 attributes or you want to help the user writing assembler. */
07d6d2b8
AM
2642 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2643 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2644 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2645 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
0112cd26 2646 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2647 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2648 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2649 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2650 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2651};
2652
b35d266b 2653static const struct bfd_elf_special_section special_sections_f[] =
7f4d3958 2654{
07d6d2b8 2655 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2656 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2657 { NULL, 0 , 0, 0, 0 }
7f4d3958
L
2658};
2659
b35d266b 2660static const struct bfd_elf_special_section special_sections_g[] =
7f4d3958 2661{
0112cd26 2662 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2c6f3e56
JL
2663 { STRING_COMMA_LEN (".gnu.linkonce.n"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2664 { STRING_COMMA_LEN (".gnu.linkonce.p"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2665 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2666 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2667 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
0112cd26
NC
2668 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2669 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
07d6d2b8
AM
2670 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2671 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2672 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2673 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2674};
2675
b35d266b 2676static const struct bfd_elf_special_section special_sections_h[] =
7f4d3958 2677{
07d6d2b8
AM
2678 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2679 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2680};
2681
b35d266b 2682static const struct bfd_elf_special_section special_sections_i[] =
7f4d3958 2683{
07d6d2b8 2684 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2685 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2686 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2687 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2688};
2689
b35d266b 2690static const struct bfd_elf_special_section special_sections_l[] =
7f4d3958 2691{
0112cd26 2692 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2693 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2694};
2695
b35d266b 2696static const struct bfd_elf_special_section special_sections_n[] =
7f4d3958 2697{
2c6f3e56 2698 { STRING_COMMA_LEN (".noinit"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
0112cd26 2699 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2700 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2701 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2702};
2703
b35d266b 2704static const struct bfd_elf_special_section special_sections_p[] =
7f4d3958 2705{
f5e98b7d 2706 { STRING_COMMA_LEN (".persistent.bss"), 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2c6f3e56 2707 { STRING_COMMA_LEN (".persistent"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
6f9dbcd4 2708 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2709 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2710 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2711};
2712
b35d266b 2713static const struct bfd_elf_special_section special_sections_r[] =
7f4d3958 2714{
0112cd26
NC
2715 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2716 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
07d6d2b8
AM
2717 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2718 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2719 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2720};
2721
b35d266b 2722static const struct bfd_elf_special_section special_sections_s[] =
7f4d3958 2723{
0112cd26
NC
2724 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2725 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2726 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
60ff4dc4
HPN
2727 /* See struct bfd_elf_special_section declaration for the semantics of
2728 this special case where .prefix_length != strlen (.prefix). */
2729 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
07d6d2b8 2730 { NULL, 0, 0, 0, 0 }
2f89ff8d
L
2731};
2732
b35d266b 2733static const struct bfd_elf_special_section special_sections_t[] =
7f4d3958 2734{
07d6d2b8
AM
2735 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2736 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
0112cd26 2737 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
07d6d2b8 2738 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2739};
2740
1b315056
CS
2741static const struct bfd_elf_special_section special_sections_z[] =
2742{
07d6d2b8
AM
2743 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2744 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
1b315056
CS
2745 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2746 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2747 { NULL, 0, 0, 0, 0 }
1b315056
CS
2748};
2749
e4c93b56 2750static const struct bfd_elf_special_section * const special_sections[] =
7f4d3958 2751{
7f4d3958 2752 special_sections_b, /* 'b' */
98ece1b3 2753 special_sections_c, /* 'c' */
7f4d3958
L
2754 special_sections_d, /* 'd' */
2755 NULL, /* 'e' */
2756 special_sections_f, /* 'f' */
2757 special_sections_g, /* 'g' */
2758 special_sections_h, /* 'h' */
2759 special_sections_i, /* 'i' */
2760 NULL, /* 'j' */
2761 NULL, /* 'k' */
2762 special_sections_l, /* 'l' */
2763 NULL, /* 'm' */
2764 special_sections_n, /* 'n' */
2765 NULL, /* 'o' */
2766 special_sections_p, /* 'p' */
2767 NULL, /* 'q' */
2768 special_sections_r, /* 'r' */
2769 special_sections_s, /* 's' */
2770 special_sections_t, /* 't' */
1b315056
CS
2771 NULL, /* 'u' */
2772 NULL, /* 'v' */
2773 NULL, /* 'w' */
2774 NULL, /* 'x' */
2775 NULL, /* 'y' */
2776 special_sections_z /* 'z' */
7f4d3958
L
2777};
2778
551b43fd
AM
2779const struct bfd_elf_special_section *
2780_bfd_elf_get_special_section (const char *name,
2781 const struct bfd_elf_special_section *spec,
2782 unsigned int rela)
2f89ff8d
L
2783{
2784 int i;
7f4d3958 2785 int len;
7f4d3958 2786
551b43fd 2787 len = strlen (name);
7f4d3958 2788
551b43fd 2789 for (i = 0; spec[i].prefix != NULL; i++)
7dcb9820
AM
2790 {
2791 int suffix_len;
551b43fd 2792 int prefix_len = spec[i].prefix_length;
7dcb9820
AM
2793
2794 if (len < prefix_len)
2795 continue;
551b43fd 2796 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
7dcb9820
AM
2797 continue;
2798
551b43fd 2799 suffix_len = spec[i].suffix_length;
7dcb9820
AM
2800 if (suffix_len <= 0)
2801 {
2802 if (name[prefix_len] != 0)
2803 {
2804 if (suffix_len == 0)
2805 continue;
2806 if (name[prefix_len] != '.'
2807 && (suffix_len == -2
551b43fd 2808 || (rela && spec[i].type == SHT_REL)))
7dcb9820
AM
2809 continue;
2810 }
2811 }
2812 else
2813 {
2814 if (len < prefix_len + suffix_len)
2815 continue;
2816 if (memcmp (name + len - suffix_len,
551b43fd 2817 spec[i].prefix + prefix_len,
7dcb9820
AM
2818 suffix_len) != 0)
2819 continue;
2820 }
551b43fd 2821 return &spec[i];
7dcb9820 2822 }
2f89ff8d
L
2823
2824 return NULL;
2825}
2826
7dcb9820 2827const struct bfd_elf_special_section *
29ef7005 2828_bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2f89ff8d 2829{
551b43fd
AM
2830 int i;
2831 const struct bfd_elf_special_section *spec;
29ef7005 2832 const struct elf_backend_data *bed;
2f89ff8d
L
2833
2834 /* See if this is one of the special sections. */
551b43fd
AM
2835 if (sec->name == NULL)
2836 return NULL;
2f89ff8d 2837
29ef7005
L
2838 bed = get_elf_backend_data (abfd);
2839 spec = bed->special_sections;
2840 if (spec)
2841 {
2842 spec = _bfd_elf_get_special_section (sec->name,
2843 bed->special_sections,
2844 sec->use_rela_p);
2845 if (spec != NULL)
2846 return spec;
2847 }
2848
551b43fd
AM
2849 if (sec->name[0] != '.')
2850 return NULL;
2f89ff8d 2851
551b43fd 2852 i = sec->name[1] - 'b';
1b315056 2853 if (i < 0 || i > 'z' - 'b')
551b43fd
AM
2854 return NULL;
2855
2856 spec = special_sections[i];
2f89ff8d 2857
551b43fd
AM
2858 if (spec == NULL)
2859 return NULL;
2860
2861 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2f89ff8d
L
2862}
2863
0a1b45a2 2864bool
217aa764 2865_bfd_elf_new_section_hook (bfd *abfd, asection *sec)
252b5132
RH
2866{
2867 struct bfd_elf_section_data *sdata;
551b43fd 2868 const struct elf_backend_data *bed;
7dcb9820 2869 const struct bfd_elf_special_section *ssect;
252b5132 2870
f0abc2a1
AM
2871 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2872 if (sdata == NULL)
2873 {
a50b1753 2874 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
07d6d2b8 2875 sizeof (*sdata));
f0abc2a1 2876 if (sdata == NULL)
0a1b45a2 2877 return false;
217aa764 2878 sec->used_by_bfd = sdata;
f0abc2a1 2879 }
bf572ba0 2880
551b43fd
AM
2881 /* Indicate whether or not this section should use RELA relocations. */
2882 bed = get_elf_backend_data (abfd);
2883 sec->use_rela_p = bed->default_use_rela_p;
2884
8c803a2d
AM
2885 /* Set up ELF section type and flags for newly created sections, if
2886 there is an ABI mandated section. */
2887 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2888 if (ssect != NULL)
2f89ff8d 2889 {
8c803a2d
AM
2890 elf_section_type (sec) = ssect->type;
2891 elf_section_flags (sec) = ssect->attr;
2f89ff8d
L
2892 }
2893
f592407e 2894 return _bfd_generic_new_section_hook (abfd, sec);
252b5132
RH
2895}
2896
2897/* Create a new bfd section from an ELF program header.
2898
2899 Since program segments have no names, we generate a synthetic name
2900 of the form segment<NUM>, where NUM is generally the index in the
2901 program header table. For segments that are split (see below) we
2902 generate the names segment<NUM>a and segment<NUM>b.
2903
2904 Note that some program segments may have a file size that is different than
2905 (less than) the memory size. All this means is that at execution the
2906 system must allocate the amount of memory specified by the memory size,
2907 but only initialize it with the first "file size" bytes read from the
2908 file. This would occur for example, with program segments consisting
2909 of combined data+bss.
2910
2911 To handle the above situation, this routine generates TWO bfd sections
2912 for the single program segment. The first has the length specified by
2913 the file size of the segment, and the second has the length specified
2914 by the difference between the two sizes. In effect, the segment is split
d5191d0c 2915 into its initialized and uninitialized parts.
252b5132
RH
2916
2917 */
2918
0a1b45a2 2919bool
217aa764
AM
2920_bfd_elf_make_section_from_phdr (bfd *abfd,
2921 Elf_Internal_Phdr *hdr,
91d6fa6a 2922 int hdr_index,
a50b1753 2923 const char *type_name)
252b5132
RH
2924{
2925 asection *newsect;
2926 char *name;
2927 char namebuf[64];
d4c88bbb 2928 size_t len;
252b5132 2929 int split;
502794d4 2930 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132
RH
2931
2932 split = ((hdr->p_memsz > 0)
2933 && (hdr->p_filesz > 0)
2934 && (hdr->p_memsz > hdr->p_filesz));
d5191d0c
AM
2935
2936 if (hdr->p_filesz > 0)
252b5132 2937 {
91d6fa6a 2938 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
d5191d0c 2939 len = strlen (namebuf) + 1;
a50b1753 2940 name = (char *) bfd_alloc (abfd, len);
d5191d0c 2941 if (!name)
0a1b45a2 2942 return false;
d5191d0c
AM
2943 memcpy (name, namebuf, len);
2944 newsect = bfd_make_section (abfd, name);
2945 if (newsect == NULL)
0a1b45a2 2946 return false;
502794d4
CE
2947 newsect->vma = hdr->p_vaddr / opb;
2948 newsect->lma = hdr->p_paddr / opb;
d5191d0c
AM
2949 newsect->size = hdr->p_filesz;
2950 newsect->filepos = hdr->p_offset;
2951 newsect->flags |= SEC_HAS_CONTENTS;
2952 newsect->alignment_power = bfd_log2 (hdr->p_align);
2953 if (hdr->p_type == PT_LOAD)
252b5132 2954 {
d5191d0c
AM
2955 newsect->flags |= SEC_ALLOC;
2956 newsect->flags |= SEC_LOAD;
2957 if (hdr->p_flags & PF_X)
2958 {
2959 /* FIXME: all we known is that it has execute PERMISSION,
2960 may be data. */
2961 newsect->flags |= SEC_CODE;
2962 }
2963 }
2964 if (!(hdr->p_flags & PF_W))
2965 {
2966 newsect->flags |= SEC_READONLY;
252b5132 2967 }
252b5132
RH
2968 }
2969
d5191d0c 2970 if (hdr->p_memsz > hdr->p_filesz)
252b5132 2971 {
d5191d0c
AM
2972 bfd_vma align;
2973
91d6fa6a 2974 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
d4c88bbb 2975 len = strlen (namebuf) + 1;
a50b1753 2976 name = (char *) bfd_alloc (abfd, len);
252b5132 2977 if (!name)
0a1b45a2 2978 return false;
d4c88bbb 2979 memcpy (name, namebuf, len);
252b5132
RH
2980 newsect = bfd_make_section (abfd, name);
2981 if (newsect == NULL)
0a1b45a2 2982 return false;
502794d4
CE
2983 newsect->vma = (hdr->p_vaddr + hdr->p_filesz) / opb;
2984 newsect->lma = (hdr->p_paddr + hdr->p_filesz) / opb;
eea6121a 2985 newsect->size = hdr->p_memsz - hdr->p_filesz;
d5191d0c
AM
2986 newsect->filepos = hdr->p_offset + hdr->p_filesz;
2987 align = newsect->vma & -newsect->vma;
2988 if (align == 0 || align > hdr->p_align)
2989 align = hdr->p_align;
2990 newsect->alignment_power = bfd_log2 (align);
252b5132
RH
2991 if (hdr->p_type == PT_LOAD)
2992 {
2993 newsect->flags |= SEC_ALLOC;
2994 if (hdr->p_flags & PF_X)
2995 newsect->flags |= SEC_CODE;
2996 }
2997 if (!(hdr->p_flags & PF_W))
2998 newsect->flags |= SEC_READONLY;
2999 }
3000
0a1b45a2 3001 return true;
252b5132
RH
3002}
3003
0a1b45a2 3004static bool
864619bb
KS
3005_bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3006{
3007 /* The return value is ignored. Build-ids are considered optional. */
3008 if (templ->xvec->flavour == bfd_target_elf_flavour)
3009 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3010 (templ, offset);
0a1b45a2 3011 return false;
864619bb
KS
3012}
3013
0a1b45a2 3014bool
91d6fa6a 3015bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
20cfcaae 3016{
9c5bfbb7 3017 const struct elf_backend_data *bed;
20cfcaae
NC
3018
3019 switch (hdr->p_type)
3020 {
3021 case PT_NULL:
91d6fa6a 3022 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
20cfcaae
NC
3023
3024 case PT_LOAD:
864619bb 3025 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
0a1b45a2 3026 return false;
864619bb
KS
3027 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3028 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
0a1b45a2 3029 return true;
20cfcaae
NC
3030
3031 case PT_DYNAMIC:
91d6fa6a 3032 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
20cfcaae
NC
3033
3034 case PT_INTERP:
91d6fa6a 3035 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
20cfcaae
NC
3036
3037 case PT_NOTE:
91d6fa6a 3038 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
0a1b45a2 3039 return false;
276da9b3
L
3040 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3041 hdr->p_align))
0a1b45a2
AM
3042 return false;
3043 return true;
20cfcaae
NC
3044
3045 case PT_SHLIB:
91d6fa6a 3046 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
20cfcaae
NC
3047
3048 case PT_PHDR:
91d6fa6a 3049 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
20cfcaae 3050
811072d8 3051 case PT_GNU_EH_FRAME:
91d6fa6a 3052 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
811072d8
RM
3053 "eh_frame_hdr");
3054
2b05f1b7 3055 case PT_GNU_STACK:
91d6fa6a 3056 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
9ee5e499 3057
8c37241b 3058 case PT_GNU_RELRO:
91d6fa6a 3059 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
8c37241b 3060
20cfcaae 3061 default:
8c1acd09 3062 /* Check for any processor-specific program segment types. */
20cfcaae 3063 bed = get_elf_backend_data (abfd);
91d6fa6a 3064 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
20cfcaae
NC
3065 }
3066}
3067
d4730f92
BS
3068/* Return the REL_HDR for SEC, assuming there is only a single one, either
3069 REL or RELA. */
3070
3071Elf_Internal_Shdr *
3072_bfd_elf_single_rel_hdr (asection *sec)
3073{
3074 if (elf_section_data (sec)->rel.hdr)
3075 {
3076 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3077 return elf_section_data (sec)->rel.hdr;
3078 }
3079 else
3080 return elf_section_data (sec)->rela.hdr;
3081}
3082
0a1b45a2 3083static bool
3e19fb8f
L
3084_bfd_elf_set_reloc_sh_name (bfd *abfd,
3085 Elf_Internal_Shdr *rel_hdr,
3086 const char *sec_name,
0a1b45a2 3087 bool use_rela_p)
3e19fb8f
L
3088{
3089 char *name = (char *) bfd_alloc (abfd,
3090 sizeof ".rela" + strlen (sec_name));
3091 if (name == NULL)
0a1b45a2 3092 return false;
3e19fb8f
L
3093
3094 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3095 rel_hdr->sh_name =
3096 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
0a1b45a2 3097 false);
3e19fb8f 3098 if (rel_hdr->sh_name == (unsigned int) -1)
0a1b45a2 3099 return false;
3e19fb8f 3100
0a1b45a2 3101 return true;
3e19fb8f
L
3102}
3103
d4730f92
BS
3104/* Allocate and initialize a section-header for a new reloc section,
3105 containing relocations against ASECT. It is stored in RELDATA. If
3106 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3107 relocations. */
23bc299b 3108
0a1b45a2 3109static bool
217aa764 3110_bfd_elf_init_reloc_shdr (bfd *abfd,
d4730f92 3111 struct bfd_elf_section_reloc_data *reldata,
f6fe1ccd 3112 const char *sec_name,
0a1b45a2
AM
3113 bool use_rela_p,
3114 bool delay_st_name_p)
23bc299b 3115{
d4730f92 3116 Elf_Internal_Shdr *rel_hdr;
9c5bfbb7 3117 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3118
d4730f92 3119 BFD_ASSERT (reldata->hdr == NULL);
ef53be89 3120 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
d4730f92 3121 reldata->hdr = rel_hdr;
23bc299b 3122
3e19fb8f
L
3123 if (delay_st_name_p)
3124 rel_hdr->sh_name = (unsigned int) -1;
3125 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3126 use_rela_p))
0a1b45a2 3127 return false;
23bc299b
MM
3128 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3129 rel_hdr->sh_entsize = (use_rela_p
3130 ? bed->s->sizeof_rela
3131 : bed->s->sizeof_rel);
72de5009 3132 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
28e07a05 3133 rel_hdr->sh_flags = 0;
23bc299b
MM
3134 rel_hdr->sh_addr = 0;
3135 rel_hdr->sh_size = 0;
3136 rel_hdr->sh_offset = 0;
3137
0a1b45a2 3138 return true;
23bc299b
MM
3139}
3140
94be91de
JB
3141/* Return the default section type based on the passed in section flags. */
3142
3143int
3144bfd_elf_get_default_section_type (flagword flags)
3145{
0e41bebb 3146 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
2e76e85a 3147 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
94be91de
JB
3148 return SHT_NOBITS;
3149 return SHT_PROGBITS;
3150}
3151
d4730f92
BS
3152struct fake_section_arg
3153{
3154 struct bfd_link_info *link_info;
0a1b45a2 3155 bool failed;
d4730f92
BS
3156};
3157
252b5132
RH
3158/* Set up an ELF internal section header for a section. */
3159
252b5132 3160static void
d4730f92 3161elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
252b5132 3162{
d4730f92 3163 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
9c5bfbb7 3164 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3165 struct bfd_elf_section_data *esd = elf_section_data (asect);
252b5132 3166 Elf_Internal_Shdr *this_hdr;
0414f35b 3167 unsigned int sh_type;
0ce398f1 3168 const char *name = asect->name;
0a1b45a2 3169 bool delay_st_name_p = false;
233bf4f8 3170 bfd_vma mask;
252b5132 3171
d4730f92 3172 if (arg->failed)
252b5132
RH
3173 {
3174 /* We already failed; just get out of the bfd_map_over_sections
08a40648 3175 loop. */
252b5132
RH
3176 return;
3177 }
3178
d4730f92 3179 this_hdr = &esd->this_hdr;
252b5132 3180
f6fe1ccd 3181 if (arg->link_info)
0ce398f1 3182 {
f6fe1ccd
L
3183 /* ld: compress DWARF debug sections with names: .debug_*. */
3184 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3185 && (asect->flags & SEC_DEBUGGING)
3186 && name[1] == 'd'
3187 && name[6] == '_')
3188 {
3189 /* Set SEC_ELF_COMPRESS to indicate this section should be
3190 compressed. */
3191 asect->flags |= SEC_ELF_COMPRESS;
dd905818 3192 /* If this section will be compressed, delay adding section
3e19fb8f
L
3193 name to section name section after it is compressed in
3194 _bfd_elf_assign_file_positions_for_non_load. */
0a1b45a2 3195 delay_st_name_p = true;
f6fe1ccd
L
3196 }
3197 }
3198 else if ((asect->flags & SEC_ELF_RENAME))
3199 {
3200 /* objcopy: rename output DWARF debug section. */
3201 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3202 {
3203 /* When we decompress or compress with SHF_COMPRESSED,
3204 convert section name from .zdebug_* to .debug_* if
3205 needed. */
3206 if (name[1] == 'z')
3207 {
3208 char *new_name = convert_zdebug_to_debug (abfd, name);
3209 if (new_name == NULL)
3210 {
0a1b45a2 3211 arg->failed = true;
f6fe1ccd
L
3212 return;
3213 }
3214 name = new_name;
3215 }
3216 }
3217 else if (asect->compress_status == COMPRESS_SECTION_DONE)
0ce398f1 3218 {
f6fe1ccd
L
3219 /* PR binutils/18087: Compression does not always make a
3220 section smaller. So only rename the section when
3221 compression has actually taken place. If input section
3222 name is .zdebug_*, we should never compress it again. */
3223 char *new_name = convert_debug_to_zdebug (abfd, name);
0ce398f1
L
3224 if (new_name == NULL)
3225 {
0a1b45a2 3226 arg->failed = true;
0ce398f1
L
3227 return;
3228 }
f6fe1ccd
L
3229 BFD_ASSERT (name[1] != 'z');
3230 name = new_name;
0ce398f1
L
3231 }
3232 }
3233
3e19fb8f
L
3234 if (delay_st_name_p)
3235 this_hdr->sh_name = (unsigned int) -1;
3236 else
252b5132 3237 {
3e19fb8f
L
3238 this_hdr->sh_name
3239 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
0a1b45a2 3240 name, false);
3e19fb8f
L
3241 if (this_hdr->sh_name == (unsigned int) -1)
3242 {
0a1b45a2 3243 arg->failed = true;
3e19fb8f
L
3244 return;
3245 }
252b5132
RH
3246 }
3247
a4d8e49b 3248 /* Don't clear sh_flags. Assembler may set additional bits. */
252b5132
RH
3249
3250 if ((asect->flags & SEC_ALLOC) != 0
3251 || asect->user_set_vma)
502794d4 3252 this_hdr->sh_addr = asect->vma * bfd_octets_per_byte (abfd, asect);
252b5132
RH
3253 else
3254 this_hdr->sh_addr = 0;
3255
3256 this_hdr->sh_offset = 0;
eea6121a 3257 this_hdr->sh_size = asect->size;
252b5132 3258 this_hdr->sh_link = 0;
c86934ce
NC
3259 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3260 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3261 {
4eca0228 3262 _bfd_error_handler
695344c0 3263 /* xgettext:c-format */
9793eb77 3264 (_("%pB: error: alignment power %d of section `%pA' is too big"),
c08bb8dd 3265 abfd, asect->alignment_power, asect);
0a1b45a2 3266 arg->failed = true;
c86934ce
NC
3267 return;
3268 }
233bf4f8
AM
3269 /* Set sh_addralign to the highest power of two given by alignment
3270 consistent with the section VMA. Linker scripts can force VMA. */
3271 mask = ((bfd_vma) 1 << asect->alignment_power) | this_hdr->sh_addr;
3272 this_hdr->sh_addralign = mask & -mask;
252b5132
RH
3273 /* The sh_entsize and sh_info fields may have been set already by
3274 copy_private_section_data. */
3275
3276 this_hdr->bfd_section = asect;
3277 this_hdr->contents = NULL;
3278
3cddba1e
L
3279 /* If the section type is unspecified, we set it based on
3280 asect->flags. */
98ece1b3
AM
3281 if ((asect->flags & SEC_GROUP) != 0)
3282 sh_type = SHT_GROUP;
98ece1b3 3283 else
94be91de 3284 sh_type = bfd_elf_get_default_section_type (asect->flags);
98ece1b3 3285
3cddba1e 3286 if (this_hdr->sh_type == SHT_NULL)
98ece1b3
AM
3287 this_hdr->sh_type = sh_type;
3288 else if (this_hdr->sh_type == SHT_NOBITS
3289 && sh_type == SHT_PROGBITS
3290 && (asect->flags & SEC_ALLOC) != 0)
3cddba1e 3291 {
98ece1b3
AM
3292 /* Warn if we are changing a NOBITS section to PROGBITS, but
3293 allow the link to proceed. This can happen when users link
3294 non-bss input sections to bss output sections, or emit data
3295 to a bss output section via a linker script. */
4eca0228 3296 _bfd_error_handler
871b3ab2 3297 (_("warning: section `%pA' type changed to PROGBITS"), asect);
98ece1b3 3298 this_hdr->sh_type = sh_type;
3cddba1e
L
3299 }
3300
2f89ff8d 3301 switch (this_hdr->sh_type)
252b5132 3302 {
2f89ff8d 3303 default:
2f89ff8d
L
3304 break;
3305
3306 case SHT_STRTAB:
2f89ff8d
L
3307 case SHT_NOTE:
3308 case SHT_NOBITS:
3309 case SHT_PROGBITS:
3310 break;
606851fb
AM
3311
3312 case SHT_INIT_ARRAY:
3313 case SHT_FINI_ARRAY:
3314 case SHT_PREINIT_ARRAY:
3315 this_hdr->sh_entsize = bed->s->arch_size / 8;
3316 break;
2f89ff8d
L
3317
3318 case SHT_HASH:
c7ac6ff8 3319 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2f89ff8d 3320 break;
5de3bf90 3321
2f89ff8d 3322 case SHT_DYNSYM:
252b5132 3323 this_hdr->sh_entsize = bed->s->sizeof_sym;
2f89ff8d
L
3324 break;
3325
3326 case SHT_DYNAMIC:
252b5132 3327 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2f89ff8d
L
3328 break;
3329
3330 case SHT_RELA:
3331 if (get_elf_backend_data (abfd)->may_use_rela_p)
3332 this_hdr->sh_entsize = bed->s->sizeof_rela;
3333 break;
3334
3335 case SHT_REL:
3336 if (get_elf_backend_data (abfd)->may_use_rel_p)
3337 this_hdr->sh_entsize = bed->s->sizeof_rel;
3338 break;
3339
3340 case SHT_GNU_versym:
252b5132 3341 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2f89ff8d
L
3342 break;
3343
3344 case SHT_GNU_verdef:
252b5132
RH
3345 this_hdr->sh_entsize = 0;
3346 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3347 cverdefs. The linker will set cverdefs, but sh_info will be
3348 zero. */
252b5132
RH
3349 if (this_hdr->sh_info == 0)
3350 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3351 else
3352 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3353 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2f89ff8d
L
3354 break;
3355
3356 case SHT_GNU_verneed:
252b5132
RH
3357 this_hdr->sh_entsize = 0;
3358 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3359 cverrefs. The linker will set cverrefs, but sh_info will be
3360 zero. */
252b5132
RH
3361 if (this_hdr->sh_info == 0)
3362 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3363 else
3364 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3365 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2f89ff8d
L
3366 break;
3367
3368 case SHT_GROUP:
1783205a 3369 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
2f89ff8d 3370 break;
fdc90cb4
JJ
3371
3372 case SHT_GNU_HASH:
3373 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3374 break;
dbb410c3 3375 }
252b5132
RH
3376
3377 if ((asect->flags & SEC_ALLOC) != 0)
3378 this_hdr->sh_flags |= SHF_ALLOC;
3379 if ((asect->flags & SEC_READONLY) == 0)
3380 this_hdr->sh_flags |= SHF_WRITE;
3381 if ((asect->flags & SEC_CODE) != 0)
3382 this_hdr->sh_flags |= SHF_EXECINSTR;
f5fa8ca2
JJ
3383 if ((asect->flags & SEC_MERGE) != 0)
3384 {
3385 this_hdr->sh_flags |= SHF_MERGE;
3386 this_hdr->sh_entsize = asect->entsize;
f5fa8ca2 3387 }
84865015
NC
3388 if ((asect->flags & SEC_STRINGS) != 0)
3389 this_hdr->sh_flags |= SHF_STRINGS;
1126897b 3390 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
dbb410c3 3391 this_hdr->sh_flags |= SHF_GROUP;
13ae64f3 3392 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
704afa60
JJ
3393 {
3394 this_hdr->sh_flags |= SHF_TLS;
3a800eb9
AM
3395 if (asect->size == 0
3396 && (asect->flags & SEC_HAS_CONTENTS) == 0)
704afa60 3397 {
3a800eb9 3398 struct bfd_link_order *o = asect->map_tail.link_order;
b34976b6 3399
704afa60 3400 this_hdr->sh_size = 0;
3a800eb9
AM
3401 if (o != NULL)
3402 {
704afa60 3403 this_hdr->sh_size = o->offset + o->size;
3a800eb9
AM
3404 if (this_hdr->sh_size != 0)
3405 this_hdr->sh_type = SHT_NOBITS;
3406 }
704afa60
JJ
3407 }
3408 }
18ae9cc1
L
3409 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3410 this_hdr->sh_flags |= SHF_EXCLUDE;
252b5132 3411
d4730f92
BS
3412 /* If the section has relocs, set up a section header for the
3413 SHT_REL[A] section. If two relocation sections are required for
3414 this section, it is up to the processor-specific back-end to
3415 create the other. */
3416 if ((asect->flags & SEC_RELOC) != 0)
3417 {
3418 /* When doing a relocatable link, create both REL and RELA sections if
3419 needed. */
3420 if (arg->link_info
3421 /* Do the normal setup if we wouldn't create any sections here. */
3422 && esd->rel.count + esd->rela.count > 0
0e1862bb
L
3423 && (bfd_link_relocatable (arg->link_info)
3424 || arg->link_info->emitrelocations))
d4730f92
BS
3425 {
3426 if (esd->rel.count && esd->rel.hdr == NULL
28e07a05 3427 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
0a1b45a2 3428 false, delay_st_name_p))
d4730f92 3429 {
0a1b45a2 3430 arg->failed = true;
d4730f92
BS
3431 return;
3432 }
3433 if (esd->rela.count && esd->rela.hdr == NULL
28e07a05 3434 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
0a1b45a2 3435 true, delay_st_name_p))
d4730f92 3436 {
0a1b45a2 3437 arg->failed = true;
d4730f92
BS
3438 return;
3439 }
3440 }
3441 else if (!_bfd_elf_init_reloc_shdr (abfd,
3442 (asect->use_rela_p
3443 ? &esd->rela : &esd->rel),
f6fe1ccd 3444 name,
3e19fb8f
L
3445 asect->use_rela_p,
3446 delay_st_name_p))
db4677b8 3447 {
0a1b45a2 3448 arg->failed = true;
db4677b8
AM
3449 return;
3450 }
d4730f92
BS
3451 }
3452
252b5132 3453 /* Check for processor-specific section types. */
0414f35b 3454 sh_type = this_hdr->sh_type;
e1fddb6b
AO
3455 if (bed->elf_backend_fake_sections
3456 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
db4677b8 3457 {
0a1b45a2 3458 arg->failed = true;
db4677b8
AM
3459 return;
3460 }
252b5132 3461
42bb2e33 3462 if (sh_type == SHT_NOBITS && asect->size != 0)
0414f35b
AM
3463 {
3464 /* Don't change the header type from NOBITS if we are being
42bb2e33 3465 called for objcopy --only-keep-debug. */
0414f35b
AM
3466 this_hdr->sh_type = sh_type;
3467 }
252b5132
RH
3468}
3469
bcacc0f5
AM
3470/* Fill in the contents of a SHT_GROUP section. Called from
3471 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3472 when ELF targets use the generic linker, ld. Called for ld -r
3473 from bfd_elf_final_link. */
dbb410c3 3474
1126897b 3475void
217aa764 3476bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
dbb410c3 3477{
0a1b45a2 3478 bool *failedptr = (bool *) failedptrarg;
9dce4196 3479 asection *elt, *first;
dbb410c3 3480 unsigned char *loc;
0a1b45a2 3481 bool gas;
dbb410c3 3482
7e4111ad
L
3483 /* Ignore linker created group section. See elfNN_ia64_object_p in
3484 elfxx-ia64.c. */
ce5aecf8
AM
3485 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3486 || sec->size == 0
dbb410c3
AM
3487 || *failedptr)
3488 return;
3489
bcacc0f5
AM
3490 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3491 {
3492 unsigned long symindx = 0;
3493
3494 /* elf_group_id will have been set up by objcopy and the
3495 generic linker. */
3496 if (elf_group_id (sec) != NULL)
3497 symindx = elf_group_id (sec)->udata.i;
1126897b 3498
bcacc0f5
AM
3499 if (symindx == 0)
3500 {
3501 /* If called from the assembler, swap_out_syms will have set up
6a541707
NC
3502 elf_section_syms.
3503 PR 25699: A corrupt input file could contain bogus group info. */
27e3da31
AM
3504 if (sec->index >= elf_num_section_syms (abfd)
3505 || elf_section_syms (abfd)[sec->index] == NULL)
6a541707 3506 {
0a1b45a2 3507 *failedptr = true;
6a541707
NC
3508 return;
3509 }
bcacc0f5
AM
3510 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3511 }
3512 elf_section_data (sec)->this_hdr.sh_info = symindx;
3513 }
3514 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
1126897b 3515 {
bcacc0f5
AM
3516 /* The ELF backend linker sets sh_info to -2 when the group
3517 signature symbol is global, and thus the index can't be
3518 set until all local symbols are output. */
53720c49
AM
3519 asection *igroup;
3520 struct bfd_elf_section_data *sec_data;
3521 unsigned long symndx;
3522 unsigned long extsymoff;
bcacc0f5
AM
3523 struct elf_link_hash_entry *h;
3524
53720c49
AM
3525 /* The point of this little dance to the first SHF_GROUP section
3526 then back to the SHT_GROUP section is that this gets us to
3527 the SHT_GROUP in the input object. */
3528 igroup = elf_sec_group (elf_next_in_group (sec));
3529 sec_data = elf_section_data (igroup);
3530 symndx = sec_data->this_hdr.sh_info;
3531 extsymoff = 0;
bcacc0f5
AM
3532 if (!elf_bad_symtab (igroup->owner))
3533 {
3534 Elf_Internal_Shdr *symtab_hdr;
3535
3536 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3537 extsymoff = symtab_hdr->sh_info;
3538 }
3539 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3540 while (h->root.type == bfd_link_hash_indirect
3541 || h->root.type == bfd_link_hash_warning)
3542 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3543
3544 elf_section_data (sec)->this_hdr.sh_info = h->indx;
1126897b 3545 }
dbb410c3 3546
1126897b 3547 /* The contents won't be allocated for "ld -r" or objcopy. */
0a1b45a2 3548 gas = true;
dbb410c3
AM
3549 if (sec->contents == NULL)
3550 {
0a1b45a2 3551 gas = false;
a50b1753 3552 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
9dce4196
AM
3553
3554 /* Arrange for the section to be written out. */
3555 elf_section_data (sec)->this_hdr.contents = sec->contents;
dbb410c3
AM
3556 if (sec->contents == NULL)
3557 {
0a1b45a2 3558 *failedptr = true;
dbb410c3
AM
3559 return;
3560 }
3561 }
3562
eea6121a 3563 loc = sec->contents + sec->size;
dbb410c3 3564
9dce4196
AM
3565 /* Get the pointer to the first section in the group that gas
3566 squirreled away here. objcopy arranges for this to be set to the
3567 start of the input section group. */
3568 first = elt = elf_next_in_group (sec);
dbb410c3
AM
3569
3570 /* First element is a flag word. Rest of section is elf section
3571 indices for all the sections of the group. Write them backwards
3572 just to keep the group in the same order as given in .section
3573 directives, not that it matters. */
3574 while (elt != NULL)
3575 {
9dce4196 3576 asection *s;
9dce4196 3577
9dce4196 3578 s = elt;
415f38a6
AM
3579 if (!gas)
3580 s = s->output_section;
3581 if (s != NULL
3582 && !bfd_is_abs_section (s))
01e1a5bc 3583 {
db4677b8 3584 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
28e07a05
AM
3585 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3586
3587 if (elf_sec->rel.hdr != NULL
3588 && (gas
3589 || (input_elf_sec->rel.hdr != NULL
3590 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3591 {
28e07a05 3592 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3593 loc -= 4;
3594 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3595 }
28e07a05
AM
3596 if (elf_sec->rela.hdr != NULL
3597 && (gas
3598 || (input_elf_sec->rela.hdr != NULL
3599 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3600 {
28e07a05 3601 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3602 loc -= 4;
3603 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3604 }
01e1a5bc 3605 loc -= 4;
db4677b8 3606 H_PUT_32 (abfd, elf_sec->this_idx, loc);
01e1a5bc 3607 }
945906ff 3608 elt = elf_next_in_group (elt);
9dce4196
AM
3609 if (elt == first)
3610 break;
dbb410c3
AM
3611 }
3612
7bdf4127
AB
3613 loc -= 4;
3614 BFD_ASSERT (loc == sec->contents);
dbb410c3 3615
9dce4196 3616 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
dbb410c3
AM
3617}
3618
bce964aa
AM
3619/* Given NAME, the name of a relocation section stripped of its
3620 .rel/.rela prefix, return the section in ABFD to which the
3621 relocations apply. */
bd53a53a
L
3622
3623asection *
bce964aa
AM
3624_bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3625{
3626 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3627 section likely apply to .got.plt or .got section. */
3628 if (get_elf_backend_data (abfd)->want_got_plt
3629 && strcmp (name, ".plt") == 0)
3630 {
3631 asection *sec;
3632
3633 name = ".got.plt";
3634 sec = bfd_get_section_by_name (abfd, name);
3635 if (sec != NULL)
3636 return sec;
3637 name = ".got";
3638 }
3639
3640 return bfd_get_section_by_name (abfd, name);
3641}
3642
3643/* Return the section to which RELOC_SEC applies. */
3644
3645static asection *
3646elf_get_reloc_section (asection *reloc_sec)
bd53a53a
L
3647{
3648 const char *name;
3649 unsigned int type;
3650 bfd *abfd;
bce964aa 3651 const struct elf_backend_data *bed;
bd53a53a
L
3652
3653 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3654 if (type != SHT_REL && type != SHT_RELA)
3655 return NULL;
3656
3657 /* We look up the section the relocs apply to by name. */
3658 name = reloc_sec->name;
3f3328b8 3659 if (!startswith (name, ".rel"))
bce964aa
AM
3660 return NULL;
3661 name += 4;
3662 if (type == SHT_RELA && *name++ != 'a')
3663 return NULL;
bd53a53a 3664
bd53a53a 3665 abfd = reloc_sec->owner;
bce964aa
AM
3666 bed = get_elf_backend_data (abfd);
3667 return bed->get_reloc_section (abfd, name);
bd53a53a
L
3668}
3669
252b5132
RH
3670/* Assign all ELF section numbers. The dummy first section is handled here
3671 too. The link/info pointers for the standard section types are filled
67411cbf
AM
3672 in here too, while we're at it. LINK_INFO will be 0 when arriving
3673 here for objcopy, and when using the generic ELF linker. */
252b5132 3674
0a1b45a2 3675static bool
da9f89d4 3676assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
252b5132
RH
3677{
3678 struct elf_obj_tdata *t = elf_tdata (abfd);
3679 asection *sec;
3e19fb8f 3680 unsigned int section_number;
252b5132 3681 Elf_Internal_Shdr **i_shdrp;
47cc2cf5 3682 struct bfd_elf_section_data *d;
0a1b45a2 3683 bool need_symtab;
446f7ed5 3684 size_t amt;
252b5132
RH
3685
3686 section_number = 1;
3687
2b0f7ef9
JJ
3688 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3689
da9f89d4 3690 /* SHT_GROUP sections are in relocatable files only. */
7bdf4127 3691 if (link_info == NULL || !link_info->resolve_section_groups)
252b5132 3692 {
ef53be89 3693 size_t reloc_count = 0;
14f2c699 3694
da9f89d4 3695 /* Put SHT_GROUP sections first. */
04dd1667 3696 for (sec = abfd->sections; sec != NULL; sec = sec->next)
47cc2cf5 3697 {
5daa8fe7 3698 d = elf_section_data (sec);
da9f89d4
L
3699
3700 if (d->this_hdr.sh_type == SHT_GROUP)
08a40648 3701 {
5daa8fe7 3702 if (sec->flags & SEC_LINKER_CREATED)
da9f89d4
L
3703 {
3704 /* Remove the linker created SHT_GROUP sections. */
5daa8fe7 3705 bfd_section_list_remove (abfd, sec);
da9f89d4 3706 abfd->section_count--;
da9f89d4 3707 }
08a40648 3708 else
4fbb74a6 3709 d->this_idx = section_number++;
da9f89d4 3710 }
14f2c699
L
3711
3712 /* Count relocations. */
3713 reloc_count += sec->reloc_count;
47cc2cf5 3714 }
14f2c699
L
3715
3716 /* Clear HAS_RELOC if there are no relocations. */
3717 if (reloc_count == 0)
3718 abfd->flags &= ~HAS_RELOC;
47cc2cf5
PB
3719 }
3720
3721 for (sec = abfd->sections; sec; sec = sec->next)
3722 {
3723 d = elf_section_data (sec);
3724
3725 if (d->this_hdr.sh_type != SHT_GROUP)
4fbb74a6 3726 d->this_idx = section_number++;
3e19fb8f
L
3727 if (d->this_hdr.sh_name != (unsigned int) -1)
3728 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
d4730f92 3729 if (d->rel.hdr)
2b0f7ef9 3730 {
d4730f92 3731 d->rel.idx = section_number++;
3e19fb8f
L
3732 if (d->rel.hdr->sh_name != (unsigned int) -1)
3733 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
2b0f7ef9 3734 }
d4730f92
BS
3735 else
3736 d->rel.idx = 0;
23bc299b 3737
d4730f92 3738 if (d->rela.hdr)
2b0f7ef9 3739 {
d4730f92 3740 d->rela.idx = section_number++;
3e19fb8f
L
3741 if (d->rela.hdr->sh_name != (unsigned int) -1)
3742 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
2b0f7ef9 3743 }
23bc299b 3744 else
d4730f92 3745 d->rela.idx = 0;
252b5132
RH
3746 }
3747
3516e984 3748 need_symtab = (bfd_get_symcount (abfd) > 0
b6d1f70c
AM
3749 || (link_info == NULL
3750 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3751 == HAS_RELOC)));
3516e984 3752 if (need_symtab)
252b5132 3753 {
12bd6957 3754 elf_onesymtab (abfd) = section_number++;
2b0f7ef9 3755 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
4fbb74a6 3756 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
9ad5cbcf 3757 {
7a6e0d89 3758 elf_section_list *entry;
6a40cf0c
NC
3759
3760 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3761
7a6e0d89 3762 entry = bfd_zalloc (abfd, sizeof (*entry));
6a40cf0c
NC
3763 entry->ndx = section_number++;
3764 elf_symtab_shndx_list (abfd) = entry;
3765 entry->hdr.sh_name
9ad5cbcf 3766 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
0a1b45a2 3767 ".symtab_shndx", false);
6a40cf0c 3768 if (entry->hdr.sh_name == (unsigned int) -1)
0a1b45a2 3769 return false;
9ad5cbcf 3770 }
12bd6957 3771 elf_strtab_sec (abfd) = section_number++;
2b0f7ef9 3772 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
252b5132
RH
3773 }
3774
dd905818
NC
3775 elf_shstrtab_sec (abfd) = section_number++;
3776 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3777 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3778
1c52a645
L
3779 if (section_number >= SHN_LORESERVE)
3780 {
695344c0 3781 /* xgettext:c-format */
871b3ab2 3782 _bfd_error_handler (_("%pB: too many sections: %u"),
1c52a645 3783 abfd, section_number);
0a1b45a2 3784 return false;
1c52a645
L
3785 }
3786
9ad5cbcf 3787 elf_numsections (abfd) = section_number;
252b5132
RH
3788 elf_elfheader (abfd)->e_shnum = section_number;
3789
3790 /* Set up the list of section header pointers, in agreement with the
3791 indices. */
446f7ed5
AM
3792 amt = section_number * sizeof (Elf_Internal_Shdr *);
3793 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
252b5132 3794 if (i_shdrp == NULL)
0a1b45a2 3795 return false;
252b5132 3796
a50b1753 3797 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
07d6d2b8 3798 sizeof (Elf_Internal_Shdr));
252b5132
RH
3799 if (i_shdrp[0] == NULL)
3800 {
3801 bfd_release (abfd, i_shdrp);
0a1b45a2 3802 return false;
252b5132 3803 }
252b5132
RH
3804
3805 elf_elfsections (abfd) = i_shdrp;
3806
12bd6957 3807 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3516e984 3808 if (need_symtab)
252b5132 3809 {
12bd6957 3810 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
4fbb74a6 3811 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
9ad5cbcf 3812 {
6a40cf0c
NC
3813 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3814 BFD_ASSERT (entry != NULL);
3815 i_shdrp[entry->ndx] = & entry->hdr;
3816 entry->hdr.sh_link = elf_onesymtab (abfd);
9ad5cbcf 3817 }
12bd6957
AM
3818 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3819 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
252b5132 3820 }
38ce5b11 3821
252b5132
RH
3822 for (sec = abfd->sections; sec; sec = sec->next)
3823 {
252b5132 3824 asection *s;
252b5132 3825
91d6fa6a
NC
3826 d = elf_section_data (sec);
3827
252b5132 3828 i_shdrp[d->this_idx] = &d->this_hdr;
d4730f92
BS
3829 if (d->rel.idx != 0)
3830 i_shdrp[d->rel.idx] = d->rel.hdr;
3831 if (d->rela.idx != 0)
3832 i_shdrp[d->rela.idx] = d->rela.hdr;
252b5132
RH
3833
3834 /* Fill in the sh_link and sh_info fields while we're at it. */
3835
3836 /* sh_link of a reloc section is the section index of the symbol
3837 table. sh_info is the section index of the section to which
3838 the relocation entries apply. */
d4730f92 3839 if (d->rel.idx != 0)
252b5132 3840 {
12bd6957 3841 d->rel.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3842 d->rel.hdr->sh_info = d->this_idx;
9ef5d938 3843 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
252b5132 3844 }
d4730f92 3845 if (d->rela.idx != 0)
23bc299b 3846 {
12bd6957 3847 d->rela.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3848 d->rela.hdr->sh_info = d->this_idx;
9ef5d938 3849 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
23bc299b 3850 }
252b5132 3851
38ce5b11
L
3852 /* We need to set up sh_link for SHF_LINK_ORDER. */
3853 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3854 {
3855 s = elf_linked_to_section (sec);
b71702f1
NC
3856 /* We can now have a NULL linked section pointer.
3857 This happens when the sh_link field is 0, which is done
3858 when a linked to section is discarded but the linking
3859 section has been retained for some reason. */
38ce5b11 3860 if (s)
38ce5b11 3861 {
67411cbf
AM
3862 /* Check discarded linkonce section. */
3863 if (discarded_section (s))
38ce5b11 3864 {
67411cbf
AM
3865 asection *kept;
3866 _bfd_error_handler
3867 /* xgettext:c-format */
3868 (_("%pB: sh_link of section `%pA' points to"
3869 " discarded section `%pA' of `%pB'"),
3870 abfd, d->this_hdr.bfd_section, s, s->owner);
3871 /* Point to the kept section if it has the same
3872 size as the discarded one. */
3873 kept = _bfd_elf_check_kept_section (s, link_info);
3874 if (kept == NULL)
f2876037 3875 {
f2876037 3876 bfd_set_error (bfd_error_bad_value);
0a1b45a2 3877 return false;
f2876037 3878 }
67411cbf
AM
3879 s = kept;
3880 }
3881 /* Handle objcopy. */
3882 else if (s->output_section == NULL)
3883 {
3884 _bfd_error_handler
3885 /* xgettext:c-format */
3886 (_("%pB: sh_link of section `%pA' points to"
3887 " removed section `%pA' of `%pB'"),
3888 abfd, d->this_hdr.bfd_section, s, s->owner);
3889 bfd_set_error (bfd_error_bad_value);
0a1b45a2 3890 return false;
f2876037 3891 }
67411cbf 3892 s = s->output_section;
ccd2ec6a
L
3893 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3894 }
38ce5b11
L
3895 }
3896
252b5132
RH
3897 switch (d->this_hdr.sh_type)
3898 {
3899 case SHT_REL:
3900 case SHT_RELA:
3901 /* A reloc section which we are treating as a normal BFD
3902 section. sh_link is the section index of the symbol
3903 table. sh_info is the section index of the section to
3904 which the relocation entries apply. We assume that an
b6d1f70c
AM
3905 allocated reloc section uses the dynamic symbol table
3906 if there is one. Otherwise we guess the normal symbol
3907 table. FIXME: How can we be sure? */
3908 if (d->this_hdr.sh_link == 0 && (sec->flags & SEC_ALLOC) != 0)
3909 {
3910 s = bfd_get_section_by_name (abfd, ".dynsym");
3911 if (s != NULL)
3912 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3913 }
3914 if (d->this_hdr.sh_link == 0)
3915 d->this_hdr.sh_link = elf_onesymtab (abfd);
252b5132 3916
bce964aa 3917 s = elf_get_reloc_section (sec);
252b5132 3918 if (s != NULL)
9ef5d938
L
3919 {
3920 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3921 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3922 }
252b5132
RH
3923 break;
3924
3925 case SHT_STRTAB:
3926 /* We assume that a section named .stab*str is a stabs
3927 string section. We look for a section with the same name
3928 but without the trailing ``str'', and set its sh_link
3929 field to point to this section. */
08dedd66 3930 if (startswith (sec->name, ".stab")
252b5132
RH
3931 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3932 {
3933 size_t len;
3934 char *alc;
3935
3936 len = strlen (sec->name);
a50b1753 3937 alc = (char *) bfd_malloc (len - 2);
252b5132 3938 if (alc == NULL)
0a1b45a2 3939 return false;
d4c88bbb 3940 memcpy (alc, sec->name, len - 3);
252b5132
RH
3941 alc[len - 3] = '\0';
3942 s = bfd_get_section_by_name (abfd, alc);
3943 free (alc);
3944 if (s != NULL)
3945 {
3946 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3947
3948 /* This is a .stab section. */
34ca5531 3949 elf_section_data (s)->this_hdr.sh_entsize = 12;
252b5132
RH
3950 }
3951 }
3952 break;
3953
3954 case SHT_DYNAMIC:
3955 case SHT_DYNSYM:
3956 case SHT_GNU_verneed:
3957 case SHT_GNU_verdef:
3958 /* sh_link is the section header index of the string table
3959 used for the dynamic entries, or the symbol table, or the
3960 version strings. */
3961 s = bfd_get_section_by_name (abfd, ".dynstr");
3962 if (s != NULL)
3963 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3964 break;
3965
7f1204bb
JJ
3966 case SHT_GNU_LIBLIST:
3967 /* sh_link is the section header index of the prelink library
08a40648
AM
3968 list used for the dynamic entries, or the symbol table, or
3969 the version strings. */
b6d1f70c
AM
3970 s = bfd_get_section_by_name (abfd, ((sec->flags & SEC_ALLOC)
3971 ? ".dynstr" : ".gnu.libstr"));
7f1204bb
JJ
3972 if (s != NULL)
3973 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3974 break;
3975
252b5132 3976 case SHT_HASH:
fdc90cb4 3977 case SHT_GNU_HASH:
252b5132
RH
3978 case SHT_GNU_versym:
3979 /* sh_link is the section header index of the symbol table
3980 this hash table or version table is for. */
3981 s = bfd_get_section_by_name (abfd, ".dynsym");
3982 if (s != NULL)
3983 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3984 break;
dbb410c3
AM
3985
3986 case SHT_GROUP:
12bd6957 3987 d->this_hdr.sh_link = elf_onesymtab (abfd);
252b5132
RH
3988 }
3989 }
3990
3e19fb8f
L
3991 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
3992 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
3993 debug section name from .debug_* to .zdebug_* if needed. */
3994
0a1b45a2 3995 return true;
252b5132
RH
3996}
3997
0a1b45a2 3998static bool
217aa764 3999sym_is_global (bfd *abfd, asymbol *sym)
252b5132
RH
4000{
4001 /* If the backend has a special mapping, use it. */
9c5bfbb7 4002 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764
AM
4003 if (bed->elf_backend_sym_is_global)
4004 return (*bed->elf_backend_sym_is_global) (abfd, sym);
252b5132 4005
e47bf690 4006 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
e6f7f6d1
AM
4007 || bfd_is_und_section (bfd_asymbol_section (sym))
4008 || bfd_is_com_section (bfd_asymbol_section (sym)));
252b5132
RH
4009}
4010
76359541
TP
4011/* Filter global symbols of ABFD to include in the import library. All
4012 SYMCOUNT symbols of ABFD can be examined from their pointers in
4013 SYMS. Pointers of symbols to keep should be stored contiguously at
4014 the beginning of that array.
4015
4016 Returns the number of symbols to keep. */
4017
4018unsigned int
4019_bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4020 asymbol **syms, long symcount)
4021{
4022 long src_count, dst_count = 0;
4023
4024 for (src_count = 0; src_count < symcount; src_count++)
4025 {
4026 asymbol *sym = syms[src_count];
4027 char *name = (char *) bfd_asymbol_name (sym);
4028 struct bfd_link_hash_entry *h;
4029
4030 if (!sym_is_global (abfd, sym))
4031 continue;
4032
0a1b45a2 4033 h = bfd_link_hash_lookup (info->hash, name, false, false, false);
5df1bc57
AM
4034 if (h == NULL)
4035 continue;
76359541
TP
4036 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4037 continue;
76359541
TP
4038 if (h->linker_def || h->ldscript_def)
4039 continue;
4040
4041 syms[dst_count++] = sym;
4042 }
4043
4044 syms[dst_count] = NULL;
4045
4046 return dst_count;
4047}
4048
5372391b 4049/* Don't output section symbols for sections that are not going to be
c6d8cab4 4050 output, that are duplicates or there is no BFD section. */
5372391b 4051
0a1b45a2 4052static bool
5372391b
AM
4053ignore_section_sym (bfd *abfd, asymbol *sym)
4054{
c6d8cab4
L
4055 elf_symbol_type *type_ptr;
4056
db0c309f 4057 if (sym == NULL)
0a1b45a2 4058 return false;
db0c309f 4059
c6d8cab4 4060 if ((sym->flags & BSF_SECTION_SYM) == 0)
0a1b45a2 4061 return false;
c6d8cab4 4062
d1bcae83
L
4063 /* Ignore the section symbol if it isn't used. */
4064 if ((sym->flags & BSF_SECTION_SYM_USED) == 0)
0a1b45a2 4065 return true;
d1bcae83 4066
db0c309f 4067 if (sym->section == NULL)
0a1b45a2 4068 return true;
db0c309f 4069
c1229f84 4070 type_ptr = elf_symbol_from (sym);
c6d8cab4
L
4071 return ((type_ptr != NULL
4072 && type_ptr->internal_elf_sym.st_shndx != 0
4073 && bfd_is_abs_section (sym->section))
4074 || !(sym->section->owner == abfd
db0c309f
NC
4075 || (sym->section->output_section != NULL
4076 && sym->section->output_section->owner == abfd
2633a79c
AM
4077 && sym->section->output_offset == 0)
4078 || bfd_is_abs_section (sym->section)));
5372391b
AM
4079}
4080
2633a79c
AM
4081/* Map symbol from it's internal number to the external number, moving
4082 all local symbols to be at the head of the list. */
4083
0a1b45a2 4084static bool
12bd6957 4085elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
252b5132 4086{
dc810e39 4087 unsigned int symcount = bfd_get_symcount (abfd);
252b5132
RH
4088 asymbol **syms = bfd_get_outsymbols (abfd);
4089 asymbol **sect_syms;
dc810e39
AM
4090 unsigned int num_locals = 0;
4091 unsigned int num_globals = 0;
4092 unsigned int num_locals2 = 0;
4093 unsigned int num_globals2 = 0;
7292b3ac 4094 unsigned int max_index = 0;
dc810e39 4095 unsigned int idx;
252b5132
RH
4096 asection *asect;
4097 asymbol **new_syms;
446f7ed5 4098 size_t amt;
252b5132
RH
4099
4100#ifdef DEBUG
4101 fprintf (stderr, "elf_map_symbols\n");
4102 fflush (stderr);
4103#endif
4104
252b5132
RH
4105 for (asect = abfd->sections; asect; asect = asect->next)
4106 {
4107 if (max_index < asect->index)
4108 max_index = asect->index;
4109 }
4110
4111 max_index++;
446f7ed5
AM
4112 amt = max_index * sizeof (asymbol *);
4113 sect_syms = (asymbol **) bfd_zalloc (abfd, amt);
252b5132 4114 if (sect_syms == NULL)
0a1b45a2 4115 return false;
252b5132 4116 elf_section_syms (abfd) = sect_syms;
4e89ac30 4117 elf_num_section_syms (abfd) = max_index;
252b5132 4118
079e9a2f
AM
4119 /* Init sect_syms entries for any section symbols we have already
4120 decided to output. */
252b5132
RH
4121 for (idx = 0; idx < symcount; idx++)
4122 {
dc810e39 4123 asymbol *sym = syms[idx];
c044fabd 4124
252b5132 4125 if ((sym->flags & BSF_SECTION_SYM) != 0
0f0a5e58 4126 && sym->value == 0
2633a79c
AM
4127 && !ignore_section_sym (abfd, sym)
4128 && !bfd_is_abs_section (sym->section))
252b5132 4129 {
5372391b 4130 asection *sec = sym->section;
252b5132 4131
5372391b
AM
4132 if (sec->owner != abfd)
4133 sec = sec->output_section;
252b5132 4134
5372391b 4135 sect_syms[sec->index] = syms[idx];
252b5132
RH
4136 }
4137 }
4138
252b5132
RH
4139 /* Classify all of the symbols. */
4140 for (idx = 0; idx < symcount; idx++)
4141 {
2633a79c 4142 if (sym_is_global (abfd, syms[idx]))
252b5132 4143 num_globals++;
2633a79c
AM
4144 else if (!ignore_section_sym (abfd, syms[idx]))
4145 num_locals++;
252b5132 4146 }
079e9a2f 4147
5372391b 4148 /* We will be adding a section symbol for each normal BFD section. Most
079e9a2f
AM
4149 sections will already have a section symbol in outsymbols, but
4150 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4151 at least in that case. */
252b5132
RH
4152 for (asect = abfd->sections; asect; asect = asect->next)
4153 {
d1bcae83
L
4154 asymbol *sym = asect->symbol;
4155 /* Don't include ignored section symbols. */
4156 if (!ignore_section_sym (abfd, sym)
4157 && sect_syms[asect->index] == NULL)
252b5132 4158 {
079e9a2f 4159 if (!sym_is_global (abfd, asect->symbol))
252b5132
RH
4160 num_locals++;
4161 else
4162 num_globals++;
252b5132
RH
4163 }
4164 }
4165
4166 /* Now sort the symbols so the local symbols are first. */
446f7ed5
AM
4167 amt = (num_locals + num_globals) * sizeof (asymbol *);
4168 new_syms = (asymbol **) bfd_alloc (abfd, amt);
252b5132 4169 if (new_syms == NULL)
0a1b45a2 4170 return false;
252b5132
RH
4171
4172 for (idx = 0; idx < symcount; idx++)
4173 {
4174 asymbol *sym = syms[idx];
dc810e39 4175 unsigned int i;
252b5132 4176
2633a79c
AM
4177 if (sym_is_global (abfd, sym))
4178 i = num_locals + num_globals2++;
d1bcae83 4179 /* Don't include ignored section symbols. */
2633a79c 4180 else if (!ignore_section_sym (abfd, sym))
252b5132
RH
4181 i = num_locals2++;
4182 else
2633a79c 4183 continue;
252b5132
RH
4184 new_syms[i] = sym;
4185 sym->udata.i = i + 1;
4186 }
4187 for (asect = abfd->sections; asect; asect = asect->next)
4188 {
d1bcae83
L
4189 asymbol *sym = asect->symbol;
4190 if (!ignore_section_sym (abfd, sym)
4191 && sect_syms[asect->index] == NULL)
252b5132 4192 {
dc810e39 4193 unsigned int i;
252b5132 4194
079e9a2f 4195 sect_syms[asect->index] = sym;
252b5132
RH
4196 if (!sym_is_global (abfd, sym))
4197 i = num_locals2++;
4198 else
4199 i = num_locals + num_globals2++;
4200 new_syms[i] = sym;
4201 sym->udata.i = i + 1;
4202 }
4203 }
4204
4205 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4206
12bd6957 4207 *pnum_locals = num_locals;
0a1b45a2 4208 return true;
252b5132
RH
4209}
4210
4211/* Align to the maximum file alignment that could be required for any
4212 ELF data structure. */
4213
268b6b39 4214static inline file_ptr
217aa764 4215align_file_position (file_ptr off, int align)
252b5132
RH
4216{
4217 return (off + align - 1) & ~(align - 1);
4218}
4219
4220/* Assign a file position to a section, optionally aligning to the
4221 required section alignment. */
4222
217aa764
AM
4223file_ptr
4224_bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4225 file_ptr offset,
0a1b45a2 4226 bool align)
252b5132 4227{
72de5009
AM
4228 if (align && i_shdrp->sh_addralign > 1)
4229 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
252b5132
RH
4230 i_shdrp->sh_offset = offset;
4231 if (i_shdrp->bfd_section != NULL)
4232 i_shdrp->bfd_section->filepos = offset;
4233 if (i_shdrp->sh_type != SHT_NOBITS)
4234 offset += i_shdrp->sh_size;
4235 return offset;
4236}
4237
4238/* Compute the file positions we are going to put the sections at, and
4239 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4240 is not NULL, this is being called by the ELF backend linker. */
4241
0a1b45a2 4242bool
217aa764
AM
4243_bfd_elf_compute_section_file_positions (bfd *abfd,
4244 struct bfd_link_info *link_info)
252b5132 4245{
9c5bfbb7 4246 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 4247 struct fake_section_arg fsargs;
0a1b45a2 4248 bool failed;
ef10c3ac 4249 struct elf_strtab_hash *strtab = NULL;
252b5132 4250 Elf_Internal_Shdr *shstrtab_hdr;
0a1b45a2 4251 bool need_symtab;
252b5132
RH
4252
4253 if (abfd->output_has_begun)
0a1b45a2 4254 return true;
252b5132
RH
4255
4256 /* Do any elf backend specific processing first. */
4257 if (bed->elf_backend_begin_write_processing)
4258 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4259
ed7e9d0b 4260 if (!(*bed->elf_backend_init_file_header) (abfd, link_info))
0a1b45a2 4261 return false;
252b5132 4262
0a1b45a2 4263 fsargs.failed = false;
d4730f92
BS
4264 fsargs.link_info = link_info;
4265 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4266 if (fsargs.failed)
0a1b45a2 4267 return false;
252b5132 4268
da9f89d4 4269 if (!assign_section_numbers (abfd, link_info))
0a1b45a2 4270 return false;
252b5132
RH
4271
4272 /* The backend linker builds symbol table information itself. */
3516e984
L
4273 need_symtab = (link_info == NULL
4274 && (bfd_get_symcount (abfd) > 0
4275 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4276 == HAS_RELOC)));
4277 if (need_symtab)
252b5132
RH
4278 {
4279 /* Non-zero if doing a relocatable link. */
4280 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4281
3d16b64e 4282 if (! swap_out_syms (abfd, &strtab, relocatable_p, link_info))
0a1b45a2 4283 return false;
252b5132
RH
4284 }
4285
0a1b45a2 4286 failed = false;
1126897b 4287 if (link_info == NULL)
dbb410c3 4288 {
1126897b 4289 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
dbb410c3 4290 if (failed)
0a1b45a2 4291 return false;
dbb410c3
AM
4292 }
4293
252b5132 4294 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
ed7e9d0b 4295 /* sh_name was set in init_file_header. */
252b5132 4296 shstrtab_hdr->sh_type = SHT_STRTAB;
84865015 4297 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
252b5132 4298 shstrtab_hdr->sh_addr = 0;
946748d5 4299 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4300 shstrtab_hdr->sh_entsize = 0;
4301 shstrtab_hdr->sh_link = 0;
4302 shstrtab_hdr->sh_info = 0;
3e19fb8f 4303 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4304 shstrtab_hdr->sh_addralign = 1;
4305
c84fca4d 4306 if (!assign_file_positions_except_relocs (abfd, link_info))
0a1b45a2 4307 return false;
252b5132 4308
3516e984 4309 if (need_symtab)
252b5132
RH
4310 {
4311 file_ptr off;
4312 Elf_Internal_Shdr *hdr;
4313
12bd6957 4314 off = elf_next_file_pos (abfd);
252b5132 4315
6a40cf0c 4316 hdr = & elf_symtab_hdr (abfd);
0a1b45a2 4317 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
252b5132 4318
6a40cf0c
NC
4319 if (elf_symtab_shndx_list (abfd) != NULL)
4320 {
4321 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4322 if (hdr->sh_size != 0)
0a1b45a2 4323 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
6a40cf0c
NC
4324 /* FIXME: What about other symtab_shndx sections in the list ? */
4325 }
9ad5cbcf 4326
252b5132 4327 hdr = &elf_tdata (abfd)->strtab_hdr;
0a1b45a2 4328 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
252b5132 4329
12bd6957 4330 elf_next_file_pos (abfd) = off;
252b5132
RH
4331
4332 /* Now that we know where the .strtab section goes, write it
08a40648 4333 out. */
252b5132 4334 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 4335 || ! _bfd_elf_strtab_emit (abfd, strtab))
0a1b45a2 4336 return false;
ef10c3ac 4337 _bfd_elf_strtab_free (strtab);
252b5132
RH
4338 }
4339
0a1b45a2 4340 abfd->output_has_begun = true;
252b5132 4341
0a1b45a2 4342 return true;
252b5132
RH
4343}
4344
8ded5a0f
AM
4345/* Make an initial estimate of the size of the program header. If we
4346 get the number wrong here, we'll redo section placement. */
4347
4348static bfd_size_type
4349get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4350{
4351 size_t segs;
4352 asection *s;
2b05f1b7 4353 const struct elf_backend_data *bed;
8ded5a0f
AM
4354
4355 /* Assume we will need exactly two PT_LOAD segments: one for text
4356 and one for data. */
4357 segs = 2;
4358
4359 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4360 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4361 {
4362 /* If we have a loadable interpreter section, we need a
4363 PT_INTERP segment. In this case, assume we also need a
4364 PT_PHDR segment, although that may not be true for all
4365 targets. */
e9a38e0f 4366 segs += 2;
8ded5a0f
AM
4367 }
4368
4369 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4370 {
4371 /* We need a PT_DYNAMIC segment. */
4372 ++segs;
f210dcff 4373 }
08a40648 4374
ceae84aa 4375 if (info != NULL && info->relro)
f210dcff
L
4376 {
4377 /* We need a PT_GNU_RELRO segment. */
4378 ++segs;
8ded5a0f
AM
4379 }
4380
12bd6957 4381 if (elf_eh_frame_hdr (abfd))
8ded5a0f
AM
4382 {
4383 /* We need a PT_GNU_EH_FRAME segment. */
4384 ++segs;
4385 }
4386
12bd6957 4387 if (elf_stack_flags (abfd))
8ded5a0f 4388 {
2b05f1b7
L
4389 /* We need a PT_GNU_STACK segment. */
4390 ++segs;
4391 }
94b11780 4392
0a59decb
L
4393 s = bfd_get_section_by_name (abfd,
4394 NOTE_GNU_PROPERTY_SECTION_NAME);
4395 if (s != NULL && s->size != 0)
4396 {
4397 /* We need a PT_GNU_PROPERTY segment. */
4398 ++segs;
4399 }
4400
2b05f1b7
L
4401 for (s = abfd->sections; s != NULL; s = s->next)
4402 {
8ded5a0f 4403 if ((s->flags & SEC_LOAD) != 0
23e463ed 4404 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 4405 {
23e463ed 4406 unsigned int alignment_power;
8ded5a0f
AM
4407 /* We need a PT_NOTE segment. */
4408 ++segs;
23e463ed
L
4409 /* Try to create just one PT_NOTE segment for all adjacent
4410 loadable SHT_NOTE sections. gABI requires that within a
4411 PT_NOTE segment (and also inside of each SHT_NOTE section)
4412 each note should have the same alignment. So we check
4413 whether the sections are correctly aligned. */
4414 alignment_power = s->alignment_power;
4415 while (s->next != NULL
4416 && s->next->alignment_power == alignment_power
4417 && (s->next->flags & SEC_LOAD) != 0
4418 && elf_section_type (s->next) == SHT_NOTE)
4419 s = s->next;
8ded5a0f
AM
4420 }
4421 }
4422
4423 for (s = abfd->sections; s != NULL; s = s->next)
4424 {
4425 if (s->flags & SEC_THREAD_LOCAL)
4426 {
4427 /* We need a PT_TLS segment. */
4428 ++segs;
4429 break;
4430 }
4431 }
4432
2b05f1b7 4433 bed = get_elf_backend_data (abfd);
a91e1603 4434
df3a023b
AM
4435 if ((abfd->flags & D_PAGED) != 0
4436 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4437 {
4438 /* Add a PT_GNU_MBIND segment for each mbind section. */
c410035d
AM
4439 bfd_vma commonpagesize;
4440 unsigned int page_align_power;
4441
4442 if (info != NULL)
4443 commonpagesize = info->commonpagesize;
4444 else
4445 commonpagesize = bed->commonpagesize;
4446 page_align_power = bfd_log2 (commonpagesize);
df3a023b
AM
4447 for (s = abfd->sections; s != NULL; s = s->next)
4448 if (elf_section_flags (s) & SHF_GNU_MBIND)
4449 {
4450 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4451 {
4452 _bfd_error_handler
4453 /* xgettext:c-format */
4454 (_("%pB: GNU_MBIND section `%pA' has invalid "
4455 "sh_info field: %d"),
4456 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4457 continue;
4458 }
4459 /* Align mbind section to page size. */
4460 if (s->alignment_power < page_align_power)
4461 s->alignment_power = page_align_power;
4462 segs ++;
4463 }
4464 }
4465
4466 /* Let the backend count up any program headers it might need. */
4467 if (bed->elf_backend_additional_program_headers)
8ded5a0f
AM
4468 {
4469 int a;
4470
4471 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4472 if (a == -1)
4473 abort ();
4474 segs += a;
4475 }
4476
4477 return segs * bed->s->sizeof_phdr;
4478}
4479
2ea37f1c
NC
4480/* Find the segment that contains the output_section of section. */
4481
4482Elf_Internal_Phdr *
4483_bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4484{
4485 struct elf_segment_map *m;
4486 Elf_Internal_Phdr *p;
4487
12bd6957 4488 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
2ea37f1c
NC
4489 m != NULL;
4490 m = m->next, p++)
4491 {
4492 int i;
4493
4494 for (i = m->count - 1; i >= 0; i--)
4495 if (m->sections[i] == section)
4496 return p;
4497 }
4498
4499 return NULL;
4500}
4501
252b5132
RH
4502/* Create a mapping from a set of sections to a program segment. */
4503
217aa764
AM
4504static struct elf_segment_map *
4505make_mapping (bfd *abfd,
4506 asection **sections,
4507 unsigned int from,
4508 unsigned int to,
0a1b45a2 4509 bool phdr)
252b5132
RH
4510{
4511 struct elf_segment_map *m;
4512 unsigned int i;
4513 asection **hdrpp;
986f0783 4514 size_t amt;
252b5132 4515
00bee008
AM
4516 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4517 amt += (to - from) * sizeof (asection *);
a50b1753 4518 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
4519 if (m == NULL)
4520 return NULL;
4521 m->next = NULL;
4522 m->p_type = PT_LOAD;
4523 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4524 m->sections[i - from] = *hdrpp;
4525 m->count = to - from;
4526
4527 if (from == 0 && phdr)
4528 {
4529 /* Include the headers in the first PT_LOAD segment. */
4530 m->includes_filehdr = 1;
4531 m->includes_phdrs = 1;
4532 }
4533
4534 return m;
4535}
4536
229fcec5
MM
4537/* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4538 on failure. */
4539
4540struct elf_segment_map *
4541_bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4542{
4543 struct elf_segment_map *m;
4544
a50b1753 4545 m = (struct elf_segment_map *) bfd_zalloc (abfd,
07d6d2b8 4546 sizeof (struct elf_segment_map));
229fcec5
MM
4547 if (m == NULL)
4548 return NULL;
4549 m->next = NULL;
4550 m->p_type = PT_DYNAMIC;
4551 m->count = 1;
4552 m->sections[0] = dynsec;
08a40648 4553
229fcec5
MM
4554 return m;
4555}
4556
8ded5a0f 4557/* Possibly add or remove segments from the segment map. */
252b5132 4558
0a1b45a2 4559static bool
3dea8fca
AM
4560elf_modify_segment_map (bfd *abfd,
4561 struct bfd_link_info *info,
0a1b45a2 4562 bool remove_empty_load)
252b5132 4563{
252e386e 4564 struct elf_segment_map **m;
8ded5a0f 4565 const struct elf_backend_data *bed;
252b5132 4566
8ded5a0f
AM
4567 /* The placement algorithm assumes that non allocated sections are
4568 not in PT_LOAD segments. We ensure this here by removing such
4569 sections from the segment map. We also remove excluded
252e386e
AM
4570 sections. Finally, any PT_LOAD segment without sections is
4571 removed. */
12bd6957 4572 m = &elf_seg_map (abfd);
252e386e 4573 while (*m)
8ded5a0f
AM
4574 {
4575 unsigned int i, new_count;
252b5132 4576
252e386e 4577 for (new_count = 0, i = 0; i < (*m)->count; i++)
8ded5a0f 4578 {
252e386e
AM
4579 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4580 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4581 || (*m)->p_type != PT_LOAD))
8ded5a0f 4582 {
252e386e
AM
4583 (*m)->sections[new_count] = (*m)->sections[i];
4584 new_count++;
8ded5a0f
AM
4585 }
4586 }
252e386e 4587 (*m)->count = new_count;
252b5132 4588
1a9ccd70
NC
4589 if (remove_empty_load
4590 && (*m)->p_type == PT_LOAD
4591 && (*m)->count == 0
4592 && !(*m)->includes_phdrs)
252e386e
AM
4593 *m = (*m)->next;
4594 else
4595 m = &(*m)->next;
8ded5a0f 4596 }
252b5132 4597
8ded5a0f
AM
4598 bed = get_elf_backend_data (abfd);
4599 if (bed->elf_backend_modify_segment_map != NULL)
252b5132 4600 {
252e386e 4601 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
0a1b45a2 4602 return false;
252b5132 4603 }
252b5132 4604
0a1b45a2 4605 return true;
8ded5a0f 4606}
252b5132 4607
dbc88fc1
AM
4608#define IS_TBSS(s) \
4609 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4610
8ded5a0f 4611/* Set up a mapping from BFD sections to program segments. */
252b5132 4612
0a1b45a2 4613bool
8ded5a0f
AM
4614_bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4615{
4616 unsigned int count;
4617 struct elf_segment_map *m;
4618 asection **sections = NULL;
4619 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
0a1b45a2 4620 bool no_user_phdrs;
252b5132 4621
12bd6957 4622 no_user_phdrs = elf_seg_map (abfd) == NULL;
d324f6d6
RM
4623
4624 if (info != NULL)
4625 info->user_phdrs = !no_user_phdrs;
4626
3dea8fca 4627 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
252b5132 4628 {
8ded5a0f
AM
4629 asection *s;
4630 unsigned int i;
4631 struct elf_segment_map *mfirst;
4632 struct elf_segment_map **pm;
4633 asection *last_hdr;
4634 bfd_vma last_size;
00bee008 4635 unsigned int hdr_index;
8ded5a0f
AM
4636 bfd_vma maxpagesize;
4637 asection **hdrpp;
0a1b45a2
AM
4638 bool phdr_in_segment;
4639 bool writable;
4640 bool executable;
446f7ed5 4641 unsigned int tls_count = 0;
8ded5a0f 4642 asection *first_tls = NULL;
a91e1603 4643 asection *first_mbind = NULL;
8ded5a0f 4644 asection *dynsec, *eh_frame_hdr;
446f7ed5 4645 size_t amt;
66631823
CE
4646 bfd_vma addr_mask, wrap_to = 0; /* Bytes. */
4647 bfd_size_type phdr_size; /* Octets/bytes. */
502794d4 4648 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132 4649
8ded5a0f 4650 /* Select the allocated sections, and sort them. */
252b5132 4651
446f7ed5
AM
4652 amt = bfd_count_sections (abfd) * sizeof (asection *);
4653 sections = (asection **) bfd_malloc (amt);
8ded5a0f 4654 if (sections == NULL)
252b5132 4655 goto error_return;
252b5132 4656
8d06853e
AM
4657 /* Calculate top address, avoiding undefined behaviour of shift
4658 left operator when shift count is equal to size of type
4659 being shifted. */
4660 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4661 addr_mask = (addr_mask << 1) + 1;
4662
8ded5a0f
AM
4663 i = 0;
4664 for (s = abfd->sections; s != NULL; s = s->next)
4665 {
4666 if ((s->flags & SEC_ALLOC) != 0)
4667 {
48db3297
AM
4668 /* target_index is unused until bfd_elf_final_link
4669 starts output of section symbols. Use it to make
4670 qsort stable. */
4671 s->target_index = i;
8ded5a0f
AM
4672 sections[i] = s;
4673 ++i;
8d06853e 4674 /* A wrapping section potentially clashes with header. */
66631823
CE
4675 if (((s->lma + s->size / opb) & addr_mask) < (s->lma & addr_mask))
4676 wrap_to = (s->lma + s->size / opb) & addr_mask;
8ded5a0f
AM
4677 }
4678 }
4679 BFD_ASSERT (i <= bfd_count_sections (abfd));
4680 count = i;
252b5132 4681
8ded5a0f 4682 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
252b5132 4683
64029e93
AM
4684 phdr_size = elf_program_header_size (abfd);
4685 if (phdr_size == (bfd_size_type) -1)
4686 phdr_size = get_program_header_size (abfd, info);
4687 phdr_size += bed->s->sizeof_ehdr;
502794d4
CE
4688 /* phdr_size is compared to LMA values which are in bytes. */
4689 phdr_size /= opb;
c410035d
AM
4690 if (info != NULL)
4691 maxpagesize = info->maxpagesize;
4692 else
4693 maxpagesize = bed->maxpagesize;
64029e93
AM
4694 if (maxpagesize == 0)
4695 maxpagesize = 1;
4696 phdr_in_segment = info != NULL && info->load_phdrs;
4697 if (count != 0
4698 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4699 >= (phdr_size & (maxpagesize - 1))))
4700 /* For compatibility with old scripts that may not be using
4701 SIZEOF_HEADERS, add headers when it looks like space has
4702 been left for them. */
0a1b45a2 4703 phdr_in_segment = true;
252b5132 4704
64029e93 4705 /* Build the mapping. */
8ded5a0f
AM
4706 mfirst = NULL;
4707 pm = &mfirst;
252b5132 4708
8ded5a0f
AM
4709 /* If we have a .interp section, then create a PT_PHDR segment for
4710 the program headers and a PT_INTERP segment for the .interp
4711 section. */
4712 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4713 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4714 {
4715 amt = sizeof (struct elf_segment_map);
a50b1753 4716 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4717 if (m == NULL)
4718 goto error_return;
4719 m->next = NULL;
4720 m->p_type = PT_PHDR;
f882209d 4721 m->p_flags = PF_R;
8ded5a0f
AM
4722 m->p_flags_valid = 1;
4723 m->includes_phdrs = 1;
0a1b45a2 4724 phdr_in_segment = true;
8ded5a0f
AM
4725 *pm = m;
4726 pm = &m->next;
252b5132 4727
8ded5a0f 4728 amt = sizeof (struct elf_segment_map);
a50b1753 4729 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4730 if (m == NULL)
4731 goto error_return;
4732 m->next = NULL;
4733 m->p_type = PT_INTERP;
4734 m->count = 1;
4735 m->sections[0] = s;
4736
4737 *pm = m;
4738 pm = &m->next;
252b5132 4739 }
8ded5a0f
AM
4740
4741 /* Look through the sections. We put sections in the same program
4742 segment when the start of the second section can be placed within
4743 a few bytes of the end of the first section. */
4744 last_hdr = NULL;
4745 last_size = 0;
00bee008 4746 hdr_index = 0;
0a1b45a2
AM
4747 writable = false;
4748 executable = false;
8ded5a0f
AM
4749 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4750 if (dynsec != NULL
4751 && (dynsec->flags & SEC_LOAD) == 0)
4752 dynsec = NULL;
4753
64029e93 4754 if ((abfd->flags & D_PAGED) == 0)
0a1b45a2 4755 phdr_in_segment = false;
64029e93 4756
8ded5a0f
AM
4757 /* Deal with -Ttext or something similar such that the first section
4758 is not adjacent to the program headers. This is an
4759 approximation, since at this point we don't know exactly how many
4760 program headers we will need. */
64029e93 4761 if (phdr_in_segment && count > 0)
252b5132 4762 {
66631823 4763 bfd_vma phdr_lma; /* Bytes. */
0a1b45a2 4764 bool separate_phdr = false;
64029e93
AM
4765
4766 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4767 if (info != NULL
4768 && info->separate_code
4769 && (sections[0]->flags & SEC_CODE) != 0)
1a9ccd70 4770 {
64029e93
AM
4771 /* If data sections should be separate from code and
4772 thus not executable, and the first section is
4773 executable then put the file and program headers in
4774 their own PT_LOAD. */
0a1b45a2 4775 separate_phdr = true;
64029e93
AM
4776 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4777 == (sections[0]->lma & addr_mask & -maxpagesize)))
4778 {
4779 /* The file and program headers are currently on the
4780 same page as the first section. Put them on the
4781 previous page if we can. */
4782 if (phdr_lma >= maxpagesize)
4783 phdr_lma -= maxpagesize;
4784 else
0a1b45a2 4785 separate_phdr = false;
64029e93
AM
4786 }
4787 }
4788 if ((sections[0]->lma & addr_mask) < phdr_lma
4789 || (sections[0]->lma & addr_mask) < phdr_size)
4790 /* If file and program headers would be placed at the end
4791 of memory then it's probably better to omit them. */
0a1b45a2 4792 phdr_in_segment = false;
64029e93
AM
4793 else if (phdr_lma < wrap_to)
4794 /* If a section wraps around to where we'll be placing
4795 file and program headers, then the headers will be
4796 overwritten. */
0a1b45a2 4797 phdr_in_segment = false;
64029e93
AM
4798 else if (separate_phdr)
4799 {
4800 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4801 if (m == NULL)
4802 goto error_return;
66631823 4803 m->p_paddr = phdr_lma * opb;
64029e93
AM
4804 m->p_vaddr_offset
4805 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4806 m->p_paddr_valid = 1;
4807 *pm = m;
4808 pm = &m->next;
0a1b45a2 4809 phdr_in_segment = false;
1a9ccd70 4810 }
252b5132
RH
4811 }
4812
8ded5a0f 4813 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
252b5132 4814 {
8ded5a0f 4815 asection *hdr;
0a1b45a2 4816 bool new_segment;
8ded5a0f
AM
4817
4818 hdr = *hdrpp;
4819
4820 /* See if this section and the last one will fit in the same
4821 segment. */
4822
4823 if (last_hdr == NULL)
4824 {
4825 /* If we don't have a segment yet, then we don't need a new
4826 one (we build the last one after this loop). */
0a1b45a2 4827 new_segment = false;
8ded5a0f
AM
4828 }
4829 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4830 {
4831 /* If this section has a different relation between the
4832 virtual address and the load address, then we need a new
4833 segment. */
0a1b45a2 4834 new_segment = true;
8ded5a0f 4835 }
b5599592
AM
4836 else if (hdr->lma < last_hdr->lma + last_size
4837 || last_hdr->lma + last_size < last_hdr->lma)
4838 {
4839 /* If this section has a load address that makes it overlap
4840 the previous section, then we need a new segment. */
0a1b45a2 4841 new_segment = true;
b5599592 4842 }
76cb3a89
AM
4843 else if ((abfd->flags & D_PAGED) != 0
4844 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4845 == (hdr->lma & -maxpagesize)))
4846 {
4847 /* If we are demand paged then we can't map two disk
4848 pages onto the same memory page. */
0a1b45a2 4849 new_segment = false;
76cb3a89 4850 }
39948a60
NC
4851 /* In the next test we have to be careful when last_hdr->lma is close
4852 to the end of the address space. If the aligned address wraps
4853 around to the start of the address space, then there are no more
4854 pages left in memory and it is OK to assume that the current
4855 section can be included in the current segment. */
76cb3a89
AM
4856 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4857 + maxpagesize > last_hdr->lma)
4858 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4859 + maxpagesize <= hdr->lma))
8ded5a0f
AM
4860 {
4861 /* If putting this section in this segment would force us to
4862 skip a page in the segment, then we need a new segment. */
0a1b45a2 4863 new_segment = true;
8ded5a0f
AM
4864 }
4865 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
76cb3a89 4866 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
8ded5a0f 4867 {
e5654c0f
AM
4868 /* We don't want to put a loaded section after a
4869 nonloaded (ie. bss style) section in the same segment
4870 as that will force the non-loaded section to be loaded.
76cb3a89 4871 Consider .tbss sections as loaded for this purpose. */
0a1b45a2 4872 new_segment = true;
8ded5a0f
AM
4873 }
4874 else if ((abfd->flags & D_PAGED) == 0)
4875 {
4876 /* If the file is not demand paged, which means that we
4877 don't require the sections to be correctly aligned in the
4878 file, then there is no other reason for a new segment. */
0a1b45a2 4879 new_segment = false;
8ded5a0f 4880 }
2888249f
L
4881 else if (info != NULL
4882 && info->separate_code
4883 && executable != ((hdr->flags & SEC_CODE) != 0))
4884 {
0a1b45a2 4885 new_segment = true;
2888249f 4886 }
8ded5a0f 4887 else if (! writable
76cb3a89 4888 && (hdr->flags & SEC_READONLY) == 0)
8ded5a0f
AM
4889 {
4890 /* We don't want to put a writable section in a read only
76cb3a89 4891 segment. */
0a1b45a2 4892 new_segment = true;
8ded5a0f
AM
4893 }
4894 else
4895 {
4896 /* Otherwise, we can use the same segment. */
0a1b45a2 4897 new_segment = false;
8ded5a0f
AM
4898 }
4899
2889e75b 4900 /* Allow interested parties a chance to override our decision. */
ceae84aa
AM
4901 if (last_hdr != NULL
4902 && info != NULL
4903 && info->callbacks->override_segment_assignment != NULL)
4904 new_segment
4905 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4906 last_hdr,
4907 new_segment);
2889e75b 4908
8ded5a0f
AM
4909 if (! new_segment)
4910 {
4911 if ((hdr->flags & SEC_READONLY) == 0)
0a1b45a2 4912 writable = true;
2888249f 4913 if ((hdr->flags & SEC_CODE) != 0)
0a1b45a2 4914 executable = true;
8ded5a0f
AM
4915 last_hdr = hdr;
4916 /* .tbss sections effectively have zero size. */
502794d4 4917 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
8ded5a0f
AM
4918 continue;
4919 }
4920
4921 /* We need a new program segment. We must create a new program
00bee008 4922 header holding all the sections from hdr_index until hdr. */
8ded5a0f 4923
00bee008 4924 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4925 if (m == NULL)
4926 goto error_return;
4927
4928 *pm = m;
4929 pm = &m->next;
4930
252b5132 4931 if ((hdr->flags & SEC_READONLY) == 0)
0a1b45a2 4932 writable = true;
8ded5a0f 4933 else
0a1b45a2 4934 writable = false;
8ded5a0f 4935
2888249f 4936 if ((hdr->flags & SEC_CODE) == 0)
0a1b45a2 4937 executable = false;
2888249f 4938 else
0a1b45a2 4939 executable = true;
2888249f 4940
baaff79e
JJ
4941 last_hdr = hdr;
4942 /* .tbss sections effectively have zero size. */
502794d4 4943 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
00bee008 4944 hdr_index = i;
0a1b45a2 4945 phdr_in_segment = false;
252b5132
RH
4946 }
4947
86b2281f
AM
4948 /* Create a final PT_LOAD program segment, but not if it's just
4949 for .tbss. */
4950 if (last_hdr != NULL
00bee008 4951 && (i - hdr_index != 1
dbc88fc1 4952 || !IS_TBSS (last_hdr)))
8ded5a0f 4953 {
00bee008 4954 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4955 if (m == NULL)
4956 goto error_return;
252b5132 4957
8ded5a0f
AM
4958 *pm = m;
4959 pm = &m->next;
4960 }
252b5132 4961
8ded5a0f
AM
4962 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4963 if (dynsec != NULL)
4964 {
4965 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4966 if (m == NULL)
4967 goto error_return;
4968 *pm = m;
4969 pm = &m->next;
4970 }
252b5132 4971
23e463ed 4972 /* For each batch of consecutive loadable SHT_NOTE sections,
1c5265b5
JJ
4973 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
4974 because if we link together nonloadable .note sections and
4975 loadable .note sections, we will generate two .note sections
23e463ed 4976 in the output file. */
8ded5a0f
AM
4977 for (s = abfd->sections; s != NULL; s = s->next)
4978 {
4979 if ((s->flags & SEC_LOAD) != 0
23e463ed 4980 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 4981 {
1c5265b5 4982 asection *s2;
23e463ed 4983 unsigned int alignment_power = s->alignment_power;
91d6fa6a
NC
4984
4985 count = 1;
23e463ed
L
4986 for (s2 = s; s2->next != NULL; s2 = s2->next)
4987 {
4988 if (s2->next->alignment_power == alignment_power
4989 && (s2->next->flags & SEC_LOAD) != 0
4990 && elf_section_type (s2->next) == SHT_NOTE
66631823 4991 && align_power (s2->lma + s2->size / opb,
23e463ed
L
4992 alignment_power)
4993 == s2->next->lma)
4994 count++;
4995 else
4996 break;
4997 }
00bee008
AM
4998 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4999 amt += count * sizeof (asection *);
a50b1753 5000 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5001 if (m == NULL)
5002 goto error_return;
5003 m->next = NULL;
5004 m->p_type = PT_NOTE;
1c5265b5
JJ
5005 m->count = count;
5006 while (count > 1)
5007 {
5008 m->sections[m->count - count--] = s;
5009 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5010 s = s->next;
5011 }
5012 m->sections[m->count - 1] = s;
5013 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
8ded5a0f
AM
5014 *pm = m;
5015 pm = &m->next;
5016 }
5017 if (s->flags & SEC_THREAD_LOCAL)
5018 {
5019 if (! tls_count)
5020 first_tls = s;
5021 tls_count++;
5022 }
a91e1603
L
5023 if (first_mbind == NULL
5024 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5025 first_mbind = s;
8ded5a0f 5026 }
252b5132 5027
8ded5a0f
AM
5028 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5029 if (tls_count > 0)
5030 {
00bee008
AM
5031 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5032 amt += tls_count * sizeof (asection *);
a50b1753 5033 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5034 if (m == NULL)
5035 goto error_return;
5036 m->next = NULL;
5037 m->p_type = PT_TLS;
5038 m->count = tls_count;
5039 /* Mandated PF_R. */
5040 m->p_flags = PF_R;
5041 m->p_flags_valid = 1;
d923cae0 5042 s = first_tls;
446f7ed5 5043 for (i = 0; i < tls_count; ++i)
8ded5a0f 5044 {
d923cae0
L
5045 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5046 {
5047 _bfd_error_handler
871b3ab2 5048 (_("%pB: TLS sections are not adjacent:"), abfd);
d923cae0
L
5049 s = first_tls;
5050 i = 0;
446f7ed5 5051 while (i < tls_count)
d923cae0
L
5052 {
5053 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5054 {
871b3ab2 5055 _bfd_error_handler (_(" TLS: %pA"), s);
d923cae0
L
5056 i++;
5057 }
5058 else
871b3ab2 5059 _bfd_error_handler (_(" non-TLS: %pA"), s);
d923cae0
L
5060 s = s->next;
5061 }
5062 bfd_set_error (bfd_error_bad_value);
5063 goto error_return;
5064 }
5065 m->sections[i] = s;
5066 s = s->next;
8ded5a0f 5067 }
252b5132 5068
8ded5a0f
AM
5069 *pm = m;
5070 pm = &m->next;
5071 }
252b5132 5072
df3a023b
AM
5073 if (first_mbind
5074 && (abfd->flags & D_PAGED) != 0
5075 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
a91e1603
L
5076 for (s = first_mbind; s != NULL; s = s->next)
5077 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
df3a023b 5078 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
a91e1603
L
5079 {
5080 /* Mandated PF_R. */
5081 unsigned long p_flags = PF_R;
5082 if ((s->flags & SEC_READONLY) == 0)
5083 p_flags |= PF_W;
5084 if ((s->flags & SEC_CODE) != 0)
5085 p_flags |= PF_X;
5086
5087 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5088 m = bfd_zalloc (abfd, amt);
5089 if (m == NULL)
5090 goto error_return;
5091 m->next = NULL;
5092 m->p_type = (PT_GNU_MBIND_LO
5093 + elf_section_data (s)->this_hdr.sh_info);
5094 m->count = 1;
5095 m->p_flags_valid = 1;
5096 m->sections[0] = s;
5097 m->p_flags = p_flags;
5098
5099 *pm = m;
5100 pm = &m->next;
5101 }
5102
0a59decb
L
5103 s = bfd_get_section_by_name (abfd,
5104 NOTE_GNU_PROPERTY_SECTION_NAME);
5105 if (s != NULL && s->size != 0)
5106 {
5107 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5108 m = bfd_zalloc (abfd, amt);
5109 if (m == NULL)
5110 goto error_return;
5111 m->next = NULL;
5112 m->p_type = PT_GNU_PROPERTY;
5113 m->count = 1;
5114 m->p_flags_valid = 1;
5115 m->sections[0] = s;
5116 m->p_flags = PF_R;
5117 *pm = m;
5118 pm = &m->next;
5119 }
5120
8ded5a0f
AM
5121 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5122 segment. */
12bd6957 5123 eh_frame_hdr = elf_eh_frame_hdr (abfd);
8ded5a0f
AM
5124 if (eh_frame_hdr != NULL
5125 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
252b5132 5126 {
dc810e39 5127 amt = sizeof (struct elf_segment_map);
a50b1753 5128 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
5129 if (m == NULL)
5130 goto error_return;
5131 m->next = NULL;
8ded5a0f 5132 m->p_type = PT_GNU_EH_FRAME;
252b5132 5133 m->count = 1;
8ded5a0f 5134 m->sections[0] = eh_frame_hdr->output_section;
252b5132
RH
5135
5136 *pm = m;
5137 pm = &m->next;
5138 }
13ae64f3 5139
12bd6957 5140 if (elf_stack_flags (abfd))
13ae64f3 5141 {
8ded5a0f 5142 amt = sizeof (struct elf_segment_map);
a50b1753 5143 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5144 if (m == NULL)
5145 goto error_return;
5146 m->next = NULL;
2b05f1b7 5147 m->p_type = PT_GNU_STACK;
12bd6957 5148 m->p_flags = elf_stack_flags (abfd);
04c3a755 5149 m->p_align = bed->stack_align;
8ded5a0f 5150 m->p_flags_valid = 1;
04c3a755
NS
5151 m->p_align_valid = m->p_align != 0;
5152 if (info->stacksize > 0)
5153 {
5154 m->p_size = info->stacksize;
5155 m->p_size_valid = 1;
5156 }
252b5132 5157
8ded5a0f
AM
5158 *pm = m;
5159 pm = &m->next;
5160 }
65765700 5161
ceae84aa 5162 if (info != NULL && info->relro)
8ded5a0f 5163 {
f210dcff
L
5164 for (m = mfirst; m != NULL; m = m->next)
5165 {
3832a4d8
AM
5166 if (m->p_type == PT_LOAD
5167 && m->count != 0
5168 && m->sections[0]->vma >= info->relro_start
5169 && m->sections[0]->vma < info->relro_end)
f210dcff 5170 {
3832a4d8
AM
5171 i = m->count;
5172 while (--i != (unsigned) -1)
ec2e748a
NC
5173 {
5174 if (m->sections[i]->size > 0
5175 && (m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5176 == (SEC_LOAD | SEC_HAS_CONTENTS))
5177 break;
5178 }
3832a4d8 5179
43a8475c 5180 if (i != (unsigned) -1)
f210dcff
L
5181 break;
5182 }
be01b344 5183 }
f210dcff
L
5184
5185 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5186 if (m != NULL)
5187 {
5188 amt = sizeof (struct elf_segment_map);
a50b1753 5189 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
f210dcff
L
5190 if (m == NULL)
5191 goto error_return;
5192 m->next = NULL;
5193 m->p_type = PT_GNU_RELRO;
f210dcff
L
5194 *pm = m;
5195 pm = &m->next;
5196 }
8ded5a0f 5197 }
9ee5e499 5198
8ded5a0f 5199 free (sections);
12bd6957 5200 elf_seg_map (abfd) = mfirst;
9ee5e499
JJ
5201 }
5202
3dea8fca 5203 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
0a1b45a2 5204 return false;
8c37241b 5205
12bd6957 5206 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
8ded5a0f 5207 ++count;
12bd6957 5208 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
252b5132 5209
0a1b45a2 5210 return true;
252b5132
RH
5211
5212 error_return:
c9594989 5213 free (sections);
0a1b45a2 5214 return false;
252b5132
RH
5215}
5216
5217/* Sort sections by address. */
5218
5219static int
217aa764 5220elf_sort_sections (const void *arg1, const void *arg2)
252b5132
RH
5221{
5222 const asection *sec1 = *(const asection **) arg1;
5223 const asection *sec2 = *(const asection **) arg2;
eecdbe52 5224 bfd_size_type size1, size2;
252b5132
RH
5225
5226 /* Sort by LMA first, since this is the address used to
5227 place the section into a segment. */
5228 if (sec1->lma < sec2->lma)
5229 return -1;
5230 else if (sec1->lma > sec2->lma)
5231 return 1;
5232
5233 /* Then sort by VMA. Normally the LMA and the VMA will be
5234 the same, and this will do nothing. */
5235 if (sec1->vma < sec2->vma)
5236 return -1;
5237 else if (sec1->vma > sec2->vma)
5238 return 1;
5239
5240 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5241
8d748d1d
AM
5242#define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0 \
5243 && (x)->size != 0)
252b5132
RH
5244
5245 if (TOEND (sec1))
5246 {
48db3297 5247 if (!TOEND (sec2))
252b5132
RH
5248 return 1;
5249 }
00a7cdc5 5250 else if (TOEND (sec2))
252b5132
RH
5251 return -1;
5252
5253#undef TOEND
5254
00a7cdc5
NC
5255 /* Sort by size, to put zero sized sections
5256 before others at the same address. */
252b5132 5257
eea6121a
AM
5258 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5259 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
eecdbe52
JJ
5260
5261 if (size1 < size2)
252b5132 5262 return -1;
eecdbe52 5263 if (size1 > size2)
252b5132
RH
5264 return 1;
5265
5266 return sec1->target_index - sec2->target_index;
5267}
5268
30fe1832
AM
5269/* This qsort comparison functions sorts PT_LOAD segments first and
5270 by p_paddr, for assign_file_positions_for_load_sections. */
5271
5272static int
5273elf_sort_segments (const void *arg1, const void *arg2)
5274{
5275 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5276 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5277
5278 if (m1->p_type != m2->p_type)
5279 {
5280 if (m1->p_type == PT_NULL)
5281 return 1;
5282 if (m2->p_type == PT_NULL)
5283 return -1;
5284 return m1->p_type < m2->p_type ? -1 : 1;
5285 }
5286 if (m1->includes_filehdr != m2->includes_filehdr)
5287 return m1->includes_filehdr ? -1 : 1;
5288 if (m1->no_sort_lma != m2->no_sort_lma)
5289 return m1->no_sort_lma ? -1 : 1;
5290 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5291 {
4b3ecb3b 5292 bfd_vma lma1, lma2; /* Octets. */
30fe1832
AM
5293 lma1 = 0;
5294 if (m1->p_paddr_valid)
4b3ecb3b 5295 lma1 = m1->p_paddr;
30fe1832 5296 else if (m1->count != 0)
4b3ecb3b
AM
5297 {
5298 unsigned int opb = bfd_octets_per_byte (m1->sections[0]->owner,
5299 m1->sections[0]);
5300 lma1 = (m1->sections[0]->lma + m1->p_vaddr_offset) * opb;
5301 }
30fe1832
AM
5302 lma2 = 0;
5303 if (m2->p_paddr_valid)
4b3ecb3b 5304 lma2 = m2->p_paddr;
30fe1832 5305 else if (m2->count != 0)
4b3ecb3b
AM
5306 {
5307 unsigned int opb = bfd_octets_per_byte (m2->sections[0]->owner,
5308 m2->sections[0]);
5309 lma2 = (m2->sections[0]->lma + m2->p_vaddr_offset) * opb;
5310 }
30fe1832
AM
5311 if (lma1 != lma2)
5312 return lma1 < lma2 ? -1 : 1;
5313 }
5314 if (m1->idx != m2->idx)
5315 return m1->idx < m2->idx ? -1 : 1;
5316 return 0;
5317}
5318
340b6d91
AC
5319/* Ian Lance Taylor writes:
5320
5321 We shouldn't be using % with a negative signed number. That's just
5322 not good. We have to make sure either that the number is not
5323 negative, or that the number has an unsigned type. When the types
5324 are all the same size they wind up as unsigned. When file_ptr is a
5325 larger signed type, the arithmetic winds up as signed long long,
5326 which is wrong.
5327
5328 What we're trying to say here is something like ``increase OFF by
5329 the least amount that will cause it to be equal to the VMA modulo
5330 the page size.'' */
5331/* In other words, something like:
5332
5333 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5334 off_offset = off % bed->maxpagesize;
5335 if (vma_offset < off_offset)
5336 adjustment = vma_offset + bed->maxpagesize - off_offset;
5337 else
5338 adjustment = vma_offset - off_offset;
08a40648 5339
de194d85 5340 which can be collapsed into the expression below. */
340b6d91
AC
5341
5342static file_ptr
5343vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5344{
dc9155b2
NC
5345 /* PR binutils/16199: Handle an alignment of zero. */
5346 if (maxpagesize == 0)
5347 maxpagesize = 1;
340b6d91
AC
5348 return ((vma - off) % maxpagesize);
5349}
5350
6d33f217
L
5351static void
5352print_segment_map (const struct elf_segment_map *m)
5353{
5354 unsigned int j;
5355 const char *pt = get_segment_type (m->p_type);
5356 char buf[32];
5357
5358 if (pt == NULL)
5359 {
5360 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5361 sprintf (buf, "LOPROC+%7.7x",
5362 (unsigned int) (m->p_type - PT_LOPROC));
5363 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5364 sprintf (buf, "LOOS+%7.7x",
5365 (unsigned int) (m->p_type - PT_LOOS));
5366 else
5367 snprintf (buf, sizeof (buf), "%8.8x",
5368 (unsigned int) m->p_type);
5369 pt = buf;
5370 }
4a97a0e5 5371 fflush (stdout);
6d33f217
L
5372 fprintf (stderr, "%s:", pt);
5373 for (j = 0; j < m->count; j++)
5374 fprintf (stderr, " %s", m->sections [j]->name);
5375 putc ('\n',stderr);
4a97a0e5 5376 fflush (stderr);
6d33f217
L
5377}
5378
0a1b45a2 5379static bool
32812159
AM
5380write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5381{
5382 void *buf;
0a1b45a2 5383 bool ret;
32812159
AM
5384
5385 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
0a1b45a2 5386 return false;
32812159
AM
5387 buf = bfd_zmalloc (len);
5388 if (buf == NULL)
0a1b45a2 5389 return false;
32812159
AM
5390 ret = bfd_bwrite (buf, len, abfd) == len;
5391 free (buf);
5392 return ret;
5393}
5394
252b5132
RH
5395/* Assign file positions to the sections based on the mapping from
5396 sections to segments. This function also sets up some fields in
f3520d2f 5397 the file header. */
252b5132 5398
0a1b45a2 5399static bool
f3520d2f
AM
5400assign_file_positions_for_load_sections (bfd *abfd,
5401 struct bfd_link_info *link_info)
252b5132
RH
5402{
5403 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 5404 struct elf_segment_map *m;
30fe1832 5405 struct elf_segment_map *phdr_load_seg;
252b5132 5406 Elf_Internal_Phdr *phdrs;
252b5132 5407 Elf_Internal_Phdr *p;
502794d4 5408 file_ptr off; /* Octets. */
3f570048 5409 bfd_size_type maxpagesize;
30fe1832 5410 unsigned int alloc, actual;
0920dee7 5411 unsigned int i, j;
30fe1832 5412 struct elf_segment_map **sorted_seg_map;
502794d4 5413 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
252b5132 5414
e36284ab 5415 if (link_info == NULL
ceae84aa 5416 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
0a1b45a2 5417 return false;
252b5132 5418
8ded5a0f 5419 alloc = 0;
12bd6957 5420 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
30fe1832 5421 m->idx = alloc++;
252b5132 5422
82f2dbf7
NC
5423 if (alloc)
5424 {
5425 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5426 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5427 }
5428 else
5429 {
5430 /* PR binutils/12467. */
5431 elf_elfheader (abfd)->e_phoff = 0;
5432 elf_elfheader (abfd)->e_phentsize = 0;
5433 }
d324f6d6 5434
8ded5a0f 5435 elf_elfheader (abfd)->e_phnum = alloc;
252b5132 5436
12bd6957 5437 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
30fe1832
AM
5438 {
5439 actual = alloc;
5440 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5441 }
8ded5a0f 5442 else
30fe1832
AM
5443 {
5444 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5445 BFD_ASSERT (elf_program_header_size (abfd)
5446 == actual * bed->s->sizeof_phdr);
5447 BFD_ASSERT (actual >= alloc);
5448 }
252b5132
RH
5449
5450 if (alloc == 0)
f3520d2f 5451 {
12bd6957 5452 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
0a1b45a2 5453 return true;
f3520d2f 5454 }
252b5132 5455
12bd6957 5456 /* We're writing the size in elf_program_header_size (abfd),
57268894
HPN
5457 see assign_file_positions_except_relocs, so make sure we have
5458 that amount allocated, with trailing space cleared.
12bd6957
AM
5459 The variable alloc contains the computed need, while
5460 elf_program_header_size (abfd) contains the size used for the
57268894
HPN
5461 layout.
5462 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5463 where the layout is forced to according to a larger size in the
5464 last iterations for the testcase ld-elf/header. */
30fe1832
AM
5465 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5466 + alloc * sizeof (*sorted_seg_map)));
5467 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
f3520d2f 5468 elf_tdata (abfd)->phdr = phdrs;
252b5132 5469 if (phdrs == NULL)
0a1b45a2 5470 return false;
252b5132 5471
30fe1832 5472 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
252b5132 5473 {
30fe1832 5474 sorted_seg_map[j] = m;
252b5132 5475 /* If elf_segment_map is not from map_sections_to_segments, the
08a40648 5476 sections may not be correctly ordered. NOTE: sorting should
52e9b619
MS
5477 not be done to the PT_NOTE section of a corefile, which may
5478 contain several pseudo-sections artificially created by bfd.
5479 Sorting these pseudo-sections breaks things badly. */
47d9a591
AM
5480 if (m->count > 1
5481 && !(elf_elfheader (abfd)->e_type == ET_CORE
52e9b619 5482 && m->p_type == PT_NOTE))
48db3297
AM
5483 {
5484 for (i = 0; i < m->count; i++)
5485 m->sections[i]->target_index = i;
5486 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5487 elf_sort_sections);
5488 }
30fe1832
AM
5489 }
5490 if (alloc > 1)
5491 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5492 elf_sort_segments);
5493
5494 maxpagesize = 1;
5495 if ((abfd->flags & D_PAGED) != 0)
c410035d
AM
5496 {
5497 if (link_info != NULL)
5498 maxpagesize = link_info->maxpagesize;
5499 else
5500 maxpagesize = bed->maxpagesize;
5501 }
30fe1832
AM
5502
5503 /* Sections must map to file offsets past the ELF file header. */
5504 off = bed->s->sizeof_ehdr;
5505 /* And if one of the PT_LOAD headers doesn't include the program
5506 headers then we'll be mapping program headers in the usual
5507 position after the ELF file header. */
5508 phdr_load_seg = NULL;
5509 for (j = 0; j < alloc; j++)
5510 {
5511 m = sorted_seg_map[j];
5512 if (m->p_type != PT_LOAD)
5513 break;
5514 if (m->includes_phdrs)
5515 {
5516 phdr_load_seg = m;
5517 break;
5518 }
5519 }
5520 if (phdr_load_seg == NULL)
5521 off += actual * bed->s->sizeof_phdr;
5522
5523 for (j = 0; j < alloc; j++)
5524 {
5525 asection **secpp;
502794d4 5526 bfd_vma off_adjust; /* Octets. */
0a1b45a2 5527 bool no_contents;
252b5132 5528
b301b248
AM
5529 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5530 number of sections with contents contributing to both p_filesz
5531 and p_memsz, followed by a number of sections with no contents
5532 that just contribute to p_memsz. In this loop, OFF tracks next
02bf8d82 5533 available file offset for PT_LOAD and PT_NOTE segments. */
30fe1832
AM
5534 m = sorted_seg_map[j];
5535 p = phdrs + m->idx;
252b5132 5536 p->p_type = m->p_type;
28a7f3e7 5537 p->p_flags = m->p_flags;
252b5132 5538
3f570048 5539 if (m->count == 0)
502794d4 5540 p->p_vaddr = m->p_vaddr_offset * opb;
3f570048 5541 else
502794d4 5542 p->p_vaddr = (m->sections[0]->vma + m->p_vaddr_offset) * opb;
3f570048
AM
5543
5544 if (m->p_paddr_valid)
5545 p->p_paddr = m->p_paddr;
5546 else if (m->count == 0)
5547 p->p_paddr = 0;
5548 else
502794d4 5549 p->p_paddr = (m->sections[0]->lma + m->p_vaddr_offset) * opb;
3f570048
AM
5550
5551 if (p->p_type == PT_LOAD
5552 && (abfd->flags & D_PAGED) != 0)
5553 {
5554 /* p_align in demand paged PT_LOAD segments effectively stores
5555 the maximum page size. When copying an executable with
5556 objcopy, we set m->p_align from the input file. Use this
5557 value for maxpagesize rather than bed->maxpagesize, which
5558 may be different. Note that we use maxpagesize for PT_TLS
5559 segment alignment later in this function, so we are relying
5560 on at least one PT_LOAD segment appearing before a PT_TLS
5561 segment. */
5562 if (m->p_align_valid)
5563 maxpagesize = m->p_align;
5564
5565 p->p_align = maxpagesize;
5566 }
3271a814
NS
5567 else if (m->p_align_valid)
5568 p->p_align = m->p_align;
e970b90a
DJ
5569 else if (m->count == 0)
5570 p->p_align = 1 << bed->s->log_file_align;
30fe1832
AM
5571
5572 if (m == phdr_load_seg)
5573 {
5574 if (!m->includes_filehdr)
5575 p->p_offset = off;
5576 off += actual * bed->s->sizeof_phdr;
5577 }
3f570048 5578
0a1b45a2 5579 no_contents = false;
bf988460 5580 off_adjust = 0;
252b5132 5581 if (p->p_type == PT_LOAD
b301b248 5582 && m->count > 0)
252b5132 5583 {
66631823 5584 bfd_size_type align; /* Bytes. */
a49e53ed 5585 unsigned int align_power = 0;
b301b248 5586
3271a814
NS
5587 if (m->p_align_valid)
5588 align = p->p_align;
5589 else
252b5132 5590 {
3271a814
NS
5591 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5592 {
5593 unsigned int secalign;
08a40648 5594
fd361982 5595 secalign = bfd_section_alignment (*secpp);
3271a814
NS
5596 if (secalign > align_power)
5597 align_power = secalign;
5598 }
5599 align = (bfd_size_type) 1 << align_power;
5600 if (align < maxpagesize)
5601 align = maxpagesize;
b301b248 5602 }
252b5132 5603
02bf8d82
AM
5604 for (i = 0; i < m->count; i++)
5605 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5606 /* If we aren't making room for this section, then
5607 it must be SHT_NOBITS regardless of what we've
5608 set via struct bfd_elf_special_section. */
5609 elf_section_type (m->sections[i]) = SHT_NOBITS;
5610
bf988460 5611 /* Find out whether this segment contains any loadable
aea274d3 5612 sections. */
0a1b45a2 5613 no_contents = true;
aea274d3
AM
5614 for (i = 0; i < m->count; i++)
5615 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5616 {
0a1b45a2 5617 no_contents = false;
aea274d3
AM
5618 break;
5619 }
bf988460 5620
66631823 5621 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align * opb);
a8c75b76
AM
5622
5623 /* Broken hardware and/or kernel require that files do not
5624 map the same page with different permissions on some hppa
5625 processors. */
30fe1832
AM
5626 if (j != 0
5627 && (abfd->flags & D_PAGED) != 0
a8c75b76
AM
5628 && bed->no_page_alias
5629 && (off & (maxpagesize - 1)) != 0
502794d4
CE
5630 && ((off & -maxpagesize)
5631 == ((off + off_adjust) & -maxpagesize)))
a8c75b76 5632 off_adjust += maxpagesize;
bf988460
AM
5633 off += off_adjust;
5634 if (no_contents)
5635 {
5636 /* We shouldn't need to align the segment on disk since
5637 the segment doesn't need file space, but the gABI
5638 arguably requires the alignment and glibc ld.so
5639 checks it. So to comply with the alignment
5640 requirement but not waste file space, we adjust
5641 p_offset for just this segment. (OFF_ADJUST is
5642 subtracted from OFF later.) This may put p_offset
5643 past the end of file, but that shouldn't matter. */
5644 }
5645 else
5646 off_adjust = 0;
252b5132 5647 }
b1a6d0b1
NC
5648 /* Make sure the .dynamic section is the first section in the
5649 PT_DYNAMIC segment. */
5650 else if (p->p_type == PT_DYNAMIC
5651 && m->count > 1
5652 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5653 {
5654 _bfd_error_handler
871b3ab2 5655 (_("%pB: The first section in the PT_DYNAMIC segment"
63a5468a 5656 " is not the .dynamic section"),
b301b248 5657 abfd);
b1a6d0b1 5658 bfd_set_error (bfd_error_bad_value);
0a1b45a2 5659 return false;
b1a6d0b1 5660 }
3f001e84
JK
5661 /* Set the note section type to SHT_NOTE. */
5662 else if (p->p_type == PT_NOTE)
5663 for (i = 0; i < m->count; i++)
5664 elf_section_type (m->sections[i]) = SHT_NOTE;
252b5132 5665
252b5132
RH
5666 if (m->includes_filehdr)
5667 {
bf988460 5668 if (!m->p_flags_valid)
252b5132 5669 p->p_flags |= PF_R;
252b5132
RH
5670 p->p_filesz = bed->s->sizeof_ehdr;
5671 p->p_memsz = bed->s->sizeof_ehdr;
30fe1832 5672 if (p->p_type == PT_LOAD)
252b5132 5673 {
30fe1832 5674 if (m->count > 0)
252b5132 5675 {
30fe1832
AM
5676 if (p->p_vaddr < (bfd_vma) off
5677 || (!m->p_paddr_valid
5678 && p->p_paddr < (bfd_vma) off))
5679 {
5680 _bfd_error_handler
5681 (_("%pB: not enough room for program headers,"
5682 " try linking with -N"),
5683 abfd);
5684 bfd_set_error (bfd_error_bad_value);
0a1b45a2 5685 return false;
30fe1832
AM
5686 }
5687 p->p_vaddr -= off;
5688 if (!m->p_paddr_valid)
5689 p->p_paddr -= off;
252b5132 5690 }
30fe1832
AM
5691 }
5692 else if (sorted_seg_map[0]->includes_filehdr)
5693 {
5694 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5695 p->p_vaddr = filehdr->p_vaddr;
bf988460 5696 if (!m->p_paddr_valid)
30fe1832 5697 p->p_paddr = filehdr->p_paddr;
252b5132 5698 }
252b5132
RH
5699 }
5700
5701 if (m->includes_phdrs)
5702 {
bf988460 5703 if (!m->p_flags_valid)
252b5132 5704 p->p_flags |= PF_R;
30fe1832
AM
5705 p->p_filesz += actual * bed->s->sizeof_phdr;
5706 p->p_memsz += actual * bed->s->sizeof_phdr;
f3520d2f 5707 if (!m->includes_filehdr)
252b5132 5708 {
30fe1832 5709 if (p->p_type == PT_LOAD)
252b5132 5710 {
30fe1832
AM
5711 elf_elfheader (abfd)->e_phoff = p->p_offset;
5712 if (m->count > 0)
5713 {
5714 p->p_vaddr -= off - p->p_offset;
5715 if (!m->p_paddr_valid)
5716 p->p_paddr -= off - p->p_offset;
5717 }
5718 }
5719 else if (phdr_load_seg != NULL)
5720 {
5721 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
502794d4 5722 bfd_vma phdr_off = 0; /* Octets. */
30fe1832
AM
5723 if (phdr_load_seg->includes_filehdr)
5724 phdr_off = bed->s->sizeof_ehdr;
5725 p->p_vaddr = phdr->p_vaddr + phdr_off;
bf988460 5726 if (!m->p_paddr_valid)
30fe1832
AM
5727 p->p_paddr = phdr->p_paddr + phdr_off;
5728 p->p_offset = phdr->p_offset + phdr_off;
252b5132 5729 }
30fe1832
AM
5730 else
5731 p->p_offset = bed->s->sizeof_ehdr;
2b0bc088 5732 }
252b5132
RH
5733 }
5734
5735 if (p->p_type == PT_LOAD
5736 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5737 {
bf988460 5738 if (!m->includes_filehdr && !m->includes_phdrs)
0bc3450e
AM
5739 {
5740 p->p_offset = off;
5741 if (no_contents)
67641dd3
AM
5742 {
5743 /* Put meaningless p_offset for PT_LOAD segments
5744 without file contents somewhere within the first
5745 page, in an attempt to not point past EOF. */
5746 bfd_size_type align = maxpagesize;
5747 if (align < p->p_align)
5748 align = p->p_align;
5749 if (align < 1)
5750 align = 1;
5751 p->p_offset = off % align;
5752 }
0bc3450e 5753 }
252b5132
RH
5754 else
5755 {
502794d4 5756 file_ptr adjust; /* Octets. */
252b5132
RH
5757
5758 adjust = off - (p->p_offset + p->p_filesz);
bf988460
AM
5759 if (!no_contents)
5760 p->p_filesz += adjust;
252b5132
RH
5761 p->p_memsz += adjust;
5762 }
5763 }
5764
1ea63fd2
AM
5765 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5766 maps. Set filepos for sections in PT_LOAD segments, and in
5767 core files, for sections in PT_NOTE segments.
5768 assign_file_positions_for_non_load_sections will set filepos
5769 for other sections and update p_filesz for other segments. */
252b5132
RH
5770 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5771 {
5772 asection *sec;
252b5132 5773 bfd_size_type align;
627b32bc 5774 Elf_Internal_Shdr *this_hdr;
252b5132
RH
5775
5776 sec = *secpp;
02bf8d82 5777 this_hdr = &elf_section_data (sec)->this_hdr;
fd361982 5778 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
252b5132 5779
88967714
AM
5780 if ((p->p_type == PT_LOAD
5781 || p->p_type == PT_TLS)
5782 && (this_hdr->sh_type != SHT_NOBITS
5783 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5784 && ((this_hdr->sh_flags & SHF_TLS) == 0
5785 || p->p_type == PT_TLS))))
252b5132 5786 {
502794d4
CE
5787 bfd_vma p_start = p->p_paddr; /* Octets. */
5788 bfd_vma p_end = p_start + p->p_memsz; /* Octets. */
5789 bfd_vma s_start = sec->lma * opb; /* Octets. */
5790 bfd_vma adjust = s_start - p_end; /* Octets. */
252b5132 5791
a2d1e028
L
5792 if (adjust != 0
5793 && (s_start < p_end
5794 || p_end < p_start))
252b5132 5795 {
4eca0228 5796 _bfd_error_handler
695344c0 5797 /* xgettext:c-format */
2dcf00ce 5798 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
502794d4
CE
5799 abfd, sec, (uint64_t) s_start / opb,
5800 (uint64_t) p_end / opb);
88967714 5801 adjust = 0;
502794d4 5802 sec->lma = p_end / opb;
1cfb7d1e 5803 }
3ac9b6c9 5804 p->p_memsz += adjust;
1cfb7d1e 5805
d16e3d2e 5806 if (p->p_type == PT_LOAD)
88967714 5807 {
d16e3d2e 5808 if (this_hdr->sh_type != SHT_NOBITS)
32812159 5809 {
d16e3d2e 5810 off_adjust = 0;
30fe1832
AM
5811 if (p->p_filesz + adjust < p->p_memsz)
5812 {
5813 /* We have a PROGBITS section following NOBITS ones.
5814 Allocate file space for the NOBITS section(s) and
5815 zero it. */
5816 adjust = p->p_memsz - p->p_filesz;
5817 if (!write_zeros (abfd, off, adjust))
0a1b45a2 5818 return false;
30fe1832 5819 }
d16e3d2e
AM
5820 }
5821 /* We only adjust sh_offset in SHT_NOBITS sections
5822 as would seem proper for their address when the
5823 section is first in the segment. sh_offset
5824 doesn't really have any significance for
5825 SHT_NOBITS anyway, apart from a notional position
5826 relative to other sections. Historically we
5827 didn't bother with adjusting sh_offset and some
5828 programs depend on it not being adjusted. See
5829 pr12921 and pr25662. */
5830 if (this_hdr->sh_type != SHT_NOBITS || i == 0)
5831 {
30fe1832 5832 off += adjust;
d16e3d2e
AM
5833 if (this_hdr->sh_type == SHT_NOBITS)
5834 off_adjust += adjust;
32812159 5835 }
252b5132 5836 }
d16e3d2e
AM
5837 if (this_hdr->sh_type != SHT_NOBITS)
5838 p->p_filesz += adjust;
252b5132
RH
5839 }
5840
5841 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5842 {
b301b248
AM
5843 /* The section at i == 0 is the one that actually contains
5844 everything. */
4a938328
MS
5845 if (i == 0)
5846 {
627b32bc 5847 this_hdr->sh_offset = sec->filepos = off;
6a3cd2b4
AM
5848 off += this_hdr->sh_size;
5849 p->p_filesz = this_hdr->sh_size;
b301b248
AM
5850 p->p_memsz = 0;
5851 p->p_align = 1;
252b5132 5852 }
4a938328 5853 else
252b5132 5854 {
b301b248 5855 /* The rest are fake sections that shouldn't be written. */
252b5132 5856 sec->filepos = 0;
eea6121a 5857 sec->size = 0;
b301b248
AM
5858 sec->flags = 0;
5859 continue;
252b5132 5860 }
252b5132
RH
5861 }
5862 else
5863 {
1e951488 5864 if (p->p_type == PT_LOAD)
b301b248 5865 {
1e951488
AM
5866 this_hdr->sh_offset = sec->filepos = off;
5867 if (this_hdr->sh_type != SHT_NOBITS)
5868 off += this_hdr->sh_size;
5869 }
5870 else if (this_hdr->sh_type == SHT_NOBITS
5871 && (this_hdr->sh_flags & SHF_TLS) != 0
5872 && this_hdr->sh_offset == 0)
5873 {
5874 /* This is a .tbss section that didn't get a PT_LOAD.
5875 (See _bfd_elf_map_sections_to_segments "Create a
5876 final PT_LOAD".) Set sh_offset to the value it
5877 would have if we had created a zero p_filesz and
5878 p_memsz PT_LOAD header for the section. This
5879 also makes the PT_TLS header have the same
5880 p_offset value. */
5881 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5882 off, align);
5883 this_hdr->sh_offset = sec->filepos = off + adjust;
b301b248 5884 }
252b5132 5885
02bf8d82 5886 if (this_hdr->sh_type != SHT_NOBITS)
b301b248 5887 {
6a3cd2b4 5888 p->p_filesz += this_hdr->sh_size;
02bf8d82
AM
5889 /* A load section without SHF_ALLOC is something like
5890 a note section in a PT_NOTE segment. These take
5891 file space but are not loaded into memory. */
5892 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
6a3cd2b4 5893 p->p_memsz += this_hdr->sh_size;
b301b248 5894 }
6a3cd2b4 5895 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
13ae64f3 5896 {
6a3cd2b4
AM
5897 if (p->p_type == PT_TLS)
5898 p->p_memsz += this_hdr->sh_size;
5899
5900 /* .tbss is special. It doesn't contribute to p_memsz of
5901 normal segments. */
5902 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5903 p->p_memsz += this_hdr->sh_size;
13ae64f3
JJ
5904 }
5905
b10a8ae0
L
5906 if (align > p->p_align
5907 && !m->p_align_valid
5908 && (p->p_type != PT_LOAD
5909 || (abfd->flags & D_PAGED) == 0))
252b5132
RH
5910 p->p_align = align;
5911 }
5912
bf988460 5913 if (!m->p_flags_valid)
252b5132
RH
5914 {
5915 p->p_flags |= PF_R;
02bf8d82 5916 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
252b5132 5917 p->p_flags |= PF_X;
02bf8d82 5918 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
252b5132
RH
5919 p->p_flags |= PF_W;
5920 }
5921 }
43a8475c 5922
bf988460 5923 off -= off_adjust;
0920dee7 5924
30fe1832
AM
5925 /* PR ld/20815 - Check that the program header segment, if
5926 present, will be loaded into memory. */
5927 if (p->p_type == PT_PHDR
5928 && phdr_load_seg == NULL
5929 && !(bed->elf_backend_allow_non_load_phdr != NULL
5930 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5931 {
5932 /* The fix for this error is usually to edit the linker script being
5933 used and set up the program headers manually. Either that or
5934 leave room for the headers at the start of the SECTIONS. */
5935 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5936 " by LOAD segment"),
5937 abfd);
7b3c2715 5938 if (link_info == NULL)
0a1b45a2 5939 return false;
7b3c2715
AM
5940 /* Arrange for the linker to exit with an error, deleting
5941 the output file unless --noinhibit-exec is given. */
5942 link_info->callbacks->info ("%X");
30fe1832
AM
5943 }
5944
7c928300
AM
5945 /* Check that all sections are in a PT_LOAD segment.
5946 Don't check funky gdb generated core files. */
5947 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
9a83a553 5948 {
0a1b45a2 5949 bool check_vma = true;
9a83a553
AM
5950
5951 for (i = 1; i < m->count; i++)
5952 if (m->sections[i]->vma == m->sections[i - 1]->vma
5953 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5954 ->this_hdr), p) != 0
5955 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5956 ->this_hdr), p) != 0)
0920dee7 5957 {
9a83a553 5958 /* Looks like we have overlays packed into the segment. */
0a1b45a2 5959 check_vma = false;
9a83a553 5960 break;
0920dee7 5961 }
9a83a553
AM
5962
5963 for (i = 0; i < m->count; i++)
5964 {
5965 Elf_Internal_Shdr *this_hdr;
5966 asection *sec;
5967
5968 sec = m->sections[i];
5969 this_hdr = &(elf_section_data(sec)->this_hdr);
86b2281f
AM
5970 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5971 && !ELF_TBSS_SPECIAL (this_hdr, p))
9a83a553 5972 {
4eca0228 5973 _bfd_error_handler
695344c0 5974 /* xgettext:c-format */
871b3ab2 5975 (_("%pB: section `%pA' can't be allocated in segment %d"),
9a83a553
AM
5976 abfd, sec, j);
5977 print_segment_map (m);
5978 }
5979 }
5980 }
252b5132
RH
5981 }
5982
12bd6957 5983 elf_next_file_pos (abfd) = off;
30fe1832
AM
5984
5985 if (link_info != NULL
5986 && phdr_load_seg != NULL
5987 && phdr_load_seg->includes_filehdr)
5988 {
5989 /* There is a segment that contains both the file headers and the
5990 program headers, so provide a symbol __ehdr_start pointing there.
5991 A program can use this to examine itself robustly. */
5992
5993 struct elf_link_hash_entry *hash
5994 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
0a1b45a2 5995 false, false, true);
30fe1832
AM
5996 /* If the symbol was referenced and not defined, define it. */
5997 if (hash != NULL
5998 && (hash->root.type == bfd_link_hash_new
5999 || hash->root.type == bfd_link_hash_undefined
6000 || hash->root.type == bfd_link_hash_undefweak
6001 || hash->root.type == bfd_link_hash_common))
6002 {
6003 asection *s = NULL;
66631823 6004 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr / opb;
30fe1832
AM
6005
6006 if (phdr_load_seg->count != 0)
6007 /* The segment contains sections, so use the first one. */
6008 s = phdr_load_seg->sections[0];
6009 else
6010 /* Use the first (i.e. lowest-addressed) section in any segment. */
6011 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6012 if (m->p_type == PT_LOAD && m->count != 0)
6013 {
6014 s = m->sections[0];
6015 break;
6016 }
6017
6018 if (s != NULL)
6019 {
6020 hash->root.u.def.value = filehdr_vaddr - s->vma;
6021 hash->root.u.def.section = s;
6022 }
6023 else
6024 {
6025 hash->root.u.def.value = filehdr_vaddr;
6026 hash->root.u.def.section = bfd_abs_section_ptr;
6027 }
6028
6029 hash->root.type = bfd_link_hash_defined;
6030 hash->def_regular = 1;
6031 hash->non_elf = 0;
6032 }
6033 }
6034
0a1b45a2 6035 return true;
f3520d2f
AM
6036}
6037
1faa385f
NC
6038/* Determine if a bfd is a debuginfo file. Unfortunately there
6039 is no defined method for detecting such files, so we have to
6040 use heuristics instead. */
6041
0a1b45a2 6042bool
1faa385f
NC
6043is_debuginfo_file (bfd *abfd)
6044{
6045 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
0a1b45a2 6046 return false;
1faa385f
NC
6047
6048 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6049 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6050 Elf_Internal_Shdr **headerp;
6051
6052 for (headerp = start_headers; headerp < end_headers; headerp ++)
6053 {
6054 Elf_Internal_Shdr *header = * headerp;
6055
6056 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6057 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6058 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6059 && header->sh_type != SHT_NOBITS
6060 && header->sh_type != SHT_NOTE)
0a1b45a2 6061 return false;
1faa385f
NC
6062 }
6063
0a1b45a2 6064 return true;
1faa385f
NC
6065}
6066
1ff6de03
NA
6067/* Assign file positions for the other sections, except for compressed debugging
6068 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
f3520d2f 6069
0a1b45a2 6070static bool
f3520d2f
AM
6071assign_file_positions_for_non_load_sections (bfd *abfd,
6072 struct bfd_link_info *link_info)
6073{
6074 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6075 Elf_Internal_Shdr **i_shdrpp;
e06efbf1 6076 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
f3520d2f
AM
6077 Elf_Internal_Phdr *phdrs;
6078 Elf_Internal_Phdr *p;
6079 struct elf_segment_map *m;
f3520d2f 6080 file_ptr off;
66631823 6081 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
c410035d 6082 bfd_vma maxpagesize;
f3520d2f 6083
c410035d
AM
6084 if (link_info != NULL)
6085 maxpagesize = link_info->maxpagesize;
6086 else
6087 maxpagesize = bed->maxpagesize;
5c182d5f 6088 i_shdrpp = elf_elfsections (abfd);
e06efbf1 6089 end_hdrpp = i_shdrpp + elf_numsections (abfd);
12bd6957 6090 off = elf_next_file_pos (abfd);
e06efbf1 6091 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5c182d5f 6092 {
5c182d5f
AM
6093 Elf_Internal_Shdr *hdr;
6094
6095 hdr = *hdrpp;
6096 if (hdr->bfd_section != NULL
252e386e
AM
6097 && (hdr->bfd_section->filepos != 0
6098 || (hdr->sh_type == SHT_NOBITS
6099 && hdr->contents == NULL)))
627b32bc 6100 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5c182d5f
AM
6101 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6102 {
1faa385f
NC
6103 if (hdr->sh_size != 0
6104 /* PR 24717 - debuginfo files are known to be not strictly
6105 compliant with the ELF standard. In particular they often
6106 have .note.gnu.property sections that are outside of any
6107 loadable segment. This is not a problem for such files,
6108 so do not warn about them. */
6109 && ! is_debuginfo_file (abfd))
4eca0228 6110 _bfd_error_handler
695344c0 6111 /* xgettext:c-format */
871b3ab2 6112 (_("%pB: warning: allocated section `%s' not in segment"),
e8d2ba53
AM
6113 abfd,
6114 (hdr->bfd_section == NULL
6115 ? "*unknown*"
6116 : hdr->bfd_section->name));
3ba71138
L
6117 /* We don't need to page align empty sections. */
6118 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5c182d5f 6119 off += vma_page_aligned_bias (hdr->sh_addr, off,
c410035d 6120 maxpagesize);
5c182d5f
AM
6121 else
6122 off += vma_page_aligned_bias (hdr->sh_addr, off,
6123 hdr->sh_addralign);
6124 off = _bfd_elf_assign_file_position_for_section (hdr, off,
0a1b45a2 6125 false);
5c182d5f
AM
6126 }
6127 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6128 && hdr->bfd_section == NULL)
1ff6de03
NA
6129 /* We don't know the offset of these sections yet: their size has
6130 not been decided. */
0ce398f1 6131 || (hdr->bfd_section != NULL
1ff6de03
NA
6132 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6133 || (bfd_section_is_ctf (hdr->bfd_section)
6134 && abfd->is_linker_output)))
12bd6957 6135 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6a40cf0c
NC
6136 || (elf_symtab_shndx_list (abfd) != NULL
6137 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6138 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6139 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5c182d5f
AM
6140 hdr->sh_offset = -1;
6141 else
0a1b45a2 6142 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
5c182d5f 6143 }
30fe1832 6144 elf_next_file_pos (abfd) = off;
5c182d5f 6145
252b5132
RH
6146 /* Now that we have set the section file positions, we can set up
6147 the file positions for the non PT_LOAD segments. */
f3520d2f 6148 phdrs = elf_tdata (abfd)->phdr;
12bd6957 6149 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
252b5132 6150 {
129af99f 6151 if (p->p_type == PT_GNU_RELRO)
252b5132 6152 {
66631823 6153 bfd_vma start, end; /* Bytes. */
0a1b45a2 6154 bool ok;
1ea63fd2 6155
129af99f 6156 if (link_info != NULL)
8c37241b 6157 {
129af99f 6158 /* During linking the range of the RELRO segment is passed
f2731e0c
AM
6159 in link_info. Note that there may be padding between
6160 relro_start and the first RELRO section. */
6161 start = link_info->relro_start;
6162 end = link_info->relro_end;
6163 }
6164 else if (m->count != 0)
6165 {
6166 if (!m->p_size_valid)
6167 abort ();
6168 start = m->sections[0]->vma;
66631823 6169 end = start + m->p_size / opb;
f2731e0c
AM
6170 }
6171 else
6172 {
6173 start = 0;
6174 end = 0;
6175 }
6176
0a1b45a2 6177 ok = false;
f2731e0c
AM
6178 if (start < end)
6179 {
6180 struct elf_segment_map *lm;
6181 const Elf_Internal_Phdr *lp;
6182 unsigned int i;
6183
6184 /* Find a LOAD segment containing a section in the RELRO
6185 segment. */
12bd6957 6186 for (lm = elf_seg_map (abfd), lp = phdrs;
3146fac4
AM
6187 lm != NULL;
6188 lm = lm->next, lp++)
8c37241b
JJ
6189 {
6190 if (lp->p_type == PT_LOAD
3146fac4 6191 && lm->count != 0
dbc88fc1
AM
6192 && (lm->sections[lm->count - 1]->vma
6193 + (!IS_TBSS (lm->sections[lm->count - 1])
66631823 6194 ? lm->sections[lm->count - 1]->size / opb
dbc88fc1 6195 : 0)) > start
f2731e0c 6196 && lm->sections[0]->vma < end)
8c37241b
JJ
6197 break;
6198 }
f2731e0c 6199
01f7e10c 6200 if (lm != NULL)
129af99f 6201 {
01f7e10c
AM
6202 /* Find the section starting the RELRO segment. */
6203 for (i = 0; i < lm->count; i++)
6204 {
6205 asection *s = lm->sections[i];
6206 if (s->vma >= start
6207 && s->vma < end
6208 && s->size != 0)
6209 break;
6210 }
6211
6212 if (i < lm->count)
6213 {
502794d4
CE
6214 p->p_vaddr = lm->sections[i]->vma * opb;
6215 p->p_paddr = lm->sections[i]->lma * opb;
01f7e10c 6216 p->p_offset = lm->sections[i]->filepos;
66631823 6217 p->p_memsz = end * opb - p->p_vaddr;
01f7e10c
AM
6218 p->p_filesz = p->p_memsz;
6219
6220 /* The RELRO segment typically ends a few bytes
6221 into .got.plt but other layouts are possible.
6222 In cases where the end does not match any
6223 loaded section (for instance is in file
6224 padding), trim p_filesz back to correspond to
6225 the end of loaded section contents. */
6226 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6227 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6228
6229 /* Preserve the alignment and flags if they are
6230 valid. The gold linker generates RW/4 for
6231 the PT_GNU_RELRO section. It is better for
6232 objcopy/strip to honor these attributes
6233 otherwise gdb will choke when using separate
6234 debug files. */
6235 if (!m->p_align_valid)
6236 p->p_align = 1;
6237 if (!m->p_flags_valid)
6238 p->p_flags = PF_R;
0a1b45a2 6239 ok = true;
01f7e10c 6240 }
129af99f 6241 }
b84a33b5 6242 }
ee9e412f 6243
01f7e10c 6244 if (!ok)
ee9e412f
NC
6245 {
6246 if (link_info != NULL)
6247 _bfd_error_handler
6248 (_("%pB: warning: unable to allocate any sections to PT_GNU_RELRO segment"),
6249 abfd);
6250 memset (p, 0, sizeof *p);
6251 }
129af99f 6252 }
04c3a755
NS
6253 else if (p->p_type == PT_GNU_STACK)
6254 {
6255 if (m->p_size_valid)
6256 p->p_memsz = m->p_size;
6257 }
129af99f
AS
6258 else if (m->count != 0)
6259 {
e06efbf1 6260 unsigned int i;
1a9ccd70 6261
129af99f
AS
6262 if (p->p_type != PT_LOAD
6263 && (p->p_type != PT_NOTE
6264 || bfd_get_format (abfd) != bfd_core))
6265 {
1a9ccd70
NC
6266 /* A user specified segment layout may include a PHDR
6267 segment that overlaps with a LOAD segment... */
6268 if (p->p_type == PT_PHDR)
6269 {
6270 m->count = 0;
6271 continue;
6272 }
6273
c86934ce
NC
6274 if (m->includes_filehdr || m->includes_phdrs)
6275 {
b1fa9dd6 6276 /* PR 17512: file: 2195325e. */
4eca0228 6277 _bfd_error_handler
871b3ab2 6278 (_("%pB: error: non-load segment %d includes file header "
76cfced5
AM
6279 "and/or program header"),
6280 abfd, (int) (p - phdrs));
0a1b45a2 6281 return false;
c86934ce 6282 }
129af99f 6283
86b2281f 6284 p->p_filesz = 0;
129af99f 6285 p->p_offset = m->sections[0]->filepos;
86b2281f
AM
6286 for (i = m->count; i-- != 0;)
6287 {
6288 asection *sect = m->sections[i];
6289 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6290 if (hdr->sh_type != SHT_NOBITS)
6291 {
aebb3d54 6292 p->p_filesz = sect->filepos - p->p_offset + hdr->sh_size;
9917b559
L
6293 /* NB: p_memsz of the loadable PT_NOTE segment
6294 should be the same as p_filesz. */
6295 if (p->p_type == PT_NOTE
6296 && (hdr->sh_flags & SHF_ALLOC) != 0)
6297 p->p_memsz = p->p_filesz;
86b2281f
AM
6298 break;
6299 }
6300 }
129af99f
AS
6301 }
6302 }
252b5132
RH
6303 }
6304
0a1b45a2 6305 return true;
252b5132
RH
6306}
6307
6a40cf0c
NC
6308static elf_section_list *
6309find_section_in_list (unsigned int i, elf_section_list * list)
6310{
6311 for (;list != NULL; list = list->next)
6312 if (list->ndx == i)
6313 break;
6314 return list;
6315}
6316
252b5132
RH
6317/* Work out the file positions of all the sections. This is called by
6318 _bfd_elf_compute_section_file_positions. All the section sizes and
6319 VMAs must be known before this is called.
6320
e0638f70 6321 Reloc sections come in two flavours: Those processed specially as
1ff6de03
NA
6322 "side-channel" data attached to a section to which they apply, and those that
6323 bfd doesn't process as relocations. The latter sort are stored in a normal
6324 bfd section by bfd_section_from_shdr. We don't consider the former sort
6325 here, unless they form part of the loadable image. Reloc sections not
6326 assigned here (and compressed debugging sections and CTF sections which
6327 nothing else in the file can rely upon) will be handled later by
e0638f70 6328 assign_file_positions_for_relocs.
252b5132
RH
6329
6330 We also don't set the positions of the .symtab and .strtab here. */
6331
0a1b45a2 6332static bool
c84fca4d
AO
6333assign_file_positions_except_relocs (bfd *abfd,
6334 struct bfd_link_info *link_info)
252b5132 6335{
5c182d5f
AM
6336 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6337 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
9c5bfbb7 6338 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6d6c25c8 6339 unsigned int alloc;
252b5132
RH
6340
6341 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6342 && bfd_get_format (abfd) != bfd_core)
6343 {
5c182d5f
AM
6344 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6345 unsigned int num_sec = elf_numsections (abfd);
252b5132
RH
6346 Elf_Internal_Shdr **hdrpp;
6347 unsigned int i;
a485e98e 6348 file_ptr off;
252b5132
RH
6349
6350 /* Start after the ELF header. */
6351 off = i_ehdrp->e_ehsize;
6352
6353 /* We are not creating an executable, which means that we are
6354 not creating a program header, and that the actual order of
6355 the sections in the file is unimportant. */
9ad5cbcf 6356 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
252b5132
RH
6357 {
6358 Elf_Internal_Shdr *hdr;
6359
6360 hdr = *hdrpp;
e0638f70
AM
6361 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6362 && hdr->bfd_section == NULL)
1ff6de03
NA
6363 /* Do not assign offsets for these sections yet: we don't know
6364 their sizes. */
0ce398f1 6365 || (hdr->bfd_section != NULL
1ff6de03
NA
6366 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6367 || (bfd_section_is_ctf (hdr->bfd_section)
6368 && abfd->is_linker_output)))
12bd6957 6369 || i == elf_onesymtab (abfd)
6a40cf0c
NC
6370 || (elf_symtab_shndx_list (abfd) != NULL
6371 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6372 || i == elf_strtab_sec (abfd)
6373 || i == elf_shstrtab_sec (abfd))
252b5132
RH
6374 {
6375 hdr->sh_offset = -1;
252b5132 6376 }
9ad5cbcf 6377 else
0a1b45a2 6378 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
252b5132 6379 }
a485e98e
AM
6380
6381 elf_next_file_pos (abfd) = off;
6d6c25c8 6382 elf_program_header_size (abfd) = 0;
252b5132
RH
6383 }
6384 else
6385 {
252b5132 6386 /* Assign file positions for the loaded sections based on the
08a40648 6387 assignment of sections to segments. */
f3520d2f 6388 if (!assign_file_positions_for_load_sections (abfd, link_info))
0a1b45a2 6389 return false;
f3520d2f
AM
6390
6391 /* And for non-load sections. */
6392 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
0a1b45a2 6393 return false;
6d6c25c8 6394 }
f3520d2f 6395
6d6c25c8 6396 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
0a1b45a2 6397 return false;
1a9ccd70 6398
6d6c25c8
AM
6399 /* Write out the program headers. */
6400 alloc = i_ehdrp->e_phnum;
6401 if (alloc != 0)
6402 {
30fe1832 6403 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
cd584857 6404 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
0a1b45a2 6405 return false;
252b5132
RH
6406 }
6407
0a1b45a2 6408 return true;
252b5132
RH
6409}
6410
0a1b45a2 6411bool
ed7e9d0b
AM
6412_bfd_elf_init_file_header (bfd *abfd,
6413 struct bfd_link_info *info ATTRIBUTE_UNUSED)
252b5132 6414{
3d540e93 6415 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
2b0f7ef9 6416 struct elf_strtab_hash *shstrtab;
9c5bfbb7 6417 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132
RH
6418
6419 i_ehdrp = elf_elfheader (abfd);
252b5132 6420
2b0f7ef9 6421 shstrtab = _bfd_elf_strtab_init ();
252b5132 6422 if (shstrtab == NULL)
0a1b45a2 6423 return false;
252b5132
RH
6424
6425 elf_shstrtab (abfd) = shstrtab;
6426
6427 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6428 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6429 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6430 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6431
6432 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6433 i_ehdrp->e_ident[EI_DATA] =
6434 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6435 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6436
252b5132
RH
6437 if ((abfd->flags & DYNAMIC) != 0)
6438 i_ehdrp->e_type = ET_DYN;
6439 else if ((abfd->flags & EXEC_P) != 0)
6440 i_ehdrp->e_type = ET_EXEC;
6441 else if (bfd_get_format (abfd) == bfd_core)
6442 i_ehdrp->e_type = ET_CORE;
6443 else
6444 i_ehdrp->e_type = ET_REL;
6445
6446 switch (bfd_get_arch (abfd))
6447 {
6448 case bfd_arch_unknown:
6449 i_ehdrp->e_machine = EM_NONE;
6450 break;
aa4f99bb
AO
6451
6452 /* There used to be a long list of cases here, each one setting
6453 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6454 in the corresponding bfd definition. To avoid duplication,
6455 the switch was removed. Machines that need special handling
6456 can generally do it in elf_backend_final_write_processing(),
6457 unless they need the information earlier than the final write.
6458 Such need can generally be supplied by replacing the tests for
6459 e_machine with the conditions used to determine it. */
252b5132 6460 default:
9c5bfbb7
AM
6461 i_ehdrp->e_machine = bed->elf_machine_code;
6462 }
aa4f99bb 6463
252b5132
RH
6464 i_ehdrp->e_version = bed->s->ev_current;
6465 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6466
c044fabd 6467 /* No program header, for now. */
252b5132
RH
6468 i_ehdrp->e_phoff = 0;
6469 i_ehdrp->e_phentsize = 0;
6470 i_ehdrp->e_phnum = 0;
6471
c044fabd 6472 /* Each bfd section is section header entry. */
252b5132
RH
6473 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6474 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6475
252b5132 6476 elf_tdata (abfd)->symtab_hdr.sh_name =
0a1b45a2 6477 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", false);
252b5132 6478 elf_tdata (abfd)->strtab_hdr.sh_name =
0a1b45a2 6479 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", false);
252b5132 6480 elf_tdata (abfd)->shstrtab_hdr.sh_name =
0a1b45a2 6481 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", false);
252b5132 6482 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
17ca87fc 6483 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
252b5132 6484 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
0a1b45a2 6485 return false;
252b5132 6486
0a1b45a2 6487 return true;
252b5132
RH
6488}
6489
6d6c25c8
AM
6490/* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6491
6492 FIXME: We used to have code here to sort the PT_LOAD segments into
6493 ascending order, as per the ELF spec. But this breaks some programs,
6494 including the Linux kernel. But really either the spec should be
6495 changed or the programs updated. */
6496
0a1b45a2 6497bool
6d6c25c8
AM
6498_bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6499{
6500 if (link_info != NULL && bfd_link_pie (link_info))
6501 {
6502 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6503 unsigned int num_segments = i_ehdrp->e_phnum;
6504 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6505 Elf_Internal_Phdr *segment = tdata->phdr;
6506 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6507
6508 /* Find the lowest p_vaddr in PT_LOAD segments. */
6509 bfd_vma p_vaddr = (bfd_vma) -1;
6510 for (; segment < end_segment; segment++)
6511 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6512 p_vaddr = segment->p_vaddr;
6513
6514 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6515 segments is non-zero. */
6516 if (p_vaddr)
6517 i_ehdrp->e_type = ET_EXEC;
6518 }
0a1b45a2 6519 return true;
6d6c25c8
AM
6520}
6521
252b5132 6522/* Assign file positions for all the reloc sections which are not part
a485e98e 6523 of the loadable file image, and the file position of section headers. */
252b5132 6524
0a1b45a2 6525static bool
0ce398f1 6526_bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
252b5132
RH
6527{
6528 file_ptr off;
e06efbf1 6529 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
3e19fb8f 6530 Elf_Internal_Shdr *shdrp;
a485e98e
AM
6531 Elf_Internal_Ehdr *i_ehdrp;
6532 const struct elf_backend_data *bed;
252b5132 6533
12bd6957 6534 off = elf_next_file_pos (abfd);
252b5132 6535
e06efbf1
L
6536 shdrpp = elf_elfsections (abfd);
6537 end_shdrpp = shdrpp + elf_numsections (abfd);
6538 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
252b5132 6539 {
252b5132 6540 shdrp = *shdrpp;
0ce398f1
L
6541 if (shdrp->sh_offset == -1)
6542 {
3e19fb8f 6543 asection *sec = shdrp->bfd_section;
0a1b45a2
AM
6544 bool is_rel = (shdrp->sh_type == SHT_REL
6545 || shdrp->sh_type == SHT_RELA);
6546 bool is_ctf = sec && bfd_section_is_ctf (sec);
0ce398f1 6547 if (is_rel
1ff6de03 6548 || is_ctf
3e19fb8f 6549 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
0ce398f1 6550 {
1ff6de03 6551 if (!is_rel && !is_ctf)
0ce398f1 6552 {
3e19fb8f
L
6553 const char *name = sec->name;
6554 struct bfd_elf_section_data *d;
6555
0ce398f1 6556 /* Compress DWARF debug sections. */
3e19fb8f 6557 if (!bfd_compress_section (abfd, sec,
0ce398f1 6558 shdrp->contents))
0a1b45a2 6559 return false;
3e19fb8f
L
6560
6561 if (sec->compress_status == COMPRESS_SECTION_DONE
6562 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6563 {
6564 /* If section is compressed with zlib-gnu, convert
6565 section name from .debug_* to .zdebug_*. */
6566 char *new_name
6567 = convert_debug_to_zdebug (abfd, name);
6568 if (new_name == NULL)
0a1b45a2 6569 return false;
3e19fb8f
L
6570 name = new_name;
6571 }
dd905818 6572 /* Add section name to section name section. */
3e19fb8f
L
6573 if (shdrp->sh_name != (unsigned int) -1)
6574 abort ();
6575 shdrp->sh_name
6576 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
0a1b45a2 6577 name, false);
3e19fb8f
L
6578 d = elf_section_data (sec);
6579
dd905818 6580 /* Add reloc section name to section name section. */
3e19fb8f
L
6581 if (d->rel.hdr
6582 && !_bfd_elf_set_reloc_sh_name (abfd,
6583 d->rel.hdr,
0a1b45a2
AM
6584 name, false))
6585 return false;
3e19fb8f
L
6586 if (d->rela.hdr
6587 && !_bfd_elf_set_reloc_sh_name (abfd,
6588 d->rela.hdr,
0a1b45a2
AM
6589 name, true))
6590 return false;
3e19fb8f 6591
0ce398f1 6592 /* Update section size and contents. */
3e19fb8f
L
6593 shdrp->sh_size = sec->size;
6594 shdrp->contents = sec->contents;
0ce398f1
L
6595 shdrp->bfd_section->contents = NULL;
6596 }
1ff6de03
NA
6597 else if (is_ctf)
6598 {
6599 /* Update section size and contents. */
6600 shdrp->sh_size = sec->size;
6601 shdrp->contents = sec->contents;
6602 }
6603
0ce398f1
L
6604 off = _bfd_elf_assign_file_position_for_section (shdrp,
6605 off,
0a1b45a2 6606 true);
0ce398f1
L
6607 }
6608 }
252b5132
RH
6609 }
6610
3e19fb8f
L
6611 /* Place section name section after DWARF debug sections have been
6612 compressed. */
6613 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6614 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6615 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
0a1b45a2 6616 off = _bfd_elf_assign_file_position_for_section (shdrp, off, true);
3e19fb8f
L
6617
6618 /* Place the section headers. */
a485e98e
AM
6619 i_ehdrp = elf_elfheader (abfd);
6620 bed = get_elf_backend_data (abfd);
6621 off = align_file_position (off, 1 << bed->s->log_file_align);
6622 i_ehdrp->e_shoff = off;
6623 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
12bd6957 6624 elf_next_file_pos (abfd) = off;
0ce398f1 6625
0a1b45a2 6626 return true;
252b5132
RH
6627}
6628
0a1b45a2 6629bool
217aa764 6630_bfd_elf_write_object_contents (bfd *abfd)
252b5132 6631{
9c5bfbb7 6632 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 6633 Elf_Internal_Shdr **i_shdrp;
0a1b45a2 6634 bool failed;
9ad5cbcf 6635 unsigned int count, num_sec;
30e8ee25 6636 struct elf_obj_tdata *t;
252b5132
RH
6637
6638 if (! abfd->output_has_begun
217aa764 6639 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
0a1b45a2 6640 return false;
db727370
JL
6641 /* Do not rewrite ELF data when the BFD has been opened for update.
6642 abfd->output_has_begun was set to TRUE on opening, so creation of new
6643 sections, and modification of existing section sizes was restricted.
6644 This means the ELF header, program headers and section headers can't have
6645 changed.
6646 If the contents of any sections has been modified, then those changes have
6647 already been written to the BFD. */
6648 else if (abfd->direction == both_direction)
6649 {
6650 BFD_ASSERT (abfd->output_has_begun);
0a1b45a2 6651 return true;
db727370 6652 }
252b5132
RH
6653
6654 i_shdrp = elf_elfsections (abfd);
252b5132 6655
0a1b45a2 6656 failed = false;
252b5132
RH
6657 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6658 if (failed)
0a1b45a2 6659 return false;
252b5132 6660
0ce398f1 6661 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
0a1b45a2 6662 return false;
252b5132 6663
c044fabd 6664 /* After writing the headers, we need to write the sections too... */
9ad5cbcf
AM
6665 num_sec = elf_numsections (abfd);
6666 for (count = 1; count < num_sec; count++)
252b5132 6667 {
3e19fb8f
L
6668 i_shdrp[count]->sh_name
6669 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6670 i_shdrp[count]->sh_name);
252b5132 6671 if (bed->elf_backend_section_processing)
75506100 6672 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
0a1b45a2 6673 return false;
252b5132
RH
6674 if (i_shdrp[count]->contents)
6675 {
dc810e39
AM
6676 bfd_size_type amt = i_shdrp[count]->sh_size;
6677
252b5132 6678 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
dc810e39 6679 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
0a1b45a2 6680 return false;
252b5132
RH
6681 }
6682 }
6683
6684 /* Write out the section header names. */
30e8ee25 6685 t = elf_tdata (abfd);
26ae6d5e 6686 if (elf_shstrtab (abfd) != NULL
30e8ee25 6687 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
08a40648 6688 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
0a1b45a2 6689 return false;
252b5132 6690
cc364be6 6691 if (!(*bed->elf_backend_final_write_processing) (abfd))
0a1b45a2 6692 return false;
252b5132 6693
ff59fc36 6694 if (!bed->s->write_shdrs_and_ehdr (abfd))
0a1b45a2 6695 return false;
ff59fc36
RM
6696
6697 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
c0355132
AM
6698 if (t->o->build_id.after_write_object_contents != NULL)
6699 return (*t->o->build_id.after_write_object_contents) (abfd);
ff59fc36 6700
0a1b45a2 6701 return true;
252b5132
RH
6702}
6703
0a1b45a2 6704bool
217aa764 6705_bfd_elf_write_corefile_contents (bfd *abfd)
252b5132 6706{
c044fabd 6707 /* Hopefully this can be done just like an object file. */
252b5132
RH
6708 return _bfd_elf_write_object_contents (abfd);
6709}
c044fabd
KH
6710
6711/* Given a section, search the header to find them. */
6712
cb33740c 6713unsigned int
198beae2 6714_bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
252b5132 6715{
9c5bfbb7 6716 const struct elf_backend_data *bed;
91d6fa6a 6717 unsigned int sec_index;
252b5132 6718
9ad5cbcf
AM
6719 if (elf_section_data (asect) != NULL
6720 && elf_section_data (asect)->this_idx != 0)
6721 return elf_section_data (asect)->this_idx;
6722
6723 if (bfd_is_abs_section (asect))
91d6fa6a 6724 sec_index = SHN_ABS;
af746e92 6725 else if (bfd_is_com_section (asect))
91d6fa6a 6726 sec_index = SHN_COMMON;
af746e92 6727 else if (bfd_is_und_section (asect))
91d6fa6a 6728 sec_index = SHN_UNDEF;
af746e92 6729 else
91d6fa6a 6730 sec_index = SHN_BAD;
252b5132 6731
af746e92 6732 bed = get_elf_backend_data (abfd);
252b5132
RH
6733 if (bed->elf_backend_section_from_bfd_section)
6734 {
91d6fa6a 6735 int retval = sec_index;
9ad5cbcf 6736
af746e92
AM
6737 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6738 return retval;
252b5132
RH
6739 }
6740
91d6fa6a 6741 if (sec_index == SHN_BAD)
af746e92 6742 bfd_set_error (bfd_error_nonrepresentable_section);
252b5132 6743
91d6fa6a 6744 return sec_index;
252b5132
RH
6745}
6746
6747/* Given a BFD symbol, return the index in the ELF symbol table, or -1
6748 on error. */
6749
6750int
217aa764 6751_bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
252b5132
RH
6752{
6753 asymbol *asym_ptr = *asym_ptr_ptr;
6754 int idx;
6755 flagword flags = asym_ptr->flags;
6756
6757 /* When gas creates relocations against local labels, it creates its
6758 own symbol for the section, but does put the symbol into the
6759 symbol chain, so udata is 0. When the linker is generating
6760 relocatable output, this section symbol may be for one of the
6761 input sections rather than the output section. */
6762 if (asym_ptr->udata.i == 0
6763 && (flags & BSF_SECTION_SYM)
6764 && asym_ptr->section)
6765 {
5372391b 6766 asection *sec;
252b5132 6767
5372391b
AM
6768 sec = asym_ptr->section;
6769 if (sec->owner != abfd && sec->output_section != NULL)
6770 sec = sec->output_section;
6771 if (sec->owner == abfd
27e3da31
AM
6772 && sec->index < elf_num_section_syms (abfd)
6773 && elf_section_syms (abfd)[sec->index] != NULL)
6774 asym_ptr->udata.i = elf_section_syms (abfd)[sec->index]->udata.i;
252b5132
RH
6775 }
6776
6777 idx = asym_ptr->udata.i;
6778
6779 if (idx == 0)
6780 {
6781 /* This case can occur when using --strip-symbol on a symbol
08a40648 6782 which is used in a relocation entry. */
4eca0228 6783 _bfd_error_handler
695344c0 6784 /* xgettext:c-format */
871b3ab2 6785 (_("%pB: symbol `%s' required but not present"),
d003868e 6786 abfd, bfd_asymbol_name (asym_ptr));
252b5132
RH
6787 bfd_set_error (bfd_error_no_symbols);
6788 return -1;
6789 }
6790
6791#if DEBUG & 4
6792 {
6793 fprintf (stderr,
cd9af601
AM
6794 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6795 (long) asym_ptr, asym_ptr->name, idx, flags);
252b5132
RH
6796 fflush (stderr);
6797 }
6798#endif
6799
6800 return idx;
6801}
6802
84d1d650 6803/* Rewrite program header information. */
252b5132 6804
0a1b45a2 6805static bool
c410035d 6806rewrite_elf_program_header (bfd *ibfd, bfd *obfd, bfd_vma maxpagesize)
252b5132 6807{
b34976b6
AM
6808 Elf_Internal_Ehdr *iehdr;
6809 struct elf_segment_map *map;
6810 struct elf_segment_map *map_first;
6811 struct elf_segment_map **pointer_to_map;
6812 Elf_Internal_Phdr *segment;
6813 asection *section;
6814 unsigned int i;
6815 unsigned int num_segments;
0a1b45a2
AM
6816 bool phdr_included = false;
6817 bool p_paddr_valid;
b34976b6
AM
6818 struct elf_segment_map *phdr_adjust_seg = NULL;
6819 unsigned int phdr_adjust_num = 0;
9c5bfbb7 6820 const struct elf_backend_data *bed;
502794d4 6821 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
bc67d8a6 6822
caf47ea6 6823 bed = get_elf_backend_data (ibfd);
252b5132
RH
6824 iehdr = elf_elfheader (ibfd);
6825
bc67d8a6 6826 map_first = NULL;
c044fabd 6827 pointer_to_map = &map_first;
252b5132
RH
6828
6829 num_segments = elf_elfheader (ibfd)->e_phnum;
bc67d8a6
NC
6830
6831 /* Returns the end address of the segment + 1. */
aecc8f8a
AM
6832#define SEGMENT_END(segment, start) \
6833 (start + (segment->p_memsz > segment->p_filesz \
6834 ? segment->p_memsz : segment->p_filesz))
bc67d8a6 6835
eecdbe52
JJ
6836#define SECTION_SIZE(section, segment) \
6837 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6838 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
eea6121a 6839 ? section->size : 0)
eecdbe52 6840
b34976b6 6841 /* Returns TRUE if the given section is contained within
bc67d8a6 6842 the given segment. VMA addresses are compared. */
502794d4
CE
6843#define IS_CONTAINED_BY_VMA(section, segment, opb) \
6844 (section->vma * (opb) >= segment->p_vaddr \
6845 && (section->vma * (opb) + SECTION_SIZE (section, segment) \
aecc8f8a 6846 <= (SEGMENT_END (segment, segment->p_vaddr))))
c044fabd 6847
b34976b6 6848 /* Returns TRUE if the given section is contained within
bc67d8a6 6849 the given segment. LMA addresses are compared. */
502794d4
CE
6850#define IS_CONTAINED_BY_LMA(section, segment, base, opb) \
6851 (section->lma * (opb) >= base \
6852 && (section->lma + SECTION_SIZE (section, segment) / (opb) >= section->lma) \
6853 && (section->lma * (opb) + SECTION_SIZE (section, segment) \
aecc8f8a 6854 <= SEGMENT_END (segment, base)))
252b5132 6855
0efc80c8
L
6856 /* Handle PT_NOTE segment. */
6857#define IS_NOTE(p, s) \
aecc8f8a 6858 (p->p_type == PT_NOTE \
0efc80c8 6859 && elf_section_type (s) == SHT_NOTE \
aecc8f8a 6860 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6861 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6862 <= p->p_offset + p->p_filesz))
252b5132 6863
0efc80c8
L
6864 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6865 etc. */
6866#define IS_COREFILE_NOTE(p, s) \
6867 (IS_NOTE (p, s) \
6868 && bfd_get_format (ibfd) == bfd_core \
6869 && s->vma == 0 \
6870 && s->lma == 0)
6871
252b5132
RH
6872 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6873 linker, which generates a PT_INTERP section with p_vaddr and
6874 p_memsz set to 0. */
aecc8f8a
AM
6875#define IS_SOLARIS_PT_INTERP(p, s) \
6876 (p->p_vaddr == 0 \
6877 && p->p_paddr == 0 \
6878 && p->p_memsz == 0 \
6879 && p->p_filesz > 0 \
6880 && (s->flags & SEC_HAS_CONTENTS) != 0 \
eea6121a 6881 && s->size > 0 \
aecc8f8a 6882 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6883 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6884 <= p->p_offset + p->p_filesz))
5c440b1e 6885
bc67d8a6
NC
6886 /* Decide if the given section should be included in the given segment.
6887 A section will be included if:
f5ffc919 6888 1. It is within the address space of the segment -- we use the LMA
08a40648 6889 if that is set for the segment and the VMA otherwise,
0efc80c8 6890 2. It is an allocated section or a NOTE section in a PT_NOTE
d324f6d6 6891 segment.
bc67d8a6 6892 3. There is an output section associated with it,
eecdbe52 6893 4. The section has not already been allocated to a previous segment.
2b05f1b7 6894 5. PT_GNU_STACK segments do not include any sections.
03394ac9 6895 6. PT_TLS segment includes only SHF_TLS sections.
6f79b219
JJ
6896 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6897 8. PT_DYNAMIC should not contain empty sections at the beginning
08a40648 6898 (with the possible exception of .dynamic). */
502794d4 6899#define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed, opb) \
2b05f1b7 6900 ((((segment->p_paddr \
502794d4
CE
6901 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr, opb) \
6902 : IS_CONTAINED_BY_VMA (section, segment, opb)) \
2b05f1b7 6903 && (section->flags & SEC_ALLOC) != 0) \
0efc80c8 6904 || IS_NOTE (segment, section)) \
2b05f1b7
L
6905 && segment->p_type != PT_GNU_STACK \
6906 && (segment->p_type != PT_TLS \
6907 || (section->flags & SEC_THREAD_LOCAL)) \
6908 && (segment->p_type == PT_LOAD \
6909 || segment->p_type == PT_TLS \
6910 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6911 && (segment->p_type != PT_DYNAMIC \
6912 || SECTION_SIZE (section, segment) > 0 \
6913 || (segment->p_paddr \
502794d4
CE
6914 ? segment->p_paddr != section->lma * (opb) \
6915 : segment->p_vaddr != section->vma * (opb)) \
fd361982 6916 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
9933dc52 6917 && (segment->p_type != PT_LOAD || !section->segment_mark))
bc67d8a6 6918
9f17e2a6
L
6919/* If the output section of a section in the input segment is NULL,
6920 it is removed from the corresponding output segment. */
502794d4
CE
6921#define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed, opb) \
6922 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb) \
9f17e2a6
L
6923 && section->output_section != NULL)
6924
b34976b6 6925 /* Returns TRUE iff seg1 starts after the end of seg2. */
b5f852ea
NC
6926#define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6927 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6928
6929 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6930 their VMA address ranges and their LMA address ranges overlap.
6931 It is possible to have overlapping VMA ranges without overlapping LMA
6932 ranges. RedBoot images for example can have both .data and .bss mapped
6933 to the same VMA range, but with the .data section mapped to a different
6934 LMA. */
aecc8f8a 6935#define SEGMENT_OVERLAPS(seg1, seg2) \
b5f852ea 6936 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
08a40648 6937 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
b5f852ea 6938 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
08a40648 6939 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
bc67d8a6 6940
c82ebeb7 6941 /* Initialise the segment mark field, and discard stupid alignment. */
bc67d8a6 6942 for (section = ibfd->sections; section != NULL; section = section->next)
c82ebeb7
AM
6943 {
6944 asection *o = section->output_section;
6945 if (o != NULL && o->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
6946 o->alignment_power = 0;
6947 section->segment_mark = false;
6948 }
bc67d8a6 6949
5c44b38e
AM
6950 /* The Solaris linker creates program headers in which all the
6951 p_paddr fields are zero. When we try to objcopy or strip such a
6952 file, we get confused. Check for this case, and if we find it
6953 don't set the p_paddr_valid fields. */
0a1b45a2 6954 p_paddr_valid = false;
5c44b38e
AM
6955 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6956 i < num_segments;
6957 i++, segment++)
6958 if (segment->p_paddr != 0)
6959 {
0a1b45a2 6960 p_paddr_valid = true;
5c44b38e
AM
6961 break;
6962 }
6963
252b5132 6964 /* Scan through the segments specified in the program header
bc67d8a6 6965 of the input BFD. For this first scan we look for overlaps
9ad5cbcf 6966 in the loadable segments. These can be created by weird
aecc8f8a 6967 parameters to objcopy. Also, fix some solaris weirdness. */
bc67d8a6
NC
6968 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6969 i < num_segments;
c044fabd 6970 i++, segment++)
252b5132 6971 {
252b5132 6972 unsigned int j;
c044fabd 6973 Elf_Internal_Phdr *segment2;
252b5132 6974
aecc8f8a
AM
6975 if (segment->p_type == PT_INTERP)
6976 for (section = ibfd->sections; section; section = section->next)
6977 if (IS_SOLARIS_PT_INTERP (segment, section))
6978 {
6979 /* Mininal change so that the normal section to segment
4cc11e76 6980 assignment code will work. */
502794d4 6981 segment->p_vaddr = section->vma * opb;
aecc8f8a
AM
6982 break;
6983 }
6984
bc67d8a6 6985 if (segment->p_type != PT_LOAD)
b10a8ae0
L
6986 {
6987 /* Remove PT_GNU_RELRO segment. */
6988 if (segment->p_type == PT_GNU_RELRO)
6989 segment->p_type = PT_NULL;
6990 continue;
6991 }
c044fabd 6992
bc67d8a6 6993 /* Determine if this segment overlaps any previous segments. */
0067a569 6994 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
bc67d8a6
NC
6995 {
6996 bfd_signed_vma extra_length;
c044fabd 6997
bc67d8a6 6998 if (segment2->p_type != PT_LOAD
0067a569 6999 || !SEGMENT_OVERLAPS (segment, segment2))
bc67d8a6 7000 continue;
c044fabd 7001
bc67d8a6
NC
7002 /* Merge the two segments together. */
7003 if (segment2->p_vaddr < segment->p_vaddr)
7004 {
c044fabd 7005 /* Extend SEGMENT2 to include SEGMENT and then delete
08a40648 7006 SEGMENT. */
0067a569
AM
7007 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
7008 - SEGMENT_END (segment2, segment2->p_vaddr));
c044fabd 7009
bc67d8a6
NC
7010 if (extra_length > 0)
7011 {
0067a569 7012 segment2->p_memsz += extra_length;
bc67d8a6
NC
7013 segment2->p_filesz += extra_length;
7014 }
c044fabd 7015
bc67d8a6 7016 segment->p_type = PT_NULL;
c044fabd 7017
bc67d8a6
NC
7018 /* Since we have deleted P we must restart the outer loop. */
7019 i = 0;
7020 segment = elf_tdata (ibfd)->phdr;
7021 break;
7022 }
7023 else
7024 {
c044fabd 7025 /* Extend SEGMENT to include SEGMENT2 and then delete
08a40648 7026 SEGMENT2. */
0067a569
AM
7027 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
7028 - SEGMENT_END (segment, segment->p_vaddr));
c044fabd 7029
bc67d8a6
NC
7030 if (extra_length > 0)
7031 {
0067a569 7032 segment->p_memsz += extra_length;
bc67d8a6
NC
7033 segment->p_filesz += extra_length;
7034 }
c044fabd 7035
bc67d8a6
NC
7036 segment2->p_type = PT_NULL;
7037 }
7038 }
7039 }
c044fabd 7040
bc67d8a6
NC
7041 /* The second scan attempts to assign sections to segments. */
7042 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7043 i < num_segments;
0067a569 7044 i++, segment++)
bc67d8a6 7045 {
0067a569
AM
7046 unsigned int section_count;
7047 asection **sections;
7048 asection *output_section;
7049 unsigned int isec;
9933dc52
AM
7050 asection *matching_lma;
7051 asection *suggested_lma;
0067a569 7052 unsigned int j;
446f7ed5 7053 size_t amt;
0067a569 7054 asection *first_section;
bc67d8a6
NC
7055
7056 if (segment->p_type == PT_NULL)
7057 continue;
c044fabd 7058
9f17e2a6 7059 first_section = NULL;
bc67d8a6 7060 /* Compute how many sections might be placed into this segment. */
b5f852ea
NC
7061 for (section = ibfd->sections, section_count = 0;
7062 section != NULL;
7063 section = section->next)
9f17e2a6
L
7064 {
7065 /* Find the first section in the input segment, which may be
7066 removed from the corresponding output segment. */
502794d4 7067 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb))
9f17e2a6
L
7068 {
7069 if (first_section == NULL)
7070 first_section = section;
7071 if (section->output_section != NULL)
7072 ++section_count;
7073 }
7074 }
811072d8 7075
b5f852ea
NC
7076 /* Allocate a segment map big enough to contain
7077 all of the sections we have selected. */
00bee008 7078 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7079 amt += section_count * sizeof (asection *);
a50b1753 7080 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7081 if (map == NULL)
0a1b45a2 7082 return false;
252b5132
RH
7083
7084 /* Initialise the fields of the segment map. Default to
7085 using the physical address of the segment in the input BFD. */
0067a569
AM
7086 map->next = NULL;
7087 map->p_type = segment->p_type;
7088 map->p_flags = segment->p_flags;
bc67d8a6 7089 map->p_flags_valid = 1;
55d55ac7 7090
c410035d
AM
7091 if (map->p_type == PT_LOAD
7092 && (ibfd->flags & D_PAGED) != 0
7093 && maxpagesize > 1
7094 && segment->p_align > 1)
7095 {
7096 map->p_align = segment->p_align;
7097 if (segment->p_align > maxpagesize)
7098 map->p_align = maxpagesize;
7099 map->p_align_valid = 1;
7100 }
7101
9f17e2a6
L
7102 /* If the first section in the input segment is removed, there is
7103 no need to preserve segment physical address in the corresponding
7104 output segment. */
945c025a 7105 if (!first_section || first_section->output_section != NULL)
9f17e2a6
L
7106 {
7107 map->p_paddr = segment->p_paddr;
5c44b38e 7108 map->p_paddr_valid = p_paddr_valid;
9f17e2a6 7109 }
252b5132
RH
7110
7111 /* Determine if this segment contains the ELF file header
7112 and if it contains the program headers themselves. */
bc67d8a6
NC
7113 map->includes_filehdr = (segment->p_offset == 0
7114 && segment->p_filesz >= iehdr->e_ehsize);
bc67d8a6 7115 map->includes_phdrs = 0;
252b5132 7116
0067a569 7117 if (!phdr_included || segment->p_type != PT_LOAD)
252b5132 7118 {
bc67d8a6
NC
7119 map->includes_phdrs =
7120 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7121 && (segment->p_offset + segment->p_filesz
252b5132
RH
7122 >= ((bfd_vma) iehdr->e_phoff
7123 + iehdr->e_phnum * iehdr->e_phentsize)));
c044fabd 7124
bc67d8a6 7125 if (segment->p_type == PT_LOAD && map->includes_phdrs)
0a1b45a2 7126 phdr_included = true;
252b5132
RH
7127 }
7128
bc67d8a6 7129 if (section_count == 0)
252b5132
RH
7130 {
7131 /* Special segments, such as the PT_PHDR segment, may contain
7132 no sections, but ordinary, loadable segments should contain
1ed89aa9 7133 something. They are allowed by the ELF spec however, so only
07d6d2b8 7134 a warning is produced.
f98450c6
NC
7135 There is however the valid use case of embedded systems which
7136 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7137 flash memory with zeros. No warning is shown for that case. */
7138 if (segment->p_type == PT_LOAD
7139 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7140 /* xgettext:c-format */
9793eb77
AM
7141 _bfd_error_handler
7142 (_("%pB: warning: empty loadable segment detected"
7143 " at vaddr=%#" PRIx64 ", is this intentional?"),
7144 ibfd, (uint64_t) segment->p_vaddr);
252b5132 7145
502794d4 7146 map->p_vaddr_offset = segment->p_vaddr / opb;
bc67d8a6 7147 map->count = 0;
c044fabd
KH
7148 *pointer_to_map = map;
7149 pointer_to_map = &map->next;
252b5132
RH
7150
7151 continue;
7152 }
7153
7154 /* Now scan the sections in the input BFD again and attempt
7155 to add their corresponding output sections to the segment map.
7156 The problem here is how to handle an output section which has
7157 been moved (ie had its LMA changed). There are four possibilities:
7158
7159 1. None of the sections have been moved.
7160 In this case we can continue to use the segment LMA from the
7161 input BFD.
7162
7163 2. All of the sections have been moved by the same amount.
7164 In this case we can change the segment's LMA to match the LMA
7165 of the first section.
7166
7167 3. Some of the sections have been moved, others have not.
7168 In this case those sections which have not been moved can be
7169 placed in the current segment which will have to have its size,
7170 and possibly its LMA changed, and a new segment or segments will
7171 have to be created to contain the other sections.
7172
b5f852ea 7173 4. The sections have been moved, but not by the same amount.
252b5132
RH
7174 In this case we can change the segment's LMA to match the LMA
7175 of the first section and we will have to create a new segment
7176 or segments to contain the other sections.
7177
7178 In order to save time, we allocate an array to hold the section
7179 pointers that we are interested in. As these sections get assigned
7180 to a segment, they are removed from this array. */
7181
446f7ed5
AM
7182 amt = section_count * sizeof (asection *);
7183 sections = (asection **) bfd_malloc (amt);
252b5132 7184 if (sections == NULL)
0a1b45a2 7185 return false;
252b5132
RH
7186
7187 /* Step One: Scan for segment vs section LMA conflicts.
7188 Also add the sections to the section array allocated above.
7189 Also add the sections to the current segment. In the common
7190 case, where the sections have not been moved, this means that
7191 we have completely filled the segment, and there is nothing
7192 more to do. */
252b5132 7193 isec = 0;
9933dc52
AM
7194 matching_lma = NULL;
7195 suggested_lma = NULL;
252b5132 7196
461c4b2e 7197 for (section = first_section, j = 0;
bc67d8a6
NC
7198 section != NULL;
7199 section = section->next)
252b5132 7200 {
502794d4 7201 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed, opb))
c0f7859b 7202 {
bc67d8a6
NC
7203 output_section = section->output_section;
7204
0067a569 7205 sections[j++] = section;
252b5132
RH
7206
7207 /* The Solaris native linker always sets p_paddr to 0.
7208 We try to catch that case here, and set it to the
5e8d7549
NC
7209 correct value. Note - some backends require that
7210 p_paddr be left as zero. */
5c44b38e 7211 if (!p_paddr_valid
4455705d 7212 && segment->p_vaddr != 0
0067a569 7213 && !bed->want_p_paddr_set_to_zero
252b5132 7214 && isec == 0
bc67d8a6 7215 && output_section->lma != 0
9933dc52
AM
7216 && (align_power (segment->p_vaddr
7217 + (map->includes_filehdr
7218 ? iehdr->e_ehsize : 0)
7219 + (map->includes_phdrs
7220 ? iehdr->e_phnum * iehdr->e_phentsize
7221 : 0),
66631823
CE
7222 output_section->alignment_power * opb)
7223 == (output_section->vma * opb)))
bc67d8a6 7224 map->p_paddr = segment->p_vaddr;
252b5132
RH
7225
7226 /* Match up the physical address of the segment with the
7227 LMA address of the output section. */
502794d4
CE
7228 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7229 opb)
5e8d7549 7230 || IS_COREFILE_NOTE (segment, section)
0067a569 7231 || (bed->want_p_paddr_set_to_zero
502794d4 7232 && IS_CONTAINED_BY_VMA (output_section, segment, opb)))
252b5132 7233 {
9933dc52
AM
7234 if (matching_lma == NULL
7235 || output_section->lma < matching_lma->lma)
7236 matching_lma = output_section;
252b5132
RH
7237
7238 /* We assume that if the section fits within the segment
bc67d8a6 7239 then it does not overlap any other section within that
252b5132 7240 segment. */
0067a569
AM
7241 map->sections[isec++] = output_section;
7242 }
9933dc52
AM
7243 else if (suggested_lma == NULL)
7244 suggested_lma = output_section;
147d51c2
L
7245
7246 if (j == section_count)
7247 break;
252b5132
RH
7248 }
7249 }
7250
bc67d8a6 7251 BFD_ASSERT (j == section_count);
252b5132
RH
7252
7253 /* Step Two: Adjust the physical address of the current segment,
7254 if necessary. */
bc67d8a6 7255 if (isec == section_count)
252b5132
RH
7256 {
7257 /* All of the sections fitted within the segment as currently
7258 specified. This is the default case. Add the segment to
7259 the list of built segments and carry on to process the next
7260 program header in the input BFD. */
bc67d8a6 7261 map->count = section_count;
c044fabd
KH
7262 *pointer_to_map = map;
7263 pointer_to_map = &map->next;
08a40648 7264
5c44b38e 7265 if (p_paddr_valid
30fe1832
AM
7266 && !bed->want_p_paddr_set_to_zero)
7267 {
7268 bfd_vma hdr_size = 0;
7269 if (map->includes_filehdr)
7270 hdr_size = iehdr->e_ehsize;
7271 if (map->includes_phdrs)
7272 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7273
7274 /* Account for padding before the first section in the
7275 segment. */
502794d4
CE
7276 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
7277 - matching_lma->lma);
30fe1832 7278 }
08a40648 7279
252b5132
RH
7280 free (sections);
7281 continue;
7282 }
252b5132
RH
7283 else
7284 {
9933dc52
AM
7285 /* Change the current segment's physical address to match
7286 the LMA of the first section that fitted, or if no
7287 section fitted, the first section. */
7288 if (matching_lma == NULL)
7289 matching_lma = suggested_lma;
7290
66631823 7291 map->p_paddr = matching_lma->lma * opb;
72730e0c 7292
bc67d8a6
NC
7293 /* Offset the segment physical address from the lma
7294 to allow for space taken up by elf headers. */
9933dc52 7295 if (map->includes_phdrs)
010c8431 7296 {
9933dc52
AM
7297 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7298
7299 /* iehdr->e_phnum is just an estimate of the number
7300 of program headers that we will need. Make a note
7301 here of the number we used and the segment we chose
7302 to hold these headers, so that we can adjust the
7303 offset when we know the correct value. */
7304 phdr_adjust_num = iehdr->e_phnum;
7305 phdr_adjust_seg = map;
010c8431 7306 }
252b5132 7307
9933dc52 7308 if (map->includes_filehdr)
bc67d8a6 7309 {
9933dc52
AM
7310 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7311 map->p_paddr -= iehdr->e_ehsize;
7312 /* We've subtracted off the size of headers from the
7313 first section lma, but there may have been some
7314 alignment padding before that section too. Try to
7315 account for that by adjusting the segment lma down to
7316 the same alignment. */
7317 if (segment->p_align != 0 && segment->p_align < align)
7318 align = segment->p_align;
66631823 7319 map->p_paddr &= -(align * opb);
bc67d8a6 7320 }
252b5132
RH
7321 }
7322
7323 /* Step Three: Loop over the sections again, this time assigning
caf47ea6 7324 those that fit to the current segment and removing them from the
252b5132
RH
7325 sections array; but making sure not to leave large gaps. Once all
7326 possible sections have been assigned to the current segment it is
7327 added to the list of built segments and if sections still remain
7328 to be assigned, a new segment is constructed before repeating
7329 the loop. */
7330 isec = 0;
7331 do
7332 {
bc67d8a6 7333 map->count = 0;
9933dc52 7334 suggested_lma = NULL;
252b5132
RH
7335
7336 /* Fill the current segment with sections that fit. */
bc67d8a6 7337 for (j = 0; j < section_count; j++)
252b5132 7338 {
bc67d8a6 7339 section = sections[j];
252b5132 7340
bc67d8a6 7341 if (section == NULL)
252b5132
RH
7342 continue;
7343
bc67d8a6 7344 output_section = section->output_section;
252b5132 7345
bc67d8a6 7346 BFD_ASSERT (output_section != NULL);
c044fabd 7347
502794d4
CE
7348 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7349 opb)
bc67d8a6 7350 || IS_COREFILE_NOTE (segment, section))
252b5132 7351 {
bc67d8a6 7352 if (map->count == 0)
252b5132
RH
7353 {
7354 /* If the first section in a segment does not start at
bc67d8a6
NC
7355 the beginning of the segment, then something is
7356 wrong. */
9933dc52
AM
7357 if (align_power (map->p_paddr
7358 + (map->includes_filehdr
7359 ? iehdr->e_ehsize : 0)
7360 + (map->includes_phdrs
7361 ? iehdr->e_phnum * iehdr->e_phentsize
7362 : 0),
66631823
CE
7363 output_section->alignment_power * opb)
7364 != output_section->lma * opb)
9aea1e31 7365 goto sorry;
252b5132
RH
7366 }
7367 else
7368 {
0067a569 7369 asection *prev_sec;
252b5132 7370
bc67d8a6 7371 prev_sec = map->sections[map->count - 1];
252b5132
RH
7372
7373 /* If the gap between the end of the previous section
bc67d8a6
NC
7374 and the start of this section is more than
7375 maxpagesize then we need to start a new segment. */
eea6121a 7376 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
079e9a2f 7377 maxpagesize)
caf47ea6 7378 < BFD_ALIGN (output_section->lma, maxpagesize))
0067a569 7379 || (prev_sec->lma + prev_sec->size
079e9a2f 7380 > output_section->lma))
252b5132 7381 {
9933dc52
AM
7382 if (suggested_lma == NULL)
7383 suggested_lma = output_section;
252b5132
RH
7384
7385 continue;
7386 }
7387 }
7388
bc67d8a6 7389 map->sections[map->count++] = output_section;
252b5132
RH
7390 ++isec;
7391 sections[j] = NULL;
9933dc52 7392 if (segment->p_type == PT_LOAD)
0a1b45a2 7393 section->segment_mark = true;
0067a569 7394 }
9933dc52
AM
7395 else if (suggested_lma == NULL)
7396 suggested_lma = output_section;
252b5132
RH
7397 }
7398
beab4532
NC
7399 /* PR 23932. A corrupt input file may contain sections that cannot
7400 be assigned to any segment - because for example they have a
9984857c
NC
7401 negative size - or segments that do not contain any sections.
7402 But there are also valid reasons why a segment can be empty.
7403 So allow a count of zero. */
252b5132
RH
7404
7405 /* Add the current segment to the list of built segments. */
c044fabd
KH
7406 *pointer_to_map = map;
7407 pointer_to_map = &map->next;
252b5132 7408
bc67d8a6 7409 if (isec < section_count)
252b5132
RH
7410 {
7411 /* We still have not allocated all of the sections to
7412 segments. Create a new segment here, initialise it
7413 and carry on looping. */
00bee008 7414 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
446f7ed5 7415 amt += section_count * sizeof (asection *);
5964fc3a 7416 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7417 if (map == NULL)
5ed6aba4
NC
7418 {
7419 free (sections);
0a1b45a2 7420 return false;
5ed6aba4 7421 }
252b5132
RH
7422
7423 /* Initialise the fields of the segment map. Set the physical
7424 physical address to the LMA of the first section that has
7425 not yet been assigned. */
0067a569
AM
7426 map->next = NULL;
7427 map->p_type = segment->p_type;
7428 map->p_flags = segment->p_flags;
7429 map->p_flags_valid = 1;
66631823 7430 map->p_paddr = suggested_lma->lma * opb;
5c44b38e 7431 map->p_paddr_valid = p_paddr_valid;
bc67d8a6 7432 map->includes_filehdr = 0;
0067a569 7433 map->includes_phdrs = 0;
252b5132 7434 }
9984857c
NC
7435
7436 continue;
7437 sorry:
7438 bfd_set_error (bfd_error_sorry);
7439 free (sections);
0a1b45a2 7440 return false;
252b5132 7441 }
bc67d8a6 7442 while (isec < section_count);
252b5132
RH
7443
7444 free (sections);
7445 }
7446
12bd6957 7447 elf_seg_map (obfd) = map_first;
bc67d8a6
NC
7448
7449 /* If we had to estimate the number of program headers that were
9ad5cbcf 7450 going to be needed, then check our estimate now and adjust
bc67d8a6
NC
7451 the offset if necessary. */
7452 if (phdr_adjust_seg != NULL)
7453 {
7454 unsigned int count;
c044fabd 7455
bc67d8a6 7456 for (count = 0, map = map_first; map != NULL; map = map->next)
c044fabd 7457 count++;
252b5132 7458
bc67d8a6
NC
7459 if (count > phdr_adjust_num)
7460 phdr_adjust_seg->p_paddr
7461 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
9933dc52
AM
7462
7463 for (map = map_first; map != NULL; map = map->next)
7464 if (map->p_type == PT_PHDR)
7465 {
7466 bfd_vma adjust
7467 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7468 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7469 break;
7470 }
bc67d8a6 7471 }
c044fabd 7472
bc67d8a6 7473#undef SEGMENT_END
eecdbe52 7474#undef SECTION_SIZE
bc67d8a6
NC
7475#undef IS_CONTAINED_BY_VMA
7476#undef IS_CONTAINED_BY_LMA
0efc80c8 7477#undef IS_NOTE
252b5132 7478#undef IS_COREFILE_NOTE
bc67d8a6 7479#undef IS_SOLARIS_PT_INTERP
9f17e2a6 7480#undef IS_SECTION_IN_INPUT_SEGMENT
bc67d8a6
NC
7481#undef INCLUDE_SECTION_IN_SEGMENT
7482#undef SEGMENT_AFTER_SEGMENT
7483#undef SEGMENT_OVERLAPS
0a1b45a2 7484 return true;
252b5132
RH
7485}
7486
84d1d650
L
7487/* Copy ELF program header information. */
7488
0a1b45a2 7489static bool
84d1d650
L
7490copy_elf_program_header (bfd *ibfd, bfd *obfd)
7491{
7492 Elf_Internal_Ehdr *iehdr;
7493 struct elf_segment_map *map;
7494 struct elf_segment_map *map_first;
7495 struct elf_segment_map **pointer_to_map;
7496 Elf_Internal_Phdr *segment;
7497 unsigned int i;
7498 unsigned int num_segments;
0a1b45a2
AM
7499 bool phdr_included = false;
7500 bool p_paddr_valid;
502794d4 7501 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
84d1d650
L
7502
7503 iehdr = elf_elfheader (ibfd);
7504
7505 map_first = NULL;
7506 pointer_to_map = &map_first;
7507
88967714
AM
7508 /* If all the segment p_paddr fields are zero, don't set
7509 map->p_paddr_valid. */
0a1b45a2 7510 p_paddr_valid = false;
84d1d650 7511 num_segments = elf_elfheader (ibfd)->e_phnum;
88967714
AM
7512 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7513 i < num_segments;
7514 i++, segment++)
7515 if (segment->p_paddr != 0)
7516 {
0a1b45a2 7517 p_paddr_valid = true;
88967714
AM
7518 break;
7519 }
7520
84d1d650
L
7521 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7522 i < num_segments;
7523 i++, segment++)
7524 {
7525 asection *section;
7526 unsigned int section_count;
986f0783 7527 size_t amt;
84d1d650 7528 Elf_Internal_Shdr *this_hdr;
53020534 7529 asection *first_section = NULL;
a76e6f2f 7530 asection *lowest_section;
84d1d650 7531
84d1d650
L
7532 /* Compute how many sections are in this segment. */
7533 for (section = ibfd->sections, section_count = 0;
7534 section != NULL;
7535 section = section->next)
7536 {
7537 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7538 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
3271a814 7539 {
a76e6f2f
AM
7540 if (first_section == NULL)
7541 first_section = section;
3271a814
NS
7542 section_count++;
7543 }
84d1d650
L
7544 }
7545
7546 /* Allocate a segment map big enough to contain
7547 all of the sections we have selected. */
00bee008 7548 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
986f0783 7549 amt += section_count * sizeof (asection *);
a50b1753 7550 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
84d1d650 7551 if (map == NULL)
0a1b45a2 7552 return false;
84d1d650
L
7553
7554 /* Initialize the fields of the output segment map with the
7555 input segment. */
7556 map->next = NULL;
7557 map->p_type = segment->p_type;
7558 map->p_flags = segment->p_flags;
7559 map->p_flags_valid = 1;
7560 map->p_paddr = segment->p_paddr;
88967714 7561 map->p_paddr_valid = p_paddr_valid;
3f570048
AM
7562 map->p_align = segment->p_align;
7563 map->p_align_valid = 1;
3271a814 7564 map->p_vaddr_offset = 0;
84d1d650 7565
04c3a755
NS
7566 if (map->p_type == PT_GNU_RELRO
7567 || map->p_type == PT_GNU_STACK)
b10a8ae0
L
7568 {
7569 /* The PT_GNU_RELRO segment may contain the first a few
7570 bytes in the .got.plt section even if the whole .got.plt
7571 section isn't in the PT_GNU_RELRO segment. We won't
04c3a755
NS
7572 change the size of the PT_GNU_RELRO segment.
7573 Similarly, PT_GNU_STACK size is significant on uclinux
7574 systems. */
9433b9b1 7575 map->p_size = segment->p_memsz;
b10a8ae0
L
7576 map->p_size_valid = 1;
7577 }
7578
84d1d650
L
7579 /* Determine if this segment contains the ELF file header
7580 and if it contains the program headers themselves. */
7581 map->includes_filehdr = (segment->p_offset == 0
7582 && segment->p_filesz >= iehdr->e_ehsize);
7583
7584 map->includes_phdrs = 0;
7585 if (! phdr_included || segment->p_type != PT_LOAD)
7586 {
7587 map->includes_phdrs =
7588 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7589 && (segment->p_offset + segment->p_filesz
7590 >= ((bfd_vma) iehdr->e_phoff
7591 + iehdr->e_phnum * iehdr->e_phentsize)));
7592
7593 if (segment->p_type == PT_LOAD && map->includes_phdrs)
0a1b45a2 7594 phdr_included = true;
84d1d650
L
7595 }
7596
bbefd0a9 7597 lowest_section = NULL;
84d1d650
L
7598 if (section_count != 0)
7599 {
7600 unsigned int isec = 0;
7601
53020534 7602 for (section = first_section;
84d1d650
L
7603 section != NULL;
7604 section = section->next)
7605 {
7606 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7607 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
53020534
L
7608 {
7609 map->sections[isec++] = section->output_section;
a76e6f2f
AM
7610 if ((section->flags & SEC_ALLOC) != 0)
7611 {
7612 bfd_vma seg_off;
7613
bbefd0a9
AM
7614 if (lowest_section == NULL
7615 || section->lma < lowest_section->lma)
fb8a5684
AM
7616 lowest_section = section;
7617
a76e6f2f
AM
7618 /* Section lmas are set up from PT_LOAD header
7619 p_paddr in _bfd_elf_make_section_from_shdr.
7620 If this header has a p_paddr that disagrees
7621 with the section lma, flag the p_paddr as
7622 invalid. */
7623 if ((section->flags & SEC_LOAD) != 0)
7624 seg_off = this_hdr->sh_offset - segment->p_offset;
7625 else
7626 seg_off = this_hdr->sh_addr - segment->p_vaddr;
502794d4 7627 if (section->lma * opb - segment->p_paddr != seg_off)
0a1b45a2 7628 map->p_paddr_valid = false;
a76e6f2f 7629 }
53020534
L
7630 if (isec == section_count)
7631 break;
7632 }
84d1d650
L
7633 }
7634 }
7635
5d695627 7636 if (section_count == 0)
502794d4 7637 map->p_vaddr_offset = segment->p_vaddr / opb;
30fe1832
AM
7638 else if (map->p_paddr_valid)
7639 {
7640 /* Account for padding before the first section in the segment. */
7641 bfd_vma hdr_size = 0;
7642 if (map->includes_filehdr)
7643 hdr_size = iehdr->e_ehsize;
7644 if (map->includes_phdrs)
7645 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7646
502794d4 7647 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
30fe1832
AM
7648 - (lowest_section ? lowest_section->lma : 0));
7649 }
a76e6f2f 7650
84d1d650
L
7651 map->count = section_count;
7652 *pointer_to_map = map;
7653 pointer_to_map = &map->next;
7654 }
7655
12bd6957 7656 elf_seg_map (obfd) = map_first;
0a1b45a2 7657 return true;
84d1d650
L
7658}
7659
7660/* Copy private BFD data. This copies or rewrites ELF program header
7661 information. */
7662
0a1b45a2 7663static bool
84d1d650
L
7664copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7665{
c410035d
AM
7666 bfd_vma maxpagesize;
7667
84d1d650
L
7668 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7669 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
0a1b45a2 7670 return true;
84d1d650
L
7671
7672 if (elf_tdata (ibfd)->phdr == NULL)
0a1b45a2 7673 return true;
84d1d650
L
7674
7675 if (ibfd->xvec == obfd->xvec)
7676 {
cb3ff1e5
NC
7677 /* Check to see if any sections in the input BFD
7678 covered by ELF program header have changed. */
d55ce4e2 7679 Elf_Internal_Phdr *segment;
84d1d650
L
7680 asection *section, *osec;
7681 unsigned int i, num_segments;
7682 Elf_Internal_Shdr *this_hdr;
147d51c2
L
7683 const struct elf_backend_data *bed;
7684
7685 bed = get_elf_backend_data (ibfd);
7686
7687 /* Regenerate the segment map if p_paddr is set to 0. */
7688 if (bed->want_p_paddr_set_to_zero)
7689 goto rewrite;
84d1d650
L
7690
7691 /* Initialize the segment mark field. */
7692 for (section = obfd->sections; section != NULL;
7693 section = section->next)
0a1b45a2 7694 section->segment_mark = false;
84d1d650
L
7695
7696 num_segments = elf_elfheader (ibfd)->e_phnum;
7697 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7698 i < num_segments;
7699 i++, segment++)
7700 {
5f6999aa
NC
7701 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7702 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7703 which severly confuses things, so always regenerate the segment
7704 map in this case. */
7705 if (segment->p_paddr == 0
7706 && segment->p_memsz == 0
7707 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
cb3ff1e5 7708 goto rewrite;
5f6999aa 7709
84d1d650
L
7710 for (section = ibfd->sections;
7711 section != NULL; section = section->next)
7712 {
7713 /* We mark the output section so that we know it comes
7714 from the input BFD. */
7715 osec = section->output_section;
7716 if (osec)
0a1b45a2 7717 osec->segment_mark = true;
84d1d650
L
7718
7719 /* Check if this section is covered by the segment. */
7720 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7721 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
84d1d650
L
7722 {
7723 /* FIXME: Check if its output section is changed or
7724 removed. What else do we need to check? */
7725 if (osec == NULL
7726 || section->flags != osec->flags
7727 || section->lma != osec->lma
7728 || section->vma != osec->vma
7729 || section->size != osec->size
7730 || section->rawsize != osec->rawsize
7731 || section->alignment_power != osec->alignment_power)
7732 goto rewrite;
7733 }
7734 }
7735 }
7736
cb3ff1e5 7737 /* Check to see if any output section do not come from the
84d1d650
L
7738 input BFD. */
7739 for (section = obfd->sections; section != NULL;
7740 section = section->next)
7741 {
535b785f 7742 if (!section->segment_mark)
84d1d650
L
7743 goto rewrite;
7744 else
0a1b45a2 7745 section->segment_mark = false;
84d1d650
L
7746 }
7747
7748 return copy_elf_program_header (ibfd, obfd);
7749 }
7750
dc1e8a47 7751 rewrite:
c410035d 7752 maxpagesize = 0;
f1d85785
L
7753 if (ibfd->xvec == obfd->xvec)
7754 {
7755 /* When rewriting program header, set the output maxpagesize to
7756 the maximum alignment of input PT_LOAD segments. */
7757 Elf_Internal_Phdr *segment;
7758 unsigned int i;
7759 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
f1d85785
L
7760
7761 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7762 i < num_segments;
7763 i++, segment++)
7764 if (segment->p_type == PT_LOAD
7765 && maxpagesize < segment->p_align)
c86934ce
NC
7766 {
7767 /* PR 17512: file: f17299af. */
7768 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
695344c0 7769 /* xgettext:c-format */
2dcf00ce
AM
7770 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7771 PRIx64 " is too large"),
7772 ibfd, (uint64_t) segment->p_align);
c86934ce
NC
7773 else
7774 maxpagesize = segment->p_align;
7775 }
f1d85785 7776 }
c410035d
AM
7777 if (maxpagesize == 0)
7778 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
f1d85785 7779
c410035d 7780 return rewrite_elf_program_header (ibfd, obfd, maxpagesize);
84d1d650
L
7781}
7782
ccd2ec6a
L
7783/* Initialize private output section information from input section. */
7784
0a1b45a2 7785bool
ccd2ec6a
L
7786_bfd_elf_init_private_section_data (bfd *ibfd,
7787 asection *isec,
7788 bfd *obfd,
7789 asection *osec,
7790 struct bfd_link_info *link_info)
7791
7792{
7793 Elf_Internal_Shdr *ihdr, *ohdr;
0a1b45a2
AM
7794 bool final_link = (link_info != NULL
7795 && !bfd_link_relocatable (link_info));
ccd2ec6a
L
7796
7797 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7798 || obfd->xvec->flavour != bfd_target_elf_flavour)
0a1b45a2 7799 return true;
ccd2ec6a 7800
ba85c43e
NC
7801 BFD_ASSERT (elf_section_data (osec) != NULL);
7802
8c803a2d
AM
7803 /* If this is a known ABI section, ELF section type and flags may
7804 have been set up when OSEC was created. For normal sections we
7805 allow the user to override the type and flags other than
7806 SHF_MASKOS and SHF_MASKPROC. */
7807 if (elf_section_type (osec) == SHT_PROGBITS
7808 || elf_section_type (osec) == SHT_NOTE
7809 || elf_section_type (osec) == SHT_NOBITS)
7810 elf_section_type (osec) = SHT_NULL;
7811 /* For objcopy and relocatable link, copy the ELF section type from
7812 the input file if the BFD section flags are the same. (If they
7813 are different the user may be doing something like
7814 "objcopy --set-section-flags .text=alloc,data".) For a final
7815 link allow some flags that the linker clears to differ. */
42bb2e33 7816 if (elf_section_type (osec) == SHT_NULL
dfa7b0b8
AM
7817 && (osec->flags == isec->flags
7818 || (final_link
7819 && ((osec->flags ^ isec->flags)
0814be7d 7820 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
42bb2e33 7821 elf_section_type (osec) = elf_section_type (isec);
d270463e
L
7822
7823 /* FIXME: Is this correct for all OS/PROC specific flags? */
8c803a2d
AM
7824 elf_section_flags (osec) = (elf_section_flags (isec)
7825 & (SHF_MASKOS | SHF_MASKPROC));
ccd2ec6a 7826
a91e1603 7827 /* Copy sh_info from input for mbind section. */
df3a023b
AM
7828 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7829 && elf_section_flags (isec) & SHF_GNU_MBIND)
a91e1603
L
7830 elf_section_data (osec)->this_hdr.sh_info
7831 = elf_section_data (isec)->this_hdr.sh_info;
7832
ccd2ec6a
L
7833 /* Set things up for objcopy and relocatable link. The output
7834 SHT_GROUP section will have its elf_next_in_group pointing back
7835 to the input group members. Ignore linker created group section.
7836 See elfNN_ia64_object_p in elfxx-ia64.c. */
7bdf4127
AB
7837 if ((link_info == NULL
7838 || !link_info->resolve_section_groups)
7839 && (elf_sec_group (isec) == NULL
7840 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
ccd2ec6a 7841 {
7bdf4127
AB
7842 if (elf_section_flags (isec) & SHF_GROUP)
7843 elf_section_flags (osec) |= SHF_GROUP;
7844 elf_next_in_group (osec) = elf_next_in_group (isec);
7845 elf_section_data (osec)->group = elf_section_data (isec)->group;
ccd2ec6a
L
7846 }
7847
7bdf4127
AB
7848 /* If not decompress, preserve SHF_COMPRESSED. */
7849 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7850 elf_section_flags (osec) |= (elf_section_flags (isec)
7851 & SHF_COMPRESSED);
7852
ccd2ec6a
L
7853 ihdr = &elf_section_data (isec)->this_hdr;
7854
7855 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7856 don't use the output section of the linked-to section since it
7857 may be NULL at this point. */
7858 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7859 {
7860 ohdr = &elf_section_data (osec)->this_hdr;
7861 ohdr->sh_flags |= SHF_LINK_ORDER;
7862 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7863 }
7864
7865 osec->use_rela_p = isec->use_rela_p;
7866
0a1b45a2 7867 return true;
ccd2ec6a
L
7868}
7869
252b5132
RH
7870/* Copy private section information. This copies over the entsize
7871 field, and sometimes the info field. */
7872
0a1b45a2 7873bool
217aa764
AM
7874_bfd_elf_copy_private_section_data (bfd *ibfd,
7875 asection *isec,
7876 bfd *obfd,
7877 asection *osec)
252b5132
RH
7878{
7879 Elf_Internal_Shdr *ihdr, *ohdr;
7880
7881 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7882 || obfd->xvec->flavour != bfd_target_elf_flavour)
0a1b45a2 7883 return true;
252b5132 7884
252b5132
RH
7885 ihdr = &elf_section_data (isec)->this_hdr;
7886 ohdr = &elf_section_data (osec)->this_hdr;
7887
7888 ohdr->sh_entsize = ihdr->sh_entsize;
7889
7890 if (ihdr->sh_type == SHT_SYMTAB
7891 || ihdr->sh_type == SHT_DYNSYM
7892 || ihdr->sh_type == SHT_GNU_verneed
7893 || ihdr->sh_type == SHT_GNU_verdef)
7894 ohdr->sh_info = ihdr->sh_info;
7895
ccd2ec6a
L
7896 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7897 NULL);
252b5132
RH
7898}
7899
d0bf826b
AM
7900/* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7901 necessary if we are removing either the SHT_GROUP section or any of
7902 the group member sections. DISCARDED is the value that a section's
7903 output_section has if the section will be discarded, NULL when this
7904 function is called from objcopy, bfd_abs_section_ptr when called
7905 from the linker. */
80fccad2 7906
0a1b45a2 7907bool
d0bf826b 7908_bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
80fccad2 7909{
30288845
AM
7910 asection *isec;
7911
30288845 7912 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
415f38a6 7913 if (elf_section_type (isec) == SHT_GROUP)
30288845
AM
7914 {
7915 asection *first = elf_next_in_group (isec);
7916 asection *s = first;
d0bf826b
AM
7917 bfd_size_type removed = 0;
7918
30288845
AM
7919 while (s != NULL)
7920 {
415f38a6
AM
7921 /* If this member section is being output but the
7922 SHT_GROUP section is not, then clear the group info
7923 set up by _bfd_elf_copy_private_section_data. */
d0bf826b
AM
7924 if (s->output_section != discarded
7925 && isec->output_section == discarded)
30288845
AM
7926 {
7927 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7928 elf_group_name (s->output_section) = NULL;
7929 }
3349112e 7930 else
6e5e9d58
AM
7931 {
7932 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
3349112e
L
7933 if (s->output_section == discarded
7934 && isec->output_section != discarded)
7935 {
7936 /* Conversely, if the member section is not being
7937 output but the SHT_GROUP section is, then adjust
7938 its size. */
7939 removed += 4;
7940 if (elf_sec->rel.hdr != NULL
7941 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7942 removed += 4;
7943 if (elf_sec->rela.hdr != NULL
7944 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7945 removed += 4;
7946 }
7947 else
7948 {
7949 /* Also adjust for zero-sized relocation member
7950 section. */
7951 if (elf_sec->rel.hdr != NULL
7952 && elf_sec->rel.hdr->sh_size == 0)
7953 removed += 4;
7954 if (elf_sec->rela.hdr != NULL
7955 && elf_sec->rela.hdr->sh_size == 0)
7956 removed += 4;
7957 }
6e5e9d58 7958 }
30288845
AM
7959 s = elf_next_in_group (s);
7960 if (s == first)
7961 break;
7962 }
d0bf826b
AM
7963 if (removed != 0)
7964 {
7965 if (discarded != NULL)
7966 {
7967 /* If we've been called for ld -r, then we need to
6e5e9d58 7968 adjust the input section size. */
d0bf826b
AM
7969 if (isec->rawsize == 0)
7970 isec->rawsize = isec->size;
7971 isec->size = isec->rawsize - removed;
6e5e9d58
AM
7972 if (isec->size <= 4)
7973 {
7974 isec->size = 0;
7975 isec->flags |= SEC_EXCLUDE;
7976 }
d0bf826b 7977 }
182ad375 7978 else if (isec->output_section != NULL)
d0bf826b
AM
7979 {
7980 /* Adjust the output section size when called from
7981 objcopy. */
7982 isec->output_section->size -= removed;
6e5e9d58
AM
7983 if (isec->output_section->size <= 4)
7984 {
7985 isec->output_section->size = 0;
7986 isec->output_section->flags |= SEC_EXCLUDE;
7987 }
d0bf826b
AM
7988 }
7989 }
30288845
AM
7990 }
7991
0a1b45a2 7992 return true;
80fccad2
BW
7993}
7994
d0bf826b
AM
7995/* Copy private header information. */
7996
0a1b45a2 7997bool
d0bf826b
AM
7998_bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7999{
8000 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
8001 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
0a1b45a2 8002 return true;
d0bf826b
AM
8003
8004 /* Copy over private BFD data if it has not already been copied.
8005 This must be done here, rather than in the copy_private_bfd_data
8006 entry point, because the latter is called after the section
8007 contents have been set, which means that the program headers have
8008 already been worked out. */
12bd6957 8009 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
d0bf826b
AM
8010 {
8011 if (! copy_private_bfd_data (ibfd, obfd))
0a1b45a2 8012 return false;
d0bf826b
AM
8013 }
8014
8015 return _bfd_elf_fixup_group_sections (ibfd, NULL);
8016}
8017
252b5132
RH
8018/* Copy private symbol information. If this symbol is in a section
8019 which we did not map into a BFD section, try to map the section
8020 index correctly. We use special macro definitions for the mapped
8021 section indices; these definitions are interpreted by the
8022 swap_out_syms function. */
8023
9ad5cbcf
AM
8024#define MAP_ONESYMTAB (SHN_HIOS + 1)
8025#define MAP_DYNSYMTAB (SHN_HIOS + 2)
8026#define MAP_STRTAB (SHN_HIOS + 3)
8027#define MAP_SHSTRTAB (SHN_HIOS + 4)
8028#define MAP_SYM_SHNDX (SHN_HIOS + 5)
252b5132 8029
0a1b45a2 8030bool
217aa764
AM
8031_bfd_elf_copy_private_symbol_data (bfd *ibfd,
8032 asymbol *isymarg,
8033 bfd *obfd,
8034 asymbol *osymarg)
252b5132
RH
8035{
8036 elf_symbol_type *isym, *osym;
8037
8038 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
8039 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
0a1b45a2 8040 return true;
252b5132 8041
c1229f84
AM
8042 isym = elf_symbol_from (isymarg);
8043 osym = elf_symbol_from (osymarg);
252b5132
RH
8044
8045 if (isym != NULL
8424d8f5 8046 && isym->internal_elf_sym.st_shndx != 0
252b5132
RH
8047 && osym != NULL
8048 && bfd_is_abs_section (isym->symbol.section))
8049 {
8050 unsigned int shndx;
8051
8052 shndx = isym->internal_elf_sym.st_shndx;
8053 if (shndx == elf_onesymtab (ibfd))
8054 shndx = MAP_ONESYMTAB;
8055 else if (shndx == elf_dynsymtab (ibfd))
8056 shndx = MAP_DYNSYMTAB;
12bd6957 8057 else if (shndx == elf_strtab_sec (ibfd))
252b5132 8058 shndx = MAP_STRTAB;
12bd6957 8059 else if (shndx == elf_shstrtab_sec (ibfd))
252b5132 8060 shndx = MAP_SHSTRTAB;
6a40cf0c 8061 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
9ad5cbcf 8062 shndx = MAP_SYM_SHNDX;
252b5132
RH
8063 osym->internal_elf_sym.st_shndx = shndx;
8064 }
8065
0a1b45a2 8066 return true;
252b5132
RH
8067}
8068
8069/* Swap out the symbols. */
8070
0a1b45a2 8071static bool
217aa764 8072swap_out_syms (bfd *abfd,
ef10c3ac 8073 struct elf_strtab_hash **sttp,
3d16b64e
NA
8074 int relocatable_p,
8075 struct bfd_link_info *info)
252b5132 8076{
9c5bfbb7 8077 const struct elf_backend_data *bed;
1f4361a7 8078 unsigned int symcount;
079e9a2f 8079 asymbol **syms;
ef10c3ac 8080 struct elf_strtab_hash *stt;
079e9a2f 8081 Elf_Internal_Shdr *symtab_hdr;
9ad5cbcf 8082 Elf_Internal_Shdr *symtab_shndx_hdr;
079e9a2f 8083 Elf_Internal_Shdr *symstrtab_hdr;
ef10c3ac 8084 struct elf_sym_strtab *symstrtab;
f075ee0c
AM
8085 bfd_byte *outbound_syms;
8086 bfd_byte *outbound_shndx;
ef10c3ac 8087 unsigned long outbound_syms_index;
1f4361a7 8088 unsigned int idx;
12bd6957 8089 unsigned int num_locals;
1f4361a7 8090 size_t amt;
0a1b45a2 8091 bool name_local_sections;
252b5132 8092
12bd6957 8093 if (!elf_map_symbols (abfd, &num_locals))
0a1b45a2 8094 return false;
252b5132 8095
c044fabd 8096 /* Dump out the symtabs. */
ef10c3ac 8097 stt = _bfd_elf_strtab_init ();
079e9a2f 8098 if (stt == NULL)
0a1b45a2 8099 return false;
252b5132 8100
079e9a2f
AM
8101 bed = get_elf_backend_data (abfd);
8102 symcount = bfd_get_symcount (abfd);
8103 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8104 symtab_hdr->sh_type = SHT_SYMTAB;
8105 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8106 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
12bd6957 8107 symtab_hdr->sh_info = num_locals + 1;
72de5009 8108 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
079e9a2f
AM
8109
8110 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8111 symstrtab_hdr->sh_type = SHT_STRTAB;
8112
ef10c3ac 8113 /* Allocate buffer to swap out the .strtab section. */
1f4361a7
AM
8114 if (_bfd_mul_overflow (symcount + 1, sizeof (*symstrtab), &amt)
8115 || (symstrtab = (struct elf_sym_strtab *) bfd_malloc (amt)) == NULL)
ef10c3ac 8116 {
1f4361a7 8117 bfd_set_error (bfd_error_no_memory);
ef10c3ac 8118 _bfd_elf_strtab_free (stt);
0a1b45a2 8119 return false;
ef10c3ac
L
8120 }
8121
1f4361a7
AM
8122 if (_bfd_mul_overflow (symcount + 1, bed->s->sizeof_sym, &amt)
8123 || (outbound_syms = (bfd_byte *) bfd_alloc (abfd, amt)) == NULL)
5ed6aba4 8124 {
1f4361a7
AM
8125 error_no_mem:
8126 bfd_set_error (bfd_error_no_memory);
8127 error_return:
ef10c3ac 8128 free (symstrtab);
1f4361a7 8129 _bfd_elf_strtab_free (stt);
0a1b45a2 8130 return false;
5ed6aba4 8131 }
217aa764 8132 symtab_hdr->contents = outbound_syms;
ef10c3ac 8133 outbound_syms_index = 0;
252b5132 8134
9ad5cbcf 8135 outbound_shndx = NULL;
6a40cf0c
NC
8136
8137 if (elf_symtab_shndx_list (abfd))
9ad5cbcf 8138 {
6a40cf0c
NC
8139 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8140 if (symtab_shndx_hdr->sh_name != 0)
8141 {
1f4361a7
AM
8142 if (_bfd_mul_overflow (symcount + 1,
8143 sizeof (Elf_External_Sym_Shndx), &amt))
8144 goto error_no_mem;
8145 outbound_shndx = (bfd_byte *) bfd_zalloc (abfd, amt);
6a40cf0c
NC
8146 if (outbound_shndx == NULL)
8147 goto error_return;
5ed6aba4 8148
6a40cf0c
NC
8149 symtab_shndx_hdr->contents = outbound_shndx;
8150 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8151 symtab_shndx_hdr->sh_size = amt;
8152 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8153 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8154 }
8155 /* FIXME: What about any other headers in the list ? */
9ad5cbcf
AM
8156 }
8157
589e6347 8158 /* Now generate the data (for "contents"). */
079e9a2f
AM
8159 {
8160 /* Fill in zeroth symbol and swap it out. */
8161 Elf_Internal_Sym sym;
8162 sym.st_name = 0;
8163 sym.st_value = 0;
8164 sym.st_size = 0;
8165 sym.st_info = 0;
8166 sym.st_other = 0;
8167 sym.st_shndx = SHN_UNDEF;
35fc36a8 8168 sym.st_target_internal = 0;
ef10c3ac
L
8169 symstrtab[0].sym = sym;
8170 symstrtab[0].dest_index = outbound_syms_index;
ef10c3ac 8171 outbound_syms_index++;
079e9a2f 8172 }
252b5132 8173
174fd7f9
RS
8174 name_local_sections
8175 = (bed->elf_backend_name_local_section_symbols
8176 && bed->elf_backend_name_local_section_symbols (abfd));
8177
079e9a2f 8178 syms = bfd_get_outsymbols (abfd);
ef10c3ac 8179 for (idx = 0; idx < symcount;)
252b5132 8180 {
252b5132 8181 Elf_Internal_Sym sym;
079e9a2f
AM
8182 bfd_vma value = syms[idx]->value;
8183 elf_symbol_type *type_ptr;
8184 flagword flags = syms[idx]->flags;
8185 int type;
252b5132 8186
174fd7f9
RS
8187 if (!name_local_sections
8188 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
079e9a2f
AM
8189 {
8190 /* Local section symbols have no name. */
ef10c3ac 8191 sym.st_name = (unsigned long) -1;
079e9a2f
AM
8192 }
8193 else
8194 {
ef10c3ac
L
8195 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8196 to get the final offset for st_name. */
8197 sym.st_name
8198 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
0a1b45a2 8199 false);
079e9a2f 8200 if (sym.st_name == (unsigned long) -1)
ef10c3ac 8201 goto error_return;
079e9a2f 8202 }
252b5132 8203
c1229f84 8204 type_ptr = elf_symbol_from (syms[idx]);
252b5132 8205
079e9a2f
AM
8206 if ((flags & BSF_SECTION_SYM) == 0
8207 && bfd_is_com_section (syms[idx]->section))
8208 {
8209 /* ELF common symbols put the alignment into the `value' field,
8210 and the size into the `size' field. This is backwards from
8211 how BFD handles it, so reverse it here. */
8212 sym.st_size = value;
8213 if (type_ptr == NULL
8214 || type_ptr->internal_elf_sym.st_value == 0)
8215 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8216 else
8217 sym.st_value = type_ptr->internal_elf_sym.st_value;
8218 sym.st_shndx = _bfd_elf_section_from_bfd_section
8219 (abfd, syms[idx]->section);
8220 }
8221 else
8222 {
8223 asection *sec = syms[idx]->section;
cb33740c 8224 unsigned int shndx;
252b5132 8225
079e9a2f
AM
8226 if (sec->output_section)
8227 {
8228 value += sec->output_offset;
8229 sec = sec->output_section;
8230 }
589e6347 8231
079e9a2f
AM
8232 /* Don't add in the section vma for relocatable output. */
8233 if (! relocatable_p)
8234 value += sec->vma;
8235 sym.st_value = value;
8236 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8237
8238 if (bfd_is_abs_section (sec)
8239 && type_ptr != NULL
8240 && type_ptr->internal_elf_sym.st_shndx != 0)
8241 {
8242 /* This symbol is in a real ELF section which we did
8243 not create as a BFD section. Undo the mapping done
8244 by copy_private_symbol_data. */
8245 shndx = type_ptr->internal_elf_sym.st_shndx;
8246 switch (shndx)
8247 {
8248 case MAP_ONESYMTAB:
8249 shndx = elf_onesymtab (abfd);
8250 break;
8251 case MAP_DYNSYMTAB:
8252 shndx = elf_dynsymtab (abfd);
8253 break;
8254 case MAP_STRTAB:
12bd6957 8255 shndx = elf_strtab_sec (abfd);
079e9a2f
AM
8256 break;
8257 case MAP_SHSTRTAB:
12bd6957 8258 shndx = elf_shstrtab_sec (abfd);
079e9a2f 8259 break;
9ad5cbcf 8260 case MAP_SYM_SHNDX:
6a40cf0c
NC
8261 if (elf_symtab_shndx_list (abfd))
8262 shndx = elf_symtab_shndx_list (abfd)->ndx;
9ad5cbcf 8263 break;
00e49dff
NC
8264 case SHN_COMMON:
8265 case SHN_ABS:
15bc576a 8266 shndx = SHN_ABS;
079e9a2f 8267 break;
00e49dff
NC
8268 default:
8269 if (shndx >= SHN_LOPROC && shndx <= SHN_HIOS)
8270 {
8271 if (bed->symbol_section_index)
8272 shndx = bed->symbol_section_index (abfd, type_ptr);
8273 /* Otherwise just leave the index alone. */
8274 }
8275 else
8276 {
8277 if (shndx > SHN_HIOS && shndx < SHN_HIRESERVE)
8278 _bfd_error_handler (_("%pB: \
8279Unable to handle section index %x in ELF symbol. Using ABS instead."),
8280 abfd, shndx);
8281 shndx = SHN_ABS;
8282 }
8283 break;
079e9a2f
AM
8284 }
8285 }
8286 else
8287 {
8288 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
252b5132 8289
cb33740c 8290 if (shndx == SHN_BAD)
079e9a2f
AM
8291 {
8292 asection *sec2;
8293
8294 /* Writing this would be a hell of a lot easier if
8295 we had some decent documentation on bfd, and
8296 knew what to expect of the library, and what to
8297 demand of applications. For example, it
8298 appears that `objcopy' might not set the
8299 section of a symbol to be a section that is
8300 actually in the output file. */
8301 sec2 = bfd_get_section_by_name (abfd, sec->name);
5df1bc57
AM
8302 if (sec2 != NULL)
8303 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8304 if (shndx == SHN_BAD)
589e6347 8305 {
695344c0 8306 /* xgettext:c-format */
9793eb77
AM
8307 _bfd_error_handler
8308 (_("unable to find equivalent output section"
8309 " for symbol '%s' from section '%s'"),
8310 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8311 sec->name);
811072d8 8312 bfd_set_error (bfd_error_invalid_operation);
ef10c3ac 8313 goto error_return;
589e6347 8314 }
079e9a2f
AM
8315 }
8316 }
252b5132 8317
079e9a2f
AM
8318 sym.st_shndx = shndx;
8319 }
252b5132 8320
13ae64f3
JJ
8321 if ((flags & BSF_THREAD_LOCAL) != 0)
8322 type = STT_TLS;
d8045f23
NC
8323 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8324 type = STT_GNU_IFUNC;
13ae64f3 8325 else if ((flags & BSF_FUNCTION) != 0)
079e9a2f
AM
8326 type = STT_FUNC;
8327 else if ((flags & BSF_OBJECT) != 0)
8328 type = STT_OBJECT;
d9352518
DB
8329 else if ((flags & BSF_RELC) != 0)
8330 type = STT_RELC;
8331 else if ((flags & BSF_SRELC) != 0)
8332 type = STT_SRELC;
079e9a2f
AM
8333 else
8334 type = STT_NOTYPE;
252b5132 8335
13ae64f3
JJ
8336 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8337 type = STT_TLS;
8338
589e6347 8339 /* Processor-specific types. */
079e9a2f
AM
8340 if (type_ptr != NULL
8341 && bed->elf_backend_get_symbol_type)
8342 type = ((*bed->elf_backend_get_symbol_type)
8343 (&type_ptr->internal_elf_sym, type));
252b5132 8344
079e9a2f
AM
8345 if (flags & BSF_SECTION_SYM)
8346 {
8347 if (flags & BSF_GLOBAL)
8348 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8349 else
8350 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8351 }
8352 else if (bfd_is_com_section (syms[idx]->section))
0a40daed 8353 {
b8871f35
L
8354 if (type != STT_TLS)
8355 {
8356 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8357 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8358 ? STT_COMMON : STT_OBJECT);
8359 else
8360 type = ((flags & BSF_ELF_COMMON) != 0
8361 ? STT_COMMON : STT_OBJECT);
8362 }
8363 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
0a40daed 8364 }
079e9a2f
AM
8365 else if (bfd_is_und_section (syms[idx]->section))
8366 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8367 ? STB_WEAK
8368 : STB_GLOBAL),
8369 type);
8370 else if (flags & BSF_FILE)
8371 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8372 else
8373 {
8374 int bind = STB_LOCAL;
252b5132 8375
079e9a2f
AM
8376 if (flags & BSF_LOCAL)
8377 bind = STB_LOCAL;
3e7a7d11
NC
8378 else if (flags & BSF_GNU_UNIQUE)
8379 bind = STB_GNU_UNIQUE;
079e9a2f
AM
8380 else if (flags & BSF_WEAK)
8381 bind = STB_WEAK;
8382 else if (flags & BSF_GLOBAL)
8383 bind = STB_GLOBAL;
252b5132 8384
079e9a2f
AM
8385 sym.st_info = ELF_ST_INFO (bind, type);
8386 }
252b5132 8387
079e9a2f 8388 if (type_ptr != NULL)
35fc36a8
RS
8389 {
8390 sym.st_other = type_ptr->internal_elf_sym.st_other;
8391 sym.st_target_internal
8392 = type_ptr->internal_elf_sym.st_target_internal;
8393 }
079e9a2f 8394 else
35fc36a8
RS
8395 {
8396 sym.st_other = 0;
8397 sym.st_target_internal = 0;
8398 }
252b5132 8399
ef10c3ac
L
8400 idx++;
8401 symstrtab[idx].sym = sym;
8402 symstrtab[idx].dest_index = outbound_syms_index;
ef10c3ac
L
8403
8404 outbound_syms_index++;
ef10c3ac
L
8405 }
8406
8407 /* Finalize the .strtab section. */
8408 _bfd_elf_strtab_finalize (stt);
8409
8410 /* Swap out the .strtab section. */
8411 for (idx = 0; idx <= symcount; idx++)
8412 {
8413 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8414 if (elfsym->sym.st_name == (unsigned long) -1)
8415 elfsym->sym.st_name = 0;
8416 else
8417 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8418 elfsym->sym.st_name);
3d16b64e
NA
8419 if (info && info->callbacks->ctf_new_symbol)
8420 info->callbacks->ctf_new_symbol (elfsym->dest_index,
8421 &elfsym->sym);
8422
8423 /* Inform the linker of the addition of this symbol. */
8424
ef10c3ac
L
8425 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8426 (outbound_syms
8427 + (elfsym->dest_index
8428 * bed->s->sizeof_sym)),
b03b65e2
AM
8429 NPTR_ADD (outbound_shndx,
8430 (elfsym->dest_index
8431 * sizeof (Elf_External_Sym_Shndx))));
079e9a2f 8432 }
ef10c3ac 8433 free (symstrtab);
252b5132 8434
079e9a2f 8435 *sttp = stt;
ef10c3ac 8436 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
079e9a2f 8437 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 8438 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
079e9a2f
AM
8439 symstrtab_hdr->sh_addr = 0;
8440 symstrtab_hdr->sh_entsize = 0;
8441 symstrtab_hdr->sh_link = 0;
8442 symstrtab_hdr->sh_info = 0;
8443 symstrtab_hdr->sh_addralign = 1;
252b5132 8444
0a1b45a2 8445 return true;
252b5132
RH
8446}
8447
8448/* Return the number of bytes required to hold the symtab vector.
8449
8450 Note that we base it on the count plus 1, since we will null terminate
8451 the vector allocated based on this size. However, the ELF symbol table
8452 always has a dummy entry as symbol #0, so it ends up even. */
8453
8454long
217aa764 8455_bfd_elf_get_symtab_upper_bound (bfd *abfd)
252b5132 8456{
3a551c7a 8457 bfd_size_type symcount;
252b5132
RH
8458 long symtab_size;
8459 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8460
8461 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
b5f386d5 8462 if (symcount > LONG_MAX / sizeof (asymbol *))
3a551c7a
AM
8463 {
8464 bfd_set_error (bfd_error_file_too_big);
8465 return -1;
8466 }
b5f386d5
AM
8467 symtab_size = symcount * (sizeof (asymbol *));
8468 if (symcount == 0)
8469 symtab_size = sizeof (asymbol *);
8470 else if (!bfd_write_p (abfd))
8471 {
8472 ufile_ptr filesize = bfd_get_file_size (abfd);
8473
8474 if (filesize != 0 && (unsigned long) symtab_size > filesize)
8475 {
8476 bfd_set_error (bfd_error_file_truncated);
8477 return -1;
8478 }
8479 }
252b5132
RH
8480
8481 return symtab_size;
8482}
8483
8484long
217aa764 8485_bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
252b5132 8486{
3a551c7a 8487 bfd_size_type symcount;
252b5132
RH
8488 long symtab_size;
8489 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8490
8491 if (elf_dynsymtab (abfd) == 0)
8492 {
8493 bfd_set_error (bfd_error_invalid_operation);
8494 return -1;
8495 }
8496
8497 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
b5f386d5 8498 if (symcount > LONG_MAX / sizeof (asymbol *))
3a551c7a
AM
8499 {
8500 bfd_set_error (bfd_error_file_too_big);
8501 return -1;
8502 }
b5f386d5
AM
8503 symtab_size = symcount * (sizeof (asymbol *));
8504 if (symcount == 0)
8505 symtab_size = sizeof (asymbol *);
8506 else if (!bfd_write_p (abfd))
8507 {
8508 ufile_ptr filesize = bfd_get_file_size (abfd);
8509
8510 if (filesize != 0 && (unsigned long) symtab_size > filesize)
8511 {
8512 bfd_set_error (bfd_error_file_truncated);
8513 return -1;
8514 }
8515 }
252b5132
RH
8516
8517 return symtab_size;
8518}
8519
8520long
3c568b8a 8521_bfd_elf_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
252b5132 8522{
b5f386d5 8523 if (asect->reloc_count != 0 && !bfd_write_p (abfd))
3c568b8a
AM
8524 {
8525 /* Sanity check reloc section size. */
8526 struct bfd_elf_section_data *d = elf_section_data (asect);
8527 Elf_Internal_Shdr *rel_hdr = &d->this_hdr;
8528 bfd_size_type ext_rel_size = rel_hdr->sh_size;
8529 ufile_ptr filesize = bfd_get_file_size (abfd);
8530
8531 if (filesize != 0 && ext_rel_size > filesize)
8532 {
8533 bfd_set_error (bfd_error_file_truncated);
8534 return -1;
8535 }
8536 }
8537
242a1159 8538#if SIZEOF_LONG == SIZEOF_INT
7a6e0d89
AM
8539 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8540 {
8541 bfd_set_error (bfd_error_file_too_big);
8542 return -1;
8543 }
242a1159 8544#endif
5cfe19e5 8545 return (asect->reloc_count + 1L) * sizeof (arelent *);
252b5132
RH
8546}
8547
8548/* Canonicalize the relocs. */
8549
8550long
217aa764
AM
8551_bfd_elf_canonicalize_reloc (bfd *abfd,
8552 sec_ptr section,
8553 arelent **relptr,
8554 asymbol **symbols)
252b5132
RH
8555{
8556 arelent *tblptr;
8557 unsigned int i;
9c5bfbb7 8558 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 8559
0a1b45a2 8560 if (! bed->s->slurp_reloc_table (abfd, section, symbols, false))
252b5132
RH
8561 return -1;
8562
8563 tblptr = section->relocation;
8564 for (i = 0; i < section->reloc_count; i++)
8565 *relptr++ = tblptr++;
8566
8567 *relptr = NULL;
8568
8569 return section->reloc_count;
8570}
8571
8572long
6cee3f79 8573_bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
252b5132 8574{
9c5bfbb7 8575 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
0a1b45a2 8576 long symcount = bed->s->slurp_symbol_table (abfd, allocation, false);
252b5132
RH
8577
8578 if (symcount >= 0)
ed48ec2e 8579 abfd->symcount = symcount;
252b5132
RH
8580 return symcount;
8581}
8582
8583long
217aa764
AM
8584_bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8585 asymbol **allocation)
252b5132 8586{
9c5bfbb7 8587 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
0a1b45a2 8588 long symcount = bed->s->slurp_symbol_table (abfd, allocation, true);
1f70368c
DJ
8589
8590 if (symcount >= 0)
ed48ec2e 8591 abfd->dynsymcount = symcount;
1f70368c 8592 return symcount;
252b5132
RH
8593}
8594
8615f3f2
AM
8595/* Return the size required for the dynamic reloc entries. Any loadable
8596 section that was actually installed in the BFD, and has type SHT_REL
8597 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8598 dynamic reloc section. */
252b5132
RH
8599
8600long
217aa764 8601_bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
252b5132 8602{
3c568b8a 8603 bfd_size_type count, ext_rel_size;
252b5132
RH
8604 asection *s;
8605
8606 if (elf_dynsymtab (abfd) == 0)
8607 {
8608 bfd_set_error (bfd_error_invalid_operation);
8609 return -1;
8610 }
8611
3a551c7a 8612 count = 1;
3c568b8a 8613 ext_rel_size = 0;
252b5132 8614 for (s = abfd->sections; s != NULL; s = s->next)
266b05cf 8615 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8616 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8617 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
3a551c7a 8618 {
3c568b8a
AM
8619 ext_rel_size += s->size;
8620 if (ext_rel_size < s->size)
8621 {
8622 bfd_set_error (bfd_error_file_truncated);
8623 return -1;
8624 }
3a551c7a
AM
8625 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8626 if (count > LONG_MAX / sizeof (arelent *))
8627 {
8628 bfd_set_error (bfd_error_file_too_big);
8629 return -1;
8630 }
8631 }
b5f386d5 8632 if (count > 1 && !bfd_write_p (abfd))
3c568b8a
AM
8633 {
8634 /* Sanity check reloc section sizes. */
8635 ufile_ptr filesize = bfd_get_file_size (abfd);
8636 if (filesize != 0 && ext_rel_size > filesize)
8637 {
8638 bfd_set_error (bfd_error_file_truncated);
8639 return -1;
8640 }
8641 }
3a551c7a 8642 return count * sizeof (arelent *);
252b5132
RH
8643}
8644
8615f3f2
AM
8645/* Canonicalize the dynamic relocation entries. Note that we return the
8646 dynamic relocations as a single block, although they are actually
8647 associated with particular sections; the interface, which was
8648 designed for SunOS style shared libraries, expects that there is only
8649 one set of dynamic relocs. Any loadable section that was actually
8650 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8651 dynamic symbol table, is considered to be a dynamic reloc section. */
252b5132
RH
8652
8653long
217aa764
AM
8654_bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8655 arelent **storage,
8656 asymbol **syms)
252b5132 8657{
0a1b45a2 8658 bool (*slurp_relocs) (bfd *, asection *, asymbol **, bool);
252b5132
RH
8659 asection *s;
8660 long ret;
8661
8662 if (elf_dynsymtab (abfd) == 0)
8663 {
8664 bfd_set_error (bfd_error_invalid_operation);
8665 return -1;
8666 }
8667
8668 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8669 ret = 0;
8670 for (s = abfd->sections; s != NULL; s = s->next)
8671 {
266b05cf 8672 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8673 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8674 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8675 {
8676 arelent *p;
8677 long count, i;
8678
0a1b45a2 8679 if (! (*slurp_relocs) (abfd, s, syms, true))
252b5132 8680 return -1;
eea6121a 8681 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
252b5132
RH
8682 p = s->relocation;
8683 for (i = 0; i < count; i++)
8684 *storage++ = p++;
8685 ret += count;
8686 }
8687 }
8688
8689 *storage = NULL;
8690
8691 return ret;
8692}
8693\f
8694/* Read in the version information. */
8695
0a1b45a2
AM
8696bool
8697_bfd_elf_slurp_version_tables (bfd *abfd, bool default_imported_symver)
252b5132
RH
8698{
8699 bfd_byte *contents = NULL;
fc0e6df6 8700 unsigned int freeidx = 0;
1f4361a7 8701 size_t amt;
fc0e6df6
PB
8702
8703 if (elf_dynverref (abfd) != 0)
8704 {
8705 Elf_Internal_Shdr *hdr;
8706 Elf_External_Verneed *everneed;
8707 Elf_Internal_Verneed *iverneed;
8708 unsigned int i;
d0fb9a8d 8709 bfd_byte *contents_end;
fc0e6df6
PB
8710
8711 hdr = &elf_tdata (abfd)->dynverref_hdr;
8712
bd61e135
AM
8713 if (hdr->sh_info == 0
8714 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
d0fb9a8d 8715 {
dc1e8a47 8716 error_return_bad_verref:
4eca0228 8717 _bfd_error_handler
871b3ab2 8718 (_("%pB: .gnu.version_r invalid entry"), abfd);
601a03ba 8719 bfd_set_error (bfd_error_bad_value);
dc1e8a47 8720 error_return_verref:
d0fb9a8d
JJ
8721 elf_tdata (abfd)->verref = NULL;
8722 elf_tdata (abfd)->cverrefs = 0;
8723 goto error_return;
8724 }
601a03ba 8725
2bb3687b
AM
8726 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8727 goto error_return_verref;
8728 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8729 if (contents == NULL)
d0fb9a8d 8730 goto error_return_verref;
fc0e6df6 8731
1f4361a7
AM
8732 if (_bfd_mul_overflow (hdr->sh_info, sizeof (Elf_Internal_Verneed), &amt))
8733 {
8734 bfd_set_error (bfd_error_file_too_big);
8735 goto error_return_verref;
8736 }
8737 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *) bfd_alloc (abfd, amt);
601a03ba 8738 if (elf_tdata (abfd)->verref == NULL)
d0fb9a8d
JJ
8739 goto error_return_verref;
8740
8741 BFD_ASSERT (sizeof (Elf_External_Verneed)
8742 == sizeof (Elf_External_Vernaux));
8743 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
fc0e6df6
PB
8744 everneed = (Elf_External_Verneed *) contents;
8745 iverneed = elf_tdata (abfd)->verref;
8746 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8747 {
8748 Elf_External_Vernaux *evernaux;
8749 Elf_Internal_Vernaux *ivernaux;
8750 unsigned int j;
8751
8752 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8753
8754 iverneed->vn_bfd = abfd;
8755
8756 iverneed->vn_filename =
8757 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8758 iverneed->vn_file);
8759 if (iverneed->vn_filename == NULL)
601a03ba 8760 goto error_return_bad_verref;
fc0e6df6 8761
d0fb9a8d
JJ
8762 if (iverneed->vn_cnt == 0)
8763 iverneed->vn_auxptr = NULL;
8764 else
8765 {
1f4361a7
AM
8766 if (_bfd_mul_overflow (iverneed->vn_cnt,
8767 sizeof (Elf_Internal_Vernaux), &amt))
8768 {
8769 bfd_set_error (bfd_error_file_too_big);
8770 goto error_return_verref;
8771 }
a50b1753 8772 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
1f4361a7 8773 bfd_alloc (abfd, amt);
d0fb9a8d
JJ
8774 if (iverneed->vn_auxptr == NULL)
8775 goto error_return_verref;
8776 }
8777
8778 if (iverneed->vn_aux
8779 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8780 goto error_return_bad_verref;
fc0e6df6
PB
8781
8782 evernaux = ((Elf_External_Vernaux *)
8783 ((bfd_byte *) everneed + iverneed->vn_aux));
8784 ivernaux = iverneed->vn_auxptr;
8785 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8786 {
8787 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8788
8789 ivernaux->vna_nodename =
8790 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8791 ivernaux->vna_name);
8792 if (ivernaux->vna_nodename == NULL)
601a03ba 8793 goto error_return_bad_verref;
fc0e6df6 8794
25ff461f
AM
8795 if (ivernaux->vna_other > freeidx)
8796 freeidx = ivernaux->vna_other;
8797
8798 ivernaux->vna_nextptr = NULL;
8799 if (ivernaux->vna_next == 0)
8800 {
8801 iverneed->vn_cnt = j + 1;
8802 break;
8803 }
fc0e6df6
PB
8804 if (j + 1 < iverneed->vn_cnt)
8805 ivernaux->vna_nextptr = ivernaux + 1;
fc0e6df6 8806
d0fb9a8d
JJ
8807 if (ivernaux->vna_next
8808 > (size_t) (contents_end - (bfd_byte *) evernaux))
601a03ba 8809 goto error_return_bad_verref;
d0fb9a8d 8810
fc0e6df6
PB
8811 evernaux = ((Elf_External_Vernaux *)
8812 ((bfd_byte *) evernaux + ivernaux->vna_next));
fc0e6df6
PB
8813 }
8814
25ff461f
AM
8815 iverneed->vn_nextref = NULL;
8816 if (iverneed->vn_next == 0)
8817 break;
fc0e6df6
PB
8818 if (i + 1 < hdr->sh_info)
8819 iverneed->vn_nextref = iverneed + 1;
fc0e6df6 8820
d0fb9a8d
JJ
8821 if (iverneed->vn_next
8822 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8823 goto error_return_bad_verref;
d0fb9a8d 8824
fc0e6df6
PB
8825 everneed = ((Elf_External_Verneed *)
8826 ((bfd_byte *) everneed + iverneed->vn_next));
8827 }
25ff461f 8828 elf_tdata (abfd)->cverrefs = i;
fc0e6df6
PB
8829
8830 free (contents);
8831 contents = NULL;
8832 }
252b5132
RH
8833
8834 if (elf_dynverdef (abfd) != 0)
8835 {
8836 Elf_Internal_Shdr *hdr;
8837 Elf_External_Verdef *everdef;
8838 Elf_Internal_Verdef *iverdef;
f631889e
UD
8839 Elf_Internal_Verdef *iverdefarr;
8840 Elf_Internal_Verdef iverdefmem;
252b5132 8841 unsigned int i;
062e2358 8842 unsigned int maxidx;
d0fb9a8d 8843 bfd_byte *contents_end_def, *contents_end_aux;
252b5132
RH
8844
8845 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8846
601a03ba
AM
8847 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8848 {
8849 error_return_bad_verdef:
4eca0228 8850 _bfd_error_handler
871b3ab2 8851 (_("%pB: .gnu.version_d invalid entry"), abfd);
601a03ba
AM
8852 bfd_set_error (bfd_error_bad_value);
8853 error_return_verdef:
8854 elf_tdata (abfd)->verdef = NULL;
8855 elf_tdata (abfd)->cverdefs = 0;
8856 goto error_return;
8857 }
8858
2bb3687b 8859 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
601a03ba 8860 goto error_return_verdef;
2bb3687b
AM
8861 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8862 if (contents == NULL)
601a03ba 8863 goto error_return_verdef;
d0fb9a8d
JJ
8864
8865 BFD_ASSERT (sizeof (Elf_External_Verdef)
8866 >= sizeof (Elf_External_Verdaux));
8867 contents_end_def = contents + hdr->sh_size
8868 - sizeof (Elf_External_Verdef);
8869 contents_end_aux = contents + hdr->sh_size
8870 - sizeof (Elf_External_Verdaux);
8871
f631889e
UD
8872 /* We know the number of entries in the section but not the maximum
8873 index. Therefore we have to run through all entries and find
8874 the maximum. */
252b5132 8875 everdef = (Elf_External_Verdef *) contents;
f631889e
UD
8876 maxidx = 0;
8877 for (i = 0; i < hdr->sh_info; ++i)
8878 {
8879 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8880
601a03ba
AM
8881 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8882 goto error_return_bad_verdef;
062e2358
AM
8883 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8884 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
f631889e 8885
25ff461f
AM
8886 if (iverdefmem.vd_next == 0)
8887 break;
8888
d0fb9a8d
JJ
8889 if (iverdefmem.vd_next
8890 > (size_t) (contents_end_def - (bfd_byte *) everdef))
601a03ba 8891 goto error_return_bad_verdef;
d0fb9a8d 8892
f631889e
UD
8893 everdef = ((Elf_External_Verdef *)
8894 ((bfd_byte *) everdef + iverdefmem.vd_next));
8895 }
8896
fc0e6df6
PB
8897 if (default_imported_symver)
8898 {
8899 if (freeidx > maxidx)
8900 maxidx = ++freeidx;
8901 else
8902 freeidx = ++maxidx;
8903 }
1f4361a7
AM
8904 if (_bfd_mul_overflow (maxidx, sizeof (Elf_Internal_Verdef), &amt))
8905 {
8906 bfd_set_error (bfd_error_file_too_big);
8907 goto error_return_verdef;
8908 }
8909 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
f631889e 8910 if (elf_tdata (abfd)->verdef == NULL)
601a03ba 8911 goto error_return_verdef;
f631889e
UD
8912
8913 elf_tdata (abfd)->cverdefs = maxidx;
8914
8915 everdef = (Elf_External_Verdef *) contents;
8916 iverdefarr = elf_tdata (abfd)->verdef;
8917 for (i = 0; i < hdr->sh_info; i++)
252b5132
RH
8918 {
8919 Elf_External_Verdaux *everdaux;
8920 Elf_Internal_Verdaux *iverdaux;
8921 unsigned int j;
8922
f631889e
UD
8923 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8924
d0fb9a8d 8925 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
601a03ba 8926 goto error_return_bad_verdef;
d0fb9a8d 8927
f631889e 8928 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
595bce75 8929 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
252b5132
RH
8930
8931 iverdef->vd_bfd = abfd;
8932
d0fb9a8d
JJ
8933 if (iverdef->vd_cnt == 0)
8934 iverdef->vd_auxptr = NULL;
8935 else
8936 {
1f4361a7
AM
8937 if (_bfd_mul_overflow (iverdef->vd_cnt,
8938 sizeof (Elf_Internal_Verdaux), &amt))
8939 {
8940 bfd_set_error (bfd_error_file_too_big);
8941 goto error_return_verdef;
8942 }
a50b1753 8943 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
1f4361a7 8944 bfd_alloc (abfd, amt);
d0fb9a8d
JJ
8945 if (iverdef->vd_auxptr == NULL)
8946 goto error_return_verdef;
8947 }
8948
8949 if (iverdef->vd_aux
8950 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
601a03ba 8951 goto error_return_bad_verdef;
252b5132
RH
8952
8953 everdaux = ((Elf_External_Verdaux *)
8954 ((bfd_byte *) everdef + iverdef->vd_aux));
8955 iverdaux = iverdef->vd_auxptr;
8956 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8957 {
8958 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8959
8960 iverdaux->vda_nodename =
8961 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8962 iverdaux->vda_name);
8963 if (iverdaux->vda_nodename == NULL)
601a03ba 8964 goto error_return_bad_verdef;
252b5132 8965
25ff461f
AM
8966 iverdaux->vda_nextptr = NULL;
8967 if (iverdaux->vda_next == 0)
8968 {
8969 iverdef->vd_cnt = j + 1;
8970 break;
8971 }
252b5132
RH
8972 if (j + 1 < iverdef->vd_cnt)
8973 iverdaux->vda_nextptr = iverdaux + 1;
252b5132 8974
d0fb9a8d
JJ
8975 if (iverdaux->vda_next
8976 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
601a03ba 8977 goto error_return_bad_verdef;
d0fb9a8d 8978
252b5132
RH
8979 everdaux = ((Elf_External_Verdaux *)
8980 ((bfd_byte *) everdaux + iverdaux->vda_next));
8981 }
8982
595bce75 8983 iverdef->vd_nodename = NULL;
d0fb9a8d
JJ
8984 if (iverdef->vd_cnt)
8985 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
252b5132 8986
25ff461f
AM
8987 iverdef->vd_nextdef = NULL;
8988 if (iverdef->vd_next == 0)
8989 break;
d0fb9a8d 8990 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
252b5132 8991 iverdef->vd_nextdef = iverdef + 1;
252b5132
RH
8992
8993 everdef = ((Elf_External_Verdef *)
8994 ((bfd_byte *) everdef + iverdef->vd_next));
8995 }
8996
8997 free (contents);
8998 contents = NULL;
8999 }
fc0e6df6 9000 else if (default_imported_symver)
252b5132 9001 {
fc0e6df6
PB
9002 if (freeidx < 3)
9003 freeidx = 3;
9004 else
9005 freeidx++;
252b5132 9006
1f4361a7
AM
9007 if (_bfd_mul_overflow (freeidx, sizeof (Elf_Internal_Verdef), &amt))
9008 {
9009 bfd_set_error (bfd_error_file_too_big);
9010 goto error_return;
9011 }
9012 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
fc0e6df6 9013 if (elf_tdata (abfd)->verdef == NULL)
252b5132
RH
9014 goto error_return;
9015
fc0e6df6
PB
9016 elf_tdata (abfd)->cverdefs = freeidx;
9017 }
252b5132 9018
fc0e6df6
PB
9019 /* Create a default version based on the soname. */
9020 if (default_imported_symver)
9021 {
9022 Elf_Internal_Verdef *iverdef;
9023 Elf_Internal_Verdaux *iverdaux;
252b5132 9024
5bb3703f 9025 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
252b5132 9026
fc0e6df6
PB
9027 iverdef->vd_version = VER_DEF_CURRENT;
9028 iverdef->vd_flags = 0;
9029 iverdef->vd_ndx = freeidx;
9030 iverdef->vd_cnt = 1;
252b5132 9031
fc0e6df6 9032 iverdef->vd_bfd = abfd;
252b5132 9033
fc0e6df6
PB
9034 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
9035 if (iverdef->vd_nodename == NULL)
d0fb9a8d 9036 goto error_return_verdef;
fc0e6df6 9037 iverdef->vd_nextdef = NULL;
601a03ba
AM
9038 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
9039 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
d0fb9a8d
JJ
9040 if (iverdef->vd_auxptr == NULL)
9041 goto error_return_verdef;
252b5132 9042
fc0e6df6
PB
9043 iverdaux = iverdef->vd_auxptr;
9044 iverdaux->vda_nodename = iverdef->vd_nodename;
252b5132
RH
9045 }
9046
0a1b45a2 9047 return true;
252b5132
RH
9048
9049 error_return:
c9594989 9050 free (contents);
0a1b45a2 9051 return false;
252b5132
RH
9052}
9053\f
9054asymbol *
217aa764 9055_bfd_elf_make_empty_symbol (bfd *abfd)
252b5132
RH
9056{
9057 elf_symbol_type *newsym;
9058
7a6e0d89 9059 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
252b5132
RH
9060 if (!newsym)
9061 return NULL;
201159ec
NC
9062 newsym->symbol.the_bfd = abfd;
9063 return &newsym->symbol;
252b5132
RH
9064}
9065
9066void
217aa764
AM
9067_bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
9068 asymbol *symbol,
9069 symbol_info *ret)
252b5132
RH
9070{
9071 bfd_symbol_info (symbol, ret);
9072}
9073
9074/* Return whether a symbol name implies a local symbol. Most targets
9075 use this function for the is_local_label_name entry point, but some
9076 override it. */
9077
0a1b45a2 9078bool
217aa764
AM
9079_bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
9080 const char *name)
252b5132
RH
9081{
9082 /* Normal local symbols start with ``.L''. */
9083 if (name[0] == '.' && name[1] == 'L')
0a1b45a2 9084 return true;
252b5132
RH
9085
9086 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
9087 DWARF debugging symbols starting with ``..''. */
9088 if (name[0] == '.' && name[1] == '.')
0a1b45a2 9089 return true;
252b5132
RH
9090
9091 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
9092 emitting DWARF debugging output. I suspect this is actually a
9093 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
9094 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
9095 underscore to be emitted on some ELF targets). For ease of use,
9096 we treat such symbols as local. */
9097 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
0a1b45a2 9098 return true;
252b5132 9099
b1fa9dd6
NC
9100 /* Treat assembler generated fake symbols, dollar local labels and
9101 forward-backward labels (aka local labels) as locals.
9102 These labels have the form:
9103
07d6d2b8 9104 L0^A.* (fake symbols)
b1fa9dd6
NC
9105
9106 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
9107
9108 Versions which start with .L will have already been matched above,
9109 so we only need to match the rest. */
9110 if (name[0] == 'L' && ISDIGIT (name[1]))
9111 {
0a1b45a2 9112 bool ret = false;
b1fa9dd6
NC
9113 const char * p;
9114 char c;
9115
9116 for (p = name + 2; (c = *p); p++)
9117 {
9118 if (c == 1 || c == 2)
9119 {
9120 if (c == 1 && p == name + 2)
9121 /* A fake symbol. */
0a1b45a2 9122 return true;
b1fa9dd6
NC
9123
9124 /* FIXME: We are being paranoid here and treating symbols like
9125 L0^Bfoo as if there were non-local, on the grounds that the
9126 assembler will never generate them. But can any symbol
9127 containing an ASCII value in the range 1-31 ever be anything
9128 other than some kind of local ? */
0a1b45a2 9129 ret = true;
b1fa9dd6
NC
9130 }
9131
9132 if (! ISDIGIT (c))
9133 {
0a1b45a2 9134 ret = false;
b1fa9dd6
NC
9135 break;
9136 }
9137 }
9138 return ret;
9139 }
ffa54770 9140
0a1b45a2 9141 return false;
252b5132
RH
9142}
9143
9144alent *
217aa764
AM
9145_bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9146 asymbol *symbol ATTRIBUTE_UNUSED)
252b5132
RH
9147{
9148 abort ();
9149 return NULL;
9150}
9151
0a1b45a2 9152bool
217aa764
AM
9153_bfd_elf_set_arch_mach (bfd *abfd,
9154 enum bfd_architecture arch,
9155 unsigned long machine)
252b5132
RH
9156{
9157 /* If this isn't the right architecture for this backend, and this
9158 isn't the generic backend, fail. */
9159 if (arch != get_elf_backend_data (abfd)->arch
9160 && arch != bfd_arch_unknown
9161 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
0a1b45a2 9162 return false;
252b5132
RH
9163
9164 return bfd_default_set_arch_mach (abfd, arch, machine);
9165}
9166
d1fad7c6
NC
9167/* Find the nearest line to a particular section and offset,
9168 for error reporting. */
9169
0a1b45a2 9170bool
217aa764 9171_bfd_elf_find_nearest_line (bfd *abfd,
217aa764 9172 asymbol **symbols,
fb167eb2 9173 asection *section,
217aa764
AM
9174 bfd_vma offset,
9175 const char **filename_ptr,
9176 const char **functionname_ptr,
fb167eb2
AM
9177 unsigned int *line_ptr,
9178 unsigned int *discriminator_ptr)
d1fad7c6 9179{
0a1b45a2 9180 bool found;
d1fad7c6 9181
fb167eb2 9182 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
4e8a9624 9183 filename_ptr, functionname_ptr,
fb167eb2 9184 line_ptr, discriminator_ptr,
9defd221 9185 dwarf_debug_sections,
e7679060 9186 &elf_tdata (abfd)->dwarf2_find_line_info))
0a1b45a2 9187 return true;
e7679060
AM
9188
9189 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9190 filename_ptr, functionname_ptr, line_ptr))
d1fad7c6
NC
9191 {
9192 if (!*functionname_ptr)
e00e8198
AM
9193 _bfd_elf_find_function (abfd, symbols, section, offset,
9194 *filename_ptr ? NULL : filename_ptr,
9195 functionname_ptr);
0a1b45a2 9196 return true;
d1fad7c6
NC
9197 }
9198
9199 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
4e8a9624
AM
9200 &found, filename_ptr,
9201 functionname_ptr, line_ptr,
9202 &elf_tdata (abfd)->line_info))
0a1b45a2 9203 return false;
dc43ada5 9204 if (found && (*functionname_ptr || *line_ptr))
0a1b45a2 9205 return true;
d1fad7c6
NC
9206
9207 if (symbols == NULL)
0a1b45a2 9208 return false;
d1fad7c6 9209
e00e8198
AM
9210 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9211 filename_ptr, functionname_ptr))
0a1b45a2 9212 return false;
d1fad7c6 9213
252b5132 9214 *line_ptr = 0;
0a1b45a2 9215 return true;
252b5132
RH
9216}
9217
5420f73d
L
9218/* Find the line for a symbol. */
9219
0a1b45a2 9220bool
5420f73d
L
9221_bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9222 const char **filename_ptr, unsigned int *line_ptr)
9b8d1a36 9223{
fb167eb2
AM
9224 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9225 filename_ptr, NULL, line_ptr, NULL,
9defd221 9226 dwarf_debug_sections,
fb167eb2 9227 &elf_tdata (abfd)->dwarf2_find_line_info);
5420f73d
L
9228}
9229
4ab527b0
FF
9230/* After a call to bfd_find_nearest_line, successive calls to
9231 bfd_find_inliner_info can be used to get source information about
9232 each level of function inlining that terminated at the address
9233 passed to bfd_find_nearest_line. Currently this is only supported
9234 for DWARF2 with appropriate DWARF3 extensions. */
9235
0a1b45a2 9236bool
4ab527b0
FF
9237_bfd_elf_find_inliner_info (bfd *abfd,
9238 const char **filename_ptr,
9239 const char **functionname_ptr,
9240 unsigned int *line_ptr)
9241{
0a1b45a2 9242 bool found;
4ab527b0
FF
9243 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9244 functionname_ptr, line_ptr,
9245 & elf_tdata (abfd)->dwarf2_find_line_info);
9246 return found;
9247}
9248
252b5132 9249int
a6b96beb 9250_bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
252b5132 9251{
8ded5a0f
AM
9252 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9253 int ret = bed->s->sizeof_ehdr;
252b5132 9254
0e1862bb 9255 if (!bfd_link_relocatable (info))
8ded5a0f 9256 {
12bd6957 9257 bfd_size_type phdr_size = elf_program_header_size (abfd);
8ded5a0f 9258
62d7a5f6
AM
9259 if (phdr_size == (bfd_size_type) -1)
9260 {
9261 struct elf_segment_map *m;
9262
9263 phdr_size = 0;
12bd6957 9264 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
62d7a5f6 9265 phdr_size += bed->s->sizeof_phdr;
8ded5a0f 9266
62d7a5f6
AM
9267 if (phdr_size == 0)
9268 phdr_size = get_program_header_size (abfd, info);
9269 }
8ded5a0f 9270
12bd6957 9271 elf_program_header_size (abfd) = phdr_size;
8ded5a0f
AM
9272 ret += phdr_size;
9273 }
9274
252b5132
RH
9275 return ret;
9276}
9277
0a1b45a2 9278bool
217aa764
AM
9279_bfd_elf_set_section_contents (bfd *abfd,
9280 sec_ptr section,
0f867abe 9281 const void *location,
217aa764
AM
9282 file_ptr offset,
9283 bfd_size_type count)
252b5132
RH
9284{
9285 Elf_Internal_Shdr *hdr;
1b6aeedb 9286 file_ptr pos;
252b5132
RH
9287
9288 if (! abfd->output_has_begun
217aa764 9289 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
0a1b45a2 9290 return false;
252b5132 9291
0ce398f1 9292 if (!count)
0a1b45a2 9293 return true;
0ce398f1 9294
252b5132 9295 hdr = &elf_section_data (section)->this_hdr;
0ce398f1
L
9296 if (hdr->sh_offset == (file_ptr) -1)
9297 {
a0dcf297
NC
9298 unsigned char *contents;
9299
1ff6de03
NA
9300 if (bfd_section_is_ctf (section))
9301 /* Nothing to do with this section: the contents are generated
9302 later. */
0a1b45a2 9303 return true;
1ff6de03 9304
a0dcf297
NC
9305 if ((section->flags & SEC_ELF_COMPRESS) == 0)
9306 {
9307 _bfd_error_handler
9308 (_("%pB:%pA: error: attempting to write into an unallocated compressed section"),
9309 abfd, section);
9310 bfd_set_error (bfd_error_invalid_operation);
0a1b45a2 9311 return false;
a0dcf297
NC
9312 }
9313
9314 if ((offset + count) > hdr->sh_size)
9315 {
9316 _bfd_error_handler
9317 (_("%pB:%pA: error: attempting to write over the end of the section"),
9318 abfd, section);
9319
9320 bfd_set_error (bfd_error_invalid_operation);
0a1b45a2 9321 return false;
a0dcf297
NC
9322 }
9323
9324 contents = hdr->contents;
9325 if (contents == NULL)
9326 {
9327 _bfd_error_handler
9328 (_("%pB:%pA: error: attempting to write section into an empty buffer"),
9329 abfd, section);
9330
9331 bfd_set_error (bfd_error_invalid_operation);
0a1b45a2 9332 return false;
a0dcf297
NC
9333 }
9334
0ce398f1 9335 memcpy (contents + offset, location, count);
0a1b45a2 9336 return true;
0ce398f1 9337 }
a0dcf297 9338
dc810e39
AM
9339 pos = hdr->sh_offset + offset;
9340 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9341 || bfd_bwrite (location, count, abfd) != count)
0a1b45a2 9342 return false;
252b5132 9343
0a1b45a2 9344 return true;
252b5132
RH
9345}
9346
0a1b45a2 9347bool
217aa764
AM
9348_bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9349 arelent *cache_ptr ATTRIBUTE_UNUSED,
9350 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
252b5132
RH
9351{
9352 abort ();
0a1b45a2 9353 return false;
252b5132
RH
9354}
9355
252b5132
RH
9356/* Try to convert a non-ELF reloc into an ELF one. */
9357
0a1b45a2 9358bool
217aa764 9359_bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
252b5132 9360{
c044fabd 9361 /* Check whether we really have an ELF howto. */
252b5132
RH
9362
9363 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9364 {
9365 bfd_reloc_code_real_type code;
9366 reloc_howto_type *howto;
9367
9368 /* Alien reloc: Try to determine its type to replace it with an
c044fabd 9369 equivalent ELF reloc. */
252b5132
RH
9370
9371 if (areloc->howto->pc_relative)
9372 {
9373 switch (areloc->howto->bitsize)
9374 {
9375 case 8:
9376 code = BFD_RELOC_8_PCREL;
9377 break;
9378 case 12:
9379 code = BFD_RELOC_12_PCREL;
9380 break;
9381 case 16:
9382 code = BFD_RELOC_16_PCREL;
9383 break;
9384 case 24:
9385 code = BFD_RELOC_24_PCREL;
9386 break;
9387 case 32:
9388 code = BFD_RELOC_32_PCREL;
9389 break;
9390 case 64:
9391 code = BFD_RELOC_64_PCREL;
9392 break;
9393 default:
9394 goto fail;
9395 }
9396
9397 howto = bfd_reloc_type_lookup (abfd, code);
9398
94698d01 9399 if (howto && areloc->howto->pcrel_offset != howto->pcrel_offset)
252b5132
RH
9400 {
9401 if (howto->pcrel_offset)
9402 areloc->addend += areloc->address;
9403 else
9404 areloc->addend -= areloc->address; /* addend is unsigned!! */
9405 }
9406 }
9407 else
9408 {
9409 switch (areloc->howto->bitsize)
9410 {
9411 case 8:
9412 code = BFD_RELOC_8;
9413 break;
9414 case 14:
9415 code = BFD_RELOC_14;
9416 break;
9417 case 16:
9418 code = BFD_RELOC_16;
9419 break;
9420 case 26:
9421 code = BFD_RELOC_26;
9422 break;
9423 case 32:
9424 code = BFD_RELOC_32;
9425 break;
9426 case 64:
9427 code = BFD_RELOC_64;
9428 break;
9429 default:
9430 goto fail;
9431 }
9432
9433 howto = bfd_reloc_type_lookup (abfd, code);
9434 }
9435
9436 if (howto)
9437 areloc->howto = howto;
9438 else
9439 goto fail;
9440 }
9441
0a1b45a2 9442 return true;
252b5132
RH
9443
9444 fail:
0aa13fee
AM
9445 /* xgettext:c-format */
9446 _bfd_error_handler (_("%pB: %s unsupported"),
9447 abfd, areloc->howto->name);
9aea1e31 9448 bfd_set_error (bfd_error_sorry);
0a1b45a2 9449 return false;
252b5132
RH
9450}
9451
0a1b45a2 9452bool
217aa764 9453_bfd_elf_close_and_cleanup (bfd *abfd)
252b5132 9454{
d9071b0c 9455 struct elf_obj_tdata *tdata = elf_tdata (abfd);
0ed18fa1
AM
9456 if (tdata != NULL
9457 && (bfd_get_format (abfd) == bfd_object
9458 || bfd_get_format (abfd) == bfd_core))
252b5132 9459 {
c0355132 9460 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
2b0f7ef9 9461 _bfd_elf_strtab_free (elf_shstrtab (abfd));
d9071b0c 9462 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
252b5132
RH
9463 }
9464
9465 return _bfd_generic_close_and_cleanup (abfd);
9466}
9467
9468/* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9469 in the relocation's offset. Thus we cannot allow any sort of sanity
9470 range-checking to interfere. There is nothing else to do in processing
9471 this reloc. */
9472
9473bfd_reloc_status_type
217aa764
AM
9474_bfd_elf_rel_vtable_reloc_fn
9475 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
fc0a2244 9476 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
217aa764
AM
9477 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9478 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
9479{
9480 return bfd_reloc_ok;
9481}
252b5132
RH
9482\f
9483/* Elf core file support. Much of this only works on native
9484 toolchains, since we rely on knowing the
9485 machine-dependent procfs structure in order to pick
c044fabd 9486 out details about the corefile. */
252b5132
RH
9487
9488#ifdef HAVE_SYS_PROCFS_H
9489# include <sys/procfs.h>
9490#endif
9491
261b8d08
PA
9492/* Return a PID that identifies a "thread" for threaded cores, or the
9493 PID of the main process for non-threaded cores. */
252b5132
RH
9494
9495static int
217aa764 9496elfcore_make_pid (bfd *abfd)
252b5132 9497{
261b8d08
PA
9498 int pid;
9499
228e534f 9500 pid = elf_tdata (abfd)->core->lwpid;
261b8d08 9501 if (pid == 0)
228e534f 9502 pid = elf_tdata (abfd)->core->pid;
261b8d08
PA
9503
9504 return pid;
252b5132
RH
9505}
9506
252b5132
RH
9507/* If there isn't a section called NAME, make one, using
9508 data from SECT. Note, this function will generate a
9509 reference to NAME, so you shouldn't deallocate or
c044fabd 9510 overwrite it. */
252b5132 9511
0a1b45a2 9512static bool
217aa764 9513elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
252b5132 9514{
c044fabd 9515 asection *sect2;
252b5132
RH
9516
9517 if (bfd_get_section_by_name (abfd, name) != NULL)
0a1b45a2 9518 return true;
252b5132 9519
117ed4f8 9520 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
252b5132 9521 if (sect2 == NULL)
0a1b45a2 9522 return false;
252b5132 9523
eea6121a 9524 sect2->size = sect->size;
252b5132 9525 sect2->filepos = sect->filepos;
252b5132 9526 sect2->alignment_power = sect->alignment_power;
0a1b45a2 9527 return true;
252b5132
RH
9528}
9529
bb0082d6
AM
9530/* Create a pseudosection containing SIZE bytes at FILEPOS. This
9531 actually creates up to two pseudosections:
9532 - For the single-threaded case, a section named NAME, unless
9533 such a section already exists.
9534 - For the multi-threaded case, a section named "NAME/PID", where
9535 PID is elfcore_make_pid (abfd).
24d3e51b 9536 Both pseudosections have identical contents. */
0a1b45a2 9537bool
217aa764
AM
9538_bfd_elfcore_make_pseudosection (bfd *abfd,
9539 char *name,
9540 size_t size,
9541 ufile_ptr filepos)
bb0082d6
AM
9542{
9543 char buf[100];
9544 char *threaded_name;
d4c88bbb 9545 size_t len;
bb0082d6
AM
9546 asection *sect;
9547
9548 /* Build the section name. */
9549
9550 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
d4c88bbb 9551 len = strlen (buf) + 1;
a50b1753 9552 threaded_name = (char *) bfd_alloc (abfd, len);
bb0082d6 9553 if (threaded_name == NULL)
0a1b45a2 9554 return false;
d4c88bbb 9555 memcpy (threaded_name, buf, len);
bb0082d6 9556
117ed4f8
AM
9557 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9558 SEC_HAS_CONTENTS);
bb0082d6 9559 if (sect == NULL)
0a1b45a2 9560 return false;
eea6121a 9561 sect->size = size;
bb0082d6 9562 sect->filepos = filepos;
bb0082d6
AM
9563 sect->alignment_power = 2;
9564
936e320b 9565 return elfcore_maybe_make_sect (abfd, name, sect);
bb0082d6
AM
9566}
9567
0a1b45a2 9568static bool
58e07198
CZ
9569elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9570 size_t offs)
9571{
9572 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9573 SEC_HAS_CONTENTS);
9574
9575 if (sect == NULL)
0a1b45a2 9576 return false;
58e07198
CZ
9577
9578 sect->size = note->descsz - offs;
9579 sect->filepos = note->descpos + offs;
9580 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9581
0a1b45a2 9582 return true;
58e07198
CZ
9583}
9584
252b5132 9585/* prstatus_t exists on:
4a938328 9586 solaris 2.5+
252b5132
RH
9587 linux 2.[01] + glibc
9588 unixware 4.2
9589*/
9590
9591#if defined (HAVE_PRSTATUS_T)
a7b97311 9592
0a1b45a2 9593static bool
217aa764 9594elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9595{
eea6121a 9596 size_t size;
7ee38065 9597 int offset;
252b5132 9598
4a938328
MS
9599 if (note->descsz == sizeof (prstatus_t))
9600 {
9601 prstatus_t prstat;
252b5132 9602
eea6121a 9603 size = sizeof (prstat.pr_reg);
7ee38065 9604 offset = offsetof (prstatus_t, pr_reg);
4a938328 9605 memcpy (&prstat, note->descdata, sizeof (prstat));
252b5132 9606
fa49d224
NC
9607 /* Do not overwrite the core signal if it
9608 has already been set by another thread. */
228e534f
AM
9609 if (elf_tdata (abfd)->core->signal == 0)
9610 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9611 if (elf_tdata (abfd)->core->pid == 0)
9612 elf_tdata (abfd)->core->pid = prstat.pr_pid;
252b5132 9613
4a938328
MS
9614 /* pr_who exists on:
9615 solaris 2.5+
9616 unixware 4.2
9617 pr_who doesn't exist on:
9618 linux 2.[01]
9619 */
252b5132 9620#if defined (HAVE_PRSTATUS_T_PR_WHO)
228e534f 9621 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9622#else
228e534f 9623 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
252b5132 9624#endif
4a938328 9625 }
7ee38065 9626#if defined (HAVE_PRSTATUS32_T)
4a938328
MS
9627 else if (note->descsz == sizeof (prstatus32_t))
9628 {
9629 /* 64-bit host, 32-bit corefile */
9630 prstatus32_t prstat;
9631
eea6121a 9632 size = sizeof (prstat.pr_reg);
7ee38065 9633 offset = offsetof (prstatus32_t, pr_reg);
4a938328
MS
9634 memcpy (&prstat, note->descdata, sizeof (prstat));
9635
fa49d224
NC
9636 /* Do not overwrite the core signal if it
9637 has already been set by another thread. */
228e534f
AM
9638 if (elf_tdata (abfd)->core->signal == 0)
9639 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9640 if (elf_tdata (abfd)->core->pid == 0)
9641 elf_tdata (abfd)->core->pid = prstat.pr_pid;
4a938328
MS
9642
9643 /* pr_who exists on:
9644 solaris 2.5+
9645 unixware 4.2
9646 pr_who doesn't exist on:
9647 linux 2.[01]
9648 */
7ee38065 9649#if defined (HAVE_PRSTATUS32_T_PR_WHO)
228e534f 9650 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9651#else
228e534f 9652 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
4a938328
MS
9653#endif
9654 }
7ee38065 9655#endif /* HAVE_PRSTATUS32_T */
4a938328
MS
9656 else
9657 {
9658 /* Fail - we don't know how to handle any other
9659 note size (ie. data object type). */
0a1b45a2 9660 return true;
4a938328 9661 }
252b5132 9662
bb0082d6 9663 /* Make a ".reg/999" section and a ".reg" section. */
936e320b 9664 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 9665 size, note->descpos + offset);
252b5132
RH
9666}
9667#endif /* defined (HAVE_PRSTATUS_T) */
9668
bb0082d6 9669/* Create a pseudosection containing the exact contents of NOTE. */
0a1b45a2 9670static bool
217aa764
AM
9671elfcore_make_note_pseudosection (bfd *abfd,
9672 char *name,
9673 Elf_Internal_Note *note)
252b5132 9674{
936e320b
AM
9675 return _bfd_elfcore_make_pseudosection (abfd, name,
9676 note->descsz, note->descpos);
252b5132
RH
9677}
9678
ff08c6bb
JB
9679/* There isn't a consistent prfpregset_t across platforms,
9680 but it doesn't matter, because we don't have to pick this
c044fabd
KH
9681 data structure apart. */
9682
0a1b45a2 9683static bool
217aa764 9684elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9685{
9686 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9687}
9688
ff08c6bb 9689/* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
971d4640 9690 type of NT_PRXFPREG. Just include the whole note's contents
ff08c6bb 9691 literally. */
c044fabd 9692
0a1b45a2 9693static bool
217aa764 9694elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9695{
9696 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9697}
9698
4339cae0
L
9699/* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9700 with a note type of NT_X86_XSTATE. Just include the whole note's
9701 contents literally. */
9702
0a1b45a2 9703static bool
4339cae0
L
9704elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9705{
9706 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9707}
9708
0a1b45a2 9709static bool
97753bd5
AM
9710elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9711{
9712 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9713}
9714
0a1b45a2 9715static bool
89eeb0bc
LM
9716elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9717{
9718 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9719}
97753bd5 9720
0a1b45a2 9721static bool
cb2366c1
EBM
9722elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9723{
9724 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9725}
9726
0a1b45a2 9727static bool
cb2366c1
EBM
9728elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9729{
9730 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9731}
9732
0a1b45a2 9733static bool
cb2366c1
EBM
9734elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9735{
9736 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9737}
9738
0a1b45a2 9739static bool
cb2366c1
EBM
9740elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9741{
9742 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9743}
9744
0a1b45a2 9745static bool
cb2366c1
EBM
9746elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9747{
9748 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9749}
9750
0a1b45a2 9751static bool
cb2366c1
EBM
9752elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9753{
9754 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9755}
9756
0a1b45a2 9757static bool
cb2366c1
EBM
9758elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9759{
9760 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9761}
9762
0a1b45a2 9763static bool
cb2366c1
EBM
9764elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9765{
9766 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9767}
9768
0a1b45a2 9769static bool
cb2366c1
EBM
9770elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9771{
9772 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9773}
9774
0a1b45a2 9775static bool
cb2366c1
EBM
9776elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9777{
9778 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9779}
9780
0a1b45a2 9781static bool
cb2366c1
EBM
9782elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9783{
9784 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9785}
9786
0a1b45a2 9787static bool
cb2366c1
EBM
9788elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9789{
9790 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9791}
9792
0a1b45a2 9793static bool
cb2366c1
EBM
9794elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9795{
9796 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9797}
9798
0a1b45a2 9799static bool
0675e188
UW
9800elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9801{
9802 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9803}
9804
0a1b45a2 9805static bool
d7eeb400
MS
9806elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9807{
9808 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9809}
9810
0a1b45a2 9811static bool
d7eeb400
MS
9812elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9813{
9814 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9815}
9816
0a1b45a2 9817static bool
d7eeb400
MS
9818elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9819{
9820 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9821}
9822
0a1b45a2 9823static bool
d7eeb400
MS
9824elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9825{
9826 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9827}
9828
0a1b45a2 9829static bool
d7eeb400
MS
9830elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9831{
9832 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9833}
9834
0a1b45a2 9835static bool
355b81d9
UW
9836elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9837{
9838 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9839}
9840
0a1b45a2 9841static bool
355b81d9
UW
9842elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9843{
9844 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9845}
9846
0a1b45a2 9847static bool
abb3f6cc
NC
9848elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9849{
9850 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9851}
9852
0a1b45a2 9853static bool
4ef9f41a
AA
9854elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9855{
9856 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9857}
9858
0a1b45a2 9859static bool
4ef9f41a
AA
9860elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9861{
9862 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9863}
9864
0a1b45a2 9865static bool
88ab90e8
AA
9866elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9867{
9868 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9869}
9870
0a1b45a2 9871static bool
88ab90e8
AA
9872elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9873{
9874 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9875}
9876
0a1b45a2 9877static bool
faa9a424
UW
9878elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9879{
9880 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9881}
9882
0a1b45a2 9883static bool
652451f8
YZ
9884elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9885{
9886 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9887}
9888
0a1b45a2 9889static bool
652451f8
YZ
9890elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9891{
9892 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9893}
9894
0a1b45a2 9895static bool
652451f8
YZ
9896elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9897{
9898 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9899}
9900
0a1b45a2 9901static bool
ad1cc4e4
AH
9902elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9903{
9904 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9905}
9906
0a1b45a2 9907static bool
e6c3b5bf
AH
9908elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9909{
9910 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9911}
9912
f0bbe8ba
LM
9913static bool
9914elfcore_grok_aarch_mte (bfd *abfd, Elf_Internal_Note *note)
9915{
9916 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-mte",
9917 note);
9918}
9919
0a1b45a2 9920static bool
27456742
AK
9921elfcore_grok_arc_v2 (bfd *abfd, Elf_Internal_Note *note)
9922{
9923 return elfcore_make_note_pseudosection (abfd, ".reg-arc-v2", note);
9924}
9925
db6092f3
AB
9926/* Convert NOTE into a bfd_section called ".reg-riscv-csr". Return TRUE if
9927 successful otherwise, return FALSE. */
9928
0a1b45a2 9929static bool
db6092f3
AB
9930elfcore_grok_riscv_csr (bfd *abfd, Elf_Internal_Note *note)
9931{
9932 return elfcore_make_note_pseudosection (abfd, ".reg-riscv-csr", note);
9933}
9934
b63a5e38
AB
9935/* Convert NOTE into a bfd_section called ".gdb-tdesc". Return TRUE if
9936 successful otherwise, return FALSE. */
9937
0a1b45a2 9938static bool
b63a5e38
AB
9939elfcore_grok_gdb_tdesc (bfd *abfd, Elf_Internal_Note *note)
9940{
9941 return elfcore_make_note_pseudosection (abfd, ".gdb-tdesc", note);
9942}
9943
e214f8db 9944static bool
9945elfcore_grok_loongarch_cpucfg (bfd *abfd, Elf_Internal_Note *note)
9946{
9947 return elfcore_make_note_pseudosection (abfd, ".reg-loongarch-cpucfg", note);
9948}
9949
9950static bool
9951elfcore_grok_loongarch_lbt (bfd *abfd, Elf_Internal_Note *note)
9952{
9953 return elfcore_make_note_pseudosection (abfd, ".reg-loongarch-lbt", note);
9954}
9955
9956static bool
9957elfcore_grok_loongarch_lsx (bfd *abfd, Elf_Internal_Note *note)
9958{
9959 return elfcore_make_note_pseudosection (abfd, ".reg-loongarch-lsx", note);
9960}
9961
9962static bool
9963elfcore_grok_loongarch_lasx (bfd *abfd, Elf_Internal_Note *note)
9964{
9965 return elfcore_make_note_pseudosection (abfd, ".reg-loongarch-lasx", note);
9966}
9967
252b5132 9968#if defined (HAVE_PRPSINFO_T)
4a938328 9969typedef prpsinfo_t elfcore_psinfo_t;
7ee38065 9970#if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9971typedef prpsinfo32_t elfcore_psinfo32_t;
9972#endif
252b5132
RH
9973#endif
9974
9975#if defined (HAVE_PSINFO_T)
4a938328 9976typedef psinfo_t elfcore_psinfo_t;
7ee38065 9977#if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9978typedef psinfo32_t elfcore_psinfo32_t;
9979#endif
252b5132
RH
9980#endif
9981
252b5132
RH
9982/* return a malloc'ed copy of a string at START which is at
9983 most MAX bytes long, possibly without a terminating '\0'.
c044fabd 9984 the copy will always have a terminating '\0'. */
252b5132 9985
936e320b 9986char *
217aa764 9987_bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
252b5132 9988{
dc810e39 9989 char *dups;
a50b1753 9990 char *end = (char *) memchr (start, '\0', max);
dc810e39 9991 size_t len;
252b5132
RH
9992
9993 if (end == NULL)
9994 len = max;
9995 else
9996 len = end - start;
9997
a50b1753 9998 dups = (char *) bfd_alloc (abfd, len + 1);
dc810e39 9999 if (dups == NULL)
252b5132
RH
10000 return NULL;
10001
dc810e39
AM
10002 memcpy (dups, start, len);
10003 dups[len] = '\0';
252b5132 10004
dc810e39 10005 return dups;
252b5132
RH
10006}
10007
bb0082d6 10008#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
0a1b45a2 10009static bool
217aa764 10010elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
252b5132 10011{
4a938328
MS
10012 if (note->descsz == sizeof (elfcore_psinfo_t))
10013 {
10014 elfcore_psinfo_t psinfo;
252b5132 10015
7ee38065 10016 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 10017
335e41d4 10018#if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
228e534f 10019 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 10020#endif
228e534f 10021 elf_tdata (abfd)->core->program
936e320b
AM
10022 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
10023 sizeof (psinfo.pr_fname));
252b5132 10024
228e534f 10025 elf_tdata (abfd)->core->command
936e320b
AM
10026 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
10027 sizeof (psinfo.pr_psargs));
4a938328 10028 }
7ee38065 10029#if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
4a938328
MS
10030 else if (note->descsz == sizeof (elfcore_psinfo32_t))
10031 {
10032 /* 64-bit host, 32-bit corefile */
10033 elfcore_psinfo32_t psinfo;
10034
7ee38065 10035 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 10036
335e41d4 10037#if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
228e534f 10038 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 10039#endif
228e534f 10040 elf_tdata (abfd)->core->program
936e320b
AM
10041 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
10042 sizeof (psinfo.pr_fname));
4a938328 10043
228e534f 10044 elf_tdata (abfd)->core->command
936e320b
AM
10045 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
10046 sizeof (psinfo.pr_psargs));
4a938328
MS
10047 }
10048#endif
10049
10050 else
10051 {
10052 /* Fail - we don't know how to handle any other
10053 note size (ie. data object type). */
0a1b45a2 10054 return true;
4a938328 10055 }
252b5132
RH
10056
10057 /* Note that for some reason, a spurious space is tacked
10058 onto the end of the args in some (at least one anyway)
c044fabd 10059 implementations, so strip it off if it exists. */
252b5132
RH
10060
10061 {
228e534f 10062 char *command = elf_tdata (abfd)->core->command;
252b5132
RH
10063 int n = strlen (command);
10064
10065 if (0 < n && command[n - 1] == ' ')
10066 command[n - 1] = '\0';
10067 }
10068
0a1b45a2 10069 return true;
252b5132
RH
10070}
10071#endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
10072
252b5132 10073#if defined (HAVE_PSTATUS_T)
0a1b45a2 10074static bool
217aa764 10075elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 10076{
f572a39d
AM
10077 if (note->descsz == sizeof (pstatus_t)
10078#if defined (HAVE_PXSTATUS_T)
10079 || note->descsz == sizeof (pxstatus_t)
10080#endif
10081 )
4a938328
MS
10082 {
10083 pstatus_t pstat;
252b5132 10084
4a938328 10085 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 10086
228e534f 10087 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328 10088 }
7ee38065 10089#if defined (HAVE_PSTATUS32_T)
4a938328
MS
10090 else if (note->descsz == sizeof (pstatus32_t))
10091 {
10092 /* 64-bit host, 32-bit corefile */
10093 pstatus32_t pstat;
252b5132 10094
4a938328 10095 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 10096
228e534f 10097 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328
MS
10098 }
10099#endif
252b5132
RH
10100 /* Could grab some more details from the "representative"
10101 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
c044fabd 10102 NT_LWPSTATUS note, presumably. */
252b5132 10103
0a1b45a2 10104 return true;
252b5132
RH
10105}
10106#endif /* defined (HAVE_PSTATUS_T) */
10107
252b5132 10108#if defined (HAVE_LWPSTATUS_T)
0a1b45a2 10109static bool
217aa764 10110elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132
RH
10111{
10112 lwpstatus_t lwpstat;
10113 char buf[100];
c044fabd 10114 char *name;
d4c88bbb 10115 size_t len;
c044fabd 10116 asection *sect;
252b5132 10117
f572a39d
AM
10118 if (note->descsz != sizeof (lwpstat)
10119#if defined (HAVE_LWPXSTATUS_T)
10120 && note->descsz != sizeof (lwpxstatus_t)
10121#endif
10122 )
0a1b45a2 10123 return true;
252b5132
RH
10124
10125 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
10126
228e534f 10127 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
a1504221
JB
10128 /* Do not overwrite the core signal if it has already been set by
10129 another thread. */
228e534f
AM
10130 if (elf_tdata (abfd)->core->signal == 0)
10131 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
252b5132 10132
c044fabd 10133 /* Make a ".reg/999" section. */
252b5132
RH
10134
10135 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
d4c88bbb 10136 len = strlen (buf) + 1;
217aa764 10137 name = bfd_alloc (abfd, len);
252b5132 10138 if (name == NULL)
0a1b45a2 10139 return false;
d4c88bbb 10140 memcpy (name, buf, len);
252b5132 10141
117ed4f8 10142 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 10143 if (sect == NULL)
0a1b45a2 10144 return false;
252b5132
RH
10145
10146#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 10147 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
252b5132
RH
10148 sect->filepos = note->descpos
10149 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
10150#endif
10151
10152#if defined (HAVE_LWPSTATUS_T_PR_REG)
eea6121a 10153 sect->size = sizeof (lwpstat.pr_reg);
252b5132
RH
10154 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
10155#endif
10156
252b5132
RH
10157 sect->alignment_power = 2;
10158
10159 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
0a1b45a2 10160 return false;
252b5132
RH
10161
10162 /* Make a ".reg2/999" section */
10163
10164 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
d4c88bbb 10165 len = strlen (buf) + 1;
217aa764 10166 name = bfd_alloc (abfd, len);
252b5132 10167 if (name == NULL)
0a1b45a2 10168 return false;
d4c88bbb 10169 memcpy (name, buf, len);
252b5132 10170
117ed4f8 10171 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 10172 if (sect == NULL)
0a1b45a2 10173 return false;
252b5132
RH
10174
10175#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 10176 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
252b5132
RH
10177 sect->filepos = note->descpos
10178 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
10179#endif
10180
10181#if defined (HAVE_LWPSTATUS_T_PR_FPREG)
eea6121a 10182 sect->size = sizeof (lwpstat.pr_fpreg);
252b5132
RH
10183 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
10184#endif
10185
252b5132
RH
10186 sect->alignment_power = 2;
10187
936e320b 10188 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
252b5132
RH
10189}
10190#endif /* defined (HAVE_LWPSTATUS_T) */
10191
8fbac78b
JT
10192/* These constants, and the structure offsets used below, are defined by
10193 Cygwin's core_dump.h */
10194#define NOTE_INFO_PROCESS 1
10195#define NOTE_INFO_THREAD 2
10196#define NOTE_INFO_MODULE 3
d61f3d03 10197#define NOTE_INFO_MODULE64 4
8fbac78b 10198
0a1b45a2 10199static bool
217aa764 10200elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
16e9c715
NC
10201{
10202 char buf[30];
c044fabd 10203 char *name;
d4c88bbb 10204 size_t len;
3cdad084 10205 unsigned int name_size;
c044fabd 10206 asection *sect;
2fef9373 10207 unsigned int type;
4a6636fb
PA
10208 int is_active_thread;
10209 bfd_vma base_addr;
16e9c715 10210
04ec0fa2 10211 if (note->descsz < 4)
0a1b45a2 10212 return true;
16e9c715 10213
08dedd66 10214 if (! startswith (note->namedata, "win32"))
0a1b45a2 10215 return true;
4a6636fb
PA
10216
10217 type = bfd_get_32 (abfd, note->descdata);
c044fabd 10218
7e0d77ef
NC
10219 struct
10220 {
404ec933
JT
10221 const char *type_name;
10222 unsigned long min_size;
10223 } size_check[] =
10224 {
10225 { "NOTE_INFO_PROCESS", 12 },
10226 { "NOTE_INFO_THREAD", 12 },
10227 { "NOTE_INFO_MODULE", 12 },
10228 { "NOTE_INFO_MODULE64", 16 },
10229 };
10230
7e0d77ef 10231 if (type == 0 || type > (sizeof(size_check)/sizeof(size_check[0])))
0a1b45a2 10232 return true;
404ec933
JT
10233
10234 if (note->descsz < size_check[type - 1].min_size)
10235 {
10236 _bfd_error_handler (_("%pB: warning: win32pstatus %s of size %lu bytes is too small"),
10237 abfd, size_check[type - 1].type_name, note->descsz);
0a1b45a2 10238 return true;
404ec933
JT
10239 }
10240
4a6636fb 10241 switch (type)
16e9c715 10242 {
8fbac78b 10243 case NOTE_INFO_PROCESS:
228e534f 10244 /* FIXME: need to add ->core->command. */
ff2084b9 10245 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 4);
ff2084b9 10246 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 8);
c044fabd 10247 break;
16e9c715 10248
8fbac78b 10249 case NOTE_INFO_THREAD:
ff2084b9
JT
10250 /* Make a ".reg/<tid>" section containing the Win32 API thread CONTEXT
10251 structure. */
4a6636fb 10252 /* thread_info.tid */
ff2084b9 10253 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 4));
c044fabd 10254
d4c88bbb 10255 len = strlen (buf) + 1;
a50b1753 10256 name = (char *) bfd_alloc (abfd, len);
16e9c715 10257 if (name == NULL)
0a1b45a2 10258 return false;
c044fabd 10259
d4c88bbb 10260 memcpy (name, buf, len);
16e9c715 10261
117ed4f8 10262 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
16e9c715 10263 if (sect == NULL)
0a1b45a2 10264 return false;
c044fabd 10265
4a6636fb 10266 /* sizeof (thread_info.thread_context) */
03c29a6f 10267 sect->size = note->descsz - 12;
4a6636fb
PA
10268 /* offsetof (thread_info.thread_context) */
10269 sect->filepos = note->descpos + 12;
16e9c715
NC
10270 sect->alignment_power = 2;
10271
4a6636fb
PA
10272 /* thread_info.is_active_thread */
10273 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10274
10275 if (is_active_thread)
16e9c715 10276 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
0a1b45a2 10277 return false;
16e9c715
NC
10278 break;
10279
8fbac78b 10280 case NOTE_INFO_MODULE:
d61f3d03 10281 case NOTE_INFO_MODULE64:
16e9c715 10282 /* Make a ".module/xxxxxxxx" section. */
d61f3d03
JT
10283 if (type == NOTE_INFO_MODULE)
10284 {
d61f3d03
JT
10285 /* module_info.base_address */
10286 base_addr = bfd_get_32 (abfd, note->descdata + 4);
10287 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
10288 /* module_info.module_name_size */
10289 name_size = bfd_get_32 (abfd, note->descdata + 8);
10290 }
10291 else /* NOTE_INFO_MODULE64 */
10292 {
d61f3d03
JT
10293 /* module_info.base_address */
10294 base_addr = bfd_get_64 (abfd, note->descdata + 4);
10295 sprintf (buf, ".module/%016lx", (unsigned long) base_addr);
10296 /* module_info.module_name_size */
10297 name_size = bfd_get_32 (abfd, note->descdata + 12);
10298 }
c044fabd 10299
d4c88bbb 10300 len = strlen (buf) + 1;
a50b1753 10301 name = (char *) bfd_alloc (abfd, len);
16e9c715 10302 if (name == NULL)
0a1b45a2 10303 return false;
c044fabd 10304
d4c88bbb 10305 memcpy (name, buf, len);
252b5132 10306
117ed4f8 10307 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
c044fabd 10308
16e9c715 10309 if (sect == NULL)
0a1b45a2 10310 return false;
c044fabd 10311
04ec0fa2 10312 if (note->descsz < 12 + name_size)
404ec933 10313 {
3cdad084 10314 _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"),
404ec933 10315 abfd, note->descsz, name_size);
0a1b45a2 10316 return true;
404ec933 10317 }
04ec0fa2 10318
eea6121a 10319 sect->size = note->descsz;
16e9c715 10320 sect->filepos = note->descpos;
16e9c715
NC
10321 sect->alignment_power = 2;
10322 break;
10323
10324 default:
0a1b45a2 10325 return true;
16e9c715
NC
10326 }
10327
0a1b45a2 10328 return true;
16e9c715 10329}
252b5132 10330
0a1b45a2 10331static bool
217aa764 10332elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
252b5132 10333{
9c5bfbb7 10334 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
bb0082d6 10335
252b5132
RH
10336 switch (note->type)
10337 {
10338 default:
0a1b45a2 10339 return true;
252b5132 10340
252b5132 10341 case NT_PRSTATUS:
bb0082d6
AM
10342 if (bed->elf_backend_grok_prstatus)
10343 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
0a1b45a2 10344 return true;
bb0082d6 10345#if defined (HAVE_PRSTATUS_T)
252b5132 10346 return elfcore_grok_prstatus (abfd, note);
bb0082d6 10347#else
0a1b45a2 10348 return true;
252b5132
RH
10349#endif
10350
10351#if defined (HAVE_PSTATUS_T)
10352 case NT_PSTATUS:
10353 return elfcore_grok_pstatus (abfd, note);
10354#endif
10355
10356#if defined (HAVE_LWPSTATUS_T)
10357 case NT_LWPSTATUS:
10358 return elfcore_grok_lwpstatus (abfd, note);
10359#endif
10360
10361 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10362 return elfcore_grok_prfpreg (abfd, note);
10363
c044fabd 10364 case NT_WIN32PSTATUS:
16e9c715 10365 return elfcore_grok_win32pstatus (abfd, note);
16e9c715 10366
c044fabd 10367 case NT_PRXFPREG: /* Linux SSE extension */
e377ab71
MK
10368 if (note->namesz == 6
10369 && strcmp (note->namedata, "LINUX") == 0)
ff08c6bb
JB
10370 return elfcore_grok_prxfpreg (abfd, note);
10371 else
0a1b45a2 10372 return true;
ff08c6bb 10373
4339cae0
L
10374 case NT_X86_XSTATE: /* Linux XSAVE extension */
10375 if (note->namesz == 6
10376 && strcmp (note->namedata, "LINUX") == 0)
10377 return elfcore_grok_xstatereg (abfd, note);
10378 else
0a1b45a2 10379 return true;
4339cae0 10380
97753bd5
AM
10381 case NT_PPC_VMX:
10382 if (note->namesz == 6
10383 && strcmp (note->namedata, "LINUX") == 0)
10384 return elfcore_grok_ppc_vmx (abfd, note);
10385 else
0a1b45a2 10386 return true;
97753bd5 10387
89eeb0bc
LM
10388 case NT_PPC_VSX:
10389 if (note->namesz == 6
07d6d2b8
AM
10390 && strcmp (note->namedata, "LINUX") == 0)
10391 return elfcore_grok_ppc_vsx (abfd, note);
89eeb0bc 10392 else
0a1b45a2 10393 return true;
89eeb0bc 10394
cb2366c1
EBM
10395 case NT_PPC_TAR:
10396 if (note->namesz == 6
4b24dd1a
AM
10397 && strcmp (note->namedata, "LINUX") == 0)
10398 return elfcore_grok_ppc_tar (abfd, note);
cb2366c1 10399 else
0a1b45a2 10400 return true;
cb2366c1
EBM
10401
10402 case NT_PPC_PPR:
10403 if (note->namesz == 6
4b24dd1a
AM
10404 && strcmp (note->namedata, "LINUX") == 0)
10405 return elfcore_grok_ppc_ppr (abfd, note);
cb2366c1 10406 else
0a1b45a2 10407 return true;
cb2366c1
EBM
10408
10409 case NT_PPC_DSCR:
10410 if (note->namesz == 6
4b24dd1a
AM
10411 && strcmp (note->namedata, "LINUX") == 0)
10412 return elfcore_grok_ppc_dscr (abfd, note);
cb2366c1 10413 else
0a1b45a2 10414 return true;
cb2366c1
EBM
10415
10416 case NT_PPC_EBB:
10417 if (note->namesz == 6
4b24dd1a
AM
10418 && strcmp (note->namedata, "LINUX") == 0)
10419 return elfcore_grok_ppc_ebb (abfd, note);
cb2366c1 10420 else
0a1b45a2 10421 return true;
cb2366c1
EBM
10422
10423 case NT_PPC_PMU:
10424 if (note->namesz == 6
4b24dd1a
AM
10425 && strcmp (note->namedata, "LINUX") == 0)
10426 return elfcore_grok_ppc_pmu (abfd, note);
cb2366c1 10427 else
0a1b45a2 10428 return true;
cb2366c1
EBM
10429
10430 case NT_PPC_TM_CGPR:
10431 if (note->namesz == 6
4b24dd1a
AM
10432 && strcmp (note->namedata, "LINUX") == 0)
10433 return elfcore_grok_ppc_tm_cgpr (abfd, note);
cb2366c1 10434 else
0a1b45a2 10435 return true;
cb2366c1
EBM
10436
10437 case NT_PPC_TM_CFPR:
10438 if (note->namesz == 6
4b24dd1a
AM
10439 && strcmp (note->namedata, "LINUX") == 0)
10440 return elfcore_grok_ppc_tm_cfpr (abfd, note);
cb2366c1 10441 else
0a1b45a2 10442 return true;
cb2366c1
EBM
10443
10444 case NT_PPC_TM_CVMX:
10445 if (note->namesz == 6
4b24dd1a
AM
10446 && strcmp (note->namedata, "LINUX") == 0)
10447 return elfcore_grok_ppc_tm_cvmx (abfd, note);
cb2366c1 10448 else
0a1b45a2 10449 return true;
cb2366c1
EBM
10450
10451 case NT_PPC_TM_CVSX:
10452 if (note->namesz == 6
4b24dd1a
AM
10453 && strcmp (note->namedata, "LINUX") == 0)
10454 return elfcore_grok_ppc_tm_cvsx (abfd, note);
cb2366c1 10455 else
0a1b45a2 10456 return true;
cb2366c1
EBM
10457
10458 case NT_PPC_TM_SPR:
10459 if (note->namesz == 6
4b24dd1a
AM
10460 && strcmp (note->namedata, "LINUX") == 0)
10461 return elfcore_grok_ppc_tm_spr (abfd, note);
cb2366c1 10462 else
0a1b45a2 10463 return true;
cb2366c1
EBM
10464
10465 case NT_PPC_TM_CTAR:
10466 if (note->namesz == 6
4b24dd1a
AM
10467 && strcmp (note->namedata, "LINUX") == 0)
10468 return elfcore_grok_ppc_tm_ctar (abfd, note);
cb2366c1 10469 else
0a1b45a2 10470 return true;
cb2366c1
EBM
10471
10472 case NT_PPC_TM_CPPR:
10473 if (note->namesz == 6
4b24dd1a
AM
10474 && strcmp (note->namedata, "LINUX") == 0)
10475 return elfcore_grok_ppc_tm_cppr (abfd, note);
cb2366c1 10476 else
0a1b45a2 10477 return true;
cb2366c1
EBM
10478
10479 case NT_PPC_TM_CDSCR:
10480 if (note->namesz == 6
4b24dd1a
AM
10481 && strcmp (note->namedata, "LINUX") == 0)
10482 return elfcore_grok_ppc_tm_cdscr (abfd, note);
cb2366c1 10483 else
0a1b45a2 10484 return true;
cb2366c1 10485
0675e188
UW
10486 case NT_S390_HIGH_GPRS:
10487 if (note->namesz == 6
07d6d2b8
AM
10488 && strcmp (note->namedata, "LINUX") == 0)
10489 return elfcore_grok_s390_high_gprs (abfd, note);
0675e188 10490 else
0a1b45a2 10491 return true;
0675e188 10492
d7eeb400
MS
10493 case NT_S390_TIMER:
10494 if (note->namesz == 6
07d6d2b8
AM
10495 && strcmp (note->namedata, "LINUX") == 0)
10496 return elfcore_grok_s390_timer (abfd, note);
d7eeb400 10497 else
0a1b45a2 10498 return true;
d7eeb400
MS
10499
10500 case NT_S390_TODCMP:
10501 if (note->namesz == 6
07d6d2b8
AM
10502 && strcmp (note->namedata, "LINUX") == 0)
10503 return elfcore_grok_s390_todcmp (abfd, note);
d7eeb400 10504 else
0a1b45a2 10505 return true;
d7eeb400
MS
10506
10507 case NT_S390_TODPREG:
10508 if (note->namesz == 6
07d6d2b8
AM
10509 && strcmp (note->namedata, "LINUX") == 0)
10510 return elfcore_grok_s390_todpreg (abfd, note);
d7eeb400 10511 else
0a1b45a2 10512 return true;
d7eeb400
MS
10513
10514 case NT_S390_CTRS:
10515 if (note->namesz == 6
07d6d2b8
AM
10516 && strcmp (note->namedata, "LINUX") == 0)
10517 return elfcore_grok_s390_ctrs (abfd, note);
d7eeb400 10518 else
0a1b45a2 10519 return true;
d7eeb400
MS
10520
10521 case NT_S390_PREFIX:
10522 if (note->namesz == 6
07d6d2b8
AM
10523 && strcmp (note->namedata, "LINUX") == 0)
10524 return elfcore_grok_s390_prefix (abfd, note);
d7eeb400 10525 else
0a1b45a2 10526 return true;
d7eeb400 10527
355b81d9
UW
10528 case NT_S390_LAST_BREAK:
10529 if (note->namesz == 6
07d6d2b8
AM
10530 && strcmp (note->namedata, "LINUX") == 0)
10531 return elfcore_grok_s390_last_break (abfd, note);
355b81d9 10532 else
0a1b45a2 10533 return true;
355b81d9
UW
10534
10535 case NT_S390_SYSTEM_CALL:
10536 if (note->namesz == 6
07d6d2b8
AM
10537 && strcmp (note->namedata, "LINUX") == 0)
10538 return elfcore_grok_s390_system_call (abfd, note);
355b81d9 10539 else
0a1b45a2 10540 return true;
355b81d9 10541
abb3f6cc
NC
10542 case NT_S390_TDB:
10543 if (note->namesz == 6
07d6d2b8
AM
10544 && strcmp (note->namedata, "LINUX") == 0)
10545 return elfcore_grok_s390_tdb (abfd, note);
abb3f6cc 10546 else
0a1b45a2 10547 return true;
abb3f6cc 10548
4ef9f41a
AA
10549 case NT_S390_VXRS_LOW:
10550 if (note->namesz == 6
10551 && strcmp (note->namedata, "LINUX") == 0)
10552 return elfcore_grok_s390_vxrs_low (abfd, note);
10553 else
0a1b45a2 10554 return true;
4ef9f41a
AA
10555
10556 case NT_S390_VXRS_HIGH:
10557 if (note->namesz == 6
10558 && strcmp (note->namedata, "LINUX") == 0)
10559 return elfcore_grok_s390_vxrs_high (abfd, note);
10560 else
0a1b45a2 10561 return true;
4ef9f41a 10562
88ab90e8
AA
10563 case NT_S390_GS_CB:
10564 if (note->namesz == 6
10565 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10566 return elfcore_grok_s390_gs_cb (abfd, note);
88ab90e8 10567 else
0a1b45a2 10568 return true;
88ab90e8
AA
10569
10570 case NT_S390_GS_BC:
10571 if (note->namesz == 6
10572 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10573 return elfcore_grok_s390_gs_bc (abfd, note);
88ab90e8 10574 else
0a1b45a2 10575 return true;
88ab90e8 10576
27456742
AK
10577 case NT_ARC_V2:
10578 if (note->namesz == 6
10579 && strcmp (note->namedata, "LINUX") == 0)
10580 return elfcore_grok_arc_v2 (abfd, note);
10581 else
0a1b45a2 10582 return true;
27456742 10583
faa9a424
UW
10584 case NT_ARM_VFP:
10585 if (note->namesz == 6
10586 && strcmp (note->namedata, "LINUX") == 0)
10587 return elfcore_grok_arm_vfp (abfd, note);
10588 else
0a1b45a2 10589 return true;
faa9a424 10590
652451f8
YZ
10591 case NT_ARM_TLS:
10592 if (note->namesz == 6
10593 && strcmp (note->namedata, "LINUX") == 0)
10594 return elfcore_grok_aarch_tls (abfd, note);
10595 else
0a1b45a2 10596 return true;
652451f8
YZ
10597
10598 case NT_ARM_HW_BREAK:
10599 if (note->namesz == 6
10600 && strcmp (note->namedata, "LINUX") == 0)
10601 return elfcore_grok_aarch_hw_break (abfd, note);
10602 else
0a1b45a2 10603 return true;
652451f8
YZ
10604
10605 case NT_ARM_HW_WATCH:
10606 if (note->namesz == 6
10607 && strcmp (note->namedata, "LINUX") == 0)
10608 return elfcore_grok_aarch_hw_watch (abfd, note);
10609 else
0a1b45a2 10610 return true;
652451f8 10611
ad1cc4e4
AH
10612 case NT_ARM_SVE:
10613 if (note->namesz == 6
10614 && strcmp (note->namedata, "LINUX") == 0)
10615 return elfcore_grok_aarch_sve (abfd, note);
10616 else
0a1b45a2 10617 return true;
ad1cc4e4 10618
e6c3b5bf
AH
10619 case NT_ARM_PAC_MASK:
10620 if (note->namesz == 6
10621 && strcmp (note->namedata, "LINUX") == 0)
10622 return elfcore_grok_aarch_pauth (abfd, note);
10623 else
0a1b45a2 10624 return true;
e6c3b5bf 10625
f0bbe8ba
LM
10626 case NT_ARM_TAGGED_ADDR_CTRL:
10627 if (note->namesz == 6
10628 && strcmp (note->namedata, "LINUX") == 0)
10629 return elfcore_grok_aarch_mte (abfd, note);
10630 else
10631 return true;
10632
b63a5e38
AB
10633 case NT_GDB_TDESC:
10634 if (note->namesz == 4
10635 && strcmp (note->namedata, "GDB") == 0)
10636 return elfcore_grok_gdb_tdesc (abfd, note);
10637 else
0a1b45a2 10638 return true;
b63a5e38 10639
db6092f3
AB
10640 case NT_RISCV_CSR:
10641 if (note->namesz == 4
10642 && strcmp (note->namedata, "GDB") == 0)
10643 return elfcore_grok_riscv_csr (abfd, note);
10644 else
0a1b45a2 10645 return true;
db6092f3 10646
e214f8db 10647 case NT_LARCH_CPUCFG:
10648 if (note->namesz == 6
10649 && strcmp (note->namedata, "LINUX") == 0)
10650 return elfcore_grok_loongarch_cpucfg (abfd, note);
10651 else
10652 return true;
10653
10654 case NT_LARCH_LBT:
10655 if (note->namesz == 6
10656 && strcmp (note->namedata, "LINUX") == 0)
10657 return elfcore_grok_loongarch_lbt (abfd, note);
10658 else
10659 return true;
10660
10661 case NT_LARCH_LSX:
10662 if (note->namesz == 6
10663 && strcmp (note->namedata, "LINUX") == 0)
10664 return elfcore_grok_loongarch_lsx (abfd, note);
10665 else
10666 return true;
10667
10668 case NT_LARCH_LASX:
10669 if (note->namesz == 6
10670 && strcmp (note->namedata, "LINUX") == 0)
10671 return elfcore_grok_loongarch_lasx (abfd, note);
10672 else
10673 return true;
10674
252b5132
RH
10675 case NT_PRPSINFO:
10676 case NT_PSINFO:
bb0082d6
AM
10677 if (bed->elf_backend_grok_psinfo)
10678 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
0a1b45a2 10679 return true;
bb0082d6 10680#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
252b5132 10681 return elfcore_grok_psinfo (abfd, note);
bb0082d6 10682#else
0a1b45a2 10683 return true;
252b5132 10684#endif
3333a7c3
RM
10685
10686 case NT_AUXV:
58e07198 10687 return elfcore_make_auxv_note_section (abfd, note, 0);
9015683b 10688
451b7c33
TT
10689 case NT_FILE:
10690 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10691 note);
10692
9015683b
TT
10693 case NT_SIGINFO:
10694 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10695 note);
5b2c414d 10696
252b5132
RH
10697 }
10698}
10699
0a1b45a2 10700static bool
718175fa
JK
10701elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10702{
c74f7d1c 10703 struct bfd_build_id* build_id;
30e8ee25
AM
10704
10705 if (note->descsz == 0)
0a1b45a2 10706 return false;
30e8ee25 10707
c74f7d1c
JT
10708 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10709 if (build_id == NULL)
0a1b45a2 10710 return false;
718175fa 10711
c74f7d1c
JT
10712 build_id->size = note->descsz;
10713 memcpy (build_id->data, note->descdata, note->descsz);
10714 abfd->build_id = build_id;
718175fa 10715
0a1b45a2 10716 return true;
718175fa
JK
10717}
10718
0a1b45a2 10719static bool
718175fa
JK
10720elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10721{
10722 switch (note->type)
10723 {
10724 default:
0a1b45a2 10725 return true;
718175fa 10726
46bed679
L
10727 case NT_GNU_PROPERTY_TYPE_0:
10728 return _bfd_elf_parse_gnu_properties (abfd, note);
10729
718175fa
JK
10730 case NT_GNU_BUILD_ID:
10731 return elfobj_grok_gnu_build_id (abfd, note);
10732 }
10733}
10734
0a1b45a2 10735static bool
e21e5835
NC
10736elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10737{
10738 struct sdt_note *cur =
7a6e0d89
AM
10739 (struct sdt_note *) bfd_alloc (abfd,
10740 sizeof (struct sdt_note) + note->descsz);
e21e5835
NC
10741
10742 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10743 cur->size = (bfd_size_type) note->descsz;
10744 memcpy (cur->data, note->descdata, note->descsz);
10745
10746 elf_tdata (abfd)->sdt_note_head = cur;
10747
0a1b45a2 10748 return true;
e21e5835
NC
10749}
10750
0a1b45a2 10751static bool
e21e5835
NC
10752elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10753{
10754 switch (note->type)
10755 {
10756 case NT_STAPSDT:
10757 return elfobj_grok_stapsdt_note_1 (abfd, note);
10758
10759 default:
0a1b45a2 10760 return true;
e21e5835
NC
10761 }
10762}
10763
0a1b45a2 10764static bool
aa1ed4a9
JB
10765elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10766{
10767 size_t offset;
10768
b5430a3c 10769 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10770 {
b5430a3c 10771 case ELFCLASS32:
0064d223 10772 if (note->descsz < 108)
0a1b45a2 10773 return false;
aa1ed4a9
JB
10774 break;
10775
b5430a3c 10776 case ELFCLASS64:
0064d223 10777 if (note->descsz < 120)
0a1b45a2 10778 return false;
aa1ed4a9
JB
10779 break;
10780
10781 default:
0a1b45a2 10782 return false;
aa1ed4a9
JB
10783 }
10784
0064d223
JB
10785 /* Check for version 1 in pr_version. */
10786 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
0a1b45a2 10787 return false;
80a04378 10788
0064d223
JB
10789 offset = 4;
10790
10791 /* Skip over pr_psinfosz. */
b5430a3c 10792 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
0064d223
JB
10793 offset += 4;
10794 else
10795 {
10796 offset += 4; /* Padding before pr_psinfosz. */
10797 offset += 8;
10798 }
10799
aa1ed4a9
JB
10800 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10801 elf_tdata (abfd)->core->program
10802 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10803 offset += 17;
10804
10805 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10806 elf_tdata (abfd)->core->command
10807 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
0064d223
JB
10808 offset += 81;
10809
10810 /* Padding before pr_pid. */
10811 offset += 2;
10812
10813 /* The pr_pid field was added in version "1a". */
10814 if (note->descsz < offset + 4)
0a1b45a2 10815 return true;
0064d223
JB
10816
10817 elf_tdata (abfd)->core->pid
10818 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
aa1ed4a9 10819
0a1b45a2 10820 return true;
aa1ed4a9
JB
10821}
10822
0a1b45a2 10823static bool
aa1ed4a9
JB
10824elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10825{
10826 size_t offset;
10827 size_t size;
24d3e51b 10828 size_t min_size;
aa1ed4a9 10829
24d3e51b
NC
10830 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10831 Also compute minimum size of this note. */
b5430a3c 10832 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10833 {
b5430a3c 10834 case ELFCLASS32:
24d3e51b
NC
10835 offset = 4 + 4;
10836 min_size = offset + (4 * 2) + 4 + 4 + 4;
aa1ed4a9
JB
10837 break;
10838
b5430a3c 10839 case ELFCLASS64:
24d3e51b
NC
10840 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10841 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
aa1ed4a9
JB
10842 break;
10843
10844 default:
0a1b45a2 10845 return false;
aa1ed4a9
JB
10846 }
10847
24d3e51b 10848 if (note->descsz < min_size)
0a1b45a2 10849 return false;
24d3e51b
NC
10850
10851 /* Check for version 1 in pr_version. */
10852 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
0a1b45a2 10853 return false;
aa1ed4a9 10854
24d3e51b
NC
10855 /* Extract size of pr_reg from pr_gregsetsz. */
10856 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
b5430a3c 10857 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
24d3e51b
NC
10858 {
10859 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10860 offset += 4 * 2;
10861 }
b5430a3c 10862 else
24d3e51b
NC
10863 {
10864 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10865 offset += 8 * 2;
10866 }
aa1ed4a9 10867
24d3e51b 10868 /* Skip over pr_osreldate. */
aa1ed4a9
JB
10869 offset += 4;
10870
24d3e51b 10871 /* Read signal from pr_cursig. */
aa1ed4a9
JB
10872 if (elf_tdata (abfd)->core->signal == 0)
10873 elf_tdata (abfd)->core->signal
10874 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10875 offset += 4;
10876
24d3e51b 10877 /* Read TID from pr_pid. */
aa1ed4a9
JB
10878 elf_tdata (abfd)->core->lwpid
10879 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10880 offset += 4;
10881
24d3e51b 10882 /* Padding before pr_reg. */
b5430a3c 10883 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
aa1ed4a9
JB
10884 offset += 4;
10885
24d3e51b
NC
10886 /* Make sure that there is enough data remaining in the note. */
10887 if ((note->descsz - offset) < size)
0a1b45a2 10888 return false;
24d3e51b 10889
aa1ed4a9
JB
10890 /* Make a ".reg/999" section and a ".reg" section. */
10891 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10892 size, note->descpos + offset);
10893}
10894
0a1b45a2 10895static bool
aa1ed4a9
JB
10896elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10897{
544c67cd
JB
10898 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10899
aa1ed4a9
JB
10900 switch (note->type)
10901 {
10902 case NT_PRSTATUS:
544c67cd
JB
10903 if (bed->elf_backend_grok_freebsd_prstatus)
10904 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
0a1b45a2 10905 return true;
aa1ed4a9
JB
10906 return elfcore_grok_freebsd_prstatus (abfd, note);
10907
10908 case NT_FPREGSET:
10909 return elfcore_grok_prfpreg (abfd, note);
10910
10911 case NT_PRPSINFO:
10912 return elfcore_grok_freebsd_psinfo (abfd, note);
10913
10914 case NT_FREEBSD_THRMISC:
10915 if (note->namesz == 8)
10916 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10917 else
0a1b45a2 10918 return true;
aa1ed4a9 10919
ddb2bbcf
JB
10920 case NT_FREEBSD_PROCSTAT_PROC:
10921 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10922 note);
10923
10924 case NT_FREEBSD_PROCSTAT_FILES:
10925 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10926 note);
10927
10928 case NT_FREEBSD_PROCSTAT_VMMAP:
10929 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10930 note);
10931
3350c5f5 10932 case NT_FREEBSD_PROCSTAT_AUXV:
58e07198 10933 return elfcore_make_auxv_note_section (abfd, note, 4);
3350c5f5 10934
aa1ed4a9
JB
10935 case NT_X86_XSTATE:
10936 if (note->namesz == 8)
10937 return elfcore_grok_xstatereg (abfd, note);
10938 else
0a1b45a2 10939 return true;
aa1ed4a9 10940
e6f3b9c3
JB
10941 case NT_FREEBSD_PTLWPINFO:
10942 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10943 note);
10944
6d5be5d6
JB
10945 case NT_ARM_VFP:
10946 return elfcore_grok_arm_vfp (abfd, note);
10947
aa1ed4a9 10948 default:
0a1b45a2 10949 return true;
aa1ed4a9
JB
10950 }
10951}
10952
0a1b45a2 10953static bool
217aa764 10954elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
50b2bdb7
AM
10955{
10956 char *cp;
10957
10958 cp = strchr (note->namedata, '@');
10959 if (cp != NULL)
10960 {
d2b64500 10961 *lwpidp = atoi(cp + 1);
0a1b45a2 10962 return true;
50b2bdb7 10963 }
0a1b45a2 10964 return false;
50b2bdb7
AM
10965}
10966
0a1b45a2 10967static bool
217aa764 10968elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7 10969{
80a04378 10970 if (note->descsz <= 0x7c + 31)
0a1b45a2 10971 return false;
80a04378 10972
50b2bdb7 10973 /* Signal number at offset 0x08. */
228e534f 10974 elf_tdata (abfd)->core->signal
50b2bdb7
AM
10975 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10976
10977 /* Process ID at offset 0x50. */
228e534f 10978 elf_tdata (abfd)->core->pid
50b2bdb7
AM
10979 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10980
10981 /* Command name at 0x7c (max 32 bytes, including nul). */
228e534f 10982 elf_tdata (abfd)->core->command
50b2bdb7
AM
10983 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10984
7720ba9f
MK
10985 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10986 note);
50b2bdb7
AM
10987}
10988
0a1b45a2 10989static bool
217aa764 10990elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7
AM
10991{
10992 int lwp;
10993
10994 if (elfcore_netbsd_get_lwpid (note, &lwp))
228e534f 10995 elf_tdata (abfd)->core->lwpid = lwp;
50b2bdb7 10996
58e07198 10997 switch (note->type)
50b2bdb7 10998 {
58e07198 10999 case NT_NETBSDCORE_PROCINFO:
50b2bdb7 11000 /* NetBSD-specific core "procinfo". Note that we expect to
08a40648
AM
11001 find this note before any of the others, which is fine,
11002 since the kernel writes this note out first when it
11003 creates a core file. */
50b2bdb7 11004 return elfcore_grok_netbsd_procinfo (abfd, note);
58e07198
CZ
11005 case NT_NETBSDCORE_AUXV:
11006 /* NetBSD-specific Elf Auxiliary Vector data. */
11007 return elfcore_make_auxv_note_section (abfd, note, 4);
06d949ec
KR
11008 case NT_NETBSDCORE_LWPSTATUS:
11009 return elfcore_make_note_pseudosection (abfd,
11010 ".note.netbsdcore.lwpstatus",
11011 note);
58e07198
CZ
11012 default:
11013 break;
50b2bdb7
AM
11014 }
11015
06d949ec 11016 /* As of March 2020 there are no other machine-independent notes
b4db1224
JT
11017 defined for NetBSD core files. If the note type is less
11018 than the start of the machine-dependent note types, we don't
11019 understand it. */
47d9a591 11020
b4db1224 11021 if (note->type < NT_NETBSDCORE_FIRSTMACH)
0a1b45a2 11022 return true;
50b2bdb7
AM
11023
11024
11025 switch (bfd_get_arch (abfd))
11026 {
08a40648
AM
11027 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
11028 PT_GETFPREGS == mach+2. */
50b2bdb7 11029
015ec493 11030 case bfd_arch_aarch64:
50b2bdb7
AM
11031 case bfd_arch_alpha:
11032 case bfd_arch_sparc:
11033 switch (note->type)
08a40648
AM
11034 {
11035 case NT_NETBSDCORE_FIRSTMACH+0:
11036 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 11037
08a40648
AM
11038 case NT_NETBSDCORE_FIRSTMACH+2:
11039 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 11040
08a40648 11041 default:
0a1b45a2 11042 return true;
08a40648 11043 }
50b2bdb7 11044
58e07198
CZ
11045 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
11046 There's also old PT___GETREGS40 == mach + 1 for old reg
11047 structure which lacks GBR. */
11048
11049 case bfd_arch_sh:
11050 switch (note->type)
11051 {
11052 case NT_NETBSDCORE_FIRSTMACH+3:
11053 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11054
11055 case NT_NETBSDCORE_FIRSTMACH+5:
11056 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11057
11058 default:
0a1b45a2 11059 return true;
58e07198
CZ
11060 }
11061
08a40648
AM
11062 /* On all other arch's, PT_GETREGS == mach+1 and
11063 PT_GETFPREGS == mach+3. */
50b2bdb7
AM
11064
11065 default:
11066 switch (note->type)
08a40648
AM
11067 {
11068 case NT_NETBSDCORE_FIRSTMACH+1:
11069 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 11070
08a40648
AM
11071 case NT_NETBSDCORE_FIRSTMACH+3:
11072 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 11073
08a40648 11074 default:
0a1b45a2 11075 return true;
08a40648 11076 }
50b2bdb7
AM
11077 }
11078 /* NOTREACHED */
11079}
11080
0a1b45a2 11081static bool
67cc5033
MK
11082elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
11083{
80a04378 11084 if (note->descsz <= 0x48 + 31)
0a1b45a2 11085 return false;
80a04378 11086
67cc5033 11087 /* Signal number at offset 0x08. */
228e534f 11088 elf_tdata (abfd)->core->signal
67cc5033
MK
11089 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
11090
11091 /* Process ID at offset 0x20. */
228e534f 11092 elf_tdata (abfd)->core->pid
67cc5033
MK
11093 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
11094
11095 /* Command name at 0x48 (max 32 bytes, including nul). */
228e534f 11096 elf_tdata (abfd)->core->command
67cc5033
MK
11097 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
11098
0a1b45a2 11099 return true;
67cc5033
MK
11100}
11101
6420dd27
LB
11102/* Processes Solaris's process status note.
11103 sig_off ~ offsetof(prstatus_t, pr_cursig)
11104 pid_off ~ offsetof(prstatus_t, pr_pid)
11105 lwpid_off ~ offsetof(prstatus_t, pr_who)
11106 gregset_size ~ sizeof(gregset_t)
11107 gregset_offset ~ offsetof(prstatus_t, pr_reg) */
11108
11109static bool
11110elfcore_grok_solaris_prstatus (bfd *abfd, Elf_Internal_Note* note, int sig_off,
11111 int pid_off, int lwpid_off, size_t gregset_size,
11112 size_t gregset_offset)
11113{
11114 asection *sect = NULL;
11115 elf_tdata (abfd)->core->signal
11116 = bfd_get_16 (abfd, note->descdata + sig_off);
11117 elf_tdata (abfd)->core->pid
11118 = bfd_get_32 (abfd, note->descdata + pid_off);
11119 elf_tdata (abfd)->core->lwpid
11120 = bfd_get_32 (abfd, note->descdata + lwpid_off);
11121
11122 sect = bfd_get_section_by_name (abfd, ".reg");
11123 if (sect != NULL)
11124 sect->size = gregset_size;
11125
11126 return _bfd_elfcore_make_pseudosection (abfd, ".reg", gregset_size,
11127 note->descpos + gregset_offset);
11128}
11129
11130/* Gets program and arguments from a core.
11131 prog_off ~ offsetof(prpsinfo | psinfo_t, pr_fname)
11132 comm_off ~ offsetof(prpsinfo | psinfo_t, pr_psargs) */
11133
11134static bool
11135elfcore_grok_solaris_info(bfd *abfd, Elf_Internal_Note* note,
11136 int prog_off, int comm_off)
11137{
11138 elf_tdata (abfd)->core->program
11139 = _bfd_elfcore_strndup (abfd, note->descdata + prog_off, 16);
11140 elf_tdata (abfd)->core->command
11141 = _bfd_elfcore_strndup (abfd, note->descdata + comm_off, 80);
11142
11143 return true;
11144}
11145
11146/* Processes Solaris's LWP status note.
11147 gregset_size ~ sizeof(gregset_t)
11148 gregset_off ~ offsetof(lwpstatus_t, pr_reg)
11149 fpregset_size ~ sizeof(fpregset_t)
11150 fpregset_off ~ offsetof(lwpstatus_t, pr_fpreg) */
11151
11152static bool
11153elfcore_grok_solaris_lwpstatus (bfd *abfd, Elf_Internal_Note* note,
11154 size_t gregset_size, int gregset_off,
11155 size_t fpregset_size, int fpregset_off)
11156{
11157 asection *sect = NULL;
11158 char reg2_section_name[16] = { 0 };
11159
11160 (void) snprintf (reg2_section_name, 16, "%s/%i", ".reg2",
11161 elf_tdata (abfd)->core->lwpid);
11162
11163 /* offsetof(lwpstatus_t, pr_lwpid) */
11164 elf_tdata (abfd)->core->lwpid
11165 = bfd_get_32 (abfd, note->descdata + 4);
11166 /* offsetof(lwpstatus_t, pr_cursig) */
11167 elf_tdata (abfd)->core->signal
11168 = bfd_get_16 (abfd, note->descdata + 12);
11169
11170 sect = bfd_get_section_by_name (abfd, ".reg");
11171 if (sect != NULL)
11172 sect->size = gregset_size;
11173 else if (!_bfd_elfcore_make_pseudosection (abfd, ".reg", gregset_size,
11174 note->descpos + gregset_off))
11175 return false;
11176
11177 sect = bfd_get_section_by_name (abfd, reg2_section_name);
11178 if (sect != NULL)
11179 {
11180 sect->size = fpregset_size;
11181 sect->filepos = note->descpos + fpregset_off;
11182 sect->alignment_power = 2;
11183 }
11184 else if (!_bfd_elfcore_make_pseudosection (abfd, ".reg2", fpregset_size,
11185 note->descpos + fpregset_off))
11186 return false;
11187
11188 return true;
11189}
11190
11191static bool
11192elfcore_grok_solaris_note_impl (bfd *abfd, Elf_Internal_Note *note)
11193{
11194 if (note == NULL)
11195 return false;
11196
11197 /* core files are identified as 32- or 64-bit, SPARC or x86,
11198 by the size of the descsz which matches the sizeof()
11199 the type appropriate for that note type (e.g., prstatus_t for
11200 SOLARIS_NT_PRSTATUS) for the corresponding architecture
11201 on Solaris. The core file bitness may differ from the bitness of
11202 gdb itself, so fixed values are used instead of sizeof().
11203 Appropriate fixed offsets are also used to obtain data from
11204 the note. */
11205
11206 switch ((int) note->type)
11207 {
11208 case SOLARIS_NT_PRSTATUS:
11209 switch (note->descsz)
11210 {
11211 case 508: /* sizeof(prstatus_t) SPARC 32-bit */
11212 return elfcore_grok_solaris_prstatus(abfd, note,
11213 136, 216, 308, 152, 356);
11214 case 904: /* sizeof(prstatus_t) SPARC 64-bit */
11215 return elfcore_grok_solaris_prstatus(abfd, note,
11216 264, 360, 520, 304, 600);
11217 case 432: /* sizeof(prstatus_t) Intel 32-bit */
11218 return elfcore_grok_solaris_prstatus(abfd, note,
11219 136, 216, 308, 76, 356);
11220 case 824: /* sizeof(prstatus_t) Intel 64-bit */
11221 return elfcore_grok_solaris_prstatus(abfd, note,
11222 264, 360, 520, 224, 600);
11223 default:
11224 return true;
11225 }
11226
11227 case SOLARIS_NT_PSINFO:
11228 case SOLARIS_NT_PRPSINFO:
11229 switch (note->descsz)
11230 {
11231 case 260: /* sizeof(prpsinfo_t) SPARC and Intel 32-bit */
11232 return elfcore_grok_solaris_info(abfd, note, 84, 100);
11233 case 328: /* sizeof(prpsinfo_t) SPARC and Intel 64-bit */
11234 return elfcore_grok_solaris_info(abfd, note, 120, 136);
11235 case 360: /* sizeof(psinfo_t) SPARC and Intel 32-bit */
11236 return elfcore_grok_solaris_info(abfd, note, 88, 104);
11237 case 440: /* sizeof(psinfo_t) SPARC and Intel 64-bit */
11238 return elfcore_grok_solaris_info(abfd, note, 136, 152);
11239 default:
11240 return true;
11241 }
11242
11243 case SOLARIS_NT_LWPSTATUS:
11244 switch (note->descsz)
11245 {
11246 case 896: /* sizeof(lwpstatus_t) SPARC 32-bit */
11247 return elfcore_grok_solaris_lwpstatus(abfd, note,
11248 152, 344, 400, 496);
11249 case 1392: /* sizeof(lwpstatus_t) SPARC 64-bit */
11250 return elfcore_grok_solaris_lwpstatus(abfd, note,
11251 304, 544, 544, 848);
11252 case 800: /* sizeof(lwpstatus_t) Intel 32-bit */
11253 return elfcore_grok_solaris_lwpstatus(abfd, note,
11254 76, 344, 380, 420);
11255 case 1296: /* sizeof(lwpstatus_t) Intel 64-bit */
11256 return elfcore_grok_solaris_lwpstatus(abfd, note,
11257 224, 544, 528, 768);
11258 default:
11259 return true;
11260 }
11261
11262 case SOLARIS_NT_LWPSINFO:
11263 /* sizeof(lwpsinfo_t) on 32- and 64-bit, respectively */
11264 if (note->descsz == 128 || note->descsz == 152)
11265 elf_tdata (abfd)->core->lwpid =
11266 bfd_get_32 (abfd, note->descdata + 4);
11267 break;
11268
11269 default:
11270 break;
11271 }
11272
11273 return true;
11274}
11275
11276/* For name starting with "CORE" this may be either a Solaris
11277 core file or a gdb-generated core file. Do Solaris-specific
11278 processing on selected note types first with
11279 elfcore_grok_solaris_note(), then process the note
11280 in elfcore_grok_note(). */
11281
11282static bool
11283elfcore_grok_solaris_note (bfd *abfd, Elf_Internal_Note *note)
11284{
11285 if (!elfcore_grok_solaris_note_impl (abfd, note))
11286 return false;
11287
11288 return elfcore_grok_note (abfd, note);
11289}
11290
0a1b45a2 11291static bool
67cc5033
MK
11292elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
11293{
11294 if (note->type == NT_OPENBSD_PROCINFO)
11295 return elfcore_grok_openbsd_procinfo (abfd, note);
11296
11297 if (note->type == NT_OPENBSD_REGS)
11298 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11299
11300 if (note->type == NT_OPENBSD_FPREGS)
11301 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11302
11303 if (note->type == NT_OPENBSD_XFPREGS)
11304 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
11305
11306 if (note->type == NT_OPENBSD_AUXV)
58e07198 11307 return elfcore_make_auxv_note_section (abfd, note, 0);
67cc5033
MK
11308
11309 if (note->type == NT_OPENBSD_WCOOKIE)
11310 {
11311 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
11312 SEC_HAS_CONTENTS);
11313
11314 if (sect == NULL)
0a1b45a2 11315 return false;
67cc5033
MK
11316 sect->size = note->descsz;
11317 sect->filepos = note->descpos;
11318 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
11319
0a1b45a2 11320 return true;
67cc5033
MK
11321 }
11322
0a1b45a2 11323 return true;
67cc5033
MK
11324}
11325
0a1b45a2 11326static bool
d3fd4074 11327elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
07c6e936
NC
11328{
11329 void *ddata = note->descdata;
11330 char buf[100];
11331 char *name;
11332 asection *sect;
f8843e87
AM
11333 short sig;
11334 unsigned flags;
07c6e936 11335
80a04378 11336 if (note->descsz < 16)
0a1b45a2 11337 return false;
80a04378 11338
07c6e936 11339 /* nto_procfs_status 'pid' field is at offset 0. */
228e534f 11340 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
07c6e936 11341
f8843e87
AM
11342 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
11343 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
11344
11345 /* nto_procfs_status 'flags' field is at offset 8. */
11346 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
07c6e936
NC
11347
11348 /* nto_procfs_status 'what' field is at offset 14. */
f8843e87
AM
11349 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
11350 {
228e534f
AM
11351 elf_tdata (abfd)->core->signal = sig;
11352 elf_tdata (abfd)->core->lwpid = *tid;
f8843e87 11353 }
07c6e936 11354
f8843e87
AM
11355 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
11356 do not come from signals so we make sure we set the current
11357 thread just in case. */
11358 if (flags & 0x00000080)
228e534f 11359 elf_tdata (abfd)->core->lwpid = *tid;
07c6e936
NC
11360
11361 /* Make a ".qnx_core_status/%d" section. */
d3fd4074 11362 sprintf (buf, ".qnx_core_status/%ld", *tid);
07c6e936 11363
a50b1753 11364 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936 11365 if (name == NULL)
0a1b45a2 11366 return false;
07c6e936
NC
11367 strcpy (name, buf);
11368
117ed4f8 11369 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936 11370 if (sect == NULL)
0a1b45a2 11371 return false;
07c6e936 11372
07d6d2b8
AM
11373 sect->size = note->descsz;
11374 sect->filepos = note->descpos;
07c6e936
NC
11375 sect->alignment_power = 2;
11376
11377 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
11378}
11379
0a1b45a2 11380static bool
d69f560c
KW
11381elfcore_grok_nto_regs (bfd *abfd,
11382 Elf_Internal_Note *note,
d3fd4074 11383 long tid,
d69f560c 11384 char *base)
07c6e936
NC
11385{
11386 char buf[100];
11387 char *name;
11388 asection *sect;
11389
d69f560c 11390 /* Make a "(base)/%d" section. */
d3fd4074 11391 sprintf (buf, "%s/%ld", base, tid);
07c6e936 11392
a50b1753 11393 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936 11394 if (name == NULL)
0a1b45a2 11395 return false;
07c6e936
NC
11396 strcpy (name, buf);
11397
117ed4f8 11398 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936 11399 if (sect == NULL)
0a1b45a2 11400 return false;
07c6e936 11401
07d6d2b8
AM
11402 sect->size = note->descsz;
11403 sect->filepos = note->descpos;
07c6e936
NC
11404 sect->alignment_power = 2;
11405
f8843e87 11406 /* This is the current thread. */
228e534f 11407 if (elf_tdata (abfd)->core->lwpid == tid)
d69f560c 11408 return elfcore_maybe_make_sect (abfd, base, sect);
f8843e87 11409
0a1b45a2 11410 return true;
07c6e936
NC
11411}
11412
11413#define BFD_QNT_CORE_INFO 7
11414#define BFD_QNT_CORE_STATUS 8
11415#define BFD_QNT_CORE_GREG 9
11416#define BFD_QNT_CORE_FPREG 10
11417
0a1b45a2 11418static bool
217aa764 11419elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
07c6e936
NC
11420{
11421 /* Every GREG section has a STATUS section before it. Store the
811072d8 11422 tid from the previous call to pass down to the next gregs
07c6e936 11423 function. */
d3fd4074 11424 static long tid = 1;
07c6e936
NC
11425
11426 switch (note->type)
11427 {
d69f560c
KW
11428 case BFD_QNT_CORE_INFO:
11429 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
11430 case BFD_QNT_CORE_STATUS:
11431 return elfcore_grok_nto_status (abfd, note, &tid);
11432 case BFD_QNT_CORE_GREG:
11433 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
11434 case BFD_QNT_CORE_FPREG:
11435 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
11436 default:
0a1b45a2 11437 return true;
07c6e936
NC
11438 }
11439}
11440
0a1b45a2 11441static bool
b15fa79e
AM
11442elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
11443{
11444 char *name;
11445 asection *sect;
11446 size_t len;
11447
11448 /* Use note name as section name. */
11449 len = note->namesz;
a50b1753 11450 name = (char *) bfd_alloc (abfd, len);
b15fa79e 11451 if (name == NULL)
0a1b45a2 11452 return false;
b15fa79e
AM
11453 memcpy (name, note->namedata, len);
11454 name[len - 1] = '\0';
11455
11456 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11457 if (sect == NULL)
0a1b45a2 11458 return false;
b15fa79e 11459
07d6d2b8
AM
11460 sect->size = note->descsz;
11461 sect->filepos = note->descpos;
b15fa79e
AM
11462 sect->alignment_power = 1;
11463
0a1b45a2 11464 return true;
b15fa79e
AM
11465}
11466
7c76fa91
MS
11467/* Function: elfcore_write_note
11468
47d9a591 11469 Inputs:
a39f3346 11470 buffer to hold note, and current size of buffer
7c76fa91
MS
11471 name of note
11472 type of note
11473 data for note
11474 size of data for note
11475
a39f3346
AM
11476 Writes note to end of buffer. ELF64 notes are written exactly as
11477 for ELF32, despite the current (as of 2006) ELF gabi specifying
11478 that they ought to have 8-byte namesz and descsz field, and have
11479 8-byte alignment. Other writers, eg. Linux kernel, do the same.
11480
7c76fa91 11481 Return:
a39f3346 11482 Pointer to realloc'd buffer, *BUFSIZ updated. */
7c76fa91
MS
11483
11484char *
a39f3346 11485elfcore_write_note (bfd *abfd,
217aa764 11486 char *buf,
a39f3346 11487 int *bufsiz,
217aa764 11488 const char *name,
a39f3346 11489 int type,
217aa764 11490 const void *input,
a39f3346 11491 int size)
7c76fa91
MS
11492{
11493 Elf_External_Note *xnp;
d4c88bbb 11494 size_t namesz;
d4c88bbb 11495 size_t newspace;
a39f3346 11496 char *dest;
7c76fa91 11497
d4c88bbb 11498 namesz = 0;
d4c88bbb 11499 if (name != NULL)
a39f3346 11500 namesz = strlen (name) + 1;
d4c88bbb 11501
a39f3346 11502 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
d4c88bbb 11503
a50b1753 11504 buf = (char *) realloc (buf, *bufsiz + newspace);
14b1c01e
AM
11505 if (buf == NULL)
11506 return buf;
a39f3346 11507 dest = buf + *bufsiz;
7c76fa91
MS
11508 *bufsiz += newspace;
11509 xnp = (Elf_External_Note *) dest;
11510 H_PUT_32 (abfd, namesz, xnp->namesz);
11511 H_PUT_32 (abfd, size, xnp->descsz);
11512 H_PUT_32 (abfd, type, xnp->type);
d4c88bbb
AM
11513 dest = xnp->name;
11514 if (name != NULL)
11515 {
11516 memcpy (dest, name, namesz);
11517 dest += namesz;
a39f3346 11518 while (namesz & 3)
d4c88bbb
AM
11519 {
11520 *dest++ = '\0';
a39f3346 11521 ++namesz;
d4c88bbb
AM
11522 }
11523 }
11524 memcpy (dest, input, size);
a39f3346
AM
11525 dest += size;
11526 while (size & 3)
11527 {
11528 *dest++ = '\0';
11529 ++size;
11530 }
11531 return buf;
7c76fa91
MS
11532}
11533
602f1657
AM
11534/* gcc-8 warns (*) on all the strncpy calls in this function about
11535 possible string truncation. The "truncation" is not a bug. We
11536 have an external representation of structs with fields that are not
11537 necessarily NULL terminated and corresponding internal
11538 representation fields that are one larger so that they can always
11539 be NULL terminated.
11540 gcc versions between 4.2 and 4.6 do not allow pragma control of
11541 diagnostics inside functions, giving a hard error if you try to use
11542 the finer control available with later versions.
11543 gcc prior to 4.2 warns about diagnostic push and pop.
11544 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11545 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11546 (*) Depending on your system header files! */
d99b4b92 11547#if GCC_VERSION >= 8000
602f1657
AM
11548# pragma GCC diagnostic push
11549# pragma GCC diagnostic ignored "-Wstringop-truncation"
d99b4b92 11550#endif
7c76fa91 11551char *
217aa764
AM
11552elfcore_write_prpsinfo (bfd *abfd,
11553 char *buf,
11554 int *bufsiz,
11555 const char *fname,
11556 const char *psargs)
7c76fa91 11557{
183e98be
AM
11558 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11559
11560 if (bed->elf_backend_write_core_note != NULL)
11561 {
11562 char *ret;
11563 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11564 NT_PRPSINFO, fname, psargs);
11565 if (ret != NULL)
11566 return ret;
11567 }
7c76fa91 11568
1f20dca5 11569#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
602f1657 11570# if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
183e98be
AM
11571 if (bed->s->elfclass == ELFCLASS32)
11572 {
602f1657 11573# if defined (HAVE_PSINFO32_T)
183e98be
AM
11574 psinfo32_t data;
11575 int note_type = NT_PSINFO;
602f1657 11576# else
183e98be
AM
11577 prpsinfo32_t data;
11578 int note_type = NT_PRPSINFO;
602f1657 11579# endif
183e98be
AM
11580
11581 memset (&data, 0, sizeof (data));
11582 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11583 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11584 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11585 "CORE", note_type, &data, sizeof (data));
183e98be
AM
11586 }
11587 else
602f1657 11588# endif
183e98be 11589 {
602f1657 11590# if defined (HAVE_PSINFO_T)
183e98be
AM
11591 psinfo_t data;
11592 int note_type = NT_PSINFO;
602f1657 11593# else
183e98be
AM
11594 prpsinfo_t data;
11595 int note_type = NT_PRPSINFO;
602f1657 11596# endif
7c76fa91 11597
183e98be
AM
11598 memset (&data, 0, sizeof (data));
11599 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11600 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11601 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11602 "CORE", note_type, &data, sizeof (data));
183e98be 11603 }
7c76fa91
MS
11604#endif /* PSINFO_T or PRPSINFO_T */
11605
1f20dca5
UW
11606 free (buf);
11607 return NULL;
11608}
d99b4b92 11609#if GCC_VERSION >= 8000
602f1657 11610# pragma GCC diagnostic pop
d99b4b92 11611#endif
1f20dca5 11612
70a38d42
SDJ
11613char *
11614elfcore_write_linux_prpsinfo32
11615 (bfd *abfd, char *buf, int *bufsiz,
11616 const struct elf_internal_linux_prpsinfo *prpsinfo)
11617{
a2f63b2e
MR
11618 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11619 {
11620 struct elf_external_linux_prpsinfo32_ugid16 data;
11621
11622 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11623 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11624 &data, sizeof (data));
11625 }
11626 else
11627 {
11628 struct elf_external_linux_prpsinfo32_ugid32 data;
70a38d42 11629
a2f63b2e
MR
11630 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11631 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11632 &data, sizeof (data));
11633 }
70a38d42
SDJ
11634}
11635
11636char *
11637elfcore_write_linux_prpsinfo64
11638 (bfd *abfd, char *buf, int *bufsiz,
11639 const struct elf_internal_linux_prpsinfo *prpsinfo)
11640{
3c9a7b0d
MR
11641 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11642 {
11643 struct elf_external_linux_prpsinfo64_ugid16 data;
11644
11645 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11646 return elfcore_write_note (abfd, buf, bufsiz,
11647 "CORE", NT_PRPSINFO, &data, sizeof (data));
11648 }
11649 else
11650 {
11651 struct elf_external_linux_prpsinfo64_ugid32 data;
70a38d42 11652
3c9a7b0d
MR
11653 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11654 return elfcore_write_note (abfd, buf, bufsiz,
11655 "CORE", NT_PRPSINFO, &data, sizeof (data));
11656 }
70a38d42
SDJ
11657}
11658
7c76fa91 11659char *
217aa764
AM
11660elfcore_write_prstatus (bfd *abfd,
11661 char *buf,
11662 int *bufsiz,
11663 long pid,
11664 int cursig,
11665 const void *gregs)
7c76fa91 11666{
183e98be 11667 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11668
183e98be
AM
11669 if (bed->elf_backend_write_core_note != NULL)
11670 {
11671 char *ret;
11672 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11673 NT_PRSTATUS,
11674 pid, cursig, gregs);
11675 if (ret != NULL)
11676 return ret;
11677 }
11678
1f20dca5 11679#if defined (HAVE_PRSTATUS_T)
183e98be
AM
11680#if defined (HAVE_PRSTATUS32_T)
11681 if (bed->s->elfclass == ELFCLASS32)
11682 {
11683 prstatus32_t prstat;
11684
11685 memset (&prstat, 0, sizeof (prstat));
11686 prstat.pr_pid = pid;
11687 prstat.pr_cursig = cursig;
11688 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11689 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11690 NT_PRSTATUS, &prstat, sizeof (prstat));
11691 }
11692 else
11693#endif
11694 {
11695 prstatus_t prstat;
11696
11697 memset (&prstat, 0, sizeof (prstat));
11698 prstat.pr_pid = pid;
11699 prstat.pr_cursig = cursig;
11700 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11701 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11702 NT_PRSTATUS, &prstat, sizeof (prstat));
11703 }
7c76fa91
MS
11704#endif /* HAVE_PRSTATUS_T */
11705
1f20dca5
UW
11706 free (buf);
11707 return NULL;
11708}
11709
51316059
MS
11710#if defined (HAVE_LWPSTATUS_T)
11711char *
217aa764
AM
11712elfcore_write_lwpstatus (bfd *abfd,
11713 char *buf,
11714 int *bufsiz,
11715 long pid,
11716 int cursig,
11717 const void *gregs)
51316059
MS
11718{
11719 lwpstatus_t lwpstat;
183e98be 11720 const char *note_name = "CORE";
51316059
MS
11721
11722 memset (&lwpstat, 0, sizeof (lwpstat));
11723 lwpstat.pr_lwpid = pid >> 16;
11724 lwpstat.pr_cursig = cursig;
11725#if defined (HAVE_LWPSTATUS_T_PR_REG)
d1e8523e 11726 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
51316059
MS
11727#elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11728#if !defined(gregs)
11729 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11730 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11731#else
11732 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11733 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11734#endif
11735#endif
47d9a591 11736 return elfcore_write_note (abfd, buf, bufsiz, note_name,
51316059
MS
11737 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11738}
11739#endif /* HAVE_LWPSTATUS_T */
11740
7c76fa91
MS
11741#if defined (HAVE_PSTATUS_T)
11742char *
217aa764
AM
11743elfcore_write_pstatus (bfd *abfd,
11744 char *buf,
11745 int *bufsiz,
11746 long pid,
6c10990d
NC
11747 int cursig ATTRIBUTE_UNUSED,
11748 const void *gregs ATTRIBUTE_UNUSED)
7c76fa91 11749{
183e98be
AM
11750 const char *note_name = "CORE";
11751#if defined (HAVE_PSTATUS32_T)
11752 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11753
183e98be
AM
11754 if (bed->s->elfclass == ELFCLASS32)
11755 {
11756 pstatus32_t pstat;
11757
11758 memset (&pstat, 0, sizeof (pstat));
11759 pstat.pr_pid = pid & 0xffff;
11760 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11761 NT_PSTATUS, &pstat, sizeof (pstat));
11762 return buf;
11763 }
11764 else
11765#endif
11766 {
11767 pstatus_t pstat;
11768
11769 memset (&pstat, 0, sizeof (pstat));
11770 pstat.pr_pid = pid & 0xffff;
11771 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11772 NT_PSTATUS, &pstat, sizeof (pstat));
11773 return buf;
11774 }
7c76fa91
MS
11775}
11776#endif /* HAVE_PSTATUS_T */
11777
11778char *
217aa764
AM
11779elfcore_write_prfpreg (bfd *abfd,
11780 char *buf,
11781 int *bufsiz,
11782 const void *fpregs,
11783 int size)
7c76fa91 11784{
183e98be 11785 const char *note_name = "CORE";
47d9a591 11786 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11787 note_name, NT_FPREGSET, fpregs, size);
11788}
11789
11790char *
217aa764
AM
11791elfcore_write_prxfpreg (bfd *abfd,
11792 char *buf,
11793 int *bufsiz,
11794 const void *xfpregs,
11795 int size)
7c76fa91
MS
11796{
11797 char *note_name = "LINUX";
47d9a591 11798 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11799 note_name, NT_PRXFPREG, xfpregs, size);
11800}
11801
4339cae0
L
11802char *
11803elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11804 const void *xfpregs, int size)
11805{
97de3545
JB
11806 char *note_name;
11807 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11808 note_name = "FreeBSD";
11809 else
11810 note_name = "LINUX";
4339cae0
L
11811 return elfcore_write_note (abfd, buf, bufsiz,
11812 note_name, NT_X86_XSTATE, xfpregs, size);
11813}
11814
97753bd5
AM
11815char *
11816elfcore_write_ppc_vmx (bfd *abfd,
11817 char *buf,
11818 int *bufsiz,
11819 const void *ppc_vmx,
11820 int size)
11821{
11822 char *note_name = "LINUX";
11823 return elfcore_write_note (abfd, buf, bufsiz,
11824 note_name, NT_PPC_VMX, ppc_vmx, size);
11825}
11826
89eeb0bc
LM
11827char *
11828elfcore_write_ppc_vsx (bfd *abfd,
07d6d2b8
AM
11829 char *buf,
11830 int *bufsiz,
11831 const void *ppc_vsx,
11832 int size)
89eeb0bc
LM
11833{
11834 char *note_name = "LINUX";
11835 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11836 note_name, NT_PPC_VSX, ppc_vsx, size);
89eeb0bc
LM
11837}
11838
cb2366c1
EBM
11839char *
11840elfcore_write_ppc_tar (bfd *abfd,
4b24dd1a
AM
11841 char *buf,
11842 int *bufsiz,
11843 const void *ppc_tar,
11844 int size)
cb2366c1
EBM
11845{
11846 char *note_name = "LINUX";
11847 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11848 note_name, NT_PPC_TAR, ppc_tar, size);
cb2366c1
EBM
11849}
11850
11851char *
11852elfcore_write_ppc_ppr (bfd *abfd,
4b24dd1a
AM
11853 char *buf,
11854 int *bufsiz,
11855 const void *ppc_ppr,
11856 int size)
cb2366c1
EBM
11857{
11858 char *note_name = "LINUX";
11859 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11860 note_name, NT_PPC_PPR, ppc_ppr, size);
cb2366c1
EBM
11861}
11862
11863char *
11864elfcore_write_ppc_dscr (bfd *abfd,
4b24dd1a
AM
11865 char *buf,
11866 int *bufsiz,
11867 const void *ppc_dscr,
11868 int size)
cb2366c1
EBM
11869{
11870 char *note_name = "LINUX";
11871 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11872 note_name, NT_PPC_DSCR, ppc_dscr, size);
cb2366c1
EBM
11873}
11874
11875char *
11876elfcore_write_ppc_ebb (bfd *abfd,
4b24dd1a
AM
11877 char *buf,
11878 int *bufsiz,
11879 const void *ppc_ebb,
11880 int size)
cb2366c1
EBM
11881{
11882 char *note_name = "LINUX";
11883 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11884 note_name, NT_PPC_EBB, ppc_ebb, size);
cb2366c1
EBM
11885}
11886
11887char *
11888elfcore_write_ppc_pmu (bfd *abfd,
4b24dd1a
AM
11889 char *buf,
11890 int *bufsiz,
11891 const void *ppc_pmu,
11892 int size)
cb2366c1
EBM
11893{
11894 char *note_name = "LINUX";
11895 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11896 note_name, NT_PPC_PMU, ppc_pmu, size);
cb2366c1
EBM
11897}
11898
11899char *
11900elfcore_write_ppc_tm_cgpr (bfd *abfd,
4b24dd1a
AM
11901 char *buf,
11902 int *bufsiz,
11903 const void *ppc_tm_cgpr,
11904 int size)
cb2366c1
EBM
11905{
11906 char *note_name = "LINUX";
11907 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11908 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
cb2366c1
EBM
11909}
11910
11911char *
11912elfcore_write_ppc_tm_cfpr (bfd *abfd,
4b24dd1a
AM
11913 char *buf,
11914 int *bufsiz,
11915 const void *ppc_tm_cfpr,
11916 int size)
cb2366c1
EBM
11917{
11918 char *note_name = "LINUX";
11919 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11920 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
cb2366c1
EBM
11921}
11922
11923char *
11924elfcore_write_ppc_tm_cvmx (bfd *abfd,
4b24dd1a
AM
11925 char *buf,
11926 int *bufsiz,
11927 const void *ppc_tm_cvmx,
11928 int size)
cb2366c1
EBM
11929{
11930 char *note_name = "LINUX";
11931 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11932 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
cb2366c1
EBM
11933}
11934
11935char *
11936elfcore_write_ppc_tm_cvsx (bfd *abfd,
4b24dd1a
AM
11937 char *buf,
11938 int *bufsiz,
11939 const void *ppc_tm_cvsx,
11940 int size)
cb2366c1
EBM
11941{
11942 char *note_name = "LINUX";
11943 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11944 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
cb2366c1
EBM
11945}
11946
11947char *
11948elfcore_write_ppc_tm_spr (bfd *abfd,
4b24dd1a
AM
11949 char *buf,
11950 int *bufsiz,
11951 const void *ppc_tm_spr,
11952 int size)
cb2366c1
EBM
11953{
11954 char *note_name = "LINUX";
11955 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11956 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
cb2366c1
EBM
11957}
11958
11959char *
11960elfcore_write_ppc_tm_ctar (bfd *abfd,
4b24dd1a
AM
11961 char *buf,
11962 int *bufsiz,
11963 const void *ppc_tm_ctar,
11964 int size)
cb2366c1
EBM
11965{
11966 char *note_name = "LINUX";
11967 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11968 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
cb2366c1
EBM
11969}
11970
11971char *
11972elfcore_write_ppc_tm_cppr (bfd *abfd,
4b24dd1a
AM
11973 char *buf,
11974 int *bufsiz,
11975 const void *ppc_tm_cppr,
11976 int size)
cb2366c1
EBM
11977{
11978 char *note_name = "LINUX";
11979 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11980 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
cb2366c1
EBM
11981}
11982
11983char *
11984elfcore_write_ppc_tm_cdscr (bfd *abfd,
4b24dd1a
AM
11985 char *buf,
11986 int *bufsiz,
11987 const void *ppc_tm_cdscr,
11988 int size)
cb2366c1
EBM
11989{
11990 char *note_name = "LINUX";
11991 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11992 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
cb2366c1
EBM
11993}
11994
0675e188
UW
11995static char *
11996elfcore_write_s390_high_gprs (bfd *abfd,
11997 char *buf,
11998 int *bufsiz,
11999 const void *s390_high_gprs,
12000 int size)
12001{
12002 char *note_name = "LINUX";
12003 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12004 note_name, NT_S390_HIGH_GPRS,
0675e188
UW
12005 s390_high_gprs, size);
12006}
12007
d7eeb400
MS
12008char *
12009elfcore_write_s390_timer (bfd *abfd,
07d6d2b8
AM
12010 char *buf,
12011 int *bufsiz,
12012 const void *s390_timer,
12013 int size)
d7eeb400
MS
12014{
12015 char *note_name = "LINUX";
12016 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12017 note_name, NT_S390_TIMER, s390_timer, size);
d7eeb400
MS
12018}
12019
12020char *
12021elfcore_write_s390_todcmp (bfd *abfd,
07d6d2b8
AM
12022 char *buf,
12023 int *bufsiz,
12024 const void *s390_todcmp,
12025 int size)
d7eeb400
MS
12026{
12027 char *note_name = "LINUX";
12028 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12029 note_name, NT_S390_TODCMP, s390_todcmp, size);
d7eeb400
MS
12030}
12031
12032char *
12033elfcore_write_s390_todpreg (bfd *abfd,
07d6d2b8
AM
12034 char *buf,
12035 int *bufsiz,
12036 const void *s390_todpreg,
12037 int size)
d7eeb400
MS
12038{
12039 char *note_name = "LINUX";
12040 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12041 note_name, NT_S390_TODPREG, s390_todpreg, size);
d7eeb400
MS
12042}
12043
12044char *
12045elfcore_write_s390_ctrs (bfd *abfd,
07d6d2b8
AM
12046 char *buf,
12047 int *bufsiz,
12048 const void *s390_ctrs,
12049 int size)
d7eeb400
MS
12050{
12051 char *note_name = "LINUX";
12052 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12053 note_name, NT_S390_CTRS, s390_ctrs, size);
d7eeb400
MS
12054}
12055
12056char *
12057elfcore_write_s390_prefix (bfd *abfd,
07d6d2b8
AM
12058 char *buf,
12059 int *bufsiz,
12060 const void *s390_prefix,
12061 int size)
d7eeb400
MS
12062{
12063 char *note_name = "LINUX";
12064 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12065 note_name, NT_S390_PREFIX, s390_prefix, size);
d7eeb400
MS
12066}
12067
355b81d9
UW
12068char *
12069elfcore_write_s390_last_break (bfd *abfd,
12070 char *buf,
12071 int *bufsiz,
12072 const void *s390_last_break,
12073 int size)
12074{
12075 char *note_name = "LINUX";
12076 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12077 note_name, NT_S390_LAST_BREAK,
355b81d9
UW
12078 s390_last_break, size);
12079}
12080
12081char *
12082elfcore_write_s390_system_call (bfd *abfd,
12083 char *buf,
12084 int *bufsiz,
12085 const void *s390_system_call,
12086 int size)
12087{
12088 char *note_name = "LINUX";
12089 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12090 note_name, NT_S390_SYSTEM_CALL,
355b81d9
UW
12091 s390_system_call, size);
12092}
12093
abb3f6cc
NC
12094char *
12095elfcore_write_s390_tdb (bfd *abfd,
12096 char *buf,
12097 int *bufsiz,
12098 const void *s390_tdb,
12099 int size)
12100{
12101 char *note_name = "LINUX";
12102 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 12103 note_name, NT_S390_TDB, s390_tdb, size);
abb3f6cc
NC
12104}
12105
4ef9f41a
AA
12106char *
12107elfcore_write_s390_vxrs_low (bfd *abfd,
12108 char *buf,
12109 int *bufsiz,
12110 const void *s390_vxrs_low,
12111 int size)
12112{
12113 char *note_name = "LINUX";
12114 return elfcore_write_note (abfd, buf, bufsiz,
12115 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
12116}
12117
12118char *
12119elfcore_write_s390_vxrs_high (bfd *abfd,
12120 char *buf,
12121 int *bufsiz,
12122 const void *s390_vxrs_high,
12123 int size)
12124{
12125 char *note_name = "LINUX";
12126 return elfcore_write_note (abfd, buf, bufsiz,
12127 note_name, NT_S390_VXRS_HIGH,
12128 s390_vxrs_high, size);
12129}
12130
88ab90e8
AA
12131char *
12132elfcore_write_s390_gs_cb (bfd *abfd,
12133 char *buf,
12134 int *bufsiz,
12135 const void *s390_gs_cb,
12136 int size)
12137{
12138 char *note_name = "LINUX";
12139 return elfcore_write_note (abfd, buf, bufsiz,
12140 note_name, NT_S390_GS_CB,
12141 s390_gs_cb, size);
12142}
12143
12144char *
12145elfcore_write_s390_gs_bc (bfd *abfd,
12146 char *buf,
12147 int *bufsiz,
12148 const void *s390_gs_bc,
12149 int size)
12150{
12151 char *note_name = "LINUX";
12152 return elfcore_write_note (abfd, buf, bufsiz,
12153 note_name, NT_S390_GS_BC,
12154 s390_gs_bc, size);
12155}
12156
faa9a424
UW
12157char *
12158elfcore_write_arm_vfp (bfd *abfd,
12159 char *buf,
12160 int *bufsiz,
12161 const void *arm_vfp,
12162 int size)
12163{
12164 char *note_name = "LINUX";
12165 return elfcore_write_note (abfd, buf, bufsiz,
12166 note_name, NT_ARM_VFP, arm_vfp, size);
12167}
12168
652451f8
YZ
12169char *
12170elfcore_write_aarch_tls (bfd *abfd,
12171 char *buf,
12172 int *bufsiz,
12173 const void *aarch_tls,
12174 int size)
12175{
12176 char *note_name = "LINUX";
12177 return elfcore_write_note (abfd, buf, bufsiz,
12178 note_name, NT_ARM_TLS, aarch_tls, size);
12179}
12180
12181char *
12182elfcore_write_aarch_hw_break (bfd *abfd,
12183 char *buf,
12184 int *bufsiz,
12185 const void *aarch_hw_break,
12186 int size)
12187{
12188 char *note_name = "LINUX";
12189 return elfcore_write_note (abfd, buf, bufsiz,
12190 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
12191}
12192
12193char *
12194elfcore_write_aarch_hw_watch (bfd *abfd,
12195 char *buf,
12196 int *bufsiz,
12197 const void *aarch_hw_watch,
12198 int size)
12199{
12200 char *note_name = "LINUX";
12201 return elfcore_write_note (abfd, buf, bufsiz,
12202 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
12203}
12204
ad1cc4e4
AH
12205char *
12206elfcore_write_aarch_sve (bfd *abfd,
12207 char *buf,
12208 int *bufsiz,
12209 const void *aarch_sve,
12210 int size)
12211{
12212 char *note_name = "LINUX";
12213 return elfcore_write_note (abfd, buf, bufsiz,
12214 note_name, NT_ARM_SVE, aarch_sve, size);
12215}
12216
e6c3b5bf
AH
12217char *
12218elfcore_write_aarch_pauth (bfd *abfd,
12219 char *buf,
12220 int *bufsiz,
12221 const void *aarch_pauth,
12222 int size)
12223{
12224 char *note_name = "LINUX";
12225 return elfcore_write_note (abfd, buf, bufsiz,
12226 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
12227}
12228
f0bbe8ba
LM
12229char *
12230elfcore_write_aarch_mte (bfd *abfd,
12231 char *buf,
12232 int *bufsiz,
12233 const void *aarch_mte,
12234 int size)
12235{
12236 char *note_name = "LINUX";
12237 return elfcore_write_note (abfd, buf, bufsiz,
12238 note_name, NT_ARM_TAGGED_ADDR_CTRL,
12239 aarch_mte,
12240 size);
12241}
12242
27456742
AK
12243char *
12244elfcore_write_arc_v2 (bfd *abfd,
12245 char *buf,
12246 int *bufsiz,
12247 const void *arc_v2,
12248 int size)
12249{
12250 char *note_name = "LINUX";
12251 return elfcore_write_note (abfd, buf, bufsiz,
12252 note_name, NT_ARC_V2, arc_v2, size);
12253}
12254
e214f8db 12255char *
12256elfcore_write_loongarch_cpucfg (bfd *abfd,
12257 char *buf,
12258 int *bufsiz,
12259 const void *loongarch_cpucfg,
12260 int size)
12261{
12262 char *note_name = "LINUX";
12263 return elfcore_write_note (abfd, buf, bufsiz,
12264 note_name, NT_LARCH_CPUCFG,
12265 loongarch_cpucfg, size);
12266}
12267
12268char *
12269elfcore_write_loongarch_lbt (bfd *abfd,
12270 char *buf,
12271 int *bufsiz,
12272 const void *loongarch_lbt,
12273 int size)
12274{
12275 char *note_name = "LINUX";
12276 return elfcore_write_note (abfd, buf, bufsiz,
12277 note_name, NT_LARCH_LBT, loongarch_lbt, size);
12278}
12279
12280char *
12281elfcore_write_loongarch_lsx (bfd *abfd,
12282 char *buf,
12283 int *bufsiz,
12284 const void *loongarch_lsx,
12285 int size)
12286{
12287 char *note_name = "LINUX";
12288 return elfcore_write_note (abfd, buf, bufsiz,
12289 note_name, NT_LARCH_LSX, loongarch_lsx, size);
12290}
12291
12292char *
12293elfcore_write_loongarch_lasx (bfd *abfd,
12294 char *buf,
12295 int *bufsiz,
12296 const void *loongarch_lasx,
12297 int size)
12298{
12299 char *note_name = "LINUX";
12300 return elfcore_write_note (abfd, buf, bufsiz,
12301 note_name, NT_LARCH_LASX, loongarch_lasx, size);
12302}
12303
db6092f3
AB
12304/* Write the buffer of csr values in CSRS (length SIZE) into the note
12305 buffer BUF and update *BUFSIZ. ABFD is the bfd the note is being
12306 written into. Return a pointer to the new start of the note buffer, to
12307 replace BUF which may no longer be valid. */
12308
12309char *
12310elfcore_write_riscv_csr (bfd *abfd,
12311 char *buf,
12312 int *bufsiz,
12313 const void *csrs,
12314 int size)
12315{
12316 const char *note_name = "GDB";
12317 return elfcore_write_note (abfd, buf, bufsiz,
12318 note_name, NT_RISCV_CSR, csrs, size);
12319}
12320
b63a5e38
AB
12321/* Write the target description (a string) pointed to by TDESC, length
12322 SIZE, into the note buffer BUF, and update *BUFSIZ. ABFD is the bfd the
12323 note is being written into. Return a pointer to the new start of the
12324 note buffer, to replace BUF which may no longer be valid. */
12325
12326char *
12327elfcore_write_gdb_tdesc (bfd *abfd,
12328 char *buf,
12329 int *bufsiz,
12330 const void *tdesc,
12331 int size)
12332{
12333 const char *note_name = "GDB";
12334 return elfcore_write_note (abfd, buf, bufsiz,
12335 note_name, NT_GDB_TDESC, tdesc, size);
12336}
12337
bb864ac1
CES
12338char *
12339elfcore_write_register_note (bfd *abfd,
12340 char *buf,
12341 int *bufsiz,
12342 const char *section,
12343 const void *data,
12344 int size)
12345{
12346 if (strcmp (section, ".reg2") == 0)
12347 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
12348 if (strcmp (section, ".reg-xfp") == 0)
12349 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
4339cae0
L
12350 if (strcmp (section, ".reg-xstate") == 0)
12351 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
bb864ac1
CES
12352 if (strcmp (section, ".reg-ppc-vmx") == 0)
12353 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
89eeb0bc
LM
12354 if (strcmp (section, ".reg-ppc-vsx") == 0)
12355 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
cb2366c1
EBM
12356 if (strcmp (section, ".reg-ppc-tar") == 0)
12357 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
12358 if (strcmp (section, ".reg-ppc-ppr") == 0)
12359 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
12360 if (strcmp (section, ".reg-ppc-dscr") == 0)
12361 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
12362 if (strcmp (section, ".reg-ppc-ebb") == 0)
12363 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
12364 if (strcmp (section, ".reg-ppc-pmu") == 0)
12365 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
12366 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
12367 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
12368 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
12369 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
12370 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
12371 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
12372 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
12373 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
12374 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
12375 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
12376 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
12377 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
12378 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
12379 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
12380 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
12381 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
0675e188
UW
12382 if (strcmp (section, ".reg-s390-high-gprs") == 0)
12383 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
d7eeb400
MS
12384 if (strcmp (section, ".reg-s390-timer") == 0)
12385 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
12386 if (strcmp (section, ".reg-s390-todcmp") == 0)
12387 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
12388 if (strcmp (section, ".reg-s390-todpreg") == 0)
12389 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
12390 if (strcmp (section, ".reg-s390-ctrs") == 0)
12391 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
12392 if (strcmp (section, ".reg-s390-prefix") == 0)
12393 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
355b81d9
UW
12394 if (strcmp (section, ".reg-s390-last-break") == 0)
12395 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
12396 if (strcmp (section, ".reg-s390-system-call") == 0)
12397 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
abb3f6cc
NC
12398 if (strcmp (section, ".reg-s390-tdb") == 0)
12399 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
4ef9f41a
AA
12400 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
12401 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
12402 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
12403 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
88ab90e8
AA
12404 if (strcmp (section, ".reg-s390-gs-cb") == 0)
12405 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
12406 if (strcmp (section, ".reg-s390-gs-bc") == 0)
12407 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
faa9a424
UW
12408 if (strcmp (section, ".reg-arm-vfp") == 0)
12409 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
652451f8
YZ
12410 if (strcmp (section, ".reg-aarch-tls") == 0)
12411 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
12412 if (strcmp (section, ".reg-aarch-hw-break") == 0)
12413 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
12414 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
12415 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
ad1cc4e4
AH
12416 if (strcmp (section, ".reg-aarch-sve") == 0)
12417 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
e6c3b5bf
AH
12418 if (strcmp (section, ".reg-aarch-pauth") == 0)
12419 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
f0bbe8ba
LM
12420 if (strcmp (section, ".reg-aarch-mte") == 0)
12421 return elfcore_write_aarch_mte (abfd, buf, bufsiz, data, size);
27456742
AK
12422 if (strcmp (section, ".reg-arc-v2") == 0)
12423 return elfcore_write_arc_v2 (abfd, buf, bufsiz, data, size);
b63a5e38
AB
12424 if (strcmp (section, ".gdb-tdesc") == 0)
12425 return elfcore_write_gdb_tdesc (abfd, buf, bufsiz, data, size);
db6092f3
AB
12426 if (strcmp (section, ".reg-riscv-csr") == 0)
12427 return elfcore_write_riscv_csr (abfd, buf, bufsiz, data, size);
e214f8db 12428 if (strcmp (section, ".reg-loongarch-cpucfg") == 0)
12429 return elfcore_write_loongarch_cpucfg (abfd, buf, bufsiz, data, size);
12430 if (strcmp (section, ".reg-loongarch-lbt") == 0)
12431 return elfcore_write_loongarch_lbt (abfd, buf, bufsiz, data, size);
12432 if (strcmp (section, ".reg-loongarch-lsx") == 0)
12433 return elfcore_write_loongarch_lsx (abfd, buf, bufsiz, data, size);
12434 if (strcmp (section, ".reg-loongarch-lasx") == 0)
12435 return elfcore_write_loongarch_lasx (abfd, buf, bufsiz, data, size);
bb864ac1
CES
12436 return NULL;
12437}
12438
4cb1265b
MS
12439char *
12440elfcore_write_file_note (bfd *obfd, char *note_data, int *note_size,
12441 const void *buf, int bufsiz)
12442{
12443 return elfcore_write_note (obfd, note_data, note_size,
12444 "CORE", NT_FILE, buf, bufsiz);
12445}
12446
0a1b45a2 12447static bool
276da9b3
L
12448elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
12449 size_t align)
252b5132 12450{
c044fabd 12451 char *p;
252b5132 12452
276da9b3
L
12453 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
12454 gABI specifies that PT_NOTE alignment should be aligned to 4
12455 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
12456 align is less than 4, we use 4 byte alignment. */
12457 if (align < 4)
12458 align = 4;
ef135d43 12459 if (align != 4 && align != 8)
0a1b45a2 12460 return false;
276da9b3 12461
252b5132
RH
12462 p = buf;
12463 while (p < buf + size)
12464 {
c044fabd 12465 Elf_External_Note *xnp = (Elf_External_Note *) p;
252b5132
RH
12466 Elf_Internal_Note in;
12467
baea7ef1 12468 if (offsetof (Elf_External_Note, name) > buf - p + size)
0a1b45a2 12469 return false;
baea7ef1 12470
dc810e39 12471 in.type = H_GET_32 (abfd, xnp->type);
252b5132 12472
dc810e39 12473 in.namesz = H_GET_32 (abfd, xnp->namesz);
252b5132 12474 in.namedata = xnp->name;
baea7ef1 12475 if (in.namesz > buf - in.namedata + size)
0a1b45a2 12476 return false;
252b5132 12477
dc810e39 12478 in.descsz = H_GET_32 (abfd, xnp->descsz);
276da9b3 12479 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
252b5132 12480 in.descpos = offset + (in.descdata - buf);
baea7ef1
AM
12481 if (in.descsz != 0
12482 && (in.descdata >= buf + size
12483 || in.descsz > buf - in.descdata + size))
0a1b45a2 12484 return false;
252b5132 12485
718175fa 12486 switch (bfd_get_format (abfd))
07d6d2b8 12487 {
718175fa 12488 default:
0a1b45a2 12489 return true;
718175fa
JK
12490
12491 case bfd_core:
f64e188b 12492 {
8acbedd6 12493#define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
f64e188b 12494 struct
718175fa 12495 {
f64e188b 12496 const char * string;
8acbedd6 12497 size_t len;
0a1b45a2 12498 bool (*func) (bfd *, Elf_Internal_Note *);
718175fa 12499 }
f64e188b 12500 grokers[] =
b15fa79e 12501 {
8acbedd6 12502 GROKER_ELEMENT ("", elfcore_grok_note),
aa1ed4a9 12503 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
8acbedd6 12504 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
6420dd27 12505 GROKER_ELEMENT ("OpenBSD", elfcore_grok_openbsd_note),
8acbedd6 12506 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
864619bb 12507 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
6420dd27
LB
12508 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note),
12509 GROKER_ELEMENT ("CORE", elfcore_grok_solaris_note)
f64e188b 12510 };
8acbedd6 12511#undef GROKER_ELEMENT
f64e188b
NC
12512 int i;
12513
12514 for (i = ARRAY_SIZE (grokers); i--;)
8acbedd6
KS
12515 {
12516 if (in.namesz >= grokers[i].len
12517 && strncmp (in.namedata, grokers[i].string,
12518 grokers[i].len) == 0)
12519 {
12520 if (! grokers[i].func (abfd, & in))
0a1b45a2 12521 return false;
8acbedd6
KS
12522 break;
12523 }
12524 }
f64e188b
NC
12525 break;
12526 }
718175fa
JK
12527
12528 case bfd_object:
12529 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
12530 {
12531 if (! elfobj_grok_gnu_note (abfd, &in))
0a1b45a2 12532 return false;
718175fa 12533 }
e21e5835
NC
12534 else if (in.namesz == sizeof "stapsdt"
12535 && strcmp (in.namedata, "stapsdt") == 0)
12536 {
12537 if (! elfobj_grok_stapsdt_note (abfd, &in))
0a1b45a2 12538 return false;
e21e5835 12539 }
718175fa 12540 break;
08a40648 12541 }
252b5132 12542
276da9b3 12543 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
252b5132
RH
12544 }
12545
0a1b45a2 12546 return true;
718175fa
JK
12547}
12548
0a1b45a2 12549bool
276da9b3
L
12550elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
12551 size_t align)
718175fa
JK
12552{
12553 char *buf;
12554
957e1fc1 12555 if (size == 0 || (size + 1) == 0)
0a1b45a2 12556 return true;
718175fa
JK
12557
12558 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
0a1b45a2 12559 return false;
718175fa 12560
2bb3687b 12561 buf = (char *) _bfd_malloc_and_read (abfd, size + 1, size);
718175fa 12562 if (buf == NULL)
0a1b45a2 12563 return false;
718175fa 12564
f64e188b
NC
12565 /* PR 17512: file: ec08f814
12566 0-termintate the buffer so that string searches will not overflow. */
12567 buf[size] = 0;
12568
2bb3687b 12569 if (!elf_parse_notes (abfd, buf, size, offset, align))
718175fa
JK
12570 {
12571 free (buf);
0a1b45a2 12572 return false;
718175fa
JK
12573 }
12574
252b5132 12575 free (buf);
0a1b45a2 12576 return true;
252b5132 12577}
98d8431c
JB
12578\f
12579/* Providing external access to the ELF program header table. */
12580
12581/* Return an upper bound on the number of bytes required to store a
12582 copy of ABFD's program header table entries. Return -1 if an error
12583 occurs; bfd_get_error will return an appropriate code. */
c044fabd 12584
98d8431c 12585long
217aa764 12586bfd_get_elf_phdr_upper_bound (bfd *abfd)
98d8431c
JB
12587{
12588 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12589 {
12590 bfd_set_error (bfd_error_wrong_format);
12591 return -1;
12592 }
12593
936e320b 12594 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
98d8431c
JB
12595}
12596
98d8431c
JB
12597/* Copy ABFD's program header table entries to *PHDRS. The entries
12598 will be stored as an array of Elf_Internal_Phdr structures, as
12599 defined in include/elf/internal.h. To find out how large the
12600 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
12601
12602 Return the number of program header table entries read, or -1 if an
12603 error occurs; bfd_get_error will return an appropriate code. */
c044fabd 12604
98d8431c 12605int
217aa764 12606bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
98d8431c
JB
12607{
12608 int num_phdrs;
12609
12610 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12611 {
12612 bfd_set_error (bfd_error_wrong_format);
12613 return -1;
12614 }
12615
12616 num_phdrs = elf_elfheader (abfd)->e_phnum;
01bcaf63
TT
12617 if (num_phdrs != 0)
12618 memcpy (phdrs, elf_tdata (abfd)->phdr,
12619 num_phdrs * sizeof (Elf_Internal_Phdr));
98d8431c
JB
12620
12621 return num_phdrs;
12622}
ae4221d7 12623
db6751f2 12624enum elf_reloc_type_class
7e612e98
AM
12625_bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
12626 const asection *rel_sec ATTRIBUTE_UNUSED,
12627 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
db6751f2
JJ
12628{
12629 return reloc_class_normal;
12630}
f8df10f4 12631
47d9a591 12632/* For RELA architectures, return the relocation value for a
f8df10f4
JJ
12633 relocation against a local symbol. */
12634
12635bfd_vma
217aa764
AM
12636_bfd_elf_rela_local_sym (bfd *abfd,
12637 Elf_Internal_Sym *sym,
8517fae7 12638 asection **psec,
217aa764 12639 Elf_Internal_Rela *rel)
f8df10f4 12640{
8517fae7 12641 asection *sec = *psec;
f8df10f4
JJ
12642 bfd_vma relocation;
12643
6835821b
AM
12644 relocation = (sec->output_section->vma
12645 + sec->output_offset
12646 + sym->st_value);
f8df10f4 12647 if ((sec->flags & SEC_MERGE)
c629eae0 12648 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
dbaa2011 12649 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
f8df10f4 12650 {
f8df10f4 12651 rel->r_addend =
8517fae7 12652 _bfd_merged_section_offset (abfd, psec,
65765700 12653 elf_section_data (sec)->sec_info,
753731ee
AM
12654 sym->st_value + rel->r_addend);
12655 if (sec != *psec)
12656 {
12657 /* If we have changed the section, and our original section is
12658 marked with SEC_EXCLUDE, it means that the original
12659 SEC_MERGE section has been completely subsumed in some
12660 other SEC_MERGE section. In this case, we need to leave
12661 some info around for --emit-relocs. */
12662 if ((sec->flags & SEC_EXCLUDE) != 0)
12663 sec->kept_section = *psec;
12664 sec = *psec;
12665 }
8517fae7
AM
12666 rel->r_addend -= relocation;
12667 rel->r_addend += sec->output_section->vma + sec->output_offset;
f8df10f4
JJ
12668 }
12669 return relocation;
12670}
c629eae0
JJ
12671
12672bfd_vma
217aa764
AM
12673_bfd_elf_rel_local_sym (bfd *abfd,
12674 Elf_Internal_Sym *sym,
12675 asection **psec,
12676 bfd_vma addend)
47d9a591 12677{
c629eae0
JJ
12678 asection *sec = *psec;
12679
6835821b 12680 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
c629eae0
JJ
12681 return sym->st_value + addend;
12682
12683 return _bfd_merged_section_offset (abfd, psec,
65765700 12684 elf_section_data (sec)->sec_info,
753731ee 12685 sym->st_value + addend);
c629eae0
JJ
12686}
12687
37b01f6a
DG
12688/* Adjust an address within a section. Given OFFSET within SEC, return
12689 the new offset within the section, based upon changes made to the
12690 section. Returns -1 if the offset is now invalid.
12691 The offset (in abnd out) is in target sized bytes, however big a
12692 byte may be. */
12693
c629eae0 12694bfd_vma
217aa764 12695_bfd_elf_section_offset (bfd *abfd,
92e4ec35 12696 struct bfd_link_info *info,
217aa764
AM
12697 asection *sec,
12698 bfd_vma offset)
c629eae0 12699{
68bfbfcc 12700 switch (sec->sec_info_type)
65765700 12701 {
dbaa2011 12702 case SEC_INFO_TYPE_STABS:
eea6121a
AM
12703 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12704 offset);
dbaa2011 12705 case SEC_INFO_TYPE_EH_FRAME:
92e4ec35 12706 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
37b01f6a 12707
65765700 12708 default:
310fd250
L
12709 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12710 {
37b01f6a 12711 /* Reverse the offset. */
310fd250
L
12712 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12713 bfd_size_type address_size = bed->s->arch_size / 8;
37b01f6a
DG
12714
12715 /* address_size and sec->size are in octets. Convert
12716 to bytes before subtracting the original offset. */
61826503 12717 offset = ((sec->size - address_size)
bb294208 12718 / bfd_octets_per_byte (abfd, sec) - offset);
310fd250 12719 }
65765700
JJ
12720 return offset;
12721 }
c629eae0 12722}
3333a7c3
RM
12723\f
12724/* Create a new BFD as if by bfd_openr. Rather than opening a file,
12725 reconstruct an ELF file by reading the segments out of remote memory
12726 based on the ELF file header at EHDR_VMA and the ELF program headers it
12727 points to. If not null, *LOADBASEP is filled in with the difference
12728 between the VMAs from which the segments were read, and the VMAs the
12729 file headers (and hence BFD's idea of each section's VMA) put them at.
12730
12731 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12732 remote memory at target address VMA into the local buffer at MYADDR; it
12733 should return zero on success or an `errno' code on failure. TEMPL must
12734 be a BFD for an ELF target with the word size and byte order found in
12735 the remote memory. */
12736
12737bfd *
217aa764
AM
12738bfd_elf_bfd_from_remote_memory
12739 (bfd *templ,
12740 bfd_vma ehdr_vma,
f0a5d95a 12741 bfd_size_type size,
217aa764 12742 bfd_vma *loadbasep,
fe78531d 12743 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
3333a7c3
RM
12744{
12745 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
5979d6b6 12746 (templ, ehdr_vma, size, loadbasep, target_read_memory);
3333a7c3 12747}
4c45e5c9
JJ
12748\f
12749long
c9727e01
AM
12750_bfd_elf_get_synthetic_symtab (bfd *abfd,
12751 long symcount ATTRIBUTE_UNUSED,
12752 asymbol **syms ATTRIBUTE_UNUSED,
8615f3f2 12753 long dynsymcount,
c9727e01
AM
12754 asymbol **dynsyms,
12755 asymbol **ret)
4c45e5c9
JJ
12756{
12757 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12758 asection *relplt;
12759 asymbol *s;
12760 const char *relplt_name;
0a1b45a2 12761 bool (*slurp_relocs) (bfd *, asection *, asymbol **, bool);
4c45e5c9
JJ
12762 arelent *p;
12763 long count, i, n;
12764 size_t size;
12765 Elf_Internal_Shdr *hdr;
12766 char *names;
12767 asection *plt;
12768
8615f3f2
AM
12769 *ret = NULL;
12770
90e3cdf2
JJ
12771 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12772 return 0;
12773
8615f3f2
AM
12774 if (dynsymcount <= 0)
12775 return 0;
12776
4c45e5c9
JJ
12777 if (!bed->plt_sym_val)
12778 return 0;
12779
12780 relplt_name = bed->relplt_name;
12781 if (relplt_name == NULL)
d35fd659 12782 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
4c45e5c9
JJ
12783 relplt = bfd_get_section_by_name (abfd, relplt_name);
12784 if (relplt == NULL)
12785 return 0;
12786
12787 hdr = &elf_section_data (relplt)->this_hdr;
12788 if (hdr->sh_link != elf_dynsymtab (abfd)
12789 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12790 return 0;
12791
12792 plt = bfd_get_section_by_name (abfd, ".plt");
12793 if (plt == NULL)
12794 return 0;
12795
12796 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
0a1b45a2 12797 if (! (*slurp_relocs) (abfd, relplt, dynsyms, true))
4c45e5c9
JJ
12798 return -1;
12799
eea6121a 12800 count = relplt->size / hdr->sh_entsize;
4c45e5c9
JJ
12801 size = count * sizeof (asymbol);
12802 p = relplt->relocation;
cb53bf42 12803 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
041de40d
AM
12804 {
12805 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12806 if (p->addend != 0)
12807 {
12808#ifdef BFD64
12809 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12810#else
12811 size += sizeof ("+0x") - 1 + 8;
12812#endif
12813 }
12814 }
4c45e5c9 12815
a50b1753 12816 s = *ret = (asymbol *) bfd_malloc (size);
4c45e5c9
JJ
12817 if (s == NULL)
12818 return -1;
12819
12820 names = (char *) (s + count);
12821 p = relplt->relocation;
12822 n = 0;
cb53bf42 12823 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
4c45e5c9
JJ
12824 {
12825 size_t len;
12826 bfd_vma addr;
12827
12828 addr = bed->plt_sym_val (i, plt, p);
12829 if (addr == (bfd_vma) -1)
12830 continue;
12831
12832 *s = **p->sym_ptr_ptr;
65a7a66f
AM
12833 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12834 we are defining a symbol, ensure one of them is set. */
12835 if ((s->flags & BSF_LOCAL) == 0)
12836 s->flags |= BSF_GLOBAL;
6ba2a415 12837 s->flags |= BSF_SYNTHETIC;
4c45e5c9
JJ
12838 s->section = plt;
12839 s->value = addr - plt->vma;
12840 s->name = names;
8f39ba8e 12841 s->udata.p = NULL;
4c45e5c9
JJ
12842 len = strlen ((*p->sym_ptr_ptr)->name);
12843 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12844 names += len;
041de40d
AM
12845 if (p->addend != 0)
12846 {
1d770845 12847 char buf[30], *a;
d324f6d6 12848
041de40d
AM
12849 memcpy (names, "+0x", sizeof ("+0x") - 1);
12850 names += sizeof ("+0x") - 1;
1d770845
L
12851 bfd_sprintf_vma (abfd, buf, p->addend);
12852 for (a = buf; *a == '0'; ++a)
12853 ;
12854 len = strlen (a);
12855 memcpy (names, a, len);
12856 names += len;
041de40d 12857 }
4c45e5c9
JJ
12858 memcpy (names, "@plt", sizeof ("@plt"));
12859 names += sizeof ("@plt");
8f39ba8e 12860 ++s, ++n;
4c45e5c9
JJ
12861 }
12862
12863 return n;
12864}
3d7f7666 12865
821e6ff6
AM
12866/* It is only used by x86-64 so far.
12867 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
7eacd66b
AM
12868 but current usage would allow all of _bfd_std_section to be zero. */
12869static const asymbol lcomm_sym
12870 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
3b22753a 12871asection _bfd_elf_large_com_section
7eacd66b 12872 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
821e6ff6 12873 "LARGE_COMMON", 0, SEC_IS_COMMON);
ecca9871 12874
0a1b45a2 12875bool
cc364be6 12876_bfd_elf_final_write_processing (bfd *abfd)
06f44071
AM
12877{
12878 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
d1036acb
L
12879
12880 i_ehdrp = elf_elfheader (abfd);
12881
06f44071
AM
12882 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12883 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
d8045f23 12884
df3a023b 12885 /* Set the osabi field to ELFOSABI_GNU if the binary contains
99fabbc9
JL
12886 SHF_GNU_MBIND or SHF_GNU_RETAIN sections or symbols of STT_GNU_IFUNC type
12887 or STB_GNU_UNIQUE binding. */
cc364be6
AM
12888 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12889 {
12890 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12891 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12892 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12893 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12894 {
12895 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
99fabbc9
JL
12896 _bfd_error_handler (_("GNU_MBIND section is supported only by GNU "
12897 "and FreeBSD targets"));
cc364be6 12898 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
99fabbc9
JL
12899 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is supported "
12900 "only by GNU and FreeBSD targets"));
cc364be6 12901 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
99fabbc9
JL
12902 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is supported "
12903 "only by GNU and FreeBSD targets"));
12904 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_retain)
12905 _bfd_error_handler (_("GNU_RETAIN section is supported "
12906 "only by GNU and FreeBSD targets"));
9aea1e31 12907 bfd_set_error (bfd_error_sorry);
0a1b45a2 12908 return false;
cc364be6
AM
12909 }
12910 }
0a1b45a2 12911 return true;
d1036acb 12912}
fcb93ecf
PB
12913
12914
12915/* Return TRUE for ELF symbol types that represent functions.
12916 This is the default version of this function, which is sufficient for
d8045f23 12917 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
fcb93ecf 12918
0a1b45a2 12919bool
fcb93ecf
PB
12920_bfd_elf_is_function_type (unsigned int type)
12921{
d8045f23
NC
12922 return (type == STT_FUNC
12923 || type == STT_GNU_IFUNC);
fcb93ecf 12924}
9f296da3 12925
aef36ac1
AM
12926/* If the ELF symbol SYM might be a function in SEC, return the
12927 function size and set *CODE_OFF to the function's entry point,
12928 otherwise return zero. */
9f296da3 12929
aef36ac1
AM
12930bfd_size_type
12931_bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12932 bfd_vma *code_off)
9f296da3 12933{
aef36ac1 12934 bfd_size_type size;
24aebc79 12935 elf_symbol_type * elf_sym = (elf_symbol_type *) sym;
aef36ac1 12936
ff9e0f5b 12937 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
aef36ac1
AM
12938 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12939 || sym->section != sec)
12940 return 0;
ff9e0f5b 12941
24aebc79
NC
12942 size = (sym->flags & BSF_SYNTHETIC) ? 0 : elf_sym->internal_elf_sym.st_size;
12943
12944 /* In theory we should check that the symbol's type satisfies
12945 _bfd_elf_is_function_type(), but there are some function-like
12946 symbols which would fail this test. (eg _start). Instead
12947 we check for hidden, local, notype symbols with zero size.
12948 This type of symbol is generated by the annobin plugin for gcc
12949 and clang, and should not be considered to be a function symbol. */
12950 if (size == 0
12951 && ((sym->flags & (BSF_SYNTHETIC | BSF_LOCAL)) == BSF_LOCAL)
12952 && ELF_ST_TYPE (elf_sym->internal_elf_sym.st_info) == STT_NOTYPE
12953 && ELF_ST_VISIBILITY (elf_sym->internal_elf_sym.st_other) == STV_HIDDEN)
12954 return 0;
12955
ff9e0f5b 12956 *code_off = sym->value;
24aebc79
NC
12957 /* Do not return 0 for the function's size. */
12958 return size ? size : 1;
9f296da3 12959}
a8e14f4c
NC
12960
12961/* Set to non-zero to enable some debug messages. */
12962#define DEBUG_SECONDARY_RELOCS 0
12963
12964/* An internal-to-the-bfd-library only section type
12965 used to indicate a cached secondary reloc section. */
12966#define SHT_SECONDARY_RELOC (SHT_LOOS + SHT_RELA)
12967
12968/* Create a BFD section to hold a secondary reloc section. */
12969
0a1b45a2 12970bool
a8e14f4c
NC
12971_bfd_elf_init_secondary_reloc_section (bfd * abfd,
12972 Elf_Internal_Shdr *hdr,
12973 const char * name,
12974 unsigned int shindex)
12975{
12976 /* We only support RELA secondary relocs. */
12977 if (hdr->sh_type != SHT_RELA)
0a1b45a2 12978 return false;
a8e14f4c
NC
12979
12980#if DEBUG_SECONDARY_RELOCS
12981 fprintf (stderr, "secondary reloc section %s encountered\n", name);
12982#endif
12983 hdr->sh_type = SHT_SECONDARY_RELOC;
12984 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
12985}
12986
12987/* Read in any secondary relocs associated with SEC. */
12988
0a1b45a2 12989bool
f60742b2
NC
12990_bfd_elf_slurp_secondary_reloc_section (bfd * abfd,
12991 asection * sec,
12992 asymbol ** symbols,
0a1b45a2 12993 bool dynamic)
a8e14f4c
NC
12994{
12995 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12996 asection * relsec;
0a1b45a2 12997 bool result = true;
a8e14f4c
NC
12998 bfd_vma (*r_sym) (bfd_vma);
12999
13000#if BFD_DEFAULT_TARGET_SIZE > 32
13001 if (bfd_arch_bits_per_address (abfd) != 32)
13002 r_sym = elf64_r_sym;
13003 else
13004#endif
13005 r_sym = elf32_r_sym;
13006
956ea65c
MM
13007 if (!elf_section_data (sec)->has_secondary_relocs)
13008 return true;
13009
a8e14f4c
NC
13010 /* Discover if there are any secondary reloc sections
13011 associated with SEC. */
13012 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
13013 {
13014 Elf_Internal_Shdr * hdr = & elf_section_data (relsec)->this_hdr;
13015
13016 if (hdr->sh_type == SHT_SECONDARY_RELOC
8642dafa
AM
13017 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx
13018 && (hdr->sh_entsize == ebd->s->sizeof_rel
13019 || hdr->sh_entsize == ebd->s->sizeof_rela))
a8e14f4c
NC
13020 {
13021 bfd_byte * native_relocs;
13022 bfd_byte * native_reloc;
13023 arelent * internal_relocs;
13024 arelent * internal_reloc;
13025 unsigned int i;
13026 unsigned int entsize;
13027 unsigned int symcount;
13028 unsigned int reloc_count;
13029 size_t amt;
13030
13031 if (ebd->elf_info_to_howto == NULL)
0a1b45a2 13032 return false;
a8e14f4c
NC
13033
13034#if DEBUG_SECONDARY_RELOCS
13035 fprintf (stderr, "read secondary relocs for %s from %s\n",
13036 sec->name, relsec->name);
13037#endif
13038 entsize = hdr->sh_entsize;
13039
13040 native_relocs = bfd_malloc (hdr->sh_size);
13041 if (native_relocs == NULL)
13042 {
0a1b45a2 13043 result = false;
a8e14f4c
NC
13044 continue;
13045 }
13046
13047 reloc_count = NUM_SHDR_ENTRIES (hdr);
13048 if (_bfd_mul_overflow (reloc_count, sizeof (arelent), & amt))
13049 {
ecbbbdba 13050 free (native_relocs);
a8e14f4c 13051 bfd_set_error (bfd_error_file_too_big);
0a1b45a2 13052 result = false;
a8e14f4c
NC
13053 continue;
13054 }
13055
13056 internal_relocs = (arelent *) bfd_alloc (abfd, amt);
13057 if (internal_relocs == NULL)
13058 {
13059 free (native_relocs);
0a1b45a2 13060 result = false;
a8e14f4c
NC
13061 continue;
13062 }
13063
13064 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
13065 || (bfd_bread (native_relocs, hdr->sh_size, abfd)
13066 != hdr->sh_size))
13067 {
13068 free (native_relocs);
ecbbbdba
NC
13069 /* The internal_relocs will be freed when
13070 the memory for the bfd is released. */
0a1b45a2 13071 result = false;
a8e14f4c
NC
13072 continue;
13073 }
13074
f60742b2
NC
13075 if (dynamic)
13076 symcount = bfd_get_dynamic_symcount (abfd);
13077 else
13078 symcount = bfd_get_symcount (abfd);
a8e14f4c
NC
13079
13080 for (i = 0, internal_reloc = internal_relocs,
13081 native_reloc = native_relocs;
13082 i < reloc_count;
13083 i++, internal_reloc++, native_reloc += entsize)
13084 {
0a1b45a2 13085 bool res;
a8e14f4c
NC
13086 Elf_Internal_Rela rela;
13087
8ee54925
NC
13088 if (entsize == ebd->s->sizeof_rel)
13089 ebd->s->swap_reloc_in (abfd, native_reloc, & rela);
13090 else /* entsize == ebd->s->sizeof_rela */
13091 ebd->s->swap_reloca_in (abfd, native_reloc, & rela);
a8e14f4c
NC
13092
13093 /* The address of an ELF reloc is section relative for an object
13094 file, and absolute for an executable file or shared library.
13095 The address of a normal BFD reloc is always section relative,
13096 and the address of a dynamic reloc is absolute.. */
13097 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
13098 internal_reloc->address = rela.r_offset;
13099 else
13100 internal_reloc->address = rela.r_offset - sec->vma;
13101
13102 if (r_sym (rela.r_info) == STN_UNDEF)
13103 {
13104 /* FIXME: This and the error case below mean that we
13105 have a symbol on relocs that is not elf_symbol_type. */
13106 internal_reloc->sym_ptr_ptr =
13107 bfd_abs_section_ptr->symbol_ptr_ptr;
13108 }
13109 else if (r_sym (rela.r_info) > symcount)
13110 {
13111 _bfd_error_handler
13112 /* xgettext:c-format */
13113 (_("%pB(%pA): relocation %d has invalid symbol index %ld"),
13114 abfd, sec, i, (long) r_sym (rela.r_info));
13115 bfd_set_error (bfd_error_bad_value);
13116 internal_reloc->sym_ptr_ptr =
13117 bfd_abs_section_ptr->symbol_ptr_ptr;
0a1b45a2 13118 result = false;
a8e14f4c
NC
13119 }
13120 else
13121 {
13122 asymbol **ps;
13123
13124 ps = symbols + r_sym (rela.r_info) - 1;
a8e14f4c
NC
13125 internal_reloc->sym_ptr_ptr = ps;
13126 /* Make sure that this symbol is not removed by strip. */
13127 (*ps)->flags |= BSF_KEEP;
13128 }
13129
13130 internal_reloc->addend = rela.r_addend;
13131
13132 res = ebd->elf_info_to_howto (abfd, internal_reloc, & rela);
13133 if (! res || internal_reloc->howto == NULL)
13134 {
13135#if DEBUG_SECONDARY_RELOCS
13136 fprintf (stderr, "there is no howto associated with reloc %lx\n",
13137 rela.r_info);
13138#endif
0a1b45a2 13139 result = false;
a8e14f4c
NC
13140 }
13141 }
13142
13143 free (native_relocs);
13144 /* Store the internal relocs. */
13145 elf_section_data (relsec)->sec_info = internal_relocs;
13146 }
13147 }
13148
13149 return result;
13150}
13151
13152/* Set the ELF section header fields of an output secondary reloc section. */
13153
0a1b45a2 13154bool
a8e14f4c
NC
13155_bfd_elf_copy_special_section_fields (const bfd * ibfd ATTRIBUTE_UNUSED,
13156 bfd * obfd ATTRIBUTE_UNUSED,
13157 const Elf_Internal_Shdr * isection,
13158 Elf_Internal_Shdr * osection)
13159{
13160 asection * isec;
13161 asection * osec;
44466e45 13162 struct bfd_elf_section_data * esd;
a8e14f4c
NC
13163
13164 if (isection == NULL)
0a1b45a2 13165 return false;
a8e14f4c
NC
13166
13167 if (isection->sh_type != SHT_SECONDARY_RELOC)
0a1b45a2 13168 return true;
a8e14f4c
NC
13169
13170 isec = isection->bfd_section;
13171 if (isec == NULL)
0a1b45a2 13172 return false;
a8e14f4c
NC
13173
13174 osec = osection->bfd_section;
13175 if (osec == NULL)
0a1b45a2 13176 return false;
a8e14f4c 13177
44466e45
NC
13178 esd = elf_section_data (osec);
13179 BFD_ASSERT (esd->sec_info == NULL);
13180 esd->sec_info = elf_section_data (isec)->sec_info;
a8e14f4c
NC
13181 osection->sh_type = SHT_RELA;
13182 osection->sh_link = elf_onesymtab (obfd);
13183 if (osection->sh_link == 0)
13184 {
13185 /* There is no symbol table - we are hosed... */
13186 _bfd_error_handler
13187 /* xgettext:c-format */
13188 (_("%pB(%pA): link section cannot be set because the output file does not have a symbol table"),
13189 obfd, osec);
13190 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13191 return false;
a8e14f4c
NC
13192 }
13193
13194 /* Find the output section that corresponds to the isection's sh_info link. */
327ef784
NC
13195 if (isection->sh_info == 0
13196 || isection->sh_info >= elf_numsections (ibfd))
13197 {
13198 _bfd_error_handler
13199 /* xgettext:c-format */
13200 (_("%pB(%pA): info section index is invalid"),
13201 obfd, osec);
13202 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13203 return false;
327ef784
NC
13204 }
13205
a8e14f4c
NC
13206 isection = elf_elfsections (ibfd)[isection->sh_info];
13207
327ef784
NC
13208 if (isection == NULL
13209 || isection->bfd_section == NULL
13210 || isection->bfd_section->output_section == NULL)
13211 {
13212 _bfd_error_handler
13213 /* xgettext:c-format */
13214 (_("%pB(%pA): info section index cannot be set because the section is not in the output"),
13215 obfd, osec);
13216 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13217 return false;
327ef784
NC
13218 }
13219
44466e45
NC
13220 esd = elf_section_data (isection->bfd_section->output_section);
13221 BFD_ASSERT (esd != NULL);
13222 osection->sh_info = esd->this_idx;
0a1b45a2 13223 esd->has_secondary_relocs = true;
a8e14f4c
NC
13224#if DEBUG_SECONDARY_RELOCS
13225 fprintf (stderr, "update header of %s, sh_link = %u, sh_info = %u\n",
13226 osec->name, osection->sh_link, osection->sh_info);
44466e45
NC
13227 fprintf (stderr, "mark section %s as having secondary relocs\n",
13228 bfd_section_name (isection->bfd_section->output_section));
a8e14f4c
NC
13229#endif
13230
0a1b45a2 13231 return true;
a8e14f4c
NC
13232}
13233
44466e45
NC
13234/* Write out a secondary reloc section.
13235
13236 FIXME: Currently this function can result in a serious performance penalty
13237 for files with secondary relocs and lots of sections. The proper way to
13238 fix this is for _bfd_elf_copy_special_section_fields() to chain secondary
13239 relocs together and then to have this function just walk that chain. */
a8e14f4c 13240
0a1b45a2 13241bool
a8e14f4c
NC
13242_bfd_elf_write_secondary_reloc_section (bfd *abfd, asection *sec)
13243{
13244 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
13245 bfd_vma addr_offset;
13246 asection * relsec;
13247 bfd_vma (*r_info) (bfd_vma, bfd_vma);
0a1b45a2 13248 bool result = true;
ac4bf06c
NC
13249
13250 if (sec == NULL)
0a1b45a2 13251 return false;
a8e14f4c
NC
13252
13253#if BFD_DEFAULT_TARGET_SIZE > 32
13254 if (bfd_arch_bits_per_address (abfd) != 32)
13255 r_info = elf64_r_info;
13256 else
13257#endif
13258 r_info = elf32_r_info;
13259
a8e14f4c
NC
13260 /* The address of an ELF reloc is section relative for an object
13261 file, and absolute for an executable file or shared library.
13262 The address of a BFD reloc is always section relative. */
13263 addr_offset = 0;
13264 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
13265 addr_offset = sec->vma;
13266
13267 /* Discover if there are any secondary reloc sections
13268 associated with SEC. */
13269 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
13270 {
13271 const struct bfd_elf_section_data * const esd = elf_section_data (relsec);
13272 Elf_Internal_Shdr * const hdr = (Elf_Internal_Shdr *) & esd->this_hdr;
13273
13274 if (hdr->sh_type == SHT_RELA
13275 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx)
13276 {
13277 asymbol * last_sym;
13278 int last_sym_idx;
13279 unsigned int reloc_count;
13280 unsigned int idx;
8ee54925 13281 unsigned int entsize;
a8e14f4c
NC
13282 arelent * src_irel;
13283 bfd_byte * dst_rela;
13284
ac4bf06c
NC
13285 if (hdr->contents != NULL)
13286 {
13287 _bfd_error_handler
13288 /* xgettext:c-format */
13289 (_("%pB(%pA): error: secondary reloc section processed twice"),
13290 abfd, relsec);
13291 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13292 result = false;
ac4bf06c
NC
13293 continue;
13294 }
a8e14f4c 13295
8ee54925
NC
13296 entsize = hdr->sh_entsize;
13297 if (entsize == 0)
ac267c75
NC
13298 {
13299 _bfd_error_handler
13300 /* xgettext:c-format */
13301 (_("%pB(%pA): error: secondary reloc section has zero sized entries"),
13302 abfd, relsec);
13303 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13304 result = false;
ac267c75
NC
13305 continue;
13306 }
8ee54925
NC
13307 else if (entsize != ebd->s->sizeof_rel
13308 && entsize != ebd->s->sizeof_rela)
13309 {
13310 _bfd_error_handler
13311 /* xgettext:c-format */
13312 (_("%pB(%pA): error: secondary reloc section has non-standard sized entries"),
13313 abfd, relsec);
13314 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13315 result = false;
8ee54925
NC
13316 continue;
13317 }
ac267c75 13318
8ee54925 13319 reloc_count = hdr->sh_size / entsize;
ac4bf06c
NC
13320 if (reloc_count <= 0)
13321 {
13322 _bfd_error_handler
13323 /* xgettext:c-format */
13324 (_("%pB(%pA): error: secondary reloc section is empty!"),
13325 abfd, relsec);
13326 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13327 result = false;
ac4bf06c
NC
13328 continue;
13329 }
a8e14f4c
NC
13330
13331 hdr->contents = bfd_alloc (abfd, hdr->sh_size);
13332 if (hdr->contents == NULL)
13333 continue;
13334
13335#if DEBUG_SECONDARY_RELOCS
13336 fprintf (stderr, "write %u secondary relocs for %s from %s\n",
13337 reloc_count, sec->name, relsec->name);
13338#endif
13339 last_sym = NULL;
13340 last_sym_idx = 0;
13341 dst_rela = hdr->contents;
13342 src_irel = (arelent *) esd->sec_info;
ac4bf06c
NC
13343 if (src_irel == NULL)
13344 {
13345 _bfd_error_handler
13346 /* xgettext:c-format */
13347 (_("%pB(%pA): error: internal relocs missing for secondary reloc section"),
13348 abfd, relsec);
13349 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13350 result = false;
ac4bf06c
NC
13351 continue;
13352 }
a8e14f4c 13353
8ee54925 13354 for (idx = 0; idx < reloc_count; idx++, dst_rela += entsize)
a8e14f4c
NC
13355 {
13356 Elf_Internal_Rela src_rela;
13357 arelent *ptr;
13358 asymbol *sym;
13359 int n;
13360
13361 ptr = src_irel + idx;
ac4bf06c
NC
13362 if (ptr == NULL)
13363 {
13364 _bfd_error_handler
13365 /* xgettext:c-format */
13366 (_("%pB(%pA): error: reloc table entry %u is empty"),
13367 abfd, relsec, idx);
13368 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13369 result = false;
ac4bf06c
NC
13370 break;
13371 }
a8e14f4c 13372
ac4bf06c
NC
13373 if (ptr->sym_ptr_ptr == NULL)
13374 {
13375 /* FIXME: Is this an error ? */
13376 n = 0;
13377 }
a8e14f4c
NC
13378 else
13379 {
ac4bf06c
NC
13380 sym = *ptr->sym_ptr_ptr;
13381
13382 if (sym == last_sym)
13383 n = last_sym_idx;
13384 else
a8e14f4c 13385 {
ac4bf06c
NC
13386 n = _bfd_elf_symbol_from_bfd_symbol (abfd, & sym);
13387 if (n < 0)
13388 {
13389 _bfd_error_handler
13390 /* xgettext:c-format */
13391 (_("%pB(%pA): error: secondary reloc %u references a missing symbol"),
13392 abfd, relsec, idx);
13393 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13394 result = false;
ac4bf06c
NC
13395 n = 0;
13396 }
13397
13398 last_sym = sym;
13399 last_sym_idx = n;
a8e14f4c 13400 }
a8e14f4c 13401
ac4bf06c
NC
13402 if (sym->the_bfd != NULL
13403 && sym->the_bfd->xvec != abfd->xvec
13404 && ! _bfd_elf_validate_reloc (abfd, ptr))
13405 {
13406 _bfd_error_handler
13407 /* xgettext:c-format */
13408 (_("%pB(%pA): error: secondary reloc %u references a deleted symbol"),
13409 abfd, relsec, idx);
13410 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13411 result = false;
ac4bf06c
NC
13412 n = 0;
13413 }
a8e14f4c
NC
13414 }
13415
ac4bf06c 13416 src_rela.r_offset = ptr->address + addr_offset;
a8e14f4c
NC
13417 if (ptr->howto == NULL)
13418 {
ac4bf06c
NC
13419 _bfd_error_handler
13420 /* xgettext:c-format */
13421 (_("%pB(%pA): error: secondary reloc %u is of an unknown type"),
13422 abfd, relsec, idx);
13423 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13424 result = false;
ac4bf06c 13425 src_rela.r_info = r_info (0, 0);
a8e14f4c 13426 }
ac4bf06c
NC
13427 else
13428 src_rela.r_info = r_info (n, ptr->howto->type);
a8e14f4c 13429 src_rela.r_addend = ptr->addend;
8ee54925
NC
13430
13431 if (entsize == ebd->s->sizeof_rel)
13432 ebd->s->swap_reloc_out (abfd, &src_rela, dst_rela);
13433 else /* entsize == ebd->s->sizeof_rela */
13434 ebd->s->swap_reloca_out (abfd, &src_rela, dst_rela);
a8e14f4c
NC
13435 }
13436 }
13437 }
13438
ac4bf06c 13439 return result;
a8e14f4c 13440}