]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf.c
elf_backend_modify_headers
[thirdparty/binutils-gdb.git] / bfd / elf.c
CommitLineData
252b5132 1/* ELF executable support for BFD.
340b6d91 2
82704155 3 Copyright (C) 1993-2019 Free Software Foundation, Inc.
252b5132 4
5e8d7549 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
5e8d7549
NC
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
5e8d7549 10 (at your option) any later version.
252b5132 11
5e8d7549
NC
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
252b5132 16
5e8d7549 17 You should have received a copy of the GNU General Public License
b34976b6 18 along with this program; if not, write to the Free Software
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
252b5132 22
1b74d094
BW
23/*
24SECTION
252b5132
RH
25 ELF backends
26
27 BFD support for ELF formats is being worked on.
28 Currently, the best supported back ends are for sparc and i386
29 (running svr4 or Solaris 2).
30
31 Documentation of the internals of the support code still needs
32 to be written. The code is changing quickly enough that we
661a3fd4 33 haven't bothered yet. */
252b5132 34
7ee38065
MS
35/* For sparc64-cross-sparc32. */
36#define _SYSCALL32
252b5132 37#include "sysdep.h"
3a551c7a 38#include <limits.h>
3db64b00 39#include "bfd.h"
252b5132
RH
40#include "bfdlink.h"
41#include "libbfd.h"
42#define ARCH_SIZE 0
43#include "elf-bfd.h"
e0e8c97f 44#include "libiberty.h"
ff59fc36 45#include "safe-ctype.h"
de64ce13 46#include "elf-linux-core.h"
252b5132 47
8bc7f138
L
48#ifdef CORE_HEADER
49#include CORE_HEADER
50#endif
51
217aa764 52static int elf_sort_sections (const void *, const void *);
c84fca4d 53static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
217aa764 54static bfd_boolean prep_headers (bfd *);
ef10c3ac 55static bfd_boolean swap_out_syms (bfd *, struct elf_strtab_hash **, int) ;
718175fa 56static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
276da9b3 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. */
b34976b6 235bfd_boolean
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)
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)
250 return FALSE;
251 elf_tdata (abfd)->o = o;
252 elf_program_header_size (abfd) = (bfd_size_type) -1;
253 }
b34976b6 254 return TRUE;
252b5132
RH
255}
256
0ffa91dd
NC
257
258bfd_boolean
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
b34976b6 266bfd_boolean
217aa764 267bfd_elf_mkcorefile (bfd *abfd)
252b5132 268{
c044fabd 269 /* I think this can be done just like an object file. */
228e534f
AM
270 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
271 return FALSE;
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
95a6d235 300 || shstrtabsize > bfd_get_file_size (abfd)
06614111
NC
301 || bfd_seek (abfd, offset, SEEK_SET) != 0
302 || (shstrtab = (bfd_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL)
c6c60d09
JJ
303 shstrtab = NULL;
304 else if (bfd_bread (shstrtab, shstrtabsize, abfd) != shstrtabsize)
305 {
306 if (bfd_get_error () != bfd_error_system_call)
307 bfd_set_error (bfd_error_file_truncated);
06614111 308 bfd_release (abfd, shstrtab);
c6c60d09 309 shstrtab = NULL;
3471d59d
CC
310 /* Once we've failed to read it, make sure we don't keep
311 trying. Otherwise, we'll keep allocating space for
312 the string table over and over. */
313 i_shdrp[shindex]->sh_size = 0;
c6c60d09
JJ
314 }
315 else
316 shstrtab[shstrtabsize] = '\0';
217aa764 317 i_shdrp[shindex]->contents = shstrtab;
252b5132 318 }
f075ee0c 319 return (char *) shstrtab;
252b5132
RH
320}
321
322char *
217aa764
AM
323bfd_elf_string_from_elf_section (bfd *abfd,
324 unsigned int shindex,
325 unsigned int strindex)
252b5132
RH
326{
327 Elf_Internal_Shdr *hdr;
328
329 if (strindex == 0)
330 return "";
331
74f2e02b
AM
332 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
333 return NULL;
334
252b5132
RH
335 hdr = elf_elfsections (abfd)[shindex];
336
06614111
NC
337 if (hdr->contents == NULL)
338 {
339 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
340 {
341 /* PR 17512: file: f057ec89. */
695344c0 342 /* xgettext:c-format */
871b3ab2 343 _bfd_error_handler (_("%pB: attempt to load strings from"
63a5468a 344 " a non-string section (number %d)"),
06614111
NC
345 abfd, shindex);
346 return NULL;
347 }
b1fa9dd6 348
06614111
NC
349 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
350 return NULL;
351 }
eed5def8
NC
352 else
353 {
354 /* PR 24273: The string section's contents may have already
355 been loaded elsewhere, eg because a corrupt file has the
356 string section index in the ELF header pointing at a group
357 section. So be paranoid, and test that the last byte of
358 the section is zero. */
359 if (hdr->sh_size == 0 || hdr->contents[hdr->sh_size - 1] != 0)
360 return NULL;
361 }
252b5132
RH
362
363 if (strindex >= hdr->sh_size)
364 {
1b3a8575 365 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
4eca0228 366 _bfd_error_handler
695344c0 367 /* xgettext:c-format */
2dcf00ce
AM
368 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
369 abfd, strindex, (uint64_t) hdr->sh_size,
1b3a8575 370 (shindex == shstrndx && strindex == hdr->sh_name
252b5132 371 ? ".shstrtab"
1b3a8575 372 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
45b222d6 373 return NULL;
252b5132
RH
374 }
375
376 return ((char *) hdr->contents) + strindex;
377}
378
6cdc0ccc
AM
379/* Read and convert symbols to internal format.
380 SYMCOUNT specifies the number of symbols to read, starting from
381 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
382 are non-NULL, they are used to store the internal symbols, external
b7c368d0
NC
383 symbols, and symbol section index extensions, respectively.
384 Returns a pointer to the internal symbol buffer (malloced if necessary)
385 or NULL if there were no symbols or some kind of problem. */
6cdc0ccc
AM
386
387Elf_Internal_Sym *
217aa764
AM
388bfd_elf_get_elf_syms (bfd *ibfd,
389 Elf_Internal_Shdr *symtab_hdr,
390 size_t symcount,
391 size_t symoffset,
392 Elf_Internal_Sym *intsym_buf,
393 void *extsym_buf,
394 Elf_External_Sym_Shndx *extshndx_buf)
6cdc0ccc
AM
395{
396 Elf_Internal_Shdr *shndx_hdr;
217aa764 397 void *alloc_ext;
df622259 398 const bfd_byte *esym;
6cdc0ccc
AM
399 Elf_External_Sym_Shndx *alloc_extshndx;
400 Elf_External_Sym_Shndx *shndx;
4dd07732 401 Elf_Internal_Sym *alloc_intsym;
6cdc0ccc
AM
402 Elf_Internal_Sym *isym;
403 Elf_Internal_Sym *isymend;
9c5bfbb7 404 const struct elf_backend_data *bed;
6cdc0ccc
AM
405 size_t extsym_size;
406 bfd_size_type amt;
407 file_ptr pos;
408
e44a2c9c
AM
409 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
410 abort ();
411
6cdc0ccc
AM
412 if (symcount == 0)
413 return intsym_buf;
414
415 /* Normal syms might have section extension entries. */
416 shndx_hdr = NULL;
6a40cf0c
NC
417 if (elf_symtab_shndx_list (ibfd) != NULL)
418 {
419 elf_section_list * entry;
420 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
421
422 /* Find an index section that is linked to this symtab section. */
423 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
315350be
NC
424 {
425 /* PR 20063. */
426 if (entry->hdr.sh_link >= elf_numsections (ibfd))
427 continue;
428
429 if (sections[entry->hdr.sh_link] == symtab_hdr)
430 {
431 shndx_hdr = & entry->hdr;
432 break;
433 };
434 }
6a40cf0c
NC
435
436 if (shndx_hdr == NULL)
437 {
438 if (symtab_hdr == & elf_symtab_hdr (ibfd))
439 /* Not really accurate, but this was how the old code used to work. */
440 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
441 /* Otherwise we do nothing. The assumption is that
442 the index table will not be needed. */
443 }
444 }
6cdc0ccc
AM
445
446 /* Read the symbols. */
447 alloc_ext = NULL;
448 alloc_extshndx = NULL;
4dd07732 449 alloc_intsym = NULL;
6cdc0ccc
AM
450 bed = get_elf_backend_data (ibfd);
451 extsym_size = bed->s->sizeof_sym;
ef53be89 452 amt = (bfd_size_type) symcount * extsym_size;
6cdc0ccc
AM
453 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
454 if (extsym_buf == NULL)
455 {
d0fb9a8d 456 alloc_ext = bfd_malloc2 (symcount, extsym_size);
6cdc0ccc
AM
457 extsym_buf = alloc_ext;
458 }
459 if (extsym_buf == NULL
460 || bfd_seek (ibfd, pos, SEEK_SET) != 0
461 || bfd_bread (extsym_buf, amt, ibfd) != amt)
462 {
463 intsym_buf = NULL;
464 goto out;
465 }
466
467 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
468 extshndx_buf = NULL;
469 else
470 {
ef53be89 471 amt = (bfd_size_type) symcount * sizeof (Elf_External_Sym_Shndx);
6cdc0ccc
AM
472 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
473 if (extshndx_buf == NULL)
474 {
a50b1753 475 alloc_extshndx = (Elf_External_Sym_Shndx *)
07d6d2b8 476 bfd_malloc2 (symcount, sizeof (Elf_External_Sym_Shndx));
6cdc0ccc
AM
477 extshndx_buf = alloc_extshndx;
478 }
479 if (extshndx_buf == NULL
480 || bfd_seek (ibfd, pos, SEEK_SET) != 0
481 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
482 {
483 intsym_buf = NULL;
484 goto out;
485 }
486 }
487
488 if (intsym_buf == NULL)
489 {
a50b1753 490 alloc_intsym = (Elf_Internal_Sym *)
07d6d2b8 491 bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
4dd07732 492 intsym_buf = alloc_intsym;
6cdc0ccc
AM
493 if (intsym_buf == NULL)
494 goto out;
495 }
496
497 /* Convert the symbols to internal form. */
498 isymend = intsym_buf + symcount;
a50b1753 499 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
07d6d2b8 500 shndx = extshndx_buf;
6cdc0ccc
AM
501 isym < isymend;
502 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
8384fb8f
AM
503 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
504 {
505 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
695344c0 506 /* xgettext:c-format */
871b3ab2 507 _bfd_error_handler (_("%pB symbol number %lu references"
63a5468a 508 " nonexistent SHT_SYMTAB_SHNDX section"),
4eca0228 509 ibfd, (unsigned long) symoffset);
4dd07732
AM
510 if (alloc_intsym != NULL)
511 free (alloc_intsym);
8384fb8f
AM
512 intsym_buf = NULL;
513 goto out;
514 }
6cdc0ccc
AM
515
516 out:
517 if (alloc_ext != NULL)
518 free (alloc_ext);
519 if (alloc_extshndx != NULL)
520 free (alloc_extshndx);
521
522 return intsym_buf;
523}
524
5cab59f6
AM
525/* Look up a symbol name. */
526const char *
be8dd2ca
AM
527bfd_elf_sym_name (bfd *abfd,
528 Elf_Internal_Shdr *symtab_hdr,
26c61ae5
L
529 Elf_Internal_Sym *isym,
530 asection *sym_sec)
5cab59f6 531{
26c61ae5 532 const char *name;
5cab59f6 533 unsigned int iname = isym->st_name;
be8dd2ca 534 unsigned int shindex = symtab_hdr->sh_link;
26c61ae5 535
138f35cc
JJ
536 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
537 /* Check for a bogus st_shndx to avoid crashing. */
4fbb74a6 538 && isym->st_shndx < elf_numsections (abfd))
5cab59f6
AM
539 {
540 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
541 shindex = elf_elfheader (abfd)->e_shstrndx;
542 }
543
26c61ae5
L
544 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
545 if (name == NULL)
546 name = "(null)";
547 else if (sym_sec && *name == '\0')
fd361982 548 name = bfd_section_name (sym_sec);
26c61ae5
L
549
550 return name;
5cab59f6
AM
551}
552
dbb410c3
AM
553/* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
554 sections. The first element is the flags, the rest are section
555 pointers. */
556
557typedef union elf_internal_group {
558 Elf_Internal_Shdr *shdr;
559 unsigned int flags;
560} Elf_Internal_Group;
561
b885599b
AM
562/* Return the name of the group signature symbol. Why isn't the
563 signature just a string? */
564
565static const char *
217aa764 566group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
b885599b 567{
9dce4196 568 Elf_Internal_Shdr *hdr;
9dce4196
AM
569 unsigned char esym[sizeof (Elf64_External_Sym)];
570 Elf_External_Sym_Shndx eshndx;
571 Elf_Internal_Sym isym;
b885599b 572
13792e9d
L
573 /* First we need to ensure the symbol table is available. Make sure
574 that it is a symbol table section. */
4fbb74a6
AM
575 if (ghdr->sh_link >= elf_numsections (abfd))
576 return NULL;
13792e9d
L
577 hdr = elf_elfsections (abfd) [ghdr->sh_link];
578 if (hdr->sh_type != SHT_SYMTAB
579 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
b885599b
AM
580 return NULL;
581
9dce4196
AM
582 /* Go read the symbol. */
583 hdr = &elf_tdata (abfd)->symtab_hdr;
6cdc0ccc
AM
584 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
585 &isym, esym, &eshndx) == NULL)
b885599b 586 return NULL;
9dce4196 587
26c61ae5 588 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
b885599b
AM
589}
590
dbb410c3
AM
591/* Set next_in_group list pointer, and group name for NEWSECT. */
592
b34976b6 593static bfd_boolean
217aa764 594setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
dbb410c3
AM
595{
596 unsigned int num_group = elf_tdata (abfd)->num_group;
597
598 /* If num_group is zero, read in all SHT_GROUP sections. The count
599 is set to -1 if there are no SHT_GROUP sections. */
600 if (num_group == 0)
601 {
602 unsigned int i, shnum;
603
604 /* First count the number of groups. If we have a SHT_GROUP
605 section with just a flag word (ie. sh_size is 4), ignore it. */
9ad5cbcf 606 shnum = elf_numsections (abfd);
dbb410c3 607 num_group = 0;
08a40648 608
44534af3 609#define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
1783205a 610 ( (shdr)->sh_type == SHT_GROUP \
44534af3 611 && (shdr)->sh_size >= minsize \
1783205a
NC
612 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
613 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
08a40648 614
dbb410c3
AM
615 for (i = 0; i < shnum; i++)
616 {
617 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 618
44534af3 619 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3
AM
620 num_group += 1;
621 }
622
623 if (num_group == 0)
20dbb49d
L
624 {
625 num_group = (unsigned) -1;
626 elf_tdata (abfd)->num_group = num_group;
ce497010 627 elf_tdata (abfd)->group_sect_ptr = NULL;
20dbb49d
L
628 }
629 else
dbb410c3
AM
630 {
631 /* We keep a list of elf section headers for group sections,
632 so we can find them quickly. */
20dbb49d 633 bfd_size_type amt;
d0fb9a8d 634
20dbb49d 635 elf_tdata (abfd)->num_group = num_group;
a50b1753 636 elf_tdata (abfd)->group_sect_ptr = (Elf_Internal_Shdr **)
07d6d2b8 637 bfd_alloc2 (abfd, num_group, sizeof (Elf_Internal_Shdr *));
dbb410c3 638 if (elf_tdata (abfd)->group_sect_ptr == NULL)
b34976b6 639 return FALSE;
4bba0fb1
AM
640 memset (elf_tdata (abfd)->group_sect_ptr, 0,
641 num_group * sizeof (Elf_Internal_Shdr *));
dbb410c3 642 num_group = 0;
ce497010 643
dbb410c3
AM
644 for (i = 0; i < shnum; i++)
645 {
646 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
1783205a 647
44534af3 648 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
dbb410c3 649 {
973ffd63 650 unsigned char *src;
dbb410c3
AM
651 Elf_Internal_Group *dest;
652
07d6d2b8
AM
653 /* Make sure the group section has a BFD section
654 attached to it. */
655 if (!bfd_section_from_shdr (abfd, i))
656 return FALSE;
657
dbb410c3
AM
658 /* Add to list of sections. */
659 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
660 num_group += 1;
661
662 /* Read the raw contents. */
663 BFD_ASSERT (sizeof (*dest) >= 4);
664 amt = shdr->sh_size * sizeof (*dest) / 4;
a50b1753 665 shdr->contents = (unsigned char *)
eed5def8 666 bfd_alloc2 (abfd, shdr->sh_size, sizeof (*dest) / 4);
1783205a
NC
667 /* PR binutils/4110: Handle corrupt group headers. */
668 if (shdr->contents == NULL)
669 {
670 _bfd_error_handler
695344c0 671 /* xgettext:c-format */
871b3ab2 672 (_("%pB: corrupt size field in group section"
2dcf00ce
AM
673 " header: %#" PRIx64),
674 abfd, (uint64_t) shdr->sh_size);
1783205a 675 bfd_set_error (bfd_error_bad_value);
493a3386
NC
676 -- num_group;
677 continue;
1783205a
NC
678 }
679
680 memset (shdr->contents, 0, amt);
681
682 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
dbb410c3
AM
683 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
684 != shdr->sh_size))
493a3386
NC
685 {
686 _bfd_error_handler
695344c0 687 /* xgettext:c-format */
871b3ab2 688 (_("%pB: invalid size field in group section"
2dcf00ce
AM
689 " header: %#" PRIx64 ""),
690 abfd, (uint64_t) shdr->sh_size);
493a3386
NC
691 bfd_set_error (bfd_error_bad_value);
692 -- num_group;
63a5468a
AM
693 /* PR 17510: If the group contents are even
694 partially corrupt, do not allow any of the
695 contents to be used. */
493a3386
NC
696 memset (shdr->contents, 0, amt);
697 continue;
698 }
708d7d0d 699
dbb410c3
AM
700 /* Translate raw contents, a flag word followed by an
701 array of elf section indices all in target byte order,
702 to the flag word followed by an array of elf section
703 pointers. */
704 src = shdr->contents + shdr->sh_size;
705 dest = (Elf_Internal_Group *) (shdr->contents + amt);
06614111 706
dbb410c3
AM
707 while (1)
708 {
709 unsigned int idx;
710
711 src -= 4;
712 --dest;
713 idx = H_GET_32 (abfd, src);
714 if (src == shdr->contents)
715 {
716 dest->flags = idx;
b885599b
AM
717 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
718 shdr->bfd_section->flags
719 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
dbb410c3
AM
720 break;
721 }
4bba0fb1 722 if (idx < shnum)
bae363f1
L
723 {
724 dest->shdr = elf_elfsections (abfd)[idx];
725 /* PR binutils/23199: All sections in a
726 section group should be marked with
727 SHF_GROUP. But some tools generate
728 broken objects without SHF_GROUP. Fix
729 them up here. */
730 dest->shdr->sh_flags |= SHF_GROUP;
731 }
4bba0fb1
AM
732 if (idx >= shnum
733 || dest->shdr->sh_type == SHT_GROUP)
dbb410c3 734 {
4eca0228 735 _bfd_error_handler
4bba0fb1
AM
736 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
737 abfd, i);
738 dest->shdr = NULL;
dbb410c3 739 }
dbb410c3
AM
740 }
741 }
742 }
493a3386
NC
743
744 /* PR 17510: Corrupt binaries might contain invalid groups. */
745 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
746 {
747 elf_tdata (abfd)->num_group = num_group;
748
749 /* If all groups are invalid then fail. */
750 if (num_group == 0)
751 {
752 elf_tdata (abfd)->group_sect_ptr = NULL;
753 elf_tdata (abfd)->num_group = num_group = -1;
4eca0228 754 _bfd_error_handler
871b3ab2 755 (_("%pB: no valid group sections found"), abfd);
493a3386
NC
756 bfd_set_error (bfd_error_bad_value);
757 }
758 }
dbb410c3
AM
759 }
760 }
761
762 if (num_group != (unsigned) -1)
763 {
564e11c9
JW
764 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
765 unsigned int j;
dbb410c3 766
564e11c9 767 for (j = 0; j < num_group; j++)
dbb410c3 768 {
564e11c9
JW
769 /* Begin search from previous found group. */
770 unsigned i = (j + search_offset) % num_group;
771
dbb410c3 772 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
ce497010 773 Elf_Internal_Group *idx;
0c54f692 774 bfd_size_type n_elt;
ce497010
NC
775
776 if (shdr == NULL)
777 continue;
778
779 idx = (Elf_Internal_Group *) shdr->contents;
0c54f692
NC
780 if (idx == NULL || shdr->sh_size < 4)
781 {
782 /* See PR 21957 for a reproducer. */
783 /* xgettext:c-format */
871b3ab2 784 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
0c54f692
NC
785 abfd, shdr->bfd_section);
786 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
787 bfd_set_error (bfd_error_bad_value);
788 return FALSE;
789 }
ce497010 790 n_elt = shdr->sh_size / 4;
dbb410c3
AM
791
792 /* Look through this group's sections to see if current
793 section is a member. */
794 while (--n_elt != 0)
795 if ((++idx)->shdr == hdr)
796 {
e0e8c97f 797 asection *s = NULL;
dbb410c3
AM
798
799 /* We are a member of this group. Go looking through
800 other members to see if any others are linked via
801 next_in_group. */
802 idx = (Elf_Internal_Group *) shdr->contents;
803 n_elt = shdr->sh_size / 4;
804 while (--n_elt != 0)
4bba0fb1
AM
805 if ((++idx)->shdr != NULL
806 && (s = idx->shdr->bfd_section) != NULL
945906ff 807 && elf_next_in_group (s) != NULL)
dbb410c3
AM
808 break;
809 if (n_elt != 0)
810 {
dbb410c3
AM
811 /* Snarf the group name from other member, and
812 insert current section in circular list. */
945906ff
AM
813 elf_group_name (newsect) = elf_group_name (s);
814 elf_next_in_group (newsect) = elf_next_in_group (s);
815 elf_next_in_group (s) = newsect;
dbb410c3
AM
816 }
817 else
818 {
dbb410c3
AM
819 const char *gname;
820
b885599b
AM
821 gname = group_signature (abfd, shdr);
822 if (gname == NULL)
b34976b6 823 return FALSE;
945906ff 824 elf_group_name (newsect) = gname;
dbb410c3
AM
825
826 /* Start a circular list with one element. */
945906ff 827 elf_next_in_group (newsect) = newsect;
dbb410c3 828 }
b885599b 829
9dce4196
AM
830 /* If the group section has been created, point to the
831 new member. */
dbb410c3 832 if (shdr->bfd_section != NULL)
945906ff 833 elf_next_in_group (shdr->bfd_section) = newsect;
b885599b 834
564e11c9
JW
835 elf_tdata (abfd)->group_search_offset = i;
836 j = num_group - 1;
dbb410c3
AM
837 break;
838 }
839 }
840 }
841
945906ff 842 if (elf_group_name (newsect) == NULL)
dbb410c3 843 {
695344c0 844 /* xgettext:c-format */
871b3ab2 845 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
4eca0228 846 abfd, newsect);
493a3386 847 return FALSE;
dbb410c3 848 }
b34976b6 849 return TRUE;
dbb410c3
AM
850}
851
3d7f7666 852bfd_boolean
dd863624 853_bfd_elf_setup_sections (bfd *abfd)
3d7f7666
L
854{
855 unsigned int i;
856 unsigned int num_group = elf_tdata (abfd)->num_group;
857 bfd_boolean result = TRUE;
dd863624
L
858 asection *s;
859
860 /* Process SHF_LINK_ORDER. */
861 for (s = abfd->sections; s != NULL; s = s->next)
862 {
863 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
864 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
865 {
866 unsigned int elfsec = this_hdr->sh_link;
867 /* FIXME: The old Intel compiler and old strip/objcopy may
868 not set the sh_link or sh_info fields. Hence we could
869 get the situation where elfsec is 0. */
870 if (elfsec == 0)
871 {
4fbb74a6 872 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
dd863624
L
873 if (bed->link_order_error_handler)
874 bed->link_order_error_handler
695344c0 875 /* xgettext:c-format */
871b3ab2 876 (_("%pB: warning: sh_link not set for section `%pA'"),
dd863624
L
877 abfd, s);
878 }
879 else
880 {
91d6fa6a 881 asection *linksec = NULL;
25bbc984 882
4fbb74a6
AM
883 if (elfsec < elf_numsections (abfd))
884 {
885 this_hdr = elf_elfsections (abfd)[elfsec];
91d6fa6a 886 linksec = this_hdr->bfd_section;
4fbb74a6 887 }
25bbc984
L
888
889 /* PR 1991, 2008:
890 Some strip/objcopy may leave an incorrect value in
891 sh_link. We don't want to proceed. */
91d6fa6a 892 if (linksec == NULL)
25bbc984 893 {
4eca0228 894 _bfd_error_handler
695344c0 895 /* xgettext:c-format */
871b3ab2 896 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
c08bb8dd 897 s->owner, elfsec, s);
25bbc984
L
898 result = FALSE;
899 }
900
91d6fa6a 901 elf_linked_to_section (s) = linksec;
dd863624
L
902 }
903 }
53720c49
AM
904 else if (this_hdr->sh_type == SHT_GROUP
905 && elf_next_in_group (s) == NULL)
906 {
4eca0228 907 _bfd_error_handler
695344c0 908 /* xgettext:c-format */
871b3ab2 909 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
53720c49
AM
910 abfd, elf_section_data (s)->this_idx);
911 result = FALSE;
912 }
dd863624 913 }
3d7f7666 914
dd863624 915 /* Process section groups. */
3d7f7666
L
916 if (num_group == (unsigned) -1)
917 return result;
918
919 for (i = 0; i < num_group; i++)
920 {
921 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
4b0e8a5f
NC
922 Elf_Internal_Group *idx;
923 unsigned int n_elt;
3d7f7666 924
4b0e8a5f
NC
925 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
926 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
927 {
4eca0228 928 _bfd_error_handler
695344c0 929 /* xgettext:c-format */
871b3ab2 930 (_("%pB: section group entry number %u is corrupt"),
4b0e8a5f
NC
931 abfd, i);
932 result = FALSE;
933 continue;
934 }
935
936 idx = (Elf_Internal_Group *) shdr->contents;
937 n_elt = shdr->sh_size / 4;
1b786873 938
3d7f7666 939 while (--n_elt != 0)
24d3e51b
NC
940 {
941 ++ idx;
942
943 if (idx->shdr == NULL)
944 continue;
945 else if (idx->shdr->bfd_section)
946 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
db4677b8
AM
947 else if (idx->shdr->sh_type != SHT_RELA
948 && idx->shdr->sh_type != SHT_REL)
24d3e51b
NC
949 {
950 /* There are some unknown sections in the group. */
951 _bfd_error_handler
952 /* xgettext:c-format */
871b3ab2 953 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
24d3e51b
NC
954 abfd,
955 idx->shdr->sh_type,
956 bfd_elf_string_from_elf_section (abfd,
957 (elf_elfheader (abfd)
958 ->e_shstrndx),
959 idx->shdr->sh_name),
960 shdr->bfd_section);
961 result = FALSE;
962 }
963 }
3d7f7666 964 }
24d3e51b 965
3d7f7666
L
966 return result;
967}
968
72adc230
AM
969bfd_boolean
970bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
971{
972 return elf_next_in_group (sec) != NULL;
973}
974
cb7f4b29
AM
975const char *
976bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
977{
978 if (elf_sec_group (sec) != NULL)
979 return elf_group_name (sec);
980 return NULL;
981}
982
f6fe1ccd
L
983static char *
984convert_debug_to_zdebug (bfd *abfd, const char *name)
985{
986 unsigned int len = strlen (name);
987 char *new_name = bfd_alloc (abfd, len + 2);
988 if (new_name == NULL)
989 return NULL;
990 new_name[0] = '.';
991 new_name[1] = 'z';
992 memcpy (new_name + 2, name + 1, len);
993 return new_name;
994}
995
996static char *
997convert_zdebug_to_debug (bfd *abfd, const char *name)
998{
999 unsigned int len = strlen (name);
1000 char *new_name = bfd_alloc (abfd, len);
1001 if (new_name == NULL)
1002 return NULL;
1003 new_name[0] = '.';
1004 memcpy (new_name + 1, name + 2, len - 1);
1005 return new_name;
1006}
1007
cc5277b1
ML
1008/* This a copy of lto_section defined in GCC (lto-streamer.h). */
1009
1010struct lto_section
1011{
1012 int16_t major_version;
1013 int16_t minor_version;
1014 unsigned char slim_object;
1015
1016 /* Flags is a private field that is not defined publicly. */
1017 uint16_t flags;
1018};
1019
252b5132
RH
1020/* Make a BFD section from an ELF section. We store a pointer to the
1021 BFD section in the bfd_section field of the header. */
1022
b34976b6 1023bfd_boolean
217aa764
AM
1024_bfd_elf_make_section_from_shdr (bfd *abfd,
1025 Elf_Internal_Shdr *hdr,
6dc132d9
L
1026 const char *name,
1027 int shindex)
252b5132
RH
1028{
1029 asection *newsect;
1030 flagword flags;
9c5bfbb7 1031 const struct elf_backend_data *bed;
252b5132
RH
1032
1033 if (hdr->bfd_section != NULL)
4e011fb5 1034 return TRUE;
252b5132
RH
1035
1036 newsect = bfd_make_section_anyway (abfd, name);
1037 if (newsect == NULL)
b34976b6 1038 return FALSE;
252b5132 1039
1829f4b2
AM
1040 hdr->bfd_section = newsect;
1041 elf_section_data (newsect)->this_hdr = *hdr;
6dc132d9 1042 elf_section_data (newsect)->this_idx = shindex;
1829f4b2 1043
2f89ff8d
L
1044 /* Always use the real type/flags. */
1045 elf_section_type (newsect) = hdr->sh_type;
1046 elf_section_flags (newsect) = hdr->sh_flags;
1047
252b5132
RH
1048 newsect->filepos = hdr->sh_offset;
1049
fd361982
AM
1050 if (!bfd_set_section_vma (newsect, hdr->sh_addr)
1051 || !bfd_set_section_size (newsect, hdr->sh_size)
1052 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
b34976b6 1053 return FALSE;
252b5132
RH
1054
1055 flags = SEC_NO_FLAGS;
1056 if (hdr->sh_type != SHT_NOBITS)
1057 flags |= SEC_HAS_CONTENTS;
dbb410c3 1058 if (hdr->sh_type == SHT_GROUP)
7bdf4127 1059 flags |= SEC_GROUP;
252b5132
RH
1060 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1061 {
1062 flags |= SEC_ALLOC;
1063 if (hdr->sh_type != SHT_NOBITS)
1064 flags |= SEC_LOAD;
1065 }
1066 if ((hdr->sh_flags & SHF_WRITE) == 0)
1067 flags |= SEC_READONLY;
1068 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1069 flags |= SEC_CODE;
1070 else if ((flags & SEC_LOAD) != 0)
1071 flags |= SEC_DATA;
f5fa8ca2
JJ
1072 if ((hdr->sh_flags & SHF_MERGE) != 0)
1073 {
1074 flags |= SEC_MERGE;
1075 newsect->entsize = hdr->sh_entsize;
f5fa8ca2 1076 }
84865015
NC
1077 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1078 flags |= SEC_STRINGS;
dbb410c3
AM
1079 if (hdr->sh_flags & SHF_GROUP)
1080 if (!setup_group (abfd, hdr, newsect))
b34976b6 1081 return FALSE;
13ae64f3
JJ
1082 if ((hdr->sh_flags & SHF_TLS) != 0)
1083 flags |= SEC_THREAD_LOCAL;
18ae9cc1
L
1084 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1085 flags |= SEC_EXCLUDE;
252b5132 1086
df3a023b
AM
1087 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1088 {
1089 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1090 but binutils as of 2019-07-23 did not set the EI_OSABI header
1091 byte. */
1092 case ELFOSABI_NONE:
1093 case ELFOSABI_GNU:
1094 case ELFOSABI_FREEBSD:
1095 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1096 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1097 break;
1098 }
1099
3d2b39cf 1100 if ((flags & SEC_ALLOC) == 0)
7a6cc5fb 1101 {
3d2b39cf
L
1102 /* The debugging sections appear to be recognized only by name,
1103 not any sort of flag. Their SEC_ALLOC bits are cleared. */
3d2b39cf
L
1104 if (name [0] == '.')
1105 {
f073ced3
AM
1106 const char *p;
1107 int n;
1108 if (name[1] == 'd')
1109 p = ".debug", n = 6;
1110 else if (name[1] == 'g' && name[2] == 'n')
1111 p = ".gnu.linkonce.wi.", n = 17;
1112 else if (name[1] == 'g' && name[2] == 'd')
1113 p = ".gdb_index", n = 11; /* yes we really do mean 11. */
1114 else if (name[1] == 'l')
1115 p = ".line", n = 5;
1116 else if (name[1] == 's')
1117 p = ".stab", n = 5;
1118 else if (name[1] == 'z')
1119 p = ".zdebug", n = 7;
1120 else
1121 p = NULL, n = 0;
1122 if (p != NULL && strncmp (name, p, n) == 0)
3d2b39cf
L
1123 flags |= SEC_DEBUGGING;
1124 }
1125 }
252b5132
RH
1126
1127 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1128 only link a single copy of the section. This is used to support
1129 g++. g++ will emit each template expansion in its own section.
1130 The symbols will be defined as weak, so that multiple definitions
1131 are permitted. The GNU linker extension is to actually discard
1132 all but one of the sections. */
0112cd26 1133 if (CONST_STRNEQ (name, ".gnu.linkonce")
b885599b 1134 && elf_next_in_group (newsect) == NULL)
252b5132
RH
1135 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1136
fa152c49
JW
1137 bed = get_elf_backend_data (abfd);
1138 if (bed->elf_backend_section_flags)
1139 if (! bed->elf_backend_section_flags (&flags, hdr))
b34976b6 1140 return FALSE;
fa152c49 1141
fd361982 1142 if (!bfd_set_section_flags (newsect, flags))
b34976b6 1143 return FALSE;
252b5132 1144
718175fa
JK
1145 /* We do not parse the PT_NOTE segments as we are interested even in the
1146 separate debug info files which may have the segments offsets corrupted.
1147 PT_NOTEs from the core files are currently not parsed using BFD. */
1148 if (hdr->sh_type == SHT_NOTE)
1149 {
baea7ef1 1150 bfd_byte *contents;
718175fa 1151
baea7ef1 1152 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
718175fa
JK
1153 return FALSE;
1154
276da9b3
L
1155 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1156 hdr->sh_offset, hdr->sh_addralign);
718175fa
JK
1157 free (contents);
1158 }
1159
252b5132
RH
1160 if ((flags & SEC_ALLOC) != 0)
1161 {
1162 Elf_Internal_Phdr *phdr;
6ffd7900
AM
1163 unsigned int i, nload;
1164
1165 /* Some ELF linkers produce binaries with all the program header
1166 p_paddr fields zero. If we have such a binary with more than
1167 one PT_LOAD header, then leave the section lma equal to vma
1168 so that we don't create sections with overlapping lma. */
1169 phdr = elf_tdata (abfd)->phdr;
1170 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1171 if (phdr->p_paddr != 0)
1172 break;
1173 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1174 ++nload;
1175 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1176 return TRUE;
252b5132 1177
252b5132
RH
1178 phdr = elf_tdata (abfd)->phdr;
1179 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1180 {
86b2281f
AM
1181 if (((phdr->p_type == PT_LOAD
1182 && (hdr->sh_flags & SHF_TLS) == 0)
1183 || phdr->p_type == PT_TLS)
9a83a553 1184 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
252b5132 1185 {
88967714
AM
1186 if ((flags & SEC_LOAD) == 0)
1187 newsect->lma = (phdr->p_paddr
1188 + hdr->sh_addr - phdr->p_vaddr);
1189 else
1190 /* We used to use the same adjustment for SEC_LOAD
1191 sections, but that doesn't work if the segment
1192 is packed with code from multiple VMAs.
1193 Instead we calculate the section LMA based on
1194 the segment LMA. It is assumed that the
1195 segment will contain sections with contiguous
1196 LMAs, even if the VMAs are not. */
1197 newsect->lma = (phdr->p_paddr
1198 + hdr->sh_offset - phdr->p_offset);
1199
1200 /* With contiguous segments, we can't tell from file
1201 offsets whether a section with zero size should
1202 be placed at the end of one segment or the
1203 beginning of the next. Decide based on vaddr. */
1204 if (hdr->sh_addr >= phdr->p_vaddr
1205 && (hdr->sh_addr + hdr->sh_size
1206 <= phdr->p_vaddr + phdr->p_memsz))
1207 break;
252b5132
RH
1208 }
1209 }
1210 }
1211
4a114e3e
L
1212 /* Compress/decompress DWARF debug sections with names: .debug_* and
1213 .zdebug_*, after the section flags is set. */
1214 if ((flags & SEC_DEBUGGING)
1215 && ((name[1] == 'd' && name[6] == '_')
1216 || (name[1] == 'z' && name[7] == '_')))
1217 {
1218 enum { nothing, compress, decompress } action = nothing;
151411f8 1219 int compression_header_size;
dab394de 1220 bfd_size_type uncompressed_size;
4207142d 1221 unsigned int uncompressed_align_power;
151411f8
L
1222 bfd_boolean compressed
1223 = bfd_is_section_compressed_with_header (abfd, newsect,
dab394de 1224 &compression_header_size,
4207142d
MW
1225 &uncompressed_size,
1226 &uncompressed_align_power);
151411f8 1227 if (compressed)
4a114e3e
L
1228 {
1229 /* Compressed section. Check if we should decompress. */
1230 if ((abfd->flags & BFD_DECOMPRESS))
1231 action = decompress;
1232 }
151411f8
L
1233
1234 /* Compress the uncompressed section or convert from/to .zdebug*
1235 section. Check if we should compress. */
1236 if (action == nothing)
4a114e3e 1237 {
151411f8
L
1238 if (newsect->size != 0
1239 && (abfd->flags & BFD_COMPRESS)
1240 && compression_header_size >= 0
dab394de 1241 && uncompressed_size > 0
151411f8
L
1242 && (!compressed
1243 || ((compression_header_size > 0)
1244 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
4a114e3e 1245 action = compress;
151411f8
L
1246 else
1247 return TRUE;
4a114e3e
L
1248 }
1249
151411f8 1250 if (action == compress)
4a114e3e 1251 {
4a114e3e
L
1252 if (!bfd_init_section_compress_status (abfd, newsect))
1253 {
4eca0228 1254 _bfd_error_handler
695344c0 1255 /* xgettext:c-format */
871b3ab2 1256 (_("%pB: unable to initialize compress status for section %s"),
4a114e3e
L
1257 abfd, name);
1258 return FALSE;
1259 }
151411f8
L
1260 }
1261 else
1262 {
4a114e3e
L
1263 if (!bfd_init_section_decompress_status (abfd, newsect))
1264 {
4eca0228 1265 _bfd_error_handler
695344c0 1266 /* xgettext:c-format */
871b3ab2 1267 (_("%pB: unable to initialize decompress status for section %s"),
4a114e3e
L
1268 abfd, name);
1269 return FALSE;
1270 }
151411f8
L
1271 }
1272
f6fe1ccd 1273 if (abfd->is_linker_input)
151411f8 1274 {
f6fe1ccd
L
1275 if (name[1] == 'z'
1276 && (action == decompress
1277 || (action == compress
1278 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
4e011fb5 1279 {
f6fe1ccd
L
1280 /* Convert section name from .zdebug_* to .debug_* so
1281 that linker will consider this section as a debug
1282 section. */
1283 char *new_name = convert_zdebug_to_debug (abfd, name);
151411f8
L
1284 if (new_name == NULL)
1285 return FALSE;
fd361982 1286 bfd_rename_section (newsect, new_name);
151411f8 1287 }
4a114e3e 1288 }
f6fe1ccd
L
1289 else
1290 /* For objdump, don't rename the section. For objcopy, delay
1291 section rename to elf_fake_sections. */
1292 newsect->flags |= SEC_ELF_RENAME;
4a114e3e
L
1293 }
1294
cc5277b1
ML
1295 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1296 section. */
1297 const char *lto_section_name = ".gnu.lto_.lto.";
1298 if (strncmp (name, lto_section_name, strlen (lto_section_name)) == 0)
1299 {
1300 struct lto_section lsection;
1301 if (bfd_get_section_contents (abfd, newsect, &lsection, 0,
1302 sizeof (struct lto_section)))
1303 abfd->lto_slim_object = lsection.slim_object;
1304 }
1305
b34976b6 1306 return TRUE;
252b5132
RH
1307}
1308
84865015
NC
1309const char *const bfd_elf_section_type_names[] =
1310{
252b5132
RH
1311 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1312 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1313 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1314};
1315
1049f94e 1316/* ELF relocs are against symbols. If we are producing relocatable
252b5132
RH
1317 output, and the reloc is against an external symbol, and nothing
1318 has given us any additional addend, the resulting reloc will also
1319 be against the same symbol. In such a case, we don't want to
1320 change anything about the way the reloc is handled, since it will
1321 all be done at final link time. Rather than put special case code
1322 into bfd_perform_relocation, all the reloc types use this howto
1323 function. It just short circuits the reloc if producing
1049f94e 1324 relocatable output against an external symbol. */
252b5132 1325
252b5132 1326bfd_reloc_status_type
217aa764
AM
1327bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1328 arelent *reloc_entry,
1329 asymbol *symbol,
1330 void *data ATTRIBUTE_UNUSED,
1331 asection *input_section,
1332 bfd *output_bfd,
1333 char **error_message ATTRIBUTE_UNUSED)
1334{
1335 if (output_bfd != NULL
252b5132
RH
1336 && (symbol->flags & BSF_SECTION_SYM) == 0
1337 && (! reloc_entry->howto->partial_inplace
1338 || reloc_entry->addend == 0))
1339 {
1340 reloc_entry->address += input_section->output_offset;
1341 return bfd_reloc_ok;
1342 }
1343
1344 return bfd_reloc_continue;
1345}
1346\f
84865015
NC
1347/* Returns TRUE if section A matches section B.
1348 Names, addresses and links may be different, but everything else
1349 should be the same. */
1350
1351static bfd_boolean
5522f910
NC
1352section_match (const Elf_Internal_Shdr * a,
1353 const Elf_Internal_Shdr * b)
84865015 1354{
ac85e67c
AM
1355 if (a->sh_type != b->sh_type
1356 || ((a->sh_flags ^ b->sh_flags) & ~SHF_INFO_LINK) != 0
1357 || a->sh_addralign != b->sh_addralign
1358 || a->sh_entsize != b->sh_entsize)
1359 return FALSE;
1360 if (a->sh_type == SHT_SYMTAB
1361 || a->sh_type == SHT_STRTAB)
1362 return TRUE;
1363 return a->sh_size == b->sh_size;
84865015
NC
1364}
1365
1366/* Find a section in OBFD that has the same characteristics
1367 as IHEADER. Return the index of this section or SHN_UNDEF if
1368 none can be found. Check's section HINT first, as this is likely
1369 to be the correct section. */
1370
1371static unsigned int
5cc4ca83
ST
1372find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1373 const unsigned int hint)
84865015
NC
1374{
1375 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1376 unsigned int i;
1377
a55c9876
NC
1378 BFD_ASSERT (iheader != NULL);
1379
1380 /* See PR 20922 for a reproducer of the NULL test. */
5cc4ca83
ST
1381 if (hint < elf_numsections (obfd)
1382 && oheaders[hint] != NULL
a55c9876 1383 && section_match (oheaders[hint], iheader))
84865015
NC
1384 return hint;
1385
1386 for (i = 1; i < elf_numsections (obfd); i++)
1387 {
1388 Elf_Internal_Shdr * oheader = oheaders[i];
1389
a55c9876
NC
1390 if (oheader == NULL)
1391 continue;
84865015
NC
1392 if (section_match (oheader, iheader))
1393 /* FIXME: Do we care if there is a potential for
1394 multiple matches ? */
1395 return i;
1396 }
1397
1398 return SHN_UNDEF;
1399}
1400
5522f910
NC
1401/* PR 19938: Attempt to set the ELF section header fields of an OS or
1402 Processor specific section, based upon a matching input section.
1403 Returns TRUE upon success, FALSE otherwise. */
07d6d2b8 1404
5522f910
NC
1405static bfd_boolean
1406copy_special_section_fields (const bfd *ibfd,
1407 bfd *obfd,
1408 const Elf_Internal_Shdr *iheader,
1409 Elf_Internal_Shdr *oheader,
1410 const unsigned int secnum)
1411{
1412 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1413 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1414 bfd_boolean changed = FALSE;
1415 unsigned int sh_link;
1416
1417 if (oheader->sh_type == SHT_NOBITS)
1418 {
1419 /* This is a feature for objcopy --only-keep-debug:
1420 When a section's type is changed to NOBITS, we preserve
1421 the sh_link and sh_info fields so that they can be
1422 matched up with the original.
1423
1424 Note: Strictly speaking these assignments are wrong.
1425 The sh_link and sh_info fields should point to the
1426 relevent sections in the output BFD, which may not be in
1427 the same location as they were in the input BFD. But
1428 the whole point of this action is to preserve the
1429 original values of the sh_link and sh_info fields, so
1430 that they can be matched up with the section headers in
1431 the original file. So strictly speaking we may be
1432 creating an invalid ELF file, but it is only for a file
1433 that just contains debug info and only for sections
1434 without any contents. */
1435 if (oheader->sh_link == 0)
1436 oheader->sh_link = iheader->sh_link;
1437 if (oheader->sh_info == 0)
1438 oheader->sh_info = iheader->sh_info;
1439 return TRUE;
1440 }
1441
1442 /* Allow the target a chance to decide how these fields should be set. */
1443 if (bed->elf_backend_copy_special_section_fields != NULL
1444 && bed->elf_backend_copy_special_section_fields
1445 (ibfd, obfd, iheader, oheader))
1446 return TRUE;
1447
1448 /* We have an iheader which might match oheader, and which has non-zero
1449 sh_info and/or sh_link fields. Attempt to follow those links and find
1450 the section in the output bfd which corresponds to the linked section
1451 in the input bfd. */
1452 if (iheader->sh_link != SHN_UNDEF)
1453 {
4f3ca05b
NC
1454 /* See PR 20931 for a reproducer. */
1455 if (iheader->sh_link >= elf_numsections (ibfd))
1456 {
76cfced5 1457 _bfd_error_handler
4f3ca05b 1458 /* xgettext:c-format */
9793eb77 1459 (_("%pB: invalid sh_link field (%d) in section number %d"),
4f3ca05b
NC
1460 ibfd, iheader->sh_link, secnum);
1461 return FALSE;
1462 }
1463
5522f910
NC
1464 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1465 if (sh_link != SHN_UNDEF)
1466 {
1467 oheader->sh_link = sh_link;
1468 changed = TRUE;
1469 }
1470 else
1471 /* FIXME: Should we install iheader->sh_link
1472 if we could not find a match ? */
76cfced5 1473 _bfd_error_handler
695344c0 1474 /* xgettext:c-format */
9793eb77 1475 (_("%pB: failed to find link section for section %d"), obfd, secnum);
5522f910
NC
1476 }
1477
1478 if (iheader->sh_info)
1479 {
1480 /* The sh_info field can hold arbitrary information, but if the
1481 SHF_LINK_INFO flag is set then it should be interpreted as a
1482 section index. */
1483 if (iheader->sh_flags & SHF_INFO_LINK)
1484 {
1485 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1486 iheader->sh_info);
1487 if (sh_link != SHN_UNDEF)
1488 oheader->sh_flags |= SHF_INFO_LINK;
1489 }
1490 else
1491 /* No idea what it means - just copy it. */
1492 sh_link = iheader->sh_info;
1493
1494 if (sh_link != SHN_UNDEF)
1495 {
1496 oheader->sh_info = sh_link;
1497 changed = TRUE;
1498 }
1499 else
76cfced5 1500 _bfd_error_handler
695344c0 1501 /* xgettext:c-format */
9793eb77 1502 (_("%pB: failed to find info section for section %d"), obfd, secnum);
5522f910
NC
1503 }
1504
1505 return changed;
1506}
07d6d2b8 1507
0ac4564e
L
1508/* Copy the program header and other data from one object module to
1509 another. */
252b5132 1510
b34976b6 1511bfd_boolean
217aa764 1512_bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2d502050 1513{
5522f910
NC
1514 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1515 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1516 const struct elf_backend_data *bed;
84865015
NC
1517 unsigned int i;
1518
2d502050 1519 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
84865015 1520 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 1521 return TRUE;
2d502050 1522
57b828ef
L
1523 if (!elf_flags_init (obfd))
1524 {
1525 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1526 elf_flags_init (obfd) = TRUE;
1527 }
2d502050 1528
0ac4564e 1529 elf_gp (obfd) = elf_gp (ibfd);
57b828ef
L
1530
1531 /* Also copy the EI_OSABI field. */
1532 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1533 elf_elfheader (ibfd)->e_ident[EI_OSABI];
104d59d1 1534
5522f910
NC
1535 /* If set, copy the EI_ABIVERSION field. */
1536 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1537 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1538 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
07d6d2b8 1539
104d59d1
JM
1540 /* Copy object attributes. */
1541 _bfd_elf_copy_obj_attributes (ibfd, obfd);
63b9bbb7 1542
84865015
NC
1543 if (iheaders == NULL || oheaders == NULL)
1544 return TRUE;
63b9bbb7 1545
5522f910
NC
1546 bed = get_elf_backend_data (obfd);
1547
1548 /* Possibly copy other fields in the section header. */
84865015 1549 for (i = 1; i < elf_numsections (obfd); i++)
63b9bbb7 1550 {
84865015
NC
1551 unsigned int j;
1552 Elf_Internal_Shdr * oheader = oheaders[i];
63b9bbb7 1553
5522f910
NC
1554 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1555 because of a special case need for generating separate debug info
1556 files. See below for more details. */
84865015
NC
1557 if (oheader == NULL
1558 || (oheader->sh_type != SHT_NOBITS
5522f910
NC
1559 && oheader->sh_type < SHT_LOOS))
1560 continue;
1561
1562 /* Ignore empty sections, and sections whose
1563 fields have already been initialised. */
1564 if (oheader->sh_size == 0
84865015
NC
1565 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1566 continue;
63b9bbb7 1567
84865015 1568 /* Scan for the matching section in the input bfd.
5522f910
NC
1569 First we try for a direct mapping between the input and output sections. */
1570 for (j = 1; j < elf_numsections (ibfd); j++)
1571 {
1572 const Elf_Internal_Shdr * iheader = iheaders[j];
1573
1574 if (iheader == NULL)
1575 continue;
1576
1577 if (oheader->bfd_section != NULL
1578 && iheader->bfd_section != NULL
1579 && iheader->bfd_section->output_section != NULL
1580 && iheader->bfd_section->output_section == oheader->bfd_section)
1581 {
1582 /* We have found a connection from the input section to the
1583 output section. Attempt to copy the header fields. If
1584 this fails then do not try any further sections - there
1585 should only be a one-to-one mapping between input and output. */
1586 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1587 j = elf_numsections (ibfd);
1588 break;
1589 }
1590 }
1591
1592 if (j < elf_numsections (ibfd))
1593 continue;
1594
1595 /* That failed. So try to deduce the corresponding input section.
84865015
NC
1596 Unfortunately we cannot compare names as the output string table
1597 is empty, so instead we check size, address and type. */
1598 for (j = 1; j < elf_numsections (ibfd); j++)
1599 {
5522f910 1600 const Elf_Internal_Shdr * iheader = iheaders[j];
84865015 1601
5522f910
NC
1602 if (iheader == NULL)
1603 continue;
1604
1605 /* Try matching fields in the input section's header.
1606 Since --only-keep-debug turns all non-debug sections into
84865015
NC
1607 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1608 input type. */
1609 if ((oheader->sh_type == SHT_NOBITS
1610 || iheader->sh_type == oheader->sh_type)
5522f910
NC
1611 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1612 == (oheader->sh_flags & ~ SHF_INFO_LINK)
84865015
NC
1613 && iheader->sh_addralign == oheader->sh_addralign
1614 && iheader->sh_entsize == oheader->sh_entsize
1615 && iheader->sh_size == oheader->sh_size
1616 && iheader->sh_addr == oheader->sh_addr
1617 && (iheader->sh_info != oheader->sh_info
1618 || iheader->sh_link != oheader->sh_link))
63b9bbb7 1619 {
5522f910
NC
1620 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1621 break;
63b9bbb7
NC
1622 }
1623 }
5522f910
NC
1624
1625 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1626 {
1627 /* Final attempt. Call the backend copy function
1628 with a NULL input section. */
1629 if (bed->elf_backend_copy_special_section_fields != NULL)
1630 bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
1631 }
63b9bbb7
NC
1632 }
1633
b34976b6 1634 return TRUE;
2d502050
L
1635}
1636
cedc298e
L
1637static const char *
1638get_segment_type (unsigned int p_type)
1639{
1640 const char *pt;
1641 switch (p_type)
1642 {
1643 case PT_NULL: pt = "NULL"; break;
1644 case PT_LOAD: pt = "LOAD"; break;
1645 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1646 case PT_INTERP: pt = "INTERP"; break;
1647 case PT_NOTE: pt = "NOTE"; break;
1648 case PT_SHLIB: pt = "SHLIB"; break;
1649 case PT_PHDR: pt = "PHDR"; break;
1650 case PT_TLS: pt = "TLS"; break;
1651 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
2b05f1b7 1652 case PT_GNU_STACK: pt = "STACK"; break;
cedc298e
L
1653 case PT_GNU_RELRO: pt = "RELRO"; break;
1654 default: pt = NULL; break;
1655 }
1656 return pt;
1657}
1658
f0b79d91
L
1659/* Print out the program headers. */
1660
b34976b6 1661bfd_boolean
217aa764 1662_bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
252b5132 1663{
a50b1753 1664 FILE *f = (FILE *) farg;
252b5132
RH
1665 Elf_Internal_Phdr *p;
1666 asection *s;
1667 bfd_byte *dynbuf = NULL;
1668
1669 p = elf_tdata (abfd)->phdr;
1670 if (p != NULL)
1671 {
1672 unsigned int i, c;
1673
1674 fprintf (f, _("\nProgram Header:\n"));
1675 c = elf_elfheader (abfd)->e_phnum;
1676 for (i = 0; i < c; i++, p++)
1677 {
cedc298e 1678 const char *pt = get_segment_type (p->p_type);
252b5132
RH
1679 char buf[20];
1680
cedc298e 1681 if (pt == NULL)
252b5132 1682 {
cedc298e
L
1683 sprintf (buf, "0x%lx", p->p_type);
1684 pt = buf;
252b5132 1685 }
dc810e39 1686 fprintf (f, "%8s off 0x", pt);
60b89a18 1687 bfd_fprintf_vma (abfd, f, p->p_offset);
252b5132 1688 fprintf (f, " vaddr 0x");
60b89a18 1689 bfd_fprintf_vma (abfd, f, p->p_vaddr);
252b5132 1690 fprintf (f, " paddr 0x");
60b89a18 1691 bfd_fprintf_vma (abfd, f, p->p_paddr);
252b5132
RH
1692 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1693 fprintf (f, " filesz 0x");
60b89a18 1694 bfd_fprintf_vma (abfd, f, p->p_filesz);
252b5132 1695 fprintf (f, " memsz 0x");
60b89a18 1696 bfd_fprintf_vma (abfd, f, p->p_memsz);
252b5132
RH
1697 fprintf (f, " flags %c%c%c",
1698 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1699 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1700 (p->p_flags & PF_X) != 0 ? 'x' : '-');
dc810e39
AM
1701 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1702 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
252b5132
RH
1703 fprintf (f, "\n");
1704 }
1705 }
1706
1707 s = bfd_get_section_by_name (abfd, ".dynamic");
1708 if (s != NULL)
1709 {
cb33740c 1710 unsigned int elfsec;
dc810e39 1711 unsigned long shlink;
252b5132
RH
1712 bfd_byte *extdyn, *extdynend;
1713 size_t extdynsize;
217aa764 1714 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
252b5132
RH
1715
1716 fprintf (f, _("\nDynamic Section:\n"));
1717
eea6121a 1718 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
252b5132
RH
1719 goto error_return;
1720
1721 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 1722 if (elfsec == SHN_BAD)
252b5132 1723 goto error_return;
dc810e39 1724 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
252b5132
RH
1725
1726 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1727 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1728
1729 extdyn = dynbuf;
06614111
NC
1730 /* PR 17512: file: 6f427532. */
1731 if (s->size < extdynsize)
1732 goto error_return;
eea6121a 1733 extdynend = extdyn + s->size;
1036838a 1734 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
07d6d2b8 1735 Fix range check. */
1036838a 1736 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
252b5132
RH
1737 {
1738 Elf_Internal_Dyn dyn;
ad9563d6 1739 const char *name = "";
252b5132 1740 char ab[20];
b34976b6 1741 bfd_boolean stringp;
ad9563d6 1742 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 1743
217aa764 1744 (*swap_dyn_in) (abfd, extdyn, &dyn);
252b5132
RH
1745
1746 if (dyn.d_tag == DT_NULL)
1747 break;
1748
b34976b6 1749 stringp = FALSE;
252b5132
RH
1750 switch (dyn.d_tag)
1751 {
1752 default:
ad9563d6
CM
1753 if (bed->elf_backend_get_target_dtag)
1754 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1755
1756 if (!strcmp (name, ""))
1757 {
cd9af601 1758 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
ad9563d6
CM
1759 name = ab;
1760 }
252b5132
RH
1761 break;
1762
b34976b6 1763 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
252b5132
RH
1764 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1765 case DT_PLTGOT: name = "PLTGOT"; break;
1766 case DT_HASH: name = "HASH"; break;
1767 case DT_STRTAB: name = "STRTAB"; break;
1768 case DT_SYMTAB: name = "SYMTAB"; break;
1769 case DT_RELA: name = "RELA"; break;
1770 case DT_RELASZ: name = "RELASZ"; break;
1771 case DT_RELAENT: name = "RELAENT"; break;
1772 case DT_STRSZ: name = "STRSZ"; break;
1773 case DT_SYMENT: name = "SYMENT"; break;
1774 case DT_INIT: name = "INIT"; break;
1775 case DT_FINI: name = "FINI"; break;
b34976b6
AM
1776 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1777 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
252b5132
RH
1778 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1779 case DT_REL: name = "REL"; break;
1780 case DT_RELSZ: name = "RELSZ"; break;
1781 case DT_RELENT: name = "RELENT"; break;
1782 case DT_PLTREL: name = "PLTREL"; break;
1783 case DT_DEBUG: name = "DEBUG"; break;
1784 case DT_TEXTREL: name = "TEXTREL"; break;
1785 case DT_JMPREL: name = "JMPREL"; break;
94558834
L
1786 case DT_BIND_NOW: name = "BIND_NOW"; break;
1787 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1788 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1789 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1790 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
b34976b6 1791 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
94558834
L
1792 case DT_FLAGS: name = "FLAGS"; break;
1793 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1794 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
d48188b9 1795 case DT_CHECKSUM: name = "CHECKSUM"; break;
94558834
L
1796 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1797 case DT_MOVEENT: name = "MOVEENT"; break;
1798 case DT_MOVESZ: name = "MOVESZ"; break;
1799 case DT_FEATURE: name = "FEATURE"; break;
1800 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1801 case DT_SYMINSZ: name = "SYMINSZ"; break;
1802 case DT_SYMINENT: name = "SYMINENT"; break;
b34976b6
AM
1803 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1804 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1805 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
94558834
L
1806 case DT_PLTPAD: name = "PLTPAD"; break;
1807 case DT_MOVETAB: name = "MOVETAB"; break;
1808 case DT_SYMINFO: name = "SYMINFO"; break;
1809 case DT_RELACOUNT: name = "RELACOUNT"; break;
1810 case DT_RELCOUNT: name = "RELCOUNT"; break;
1811 case DT_FLAGS_1: name = "FLAGS_1"; break;
252b5132
RH
1812 case DT_VERSYM: name = "VERSYM"; break;
1813 case DT_VERDEF: name = "VERDEF"; break;
1814 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1815 case DT_VERNEED: name = "VERNEED"; break;
1816 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
b34976b6 1817 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
94558834 1818 case DT_USED: name = "USED"; break;
b34976b6 1819 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
fdc90cb4 1820 case DT_GNU_HASH: name = "GNU_HASH"; break;
252b5132
RH
1821 }
1822
ad9563d6 1823 fprintf (f, " %-20s ", name);
252b5132 1824 if (! stringp)
a1f3c56e
AN
1825 {
1826 fprintf (f, "0x");
1827 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1828 }
252b5132
RH
1829 else
1830 {
1831 const char *string;
dc810e39 1832 unsigned int tagv = dyn.d_un.d_val;
252b5132 1833
dc810e39 1834 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
252b5132
RH
1835 if (string == NULL)
1836 goto error_return;
1837 fprintf (f, "%s", string);
1838 }
1839 fprintf (f, "\n");
1840 }
1841
1842 free (dynbuf);
1843 dynbuf = NULL;
1844 }
1845
1846 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1847 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1848 {
fc0e6df6 1849 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
b34976b6 1850 return FALSE;
252b5132
RH
1851 }
1852
1853 if (elf_dynverdef (abfd) != 0)
1854 {
1855 Elf_Internal_Verdef *t;
1856
1857 fprintf (f, _("\nVersion definitions:\n"));
1858 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1859 {
1860 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
d0fb9a8d
JJ
1861 t->vd_flags, t->vd_hash,
1862 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1863 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
252b5132
RH
1864 {
1865 Elf_Internal_Verdaux *a;
1866
1867 fprintf (f, "\t");
1868 for (a = t->vd_auxptr->vda_nextptr;
1869 a != NULL;
1870 a = a->vda_nextptr)
d0fb9a8d
JJ
1871 fprintf (f, "%s ",
1872 a->vda_nodename ? a->vda_nodename : "<corrupt>");
252b5132
RH
1873 fprintf (f, "\n");
1874 }
1875 }
1876 }
1877
1878 if (elf_dynverref (abfd) != 0)
1879 {
1880 Elf_Internal_Verneed *t;
1881
1882 fprintf (f, _("\nVersion References:\n"));
1883 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1884 {
1885 Elf_Internal_Vernaux *a;
1886
d0fb9a8d
JJ
1887 fprintf (f, _(" required from %s:\n"),
1888 t->vn_filename ? t->vn_filename : "<corrupt>");
252b5132
RH
1889 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1890 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
d0fb9a8d
JJ
1891 a->vna_flags, a->vna_other,
1892 a->vna_nodename ? a->vna_nodename : "<corrupt>");
252b5132
RH
1893 }
1894 }
1895
b34976b6 1896 return TRUE;
252b5132
RH
1897
1898 error_return:
1899 if (dynbuf != NULL)
1900 free (dynbuf);
b34976b6 1901 return FALSE;
252b5132
RH
1902}
1903
bb4d2ac2
L
1904/* Get version string. */
1905
1906const char *
60bb06bc
L
1907_bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1908 bfd_boolean *hidden)
bb4d2ac2
L
1909{
1910 const char *version_string = NULL;
1911 if (elf_dynversym (abfd) != 0
1912 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1913 {
1914 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1915
1916 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1917 vernum &= VERSYM_VERSION;
1918
1919 if (vernum == 0)
1920 version_string = "";
1f6f5dba
L
1921 else if (vernum == 1
1922 && (vernum > elf_tdata (abfd)->cverdefs
1923 || (elf_tdata (abfd)->verdef[0].vd_flags
1924 == VER_FLG_BASE)))
bb4d2ac2
L
1925 version_string = "Base";
1926 else if (vernum <= elf_tdata (abfd)->cverdefs)
1927 version_string =
1928 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1929 else
1930 {
1931 Elf_Internal_Verneed *t;
1932
7a815dd5 1933 version_string = _("<corrupt>");
bb4d2ac2
L
1934 for (t = elf_tdata (abfd)->verref;
1935 t != NULL;
1936 t = t->vn_nextref)
1937 {
1938 Elf_Internal_Vernaux *a;
1939
1940 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1941 {
1942 if (a->vna_other == vernum)
1943 {
1944 version_string = a->vna_nodename;
1945 break;
1946 }
1947 }
1948 }
1949 }
1950 }
1951 return version_string;
1952}
1953
252b5132
RH
1954/* Display ELF-specific fields of a symbol. */
1955
1956void
217aa764
AM
1957bfd_elf_print_symbol (bfd *abfd,
1958 void *filep,
1959 asymbol *symbol,
1960 bfd_print_symbol_type how)
252b5132 1961{
a50b1753 1962 FILE *file = (FILE *) filep;
252b5132
RH
1963 switch (how)
1964 {
1965 case bfd_print_symbol_name:
1966 fprintf (file, "%s", symbol->name);
1967 break;
1968 case bfd_print_symbol_more:
1969 fprintf (file, "elf ");
60b89a18 1970 bfd_fprintf_vma (abfd, file, symbol->value);
cd9af601 1971 fprintf (file, " %x", symbol->flags);
252b5132
RH
1972 break;
1973 case bfd_print_symbol_all:
1974 {
4e8a9624
AM
1975 const char *section_name;
1976 const char *name = NULL;
9c5bfbb7 1977 const struct elf_backend_data *bed;
7a13edea 1978 unsigned char st_other;
dbb410c3 1979 bfd_vma val;
bb4d2ac2
L
1980 const char *version_string;
1981 bfd_boolean hidden;
c044fabd 1982
252b5132 1983 section_name = symbol->section ? symbol->section->name : "(*none*)";
587ff49e
RH
1984
1985 bed = get_elf_backend_data (abfd);
1986 if (bed->elf_backend_print_symbol_all)
c044fabd 1987 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
587ff49e
RH
1988
1989 if (name == NULL)
1990 {
7ee38065 1991 name = symbol->name;
217aa764 1992 bfd_print_symbol_vandf (abfd, file, symbol);
587ff49e
RH
1993 }
1994
252b5132
RH
1995 fprintf (file, " %s\t", section_name);
1996 /* Print the "other" value for a symbol. For common symbols,
1997 we've already printed the size; now print the alignment.
1998 For other symbols, we have no specified alignment, and
1999 we've printed the address; now print the size. */
dcf6c779 2000 if (symbol->section && bfd_is_com_section (symbol->section))
dbb410c3
AM
2001 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
2002 else
2003 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
2004 bfd_fprintf_vma (abfd, file, val);
252b5132
RH
2005
2006 /* If we have version information, print it. */
60bb06bc
L
2007 version_string = _bfd_elf_get_symbol_version_string (abfd,
2008 symbol,
2009 &hidden);
bb4d2ac2 2010 if (version_string)
252b5132 2011 {
bb4d2ac2 2012 if (!hidden)
252b5132
RH
2013 fprintf (file, " %-11s", version_string);
2014 else
2015 {
2016 int i;
2017
2018 fprintf (file, " (%s)", version_string);
2019 for (i = 10 - strlen (version_string); i > 0; --i)
2020 putc (' ', file);
2021 }
2022 }
2023
2024 /* If the st_other field is not zero, print it. */
7a13edea 2025 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
c044fabd 2026
7a13edea
NC
2027 switch (st_other)
2028 {
2029 case 0: break;
2030 case STV_INTERNAL: fprintf (file, " .internal"); break;
2031 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2032 case STV_PROTECTED: fprintf (file, " .protected"); break;
2033 default:
2034 /* Some other non-defined flags are also present, so print
2035 everything hex. */
2036 fprintf (file, " 0x%02x", (unsigned int) st_other);
2037 }
252b5132 2038
587ff49e 2039 fprintf (file, " %s", name);
252b5132
RH
2040 }
2041 break;
2042 }
2043}
252b5132
RH
2044\f
2045/* ELF .o/exec file reading */
2046
c044fabd 2047/* Create a new bfd section from an ELF section header. */
252b5132 2048
b34976b6 2049bfd_boolean
217aa764 2050bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
252b5132 2051{
4fbb74a6
AM
2052 Elf_Internal_Shdr *hdr;
2053 Elf_Internal_Ehdr *ehdr;
2054 const struct elf_backend_data *bed;
90937f86 2055 const char *name;
bf67003b
NC
2056 bfd_boolean ret = TRUE;
2057 static bfd_boolean * sections_being_created = NULL;
5a4b0ccc 2058 static bfd * sections_being_created_abfd = NULL;
bf67003b 2059 static unsigned int nesting = 0;
252b5132 2060
4fbb74a6
AM
2061 if (shindex >= elf_numsections (abfd))
2062 return FALSE;
2063
bf67003b
NC
2064 if (++ nesting > 3)
2065 {
2066 /* PR17512: A corrupt ELF binary might contain a recursive group of
67ce483b 2067 sections, with each the string indices pointing to the next in the
bf67003b
NC
2068 loop. Detect this here, by refusing to load a section that we are
2069 already in the process of loading. We only trigger this test if
2070 we have nested at least three sections deep as normal ELF binaries
5a4b0ccc
NC
2071 can expect to recurse at least once.
2072
2073 FIXME: It would be better if this array was attached to the bfd,
2074 rather than being held in a static pointer. */
2075
2076 if (sections_being_created_abfd != abfd)
2077 sections_being_created = NULL;
bf67003b
NC
2078 if (sections_being_created == NULL)
2079 {
bf67003b 2080 sections_being_created = (bfd_boolean *)
7a6e0d89 2081 bfd_zalloc2 (abfd, elf_numsections (abfd), sizeof (bfd_boolean));
5a4b0ccc 2082 sections_being_created_abfd = abfd;
bf67003b
NC
2083 }
2084 if (sections_being_created [shindex])
2085 {
4eca0228 2086 _bfd_error_handler
871b3ab2 2087 (_("%pB: warning: loop in section dependencies detected"), abfd);
bf67003b
NC
2088 return FALSE;
2089 }
2090 sections_being_created [shindex] = TRUE;
2091 }
2092
4fbb74a6
AM
2093 hdr = elf_elfsections (abfd)[shindex];
2094 ehdr = elf_elfheader (abfd);
2095 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
1b3a8575 2096 hdr->sh_name);
933d961a 2097 if (name == NULL)
bf67003b 2098 goto fail;
252b5132 2099
4fbb74a6 2100 bed = get_elf_backend_data (abfd);
252b5132
RH
2101 switch (hdr->sh_type)
2102 {
2103 case SHT_NULL:
2104 /* Inactive section. Throw it away. */
bf67003b 2105 goto success;
252b5132 2106
bf67003b
NC
2107 case SHT_PROGBITS: /* Normal section with contents. */
2108 case SHT_NOBITS: /* .bss section. */
2109 case SHT_HASH: /* .hash section. */
2110 case SHT_NOTE: /* .note section. */
25e27870
L
2111 case SHT_INIT_ARRAY: /* .init_array section. */
2112 case SHT_FINI_ARRAY: /* .fini_array section. */
2113 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
7f1204bb 2114 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
fdc90cb4 2115 case SHT_GNU_HASH: /* .gnu.hash section. */
bf67003b
NC
2116 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2117 goto success;
252b5132 2118
797fc050 2119 case SHT_DYNAMIC: /* Dynamic linking information. */
6dc132d9 2120 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2121 goto fail;
2122
cfcac11d
NC
2123 if (hdr->sh_link > elf_numsections (abfd))
2124 {
caa83f8b 2125 /* PR 10478: Accept Solaris binaries with a sh_link
cfcac11d
NC
2126 field set to SHN_BEFORE or SHN_AFTER. */
2127 switch (bfd_get_arch (abfd))
2128 {
caa83f8b 2129 case bfd_arch_i386:
cfcac11d
NC
2130 case bfd_arch_sparc:
2131 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2132 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2133 break;
2134 /* Otherwise fall through. */
2135 default:
bf67003b 2136 goto fail;
cfcac11d
NC
2137 }
2138 }
2139 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
bf67003b 2140 goto fail;
cfcac11d 2141 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
797fc050
AM
2142 {
2143 Elf_Internal_Shdr *dynsymhdr;
2144
2145 /* The shared libraries distributed with hpux11 have a bogus
2146 sh_link field for the ".dynamic" section. Find the
2147 string table for the ".dynsym" section instead. */
2148 if (elf_dynsymtab (abfd) != 0)
2149 {
2150 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2151 hdr->sh_link = dynsymhdr->sh_link;
2152 }
2153 else
2154 {
2155 unsigned int i, num_sec;
2156
2157 num_sec = elf_numsections (abfd);
2158 for (i = 1; i < num_sec; i++)
2159 {
2160 dynsymhdr = elf_elfsections (abfd)[i];
2161 if (dynsymhdr->sh_type == SHT_DYNSYM)
2162 {
2163 hdr->sh_link = dynsymhdr->sh_link;
2164 break;
2165 }
2166 }
2167 }
2168 }
bf67003b 2169 goto success;
797fc050 2170
bf67003b 2171 case SHT_SYMTAB: /* A symbol table. */
252b5132 2172 if (elf_onesymtab (abfd) == shindex)
bf67003b 2173 goto success;
252b5132 2174
a50b2160 2175 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2176 goto fail;
2177
3337c1e5 2178 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
eee3b786
AM
2179 {
2180 if (hdr->sh_size != 0)
bf67003b 2181 goto fail;
eee3b786
AM
2182 /* Some assemblers erroneously set sh_info to one with a
2183 zero sh_size. ld sees this as a global symbol count
2184 of (unsigned) -1. Fix it here. */
2185 hdr->sh_info = 0;
bf67003b 2186 goto success;
eee3b786 2187 }
bf67003b 2188
16ad13ec
NC
2189 /* PR 18854: A binary might contain more than one symbol table.
2190 Unusual, but possible. Warn, but continue. */
2191 if (elf_onesymtab (abfd) != 0)
2192 {
4eca0228 2193 _bfd_error_handler
695344c0 2194 /* xgettext:c-format */
871b3ab2 2195 (_("%pB: warning: multiple symbol tables detected"
63a5468a 2196 " - ignoring the table in section %u"),
16ad13ec
NC
2197 abfd, shindex);
2198 goto success;
2199 }
252b5132 2200 elf_onesymtab (abfd) = shindex;
6a40cf0c
NC
2201 elf_symtab_hdr (abfd) = *hdr;
2202 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
252b5132
RH
2203 abfd->flags |= HAS_SYMS;
2204
2205 /* Sometimes a shared object will map in the symbol table. If
08a40648
AM
2206 SHF_ALLOC is set, and this is a shared object, then we also
2207 treat this section as a BFD section. We can not base the
2208 decision purely on SHF_ALLOC, because that flag is sometimes
2209 set in a relocatable object file, which would confuse the
2210 linker. */
252b5132
RH
2211 if ((hdr->sh_flags & SHF_ALLOC) != 0
2212 && (abfd->flags & DYNAMIC) != 0
6dc132d9
L
2213 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2214 shindex))
bf67003b 2215 goto fail;
252b5132 2216
1b3a8575
AM
2217 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2218 can't read symbols without that section loaded as well. It
2219 is most likely specified by the next section header. */
6a40cf0c
NC
2220 {
2221 elf_section_list * entry;
2222 unsigned int i, num_sec;
1b3a8575 2223
6a40cf0c
NC
2224 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2225 if (entry->hdr.sh_link == shindex)
2226 goto success;
2227
2228 num_sec = elf_numsections (abfd);
2229 for (i = shindex + 1; i < num_sec; i++)
2230 {
2231 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2232
2233 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2234 && hdr2->sh_link == shindex)
2235 break;
2236 }
2237
2238 if (i == num_sec)
2239 for (i = 1; i < shindex; i++)
1b3a8575
AM
2240 {
2241 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
6a40cf0c 2242
1b3a8575
AM
2243 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2244 && hdr2->sh_link == shindex)
2245 break;
2246 }
6a40cf0c
NC
2247
2248 if (i != shindex)
2249 ret = bfd_section_from_shdr (abfd, i);
2250 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2251 goto success;
2252 }
252b5132 2253
bf67003b 2254 case SHT_DYNSYM: /* A dynamic symbol table. */
252b5132 2255 if (elf_dynsymtab (abfd) == shindex)
bf67003b 2256 goto success;
252b5132 2257
a50b2160 2258 if (hdr->sh_entsize != bed->s->sizeof_sym)
bf67003b
NC
2259 goto fail;
2260
eee3b786
AM
2261 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2262 {
2263 if (hdr->sh_size != 0)
bf67003b
NC
2264 goto fail;
2265
eee3b786
AM
2266 /* Some linkers erroneously set sh_info to one with a
2267 zero sh_size. ld sees this as a global symbol count
2268 of (unsigned) -1. Fix it here. */
2269 hdr->sh_info = 0;
bf67003b 2270 goto success;
eee3b786 2271 }
bf67003b 2272
16ad13ec
NC
2273 /* PR 18854: A binary might contain more than one dynamic symbol table.
2274 Unusual, but possible. Warn, but continue. */
2275 if (elf_dynsymtab (abfd) != 0)
2276 {
4eca0228 2277 _bfd_error_handler
695344c0 2278 /* xgettext:c-format */
871b3ab2 2279 (_("%pB: warning: multiple dynamic symbol tables detected"
63a5468a 2280 " - ignoring the table in section %u"),
16ad13ec
NC
2281 abfd, shindex);
2282 goto success;
2283 }
252b5132
RH
2284 elf_dynsymtab (abfd) = shindex;
2285 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2286 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2287 abfd->flags |= HAS_SYMS;
2288
2289 /* Besides being a symbol table, we also treat this as a regular
2290 section, so that objcopy can handle it. */
bf67003b
NC
2291 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2292 goto success;
252b5132 2293
bf67003b 2294 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
6a40cf0c
NC
2295 {
2296 elf_section_list * entry;
9ad5cbcf 2297
6a40cf0c
NC
2298 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2299 if (entry->ndx == shindex)
2300 goto success;
07d6d2b8 2301
7a6e0d89 2302 entry = bfd_alloc (abfd, sizeof (*entry));
6a40cf0c
NC
2303 if (entry == NULL)
2304 goto fail;
2305 entry->ndx = shindex;
2306 entry->hdr = * hdr;
2307 entry->next = elf_symtab_shndx_list (abfd);
2308 elf_symtab_shndx_list (abfd) = entry;
2309 elf_elfsections (abfd)[shindex] = & entry->hdr;
2310 goto success;
2311 }
9ad5cbcf 2312
bf67003b 2313 case SHT_STRTAB: /* A string table. */
252b5132 2314 if (hdr->bfd_section != NULL)
bf67003b
NC
2315 goto success;
2316
252b5132
RH
2317 if (ehdr->e_shstrndx == shindex)
2318 {
2319 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2320 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
bf67003b 2321 goto success;
252b5132 2322 }
bf67003b 2323
1b3a8575
AM
2324 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2325 {
2326 symtab_strtab:
2327 elf_tdata (abfd)->strtab_hdr = *hdr;
2328 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
bf67003b 2329 goto success;
1b3a8575 2330 }
bf67003b 2331
1b3a8575
AM
2332 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2333 {
2334 dynsymtab_strtab:
2335 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2336 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2337 elf_elfsections (abfd)[shindex] = hdr;
2338 /* We also treat this as a regular section, so that objcopy
2339 can handle it. */
bf67003b
NC
2340 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2341 shindex);
2342 goto success;
1b3a8575 2343 }
252b5132 2344
1b3a8575
AM
2345 /* If the string table isn't one of the above, then treat it as a
2346 regular section. We need to scan all the headers to be sure,
2347 just in case this strtab section appeared before the above. */
2348 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2349 {
2350 unsigned int i, num_sec;
252b5132 2351
1b3a8575
AM
2352 num_sec = elf_numsections (abfd);
2353 for (i = 1; i < num_sec; i++)
2354 {
2355 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2356 if (hdr2->sh_link == shindex)
2357 {
933d961a
JJ
2358 /* Prevent endless recursion on broken objects. */
2359 if (i == shindex)
bf67003b 2360 goto fail;
1b3a8575 2361 if (! bfd_section_from_shdr (abfd, i))
bf67003b 2362 goto fail;
1b3a8575
AM
2363 if (elf_onesymtab (abfd) == i)
2364 goto symtab_strtab;
2365 if (elf_dynsymtab (abfd) == i)
2366 goto dynsymtab_strtab;
2367 }
2368 }
2369 }
bf67003b
NC
2370 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2371 goto success;
252b5132
RH
2372
2373 case SHT_REL:
2374 case SHT_RELA:
2375 /* *These* do a lot of work -- but build no sections! */
2376 {
2377 asection *target_sect;
d4730f92 2378 Elf_Internal_Shdr *hdr2, **p_hdr;
9ad5cbcf 2379 unsigned int num_sec = elf_numsections (abfd);
d4730f92 2380 struct bfd_elf_section_data *esdt;
252b5132 2381
aa2ca951
JJ
2382 if (hdr->sh_entsize
2383 != (bfd_size_type) (hdr->sh_type == SHT_REL
a50b2160 2384 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
bf67003b 2385 goto fail;
a50b2160 2386
03ae5f59 2387 /* Check for a bogus link to avoid crashing. */
4fbb74a6 2388 if (hdr->sh_link >= num_sec)
03ae5f59 2389 {
4eca0228 2390 _bfd_error_handler
695344c0 2391 /* xgettext:c-format */
871b3ab2 2392 (_("%pB: invalid link %u for reloc section %s (index %u)"),
4eca0228 2393 abfd, hdr->sh_link, name, shindex);
bf67003b
NC
2394 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2395 shindex);
2396 goto success;
03ae5f59
ILT
2397 }
2398
252b5132
RH
2399 /* For some incomprehensible reason Oracle distributes
2400 libraries for Solaris in which some of the objects have
2401 bogus sh_link fields. It would be nice if we could just
2402 reject them, but, unfortunately, some people need to use
2403 them. We scan through the section headers; if we find only
2404 one suitable symbol table, we clobber the sh_link to point
83b89087
L
2405 to it. I hope this doesn't break anything.
2406
2407 Don't do it on executable nor shared library. */
2408 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2409 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
252b5132
RH
2410 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2411 {
9ad5cbcf 2412 unsigned int scan;
252b5132
RH
2413 int found;
2414
2415 found = 0;
9ad5cbcf 2416 for (scan = 1; scan < num_sec; scan++)
252b5132
RH
2417 {
2418 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2419 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2420 {
2421 if (found != 0)
2422 {
2423 found = 0;
2424 break;
2425 }
2426 found = scan;
2427 }
2428 }
2429 if (found != 0)
2430 hdr->sh_link = found;
2431 }
2432
2433 /* Get the symbol table. */
1b3a8575
AM
2434 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2435 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
252b5132 2436 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
bf67003b 2437 goto fail;
252b5132 2438
a4bcd733
AM
2439 /* If this is an alloc section in an executable or shared
2440 library, or the reloc section does not use the main symbol
2441 table we don't treat it as a reloc section. BFD can't
2442 adequately represent such a section, so at least for now,
2443 we don't try. We just present it as a normal section. We
2444 also can't use it as a reloc section if it points to the
2445 null section, an invalid section, another reloc section, or
2446 its sh_link points to the null section. */
2447 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2448 && (hdr->sh_flags & SHF_ALLOC) != 0)
83b89087 2449 || hdr->sh_link == SHN_UNDEF
a4bcd733 2450 || hdr->sh_link != elf_onesymtab (abfd)
185ef66d 2451 || hdr->sh_info == SHN_UNDEF
185ef66d
AM
2452 || hdr->sh_info >= num_sec
2453 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2454 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
bf67003b
NC
2455 {
2456 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2457 shindex);
2458 goto success;
2459 }
252b5132
RH
2460
2461 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
bf67003b
NC
2462 goto fail;
2463
252b5132
RH
2464 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2465 if (target_sect == NULL)
bf67003b 2466 goto fail;
252b5132 2467
d4730f92
BS
2468 esdt = elf_section_data (target_sect);
2469 if (hdr->sh_type == SHT_RELA)
2470 p_hdr = &esdt->rela.hdr;
252b5132 2471 else
d4730f92
BS
2472 p_hdr = &esdt->rel.hdr;
2473
a7ba3896
NC
2474 /* PR 17512: file: 0b4f81b7.
2475 Also see PR 24456, for a file which deliberately has two reloc
2476 sections. */
06614111 2477 if (*p_hdr != NULL)
a7ba3896
NC
2478 {
2479 _bfd_error_handler
2480 /* xgettext:c-format */
2481 (_("%pB: warning: multiple relocation sections for section %pA \
2482found - ignoring all but the first"),
2483 abfd, target_sect);
2484 goto success;
2485 }
ef53be89 2486 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
d4730f92 2487 if (hdr2 == NULL)
bf67003b 2488 goto fail;
252b5132 2489 *hdr2 = *hdr;
d4730f92 2490 *p_hdr = hdr2;
252b5132 2491 elf_elfsections (abfd)[shindex] = hdr2;
056bafd4
MR
2492 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2493 * bed->s->int_rels_per_ext_rel);
252b5132
RH
2494 target_sect->flags |= SEC_RELOC;
2495 target_sect->relocation = NULL;
2496 target_sect->rel_filepos = hdr->sh_offset;
bf572ba0
MM
2497 /* In the section to which the relocations apply, mark whether
2498 its relocations are of the REL or RELA variety. */
72730e0c 2499 if (hdr->sh_size != 0)
d4730f92
BS
2500 {
2501 if (hdr->sh_type == SHT_RELA)
2502 target_sect->use_rela_p = 1;
2503 }
252b5132 2504 abfd->flags |= HAS_RELOC;
bf67003b 2505 goto success;
252b5132 2506 }
252b5132
RH
2507
2508 case SHT_GNU_verdef:
2509 elf_dynverdef (abfd) = shindex;
2510 elf_tdata (abfd)->dynverdef_hdr = *hdr;
bf67003b
NC
2511 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2512 goto success;
252b5132
RH
2513
2514 case SHT_GNU_versym:
a50b2160 2515 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
bf67003b
NC
2516 goto fail;
2517
252b5132
RH
2518 elf_dynversym (abfd) = shindex;
2519 elf_tdata (abfd)->dynversym_hdr = *hdr;
bf67003b
NC
2520 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2521 goto success;
252b5132
RH
2522
2523 case SHT_GNU_verneed:
2524 elf_dynverref (abfd) = shindex;
2525 elf_tdata (abfd)->dynverref_hdr = *hdr;
bf67003b
NC
2526 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2527 goto success;
252b5132
RH
2528
2529 case SHT_SHLIB:
bf67003b 2530 goto success;
252b5132 2531
dbb410c3 2532 case SHT_GROUP:
44534af3 2533 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
bf67003b
NC
2534 goto fail;
2535
6dc132d9 2536 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b
NC
2537 goto fail;
2538
bf67003b 2539 goto success;
dbb410c3 2540
252b5132 2541 default:
104d59d1
JM
2542 /* Possibly an attributes section. */
2543 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2544 || hdr->sh_type == bed->obj_attrs_section_type)
2545 {
2546 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2547 goto fail;
104d59d1 2548 _bfd_elf_parse_attributes (abfd, hdr);
bf67003b 2549 goto success;
104d59d1
JM
2550 }
2551
252b5132 2552 /* Check for any processor-specific section types. */
3eb70a79 2553 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
bf67003b 2554 goto success;
3eb70a79
L
2555
2556 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2557 {
2558 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2559 /* FIXME: How to properly handle allocated section reserved
2560 for applications? */
4eca0228 2561 _bfd_error_handler
695344c0 2562 /* xgettext:c-format */
871b3ab2 2563 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2564 abfd, hdr->sh_type, name);
3eb70a79 2565 else
bf67003b
NC
2566 {
2567 /* Allow sections reserved for applications. */
2568 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2569 shindex);
2570 goto success;
2571 }
3eb70a79
L
2572 }
2573 else if (hdr->sh_type >= SHT_LOPROC
2574 && hdr->sh_type <= SHT_HIPROC)
2575 /* FIXME: We should handle this section. */
4eca0228 2576 _bfd_error_handler
695344c0 2577 /* xgettext:c-format */
871b3ab2 2578 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2579 abfd, hdr->sh_type, name);
3eb70a79 2580 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
ff15b240
NC
2581 {
2582 /* Unrecognised OS-specific sections. */
2583 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2584 /* SHF_OS_NONCONFORMING indicates that special knowledge is
08a40648 2585 required to correctly process the section and the file should
ff15b240 2586 be rejected with an error message. */
4eca0228 2587 _bfd_error_handler
695344c0 2588 /* xgettext:c-format */
871b3ab2 2589 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2590 abfd, hdr->sh_type, name);
ff15b240 2591 else
bf67003b
NC
2592 {
2593 /* Otherwise it should be processed. */
2594 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2595 goto success;
2596 }
ff15b240 2597 }
3eb70a79
L
2598 else
2599 /* FIXME: We should handle this section. */
4eca0228 2600 _bfd_error_handler
695344c0 2601 /* xgettext:c-format */
871b3ab2 2602 (_("%pB: unknown type [%#x] section `%s'"),
76cfced5 2603 abfd, hdr->sh_type, name);
3eb70a79 2604
bf67003b 2605 goto fail;
252b5132
RH
2606 }
2607
bf67003b
NC
2608 fail:
2609 ret = FALSE;
2610 success:
e5b470e2 2611 if (sections_being_created && sections_being_created_abfd == abfd)
bf67003b
NC
2612 sections_being_created [shindex] = FALSE;
2613 if (-- nesting == 0)
5a4b0ccc
NC
2614 {
2615 sections_being_created = NULL;
2616 sections_being_created_abfd = abfd;
2617 }
bf67003b 2618 return ret;
252b5132
RH
2619}
2620
87d72d41 2621/* Return the local symbol specified by ABFD, R_SYMNDX. */
ec338859 2622
87d72d41
AM
2623Elf_Internal_Sym *
2624bfd_sym_from_r_symndx (struct sym_cache *cache,
2625 bfd *abfd,
2626 unsigned long r_symndx)
ec338859 2627{
ec338859
AM
2628 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2629
a5d1b3b5
AM
2630 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2631 {
2632 Elf_Internal_Shdr *symtab_hdr;
2633 unsigned char esym[sizeof (Elf64_External_Sym)];
2634 Elf_External_Sym_Shndx eshndx;
ec338859 2635
a5d1b3b5
AM
2636 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2637 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
87d72d41 2638 &cache->sym[ent], esym, &eshndx) == NULL)
a5d1b3b5 2639 return NULL;
9ad5cbcf 2640
a5d1b3b5
AM
2641 if (cache->abfd != abfd)
2642 {
2643 memset (cache->indx, -1, sizeof (cache->indx));
2644 cache->abfd = abfd;
2645 }
2646 cache->indx[ent] = r_symndx;
ec338859 2647 }
a5d1b3b5 2648
87d72d41 2649 return &cache->sym[ent];
ec338859
AM
2650}
2651
252b5132
RH
2652/* Given an ELF section number, retrieve the corresponding BFD
2653 section. */
2654
2655asection *
91d6fa6a 2656bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
252b5132 2657{
91d6fa6a 2658 if (sec_index >= elf_numsections (abfd))
252b5132 2659 return NULL;
91d6fa6a 2660 return elf_elfsections (abfd)[sec_index]->bfd_section;
252b5132
RH
2661}
2662
b35d266b 2663static const struct bfd_elf_special_section special_sections_b[] =
2f89ff8d 2664{
0112cd26 2665 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2666 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2667};
2668
b35d266b 2669static const struct bfd_elf_special_section special_sections_c[] =
7f4d3958 2670{
0112cd26 2671 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
1ff6de03 2672 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2673 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2674};
2675
b35d266b 2676static const struct bfd_elf_special_section special_sections_d[] =
7f4d3958 2677{
07d6d2b8
AM
2678 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2679 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
a9a72a65
DE
2680 /* There are more DWARF sections than these, but they needn't be added here
2681 unless you have to cope with broken compilers that don't emit section
2682 attributes or you want to help the user writing assembler. */
07d6d2b8
AM
2683 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2684 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2685 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2686 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
0112cd26 2687 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2688 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2689 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2690 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2691 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2692};
2693
b35d266b 2694static const struct bfd_elf_special_section special_sections_f[] =
7f4d3958 2695{
07d6d2b8 2696 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2697 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8 2698 { NULL, 0 , 0, 0, 0 }
7f4d3958
L
2699};
2700
b35d266b 2701static const struct bfd_elf_special_section special_sections_g[] =
7f4d3958 2702{
0112cd26 2703 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2704 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2705 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2706 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
0112cd26
NC
2707 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2708 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
07d6d2b8
AM
2709 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2710 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2711 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2712 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2713};
2714
b35d266b 2715static const struct bfd_elf_special_section special_sections_h[] =
7f4d3958 2716{
07d6d2b8
AM
2717 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2718 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2719};
2720
b35d266b 2721static const struct bfd_elf_special_section special_sections_i[] =
7f4d3958 2722{
07d6d2b8 2723 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
6f9dbcd4 2724 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2725 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2726 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2727};
2728
b35d266b 2729static const struct bfd_elf_special_section special_sections_l[] =
7f4d3958 2730{
0112cd26 2731 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2732 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2733};
2734
b35d266b 2735static const struct bfd_elf_special_section special_sections_n[] =
7f4d3958 2736{
0112cd26 2737 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
07d6d2b8
AM
2738 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2739 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2740};
2741
b35d266b 2742static const struct bfd_elf_special_section special_sections_p[] =
7f4d3958 2743{
6f9dbcd4 2744 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
07d6d2b8
AM
2745 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2746 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2747};
2748
b35d266b 2749static const struct bfd_elf_special_section special_sections_r[] =
7f4d3958 2750{
0112cd26
NC
2751 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2752 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
07d6d2b8
AM
2753 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2754 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2755 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2756};
2757
b35d266b 2758static const struct bfd_elf_special_section special_sections_s[] =
7f4d3958 2759{
0112cd26
NC
2760 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2761 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2762 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
60ff4dc4
HPN
2763 /* See struct bfd_elf_special_section declaration for the semantics of
2764 this special case where .prefix_length != strlen (.prefix). */
2765 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
07d6d2b8 2766 { NULL, 0, 0, 0, 0 }
2f89ff8d
L
2767};
2768
b35d266b 2769static const struct bfd_elf_special_section special_sections_t[] =
7f4d3958 2770{
07d6d2b8
AM
2771 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2772 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
0112cd26 2773 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
07d6d2b8 2774 { NULL, 0, 0, 0, 0 }
7f4d3958
L
2775};
2776
1b315056
CS
2777static const struct bfd_elf_special_section special_sections_z[] =
2778{
07d6d2b8
AM
2779 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2780 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
1b315056
CS
2781 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2782 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
07d6d2b8 2783 { NULL, 0, 0, 0, 0 }
1b315056
CS
2784};
2785
e4c93b56 2786static const struct bfd_elf_special_section * const special_sections[] =
7f4d3958 2787{
7f4d3958 2788 special_sections_b, /* 'b' */
98ece1b3 2789 special_sections_c, /* 'c' */
7f4d3958
L
2790 special_sections_d, /* 'd' */
2791 NULL, /* 'e' */
2792 special_sections_f, /* 'f' */
2793 special_sections_g, /* 'g' */
2794 special_sections_h, /* 'h' */
2795 special_sections_i, /* 'i' */
2796 NULL, /* 'j' */
2797 NULL, /* 'k' */
2798 special_sections_l, /* 'l' */
2799 NULL, /* 'm' */
2800 special_sections_n, /* 'n' */
2801 NULL, /* 'o' */
2802 special_sections_p, /* 'p' */
2803 NULL, /* 'q' */
2804 special_sections_r, /* 'r' */
2805 special_sections_s, /* 's' */
2806 special_sections_t, /* 't' */
1b315056
CS
2807 NULL, /* 'u' */
2808 NULL, /* 'v' */
2809 NULL, /* 'w' */
2810 NULL, /* 'x' */
2811 NULL, /* 'y' */
2812 special_sections_z /* 'z' */
7f4d3958
L
2813};
2814
551b43fd
AM
2815const struct bfd_elf_special_section *
2816_bfd_elf_get_special_section (const char *name,
2817 const struct bfd_elf_special_section *spec,
2818 unsigned int rela)
2f89ff8d
L
2819{
2820 int i;
7f4d3958 2821 int len;
7f4d3958 2822
551b43fd 2823 len = strlen (name);
7f4d3958 2824
551b43fd 2825 for (i = 0; spec[i].prefix != NULL; i++)
7dcb9820
AM
2826 {
2827 int suffix_len;
551b43fd 2828 int prefix_len = spec[i].prefix_length;
7dcb9820
AM
2829
2830 if (len < prefix_len)
2831 continue;
551b43fd 2832 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
7dcb9820
AM
2833 continue;
2834
551b43fd 2835 suffix_len = spec[i].suffix_length;
7dcb9820
AM
2836 if (suffix_len <= 0)
2837 {
2838 if (name[prefix_len] != 0)
2839 {
2840 if (suffix_len == 0)
2841 continue;
2842 if (name[prefix_len] != '.'
2843 && (suffix_len == -2
551b43fd 2844 || (rela && spec[i].type == SHT_REL)))
7dcb9820
AM
2845 continue;
2846 }
2847 }
2848 else
2849 {
2850 if (len < prefix_len + suffix_len)
2851 continue;
2852 if (memcmp (name + len - suffix_len,
551b43fd 2853 spec[i].prefix + prefix_len,
7dcb9820
AM
2854 suffix_len) != 0)
2855 continue;
2856 }
551b43fd 2857 return &spec[i];
7dcb9820 2858 }
2f89ff8d
L
2859
2860 return NULL;
2861}
2862
7dcb9820 2863const struct bfd_elf_special_section *
29ef7005 2864_bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2f89ff8d 2865{
551b43fd
AM
2866 int i;
2867 const struct bfd_elf_special_section *spec;
29ef7005 2868 const struct elf_backend_data *bed;
2f89ff8d
L
2869
2870 /* See if this is one of the special sections. */
551b43fd
AM
2871 if (sec->name == NULL)
2872 return NULL;
2f89ff8d 2873
29ef7005
L
2874 bed = get_elf_backend_data (abfd);
2875 spec = bed->special_sections;
2876 if (spec)
2877 {
2878 spec = _bfd_elf_get_special_section (sec->name,
2879 bed->special_sections,
2880 sec->use_rela_p);
2881 if (spec != NULL)
2882 return spec;
2883 }
2884
551b43fd
AM
2885 if (sec->name[0] != '.')
2886 return NULL;
2f89ff8d 2887
551b43fd 2888 i = sec->name[1] - 'b';
1b315056 2889 if (i < 0 || i > 'z' - 'b')
551b43fd
AM
2890 return NULL;
2891
2892 spec = special_sections[i];
2f89ff8d 2893
551b43fd
AM
2894 if (spec == NULL)
2895 return NULL;
2896
2897 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2f89ff8d
L
2898}
2899
b34976b6 2900bfd_boolean
217aa764 2901_bfd_elf_new_section_hook (bfd *abfd, asection *sec)
252b5132
RH
2902{
2903 struct bfd_elf_section_data *sdata;
551b43fd 2904 const struct elf_backend_data *bed;
7dcb9820 2905 const struct bfd_elf_special_section *ssect;
252b5132 2906
f0abc2a1
AM
2907 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2908 if (sdata == NULL)
2909 {
a50b1753 2910 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
07d6d2b8 2911 sizeof (*sdata));
f0abc2a1
AM
2912 if (sdata == NULL)
2913 return FALSE;
217aa764 2914 sec->used_by_bfd = sdata;
f0abc2a1 2915 }
bf572ba0 2916
551b43fd
AM
2917 /* Indicate whether or not this section should use RELA relocations. */
2918 bed = get_elf_backend_data (abfd);
2919 sec->use_rela_p = bed->default_use_rela_p;
2920
e843e0f8
L
2921 /* When we read a file, we don't need to set ELF section type and
2922 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2923 anyway. We will set ELF section type and flags for all linker
2924 created sections. If user specifies BFD section flags, we will
2925 set ELF section type and flags based on BFD section flags in
02ecc8e9
L
2926 elf_fake_sections. Special handling for .init_array/.fini_array
2927 output sections since they may contain .ctors/.dtors input
2928 sections. We don't want _bfd_elf_init_private_section_data to
2929 copy ELF section type from .ctors/.dtors input sections. */
2930 if (abfd->direction != read_direction
3496cb2a 2931 || (sec->flags & SEC_LINKER_CREATED) != 0)
2f89ff8d 2932 {
551b43fd 2933 ssect = (*bed->get_sec_type_attr) (abfd, sec);
02ecc8e9
L
2934 if (ssect != NULL
2935 && (!sec->flags
2936 || (sec->flags & SEC_LINKER_CREATED) != 0
2937 || ssect->type == SHT_INIT_ARRAY
2938 || ssect->type == SHT_FINI_ARRAY))
a31501e9
L
2939 {
2940 elf_section_type (sec) = ssect->type;
2941 elf_section_flags (sec) = ssect->attr;
2942 }
2f89ff8d
L
2943 }
2944
f592407e 2945 return _bfd_generic_new_section_hook (abfd, sec);
252b5132
RH
2946}
2947
2948/* Create a new bfd section from an ELF program header.
2949
2950 Since program segments have no names, we generate a synthetic name
2951 of the form segment<NUM>, where NUM is generally the index in the
2952 program header table. For segments that are split (see below) we
2953 generate the names segment<NUM>a and segment<NUM>b.
2954
2955 Note that some program segments may have a file size that is different than
2956 (less than) the memory size. All this means is that at execution the
2957 system must allocate the amount of memory specified by the memory size,
2958 but only initialize it with the first "file size" bytes read from the
2959 file. This would occur for example, with program segments consisting
2960 of combined data+bss.
2961
2962 To handle the above situation, this routine generates TWO bfd sections
2963 for the single program segment. The first has the length specified by
2964 the file size of the segment, and the second has the length specified
2965 by the difference between the two sizes. In effect, the segment is split
d5191d0c 2966 into its initialized and uninitialized parts.
252b5132
RH
2967
2968 */
2969
b34976b6 2970bfd_boolean
217aa764
AM
2971_bfd_elf_make_section_from_phdr (bfd *abfd,
2972 Elf_Internal_Phdr *hdr,
91d6fa6a 2973 int hdr_index,
a50b1753 2974 const char *type_name)
252b5132
RH
2975{
2976 asection *newsect;
2977 char *name;
2978 char namebuf[64];
d4c88bbb 2979 size_t len;
252b5132
RH
2980 int split;
2981
2982 split = ((hdr->p_memsz > 0)
2983 && (hdr->p_filesz > 0)
2984 && (hdr->p_memsz > hdr->p_filesz));
d5191d0c
AM
2985
2986 if (hdr->p_filesz > 0)
252b5132 2987 {
91d6fa6a 2988 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
d5191d0c 2989 len = strlen (namebuf) + 1;
a50b1753 2990 name = (char *) bfd_alloc (abfd, len);
d5191d0c
AM
2991 if (!name)
2992 return FALSE;
2993 memcpy (name, namebuf, len);
2994 newsect = bfd_make_section (abfd, name);
2995 if (newsect == NULL)
2996 return FALSE;
2997 newsect->vma = hdr->p_vaddr;
2998 newsect->lma = hdr->p_paddr;
2999 newsect->size = hdr->p_filesz;
3000 newsect->filepos = hdr->p_offset;
3001 newsect->flags |= SEC_HAS_CONTENTS;
3002 newsect->alignment_power = bfd_log2 (hdr->p_align);
3003 if (hdr->p_type == PT_LOAD)
252b5132 3004 {
d5191d0c
AM
3005 newsect->flags |= SEC_ALLOC;
3006 newsect->flags |= SEC_LOAD;
3007 if (hdr->p_flags & PF_X)
3008 {
3009 /* FIXME: all we known is that it has execute PERMISSION,
3010 may be data. */
3011 newsect->flags |= SEC_CODE;
3012 }
3013 }
3014 if (!(hdr->p_flags & PF_W))
3015 {
3016 newsect->flags |= SEC_READONLY;
252b5132 3017 }
252b5132
RH
3018 }
3019
d5191d0c 3020 if (hdr->p_memsz > hdr->p_filesz)
252b5132 3021 {
d5191d0c
AM
3022 bfd_vma align;
3023
91d6fa6a 3024 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
d4c88bbb 3025 len = strlen (namebuf) + 1;
a50b1753 3026 name = (char *) bfd_alloc (abfd, len);
252b5132 3027 if (!name)
b34976b6 3028 return FALSE;
d4c88bbb 3029 memcpy (name, namebuf, len);
252b5132
RH
3030 newsect = bfd_make_section (abfd, name);
3031 if (newsect == NULL)
b34976b6 3032 return FALSE;
252b5132
RH
3033 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
3034 newsect->lma = hdr->p_paddr + hdr->p_filesz;
eea6121a 3035 newsect->size = hdr->p_memsz - hdr->p_filesz;
d5191d0c
AM
3036 newsect->filepos = hdr->p_offset + hdr->p_filesz;
3037 align = newsect->vma & -newsect->vma;
3038 if (align == 0 || align > hdr->p_align)
3039 align = hdr->p_align;
3040 newsect->alignment_power = bfd_log2 (align);
252b5132
RH
3041 if (hdr->p_type == PT_LOAD)
3042 {
d5191d0c
AM
3043 /* Hack for gdb. Segments that have not been modified do
3044 not have their contents written to a core file, on the
3045 assumption that a debugger can find the contents in the
3046 executable. We flag this case by setting the fake
3047 section size to zero. Note that "real" bss sections will
3048 always have their contents dumped to the core file. */
3049 if (bfd_get_format (abfd) == bfd_core)
3050 newsect->size = 0;
252b5132
RH
3051 newsect->flags |= SEC_ALLOC;
3052 if (hdr->p_flags & PF_X)
3053 newsect->flags |= SEC_CODE;
3054 }
3055 if (!(hdr->p_flags & PF_W))
3056 newsect->flags |= SEC_READONLY;
3057 }
3058
b34976b6 3059 return TRUE;
252b5132
RH
3060}
3061
864619bb
KS
3062static bfd_boolean
3063_bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3064{
3065 /* The return value is ignored. Build-ids are considered optional. */
3066 if (templ->xvec->flavour == bfd_target_elf_flavour)
3067 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3068 (templ, offset);
3069 return FALSE;
3070}
3071
b34976b6 3072bfd_boolean
91d6fa6a 3073bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
20cfcaae 3074{
9c5bfbb7 3075 const struct elf_backend_data *bed;
20cfcaae
NC
3076
3077 switch (hdr->p_type)
3078 {
3079 case PT_NULL:
91d6fa6a 3080 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
20cfcaae
NC
3081
3082 case PT_LOAD:
864619bb
KS
3083 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
3084 return FALSE;
3085 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3086 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
3087 return TRUE;
20cfcaae
NC
3088
3089 case PT_DYNAMIC:
91d6fa6a 3090 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
20cfcaae
NC
3091
3092 case PT_INTERP:
91d6fa6a 3093 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
20cfcaae
NC
3094
3095 case PT_NOTE:
91d6fa6a 3096 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
b34976b6 3097 return FALSE;
276da9b3
L
3098 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3099 hdr->p_align))
b34976b6
AM
3100 return FALSE;
3101 return TRUE;
20cfcaae
NC
3102
3103 case PT_SHLIB:
91d6fa6a 3104 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
20cfcaae
NC
3105
3106 case PT_PHDR:
91d6fa6a 3107 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
20cfcaae 3108
811072d8 3109 case PT_GNU_EH_FRAME:
91d6fa6a 3110 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
811072d8
RM
3111 "eh_frame_hdr");
3112
2b05f1b7 3113 case PT_GNU_STACK:
91d6fa6a 3114 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
9ee5e499 3115
8c37241b 3116 case PT_GNU_RELRO:
91d6fa6a 3117 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
8c37241b 3118
20cfcaae 3119 default:
8c1acd09 3120 /* Check for any processor-specific program segment types. */
20cfcaae 3121 bed = get_elf_backend_data (abfd);
91d6fa6a 3122 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
20cfcaae
NC
3123 }
3124}
3125
d4730f92
BS
3126/* Return the REL_HDR for SEC, assuming there is only a single one, either
3127 REL or RELA. */
3128
3129Elf_Internal_Shdr *
3130_bfd_elf_single_rel_hdr (asection *sec)
3131{
3132 if (elf_section_data (sec)->rel.hdr)
3133 {
3134 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3135 return elf_section_data (sec)->rel.hdr;
3136 }
3137 else
3138 return elf_section_data (sec)->rela.hdr;
3139}
3140
3e19fb8f
L
3141static bfd_boolean
3142_bfd_elf_set_reloc_sh_name (bfd *abfd,
3143 Elf_Internal_Shdr *rel_hdr,
3144 const char *sec_name,
3145 bfd_boolean use_rela_p)
3146{
3147 char *name = (char *) bfd_alloc (abfd,
3148 sizeof ".rela" + strlen (sec_name));
3149 if (name == NULL)
3150 return FALSE;
3151
3152 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3153 rel_hdr->sh_name =
3154 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3155 FALSE);
3156 if (rel_hdr->sh_name == (unsigned int) -1)
3157 return FALSE;
3158
3159 return TRUE;
3160}
3161
d4730f92
BS
3162/* Allocate and initialize a section-header for a new reloc section,
3163 containing relocations against ASECT. It is stored in RELDATA. If
3164 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3165 relocations. */
23bc299b 3166
5d13b3b3 3167static bfd_boolean
217aa764 3168_bfd_elf_init_reloc_shdr (bfd *abfd,
d4730f92 3169 struct bfd_elf_section_reloc_data *reldata,
f6fe1ccd 3170 const char *sec_name,
3e19fb8f
L
3171 bfd_boolean use_rela_p,
3172 bfd_boolean delay_st_name_p)
23bc299b 3173{
d4730f92 3174 Elf_Internal_Shdr *rel_hdr;
9c5bfbb7 3175 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3176
d4730f92 3177 BFD_ASSERT (reldata->hdr == NULL);
ef53be89 3178 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
d4730f92 3179 reldata->hdr = rel_hdr;
23bc299b 3180
3e19fb8f
L
3181 if (delay_st_name_p)
3182 rel_hdr->sh_name = (unsigned int) -1;
3183 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3184 use_rela_p))
b34976b6 3185 return FALSE;
23bc299b
MM
3186 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3187 rel_hdr->sh_entsize = (use_rela_p
3188 ? bed->s->sizeof_rela
3189 : bed->s->sizeof_rel);
72de5009 3190 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
28e07a05 3191 rel_hdr->sh_flags = 0;
23bc299b
MM
3192 rel_hdr->sh_addr = 0;
3193 rel_hdr->sh_size = 0;
3194 rel_hdr->sh_offset = 0;
3195
b34976b6 3196 return TRUE;
23bc299b
MM
3197}
3198
94be91de
JB
3199/* Return the default section type based on the passed in section flags. */
3200
3201int
3202bfd_elf_get_default_section_type (flagword flags)
3203{
0e41bebb 3204 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
2e76e85a 3205 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
94be91de
JB
3206 return SHT_NOBITS;
3207 return SHT_PROGBITS;
3208}
3209
d4730f92
BS
3210struct fake_section_arg
3211{
3212 struct bfd_link_info *link_info;
3213 bfd_boolean failed;
3214};
3215
252b5132
RH
3216/* Set up an ELF internal section header for a section. */
3217
252b5132 3218static void
d4730f92 3219elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
252b5132 3220{
d4730f92 3221 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
9c5bfbb7 3222 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 3223 struct bfd_elf_section_data *esd = elf_section_data (asect);
252b5132 3224 Elf_Internal_Shdr *this_hdr;
0414f35b 3225 unsigned int sh_type;
0ce398f1 3226 const char *name = asect->name;
3e19fb8f 3227 bfd_boolean delay_st_name_p = FALSE;
252b5132 3228
d4730f92 3229 if (arg->failed)
252b5132
RH
3230 {
3231 /* We already failed; just get out of the bfd_map_over_sections
08a40648 3232 loop. */
252b5132
RH
3233 return;
3234 }
3235
d4730f92 3236 this_hdr = &esd->this_hdr;
252b5132 3237
f6fe1ccd 3238 if (arg->link_info)
0ce398f1 3239 {
f6fe1ccd
L
3240 /* ld: compress DWARF debug sections with names: .debug_*. */
3241 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3242 && (asect->flags & SEC_DEBUGGING)
3243 && name[1] == 'd'
3244 && name[6] == '_')
3245 {
3246 /* Set SEC_ELF_COMPRESS to indicate this section should be
3247 compressed. */
3248 asect->flags |= SEC_ELF_COMPRESS;
0ce398f1 3249
dd905818 3250 /* If this section will be compressed, delay adding section
3e19fb8f
L
3251 name to section name section after it is compressed in
3252 _bfd_elf_assign_file_positions_for_non_load. */
3253 delay_st_name_p = TRUE;
f6fe1ccd
L
3254 }
3255 }
3256 else if ((asect->flags & SEC_ELF_RENAME))
3257 {
3258 /* objcopy: rename output DWARF debug section. */
3259 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3260 {
3261 /* When we decompress or compress with SHF_COMPRESSED,
3262 convert section name from .zdebug_* to .debug_* if
3263 needed. */
3264 if (name[1] == 'z')
3265 {
3266 char *new_name = convert_zdebug_to_debug (abfd, name);
3267 if (new_name == NULL)
3268 {
3269 arg->failed = TRUE;
3270 return;
3271 }
3272 name = new_name;
3273 }
3274 }
3275 else if (asect->compress_status == COMPRESS_SECTION_DONE)
0ce398f1 3276 {
f6fe1ccd
L
3277 /* PR binutils/18087: Compression does not always make a
3278 section smaller. So only rename the section when
3279 compression has actually taken place. If input section
3280 name is .zdebug_*, we should never compress it again. */
3281 char *new_name = convert_debug_to_zdebug (abfd, name);
0ce398f1
L
3282 if (new_name == NULL)
3283 {
3284 arg->failed = TRUE;
3285 return;
3286 }
f6fe1ccd
L
3287 BFD_ASSERT (name[1] != 'z');
3288 name = new_name;
0ce398f1
L
3289 }
3290 }
3291
3e19fb8f
L
3292 if (delay_st_name_p)
3293 this_hdr->sh_name = (unsigned int) -1;
3294 else
252b5132 3295 {
3e19fb8f
L
3296 this_hdr->sh_name
3297 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3298 name, FALSE);
3299 if (this_hdr->sh_name == (unsigned int) -1)
3300 {
3301 arg->failed = TRUE;
3302 return;
3303 }
252b5132
RH
3304 }
3305
a4d8e49b 3306 /* Don't clear sh_flags. Assembler may set additional bits. */
252b5132
RH
3307
3308 if ((asect->flags & SEC_ALLOC) != 0
3309 || asect->user_set_vma)
3310 this_hdr->sh_addr = asect->vma;
3311 else
3312 this_hdr->sh_addr = 0;
3313
3314 this_hdr->sh_offset = 0;
eea6121a 3315 this_hdr->sh_size = asect->size;
252b5132 3316 this_hdr->sh_link = 0;
c86934ce
NC
3317 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3318 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3319 {
4eca0228 3320 _bfd_error_handler
695344c0 3321 /* xgettext:c-format */
9793eb77 3322 (_("%pB: error: alignment power %d of section `%pA' is too big"),
c08bb8dd 3323 abfd, asect->alignment_power, asect);
c86934ce
NC
3324 arg->failed = TRUE;
3325 return;
3326 }
72de5009 3327 this_hdr->sh_addralign = (bfd_vma) 1 << asect->alignment_power;
252b5132
RH
3328 /* The sh_entsize and sh_info fields may have been set already by
3329 copy_private_section_data. */
3330
3331 this_hdr->bfd_section = asect;
3332 this_hdr->contents = NULL;
3333
3cddba1e
L
3334 /* If the section type is unspecified, we set it based on
3335 asect->flags. */
98ece1b3
AM
3336 if ((asect->flags & SEC_GROUP) != 0)
3337 sh_type = SHT_GROUP;
98ece1b3 3338 else
94be91de 3339 sh_type = bfd_elf_get_default_section_type (asect->flags);
98ece1b3 3340
3cddba1e 3341 if (this_hdr->sh_type == SHT_NULL)
98ece1b3
AM
3342 this_hdr->sh_type = sh_type;
3343 else if (this_hdr->sh_type == SHT_NOBITS
3344 && sh_type == SHT_PROGBITS
3345 && (asect->flags & SEC_ALLOC) != 0)
3cddba1e 3346 {
98ece1b3
AM
3347 /* Warn if we are changing a NOBITS section to PROGBITS, but
3348 allow the link to proceed. This can happen when users link
3349 non-bss input sections to bss output sections, or emit data
3350 to a bss output section via a linker script. */
4eca0228 3351 _bfd_error_handler
871b3ab2 3352 (_("warning: section `%pA' type changed to PROGBITS"), asect);
98ece1b3 3353 this_hdr->sh_type = sh_type;
3cddba1e
L
3354 }
3355
2f89ff8d 3356 switch (this_hdr->sh_type)
252b5132 3357 {
2f89ff8d 3358 default:
2f89ff8d
L
3359 break;
3360
3361 case SHT_STRTAB:
2f89ff8d
L
3362 case SHT_NOTE:
3363 case SHT_NOBITS:
3364 case SHT_PROGBITS:
3365 break;
606851fb
AM
3366
3367 case SHT_INIT_ARRAY:
3368 case SHT_FINI_ARRAY:
3369 case SHT_PREINIT_ARRAY:
3370 this_hdr->sh_entsize = bed->s->arch_size / 8;
3371 break;
2f89ff8d
L
3372
3373 case SHT_HASH:
c7ac6ff8 3374 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2f89ff8d 3375 break;
5de3bf90 3376
2f89ff8d 3377 case SHT_DYNSYM:
252b5132 3378 this_hdr->sh_entsize = bed->s->sizeof_sym;
2f89ff8d
L
3379 break;
3380
3381 case SHT_DYNAMIC:
252b5132 3382 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2f89ff8d
L
3383 break;
3384
3385 case SHT_RELA:
3386 if (get_elf_backend_data (abfd)->may_use_rela_p)
3387 this_hdr->sh_entsize = bed->s->sizeof_rela;
3388 break;
3389
3390 case SHT_REL:
3391 if (get_elf_backend_data (abfd)->may_use_rel_p)
3392 this_hdr->sh_entsize = bed->s->sizeof_rel;
3393 break;
3394
3395 case SHT_GNU_versym:
252b5132 3396 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2f89ff8d
L
3397 break;
3398
3399 case SHT_GNU_verdef:
252b5132
RH
3400 this_hdr->sh_entsize = 0;
3401 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3402 cverdefs. The linker will set cverdefs, but sh_info will be
3403 zero. */
252b5132
RH
3404 if (this_hdr->sh_info == 0)
3405 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3406 else
3407 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3408 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2f89ff8d
L
3409 break;
3410
3411 case SHT_GNU_verneed:
252b5132
RH
3412 this_hdr->sh_entsize = 0;
3413 /* objcopy or strip will copy over sh_info, but may not set
08a40648
AM
3414 cverrefs. The linker will set cverrefs, but sh_info will be
3415 zero. */
252b5132
RH
3416 if (this_hdr->sh_info == 0)
3417 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3418 else
3419 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3420 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2f89ff8d
L
3421 break;
3422
3423 case SHT_GROUP:
1783205a 3424 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
2f89ff8d 3425 break;
fdc90cb4
JJ
3426
3427 case SHT_GNU_HASH:
3428 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3429 break;
dbb410c3 3430 }
252b5132
RH
3431
3432 if ((asect->flags & SEC_ALLOC) != 0)
3433 this_hdr->sh_flags |= SHF_ALLOC;
3434 if ((asect->flags & SEC_READONLY) == 0)
3435 this_hdr->sh_flags |= SHF_WRITE;
3436 if ((asect->flags & SEC_CODE) != 0)
3437 this_hdr->sh_flags |= SHF_EXECINSTR;
f5fa8ca2
JJ
3438 if ((asect->flags & SEC_MERGE) != 0)
3439 {
3440 this_hdr->sh_flags |= SHF_MERGE;
3441 this_hdr->sh_entsize = asect->entsize;
f5fa8ca2 3442 }
84865015
NC
3443 if ((asect->flags & SEC_STRINGS) != 0)
3444 this_hdr->sh_flags |= SHF_STRINGS;
1126897b 3445 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
dbb410c3 3446 this_hdr->sh_flags |= SHF_GROUP;
13ae64f3 3447 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
704afa60
JJ
3448 {
3449 this_hdr->sh_flags |= SHF_TLS;
3a800eb9
AM
3450 if (asect->size == 0
3451 && (asect->flags & SEC_HAS_CONTENTS) == 0)
704afa60 3452 {
3a800eb9 3453 struct bfd_link_order *o = asect->map_tail.link_order;
b34976b6 3454
704afa60 3455 this_hdr->sh_size = 0;
3a800eb9
AM
3456 if (o != NULL)
3457 {
704afa60 3458 this_hdr->sh_size = o->offset + o->size;
3a800eb9
AM
3459 if (this_hdr->sh_size != 0)
3460 this_hdr->sh_type = SHT_NOBITS;
3461 }
704afa60
JJ
3462 }
3463 }
18ae9cc1
L
3464 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3465 this_hdr->sh_flags |= SHF_EXCLUDE;
252b5132 3466
d4730f92
BS
3467 /* If the section has relocs, set up a section header for the
3468 SHT_REL[A] section. If two relocation sections are required for
3469 this section, it is up to the processor-specific back-end to
3470 create the other. */
3471 if ((asect->flags & SEC_RELOC) != 0)
3472 {
3473 /* When doing a relocatable link, create both REL and RELA sections if
3474 needed. */
3475 if (arg->link_info
3476 /* Do the normal setup if we wouldn't create any sections here. */
3477 && esd->rel.count + esd->rela.count > 0
0e1862bb
L
3478 && (bfd_link_relocatable (arg->link_info)
3479 || arg->link_info->emitrelocations))
d4730f92
BS
3480 {
3481 if (esd->rel.count && esd->rel.hdr == NULL
28e07a05 3482 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
db4677b8 3483 FALSE, delay_st_name_p))
d4730f92
BS
3484 {
3485 arg->failed = TRUE;
3486 return;
3487 }
3488 if (esd->rela.count && esd->rela.hdr == NULL
28e07a05 3489 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
db4677b8 3490 TRUE, delay_st_name_p))
d4730f92
BS
3491 {
3492 arg->failed = TRUE;
3493 return;
3494 }
3495 }
3496 else if (!_bfd_elf_init_reloc_shdr (abfd,
3497 (asect->use_rela_p
3498 ? &esd->rela : &esd->rel),
f6fe1ccd 3499 name,
3e19fb8f
L
3500 asect->use_rela_p,
3501 delay_st_name_p))
db4677b8 3502 {
d4730f92 3503 arg->failed = TRUE;
db4677b8
AM
3504 return;
3505 }
d4730f92
BS
3506 }
3507
252b5132 3508 /* Check for processor-specific section types. */
0414f35b 3509 sh_type = this_hdr->sh_type;
e1fddb6b
AO
3510 if (bed->elf_backend_fake_sections
3511 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
db4677b8
AM
3512 {
3513 arg->failed = TRUE;
3514 return;
3515 }
252b5132 3516
42bb2e33 3517 if (sh_type == SHT_NOBITS && asect->size != 0)
0414f35b
AM
3518 {
3519 /* Don't change the header type from NOBITS if we are being
42bb2e33 3520 called for objcopy --only-keep-debug. */
0414f35b
AM
3521 this_hdr->sh_type = sh_type;
3522 }
252b5132
RH
3523}
3524
bcacc0f5
AM
3525/* Fill in the contents of a SHT_GROUP section. Called from
3526 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3527 when ELF targets use the generic linker, ld. Called for ld -r
3528 from bfd_elf_final_link. */
dbb410c3 3529
1126897b 3530void
217aa764 3531bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
dbb410c3 3532{
a50b1753 3533 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
9dce4196 3534 asection *elt, *first;
dbb410c3 3535 unsigned char *loc;
b34976b6 3536 bfd_boolean gas;
dbb410c3 3537
7e4111ad
L
3538 /* Ignore linker created group section. See elfNN_ia64_object_p in
3539 elfxx-ia64.c. */
ce5aecf8
AM
3540 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3541 || sec->size == 0
dbb410c3
AM
3542 || *failedptr)
3543 return;
3544
bcacc0f5
AM
3545 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3546 {
3547 unsigned long symindx = 0;
3548
3549 /* elf_group_id will have been set up by objcopy and the
3550 generic linker. */
3551 if (elf_group_id (sec) != NULL)
3552 symindx = elf_group_id (sec)->udata.i;
1126897b 3553
bcacc0f5
AM
3554 if (symindx == 0)
3555 {
3556 /* If called from the assembler, swap_out_syms will have set up
3557 elf_section_syms. */
3558 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3559 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3560 }
3561 elf_section_data (sec)->this_hdr.sh_info = symindx;
3562 }
3563 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
1126897b 3564 {
bcacc0f5
AM
3565 /* The ELF backend linker sets sh_info to -2 when the group
3566 signature symbol is global, and thus the index can't be
3567 set until all local symbols are output. */
53720c49
AM
3568 asection *igroup;
3569 struct bfd_elf_section_data *sec_data;
3570 unsigned long symndx;
3571 unsigned long extsymoff;
bcacc0f5
AM
3572 struct elf_link_hash_entry *h;
3573
53720c49
AM
3574 /* The point of this little dance to the first SHF_GROUP section
3575 then back to the SHT_GROUP section is that this gets us to
3576 the SHT_GROUP in the input object. */
3577 igroup = elf_sec_group (elf_next_in_group (sec));
3578 sec_data = elf_section_data (igroup);
3579 symndx = sec_data->this_hdr.sh_info;
3580 extsymoff = 0;
bcacc0f5
AM
3581 if (!elf_bad_symtab (igroup->owner))
3582 {
3583 Elf_Internal_Shdr *symtab_hdr;
3584
3585 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3586 extsymoff = symtab_hdr->sh_info;
3587 }
3588 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3589 while (h->root.type == bfd_link_hash_indirect
3590 || h->root.type == bfd_link_hash_warning)
3591 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3592
3593 elf_section_data (sec)->this_hdr.sh_info = h->indx;
1126897b 3594 }
dbb410c3 3595
1126897b 3596 /* The contents won't be allocated for "ld -r" or objcopy. */
b34976b6 3597 gas = TRUE;
dbb410c3
AM
3598 if (sec->contents == NULL)
3599 {
b34976b6 3600 gas = FALSE;
a50b1753 3601 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
9dce4196
AM
3602
3603 /* Arrange for the section to be written out. */
3604 elf_section_data (sec)->this_hdr.contents = sec->contents;
dbb410c3
AM
3605 if (sec->contents == NULL)
3606 {
b34976b6 3607 *failedptr = TRUE;
dbb410c3
AM
3608 return;
3609 }
3610 }
3611
eea6121a 3612 loc = sec->contents + sec->size;
dbb410c3 3613
9dce4196
AM
3614 /* Get the pointer to the first section in the group that gas
3615 squirreled away here. objcopy arranges for this to be set to the
3616 start of the input section group. */
3617 first = elt = elf_next_in_group (sec);
dbb410c3
AM
3618
3619 /* First element is a flag word. Rest of section is elf section
3620 indices for all the sections of the group. Write them backwards
3621 just to keep the group in the same order as given in .section
3622 directives, not that it matters. */
3623 while (elt != NULL)
3624 {
9dce4196 3625 asection *s;
9dce4196 3626
9dce4196 3627 s = elt;
415f38a6
AM
3628 if (!gas)
3629 s = s->output_section;
3630 if (s != NULL
3631 && !bfd_is_abs_section (s))
01e1a5bc 3632 {
db4677b8 3633 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
28e07a05
AM
3634 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3635
3636 if (elf_sec->rel.hdr != NULL
3637 && (gas
3638 || (input_elf_sec->rel.hdr != NULL
3639 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3640 {
28e07a05 3641 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3642 loc -= 4;
3643 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3644 }
28e07a05
AM
3645 if (elf_sec->rela.hdr != NULL
3646 && (gas
3647 || (input_elf_sec->rela.hdr != NULL
3648 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
db4677b8 3649 {
28e07a05 3650 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
db4677b8
AM
3651 loc -= 4;
3652 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3653 }
01e1a5bc 3654 loc -= 4;
db4677b8 3655 H_PUT_32 (abfd, elf_sec->this_idx, loc);
01e1a5bc 3656 }
945906ff 3657 elt = elf_next_in_group (elt);
9dce4196
AM
3658 if (elt == first)
3659 break;
dbb410c3
AM
3660 }
3661
7bdf4127
AB
3662 loc -= 4;
3663 BFD_ASSERT (loc == sec->contents);
dbb410c3 3664
9dce4196 3665 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
dbb410c3
AM
3666}
3667
bce964aa
AM
3668/* Given NAME, the name of a relocation section stripped of its
3669 .rel/.rela prefix, return the section in ABFD to which the
3670 relocations apply. */
bd53a53a
L
3671
3672asection *
bce964aa
AM
3673_bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3674{
3675 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3676 section likely apply to .got.plt or .got section. */
3677 if (get_elf_backend_data (abfd)->want_got_plt
3678 && strcmp (name, ".plt") == 0)
3679 {
3680 asection *sec;
3681
3682 name = ".got.plt";
3683 sec = bfd_get_section_by_name (abfd, name);
3684 if (sec != NULL)
3685 return sec;
3686 name = ".got";
3687 }
3688
3689 return bfd_get_section_by_name (abfd, name);
3690}
3691
3692/* Return the section to which RELOC_SEC applies. */
3693
3694static asection *
3695elf_get_reloc_section (asection *reloc_sec)
bd53a53a
L
3696{
3697 const char *name;
3698 unsigned int type;
3699 bfd *abfd;
bce964aa 3700 const struct elf_backend_data *bed;
bd53a53a
L
3701
3702 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3703 if (type != SHT_REL && type != SHT_RELA)
3704 return NULL;
3705
3706 /* We look up the section the relocs apply to by name. */
3707 name = reloc_sec->name;
bce964aa
AM
3708 if (strncmp (name, ".rel", 4) != 0)
3709 return NULL;
3710 name += 4;
3711 if (type == SHT_RELA && *name++ != 'a')
3712 return NULL;
bd53a53a 3713
bd53a53a 3714 abfd = reloc_sec->owner;
bce964aa
AM
3715 bed = get_elf_backend_data (abfd);
3716 return bed->get_reloc_section (abfd, name);
bd53a53a
L
3717}
3718
252b5132
RH
3719/* Assign all ELF section numbers. The dummy first section is handled here
3720 too. The link/info pointers for the standard section types are filled
3721 in here too, while we're at it. */
3722
b34976b6 3723static bfd_boolean
da9f89d4 3724assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
252b5132
RH
3725{
3726 struct elf_obj_tdata *t = elf_tdata (abfd);
3727 asection *sec;
3e19fb8f 3728 unsigned int section_number;
252b5132 3729 Elf_Internal_Shdr **i_shdrp;
47cc2cf5 3730 struct bfd_elf_section_data *d;
3516e984 3731 bfd_boolean need_symtab;
252b5132
RH
3732
3733 section_number = 1;
3734
2b0f7ef9
JJ
3735 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3736
da9f89d4 3737 /* SHT_GROUP sections are in relocatable files only. */
7bdf4127 3738 if (link_info == NULL || !link_info->resolve_section_groups)
252b5132 3739 {
ef53be89 3740 size_t reloc_count = 0;
14f2c699 3741
da9f89d4 3742 /* Put SHT_GROUP sections first. */
04dd1667 3743 for (sec = abfd->sections; sec != NULL; sec = sec->next)
47cc2cf5 3744 {
5daa8fe7 3745 d = elf_section_data (sec);
da9f89d4
L
3746
3747 if (d->this_hdr.sh_type == SHT_GROUP)
08a40648 3748 {
5daa8fe7 3749 if (sec->flags & SEC_LINKER_CREATED)
da9f89d4
L
3750 {
3751 /* Remove the linker created SHT_GROUP sections. */
5daa8fe7 3752 bfd_section_list_remove (abfd, sec);
da9f89d4 3753 abfd->section_count--;
da9f89d4 3754 }
08a40648 3755 else
4fbb74a6 3756 d->this_idx = section_number++;
da9f89d4 3757 }
14f2c699
L
3758
3759 /* Count relocations. */
3760 reloc_count += sec->reloc_count;
47cc2cf5 3761 }
14f2c699
L
3762
3763 /* Clear HAS_RELOC if there are no relocations. */
3764 if (reloc_count == 0)
3765 abfd->flags &= ~HAS_RELOC;
47cc2cf5
PB
3766 }
3767
3768 for (sec = abfd->sections; sec; sec = sec->next)
3769 {
3770 d = elf_section_data (sec);
3771
3772 if (d->this_hdr.sh_type != SHT_GROUP)
4fbb74a6 3773 d->this_idx = section_number++;
3e19fb8f
L
3774 if (d->this_hdr.sh_name != (unsigned int) -1)
3775 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
d4730f92 3776 if (d->rel.hdr)
2b0f7ef9 3777 {
d4730f92 3778 d->rel.idx = section_number++;
3e19fb8f
L
3779 if (d->rel.hdr->sh_name != (unsigned int) -1)
3780 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
2b0f7ef9 3781 }
d4730f92
BS
3782 else
3783 d->rel.idx = 0;
23bc299b 3784
d4730f92 3785 if (d->rela.hdr)
2b0f7ef9 3786 {
d4730f92 3787 d->rela.idx = section_number++;
3e19fb8f
L
3788 if (d->rela.hdr->sh_name != (unsigned int) -1)
3789 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
2b0f7ef9 3790 }
23bc299b 3791 else
d4730f92 3792 d->rela.idx = 0;
252b5132
RH
3793 }
3794
3516e984
L
3795 need_symtab = (bfd_get_symcount (abfd) > 0
3796 || (link_info == NULL
3797 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3798 == HAS_RELOC)));
3799 if (need_symtab)
252b5132 3800 {
12bd6957 3801 elf_onesymtab (abfd) = section_number++;
2b0f7ef9 3802 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
4fbb74a6 3803 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
9ad5cbcf 3804 {
7a6e0d89 3805 elf_section_list *entry;
6a40cf0c
NC
3806
3807 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3808
7a6e0d89 3809 entry = bfd_zalloc (abfd, sizeof (*entry));
6a40cf0c
NC
3810 entry->ndx = section_number++;
3811 elf_symtab_shndx_list (abfd) = entry;
3812 entry->hdr.sh_name
9ad5cbcf 3813 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
b34976b6 3814 ".symtab_shndx", FALSE);
6a40cf0c 3815 if (entry->hdr.sh_name == (unsigned int) -1)
b34976b6 3816 return FALSE;
9ad5cbcf 3817 }
12bd6957 3818 elf_strtab_sec (abfd) = section_number++;
2b0f7ef9 3819 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
252b5132
RH
3820 }
3821
dd905818
NC
3822 elf_shstrtab_sec (abfd) = section_number++;
3823 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3824 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3825
1c52a645
L
3826 if (section_number >= SHN_LORESERVE)
3827 {
695344c0 3828 /* xgettext:c-format */
871b3ab2 3829 _bfd_error_handler (_("%pB: too many sections: %u"),
1c52a645
L
3830 abfd, section_number);
3831 return FALSE;
3832 }
3833
9ad5cbcf 3834 elf_numsections (abfd) = section_number;
252b5132
RH
3835 elf_elfheader (abfd)->e_shnum = section_number;
3836
3837 /* Set up the list of section header pointers, in agreement with the
3838 indices. */
a50b1753 3839 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc2 (abfd, section_number,
07d6d2b8 3840 sizeof (Elf_Internal_Shdr *));
252b5132 3841 if (i_shdrp == NULL)
b34976b6 3842 return FALSE;
252b5132 3843
a50b1753 3844 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
07d6d2b8 3845 sizeof (Elf_Internal_Shdr));
252b5132
RH
3846 if (i_shdrp[0] == NULL)
3847 {
3848 bfd_release (abfd, i_shdrp);
b34976b6 3849 return FALSE;
252b5132 3850 }
252b5132
RH
3851
3852 elf_elfsections (abfd) = i_shdrp;
3853
12bd6957 3854 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3516e984 3855 if (need_symtab)
252b5132 3856 {
12bd6957 3857 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
4fbb74a6 3858 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
9ad5cbcf 3859 {
6a40cf0c
NC
3860 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3861 BFD_ASSERT (entry != NULL);
3862 i_shdrp[entry->ndx] = & entry->hdr;
3863 entry->hdr.sh_link = elf_onesymtab (abfd);
9ad5cbcf 3864 }
12bd6957
AM
3865 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3866 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
252b5132 3867 }
38ce5b11 3868
252b5132
RH
3869 for (sec = abfd->sections; sec; sec = sec->next)
3870 {
252b5132 3871 asection *s;
252b5132 3872
91d6fa6a
NC
3873 d = elf_section_data (sec);
3874
252b5132 3875 i_shdrp[d->this_idx] = &d->this_hdr;
d4730f92
BS
3876 if (d->rel.idx != 0)
3877 i_shdrp[d->rel.idx] = d->rel.hdr;
3878 if (d->rela.idx != 0)
3879 i_shdrp[d->rela.idx] = d->rela.hdr;
252b5132
RH
3880
3881 /* Fill in the sh_link and sh_info fields while we're at it. */
3882
3883 /* sh_link of a reloc section is the section index of the symbol
3884 table. sh_info is the section index of the section to which
3885 the relocation entries apply. */
d4730f92 3886 if (d->rel.idx != 0)
252b5132 3887 {
12bd6957 3888 d->rel.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3889 d->rel.hdr->sh_info = d->this_idx;
9ef5d938 3890 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
252b5132 3891 }
d4730f92 3892 if (d->rela.idx != 0)
23bc299b 3893 {
12bd6957 3894 d->rela.hdr->sh_link = elf_onesymtab (abfd);
d4730f92 3895 d->rela.hdr->sh_info = d->this_idx;
9ef5d938 3896 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
23bc299b 3897 }
252b5132 3898
38ce5b11
L
3899 /* We need to set up sh_link for SHF_LINK_ORDER. */
3900 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3901 {
3902 s = elf_linked_to_section (sec);
3903 if (s)
38ce5b11 3904 {
f2876037 3905 /* elf_linked_to_section points to the input section. */
ccd2ec6a 3906 if (link_info != NULL)
38ce5b11 3907 {
f2876037 3908 /* Check discarded linkonce section. */
dbaa2011 3909 if (discarded_section (s))
38ce5b11 3910 {
ccd2ec6a 3911 asection *kept;
4eca0228 3912 _bfd_error_handler
695344c0 3913 /* xgettext:c-format */
871b3ab2
AM
3914 (_("%pB: sh_link of section `%pA' points to"
3915 " discarded section `%pA' of `%pB'"),
ccd2ec6a
L
3916 abfd, d->this_hdr.bfd_section,
3917 s, s->owner);
3918 /* Point to the kept section if it has the same
3919 size as the discarded one. */
c0f00686 3920 kept = _bfd_elf_check_kept_section (s, link_info);
ccd2ec6a 3921 if (kept == NULL)
185d09ad 3922 {
ccd2ec6a
L
3923 bfd_set_error (bfd_error_bad_value);
3924 return FALSE;
185d09ad 3925 }
ccd2ec6a 3926 s = kept;
38ce5b11 3927 }
e424ecc8 3928
ccd2ec6a
L
3929 s = s->output_section;
3930 BFD_ASSERT (s != NULL);
38ce5b11 3931 }
f2876037
L
3932 else
3933 {
3934 /* Handle objcopy. */
3935 if (s->output_section == NULL)
3936 {
4eca0228 3937 _bfd_error_handler
695344c0 3938 /* xgettext:c-format */
871b3ab2
AM
3939 (_("%pB: sh_link of section `%pA' points to"
3940 " removed section `%pA' of `%pB'"),
f2876037
L
3941 abfd, d->this_hdr.bfd_section, s, s->owner);
3942 bfd_set_error (bfd_error_bad_value);
3943 return FALSE;
3944 }
3945 s = s->output_section;
3946 }
ccd2ec6a
L
3947 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3948 }
3949 else
3950 {
3951 /* PR 290:
3952 The Intel C compiler generates SHT_IA_64_UNWIND with
3953 SHF_LINK_ORDER. But it doesn't set the sh_link or
3954 sh_info fields. Hence we could get the situation
08a40648 3955 where s is NULL. */
ccd2ec6a
L
3956 const struct elf_backend_data *bed
3957 = get_elf_backend_data (abfd);
3958 if (bed->link_order_error_handler)
3959 bed->link_order_error_handler
695344c0 3960 /* xgettext:c-format */
871b3ab2 3961 (_("%pB: warning: sh_link not set for section `%pA'"),
ccd2ec6a 3962 abfd, sec);
38ce5b11
L
3963 }
3964 }
3965
252b5132
RH
3966 switch (d->this_hdr.sh_type)
3967 {
3968 case SHT_REL:
3969 case SHT_RELA:
3970 /* A reloc section which we are treating as a normal BFD
3971 section. sh_link is the section index of the symbol
3972 table. sh_info is the section index of the section to
3973 which the relocation entries apply. We assume that an
3974 allocated reloc section uses the dynamic symbol table.
3975 FIXME: How can we be sure? */
3976 s = bfd_get_section_by_name (abfd, ".dynsym");
3977 if (s != NULL)
3978 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3979
bce964aa 3980 s = elf_get_reloc_section (sec);
252b5132 3981 if (s != NULL)
9ef5d938
L
3982 {
3983 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3984 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3985 }
252b5132
RH
3986 break;
3987
3988 case SHT_STRTAB:
3989 /* We assume that a section named .stab*str is a stabs
3990 string section. We look for a section with the same name
3991 but without the trailing ``str'', and set its sh_link
3992 field to point to this section. */
0112cd26 3993 if (CONST_STRNEQ (sec->name, ".stab")
252b5132
RH
3994 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3995 {
3996 size_t len;
3997 char *alc;
3998
3999 len = strlen (sec->name);
a50b1753 4000 alc = (char *) bfd_malloc (len - 2);
252b5132 4001 if (alc == NULL)
b34976b6 4002 return FALSE;
d4c88bbb 4003 memcpy (alc, sec->name, len - 3);
252b5132
RH
4004 alc[len - 3] = '\0';
4005 s = bfd_get_section_by_name (abfd, alc);
4006 free (alc);
4007 if (s != NULL)
4008 {
4009 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
4010
4011 /* This is a .stab section. */
0594c12d
AM
4012 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
4013 elf_section_data (s)->this_hdr.sh_entsize
4014 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
252b5132
RH
4015 }
4016 }
4017 break;
4018
4019 case SHT_DYNAMIC:
4020 case SHT_DYNSYM:
4021 case SHT_GNU_verneed:
4022 case SHT_GNU_verdef:
4023 /* sh_link is the section header index of the string table
4024 used for the dynamic entries, or the symbol table, or the
4025 version strings. */
4026 s = bfd_get_section_by_name (abfd, ".dynstr");
4027 if (s != NULL)
4028 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4029 break;
4030
7f1204bb
JJ
4031 case SHT_GNU_LIBLIST:
4032 /* sh_link is the section header index of the prelink library
08a40648
AM
4033 list used for the dynamic entries, or the symbol table, or
4034 the version strings. */
7f1204bb
JJ
4035 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
4036 ? ".dynstr" : ".gnu.libstr");
4037 if (s != NULL)
4038 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4039 break;
4040
252b5132 4041 case SHT_HASH:
fdc90cb4 4042 case SHT_GNU_HASH:
252b5132
RH
4043 case SHT_GNU_versym:
4044 /* sh_link is the section header index of the symbol table
4045 this hash table or version table is for. */
4046 s = bfd_get_section_by_name (abfd, ".dynsym");
4047 if (s != NULL)
4048 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4049 break;
dbb410c3
AM
4050
4051 case SHT_GROUP:
12bd6957 4052 d->this_hdr.sh_link = elf_onesymtab (abfd);
252b5132
RH
4053 }
4054 }
4055
3e19fb8f
L
4056 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
4057 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
4058 debug section name from .debug_* to .zdebug_* if needed. */
4059
b34976b6 4060 return TRUE;
252b5132
RH
4061}
4062
5372391b 4063static bfd_boolean
217aa764 4064sym_is_global (bfd *abfd, asymbol *sym)
252b5132
RH
4065{
4066 /* If the backend has a special mapping, use it. */
9c5bfbb7 4067 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764
AM
4068 if (bed->elf_backend_sym_is_global)
4069 return (*bed->elf_backend_sym_is_global) (abfd, sym);
252b5132 4070
e47bf690 4071 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
e6f7f6d1
AM
4072 || bfd_is_und_section (bfd_asymbol_section (sym))
4073 || bfd_is_com_section (bfd_asymbol_section (sym)));
252b5132
RH
4074}
4075
76359541
TP
4076/* Filter global symbols of ABFD to include in the import library. All
4077 SYMCOUNT symbols of ABFD can be examined from their pointers in
4078 SYMS. Pointers of symbols to keep should be stored contiguously at
4079 the beginning of that array.
4080
4081 Returns the number of symbols to keep. */
4082
4083unsigned int
4084_bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4085 asymbol **syms, long symcount)
4086{
4087 long src_count, dst_count = 0;
4088
4089 for (src_count = 0; src_count < symcount; src_count++)
4090 {
4091 asymbol *sym = syms[src_count];
4092 char *name = (char *) bfd_asymbol_name (sym);
4093 struct bfd_link_hash_entry *h;
4094
4095 if (!sym_is_global (abfd, sym))
4096 continue;
4097
4098 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
5df1bc57
AM
4099 if (h == NULL)
4100 continue;
76359541
TP
4101 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4102 continue;
76359541
TP
4103 if (h->linker_def || h->ldscript_def)
4104 continue;
4105
4106 syms[dst_count++] = sym;
4107 }
4108
4109 syms[dst_count] = NULL;
4110
4111 return dst_count;
4112}
4113
5372391b 4114/* Don't output section symbols for sections that are not going to be
c6d8cab4 4115 output, that are duplicates or there is no BFD section. */
5372391b
AM
4116
4117static bfd_boolean
4118ignore_section_sym (bfd *abfd, asymbol *sym)
4119{
c6d8cab4
L
4120 elf_symbol_type *type_ptr;
4121
db0c309f
NC
4122 if (sym == NULL)
4123 return FALSE;
4124
c6d8cab4
L
4125 if ((sym->flags & BSF_SECTION_SYM) == 0)
4126 return FALSE;
4127
db0c309f
NC
4128 if (sym->section == NULL)
4129 return TRUE;
4130
c6d8cab4
L
4131 type_ptr = elf_symbol_from (abfd, sym);
4132 return ((type_ptr != NULL
4133 && type_ptr->internal_elf_sym.st_shndx != 0
4134 && bfd_is_abs_section (sym->section))
4135 || !(sym->section->owner == abfd
db0c309f
NC
4136 || (sym->section->output_section != NULL
4137 && sym->section->output_section->owner == abfd
2633a79c
AM
4138 && sym->section->output_offset == 0)
4139 || bfd_is_abs_section (sym->section)));
5372391b
AM
4140}
4141
2633a79c
AM
4142/* Map symbol from it's internal number to the external number, moving
4143 all local symbols to be at the head of the list. */
4144
b34976b6 4145static bfd_boolean
12bd6957 4146elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
252b5132 4147{
dc810e39 4148 unsigned int symcount = bfd_get_symcount (abfd);
252b5132
RH
4149 asymbol **syms = bfd_get_outsymbols (abfd);
4150 asymbol **sect_syms;
dc810e39
AM
4151 unsigned int num_locals = 0;
4152 unsigned int num_globals = 0;
4153 unsigned int num_locals2 = 0;
4154 unsigned int num_globals2 = 0;
7292b3ac 4155 unsigned int max_index = 0;
dc810e39 4156 unsigned int idx;
252b5132
RH
4157 asection *asect;
4158 asymbol **new_syms;
252b5132
RH
4159
4160#ifdef DEBUG
4161 fprintf (stderr, "elf_map_symbols\n");
4162 fflush (stderr);
4163#endif
4164
252b5132
RH
4165 for (asect = abfd->sections; asect; asect = asect->next)
4166 {
4167 if (max_index < asect->index)
4168 max_index = asect->index;
4169 }
4170
4171 max_index++;
a50b1753 4172 sect_syms = (asymbol **) bfd_zalloc2 (abfd, max_index, sizeof (asymbol *));
252b5132 4173 if (sect_syms == NULL)
b34976b6 4174 return FALSE;
252b5132 4175 elf_section_syms (abfd) = sect_syms;
4e89ac30 4176 elf_num_section_syms (abfd) = max_index;
252b5132 4177
079e9a2f
AM
4178 /* Init sect_syms entries for any section symbols we have already
4179 decided to output. */
252b5132
RH
4180 for (idx = 0; idx < symcount; idx++)
4181 {
dc810e39 4182 asymbol *sym = syms[idx];
c044fabd 4183
252b5132 4184 if ((sym->flags & BSF_SECTION_SYM) != 0
0f0a5e58 4185 && sym->value == 0
2633a79c
AM
4186 && !ignore_section_sym (abfd, sym)
4187 && !bfd_is_abs_section (sym->section))
252b5132 4188 {
5372391b 4189 asection *sec = sym->section;
252b5132 4190
5372391b
AM
4191 if (sec->owner != abfd)
4192 sec = sec->output_section;
252b5132 4193
5372391b 4194 sect_syms[sec->index] = syms[idx];
252b5132
RH
4195 }
4196 }
4197
252b5132
RH
4198 /* Classify all of the symbols. */
4199 for (idx = 0; idx < symcount; idx++)
4200 {
2633a79c 4201 if (sym_is_global (abfd, syms[idx]))
252b5132 4202 num_globals++;
2633a79c
AM
4203 else if (!ignore_section_sym (abfd, syms[idx]))
4204 num_locals++;
252b5132 4205 }
079e9a2f 4206
5372391b 4207 /* We will be adding a section symbol for each normal BFD section. Most
079e9a2f
AM
4208 sections will already have a section symbol in outsymbols, but
4209 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4210 at least in that case. */
252b5132
RH
4211 for (asect = abfd->sections; asect; asect = asect->next)
4212 {
079e9a2f 4213 if (sect_syms[asect->index] == NULL)
252b5132 4214 {
079e9a2f 4215 if (!sym_is_global (abfd, asect->symbol))
252b5132
RH
4216 num_locals++;
4217 else
4218 num_globals++;
252b5132
RH
4219 }
4220 }
4221
4222 /* Now sort the symbols so the local symbols are first. */
a50b1753 4223 new_syms = (asymbol **) bfd_alloc2 (abfd, num_locals + num_globals,
07d6d2b8 4224 sizeof (asymbol *));
dc810e39 4225
252b5132 4226 if (new_syms == NULL)
b34976b6 4227 return FALSE;
252b5132
RH
4228
4229 for (idx = 0; idx < symcount; idx++)
4230 {
4231 asymbol *sym = syms[idx];
dc810e39 4232 unsigned int i;
252b5132 4233
2633a79c
AM
4234 if (sym_is_global (abfd, sym))
4235 i = num_locals + num_globals2++;
4236 else if (!ignore_section_sym (abfd, sym))
252b5132
RH
4237 i = num_locals2++;
4238 else
2633a79c 4239 continue;
252b5132
RH
4240 new_syms[i] = sym;
4241 sym->udata.i = i + 1;
4242 }
4243 for (asect = abfd->sections; asect; asect = asect->next)
4244 {
079e9a2f 4245 if (sect_syms[asect->index] == NULL)
252b5132 4246 {
079e9a2f 4247 asymbol *sym = asect->symbol;
dc810e39 4248 unsigned int i;
252b5132 4249
079e9a2f 4250 sect_syms[asect->index] = sym;
252b5132
RH
4251 if (!sym_is_global (abfd, sym))
4252 i = num_locals2++;
4253 else
4254 i = num_locals + num_globals2++;
4255 new_syms[i] = sym;
4256 sym->udata.i = i + 1;
4257 }
4258 }
4259
4260 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4261
12bd6957 4262 *pnum_locals = num_locals;
b34976b6 4263 return TRUE;
252b5132
RH
4264}
4265
4266/* Align to the maximum file alignment that could be required for any
4267 ELF data structure. */
4268
268b6b39 4269static inline file_ptr
217aa764 4270align_file_position (file_ptr off, int align)
252b5132
RH
4271{
4272 return (off + align - 1) & ~(align - 1);
4273}
4274
4275/* Assign a file position to a section, optionally aligning to the
4276 required section alignment. */
4277
217aa764
AM
4278file_ptr
4279_bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4280 file_ptr offset,
4281 bfd_boolean align)
252b5132 4282{
72de5009
AM
4283 if (align && i_shdrp->sh_addralign > 1)
4284 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
252b5132
RH
4285 i_shdrp->sh_offset = offset;
4286 if (i_shdrp->bfd_section != NULL)
4287 i_shdrp->bfd_section->filepos = offset;
4288 if (i_shdrp->sh_type != SHT_NOBITS)
4289 offset += i_shdrp->sh_size;
4290 return offset;
4291}
4292
4293/* Compute the file positions we are going to put the sections at, and
4294 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4295 is not NULL, this is being called by the ELF backend linker. */
4296
b34976b6 4297bfd_boolean
217aa764
AM
4298_bfd_elf_compute_section_file_positions (bfd *abfd,
4299 struct bfd_link_info *link_info)
252b5132 4300{
9c5bfbb7 4301 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92 4302 struct fake_section_arg fsargs;
b34976b6 4303 bfd_boolean failed;
ef10c3ac 4304 struct elf_strtab_hash *strtab = NULL;
252b5132 4305 Elf_Internal_Shdr *shstrtab_hdr;
3516e984 4306 bfd_boolean need_symtab;
252b5132
RH
4307
4308 if (abfd->output_has_begun)
b34976b6 4309 return TRUE;
252b5132
RH
4310
4311 /* Do any elf backend specific processing first. */
4312 if (bed->elf_backend_begin_write_processing)
4313 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4314
4315 if (! prep_headers (abfd))
b34976b6 4316 return FALSE;
252b5132 4317
e6c51ed4 4318 /* Post process the headers if necessary. */
78245035 4319 (*bed->elf_backend_post_process_headers) (abfd, link_info);
e6c51ed4 4320
d4730f92
BS
4321 fsargs.failed = FALSE;
4322 fsargs.link_info = link_info;
4323 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4324 if (fsargs.failed)
b34976b6 4325 return FALSE;
252b5132 4326
da9f89d4 4327 if (!assign_section_numbers (abfd, link_info))
b34976b6 4328 return FALSE;
252b5132
RH
4329
4330 /* The backend linker builds symbol table information itself. */
3516e984
L
4331 need_symtab = (link_info == NULL
4332 && (bfd_get_symcount (abfd) > 0
4333 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4334 == HAS_RELOC)));
4335 if (need_symtab)
252b5132
RH
4336 {
4337 /* Non-zero if doing a relocatable link. */
4338 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4339
4340 if (! swap_out_syms (abfd, &strtab, relocatable_p))
b34976b6 4341 return FALSE;
252b5132
RH
4342 }
4343
d4730f92 4344 failed = FALSE;
1126897b 4345 if (link_info == NULL)
dbb410c3 4346 {
1126897b 4347 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
dbb410c3 4348 if (failed)
b34976b6 4349 return FALSE;
dbb410c3
AM
4350 }
4351
252b5132
RH
4352 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
4353 /* sh_name was set in prep_headers. */
4354 shstrtab_hdr->sh_type = SHT_STRTAB;
84865015 4355 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
252b5132 4356 shstrtab_hdr->sh_addr = 0;
946748d5 4357 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4358 shstrtab_hdr->sh_entsize = 0;
4359 shstrtab_hdr->sh_link = 0;
4360 shstrtab_hdr->sh_info = 0;
3e19fb8f 4361 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
252b5132
RH
4362 shstrtab_hdr->sh_addralign = 1;
4363
c84fca4d 4364 if (!assign_file_positions_except_relocs (abfd, link_info))
b34976b6 4365 return FALSE;
252b5132 4366
3516e984 4367 if (need_symtab)
252b5132
RH
4368 {
4369 file_ptr off;
4370 Elf_Internal_Shdr *hdr;
4371
12bd6957 4372 off = elf_next_file_pos (abfd);
252b5132 4373
6a40cf0c 4374 hdr = & elf_symtab_hdr (abfd);
b34976b6 4375 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4376
6a40cf0c
NC
4377 if (elf_symtab_shndx_list (abfd) != NULL)
4378 {
4379 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4380 if (hdr->sh_size != 0)
4381 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4382 /* FIXME: What about other symtab_shndx sections in the list ? */
4383 }
9ad5cbcf 4384
252b5132 4385 hdr = &elf_tdata (abfd)->strtab_hdr;
b34976b6 4386 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 4387
12bd6957 4388 elf_next_file_pos (abfd) = off;
252b5132
RH
4389
4390 /* Now that we know where the .strtab section goes, write it
08a40648 4391 out. */
252b5132 4392 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 4393 || ! _bfd_elf_strtab_emit (abfd, strtab))
b34976b6 4394 return FALSE;
ef10c3ac 4395 _bfd_elf_strtab_free (strtab);
252b5132
RH
4396 }
4397
b34976b6 4398 abfd->output_has_begun = TRUE;
252b5132 4399
b34976b6 4400 return TRUE;
252b5132
RH
4401}
4402
8ded5a0f
AM
4403/* Make an initial estimate of the size of the program header. If we
4404 get the number wrong here, we'll redo section placement. */
4405
4406static bfd_size_type
4407get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4408{
4409 size_t segs;
4410 asection *s;
2b05f1b7 4411 const struct elf_backend_data *bed;
8ded5a0f
AM
4412
4413 /* Assume we will need exactly two PT_LOAD segments: one for text
4414 and one for data. */
4415 segs = 2;
4416
4417 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4418 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4419 {
4420 /* If we have a loadable interpreter section, we need a
4421 PT_INTERP segment. In this case, assume we also need a
4422 PT_PHDR segment, although that may not be true for all
4423 targets. */
e9a38e0f 4424 segs += 2;
8ded5a0f
AM
4425 }
4426
4427 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4428 {
4429 /* We need a PT_DYNAMIC segment. */
4430 ++segs;
f210dcff 4431 }
08a40648 4432
ceae84aa 4433 if (info != NULL && info->relro)
f210dcff
L
4434 {
4435 /* We need a PT_GNU_RELRO segment. */
4436 ++segs;
8ded5a0f
AM
4437 }
4438
12bd6957 4439 if (elf_eh_frame_hdr (abfd))
8ded5a0f
AM
4440 {
4441 /* We need a PT_GNU_EH_FRAME segment. */
4442 ++segs;
4443 }
4444
12bd6957 4445 if (elf_stack_flags (abfd))
8ded5a0f 4446 {
2b05f1b7
L
4447 /* We need a PT_GNU_STACK segment. */
4448 ++segs;
4449 }
94b11780 4450
0a59decb
L
4451 s = bfd_get_section_by_name (abfd,
4452 NOTE_GNU_PROPERTY_SECTION_NAME);
4453 if (s != NULL && s->size != 0)
4454 {
4455 /* We need a PT_GNU_PROPERTY segment. */
4456 ++segs;
4457 }
4458
2b05f1b7
L
4459 for (s = abfd->sections; s != NULL; s = s->next)
4460 {
8ded5a0f 4461 if ((s->flags & SEC_LOAD) != 0
23e463ed 4462 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 4463 {
23e463ed 4464 unsigned int alignment_power;
8ded5a0f
AM
4465 /* We need a PT_NOTE segment. */
4466 ++segs;
23e463ed
L
4467 /* Try to create just one PT_NOTE segment for all adjacent
4468 loadable SHT_NOTE sections. gABI requires that within a
4469 PT_NOTE segment (and also inside of each SHT_NOTE section)
4470 each note should have the same alignment. So we check
4471 whether the sections are correctly aligned. */
4472 alignment_power = s->alignment_power;
4473 while (s->next != NULL
4474 && s->next->alignment_power == alignment_power
4475 && (s->next->flags & SEC_LOAD) != 0
4476 && elf_section_type (s->next) == SHT_NOTE)
4477 s = s->next;
8ded5a0f
AM
4478 }
4479 }
4480
4481 for (s = abfd->sections; s != NULL; s = s->next)
4482 {
4483 if (s->flags & SEC_THREAD_LOCAL)
4484 {
4485 /* We need a PT_TLS segment. */
4486 ++segs;
4487 break;
4488 }
4489 }
4490
2b05f1b7 4491 bed = get_elf_backend_data (abfd);
a91e1603 4492
df3a023b
AM
4493 if ((abfd->flags & D_PAGED) != 0
4494 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4495 {
4496 /* Add a PT_GNU_MBIND segment for each mbind section. */
4497 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4498 for (s = abfd->sections; s != NULL; s = s->next)
4499 if (elf_section_flags (s) & SHF_GNU_MBIND)
4500 {
4501 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4502 {
4503 _bfd_error_handler
4504 /* xgettext:c-format */
4505 (_("%pB: GNU_MBIND section `%pA' has invalid "
4506 "sh_info field: %d"),
4507 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4508 continue;
4509 }
4510 /* Align mbind section to page size. */
4511 if (s->alignment_power < page_align_power)
4512 s->alignment_power = page_align_power;
4513 segs ++;
4514 }
4515 }
4516
4517 /* Let the backend count up any program headers it might need. */
4518 if (bed->elf_backend_additional_program_headers)
8ded5a0f
AM
4519 {
4520 int a;
4521
4522 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4523 if (a == -1)
4524 abort ();
4525 segs += a;
4526 }
4527
4528 return segs * bed->s->sizeof_phdr;
4529}
4530
2ea37f1c
NC
4531/* Find the segment that contains the output_section of section. */
4532
4533Elf_Internal_Phdr *
4534_bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4535{
4536 struct elf_segment_map *m;
4537 Elf_Internal_Phdr *p;
4538
12bd6957 4539 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
2ea37f1c
NC
4540 m != NULL;
4541 m = m->next, p++)
4542 {
4543 int i;
4544
4545 for (i = m->count - 1; i >= 0; i--)
4546 if (m->sections[i] == section)
4547 return p;
4548 }
4549
4550 return NULL;
4551}
4552
252b5132
RH
4553/* Create a mapping from a set of sections to a program segment. */
4554
217aa764
AM
4555static struct elf_segment_map *
4556make_mapping (bfd *abfd,
4557 asection **sections,
4558 unsigned int from,
4559 unsigned int to,
4560 bfd_boolean phdr)
252b5132
RH
4561{
4562 struct elf_segment_map *m;
4563 unsigned int i;
4564 asection **hdrpp;
dc810e39 4565 bfd_size_type amt;
252b5132 4566
00bee008
AM
4567 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4568 amt += (to - from) * sizeof (asection *);
a50b1753 4569 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
4570 if (m == NULL)
4571 return NULL;
4572 m->next = NULL;
4573 m->p_type = PT_LOAD;
4574 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4575 m->sections[i - from] = *hdrpp;
4576 m->count = to - from;
4577
4578 if (from == 0 && phdr)
4579 {
4580 /* Include the headers in the first PT_LOAD segment. */
4581 m->includes_filehdr = 1;
4582 m->includes_phdrs = 1;
4583 }
4584
4585 return m;
4586}
4587
229fcec5
MM
4588/* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4589 on failure. */
4590
4591struct elf_segment_map *
4592_bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4593{
4594 struct elf_segment_map *m;
4595
a50b1753 4596 m = (struct elf_segment_map *) bfd_zalloc (abfd,
07d6d2b8 4597 sizeof (struct elf_segment_map));
229fcec5
MM
4598 if (m == NULL)
4599 return NULL;
4600 m->next = NULL;
4601 m->p_type = PT_DYNAMIC;
4602 m->count = 1;
4603 m->sections[0] = dynsec;
08a40648 4604
229fcec5
MM
4605 return m;
4606}
4607
8ded5a0f 4608/* Possibly add or remove segments from the segment map. */
252b5132 4609
b34976b6 4610static bfd_boolean
3dea8fca
AM
4611elf_modify_segment_map (bfd *abfd,
4612 struct bfd_link_info *info,
4613 bfd_boolean remove_empty_load)
252b5132 4614{
252e386e 4615 struct elf_segment_map **m;
8ded5a0f 4616 const struct elf_backend_data *bed;
252b5132 4617
8ded5a0f
AM
4618 /* The placement algorithm assumes that non allocated sections are
4619 not in PT_LOAD segments. We ensure this here by removing such
4620 sections from the segment map. We also remove excluded
252e386e
AM
4621 sections. Finally, any PT_LOAD segment without sections is
4622 removed. */
12bd6957 4623 m = &elf_seg_map (abfd);
252e386e 4624 while (*m)
8ded5a0f
AM
4625 {
4626 unsigned int i, new_count;
252b5132 4627
252e386e 4628 for (new_count = 0, i = 0; i < (*m)->count; i++)
8ded5a0f 4629 {
252e386e
AM
4630 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4631 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4632 || (*m)->p_type != PT_LOAD))
8ded5a0f 4633 {
252e386e
AM
4634 (*m)->sections[new_count] = (*m)->sections[i];
4635 new_count++;
8ded5a0f
AM
4636 }
4637 }
252e386e 4638 (*m)->count = new_count;
252b5132 4639
1a9ccd70
NC
4640 if (remove_empty_load
4641 && (*m)->p_type == PT_LOAD
4642 && (*m)->count == 0
4643 && !(*m)->includes_phdrs)
252e386e
AM
4644 *m = (*m)->next;
4645 else
4646 m = &(*m)->next;
8ded5a0f 4647 }
252b5132 4648
8ded5a0f
AM
4649 bed = get_elf_backend_data (abfd);
4650 if (bed->elf_backend_modify_segment_map != NULL)
252b5132 4651 {
252e386e 4652 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
8ded5a0f 4653 return FALSE;
252b5132 4654 }
252b5132 4655
8ded5a0f
AM
4656 return TRUE;
4657}
252b5132 4658
dbc88fc1
AM
4659#define IS_TBSS(s) \
4660 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4661
8ded5a0f 4662/* Set up a mapping from BFD sections to program segments. */
252b5132 4663
8ded5a0f
AM
4664bfd_boolean
4665_bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4666{
4667 unsigned int count;
4668 struct elf_segment_map *m;
4669 asection **sections = NULL;
4670 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3dea8fca 4671 bfd_boolean no_user_phdrs;
252b5132 4672
12bd6957 4673 no_user_phdrs = elf_seg_map (abfd) == NULL;
d324f6d6
RM
4674
4675 if (info != NULL)
4676 info->user_phdrs = !no_user_phdrs;
4677
3dea8fca 4678 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
252b5132 4679 {
8ded5a0f
AM
4680 asection *s;
4681 unsigned int i;
4682 struct elf_segment_map *mfirst;
4683 struct elf_segment_map **pm;
4684 asection *last_hdr;
4685 bfd_vma last_size;
00bee008 4686 unsigned int hdr_index;
8ded5a0f
AM
4687 bfd_vma maxpagesize;
4688 asection **hdrpp;
64029e93 4689 bfd_boolean phdr_in_segment;
8ded5a0f 4690 bfd_boolean writable;
2888249f 4691 bfd_boolean executable;
8ded5a0f
AM
4692 int tls_count = 0;
4693 asection *first_tls = NULL;
a91e1603 4694 asection *first_mbind = NULL;
8ded5a0f
AM
4695 asection *dynsec, *eh_frame_hdr;
4696 bfd_size_type amt;
8d06853e 4697 bfd_vma addr_mask, wrap_to = 0;
64029e93 4698 bfd_size_type phdr_size;
252b5132 4699
8ded5a0f 4700 /* Select the allocated sections, and sort them. */
252b5132 4701
a50b1753 4702 sections = (asection **) bfd_malloc2 (bfd_count_sections (abfd),
07d6d2b8 4703 sizeof (asection *));
8ded5a0f 4704 if (sections == NULL)
252b5132 4705 goto error_return;
252b5132 4706
8d06853e
AM
4707 /* Calculate top address, avoiding undefined behaviour of shift
4708 left operator when shift count is equal to size of type
4709 being shifted. */
4710 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4711 addr_mask = (addr_mask << 1) + 1;
4712
8ded5a0f
AM
4713 i = 0;
4714 for (s = abfd->sections; s != NULL; s = s->next)
4715 {
4716 if ((s->flags & SEC_ALLOC) != 0)
4717 {
48db3297
AM
4718 /* target_index is unused until bfd_elf_final_link
4719 starts output of section symbols. Use it to make
4720 qsort stable. */
4721 s->target_index = i;
8ded5a0f
AM
4722 sections[i] = s;
4723 ++i;
8d06853e
AM
4724 /* A wrapping section potentially clashes with header. */
4725 if (((s->lma + s->size) & addr_mask) < (s->lma & addr_mask))
4726 wrap_to = (s->lma + s->size) & addr_mask;
8ded5a0f
AM
4727 }
4728 }
4729 BFD_ASSERT (i <= bfd_count_sections (abfd));
4730 count = i;
252b5132 4731
8ded5a0f 4732 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
252b5132 4733
64029e93
AM
4734 phdr_size = elf_program_header_size (abfd);
4735 if (phdr_size == (bfd_size_type) -1)
4736 phdr_size = get_program_header_size (abfd, info);
4737 phdr_size += bed->s->sizeof_ehdr;
4738 maxpagesize = bed->maxpagesize;
4739 if (maxpagesize == 0)
4740 maxpagesize = 1;
4741 phdr_in_segment = info != NULL && info->load_phdrs;
4742 if (count != 0
4743 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4744 >= (phdr_size & (maxpagesize - 1))))
4745 /* For compatibility with old scripts that may not be using
4746 SIZEOF_HEADERS, add headers when it looks like space has
4747 been left for them. */
4748 phdr_in_segment = TRUE;
252b5132 4749
64029e93 4750 /* Build the mapping. */
8ded5a0f
AM
4751 mfirst = NULL;
4752 pm = &mfirst;
252b5132 4753
8ded5a0f
AM
4754 /* If we have a .interp section, then create a PT_PHDR segment for
4755 the program headers and a PT_INTERP segment for the .interp
4756 section. */
4757 s = bfd_get_section_by_name (abfd, ".interp");
1b9e270b 4758 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
8ded5a0f
AM
4759 {
4760 amt = sizeof (struct elf_segment_map);
a50b1753 4761 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4762 if (m == NULL)
4763 goto error_return;
4764 m->next = NULL;
4765 m->p_type = PT_PHDR;
f882209d 4766 m->p_flags = PF_R;
8ded5a0f
AM
4767 m->p_flags_valid = 1;
4768 m->includes_phdrs = 1;
64029e93 4769 phdr_in_segment = TRUE;
8ded5a0f
AM
4770 *pm = m;
4771 pm = &m->next;
252b5132 4772
8ded5a0f 4773 amt = sizeof (struct elf_segment_map);
a50b1753 4774 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
4775 if (m == NULL)
4776 goto error_return;
4777 m->next = NULL;
4778 m->p_type = PT_INTERP;
4779 m->count = 1;
4780 m->sections[0] = s;
4781
4782 *pm = m;
4783 pm = &m->next;
252b5132 4784 }
8ded5a0f
AM
4785
4786 /* Look through the sections. We put sections in the same program
4787 segment when the start of the second section can be placed within
4788 a few bytes of the end of the first section. */
4789 last_hdr = NULL;
4790 last_size = 0;
00bee008 4791 hdr_index = 0;
8ded5a0f 4792 writable = FALSE;
2888249f 4793 executable = FALSE;
8ded5a0f
AM
4794 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4795 if (dynsec != NULL
4796 && (dynsec->flags & SEC_LOAD) == 0)
4797 dynsec = NULL;
4798
64029e93
AM
4799 if ((abfd->flags & D_PAGED) == 0)
4800 phdr_in_segment = FALSE;
4801
8ded5a0f
AM
4802 /* Deal with -Ttext or something similar such that the first section
4803 is not adjacent to the program headers. This is an
4804 approximation, since at this point we don't know exactly how many
4805 program headers we will need. */
64029e93 4806 if (phdr_in_segment && count > 0)
252b5132 4807 {
64029e93
AM
4808 bfd_vma phdr_lma;
4809 bfd_boolean separate_phdr = FALSE;
4810
4811 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4812 if (info != NULL
4813 && info->separate_code
4814 && (sections[0]->flags & SEC_CODE) != 0)
1a9ccd70 4815 {
64029e93
AM
4816 /* If data sections should be separate from code and
4817 thus not executable, and the first section is
4818 executable then put the file and program headers in
4819 their own PT_LOAD. */
4820 separate_phdr = TRUE;
4821 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4822 == (sections[0]->lma & addr_mask & -maxpagesize)))
4823 {
4824 /* The file and program headers are currently on the
4825 same page as the first section. Put them on the
4826 previous page if we can. */
4827 if (phdr_lma >= maxpagesize)
4828 phdr_lma -= maxpagesize;
4829 else
4830 separate_phdr = FALSE;
4831 }
4832 }
4833 if ((sections[0]->lma & addr_mask) < phdr_lma
4834 || (sections[0]->lma & addr_mask) < phdr_size)
4835 /* If file and program headers would be placed at the end
4836 of memory then it's probably better to omit them. */
4837 phdr_in_segment = FALSE;
4838 else if (phdr_lma < wrap_to)
4839 /* If a section wraps around to where we'll be placing
4840 file and program headers, then the headers will be
4841 overwritten. */
4842 phdr_in_segment = FALSE;
4843 else if (separate_phdr)
4844 {
4845 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4846 if (m == NULL)
4847 goto error_return;
4848 m->p_paddr = phdr_lma;
4849 m->p_vaddr_offset
4850 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4851 m->p_paddr_valid = 1;
4852 *pm = m;
4853 pm = &m->next;
4854 phdr_in_segment = FALSE;
1a9ccd70 4855 }
252b5132
RH
4856 }
4857
8ded5a0f 4858 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
252b5132 4859 {
8ded5a0f
AM
4860 asection *hdr;
4861 bfd_boolean new_segment;
4862
4863 hdr = *hdrpp;
4864
4865 /* See if this section and the last one will fit in the same
4866 segment. */
4867
4868 if (last_hdr == NULL)
4869 {
4870 /* If we don't have a segment yet, then we don't need a new
4871 one (we build the last one after this loop). */
4872 new_segment = FALSE;
4873 }
4874 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4875 {
4876 /* If this section has a different relation between the
4877 virtual address and the load address, then we need a new
4878 segment. */
4879 new_segment = TRUE;
4880 }
b5599592
AM
4881 else if (hdr->lma < last_hdr->lma + last_size
4882 || last_hdr->lma + last_size < last_hdr->lma)
4883 {
4884 /* If this section has a load address that makes it overlap
4885 the previous section, then we need a new segment. */
4886 new_segment = TRUE;
4887 }
76cb3a89
AM
4888 else if ((abfd->flags & D_PAGED) != 0
4889 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4890 == (hdr->lma & -maxpagesize)))
4891 {
4892 /* If we are demand paged then we can't map two disk
4893 pages onto the same memory page. */
4894 new_segment = FALSE;
4895 }
39948a60
NC
4896 /* In the next test we have to be careful when last_hdr->lma is close
4897 to the end of the address space. If the aligned address wraps
4898 around to the start of the address space, then there are no more
4899 pages left in memory and it is OK to assume that the current
4900 section can be included in the current segment. */
76cb3a89
AM
4901 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4902 + maxpagesize > last_hdr->lma)
4903 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4904 + maxpagesize <= hdr->lma))
8ded5a0f
AM
4905 {
4906 /* If putting this section in this segment would force us to
4907 skip a page in the segment, then we need a new segment. */
4908 new_segment = TRUE;
4909 }
4910 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
76cb3a89 4911 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
8ded5a0f 4912 {
e5654c0f
AM
4913 /* We don't want to put a loaded section after a
4914 nonloaded (ie. bss style) section in the same segment
4915 as that will force the non-loaded section to be loaded.
76cb3a89 4916 Consider .tbss sections as loaded for this purpose. */
8ded5a0f
AM
4917 new_segment = TRUE;
4918 }
4919 else if ((abfd->flags & D_PAGED) == 0)
4920 {
4921 /* If the file is not demand paged, which means that we
4922 don't require the sections to be correctly aligned in the
4923 file, then there is no other reason for a new segment. */
4924 new_segment = FALSE;
4925 }
2888249f
L
4926 else if (info != NULL
4927 && info->separate_code
4928 && executable != ((hdr->flags & SEC_CODE) != 0))
4929 {
4930 new_segment = TRUE;
4931 }
8ded5a0f 4932 else if (! writable
76cb3a89 4933 && (hdr->flags & SEC_READONLY) == 0)
8ded5a0f
AM
4934 {
4935 /* We don't want to put a writable section in a read only
76cb3a89 4936 segment. */
8ded5a0f
AM
4937 new_segment = TRUE;
4938 }
4939 else
4940 {
4941 /* Otherwise, we can use the same segment. */
4942 new_segment = FALSE;
4943 }
4944
2889e75b 4945 /* Allow interested parties a chance to override our decision. */
ceae84aa
AM
4946 if (last_hdr != NULL
4947 && info != NULL
4948 && info->callbacks->override_segment_assignment != NULL)
4949 new_segment
4950 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4951 last_hdr,
4952 new_segment);
2889e75b 4953
8ded5a0f
AM
4954 if (! new_segment)
4955 {
4956 if ((hdr->flags & SEC_READONLY) == 0)
4957 writable = TRUE;
2888249f
L
4958 if ((hdr->flags & SEC_CODE) != 0)
4959 executable = TRUE;
8ded5a0f
AM
4960 last_hdr = hdr;
4961 /* .tbss sections effectively have zero size. */
dbc88fc1 4962 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
8ded5a0f
AM
4963 continue;
4964 }
4965
4966 /* We need a new program segment. We must create a new program
00bee008 4967 header holding all the sections from hdr_index until hdr. */
8ded5a0f 4968
00bee008 4969 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
4970 if (m == NULL)
4971 goto error_return;
4972
4973 *pm = m;
4974 pm = &m->next;
4975
252b5132 4976 if ((hdr->flags & SEC_READONLY) == 0)
b34976b6 4977 writable = TRUE;
8ded5a0f
AM
4978 else
4979 writable = FALSE;
4980
2888249f
L
4981 if ((hdr->flags & SEC_CODE) == 0)
4982 executable = FALSE;
4983 else
4984 executable = TRUE;
4985
baaff79e
JJ
4986 last_hdr = hdr;
4987 /* .tbss sections effectively have zero size. */
dbc88fc1 4988 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
00bee008 4989 hdr_index = i;
8ded5a0f 4990 phdr_in_segment = FALSE;
252b5132
RH
4991 }
4992
86b2281f
AM
4993 /* Create a final PT_LOAD program segment, but not if it's just
4994 for .tbss. */
4995 if (last_hdr != NULL
00bee008 4996 && (i - hdr_index != 1
dbc88fc1 4997 || !IS_TBSS (last_hdr)))
8ded5a0f 4998 {
00bee008 4999 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
8ded5a0f
AM
5000 if (m == NULL)
5001 goto error_return;
252b5132 5002
8ded5a0f
AM
5003 *pm = m;
5004 pm = &m->next;
5005 }
252b5132 5006
8ded5a0f
AM
5007 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
5008 if (dynsec != NULL)
5009 {
5010 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
5011 if (m == NULL)
5012 goto error_return;
5013 *pm = m;
5014 pm = &m->next;
5015 }
252b5132 5016
23e463ed 5017 /* For each batch of consecutive loadable SHT_NOTE sections,
1c5265b5
JJ
5018 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
5019 because if we link together nonloadable .note sections and
5020 loadable .note sections, we will generate two .note sections
23e463ed 5021 in the output file. */
8ded5a0f
AM
5022 for (s = abfd->sections; s != NULL; s = s->next)
5023 {
5024 if ((s->flags & SEC_LOAD) != 0
23e463ed 5025 && elf_section_type (s) == SHT_NOTE)
8ded5a0f 5026 {
1c5265b5 5027 asection *s2;
23e463ed 5028 unsigned int alignment_power = s->alignment_power;
91d6fa6a
NC
5029
5030 count = 1;
23e463ed
L
5031 for (s2 = s; s2->next != NULL; s2 = s2->next)
5032 {
5033 if (s2->next->alignment_power == alignment_power
5034 && (s2->next->flags & SEC_LOAD) != 0
5035 && elf_section_type (s2->next) == SHT_NOTE
5036 && align_power (s2->lma + s2->size,
5037 alignment_power)
5038 == s2->next->lma)
5039 count++;
5040 else
5041 break;
5042 }
00bee008
AM
5043 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5044 amt += count * sizeof (asection *);
a50b1753 5045 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5046 if (m == NULL)
5047 goto error_return;
5048 m->next = NULL;
5049 m->p_type = PT_NOTE;
1c5265b5
JJ
5050 m->count = count;
5051 while (count > 1)
5052 {
5053 m->sections[m->count - count--] = s;
5054 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5055 s = s->next;
5056 }
5057 m->sections[m->count - 1] = s;
5058 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
8ded5a0f
AM
5059 *pm = m;
5060 pm = &m->next;
5061 }
5062 if (s->flags & SEC_THREAD_LOCAL)
5063 {
5064 if (! tls_count)
5065 first_tls = s;
5066 tls_count++;
5067 }
a91e1603
L
5068 if (first_mbind == NULL
5069 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5070 first_mbind = s;
8ded5a0f 5071 }
252b5132 5072
8ded5a0f
AM
5073 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5074 if (tls_count > 0)
5075 {
00bee008
AM
5076 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5077 amt += tls_count * sizeof (asection *);
a50b1753 5078 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5079 if (m == NULL)
5080 goto error_return;
5081 m->next = NULL;
5082 m->p_type = PT_TLS;
5083 m->count = tls_count;
5084 /* Mandated PF_R. */
5085 m->p_flags = PF_R;
5086 m->p_flags_valid = 1;
d923cae0 5087 s = first_tls;
91d6fa6a 5088 for (i = 0; i < (unsigned int) tls_count; ++i)
8ded5a0f 5089 {
d923cae0
L
5090 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5091 {
5092 _bfd_error_handler
871b3ab2 5093 (_("%pB: TLS sections are not adjacent:"), abfd);
d923cae0
L
5094 s = first_tls;
5095 i = 0;
5096 while (i < (unsigned int) tls_count)
5097 {
5098 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5099 {
871b3ab2 5100 _bfd_error_handler (_(" TLS: %pA"), s);
d923cae0
L
5101 i++;
5102 }
5103 else
871b3ab2 5104 _bfd_error_handler (_(" non-TLS: %pA"), s);
d923cae0
L
5105 s = s->next;
5106 }
5107 bfd_set_error (bfd_error_bad_value);
5108 goto error_return;
5109 }
5110 m->sections[i] = s;
5111 s = s->next;
8ded5a0f 5112 }
252b5132 5113
8ded5a0f
AM
5114 *pm = m;
5115 pm = &m->next;
5116 }
252b5132 5117
df3a023b
AM
5118 if (first_mbind
5119 && (abfd->flags & D_PAGED) != 0
5120 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
a91e1603
L
5121 for (s = first_mbind; s != NULL; s = s->next)
5122 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
df3a023b 5123 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
a91e1603
L
5124 {
5125 /* Mandated PF_R. */
5126 unsigned long p_flags = PF_R;
5127 if ((s->flags & SEC_READONLY) == 0)
5128 p_flags |= PF_W;
5129 if ((s->flags & SEC_CODE) != 0)
5130 p_flags |= PF_X;
5131
5132 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5133 m = bfd_zalloc (abfd, amt);
5134 if (m == NULL)
5135 goto error_return;
5136 m->next = NULL;
5137 m->p_type = (PT_GNU_MBIND_LO
5138 + elf_section_data (s)->this_hdr.sh_info);
5139 m->count = 1;
5140 m->p_flags_valid = 1;
5141 m->sections[0] = s;
5142 m->p_flags = p_flags;
5143
5144 *pm = m;
5145 pm = &m->next;
5146 }
5147
0a59decb
L
5148 s = bfd_get_section_by_name (abfd,
5149 NOTE_GNU_PROPERTY_SECTION_NAME);
5150 if (s != NULL && s->size != 0)
5151 {
5152 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5153 m = bfd_zalloc (abfd, amt);
5154 if (m == NULL)
5155 goto error_return;
5156 m->next = NULL;
5157 m->p_type = PT_GNU_PROPERTY;
5158 m->count = 1;
5159 m->p_flags_valid = 1;
5160 m->sections[0] = s;
5161 m->p_flags = PF_R;
5162 *pm = m;
5163 pm = &m->next;
5164 }
5165
8ded5a0f
AM
5166 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5167 segment. */
12bd6957 5168 eh_frame_hdr = elf_eh_frame_hdr (abfd);
8ded5a0f
AM
5169 if (eh_frame_hdr != NULL
5170 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
252b5132 5171 {
dc810e39 5172 amt = sizeof (struct elf_segment_map);
a50b1753 5173 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132
RH
5174 if (m == NULL)
5175 goto error_return;
5176 m->next = NULL;
8ded5a0f 5177 m->p_type = PT_GNU_EH_FRAME;
252b5132 5178 m->count = 1;
8ded5a0f 5179 m->sections[0] = eh_frame_hdr->output_section;
252b5132
RH
5180
5181 *pm = m;
5182 pm = &m->next;
5183 }
13ae64f3 5184
12bd6957 5185 if (elf_stack_flags (abfd))
13ae64f3 5186 {
8ded5a0f 5187 amt = sizeof (struct elf_segment_map);
a50b1753 5188 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
8ded5a0f
AM
5189 if (m == NULL)
5190 goto error_return;
5191 m->next = NULL;
2b05f1b7 5192 m->p_type = PT_GNU_STACK;
12bd6957 5193 m->p_flags = elf_stack_flags (abfd);
04c3a755 5194 m->p_align = bed->stack_align;
8ded5a0f 5195 m->p_flags_valid = 1;
04c3a755
NS
5196 m->p_align_valid = m->p_align != 0;
5197 if (info->stacksize > 0)
5198 {
5199 m->p_size = info->stacksize;
5200 m->p_size_valid = 1;
5201 }
252b5132 5202
8ded5a0f
AM
5203 *pm = m;
5204 pm = &m->next;
5205 }
65765700 5206
ceae84aa 5207 if (info != NULL && info->relro)
8ded5a0f 5208 {
f210dcff
L
5209 for (m = mfirst; m != NULL; m = m->next)
5210 {
3832a4d8
AM
5211 if (m->p_type == PT_LOAD
5212 && m->count != 0
5213 && m->sections[0]->vma >= info->relro_start
5214 && m->sections[0]->vma < info->relro_end)
f210dcff 5215 {
3832a4d8
AM
5216 i = m->count;
5217 while (--i != (unsigned) -1)
5218 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5219 == (SEC_LOAD | SEC_HAS_CONTENTS))
5220 break;
5221
43a8475c 5222 if (i != (unsigned) -1)
f210dcff
L
5223 break;
5224 }
be01b344 5225 }
f210dcff
L
5226
5227 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5228 if (m != NULL)
5229 {
5230 amt = sizeof (struct elf_segment_map);
a50b1753 5231 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
f210dcff
L
5232 if (m == NULL)
5233 goto error_return;
5234 m->next = NULL;
5235 m->p_type = PT_GNU_RELRO;
f210dcff
L
5236 *pm = m;
5237 pm = &m->next;
5238 }
8ded5a0f 5239 }
9ee5e499 5240
8ded5a0f 5241 free (sections);
12bd6957 5242 elf_seg_map (abfd) = mfirst;
9ee5e499
JJ
5243 }
5244
3dea8fca 5245 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
8ded5a0f 5246 return FALSE;
8c37241b 5247
12bd6957 5248 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
8ded5a0f 5249 ++count;
12bd6957 5250 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
252b5132 5251
b34976b6 5252 return TRUE;
252b5132
RH
5253
5254 error_return:
5255 if (sections != NULL)
5256 free (sections);
b34976b6 5257 return FALSE;
252b5132
RH
5258}
5259
5260/* Sort sections by address. */
5261
5262static int
217aa764 5263elf_sort_sections (const void *arg1, const void *arg2)
252b5132
RH
5264{
5265 const asection *sec1 = *(const asection **) arg1;
5266 const asection *sec2 = *(const asection **) arg2;
eecdbe52 5267 bfd_size_type size1, size2;
252b5132
RH
5268
5269 /* Sort by LMA first, since this is the address used to
5270 place the section into a segment. */
5271 if (sec1->lma < sec2->lma)
5272 return -1;
5273 else if (sec1->lma > sec2->lma)
5274 return 1;
5275
5276 /* Then sort by VMA. Normally the LMA and the VMA will be
5277 the same, and this will do nothing. */
5278 if (sec1->vma < sec2->vma)
5279 return -1;
5280 else if (sec1->vma > sec2->vma)
5281 return 1;
5282
5283 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5284
07c6e936 5285#define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
252b5132
RH
5286
5287 if (TOEND (sec1))
5288 {
48db3297 5289 if (!TOEND (sec2))
252b5132
RH
5290 return 1;
5291 }
00a7cdc5 5292 else if (TOEND (sec2))
252b5132
RH
5293 return -1;
5294
5295#undef TOEND
5296
00a7cdc5
NC
5297 /* Sort by size, to put zero sized sections
5298 before others at the same address. */
252b5132 5299
eea6121a
AM
5300 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5301 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
eecdbe52
JJ
5302
5303 if (size1 < size2)
252b5132 5304 return -1;
eecdbe52 5305 if (size1 > size2)
252b5132
RH
5306 return 1;
5307
5308 return sec1->target_index - sec2->target_index;
5309}
5310
30fe1832
AM
5311/* This qsort comparison functions sorts PT_LOAD segments first and
5312 by p_paddr, for assign_file_positions_for_load_sections. */
5313
5314static int
5315elf_sort_segments (const void *arg1, const void *arg2)
5316{
5317 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5318 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5319
5320 if (m1->p_type != m2->p_type)
5321 {
5322 if (m1->p_type == PT_NULL)
5323 return 1;
5324 if (m2->p_type == PT_NULL)
5325 return -1;
5326 return m1->p_type < m2->p_type ? -1 : 1;
5327 }
5328 if (m1->includes_filehdr != m2->includes_filehdr)
5329 return m1->includes_filehdr ? -1 : 1;
5330 if (m1->no_sort_lma != m2->no_sort_lma)
5331 return m1->no_sort_lma ? -1 : 1;
5332 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5333 {
5334 bfd_vma lma1, lma2;
5335 lma1 = 0;
5336 if (m1->p_paddr_valid)
5337 lma1 = m1->p_paddr;
5338 else if (m1->count != 0)
5339 lma1 = m1->sections[0]->lma + m1->p_vaddr_offset;
5340 lma2 = 0;
5341 if (m2->p_paddr_valid)
5342 lma2 = m2->p_paddr;
5343 else if (m2->count != 0)
5344 lma2 = m2->sections[0]->lma + m2->p_vaddr_offset;
5345 if (lma1 != lma2)
5346 return lma1 < lma2 ? -1 : 1;
5347 }
5348 if (m1->idx != m2->idx)
5349 return m1->idx < m2->idx ? -1 : 1;
5350 return 0;
5351}
5352
340b6d91
AC
5353/* Ian Lance Taylor writes:
5354
5355 We shouldn't be using % with a negative signed number. That's just
5356 not good. We have to make sure either that the number is not
5357 negative, or that the number has an unsigned type. When the types
5358 are all the same size they wind up as unsigned. When file_ptr is a
5359 larger signed type, the arithmetic winds up as signed long long,
5360 which is wrong.
5361
5362 What we're trying to say here is something like ``increase OFF by
5363 the least amount that will cause it to be equal to the VMA modulo
5364 the page size.'' */
5365/* In other words, something like:
5366
5367 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5368 off_offset = off % bed->maxpagesize;
5369 if (vma_offset < off_offset)
5370 adjustment = vma_offset + bed->maxpagesize - off_offset;
5371 else
5372 adjustment = vma_offset - off_offset;
08a40648 5373
de194d85 5374 which can be collapsed into the expression below. */
340b6d91
AC
5375
5376static file_ptr
5377vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5378{
dc9155b2
NC
5379 /* PR binutils/16199: Handle an alignment of zero. */
5380 if (maxpagesize == 0)
5381 maxpagesize = 1;
340b6d91
AC
5382 return ((vma - off) % maxpagesize);
5383}
5384
6d33f217
L
5385static void
5386print_segment_map (const struct elf_segment_map *m)
5387{
5388 unsigned int j;
5389 const char *pt = get_segment_type (m->p_type);
5390 char buf[32];
5391
5392 if (pt == NULL)
5393 {
5394 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5395 sprintf (buf, "LOPROC+%7.7x",
5396 (unsigned int) (m->p_type - PT_LOPROC));
5397 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5398 sprintf (buf, "LOOS+%7.7x",
5399 (unsigned int) (m->p_type - PT_LOOS));
5400 else
5401 snprintf (buf, sizeof (buf), "%8.8x",
5402 (unsigned int) m->p_type);
5403 pt = buf;
5404 }
4a97a0e5 5405 fflush (stdout);
6d33f217
L
5406 fprintf (stderr, "%s:", pt);
5407 for (j = 0; j < m->count; j++)
5408 fprintf (stderr, " %s", m->sections [j]->name);
5409 putc ('\n',stderr);
4a97a0e5 5410 fflush (stderr);
6d33f217
L
5411}
5412
32812159
AM
5413static bfd_boolean
5414write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5415{
5416 void *buf;
5417 bfd_boolean ret;
5418
5419 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5420 return FALSE;
5421 buf = bfd_zmalloc (len);
5422 if (buf == NULL)
5423 return FALSE;
5424 ret = bfd_bwrite (buf, len, abfd) == len;
5425 free (buf);
5426 return ret;
5427}
5428
252b5132
RH
5429/* Assign file positions to the sections based on the mapping from
5430 sections to segments. This function also sets up some fields in
f3520d2f 5431 the file header. */
252b5132 5432
b34976b6 5433static bfd_boolean
f3520d2f
AM
5434assign_file_positions_for_load_sections (bfd *abfd,
5435 struct bfd_link_info *link_info)
252b5132
RH
5436{
5437 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 5438 struct elf_segment_map *m;
30fe1832 5439 struct elf_segment_map *phdr_load_seg;
252b5132 5440 Elf_Internal_Phdr *phdrs;
252b5132 5441 Elf_Internal_Phdr *p;
02bf8d82 5442 file_ptr off;
3f570048 5443 bfd_size_type maxpagesize;
30fe1832 5444 unsigned int alloc, actual;
0920dee7 5445 unsigned int i, j;
30fe1832 5446 struct elf_segment_map **sorted_seg_map;
252b5132 5447
e36284ab 5448 if (link_info == NULL
ceae84aa 5449 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
8ded5a0f 5450 return FALSE;
252b5132 5451
8ded5a0f 5452 alloc = 0;
12bd6957 5453 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
30fe1832 5454 m->idx = alloc++;
252b5132 5455
82f2dbf7
NC
5456 if (alloc)
5457 {
5458 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5459 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5460 }
5461 else
5462 {
5463 /* PR binutils/12467. */
5464 elf_elfheader (abfd)->e_phoff = 0;
5465 elf_elfheader (abfd)->e_phentsize = 0;
5466 }
d324f6d6 5467
8ded5a0f 5468 elf_elfheader (abfd)->e_phnum = alloc;
252b5132 5469
12bd6957 5470 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
30fe1832
AM
5471 {
5472 actual = alloc;
5473 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5474 }
8ded5a0f 5475 else
30fe1832
AM
5476 {
5477 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5478 BFD_ASSERT (elf_program_header_size (abfd)
5479 == actual * bed->s->sizeof_phdr);
5480 BFD_ASSERT (actual >= alloc);
5481 }
252b5132
RH
5482
5483 if (alloc == 0)
f3520d2f 5484 {
12bd6957 5485 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
8ded5a0f 5486 return TRUE;
f3520d2f 5487 }
252b5132 5488
12bd6957 5489 /* We're writing the size in elf_program_header_size (abfd),
57268894
HPN
5490 see assign_file_positions_except_relocs, so make sure we have
5491 that amount allocated, with trailing space cleared.
12bd6957
AM
5492 The variable alloc contains the computed need, while
5493 elf_program_header_size (abfd) contains the size used for the
57268894
HPN
5494 layout.
5495 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5496 where the layout is forced to according to a larger size in the
5497 last iterations for the testcase ld-elf/header. */
30fe1832
AM
5498 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5499 + alloc * sizeof (*sorted_seg_map)));
5500 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
f3520d2f 5501 elf_tdata (abfd)->phdr = phdrs;
252b5132 5502 if (phdrs == NULL)
b34976b6 5503 return FALSE;
252b5132 5504
30fe1832 5505 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
252b5132 5506 {
30fe1832 5507 sorted_seg_map[j] = m;
252b5132 5508 /* If elf_segment_map is not from map_sections_to_segments, the
08a40648 5509 sections may not be correctly ordered. NOTE: sorting should
52e9b619
MS
5510 not be done to the PT_NOTE section of a corefile, which may
5511 contain several pseudo-sections artificially created by bfd.
5512 Sorting these pseudo-sections breaks things badly. */
47d9a591
AM
5513 if (m->count > 1
5514 && !(elf_elfheader (abfd)->e_type == ET_CORE
52e9b619 5515 && m->p_type == PT_NOTE))
48db3297
AM
5516 {
5517 for (i = 0; i < m->count; i++)
5518 m->sections[i]->target_index = i;
5519 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5520 elf_sort_sections);
5521 }
30fe1832
AM
5522 }
5523 if (alloc > 1)
5524 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5525 elf_sort_segments);
5526
5527 maxpagesize = 1;
5528 if ((abfd->flags & D_PAGED) != 0)
5529 maxpagesize = bed->maxpagesize;
5530
5531 /* Sections must map to file offsets past the ELF file header. */
5532 off = bed->s->sizeof_ehdr;
5533 /* And if one of the PT_LOAD headers doesn't include the program
5534 headers then we'll be mapping program headers in the usual
5535 position after the ELF file header. */
5536 phdr_load_seg = NULL;
5537 for (j = 0; j < alloc; j++)
5538 {
5539 m = sorted_seg_map[j];
5540 if (m->p_type != PT_LOAD)
5541 break;
5542 if (m->includes_phdrs)
5543 {
5544 phdr_load_seg = m;
5545 break;
5546 }
5547 }
5548 if (phdr_load_seg == NULL)
5549 off += actual * bed->s->sizeof_phdr;
5550
5551 for (j = 0; j < alloc; j++)
5552 {
5553 asection **secpp;
5554 bfd_vma off_adjust;
5555 bfd_boolean no_contents;
252b5132 5556
b301b248
AM
5557 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5558 number of sections with contents contributing to both p_filesz
5559 and p_memsz, followed by a number of sections with no contents
5560 that just contribute to p_memsz. In this loop, OFF tracks next
02bf8d82 5561 available file offset for PT_LOAD and PT_NOTE segments. */
30fe1832
AM
5562 m = sorted_seg_map[j];
5563 p = phdrs + m->idx;
252b5132 5564 p->p_type = m->p_type;
28a7f3e7 5565 p->p_flags = m->p_flags;
252b5132 5566
3f570048 5567 if (m->count == 0)
5d695627 5568 p->p_vaddr = m->p_vaddr_offset;
3f570048 5569 else
5d695627 5570 p->p_vaddr = m->sections[0]->vma + m->p_vaddr_offset;
3f570048
AM
5571
5572 if (m->p_paddr_valid)
5573 p->p_paddr = m->p_paddr;
5574 else if (m->count == 0)
5575 p->p_paddr = 0;
5576 else
5d695627 5577 p->p_paddr = m->sections[0]->lma + m->p_vaddr_offset;
3f570048
AM
5578
5579 if (p->p_type == PT_LOAD
5580 && (abfd->flags & D_PAGED) != 0)
5581 {
5582 /* p_align in demand paged PT_LOAD segments effectively stores
5583 the maximum page size. When copying an executable with
5584 objcopy, we set m->p_align from the input file. Use this
5585 value for maxpagesize rather than bed->maxpagesize, which
5586 may be different. Note that we use maxpagesize for PT_TLS
5587 segment alignment later in this function, so we are relying
5588 on at least one PT_LOAD segment appearing before a PT_TLS
5589 segment. */
5590 if (m->p_align_valid)
5591 maxpagesize = m->p_align;
5592
5593 p->p_align = maxpagesize;
5594 }
3271a814
NS
5595 else if (m->p_align_valid)
5596 p->p_align = m->p_align;
e970b90a
DJ
5597 else if (m->count == 0)
5598 p->p_align = 1 << bed->s->log_file_align;
30fe1832
AM
5599
5600 if (m == phdr_load_seg)
5601 {
5602 if (!m->includes_filehdr)
5603 p->p_offset = off;
5604 off += actual * bed->s->sizeof_phdr;
5605 }
3f570048 5606
bf988460
AM
5607 no_contents = FALSE;
5608 off_adjust = 0;
252b5132 5609 if (p->p_type == PT_LOAD
b301b248 5610 && m->count > 0)
252b5132 5611 {
b301b248 5612 bfd_size_type align;
a49e53ed 5613 unsigned int align_power = 0;
b301b248 5614
3271a814
NS
5615 if (m->p_align_valid)
5616 align = p->p_align;
5617 else
252b5132 5618 {
3271a814
NS
5619 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5620 {
5621 unsigned int secalign;
08a40648 5622
fd361982 5623 secalign = bfd_section_alignment (*secpp);
3271a814
NS
5624 if (secalign > align_power)
5625 align_power = secalign;
5626 }
5627 align = (bfd_size_type) 1 << align_power;
5628 if (align < maxpagesize)
5629 align = maxpagesize;
b301b248 5630 }
252b5132 5631
02bf8d82
AM
5632 for (i = 0; i < m->count; i++)
5633 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5634 /* If we aren't making room for this section, then
5635 it must be SHT_NOBITS regardless of what we've
5636 set via struct bfd_elf_special_section. */
5637 elf_section_type (m->sections[i]) = SHT_NOBITS;
5638
bf988460 5639 /* Find out whether this segment contains any loadable
aea274d3
AM
5640 sections. */
5641 no_contents = TRUE;
5642 for (i = 0; i < m->count; i++)
5643 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5644 {
5645 no_contents = FALSE;
5646 break;
5647 }
bf988460 5648
85cfcbfb 5649 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align);
a8c75b76
AM
5650
5651 /* Broken hardware and/or kernel require that files do not
5652 map the same page with different permissions on some hppa
5653 processors. */
30fe1832
AM
5654 if (j != 0
5655 && (abfd->flags & D_PAGED) != 0
a8c75b76
AM
5656 && bed->no_page_alias
5657 && (off & (maxpagesize - 1)) != 0
5658 && (off & -maxpagesize) == ((off + off_adjust) & -maxpagesize))
5659 off_adjust += maxpagesize;
bf988460
AM
5660 off += off_adjust;
5661 if (no_contents)
5662 {
5663 /* We shouldn't need to align the segment on disk since
5664 the segment doesn't need file space, but the gABI
5665 arguably requires the alignment and glibc ld.so
5666 checks it. So to comply with the alignment
5667 requirement but not waste file space, we adjust
5668 p_offset for just this segment. (OFF_ADJUST is
5669 subtracted from OFF later.) This may put p_offset
5670 past the end of file, but that shouldn't matter. */
5671 }
5672 else
5673 off_adjust = 0;
252b5132 5674 }
b1a6d0b1
NC
5675 /* Make sure the .dynamic section is the first section in the
5676 PT_DYNAMIC segment. */
5677 else if (p->p_type == PT_DYNAMIC
5678 && m->count > 1
5679 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5680 {
5681 _bfd_error_handler
871b3ab2 5682 (_("%pB: The first section in the PT_DYNAMIC segment"
63a5468a 5683 " is not the .dynamic section"),
b301b248 5684 abfd);
b1a6d0b1
NC
5685 bfd_set_error (bfd_error_bad_value);
5686 return FALSE;
5687 }
3f001e84
JK
5688 /* Set the note section type to SHT_NOTE. */
5689 else if (p->p_type == PT_NOTE)
5690 for (i = 0; i < m->count; i++)
5691 elf_section_type (m->sections[i]) = SHT_NOTE;
252b5132 5692
252b5132
RH
5693 if (m->includes_filehdr)
5694 {
bf988460 5695 if (!m->p_flags_valid)
252b5132 5696 p->p_flags |= PF_R;
252b5132
RH
5697 p->p_filesz = bed->s->sizeof_ehdr;
5698 p->p_memsz = bed->s->sizeof_ehdr;
30fe1832 5699 if (p->p_type == PT_LOAD)
252b5132 5700 {
30fe1832 5701 if (m->count > 0)
252b5132 5702 {
30fe1832
AM
5703 if (p->p_vaddr < (bfd_vma) off
5704 || (!m->p_paddr_valid
5705 && p->p_paddr < (bfd_vma) off))
5706 {
5707 _bfd_error_handler
5708 (_("%pB: not enough room for program headers,"
5709 " try linking with -N"),
5710 abfd);
5711 bfd_set_error (bfd_error_bad_value);
5712 return FALSE;
5713 }
5714 p->p_vaddr -= off;
5715 if (!m->p_paddr_valid)
5716 p->p_paddr -= off;
252b5132 5717 }
30fe1832
AM
5718 }
5719 else if (sorted_seg_map[0]->includes_filehdr)
5720 {
5721 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5722 p->p_vaddr = filehdr->p_vaddr;
bf988460 5723 if (!m->p_paddr_valid)
30fe1832 5724 p->p_paddr = filehdr->p_paddr;
252b5132 5725 }
252b5132
RH
5726 }
5727
5728 if (m->includes_phdrs)
5729 {
bf988460 5730 if (!m->p_flags_valid)
252b5132 5731 p->p_flags |= PF_R;
30fe1832
AM
5732 p->p_filesz += actual * bed->s->sizeof_phdr;
5733 p->p_memsz += actual * bed->s->sizeof_phdr;
f3520d2f 5734 if (!m->includes_filehdr)
252b5132 5735 {
30fe1832 5736 if (p->p_type == PT_LOAD)
252b5132 5737 {
30fe1832
AM
5738 elf_elfheader (abfd)->e_phoff = p->p_offset;
5739 if (m->count > 0)
5740 {
5741 p->p_vaddr -= off - p->p_offset;
5742 if (!m->p_paddr_valid)
5743 p->p_paddr -= off - p->p_offset;
5744 }
5745 }
5746 else if (phdr_load_seg != NULL)
5747 {
5748 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
5749 bfd_vma phdr_off = 0;
5750 if (phdr_load_seg->includes_filehdr)
5751 phdr_off = bed->s->sizeof_ehdr;
5752 p->p_vaddr = phdr->p_vaddr + phdr_off;
bf988460 5753 if (!m->p_paddr_valid)
30fe1832
AM
5754 p->p_paddr = phdr->p_paddr + phdr_off;
5755 p->p_offset = phdr->p_offset + phdr_off;
252b5132 5756 }
30fe1832
AM
5757 else
5758 p->p_offset = bed->s->sizeof_ehdr;
2b0bc088 5759 }
252b5132
RH
5760 }
5761
5762 if (p->p_type == PT_LOAD
5763 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5764 {
bf988460 5765 if (!m->includes_filehdr && !m->includes_phdrs)
02bf8d82 5766 p->p_offset = off;
252b5132
RH
5767 else
5768 {
5769 file_ptr adjust;
5770
5771 adjust = off - (p->p_offset + p->p_filesz);
bf988460
AM
5772 if (!no_contents)
5773 p->p_filesz += adjust;
252b5132
RH
5774 p->p_memsz += adjust;
5775 }
5776 }
5777
1ea63fd2
AM
5778 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5779 maps. Set filepos for sections in PT_LOAD segments, and in
5780 core files, for sections in PT_NOTE segments.
5781 assign_file_positions_for_non_load_sections will set filepos
5782 for other sections and update p_filesz for other segments. */
252b5132
RH
5783 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5784 {
5785 asection *sec;
252b5132 5786 bfd_size_type align;
627b32bc 5787 Elf_Internal_Shdr *this_hdr;
252b5132
RH
5788
5789 sec = *secpp;
02bf8d82 5790 this_hdr = &elf_section_data (sec)->this_hdr;
fd361982 5791 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
252b5132 5792
88967714
AM
5793 if ((p->p_type == PT_LOAD
5794 || p->p_type == PT_TLS)
5795 && (this_hdr->sh_type != SHT_NOBITS
5796 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5797 && ((this_hdr->sh_flags & SHF_TLS) == 0
5798 || p->p_type == PT_TLS))))
252b5132 5799 {
b5599592
AM
5800 bfd_vma p_start = p->p_paddr;
5801 bfd_vma p_end = p_start + p->p_memsz;
5802 bfd_vma s_start = sec->lma;
5803 bfd_vma adjust = s_start - p_end;
252b5132 5804
a2d1e028
L
5805 if (adjust != 0
5806 && (s_start < p_end
5807 || p_end < p_start))
252b5132 5808 {
4eca0228 5809 _bfd_error_handler
695344c0 5810 /* xgettext:c-format */
2dcf00ce
AM
5811 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5812 abfd, sec, (uint64_t) s_start, (uint64_t) p_end);
88967714 5813 adjust = 0;
b5599592 5814 sec->lma = p_end;
1cfb7d1e 5815 }
3ac9b6c9 5816 p->p_memsz += adjust;
1cfb7d1e 5817
88967714
AM
5818 if (this_hdr->sh_type != SHT_NOBITS)
5819 {
30fe1832 5820 if (p->p_type == PT_LOAD)
32812159 5821 {
30fe1832
AM
5822 if (p->p_filesz + adjust < p->p_memsz)
5823 {
5824 /* We have a PROGBITS section following NOBITS ones.
5825 Allocate file space for the NOBITS section(s) and
5826 zero it. */
5827 adjust = p->p_memsz - p->p_filesz;
5828 if (!write_zeros (abfd, off, adjust))
5829 return FALSE;
5830 }
5831 off += adjust;
32812159 5832 }
88967714 5833 p->p_filesz += adjust;
252b5132 5834 }
252b5132
RH
5835 }
5836
5837 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5838 {
b301b248
AM
5839 /* The section at i == 0 is the one that actually contains
5840 everything. */
4a938328
MS
5841 if (i == 0)
5842 {
627b32bc 5843 this_hdr->sh_offset = sec->filepos = off;
6a3cd2b4
AM
5844 off += this_hdr->sh_size;
5845 p->p_filesz = this_hdr->sh_size;
b301b248
AM
5846 p->p_memsz = 0;
5847 p->p_align = 1;
252b5132 5848 }
4a938328 5849 else
252b5132 5850 {
b301b248 5851 /* The rest are fake sections that shouldn't be written. */
252b5132 5852 sec->filepos = 0;
eea6121a 5853 sec->size = 0;
b301b248
AM
5854 sec->flags = 0;
5855 continue;
252b5132 5856 }
252b5132
RH
5857 }
5858 else
5859 {
1e951488 5860 if (p->p_type == PT_LOAD)
b301b248 5861 {
1e951488
AM
5862 this_hdr->sh_offset = sec->filepos = off;
5863 if (this_hdr->sh_type != SHT_NOBITS)
5864 off += this_hdr->sh_size;
5865 }
5866 else if (this_hdr->sh_type == SHT_NOBITS
5867 && (this_hdr->sh_flags & SHF_TLS) != 0
5868 && this_hdr->sh_offset == 0)
5869 {
5870 /* This is a .tbss section that didn't get a PT_LOAD.
5871 (See _bfd_elf_map_sections_to_segments "Create a
5872 final PT_LOAD".) Set sh_offset to the value it
5873 would have if we had created a zero p_filesz and
5874 p_memsz PT_LOAD header for the section. This
5875 also makes the PT_TLS header have the same
5876 p_offset value. */
5877 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5878 off, align);
5879 this_hdr->sh_offset = sec->filepos = off + adjust;
b301b248 5880 }
252b5132 5881
02bf8d82 5882 if (this_hdr->sh_type != SHT_NOBITS)
b301b248 5883 {
6a3cd2b4 5884 p->p_filesz += this_hdr->sh_size;
02bf8d82
AM
5885 /* A load section without SHF_ALLOC is something like
5886 a note section in a PT_NOTE segment. These take
5887 file space but are not loaded into memory. */
5888 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
6a3cd2b4 5889 p->p_memsz += this_hdr->sh_size;
b301b248 5890 }
6a3cd2b4 5891 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
13ae64f3 5892 {
6a3cd2b4
AM
5893 if (p->p_type == PT_TLS)
5894 p->p_memsz += this_hdr->sh_size;
5895
5896 /* .tbss is special. It doesn't contribute to p_memsz of
5897 normal segments. */
5898 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5899 p->p_memsz += this_hdr->sh_size;
13ae64f3
JJ
5900 }
5901
b10a8ae0
L
5902 if (align > p->p_align
5903 && !m->p_align_valid
5904 && (p->p_type != PT_LOAD
5905 || (abfd->flags & D_PAGED) == 0))
252b5132
RH
5906 p->p_align = align;
5907 }
5908
bf988460 5909 if (!m->p_flags_valid)
252b5132
RH
5910 {
5911 p->p_flags |= PF_R;
02bf8d82 5912 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
252b5132 5913 p->p_flags |= PF_X;
02bf8d82 5914 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
252b5132
RH
5915 p->p_flags |= PF_W;
5916 }
5917 }
43a8475c 5918
bf988460 5919 off -= off_adjust;
0920dee7 5920
30fe1832
AM
5921 /* PR ld/20815 - Check that the program header segment, if
5922 present, will be loaded into memory. */
5923 if (p->p_type == PT_PHDR
5924 && phdr_load_seg == NULL
5925 && !(bed->elf_backend_allow_non_load_phdr != NULL
5926 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5927 {
5928 /* The fix for this error is usually to edit the linker script being
5929 used and set up the program headers manually. Either that or
5930 leave room for the headers at the start of the SECTIONS. */
5931 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5932 " by LOAD segment"),
5933 abfd);
5934 return FALSE;
5935 }
5936
7c928300
AM
5937 /* Check that all sections are in a PT_LOAD segment.
5938 Don't check funky gdb generated core files. */
5939 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
9a83a553
AM
5940 {
5941 bfd_boolean check_vma = TRUE;
5942
5943 for (i = 1; i < m->count; i++)
5944 if (m->sections[i]->vma == m->sections[i - 1]->vma
5945 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5946 ->this_hdr), p) != 0
5947 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5948 ->this_hdr), p) != 0)
0920dee7 5949 {
9a83a553
AM
5950 /* Looks like we have overlays packed into the segment. */
5951 check_vma = FALSE;
5952 break;
0920dee7 5953 }
9a83a553
AM
5954
5955 for (i = 0; i < m->count; i++)
5956 {
5957 Elf_Internal_Shdr *this_hdr;
5958 asection *sec;
5959
5960 sec = m->sections[i];
5961 this_hdr = &(elf_section_data(sec)->this_hdr);
86b2281f
AM
5962 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5963 && !ELF_TBSS_SPECIAL (this_hdr, p))
9a83a553 5964 {
4eca0228 5965 _bfd_error_handler
695344c0 5966 /* xgettext:c-format */
871b3ab2 5967 (_("%pB: section `%pA' can't be allocated in segment %d"),
9a83a553
AM
5968 abfd, sec, j);
5969 print_segment_map (m);
5970 }
5971 }
5972 }
252b5132
RH
5973 }
5974
12bd6957 5975 elf_next_file_pos (abfd) = off;
30fe1832
AM
5976
5977 if (link_info != NULL
5978 && phdr_load_seg != NULL
5979 && phdr_load_seg->includes_filehdr)
5980 {
5981 /* There is a segment that contains both the file headers and the
5982 program headers, so provide a symbol __ehdr_start pointing there.
5983 A program can use this to examine itself robustly. */
5984
5985 struct elf_link_hash_entry *hash
5986 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5987 FALSE, FALSE, TRUE);
5988 /* If the symbol was referenced and not defined, define it. */
5989 if (hash != NULL
5990 && (hash->root.type == bfd_link_hash_new
5991 || hash->root.type == bfd_link_hash_undefined
5992 || hash->root.type == bfd_link_hash_undefweak
5993 || hash->root.type == bfd_link_hash_common))
5994 {
5995 asection *s = NULL;
5996 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr;
5997
5998 if (phdr_load_seg->count != 0)
5999 /* The segment contains sections, so use the first one. */
6000 s = phdr_load_seg->sections[0];
6001 else
6002 /* Use the first (i.e. lowest-addressed) section in any segment. */
6003 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6004 if (m->p_type == PT_LOAD && m->count != 0)
6005 {
6006 s = m->sections[0];
6007 break;
6008 }
6009
6010 if (s != NULL)
6011 {
6012 hash->root.u.def.value = filehdr_vaddr - s->vma;
6013 hash->root.u.def.section = s;
6014 }
6015 else
6016 {
6017 hash->root.u.def.value = filehdr_vaddr;
6018 hash->root.u.def.section = bfd_abs_section_ptr;
6019 }
6020
6021 hash->root.type = bfd_link_hash_defined;
6022 hash->def_regular = 1;
6023 hash->non_elf = 0;
6024 }
6025 }
6026
f3520d2f
AM
6027 return TRUE;
6028}
6029
1faa385f
NC
6030/* Determine if a bfd is a debuginfo file. Unfortunately there
6031 is no defined method for detecting such files, so we have to
6032 use heuristics instead. */
6033
6034bfd_boolean
6035is_debuginfo_file (bfd *abfd)
6036{
6037 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6038 return FALSE;
6039
6040 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6041 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6042 Elf_Internal_Shdr **headerp;
6043
6044 for (headerp = start_headers; headerp < end_headers; headerp ++)
6045 {
6046 Elf_Internal_Shdr *header = * headerp;
6047
6048 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6049 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6050 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6051 && header->sh_type != SHT_NOBITS
6052 && header->sh_type != SHT_NOTE)
6053 return FALSE;
6054 }
6055
6056 return TRUE;
6057}
6058
1ff6de03
NA
6059/* Assign file positions for the other sections, except for compressed debugging
6060 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
f3520d2f
AM
6061
6062static bfd_boolean
6063assign_file_positions_for_non_load_sections (bfd *abfd,
6064 struct bfd_link_info *link_info)
6065{
6066 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6067 Elf_Internal_Shdr **i_shdrpp;
e06efbf1 6068 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
f3520d2f
AM
6069 Elf_Internal_Phdr *phdrs;
6070 Elf_Internal_Phdr *p;
6071 struct elf_segment_map *m;
f3520d2f 6072 file_ptr off;
f3520d2f 6073
5c182d5f 6074 i_shdrpp = elf_elfsections (abfd);
e06efbf1 6075 end_hdrpp = i_shdrpp + elf_numsections (abfd);
12bd6957 6076 off = elf_next_file_pos (abfd);
e06efbf1 6077 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5c182d5f 6078 {
5c182d5f
AM
6079 Elf_Internal_Shdr *hdr;
6080
6081 hdr = *hdrpp;
6082 if (hdr->bfd_section != NULL
252e386e
AM
6083 && (hdr->bfd_section->filepos != 0
6084 || (hdr->sh_type == SHT_NOBITS
6085 && hdr->contents == NULL)))
627b32bc 6086 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5c182d5f
AM
6087 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6088 {
1faa385f
NC
6089 if (hdr->sh_size != 0
6090 /* PR 24717 - debuginfo files are known to be not strictly
6091 compliant with the ELF standard. In particular they often
6092 have .note.gnu.property sections that are outside of any
6093 loadable segment. This is not a problem for such files,
6094 so do not warn about them. */
6095 && ! is_debuginfo_file (abfd))
4eca0228 6096 _bfd_error_handler
695344c0 6097 /* xgettext:c-format */
871b3ab2 6098 (_("%pB: warning: allocated section `%s' not in segment"),
e8d2ba53
AM
6099 abfd,
6100 (hdr->bfd_section == NULL
6101 ? "*unknown*"
6102 : hdr->bfd_section->name));
3ba71138
L
6103 /* We don't need to page align empty sections. */
6104 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5c182d5f
AM
6105 off += vma_page_aligned_bias (hdr->sh_addr, off,
6106 bed->maxpagesize);
6107 else
6108 off += vma_page_aligned_bias (hdr->sh_addr, off,
6109 hdr->sh_addralign);
6110 off = _bfd_elf_assign_file_position_for_section (hdr, off,
6111 FALSE);
6112 }
6113 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6114 && hdr->bfd_section == NULL)
1ff6de03
NA
6115 /* We don't know the offset of these sections yet: their size has
6116 not been decided. */
0ce398f1 6117 || (hdr->bfd_section != NULL
1ff6de03
NA
6118 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6119 || (bfd_section_is_ctf (hdr->bfd_section)
6120 && abfd->is_linker_output)))
12bd6957 6121 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6a40cf0c
NC
6122 || (elf_symtab_shndx_list (abfd) != NULL
6123 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6124 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6125 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5c182d5f
AM
6126 hdr->sh_offset = -1;
6127 else
6128 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5c182d5f 6129 }
30fe1832 6130 elf_next_file_pos (abfd) = off;
5c182d5f 6131
252b5132
RH
6132 /* Now that we have set the section file positions, we can set up
6133 the file positions for the non PT_LOAD segments. */
f3520d2f 6134 phdrs = elf_tdata (abfd)->phdr;
12bd6957 6135 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
252b5132 6136 {
129af99f 6137 if (p->p_type == PT_GNU_RELRO)
252b5132 6138 {
f2731e0c 6139 bfd_vma start, end;
01f7e10c 6140 bfd_boolean ok;
1ea63fd2 6141
129af99f 6142 if (link_info != NULL)
8c37241b 6143 {
129af99f 6144 /* During linking the range of the RELRO segment is passed
f2731e0c
AM
6145 in link_info. Note that there may be padding between
6146 relro_start and the first RELRO section. */
6147 start = link_info->relro_start;
6148 end = link_info->relro_end;
6149 }
6150 else if (m->count != 0)
6151 {
6152 if (!m->p_size_valid)
6153 abort ();
6154 start = m->sections[0]->vma;
6155 end = start + m->p_size;
6156 }
6157 else
6158 {
6159 start = 0;
6160 end = 0;
6161 }
6162
01f7e10c 6163 ok = FALSE;
f2731e0c
AM
6164 if (start < end)
6165 {
6166 struct elf_segment_map *lm;
6167 const Elf_Internal_Phdr *lp;
6168 unsigned int i;
6169
6170 /* Find a LOAD segment containing a section in the RELRO
6171 segment. */
12bd6957 6172 for (lm = elf_seg_map (abfd), lp = phdrs;
3146fac4
AM
6173 lm != NULL;
6174 lm = lm->next, lp++)
8c37241b
JJ
6175 {
6176 if (lp->p_type == PT_LOAD
3146fac4 6177 && lm->count != 0
dbc88fc1
AM
6178 && (lm->sections[lm->count - 1]->vma
6179 + (!IS_TBSS (lm->sections[lm->count - 1])
6180 ? lm->sections[lm->count - 1]->size
6181 : 0)) > start
f2731e0c 6182 && lm->sections[0]->vma < end)
8c37241b
JJ
6183 break;
6184 }
f2731e0c 6185
01f7e10c 6186 if (lm != NULL)
129af99f 6187 {
01f7e10c
AM
6188 /* Find the section starting the RELRO segment. */
6189 for (i = 0; i < lm->count; i++)
6190 {
6191 asection *s = lm->sections[i];
6192 if (s->vma >= start
6193 && s->vma < end
6194 && s->size != 0)
6195 break;
6196 }
6197
6198 if (i < lm->count)
6199 {
6200 p->p_vaddr = lm->sections[i]->vma;
6201 p->p_paddr = lm->sections[i]->lma;
6202 p->p_offset = lm->sections[i]->filepos;
6203 p->p_memsz = end - p->p_vaddr;
6204 p->p_filesz = p->p_memsz;
6205
6206 /* The RELRO segment typically ends a few bytes
6207 into .got.plt but other layouts are possible.
6208 In cases where the end does not match any
6209 loaded section (for instance is in file
6210 padding), trim p_filesz back to correspond to
6211 the end of loaded section contents. */
6212 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6213 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6214
6215 /* Preserve the alignment and flags if they are
6216 valid. The gold linker generates RW/4 for
6217 the PT_GNU_RELRO section. It is better for
6218 objcopy/strip to honor these attributes
6219 otherwise gdb will choke when using separate
6220 debug files. */
6221 if (!m->p_align_valid)
6222 p->p_align = 1;
6223 if (!m->p_flags_valid)
6224 p->p_flags = PF_R;
6225 ok = TRUE;
6226 }
129af99f 6227 }
b84a33b5 6228 }
01f7e10c
AM
6229 if (link_info != NULL)
6230 BFD_ASSERT (ok);
6231 if (!ok)
6232 memset (p, 0, sizeof *p);
129af99f 6233 }
04c3a755
NS
6234 else if (p->p_type == PT_GNU_STACK)
6235 {
6236 if (m->p_size_valid)
6237 p->p_memsz = m->p_size;
6238 }
129af99f
AS
6239 else if (m->count != 0)
6240 {
e06efbf1 6241 unsigned int i;
1a9ccd70 6242
129af99f
AS
6243 if (p->p_type != PT_LOAD
6244 && (p->p_type != PT_NOTE
6245 || bfd_get_format (abfd) != bfd_core))
6246 {
1a9ccd70
NC
6247 /* A user specified segment layout may include a PHDR
6248 segment that overlaps with a LOAD segment... */
6249 if (p->p_type == PT_PHDR)
6250 {
6251 m->count = 0;
6252 continue;
6253 }
6254
c86934ce
NC
6255 if (m->includes_filehdr || m->includes_phdrs)
6256 {
b1fa9dd6 6257 /* PR 17512: file: 2195325e. */
4eca0228 6258 _bfd_error_handler
871b3ab2 6259 (_("%pB: error: non-load segment %d includes file header "
76cfced5
AM
6260 "and/or program header"),
6261 abfd, (int) (p - phdrs));
c86934ce
NC
6262 return FALSE;
6263 }
129af99f 6264
86b2281f 6265 p->p_filesz = 0;
129af99f 6266 p->p_offset = m->sections[0]->filepos;
86b2281f
AM
6267 for (i = m->count; i-- != 0;)
6268 {
6269 asection *sect = m->sections[i];
6270 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6271 if (hdr->sh_type != SHT_NOBITS)
6272 {
6273 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6274 + hdr->sh_size);
6275 break;
6276 }
6277 }
129af99f
AS
6278 }
6279 }
252b5132
RH
6280 }
6281
b34976b6 6282 return TRUE;
252b5132
RH
6283}
6284
6a40cf0c
NC
6285static elf_section_list *
6286find_section_in_list (unsigned int i, elf_section_list * list)
6287{
6288 for (;list != NULL; list = list->next)
6289 if (list->ndx == i)
6290 break;
6291 return list;
6292}
6293
252b5132
RH
6294/* Work out the file positions of all the sections. This is called by
6295 _bfd_elf_compute_section_file_positions. All the section sizes and
6296 VMAs must be known before this is called.
6297
e0638f70 6298 Reloc sections come in two flavours: Those processed specially as
1ff6de03
NA
6299 "side-channel" data attached to a section to which they apply, and those that
6300 bfd doesn't process as relocations. The latter sort are stored in a normal
6301 bfd section by bfd_section_from_shdr. We don't consider the former sort
6302 here, unless they form part of the loadable image. Reloc sections not
6303 assigned here (and compressed debugging sections and CTF sections which
6304 nothing else in the file can rely upon) will be handled later by
e0638f70 6305 assign_file_positions_for_relocs.
252b5132
RH
6306
6307 We also don't set the positions of the .symtab and .strtab here. */
6308
b34976b6 6309static bfd_boolean
c84fca4d
AO
6310assign_file_positions_except_relocs (bfd *abfd,
6311 struct bfd_link_info *link_info)
252b5132 6312{
5c182d5f
AM
6313 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6314 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
9c5bfbb7 6315 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6d6c25c8 6316 unsigned int alloc;
252b5132
RH
6317
6318 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6319 && bfd_get_format (abfd) != bfd_core)
6320 {
5c182d5f
AM
6321 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6322 unsigned int num_sec = elf_numsections (abfd);
252b5132
RH
6323 Elf_Internal_Shdr **hdrpp;
6324 unsigned int i;
a485e98e 6325 file_ptr off;
252b5132
RH
6326
6327 /* Start after the ELF header. */
6328 off = i_ehdrp->e_ehsize;
6329
6330 /* We are not creating an executable, which means that we are
6331 not creating a program header, and that the actual order of
6332 the sections in the file is unimportant. */
9ad5cbcf 6333 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
252b5132
RH
6334 {
6335 Elf_Internal_Shdr *hdr;
6336
6337 hdr = *hdrpp;
e0638f70
AM
6338 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6339 && hdr->bfd_section == NULL)
1ff6de03
NA
6340 /* Do not assign offsets for these sections yet: we don't know
6341 their sizes. */
0ce398f1 6342 || (hdr->bfd_section != NULL
1ff6de03
NA
6343 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6344 || (bfd_section_is_ctf (hdr->bfd_section)
6345 && abfd->is_linker_output)))
12bd6957 6346 || i == elf_onesymtab (abfd)
6a40cf0c
NC
6347 || (elf_symtab_shndx_list (abfd) != NULL
6348 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
3e19fb8f
L
6349 || i == elf_strtab_sec (abfd)
6350 || i == elf_shstrtab_sec (abfd))
252b5132
RH
6351 {
6352 hdr->sh_offset = -1;
252b5132 6353 }
9ad5cbcf 6354 else
b34976b6 6355 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
252b5132 6356 }
a485e98e
AM
6357
6358 elf_next_file_pos (abfd) = off;
6d6c25c8 6359 elf_program_header_size (abfd) = 0;
252b5132
RH
6360 }
6361 else
6362 {
252b5132 6363 /* Assign file positions for the loaded sections based on the
08a40648 6364 assignment of sections to segments. */
f3520d2f
AM
6365 if (!assign_file_positions_for_load_sections (abfd, link_info))
6366 return FALSE;
6367
6368 /* And for non-load sections. */
6369 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6370 return FALSE;
6d6c25c8 6371 }
f3520d2f 6372
6d6c25c8
AM
6373 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
6374 return FALSE;
1a9ccd70 6375
6d6c25c8
AM
6376 /* Write out the program headers. */
6377 alloc = i_ehdrp->e_phnum;
6378 if (alloc != 0)
6379 {
30fe1832 6380 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
cd584857
NC
6381 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6382 return FALSE;
252b5132
RH
6383 }
6384
b34976b6 6385 return TRUE;
252b5132
RH
6386}
6387
b34976b6 6388static bfd_boolean
217aa764 6389prep_headers (bfd *abfd)
252b5132 6390{
3d540e93 6391 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
2b0f7ef9 6392 struct elf_strtab_hash *shstrtab;
9c5bfbb7 6393 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132
RH
6394
6395 i_ehdrp = elf_elfheader (abfd);
252b5132 6396
2b0f7ef9 6397 shstrtab = _bfd_elf_strtab_init ();
252b5132 6398 if (shstrtab == NULL)
b34976b6 6399 return FALSE;
252b5132
RH
6400
6401 elf_shstrtab (abfd) = shstrtab;
6402
6403 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6404 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6405 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6406 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6407
6408 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6409 i_ehdrp->e_ident[EI_DATA] =
6410 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6411 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6412
252b5132
RH
6413 if ((abfd->flags & DYNAMIC) != 0)
6414 i_ehdrp->e_type = ET_DYN;
6415 else if ((abfd->flags & EXEC_P) != 0)
6416 i_ehdrp->e_type = ET_EXEC;
6417 else if (bfd_get_format (abfd) == bfd_core)
6418 i_ehdrp->e_type = ET_CORE;
6419 else
6420 i_ehdrp->e_type = ET_REL;
6421
6422 switch (bfd_get_arch (abfd))
6423 {
6424 case bfd_arch_unknown:
6425 i_ehdrp->e_machine = EM_NONE;
6426 break;
aa4f99bb
AO
6427
6428 /* There used to be a long list of cases here, each one setting
6429 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6430 in the corresponding bfd definition. To avoid duplication,
6431 the switch was removed. Machines that need special handling
6432 can generally do it in elf_backend_final_write_processing(),
6433 unless they need the information earlier than the final write.
6434 Such need can generally be supplied by replacing the tests for
6435 e_machine with the conditions used to determine it. */
252b5132 6436 default:
9c5bfbb7
AM
6437 i_ehdrp->e_machine = bed->elf_machine_code;
6438 }
aa4f99bb 6439
252b5132
RH
6440 i_ehdrp->e_version = bed->s->ev_current;
6441 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6442
c044fabd 6443 /* No program header, for now. */
252b5132
RH
6444 i_ehdrp->e_phoff = 0;
6445 i_ehdrp->e_phentsize = 0;
6446 i_ehdrp->e_phnum = 0;
6447
c044fabd 6448 /* Each bfd section is section header entry. */
252b5132
RH
6449 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6450 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6451
c044fabd 6452 /* If we're building an executable, we'll need a program header table. */
252b5132 6453 if (abfd->flags & EXEC_P)
0e71e495
BE
6454 /* It all happens later. */
6455 ;
252b5132
RH
6456 else
6457 {
6458 i_ehdrp->e_phentsize = 0;
252b5132
RH
6459 i_ehdrp->e_phoff = 0;
6460 }
6461
6462 elf_tdata (abfd)->symtab_hdr.sh_name =
b34976b6 6463 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
252b5132 6464 elf_tdata (abfd)->strtab_hdr.sh_name =
b34976b6 6465 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
252b5132 6466 elf_tdata (abfd)->shstrtab_hdr.sh_name =
b34976b6 6467 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
252b5132 6468 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
17ca87fc 6469 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
252b5132 6470 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
b34976b6 6471 return FALSE;
252b5132 6472
b34976b6 6473 return TRUE;
252b5132
RH
6474}
6475
6d6c25c8
AM
6476/* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6477
6478 FIXME: We used to have code here to sort the PT_LOAD segments into
6479 ascending order, as per the ELF spec. But this breaks some programs,
6480 including the Linux kernel. But really either the spec should be
6481 changed or the programs updated. */
6482
6483bfd_boolean
6484_bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6485{
6486 if (link_info != NULL && bfd_link_pie (link_info))
6487 {
6488 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6489 unsigned int num_segments = i_ehdrp->e_phnum;
6490 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6491 Elf_Internal_Phdr *segment = tdata->phdr;
6492 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6493
6494 /* Find the lowest p_vaddr in PT_LOAD segments. */
6495 bfd_vma p_vaddr = (bfd_vma) -1;
6496 for (; segment < end_segment; segment++)
6497 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6498 p_vaddr = segment->p_vaddr;
6499
6500 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6501 segments is non-zero. */
6502 if (p_vaddr)
6503 i_ehdrp->e_type = ET_EXEC;
6504 }
6505 return TRUE;
6506}
6507
252b5132 6508/* Assign file positions for all the reloc sections which are not part
a485e98e 6509 of the loadable file image, and the file position of section headers. */
252b5132 6510
0ce398f1
L
6511static bfd_boolean
6512_bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
252b5132
RH
6513{
6514 file_ptr off;
e06efbf1 6515 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
3e19fb8f 6516 Elf_Internal_Shdr *shdrp;
a485e98e
AM
6517 Elf_Internal_Ehdr *i_ehdrp;
6518 const struct elf_backend_data *bed;
252b5132 6519
12bd6957 6520 off = elf_next_file_pos (abfd);
252b5132 6521
e06efbf1
L
6522 shdrpp = elf_elfsections (abfd);
6523 end_shdrpp = shdrpp + elf_numsections (abfd);
6524 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
252b5132 6525 {
252b5132 6526 shdrp = *shdrpp;
0ce398f1
L
6527 if (shdrp->sh_offset == -1)
6528 {
3e19fb8f 6529 asection *sec = shdrp->bfd_section;
0ce398f1
L
6530 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6531 || shdrp->sh_type == SHT_RELA);
1ff6de03 6532 bfd_boolean is_ctf = sec && bfd_section_is_ctf (sec);
0ce398f1 6533 if (is_rel
1ff6de03 6534 || is_ctf
3e19fb8f 6535 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
0ce398f1 6536 {
1ff6de03 6537 if (!is_rel && !is_ctf)
0ce398f1 6538 {
3e19fb8f
L
6539 const char *name = sec->name;
6540 struct bfd_elf_section_data *d;
6541
0ce398f1 6542 /* Compress DWARF debug sections. */
3e19fb8f 6543 if (!bfd_compress_section (abfd, sec,
0ce398f1
L
6544 shdrp->contents))
6545 return FALSE;
3e19fb8f
L
6546
6547 if (sec->compress_status == COMPRESS_SECTION_DONE
6548 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6549 {
6550 /* If section is compressed with zlib-gnu, convert
6551 section name from .debug_* to .zdebug_*. */
6552 char *new_name
6553 = convert_debug_to_zdebug (abfd, name);
6554 if (new_name == NULL)
6555 return FALSE;
6556 name = new_name;
6557 }
dd905818 6558 /* Add section name to section name section. */
3e19fb8f
L
6559 if (shdrp->sh_name != (unsigned int) -1)
6560 abort ();
6561 shdrp->sh_name
6562 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6563 name, FALSE);
6564 d = elf_section_data (sec);
6565
dd905818 6566 /* Add reloc section name to section name section. */
3e19fb8f
L
6567 if (d->rel.hdr
6568 && !_bfd_elf_set_reloc_sh_name (abfd,
6569 d->rel.hdr,
6570 name, FALSE))
6571 return FALSE;
6572 if (d->rela.hdr
6573 && !_bfd_elf_set_reloc_sh_name (abfd,
6574 d->rela.hdr,
91cb26da 6575 name, TRUE))
3e19fb8f
L
6576 return FALSE;
6577
0ce398f1 6578 /* Update section size and contents. */
3e19fb8f
L
6579 shdrp->sh_size = sec->size;
6580 shdrp->contents = sec->contents;
0ce398f1
L
6581 shdrp->bfd_section->contents = NULL;
6582 }
1ff6de03
NA
6583 else if (is_ctf)
6584 {
6585 /* Update section size and contents. */
6586 shdrp->sh_size = sec->size;
6587 shdrp->contents = sec->contents;
6588 }
6589
0ce398f1
L
6590 off = _bfd_elf_assign_file_position_for_section (shdrp,
6591 off,
6592 TRUE);
6593 }
6594 }
252b5132
RH
6595 }
6596
3e19fb8f
L
6597 /* Place section name section after DWARF debug sections have been
6598 compressed. */
6599 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6600 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6601 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6602 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6603
6604 /* Place the section headers. */
a485e98e
AM
6605 i_ehdrp = elf_elfheader (abfd);
6606 bed = get_elf_backend_data (abfd);
6607 off = align_file_position (off, 1 << bed->s->log_file_align);
6608 i_ehdrp->e_shoff = off;
6609 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
12bd6957 6610 elf_next_file_pos (abfd) = off;
0ce398f1
L
6611
6612 return TRUE;
252b5132
RH
6613}
6614
b34976b6 6615bfd_boolean
217aa764 6616_bfd_elf_write_object_contents (bfd *abfd)
252b5132 6617{
9c5bfbb7 6618 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 6619 Elf_Internal_Shdr **i_shdrp;
b34976b6 6620 bfd_boolean failed;
9ad5cbcf 6621 unsigned int count, num_sec;
30e8ee25 6622 struct elf_obj_tdata *t;
252b5132
RH
6623
6624 if (! abfd->output_has_begun
217aa764 6625 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 6626 return FALSE;
db727370
JL
6627 /* Do not rewrite ELF data when the BFD has been opened for update.
6628 abfd->output_has_begun was set to TRUE on opening, so creation of new
6629 sections, and modification of existing section sizes was restricted.
6630 This means the ELF header, program headers and section headers can't have
6631 changed.
6632 If the contents of any sections has been modified, then those changes have
6633 already been written to the BFD. */
6634 else if (abfd->direction == both_direction)
6635 {
6636 BFD_ASSERT (abfd->output_has_begun);
6637 return TRUE;
6638 }
252b5132
RH
6639
6640 i_shdrp = elf_elfsections (abfd);
252b5132 6641
b34976b6 6642 failed = FALSE;
252b5132
RH
6643 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6644 if (failed)
b34976b6 6645 return FALSE;
252b5132 6646
0ce398f1
L
6647 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6648 return FALSE;
252b5132 6649
c044fabd 6650 /* After writing the headers, we need to write the sections too... */
9ad5cbcf
AM
6651 num_sec = elf_numsections (abfd);
6652 for (count = 1; count < num_sec; count++)
252b5132 6653 {
3e19fb8f
L
6654 i_shdrp[count]->sh_name
6655 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6656 i_shdrp[count]->sh_name);
252b5132 6657 if (bed->elf_backend_section_processing)
75506100
MR
6658 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6659 return FALSE;
252b5132
RH
6660 if (i_shdrp[count]->contents)
6661 {
dc810e39
AM
6662 bfd_size_type amt = i_shdrp[count]->sh_size;
6663
252b5132 6664 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
dc810e39 6665 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
b34976b6 6666 return FALSE;
252b5132
RH
6667 }
6668 }
6669
6670 /* Write out the section header names. */
30e8ee25 6671 t = elf_tdata (abfd);
26ae6d5e 6672 if (elf_shstrtab (abfd) != NULL
30e8ee25 6673 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
08a40648 6674 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
b34976b6 6675 return FALSE;
252b5132 6676
cc364be6
AM
6677 if (!(*bed->elf_backend_final_write_processing) (abfd))
6678 return FALSE;
252b5132 6679
ff59fc36
RM
6680 if (!bed->s->write_shdrs_and_ehdr (abfd))
6681 return FALSE;
6682
6683 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
c0355132
AM
6684 if (t->o->build_id.after_write_object_contents != NULL)
6685 return (*t->o->build_id.after_write_object_contents) (abfd);
ff59fc36
RM
6686
6687 return TRUE;
252b5132
RH
6688}
6689
b34976b6 6690bfd_boolean
217aa764 6691_bfd_elf_write_corefile_contents (bfd *abfd)
252b5132 6692{
c044fabd 6693 /* Hopefully this can be done just like an object file. */
252b5132
RH
6694 return _bfd_elf_write_object_contents (abfd);
6695}
c044fabd
KH
6696
6697/* Given a section, search the header to find them. */
6698
cb33740c 6699unsigned int
198beae2 6700_bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
252b5132 6701{
9c5bfbb7 6702 const struct elf_backend_data *bed;
91d6fa6a 6703 unsigned int sec_index;
252b5132 6704
9ad5cbcf
AM
6705 if (elf_section_data (asect) != NULL
6706 && elf_section_data (asect)->this_idx != 0)
6707 return elf_section_data (asect)->this_idx;
6708
6709 if (bfd_is_abs_section (asect))
91d6fa6a 6710 sec_index = SHN_ABS;
af746e92 6711 else if (bfd_is_com_section (asect))
91d6fa6a 6712 sec_index = SHN_COMMON;
af746e92 6713 else if (bfd_is_und_section (asect))
91d6fa6a 6714 sec_index = SHN_UNDEF;
af746e92 6715 else
91d6fa6a 6716 sec_index = SHN_BAD;
252b5132 6717
af746e92 6718 bed = get_elf_backend_data (abfd);
252b5132
RH
6719 if (bed->elf_backend_section_from_bfd_section)
6720 {
91d6fa6a 6721 int retval = sec_index;
9ad5cbcf 6722
af746e92
AM
6723 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6724 return retval;
252b5132
RH
6725 }
6726
91d6fa6a 6727 if (sec_index == SHN_BAD)
af746e92 6728 bfd_set_error (bfd_error_nonrepresentable_section);
252b5132 6729
91d6fa6a 6730 return sec_index;
252b5132
RH
6731}
6732
6733/* Given a BFD symbol, return the index in the ELF symbol table, or -1
6734 on error. */
6735
6736int
217aa764 6737_bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
252b5132
RH
6738{
6739 asymbol *asym_ptr = *asym_ptr_ptr;
6740 int idx;
6741 flagword flags = asym_ptr->flags;
6742
6743 /* When gas creates relocations against local labels, it creates its
6744 own symbol for the section, but does put the symbol into the
6745 symbol chain, so udata is 0. When the linker is generating
6746 relocatable output, this section symbol may be for one of the
6747 input sections rather than the output section. */
6748 if (asym_ptr->udata.i == 0
6749 && (flags & BSF_SECTION_SYM)
6750 && asym_ptr->section)
6751 {
5372391b 6752 asection *sec;
252b5132
RH
6753 int indx;
6754
5372391b
AM
6755 sec = asym_ptr->section;
6756 if (sec->owner != abfd && sec->output_section != NULL)
6757 sec = sec->output_section;
6758 if (sec->owner == abfd
6759 && (indx = sec->index) < elf_num_section_syms (abfd)
4e89ac30 6760 && elf_section_syms (abfd)[indx] != NULL)
252b5132
RH
6761 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6762 }
6763
6764 idx = asym_ptr->udata.i;
6765
6766 if (idx == 0)
6767 {
6768 /* This case can occur when using --strip-symbol on a symbol
08a40648 6769 which is used in a relocation entry. */
4eca0228 6770 _bfd_error_handler
695344c0 6771 /* xgettext:c-format */
871b3ab2 6772 (_("%pB: symbol `%s' required but not present"),
d003868e 6773 abfd, bfd_asymbol_name (asym_ptr));
252b5132
RH
6774 bfd_set_error (bfd_error_no_symbols);
6775 return -1;
6776 }
6777
6778#if DEBUG & 4
6779 {
6780 fprintf (stderr,
cd9af601
AM
6781 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6782 (long) asym_ptr, asym_ptr->name, idx, flags);
252b5132
RH
6783 fflush (stderr);
6784 }
6785#endif
6786
6787 return idx;
6788}
6789
84d1d650 6790/* Rewrite program header information. */
252b5132 6791
b34976b6 6792static bfd_boolean
84d1d650 6793rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
252b5132 6794{
b34976b6
AM
6795 Elf_Internal_Ehdr *iehdr;
6796 struct elf_segment_map *map;
6797 struct elf_segment_map *map_first;
6798 struct elf_segment_map **pointer_to_map;
6799 Elf_Internal_Phdr *segment;
6800 asection *section;
6801 unsigned int i;
6802 unsigned int num_segments;
6803 bfd_boolean phdr_included = FALSE;
5c44b38e 6804 bfd_boolean p_paddr_valid;
b34976b6
AM
6805 bfd_vma maxpagesize;
6806 struct elf_segment_map *phdr_adjust_seg = NULL;
6807 unsigned int phdr_adjust_num = 0;
9c5bfbb7 6808 const struct elf_backend_data *bed;
bc67d8a6 6809
caf47ea6 6810 bed = get_elf_backend_data (ibfd);
252b5132
RH
6811 iehdr = elf_elfheader (ibfd);
6812
bc67d8a6 6813 map_first = NULL;
c044fabd 6814 pointer_to_map = &map_first;
252b5132
RH
6815
6816 num_segments = elf_elfheader (ibfd)->e_phnum;
bc67d8a6
NC
6817 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6818
6819 /* Returns the end address of the segment + 1. */
aecc8f8a
AM
6820#define SEGMENT_END(segment, start) \
6821 (start + (segment->p_memsz > segment->p_filesz \
6822 ? segment->p_memsz : segment->p_filesz))
bc67d8a6 6823
eecdbe52
JJ
6824#define SECTION_SIZE(section, segment) \
6825 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6826 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
eea6121a 6827 ? section->size : 0)
eecdbe52 6828
b34976b6 6829 /* Returns TRUE if the given section is contained within
bc67d8a6 6830 the given segment. VMA addresses are compared. */
aecc8f8a
AM
6831#define IS_CONTAINED_BY_VMA(section, segment) \
6832 (section->vma >= segment->p_vaddr \
eecdbe52 6833 && (section->vma + SECTION_SIZE (section, segment) \
aecc8f8a 6834 <= (SEGMENT_END (segment, segment->p_vaddr))))
c044fabd 6835
b34976b6 6836 /* Returns TRUE if the given section is contained within
bc67d8a6 6837 the given segment. LMA addresses are compared. */
aecc8f8a
AM
6838#define IS_CONTAINED_BY_LMA(section, segment, base) \
6839 (section->lma >= base \
beab4532 6840 && (section->lma + SECTION_SIZE (section, segment) >= section->lma) \
eecdbe52 6841 && (section->lma + SECTION_SIZE (section, segment) \
aecc8f8a 6842 <= SEGMENT_END (segment, base)))
252b5132 6843
0efc80c8
L
6844 /* Handle PT_NOTE segment. */
6845#define IS_NOTE(p, s) \
aecc8f8a 6846 (p->p_type == PT_NOTE \
0efc80c8 6847 && elf_section_type (s) == SHT_NOTE \
aecc8f8a 6848 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6849 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6850 <= p->p_offset + p->p_filesz))
252b5132 6851
0efc80c8
L
6852 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6853 etc. */
6854#define IS_COREFILE_NOTE(p, s) \
6855 (IS_NOTE (p, s) \
6856 && bfd_get_format (ibfd) == bfd_core \
6857 && s->vma == 0 \
6858 && s->lma == 0)
6859
252b5132
RH
6860 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6861 linker, which generates a PT_INTERP section with p_vaddr and
6862 p_memsz set to 0. */
aecc8f8a
AM
6863#define IS_SOLARIS_PT_INTERP(p, s) \
6864 (p->p_vaddr == 0 \
6865 && p->p_paddr == 0 \
6866 && p->p_memsz == 0 \
6867 && p->p_filesz > 0 \
6868 && (s->flags & SEC_HAS_CONTENTS) != 0 \
eea6121a 6869 && s->size > 0 \
aecc8f8a 6870 && (bfd_vma) s->filepos >= p->p_offset \
cb3ff1e5 6871 && ((bfd_vma) s->filepos + s->size \
aecc8f8a 6872 <= p->p_offset + p->p_filesz))
5c440b1e 6873
bc67d8a6
NC
6874 /* Decide if the given section should be included in the given segment.
6875 A section will be included if:
f5ffc919 6876 1. It is within the address space of the segment -- we use the LMA
08a40648 6877 if that is set for the segment and the VMA otherwise,
0efc80c8 6878 2. It is an allocated section or a NOTE section in a PT_NOTE
d324f6d6 6879 segment.
bc67d8a6 6880 3. There is an output section associated with it,
eecdbe52 6881 4. The section has not already been allocated to a previous segment.
2b05f1b7 6882 5. PT_GNU_STACK segments do not include any sections.
03394ac9 6883 6. PT_TLS segment includes only SHF_TLS sections.
6f79b219
JJ
6884 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6885 8. PT_DYNAMIC should not contain empty sections at the beginning
08a40648 6886 (with the possible exception of .dynamic). */
9f17e2a6 6887#define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
2b05f1b7
L
6888 ((((segment->p_paddr \
6889 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
6890 : IS_CONTAINED_BY_VMA (section, segment)) \
6891 && (section->flags & SEC_ALLOC) != 0) \
0efc80c8 6892 || IS_NOTE (segment, section)) \
2b05f1b7
L
6893 && segment->p_type != PT_GNU_STACK \
6894 && (segment->p_type != PT_TLS \
6895 || (section->flags & SEC_THREAD_LOCAL)) \
6896 && (segment->p_type == PT_LOAD \
6897 || segment->p_type == PT_TLS \
6898 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6899 && (segment->p_type != PT_DYNAMIC \
6900 || SECTION_SIZE (section, segment) > 0 \
6901 || (segment->p_paddr \
6902 ? segment->p_paddr != section->lma \
6903 : segment->p_vaddr != section->vma) \
fd361982 6904 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
9933dc52 6905 && (segment->p_type != PT_LOAD || !section->segment_mark))
bc67d8a6 6906
9f17e2a6
L
6907/* If the output section of a section in the input segment is NULL,
6908 it is removed from the corresponding output segment. */
6909#define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
6910 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
6911 && section->output_section != NULL)
6912
b34976b6 6913 /* Returns TRUE iff seg1 starts after the end of seg2. */
b5f852ea
NC
6914#define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6915 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6916
6917 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6918 their VMA address ranges and their LMA address ranges overlap.
6919 It is possible to have overlapping VMA ranges without overlapping LMA
6920 ranges. RedBoot images for example can have both .data and .bss mapped
6921 to the same VMA range, but with the .data section mapped to a different
6922 LMA. */
aecc8f8a 6923#define SEGMENT_OVERLAPS(seg1, seg2) \
b5f852ea 6924 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
08a40648 6925 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
b5f852ea 6926 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
08a40648 6927 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
bc67d8a6
NC
6928
6929 /* Initialise the segment mark field. */
6930 for (section = ibfd->sections; section != NULL; section = section->next)
b34976b6 6931 section->segment_mark = FALSE;
bc67d8a6 6932
5c44b38e
AM
6933 /* The Solaris linker creates program headers in which all the
6934 p_paddr fields are zero. When we try to objcopy or strip such a
6935 file, we get confused. Check for this case, and if we find it
6936 don't set the p_paddr_valid fields. */
6937 p_paddr_valid = FALSE;
6938 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6939 i < num_segments;
6940 i++, segment++)
6941 if (segment->p_paddr != 0)
6942 {
6943 p_paddr_valid = TRUE;
6944 break;
6945 }
6946
252b5132 6947 /* Scan through the segments specified in the program header
bc67d8a6 6948 of the input BFD. For this first scan we look for overlaps
9ad5cbcf 6949 in the loadable segments. These can be created by weird
aecc8f8a 6950 parameters to objcopy. Also, fix some solaris weirdness. */
bc67d8a6
NC
6951 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6952 i < num_segments;
c044fabd 6953 i++, segment++)
252b5132 6954 {
252b5132 6955 unsigned int j;
c044fabd 6956 Elf_Internal_Phdr *segment2;
252b5132 6957
aecc8f8a
AM
6958 if (segment->p_type == PT_INTERP)
6959 for (section = ibfd->sections; section; section = section->next)
6960 if (IS_SOLARIS_PT_INTERP (segment, section))
6961 {
6962 /* Mininal change so that the normal section to segment
4cc11e76 6963 assignment code will work. */
aecc8f8a
AM
6964 segment->p_vaddr = section->vma;
6965 break;
6966 }
6967
bc67d8a6 6968 if (segment->p_type != PT_LOAD)
b10a8ae0
L
6969 {
6970 /* Remove PT_GNU_RELRO segment. */
6971 if (segment->p_type == PT_GNU_RELRO)
6972 segment->p_type = PT_NULL;
6973 continue;
6974 }
c044fabd 6975
bc67d8a6 6976 /* Determine if this segment overlaps any previous segments. */
0067a569 6977 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
bc67d8a6
NC
6978 {
6979 bfd_signed_vma extra_length;
c044fabd 6980
bc67d8a6 6981 if (segment2->p_type != PT_LOAD
0067a569 6982 || !SEGMENT_OVERLAPS (segment, segment2))
bc67d8a6 6983 continue;
c044fabd 6984
bc67d8a6
NC
6985 /* Merge the two segments together. */
6986 if (segment2->p_vaddr < segment->p_vaddr)
6987 {
c044fabd 6988 /* Extend SEGMENT2 to include SEGMENT and then delete
08a40648 6989 SEGMENT. */
0067a569
AM
6990 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6991 - SEGMENT_END (segment2, segment2->p_vaddr));
c044fabd 6992
bc67d8a6
NC
6993 if (extra_length > 0)
6994 {
0067a569 6995 segment2->p_memsz += extra_length;
bc67d8a6
NC
6996 segment2->p_filesz += extra_length;
6997 }
c044fabd 6998
bc67d8a6 6999 segment->p_type = PT_NULL;
c044fabd 7000
bc67d8a6
NC
7001 /* Since we have deleted P we must restart the outer loop. */
7002 i = 0;
7003 segment = elf_tdata (ibfd)->phdr;
7004 break;
7005 }
7006 else
7007 {
c044fabd 7008 /* Extend SEGMENT to include SEGMENT2 and then delete
08a40648 7009 SEGMENT2. */
0067a569
AM
7010 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
7011 - SEGMENT_END (segment, segment->p_vaddr));
c044fabd 7012
bc67d8a6
NC
7013 if (extra_length > 0)
7014 {
0067a569 7015 segment->p_memsz += extra_length;
bc67d8a6
NC
7016 segment->p_filesz += extra_length;
7017 }
c044fabd 7018
bc67d8a6
NC
7019 segment2->p_type = PT_NULL;
7020 }
7021 }
7022 }
c044fabd 7023
bc67d8a6
NC
7024 /* The second scan attempts to assign sections to segments. */
7025 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7026 i < num_segments;
0067a569 7027 i++, segment++)
bc67d8a6 7028 {
0067a569
AM
7029 unsigned int section_count;
7030 asection **sections;
7031 asection *output_section;
7032 unsigned int isec;
9933dc52
AM
7033 asection *matching_lma;
7034 asection *suggested_lma;
0067a569 7035 unsigned int j;
dc810e39 7036 bfd_size_type amt;
0067a569 7037 asection *first_section;
bc67d8a6
NC
7038
7039 if (segment->p_type == PT_NULL)
7040 continue;
c044fabd 7041
9f17e2a6 7042 first_section = NULL;
bc67d8a6 7043 /* Compute how many sections might be placed into this segment. */
b5f852ea
NC
7044 for (section = ibfd->sections, section_count = 0;
7045 section != NULL;
7046 section = section->next)
9f17e2a6
L
7047 {
7048 /* Find the first section in the input segment, which may be
7049 removed from the corresponding output segment. */
7050 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
7051 {
7052 if (first_section == NULL)
7053 first_section = section;
7054 if (section->output_section != NULL)
7055 ++section_count;
7056 }
7057 }
811072d8 7058
b5f852ea
NC
7059 /* Allocate a segment map big enough to contain
7060 all of the sections we have selected. */
00bee008
AM
7061 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7062 amt += (bfd_size_type) section_count * sizeof (asection *);
a50b1753 7063 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7064 if (map == NULL)
b34976b6 7065 return FALSE;
252b5132
RH
7066
7067 /* Initialise the fields of the segment map. Default to
7068 using the physical address of the segment in the input BFD. */
0067a569
AM
7069 map->next = NULL;
7070 map->p_type = segment->p_type;
7071 map->p_flags = segment->p_flags;
bc67d8a6 7072 map->p_flags_valid = 1;
55d55ac7 7073
9f17e2a6
L
7074 /* If the first section in the input segment is removed, there is
7075 no need to preserve segment physical address in the corresponding
7076 output segment. */
945c025a 7077 if (!first_section || first_section->output_section != NULL)
9f17e2a6
L
7078 {
7079 map->p_paddr = segment->p_paddr;
5c44b38e 7080 map->p_paddr_valid = p_paddr_valid;
9f17e2a6 7081 }
252b5132
RH
7082
7083 /* Determine if this segment contains the ELF file header
7084 and if it contains the program headers themselves. */
bc67d8a6
NC
7085 map->includes_filehdr = (segment->p_offset == 0
7086 && segment->p_filesz >= iehdr->e_ehsize);
bc67d8a6 7087 map->includes_phdrs = 0;
252b5132 7088
0067a569 7089 if (!phdr_included || segment->p_type != PT_LOAD)
252b5132 7090 {
bc67d8a6
NC
7091 map->includes_phdrs =
7092 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7093 && (segment->p_offset + segment->p_filesz
252b5132
RH
7094 >= ((bfd_vma) iehdr->e_phoff
7095 + iehdr->e_phnum * iehdr->e_phentsize)));
c044fabd 7096
bc67d8a6 7097 if (segment->p_type == PT_LOAD && map->includes_phdrs)
b34976b6 7098 phdr_included = TRUE;
252b5132
RH
7099 }
7100
bc67d8a6 7101 if (section_count == 0)
252b5132
RH
7102 {
7103 /* Special segments, such as the PT_PHDR segment, may contain
7104 no sections, but ordinary, loadable segments should contain
1ed89aa9 7105 something. They are allowed by the ELF spec however, so only
07d6d2b8 7106 a warning is produced.
f98450c6
NC
7107 There is however the valid use case of embedded systems which
7108 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7109 flash memory with zeros. No warning is shown for that case. */
7110 if (segment->p_type == PT_LOAD
7111 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7112 /* xgettext:c-format */
9793eb77
AM
7113 _bfd_error_handler
7114 (_("%pB: warning: empty loadable segment detected"
7115 " at vaddr=%#" PRIx64 ", is this intentional?"),
7116 ibfd, (uint64_t) segment->p_vaddr);
252b5132 7117
5d695627 7118 map->p_vaddr_offset = segment->p_vaddr;
bc67d8a6 7119 map->count = 0;
c044fabd
KH
7120 *pointer_to_map = map;
7121 pointer_to_map = &map->next;
252b5132
RH
7122
7123 continue;
7124 }
7125
7126 /* Now scan the sections in the input BFD again and attempt
7127 to add their corresponding output sections to the segment map.
7128 The problem here is how to handle an output section which has
7129 been moved (ie had its LMA changed). There are four possibilities:
7130
7131 1. None of the sections have been moved.
7132 In this case we can continue to use the segment LMA from the
7133 input BFD.
7134
7135 2. All of the sections have been moved by the same amount.
7136 In this case we can change the segment's LMA to match the LMA
7137 of the first section.
7138
7139 3. Some of the sections have been moved, others have not.
7140 In this case those sections which have not been moved can be
7141 placed in the current segment which will have to have its size,
7142 and possibly its LMA changed, and a new segment or segments will
7143 have to be created to contain the other sections.
7144
b5f852ea 7145 4. The sections have been moved, but not by the same amount.
252b5132
RH
7146 In this case we can change the segment's LMA to match the LMA
7147 of the first section and we will have to create a new segment
7148 or segments to contain the other sections.
7149
7150 In order to save time, we allocate an array to hold the section
7151 pointers that we are interested in. As these sections get assigned
7152 to a segment, they are removed from this array. */
7153
a50b1753 7154 sections = (asection **) bfd_malloc2 (section_count, sizeof (asection *));
252b5132 7155 if (sections == NULL)
b34976b6 7156 return FALSE;
252b5132
RH
7157
7158 /* Step One: Scan for segment vs section LMA conflicts.
7159 Also add the sections to the section array allocated above.
7160 Also add the sections to the current segment. In the common
7161 case, where the sections have not been moved, this means that
7162 we have completely filled the segment, and there is nothing
7163 more to do. */
252b5132 7164 isec = 0;
9933dc52
AM
7165 matching_lma = NULL;
7166 suggested_lma = NULL;
252b5132 7167
461c4b2e 7168 for (section = first_section, j = 0;
bc67d8a6
NC
7169 section != NULL;
7170 section = section->next)
252b5132 7171 {
caf47ea6 7172 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
c0f7859b 7173 {
bc67d8a6
NC
7174 output_section = section->output_section;
7175
0067a569 7176 sections[j++] = section;
252b5132
RH
7177
7178 /* The Solaris native linker always sets p_paddr to 0.
7179 We try to catch that case here, and set it to the
5e8d7549
NC
7180 correct value. Note - some backends require that
7181 p_paddr be left as zero. */
5c44b38e 7182 if (!p_paddr_valid
4455705d 7183 && segment->p_vaddr != 0
0067a569 7184 && !bed->want_p_paddr_set_to_zero
252b5132 7185 && isec == 0
bc67d8a6 7186 && output_section->lma != 0
9933dc52
AM
7187 && (align_power (segment->p_vaddr
7188 + (map->includes_filehdr
7189 ? iehdr->e_ehsize : 0)
7190 + (map->includes_phdrs
7191 ? iehdr->e_phnum * iehdr->e_phentsize
7192 : 0),
7193 output_section->alignment_power)
7194 == output_section->vma))
bc67d8a6 7195 map->p_paddr = segment->p_vaddr;
252b5132
RH
7196
7197 /* Match up the physical address of the segment with the
7198 LMA address of the output section. */
bc67d8a6 7199 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5e8d7549 7200 || IS_COREFILE_NOTE (segment, section)
0067a569
AM
7201 || (bed->want_p_paddr_set_to_zero
7202 && IS_CONTAINED_BY_VMA (output_section, segment)))
252b5132 7203 {
9933dc52
AM
7204 if (matching_lma == NULL
7205 || output_section->lma < matching_lma->lma)
7206 matching_lma = output_section;
252b5132
RH
7207
7208 /* We assume that if the section fits within the segment
bc67d8a6 7209 then it does not overlap any other section within that
252b5132 7210 segment. */
0067a569
AM
7211 map->sections[isec++] = output_section;
7212 }
9933dc52
AM
7213 else if (suggested_lma == NULL)
7214 suggested_lma = output_section;
147d51c2
L
7215
7216 if (j == section_count)
7217 break;
252b5132
RH
7218 }
7219 }
7220
bc67d8a6 7221 BFD_ASSERT (j == section_count);
252b5132
RH
7222
7223 /* Step Two: Adjust the physical address of the current segment,
7224 if necessary. */
bc67d8a6 7225 if (isec == section_count)
252b5132
RH
7226 {
7227 /* All of the sections fitted within the segment as currently
7228 specified. This is the default case. Add the segment to
7229 the list of built segments and carry on to process the next
7230 program header in the input BFD. */
bc67d8a6 7231 map->count = section_count;
c044fabd
KH
7232 *pointer_to_map = map;
7233 pointer_to_map = &map->next;
08a40648 7234
5c44b38e 7235 if (p_paddr_valid
30fe1832
AM
7236 && !bed->want_p_paddr_set_to_zero)
7237 {
7238 bfd_vma hdr_size = 0;
7239 if (map->includes_filehdr)
7240 hdr_size = iehdr->e_ehsize;
7241 if (map->includes_phdrs)
7242 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7243
7244 /* Account for padding before the first section in the
7245 segment. */
7246 map->p_vaddr_offset = map->p_paddr + hdr_size - matching_lma->lma;
7247 }
08a40648 7248
252b5132
RH
7249 free (sections);
7250 continue;
7251 }
252b5132
RH
7252 else
7253 {
9933dc52
AM
7254 /* Change the current segment's physical address to match
7255 the LMA of the first section that fitted, or if no
7256 section fitted, the first section. */
7257 if (matching_lma == NULL)
7258 matching_lma = suggested_lma;
7259
7260 map->p_paddr = matching_lma->lma;
72730e0c 7261
bc67d8a6
NC
7262 /* Offset the segment physical address from the lma
7263 to allow for space taken up by elf headers. */
9933dc52 7264 if (map->includes_phdrs)
010c8431 7265 {
9933dc52
AM
7266 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7267
7268 /* iehdr->e_phnum is just an estimate of the number
7269 of program headers that we will need. Make a note
7270 here of the number we used and the segment we chose
7271 to hold these headers, so that we can adjust the
7272 offset when we know the correct value. */
7273 phdr_adjust_num = iehdr->e_phnum;
7274 phdr_adjust_seg = map;
010c8431 7275 }
252b5132 7276
9933dc52 7277 if (map->includes_filehdr)
bc67d8a6 7278 {
9933dc52
AM
7279 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7280 map->p_paddr -= iehdr->e_ehsize;
7281 /* We've subtracted off the size of headers from the
7282 first section lma, but there may have been some
7283 alignment padding before that section too. Try to
7284 account for that by adjusting the segment lma down to
7285 the same alignment. */
7286 if (segment->p_align != 0 && segment->p_align < align)
7287 align = segment->p_align;
7288 map->p_paddr &= -align;
bc67d8a6 7289 }
252b5132
RH
7290 }
7291
7292 /* Step Three: Loop over the sections again, this time assigning
caf47ea6 7293 those that fit to the current segment and removing them from the
252b5132
RH
7294 sections array; but making sure not to leave large gaps. Once all
7295 possible sections have been assigned to the current segment it is
7296 added to the list of built segments and if sections still remain
7297 to be assigned, a new segment is constructed before repeating
7298 the loop. */
7299 isec = 0;
7300 do
7301 {
bc67d8a6 7302 map->count = 0;
9933dc52 7303 suggested_lma = NULL;
252b5132
RH
7304
7305 /* Fill the current segment with sections that fit. */
bc67d8a6 7306 for (j = 0; j < section_count; j++)
252b5132 7307 {
bc67d8a6 7308 section = sections[j];
252b5132 7309
bc67d8a6 7310 if (section == NULL)
252b5132
RH
7311 continue;
7312
bc67d8a6 7313 output_section = section->output_section;
252b5132 7314
bc67d8a6 7315 BFD_ASSERT (output_section != NULL);
c044fabd 7316
bc67d8a6
NC
7317 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
7318 || IS_COREFILE_NOTE (segment, section))
252b5132 7319 {
bc67d8a6 7320 if (map->count == 0)
252b5132
RH
7321 {
7322 /* If the first section in a segment does not start at
bc67d8a6
NC
7323 the beginning of the segment, then something is
7324 wrong. */
9933dc52
AM
7325 if (align_power (map->p_paddr
7326 + (map->includes_filehdr
7327 ? iehdr->e_ehsize : 0)
7328 + (map->includes_phdrs
7329 ? iehdr->e_phnum * iehdr->e_phentsize
7330 : 0),
7331 output_section->alignment_power)
7332 != output_section->lma)
9aea1e31 7333 goto sorry;
252b5132
RH
7334 }
7335 else
7336 {
0067a569 7337 asection *prev_sec;
252b5132 7338
bc67d8a6 7339 prev_sec = map->sections[map->count - 1];
252b5132
RH
7340
7341 /* If the gap between the end of the previous section
bc67d8a6
NC
7342 and the start of this section is more than
7343 maxpagesize then we need to start a new segment. */
eea6121a 7344 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
079e9a2f 7345 maxpagesize)
caf47ea6 7346 < BFD_ALIGN (output_section->lma, maxpagesize))
0067a569 7347 || (prev_sec->lma + prev_sec->size
079e9a2f 7348 > output_section->lma))
252b5132 7349 {
9933dc52
AM
7350 if (suggested_lma == NULL)
7351 suggested_lma = output_section;
252b5132
RH
7352
7353 continue;
7354 }
7355 }
7356
bc67d8a6 7357 map->sections[map->count++] = output_section;
252b5132
RH
7358 ++isec;
7359 sections[j] = NULL;
9933dc52
AM
7360 if (segment->p_type == PT_LOAD)
7361 section->segment_mark = TRUE;
0067a569 7362 }
9933dc52
AM
7363 else if (suggested_lma == NULL)
7364 suggested_lma = output_section;
252b5132
RH
7365 }
7366
beab4532
NC
7367 /* PR 23932. A corrupt input file may contain sections that cannot
7368 be assigned to any segment - because for example they have a
7369 negative size - or segments that do not contain any sections. */
7370 if (map->count == 0)
7371 {
9aea1e31
AM
7372 sorry:
7373 bfd_set_error (bfd_error_sorry);
beab4532
NC
7374 free (sections);
7375 return FALSE;
7376 }
252b5132
RH
7377
7378 /* Add the current segment to the list of built segments. */
c044fabd
KH
7379 *pointer_to_map = map;
7380 pointer_to_map = &map->next;
252b5132 7381
bc67d8a6 7382 if (isec < section_count)
252b5132
RH
7383 {
7384 /* We still have not allocated all of the sections to
7385 segments. Create a new segment here, initialise it
7386 and carry on looping. */
00bee008
AM
7387 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7388 amt += (bfd_size_type) section_count * sizeof (asection *);
5964fc3a 7389 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
bc67d8a6 7390 if (map == NULL)
5ed6aba4
NC
7391 {
7392 free (sections);
7393 return FALSE;
7394 }
252b5132
RH
7395
7396 /* Initialise the fields of the segment map. Set the physical
7397 physical address to the LMA of the first section that has
7398 not yet been assigned. */
0067a569
AM
7399 map->next = NULL;
7400 map->p_type = segment->p_type;
7401 map->p_flags = segment->p_flags;
7402 map->p_flags_valid = 1;
9933dc52 7403 map->p_paddr = suggested_lma->lma;
5c44b38e 7404 map->p_paddr_valid = p_paddr_valid;
bc67d8a6 7405 map->includes_filehdr = 0;
0067a569 7406 map->includes_phdrs = 0;
252b5132
RH
7407 }
7408 }
bc67d8a6 7409 while (isec < section_count);
252b5132
RH
7410
7411 free (sections);
7412 }
7413
12bd6957 7414 elf_seg_map (obfd) = map_first;
bc67d8a6
NC
7415
7416 /* If we had to estimate the number of program headers that were
9ad5cbcf 7417 going to be needed, then check our estimate now and adjust
bc67d8a6
NC
7418 the offset if necessary. */
7419 if (phdr_adjust_seg != NULL)
7420 {
7421 unsigned int count;
c044fabd 7422
bc67d8a6 7423 for (count = 0, map = map_first; map != NULL; map = map->next)
c044fabd 7424 count++;
252b5132 7425
bc67d8a6
NC
7426 if (count > phdr_adjust_num)
7427 phdr_adjust_seg->p_paddr
7428 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
9933dc52
AM
7429
7430 for (map = map_first; map != NULL; map = map->next)
7431 if (map->p_type == PT_PHDR)
7432 {
7433 bfd_vma adjust
7434 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7435 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7436 break;
7437 }
bc67d8a6 7438 }
c044fabd 7439
bc67d8a6 7440#undef SEGMENT_END
eecdbe52 7441#undef SECTION_SIZE
bc67d8a6
NC
7442#undef IS_CONTAINED_BY_VMA
7443#undef IS_CONTAINED_BY_LMA
0efc80c8 7444#undef IS_NOTE
252b5132 7445#undef IS_COREFILE_NOTE
bc67d8a6 7446#undef IS_SOLARIS_PT_INTERP
9f17e2a6 7447#undef IS_SECTION_IN_INPUT_SEGMENT
bc67d8a6
NC
7448#undef INCLUDE_SECTION_IN_SEGMENT
7449#undef SEGMENT_AFTER_SEGMENT
7450#undef SEGMENT_OVERLAPS
b34976b6 7451 return TRUE;
252b5132
RH
7452}
7453
84d1d650
L
7454/* Copy ELF program header information. */
7455
7456static bfd_boolean
7457copy_elf_program_header (bfd *ibfd, bfd *obfd)
7458{
7459 Elf_Internal_Ehdr *iehdr;
7460 struct elf_segment_map *map;
7461 struct elf_segment_map *map_first;
7462 struct elf_segment_map **pointer_to_map;
7463 Elf_Internal_Phdr *segment;
7464 unsigned int i;
7465 unsigned int num_segments;
7466 bfd_boolean phdr_included = FALSE;
88967714 7467 bfd_boolean p_paddr_valid;
84d1d650
L
7468
7469 iehdr = elf_elfheader (ibfd);
7470
7471 map_first = NULL;
7472 pointer_to_map = &map_first;
7473
88967714
AM
7474 /* If all the segment p_paddr fields are zero, don't set
7475 map->p_paddr_valid. */
7476 p_paddr_valid = FALSE;
84d1d650 7477 num_segments = elf_elfheader (ibfd)->e_phnum;
88967714
AM
7478 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7479 i < num_segments;
7480 i++, segment++)
7481 if (segment->p_paddr != 0)
7482 {
7483 p_paddr_valid = TRUE;
7484 break;
7485 }
7486
84d1d650
L
7487 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7488 i < num_segments;
7489 i++, segment++)
7490 {
7491 asection *section;
7492 unsigned int section_count;
7493 bfd_size_type amt;
7494 Elf_Internal_Shdr *this_hdr;
53020534 7495 asection *first_section = NULL;
a76e6f2f 7496 asection *lowest_section;
84d1d650 7497
84d1d650
L
7498 /* Compute how many sections are in this segment. */
7499 for (section = ibfd->sections, section_count = 0;
7500 section != NULL;
7501 section = section->next)
7502 {
7503 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7504 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
3271a814 7505 {
a76e6f2f
AM
7506 if (first_section == NULL)
7507 first_section = section;
3271a814
NS
7508 section_count++;
7509 }
84d1d650
L
7510 }
7511
7512 /* Allocate a segment map big enough to contain
7513 all of the sections we have selected. */
00bee008
AM
7514 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7515 amt += (bfd_size_type) section_count * sizeof (asection *);
a50b1753 7516 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
84d1d650
L
7517 if (map == NULL)
7518 return FALSE;
7519
7520 /* Initialize the fields of the output segment map with the
7521 input segment. */
7522 map->next = NULL;
7523 map->p_type = segment->p_type;
7524 map->p_flags = segment->p_flags;
7525 map->p_flags_valid = 1;
7526 map->p_paddr = segment->p_paddr;
88967714 7527 map->p_paddr_valid = p_paddr_valid;
3f570048
AM
7528 map->p_align = segment->p_align;
7529 map->p_align_valid = 1;
3271a814 7530 map->p_vaddr_offset = 0;
84d1d650 7531
04c3a755
NS
7532 if (map->p_type == PT_GNU_RELRO
7533 || map->p_type == PT_GNU_STACK)
b10a8ae0
L
7534 {
7535 /* The PT_GNU_RELRO segment may contain the first a few
7536 bytes in the .got.plt section even if the whole .got.plt
7537 section isn't in the PT_GNU_RELRO segment. We won't
04c3a755
NS
7538 change the size of the PT_GNU_RELRO segment.
7539 Similarly, PT_GNU_STACK size is significant on uclinux
7540 systems. */
9433b9b1 7541 map->p_size = segment->p_memsz;
b10a8ae0
L
7542 map->p_size_valid = 1;
7543 }
7544
84d1d650
L
7545 /* Determine if this segment contains the ELF file header
7546 and if it contains the program headers themselves. */
7547 map->includes_filehdr = (segment->p_offset == 0
7548 && segment->p_filesz >= iehdr->e_ehsize);
7549
7550 map->includes_phdrs = 0;
7551 if (! phdr_included || segment->p_type != PT_LOAD)
7552 {
7553 map->includes_phdrs =
7554 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7555 && (segment->p_offset + segment->p_filesz
7556 >= ((bfd_vma) iehdr->e_phoff
7557 + iehdr->e_phnum * iehdr->e_phentsize)));
7558
7559 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7560 phdr_included = TRUE;
7561 }
7562
bbefd0a9 7563 lowest_section = NULL;
84d1d650
L
7564 if (section_count != 0)
7565 {
7566 unsigned int isec = 0;
7567
53020534 7568 for (section = first_section;
84d1d650
L
7569 section != NULL;
7570 section = section->next)
7571 {
7572 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7573 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
53020534
L
7574 {
7575 map->sections[isec++] = section->output_section;
a76e6f2f
AM
7576 if ((section->flags & SEC_ALLOC) != 0)
7577 {
7578 bfd_vma seg_off;
7579
bbefd0a9
AM
7580 if (lowest_section == NULL
7581 || section->lma < lowest_section->lma)
fb8a5684
AM
7582 lowest_section = section;
7583
a76e6f2f
AM
7584 /* Section lmas are set up from PT_LOAD header
7585 p_paddr in _bfd_elf_make_section_from_shdr.
7586 If this header has a p_paddr that disagrees
7587 with the section lma, flag the p_paddr as
7588 invalid. */
7589 if ((section->flags & SEC_LOAD) != 0)
7590 seg_off = this_hdr->sh_offset - segment->p_offset;
7591 else
7592 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7593 if (section->lma - segment->p_paddr != seg_off)
7594 map->p_paddr_valid = FALSE;
7595 }
53020534
L
7596 if (isec == section_count)
7597 break;
7598 }
84d1d650
L
7599 }
7600 }
7601
5d695627
AM
7602 if (section_count == 0)
7603 map->p_vaddr_offset = segment->p_vaddr;
30fe1832
AM
7604 else if (map->p_paddr_valid)
7605 {
7606 /* Account for padding before the first section in the segment. */
7607 bfd_vma hdr_size = 0;
7608 if (map->includes_filehdr)
7609 hdr_size = iehdr->e_ehsize;
7610 if (map->includes_phdrs)
7611 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7612
7613 map->p_vaddr_offset = (map->p_paddr + hdr_size
7614 - (lowest_section ? lowest_section->lma : 0));
7615 }
a76e6f2f 7616
84d1d650
L
7617 map->count = section_count;
7618 *pointer_to_map = map;
7619 pointer_to_map = &map->next;
7620 }
7621
12bd6957 7622 elf_seg_map (obfd) = map_first;
84d1d650
L
7623 return TRUE;
7624}
7625
7626/* Copy private BFD data. This copies or rewrites ELF program header
7627 information. */
7628
7629static bfd_boolean
7630copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7631{
84d1d650
L
7632 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7633 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7634 return TRUE;
7635
7636 if (elf_tdata (ibfd)->phdr == NULL)
7637 return TRUE;
7638
7639 if (ibfd->xvec == obfd->xvec)
7640 {
cb3ff1e5
NC
7641 /* Check to see if any sections in the input BFD
7642 covered by ELF program header have changed. */
d55ce4e2 7643 Elf_Internal_Phdr *segment;
84d1d650
L
7644 asection *section, *osec;
7645 unsigned int i, num_segments;
7646 Elf_Internal_Shdr *this_hdr;
147d51c2
L
7647 const struct elf_backend_data *bed;
7648
7649 bed = get_elf_backend_data (ibfd);
7650
7651 /* Regenerate the segment map if p_paddr is set to 0. */
7652 if (bed->want_p_paddr_set_to_zero)
7653 goto rewrite;
84d1d650
L
7654
7655 /* Initialize the segment mark field. */
7656 for (section = obfd->sections; section != NULL;
7657 section = section->next)
7658 section->segment_mark = FALSE;
7659
7660 num_segments = elf_elfheader (ibfd)->e_phnum;
7661 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7662 i < num_segments;
7663 i++, segment++)
7664 {
5f6999aa
NC
7665 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7666 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7667 which severly confuses things, so always regenerate the segment
7668 map in this case. */
7669 if (segment->p_paddr == 0
7670 && segment->p_memsz == 0
7671 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
cb3ff1e5 7672 goto rewrite;
5f6999aa 7673
84d1d650
L
7674 for (section = ibfd->sections;
7675 section != NULL; section = section->next)
7676 {
7677 /* We mark the output section so that we know it comes
7678 from the input BFD. */
7679 osec = section->output_section;
7680 if (osec)
7681 osec->segment_mark = TRUE;
7682
7683 /* Check if this section is covered by the segment. */
7684 this_hdr = &(elf_section_data(section)->this_hdr);
f4638467 7685 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
84d1d650
L
7686 {
7687 /* FIXME: Check if its output section is changed or
7688 removed. What else do we need to check? */
7689 if (osec == NULL
7690 || section->flags != osec->flags
7691 || section->lma != osec->lma
7692 || section->vma != osec->vma
7693 || section->size != osec->size
7694 || section->rawsize != osec->rawsize
7695 || section->alignment_power != osec->alignment_power)
7696 goto rewrite;
7697 }
7698 }
7699 }
7700
cb3ff1e5 7701 /* Check to see if any output section do not come from the
84d1d650
L
7702 input BFD. */
7703 for (section = obfd->sections; section != NULL;
7704 section = section->next)
7705 {
535b785f 7706 if (!section->segment_mark)
84d1d650
L
7707 goto rewrite;
7708 else
7709 section->segment_mark = FALSE;
7710 }
7711
7712 return copy_elf_program_header (ibfd, obfd);
7713 }
7714
7715rewrite:
f1d85785
L
7716 if (ibfd->xvec == obfd->xvec)
7717 {
7718 /* When rewriting program header, set the output maxpagesize to
7719 the maximum alignment of input PT_LOAD segments. */
7720 Elf_Internal_Phdr *segment;
7721 unsigned int i;
7722 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7723 bfd_vma maxpagesize = 0;
7724
7725 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7726 i < num_segments;
7727 i++, segment++)
7728 if (segment->p_type == PT_LOAD
7729 && maxpagesize < segment->p_align)
c86934ce
NC
7730 {
7731 /* PR 17512: file: f17299af. */
7732 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
695344c0 7733 /* xgettext:c-format */
2dcf00ce
AM
7734 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7735 PRIx64 " is too large"),
7736 ibfd, (uint64_t) segment->p_align);
c86934ce
NC
7737 else
7738 maxpagesize = segment->p_align;
7739 }
f1d85785
L
7740
7741 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7742 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7743 }
7744
84d1d650
L
7745 return rewrite_elf_program_header (ibfd, obfd);
7746}
7747
ccd2ec6a
L
7748/* Initialize private output section information from input section. */
7749
7750bfd_boolean
7751_bfd_elf_init_private_section_data (bfd *ibfd,
7752 asection *isec,
7753 bfd *obfd,
7754 asection *osec,
7755 struct bfd_link_info *link_info)
7756
7757{
7758 Elf_Internal_Shdr *ihdr, *ohdr;
0e1862bb
L
7759 bfd_boolean final_link = (link_info != NULL
7760 && !bfd_link_relocatable (link_info));
ccd2ec6a
L
7761
7762 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7763 || obfd->xvec->flavour != bfd_target_elf_flavour)
7764 return TRUE;
7765
ba85c43e
NC
7766 BFD_ASSERT (elf_section_data (osec) != NULL);
7767
dfa7b0b8
AM
7768 /* For objcopy and relocatable link, don't copy the output ELF
7769 section type from input if the output BFD section flags have been
7770 set to something different. For a final link allow some flags
7771 that the linker clears to differ. */
42bb2e33 7772 if (elf_section_type (osec) == SHT_NULL
dfa7b0b8
AM
7773 && (osec->flags == isec->flags
7774 || (final_link
7775 && ((osec->flags ^ isec->flags)
0814be7d 7776 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
42bb2e33 7777 elf_section_type (osec) = elf_section_type (isec);
d270463e
L
7778
7779 /* FIXME: Is this correct for all OS/PROC specific flags? */
7780 elf_section_flags (osec) |= (elf_section_flags (isec)
7781 & (SHF_MASKOS | SHF_MASKPROC));
ccd2ec6a 7782
a91e1603 7783 /* Copy sh_info from input for mbind section. */
df3a023b
AM
7784 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7785 && elf_section_flags (isec) & SHF_GNU_MBIND)
a91e1603
L
7786 elf_section_data (osec)->this_hdr.sh_info
7787 = elf_section_data (isec)->this_hdr.sh_info;
7788
ccd2ec6a
L
7789 /* Set things up for objcopy and relocatable link. The output
7790 SHT_GROUP section will have its elf_next_in_group pointing back
7791 to the input group members. Ignore linker created group section.
7792 See elfNN_ia64_object_p in elfxx-ia64.c. */
7bdf4127
AB
7793 if ((link_info == NULL
7794 || !link_info->resolve_section_groups)
7795 && (elf_sec_group (isec) == NULL
7796 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
ccd2ec6a 7797 {
7bdf4127
AB
7798 if (elf_section_flags (isec) & SHF_GROUP)
7799 elf_section_flags (osec) |= SHF_GROUP;
7800 elf_next_in_group (osec) = elf_next_in_group (isec);
7801 elf_section_data (osec)->group = elf_section_data (isec)->group;
ccd2ec6a
L
7802 }
7803
7bdf4127
AB
7804 /* If not decompress, preserve SHF_COMPRESSED. */
7805 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7806 elf_section_flags (osec) |= (elf_section_flags (isec)
7807 & SHF_COMPRESSED);
7808
ccd2ec6a
L
7809 ihdr = &elf_section_data (isec)->this_hdr;
7810
7811 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7812 don't use the output section of the linked-to section since it
7813 may be NULL at this point. */
7814 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7815 {
7816 ohdr = &elf_section_data (osec)->this_hdr;
7817 ohdr->sh_flags |= SHF_LINK_ORDER;
7818 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7819 }
7820
7821 osec->use_rela_p = isec->use_rela_p;
7822
7823 return TRUE;
7824}
7825
252b5132
RH
7826/* Copy private section information. This copies over the entsize
7827 field, and sometimes the info field. */
7828
b34976b6 7829bfd_boolean
217aa764
AM
7830_bfd_elf_copy_private_section_data (bfd *ibfd,
7831 asection *isec,
7832 bfd *obfd,
7833 asection *osec)
252b5132
RH
7834{
7835 Elf_Internal_Shdr *ihdr, *ohdr;
7836
7837 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7838 || obfd->xvec->flavour != bfd_target_elf_flavour)
b34976b6 7839 return TRUE;
252b5132 7840
252b5132
RH
7841 ihdr = &elf_section_data (isec)->this_hdr;
7842 ohdr = &elf_section_data (osec)->this_hdr;
7843
7844 ohdr->sh_entsize = ihdr->sh_entsize;
7845
7846 if (ihdr->sh_type == SHT_SYMTAB
7847 || ihdr->sh_type == SHT_DYNSYM
7848 || ihdr->sh_type == SHT_GNU_verneed
7849 || ihdr->sh_type == SHT_GNU_verdef)
7850 ohdr->sh_info = ihdr->sh_info;
7851
ccd2ec6a
L
7852 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7853 NULL);
252b5132
RH
7854}
7855
d0bf826b
AM
7856/* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7857 necessary if we are removing either the SHT_GROUP section or any of
7858 the group member sections. DISCARDED is the value that a section's
7859 output_section has if the section will be discarded, NULL when this
7860 function is called from objcopy, bfd_abs_section_ptr when called
7861 from the linker. */
80fccad2
BW
7862
7863bfd_boolean
d0bf826b 7864_bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
80fccad2 7865{
30288845
AM
7866 asection *isec;
7867
30288845 7868 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
415f38a6 7869 if (elf_section_type (isec) == SHT_GROUP)
30288845
AM
7870 {
7871 asection *first = elf_next_in_group (isec);
7872 asection *s = first;
d0bf826b
AM
7873 bfd_size_type removed = 0;
7874
30288845
AM
7875 while (s != NULL)
7876 {
415f38a6
AM
7877 /* If this member section is being output but the
7878 SHT_GROUP section is not, then clear the group info
7879 set up by _bfd_elf_copy_private_section_data. */
d0bf826b
AM
7880 if (s->output_section != discarded
7881 && isec->output_section == discarded)
30288845
AM
7882 {
7883 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7884 elf_group_name (s->output_section) = NULL;
7885 }
415f38a6
AM
7886 /* Conversely, if the member section is not being output
7887 but the SHT_GROUP section is, then adjust its size. */
d0bf826b
AM
7888 else if (s->output_section == discarded
7889 && isec->output_section != discarded)
6e5e9d58
AM
7890 {
7891 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7892 removed += 4;
7893 if (elf_sec->rel.hdr != NULL
7894 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7895 removed += 4;
7896 if (elf_sec->rela.hdr != NULL
7897 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7898 removed += 4;
7899 }
30288845
AM
7900 s = elf_next_in_group (s);
7901 if (s == first)
7902 break;
7903 }
d0bf826b
AM
7904 if (removed != 0)
7905 {
7906 if (discarded != NULL)
7907 {
7908 /* If we've been called for ld -r, then we need to
6e5e9d58 7909 adjust the input section size. */
d0bf826b
AM
7910 if (isec->rawsize == 0)
7911 isec->rawsize = isec->size;
7912 isec->size = isec->rawsize - removed;
6e5e9d58
AM
7913 if (isec->size <= 4)
7914 {
7915 isec->size = 0;
7916 isec->flags |= SEC_EXCLUDE;
7917 }
d0bf826b
AM
7918 }
7919 else
7920 {
7921 /* Adjust the output section size when called from
7922 objcopy. */
7923 isec->output_section->size -= removed;
6e5e9d58
AM
7924 if (isec->output_section->size <= 4)
7925 {
7926 isec->output_section->size = 0;
7927 isec->output_section->flags |= SEC_EXCLUDE;
7928 }
d0bf826b
AM
7929 }
7930 }
30288845
AM
7931 }
7932
80fccad2
BW
7933 return TRUE;
7934}
7935
d0bf826b
AM
7936/* Copy private header information. */
7937
7938bfd_boolean
7939_bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7940{
7941 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7942 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7943 return TRUE;
7944
7945 /* Copy over private BFD data if it has not already been copied.
7946 This must be done here, rather than in the copy_private_bfd_data
7947 entry point, because the latter is called after the section
7948 contents have been set, which means that the program headers have
7949 already been worked out. */
12bd6957 7950 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
d0bf826b
AM
7951 {
7952 if (! copy_private_bfd_data (ibfd, obfd))
7953 return FALSE;
7954 }
7955
7956 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7957}
7958
252b5132
RH
7959/* Copy private symbol information. If this symbol is in a section
7960 which we did not map into a BFD section, try to map the section
7961 index correctly. We use special macro definitions for the mapped
7962 section indices; these definitions are interpreted by the
7963 swap_out_syms function. */
7964
9ad5cbcf
AM
7965#define MAP_ONESYMTAB (SHN_HIOS + 1)
7966#define MAP_DYNSYMTAB (SHN_HIOS + 2)
7967#define MAP_STRTAB (SHN_HIOS + 3)
7968#define MAP_SHSTRTAB (SHN_HIOS + 4)
7969#define MAP_SYM_SHNDX (SHN_HIOS + 5)
252b5132 7970
b34976b6 7971bfd_boolean
217aa764
AM
7972_bfd_elf_copy_private_symbol_data (bfd *ibfd,
7973 asymbol *isymarg,
7974 bfd *obfd,
7975 asymbol *osymarg)
252b5132
RH
7976{
7977 elf_symbol_type *isym, *osym;
7978
7979 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7980 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 7981 return TRUE;
252b5132
RH
7982
7983 isym = elf_symbol_from (ibfd, isymarg);
7984 osym = elf_symbol_from (obfd, osymarg);
7985
7986 if (isym != NULL
8424d8f5 7987 && isym->internal_elf_sym.st_shndx != 0
252b5132
RH
7988 && osym != NULL
7989 && bfd_is_abs_section (isym->symbol.section))
7990 {
7991 unsigned int shndx;
7992
7993 shndx = isym->internal_elf_sym.st_shndx;
7994 if (shndx == elf_onesymtab (ibfd))
7995 shndx = MAP_ONESYMTAB;
7996 else if (shndx == elf_dynsymtab (ibfd))
7997 shndx = MAP_DYNSYMTAB;
12bd6957 7998 else if (shndx == elf_strtab_sec (ibfd))
252b5132 7999 shndx = MAP_STRTAB;
12bd6957 8000 else if (shndx == elf_shstrtab_sec (ibfd))
252b5132 8001 shndx = MAP_SHSTRTAB;
6a40cf0c 8002 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
9ad5cbcf 8003 shndx = MAP_SYM_SHNDX;
252b5132
RH
8004 osym->internal_elf_sym.st_shndx = shndx;
8005 }
8006
b34976b6 8007 return TRUE;
252b5132
RH
8008}
8009
8010/* Swap out the symbols. */
8011
b34976b6 8012static bfd_boolean
217aa764 8013swap_out_syms (bfd *abfd,
ef10c3ac 8014 struct elf_strtab_hash **sttp,
217aa764 8015 int relocatable_p)
252b5132 8016{
9c5bfbb7 8017 const struct elf_backend_data *bed;
079e9a2f
AM
8018 int symcount;
8019 asymbol **syms;
ef10c3ac 8020 struct elf_strtab_hash *stt;
079e9a2f 8021 Elf_Internal_Shdr *symtab_hdr;
9ad5cbcf 8022 Elf_Internal_Shdr *symtab_shndx_hdr;
079e9a2f 8023 Elf_Internal_Shdr *symstrtab_hdr;
ef10c3ac 8024 struct elf_sym_strtab *symstrtab;
f075ee0c
AM
8025 bfd_byte *outbound_syms;
8026 bfd_byte *outbound_shndx;
ef10c3ac
L
8027 unsigned long outbound_syms_index;
8028 unsigned long outbound_shndx_index;
079e9a2f 8029 int idx;
12bd6957 8030 unsigned int num_locals;
079e9a2f 8031 bfd_size_type amt;
174fd7f9 8032 bfd_boolean name_local_sections;
252b5132 8033
12bd6957 8034 if (!elf_map_symbols (abfd, &num_locals))
b34976b6 8035 return FALSE;
252b5132 8036
c044fabd 8037 /* Dump out the symtabs. */
ef10c3ac 8038 stt = _bfd_elf_strtab_init ();
079e9a2f 8039 if (stt == NULL)
b34976b6 8040 return FALSE;
252b5132 8041
079e9a2f
AM
8042 bed = get_elf_backend_data (abfd);
8043 symcount = bfd_get_symcount (abfd);
8044 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8045 symtab_hdr->sh_type = SHT_SYMTAB;
8046 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8047 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
12bd6957 8048 symtab_hdr->sh_info = num_locals + 1;
72de5009 8049 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
079e9a2f
AM
8050
8051 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8052 symstrtab_hdr->sh_type = SHT_STRTAB;
8053
ef10c3ac 8054 /* Allocate buffer to swap out the .strtab section. */
7a6e0d89
AM
8055 symstrtab = (struct elf_sym_strtab *) bfd_malloc2 (symcount + 1,
8056 sizeof (*symstrtab));
ef10c3ac
L
8057 if (symstrtab == NULL)
8058 {
8059 _bfd_elf_strtab_free (stt);
8060 return FALSE;
8061 }
8062
a50b1753 8063 outbound_syms = (bfd_byte *) bfd_alloc2 (abfd, 1 + symcount,
07d6d2b8 8064 bed->s->sizeof_sym);
079e9a2f 8065 if (outbound_syms == NULL)
5ed6aba4 8066 {
ef10c3ac
L
8067error_return:
8068 _bfd_elf_strtab_free (stt);
8069 free (symstrtab);
5ed6aba4
NC
8070 return FALSE;
8071 }
217aa764 8072 symtab_hdr->contents = outbound_syms;
ef10c3ac 8073 outbound_syms_index = 0;
252b5132 8074
9ad5cbcf 8075 outbound_shndx = NULL;
ef10c3ac 8076 outbound_shndx_index = 0;
6a40cf0c
NC
8077
8078 if (elf_symtab_shndx_list (abfd))
9ad5cbcf 8079 {
6a40cf0c
NC
8080 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8081 if (symtab_shndx_hdr->sh_name != 0)
8082 {
8083 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
8084 outbound_shndx = (bfd_byte *)
8085 bfd_zalloc2 (abfd, 1 + symcount, sizeof (Elf_External_Sym_Shndx));
8086 if (outbound_shndx == NULL)
8087 goto error_return;
5ed6aba4 8088
6a40cf0c
NC
8089 symtab_shndx_hdr->contents = outbound_shndx;
8090 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8091 symtab_shndx_hdr->sh_size = amt;
8092 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8093 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8094 }
8095 /* FIXME: What about any other headers in the list ? */
9ad5cbcf
AM
8096 }
8097
589e6347 8098 /* Now generate the data (for "contents"). */
079e9a2f
AM
8099 {
8100 /* Fill in zeroth symbol and swap it out. */
8101 Elf_Internal_Sym sym;
8102 sym.st_name = 0;
8103 sym.st_value = 0;
8104 sym.st_size = 0;
8105 sym.st_info = 0;
8106 sym.st_other = 0;
8107 sym.st_shndx = SHN_UNDEF;
35fc36a8 8108 sym.st_target_internal = 0;
ef10c3ac
L
8109 symstrtab[0].sym = sym;
8110 symstrtab[0].dest_index = outbound_syms_index;
8111 symstrtab[0].destshndx_index = outbound_shndx_index;
8112 outbound_syms_index++;
9ad5cbcf 8113 if (outbound_shndx != NULL)
ef10c3ac 8114 outbound_shndx_index++;
079e9a2f 8115 }
252b5132 8116
174fd7f9
RS
8117 name_local_sections
8118 = (bed->elf_backend_name_local_section_symbols
8119 && bed->elf_backend_name_local_section_symbols (abfd));
8120
079e9a2f 8121 syms = bfd_get_outsymbols (abfd);
ef10c3ac 8122 for (idx = 0; idx < symcount;)
252b5132 8123 {
252b5132 8124 Elf_Internal_Sym sym;
079e9a2f
AM
8125 bfd_vma value = syms[idx]->value;
8126 elf_symbol_type *type_ptr;
8127 flagword flags = syms[idx]->flags;
8128 int type;
252b5132 8129
174fd7f9
RS
8130 if (!name_local_sections
8131 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
079e9a2f
AM
8132 {
8133 /* Local section symbols have no name. */
ef10c3ac 8134 sym.st_name = (unsigned long) -1;
079e9a2f
AM
8135 }
8136 else
8137 {
ef10c3ac
L
8138 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8139 to get the final offset for st_name. */
8140 sym.st_name
8141 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
8142 FALSE);
079e9a2f 8143 if (sym.st_name == (unsigned long) -1)
ef10c3ac 8144 goto error_return;
079e9a2f 8145 }
252b5132 8146
079e9a2f 8147 type_ptr = elf_symbol_from (abfd, syms[idx]);
252b5132 8148
079e9a2f
AM
8149 if ((flags & BSF_SECTION_SYM) == 0
8150 && bfd_is_com_section (syms[idx]->section))
8151 {
8152 /* ELF common symbols put the alignment into the `value' field,
8153 and the size into the `size' field. This is backwards from
8154 how BFD handles it, so reverse it here. */
8155 sym.st_size = value;
8156 if (type_ptr == NULL
8157 || type_ptr->internal_elf_sym.st_value == 0)
8158 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8159 else
8160 sym.st_value = type_ptr->internal_elf_sym.st_value;
8161 sym.st_shndx = _bfd_elf_section_from_bfd_section
8162 (abfd, syms[idx]->section);
8163 }
8164 else
8165 {
8166 asection *sec = syms[idx]->section;
cb33740c 8167 unsigned int shndx;
252b5132 8168
079e9a2f
AM
8169 if (sec->output_section)
8170 {
8171 value += sec->output_offset;
8172 sec = sec->output_section;
8173 }
589e6347 8174
079e9a2f
AM
8175 /* Don't add in the section vma for relocatable output. */
8176 if (! relocatable_p)
8177 value += sec->vma;
8178 sym.st_value = value;
8179 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8180
8181 if (bfd_is_abs_section (sec)
8182 && type_ptr != NULL
8183 && type_ptr->internal_elf_sym.st_shndx != 0)
8184 {
8185 /* This symbol is in a real ELF section which we did
8186 not create as a BFD section. Undo the mapping done
8187 by copy_private_symbol_data. */
8188 shndx = type_ptr->internal_elf_sym.st_shndx;
8189 switch (shndx)
8190 {
8191 case MAP_ONESYMTAB:
8192 shndx = elf_onesymtab (abfd);
8193 break;
8194 case MAP_DYNSYMTAB:
8195 shndx = elf_dynsymtab (abfd);
8196 break;
8197 case MAP_STRTAB:
12bd6957 8198 shndx = elf_strtab_sec (abfd);
079e9a2f
AM
8199 break;
8200 case MAP_SHSTRTAB:
12bd6957 8201 shndx = elf_shstrtab_sec (abfd);
079e9a2f 8202 break;
9ad5cbcf 8203 case MAP_SYM_SHNDX:
6a40cf0c
NC
8204 if (elf_symtab_shndx_list (abfd))
8205 shndx = elf_symtab_shndx_list (abfd)->ndx;
9ad5cbcf 8206 break;
079e9a2f 8207 default:
15bc576a 8208 shndx = SHN_ABS;
079e9a2f
AM
8209 break;
8210 }
8211 }
8212 else
8213 {
8214 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
252b5132 8215
cb33740c 8216 if (shndx == SHN_BAD)
079e9a2f
AM
8217 {
8218 asection *sec2;
8219
8220 /* Writing this would be a hell of a lot easier if
8221 we had some decent documentation on bfd, and
8222 knew what to expect of the library, and what to
8223 demand of applications. For example, it
8224 appears that `objcopy' might not set the
8225 section of a symbol to be a section that is
8226 actually in the output file. */
8227 sec2 = bfd_get_section_by_name (abfd, sec->name);
5df1bc57
AM
8228 if (sec2 != NULL)
8229 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8230 if (shndx == SHN_BAD)
589e6347 8231 {
695344c0 8232 /* xgettext:c-format */
9793eb77
AM
8233 _bfd_error_handler
8234 (_("unable to find equivalent output section"
8235 " for symbol '%s' from section '%s'"),
8236 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8237 sec->name);
811072d8 8238 bfd_set_error (bfd_error_invalid_operation);
ef10c3ac 8239 goto error_return;
589e6347 8240 }
079e9a2f
AM
8241 }
8242 }
252b5132 8243
079e9a2f
AM
8244 sym.st_shndx = shndx;
8245 }
252b5132 8246
13ae64f3
JJ
8247 if ((flags & BSF_THREAD_LOCAL) != 0)
8248 type = STT_TLS;
d8045f23
NC
8249 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8250 type = STT_GNU_IFUNC;
13ae64f3 8251 else if ((flags & BSF_FUNCTION) != 0)
079e9a2f
AM
8252 type = STT_FUNC;
8253 else if ((flags & BSF_OBJECT) != 0)
8254 type = STT_OBJECT;
d9352518
DB
8255 else if ((flags & BSF_RELC) != 0)
8256 type = STT_RELC;
8257 else if ((flags & BSF_SRELC) != 0)
8258 type = STT_SRELC;
079e9a2f
AM
8259 else
8260 type = STT_NOTYPE;
252b5132 8261
13ae64f3
JJ
8262 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8263 type = STT_TLS;
8264
589e6347 8265 /* Processor-specific types. */
079e9a2f
AM
8266 if (type_ptr != NULL
8267 && bed->elf_backend_get_symbol_type)
8268 type = ((*bed->elf_backend_get_symbol_type)
8269 (&type_ptr->internal_elf_sym, type));
252b5132 8270
079e9a2f
AM
8271 if (flags & BSF_SECTION_SYM)
8272 {
8273 if (flags & BSF_GLOBAL)
8274 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8275 else
8276 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8277 }
8278 else if (bfd_is_com_section (syms[idx]->section))
0a40daed 8279 {
b8871f35
L
8280 if (type != STT_TLS)
8281 {
8282 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8283 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8284 ? STT_COMMON : STT_OBJECT);
8285 else
8286 type = ((flags & BSF_ELF_COMMON) != 0
8287 ? STT_COMMON : STT_OBJECT);
8288 }
8289 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
0a40daed 8290 }
079e9a2f
AM
8291 else if (bfd_is_und_section (syms[idx]->section))
8292 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8293 ? STB_WEAK
8294 : STB_GLOBAL),
8295 type);
8296 else if (flags & BSF_FILE)
8297 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8298 else
8299 {
8300 int bind = STB_LOCAL;
252b5132 8301
079e9a2f
AM
8302 if (flags & BSF_LOCAL)
8303 bind = STB_LOCAL;
3e7a7d11
NC
8304 else if (flags & BSF_GNU_UNIQUE)
8305 bind = STB_GNU_UNIQUE;
079e9a2f
AM
8306 else if (flags & BSF_WEAK)
8307 bind = STB_WEAK;
8308 else if (flags & BSF_GLOBAL)
8309 bind = STB_GLOBAL;
252b5132 8310
079e9a2f
AM
8311 sym.st_info = ELF_ST_INFO (bind, type);
8312 }
252b5132 8313
079e9a2f 8314 if (type_ptr != NULL)
35fc36a8
RS
8315 {
8316 sym.st_other = type_ptr->internal_elf_sym.st_other;
8317 sym.st_target_internal
8318 = type_ptr->internal_elf_sym.st_target_internal;
8319 }
079e9a2f 8320 else
35fc36a8
RS
8321 {
8322 sym.st_other = 0;
8323 sym.st_target_internal = 0;
8324 }
252b5132 8325
ef10c3ac
L
8326 idx++;
8327 symstrtab[idx].sym = sym;
8328 symstrtab[idx].dest_index = outbound_syms_index;
8329 symstrtab[idx].destshndx_index = outbound_shndx_index;
8330
8331 outbound_syms_index++;
9ad5cbcf 8332 if (outbound_shndx != NULL)
ef10c3ac
L
8333 outbound_shndx_index++;
8334 }
8335
8336 /* Finalize the .strtab section. */
8337 _bfd_elf_strtab_finalize (stt);
8338
8339 /* Swap out the .strtab section. */
8340 for (idx = 0; idx <= symcount; idx++)
8341 {
8342 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8343 if (elfsym->sym.st_name == (unsigned long) -1)
8344 elfsym->sym.st_name = 0;
8345 else
8346 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8347 elfsym->sym.st_name);
8348 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8349 (outbound_syms
8350 + (elfsym->dest_index
8351 * bed->s->sizeof_sym)),
8352 (outbound_shndx
8353 + (elfsym->destshndx_index
8354 * sizeof (Elf_External_Sym_Shndx))));
079e9a2f 8355 }
ef10c3ac 8356 free (symstrtab);
252b5132 8357
079e9a2f 8358 *sttp = stt;
ef10c3ac 8359 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
079e9a2f 8360 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 8361 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
079e9a2f
AM
8362 symstrtab_hdr->sh_addr = 0;
8363 symstrtab_hdr->sh_entsize = 0;
8364 symstrtab_hdr->sh_link = 0;
8365 symstrtab_hdr->sh_info = 0;
8366 symstrtab_hdr->sh_addralign = 1;
252b5132 8367
b34976b6 8368 return TRUE;
252b5132
RH
8369}
8370
8371/* Return the number of bytes required to hold the symtab vector.
8372
8373 Note that we base it on the count plus 1, since we will null terminate
8374 the vector allocated based on this size. However, the ELF symbol table
8375 always has a dummy entry as symbol #0, so it ends up even. */
8376
8377long
217aa764 8378_bfd_elf_get_symtab_upper_bound (bfd *abfd)
252b5132 8379{
3a551c7a 8380 bfd_size_type symcount;
252b5132
RH
8381 long symtab_size;
8382 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8383
8384 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8385 if (symcount >= LONG_MAX / sizeof (asymbol *))
8386 {
8387 bfd_set_error (bfd_error_file_too_big);
8388 return -1;
8389 }
b99d1833
AM
8390 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8391 if (symcount > 0)
8392 symtab_size -= sizeof (asymbol *);
252b5132
RH
8393
8394 return symtab_size;
8395}
8396
8397long
217aa764 8398_bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
252b5132 8399{
3a551c7a 8400 bfd_size_type symcount;
252b5132
RH
8401 long symtab_size;
8402 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8403
8404 if (elf_dynsymtab (abfd) == 0)
8405 {
8406 bfd_set_error (bfd_error_invalid_operation);
8407 return -1;
8408 }
8409
8410 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3a551c7a
AM
8411 if (symcount >= LONG_MAX / sizeof (asymbol *))
8412 {
8413 bfd_set_error (bfd_error_file_too_big);
8414 return -1;
8415 }
b99d1833
AM
8416 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8417 if (symcount > 0)
8418 symtab_size -= sizeof (asymbol *);
252b5132
RH
8419
8420 return symtab_size;
8421}
8422
8423long
217aa764
AM
8424_bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
8425 sec_ptr asect)
252b5132 8426{
242a1159 8427#if SIZEOF_LONG == SIZEOF_INT
7a6e0d89
AM
8428 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8429 {
8430 bfd_set_error (bfd_error_file_too_big);
8431 return -1;
8432 }
242a1159 8433#endif
252b5132
RH
8434 return (asect->reloc_count + 1) * sizeof (arelent *);
8435}
8436
8437/* Canonicalize the relocs. */
8438
8439long
217aa764
AM
8440_bfd_elf_canonicalize_reloc (bfd *abfd,
8441 sec_ptr section,
8442 arelent **relptr,
8443 asymbol **symbols)
252b5132
RH
8444{
8445 arelent *tblptr;
8446 unsigned int i;
9c5bfbb7 8447 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252b5132 8448
b34976b6 8449 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
252b5132
RH
8450 return -1;
8451
8452 tblptr = section->relocation;
8453 for (i = 0; i < section->reloc_count; i++)
8454 *relptr++ = tblptr++;
8455
8456 *relptr = NULL;
8457
8458 return section->reloc_count;
8459}
8460
8461long
6cee3f79 8462_bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
252b5132 8463{
9c5bfbb7 8464 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8465 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
252b5132
RH
8466
8467 if (symcount >= 0)
ed48ec2e 8468 abfd->symcount = symcount;
252b5132
RH
8469 return symcount;
8470}
8471
8472long
217aa764
AM
8473_bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8474 asymbol **allocation)
252b5132 8475{
9c5bfbb7 8476 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
217aa764 8477 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
1f70368c
DJ
8478
8479 if (symcount >= 0)
ed48ec2e 8480 abfd->dynsymcount = symcount;
1f70368c 8481 return symcount;
252b5132
RH
8482}
8483
8615f3f2
AM
8484/* Return the size required for the dynamic reloc entries. Any loadable
8485 section that was actually installed in the BFD, and has type SHT_REL
8486 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8487 dynamic reloc section. */
252b5132
RH
8488
8489long
217aa764 8490_bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
252b5132 8491{
3a551c7a 8492 bfd_size_type count;
252b5132
RH
8493 asection *s;
8494
8495 if (elf_dynsymtab (abfd) == 0)
8496 {
8497 bfd_set_error (bfd_error_invalid_operation);
8498 return -1;
8499 }
8500
3a551c7a 8501 count = 1;
252b5132 8502 for (s = abfd->sections; s != NULL; s = s->next)
266b05cf 8503 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8504 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8505 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
3a551c7a
AM
8506 {
8507 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8508 if (count > LONG_MAX / sizeof (arelent *))
8509 {
8510 bfd_set_error (bfd_error_file_too_big);
8511 return -1;
8512 }
8513 }
8514 return count * sizeof (arelent *);
252b5132
RH
8515}
8516
8615f3f2
AM
8517/* Canonicalize the dynamic relocation entries. Note that we return the
8518 dynamic relocations as a single block, although they are actually
8519 associated with particular sections; the interface, which was
8520 designed for SunOS style shared libraries, expects that there is only
8521 one set of dynamic relocs. Any loadable section that was actually
8522 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8523 dynamic symbol table, is considered to be a dynamic reloc section. */
252b5132
RH
8524
8525long
217aa764
AM
8526_bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8527 arelent **storage,
8528 asymbol **syms)
252b5132 8529{
217aa764 8530 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
252b5132
RH
8531 asection *s;
8532 long ret;
8533
8534 if (elf_dynsymtab (abfd) == 0)
8535 {
8536 bfd_set_error (bfd_error_invalid_operation);
8537 return -1;
8538 }
8539
8540 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8541 ret = 0;
8542 for (s = abfd->sections; s != NULL; s = s->next)
8543 {
266b05cf 8544 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
252b5132
RH
8545 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8546 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8547 {
8548 arelent *p;
8549 long count, i;
8550
b34976b6 8551 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
252b5132 8552 return -1;
eea6121a 8553 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
252b5132
RH
8554 p = s->relocation;
8555 for (i = 0; i < count; i++)
8556 *storage++ = p++;
8557 ret += count;
8558 }
8559 }
8560
8561 *storage = NULL;
8562
8563 return ret;
8564}
8565\f
8566/* Read in the version information. */
8567
b34976b6 8568bfd_boolean
fc0e6df6 8569_bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
252b5132
RH
8570{
8571 bfd_byte *contents = NULL;
fc0e6df6
PB
8572 unsigned int freeidx = 0;
8573
8574 if (elf_dynverref (abfd) != 0)
8575 {
8576 Elf_Internal_Shdr *hdr;
8577 Elf_External_Verneed *everneed;
8578 Elf_Internal_Verneed *iverneed;
8579 unsigned int i;
d0fb9a8d 8580 bfd_byte *contents_end;
fc0e6df6
PB
8581
8582 hdr = &elf_tdata (abfd)->dynverref_hdr;
8583
bd61e135
AM
8584 if (hdr->sh_info == 0
8585 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
d0fb9a8d 8586 {
601a03ba 8587error_return_bad_verref:
4eca0228 8588 _bfd_error_handler
871b3ab2 8589 (_("%pB: .gnu.version_r invalid entry"), abfd);
601a03ba 8590 bfd_set_error (bfd_error_bad_value);
d0fb9a8d
JJ
8591error_return_verref:
8592 elf_tdata (abfd)->verref = NULL;
8593 elf_tdata (abfd)->cverrefs = 0;
8594 goto error_return;
8595 }
601a03ba 8596
7e56c51c
NC
8597 ufile_ptr filesize = bfd_get_file_size (abfd);
8598 if (filesize > 0 && filesize < hdr->sh_size)
8599 {
8600 /* PR 24708: Avoid attempts to allocate a ridiculous amount
8601 of memory. */
8602 bfd_set_error (bfd_error_no_memory);
8603 _bfd_error_handler
8604 /* xgettext:c-format */
8605 (_("error: %pB version reference section is too large (%#" PRIx64 " bytes)"),
8606 abfd, (uint64_t) hdr->sh_size);
8607 goto error_return_verref;
8608 }
601a03ba
AM
8609 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8610 if (contents == NULL)
8611 goto error_return_verref;
8612
fc0e6df6
PB
8613 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8614 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
d0fb9a8d 8615 goto error_return_verref;
fc0e6df6 8616
601a03ba 8617 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *)
bd61e135 8618 bfd_alloc2 (abfd, hdr->sh_info, sizeof (Elf_Internal_Verneed));
601a03ba
AM
8619
8620 if (elf_tdata (abfd)->verref == NULL)
d0fb9a8d
JJ
8621 goto error_return_verref;
8622
8623 BFD_ASSERT (sizeof (Elf_External_Verneed)
8624 == sizeof (Elf_External_Vernaux));
8625 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
fc0e6df6
PB
8626 everneed = (Elf_External_Verneed *) contents;
8627 iverneed = elf_tdata (abfd)->verref;
8628 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8629 {
8630 Elf_External_Vernaux *evernaux;
8631 Elf_Internal_Vernaux *ivernaux;
8632 unsigned int j;
8633
8634 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8635
8636 iverneed->vn_bfd = abfd;
8637
8638 iverneed->vn_filename =
8639 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8640 iverneed->vn_file);
8641 if (iverneed->vn_filename == NULL)
601a03ba 8642 goto error_return_bad_verref;
fc0e6df6 8643
d0fb9a8d
JJ
8644 if (iverneed->vn_cnt == 0)
8645 iverneed->vn_auxptr = NULL;
8646 else
8647 {
a50b1753 8648 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
07d6d2b8
AM
8649 bfd_alloc2 (abfd, iverneed->vn_cnt,
8650 sizeof (Elf_Internal_Vernaux));
d0fb9a8d
JJ
8651 if (iverneed->vn_auxptr == NULL)
8652 goto error_return_verref;
8653 }
8654
8655 if (iverneed->vn_aux
8656 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8657 goto error_return_bad_verref;
fc0e6df6
PB
8658
8659 evernaux = ((Elf_External_Vernaux *)
8660 ((bfd_byte *) everneed + iverneed->vn_aux));
8661 ivernaux = iverneed->vn_auxptr;
8662 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8663 {
8664 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8665
8666 ivernaux->vna_nodename =
8667 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8668 ivernaux->vna_name);
8669 if (ivernaux->vna_nodename == NULL)
601a03ba 8670 goto error_return_bad_verref;
fc0e6df6 8671
25ff461f
AM
8672 if (ivernaux->vna_other > freeidx)
8673 freeidx = ivernaux->vna_other;
8674
8675 ivernaux->vna_nextptr = NULL;
8676 if (ivernaux->vna_next == 0)
8677 {
8678 iverneed->vn_cnt = j + 1;
8679 break;
8680 }
fc0e6df6
PB
8681 if (j + 1 < iverneed->vn_cnt)
8682 ivernaux->vna_nextptr = ivernaux + 1;
fc0e6df6 8683
d0fb9a8d
JJ
8684 if (ivernaux->vna_next
8685 > (size_t) (contents_end - (bfd_byte *) evernaux))
601a03ba 8686 goto error_return_bad_verref;
d0fb9a8d 8687
fc0e6df6
PB
8688 evernaux = ((Elf_External_Vernaux *)
8689 ((bfd_byte *) evernaux + ivernaux->vna_next));
fc0e6df6
PB
8690 }
8691
25ff461f
AM
8692 iverneed->vn_nextref = NULL;
8693 if (iverneed->vn_next == 0)
8694 break;
fc0e6df6
PB
8695 if (i + 1 < hdr->sh_info)
8696 iverneed->vn_nextref = iverneed + 1;
fc0e6df6 8697
d0fb9a8d
JJ
8698 if (iverneed->vn_next
8699 > (size_t) (contents_end - (bfd_byte *) everneed))
601a03ba 8700 goto error_return_bad_verref;
d0fb9a8d 8701
fc0e6df6
PB
8702 everneed = ((Elf_External_Verneed *)
8703 ((bfd_byte *) everneed + iverneed->vn_next));
8704 }
25ff461f 8705 elf_tdata (abfd)->cverrefs = i;
fc0e6df6
PB
8706
8707 free (contents);
8708 contents = NULL;
8709 }
252b5132
RH
8710
8711 if (elf_dynverdef (abfd) != 0)
8712 {
8713 Elf_Internal_Shdr *hdr;
8714 Elf_External_Verdef *everdef;
8715 Elf_Internal_Verdef *iverdef;
f631889e
UD
8716 Elf_Internal_Verdef *iverdefarr;
8717 Elf_Internal_Verdef iverdefmem;
252b5132 8718 unsigned int i;
062e2358 8719 unsigned int maxidx;
d0fb9a8d 8720 bfd_byte *contents_end_def, *contents_end_aux;
252b5132
RH
8721
8722 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8723
601a03ba
AM
8724 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8725 {
8726 error_return_bad_verdef:
4eca0228 8727 _bfd_error_handler
871b3ab2 8728 (_("%pB: .gnu.version_d invalid entry"), abfd);
601a03ba
AM
8729 bfd_set_error (bfd_error_bad_value);
8730 error_return_verdef:
8731 elf_tdata (abfd)->verdef = NULL;
8732 elf_tdata (abfd)->cverdefs = 0;
8733 goto error_return;
8734 }
8735
a50b1753 8736 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
252b5132 8737 if (contents == NULL)
601a03ba 8738 goto error_return_verdef;
252b5132 8739 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
217aa764 8740 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
601a03ba 8741 goto error_return_verdef;
d0fb9a8d
JJ
8742
8743 BFD_ASSERT (sizeof (Elf_External_Verdef)
8744 >= sizeof (Elf_External_Verdaux));
8745 contents_end_def = contents + hdr->sh_size
8746 - sizeof (Elf_External_Verdef);
8747 contents_end_aux = contents + hdr->sh_size
8748 - sizeof (Elf_External_Verdaux);
8749
f631889e
UD
8750 /* We know the number of entries in the section but not the maximum
8751 index. Therefore we have to run through all entries and find
8752 the maximum. */
252b5132 8753 everdef = (Elf_External_Verdef *) contents;
f631889e
UD
8754 maxidx = 0;
8755 for (i = 0; i < hdr->sh_info; ++i)
8756 {
8757 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8758
601a03ba
AM
8759 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8760 goto error_return_bad_verdef;
062e2358
AM
8761 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8762 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
f631889e 8763
25ff461f
AM
8764 if (iverdefmem.vd_next == 0)
8765 break;
8766
d0fb9a8d
JJ
8767 if (iverdefmem.vd_next
8768 > (size_t) (contents_end_def - (bfd_byte *) everdef))
601a03ba 8769 goto error_return_bad_verdef;
d0fb9a8d 8770
f631889e
UD
8771 everdef = ((Elf_External_Verdef *)
8772 ((bfd_byte *) everdef + iverdefmem.vd_next));
8773 }
8774
fc0e6df6
PB
8775 if (default_imported_symver)
8776 {
8777 if (freeidx > maxidx)
8778 maxidx = ++freeidx;
8779 else
8780 freeidx = ++maxidx;
8781 }
201159ec 8782
601a03ba
AM
8783 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8784 bfd_zalloc2 (abfd, maxidx, sizeof (Elf_Internal_Verdef));
f631889e 8785 if (elf_tdata (abfd)->verdef == NULL)
601a03ba 8786 goto error_return_verdef;
f631889e
UD
8787
8788 elf_tdata (abfd)->cverdefs = maxidx;
8789
8790 everdef = (Elf_External_Verdef *) contents;
8791 iverdefarr = elf_tdata (abfd)->verdef;
8792 for (i = 0; i < hdr->sh_info; i++)
252b5132
RH
8793 {
8794 Elf_External_Verdaux *everdaux;
8795 Elf_Internal_Verdaux *iverdaux;
8796 unsigned int j;
8797
f631889e
UD
8798 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8799
d0fb9a8d 8800 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
601a03ba 8801 goto error_return_bad_verdef;
d0fb9a8d 8802
f631889e 8803 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
595bce75 8804 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
252b5132
RH
8805
8806 iverdef->vd_bfd = abfd;
8807
d0fb9a8d
JJ
8808 if (iverdef->vd_cnt == 0)
8809 iverdef->vd_auxptr = NULL;
8810 else
8811 {
a50b1753 8812 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
07d6d2b8
AM
8813 bfd_alloc2 (abfd, iverdef->vd_cnt,
8814 sizeof (Elf_Internal_Verdaux));
d0fb9a8d
JJ
8815 if (iverdef->vd_auxptr == NULL)
8816 goto error_return_verdef;
8817 }
8818
8819 if (iverdef->vd_aux
8820 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
601a03ba 8821 goto error_return_bad_verdef;
252b5132
RH
8822
8823 everdaux = ((Elf_External_Verdaux *)
8824 ((bfd_byte *) everdef + iverdef->vd_aux));
8825 iverdaux = iverdef->vd_auxptr;
8826 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8827 {
8828 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8829
8830 iverdaux->vda_nodename =
8831 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8832 iverdaux->vda_name);
8833 if (iverdaux->vda_nodename == NULL)
601a03ba 8834 goto error_return_bad_verdef;
252b5132 8835
25ff461f
AM
8836 iverdaux->vda_nextptr = NULL;
8837 if (iverdaux->vda_next == 0)
8838 {
8839 iverdef->vd_cnt = j + 1;
8840 break;
8841 }
252b5132
RH
8842 if (j + 1 < iverdef->vd_cnt)
8843 iverdaux->vda_nextptr = iverdaux + 1;
252b5132 8844
d0fb9a8d
JJ
8845 if (iverdaux->vda_next
8846 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
601a03ba 8847 goto error_return_bad_verdef;
d0fb9a8d 8848
252b5132
RH
8849 everdaux = ((Elf_External_Verdaux *)
8850 ((bfd_byte *) everdaux + iverdaux->vda_next));
8851 }
8852
595bce75 8853 iverdef->vd_nodename = NULL;
d0fb9a8d
JJ
8854 if (iverdef->vd_cnt)
8855 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
252b5132 8856
25ff461f
AM
8857 iverdef->vd_nextdef = NULL;
8858 if (iverdef->vd_next == 0)
8859 break;
d0fb9a8d 8860 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
252b5132 8861 iverdef->vd_nextdef = iverdef + 1;
252b5132
RH
8862
8863 everdef = ((Elf_External_Verdef *)
8864 ((bfd_byte *) everdef + iverdef->vd_next));
8865 }
8866
8867 free (contents);
8868 contents = NULL;
8869 }
fc0e6df6 8870 else if (default_imported_symver)
252b5132 8871 {
fc0e6df6
PB
8872 if (freeidx < 3)
8873 freeidx = 3;
8874 else
8875 freeidx++;
252b5132 8876
a50b1753 8877 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
07d6d2b8 8878 bfd_zalloc2 (abfd, freeidx, sizeof (Elf_Internal_Verdef));
fc0e6df6 8879 if (elf_tdata (abfd)->verdef == NULL)
252b5132
RH
8880 goto error_return;
8881
fc0e6df6
PB
8882 elf_tdata (abfd)->cverdefs = freeidx;
8883 }
252b5132 8884
fc0e6df6
PB
8885 /* Create a default version based on the soname. */
8886 if (default_imported_symver)
8887 {
8888 Elf_Internal_Verdef *iverdef;
8889 Elf_Internal_Verdaux *iverdaux;
252b5132 8890
5bb3703f 8891 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
252b5132 8892
fc0e6df6
PB
8893 iverdef->vd_version = VER_DEF_CURRENT;
8894 iverdef->vd_flags = 0;
8895 iverdef->vd_ndx = freeidx;
8896 iverdef->vd_cnt = 1;
252b5132 8897
fc0e6df6 8898 iverdef->vd_bfd = abfd;
252b5132 8899
fc0e6df6
PB
8900 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8901 if (iverdef->vd_nodename == NULL)
d0fb9a8d 8902 goto error_return_verdef;
fc0e6df6 8903 iverdef->vd_nextdef = NULL;
601a03ba
AM
8904 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8905 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
d0fb9a8d
JJ
8906 if (iverdef->vd_auxptr == NULL)
8907 goto error_return_verdef;
252b5132 8908
fc0e6df6
PB
8909 iverdaux = iverdef->vd_auxptr;
8910 iverdaux->vda_nodename = iverdef->vd_nodename;
252b5132
RH
8911 }
8912
b34976b6 8913 return TRUE;
252b5132
RH
8914
8915 error_return:
5ed6aba4 8916 if (contents != NULL)
252b5132 8917 free (contents);
b34976b6 8918 return FALSE;
252b5132
RH
8919}
8920\f
8921asymbol *
217aa764 8922_bfd_elf_make_empty_symbol (bfd *abfd)
252b5132
RH
8923{
8924 elf_symbol_type *newsym;
8925
7a6e0d89 8926 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
252b5132
RH
8927 if (!newsym)
8928 return NULL;
201159ec
NC
8929 newsym->symbol.the_bfd = abfd;
8930 return &newsym->symbol;
252b5132
RH
8931}
8932
8933void
217aa764
AM
8934_bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8935 asymbol *symbol,
8936 symbol_info *ret)
252b5132
RH
8937{
8938 bfd_symbol_info (symbol, ret);
8939}
8940
8941/* Return whether a symbol name implies a local symbol. Most targets
8942 use this function for the is_local_label_name entry point, but some
8943 override it. */
8944
b34976b6 8945bfd_boolean
217aa764
AM
8946_bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8947 const char *name)
252b5132
RH
8948{
8949 /* Normal local symbols start with ``.L''. */
8950 if (name[0] == '.' && name[1] == 'L')
b34976b6 8951 return TRUE;
252b5132
RH
8952
8953 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8954 DWARF debugging symbols starting with ``..''. */
8955 if (name[0] == '.' && name[1] == '.')
b34976b6 8956 return TRUE;
252b5132
RH
8957
8958 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
8959 emitting DWARF debugging output. I suspect this is actually a
8960 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
8961 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
8962 underscore to be emitted on some ELF targets). For ease of use,
8963 we treat such symbols as local. */
8964 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
b34976b6 8965 return TRUE;
252b5132 8966
b1fa9dd6
NC
8967 /* Treat assembler generated fake symbols, dollar local labels and
8968 forward-backward labels (aka local labels) as locals.
8969 These labels have the form:
8970
07d6d2b8 8971 L0^A.* (fake symbols)
b1fa9dd6
NC
8972
8973 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
8974
8975 Versions which start with .L will have already been matched above,
8976 so we only need to match the rest. */
8977 if (name[0] == 'L' && ISDIGIT (name[1]))
8978 {
8979 bfd_boolean ret = FALSE;
8980 const char * p;
8981 char c;
8982
8983 for (p = name + 2; (c = *p); p++)
8984 {
8985 if (c == 1 || c == 2)
8986 {
8987 if (c == 1 && p == name + 2)
8988 /* A fake symbol. */
8989 return TRUE;
8990
8991 /* FIXME: We are being paranoid here and treating symbols like
8992 L0^Bfoo as if there were non-local, on the grounds that the
8993 assembler will never generate them. But can any symbol
8994 containing an ASCII value in the range 1-31 ever be anything
8995 other than some kind of local ? */
8996 ret = TRUE;
8997 }
8998
8999 if (! ISDIGIT (c))
9000 {
9001 ret = FALSE;
9002 break;
9003 }
9004 }
9005 return ret;
9006 }
ffa54770 9007
b34976b6 9008 return FALSE;
252b5132
RH
9009}
9010
9011alent *
217aa764
AM
9012_bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9013 asymbol *symbol ATTRIBUTE_UNUSED)
252b5132
RH
9014{
9015 abort ();
9016 return NULL;
9017}
9018
b34976b6 9019bfd_boolean
217aa764
AM
9020_bfd_elf_set_arch_mach (bfd *abfd,
9021 enum bfd_architecture arch,
9022 unsigned long machine)
252b5132
RH
9023{
9024 /* If this isn't the right architecture for this backend, and this
9025 isn't the generic backend, fail. */
9026 if (arch != get_elf_backend_data (abfd)->arch
9027 && arch != bfd_arch_unknown
9028 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
b34976b6 9029 return FALSE;
252b5132
RH
9030
9031 return bfd_default_set_arch_mach (abfd, arch, machine);
9032}
9033
d1fad7c6
NC
9034/* Find the nearest line to a particular section and offset,
9035 for error reporting. */
9036
b34976b6 9037bfd_boolean
217aa764 9038_bfd_elf_find_nearest_line (bfd *abfd,
217aa764 9039 asymbol **symbols,
fb167eb2 9040 asection *section,
217aa764
AM
9041 bfd_vma offset,
9042 const char **filename_ptr,
9043 const char **functionname_ptr,
fb167eb2
AM
9044 unsigned int *line_ptr,
9045 unsigned int *discriminator_ptr)
d1fad7c6 9046{
b34976b6 9047 bfd_boolean found;
d1fad7c6 9048
fb167eb2 9049 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
4e8a9624 9050 filename_ptr, functionname_ptr,
fb167eb2 9051 line_ptr, discriminator_ptr,
9defd221 9052 dwarf_debug_sections,
e00e8198
AM
9053 &elf_tdata (abfd)->dwarf2_find_line_info)
9054 || _bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9055 filename_ptr, functionname_ptr,
9056 line_ptr))
d1fad7c6
NC
9057 {
9058 if (!*functionname_ptr)
e00e8198
AM
9059 _bfd_elf_find_function (abfd, symbols, section, offset,
9060 *filename_ptr ? NULL : filename_ptr,
9061 functionname_ptr);
b34976b6 9062 return TRUE;
d1fad7c6
NC
9063 }
9064
9065 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
4e8a9624
AM
9066 &found, filename_ptr,
9067 functionname_ptr, line_ptr,
9068 &elf_tdata (abfd)->line_info))
b34976b6 9069 return FALSE;
dc43ada5 9070 if (found && (*functionname_ptr || *line_ptr))
b34976b6 9071 return TRUE;
d1fad7c6
NC
9072
9073 if (symbols == NULL)
b34976b6 9074 return FALSE;
d1fad7c6 9075
e00e8198
AM
9076 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9077 filename_ptr, functionname_ptr))
b34976b6 9078 return FALSE;
d1fad7c6 9079
252b5132 9080 *line_ptr = 0;
b34976b6 9081 return TRUE;
252b5132
RH
9082}
9083
5420f73d
L
9084/* Find the line for a symbol. */
9085
9086bfd_boolean
9087_bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9088 const char **filename_ptr, unsigned int *line_ptr)
9b8d1a36 9089{
fb167eb2
AM
9090 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9091 filename_ptr, NULL, line_ptr, NULL,
9defd221 9092 dwarf_debug_sections,
fb167eb2 9093 &elf_tdata (abfd)->dwarf2_find_line_info);
5420f73d
L
9094}
9095
4ab527b0
FF
9096/* After a call to bfd_find_nearest_line, successive calls to
9097 bfd_find_inliner_info can be used to get source information about
9098 each level of function inlining that terminated at the address
9099 passed to bfd_find_nearest_line. Currently this is only supported
9100 for DWARF2 with appropriate DWARF3 extensions. */
9101
9102bfd_boolean
9103_bfd_elf_find_inliner_info (bfd *abfd,
9104 const char **filename_ptr,
9105 const char **functionname_ptr,
9106 unsigned int *line_ptr)
9107{
9108 bfd_boolean found;
9109 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9110 functionname_ptr, line_ptr,
9111 & elf_tdata (abfd)->dwarf2_find_line_info);
9112 return found;
9113}
9114
252b5132 9115int
a6b96beb 9116_bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
252b5132 9117{
8ded5a0f
AM
9118 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9119 int ret = bed->s->sizeof_ehdr;
252b5132 9120
0e1862bb 9121 if (!bfd_link_relocatable (info))
8ded5a0f 9122 {
12bd6957 9123 bfd_size_type phdr_size = elf_program_header_size (abfd);
8ded5a0f 9124
62d7a5f6
AM
9125 if (phdr_size == (bfd_size_type) -1)
9126 {
9127 struct elf_segment_map *m;
9128
9129 phdr_size = 0;
12bd6957 9130 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
62d7a5f6 9131 phdr_size += bed->s->sizeof_phdr;
8ded5a0f 9132
62d7a5f6
AM
9133 if (phdr_size == 0)
9134 phdr_size = get_program_header_size (abfd, info);
9135 }
8ded5a0f 9136
12bd6957 9137 elf_program_header_size (abfd) = phdr_size;
8ded5a0f
AM
9138 ret += phdr_size;
9139 }
9140
252b5132
RH
9141 return ret;
9142}
9143
b34976b6 9144bfd_boolean
217aa764
AM
9145_bfd_elf_set_section_contents (bfd *abfd,
9146 sec_ptr section,
0f867abe 9147 const void *location,
217aa764
AM
9148 file_ptr offset,
9149 bfd_size_type count)
252b5132
RH
9150{
9151 Elf_Internal_Shdr *hdr;
1b6aeedb 9152 file_ptr pos;
252b5132
RH
9153
9154 if (! abfd->output_has_begun
217aa764 9155 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
b34976b6 9156 return FALSE;
252b5132 9157
0ce398f1
L
9158 if (!count)
9159 return TRUE;
9160
252b5132 9161 hdr = &elf_section_data (section)->this_hdr;
0ce398f1
L
9162 if (hdr->sh_offset == (file_ptr) -1)
9163 {
1ff6de03
NA
9164 if (bfd_section_is_ctf (section))
9165 /* Nothing to do with this section: the contents are generated
9166 later. */
9167 return TRUE;
9168
0ce398f1
L
9169 /* We must compress this section. Write output to the buffer. */
9170 unsigned char *contents = hdr->contents;
9171 if ((offset + count) > hdr->sh_size
9172 || (section->flags & SEC_ELF_COMPRESS) == 0
9173 || contents == NULL)
9174 abort ();
9175 memcpy (contents + offset, location, count);
9176 return TRUE;
9177 }
dc810e39
AM
9178 pos = hdr->sh_offset + offset;
9179 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9180 || bfd_bwrite (location, count, abfd) != count)
b34976b6 9181 return FALSE;
252b5132 9182
b34976b6 9183 return TRUE;
252b5132
RH
9184}
9185
f3185997 9186bfd_boolean
217aa764
AM
9187_bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9188 arelent *cache_ptr ATTRIBUTE_UNUSED,
9189 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
252b5132
RH
9190{
9191 abort ();
f3185997 9192 return FALSE;
252b5132
RH
9193}
9194
252b5132
RH
9195/* Try to convert a non-ELF reloc into an ELF one. */
9196
b34976b6 9197bfd_boolean
217aa764 9198_bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
252b5132 9199{
c044fabd 9200 /* Check whether we really have an ELF howto. */
252b5132
RH
9201
9202 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9203 {
9204 bfd_reloc_code_real_type code;
9205 reloc_howto_type *howto;
9206
9207 /* Alien reloc: Try to determine its type to replace it with an
c044fabd 9208 equivalent ELF reloc. */
252b5132
RH
9209
9210 if (areloc->howto->pc_relative)
9211 {
9212 switch (areloc->howto->bitsize)
9213 {
9214 case 8:
9215 code = BFD_RELOC_8_PCREL;
9216 break;
9217 case 12:
9218 code = BFD_RELOC_12_PCREL;
9219 break;
9220 case 16:
9221 code = BFD_RELOC_16_PCREL;
9222 break;
9223 case 24:
9224 code = BFD_RELOC_24_PCREL;
9225 break;
9226 case 32:
9227 code = BFD_RELOC_32_PCREL;
9228 break;
9229 case 64:
9230 code = BFD_RELOC_64_PCREL;
9231 break;
9232 default:
9233 goto fail;
9234 }
9235
9236 howto = bfd_reloc_type_lookup (abfd, code);
9237
9238 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
9239 {
9240 if (howto->pcrel_offset)
9241 areloc->addend += areloc->address;
9242 else
9243 areloc->addend -= areloc->address; /* addend is unsigned!! */
9244 }
9245 }
9246 else
9247 {
9248 switch (areloc->howto->bitsize)
9249 {
9250 case 8:
9251 code = BFD_RELOC_8;
9252 break;
9253 case 14:
9254 code = BFD_RELOC_14;
9255 break;
9256 case 16:
9257 code = BFD_RELOC_16;
9258 break;
9259 case 26:
9260 code = BFD_RELOC_26;
9261 break;
9262 case 32:
9263 code = BFD_RELOC_32;
9264 break;
9265 case 64:
9266 code = BFD_RELOC_64;
9267 break;
9268 default:
9269 goto fail;
9270 }
9271
9272 howto = bfd_reloc_type_lookup (abfd, code);
9273 }
9274
9275 if (howto)
9276 areloc->howto = howto;
9277 else
9278 goto fail;
9279 }
9280
b34976b6 9281 return TRUE;
252b5132
RH
9282
9283 fail:
0aa13fee
AM
9284 /* xgettext:c-format */
9285 _bfd_error_handler (_("%pB: %s unsupported"),
9286 abfd, areloc->howto->name);
9aea1e31 9287 bfd_set_error (bfd_error_sorry);
b34976b6 9288 return FALSE;
252b5132
RH
9289}
9290
b34976b6 9291bfd_boolean
217aa764 9292_bfd_elf_close_and_cleanup (bfd *abfd)
252b5132 9293{
d9071b0c
TG
9294 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9295 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
252b5132 9296 {
c0355132 9297 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
2b0f7ef9 9298 _bfd_elf_strtab_free (elf_shstrtab (abfd));
d9071b0c 9299 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
252b5132
RH
9300 }
9301
9302 return _bfd_generic_close_and_cleanup (abfd);
9303}
9304
9305/* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9306 in the relocation's offset. Thus we cannot allow any sort of sanity
9307 range-checking to interfere. There is nothing else to do in processing
9308 this reloc. */
9309
9310bfd_reloc_status_type
217aa764
AM
9311_bfd_elf_rel_vtable_reloc_fn
9312 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
fc0a2244 9313 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
217aa764
AM
9314 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9315 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
9316{
9317 return bfd_reloc_ok;
9318}
252b5132
RH
9319\f
9320/* Elf core file support. Much of this only works on native
9321 toolchains, since we rely on knowing the
9322 machine-dependent procfs structure in order to pick
c044fabd 9323 out details about the corefile. */
252b5132
RH
9324
9325#ifdef HAVE_SYS_PROCFS_H
16231b7b
DG
9326/* Needed for new procfs interface on sparc-solaris. */
9327# define _STRUCTURED_PROC 1
252b5132
RH
9328# include <sys/procfs.h>
9329#endif
9330
261b8d08
PA
9331/* Return a PID that identifies a "thread" for threaded cores, or the
9332 PID of the main process for non-threaded cores. */
252b5132
RH
9333
9334static int
217aa764 9335elfcore_make_pid (bfd *abfd)
252b5132 9336{
261b8d08
PA
9337 int pid;
9338
228e534f 9339 pid = elf_tdata (abfd)->core->lwpid;
261b8d08 9340 if (pid == 0)
228e534f 9341 pid = elf_tdata (abfd)->core->pid;
261b8d08
PA
9342
9343 return pid;
252b5132
RH
9344}
9345
252b5132
RH
9346/* If there isn't a section called NAME, make one, using
9347 data from SECT. Note, this function will generate a
9348 reference to NAME, so you shouldn't deallocate or
c044fabd 9349 overwrite it. */
252b5132 9350
b34976b6 9351static bfd_boolean
217aa764 9352elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
252b5132 9353{
c044fabd 9354 asection *sect2;
252b5132
RH
9355
9356 if (bfd_get_section_by_name (abfd, name) != NULL)
b34976b6 9357 return TRUE;
252b5132 9358
117ed4f8 9359 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
252b5132 9360 if (sect2 == NULL)
b34976b6 9361 return FALSE;
252b5132 9362
eea6121a 9363 sect2->size = sect->size;
252b5132 9364 sect2->filepos = sect->filepos;
252b5132 9365 sect2->alignment_power = sect->alignment_power;
b34976b6 9366 return TRUE;
252b5132
RH
9367}
9368
bb0082d6
AM
9369/* Create a pseudosection containing SIZE bytes at FILEPOS. This
9370 actually creates up to two pseudosections:
9371 - For the single-threaded case, a section named NAME, unless
9372 such a section already exists.
9373 - For the multi-threaded case, a section named "NAME/PID", where
9374 PID is elfcore_make_pid (abfd).
24d3e51b 9375 Both pseudosections have identical contents. */
b34976b6 9376bfd_boolean
217aa764
AM
9377_bfd_elfcore_make_pseudosection (bfd *abfd,
9378 char *name,
9379 size_t size,
9380 ufile_ptr filepos)
bb0082d6
AM
9381{
9382 char buf[100];
9383 char *threaded_name;
d4c88bbb 9384 size_t len;
bb0082d6
AM
9385 asection *sect;
9386
9387 /* Build the section name. */
9388
9389 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
d4c88bbb 9390 len = strlen (buf) + 1;
a50b1753 9391 threaded_name = (char *) bfd_alloc (abfd, len);
bb0082d6 9392 if (threaded_name == NULL)
b34976b6 9393 return FALSE;
d4c88bbb 9394 memcpy (threaded_name, buf, len);
bb0082d6 9395
117ed4f8
AM
9396 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9397 SEC_HAS_CONTENTS);
bb0082d6 9398 if (sect == NULL)
b34976b6 9399 return FALSE;
eea6121a 9400 sect->size = size;
bb0082d6 9401 sect->filepos = filepos;
bb0082d6
AM
9402 sect->alignment_power = 2;
9403
936e320b 9404 return elfcore_maybe_make_sect (abfd, name, sect);
bb0082d6
AM
9405}
9406
58e07198
CZ
9407static bfd_boolean
9408elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9409 size_t offs)
9410{
9411 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9412 SEC_HAS_CONTENTS);
9413
9414 if (sect == NULL)
9415 return FALSE;
9416
9417 sect->size = note->descsz - offs;
9418 sect->filepos = note->descpos + offs;
9419 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9420
9421 return TRUE;
9422}
9423
252b5132 9424/* prstatus_t exists on:
4a938328 9425 solaris 2.5+
252b5132
RH
9426 linux 2.[01] + glibc
9427 unixware 4.2
9428*/
9429
9430#if defined (HAVE_PRSTATUS_T)
a7b97311 9431
b34976b6 9432static bfd_boolean
217aa764 9433elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9434{
eea6121a 9435 size_t size;
7ee38065 9436 int offset;
252b5132 9437
4a938328
MS
9438 if (note->descsz == sizeof (prstatus_t))
9439 {
9440 prstatus_t prstat;
252b5132 9441
eea6121a 9442 size = sizeof (prstat.pr_reg);
7ee38065 9443 offset = offsetof (prstatus_t, pr_reg);
4a938328 9444 memcpy (&prstat, note->descdata, sizeof (prstat));
252b5132 9445
fa49d224
NC
9446 /* Do not overwrite the core signal if it
9447 has already been set by another thread. */
228e534f
AM
9448 if (elf_tdata (abfd)->core->signal == 0)
9449 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9450 if (elf_tdata (abfd)->core->pid == 0)
9451 elf_tdata (abfd)->core->pid = prstat.pr_pid;
252b5132 9452
4a938328
MS
9453 /* pr_who exists on:
9454 solaris 2.5+
9455 unixware 4.2
9456 pr_who doesn't exist on:
9457 linux 2.[01]
9458 */
252b5132 9459#if defined (HAVE_PRSTATUS_T_PR_WHO)
228e534f 9460 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9461#else
228e534f 9462 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
252b5132 9463#endif
4a938328 9464 }
7ee38065 9465#if defined (HAVE_PRSTATUS32_T)
4a938328
MS
9466 else if (note->descsz == sizeof (prstatus32_t))
9467 {
9468 /* 64-bit host, 32-bit corefile */
9469 prstatus32_t prstat;
9470
eea6121a 9471 size = sizeof (prstat.pr_reg);
7ee38065 9472 offset = offsetof (prstatus32_t, pr_reg);
4a938328
MS
9473 memcpy (&prstat, note->descdata, sizeof (prstat));
9474
fa49d224
NC
9475 /* Do not overwrite the core signal if it
9476 has already been set by another thread. */
228e534f
AM
9477 if (elf_tdata (abfd)->core->signal == 0)
9478 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9479 if (elf_tdata (abfd)->core->pid == 0)
9480 elf_tdata (abfd)->core->pid = prstat.pr_pid;
4a938328
MS
9481
9482 /* pr_who exists on:
9483 solaris 2.5+
9484 unixware 4.2
9485 pr_who doesn't exist on:
9486 linux 2.[01]
9487 */
7ee38065 9488#if defined (HAVE_PRSTATUS32_T_PR_WHO)
228e534f 9489 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
261b8d08 9490#else
228e534f 9491 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
4a938328
MS
9492#endif
9493 }
7ee38065 9494#endif /* HAVE_PRSTATUS32_T */
4a938328
MS
9495 else
9496 {
9497 /* Fail - we don't know how to handle any other
9498 note size (ie. data object type). */
b34976b6 9499 return TRUE;
4a938328 9500 }
252b5132 9501
bb0082d6 9502 /* Make a ".reg/999" section and a ".reg" section. */
936e320b 9503 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 9504 size, note->descpos + offset);
252b5132
RH
9505}
9506#endif /* defined (HAVE_PRSTATUS_T) */
9507
bb0082d6 9508/* Create a pseudosection containing the exact contents of NOTE. */
b34976b6 9509static bfd_boolean
217aa764
AM
9510elfcore_make_note_pseudosection (bfd *abfd,
9511 char *name,
9512 Elf_Internal_Note *note)
252b5132 9513{
936e320b
AM
9514 return _bfd_elfcore_make_pseudosection (abfd, name,
9515 note->descsz, note->descpos);
252b5132
RH
9516}
9517
ff08c6bb
JB
9518/* There isn't a consistent prfpregset_t across platforms,
9519 but it doesn't matter, because we don't have to pick this
c044fabd
KH
9520 data structure apart. */
9521
b34976b6 9522static bfd_boolean
217aa764 9523elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9524{
9525 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9526}
9527
ff08c6bb 9528/* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
971d4640 9529 type of NT_PRXFPREG. Just include the whole note's contents
ff08c6bb 9530 literally. */
c044fabd 9531
b34976b6 9532static bfd_boolean
217aa764 9533elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
ff08c6bb
JB
9534{
9535 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9536}
9537
4339cae0
L
9538/* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9539 with a note type of NT_X86_XSTATE. Just include the whole note's
9540 contents literally. */
9541
9542static bfd_boolean
9543elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9544{
9545 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9546}
9547
97753bd5
AM
9548static bfd_boolean
9549elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9550{
9551 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9552}
9553
89eeb0bc
LM
9554static bfd_boolean
9555elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9556{
9557 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9558}
97753bd5 9559
cb2366c1
EBM
9560static bfd_boolean
9561elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9562{
9563 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9564}
9565
9566static bfd_boolean
9567elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9568{
9569 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9570}
9571
9572static bfd_boolean
9573elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9574{
9575 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9576}
9577
9578static bfd_boolean
9579elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9580{
9581 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9582}
9583
9584static bfd_boolean
9585elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9586{
9587 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9588}
9589
9590static bfd_boolean
9591elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9592{
9593 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9594}
9595
9596static bfd_boolean
9597elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9598{
9599 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9600}
9601
9602static bfd_boolean
9603elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9604{
9605 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9606}
9607
9608static bfd_boolean
9609elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9610{
9611 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9612}
9613
9614static bfd_boolean
9615elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9616{
9617 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9618}
9619
9620static bfd_boolean
9621elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9622{
9623 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9624}
9625
9626static bfd_boolean
9627elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9628{
9629 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9630}
9631
9632static bfd_boolean
9633elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9634{
9635 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9636}
9637
0675e188
UW
9638static bfd_boolean
9639elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9640{
9641 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9642}
9643
d7eeb400
MS
9644static bfd_boolean
9645elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9646{
9647 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9648}
9649
9650static bfd_boolean
9651elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9652{
9653 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9654}
9655
9656static bfd_boolean
9657elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9658{
9659 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9660}
9661
9662static bfd_boolean
9663elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9664{
9665 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9666}
9667
9668static bfd_boolean
9669elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9670{
9671 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9672}
9673
355b81d9
UW
9674static bfd_boolean
9675elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9676{
9677 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9678}
9679
9680static bfd_boolean
9681elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9682{
9683 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9684}
9685
abb3f6cc
NC
9686static bfd_boolean
9687elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9688{
9689 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9690}
9691
4ef9f41a
AA
9692static bfd_boolean
9693elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9694{
9695 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9696}
9697
9698static bfd_boolean
9699elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9700{
9701 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9702}
9703
88ab90e8
AA
9704static bfd_boolean
9705elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9706{
9707 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9708}
9709
9710static bfd_boolean
9711elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9712{
9713 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9714}
9715
faa9a424
UW
9716static bfd_boolean
9717elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9718{
9719 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9720}
9721
652451f8
YZ
9722static bfd_boolean
9723elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9724{
9725 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9726}
9727
9728static bfd_boolean
9729elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9730{
9731 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9732}
9733
9734static bfd_boolean
9735elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9736{
9737 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9738}
9739
ad1cc4e4
AH
9740static bfd_boolean
9741elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9742{
9743 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9744}
9745
e6c3b5bf
AH
9746static bfd_boolean
9747elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9748{
9749 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9750}
9751
252b5132 9752#if defined (HAVE_PRPSINFO_T)
4a938328 9753typedef prpsinfo_t elfcore_psinfo_t;
7ee38065 9754#if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9755typedef prpsinfo32_t elfcore_psinfo32_t;
9756#endif
252b5132
RH
9757#endif
9758
9759#if defined (HAVE_PSINFO_T)
4a938328 9760typedef psinfo_t elfcore_psinfo_t;
7ee38065 9761#if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
4a938328
MS
9762typedef psinfo32_t elfcore_psinfo32_t;
9763#endif
252b5132
RH
9764#endif
9765
252b5132
RH
9766/* return a malloc'ed copy of a string at START which is at
9767 most MAX bytes long, possibly without a terminating '\0'.
c044fabd 9768 the copy will always have a terminating '\0'. */
252b5132 9769
936e320b 9770char *
217aa764 9771_bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
252b5132 9772{
dc810e39 9773 char *dups;
a50b1753 9774 char *end = (char *) memchr (start, '\0', max);
dc810e39 9775 size_t len;
252b5132
RH
9776
9777 if (end == NULL)
9778 len = max;
9779 else
9780 len = end - start;
9781
a50b1753 9782 dups = (char *) bfd_alloc (abfd, len + 1);
dc810e39 9783 if (dups == NULL)
252b5132
RH
9784 return NULL;
9785
dc810e39
AM
9786 memcpy (dups, start, len);
9787 dups[len] = '\0';
252b5132 9788
dc810e39 9789 return dups;
252b5132
RH
9790}
9791
bb0082d6 9792#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
b34976b6 9793static bfd_boolean
217aa764 9794elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
252b5132 9795{
4a938328
MS
9796 if (note->descsz == sizeof (elfcore_psinfo_t))
9797 {
9798 elfcore_psinfo_t psinfo;
252b5132 9799
7ee38065 9800 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9801
335e41d4 9802#if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
228e534f 9803 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9804#endif
228e534f 9805 elf_tdata (abfd)->core->program
936e320b
AM
9806 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9807 sizeof (psinfo.pr_fname));
252b5132 9808
228e534f 9809 elf_tdata (abfd)->core->command
936e320b
AM
9810 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9811 sizeof (psinfo.pr_psargs));
4a938328 9812 }
7ee38065 9813#if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
4a938328
MS
9814 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9815 {
9816 /* 64-bit host, 32-bit corefile */
9817 elfcore_psinfo32_t psinfo;
9818
7ee38065 9819 memcpy (&psinfo, note->descdata, sizeof (psinfo));
252b5132 9820
335e41d4 9821#if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
228e534f 9822 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
335e41d4 9823#endif
228e534f 9824 elf_tdata (abfd)->core->program
936e320b
AM
9825 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9826 sizeof (psinfo.pr_fname));
4a938328 9827
228e534f 9828 elf_tdata (abfd)->core->command
936e320b
AM
9829 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9830 sizeof (psinfo.pr_psargs));
4a938328
MS
9831 }
9832#endif
9833
9834 else
9835 {
9836 /* Fail - we don't know how to handle any other
9837 note size (ie. data object type). */
b34976b6 9838 return TRUE;
4a938328 9839 }
252b5132
RH
9840
9841 /* Note that for some reason, a spurious space is tacked
9842 onto the end of the args in some (at least one anyway)
c044fabd 9843 implementations, so strip it off if it exists. */
252b5132
RH
9844
9845 {
228e534f 9846 char *command = elf_tdata (abfd)->core->command;
252b5132
RH
9847 int n = strlen (command);
9848
9849 if (0 < n && command[n - 1] == ' ')
9850 command[n - 1] = '\0';
9851 }
9852
b34976b6 9853 return TRUE;
252b5132
RH
9854}
9855#endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9856
252b5132 9857#if defined (HAVE_PSTATUS_T)
b34976b6 9858static bfd_boolean
217aa764 9859elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132 9860{
f572a39d
AM
9861 if (note->descsz == sizeof (pstatus_t)
9862#if defined (HAVE_PXSTATUS_T)
9863 || note->descsz == sizeof (pxstatus_t)
9864#endif
9865 )
4a938328
MS
9866 {
9867 pstatus_t pstat;
252b5132 9868
4a938328 9869 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9870
228e534f 9871 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328 9872 }
7ee38065 9873#if defined (HAVE_PSTATUS32_T)
4a938328
MS
9874 else if (note->descsz == sizeof (pstatus32_t))
9875 {
9876 /* 64-bit host, 32-bit corefile */
9877 pstatus32_t pstat;
252b5132 9878
4a938328 9879 memcpy (&pstat, note->descdata, sizeof (pstat));
252b5132 9880
228e534f 9881 elf_tdata (abfd)->core->pid = pstat.pr_pid;
4a938328
MS
9882 }
9883#endif
252b5132
RH
9884 /* Could grab some more details from the "representative"
9885 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
c044fabd 9886 NT_LWPSTATUS note, presumably. */
252b5132 9887
b34976b6 9888 return TRUE;
252b5132
RH
9889}
9890#endif /* defined (HAVE_PSTATUS_T) */
9891
252b5132 9892#if defined (HAVE_LWPSTATUS_T)
b34976b6 9893static bfd_boolean
217aa764 9894elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
252b5132
RH
9895{
9896 lwpstatus_t lwpstat;
9897 char buf[100];
c044fabd 9898 char *name;
d4c88bbb 9899 size_t len;
c044fabd 9900 asection *sect;
252b5132 9901
f572a39d
AM
9902 if (note->descsz != sizeof (lwpstat)
9903#if defined (HAVE_LWPXSTATUS_T)
9904 && note->descsz != sizeof (lwpxstatus_t)
9905#endif
9906 )
b34976b6 9907 return TRUE;
252b5132
RH
9908
9909 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9910
228e534f 9911 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
a1504221
JB
9912 /* Do not overwrite the core signal if it has already been set by
9913 another thread. */
228e534f
AM
9914 if (elf_tdata (abfd)->core->signal == 0)
9915 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
252b5132 9916
c044fabd 9917 /* Make a ".reg/999" section. */
252b5132
RH
9918
9919 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
d4c88bbb 9920 len = strlen (buf) + 1;
217aa764 9921 name = bfd_alloc (abfd, len);
252b5132 9922 if (name == NULL)
b34976b6 9923 return FALSE;
d4c88bbb 9924 memcpy (name, buf, len);
252b5132 9925
117ed4f8 9926 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9927 if (sect == NULL)
b34976b6 9928 return FALSE;
252b5132
RH
9929
9930#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 9931 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
252b5132
RH
9932 sect->filepos = note->descpos
9933 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
9934#endif
9935
9936#if defined (HAVE_LWPSTATUS_T_PR_REG)
eea6121a 9937 sect->size = sizeof (lwpstat.pr_reg);
252b5132
RH
9938 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
9939#endif
9940
252b5132
RH
9941 sect->alignment_power = 2;
9942
9943 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 9944 return FALSE;
252b5132
RH
9945
9946 /* Make a ".reg2/999" section */
9947
9948 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
d4c88bbb 9949 len = strlen (buf) + 1;
217aa764 9950 name = bfd_alloc (abfd, len);
252b5132 9951 if (name == NULL)
b34976b6 9952 return FALSE;
d4c88bbb 9953 memcpy (name, buf, len);
252b5132 9954
117ed4f8 9955 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
252b5132 9956 if (sect == NULL)
b34976b6 9957 return FALSE;
252b5132
RH
9958
9959#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
eea6121a 9960 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
252b5132
RH
9961 sect->filepos = note->descpos
9962 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
9963#endif
9964
9965#if defined (HAVE_LWPSTATUS_T_PR_FPREG)
eea6121a 9966 sect->size = sizeof (lwpstat.pr_fpreg);
252b5132
RH
9967 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
9968#endif
9969
252b5132
RH
9970 sect->alignment_power = 2;
9971
936e320b 9972 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
252b5132
RH
9973}
9974#endif /* defined (HAVE_LWPSTATUS_T) */
9975
b34976b6 9976static bfd_boolean
217aa764 9977elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
16e9c715
NC
9978{
9979 char buf[30];
c044fabd 9980 char *name;
d4c88bbb 9981 size_t len;
c044fabd 9982 asection *sect;
4a6636fb
PA
9983 int type;
9984 int is_active_thread;
9985 bfd_vma base_addr;
16e9c715 9986
4a6636fb 9987 if (note->descsz < 728)
b34976b6 9988 return TRUE;
16e9c715 9989
4a6636fb
PA
9990 if (! CONST_STRNEQ (note->namedata, "win32"))
9991 return TRUE;
9992
9993 type = bfd_get_32 (abfd, note->descdata);
c044fabd 9994
4a6636fb 9995 switch (type)
16e9c715 9996 {
4a6636fb 9997 case 1 /* NOTE_INFO_PROCESS */:
228e534f 9998 /* FIXME: need to add ->core->command. */
4a6636fb 9999 /* process_info.pid */
228e534f 10000 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
4a6636fb 10001 /* process_info.signal */
228e534f 10002 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
c044fabd 10003 break;
16e9c715 10004
4a6636fb 10005 case 2 /* NOTE_INFO_THREAD */:
16e9c715 10006 /* Make a ".reg/999" section. */
4a6636fb
PA
10007 /* thread_info.tid */
10008 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
c044fabd 10009
d4c88bbb 10010 len = strlen (buf) + 1;
a50b1753 10011 name = (char *) bfd_alloc (abfd, len);
16e9c715 10012 if (name == NULL)
b34976b6 10013 return FALSE;
c044fabd 10014
d4c88bbb 10015 memcpy (name, buf, len);
16e9c715 10016
117ed4f8 10017 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
16e9c715 10018 if (sect == NULL)
b34976b6 10019 return FALSE;
c044fabd 10020
4a6636fb
PA
10021 /* sizeof (thread_info.thread_context) */
10022 sect->size = 716;
10023 /* offsetof (thread_info.thread_context) */
10024 sect->filepos = note->descpos + 12;
16e9c715
NC
10025 sect->alignment_power = 2;
10026
4a6636fb
PA
10027 /* thread_info.is_active_thread */
10028 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10029
10030 if (is_active_thread)
16e9c715 10031 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
b34976b6 10032 return FALSE;
16e9c715
NC
10033 break;
10034
4a6636fb 10035 case 3 /* NOTE_INFO_MODULE */:
16e9c715 10036 /* Make a ".module/xxxxxxxx" section. */
4a6636fb
PA
10037 /* module_info.base_address */
10038 base_addr = bfd_get_32 (abfd, note->descdata + 4);
0af1713e 10039 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
c044fabd 10040
d4c88bbb 10041 len = strlen (buf) + 1;
a50b1753 10042 name = (char *) bfd_alloc (abfd, len);
16e9c715 10043 if (name == NULL)
b34976b6 10044 return FALSE;
c044fabd 10045
d4c88bbb 10046 memcpy (name, buf, len);
252b5132 10047
117ed4f8 10048 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
c044fabd 10049
16e9c715 10050 if (sect == NULL)
b34976b6 10051 return FALSE;
c044fabd 10052
eea6121a 10053 sect->size = note->descsz;
16e9c715 10054 sect->filepos = note->descpos;
16e9c715
NC
10055 sect->alignment_power = 2;
10056 break;
10057
10058 default:
b34976b6 10059 return TRUE;
16e9c715
NC
10060 }
10061
b34976b6 10062 return TRUE;
16e9c715 10063}
252b5132 10064
b34976b6 10065static bfd_boolean
217aa764 10066elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
252b5132 10067{
9c5bfbb7 10068 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
bb0082d6 10069
252b5132
RH
10070 switch (note->type)
10071 {
10072 default:
b34976b6 10073 return TRUE;
252b5132 10074
252b5132 10075 case NT_PRSTATUS:
bb0082d6
AM
10076 if (bed->elf_backend_grok_prstatus)
10077 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
b34976b6 10078 return TRUE;
bb0082d6 10079#if defined (HAVE_PRSTATUS_T)
252b5132 10080 return elfcore_grok_prstatus (abfd, note);
bb0082d6 10081#else
b34976b6 10082 return TRUE;
252b5132
RH
10083#endif
10084
10085#if defined (HAVE_PSTATUS_T)
10086 case NT_PSTATUS:
10087 return elfcore_grok_pstatus (abfd, note);
10088#endif
10089
10090#if defined (HAVE_LWPSTATUS_T)
10091 case NT_LWPSTATUS:
10092 return elfcore_grok_lwpstatus (abfd, note);
10093#endif
10094
10095 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10096 return elfcore_grok_prfpreg (abfd, note);
10097
c044fabd 10098 case NT_WIN32PSTATUS:
16e9c715 10099 return elfcore_grok_win32pstatus (abfd, note);
16e9c715 10100
c044fabd 10101 case NT_PRXFPREG: /* Linux SSE extension */
e377ab71
MK
10102 if (note->namesz == 6
10103 && strcmp (note->namedata, "LINUX") == 0)
ff08c6bb
JB
10104 return elfcore_grok_prxfpreg (abfd, note);
10105 else
b34976b6 10106 return TRUE;
ff08c6bb 10107
4339cae0
L
10108 case NT_X86_XSTATE: /* Linux XSAVE extension */
10109 if (note->namesz == 6
10110 && strcmp (note->namedata, "LINUX") == 0)
10111 return elfcore_grok_xstatereg (abfd, note);
10112 else
10113 return TRUE;
10114
97753bd5
AM
10115 case NT_PPC_VMX:
10116 if (note->namesz == 6
10117 && strcmp (note->namedata, "LINUX") == 0)
10118 return elfcore_grok_ppc_vmx (abfd, note);
10119 else
10120 return TRUE;
10121
89eeb0bc
LM
10122 case NT_PPC_VSX:
10123 if (note->namesz == 6
07d6d2b8
AM
10124 && strcmp (note->namedata, "LINUX") == 0)
10125 return elfcore_grok_ppc_vsx (abfd, note);
89eeb0bc 10126 else
07d6d2b8 10127 return TRUE;
89eeb0bc 10128
cb2366c1
EBM
10129 case NT_PPC_TAR:
10130 if (note->namesz == 6
4b24dd1a
AM
10131 && strcmp (note->namedata, "LINUX") == 0)
10132 return elfcore_grok_ppc_tar (abfd, note);
cb2366c1 10133 else
4b24dd1a 10134 return TRUE;
cb2366c1
EBM
10135
10136 case NT_PPC_PPR:
10137 if (note->namesz == 6
4b24dd1a
AM
10138 && strcmp (note->namedata, "LINUX") == 0)
10139 return elfcore_grok_ppc_ppr (abfd, note);
cb2366c1 10140 else
4b24dd1a 10141 return TRUE;
cb2366c1
EBM
10142
10143 case NT_PPC_DSCR:
10144 if (note->namesz == 6
4b24dd1a
AM
10145 && strcmp (note->namedata, "LINUX") == 0)
10146 return elfcore_grok_ppc_dscr (abfd, note);
cb2366c1 10147 else
4b24dd1a 10148 return TRUE;
cb2366c1
EBM
10149
10150 case NT_PPC_EBB:
10151 if (note->namesz == 6
4b24dd1a
AM
10152 && strcmp (note->namedata, "LINUX") == 0)
10153 return elfcore_grok_ppc_ebb (abfd, note);
cb2366c1 10154 else
4b24dd1a 10155 return TRUE;
cb2366c1
EBM
10156
10157 case NT_PPC_PMU:
10158 if (note->namesz == 6
4b24dd1a
AM
10159 && strcmp (note->namedata, "LINUX") == 0)
10160 return elfcore_grok_ppc_pmu (abfd, note);
cb2366c1 10161 else
4b24dd1a 10162 return TRUE;
cb2366c1
EBM
10163
10164 case NT_PPC_TM_CGPR:
10165 if (note->namesz == 6
4b24dd1a
AM
10166 && strcmp (note->namedata, "LINUX") == 0)
10167 return elfcore_grok_ppc_tm_cgpr (abfd, note);
cb2366c1 10168 else
4b24dd1a 10169 return TRUE;
cb2366c1
EBM
10170
10171 case NT_PPC_TM_CFPR:
10172 if (note->namesz == 6
4b24dd1a
AM
10173 && strcmp (note->namedata, "LINUX") == 0)
10174 return elfcore_grok_ppc_tm_cfpr (abfd, note);
cb2366c1 10175 else
4b24dd1a 10176 return TRUE;
cb2366c1
EBM
10177
10178 case NT_PPC_TM_CVMX:
10179 if (note->namesz == 6
4b24dd1a
AM
10180 && strcmp (note->namedata, "LINUX") == 0)
10181 return elfcore_grok_ppc_tm_cvmx (abfd, note);
cb2366c1 10182 else
4b24dd1a 10183 return TRUE;
cb2366c1
EBM
10184
10185 case NT_PPC_TM_CVSX:
10186 if (note->namesz == 6
4b24dd1a
AM
10187 && strcmp (note->namedata, "LINUX") == 0)
10188 return elfcore_grok_ppc_tm_cvsx (abfd, note);
cb2366c1 10189 else
4b24dd1a 10190 return TRUE;
cb2366c1
EBM
10191
10192 case NT_PPC_TM_SPR:
10193 if (note->namesz == 6
4b24dd1a
AM
10194 && strcmp (note->namedata, "LINUX") == 0)
10195 return elfcore_grok_ppc_tm_spr (abfd, note);
cb2366c1 10196 else
4b24dd1a 10197 return TRUE;
cb2366c1
EBM
10198
10199 case NT_PPC_TM_CTAR:
10200 if (note->namesz == 6
4b24dd1a
AM
10201 && strcmp (note->namedata, "LINUX") == 0)
10202 return elfcore_grok_ppc_tm_ctar (abfd, note);
cb2366c1 10203 else
4b24dd1a 10204 return TRUE;
cb2366c1
EBM
10205
10206 case NT_PPC_TM_CPPR:
10207 if (note->namesz == 6
4b24dd1a
AM
10208 && strcmp (note->namedata, "LINUX") == 0)
10209 return elfcore_grok_ppc_tm_cppr (abfd, note);
cb2366c1 10210 else
4b24dd1a 10211 return TRUE;
cb2366c1
EBM
10212
10213 case NT_PPC_TM_CDSCR:
10214 if (note->namesz == 6
4b24dd1a
AM
10215 && strcmp (note->namedata, "LINUX") == 0)
10216 return elfcore_grok_ppc_tm_cdscr (abfd, note);
cb2366c1 10217 else
4b24dd1a 10218 return TRUE;
cb2366c1 10219
0675e188
UW
10220 case NT_S390_HIGH_GPRS:
10221 if (note->namesz == 6
07d6d2b8
AM
10222 && strcmp (note->namedata, "LINUX") == 0)
10223 return elfcore_grok_s390_high_gprs (abfd, note);
0675e188 10224 else
07d6d2b8 10225 return TRUE;
0675e188 10226
d7eeb400
MS
10227 case NT_S390_TIMER:
10228 if (note->namesz == 6
07d6d2b8
AM
10229 && strcmp (note->namedata, "LINUX") == 0)
10230 return elfcore_grok_s390_timer (abfd, note);
d7eeb400 10231 else
07d6d2b8 10232 return TRUE;
d7eeb400
MS
10233
10234 case NT_S390_TODCMP:
10235 if (note->namesz == 6
07d6d2b8
AM
10236 && strcmp (note->namedata, "LINUX") == 0)
10237 return elfcore_grok_s390_todcmp (abfd, note);
d7eeb400 10238 else
07d6d2b8 10239 return TRUE;
d7eeb400
MS
10240
10241 case NT_S390_TODPREG:
10242 if (note->namesz == 6
07d6d2b8
AM
10243 && strcmp (note->namedata, "LINUX") == 0)
10244 return elfcore_grok_s390_todpreg (abfd, note);
d7eeb400 10245 else
07d6d2b8 10246 return TRUE;
d7eeb400
MS
10247
10248 case NT_S390_CTRS:
10249 if (note->namesz == 6
07d6d2b8
AM
10250 && strcmp (note->namedata, "LINUX") == 0)
10251 return elfcore_grok_s390_ctrs (abfd, note);
d7eeb400 10252 else
07d6d2b8 10253 return TRUE;
d7eeb400
MS
10254
10255 case NT_S390_PREFIX:
10256 if (note->namesz == 6
07d6d2b8
AM
10257 && strcmp (note->namedata, "LINUX") == 0)
10258 return elfcore_grok_s390_prefix (abfd, note);
d7eeb400 10259 else
07d6d2b8 10260 return TRUE;
d7eeb400 10261
355b81d9
UW
10262 case NT_S390_LAST_BREAK:
10263 if (note->namesz == 6
07d6d2b8
AM
10264 && strcmp (note->namedata, "LINUX") == 0)
10265 return elfcore_grok_s390_last_break (abfd, note);
355b81d9 10266 else
07d6d2b8 10267 return TRUE;
355b81d9
UW
10268
10269 case NT_S390_SYSTEM_CALL:
10270 if (note->namesz == 6
07d6d2b8
AM
10271 && strcmp (note->namedata, "LINUX") == 0)
10272 return elfcore_grok_s390_system_call (abfd, note);
355b81d9 10273 else
07d6d2b8 10274 return TRUE;
355b81d9 10275
abb3f6cc
NC
10276 case NT_S390_TDB:
10277 if (note->namesz == 6
07d6d2b8
AM
10278 && strcmp (note->namedata, "LINUX") == 0)
10279 return elfcore_grok_s390_tdb (abfd, note);
abb3f6cc 10280 else
07d6d2b8 10281 return TRUE;
abb3f6cc 10282
4ef9f41a
AA
10283 case NT_S390_VXRS_LOW:
10284 if (note->namesz == 6
10285 && strcmp (note->namedata, "LINUX") == 0)
10286 return elfcore_grok_s390_vxrs_low (abfd, note);
10287 else
10288 return TRUE;
10289
10290 case NT_S390_VXRS_HIGH:
10291 if (note->namesz == 6
10292 && strcmp (note->namedata, "LINUX") == 0)
10293 return elfcore_grok_s390_vxrs_high (abfd, note);
10294 else
10295 return TRUE;
10296
88ab90e8
AA
10297 case NT_S390_GS_CB:
10298 if (note->namesz == 6
10299 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10300 return elfcore_grok_s390_gs_cb (abfd, note);
88ab90e8
AA
10301 else
10302 return TRUE;
10303
10304 case NT_S390_GS_BC:
10305 if (note->namesz == 6
10306 && strcmp (note->namedata, "LINUX") == 0)
8fe09d74 10307 return elfcore_grok_s390_gs_bc (abfd, note);
88ab90e8
AA
10308 else
10309 return TRUE;
10310
faa9a424
UW
10311 case NT_ARM_VFP:
10312 if (note->namesz == 6
10313 && strcmp (note->namedata, "LINUX") == 0)
10314 return elfcore_grok_arm_vfp (abfd, note);
10315 else
10316 return TRUE;
10317
652451f8
YZ
10318 case NT_ARM_TLS:
10319 if (note->namesz == 6
10320 && strcmp (note->namedata, "LINUX") == 0)
10321 return elfcore_grok_aarch_tls (abfd, note);
10322 else
10323 return TRUE;
10324
10325 case NT_ARM_HW_BREAK:
10326 if (note->namesz == 6
10327 && strcmp (note->namedata, "LINUX") == 0)
10328 return elfcore_grok_aarch_hw_break (abfd, note);
10329 else
10330 return TRUE;
10331
10332 case NT_ARM_HW_WATCH:
10333 if (note->namesz == 6
10334 && strcmp (note->namedata, "LINUX") == 0)
10335 return elfcore_grok_aarch_hw_watch (abfd, note);
10336 else
10337 return TRUE;
10338
ad1cc4e4
AH
10339 case NT_ARM_SVE:
10340 if (note->namesz == 6
10341 && strcmp (note->namedata, "LINUX") == 0)
10342 return elfcore_grok_aarch_sve (abfd, note);
10343 else
10344 return TRUE;
10345
e6c3b5bf
AH
10346 case NT_ARM_PAC_MASK:
10347 if (note->namesz == 6
10348 && strcmp (note->namedata, "LINUX") == 0)
10349 return elfcore_grok_aarch_pauth (abfd, note);
10350 else
10351 return TRUE;
10352
252b5132
RH
10353 case NT_PRPSINFO:
10354 case NT_PSINFO:
bb0082d6
AM
10355 if (bed->elf_backend_grok_psinfo)
10356 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
b34976b6 10357 return TRUE;
bb0082d6 10358#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
252b5132 10359 return elfcore_grok_psinfo (abfd, note);
bb0082d6 10360#else
b34976b6 10361 return TRUE;
252b5132 10362#endif
3333a7c3
RM
10363
10364 case NT_AUXV:
58e07198 10365 return elfcore_make_auxv_note_section (abfd, note, 0);
9015683b 10366
451b7c33
TT
10367 case NT_FILE:
10368 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10369 note);
10370
9015683b
TT
10371 case NT_SIGINFO:
10372 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10373 note);
5b2c414d 10374
252b5132
RH
10375 }
10376}
10377
718175fa
JK
10378static bfd_boolean
10379elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10380{
c74f7d1c 10381 struct bfd_build_id* build_id;
30e8ee25
AM
10382
10383 if (note->descsz == 0)
10384 return FALSE;
10385
c74f7d1c
JT
10386 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10387 if (build_id == NULL)
718175fa
JK
10388 return FALSE;
10389
c74f7d1c
JT
10390 build_id->size = note->descsz;
10391 memcpy (build_id->data, note->descdata, note->descsz);
10392 abfd->build_id = build_id;
718175fa
JK
10393
10394 return TRUE;
10395}
10396
10397static bfd_boolean
10398elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10399{
10400 switch (note->type)
10401 {
10402 default:
10403 return TRUE;
10404
46bed679
L
10405 case NT_GNU_PROPERTY_TYPE_0:
10406 return _bfd_elf_parse_gnu_properties (abfd, note);
10407
718175fa
JK
10408 case NT_GNU_BUILD_ID:
10409 return elfobj_grok_gnu_build_id (abfd, note);
10410 }
10411}
10412
e21e5835
NC
10413static bfd_boolean
10414elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10415{
10416 struct sdt_note *cur =
7a6e0d89
AM
10417 (struct sdt_note *) bfd_alloc (abfd,
10418 sizeof (struct sdt_note) + note->descsz);
e21e5835
NC
10419
10420 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10421 cur->size = (bfd_size_type) note->descsz;
10422 memcpy (cur->data, note->descdata, note->descsz);
10423
10424 elf_tdata (abfd)->sdt_note_head = cur;
10425
10426 return TRUE;
10427}
10428
10429static bfd_boolean
10430elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10431{
10432 switch (note->type)
10433 {
10434 case NT_STAPSDT:
10435 return elfobj_grok_stapsdt_note_1 (abfd, note);
10436
10437 default:
10438 return TRUE;
10439 }
10440}
10441
aa1ed4a9
JB
10442static bfd_boolean
10443elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10444{
10445 size_t offset;
10446
b5430a3c 10447 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10448 {
b5430a3c 10449 case ELFCLASS32:
0064d223
JB
10450 if (note->descsz < 108)
10451 return FALSE;
aa1ed4a9
JB
10452 break;
10453
b5430a3c 10454 case ELFCLASS64:
0064d223
JB
10455 if (note->descsz < 120)
10456 return FALSE;
aa1ed4a9
JB
10457 break;
10458
10459 default:
10460 return FALSE;
10461 }
10462
0064d223
JB
10463 /* Check for version 1 in pr_version. */
10464 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10465 return FALSE;
80a04378 10466
0064d223
JB
10467 offset = 4;
10468
10469 /* Skip over pr_psinfosz. */
b5430a3c 10470 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
0064d223
JB
10471 offset += 4;
10472 else
10473 {
10474 offset += 4; /* Padding before pr_psinfosz. */
10475 offset += 8;
10476 }
10477
aa1ed4a9
JB
10478 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10479 elf_tdata (abfd)->core->program
10480 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10481 offset += 17;
10482
10483 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10484 elf_tdata (abfd)->core->command
10485 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
0064d223
JB
10486 offset += 81;
10487
10488 /* Padding before pr_pid. */
10489 offset += 2;
10490
10491 /* The pr_pid field was added in version "1a". */
10492 if (note->descsz < offset + 4)
10493 return TRUE;
10494
10495 elf_tdata (abfd)->core->pid
10496 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
aa1ed4a9
JB
10497
10498 return TRUE;
10499}
10500
10501static bfd_boolean
10502elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10503{
10504 size_t offset;
10505 size_t size;
24d3e51b 10506 size_t min_size;
aa1ed4a9 10507
24d3e51b
NC
10508 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10509 Also compute minimum size of this note. */
b5430a3c 10510 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
aa1ed4a9 10511 {
b5430a3c 10512 case ELFCLASS32:
24d3e51b
NC
10513 offset = 4 + 4;
10514 min_size = offset + (4 * 2) + 4 + 4 + 4;
aa1ed4a9
JB
10515 break;
10516
b5430a3c 10517 case ELFCLASS64:
24d3e51b
NC
10518 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10519 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
aa1ed4a9
JB
10520 break;
10521
10522 default:
10523 return FALSE;
10524 }
10525
24d3e51b
NC
10526 if (note->descsz < min_size)
10527 return FALSE;
10528
10529 /* Check for version 1 in pr_version. */
10530 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10531 return FALSE;
aa1ed4a9 10532
24d3e51b
NC
10533 /* Extract size of pr_reg from pr_gregsetsz. */
10534 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
b5430a3c 10535 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
24d3e51b
NC
10536 {
10537 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10538 offset += 4 * 2;
10539 }
b5430a3c 10540 else
24d3e51b
NC
10541 {
10542 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10543 offset += 8 * 2;
10544 }
aa1ed4a9 10545
24d3e51b 10546 /* Skip over pr_osreldate. */
aa1ed4a9
JB
10547 offset += 4;
10548
24d3e51b 10549 /* Read signal from pr_cursig. */
aa1ed4a9
JB
10550 if (elf_tdata (abfd)->core->signal == 0)
10551 elf_tdata (abfd)->core->signal
10552 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10553 offset += 4;
10554
24d3e51b 10555 /* Read TID from pr_pid. */
aa1ed4a9
JB
10556 elf_tdata (abfd)->core->lwpid
10557 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10558 offset += 4;
10559
24d3e51b 10560 /* Padding before pr_reg. */
b5430a3c 10561 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
aa1ed4a9
JB
10562 offset += 4;
10563
24d3e51b
NC
10564 /* Make sure that there is enough data remaining in the note. */
10565 if ((note->descsz - offset) < size)
10566 return FALSE;
10567
aa1ed4a9
JB
10568 /* Make a ".reg/999" section and a ".reg" section. */
10569 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10570 size, note->descpos + offset);
10571}
10572
10573static bfd_boolean
10574elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10575{
544c67cd
JB
10576 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10577
aa1ed4a9
JB
10578 switch (note->type)
10579 {
10580 case NT_PRSTATUS:
544c67cd
JB
10581 if (bed->elf_backend_grok_freebsd_prstatus)
10582 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10583 return TRUE;
aa1ed4a9
JB
10584 return elfcore_grok_freebsd_prstatus (abfd, note);
10585
10586 case NT_FPREGSET:
10587 return elfcore_grok_prfpreg (abfd, note);
10588
10589 case NT_PRPSINFO:
10590 return elfcore_grok_freebsd_psinfo (abfd, note);
10591
10592 case NT_FREEBSD_THRMISC:
10593 if (note->namesz == 8)
10594 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10595 else
10596 return TRUE;
10597
ddb2bbcf
JB
10598 case NT_FREEBSD_PROCSTAT_PROC:
10599 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10600 note);
10601
10602 case NT_FREEBSD_PROCSTAT_FILES:
10603 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10604 note);
10605
10606 case NT_FREEBSD_PROCSTAT_VMMAP:
10607 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10608 note);
10609
3350c5f5 10610 case NT_FREEBSD_PROCSTAT_AUXV:
58e07198 10611 return elfcore_make_auxv_note_section (abfd, note, 4);
3350c5f5 10612
aa1ed4a9
JB
10613 case NT_X86_XSTATE:
10614 if (note->namesz == 8)
10615 return elfcore_grok_xstatereg (abfd, note);
10616 else
10617 return TRUE;
10618
e6f3b9c3
JB
10619 case NT_FREEBSD_PTLWPINFO:
10620 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10621 note);
10622
6d5be5d6
JB
10623 case NT_ARM_VFP:
10624 return elfcore_grok_arm_vfp (abfd, note);
10625
aa1ed4a9
JB
10626 default:
10627 return TRUE;
10628 }
10629}
10630
b34976b6 10631static bfd_boolean
217aa764 10632elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
50b2bdb7
AM
10633{
10634 char *cp;
10635
10636 cp = strchr (note->namedata, '@');
10637 if (cp != NULL)
10638 {
d2b64500 10639 *lwpidp = atoi(cp + 1);
b34976b6 10640 return TRUE;
50b2bdb7 10641 }
b34976b6 10642 return FALSE;
50b2bdb7
AM
10643}
10644
b34976b6 10645static bfd_boolean
217aa764 10646elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7 10647{
80a04378
NC
10648 if (note->descsz <= 0x7c + 31)
10649 return FALSE;
10650
50b2bdb7 10651 /* Signal number at offset 0x08. */
228e534f 10652 elf_tdata (abfd)->core->signal
50b2bdb7
AM
10653 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10654
10655 /* Process ID at offset 0x50. */
228e534f 10656 elf_tdata (abfd)->core->pid
50b2bdb7
AM
10657 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10658
10659 /* Command name at 0x7c (max 32 bytes, including nul). */
228e534f 10660 elf_tdata (abfd)->core->command
50b2bdb7
AM
10661 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10662
7720ba9f
MK
10663 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10664 note);
50b2bdb7
AM
10665}
10666
b34976b6 10667static bfd_boolean
217aa764 10668elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
50b2bdb7
AM
10669{
10670 int lwp;
10671
10672 if (elfcore_netbsd_get_lwpid (note, &lwp))
228e534f 10673 elf_tdata (abfd)->core->lwpid = lwp;
50b2bdb7 10674
58e07198 10675 switch (note->type)
50b2bdb7 10676 {
58e07198 10677 case NT_NETBSDCORE_PROCINFO:
50b2bdb7 10678 /* NetBSD-specific core "procinfo". Note that we expect to
08a40648
AM
10679 find this note before any of the others, which is fine,
10680 since the kernel writes this note out first when it
10681 creates a core file. */
50b2bdb7 10682 return elfcore_grok_netbsd_procinfo (abfd, note);
58e07198
CZ
10683#ifdef NT_NETBSDCORE_AUXV
10684 case NT_NETBSDCORE_AUXV:
10685 /* NetBSD-specific Elf Auxiliary Vector data. */
10686 return elfcore_make_auxv_note_section (abfd, note, 4);
10687#endif
10688 default:
10689 break;
50b2bdb7
AM
10690 }
10691
58e07198 10692 /* As of March 2017 there are no other machine-independent notes
b4db1224
JT
10693 defined for NetBSD core files. If the note type is less
10694 than the start of the machine-dependent note types, we don't
10695 understand it. */
47d9a591 10696
b4db1224 10697 if (note->type < NT_NETBSDCORE_FIRSTMACH)
b34976b6 10698 return TRUE;
50b2bdb7
AM
10699
10700
10701 switch (bfd_get_arch (abfd))
10702 {
08a40648
AM
10703 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10704 PT_GETFPREGS == mach+2. */
50b2bdb7
AM
10705
10706 case bfd_arch_alpha:
10707 case bfd_arch_sparc:
10708 switch (note->type)
08a40648
AM
10709 {
10710 case NT_NETBSDCORE_FIRSTMACH+0:
10711 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10712
08a40648
AM
10713 case NT_NETBSDCORE_FIRSTMACH+2:
10714 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10715
08a40648
AM
10716 default:
10717 return TRUE;
10718 }
50b2bdb7 10719
58e07198
CZ
10720 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
10721 There's also old PT___GETREGS40 == mach + 1 for old reg
10722 structure which lacks GBR. */
10723
10724 case bfd_arch_sh:
10725 switch (note->type)
10726 {
10727 case NT_NETBSDCORE_FIRSTMACH+3:
10728 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10729
10730 case NT_NETBSDCORE_FIRSTMACH+5:
10731 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10732
10733 default:
10734 return TRUE;
10735 }
10736
08a40648
AM
10737 /* On all other arch's, PT_GETREGS == mach+1 and
10738 PT_GETFPREGS == mach+3. */
50b2bdb7
AM
10739
10740 default:
10741 switch (note->type)
08a40648
AM
10742 {
10743 case NT_NETBSDCORE_FIRSTMACH+1:
10744 return elfcore_make_note_pseudosection (abfd, ".reg", note);
50b2bdb7 10745
08a40648
AM
10746 case NT_NETBSDCORE_FIRSTMACH+3:
10747 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
50b2bdb7 10748
08a40648
AM
10749 default:
10750 return TRUE;
10751 }
50b2bdb7
AM
10752 }
10753 /* NOTREACHED */
10754}
10755
67cc5033
MK
10756static bfd_boolean
10757elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10758{
80a04378
NC
10759 if (note->descsz <= 0x48 + 31)
10760 return FALSE;
10761
67cc5033 10762 /* Signal number at offset 0x08. */
228e534f 10763 elf_tdata (abfd)->core->signal
67cc5033
MK
10764 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10765
10766 /* Process ID at offset 0x20. */
228e534f 10767 elf_tdata (abfd)->core->pid
67cc5033
MK
10768 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10769
10770 /* Command name at 0x48 (max 32 bytes, including nul). */
228e534f 10771 elf_tdata (abfd)->core->command
67cc5033
MK
10772 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10773
10774 return TRUE;
10775}
10776
10777static bfd_boolean
10778elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10779{
10780 if (note->type == NT_OPENBSD_PROCINFO)
10781 return elfcore_grok_openbsd_procinfo (abfd, note);
10782
10783 if (note->type == NT_OPENBSD_REGS)
10784 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10785
10786 if (note->type == NT_OPENBSD_FPREGS)
10787 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10788
10789 if (note->type == NT_OPENBSD_XFPREGS)
10790 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
10791
10792 if (note->type == NT_OPENBSD_AUXV)
58e07198 10793 return elfcore_make_auxv_note_section (abfd, note, 0);
67cc5033
MK
10794
10795 if (note->type == NT_OPENBSD_WCOOKIE)
10796 {
10797 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
10798 SEC_HAS_CONTENTS);
10799
10800 if (sect == NULL)
10801 return FALSE;
10802 sect->size = note->descsz;
10803 sect->filepos = note->descpos;
10804 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10805
10806 return TRUE;
10807 }
10808
10809 return TRUE;
10810}
10811
07c6e936 10812static bfd_boolean
d3fd4074 10813elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
07c6e936
NC
10814{
10815 void *ddata = note->descdata;
10816 char buf[100];
10817 char *name;
10818 asection *sect;
f8843e87
AM
10819 short sig;
10820 unsigned flags;
07c6e936 10821
80a04378
NC
10822 if (note->descsz < 16)
10823 return FALSE;
10824
07c6e936 10825 /* nto_procfs_status 'pid' field is at offset 0. */
228e534f 10826 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
07c6e936 10827
f8843e87
AM
10828 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
10829 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
10830
10831 /* nto_procfs_status 'flags' field is at offset 8. */
10832 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
07c6e936
NC
10833
10834 /* nto_procfs_status 'what' field is at offset 14. */
f8843e87
AM
10835 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
10836 {
228e534f
AM
10837 elf_tdata (abfd)->core->signal = sig;
10838 elf_tdata (abfd)->core->lwpid = *tid;
f8843e87 10839 }
07c6e936 10840
f8843e87
AM
10841 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
10842 do not come from signals so we make sure we set the current
10843 thread just in case. */
10844 if (flags & 0x00000080)
228e534f 10845 elf_tdata (abfd)->core->lwpid = *tid;
07c6e936
NC
10846
10847 /* Make a ".qnx_core_status/%d" section. */
d3fd4074 10848 sprintf (buf, ".qnx_core_status/%ld", *tid);
07c6e936 10849
a50b1753 10850 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10851 if (name == NULL)
10852 return FALSE;
10853 strcpy (name, buf);
10854
117ed4f8 10855 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10856 if (sect == NULL)
10857 return FALSE;
10858
07d6d2b8
AM
10859 sect->size = note->descsz;
10860 sect->filepos = note->descpos;
07c6e936
NC
10861 sect->alignment_power = 2;
10862
10863 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
10864}
10865
10866static bfd_boolean
d69f560c
KW
10867elfcore_grok_nto_regs (bfd *abfd,
10868 Elf_Internal_Note *note,
d3fd4074 10869 long tid,
d69f560c 10870 char *base)
07c6e936
NC
10871{
10872 char buf[100];
10873 char *name;
10874 asection *sect;
10875
d69f560c 10876 /* Make a "(base)/%d" section. */
d3fd4074 10877 sprintf (buf, "%s/%ld", base, tid);
07c6e936 10878
a50b1753 10879 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
07c6e936
NC
10880 if (name == NULL)
10881 return FALSE;
10882 strcpy (name, buf);
10883
117ed4f8 10884 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
07c6e936
NC
10885 if (sect == NULL)
10886 return FALSE;
10887
07d6d2b8
AM
10888 sect->size = note->descsz;
10889 sect->filepos = note->descpos;
07c6e936
NC
10890 sect->alignment_power = 2;
10891
f8843e87 10892 /* This is the current thread. */
228e534f 10893 if (elf_tdata (abfd)->core->lwpid == tid)
d69f560c 10894 return elfcore_maybe_make_sect (abfd, base, sect);
f8843e87
AM
10895
10896 return TRUE;
07c6e936
NC
10897}
10898
10899#define BFD_QNT_CORE_INFO 7
10900#define BFD_QNT_CORE_STATUS 8
10901#define BFD_QNT_CORE_GREG 9
10902#define BFD_QNT_CORE_FPREG 10
10903
10904static bfd_boolean
217aa764 10905elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
07c6e936
NC
10906{
10907 /* Every GREG section has a STATUS section before it. Store the
811072d8 10908 tid from the previous call to pass down to the next gregs
07c6e936 10909 function. */
d3fd4074 10910 static long tid = 1;
07c6e936
NC
10911
10912 switch (note->type)
10913 {
d69f560c
KW
10914 case BFD_QNT_CORE_INFO:
10915 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
10916 case BFD_QNT_CORE_STATUS:
10917 return elfcore_grok_nto_status (abfd, note, &tid);
10918 case BFD_QNT_CORE_GREG:
10919 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
10920 case BFD_QNT_CORE_FPREG:
10921 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
10922 default:
10923 return TRUE;
07c6e936
NC
10924 }
10925}
10926
b15fa79e
AM
10927static bfd_boolean
10928elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
10929{
10930 char *name;
10931 asection *sect;
10932 size_t len;
10933
10934 /* Use note name as section name. */
10935 len = note->namesz;
a50b1753 10936 name = (char *) bfd_alloc (abfd, len);
b15fa79e
AM
10937 if (name == NULL)
10938 return FALSE;
10939 memcpy (name, note->namedata, len);
10940 name[len - 1] = '\0';
10941
10942 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10943 if (sect == NULL)
10944 return FALSE;
10945
07d6d2b8
AM
10946 sect->size = note->descsz;
10947 sect->filepos = note->descpos;
b15fa79e
AM
10948 sect->alignment_power = 1;
10949
10950 return TRUE;
10951}
10952
7c76fa91
MS
10953/* Function: elfcore_write_note
10954
47d9a591 10955 Inputs:
a39f3346 10956 buffer to hold note, and current size of buffer
7c76fa91
MS
10957 name of note
10958 type of note
10959 data for note
10960 size of data for note
10961
a39f3346
AM
10962 Writes note to end of buffer. ELF64 notes are written exactly as
10963 for ELF32, despite the current (as of 2006) ELF gabi specifying
10964 that they ought to have 8-byte namesz and descsz field, and have
10965 8-byte alignment. Other writers, eg. Linux kernel, do the same.
10966
7c76fa91 10967 Return:
a39f3346 10968 Pointer to realloc'd buffer, *BUFSIZ updated. */
7c76fa91
MS
10969
10970char *
a39f3346 10971elfcore_write_note (bfd *abfd,
217aa764 10972 char *buf,
a39f3346 10973 int *bufsiz,
217aa764 10974 const char *name,
a39f3346 10975 int type,
217aa764 10976 const void *input,
a39f3346 10977 int size)
7c76fa91
MS
10978{
10979 Elf_External_Note *xnp;
d4c88bbb 10980 size_t namesz;
d4c88bbb 10981 size_t newspace;
a39f3346 10982 char *dest;
7c76fa91 10983
d4c88bbb 10984 namesz = 0;
d4c88bbb 10985 if (name != NULL)
a39f3346 10986 namesz = strlen (name) + 1;
d4c88bbb 10987
a39f3346 10988 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
d4c88bbb 10989
a50b1753 10990 buf = (char *) realloc (buf, *bufsiz + newspace);
14b1c01e
AM
10991 if (buf == NULL)
10992 return buf;
a39f3346 10993 dest = buf + *bufsiz;
7c76fa91
MS
10994 *bufsiz += newspace;
10995 xnp = (Elf_External_Note *) dest;
10996 H_PUT_32 (abfd, namesz, xnp->namesz);
10997 H_PUT_32 (abfd, size, xnp->descsz);
10998 H_PUT_32 (abfd, type, xnp->type);
d4c88bbb
AM
10999 dest = xnp->name;
11000 if (name != NULL)
11001 {
11002 memcpy (dest, name, namesz);
11003 dest += namesz;
a39f3346 11004 while (namesz & 3)
d4c88bbb
AM
11005 {
11006 *dest++ = '\0';
a39f3346 11007 ++namesz;
d4c88bbb
AM
11008 }
11009 }
11010 memcpy (dest, input, size);
a39f3346
AM
11011 dest += size;
11012 while (size & 3)
11013 {
11014 *dest++ = '\0';
11015 ++size;
11016 }
11017 return buf;
7c76fa91
MS
11018}
11019
602f1657
AM
11020/* gcc-8 warns (*) on all the strncpy calls in this function about
11021 possible string truncation. The "truncation" is not a bug. We
11022 have an external representation of structs with fields that are not
11023 necessarily NULL terminated and corresponding internal
11024 representation fields that are one larger so that they can always
11025 be NULL terminated.
11026 gcc versions between 4.2 and 4.6 do not allow pragma control of
11027 diagnostics inside functions, giving a hard error if you try to use
11028 the finer control available with later versions.
11029 gcc prior to 4.2 warns about diagnostic push and pop.
11030 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11031 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11032 (*) Depending on your system header files! */
d99b4b92 11033#if GCC_VERSION >= 8000
602f1657
AM
11034# pragma GCC diagnostic push
11035# pragma GCC diagnostic ignored "-Wstringop-truncation"
d99b4b92 11036#endif
7c76fa91 11037char *
217aa764
AM
11038elfcore_write_prpsinfo (bfd *abfd,
11039 char *buf,
11040 int *bufsiz,
11041 const char *fname,
11042 const char *psargs)
7c76fa91 11043{
183e98be
AM
11044 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11045
11046 if (bed->elf_backend_write_core_note != NULL)
11047 {
11048 char *ret;
11049 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11050 NT_PRPSINFO, fname, psargs);
11051 if (ret != NULL)
11052 return ret;
11053 }
7c76fa91 11054
1f20dca5 11055#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
602f1657 11056# if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
183e98be
AM
11057 if (bed->s->elfclass == ELFCLASS32)
11058 {
602f1657 11059# if defined (HAVE_PSINFO32_T)
183e98be
AM
11060 psinfo32_t data;
11061 int note_type = NT_PSINFO;
602f1657 11062# else
183e98be
AM
11063 prpsinfo32_t data;
11064 int note_type = NT_PRPSINFO;
602f1657 11065# endif
183e98be
AM
11066
11067 memset (&data, 0, sizeof (data));
11068 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11069 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11070 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11071 "CORE", note_type, &data, sizeof (data));
183e98be
AM
11072 }
11073 else
602f1657 11074# endif
183e98be 11075 {
602f1657 11076# if defined (HAVE_PSINFO_T)
183e98be
AM
11077 psinfo_t data;
11078 int note_type = NT_PSINFO;
602f1657 11079# else
183e98be
AM
11080 prpsinfo_t data;
11081 int note_type = NT_PRPSINFO;
602f1657 11082# endif
7c76fa91 11083
183e98be
AM
11084 memset (&data, 0, sizeof (data));
11085 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11086 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11087 return elfcore_write_note (abfd, buf, bufsiz,
1f20dca5 11088 "CORE", note_type, &data, sizeof (data));
183e98be 11089 }
7c76fa91
MS
11090#endif /* PSINFO_T or PRPSINFO_T */
11091
1f20dca5
UW
11092 free (buf);
11093 return NULL;
11094}
d99b4b92 11095#if GCC_VERSION >= 8000
602f1657 11096# pragma GCC diagnostic pop
d99b4b92 11097#endif
1f20dca5 11098
70a38d42
SDJ
11099char *
11100elfcore_write_linux_prpsinfo32
11101 (bfd *abfd, char *buf, int *bufsiz,
11102 const struct elf_internal_linux_prpsinfo *prpsinfo)
11103{
a2f63b2e
MR
11104 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11105 {
11106 struct elf_external_linux_prpsinfo32_ugid16 data;
11107
11108 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11109 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11110 &data, sizeof (data));
11111 }
11112 else
11113 {
11114 struct elf_external_linux_prpsinfo32_ugid32 data;
70a38d42 11115
a2f63b2e
MR
11116 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11117 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11118 &data, sizeof (data));
11119 }
70a38d42
SDJ
11120}
11121
11122char *
11123elfcore_write_linux_prpsinfo64
11124 (bfd *abfd, char *buf, int *bufsiz,
11125 const struct elf_internal_linux_prpsinfo *prpsinfo)
11126{
3c9a7b0d
MR
11127 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11128 {
11129 struct elf_external_linux_prpsinfo64_ugid16 data;
11130
11131 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11132 return elfcore_write_note (abfd, buf, bufsiz,
11133 "CORE", NT_PRPSINFO, &data, sizeof (data));
11134 }
11135 else
11136 {
11137 struct elf_external_linux_prpsinfo64_ugid32 data;
70a38d42 11138
3c9a7b0d
MR
11139 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11140 return elfcore_write_note (abfd, buf, bufsiz,
11141 "CORE", NT_PRPSINFO, &data, sizeof (data));
11142 }
70a38d42
SDJ
11143}
11144
7c76fa91 11145char *
217aa764
AM
11146elfcore_write_prstatus (bfd *abfd,
11147 char *buf,
11148 int *bufsiz,
11149 long pid,
11150 int cursig,
11151 const void *gregs)
7c76fa91 11152{
183e98be 11153 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11154
183e98be
AM
11155 if (bed->elf_backend_write_core_note != NULL)
11156 {
11157 char *ret;
11158 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11159 NT_PRSTATUS,
11160 pid, cursig, gregs);
11161 if (ret != NULL)
11162 return ret;
11163 }
11164
1f20dca5 11165#if defined (HAVE_PRSTATUS_T)
183e98be
AM
11166#if defined (HAVE_PRSTATUS32_T)
11167 if (bed->s->elfclass == ELFCLASS32)
11168 {
11169 prstatus32_t prstat;
11170
11171 memset (&prstat, 0, sizeof (prstat));
11172 prstat.pr_pid = pid;
11173 prstat.pr_cursig = cursig;
11174 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11175 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11176 NT_PRSTATUS, &prstat, sizeof (prstat));
11177 }
11178 else
11179#endif
11180 {
11181 prstatus_t prstat;
11182
11183 memset (&prstat, 0, sizeof (prstat));
11184 prstat.pr_pid = pid;
11185 prstat.pr_cursig = cursig;
11186 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
1f20dca5 11187 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
183e98be
AM
11188 NT_PRSTATUS, &prstat, sizeof (prstat));
11189 }
7c76fa91
MS
11190#endif /* HAVE_PRSTATUS_T */
11191
1f20dca5
UW
11192 free (buf);
11193 return NULL;
11194}
11195
51316059
MS
11196#if defined (HAVE_LWPSTATUS_T)
11197char *
217aa764
AM
11198elfcore_write_lwpstatus (bfd *abfd,
11199 char *buf,
11200 int *bufsiz,
11201 long pid,
11202 int cursig,
11203 const void *gregs)
51316059
MS
11204{
11205 lwpstatus_t lwpstat;
183e98be 11206 const char *note_name = "CORE";
51316059
MS
11207
11208 memset (&lwpstat, 0, sizeof (lwpstat));
11209 lwpstat.pr_lwpid = pid >> 16;
11210 lwpstat.pr_cursig = cursig;
11211#if defined (HAVE_LWPSTATUS_T_PR_REG)
d1e8523e 11212 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
51316059
MS
11213#elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11214#if !defined(gregs)
11215 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11216 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11217#else
11218 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11219 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11220#endif
11221#endif
47d9a591 11222 return elfcore_write_note (abfd, buf, bufsiz, note_name,
51316059
MS
11223 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11224}
11225#endif /* HAVE_LWPSTATUS_T */
11226
7c76fa91
MS
11227#if defined (HAVE_PSTATUS_T)
11228char *
217aa764
AM
11229elfcore_write_pstatus (bfd *abfd,
11230 char *buf,
11231 int *bufsiz,
11232 long pid,
6c10990d
NC
11233 int cursig ATTRIBUTE_UNUSED,
11234 const void *gregs ATTRIBUTE_UNUSED)
7c76fa91 11235{
183e98be
AM
11236 const char *note_name = "CORE";
11237#if defined (HAVE_PSTATUS32_T)
11238 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7c76fa91 11239
183e98be
AM
11240 if (bed->s->elfclass == ELFCLASS32)
11241 {
11242 pstatus32_t pstat;
11243
11244 memset (&pstat, 0, sizeof (pstat));
11245 pstat.pr_pid = pid & 0xffff;
11246 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11247 NT_PSTATUS, &pstat, sizeof (pstat));
11248 return buf;
11249 }
11250 else
11251#endif
11252 {
11253 pstatus_t pstat;
11254
11255 memset (&pstat, 0, sizeof (pstat));
11256 pstat.pr_pid = pid & 0xffff;
11257 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11258 NT_PSTATUS, &pstat, sizeof (pstat));
11259 return buf;
11260 }
7c76fa91
MS
11261}
11262#endif /* HAVE_PSTATUS_T */
11263
11264char *
217aa764
AM
11265elfcore_write_prfpreg (bfd *abfd,
11266 char *buf,
11267 int *bufsiz,
11268 const void *fpregs,
11269 int size)
7c76fa91 11270{
183e98be 11271 const char *note_name = "CORE";
47d9a591 11272 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11273 note_name, NT_FPREGSET, fpregs, size);
11274}
11275
11276char *
217aa764
AM
11277elfcore_write_prxfpreg (bfd *abfd,
11278 char *buf,
11279 int *bufsiz,
11280 const void *xfpregs,
11281 int size)
7c76fa91
MS
11282{
11283 char *note_name = "LINUX";
47d9a591 11284 return elfcore_write_note (abfd, buf, bufsiz,
7c76fa91
MS
11285 note_name, NT_PRXFPREG, xfpregs, size);
11286}
11287
4339cae0
L
11288char *
11289elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11290 const void *xfpregs, int size)
11291{
97de3545
JB
11292 char *note_name;
11293 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11294 note_name = "FreeBSD";
11295 else
11296 note_name = "LINUX";
4339cae0
L
11297 return elfcore_write_note (abfd, buf, bufsiz,
11298 note_name, NT_X86_XSTATE, xfpregs, size);
11299}
11300
97753bd5
AM
11301char *
11302elfcore_write_ppc_vmx (bfd *abfd,
11303 char *buf,
11304 int *bufsiz,
11305 const void *ppc_vmx,
11306 int size)
11307{
11308 char *note_name = "LINUX";
11309 return elfcore_write_note (abfd, buf, bufsiz,
11310 note_name, NT_PPC_VMX, ppc_vmx, size);
11311}
11312
89eeb0bc
LM
11313char *
11314elfcore_write_ppc_vsx (bfd *abfd,
07d6d2b8
AM
11315 char *buf,
11316 int *bufsiz,
11317 const void *ppc_vsx,
11318 int size)
89eeb0bc
LM
11319{
11320 char *note_name = "LINUX";
11321 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11322 note_name, NT_PPC_VSX, ppc_vsx, size);
89eeb0bc
LM
11323}
11324
cb2366c1
EBM
11325char *
11326elfcore_write_ppc_tar (bfd *abfd,
4b24dd1a
AM
11327 char *buf,
11328 int *bufsiz,
11329 const void *ppc_tar,
11330 int size)
cb2366c1
EBM
11331{
11332 char *note_name = "LINUX";
11333 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11334 note_name, NT_PPC_TAR, ppc_tar, size);
cb2366c1
EBM
11335}
11336
11337char *
11338elfcore_write_ppc_ppr (bfd *abfd,
4b24dd1a
AM
11339 char *buf,
11340 int *bufsiz,
11341 const void *ppc_ppr,
11342 int size)
cb2366c1
EBM
11343{
11344 char *note_name = "LINUX";
11345 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11346 note_name, NT_PPC_PPR, ppc_ppr, size);
cb2366c1
EBM
11347}
11348
11349char *
11350elfcore_write_ppc_dscr (bfd *abfd,
4b24dd1a
AM
11351 char *buf,
11352 int *bufsiz,
11353 const void *ppc_dscr,
11354 int size)
cb2366c1
EBM
11355{
11356 char *note_name = "LINUX";
11357 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11358 note_name, NT_PPC_DSCR, ppc_dscr, size);
cb2366c1
EBM
11359}
11360
11361char *
11362elfcore_write_ppc_ebb (bfd *abfd,
4b24dd1a
AM
11363 char *buf,
11364 int *bufsiz,
11365 const void *ppc_ebb,
11366 int size)
cb2366c1
EBM
11367{
11368 char *note_name = "LINUX";
11369 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11370 note_name, NT_PPC_EBB, ppc_ebb, size);
cb2366c1
EBM
11371}
11372
11373char *
11374elfcore_write_ppc_pmu (bfd *abfd,
4b24dd1a
AM
11375 char *buf,
11376 int *bufsiz,
11377 const void *ppc_pmu,
11378 int size)
cb2366c1
EBM
11379{
11380 char *note_name = "LINUX";
11381 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11382 note_name, NT_PPC_PMU, ppc_pmu, size);
cb2366c1
EBM
11383}
11384
11385char *
11386elfcore_write_ppc_tm_cgpr (bfd *abfd,
4b24dd1a
AM
11387 char *buf,
11388 int *bufsiz,
11389 const void *ppc_tm_cgpr,
11390 int size)
cb2366c1
EBM
11391{
11392 char *note_name = "LINUX";
11393 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11394 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
cb2366c1
EBM
11395}
11396
11397char *
11398elfcore_write_ppc_tm_cfpr (bfd *abfd,
4b24dd1a
AM
11399 char *buf,
11400 int *bufsiz,
11401 const void *ppc_tm_cfpr,
11402 int size)
cb2366c1
EBM
11403{
11404 char *note_name = "LINUX";
11405 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11406 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
cb2366c1
EBM
11407}
11408
11409char *
11410elfcore_write_ppc_tm_cvmx (bfd *abfd,
4b24dd1a
AM
11411 char *buf,
11412 int *bufsiz,
11413 const void *ppc_tm_cvmx,
11414 int size)
cb2366c1
EBM
11415{
11416 char *note_name = "LINUX";
11417 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11418 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
cb2366c1
EBM
11419}
11420
11421char *
11422elfcore_write_ppc_tm_cvsx (bfd *abfd,
4b24dd1a
AM
11423 char *buf,
11424 int *bufsiz,
11425 const void *ppc_tm_cvsx,
11426 int size)
cb2366c1
EBM
11427{
11428 char *note_name = "LINUX";
11429 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11430 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
cb2366c1
EBM
11431}
11432
11433char *
11434elfcore_write_ppc_tm_spr (bfd *abfd,
4b24dd1a
AM
11435 char *buf,
11436 int *bufsiz,
11437 const void *ppc_tm_spr,
11438 int size)
cb2366c1
EBM
11439{
11440 char *note_name = "LINUX";
11441 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11442 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
cb2366c1
EBM
11443}
11444
11445char *
11446elfcore_write_ppc_tm_ctar (bfd *abfd,
4b24dd1a
AM
11447 char *buf,
11448 int *bufsiz,
11449 const void *ppc_tm_ctar,
11450 int size)
cb2366c1
EBM
11451{
11452 char *note_name = "LINUX";
11453 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11454 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
cb2366c1
EBM
11455}
11456
11457char *
11458elfcore_write_ppc_tm_cppr (bfd *abfd,
4b24dd1a
AM
11459 char *buf,
11460 int *bufsiz,
11461 const void *ppc_tm_cppr,
11462 int size)
cb2366c1
EBM
11463{
11464 char *note_name = "LINUX";
11465 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11466 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
cb2366c1
EBM
11467}
11468
11469char *
11470elfcore_write_ppc_tm_cdscr (bfd *abfd,
4b24dd1a
AM
11471 char *buf,
11472 int *bufsiz,
11473 const void *ppc_tm_cdscr,
11474 int size)
cb2366c1
EBM
11475{
11476 char *note_name = "LINUX";
11477 return elfcore_write_note (abfd, buf, bufsiz,
4b24dd1a 11478 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
cb2366c1
EBM
11479}
11480
0675e188
UW
11481static char *
11482elfcore_write_s390_high_gprs (bfd *abfd,
11483 char *buf,
11484 int *bufsiz,
11485 const void *s390_high_gprs,
11486 int size)
11487{
11488 char *note_name = "LINUX";
11489 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11490 note_name, NT_S390_HIGH_GPRS,
0675e188
UW
11491 s390_high_gprs, size);
11492}
11493
d7eeb400
MS
11494char *
11495elfcore_write_s390_timer (bfd *abfd,
07d6d2b8
AM
11496 char *buf,
11497 int *bufsiz,
11498 const void *s390_timer,
11499 int size)
d7eeb400
MS
11500{
11501 char *note_name = "LINUX";
11502 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11503 note_name, NT_S390_TIMER, s390_timer, size);
d7eeb400
MS
11504}
11505
11506char *
11507elfcore_write_s390_todcmp (bfd *abfd,
07d6d2b8
AM
11508 char *buf,
11509 int *bufsiz,
11510 const void *s390_todcmp,
11511 int size)
d7eeb400
MS
11512{
11513 char *note_name = "LINUX";
11514 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11515 note_name, NT_S390_TODCMP, s390_todcmp, size);
d7eeb400
MS
11516}
11517
11518char *
11519elfcore_write_s390_todpreg (bfd *abfd,
07d6d2b8
AM
11520 char *buf,
11521 int *bufsiz,
11522 const void *s390_todpreg,
11523 int size)
d7eeb400
MS
11524{
11525 char *note_name = "LINUX";
11526 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11527 note_name, NT_S390_TODPREG, s390_todpreg, size);
d7eeb400
MS
11528}
11529
11530char *
11531elfcore_write_s390_ctrs (bfd *abfd,
07d6d2b8
AM
11532 char *buf,
11533 int *bufsiz,
11534 const void *s390_ctrs,
11535 int size)
d7eeb400
MS
11536{
11537 char *note_name = "LINUX";
11538 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11539 note_name, NT_S390_CTRS, s390_ctrs, size);
d7eeb400
MS
11540}
11541
11542char *
11543elfcore_write_s390_prefix (bfd *abfd,
07d6d2b8
AM
11544 char *buf,
11545 int *bufsiz,
11546 const void *s390_prefix,
11547 int size)
d7eeb400
MS
11548{
11549 char *note_name = "LINUX";
11550 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11551 note_name, NT_S390_PREFIX, s390_prefix, size);
d7eeb400
MS
11552}
11553
355b81d9
UW
11554char *
11555elfcore_write_s390_last_break (bfd *abfd,
11556 char *buf,
11557 int *bufsiz,
11558 const void *s390_last_break,
11559 int size)
11560{
11561 char *note_name = "LINUX";
11562 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11563 note_name, NT_S390_LAST_BREAK,
355b81d9
UW
11564 s390_last_break, size);
11565}
11566
11567char *
11568elfcore_write_s390_system_call (bfd *abfd,
11569 char *buf,
11570 int *bufsiz,
11571 const void *s390_system_call,
11572 int size)
11573{
11574 char *note_name = "LINUX";
11575 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11576 note_name, NT_S390_SYSTEM_CALL,
355b81d9
UW
11577 s390_system_call, size);
11578}
11579
abb3f6cc
NC
11580char *
11581elfcore_write_s390_tdb (bfd *abfd,
11582 char *buf,
11583 int *bufsiz,
11584 const void *s390_tdb,
11585 int size)
11586{
11587 char *note_name = "LINUX";
11588 return elfcore_write_note (abfd, buf, bufsiz,
07d6d2b8 11589 note_name, NT_S390_TDB, s390_tdb, size);
abb3f6cc
NC
11590}
11591
4ef9f41a
AA
11592char *
11593elfcore_write_s390_vxrs_low (bfd *abfd,
11594 char *buf,
11595 int *bufsiz,
11596 const void *s390_vxrs_low,
11597 int size)
11598{
11599 char *note_name = "LINUX";
11600 return elfcore_write_note (abfd, buf, bufsiz,
11601 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11602}
11603
11604char *
11605elfcore_write_s390_vxrs_high (bfd *abfd,
11606 char *buf,
11607 int *bufsiz,
11608 const void *s390_vxrs_high,
11609 int size)
11610{
11611 char *note_name = "LINUX";
11612 return elfcore_write_note (abfd, buf, bufsiz,
11613 note_name, NT_S390_VXRS_HIGH,
11614 s390_vxrs_high, size);
11615}
11616
88ab90e8
AA
11617char *
11618elfcore_write_s390_gs_cb (bfd *abfd,
11619 char *buf,
11620 int *bufsiz,
11621 const void *s390_gs_cb,
11622 int size)
11623{
11624 char *note_name = "LINUX";
11625 return elfcore_write_note (abfd, buf, bufsiz,
11626 note_name, NT_S390_GS_CB,
11627 s390_gs_cb, size);
11628}
11629
11630char *
11631elfcore_write_s390_gs_bc (bfd *abfd,
11632 char *buf,
11633 int *bufsiz,
11634 const void *s390_gs_bc,
11635 int size)
11636{
11637 char *note_name = "LINUX";
11638 return elfcore_write_note (abfd, buf, bufsiz,
11639 note_name, NT_S390_GS_BC,
11640 s390_gs_bc, size);
11641}
11642
faa9a424
UW
11643char *
11644elfcore_write_arm_vfp (bfd *abfd,
11645 char *buf,
11646 int *bufsiz,
11647 const void *arm_vfp,
11648 int size)
11649{
11650 char *note_name = "LINUX";
11651 return elfcore_write_note (abfd, buf, bufsiz,
11652 note_name, NT_ARM_VFP, arm_vfp, size);
11653}
11654
652451f8
YZ
11655char *
11656elfcore_write_aarch_tls (bfd *abfd,
11657 char *buf,
11658 int *bufsiz,
11659 const void *aarch_tls,
11660 int size)
11661{
11662 char *note_name = "LINUX";
11663 return elfcore_write_note (abfd, buf, bufsiz,
11664 note_name, NT_ARM_TLS, aarch_tls, size);
11665}
11666
11667char *
11668elfcore_write_aarch_hw_break (bfd *abfd,
11669 char *buf,
11670 int *bufsiz,
11671 const void *aarch_hw_break,
11672 int size)
11673{
11674 char *note_name = "LINUX";
11675 return elfcore_write_note (abfd, buf, bufsiz,
11676 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11677}
11678
11679char *
11680elfcore_write_aarch_hw_watch (bfd *abfd,
11681 char *buf,
11682 int *bufsiz,
11683 const void *aarch_hw_watch,
11684 int size)
11685{
11686 char *note_name = "LINUX";
11687 return elfcore_write_note (abfd, buf, bufsiz,
11688 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11689}
11690
ad1cc4e4
AH
11691char *
11692elfcore_write_aarch_sve (bfd *abfd,
11693 char *buf,
11694 int *bufsiz,
11695 const void *aarch_sve,
11696 int size)
11697{
11698 char *note_name = "LINUX";
11699 return elfcore_write_note (abfd, buf, bufsiz,
11700 note_name, NT_ARM_SVE, aarch_sve, size);
11701}
11702
e6c3b5bf
AH
11703char *
11704elfcore_write_aarch_pauth (bfd *abfd,
11705 char *buf,
11706 int *bufsiz,
11707 const void *aarch_pauth,
11708 int size)
11709{
11710 char *note_name = "LINUX";
11711 return elfcore_write_note (abfd, buf, bufsiz,
11712 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
11713}
11714
bb864ac1
CES
11715char *
11716elfcore_write_register_note (bfd *abfd,
11717 char *buf,
11718 int *bufsiz,
11719 const char *section,
11720 const void *data,
11721 int size)
11722{
11723 if (strcmp (section, ".reg2") == 0)
11724 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11725 if (strcmp (section, ".reg-xfp") == 0)
11726 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
4339cae0
L
11727 if (strcmp (section, ".reg-xstate") == 0)
11728 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11729 if (strcmp (section, ".reg-ppc-vmx") == 0)
11730 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
89eeb0bc
LM
11731 if (strcmp (section, ".reg-ppc-vsx") == 0)
11732 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
cb2366c1
EBM
11733 if (strcmp (section, ".reg-ppc-tar") == 0)
11734 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
11735 if (strcmp (section, ".reg-ppc-ppr") == 0)
11736 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
11737 if (strcmp (section, ".reg-ppc-dscr") == 0)
11738 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
11739 if (strcmp (section, ".reg-ppc-ebb") == 0)
11740 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
11741 if (strcmp (section, ".reg-ppc-pmu") == 0)
11742 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
11743 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
11744 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
11745 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
11746 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
11747 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
11748 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
11749 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
11750 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
11751 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
11752 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
11753 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
11754 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
11755 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
11756 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
11757 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
11758 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
0675e188
UW
11759 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11760 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
d7eeb400
MS
11761 if (strcmp (section, ".reg-s390-timer") == 0)
11762 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11763 if (strcmp (section, ".reg-s390-todcmp") == 0)
11764 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11765 if (strcmp (section, ".reg-s390-todpreg") == 0)
11766 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11767 if (strcmp (section, ".reg-s390-ctrs") == 0)
11768 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11769 if (strcmp (section, ".reg-s390-prefix") == 0)
11770 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
355b81d9
UW
11771 if (strcmp (section, ".reg-s390-last-break") == 0)
11772 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
11773 if (strcmp (section, ".reg-s390-system-call") == 0)
11774 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
abb3f6cc
NC
11775 if (strcmp (section, ".reg-s390-tdb") == 0)
11776 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
4ef9f41a
AA
11777 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
11778 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
11779 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
11780 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
88ab90e8
AA
11781 if (strcmp (section, ".reg-s390-gs-cb") == 0)
11782 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
11783 if (strcmp (section, ".reg-s390-gs-bc") == 0)
11784 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
faa9a424
UW
11785 if (strcmp (section, ".reg-arm-vfp") == 0)
11786 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
652451f8
YZ
11787 if (strcmp (section, ".reg-aarch-tls") == 0)
11788 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
11789 if (strcmp (section, ".reg-aarch-hw-break") == 0)
11790 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
11791 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
11792 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
ad1cc4e4
AH
11793 if (strcmp (section, ".reg-aarch-sve") == 0)
11794 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
e6c3b5bf
AH
11795 if (strcmp (section, ".reg-aarch-pauth") == 0)
11796 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
bb864ac1
CES
11797 return NULL;
11798}
11799
b34976b6 11800static bfd_boolean
276da9b3
L
11801elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
11802 size_t align)
252b5132 11803{
c044fabd 11804 char *p;
252b5132 11805
276da9b3
L
11806 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
11807 gABI specifies that PT_NOTE alignment should be aligned to 4
11808 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
11809 align is less than 4, we use 4 byte alignment. */
11810 if (align < 4)
11811 align = 4;
ef135d43
NC
11812 if (align != 4 && align != 8)
11813 return FALSE;
276da9b3 11814
252b5132
RH
11815 p = buf;
11816 while (p < buf + size)
11817 {
c044fabd 11818 Elf_External_Note *xnp = (Elf_External_Note *) p;
252b5132
RH
11819 Elf_Internal_Note in;
11820
baea7ef1
AM
11821 if (offsetof (Elf_External_Note, name) > buf - p + size)
11822 return FALSE;
11823
dc810e39 11824 in.type = H_GET_32 (abfd, xnp->type);
252b5132 11825
dc810e39 11826 in.namesz = H_GET_32 (abfd, xnp->namesz);
252b5132 11827 in.namedata = xnp->name;
baea7ef1
AM
11828 if (in.namesz > buf - in.namedata + size)
11829 return FALSE;
252b5132 11830
dc810e39 11831 in.descsz = H_GET_32 (abfd, xnp->descsz);
276da9b3 11832 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
252b5132 11833 in.descpos = offset + (in.descdata - buf);
baea7ef1
AM
11834 if (in.descsz != 0
11835 && (in.descdata >= buf + size
11836 || in.descsz > buf - in.descdata + size))
11837 return FALSE;
252b5132 11838
718175fa 11839 switch (bfd_get_format (abfd))
07d6d2b8 11840 {
718175fa
JK
11841 default:
11842 return TRUE;
11843
11844 case bfd_core:
f64e188b 11845 {
8acbedd6 11846#define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
f64e188b 11847 struct
718175fa 11848 {
f64e188b 11849 const char * string;
8acbedd6 11850 size_t len;
f64e188b 11851 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
718175fa 11852 }
f64e188b 11853 grokers[] =
b15fa79e 11854 {
8acbedd6 11855 GROKER_ELEMENT ("", elfcore_grok_note),
aa1ed4a9 11856 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
8acbedd6
KS
11857 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
11858 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
11859 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
864619bb
KS
11860 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
11861 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note)
f64e188b 11862 };
8acbedd6 11863#undef GROKER_ELEMENT
f64e188b
NC
11864 int i;
11865
11866 for (i = ARRAY_SIZE (grokers); i--;)
8acbedd6
KS
11867 {
11868 if (in.namesz >= grokers[i].len
11869 && strncmp (in.namedata, grokers[i].string,
11870 grokers[i].len) == 0)
11871 {
11872 if (! grokers[i].func (abfd, & in))
11873 return FALSE;
11874 break;
11875 }
11876 }
f64e188b
NC
11877 break;
11878 }
718175fa
JK
11879
11880 case bfd_object:
11881 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
11882 {
11883 if (! elfobj_grok_gnu_note (abfd, &in))
11884 return FALSE;
11885 }
e21e5835
NC
11886 else if (in.namesz == sizeof "stapsdt"
11887 && strcmp (in.namedata, "stapsdt") == 0)
11888 {
11889 if (! elfobj_grok_stapsdt_note (abfd, &in))
11890 return FALSE;
11891 }
718175fa 11892 break;
08a40648 11893 }
252b5132 11894
276da9b3 11895 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
252b5132
RH
11896 }
11897
718175fa
JK
11898 return TRUE;
11899}
11900
864619bb 11901bfd_boolean
276da9b3
L
11902elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
11903 size_t align)
718175fa
JK
11904{
11905 char *buf;
11906
957e1fc1 11907 if (size == 0 || (size + 1) == 0)
718175fa
JK
11908 return TRUE;
11909
11910 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
11911 return FALSE;
11912
f64e188b 11913 buf = (char *) bfd_malloc (size + 1);
718175fa
JK
11914 if (buf == NULL)
11915 return FALSE;
11916
f64e188b
NC
11917 /* PR 17512: file: ec08f814
11918 0-termintate the buffer so that string searches will not overflow. */
11919 buf[size] = 0;
11920
718175fa 11921 if (bfd_bread (buf, size, abfd) != size
276da9b3 11922 || !elf_parse_notes (abfd, buf, size, offset, align))
718175fa
JK
11923 {
11924 free (buf);
11925 return FALSE;
11926 }
11927
252b5132 11928 free (buf);
b34976b6 11929 return TRUE;
252b5132 11930}
98d8431c
JB
11931\f
11932/* Providing external access to the ELF program header table. */
11933
11934/* Return an upper bound on the number of bytes required to store a
11935 copy of ABFD's program header table entries. Return -1 if an error
11936 occurs; bfd_get_error will return an appropriate code. */
c044fabd 11937
98d8431c 11938long
217aa764 11939bfd_get_elf_phdr_upper_bound (bfd *abfd)
98d8431c
JB
11940{
11941 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11942 {
11943 bfd_set_error (bfd_error_wrong_format);
11944 return -1;
11945 }
11946
936e320b 11947 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
98d8431c
JB
11948}
11949
98d8431c
JB
11950/* Copy ABFD's program header table entries to *PHDRS. The entries
11951 will be stored as an array of Elf_Internal_Phdr structures, as
11952 defined in include/elf/internal.h. To find out how large the
11953 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
11954
11955 Return the number of program header table entries read, or -1 if an
11956 error occurs; bfd_get_error will return an appropriate code. */
c044fabd 11957
98d8431c 11958int
217aa764 11959bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
98d8431c
JB
11960{
11961 int num_phdrs;
11962
11963 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11964 {
11965 bfd_set_error (bfd_error_wrong_format);
11966 return -1;
11967 }
11968
11969 num_phdrs = elf_elfheader (abfd)->e_phnum;
01bcaf63
TT
11970 if (num_phdrs != 0)
11971 memcpy (phdrs, elf_tdata (abfd)->phdr,
11972 num_phdrs * sizeof (Elf_Internal_Phdr));
98d8431c
JB
11973
11974 return num_phdrs;
11975}
ae4221d7 11976
db6751f2 11977enum elf_reloc_type_class
7e612e98
AM
11978_bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
11979 const asection *rel_sec ATTRIBUTE_UNUSED,
11980 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
db6751f2
JJ
11981{
11982 return reloc_class_normal;
11983}
f8df10f4 11984
47d9a591 11985/* For RELA architectures, return the relocation value for a
f8df10f4
JJ
11986 relocation against a local symbol. */
11987
11988bfd_vma
217aa764
AM
11989_bfd_elf_rela_local_sym (bfd *abfd,
11990 Elf_Internal_Sym *sym,
8517fae7 11991 asection **psec,
217aa764 11992 Elf_Internal_Rela *rel)
f8df10f4 11993{
8517fae7 11994 asection *sec = *psec;
f8df10f4
JJ
11995 bfd_vma relocation;
11996
6835821b
AM
11997 relocation = (sec->output_section->vma
11998 + sec->output_offset
11999 + sym->st_value);
f8df10f4 12000 if ((sec->flags & SEC_MERGE)
c629eae0 12001 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
dbaa2011 12002 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
f8df10f4 12003 {
f8df10f4 12004 rel->r_addend =
8517fae7 12005 _bfd_merged_section_offset (abfd, psec,
65765700 12006 elf_section_data (sec)->sec_info,
753731ee
AM
12007 sym->st_value + rel->r_addend);
12008 if (sec != *psec)
12009 {
12010 /* If we have changed the section, and our original section is
12011 marked with SEC_EXCLUDE, it means that the original
12012 SEC_MERGE section has been completely subsumed in some
12013 other SEC_MERGE section. In this case, we need to leave
12014 some info around for --emit-relocs. */
12015 if ((sec->flags & SEC_EXCLUDE) != 0)
12016 sec->kept_section = *psec;
12017 sec = *psec;
12018 }
8517fae7
AM
12019 rel->r_addend -= relocation;
12020 rel->r_addend += sec->output_section->vma + sec->output_offset;
f8df10f4
JJ
12021 }
12022 return relocation;
12023}
c629eae0
JJ
12024
12025bfd_vma
217aa764
AM
12026_bfd_elf_rel_local_sym (bfd *abfd,
12027 Elf_Internal_Sym *sym,
12028 asection **psec,
12029 bfd_vma addend)
47d9a591 12030{
c629eae0
JJ
12031 asection *sec = *psec;
12032
6835821b 12033 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
c629eae0
JJ
12034 return sym->st_value + addend;
12035
12036 return _bfd_merged_section_offset (abfd, psec,
65765700 12037 elf_section_data (sec)->sec_info,
753731ee 12038 sym->st_value + addend);
c629eae0
JJ
12039}
12040
37b01f6a
DG
12041/* Adjust an address within a section. Given OFFSET within SEC, return
12042 the new offset within the section, based upon changes made to the
12043 section. Returns -1 if the offset is now invalid.
12044 The offset (in abnd out) is in target sized bytes, however big a
12045 byte may be. */
12046
c629eae0 12047bfd_vma
217aa764 12048_bfd_elf_section_offset (bfd *abfd,
92e4ec35 12049 struct bfd_link_info *info,
217aa764
AM
12050 asection *sec,
12051 bfd_vma offset)
c629eae0 12052{
68bfbfcc 12053 switch (sec->sec_info_type)
65765700 12054 {
dbaa2011 12055 case SEC_INFO_TYPE_STABS:
eea6121a
AM
12056 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12057 offset);
dbaa2011 12058 case SEC_INFO_TYPE_EH_FRAME:
92e4ec35 12059 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
37b01f6a 12060
65765700 12061 default:
310fd250
L
12062 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12063 {
37b01f6a 12064 /* Reverse the offset. */
310fd250
L
12065 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12066 bfd_size_type address_size = bed->s->arch_size / 8;
37b01f6a
DG
12067
12068 /* address_size and sec->size are in octets. Convert
12069 to bytes before subtracting the original offset. */
12070 offset = (sec->size - address_size) / bfd_octets_per_byte (abfd) - offset;
310fd250 12071 }
65765700
JJ
12072 return offset;
12073 }
c629eae0 12074}
3333a7c3
RM
12075\f
12076/* Create a new BFD as if by bfd_openr. Rather than opening a file,
12077 reconstruct an ELF file by reading the segments out of remote memory
12078 based on the ELF file header at EHDR_VMA and the ELF program headers it
12079 points to. If not null, *LOADBASEP is filled in with the difference
12080 between the VMAs from which the segments were read, and the VMAs the
12081 file headers (and hence BFD's idea of each section's VMA) put them at.
12082
12083 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12084 remote memory at target address VMA into the local buffer at MYADDR; it
12085 should return zero on success or an `errno' code on failure. TEMPL must
12086 be a BFD for an ELF target with the word size and byte order found in
12087 the remote memory. */
12088
12089bfd *
217aa764
AM
12090bfd_elf_bfd_from_remote_memory
12091 (bfd *templ,
12092 bfd_vma ehdr_vma,
f0a5d95a 12093 bfd_size_type size,
217aa764 12094 bfd_vma *loadbasep,
fe78531d 12095 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
3333a7c3
RM
12096{
12097 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
5979d6b6 12098 (templ, ehdr_vma, size, loadbasep, target_read_memory);
3333a7c3 12099}
4c45e5c9
JJ
12100\f
12101long
c9727e01
AM
12102_bfd_elf_get_synthetic_symtab (bfd *abfd,
12103 long symcount ATTRIBUTE_UNUSED,
12104 asymbol **syms ATTRIBUTE_UNUSED,
8615f3f2 12105 long dynsymcount,
c9727e01
AM
12106 asymbol **dynsyms,
12107 asymbol **ret)
4c45e5c9
JJ
12108{
12109 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12110 asection *relplt;
12111 asymbol *s;
12112 const char *relplt_name;
12113 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
12114 arelent *p;
12115 long count, i, n;
12116 size_t size;
12117 Elf_Internal_Shdr *hdr;
12118 char *names;
12119 asection *plt;
12120
8615f3f2
AM
12121 *ret = NULL;
12122
90e3cdf2
JJ
12123 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12124 return 0;
12125
8615f3f2
AM
12126 if (dynsymcount <= 0)
12127 return 0;
12128
4c45e5c9
JJ
12129 if (!bed->plt_sym_val)
12130 return 0;
12131
12132 relplt_name = bed->relplt_name;
12133 if (relplt_name == NULL)
d35fd659 12134 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
4c45e5c9
JJ
12135 relplt = bfd_get_section_by_name (abfd, relplt_name);
12136 if (relplt == NULL)
12137 return 0;
12138
12139 hdr = &elf_section_data (relplt)->this_hdr;
12140 if (hdr->sh_link != elf_dynsymtab (abfd)
12141 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12142 return 0;
12143
12144 plt = bfd_get_section_by_name (abfd, ".plt");
12145 if (plt == NULL)
12146 return 0;
12147
12148 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
c9727e01 12149 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
4c45e5c9
JJ
12150 return -1;
12151
eea6121a 12152 count = relplt->size / hdr->sh_entsize;
4c45e5c9
JJ
12153 size = count * sizeof (asymbol);
12154 p = relplt->relocation;
cb53bf42 12155 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
041de40d
AM
12156 {
12157 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12158 if (p->addend != 0)
12159 {
12160#ifdef BFD64
12161 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12162#else
12163 size += sizeof ("+0x") - 1 + 8;
12164#endif
12165 }
12166 }
4c45e5c9 12167
a50b1753 12168 s = *ret = (asymbol *) bfd_malloc (size);
4c45e5c9
JJ
12169 if (s == NULL)
12170 return -1;
12171
12172 names = (char *) (s + count);
12173 p = relplt->relocation;
12174 n = 0;
cb53bf42 12175 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
4c45e5c9
JJ
12176 {
12177 size_t len;
12178 bfd_vma addr;
12179
12180 addr = bed->plt_sym_val (i, plt, p);
12181 if (addr == (bfd_vma) -1)
12182 continue;
12183
12184 *s = **p->sym_ptr_ptr;
65a7a66f
AM
12185 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12186 we are defining a symbol, ensure one of them is set. */
12187 if ((s->flags & BSF_LOCAL) == 0)
12188 s->flags |= BSF_GLOBAL;
6ba2a415 12189 s->flags |= BSF_SYNTHETIC;
4c45e5c9
JJ
12190 s->section = plt;
12191 s->value = addr - plt->vma;
12192 s->name = names;
8f39ba8e 12193 s->udata.p = NULL;
4c45e5c9
JJ
12194 len = strlen ((*p->sym_ptr_ptr)->name);
12195 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12196 names += len;
041de40d
AM
12197 if (p->addend != 0)
12198 {
1d770845 12199 char buf[30], *a;
d324f6d6 12200
041de40d
AM
12201 memcpy (names, "+0x", sizeof ("+0x") - 1);
12202 names += sizeof ("+0x") - 1;
1d770845
L
12203 bfd_sprintf_vma (abfd, buf, p->addend);
12204 for (a = buf; *a == '0'; ++a)
12205 ;
12206 len = strlen (a);
12207 memcpy (names, a, len);
12208 names += len;
041de40d 12209 }
4c45e5c9
JJ
12210 memcpy (names, "@plt", sizeof ("@plt"));
12211 names += sizeof ("@plt");
8f39ba8e 12212 ++s, ++n;
4c45e5c9
JJ
12213 }
12214
12215 return n;
12216}
3d7f7666 12217
821e6ff6
AM
12218/* It is only used by x86-64 so far.
12219 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
7eacd66b
AM
12220 but current usage would allow all of _bfd_std_section to be zero. */
12221static const asymbol lcomm_sym
12222 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
3b22753a 12223asection _bfd_elf_large_com_section
7eacd66b 12224 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
821e6ff6 12225 "LARGE_COMMON", 0, SEC_IS_COMMON);
ecca9871 12226
d1036acb 12227void
06f44071
AM
12228_bfd_elf_post_process_headers (bfd *abfd ATTRIBUTE_UNUSED,
12229 struct bfd_link_info *info ATTRIBUTE_UNUSED)
d1036acb 12230{
06f44071
AM
12231}
12232
cc364be6
AM
12233bfd_boolean
12234_bfd_elf_final_write_processing (bfd *abfd)
06f44071
AM
12235{
12236 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
d1036acb
L
12237
12238 i_ehdrp = elf_elfheader (abfd);
12239
06f44071
AM
12240 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12241 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
d8045f23 12242
df3a023b
AM
12243 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12244 SHF_GNU_MBIND sections or symbols of STT_GNU_IFUNC type or
12245 STB_GNU_UNIQUE binding. */
cc364be6
AM
12246 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12247 {
12248 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12249 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12250 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12251 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12252 {
12253 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
12254 _bfd_error_handler (_("GNU_MBIND section is unsupported"));
12255 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
12256 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is unsupported"));
12257 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
12258 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is unsupported"));
9aea1e31 12259 bfd_set_error (bfd_error_sorry);
cc364be6
AM
12260 return FALSE;
12261 }
12262 }
12263 return TRUE;
d1036acb 12264}
fcb93ecf
PB
12265
12266
12267/* Return TRUE for ELF symbol types that represent functions.
12268 This is the default version of this function, which is sufficient for
d8045f23 12269 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
fcb93ecf
PB
12270
12271bfd_boolean
12272_bfd_elf_is_function_type (unsigned int type)
12273{
d8045f23
NC
12274 return (type == STT_FUNC
12275 || type == STT_GNU_IFUNC);
fcb93ecf 12276}
9f296da3 12277
aef36ac1
AM
12278/* If the ELF symbol SYM might be a function in SEC, return the
12279 function size and set *CODE_OFF to the function's entry point,
12280 otherwise return zero. */
9f296da3 12281
aef36ac1
AM
12282bfd_size_type
12283_bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12284 bfd_vma *code_off)
9f296da3 12285{
aef36ac1
AM
12286 bfd_size_type size;
12287
ff9e0f5b 12288 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
aef36ac1
AM
12289 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12290 || sym->section != sec)
12291 return 0;
ff9e0f5b 12292
ff9e0f5b 12293 *code_off = sym->value;
aef36ac1
AM
12294 size = 0;
12295 if (!(sym->flags & BSF_SYNTHETIC))
12296 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
12297 if (size == 0)
12298 size = 1;
12299 return size;
9f296da3 12300}