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