1 /* ELF executable support for BFD.
3 Copyright (C) 1993-2018 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
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).
31 Documentation of the internals of the support code still needs
32 to be written. The code is changing quickly enough that we
33 haven't bothered yet. */
35 /* For sparc64-cross-sparc32. */
43 #include "libiberty.h"
44 #include "safe-ctype.h"
45 #include "elf-linux-core.h"
51 static int elf_sort_sections (const void *, const void *);
52 static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
53 static bfd_boolean prep_headers (bfd *);
54 static bfd_boolean swap_out_syms (bfd *, struct elf_strtab_hash **, int) ;
55 static bfd_boolean elf_read_notes (bfd *, file_ptr, bfd_size_type,
57 static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
58 file_ptr offset, size_t align);
60 /* Swap version information in and out. The version information is
61 currently size independent. If that ever changes, this code will
62 need to move into elfcode.h. */
64 /* Swap in a Verdef structure. */
67 _bfd_elf_swap_verdef_in (bfd *abfd,
68 const Elf_External_Verdef *src,
69 Elf_Internal_Verdef *dst)
71 dst->vd_version = H_GET_16 (abfd, src->vd_version);
72 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
73 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
74 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
75 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
76 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
77 dst->vd_next = H_GET_32 (abfd, src->vd_next);
80 /* Swap out a Verdef structure. */
83 _bfd_elf_swap_verdef_out (bfd *abfd,
84 const Elf_Internal_Verdef *src,
85 Elf_External_Verdef *dst)
87 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
88 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
89 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
90 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
91 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
92 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
93 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
96 /* Swap in a Verdaux structure. */
99 _bfd_elf_swap_verdaux_in (bfd *abfd,
100 const Elf_External_Verdaux *src,
101 Elf_Internal_Verdaux *dst)
103 dst->vda_name = H_GET_32 (abfd, src->vda_name);
104 dst->vda_next = H_GET_32 (abfd, src->vda_next);
107 /* Swap out a Verdaux structure. */
110 _bfd_elf_swap_verdaux_out (bfd *abfd,
111 const Elf_Internal_Verdaux *src,
112 Elf_External_Verdaux *dst)
114 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
115 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
118 /* Swap in a Verneed structure. */
121 _bfd_elf_swap_verneed_in (bfd *abfd,
122 const Elf_External_Verneed *src,
123 Elf_Internal_Verneed *dst)
125 dst->vn_version = H_GET_16 (abfd, src->vn_version);
126 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
127 dst->vn_file = H_GET_32 (abfd, src->vn_file);
128 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
129 dst->vn_next = H_GET_32 (abfd, src->vn_next);
132 /* Swap out a Verneed structure. */
135 _bfd_elf_swap_verneed_out (bfd *abfd,
136 const Elf_Internal_Verneed *src,
137 Elf_External_Verneed *dst)
139 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
140 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
141 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
142 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
143 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
146 /* Swap in a Vernaux structure. */
149 _bfd_elf_swap_vernaux_in (bfd *abfd,
150 const Elf_External_Vernaux *src,
151 Elf_Internal_Vernaux *dst)
153 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
154 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
155 dst->vna_other = H_GET_16 (abfd, src->vna_other);
156 dst->vna_name = H_GET_32 (abfd, src->vna_name);
157 dst->vna_next = H_GET_32 (abfd, src->vna_next);
160 /* Swap out a Vernaux structure. */
163 _bfd_elf_swap_vernaux_out (bfd *abfd,
164 const Elf_Internal_Vernaux *src,
165 Elf_External_Vernaux *dst)
167 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
168 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
169 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
170 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
171 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
174 /* Swap in a Versym structure. */
177 _bfd_elf_swap_versym_in (bfd *abfd,
178 const Elf_External_Versym *src,
179 Elf_Internal_Versym *dst)
181 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
184 /* Swap out a Versym structure. */
187 _bfd_elf_swap_versym_out (bfd *abfd,
188 const Elf_Internal_Versym *src,
189 Elf_External_Versym *dst)
191 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
194 /* Standard ELF hash function. Do not change this function; you will
195 cause invalid hash tables to be generated. */
198 bfd_elf_hash (const char *namearg)
200 const unsigned char *name = (const unsigned char *) namearg;
205 while ((ch = *name++) != '\0')
208 if ((g = (h & 0xf0000000)) != 0)
211 /* The ELF ABI says `h &= ~g', but this is equivalent in
212 this case and on some machines one insn instead of two. */
216 return h & 0xffffffff;
219 /* DT_GNU_HASH hash function. Do not change this function; you will
220 cause invalid hash tables to be generated. */
223 bfd_elf_gnu_hash (const char *namearg)
225 const unsigned char *name = (const unsigned char *) namearg;
226 unsigned long h = 5381;
229 while ((ch = *name++) != '\0')
230 h = (h << 5) + h + ch;
231 return h & 0xffffffff;
234 /* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
235 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
237 bfd_elf_allocate_object (bfd *abfd,
239 enum elf_target_id object_id)
241 BFD_ASSERT (object_size >= sizeof (struct elf_obj_tdata));
242 abfd->tdata.any = bfd_zalloc (abfd, object_size);
243 if (abfd->tdata.any == NULL)
246 elf_object_id (abfd) = object_id;
247 if (abfd->direction != read_direction)
249 struct output_elf_obj_tdata *o = bfd_zalloc (abfd, sizeof *o);
252 elf_tdata (abfd)->o = o;
253 elf_program_header_size (abfd) = (bfd_size_type) -1;
260 bfd_elf_make_object (bfd *abfd)
262 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
263 return bfd_elf_allocate_object (abfd, sizeof (struct elf_obj_tdata),
268 bfd_elf_mkcorefile (bfd *abfd)
270 /* I think this can be done just like an object file. */
271 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
273 elf_tdata (abfd)->core = bfd_zalloc (abfd, sizeof (*elf_tdata (abfd)->core));
274 return elf_tdata (abfd)->core != NULL;
278 bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
280 Elf_Internal_Shdr **i_shdrp;
281 bfd_byte *shstrtab = NULL;
283 bfd_size_type shstrtabsize;
285 i_shdrp = elf_elfsections (abfd);
287 || shindex >= elf_numsections (abfd)
288 || i_shdrp[shindex] == 0)
291 shstrtab = i_shdrp[shindex]->contents;
292 if (shstrtab == NULL)
294 /* No cached one, attempt to read, and cache what we read. */
295 offset = i_shdrp[shindex]->sh_offset;
296 shstrtabsize = i_shdrp[shindex]->sh_size;
298 /* Allocate and clear an extra byte at the end, to prevent crashes
299 in case the string table is not terminated. */
300 if (shstrtabsize + 1 <= 1
301 || shstrtabsize > bfd_get_file_size (abfd)
302 || bfd_seek (abfd, offset, SEEK_SET) != 0
303 || (shstrtab = (bfd_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL)
305 else if (bfd_bread (shstrtab, shstrtabsize, abfd) != shstrtabsize)
307 if (bfd_get_error () != bfd_error_system_call)
308 bfd_set_error (bfd_error_file_truncated);
309 bfd_release (abfd, shstrtab);
311 /* Once we've failed to read it, make sure we don't keep
312 trying. Otherwise, we'll keep allocating space for
313 the string table over and over. */
314 i_shdrp[shindex]->sh_size = 0;
317 shstrtab[shstrtabsize] = '\0';
318 i_shdrp[shindex]->contents = shstrtab;
320 return (char *) shstrtab;
324 bfd_elf_string_from_elf_section (bfd *abfd,
325 unsigned int shindex,
326 unsigned int strindex)
328 Elf_Internal_Shdr *hdr;
333 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
336 hdr = elf_elfsections (abfd)[shindex];
338 if (hdr->contents == NULL)
340 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
342 /* PR 17512: file: f057ec89. */
343 /* xgettext:c-format */
344 _bfd_error_handler (_("%pB: attempt to load strings from"
345 " a non-string section (number %d)"),
350 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
354 if (strindex >= hdr->sh_size)
356 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
358 /* xgettext:c-format */
359 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
360 abfd, strindex, (uint64_t) hdr->sh_size,
361 (shindex == shstrndx && strindex == hdr->sh_name
363 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
367 return ((char *) hdr->contents) + strindex;
370 /* Read and convert symbols to internal format.
371 SYMCOUNT specifies the number of symbols to read, starting from
372 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
373 are non-NULL, they are used to store the internal symbols, external
374 symbols, and symbol section index extensions, respectively.
375 Returns a pointer to the internal symbol buffer (malloced if necessary)
376 or NULL if there were no symbols or some kind of problem. */
379 bfd_elf_get_elf_syms (bfd *ibfd,
380 Elf_Internal_Shdr *symtab_hdr,
383 Elf_Internal_Sym *intsym_buf,
385 Elf_External_Sym_Shndx *extshndx_buf)
387 Elf_Internal_Shdr *shndx_hdr;
389 const bfd_byte *esym;
390 Elf_External_Sym_Shndx *alloc_extshndx;
391 Elf_External_Sym_Shndx *shndx;
392 Elf_Internal_Sym *alloc_intsym;
393 Elf_Internal_Sym *isym;
394 Elf_Internal_Sym *isymend;
395 const struct elf_backend_data *bed;
400 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
406 /* Normal syms might have section extension entries. */
408 if (elf_symtab_shndx_list (ibfd) != NULL)
410 elf_section_list * entry;
411 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
413 /* Find an index section that is linked to this symtab section. */
414 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
417 if (entry->hdr.sh_link >= elf_numsections (ibfd))
420 if (sections[entry->hdr.sh_link] == symtab_hdr)
422 shndx_hdr = & entry->hdr;
427 if (shndx_hdr == NULL)
429 if (symtab_hdr == & elf_symtab_hdr (ibfd))
430 /* Not really accurate, but this was how the old code used to work. */
431 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
432 /* Otherwise we do nothing. The assumption is that
433 the index table will not be needed. */
437 /* Read the symbols. */
439 alloc_extshndx = NULL;
441 bed = get_elf_backend_data (ibfd);
442 extsym_size = bed->s->sizeof_sym;
443 amt = (bfd_size_type) symcount * extsym_size;
444 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
445 if (extsym_buf == NULL)
447 alloc_ext = bfd_malloc2 (symcount, extsym_size);
448 extsym_buf = alloc_ext;
450 if (extsym_buf == NULL
451 || bfd_seek (ibfd, pos, SEEK_SET) != 0
452 || bfd_bread (extsym_buf, amt, ibfd) != amt)
458 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
462 amt = (bfd_size_type) symcount * sizeof (Elf_External_Sym_Shndx);
463 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
464 if (extshndx_buf == NULL)
466 alloc_extshndx = (Elf_External_Sym_Shndx *)
467 bfd_malloc2 (symcount, sizeof (Elf_External_Sym_Shndx));
468 extshndx_buf = alloc_extshndx;
470 if (extshndx_buf == NULL
471 || bfd_seek (ibfd, pos, SEEK_SET) != 0
472 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
479 if (intsym_buf == NULL)
481 alloc_intsym = (Elf_Internal_Sym *)
482 bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
483 intsym_buf = alloc_intsym;
484 if (intsym_buf == NULL)
488 /* Convert the symbols to internal form. */
489 isymend = intsym_buf + symcount;
490 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
491 shndx = extshndx_buf;
493 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
494 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
496 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
497 /* xgettext:c-format */
498 _bfd_error_handler (_("%pB symbol number %lu references"
499 " nonexistent SHT_SYMTAB_SHNDX section"),
500 ibfd, (unsigned long) symoffset);
501 if (alloc_intsym != NULL)
508 if (alloc_ext != NULL)
510 if (alloc_extshndx != NULL)
511 free (alloc_extshndx);
516 /* Look up a symbol name. */
518 bfd_elf_sym_name (bfd *abfd,
519 Elf_Internal_Shdr *symtab_hdr,
520 Elf_Internal_Sym *isym,
524 unsigned int iname = isym->st_name;
525 unsigned int shindex = symtab_hdr->sh_link;
527 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
528 /* Check for a bogus st_shndx to avoid crashing. */
529 && isym->st_shndx < elf_numsections (abfd))
531 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
532 shindex = elf_elfheader (abfd)->e_shstrndx;
535 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
538 else if (sym_sec && *name == '\0')
539 name = bfd_section_name (abfd, sym_sec);
544 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
545 sections. The first element is the flags, the rest are section
548 typedef union elf_internal_group {
549 Elf_Internal_Shdr *shdr;
551 } Elf_Internal_Group;
553 /* Return the name of the group signature symbol. Why isn't the
554 signature just a string? */
557 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
559 Elf_Internal_Shdr *hdr;
560 unsigned char esym[sizeof (Elf64_External_Sym)];
561 Elf_External_Sym_Shndx eshndx;
562 Elf_Internal_Sym isym;
564 /* First we need to ensure the symbol table is available. Make sure
565 that it is a symbol table section. */
566 if (ghdr->sh_link >= elf_numsections (abfd))
568 hdr = elf_elfsections (abfd) [ghdr->sh_link];
569 if (hdr->sh_type != SHT_SYMTAB
570 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
573 /* Go read the symbol. */
574 hdr = &elf_tdata (abfd)->symtab_hdr;
575 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
576 &isym, esym, &eshndx) == NULL)
579 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
582 /* Set next_in_group list pointer, and group name for NEWSECT. */
585 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
587 unsigned int num_group = elf_tdata (abfd)->num_group;
589 /* If num_group is zero, read in all SHT_GROUP sections. The count
590 is set to -1 if there are no SHT_GROUP sections. */
593 unsigned int i, shnum;
595 /* First count the number of groups. If we have a SHT_GROUP
596 section with just a flag word (ie. sh_size is 4), ignore it. */
597 shnum = elf_numsections (abfd);
600 #define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
601 ( (shdr)->sh_type == SHT_GROUP \
602 && (shdr)->sh_size >= minsize \
603 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
604 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
606 for (i = 0; i < shnum; i++)
608 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
610 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
616 num_group = (unsigned) -1;
617 elf_tdata (abfd)->num_group = num_group;
618 elf_tdata (abfd)->group_sect_ptr = NULL;
622 /* We keep a list of elf section headers for group sections,
623 so we can find them quickly. */
626 elf_tdata (abfd)->num_group = num_group;
627 elf_tdata (abfd)->group_sect_ptr = (Elf_Internal_Shdr **)
628 bfd_alloc2 (abfd, num_group, sizeof (Elf_Internal_Shdr *));
629 if (elf_tdata (abfd)->group_sect_ptr == NULL)
631 memset (elf_tdata (abfd)->group_sect_ptr, 0,
632 num_group * sizeof (Elf_Internal_Shdr *));
635 for (i = 0; i < shnum; i++)
637 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
639 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
642 Elf_Internal_Group *dest;
644 /* Make sure the group section has a BFD section
646 if (!bfd_section_from_shdr (abfd, i))
649 /* Add to list of sections. */
650 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
653 /* Read the raw contents. */
654 BFD_ASSERT (sizeof (*dest) >= 4);
655 amt = shdr->sh_size * sizeof (*dest) / 4;
656 shdr->contents = (unsigned char *)
657 bfd_alloc2 (abfd, shdr->sh_size, sizeof (*dest) / 4);
658 /* PR binutils/4110: Handle corrupt group headers. */
659 if (shdr->contents == NULL)
662 /* xgettext:c-format */
663 (_("%pB: corrupt size field in group section"
664 " header: %#" PRIx64),
665 abfd, (uint64_t) shdr->sh_size);
666 bfd_set_error (bfd_error_bad_value);
671 memset (shdr->contents, 0, amt);
673 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
674 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
678 /* xgettext:c-format */
679 (_("%pB: invalid size field in group section"
680 " header: %#" PRIx64 ""),
681 abfd, (uint64_t) shdr->sh_size);
682 bfd_set_error (bfd_error_bad_value);
684 /* PR 17510: If the group contents are even
685 partially corrupt, do not allow any of the
686 contents to be used. */
687 memset (shdr->contents, 0, amt);
691 /* Translate raw contents, a flag word followed by an
692 array of elf section indices all in target byte order,
693 to the flag word followed by an array of elf section
695 src = shdr->contents + shdr->sh_size;
696 dest = (Elf_Internal_Group *) (shdr->contents + amt);
704 idx = H_GET_32 (abfd, src);
705 if (src == shdr->contents)
708 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
709 shdr->bfd_section->flags
710 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
715 dest->shdr = elf_elfsections (abfd)[idx];
716 /* PR binutils/23199: All sections in a
717 section group should be marked with
718 SHF_GROUP. But some tools generate
719 broken objects without SHF_GROUP. Fix
721 dest->shdr->sh_flags |= SHF_GROUP;
724 || dest->shdr->sh_type == SHT_GROUP)
727 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
735 /* PR 17510: Corrupt binaries might contain invalid groups. */
736 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
738 elf_tdata (abfd)->num_group = num_group;
740 /* If all groups are invalid then fail. */
743 elf_tdata (abfd)->group_sect_ptr = NULL;
744 elf_tdata (abfd)->num_group = num_group = -1;
746 (_("%pB: no valid group sections found"), abfd);
747 bfd_set_error (bfd_error_bad_value);
753 if (num_group != (unsigned) -1)
755 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
758 for (j = 0; j < num_group; j++)
760 /* Begin search from previous found group. */
761 unsigned i = (j + search_offset) % num_group;
763 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
764 Elf_Internal_Group *idx;
770 idx = (Elf_Internal_Group *) shdr->contents;
771 if (idx == NULL || shdr->sh_size < 4)
773 /* See PR 21957 for a reproducer. */
774 /* xgettext:c-format */
775 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
776 abfd, shdr->bfd_section);
777 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
778 bfd_set_error (bfd_error_bad_value);
781 n_elt = shdr->sh_size / 4;
783 /* Look through this group's sections to see if current
784 section is a member. */
786 if ((++idx)->shdr == hdr)
790 /* We are a member of this group. Go looking through
791 other members to see if any others are linked via
793 idx = (Elf_Internal_Group *) shdr->contents;
794 n_elt = shdr->sh_size / 4;
796 if ((++idx)->shdr != NULL
797 && (s = idx->shdr->bfd_section) != NULL
798 && elf_next_in_group (s) != NULL)
802 /* Snarf the group name from other member, and
803 insert current section in circular list. */
804 elf_group_name (newsect) = elf_group_name (s);
805 elf_next_in_group (newsect) = elf_next_in_group (s);
806 elf_next_in_group (s) = newsect;
812 gname = group_signature (abfd, shdr);
815 elf_group_name (newsect) = gname;
817 /* Start a circular list with one element. */
818 elf_next_in_group (newsect) = newsect;
821 /* If the group section has been created, point to the
823 if (shdr->bfd_section != NULL)
824 elf_next_in_group (shdr->bfd_section) = newsect;
826 elf_tdata (abfd)->group_search_offset = i;
833 if (elf_group_name (newsect) == NULL)
835 /* xgettext:c-format */
836 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
844 _bfd_elf_setup_sections (bfd *abfd)
847 unsigned int num_group = elf_tdata (abfd)->num_group;
848 bfd_boolean result = TRUE;
851 /* Process SHF_LINK_ORDER. */
852 for (s = abfd->sections; s != NULL; s = s->next)
854 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
855 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
857 unsigned int elfsec = this_hdr->sh_link;
858 /* FIXME: The old Intel compiler and old strip/objcopy may
859 not set the sh_link or sh_info fields. Hence we could
860 get the situation where elfsec is 0. */
863 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
864 if (bed->link_order_error_handler)
865 bed->link_order_error_handler
866 /* xgettext:c-format */
867 (_("%pB: warning: sh_link not set for section `%pA'"),
872 asection *linksec = NULL;
874 if (elfsec < elf_numsections (abfd))
876 this_hdr = elf_elfsections (abfd)[elfsec];
877 linksec = this_hdr->bfd_section;
881 Some strip/objcopy may leave an incorrect value in
882 sh_link. We don't want to proceed. */
886 /* xgettext:c-format */
887 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
888 s->owner, elfsec, s);
892 elf_linked_to_section (s) = linksec;
895 else if (this_hdr->sh_type == SHT_GROUP
896 && elf_next_in_group (s) == NULL)
899 /* xgettext:c-format */
900 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
901 abfd, elf_section_data (s)->this_idx);
906 /* Process section groups. */
907 if (num_group == (unsigned) -1)
910 for (i = 0; i < num_group; i++)
912 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
913 Elf_Internal_Group *idx;
916 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
917 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
920 /* xgettext:c-format */
921 (_("%pB: section group entry number %u is corrupt"),
927 idx = (Elf_Internal_Group *) shdr->contents;
928 n_elt = shdr->sh_size / 4;
934 if (idx->shdr == NULL)
936 else if (idx->shdr->bfd_section)
937 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
938 else if (idx->shdr->sh_type != SHT_RELA
939 && idx->shdr->sh_type != SHT_REL)
941 /* There are some unknown sections in the group. */
943 /* xgettext:c-format */
944 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
947 bfd_elf_string_from_elf_section (abfd,
948 (elf_elfheader (abfd)
961 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
963 return elf_next_in_group (sec) != NULL;
967 convert_debug_to_zdebug (bfd *abfd, const char *name)
969 unsigned int len = strlen (name);
970 char *new_name = bfd_alloc (abfd, len + 2);
971 if (new_name == NULL)
975 memcpy (new_name + 2, name + 1, len);
980 convert_zdebug_to_debug (bfd *abfd, const char *name)
982 unsigned int len = strlen (name);
983 char *new_name = bfd_alloc (abfd, len);
984 if (new_name == NULL)
987 memcpy (new_name + 1, name + 2, len - 1);
991 /* Make a BFD section from an ELF section. We store a pointer to the
992 BFD section in the bfd_section field of the header. */
995 _bfd_elf_make_section_from_shdr (bfd *abfd,
996 Elf_Internal_Shdr *hdr,
1002 const struct elf_backend_data *bed;
1004 if (hdr->bfd_section != NULL)
1007 newsect = bfd_make_section_anyway (abfd, name);
1008 if (newsect == NULL)
1011 hdr->bfd_section = newsect;
1012 elf_section_data (newsect)->this_hdr = *hdr;
1013 elf_section_data (newsect)->this_idx = shindex;
1015 /* Always use the real type/flags. */
1016 elf_section_type (newsect) = hdr->sh_type;
1017 elf_section_flags (newsect) = hdr->sh_flags;
1019 newsect->filepos = hdr->sh_offset;
1021 if (! bfd_set_section_vma (abfd, newsect, hdr->sh_addr)
1022 || ! bfd_set_section_size (abfd, newsect, hdr->sh_size)
1023 || ! bfd_set_section_alignment (abfd, newsect,
1024 bfd_log2 (hdr->sh_addralign)))
1027 flags = SEC_NO_FLAGS;
1028 if (hdr->sh_type != SHT_NOBITS)
1029 flags |= SEC_HAS_CONTENTS;
1030 if (hdr->sh_type == SHT_GROUP)
1032 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1035 if (hdr->sh_type != SHT_NOBITS)
1038 if ((hdr->sh_flags & SHF_WRITE) == 0)
1039 flags |= SEC_READONLY;
1040 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1042 else if ((flags & SEC_LOAD) != 0)
1044 if ((hdr->sh_flags & SHF_MERGE) != 0)
1047 newsect->entsize = hdr->sh_entsize;
1049 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1050 flags |= SEC_STRINGS;
1051 if (hdr->sh_flags & SHF_GROUP)
1052 if (!setup_group (abfd, hdr, newsect))
1054 if ((hdr->sh_flags & SHF_TLS) != 0)
1055 flags |= SEC_THREAD_LOCAL;
1056 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1057 flags |= SEC_EXCLUDE;
1059 if ((flags & SEC_ALLOC) == 0)
1061 /* The debugging sections appear to be recognized only by name,
1062 not any sort of flag. Their SEC_ALLOC bits are cleared. */
1063 if (name [0] == '.')
1068 p = ".debug", n = 6;
1069 else if (name[1] == 'g' && name[2] == 'n')
1070 p = ".gnu.linkonce.wi.", n = 17;
1071 else if (name[1] == 'g' && name[2] == 'd')
1072 p = ".gdb_index", n = 11; /* yes we really do mean 11. */
1073 else if (name[1] == 'l')
1075 else if (name[1] == 's')
1077 else if (name[1] == 'z')
1078 p = ".zdebug", n = 7;
1081 if (p != NULL && strncmp (name, p, n) == 0)
1082 flags |= SEC_DEBUGGING;
1086 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1087 only link a single copy of the section. This is used to support
1088 g++. g++ will emit each template expansion in its own section.
1089 The symbols will be defined as weak, so that multiple definitions
1090 are permitted. The GNU linker extension is to actually discard
1091 all but one of the sections. */
1092 if (CONST_STRNEQ (name, ".gnu.linkonce")
1093 && elf_next_in_group (newsect) == NULL)
1094 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1096 bed = get_elf_backend_data (abfd);
1097 if (bed->elf_backend_section_flags)
1098 if (! bed->elf_backend_section_flags (&flags, hdr))
1101 if (! bfd_set_section_flags (abfd, newsect, flags))
1104 /* We do not parse the PT_NOTE segments as we are interested even in the
1105 separate debug info files which may have the segments offsets corrupted.
1106 PT_NOTEs from the core files are currently not parsed using BFD. */
1107 if (hdr->sh_type == SHT_NOTE)
1111 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
1114 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1115 hdr->sh_offset, hdr->sh_addralign);
1119 if ((flags & SEC_ALLOC) != 0)
1121 Elf_Internal_Phdr *phdr;
1122 unsigned int i, nload;
1124 /* Some ELF linkers produce binaries with all the program header
1125 p_paddr fields zero. If we have such a binary with more than
1126 one PT_LOAD header, then leave the section lma equal to vma
1127 so that we don't create sections with overlapping lma. */
1128 phdr = elf_tdata (abfd)->phdr;
1129 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1130 if (phdr->p_paddr != 0)
1132 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1134 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1137 phdr = elf_tdata (abfd)->phdr;
1138 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1140 if (((phdr->p_type == PT_LOAD
1141 && (hdr->sh_flags & SHF_TLS) == 0)
1142 || phdr->p_type == PT_TLS)
1143 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
1145 if ((flags & SEC_LOAD) == 0)
1146 newsect->lma = (phdr->p_paddr
1147 + hdr->sh_addr - phdr->p_vaddr);
1149 /* We used to use the same adjustment for SEC_LOAD
1150 sections, but that doesn't work if the segment
1151 is packed with code from multiple VMAs.
1152 Instead we calculate the section LMA based on
1153 the segment LMA. It is assumed that the
1154 segment will contain sections with contiguous
1155 LMAs, even if the VMAs are not. */
1156 newsect->lma = (phdr->p_paddr
1157 + hdr->sh_offset - phdr->p_offset);
1159 /* With contiguous segments, we can't tell from file
1160 offsets whether a section with zero size should
1161 be placed at the end of one segment or the
1162 beginning of the next. Decide based on vaddr. */
1163 if (hdr->sh_addr >= phdr->p_vaddr
1164 && (hdr->sh_addr + hdr->sh_size
1165 <= phdr->p_vaddr + phdr->p_memsz))
1171 /* Compress/decompress DWARF debug sections with names: .debug_* and
1172 .zdebug_*, after the section flags is set. */
1173 if ((flags & SEC_DEBUGGING)
1174 && ((name[1] == 'd' && name[6] == '_')
1175 || (name[1] == 'z' && name[7] == '_')))
1177 enum { nothing, compress, decompress } action = nothing;
1178 int compression_header_size;
1179 bfd_size_type uncompressed_size;
1180 bfd_boolean compressed
1181 = bfd_is_section_compressed_with_header (abfd, newsect,
1182 &compression_header_size,
1183 &uncompressed_size);
1187 /* Compressed section. Check if we should decompress. */
1188 if ((abfd->flags & BFD_DECOMPRESS))
1189 action = decompress;
1192 /* Compress the uncompressed section or convert from/to .zdebug*
1193 section. Check if we should compress. */
1194 if (action == nothing)
1196 if (newsect->size != 0
1197 && (abfd->flags & BFD_COMPRESS)
1198 && compression_header_size >= 0
1199 && uncompressed_size > 0
1201 || ((compression_header_size > 0)
1202 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
1208 if (action == compress)
1210 if (!bfd_init_section_compress_status (abfd, newsect))
1213 /* xgettext:c-format */
1214 (_("%pB: unable to initialize compress status for section %s"),
1221 if (!bfd_init_section_decompress_status (abfd, newsect))
1224 /* xgettext:c-format */
1225 (_("%pB: unable to initialize decompress status for section %s"),
1231 if (abfd->is_linker_input)
1234 && (action == decompress
1235 || (action == compress
1236 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
1238 /* Convert section name from .zdebug_* to .debug_* so
1239 that linker will consider this section as a debug
1241 char *new_name = convert_zdebug_to_debug (abfd, name);
1242 if (new_name == NULL)
1244 bfd_rename_section (abfd, newsect, new_name);
1248 /* For objdump, don't rename the section. For objcopy, delay
1249 section rename to elf_fake_sections. */
1250 newsect->flags |= SEC_ELF_RENAME;
1256 const char *const bfd_elf_section_type_names[] =
1258 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1259 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1260 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1263 /* ELF relocs are against symbols. If we are producing relocatable
1264 output, and the reloc is against an external symbol, and nothing
1265 has given us any additional addend, the resulting reloc will also
1266 be against the same symbol. In such a case, we don't want to
1267 change anything about the way the reloc is handled, since it will
1268 all be done at final link time. Rather than put special case code
1269 into bfd_perform_relocation, all the reloc types use this howto
1270 function. It just short circuits the reloc if producing
1271 relocatable output against an external symbol. */
1273 bfd_reloc_status_type
1274 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1275 arelent *reloc_entry,
1277 void *data ATTRIBUTE_UNUSED,
1278 asection *input_section,
1280 char **error_message ATTRIBUTE_UNUSED)
1282 if (output_bfd != NULL
1283 && (symbol->flags & BSF_SECTION_SYM) == 0
1284 && (! reloc_entry->howto->partial_inplace
1285 || reloc_entry->addend == 0))
1287 reloc_entry->address += input_section->output_offset;
1288 return bfd_reloc_ok;
1291 return bfd_reloc_continue;
1294 /* Returns TRUE if section A matches section B.
1295 Names, addresses and links may be different, but everything else
1296 should be the same. */
1299 section_match (const Elf_Internal_Shdr * a,
1300 const Elf_Internal_Shdr * b)
1303 a->sh_type == b->sh_type
1304 && (a->sh_flags & ~ SHF_INFO_LINK)
1305 == (b->sh_flags & ~ SHF_INFO_LINK)
1306 && a->sh_addralign == b->sh_addralign
1307 && a->sh_size == b->sh_size
1308 && a->sh_entsize == b->sh_entsize
1309 /* FIXME: Check sh_addr ? */
1313 /* Find a section in OBFD that has the same characteristics
1314 as IHEADER. Return the index of this section or SHN_UNDEF if
1315 none can be found. Check's section HINT first, as this is likely
1316 to be the correct section. */
1319 find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1320 const unsigned int hint)
1322 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1325 BFD_ASSERT (iheader != NULL);
1327 /* See PR 20922 for a reproducer of the NULL test. */
1328 if (hint < elf_numsections (obfd)
1329 && oheaders[hint] != NULL
1330 && section_match (oheaders[hint], iheader))
1333 for (i = 1; i < elf_numsections (obfd); i++)
1335 Elf_Internal_Shdr * oheader = oheaders[i];
1337 if (oheader == NULL)
1339 if (section_match (oheader, iheader))
1340 /* FIXME: Do we care if there is a potential for
1341 multiple matches ? */
1348 /* PR 19938: Attempt to set the ELF section header fields of an OS or
1349 Processor specific section, based upon a matching input section.
1350 Returns TRUE upon success, FALSE otherwise. */
1353 copy_special_section_fields (const bfd *ibfd,
1355 const Elf_Internal_Shdr *iheader,
1356 Elf_Internal_Shdr *oheader,
1357 const unsigned int secnum)
1359 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1360 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1361 bfd_boolean changed = FALSE;
1362 unsigned int sh_link;
1364 if (oheader->sh_type == SHT_NOBITS)
1366 /* This is a feature for objcopy --only-keep-debug:
1367 When a section's type is changed to NOBITS, we preserve
1368 the sh_link and sh_info fields so that they can be
1369 matched up with the original.
1371 Note: Strictly speaking these assignments are wrong.
1372 The sh_link and sh_info fields should point to the
1373 relevent sections in the output BFD, which may not be in
1374 the same location as they were in the input BFD. But
1375 the whole point of this action is to preserve the
1376 original values of the sh_link and sh_info fields, so
1377 that they can be matched up with the section headers in
1378 the original file. So strictly speaking we may be
1379 creating an invalid ELF file, but it is only for a file
1380 that just contains debug info and only for sections
1381 without any contents. */
1382 if (oheader->sh_link == 0)
1383 oheader->sh_link = iheader->sh_link;
1384 if (oheader->sh_info == 0)
1385 oheader->sh_info = iheader->sh_info;
1389 /* Allow the target a chance to decide how these fields should be set. */
1390 if (bed->elf_backend_copy_special_section_fields != NULL
1391 && bed->elf_backend_copy_special_section_fields
1392 (ibfd, obfd, iheader, oheader))
1395 /* We have an iheader which might match oheader, and which has non-zero
1396 sh_info and/or sh_link fields. Attempt to follow those links and find
1397 the section in the output bfd which corresponds to the linked section
1398 in the input bfd. */
1399 if (iheader->sh_link != SHN_UNDEF)
1401 /* See PR 20931 for a reproducer. */
1402 if (iheader->sh_link >= elf_numsections (ibfd))
1405 /* xgettext:c-format */
1406 (_("%pB: invalid sh_link field (%d) in section number %d"),
1407 ibfd, iheader->sh_link, secnum);
1411 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1412 if (sh_link != SHN_UNDEF)
1414 oheader->sh_link = sh_link;
1418 /* FIXME: Should we install iheader->sh_link
1419 if we could not find a match ? */
1421 /* xgettext:c-format */
1422 (_("%pB: failed to find link section for section %d"), obfd, secnum);
1425 if (iheader->sh_info)
1427 /* The sh_info field can hold arbitrary information, but if the
1428 SHF_LINK_INFO flag is set then it should be interpreted as a
1430 if (iheader->sh_flags & SHF_INFO_LINK)
1432 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1434 if (sh_link != SHN_UNDEF)
1435 oheader->sh_flags |= SHF_INFO_LINK;
1438 /* No idea what it means - just copy it. */
1439 sh_link = iheader->sh_info;
1441 if (sh_link != SHN_UNDEF)
1443 oheader->sh_info = sh_link;
1448 /* xgettext:c-format */
1449 (_("%pB: failed to find info section for section %d"), obfd, secnum);
1455 /* Copy the program header and other data from one object module to
1459 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1461 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1462 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1463 const struct elf_backend_data *bed;
1466 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1467 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1470 if (!elf_flags_init (obfd))
1472 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1473 elf_flags_init (obfd) = TRUE;
1476 elf_gp (obfd) = elf_gp (ibfd);
1478 /* Also copy the EI_OSABI field. */
1479 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1480 elf_elfheader (ibfd)->e_ident[EI_OSABI];
1482 /* If set, copy the EI_ABIVERSION field. */
1483 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1484 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1485 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
1487 /* Copy object attributes. */
1488 _bfd_elf_copy_obj_attributes (ibfd, obfd);
1490 if (iheaders == NULL || oheaders == NULL)
1493 bed = get_elf_backend_data (obfd);
1495 /* Possibly copy other fields in the section header. */
1496 for (i = 1; i < elf_numsections (obfd); i++)
1499 Elf_Internal_Shdr * oheader = oheaders[i];
1501 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1502 because of a special case need for generating separate debug info
1503 files. See below for more details. */
1505 || (oheader->sh_type != SHT_NOBITS
1506 && oheader->sh_type < SHT_LOOS))
1509 /* Ignore empty sections, and sections whose
1510 fields have already been initialised. */
1511 if (oheader->sh_size == 0
1512 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1515 /* Scan for the matching section in the input bfd.
1516 First we try for a direct mapping between the input and output sections. */
1517 for (j = 1; j < elf_numsections (ibfd); j++)
1519 const Elf_Internal_Shdr * iheader = iheaders[j];
1521 if (iheader == NULL)
1524 if (oheader->bfd_section != NULL
1525 && iheader->bfd_section != NULL
1526 && iheader->bfd_section->output_section != NULL
1527 && iheader->bfd_section->output_section == oheader->bfd_section)
1529 /* We have found a connection from the input section to the
1530 output section. Attempt to copy the header fields. If
1531 this fails then do not try any further sections - there
1532 should only be a one-to-one mapping between input and output. */
1533 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1534 j = elf_numsections (ibfd);
1539 if (j < elf_numsections (ibfd))
1542 /* That failed. So try to deduce the corresponding input section.
1543 Unfortunately we cannot compare names as the output string table
1544 is empty, so instead we check size, address and type. */
1545 for (j = 1; j < elf_numsections (ibfd); j++)
1547 const Elf_Internal_Shdr * iheader = iheaders[j];
1549 if (iheader == NULL)
1552 /* Try matching fields in the input section's header.
1553 Since --only-keep-debug turns all non-debug sections into
1554 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1556 if ((oheader->sh_type == SHT_NOBITS
1557 || iheader->sh_type == oheader->sh_type)
1558 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1559 == (oheader->sh_flags & ~ SHF_INFO_LINK)
1560 && iheader->sh_addralign == oheader->sh_addralign
1561 && iheader->sh_entsize == oheader->sh_entsize
1562 && iheader->sh_size == oheader->sh_size
1563 && iheader->sh_addr == oheader->sh_addr
1564 && (iheader->sh_info != oheader->sh_info
1565 || iheader->sh_link != oheader->sh_link))
1567 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1572 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1574 /* Final attempt. Call the backend copy function
1575 with a NULL input section. */
1576 if (bed->elf_backend_copy_special_section_fields != NULL)
1577 bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
1585 get_segment_type (unsigned int p_type)
1590 case PT_NULL: pt = "NULL"; break;
1591 case PT_LOAD: pt = "LOAD"; break;
1592 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1593 case PT_INTERP: pt = "INTERP"; break;
1594 case PT_NOTE: pt = "NOTE"; break;
1595 case PT_SHLIB: pt = "SHLIB"; break;
1596 case PT_PHDR: pt = "PHDR"; break;
1597 case PT_TLS: pt = "TLS"; break;
1598 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
1599 case PT_GNU_STACK: pt = "STACK"; break;
1600 case PT_GNU_RELRO: pt = "RELRO"; break;
1601 default: pt = NULL; break;
1606 /* Print out the program headers. */
1609 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1611 FILE *f = (FILE *) farg;
1612 Elf_Internal_Phdr *p;
1614 bfd_byte *dynbuf = NULL;
1616 p = elf_tdata (abfd)->phdr;
1621 fprintf (f, _("\nProgram Header:\n"));
1622 c = elf_elfheader (abfd)->e_phnum;
1623 for (i = 0; i < c; i++, p++)
1625 const char *pt = get_segment_type (p->p_type);
1630 sprintf (buf, "0x%lx", p->p_type);
1633 fprintf (f, "%8s off 0x", pt);
1634 bfd_fprintf_vma (abfd, f, p->p_offset);
1635 fprintf (f, " vaddr 0x");
1636 bfd_fprintf_vma (abfd, f, p->p_vaddr);
1637 fprintf (f, " paddr 0x");
1638 bfd_fprintf_vma (abfd, f, p->p_paddr);
1639 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1640 fprintf (f, " filesz 0x");
1641 bfd_fprintf_vma (abfd, f, p->p_filesz);
1642 fprintf (f, " memsz 0x");
1643 bfd_fprintf_vma (abfd, f, p->p_memsz);
1644 fprintf (f, " flags %c%c%c",
1645 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1646 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1647 (p->p_flags & PF_X) != 0 ? 'x' : '-');
1648 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1649 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
1654 s = bfd_get_section_by_name (abfd, ".dynamic");
1657 unsigned int elfsec;
1658 unsigned long shlink;
1659 bfd_byte *extdyn, *extdynend;
1661 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1663 fprintf (f, _("\nDynamic Section:\n"));
1665 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1668 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1669 if (elfsec == SHN_BAD)
1671 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1673 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1674 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1677 /* PR 17512: file: 6f427532. */
1678 if (s->size < extdynsize)
1680 extdynend = extdyn + s->size;
1681 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1683 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
1685 Elf_Internal_Dyn dyn;
1686 const char *name = "";
1688 bfd_boolean stringp;
1689 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1691 (*swap_dyn_in) (abfd, extdyn, &dyn);
1693 if (dyn.d_tag == DT_NULL)
1700 if (bed->elf_backend_get_target_dtag)
1701 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1703 if (!strcmp (name, ""))
1705 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
1710 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
1711 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1712 case DT_PLTGOT: name = "PLTGOT"; break;
1713 case DT_HASH: name = "HASH"; break;
1714 case DT_STRTAB: name = "STRTAB"; break;
1715 case DT_SYMTAB: name = "SYMTAB"; break;
1716 case DT_RELA: name = "RELA"; break;
1717 case DT_RELASZ: name = "RELASZ"; break;
1718 case DT_RELAENT: name = "RELAENT"; break;
1719 case DT_STRSZ: name = "STRSZ"; break;
1720 case DT_SYMENT: name = "SYMENT"; break;
1721 case DT_INIT: name = "INIT"; break;
1722 case DT_FINI: name = "FINI"; break;
1723 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1724 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
1725 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1726 case DT_REL: name = "REL"; break;
1727 case DT_RELSZ: name = "RELSZ"; break;
1728 case DT_RELENT: name = "RELENT"; break;
1729 case DT_PLTREL: name = "PLTREL"; break;
1730 case DT_DEBUG: name = "DEBUG"; break;
1731 case DT_TEXTREL: name = "TEXTREL"; break;
1732 case DT_JMPREL: name = "JMPREL"; break;
1733 case DT_BIND_NOW: name = "BIND_NOW"; break;
1734 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1735 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1736 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1737 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
1738 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
1739 case DT_FLAGS: name = "FLAGS"; break;
1740 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1741 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
1742 case DT_CHECKSUM: name = "CHECKSUM"; break;
1743 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1744 case DT_MOVEENT: name = "MOVEENT"; break;
1745 case DT_MOVESZ: name = "MOVESZ"; break;
1746 case DT_FEATURE: name = "FEATURE"; break;
1747 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1748 case DT_SYMINSZ: name = "SYMINSZ"; break;
1749 case DT_SYMINENT: name = "SYMINENT"; break;
1750 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1751 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1752 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
1753 case DT_PLTPAD: name = "PLTPAD"; break;
1754 case DT_MOVETAB: name = "MOVETAB"; break;
1755 case DT_SYMINFO: name = "SYMINFO"; break;
1756 case DT_RELACOUNT: name = "RELACOUNT"; break;
1757 case DT_RELCOUNT: name = "RELCOUNT"; break;
1758 case DT_FLAGS_1: name = "FLAGS_1"; break;
1759 case DT_VERSYM: name = "VERSYM"; break;
1760 case DT_VERDEF: name = "VERDEF"; break;
1761 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1762 case DT_VERNEED: name = "VERNEED"; break;
1763 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
1764 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
1765 case DT_USED: name = "USED"; break;
1766 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
1767 case DT_GNU_HASH: name = "GNU_HASH"; break;
1770 fprintf (f, " %-20s ", name);
1774 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1779 unsigned int tagv = dyn.d_un.d_val;
1781 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1784 fprintf (f, "%s", string);
1793 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1794 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1796 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
1800 if (elf_dynverdef (abfd) != 0)
1802 Elf_Internal_Verdef *t;
1804 fprintf (f, _("\nVersion definitions:\n"));
1805 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1807 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
1808 t->vd_flags, t->vd_hash,
1809 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1810 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
1812 Elf_Internal_Verdaux *a;
1815 for (a = t->vd_auxptr->vda_nextptr;
1819 a->vda_nodename ? a->vda_nodename : "<corrupt>");
1825 if (elf_dynverref (abfd) != 0)
1827 Elf_Internal_Verneed *t;
1829 fprintf (f, _("\nVersion References:\n"));
1830 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1832 Elf_Internal_Vernaux *a;
1834 fprintf (f, _(" required from %s:\n"),
1835 t->vn_filename ? t->vn_filename : "<corrupt>");
1836 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1837 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
1838 a->vna_flags, a->vna_other,
1839 a->vna_nodename ? a->vna_nodename : "<corrupt>");
1851 /* Get version string. */
1854 _bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1855 bfd_boolean *hidden)
1857 const char *version_string = NULL;
1858 if (elf_dynversym (abfd) != 0
1859 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1861 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1863 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1864 vernum &= VERSYM_VERSION;
1867 version_string = "";
1868 else if (vernum == 1
1869 && (vernum > elf_tdata (abfd)->cverdefs
1870 || (elf_tdata (abfd)->verdef[0].vd_flags
1872 version_string = "Base";
1873 else if (vernum <= elf_tdata (abfd)->cverdefs)
1875 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1878 Elf_Internal_Verneed *t;
1880 version_string = _("<corrupt>");
1881 for (t = elf_tdata (abfd)->verref;
1885 Elf_Internal_Vernaux *a;
1887 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1889 if (a->vna_other == vernum)
1891 version_string = a->vna_nodename;
1898 return version_string;
1901 /* Display ELF-specific fields of a symbol. */
1904 bfd_elf_print_symbol (bfd *abfd,
1907 bfd_print_symbol_type how)
1909 FILE *file = (FILE *) filep;
1912 case bfd_print_symbol_name:
1913 fprintf (file, "%s", symbol->name);
1915 case bfd_print_symbol_more:
1916 fprintf (file, "elf ");
1917 bfd_fprintf_vma (abfd, file, symbol->value);
1918 fprintf (file, " %x", symbol->flags);
1920 case bfd_print_symbol_all:
1922 const char *section_name;
1923 const char *name = NULL;
1924 const struct elf_backend_data *bed;
1925 unsigned char st_other;
1927 const char *version_string;
1930 section_name = symbol->section ? symbol->section->name : "(*none*)";
1932 bed = get_elf_backend_data (abfd);
1933 if (bed->elf_backend_print_symbol_all)
1934 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1938 name = symbol->name;
1939 bfd_print_symbol_vandf (abfd, file, symbol);
1942 fprintf (file, " %s\t", section_name);
1943 /* Print the "other" value for a symbol. For common symbols,
1944 we've already printed the size; now print the alignment.
1945 For other symbols, we have no specified alignment, and
1946 we've printed the address; now print the size. */
1947 if (symbol->section && bfd_is_com_section (symbol->section))
1948 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1950 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1951 bfd_fprintf_vma (abfd, file, val);
1953 /* If we have version information, print it. */
1954 version_string = _bfd_elf_get_symbol_version_string (abfd,
1960 fprintf (file, " %-11s", version_string);
1965 fprintf (file, " (%s)", version_string);
1966 for (i = 10 - strlen (version_string); i > 0; --i)
1971 /* If the st_other field is not zero, print it. */
1972 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
1977 case STV_INTERNAL: fprintf (file, " .internal"); break;
1978 case STV_HIDDEN: fprintf (file, " .hidden"); break;
1979 case STV_PROTECTED: fprintf (file, " .protected"); break;
1981 /* Some other non-defined flags are also present, so print
1983 fprintf (file, " 0x%02x", (unsigned int) st_other);
1986 fprintf (file, " %s", name);
1992 /* ELF .o/exec file reading */
1994 /* Create a new bfd section from an ELF section header. */
1997 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
1999 Elf_Internal_Shdr *hdr;
2000 Elf_Internal_Ehdr *ehdr;
2001 const struct elf_backend_data *bed;
2003 bfd_boolean ret = TRUE;
2004 static bfd_boolean * sections_being_created = NULL;
2005 static bfd * sections_being_created_abfd = NULL;
2006 static unsigned int nesting = 0;
2008 if (shindex >= elf_numsections (abfd))
2013 /* PR17512: A corrupt ELF binary might contain a recursive group of
2014 sections, with each the string indices pointing to the next in the
2015 loop. Detect this here, by refusing to load a section that we are
2016 already in the process of loading. We only trigger this test if
2017 we have nested at least three sections deep as normal ELF binaries
2018 can expect to recurse at least once.
2020 FIXME: It would be better if this array was attached to the bfd,
2021 rather than being held in a static pointer. */
2023 if (sections_being_created_abfd != abfd)
2024 sections_being_created = NULL;
2025 if (sections_being_created == NULL)
2027 /* FIXME: It would be more efficient to attach this array to the bfd somehow. */
2028 sections_being_created = (bfd_boolean *)
2029 bfd_zalloc (abfd, elf_numsections (abfd) * sizeof (bfd_boolean));
2030 sections_being_created_abfd = abfd;
2032 if (sections_being_created [shindex])
2035 (_("%pB: warning: loop in section dependencies detected"), abfd);
2038 sections_being_created [shindex] = TRUE;
2041 hdr = elf_elfsections (abfd)[shindex];
2042 ehdr = elf_elfheader (abfd);
2043 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
2048 bed = get_elf_backend_data (abfd);
2049 switch (hdr->sh_type)
2052 /* Inactive section. Throw it away. */
2055 case SHT_PROGBITS: /* Normal section with contents. */
2056 case SHT_NOBITS: /* .bss section. */
2057 case SHT_HASH: /* .hash section. */
2058 case SHT_NOTE: /* .note section. */
2059 case SHT_INIT_ARRAY: /* .init_array section. */
2060 case SHT_FINI_ARRAY: /* .fini_array section. */
2061 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
2062 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
2063 case SHT_GNU_HASH: /* .gnu.hash section. */
2064 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2067 case SHT_DYNAMIC: /* Dynamic linking information. */
2068 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2071 if (hdr->sh_link > elf_numsections (abfd))
2073 /* PR 10478: Accept Solaris binaries with a sh_link
2074 field set to SHN_BEFORE or SHN_AFTER. */
2075 switch (bfd_get_arch (abfd))
2078 case bfd_arch_sparc:
2079 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2080 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2082 /* Otherwise fall through. */
2087 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
2089 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
2091 Elf_Internal_Shdr *dynsymhdr;
2093 /* The shared libraries distributed with hpux11 have a bogus
2094 sh_link field for the ".dynamic" section. Find the
2095 string table for the ".dynsym" section instead. */
2096 if (elf_dynsymtab (abfd) != 0)
2098 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2099 hdr->sh_link = dynsymhdr->sh_link;
2103 unsigned int i, num_sec;
2105 num_sec = elf_numsections (abfd);
2106 for (i = 1; i < num_sec; i++)
2108 dynsymhdr = elf_elfsections (abfd)[i];
2109 if (dynsymhdr->sh_type == SHT_DYNSYM)
2111 hdr->sh_link = dynsymhdr->sh_link;
2119 case SHT_SYMTAB: /* A symbol table. */
2120 if (elf_onesymtab (abfd) == shindex)
2123 if (hdr->sh_entsize != bed->s->sizeof_sym)
2126 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2128 if (hdr->sh_size != 0)
2130 /* Some assemblers erroneously set sh_info to one with a
2131 zero sh_size. ld sees this as a global symbol count
2132 of (unsigned) -1. Fix it here. */
2137 /* PR 18854: A binary might contain more than one symbol table.
2138 Unusual, but possible. Warn, but continue. */
2139 if (elf_onesymtab (abfd) != 0)
2142 /* xgettext:c-format */
2143 (_("%pB: warning: multiple symbol tables detected"
2144 " - ignoring the table in section %u"),
2148 elf_onesymtab (abfd) = shindex;
2149 elf_symtab_hdr (abfd) = *hdr;
2150 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
2151 abfd->flags |= HAS_SYMS;
2153 /* Sometimes a shared object will map in the symbol table. If
2154 SHF_ALLOC is set, and this is a shared object, then we also
2155 treat this section as a BFD section. We can not base the
2156 decision purely on SHF_ALLOC, because that flag is sometimes
2157 set in a relocatable object file, which would confuse the
2159 if ((hdr->sh_flags & SHF_ALLOC) != 0
2160 && (abfd->flags & DYNAMIC) != 0
2161 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2165 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2166 can't read symbols without that section loaded as well. It
2167 is most likely specified by the next section header. */
2169 elf_section_list * entry;
2170 unsigned int i, num_sec;
2172 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2173 if (entry->hdr.sh_link == shindex)
2176 num_sec = elf_numsections (abfd);
2177 for (i = shindex + 1; i < num_sec; i++)
2179 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2181 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2182 && hdr2->sh_link == shindex)
2187 for (i = 1; i < shindex; i++)
2189 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2191 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2192 && hdr2->sh_link == shindex)
2197 ret = bfd_section_from_shdr (abfd, i);
2198 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2202 case SHT_DYNSYM: /* A dynamic symbol table. */
2203 if (elf_dynsymtab (abfd) == shindex)
2206 if (hdr->sh_entsize != bed->s->sizeof_sym)
2209 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2211 if (hdr->sh_size != 0)
2214 /* Some linkers erroneously set sh_info to one with a
2215 zero sh_size. ld sees this as a global symbol count
2216 of (unsigned) -1. Fix it here. */
2221 /* PR 18854: A binary might contain more than one dynamic symbol table.
2222 Unusual, but possible. Warn, but continue. */
2223 if (elf_dynsymtab (abfd) != 0)
2226 /* xgettext:c-format */
2227 (_("%pB: warning: multiple dynamic symbol tables detected"
2228 " - ignoring the table in section %u"),
2232 elf_dynsymtab (abfd) = shindex;
2233 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2234 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2235 abfd->flags |= HAS_SYMS;
2237 /* Besides being a symbol table, we also treat this as a regular
2238 section, so that objcopy can handle it. */
2239 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2242 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
2244 elf_section_list * entry;
2246 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2247 if (entry->ndx == shindex)
2250 entry = bfd_alloc (abfd, sizeof * entry);
2253 entry->ndx = shindex;
2255 entry->next = elf_symtab_shndx_list (abfd);
2256 elf_symtab_shndx_list (abfd) = entry;
2257 elf_elfsections (abfd)[shindex] = & entry->hdr;
2261 case SHT_STRTAB: /* A string table. */
2262 if (hdr->bfd_section != NULL)
2265 if (ehdr->e_shstrndx == shindex)
2267 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2268 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
2272 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2275 elf_tdata (abfd)->strtab_hdr = *hdr;
2276 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
2280 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2283 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2284 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2285 elf_elfsections (abfd)[shindex] = hdr;
2286 /* We also treat this as a regular section, so that objcopy
2288 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2293 /* If the string table isn't one of the above, then treat it as a
2294 regular section. We need to scan all the headers to be sure,
2295 just in case this strtab section appeared before the above. */
2296 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2298 unsigned int i, num_sec;
2300 num_sec = elf_numsections (abfd);
2301 for (i = 1; i < num_sec; i++)
2303 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2304 if (hdr2->sh_link == shindex)
2306 /* Prevent endless recursion on broken objects. */
2309 if (! bfd_section_from_shdr (abfd, i))
2311 if (elf_onesymtab (abfd) == i)
2313 if (elf_dynsymtab (abfd) == i)
2314 goto dynsymtab_strtab;
2318 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2323 /* *These* do a lot of work -- but build no sections! */
2325 asection *target_sect;
2326 Elf_Internal_Shdr *hdr2, **p_hdr;
2327 unsigned int num_sec = elf_numsections (abfd);
2328 struct bfd_elf_section_data *esdt;
2331 != (bfd_size_type) (hdr->sh_type == SHT_REL
2332 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
2335 /* Check for a bogus link to avoid crashing. */
2336 if (hdr->sh_link >= num_sec)
2339 /* xgettext:c-format */
2340 (_("%pB: invalid link %u for reloc section %s (index %u)"),
2341 abfd, hdr->sh_link, name, shindex);
2342 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2347 /* For some incomprehensible reason Oracle distributes
2348 libraries for Solaris in which some of the objects have
2349 bogus sh_link fields. It would be nice if we could just
2350 reject them, but, unfortunately, some people need to use
2351 them. We scan through the section headers; if we find only
2352 one suitable symbol table, we clobber the sh_link to point
2353 to it. I hope this doesn't break anything.
2355 Don't do it on executable nor shared library. */
2356 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2357 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
2358 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2364 for (scan = 1; scan < num_sec; scan++)
2366 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2367 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2378 hdr->sh_link = found;
2381 /* Get the symbol table. */
2382 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2383 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
2384 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
2387 /* If this reloc section does not use the main symbol table we
2388 don't treat it as a reloc section. BFD can't adequately
2389 represent such a section, so at least for now, we don't
2390 try. We just present it as a normal section. We also
2391 can't use it as a reloc section if it points to the null
2392 section, an invalid section, another reloc section, or its
2393 sh_link points to the null section. */
2394 if (hdr->sh_link != elf_onesymtab (abfd)
2395 || hdr->sh_link == SHN_UNDEF
2396 || hdr->sh_info == SHN_UNDEF
2397 || hdr->sh_info >= num_sec
2398 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2399 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
2401 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2406 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
2409 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2410 if (target_sect == NULL)
2413 esdt = elf_section_data (target_sect);
2414 if (hdr->sh_type == SHT_RELA)
2415 p_hdr = &esdt->rela.hdr;
2417 p_hdr = &esdt->rel.hdr;
2419 /* PR 17512: file: 0b4f81b7. */
2422 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
2427 elf_elfsections (abfd)[shindex] = hdr2;
2428 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2429 * bed->s->int_rels_per_ext_rel);
2430 target_sect->flags |= SEC_RELOC;
2431 target_sect->relocation = NULL;
2432 target_sect->rel_filepos = hdr->sh_offset;
2433 /* In the section to which the relocations apply, mark whether
2434 its relocations are of the REL or RELA variety. */
2435 if (hdr->sh_size != 0)
2437 if (hdr->sh_type == SHT_RELA)
2438 target_sect->use_rela_p = 1;
2440 abfd->flags |= HAS_RELOC;
2444 case SHT_GNU_verdef:
2445 elf_dynverdef (abfd) = shindex;
2446 elf_tdata (abfd)->dynverdef_hdr = *hdr;
2447 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2450 case SHT_GNU_versym:
2451 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
2454 elf_dynversym (abfd) = shindex;
2455 elf_tdata (abfd)->dynversym_hdr = *hdr;
2456 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2459 case SHT_GNU_verneed:
2460 elf_dynverref (abfd) = shindex;
2461 elf_tdata (abfd)->dynverref_hdr = *hdr;
2462 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2469 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
2472 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2478 /* Possibly an attributes section. */
2479 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2480 || hdr->sh_type == bed->obj_attrs_section_type)
2482 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2484 _bfd_elf_parse_attributes (abfd, hdr);
2488 /* Check for any processor-specific section types. */
2489 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
2492 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2494 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2495 /* FIXME: How to properly handle allocated section reserved
2496 for applications? */
2498 /* xgettext:c-format */
2499 (_("%pB: unknown type [%#x] section `%s'"),
2500 abfd, hdr->sh_type, name);
2503 /* Allow sections reserved for applications. */
2504 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2509 else if (hdr->sh_type >= SHT_LOPROC
2510 && hdr->sh_type <= SHT_HIPROC)
2511 /* FIXME: We should handle this section. */
2513 /* xgettext:c-format */
2514 (_("%pB: unknown type [%#x] section `%s'"),
2515 abfd, hdr->sh_type, name);
2516 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
2518 /* Unrecognised OS-specific sections. */
2519 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2520 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2521 required to correctly process the section and the file should
2522 be rejected with an error message. */
2524 /* xgettext:c-format */
2525 (_("%pB: unknown type [%#x] section `%s'"),
2526 abfd, hdr->sh_type, name);
2529 /* Otherwise it should be processed. */
2530 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2535 /* FIXME: We should handle this section. */
2537 /* xgettext:c-format */
2538 (_("%pB: unknown type [%#x] section `%s'"),
2539 abfd, hdr->sh_type, name);
2547 if (sections_being_created && sections_being_created_abfd == abfd)
2548 sections_being_created [shindex] = FALSE;
2549 if (-- nesting == 0)
2551 sections_being_created = NULL;
2552 sections_being_created_abfd = abfd;
2557 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2560 bfd_sym_from_r_symndx (struct sym_cache *cache,
2562 unsigned long r_symndx)
2564 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2566 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2568 Elf_Internal_Shdr *symtab_hdr;
2569 unsigned char esym[sizeof (Elf64_External_Sym)];
2570 Elf_External_Sym_Shndx eshndx;
2572 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2573 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
2574 &cache->sym[ent], esym, &eshndx) == NULL)
2577 if (cache->abfd != abfd)
2579 memset (cache->indx, -1, sizeof (cache->indx));
2582 cache->indx[ent] = r_symndx;
2585 return &cache->sym[ent];
2588 /* Given an ELF section number, retrieve the corresponding BFD
2592 bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
2594 if (sec_index >= elf_numsections (abfd))
2596 return elf_elfsections (abfd)[sec_index]->bfd_section;
2599 static const struct bfd_elf_special_section special_sections_b[] =
2601 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2602 { NULL, 0, 0, 0, 0 }
2605 static const struct bfd_elf_special_section special_sections_c[] =
2607 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
2608 { NULL, 0, 0, 0, 0 }
2611 static const struct bfd_elf_special_section special_sections_d[] =
2613 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2614 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2615 /* There are more DWARF sections than these, but they needn't be added here
2616 unless you have to cope with broken compilers that don't emit section
2617 attributes or you want to help the user writing assembler. */
2618 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2619 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2620 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2621 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
2622 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
2623 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2624 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2625 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2626 { NULL, 0, 0, 0, 0 }
2629 static const struct bfd_elf_special_section special_sections_f[] =
2631 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2632 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2633 { NULL, 0 , 0, 0, 0 }
2636 static const struct bfd_elf_special_section special_sections_g[] =
2638 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2639 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2640 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2641 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
2642 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2643 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
2644 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2645 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2646 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2647 { NULL, 0, 0, 0, 0 }
2650 static const struct bfd_elf_special_section special_sections_h[] =
2652 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2653 { NULL, 0, 0, 0, 0 }
2656 static const struct bfd_elf_special_section special_sections_i[] =
2658 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2659 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2660 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2661 { NULL, 0, 0, 0, 0 }
2664 static const struct bfd_elf_special_section special_sections_l[] =
2666 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
2667 { NULL, 0, 0, 0, 0 }
2670 static const struct bfd_elf_special_section special_sections_n[] =
2672 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
2673 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2674 { NULL, 0, 0, 0, 0 }
2677 static const struct bfd_elf_special_section special_sections_p[] =
2679 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2680 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2681 { NULL, 0, 0, 0, 0 }
2684 static const struct bfd_elf_special_section special_sections_r[] =
2686 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2687 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
2688 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2689 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2690 { NULL, 0, 0, 0, 0 }
2693 static const struct bfd_elf_special_section special_sections_s[] =
2695 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2696 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2697 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
2698 /* See struct bfd_elf_special_section declaration for the semantics of
2699 this special case where .prefix_length != strlen (.prefix). */
2700 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2701 { NULL, 0, 0, 0, 0 }
2704 static const struct bfd_elf_special_section special_sections_t[] =
2706 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2707 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2708 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2709 { NULL, 0, 0, 0, 0 }
2712 static const struct bfd_elf_special_section special_sections_z[] =
2714 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2715 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
2716 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2717 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
2718 { NULL, 0, 0, 0, 0 }
2721 static const struct bfd_elf_special_section * const special_sections[] =
2723 special_sections_b, /* 'b' */
2724 special_sections_c, /* 'c' */
2725 special_sections_d, /* 'd' */
2727 special_sections_f, /* 'f' */
2728 special_sections_g, /* 'g' */
2729 special_sections_h, /* 'h' */
2730 special_sections_i, /* 'i' */
2733 special_sections_l, /* 'l' */
2735 special_sections_n, /* 'n' */
2737 special_sections_p, /* 'p' */
2739 special_sections_r, /* 'r' */
2740 special_sections_s, /* 's' */
2741 special_sections_t, /* 't' */
2747 special_sections_z /* 'z' */
2750 const struct bfd_elf_special_section *
2751 _bfd_elf_get_special_section (const char *name,
2752 const struct bfd_elf_special_section *spec,
2758 len = strlen (name);
2760 for (i = 0; spec[i].prefix != NULL; i++)
2763 int prefix_len = spec[i].prefix_length;
2765 if (len < prefix_len)
2767 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
2770 suffix_len = spec[i].suffix_length;
2771 if (suffix_len <= 0)
2773 if (name[prefix_len] != 0)
2775 if (suffix_len == 0)
2777 if (name[prefix_len] != '.'
2778 && (suffix_len == -2
2779 || (rela && spec[i].type == SHT_REL)))
2785 if (len < prefix_len + suffix_len)
2787 if (memcmp (name + len - suffix_len,
2788 spec[i].prefix + prefix_len,
2798 const struct bfd_elf_special_section *
2799 _bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2802 const struct bfd_elf_special_section *spec;
2803 const struct elf_backend_data *bed;
2805 /* See if this is one of the special sections. */
2806 if (sec->name == NULL)
2809 bed = get_elf_backend_data (abfd);
2810 spec = bed->special_sections;
2813 spec = _bfd_elf_get_special_section (sec->name,
2814 bed->special_sections,
2820 if (sec->name[0] != '.')
2823 i = sec->name[1] - 'b';
2824 if (i < 0 || i > 'z' - 'b')
2827 spec = special_sections[i];
2832 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2836 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2838 struct bfd_elf_section_data *sdata;
2839 const struct elf_backend_data *bed;
2840 const struct bfd_elf_special_section *ssect;
2842 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2845 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
2849 sec->used_by_bfd = sdata;
2852 /* Indicate whether or not this section should use RELA relocations. */
2853 bed = get_elf_backend_data (abfd);
2854 sec->use_rela_p = bed->default_use_rela_p;
2856 /* When we read a file, we don't need to set ELF section type and
2857 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2858 anyway. We will set ELF section type and flags for all linker
2859 created sections. If user specifies BFD section flags, we will
2860 set ELF section type and flags based on BFD section flags in
2861 elf_fake_sections. Special handling for .init_array/.fini_array
2862 output sections since they may contain .ctors/.dtors input
2863 sections. We don't want _bfd_elf_init_private_section_data to
2864 copy ELF section type from .ctors/.dtors input sections. */
2865 if (abfd->direction != read_direction
2866 || (sec->flags & SEC_LINKER_CREATED) != 0)
2868 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2871 || (sec->flags & SEC_LINKER_CREATED) != 0
2872 || ssect->type == SHT_INIT_ARRAY
2873 || ssect->type == SHT_FINI_ARRAY))
2875 elf_section_type (sec) = ssect->type;
2876 elf_section_flags (sec) = ssect->attr;
2880 return _bfd_generic_new_section_hook (abfd, sec);
2883 /* Create a new bfd section from an ELF program header.
2885 Since program segments have no names, we generate a synthetic name
2886 of the form segment<NUM>, where NUM is generally the index in the
2887 program header table. For segments that are split (see below) we
2888 generate the names segment<NUM>a and segment<NUM>b.
2890 Note that some program segments may have a file size that is different than
2891 (less than) the memory size. All this means is that at execution the
2892 system must allocate the amount of memory specified by the memory size,
2893 but only initialize it with the first "file size" bytes read from the
2894 file. This would occur for example, with program segments consisting
2895 of combined data+bss.
2897 To handle the above situation, this routine generates TWO bfd sections
2898 for the single program segment. The first has the length specified by
2899 the file size of the segment, and the second has the length specified
2900 by the difference between the two sizes. In effect, the segment is split
2901 into its initialized and uninitialized parts.
2906 _bfd_elf_make_section_from_phdr (bfd *abfd,
2907 Elf_Internal_Phdr *hdr,
2909 const char *type_name)
2917 split = ((hdr->p_memsz > 0)
2918 && (hdr->p_filesz > 0)
2919 && (hdr->p_memsz > hdr->p_filesz));
2921 if (hdr->p_filesz > 0)
2923 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
2924 len = strlen (namebuf) + 1;
2925 name = (char *) bfd_alloc (abfd, len);
2928 memcpy (name, namebuf, len);
2929 newsect = bfd_make_section (abfd, name);
2930 if (newsect == NULL)
2932 newsect->vma = hdr->p_vaddr;
2933 newsect->lma = hdr->p_paddr;
2934 newsect->size = hdr->p_filesz;
2935 newsect->filepos = hdr->p_offset;
2936 newsect->flags |= SEC_HAS_CONTENTS;
2937 newsect->alignment_power = bfd_log2 (hdr->p_align);
2938 if (hdr->p_type == PT_LOAD)
2940 newsect->flags |= SEC_ALLOC;
2941 newsect->flags |= SEC_LOAD;
2942 if (hdr->p_flags & PF_X)
2944 /* FIXME: all we known is that it has execute PERMISSION,
2946 newsect->flags |= SEC_CODE;
2949 if (!(hdr->p_flags & PF_W))
2951 newsect->flags |= SEC_READONLY;
2955 if (hdr->p_memsz > hdr->p_filesz)
2959 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
2960 len = strlen (namebuf) + 1;
2961 name = (char *) bfd_alloc (abfd, len);
2964 memcpy (name, namebuf, len);
2965 newsect = bfd_make_section (abfd, name);
2966 if (newsect == NULL)
2968 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
2969 newsect->lma = hdr->p_paddr + hdr->p_filesz;
2970 newsect->size = hdr->p_memsz - hdr->p_filesz;
2971 newsect->filepos = hdr->p_offset + hdr->p_filesz;
2972 align = newsect->vma & -newsect->vma;
2973 if (align == 0 || align > hdr->p_align)
2974 align = hdr->p_align;
2975 newsect->alignment_power = bfd_log2 (align);
2976 if (hdr->p_type == PT_LOAD)
2978 /* Hack for gdb. Segments that have not been modified do
2979 not have their contents written to a core file, on the
2980 assumption that a debugger can find the contents in the
2981 executable. We flag this case by setting the fake
2982 section size to zero. Note that "real" bss sections will
2983 always have their contents dumped to the core file. */
2984 if (bfd_get_format (abfd) == bfd_core)
2986 newsect->flags |= SEC_ALLOC;
2987 if (hdr->p_flags & PF_X)
2988 newsect->flags |= SEC_CODE;
2990 if (!(hdr->p_flags & PF_W))
2991 newsect->flags |= SEC_READONLY;
2998 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
3000 const struct elf_backend_data *bed;
3002 switch (hdr->p_type)
3005 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
3008 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load");
3011 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
3014 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
3017 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
3019 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3025 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
3028 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
3030 case PT_GNU_EH_FRAME:
3031 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
3035 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
3038 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
3041 /* Check for any processor-specific program segment types. */
3042 bed = get_elf_backend_data (abfd);
3043 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
3047 /* Return the REL_HDR for SEC, assuming there is only a single one, either
3051 _bfd_elf_single_rel_hdr (asection *sec)
3053 if (elf_section_data (sec)->rel.hdr)
3055 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3056 return elf_section_data (sec)->rel.hdr;
3059 return elf_section_data (sec)->rela.hdr;
3063 _bfd_elf_set_reloc_sh_name (bfd *abfd,
3064 Elf_Internal_Shdr *rel_hdr,
3065 const char *sec_name,
3066 bfd_boolean use_rela_p)
3068 char *name = (char *) bfd_alloc (abfd,
3069 sizeof ".rela" + strlen (sec_name));
3073 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3075 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3077 if (rel_hdr->sh_name == (unsigned int) -1)
3083 /* Allocate and initialize a section-header for a new reloc section,
3084 containing relocations against ASECT. It is stored in RELDATA. If
3085 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3089 _bfd_elf_init_reloc_shdr (bfd *abfd,
3090 struct bfd_elf_section_reloc_data *reldata,
3091 const char *sec_name,
3092 bfd_boolean use_rela_p,
3093 bfd_boolean delay_st_name_p)
3095 Elf_Internal_Shdr *rel_hdr;
3096 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3098 BFD_ASSERT (reldata->hdr == NULL);
3099 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
3100 reldata->hdr = rel_hdr;
3102 if (delay_st_name_p)
3103 rel_hdr->sh_name = (unsigned int) -1;
3104 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3107 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3108 rel_hdr->sh_entsize = (use_rela_p
3109 ? bed->s->sizeof_rela
3110 : bed->s->sizeof_rel);
3111 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
3112 rel_hdr->sh_flags = 0;
3113 rel_hdr->sh_addr = 0;
3114 rel_hdr->sh_size = 0;
3115 rel_hdr->sh_offset = 0;
3120 /* Return the default section type based on the passed in section flags. */
3123 bfd_elf_get_default_section_type (flagword flags)
3125 if ((flags & SEC_ALLOC) != 0
3126 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3128 return SHT_PROGBITS;
3131 struct fake_section_arg
3133 struct bfd_link_info *link_info;
3137 /* Set up an ELF internal section header for a section. */
3140 elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
3142 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
3143 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3144 struct bfd_elf_section_data *esd = elf_section_data (asect);
3145 Elf_Internal_Shdr *this_hdr;
3146 unsigned int sh_type;
3147 const char *name = asect->name;
3148 bfd_boolean delay_st_name_p = FALSE;
3152 /* We already failed; just get out of the bfd_map_over_sections
3157 this_hdr = &esd->this_hdr;
3161 /* ld: compress DWARF debug sections with names: .debug_*. */
3162 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3163 && (asect->flags & SEC_DEBUGGING)
3167 /* Set SEC_ELF_COMPRESS to indicate this section should be
3169 asect->flags |= SEC_ELF_COMPRESS;
3171 /* If this section will be compressed, delay adding section
3172 name to section name section after it is compressed in
3173 _bfd_elf_assign_file_positions_for_non_load. */
3174 delay_st_name_p = TRUE;
3177 else if ((asect->flags & SEC_ELF_RENAME))
3179 /* objcopy: rename output DWARF debug section. */
3180 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3182 /* When we decompress or compress with SHF_COMPRESSED,
3183 convert section name from .zdebug_* to .debug_* if
3187 char *new_name = convert_zdebug_to_debug (abfd, name);
3188 if (new_name == NULL)
3196 else if (asect->compress_status == COMPRESS_SECTION_DONE)
3198 /* PR binutils/18087: Compression does not always make a
3199 section smaller. So only rename the section when
3200 compression has actually taken place. If input section
3201 name is .zdebug_*, we should never compress it again. */
3202 char *new_name = convert_debug_to_zdebug (abfd, name);
3203 if (new_name == NULL)
3208 BFD_ASSERT (name[1] != 'z');
3213 if (delay_st_name_p)
3214 this_hdr->sh_name = (unsigned int) -1;
3218 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3220 if (this_hdr->sh_name == (unsigned int) -1)
3227 /* Don't clear sh_flags. Assembler may set additional bits. */
3229 if ((asect->flags & SEC_ALLOC) != 0
3230 || asect->user_set_vma)
3231 this_hdr->sh_addr = asect->vma;
3233 this_hdr->sh_addr = 0;
3235 this_hdr->sh_offset = 0;
3236 this_hdr->sh_size = asect->size;
3237 this_hdr->sh_link = 0;
3238 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3239 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3242 /* xgettext:c-format */
3243 (_("%pB: error: alignment power %d of section `%pA' is too big"),
3244 abfd, asect->alignment_power, asect);
3248 this_hdr->sh_addralign = (bfd_vma) 1 << asect->alignment_power;
3249 /* The sh_entsize and sh_info fields may have been set already by
3250 copy_private_section_data. */
3252 this_hdr->bfd_section = asect;
3253 this_hdr->contents = NULL;
3255 /* If the section type is unspecified, we set it based on
3257 if ((asect->flags & SEC_GROUP) != 0)
3258 sh_type = SHT_GROUP;
3260 sh_type = bfd_elf_get_default_section_type (asect->flags);
3262 if (this_hdr->sh_type == SHT_NULL)
3263 this_hdr->sh_type = sh_type;
3264 else if (this_hdr->sh_type == SHT_NOBITS
3265 && sh_type == SHT_PROGBITS
3266 && (asect->flags & SEC_ALLOC) != 0)
3268 /* Warn if we are changing a NOBITS section to PROGBITS, but
3269 allow the link to proceed. This can happen when users link
3270 non-bss input sections to bss output sections, or emit data
3271 to a bss output section via a linker script. */
3273 (_("warning: section `%pA' type changed to PROGBITS"), asect);
3274 this_hdr->sh_type = sh_type;
3277 switch (this_hdr->sh_type)
3288 case SHT_INIT_ARRAY:
3289 case SHT_FINI_ARRAY:
3290 case SHT_PREINIT_ARRAY:
3291 this_hdr->sh_entsize = bed->s->arch_size / 8;
3295 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
3299 this_hdr->sh_entsize = bed->s->sizeof_sym;
3303 this_hdr->sh_entsize = bed->s->sizeof_dyn;
3307 if (get_elf_backend_data (abfd)->may_use_rela_p)
3308 this_hdr->sh_entsize = bed->s->sizeof_rela;
3312 if (get_elf_backend_data (abfd)->may_use_rel_p)
3313 this_hdr->sh_entsize = bed->s->sizeof_rel;
3316 case SHT_GNU_versym:
3317 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
3320 case SHT_GNU_verdef:
3321 this_hdr->sh_entsize = 0;
3322 /* objcopy or strip will copy over sh_info, but may not set
3323 cverdefs. The linker will set cverdefs, but sh_info will be
3325 if (this_hdr->sh_info == 0)
3326 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3328 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3329 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
3332 case SHT_GNU_verneed:
3333 this_hdr->sh_entsize = 0;
3334 /* objcopy or strip will copy over sh_info, but may not set
3335 cverrefs. The linker will set cverrefs, but sh_info will be
3337 if (this_hdr->sh_info == 0)
3338 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3340 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3341 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
3345 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
3349 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3353 if ((asect->flags & SEC_ALLOC) != 0)
3354 this_hdr->sh_flags |= SHF_ALLOC;
3355 if ((asect->flags & SEC_READONLY) == 0)
3356 this_hdr->sh_flags |= SHF_WRITE;
3357 if ((asect->flags & SEC_CODE) != 0)
3358 this_hdr->sh_flags |= SHF_EXECINSTR;
3359 if ((asect->flags & SEC_MERGE) != 0)
3361 this_hdr->sh_flags |= SHF_MERGE;
3362 this_hdr->sh_entsize = asect->entsize;
3364 if ((asect->flags & SEC_STRINGS) != 0)
3365 this_hdr->sh_flags |= SHF_STRINGS;
3366 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
3367 this_hdr->sh_flags |= SHF_GROUP;
3368 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
3370 this_hdr->sh_flags |= SHF_TLS;
3371 if (asect->size == 0
3372 && (asect->flags & SEC_HAS_CONTENTS) == 0)
3374 struct bfd_link_order *o = asect->map_tail.link_order;
3376 this_hdr->sh_size = 0;
3379 this_hdr->sh_size = o->offset + o->size;
3380 if (this_hdr->sh_size != 0)
3381 this_hdr->sh_type = SHT_NOBITS;
3385 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3386 this_hdr->sh_flags |= SHF_EXCLUDE;
3388 /* If the section has relocs, set up a section header for the
3389 SHT_REL[A] section. If two relocation sections are required for
3390 this section, it is up to the processor-specific back-end to
3391 create the other. */
3392 if ((asect->flags & SEC_RELOC) != 0)
3394 /* When doing a relocatable link, create both REL and RELA sections if
3397 /* Do the normal setup if we wouldn't create any sections here. */
3398 && esd->rel.count + esd->rela.count > 0
3399 && (bfd_link_relocatable (arg->link_info)
3400 || arg->link_info->emitrelocations))
3402 if (esd->rel.count && esd->rel.hdr == NULL
3403 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
3404 FALSE, delay_st_name_p))
3409 if (esd->rela.count && esd->rela.hdr == NULL
3410 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
3411 TRUE, delay_st_name_p))
3417 else if (!_bfd_elf_init_reloc_shdr (abfd,
3419 ? &esd->rela : &esd->rel),
3429 /* Check for processor-specific section types. */
3430 sh_type = this_hdr->sh_type;
3431 if (bed->elf_backend_fake_sections
3432 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
3438 if (sh_type == SHT_NOBITS && asect->size != 0)
3440 /* Don't change the header type from NOBITS if we are being
3441 called for objcopy --only-keep-debug. */
3442 this_hdr->sh_type = sh_type;
3446 /* Fill in the contents of a SHT_GROUP section. Called from
3447 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3448 when ELF targets use the generic linker, ld. Called for ld -r
3449 from bfd_elf_final_link. */
3452 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
3454 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
3455 asection *elt, *first;
3459 /* Ignore linker created group section. See elfNN_ia64_object_p in
3461 if (((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP)
3465 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3467 unsigned long symindx = 0;
3469 /* elf_group_id will have been set up by objcopy and the
3471 if (elf_group_id (sec) != NULL)
3472 symindx = elf_group_id (sec)->udata.i;
3476 /* If called from the assembler, swap_out_syms will have set up
3477 elf_section_syms. */
3478 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3479 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3481 elf_section_data (sec)->this_hdr.sh_info = symindx;
3483 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
3485 /* The ELF backend linker sets sh_info to -2 when the group
3486 signature symbol is global, and thus the index can't be
3487 set until all local symbols are output. */
3489 struct bfd_elf_section_data *sec_data;
3490 unsigned long symndx;
3491 unsigned long extsymoff;
3492 struct elf_link_hash_entry *h;
3494 /* The point of this little dance to the first SHF_GROUP section
3495 then back to the SHT_GROUP section is that this gets us to
3496 the SHT_GROUP in the input object. */
3497 igroup = elf_sec_group (elf_next_in_group (sec));
3498 sec_data = elf_section_data (igroup);
3499 symndx = sec_data->this_hdr.sh_info;
3501 if (!elf_bad_symtab (igroup->owner))
3503 Elf_Internal_Shdr *symtab_hdr;
3505 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3506 extsymoff = symtab_hdr->sh_info;
3508 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3509 while (h->root.type == bfd_link_hash_indirect
3510 || h->root.type == bfd_link_hash_warning)
3511 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3513 elf_section_data (sec)->this_hdr.sh_info = h->indx;
3516 /* The contents won't be allocated for "ld -r" or objcopy. */
3518 if (sec->contents == NULL)
3521 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
3523 /* Arrange for the section to be written out. */
3524 elf_section_data (sec)->this_hdr.contents = sec->contents;
3525 if (sec->contents == NULL)
3532 loc = sec->contents + sec->size;
3534 /* Get the pointer to the first section in the group that gas
3535 squirreled away here. objcopy arranges for this to be set to the
3536 start of the input section group. */
3537 first = elt = elf_next_in_group (sec);
3539 /* First element is a flag word. Rest of section is elf section
3540 indices for all the sections of the group. Write them backwards
3541 just to keep the group in the same order as given in .section
3542 directives, not that it matters. */
3549 s = s->output_section;
3551 && !bfd_is_abs_section (s))
3553 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
3554 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3556 if (elf_sec->rel.hdr != NULL
3558 || (input_elf_sec->rel.hdr != NULL
3559 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
3561 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
3563 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3565 if (elf_sec->rela.hdr != NULL
3567 || (input_elf_sec->rela.hdr != NULL
3568 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
3570 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
3572 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3575 H_PUT_32 (abfd, elf_sec->this_idx, loc);
3577 elt = elf_next_in_group (elt);
3583 BFD_ASSERT (loc == sec->contents);
3585 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
3588 /* Given NAME, the name of a relocation section stripped of its
3589 .rel/.rela prefix, return the section in ABFD to which the
3590 relocations apply. */
3593 _bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3595 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3596 section likely apply to .got.plt or .got section. */
3597 if (get_elf_backend_data (abfd)->want_got_plt
3598 && strcmp (name, ".plt") == 0)
3603 sec = bfd_get_section_by_name (abfd, name);
3609 return bfd_get_section_by_name (abfd, name);
3612 /* Return the section to which RELOC_SEC applies. */
3615 elf_get_reloc_section (asection *reloc_sec)
3620 const struct elf_backend_data *bed;
3622 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3623 if (type != SHT_REL && type != SHT_RELA)
3626 /* We look up the section the relocs apply to by name. */
3627 name = reloc_sec->name;
3628 if (strncmp (name, ".rel", 4) != 0)
3631 if (type == SHT_RELA && *name++ != 'a')
3634 abfd = reloc_sec->owner;
3635 bed = get_elf_backend_data (abfd);
3636 return bed->get_reloc_section (abfd, name);
3639 /* Assign all ELF section numbers. The dummy first section is handled here
3640 too. The link/info pointers for the standard section types are filled
3641 in here too, while we're at it. */
3644 assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
3646 struct elf_obj_tdata *t = elf_tdata (abfd);
3648 unsigned int section_number;
3649 Elf_Internal_Shdr **i_shdrp;
3650 struct bfd_elf_section_data *d;
3651 bfd_boolean need_symtab;
3655 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3657 /* SHT_GROUP sections are in relocatable files only. */
3658 if (link_info == NULL || !link_info->resolve_section_groups)
3660 size_t reloc_count = 0;
3662 /* Put SHT_GROUP sections first. */
3663 for (sec = abfd->sections; sec != NULL; sec = sec->next)
3665 d = elf_section_data (sec);
3667 if (d->this_hdr.sh_type == SHT_GROUP)
3669 if (sec->flags & SEC_LINKER_CREATED)
3671 /* Remove the linker created SHT_GROUP sections. */
3672 bfd_section_list_remove (abfd, sec);
3673 abfd->section_count--;
3676 d->this_idx = section_number++;
3679 /* Count relocations. */
3680 reloc_count += sec->reloc_count;
3683 /* Clear HAS_RELOC if there are no relocations. */
3684 if (reloc_count == 0)
3685 abfd->flags &= ~HAS_RELOC;
3688 for (sec = abfd->sections; sec; sec = sec->next)
3690 d = elf_section_data (sec);
3692 if (d->this_hdr.sh_type != SHT_GROUP)
3693 d->this_idx = section_number++;
3694 if (d->this_hdr.sh_name != (unsigned int) -1)
3695 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
3698 d->rel.idx = section_number++;
3699 if (d->rel.hdr->sh_name != (unsigned int) -1)
3700 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
3707 d->rela.idx = section_number++;
3708 if (d->rela.hdr->sh_name != (unsigned int) -1)
3709 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
3715 need_symtab = (bfd_get_symcount (abfd) > 0
3716 || (link_info == NULL
3717 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3721 elf_onesymtab (abfd) = section_number++;
3722 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
3723 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
3725 elf_section_list * entry;
3727 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3729 entry = bfd_zalloc (abfd, sizeof * entry);
3730 entry->ndx = section_number++;
3731 elf_symtab_shndx_list (abfd) = entry;
3733 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3734 ".symtab_shndx", FALSE);
3735 if (entry->hdr.sh_name == (unsigned int) -1)
3738 elf_strtab_sec (abfd) = section_number++;
3739 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
3742 elf_shstrtab_sec (abfd) = section_number++;
3743 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3744 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3746 if (section_number >= SHN_LORESERVE)
3748 /* xgettext:c-format */
3749 _bfd_error_handler (_("%pB: too many sections: %u"),
3750 abfd, section_number);
3754 elf_numsections (abfd) = section_number;
3755 elf_elfheader (abfd)->e_shnum = section_number;
3757 /* Set up the list of section header pointers, in agreement with the
3759 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc2 (abfd, section_number,
3760 sizeof (Elf_Internal_Shdr *));
3761 if (i_shdrp == NULL)
3764 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
3765 sizeof (Elf_Internal_Shdr));
3766 if (i_shdrp[0] == NULL)
3768 bfd_release (abfd, i_shdrp);
3772 elf_elfsections (abfd) = i_shdrp;
3774 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3777 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
3778 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
3780 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3781 BFD_ASSERT (entry != NULL);
3782 i_shdrp[entry->ndx] = & entry->hdr;
3783 entry->hdr.sh_link = elf_onesymtab (abfd);
3785 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3786 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
3789 for (sec = abfd->sections; sec; sec = sec->next)
3793 d = elf_section_data (sec);
3795 i_shdrp[d->this_idx] = &d->this_hdr;
3796 if (d->rel.idx != 0)
3797 i_shdrp[d->rel.idx] = d->rel.hdr;
3798 if (d->rela.idx != 0)
3799 i_shdrp[d->rela.idx] = d->rela.hdr;
3801 /* Fill in the sh_link and sh_info fields while we're at it. */
3803 /* sh_link of a reloc section is the section index of the symbol
3804 table. sh_info is the section index of the section to which
3805 the relocation entries apply. */
3806 if (d->rel.idx != 0)
3808 d->rel.hdr->sh_link = elf_onesymtab (abfd);
3809 d->rel.hdr->sh_info = d->this_idx;
3810 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
3812 if (d->rela.idx != 0)
3814 d->rela.hdr->sh_link = elf_onesymtab (abfd);
3815 d->rela.hdr->sh_info = d->this_idx;
3816 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
3819 /* We need to set up sh_link for SHF_LINK_ORDER. */
3820 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3822 s = elf_linked_to_section (sec);
3825 /* elf_linked_to_section points to the input section. */
3826 if (link_info != NULL)
3828 /* Check discarded linkonce section. */
3829 if (discarded_section (s))
3833 /* xgettext:c-format */
3834 (_("%pB: sh_link of section `%pA' points to"
3835 " discarded section `%pA' of `%pB'"),
3836 abfd, d->this_hdr.bfd_section,
3838 /* Point to the kept section if it has the same
3839 size as the discarded one. */
3840 kept = _bfd_elf_check_kept_section (s, link_info);
3843 bfd_set_error (bfd_error_bad_value);
3849 s = s->output_section;
3850 BFD_ASSERT (s != NULL);
3854 /* Handle objcopy. */
3855 if (s->output_section == NULL)
3858 /* xgettext:c-format */
3859 (_("%pB: sh_link of section `%pA' points to"
3860 " removed section `%pA' of `%pB'"),
3861 abfd, d->this_hdr.bfd_section, s, s->owner);
3862 bfd_set_error (bfd_error_bad_value);
3865 s = s->output_section;
3867 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3872 The Intel C compiler generates SHT_IA_64_UNWIND with
3873 SHF_LINK_ORDER. But it doesn't set the sh_link or
3874 sh_info fields. Hence we could get the situation
3876 const struct elf_backend_data *bed
3877 = get_elf_backend_data (abfd);
3878 if (bed->link_order_error_handler)
3879 bed->link_order_error_handler
3880 /* xgettext:c-format */
3881 (_("%pB: warning: sh_link not set for section `%pA'"),
3886 switch (d->this_hdr.sh_type)
3890 /* A reloc section which we are treating as a normal BFD
3891 section. sh_link is the section index of the symbol
3892 table. sh_info is the section index of the section to
3893 which the relocation entries apply. We assume that an
3894 allocated reloc section uses the dynamic symbol table.
3895 FIXME: How can we be sure? */
3896 s = bfd_get_section_by_name (abfd, ".dynsym");
3898 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3900 s = elf_get_reloc_section (sec);
3903 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3904 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3909 /* We assume that a section named .stab*str is a stabs
3910 string section. We look for a section with the same name
3911 but without the trailing ``str'', and set its sh_link
3912 field to point to this section. */
3913 if (CONST_STRNEQ (sec->name, ".stab")
3914 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3919 len = strlen (sec->name);
3920 alc = (char *) bfd_malloc (len - 2);
3923 memcpy (alc, sec->name, len - 3);
3924 alc[len - 3] = '\0';
3925 s = bfd_get_section_by_name (abfd, alc);
3929 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3931 /* This is a .stab section. */
3932 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
3933 elf_section_data (s)->this_hdr.sh_entsize
3934 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
3941 case SHT_GNU_verneed:
3942 case SHT_GNU_verdef:
3943 /* sh_link is the section header index of the string table
3944 used for the dynamic entries, or the symbol table, or the
3946 s = bfd_get_section_by_name (abfd, ".dynstr");
3948 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3951 case SHT_GNU_LIBLIST:
3952 /* sh_link is the section header index of the prelink library
3953 list used for the dynamic entries, or the symbol table, or
3954 the version strings. */
3955 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
3956 ? ".dynstr" : ".gnu.libstr");
3958 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3963 case SHT_GNU_versym:
3964 /* sh_link is the section header index of the symbol table
3965 this hash table or version table is for. */
3966 s = bfd_get_section_by_name (abfd, ".dynsym");
3968 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3972 d->this_hdr.sh_link = elf_onesymtab (abfd);
3976 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
3977 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
3978 debug section name from .debug_* to .zdebug_* if needed. */
3984 sym_is_global (bfd *abfd, asymbol *sym)
3986 /* If the backend has a special mapping, use it. */
3987 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3988 if (bed->elf_backend_sym_is_global)
3989 return (*bed->elf_backend_sym_is_global) (abfd, sym);
3991 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
3992 || bfd_is_und_section (bfd_get_section (sym))
3993 || bfd_is_com_section (bfd_get_section (sym)));
3996 /* Filter global symbols of ABFD to include in the import library. All
3997 SYMCOUNT symbols of ABFD can be examined from their pointers in
3998 SYMS. Pointers of symbols to keep should be stored contiguously at
3999 the beginning of that array.
4001 Returns the number of symbols to keep. */
4004 _bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4005 asymbol **syms, long symcount)
4007 long src_count, dst_count = 0;
4009 for (src_count = 0; src_count < symcount; src_count++)
4011 asymbol *sym = syms[src_count];
4012 char *name = (char *) bfd_asymbol_name (sym);
4013 struct bfd_link_hash_entry *h;
4015 if (!sym_is_global (abfd, sym))
4018 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
4021 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4023 if (h->linker_def || h->ldscript_def)
4026 syms[dst_count++] = sym;
4029 syms[dst_count] = NULL;
4034 /* Don't output section symbols for sections that are not going to be
4035 output, that are duplicates or there is no BFD section. */
4038 ignore_section_sym (bfd *abfd, asymbol *sym)
4040 elf_symbol_type *type_ptr;
4045 if ((sym->flags & BSF_SECTION_SYM) == 0)
4048 if (sym->section == NULL)
4051 type_ptr = elf_symbol_from (abfd, sym);
4052 return ((type_ptr != NULL
4053 && type_ptr->internal_elf_sym.st_shndx != 0
4054 && bfd_is_abs_section (sym->section))
4055 || !(sym->section->owner == abfd
4056 || (sym->section->output_section != NULL
4057 && sym->section->output_section->owner == abfd
4058 && sym->section->output_offset == 0)
4059 || bfd_is_abs_section (sym->section)));
4062 /* Map symbol from it's internal number to the external number, moving
4063 all local symbols to be at the head of the list. */
4066 elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
4068 unsigned int symcount = bfd_get_symcount (abfd);
4069 asymbol **syms = bfd_get_outsymbols (abfd);
4070 asymbol **sect_syms;
4071 unsigned int num_locals = 0;
4072 unsigned int num_globals = 0;
4073 unsigned int num_locals2 = 0;
4074 unsigned int num_globals2 = 0;
4075 unsigned int max_index = 0;
4081 fprintf (stderr, "elf_map_symbols\n");
4085 for (asect = abfd->sections; asect; asect = asect->next)
4087 if (max_index < asect->index)
4088 max_index = asect->index;
4092 sect_syms = (asymbol **) bfd_zalloc2 (abfd, max_index, sizeof (asymbol *));
4093 if (sect_syms == NULL)
4095 elf_section_syms (abfd) = sect_syms;
4096 elf_num_section_syms (abfd) = max_index;
4098 /* Init sect_syms entries for any section symbols we have already
4099 decided to output. */
4100 for (idx = 0; idx < symcount; idx++)
4102 asymbol *sym = syms[idx];
4104 if ((sym->flags & BSF_SECTION_SYM) != 0
4106 && !ignore_section_sym (abfd, sym)
4107 && !bfd_is_abs_section (sym->section))
4109 asection *sec = sym->section;
4111 if (sec->owner != abfd)
4112 sec = sec->output_section;
4114 sect_syms[sec->index] = syms[idx];
4118 /* Classify all of the symbols. */
4119 for (idx = 0; idx < symcount; idx++)
4121 if (sym_is_global (abfd, syms[idx]))
4123 else if (!ignore_section_sym (abfd, syms[idx]))
4127 /* We will be adding a section symbol for each normal BFD section. Most
4128 sections will already have a section symbol in outsymbols, but
4129 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4130 at least in that case. */
4131 for (asect = abfd->sections; asect; asect = asect->next)
4133 if (sect_syms[asect->index] == NULL)
4135 if (!sym_is_global (abfd, asect->symbol))
4142 /* Now sort the symbols so the local symbols are first. */
4143 new_syms = (asymbol **) bfd_alloc2 (abfd, num_locals + num_globals,
4144 sizeof (asymbol *));
4146 if (new_syms == NULL)
4149 for (idx = 0; idx < symcount; idx++)
4151 asymbol *sym = syms[idx];
4154 if (sym_is_global (abfd, sym))
4155 i = num_locals + num_globals2++;
4156 else if (!ignore_section_sym (abfd, sym))
4161 sym->udata.i = i + 1;
4163 for (asect = abfd->sections; asect; asect = asect->next)
4165 if (sect_syms[asect->index] == NULL)
4167 asymbol *sym = asect->symbol;
4170 sect_syms[asect->index] = sym;
4171 if (!sym_is_global (abfd, sym))
4174 i = num_locals + num_globals2++;
4176 sym->udata.i = i + 1;
4180 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4182 *pnum_locals = num_locals;
4186 /* Align to the maximum file alignment that could be required for any
4187 ELF data structure. */
4189 static inline file_ptr
4190 align_file_position (file_ptr off, int align)
4192 return (off + align - 1) & ~(align - 1);
4195 /* Assign a file position to a section, optionally aligning to the
4196 required section alignment. */
4199 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4203 if (align && i_shdrp->sh_addralign > 1)
4204 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
4205 i_shdrp->sh_offset = offset;
4206 if (i_shdrp->bfd_section != NULL)
4207 i_shdrp->bfd_section->filepos = offset;
4208 if (i_shdrp->sh_type != SHT_NOBITS)
4209 offset += i_shdrp->sh_size;
4213 /* Compute the file positions we are going to put the sections at, and
4214 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4215 is not NULL, this is being called by the ELF backend linker. */
4218 _bfd_elf_compute_section_file_positions (bfd *abfd,
4219 struct bfd_link_info *link_info)
4221 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4222 struct fake_section_arg fsargs;
4224 struct elf_strtab_hash *strtab = NULL;
4225 Elf_Internal_Shdr *shstrtab_hdr;
4226 bfd_boolean need_symtab;
4228 if (abfd->output_has_begun)
4231 /* Do any elf backend specific processing first. */
4232 if (bed->elf_backend_begin_write_processing)
4233 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4235 if (! prep_headers (abfd))
4238 /* Post process the headers if necessary. */
4239 (*bed->elf_backend_post_process_headers) (abfd, link_info);
4241 fsargs.failed = FALSE;
4242 fsargs.link_info = link_info;
4243 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4247 if (!assign_section_numbers (abfd, link_info))
4250 /* The backend linker builds symbol table information itself. */
4251 need_symtab = (link_info == NULL
4252 && (bfd_get_symcount (abfd) > 0
4253 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4257 /* Non-zero if doing a relocatable link. */
4258 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4260 if (! swap_out_syms (abfd, &strtab, relocatable_p))
4265 if (link_info == NULL)
4267 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
4272 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
4273 /* sh_name was set in prep_headers. */
4274 shstrtab_hdr->sh_type = SHT_STRTAB;
4275 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
4276 shstrtab_hdr->sh_addr = 0;
4277 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4278 shstrtab_hdr->sh_entsize = 0;
4279 shstrtab_hdr->sh_link = 0;
4280 shstrtab_hdr->sh_info = 0;
4281 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4282 shstrtab_hdr->sh_addralign = 1;
4284 if (!assign_file_positions_except_relocs (abfd, link_info))
4290 Elf_Internal_Shdr *hdr;
4292 off = elf_next_file_pos (abfd);
4294 hdr = & elf_symtab_hdr (abfd);
4295 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4297 if (elf_symtab_shndx_list (abfd) != NULL)
4299 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4300 if (hdr->sh_size != 0)
4301 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4302 /* FIXME: What about other symtab_shndx sections in the list ? */
4305 hdr = &elf_tdata (abfd)->strtab_hdr;
4306 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4308 elf_next_file_pos (abfd) = off;
4310 /* Now that we know where the .strtab section goes, write it
4312 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4313 || ! _bfd_elf_strtab_emit (abfd, strtab))
4315 _bfd_elf_strtab_free (strtab);
4318 abfd->output_has_begun = TRUE;
4323 /* Make an initial estimate of the size of the program header. If we
4324 get the number wrong here, we'll redo section placement. */
4326 static bfd_size_type
4327 get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4331 const struct elf_backend_data *bed;
4333 /* Assume we will need exactly two PT_LOAD segments: one for text
4334 and one for data. */
4337 s = bfd_get_section_by_name (abfd, ".interp");
4338 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
4340 /* If we have a loadable interpreter section, we need a
4341 PT_INTERP segment. In this case, assume we also need a
4342 PT_PHDR segment, although that may not be true for all
4347 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4349 /* We need a PT_DYNAMIC segment. */
4353 if (info != NULL && info->relro)
4355 /* We need a PT_GNU_RELRO segment. */
4359 if (elf_eh_frame_hdr (abfd))
4361 /* We need a PT_GNU_EH_FRAME segment. */
4365 if (elf_stack_flags (abfd))
4367 /* We need a PT_GNU_STACK segment. */
4371 for (s = abfd->sections; s != NULL; s = s->next)
4373 if ((s->flags & SEC_LOAD) != 0
4374 && elf_section_type (s) == SHT_NOTE)
4376 unsigned int alignment_power;
4377 /* We need a PT_NOTE segment. */
4379 /* Try to create just one PT_NOTE segment for all adjacent
4380 loadable SHT_NOTE sections. gABI requires that within a
4381 PT_NOTE segment (and also inside of each SHT_NOTE section)
4382 each note should have the same alignment. So we check
4383 whether the sections are correctly aligned. */
4384 alignment_power = s->alignment_power;
4385 while (s->next != NULL
4386 && s->next->alignment_power == alignment_power
4387 && (s->next->flags & SEC_LOAD) != 0
4388 && elf_section_type (s->next) == SHT_NOTE)
4393 for (s = abfd->sections; s != NULL; s = s->next)
4395 if (s->flags & SEC_THREAD_LOCAL)
4397 /* We need a PT_TLS segment. */
4403 bed = get_elf_backend_data (abfd);
4405 if ((abfd->flags & D_PAGED) != 0)
4407 /* Add a PT_GNU_MBIND segment for each mbind section. */
4408 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4409 for (s = abfd->sections; s != NULL; s = s->next)
4410 if (elf_section_flags (s) & SHF_GNU_MBIND)
4412 if (elf_section_data (s)->this_hdr.sh_info
4416 /* xgettext:c-format */
4417 (_("%pB: GNU_MBIN section `%pA' has invalid sh_info field: %d"),
4418 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4421 /* Align mbind section to page size. */
4422 if (s->alignment_power < page_align_power)
4423 s->alignment_power = page_align_power;
4428 /* Let the backend count up any program headers it might need. */
4429 if (bed->elf_backend_additional_program_headers)
4433 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4439 return segs * bed->s->sizeof_phdr;
4442 /* Find the segment that contains the output_section of section. */
4445 _bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4447 struct elf_segment_map *m;
4448 Elf_Internal_Phdr *p;
4450 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
4456 for (i = m->count - 1; i >= 0; i--)
4457 if (m->sections[i] == section)
4464 /* Create a mapping from a set of sections to a program segment. */
4466 static struct elf_segment_map *
4467 make_mapping (bfd *abfd,
4468 asection **sections,
4473 struct elf_segment_map *m;
4478 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4479 amt += (to - from) * sizeof (asection *);
4480 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4484 m->p_type = PT_LOAD;
4485 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4486 m->sections[i - from] = *hdrpp;
4487 m->count = to - from;
4489 if (from == 0 && phdr)
4491 /* Include the headers in the first PT_LOAD segment. */
4492 m->includes_filehdr = 1;
4493 m->includes_phdrs = 1;
4499 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4502 struct elf_segment_map *
4503 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4505 struct elf_segment_map *m;
4507 m = (struct elf_segment_map *) bfd_zalloc (abfd,
4508 sizeof (struct elf_segment_map));
4512 m->p_type = PT_DYNAMIC;
4514 m->sections[0] = dynsec;
4519 /* Possibly add or remove segments from the segment map. */
4522 elf_modify_segment_map (bfd *abfd,
4523 struct bfd_link_info *info,
4524 bfd_boolean remove_empty_load)
4526 struct elf_segment_map **m;
4527 const struct elf_backend_data *bed;
4529 /* The placement algorithm assumes that non allocated sections are
4530 not in PT_LOAD segments. We ensure this here by removing such
4531 sections from the segment map. We also remove excluded
4532 sections. Finally, any PT_LOAD segment without sections is
4534 m = &elf_seg_map (abfd);
4537 unsigned int i, new_count;
4539 for (new_count = 0, i = 0; i < (*m)->count; i++)
4541 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4542 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4543 || (*m)->p_type != PT_LOAD))
4545 (*m)->sections[new_count] = (*m)->sections[i];
4549 (*m)->count = new_count;
4551 if (remove_empty_load
4552 && (*m)->p_type == PT_LOAD
4554 && !(*m)->includes_phdrs)
4560 bed = get_elf_backend_data (abfd);
4561 if (bed->elf_backend_modify_segment_map != NULL)
4563 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
4570 #define IS_TBSS(s) \
4571 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4573 /* Set up a mapping from BFD sections to program segments. */
4576 _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4579 struct elf_segment_map *m;
4580 asection **sections = NULL;
4581 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4582 bfd_boolean no_user_phdrs;
4584 no_user_phdrs = elf_seg_map (abfd) == NULL;
4587 info->user_phdrs = !no_user_phdrs;
4589 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
4593 struct elf_segment_map *mfirst;
4594 struct elf_segment_map **pm;
4597 unsigned int hdr_index;
4598 bfd_vma maxpagesize;
4600 bfd_boolean phdr_in_segment;
4601 bfd_boolean writable;
4602 bfd_boolean executable;
4604 asection *first_tls = NULL;
4605 asection *first_mbind = NULL;
4606 asection *dynsec, *eh_frame_hdr;
4608 bfd_vma addr_mask, wrap_to = 0;
4609 bfd_size_type phdr_size;
4611 /* Select the allocated sections, and sort them. */
4613 sections = (asection **) bfd_malloc2 (bfd_count_sections (abfd),
4614 sizeof (asection *));
4615 if (sections == NULL)
4618 /* Calculate top address, avoiding undefined behaviour of shift
4619 left operator when shift count is equal to size of type
4621 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4622 addr_mask = (addr_mask << 1) + 1;
4625 for (s = abfd->sections; s != NULL; s = s->next)
4627 if ((s->flags & SEC_ALLOC) != 0)
4631 /* A wrapping section potentially clashes with header. */
4632 if (((s->lma + s->size) & addr_mask) < (s->lma & addr_mask))
4633 wrap_to = (s->lma + s->size) & addr_mask;
4636 BFD_ASSERT (i <= bfd_count_sections (abfd));
4639 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
4641 phdr_size = elf_program_header_size (abfd);
4642 if (phdr_size == (bfd_size_type) -1)
4643 phdr_size = get_program_header_size (abfd, info);
4644 phdr_size += bed->s->sizeof_ehdr;
4645 maxpagesize = bed->maxpagesize;
4646 if (maxpagesize == 0)
4648 phdr_in_segment = info != NULL && info->load_phdrs;
4650 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4651 >= (phdr_size & (maxpagesize - 1))))
4652 /* For compatibility with old scripts that may not be using
4653 SIZEOF_HEADERS, add headers when it looks like space has
4654 been left for them. */
4655 phdr_in_segment = TRUE;
4657 /* Build the mapping. */
4661 /* If we have a .interp section, then create a PT_PHDR segment for
4662 the program headers and a PT_INTERP segment for the .interp
4664 s = bfd_get_section_by_name (abfd, ".interp");
4665 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
4667 amt = sizeof (struct elf_segment_map);
4668 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4672 m->p_type = PT_PHDR;
4674 m->p_flags_valid = 1;
4675 m->includes_phdrs = 1;
4676 phdr_in_segment = TRUE;
4680 amt = sizeof (struct elf_segment_map);
4681 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4685 m->p_type = PT_INTERP;
4693 /* Look through the sections. We put sections in the same program
4694 segment when the start of the second section can be placed within
4695 a few bytes of the end of the first section. */
4701 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4703 && (dynsec->flags & SEC_LOAD) == 0)
4706 if ((abfd->flags & D_PAGED) == 0)
4707 phdr_in_segment = FALSE;
4709 /* Deal with -Ttext or something similar such that the first section
4710 is not adjacent to the program headers. This is an
4711 approximation, since at this point we don't know exactly how many
4712 program headers we will need. */
4713 if (phdr_in_segment && count > 0)
4716 bfd_boolean separate_phdr = FALSE;
4718 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4720 && info->separate_code
4721 && (sections[0]->flags & SEC_CODE) != 0)
4723 /* If data sections should be separate from code and
4724 thus not executable, and the first section is
4725 executable then put the file and program headers in
4726 their own PT_LOAD. */
4727 separate_phdr = TRUE;
4728 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4729 == (sections[0]->lma & addr_mask & -maxpagesize)))
4731 /* The file and program headers are currently on the
4732 same page as the first section. Put them on the
4733 previous page if we can. */
4734 if (phdr_lma >= maxpagesize)
4735 phdr_lma -= maxpagesize;
4737 separate_phdr = FALSE;
4740 if ((sections[0]->lma & addr_mask) < phdr_lma
4741 || (sections[0]->lma & addr_mask) < phdr_size)
4742 /* If file and program headers would be placed at the end
4743 of memory then it's probably better to omit them. */
4744 phdr_in_segment = FALSE;
4745 else if (phdr_lma < wrap_to)
4746 /* If a section wraps around to where we'll be placing
4747 file and program headers, then the headers will be
4749 phdr_in_segment = FALSE;
4750 else if (separate_phdr)
4752 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4755 m->p_paddr = phdr_lma;
4757 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4758 m->p_paddr_valid = 1;
4761 phdr_in_segment = FALSE;
4765 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
4768 bfd_boolean new_segment;
4772 /* See if this section and the last one will fit in the same
4775 if (last_hdr == NULL)
4777 /* If we don't have a segment yet, then we don't need a new
4778 one (we build the last one after this loop). */
4779 new_segment = FALSE;
4781 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4783 /* If this section has a different relation between the
4784 virtual address and the load address, then we need a new
4788 else if (hdr->lma < last_hdr->lma + last_size
4789 || last_hdr->lma + last_size < last_hdr->lma)
4791 /* If this section has a load address that makes it overlap
4792 the previous section, then we need a new segment. */
4795 else if ((abfd->flags & D_PAGED) != 0
4796 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4797 == (hdr->lma & -maxpagesize)))
4799 /* If we are demand paged then we can't map two disk
4800 pages onto the same memory page. */
4801 new_segment = FALSE;
4803 /* In the next test we have to be careful when last_hdr->lma is close
4804 to the end of the address space. If the aligned address wraps
4805 around to the start of the address space, then there are no more
4806 pages left in memory and it is OK to assume that the current
4807 section can be included in the current segment. */
4808 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4809 + maxpagesize > last_hdr->lma)
4810 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4811 + maxpagesize <= hdr->lma))
4813 /* If putting this section in this segment would force us to
4814 skip a page in the segment, then we need a new segment. */
4817 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
4818 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
4820 /* We don't want to put a loaded section after a
4821 nonloaded (ie. bss style) section in the same segment
4822 as that will force the non-loaded section to be loaded.
4823 Consider .tbss sections as loaded for this purpose. */
4826 else if ((abfd->flags & D_PAGED) == 0)
4828 /* If the file is not demand paged, which means that we
4829 don't require the sections to be correctly aligned in the
4830 file, then there is no other reason for a new segment. */
4831 new_segment = FALSE;
4833 else if (info != NULL
4834 && info->separate_code
4835 && executable != ((hdr->flags & SEC_CODE) != 0))
4840 && (hdr->flags & SEC_READONLY) == 0)
4842 /* We don't want to put a writable section in a read only
4848 /* Otherwise, we can use the same segment. */
4849 new_segment = FALSE;
4852 /* Allow interested parties a chance to override our decision. */
4853 if (last_hdr != NULL
4855 && info->callbacks->override_segment_assignment != NULL)
4857 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4863 if ((hdr->flags & SEC_READONLY) == 0)
4865 if ((hdr->flags & SEC_CODE) != 0)
4868 /* .tbss sections effectively have zero size. */
4869 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
4873 /* We need a new program segment. We must create a new program
4874 header holding all the sections from hdr_index until hdr. */
4876 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
4883 if ((hdr->flags & SEC_READONLY) == 0)
4888 if ((hdr->flags & SEC_CODE) == 0)
4894 /* .tbss sections effectively have zero size. */
4895 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
4897 phdr_in_segment = FALSE;
4900 /* Create a final PT_LOAD program segment, but not if it's just
4902 if (last_hdr != NULL
4903 && (i - hdr_index != 1
4904 || !IS_TBSS (last_hdr)))
4906 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
4914 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4917 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4924 /* For each batch of consecutive loadable SHT_NOTE sections,
4925 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
4926 because if we link together nonloadable .note sections and
4927 loadable .note sections, we will generate two .note sections
4928 in the output file. */
4929 for (s = abfd->sections; s != NULL; s = s->next)
4931 if ((s->flags & SEC_LOAD) != 0
4932 && elf_section_type (s) == SHT_NOTE)
4935 unsigned int alignment_power = s->alignment_power;
4938 for (s2 = s; s2->next != NULL; s2 = s2->next)
4940 if (s2->next->alignment_power == alignment_power
4941 && (s2->next->flags & SEC_LOAD) != 0
4942 && elf_section_type (s2->next) == SHT_NOTE
4943 && align_power (s2->lma + s2->size,
4950 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4951 amt += count * sizeof (asection *);
4952 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4956 m->p_type = PT_NOTE;
4960 m->sections[m->count - count--] = s;
4961 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
4964 m->sections[m->count - 1] = s;
4965 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
4969 if (s->flags & SEC_THREAD_LOCAL)
4975 if (first_mbind == NULL
4976 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
4980 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
4983 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4984 amt += tls_count * sizeof (asection *);
4985 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4990 m->count = tls_count;
4991 /* Mandated PF_R. */
4993 m->p_flags_valid = 1;
4995 for (i = 0; i < (unsigned int) tls_count; ++i)
4997 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5000 (_("%pB: TLS sections are not adjacent:"), abfd);
5003 while (i < (unsigned int) tls_count)
5005 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5007 _bfd_error_handler (_(" TLS: %pA"), s);
5011 _bfd_error_handler (_(" non-TLS: %pA"), s);
5014 bfd_set_error (bfd_error_bad_value);
5025 if (first_mbind && (abfd->flags & D_PAGED) != 0)
5026 for (s = first_mbind; s != NULL; s = s->next)
5027 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
5028 && (elf_section_data (s)->this_hdr.sh_info
5029 <= PT_GNU_MBIND_NUM))
5031 /* Mandated PF_R. */
5032 unsigned long p_flags = PF_R;
5033 if ((s->flags & SEC_READONLY) == 0)
5035 if ((s->flags & SEC_CODE) != 0)
5038 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5039 m = bfd_zalloc (abfd, amt);
5043 m->p_type = (PT_GNU_MBIND_LO
5044 + elf_section_data (s)->this_hdr.sh_info);
5046 m->p_flags_valid = 1;
5048 m->p_flags = p_flags;
5054 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5056 eh_frame_hdr = elf_eh_frame_hdr (abfd);
5057 if (eh_frame_hdr != NULL
5058 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
5060 amt = sizeof (struct elf_segment_map);
5061 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5065 m->p_type = PT_GNU_EH_FRAME;
5067 m->sections[0] = eh_frame_hdr->output_section;
5073 if (elf_stack_flags (abfd))
5075 amt = sizeof (struct elf_segment_map);
5076 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5080 m->p_type = PT_GNU_STACK;
5081 m->p_flags = elf_stack_flags (abfd);
5082 m->p_align = bed->stack_align;
5083 m->p_flags_valid = 1;
5084 m->p_align_valid = m->p_align != 0;
5085 if (info->stacksize > 0)
5087 m->p_size = info->stacksize;
5088 m->p_size_valid = 1;
5095 if (info != NULL && info->relro)
5097 for (m = mfirst; m != NULL; m = m->next)
5099 if (m->p_type == PT_LOAD
5101 && m->sections[0]->vma >= info->relro_start
5102 && m->sections[0]->vma < info->relro_end)
5105 while (--i != (unsigned) -1)
5106 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5107 == (SEC_LOAD | SEC_HAS_CONTENTS))
5110 if (i != (unsigned) -1)
5115 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5118 amt = sizeof (struct elf_segment_map);
5119 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5123 m->p_type = PT_GNU_RELRO;
5130 elf_seg_map (abfd) = mfirst;
5133 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
5136 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
5138 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
5143 if (sections != NULL)
5148 /* Sort sections by address. */
5151 elf_sort_sections (const void *arg1, const void *arg2)
5153 const asection *sec1 = *(const asection **) arg1;
5154 const asection *sec2 = *(const asection **) arg2;
5155 bfd_size_type size1, size2;
5157 /* Sort by LMA first, since this is the address used to
5158 place the section into a segment. */
5159 if (sec1->lma < sec2->lma)
5161 else if (sec1->lma > sec2->lma)
5164 /* Then sort by VMA. Normally the LMA and the VMA will be
5165 the same, and this will do nothing. */
5166 if (sec1->vma < sec2->vma)
5168 else if (sec1->vma > sec2->vma)
5171 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5173 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
5179 /* If the indices are the same, do not return 0
5180 here, but continue to try the next comparison. */
5181 if (sec1->target_index - sec2->target_index != 0)
5182 return sec1->target_index - sec2->target_index;
5187 else if (TOEND (sec2))
5192 /* Sort by size, to put zero sized sections
5193 before others at the same address. */
5195 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5196 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
5203 return sec1->target_index - sec2->target_index;
5206 /* Ian Lance Taylor writes:
5208 We shouldn't be using % with a negative signed number. That's just
5209 not good. We have to make sure either that the number is not
5210 negative, or that the number has an unsigned type. When the types
5211 are all the same size they wind up as unsigned. When file_ptr is a
5212 larger signed type, the arithmetic winds up as signed long long,
5215 What we're trying to say here is something like ``increase OFF by
5216 the least amount that will cause it to be equal to the VMA modulo
5218 /* In other words, something like:
5220 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5221 off_offset = off % bed->maxpagesize;
5222 if (vma_offset < off_offset)
5223 adjustment = vma_offset + bed->maxpagesize - off_offset;
5225 adjustment = vma_offset - off_offset;
5227 which can be collapsed into the expression below. */
5230 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5232 /* PR binutils/16199: Handle an alignment of zero. */
5233 if (maxpagesize == 0)
5235 return ((vma - off) % maxpagesize);
5239 print_segment_map (const struct elf_segment_map *m)
5242 const char *pt = get_segment_type (m->p_type);
5247 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5248 sprintf (buf, "LOPROC+%7.7x",
5249 (unsigned int) (m->p_type - PT_LOPROC));
5250 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5251 sprintf (buf, "LOOS+%7.7x",
5252 (unsigned int) (m->p_type - PT_LOOS));
5254 snprintf (buf, sizeof (buf), "%8.8x",
5255 (unsigned int) m->p_type);
5259 fprintf (stderr, "%s:", pt);
5260 for (j = 0; j < m->count; j++)
5261 fprintf (stderr, " %s", m->sections [j]->name);
5267 write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5272 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5274 buf = bfd_zmalloc (len);
5277 ret = bfd_bwrite (buf, len, abfd) == len;
5282 /* Assign file positions to the sections based on the mapping from
5283 sections to segments. This function also sets up some fields in
5287 assign_file_positions_for_load_sections (bfd *abfd,
5288 struct bfd_link_info *link_info)
5290 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5291 struct elf_segment_map *m;
5292 Elf_Internal_Phdr *phdrs;
5293 Elf_Internal_Phdr *p;
5295 bfd_size_type maxpagesize;
5296 unsigned int pt_load_count = 0;
5299 bfd_vma header_pad = 0;
5301 if (link_info == NULL
5302 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
5306 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5310 header_pad = m->header_size;
5315 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5316 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5320 /* PR binutils/12467. */
5321 elf_elfheader (abfd)->e_phoff = 0;
5322 elf_elfheader (abfd)->e_phentsize = 0;
5325 elf_elfheader (abfd)->e_phnum = alloc;
5327 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
5328 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5330 BFD_ASSERT (elf_program_header_size (abfd)
5331 >= alloc * bed->s->sizeof_phdr);
5335 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
5339 /* We're writing the size in elf_program_header_size (abfd),
5340 see assign_file_positions_except_relocs, so make sure we have
5341 that amount allocated, with trailing space cleared.
5342 The variable alloc contains the computed need, while
5343 elf_program_header_size (abfd) contains the size used for the
5345 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5346 where the layout is forced to according to a larger size in the
5347 last iterations for the testcase ld-elf/header. */
5348 BFD_ASSERT (elf_program_header_size (abfd) % bed->s->sizeof_phdr
5350 phdrs = (Elf_Internal_Phdr *)
5352 (elf_program_header_size (abfd) / bed->s->sizeof_phdr),
5353 sizeof (Elf_Internal_Phdr));
5354 elf_tdata (abfd)->phdr = phdrs;
5359 if ((abfd->flags & D_PAGED) != 0)
5360 maxpagesize = bed->maxpagesize;
5362 off = bed->s->sizeof_ehdr;
5363 off += alloc * bed->s->sizeof_phdr;
5364 if (header_pad < (bfd_vma) off)
5370 for (m = elf_seg_map (abfd), p = phdrs, j = 0;
5372 m = m->next, p++, j++)
5376 bfd_boolean no_contents;
5378 /* If elf_segment_map is not from map_sections_to_segments, the
5379 sections may not be correctly ordered. NOTE: sorting should
5380 not be done to the PT_NOTE section of a corefile, which may
5381 contain several pseudo-sections artificially created by bfd.
5382 Sorting these pseudo-sections breaks things badly. */
5384 && !(elf_elfheader (abfd)->e_type == ET_CORE
5385 && m->p_type == PT_NOTE))
5386 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5389 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5390 number of sections with contents contributing to both p_filesz
5391 and p_memsz, followed by a number of sections with no contents
5392 that just contribute to p_memsz. In this loop, OFF tracks next
5393 available file offset for PT_LOAD and PT_NOTE segments. */
5394 p->p_type = m->p_type;
5395 p->p_flags = m->p_flags;
5398 p->p_vaddr = m->p_vaddr_offset;
5400 p->p_vaddr = m->sections[0]->vma + m->p_vaddr_offset;
5402 if (m->p_paddr_valid)
5403 p->p_paddr = m->p_paddr;
5404 else if (m->count == 0)
5407 p->p_paddr = m->sections[0]->lma + m->p_vaddr_offset;
5409 if (p->p_type == PT_LOAD
5410 && (abfd->flags & D_PAGED) != 0)
5412 /* p_align in demand paged PT_LOAD segments effectively stores
5413 the maximum page size. When copying an executable with
5414 objcopy, we set m->p_align from the input file. Use this
5415 value for maxpagesize rather than bed->maxpagesize, which
5416 may be different. Note that we use maxpagesize for PT_TLS
5417 segment alignment later in this function, so we are relying
5418 on at least one PT_LOAD segment appearing before a PT_TLS
5420 if (m->p_align_valid)
5421 maxpagesize = m->p_align;
5423 p->p_align = maxpagesize;
5426 else if (m->p_align_valid)
5427 p->p_align = m->p_align;
5428 else if (m->count == 0)
5429 p->p_align = 1 << bed->s->log_file_align;
5433 no_contents = FALSE;
5435 if (p->p_type == PT_LOAD
5438 bfd_size_type align;
5439 unsigned int align_power = 0;
5441 if (m->p_align_valid)
5445 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5447 unsigned int secalign;
5449 secalign = bfd_get_section_alignment (abfd, *secpp);
5450 if (secalign > align_power)
5451 align_power = secalign;
5453 align = (bfd_size_type) 1 << align_power;
5454 if (align < maxpagesize)
5455 align = maxpagesize;
5458 for (i = 0; i < m->count; i++)
5459 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5460 /* If we aren't making room for this section, then
5461 it must be SHT_NOBITS regardless of what we've
5462 set via struct bfd_elf_special_section. */
5463 elf_section_type (m->sections[i]) = SHT_NOBITS;
5465 /* Find out whether this segment contains any loadable
5468 for (i = 0; i < m->count; i++)
5469 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5471 no_contents = FALSE;
5475 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align);
5477 /* Broken hardware and/or kernel require that files do not
5478 map the same page with different permissions on some hppa
5480 if (pt_load_count > 1
5481 && bed->no_page_alias
5482 && (off & (maxpagesize - 1)) != 0
5483 && (off & -maxpagesize) == ((off + off_adjust) & -maxpagesize))
5484 off_adjust += maxpagesize;
5488 /* We shouldn't need to align the segment on disk since
5489 the segment doesn't need file space, but the gABI
5490 arguably requires the alignment and glibc ld.so
5491 checks it. So to comply with the alignment
5492 requirement but not waste file space, we adjust
5493 p_offset for just this segment. (OFF_ADJUST is
5494 subtracted from OFF later.) This may put p_offset
5495 past the end of file, but that shouldn't matter. */
5500 /* Make sure the .dynamic section is the first section in the
5501 PT_DYNAMIC segment. */
5502 else if (p->p_type == PT_DYNAMIC
5504 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5507 (_("%pB: The first section in the PT_DYNAMIC segment"
5508 " is not the .dynamic section"),
5510 bfd_set_error (bfd_error_bad_value);
5513 /* Set the note section type to SHT_NOTE. */
5514 else if (p->p_type == PT_NOTE)
5515 for (i = 0; i < m->count; i++)
5516 elf_section_type (m->sections[i]) = SHT_NOTE;
5522 if (m->includes_filehdr)
5524 if (!m->p_flags_valid)
5526 p->p_filesz = bed->s->sizeof_ehdr;
5527 p->p_memsz = bed->s->sizeof_ehdr;
5530 if (p->p_vaddr < (bfd_vma) off
5531 || (!m->p_paddr_valid
5532 && p->p_paddr < (bfd_vma) off))
5535 (_("%pB: not enough room for program headers,"
5536 " try linking with -N"),
5538 bfd_set_error (bfd_error_bad_value);
5543 if (!m->p_paddr_valid)
5548 if (m->includes_phdrs)
5550 if (!m->p_flags_valid)
5553 if (!m->includes_filehdr)
5555 p->p_offset = bed->s->sizeof_ehdr;
5559 p->p_vaddr -= off - p->p_offset;
5560 if (!m->p_paddr_valid)
5561 p->p_paddr -= off - p->p_offset;
5565 p->p_filesz += alloc * bed->s->sizeof_phdr;
5566 p->p_memsz += alloc * bed->s->sizeof_phdr;
5569 p->p_filesz += header_pad;
5570 p->p_memsz += header_pad;
5574 if (p->p_type == PT_LOAD
5575 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5577 if (!m->includes_filehdr && !m->includes_phdrs)
5583 adjust = off - (p->p_offset + p->p_filesz);
5585 p->p_filesz += adjust;
5586 p->p_memsz += adjust;
5590 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5591 maps. Set filepos for sections in PT_LOAD segments, and in
5592 core files, for sections in PT_NOTE segments.
5593 assign_file_positions_for_non_load_sections will set filepos
5594 for other sections and update p_filesz for other segments. */
5595 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5598 bfd_size_type align;
5599 Elf_Internal_Shdr *this_hdr;
5602 this_hdr = &elf_section_data (sec)->this_hdr;
5603 align = (bfd_size_type) 1 << bfd_get_section_alignment (abfd, sec);
5605 if ((p->p_type == PT_LOAD
5606 || p->p_type == PT_TLS)
5607 && (this_hdr->sh_type != SHT_NOBITS
5608 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5609 && ((this_hdr->sh_flags & SHF_TLS) == 0
5610 || p->p_type == PT_TLS))))
5612 bfd_vma p_start = p->p_paddr;
5613 bfd_vma p_end = p_start + p->p_memsz;
5614 bfd_vma s_start = sec->lma;
5615 bfd_vma adjust = s_start - p_end;
5619 || p_end < p_start))
5622 /* xgettext:c-format */
5623 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5624 abfd, sec, (uint64_t) s_start, (uint64_t) p_end);
5628 p->p_memsz += adjust;
5630 if (this_hdr->sh_type != SHT_NOBITS)
5632 if (p->p_filesz + adjust < p->p_memsz)
5634 /* We have a PROGBITS section following NOBITS ones.
5635 Allocate file space for the NOBITS section(s) and
5637 adjust = p->p_memsz - p->p_filesz;
5638 if (!write_zeros (abfd, off, adjust))
5642 p->p_filesz += adjust;
5646 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5648 /* The section at i == 0 is the one that actually contains
5652 this_hdr->sh_offset = sec->filepos = off;
5653 off += this_hdr->sh_size;
5654 p->p_filesz = this_hdr->sh_size;
5660 /* The rest are fake sections that shouldn't be written. */
5669 if (p->p_type == PT_LOAD)
5671 this_hdr->sh_offset = sec->filepos = off;
5672 if (this_hdr->sh_type != SHT_NOBITS)
5673 off += this_hdr->sh_size;
5675 else if (this_hdr->sh_type == SHT_NOBITS
5676 && (this_hdr->sh_flags & SHF_TLS) != 0
5677 && this_hdr->sh_offset == 0)
5679 /* This is a .tbss section that didn't get a PT_LOAD.
5680 (See _bfd_elf_map_sections_to_segments "Create a
5681 final PT_LOAD".) Set sh_offset to the value it
5682 would have if we had created a zero p_filesz and
5683 p_memsz PT_LOAD header for the section. This
5684 also makes the PT_TLS header have the same
5686 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5688 this_hdr->sh_offset = sec->filepos = off + adjust;
5691 if (this_hdr->sh_type != SHT_NOBITS)
5693 p->p_filesz += this_hdr->sh_size;
5694 /* A load section without SHF_ALLOC is something like
5695 a note section in a PT_NOTE segment. These take
5696 file space but are not loaded into memory. */
5697 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5698 p->p_memsz += this_hdr->sh_size;
5700 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5702 if (p->p_type == PT_TLS)
5703 p->p_memsz += this_hdr->sh_size;
5705 /* .tbss is special. It doesn't contribute to p_memsz of
5707 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5708 p->p_memsz += this_hdr->sh_size;
5711 if (align > p->p_align
5712 && !m->p_align_valid
5713 && (p->p_type != PT_LOAD
5714 || (abfd->flags & D_PAGED) == 0))
5718 if (!m->p_flags_valid)
5721 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
5723 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
5730 /* Check that all sections are in a PT_LOAD segment.
5731 Don't check funky gdb generated core files. */
5732 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
5734 bfd_boolean check_vma = TRUE;
5736 for (i = 1; i < m->count; i++)
5737 if (m->sections[i]->vma == m->sections[i - 1]->vma
5738 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5739 ->this_hdr), p) != 0
5740 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5741 ->this_hdr), p) != 0)
5743 /* Looks like we have overlays packed into the segment. */
5748 for (i = 0; i < m->count; i++)
5750 Elf_Internal_Shdr *this_hdr;
5753 sec = m->sections[i];
5754 this_hdr = &(elf_section_data(sec)->this_hdr);
5755 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5756 && !ELF_TBSS_SPECIAL (this_hdr, p))
5759 /* xgettext:c-format */
5760 (_("%pB: section `%pA' can't be allocated in segment %d"),
5762 print_segment_map (m);
5768 elf_next_file_pos (abfd) = off;
5772 /* Assign file positions for the other sections. */
5775 assign_file_positions_for_non_load_sections (bfd *abfd,
5776 struct bfd_link_info *link_info)
5778 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5779 Elf_Internal_Shdr **i_shdrpp;
5780 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
5781 Elf_Internal_Phdr *phdrs;
5782 Elf_Internal_Phdr *p;
5783 struct elf_segment_map *m;
5784 struct elf_segment_map *hdrs_segment;
5785 bfd_vma filehdr_vaddr, filehdr_paddr;
5786 bfd_vma phdrs_vaddr, phdrs_paddr;
5790 i_shdrpp = elf_elfsections (abfd);
5791 end_hdrpp = i_shdrpp + elf_numsections (abfd);
5792 off = elf_next_file_pos (abfd);
5793 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5795 Elf_Internal_Shdr *hdr;
5798 if (hdr->bfd_section != NULL
5799 && (hdr->bfd_section->filepos != 0
5800 || (hdr->sh_type == SHT_NOBITS
5801 && hdr->contents == NULL)))
5802 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5803 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
5805 if (hdr->sh_size != 0)
5807 /* xgettext:c-format */
5808 (_("%pB: warning: allocated section `%s' not in segment"),
5810 (hdr->bfd_section == NULL
5812 : hdr->bfd_section->name));
5813 /* We don't need to page align empty sections. */
5814 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5815 off += vma_page_aligned_bias (hdr->sh_addr, off,
5818 off += vma_page_aligned_bias (hdr->sh_addr, off,
5820 off = _bfd_elf_assign_file_position_for_section (hdr, off,
5823 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
5824 && hdr->bfd_section == NULL)
5825 || (hdr->bfd_section != NULL
5826 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS))
5827 /* Compress DWARF debug sections. */
5828 || hdr == i_shdrpp[elf_onesymtab (abfd)]
5829 || (elf_symtab_shndx_list (abfd) != NULL
5830 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
5831 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
5832 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5833 hdr->sh_offset = -1;
5835 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5838 /* Now that we have set the section file positions, we can set up
5839 the file positions for the non PT_LOAD segments. */
5843 phdrs_vaddr = bed->maxpagesize + bed->s->sizeof_ehdr;
5845 hdrs_segment = NULL;
5846 phdrs = elf_tdata (abfd)->phdr;
5847 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
5850 if (p->p_type != PT_LOAD)
5853 if (m->includes_filehdr)
5855 filehdr_vaddr = p->p_vaddr;
5856 filehdr_paddr = p->p_paddr;
5858 if (m->includes_phdrs)
5860 phdrs_vaddr = p->p_vaddr;
5861 phdrs_paddr = p->p_paddr;
5862 if (m->includes_filehdr)
5865 phdrs_vaddr += bed->s->sizeof_ehdr;
5866 phdrs_paddr += bed->s->sizeof_ehdr;
5871 if (hdrs_segment != NULL && link_info != NULL)
5873 /* There is a segment that contains both the file headers and the
5874 program headers, so provide a symbol __ehdr_start pointing there.
5875 A program can use this to examine itself robustly. */
5877 struct elf_link_hash_entry *hash
5878 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5879 FALSE, FALSE, TRUE);
5880 /* If the symbol was referenced and not defined, define it. */
5882 && (hash->root.type == bfd_link_hash_new
5883 || hash->root.type == bfd_link_hash_undefined
5884 || hash->root.type == bfd_link_hash_undefweak
5885 || hash->root.type == bfd_link_hash_common))
5888 if (hdrs_segment->count != 0)
5889 /* The segment contains sections, so use the first one. */
5890 s = hdrs_segment->sections[0];
5892 /* Use the first (i.e. lowest-addressed) section in any segment. */
5893 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5902 hash->root.u.def.value = filehdr_vaddr - s->vma;
5903 hash->root.u.def.section = s;
5907 hash->root.u.def.value = filehdr_vaddr;
5908 hash->root.u.def.section = bfd_abs_section_ptr;
5911 hash->root.type = bfd_link_hash_defined;
5912 hash->def_regular = 1;
5917 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
5919 if (p->p_type == PT_GNU_RELRO)
5924 if (link_info != NULL)
5926 /* During linking the range of the RELRO segment is passed
5927 in link_info. Note that there may be padding between
5928 relro_start and the first RELRO section. */
5929 start = link_info->relro_start;
5930 end = link_info->relro_end;
5932 else if (m->count != 0)
5934 if (!m->p_size_valid)
5936 start = m->sections[0]->vma;
5937 end = start + m->p_size;
5948 struct elf_segment_map *lm;
5949 const Elf_Internal_Phdr *lp;
5952 /* Find a LOAD segment containing a section in the RELRO
5954 for (lm = elf_seg_map (abfd), lp = phdrs;
5956 lm = lm->next, lp++)
5958 if (lp->p_type == PT_LOAD
5960 && (lm->sections[lm->count - 1]->vma
5961 + (!IS_TBSS (lm->sections[lm->count - 1])
5962 ? lm->sections[lm->count - 1]->size
5964 && lm->sections[0]->vma < end)
5970 /* Find the section starting the RELRO segment. */
5971 for (i = 0; i < lm->count; i++)
5973 asection *s = lm->sections[i];
5982 p->p_vaddr = lm->sections[i]->vma;
5983 p->p_paddr = lm->sections[i]->lma;
5984 p->p_offset = lm->sections[i]->filepos;
5985 p->p_memsz = end - p->p_vaddr;
5986 p->p_filesz = p->p_memsz;
5988 /* The RELRO segment typically ends a few bytes
5989 into .got.plt but other layouts are possible.
5990 In cases where the end does not match any
5991 loaded section (for instance is in file
5992 padding), trim p_filesz back to correspond to
5993 the end of loaded section contents. */
5994 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
5995 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
5997 /* Preserve the alignment and flags if they are
5998 valid. The gold linker generates RW/4 for
5999 the PT_GNU_RELRO section. It is better for
6000 objcopy/strip to honor these attributes
6001 otherwise gdb will choke when using separate
6003 if (!m->p_align_valid)
6005 if (!m->p_flags_valid)
6011 if (link_info != NULL)
6014 memset (p, 0, sizeof *p);
6016 else if (p->p_type == PT_GNU_STACK)
6018 if (m->p_size_valid)
6019 p->p_memsz = m->p_size;
6021 else if (m->count != 0)
6025 if (p->p_type != PT_LOAD
6026 && (p->p_type != PT_NOTE
6027 || bfd_get_format (abfd) != bfd_core))
6029 /* A user specified segment layout may include a PHDR
6030 segment that overlaps with a LOAD segment... */
6031 if (p->p_type == PT_PHDR)
6037 if (m->includes_filehdr || m->includes_phdrs)
6039 /* PR 17512: file: 2195325e. */
6041 (_("%pB: error: non-load segment %d includes file header "
6042 "and/or program header"),
6043 abfd, (int) (p - phdrs));
6048 p->p_offset = m->sections[0]->filepos;
6049 for (i = m->count; i-- != 0;)
6051 asection *sect = m->sections[i];
6052 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6053 if (hdr->sh_type != SHT_NOBITS)
6055 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6062 else if (m->includes_filehdr)
6064 p->p_vaddr = filehdr_vaddr;
6065 if (! m->p_paddr_valid)
6066 p->p_paddr = filehdr_paddr;
6068 else if (m->includes_phdrs)
6070 p->p_vaddr = phdrs_vaddr;
6071 if (! m->p_paddr_valid)
6072 p->p_paddr = phdrs_paddr;
6076 elf_next_file_pos (abfd) = off;
6081 static elf_section_list *
6082 find_section_in_list (unsigned int i, elf_section_list * list)
6084 for (;list != NULL; list = list->next)
6090 /* Work out the file positions of all the sections. This is called by
6091 _bfd_elf_compute_section_file_positions. All the section sizes and
6092 VMAs must be known before this is called.
6094 Reloc sections come in two flavours: Those processed specially as
6095 "side-channel" data attached to a section to which they apply, and
6096 those that bfd doesn't process as relocations. The latter sort are
6097 stored in a normal bfd section by bfd_section_from_shdr. We don't
6098 consider the former sort here, unless they form part of the loadable
6099 image. Reloc sections not assigned here will be handled later by
6100 assign_file_positions_for_relocs.
6102 We also don't set the positions of the .symtab and .strtab here. */
6105 assign_file_positions_except_relocs (bfd *abfd,
6106 struct bfd_link_info *link_info)
6108 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6109 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
6110 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6112 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6113 && bfd_get_format (abfd) != bfd_core)
6115 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6116 unsigned int num_sec = elf_numsections (abfd);
6117 Elf_Internal_Shdr **hdrpp;
6121 /* Start after the ELF header. */
6122 off = i_ehdrp->e_ehsize;
6124 /* We are not creating an executable, which means that we are
6125 not creating a program header, and that the actual order of
6126 the sections in the file is unimportant. */
6127 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
6129 Elf_Internal_Shdr *hdr;
6132 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6133 && hdr->bfd_section == NULL)
6134 || (hdr->bfd_section != NULL
6135 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS))
6136 /* Compress DWARF debug sections. */
6137 || i == elf_onesymtab (abfd)
6138 || (elf_symtab_shndx_list (abfd) != NULL
6139 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
6140 || i == elf_strtab_sec (abfd)
6141 || i == elf_shstrtab_sec (abfd))
6143 hdr->sh_offset = -1;
6146 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
6149 elf_next_file_pos (abfd) = off;
6155 /* Assign file positions for the loaded sections based on the
6156 assignment of sections to segments. */
6157 if (!assign_file_positions_for_load_sections (abfd, link_info))
6160 /* And for non-load sections. */
6161 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6164 if (bed->elf_backend_modify_program_headers != NULL)
6166 if (!(*bed->elf_backend_modify_program_headers) (abfd, link_info))
6170 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=. */
6171 if (link_info != NULL && bfd_link_pie (link_info))
6173 unsigned int num_segments = elf_elfheader (abfd)->e_phnum;
6174 Elf_Internal_Phdr *segment = elf_tdata (abfd)->phdr;
6175 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6177 /* Find the lowest p_vaddr in PT_LOAD segments. */
6178 bfd_vma p_vaddr = (bfd_vma) -1;
6179 for (; segment < end_segment; segment++)
6180 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6181 p_vaddr = segment->p_vaddr;
6183 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6184 segments is non-zero. */
6186 i_ehdrp->e_type = ET_EXEC;
6189 /* Write out the program headers. */
6190 alloc = elf_elfheader (abfd)->e_phnum;
6194 /* PR ld/20815 - Check that the program header segment, if present, will
6195 be loaded into memory. FIXME: The check below is not sufficient as
6196 really all PT_LOAD segments should be checked before issuing an error
6197 message. Plus the PHDR segment does not have to be the first segment
6198 in the program header table. But this version of the check should
6199 catch all real world use cases.
6201 FIXME: We used to have code here to sort the PT_LOAD segments into
6202 ascending order, as per the ELF spec. But this breaks some programs,
6203 including the Linux kernel. But really either the spec should be
6204 changed or the programs updated. */
6206 && tdata->phdr[0].p_type == PT_PHDR
6207 && (bed->elf_backend_allow_non_load_phdr == NULL
6208 || !bed->elf_backend_allow_non_load_phdr (abfd, tdata->phdr,
6210 && tdata->phdr[1].p_type == PT_LOAD
6211 && (tdata->phdr[1].p_vaddr > tdata->phdr[0].p_vaddr
6212 || (tdata->phdr[1].p_vaddr + tdata->phdr[1].p_memsz
6213 < tdata->phdr[0].p_vaddr + tdata->phdr[0].p_memsz)))
6215 /* The fix for this error is usually to edit the linker script being
6216 used and set up the program headers manually. Either that or
6217 leave room for the headers at the start of the SECTIONS. */
6218 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
6219 " by LOAD segment"),
6224 if (bfd_seek (abfd, (bfd_signed_vma) bed->s->sizeof_ehdr, SEEK_SET) != 0
6225 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6233 prep_headers (bfd *abfd)
6235 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
6236 struct elf_strtab_hash *shstrtab;
6237 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6239 i_ehdrp = elf_elfheader (abfd);
6241 shstrtab = _bfd_elf_strtab_init ();
6242 if (shstrtab == NULL)
6245 elf_shstrtab (abfd) = shstrtab;
6247 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6248 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6249 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6250 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6252 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6253 i_ehdrp->e_ident[EI_DATA] =
6254 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6255 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6257 if ((abfd->flags & DYNAMIC) != 0)
6258 i_ehdrp->e_type = ET_DYN;
6259 else if ((abfd->flags & EXEC_P) != 0)
6260 i_ehdrp->e_type = ET_EXEC;
6261 else if (bfd_get_format (abfd) == bfd_core)
6262 i_ehdrp->e_type = ET_CORE;
6264 i_ehdrp->e_type = ET_REL;
6266 switch (bfd_get_arch (abfd))
6268 case bfd_arch_unknown:
6269 i_ehdrp->e_machine = EM_NONE;
6272 /* There used to be a long list of cases here, each one setting
6273 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6274 in the corresponding bfd definition. To avoid duplication,
6275 the switch was removed. Machines that need special handling
6276 can generally do it in elf_backend_final_write_processing(),
6277 unless they need the information earlier than the final write.
6278 Such need can generally be supplied by replacing the tests for
6279 e_machine with the conditions used to determine it. */
6281 i_ehdrp->e_machine = bed->elf_machine_code;
6284 i_ehdrp->e_version = bed->s->ev_current;
6285 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6287 /* No program header, for now. */
6288 i_ehdrp->e_phoff = 0;
6289 i_ehdrp->e_phentsize = 0;
6290 i_ehdrp->e_phnum = 0;
6292 /* Each bfd section is section header entry. */
6293 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6294 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6296 /* If we're building an executable, we'll need a program header table. */
6297 if (abfd->flags & EXEC_P)
6298 /* It all happens later. */
6302 i_ehdrp->e_phentsize = 0;
6303 i_ehdrp->e_phoff = 0;
6306 elf_tdata (abfd)->symtab_hdr.sh_name =
6307 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
6308 elf_tdata (abfd)->strtab_hdr.sh_name =
6309 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
6310 elf_tdata (abfd)->shstrtab_hdr.sh_name =
6311 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
6312 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
6313 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
6314 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
6320 /* Assign file positions for all the reloc sections which are not part
6321 of the loadable file image, and the file position of section headers. */
6324 _bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
6327 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
6328 Elf_Internal_Shdr *shdrp;
6329 Elf_Internal_Ehdr *i_ehdrp;
6330 const struct elf_backend_data *bed;
6332 off = elf_next_file_pos (abfd);
6334 shdrpp = elf_elfsections (abfd);
6335 end_shdrpp = shdrpp + elf_numsections (abfd);
6336 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
6339 if (shdrp->sh_offset == -1)
6341 asection *sec = shdrp->bfd_section;
6342 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6343 || shdrp->sh_type == SHT_RELA);
6345 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
6349 const char *name = sec->name;
6350 struct bfd_elf_section_data *d;
6352 /* Compress DWARF debug sections. */
6353 if (!bfd_compress_section (abfd, sec,
6357 if (sec->compress_status == COMPRESS_SECTION_DONE
6358 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6360 /* If section is compressed with zlib-gnu, convert
6361 section name from .debug_* to .zdebug_*. */
6363 = convert_debug_to_zdebug (abfd, name);
6364 if (new_name == NULL)
6368 /* Add section name to section name section. */
6369 if (shdrp->sh_name != (unsigned int) -1)
6372 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6374 d = elf_section_data (sec);
6376 /* Add reloc section name to section name section. */
6378 && !_bfd_elf_set_reloc_sh_name (abfd,
6383 && !_bfd_elf_set_reloc_sh_name (abfd,
6388 /* Update section size and contents. */
6389 shdrp->sh_size = sec->size;
6390 shdrp->contents = sec->contents;
6391 shdrp->bfd_section->contents = NULL;
6393 off = _bfd_elf_assign_file_position_for_section (shdrp,
6400 /* Place section name section after DWARF debug sections have been
6402 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6403 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6404 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6405 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6407 /* Place the section headers. */
6408 i_ehdrp = elf_elfheader (abfd);
6409 bed = get_elf_backend_data (abfd);
6410 off = align_file_position (off, 1 << bed->s->log_file_align);
6411 i_ehdrp->e_shoff = off;
6412 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
6413 elf_next_file_pos (abfd) = off;
6419 _bfd_elf_write_object_contents (bfd *abfd)
6421 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6422 Elf_Internal_Shdr **i_shdrp;
6424 unsigned int count, num_sec;
6425 struct elf_obj_tdata *t;
6427 if (! abfd->output_has_begun
6428 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
6430 /* Do not rewrite ELF data when the BFD has been opened for update.
6431 abfd->output_has_begun was set to TRUE on opening, so creation of new
6432 sections, and modification of existing section sizes was restricted.
6433 This means the ELF header, program headers and section headers can't have
6435 If the contents of any sections has been modified, then those changes have
6436 already been written to the BFD. */
6437 else if (abfd->direction == both_direction)
6439 BFD_ASSERT (abfd->output_has_begun);
6443 i_shdrp = elf_elfsections (abfd);
6446 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6450 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6453 /* After writing the headers, we need to write the sections too... */
6454 num_sec = elf_numsections (abfd);
6455 for (count = 1; count < num_sec; count++)
6457 i_shdrp[count]->sh_name
6458 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6459 i_shdrp[count]->sh_name);
6460 if (bed->elf_backend_section_processing)
6461 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6463 if (i_shdrp[count]->contents)
6465 bfd_size_type amt = i_shdrp[count]->sh_size;
6467 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
6468 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
6473 /* Write out the section header names. */
6474 t = elf_tdata (abfd);
6475 if (elf_shstrtab (abfd) != NULL
6476 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
6477 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
6480 if (bed->elf_backend_final_write_processing)
6481 (*bed->elf_backend_final_write_processing) (abfd, elf_linker (abfd));
6483 if (!bed->s->write_shdrs_and_ehdr (abfd))
6486 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6487 if (t->o->build_id.after_write_object_contents != NULL)
6488 return (*t->o->build_id.after_write_object_contents) (abfd);
6494 _bfd_elf_write_corefile_contents (bfd *abfd)
6496 /* Hopefully this can be done just like an object file. */
6497 return _bfd_elf_write_object_contents (abfd);
6500 /* Given a section, search the header to find them. */
6503 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
6505 const struct elf_backend_data *bed;
6506 unsigned int sec_index;
6508 if (elf_section_data (asect) != NULL
6509 && elf_section_data (asect)->this_idx != 0)
6510 return elf_section_data (asect)->this_idx;
6512 if (bfd_is_abs_section (asect))
6513 sec_index = SHN_ABS;
6514 else if (bfd_is_com_section (asect))
6515 sec_index = SHN_COMMON;
6516 else if (bfd_is_und_section (asect))
6517 sec_index = SHN_UNDEF;
6519 sec_index = SHN_BAD;
6521 bed = get_elf_backend_data (abfd);
6522 if (bed->elf_backend_section_from_bfd_section)
6524 int retval = sec_index;
6526 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6530 if (sec_index == SHN_BAD)
6531 bfd_set_error (bfd_error_nonrepresentable_section);
6536 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6540 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
6542 asymbol *asym_ptr = *asym_ptr_ptr;
6544 flagword flags = asym_ptr->flags;
6546 /* When gas creates relocations against local labels, it creates its
6547 own symbol for the section, but does put the symbol into the
6548 symbol chain, so udata is 0. When the linker is generating
6549 relocatable output, this section symbol may be for one of the
6550 input sections rather than the output section. */
6551 if (asym_ptr->udata.i == 0
6552 && (flags & BSF_SECTION_SYM)
6553 && asym_ptr->section)
6558 sec = asym_ptr->section;
6559 if (sec->owner != abfd && sec->output_section != NULL)
6560 sec = sec->output_section;
6561 if (sec->owner == abfd
6562 && (indx = sec->index) < elf_num_section_syms (abfd)
6563 && elf_section_syms (abfd)[indx] != NULL)
6564 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6567 idx = asym_ptr->udata.i;
6571 /* This case can occur when using --strip-symbol on a symbol
6572 which is used in a relocation entry. */
6574 /* xgettext:c-format */
6575 (_("%pB: symbol `%s' required but not present"),
6576 abfd, bfd_asymbol_name (asym_ptr));
6577 bfd_set_error (bfd_error_no_symbols);
6584 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6585 (long) asym_ptr, asym_ptr->name, idx, flags);
6593 /* Rewrite program header information. */
6596 rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
6598 Elf_Internal_Ehdr *iehdr;
6599 struct elf_segment_map *map;
6600 struct elf_segment_map *map_first;
6601 struct elf_segment_map **pointer_to_map;
6602 Elf_Internal_Phdr *segment;
6605 unsigned int num_segments;
6606 bfd_boolean phdr_included = FALSE;
6607 bfd_boolean p_paddr_valid;
6608 bfd_vma maxpagesize;
6609 struct elf_segment_map *phdr_adjust_seg = NULL;
6610 unsigned int phdr_adjust_num = 0;
6611 const struct elf_backend_data *bed;
6613 bed = get_elf_backend_data (ibfd);
6614 iehdr = elf_elfheader (ibfd);
6617 pointer_to_map = &map_first;
6619 num_segments = elf_elfheader (ibfd)->e_phnum;
6620 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6622 /* Returns the end address of the segment + 1. */
6623 #define SEGMENT_END(segment, start) \
6624 (start + (segment->p_memsz > segment->p_filesz \
6625 ? segment->p_memsz : segment->p_filesz))
6627 #define SECTION_SIZE(section, segment) \
6628 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6629 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6630 ? section->size : 0)
6632 /* Returns TRUE if the given section is contained within
6633 the given segment. VMA addresses are compared. */
6634 #define IS_CONTAINED_BY_VMA(section, segment) \
6635 (section->vma >= segment->p_vaddr \
6636 && (section->vma + SECTION_SIZE (section, segment) \
6637 <= (SEGMENT_END (segment, segment->p_vaddr))))
6639 /* Returns TRUE if the given section is contained within
6640 the given segment. LMA addresses are compared. */
6641 #define IS_CONTAINED_BY_LMA(section, segment, base) \
6642 (section->lma >= base \
6643 && (section->lma + SECTION_SIZE (section, segment) \
6644 <= SEGMENT_END (segment, base)))
6646 /* Handle PT_NOTE segment. */
6647 #define IS_NOTE(p, s) \
6648 (p->p_type == PT_NOTE \
6649 && elf_section_type (s) == SHT_NOTE \
6650 && (bfd_vma) s->filepos >= p->p_offset \
6651 && ((bfd_vma) s->filepos + s->size \
6652 <= p->p_offset + p->p_filesz))
6654 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6656 #define IS_COREFILE_NOTE(p, s) \
6658 && bfd_get_format (ibfd) == bfd_core \
6662 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6663 linker, which generates a PT_INTERP section with p_vaddr and
6664 p_memsz set to 0. */
6665 #define IS_SOLARIS_PT_INTERP(p, s) \
6667 && p->p_paddr == 0 \
6668 && p->p_memsz == 0 \
6669 && p->p_filesz > 0 \
6670 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6672 && (bfd_vma) s->filepos >= p->p_offset \
6673 && ((bfd_vma) s->filepos + s->size \
6674 <= p->p_offset + p->p_filesz))
6676 /* Decide if the given section should be included in the given segment.
6677 A section will be included if:
6678 1. It is within the address space of the segment -- we use the LMA
6679 if that is set for the segment and the VMA otherwise,
6680 2. It is an allocated section or a NOTE section in a PT_NOTE
6682 3. There is an output section associated with it,
6683 4. The section has not already been allocated to a previous segment.
6684 5. PT_GNU_STACK segments do not include any sections.
6685 6. PT_TLS segment includes only SHF_TLS sections.
6686 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6687 8. PT_DYNAMIC should not contain empty sections at the beginning
6688 (with the possible exception of .dynamic). */
6689 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
6690 ((((segment->p_paddr \
6691 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
6692 : IS_CONTAINED_BY_VMA (section, segment)) \
6693 && (section->flags & SEC_ALLOC) != 0) \
6694 || IS_NOTE (segment, section)) \
6695 && segment->p_type != PT_GNU_STACK \
6696 && (segment->p_type != PT_TLS \
6697 || (section->flags & SEC_THREAD_LOCAL)) \
6698 && (segment->p_type == PT_LOAD \
6699 || segment->p_type == PT_TLS \
6700 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6701 && (segment->p_type != PT_DYNAMIC \
6702 || SECTION_SIZE (section, segment) > 0 \
6703 || (segment->p_paddr \
6704 ? segment->p_paddr != section->lma \
6705 : segment->p_vaddr != section->vma) \
6706 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
6708 && (segment->p_type != PT_LOAD || !section->segment_mark))
6710 /* If the output section of a section in the input segment is NULL,
6711 it is removed from the corresponding output segment. */
6712 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
6713 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
6714 && section->output_section != NULL)
6716 /* Returns TRUE iff seg1 starts after the end of seg2. */
6717 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6718 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6720 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6721 their VMA address ranges and their LMA address ranges overlap.
6722 It is possible to have overlapping VMA ranges without overlapping LMA
6723 ranges. RedBoot images for example can have both .data and .bss mapped
6724 to the same VMA range, but with the .data section mapped to a different
6726 #define SEGMENT_OVERLAPS(seg1, seg2) \
6727 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
6728 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
6729 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
6730 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
6732 /* Initialise the segment mark field. */
6733 for (section = ibfd->sections; section != NULL; section = section->next)
6734 section->segment_mark = FALSE;
6736 /* The Solaris linker creates program headers in which all the
6737 p_paddr fields are zero. When we try to objcopy or strip such a
6738 file, we get confused. Check for this case, and if we find it
6739 don't set the p_paddr_valid fields. */
6740 p_paddr_valid = FALSE;
6741 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6744 if (segment->p_paddr != 0)
6746 p_paddr_valid = TRUE;
6750 /* Scan through the segments specified in the program header
6751 of the input BFD. For this first scan we look for overlaps
6752 in the loadable segments. These can be created by weird
6753 parameters to objcopy. Also, fix some solaris weirdness. */
6754 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6759 Elf_Internal_Phdr *segment2;
6761 if (segment->p_type == PT_INTERP)
6762 for (section = ibfd->sections; section; section = section->next)
6763 if (IS_SOLARIS_PT_INTERP (segment, section))
6765 /* Mininal change so that the normal section to segment
6766 assignment code will work. */
6767 segment->p_vaddr = section->vma;
6771 if (segment->p_type != PT_LOAD)
6773 /* Remove PT_GNU_RELRO segment. */
6774 if (segment->p_type == PT_GNU_RELRO)
6775 segment->p_type = PT_NULL;
6779 /* Determine if this segment overlaps any previous segments. */
6780 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
6782 bfd_signed_vma extra_length;
6784 if (segment2->p_type != PT_LOAD
6785 || !SEGMENT_OVERLAPS (segment, segment2))
6788 /* Merge the two segments together. */
6789 if (segment2->p_vaddr < segment->p_vaddr)
6791 /* Extend SEGMENT2 to include SEGMENT and then delete
6793 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6794 - SEGMENT_END (segment2, segment2->p_vaddr));
6796 if (extra_length > 0)
6798 segment2->p_memsz += extra_length;
6799 segment2->p_filesz += extra_length;
6802 segment->p_type = PT_NULL;
6804 /* Since we have deleted P we must restart the outer loop. */
6806 segment = elf_tdata (ibfd)->phdr;
6811 /* Extend SEGMENT to include SEGMENT2 and then delete
6813 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
6814 - SEGMENT_END (segment, segment->p_vaddr));
6816 if (extra_length > 0)
6818 segment->p_memsz += extra_length;
6819 segment->p_filesz += extra_length;
6822 segment2->p_type = PT_NULL;
6827 /* The second scan attempts to assign sections to segments. */
6828 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6832 unsigned int section_count;
6833 asection **sections;
6834 asection *output_section;
6836 asection *matching_lma;
6837 asection *suggested_lma;
6840 asection *first_section;
6842 if (segment->p_type == PT_NULL)
6845 first_section = NULL;
6846 /* Compute how many sections might be placed into this segment. */
6847 for (section = ibfd->sections, section_count = 0;
6849 section = section->next)
6851 /* Find the first section in the input segment, which may be
6852 removed from the corresponding output segment. */
6853 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
6855 if (first_section == NULL)
6856 first_section = section;
6857 if (section->output_section != NULL)
6862 /* Allocate a segment map big enough to contain
6863 all of the sections we have selected. */
6864 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
6865 amt += (bfd_size_type) section_count * sizeof (asection *);
6866 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
6870 /* Initialise the fields of the segment map. Default to
6871 using the physical address of the segment in the input BFD. */
6873 map->p_type = segment->p_type;
6874 map->p_flags = segment->p_flags;
6875 map->p_flags_valid = 1;
6877 /* If the first section in the input segment is removed, there is
6878 no need to preserve segment physical address in the corresponding
6880 if (!first_section || first_section->output_section != NULL)
6882 map->p_paddr = segment->p_paddr;
6883 map->p_paddr_valid = p_paddr_valid;
6886 /* Determine if this segment contains the ELF file header
6887 and if it contains the program headers themselves. */
6888 map->includes_filehdr = (segment->p_offset == 0
6889 && segment->p_filesz >= iehdr->e_ehsize);
6890 map->includes_phdrs = 0;
6892 if (!phdr_included || segment->p_type != PT_LOAD)
6894 map->includes_phdrs =
6895 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
6896 && (segment->p_offset + segment->p_filesz
6897 >= ((bfd_vma) iehdr->e_phoff
6898 + iehdr->e_phnum * iehdr->e_phentsize)));
6900 if (segment->p_type == PT_LOAD && map->includes_phdrs)
6901 phdr_included = TRUE;
6904 if (section_count == 0)
6906 /* Special segments, such as the PT_PHDR segment, may contain
6907 no sections, but ordinary, loadable segments should contain
6908 something. They are allowed by the ELF spec however, so only
6909 a warning is produced.
6910 There is however the valid use case of embedded systems which
6911 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
6912 flash memory with zeros. No warning is shown for that case. */
6913 if (segment->p_type == PT_LOAD
6914 && (segment->p_filesz > 0 || segment->p_memsz == 0))
6915 /* xgettext:c-format */
6917 (_("%pB: warning: empty loadable segment detected"
6918 " at vaddr=%#" PRIx64 ", is this intentional?"),
6919 ibfd, (uint64_t) segment->p_vaddr);
6921 map->p_vaddr_offset = segment->p_vaddr;
6923 *pointer_to_map = map;
6924 pointer_to_map = &map->next;
6929 /* Now scan the sections in the input BFD again and attempt
6930 to add their corresponding output sections to the segment map.
6931 The problem here is how to handle an output section which has
6932 been moved (ie had its LMA changed). There are four possibilities:
6934 1. None of the sections have been moved.
6935 In this case we can continue to use the segment LMA from the
6938 2. All of the sections have been moved by the same amount.
6939 In this case we can change the segment's LMA to match the LMA
6940 of the first section.
6942 3. Some of the sections have been moved, others have not.
6943 In this case those sections which have not been moved can be
6944 placed in the current segment which will have to have its size,
6945 and possibly its LMA changed, and a new segment or segments will
6946 have to be created to contain the other sections.
6948 4. The sections have been moved, but not by the same amount.
6949 In this case we can change the segment's LMA to match the LMA
6950 of the first section and we will have to create a new segment
6951 or segments to contain the other sections.
6953 In order to save time, we allocate an array to hold the section
6954 pointers that we are interested in. As these sections get assigned
6955 to a segment, they are removed from this array. */
6957 sections = (asection **) bfd_malloc2 (section_count, sizeof (asection *));
6958 if (sections == NULL)
6961 /* Step One: Scan for segment vs section LMA conflicts.
6962 Also add the sections to the section array allocated above.
6963 Also add the sections to the current segment. In the common
6964 case, where the sections have not been moved, this means that
6965 we have completely filled the segment, and there is nothing
6968 matching_lma = NULL;
6969 suggested_lma = NULL;
6971 for (section = first_section, j = 0;
6973 section = section->next)
6975 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
6977 output_section = section->output_section;
6979 sections[j++] = section;
6981 /* The Solaris native linker always sets p_paddr to 0.
6982 We try to catch that case here, and set it to the
6983 correct value. Note - some backends require that
6984 p_paddr be left as zero. */
6986 && segment->p_vaddr != 0
6987 && !bed->want_p_paddr_set_to_zero
6989 && output_section->lma != 0
6990 && (align_power (segment->p_vaddr
6991 + (map->includes_filehdr
6992 ? iehdr->e_ehsize : 0)
6993 + (map->includes_phdrs
6994 ? iehdr->e_phnum * iehdr->e_phentsize
6996 output_section->alignment_power)
6997 == output_section->vma))
6998 map->p_paddr = segment->p_vaddr;
7000 /* Match up the physical address of the segment with the
7001 LMA address of the output section. */
7002 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
7003 || IS_COREFILE_NOTE (segment, section)
7004 || (bed->want_p_paddr_set_to_zero
7005 && IS_CONTAINED_BY_VMA (output_section, segment)))
7007 if (matching_lma == NULL
7008 || output_section->lma < matching_lma->lma)
7009 matching_lma = output_section;
7011 /* We assume that if the section fits within the segment
7012 then it does not overlap any other section within that
7014 map->sections[isec++] = output_section;
7016 else if (suggested_lma == NULL)
7017 suggested_lma = output_section;
7019 if (j == section_count)
7024 BFD_ASSERT (j == section_count);
7026 /* Step Two: Adjust the physical address of the current segment,
7028 if (isec == section_count)
7030 /* All of the sections fitted within the segment as currently
7031 specified. This is the default case. Add the segment to
7032 the list of built segments and carry on to process the next
7033 program header in the input BFD. */
7034 map->count = section_count;
7035 *pointer_to_map = map;
7036 pointer_to_map = &map->next;
7039 && !bed->want_p_paddr_set_to_zero
7040 && matching_lma->lma != map->p_paddr
7041 && !map->includes_filehdr
7042 && !map->includes_phdrs)
7043 /* There is some padding before the first section in the
7044 segment. So, we must account for that in the output
7046 map->p_vaddr_offset = map->p_paddr - matching_lma->lma;
7053 /* Change the current segment's physical address to match
7054 the LMA of the first section that fitted, or if no
7055 section fitted, the first section. */
7056 if (matching_lma == NULL)
7057 matching_lma = suggested_lma;
7059 map->p_paddr = matching_lma->lma;
7061 /* Offset the segment physical address from the lma
7062 to allow for space taken up by elf headers. */
7063 if (map->includes_phdrs)
7065 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7067 /* iehdr->e_phnum is just an estimate of the number
7068 of program headers that we will need. Make a note
7069 here of the number we used and the segment we chose
7070 to hold these headers, so that we can adjust the
7071 offset when we know the correct value. */
7072 phdr_adjust_num = iehdr->e_phnum;
7073 phdr_adjust_seg = map;
7076 if (map->includes_filehdr)
7078 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7079 map->p_paddr -= iehdr->e_ehsize;
7080 /* We've subtracted off the size of headers from the
7081 first section lma, but there may have been some
7082 alignment padding before that section too. Try to
7083 account for that by adjusting the segment lma down to
7084 the same alignment. */
7085 if (segment->p_align != 0 && segment->p_align < align)
7086 align = segment->p_align;
7087 map->p_paddr &= -align;
7091 /* Step Three: Loop over the sections again, this time assigning
7092 those that fit to the current segment and removing them from the
7093 sections array; but making sure not to leave large gaps. Once all
7094 possible sections have been assigned to the current segment it is
7095 added to the list of built segments and if sections still remain
7096 to be assigned, a new segment is constructed before repeating
7102 suggested_lma = NULL;
7104 /* Fill the current segment with sections that fit. */
7105 for (j = 0; j < section_count; j++)
7107 section = sections[j];
7109 if (section == NULL)
7112 output_section = section->output_section;
7114 BFD_ASSERT (output_section != NULL);
7116 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
7117 || IS_COREFILE_NOTE (segment, section))
7119 if (map->count == 0)
7121 /* If the first section in a segment does not start at
7122 the beginning of the segment, then something is
7124 if (align_power (map->p_paddr
7125 + (map->includes_filehdr
7126 ? iehdr->e_ehsize : 0)
7127 + (map->includes_phdrs
7128 ? iehdr->e_phnum * iehdr->e_phentsize
7130 output_section->alignment_power)
7131 != output_section->lma)
7138 prev_sec = map->sections[map->count - 1];
7140 /* If the gap between the end of the previous section
7141 and the start of this section is more than
7142 maxpagesize then we need to start a new segment. */
7143 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
7145 < BFD_ALIGN (output_section->lma, maxpagesize))
7146 || (prev_sec->lma + prev_sec->size
7147 > output_section->lma))
7149 if (suggested_lma == NULL)
7150 suggested_lma = output_section;
7156 map->sections[map->count++] = output_section;
7159 if (segment->p_type == PT_LOAD)
7160 section->segment_mark = TRUE;
7162 else if (suggested_lma == NULL)
7163 suggested_lma = output_section;
7166 BFD_ASSERT (map->count > 0);
7168 /* Add the current segment to the list of built segments. */
7169 *pointer_to_map = map;
7170 pointer_to_map = &map->next;
7172 if (isec < section_count)
7174 /* We still have not allocated all of the sections to
7175 segments. Create a new segment here, initialise it
7176 and carry on looping. */
7177 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7178 amt += (bfd_size_type) section_count * sizeof (asection *);
7179 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7186 /* Initialise the fields of the segment map. Set the physical
7187 physical address to the LMA of the first section that has
7188 not yet been assigned. */
7190 map->p_type = segment->p_type;
7191 map->p_flags = segment->p_flags;
7192 map->p_flags_valid = 1;
7193 map->p_paddr = suggested_lma->lma;
7194 map->p_paddr_valid = p_paddr_valid;
7195 map->includes_filehdr = 0;
7196 map->includes_phdrs = 0;
7199 while (isec < section_count);
7204 elf_seg_map (obfd) = map_first;
7206 /* If we had to estimate the number of program headers that were
7207 going to be needed, then check our estimate now and adjust
7208 the offset if necessary. */
7209 if (phdr_adjust_seg != NULL)
7213 for (count = 0, map = map_first; map != NULL; map = map->next)
7216 if (count > phdr_adjust_num)
7217 phdr_adjust_seg->p_paddr
7218 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
7220 for (map = map_first; map != NULL; map = map->next)
7221 if (map->p_type == PT_PHDR)
7224 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7225 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7232 #undef IS_CONTAINED_BY_VMA
7233 #undef IS_CONTAINED_BY_LMA
7235 #undef IS_COREFILE_NOTE
7236 #undef IS_SOLARIS_PT_INTERP
7237 #undef IS_SECTION_IN_INPUT_SEGMENT
7238 #undef INCLUDE_SECTION_IN_SEGMENT
7239 #undef SEGMENT_AFTER_SEGMENT
7240 #undef SEGMENT_OVERLAPS
7244 /* Copy ELF program header information. */
7247 copy_elf_program_header (bfd *ibfd, bfd *obfd)
7249 Elf_Internal_Ehdr *iehdr;
7250 struct elf_segment_map *map;
7251 struct elf_segment_map *map_first;
7252 struct elf_segment_map **pointer_to_map;
7253 Elf_Internal_Phdr *segment;
7255 unsigned int num_segments;
7256 bfd_boolean phdr_included = FALSE;
7257 bfd_boolean p_paddr_valid;
7259 iehdr = elf_elfheader (ibfd);
7262 pointer_to_map = &map_first;
7264 /* If all the segment p_paddr fields are zero, don't set
7265 map->p_paddr_valid. */
7266 p_paddr_valid = FALSE;
7267 num_segments = elf_elfheader (ibfd)->e_phnum;
7268 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7271 if (segment->p_paddr != 0)
7273 p_paddr_valid = TRUE;
7277 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7282 unsigned int section_count;
7284 Elf_Internal_Shdr *this_hdr;
7285 asection *first_section = NULL;
7286 asection *lowest_section;
7287 bfd_boolean no_contents = TRUE;
7289 /* Compute how many sections are in this segment. */
7290 for (section = ibfd->sections, section_count = 0;
7292 section = section->next)
7294 this_hdr = &(elf_section_data(section)->this_hdr);
7295 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7297 if (first_section == NULL)
7298 first_section = section;
7299 if (elf_section_type (section) != SHT_NOBITS)
7300 no_contents = FALSE;
7305 /* Allocate a segment map big enough to contain
7306 all of the sections we have selected. */
7307 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7308 amt += (bfd_size_type) section_count * sizeof (asection *);
7309 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7313 /* Initialize the fields of the output segment map with the
7316 map->p_type = segment->p_type;
7317 map->p_flags = segment->p_flags;
7318 map->p_flags_valid = 1;
7319 map->p_paddr = segment->p_paddr;
7320 map->p_paddr_valid = p_paddr_valid;
7321 map->p_align = segment->p_align;
7322 map->p_align_valid = 1;
7323 map->p_vaddr_offset = 0;
7325 if (map->p_type == PT_GNU_RELRO
7326 || map->p_type == PT_GNU_STACK)
7328 /* The PT_GNU_RELRO segment may contain the first a few
7329 bytes in the .got.plt section even if the whole .got.plt
7330 section isn't in the PT_GNU_RELRO segment. We won't
7331 change the size of the PT_GNU_RELRO segment.
7332 Similarly, PT_GNU_STACK size is significant on uclinux
7334 map->p_size = segment->p_memsz;
7335 map->p_size_valid = 1;
7338 /* Determine if this segment contains the ELF file header
7339 and if it contains the program headers themselves. */
7340 map->includes_filehdr = (segment->p_offset == 0
7341 && segment->p_filesz >= iehdr->e_ehsize);
7343 map->includes_phdrs = 0;
7344 if (! phdr_included || segment->p_type != PT_LOAD)
7346 map->includes_phdrs =
7347 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7348 && (segment->p_offset + segment->p_filesz
7349 >= ((bfd_vma) iehdr->e_phoff
7350 + iehdr->e_phnum * iehdr->e_phentsize)));
7352 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7353 phdr_included = TRUE;
7356 lowest_section = NULL;
7357 if (section_count != 0)
7359 unsigned int isec = 0;
7361 for (section = first_section;
7363 section = section->next)
7365 this_hdr = &(elf_section_data(section)->this_hdr);
7366 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7368 map->sections[isec++] = section->output_section;
7369 if ((section->flags & SEC_ALLOC) != 0)
7373 if (lowest_section == NULL
7374 || section->lma < lowest_section->lma)
7375 lowest_section = section;
7377 /* Section lmas are set up from PT_LOAD header
7378 p_paddr in _bfd_elf_make_section_from_shdr.
7379 If this header has a p_paddr that disagrees
7380 with the section lma, flag the p_paddr as
7382 if ((section->flags & SEC_LOAD) != 0)
7383 seg_off = this_hdr->sh_offset - segment->p_offset;
7385 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7386 if (section->lma - segment->p_paddr != seg_off)
7387 map->p_paddr_valid = FALSE;
7389 if (isec == section_count)
7395 if (map->includes_filehdr && lowest_section != NULL)
7397 /* Try to keep the space used by the headers plus any
7398 padding fixed. If there are sections with file contents
7399 in this segment then the lowest sh_offset is the best
7400 guess. Otherwise the segment only has file contents for
7401 the headers, and p_filesz is the best guess. */
7403 map->header_size = segment->p_filesz;
7405 map->header_size = lowest_section->filepos;
7408 if (section_count == 0)
7409 map->p_vaddr_offset = segment->p_vaddr;
7410 else if (!map->includes_phdrs
7411 && !map->includes_filehdr
7412 && map->p_paddr_valid)
7413 /* Account for padding before the first section. */
7414 map->p_vaddr_offset = (segment->p_paddr
7415 - (lowest_section ? lowest_section->lma : 0));
7417 map->count = section_count;
7418 *pointer_to_map = map;
7419 pointer_to_map = &map->next;
7422 elf_seg_map (obfd) = map_first;
7426 /* Copy private BFD data. This copies or rewrites ELF program header
7430 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7432 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7433 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7436 if (elf_tdata (ibfd)->phdr == NULL)
7439 if (ibfd->xvec == obfd->xvec)
7441 /* Check to see if any sections in the input BFD
7442 covered by ELF program header have changed. */
7443 Elf_Internal_Phdr *segment;
7444 asection *section, *osec;
7445 unsigned int i, num_segments;
7446 Elf_Internal_Shdr *this_hdr;
7447 const struct elf_backend_data *bed;
7449 bed = get_elf_backend_data (ibfd);
7451 /* Regenerate the segment map if p_paddr is set to 0. */
7452 if (bed->want_p_paddr_set_to_zero)
7455 /* Initialize the segment mark field. */
7456 for (section = obfd->sections; section != NULL;
7457 section = section->next)
7458 section->segment_mark = FALSE;
7460 num_segments = elf_elfheader (ibfd)->e_phnum;
7461 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7465 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7466 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7467 which severly confuses things, so always regenerate the segment
7468 map in this case. */
7469 if (segment->p_paddr == 0
7470 && segment->p_memsz == 0
7471 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
7474 for (section = ibfd->sections;
7475 section != NULL; section = section->next)
7477 /* We mark the output section so that we know it comes
7478 from the input BFD. */
7479 osec = section->output_section;
7481 osec->segment_mark = TRUE;
7483 /* Check if this section is covered by the segment. */
7484 this_hdr = &(elf_section_data(section)->this_hdr);
7485 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7487 /* FIXME: Check if its output section is changed or
7488 removed. What else do we need to check? */
7490 || section->flags != osec->flags
7491 || section->lma != osec->lma
7492 || section->vma != osec->vma
7493 || section->size != osec->size
7494 || section->rawsize != osec->rawsize
7495 || section->alignment_power != osec->alignment_power)
7501 /* Check to see if any output section do not come from the
7503 for (section = obfd->sections; section != NULL;
7504 section = section->next)
7506 if (!section->segment_mark)
7509 section->segment_mark = FALSE;
7512 return copy_elf_program_header (ibfd, obfd);
7516 if (ibfd->xvec == obfd->xvec)
7518 /* When rewriting program header, set the output maxpagesize to
7519 the maximum alignment of input PT_LOAD segments. */
7520 Elf_Internal_Phdr *segment;
7522 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7523 bfd_vma maxpagesize = 0;
7525 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7528 if (segment->p_type == PT_LOAD
7529 && maxpagesize < segment->p_align)
7531 /* PR 17512: file: f17299af. */
7532 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
7533 /* xgettext:c-format */
7534 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7535 PRIx64 " is too large"),
7536 ibfd, (uint64_t) segment->p_align);
7538 maxpagesize = segment->p_align;
7541 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7542 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7545 return rewrite_elf_program_header (ibfd, obfd);
7548 /* Initialize private output section information from input section. */
7551 _bfd_elf_init_private_section_data (bfd *ibfd,
7555 struct bfd_link_info *link_info)
7558 Elf_Internal_Shdr *ihdr, *ohdr;
7559 bfd_boolean final_link = (link_info != NULL
7560 && !bfd_link_relocatable (link_info));
7562 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7563 || obfd->xvec->flavour != bfd_target_elf_flavour)
7566 BFD_ASSERT (elf_section_data (osec) != NULL);
7568 /* For objcopy and relocatable link, don't copy the output ELF
7569 section type from input if the output BFD section flags have been
7570 set to something different. For a final link allow some flags
7571 that the linker clears to differ. */
7572 if (elf_section_type (osec) == SHT_NULL
7573 && (osec->flags == isec->flags
7575 && ((osec->flags ^ isec->flags)
7576 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
7577 elf_section_type (osec) = elf_section_type (isec);
7579 /* FIXME: Is this correct for all OS/PROC specific flags? */
7580 elf_section_flags (osec) |= (elf_section_flags (isec)
7581 & (SHF_MASKOS | SHF_MASKPROC));
7583 /* Copy sh_info from input for mbind section. */
7584 if (elf_section_flags (isec) & SHF_GNU_MBIND)
7585 elf_section_data (osec)->this_hdr.sh_info
7586 = elf_section_data (isec)->this_hdr.sh_info;
7588 /* Set things up for objcopy and relocatable link. The output
7589 SHT_GROUP section will have its elf_next_in_group pointing back
7590 to the input group members. Ignore linker created group section.
7591 See elfNN_ia64_object_p in elfxx-ia64.c. */
7592 if ((link_info == NULL
7593 || !link_info->resolve_section_groups)
7594 && (elf_sec_group (isec) == NULL
7595 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
7597 if (elf_section_flags (isec) & SHF_GROUP)
7598 elf_section_flags (osec) |= SHF_GROUP;
7599 elf_next_in_group (osec) = elf_next_in_group (isec);
7600 elf_section_data (osec)->group = elf_section_data (isec)->group;
7603 /* If not decompress, preserve SHF_COMPRESSED. */
7604 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7605 elf_section_flags (osec) |= (elf_section_flags (isec)
7608 ihdr = &elf_section_data (isec)->this_hdr;
7610 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7611 don't use the output section of the linked-to section since it
7612 may be NULL at this point. */
7613 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7615 ohdr = &elf_section_data (osec)->this_hdr;
7616 ohdr->sh_flags |= SHF_LINK_ORDER;
7617 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7620 osec->use_rela_p = isec->use_rela_p;
7625 /* Copy private section information. This copies over the entsize
7626 field, and sometimes the info field. */
7629 _bfd_elf_copy_private_section_data (bfd *ibfd,
7634 Elf_Internal_Shdr *ihdr, *ohdr;
7636 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7637 || obfd->xvec->flavour != bfd_target_elf_flavour)
7640 ihdr = &elf_section_data (isec)->this_hdr;
7641 ohdr = &elf_section_data (osec)->this_hdr;
7643 ohdr->sh_entsize = ihdr->sh_entsize;
7645 if (ihdr->sh_type == SHT_SYMTAB
7646 || ihdr->sh_type == SHT_DYNSYM
7647 || ihdr->sh_type == SHT_GNU_verneed
7648 || ihdr->sh_type == SHT_GNU_verdef)
7649 ohdr->sh_info = ihdr->sh_info;
7651 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7655 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7656 necessary if we are removing either the SHT_GROUP section or any of
7657 the group member sections. DISCARDED is the value that a section's
7658 output_section has if the section will be discarded, NULL when this
7659 function is called from objcopy, bfd_abs_section_ptr when called
7663 _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
7667 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
7668 if (elf_section_type (isec) == SHT_GROUP)
7670 asection *first = elf_next_in_group (isec);
7671 asection *s = first;
7672 bfd_size_type removed = 0;
7676 /* If this member section is being output but the
7677 SHT_GROUP section is not, then clear the group info
7678 set up by _bfd_elf_copy_private_section_data. */
7679 if (s->output_section != discarded
7680 && isec->output_section == discarded)
7682 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7683 elf_group_name (s->output_section) = NULL;
7685 /* Conversely, if the member section is not being output
7686 but the SHT_GROUP section is, then adjust its size. */
7687 else if (s->output_section == discarded
7688 && isec->output_section != discarded)
7690 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7692 if (elf_sec->rel.hdr != NULL
7693 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7695 if (elf_sec->rela.hdr != NULL
7696 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7699 s = elf_next_in_group (s);
7705 if (discarded != NULL)
7707 /* If we've been called for ld -r, then we need to
7708 adjust the input section size. */
7709 if (isec->rawsize == 0)
7710 isec->rawsize = isec->size;
7711 isec->size = isec->rawsize - removed;
7712 if (isec->size <= 4)
7715 isec->flags |= SEC_EXCLUDE;
7720 /* Adjust the output section size when called from
7722 isec->output_section->size -= removed;
7723 if (isec->output_section->size <= 4)
7725 isec->output_section->size = 0;
7726 isec->output_section->flags |= SEC_EXCLUDE;
7735 /* Copy private header information. */
7738 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7740 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7741 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7744 /* Copy over private BFD data if it has not already been copied.
7745 This must be done here, rather than in the copy_private_bfd_data
7746 entry point, because the latter is called after the section
7747 contents have been set, which means that the program headers have
7748 already been worked out. */
7749 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
7751 if (! copy_private_bfd_data (ibfd, obfd))
7755 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7758 /* Copy private symbol information. If this symbol is in a section
7759 which we did not map into a BFD section, try to map the section
7760 index correctly. We use special macro definitions for the mapped
7761 section indices; these definitions are interpreted by the
7762 swap_out_syms function. */
7764 #define MAP_ONESYMTAB (SHN_HIOS + 1)
7765 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
7766 #define MAP_STRTAB (SHN_HIOS + 3)
7767 #define MAP_SHSTRTAB (SHN_HIOS + 4)
7768 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
7771 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
7776 elf_symbol_type *isym, *osym;
7778 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7779 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7782 isym = elf_symbol_from (ibfd, isymarg);
7783 osym = elf_symbol_from (obfd, osymarg);
7786 && isym->internal_elf_sym.st_shndx != 0
7788 && bfd_is_abs_section (isym->symbol.section))
7792 shndx = isym->internal_elf_sym.st_shndx;
7793 if (shndx == elf_onesymtab (ibfd))
7794 shndx = MAP_ONESYMTAB;
7795 else if (shndx == elf_dynsymtab (ibfd))
7796 shndx = MAP_DYNSYMTAB;
7797 else if (shndx == elf_strtab_sec (ibfd))
7799 else if (shndx == elf_shstrtab_sec (ibfd))
7800 shndx = MAP_SHSTRTAB;
7801 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
7802 shndx = MAP_SYM_SHNDX;
7803 osym->internal_elf_sym.st_shndx = shndx;
7809 /* Swap out the symbols. */
7812 swap_out_syms (bfd *abfd,
7813 struct elf_strtab_hash **sttp,
7816 const struct elf_backend_data *bed;
7819 struct elf_strtab_hash *stt;
7820 Elf_Internal_Shdr *symtab_hdr;
7821 Elf_Internal_Shdr *symtab_shndx_hdr;
7822 Elf_Internal_Shdr *symstrtab_hdr;
7823 struct elf_sym_strtab *symstrtab;
7824 bfd_byte *outbound_syms;
7825 bfd_byte *outbound_shndx;
7826 unsigned long outbound_syms_index;
7827 unsigned long outbound_shndx_index;
7829 unsigned int num_locals;
7831 bfd_boolean name_local_sections;
7833 if (!elf_map_symbols (abfd, &num_locals))
7836 /* Dump out the symtabs. */
7837 stt = _bfd_elf_strtab_init ();
7841 bed = get_elf_backend_data (abfd);
7842 symcount = bfd_get_symcount (abfd);
7843 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7844 symtab_hdr->sh_type = SHT_SYMTAB;
7845 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
7846 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
7847 symtab_hdr->sh_info = num_locals + 1;
7848 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
7850 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
7851 symstrtab_hdr->sh_type = SHT_STRTAB;
7853 /* Allocate buffer to swap out the .strtab section. */
7854 symstrtab = (struct elf_sym_strtab *) bfd_malloc ((symcount + 1)
7855 * sizeof (*symstrtab));
7856 if (symstrtab == NULL)
7858 _bfd_elf_strtab_free (stt);
7862 outbound_syms = (bfd_byte *) bfd_alloc2 (abfd, 1 + symcount,
7863 bed->s->sizeof_sym);
7864 if (outbound_syms == NULL)
7867 _bfd_elf_strtab_free (stt);
7871 symtab_hdr->contents = outbound_syms;
7872 outbound_syms_index = 0;
7874 outbound_shndx = NULL;
7875 outbound_shndx_index = 0;
7877 if (elf_symtab_shndx_list (abfd))
7879 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
7880 if (symtab_shndx_hdr->sh_name != 0)
7882 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
7883 outbound_shndx = (bfd_byte *)
7884 bfd_zalloc2 (abfd, 1 + symcount, sizeof (Elf_External_Sym_Shndx));
7885 if (outbound_shndx == NULL)
7888 symtab_shndx_hdr->contents = outbound_shndx;
7889 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
7890 symtab_shndx_hdr->sh_size = amt;
7891 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
7892 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
7894 /* FIXME: What about any other headers in the list ? */
7897 /* Now generate the data (for "contents"). */
7899 /* Fill in zeroth symbol and swap it out. */
7900 Elf_Internal_Sym sym;
7906 sym.st_shndx = SHN_UNDEF;
7907 sym.st_target_internal = 0;
7908 symstrtab[0].sym = sym;
7909 symstrtab[0].dest_index = outbound_syms_index;
7910 symstrtab[0].destshndx_index = outbound_shndx_index;
7911 outbound_syms_index++;
7912 if (outbound_shndx != NULL)
7913 outbound_shndx_index++;
7917 = (bed->elf_backend_name_local_section_symbols
7918 && bed->elf_backend_name_local_section_symbols (abfd));
7920 syms = bfd_get_outsymbols (abfd);
7921 for (idx = 0; idx < symcount;)
7923 Elf_Internal_Sym sym;
7924 bfd_vma value = syms[idx]->value;
7925 elf_symbol_type *type_ptr;
7926 flagword flags = syms[idx]->flags;
7929 if (!name_local_sections
7930 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
7932 /* Local section symbols have no name. */
7933 sym.st_name = (unsigned long) -1;
7937 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
7938 to get the final offset for st_name. */
7940 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
7942 if (sym.st_name == (unsigned long) -1)
7946 type_ptr = elf_symbol_from (abfd, syms[idx]);
7948 if ((flags & BSF_SECTION_SYM) == 0
7949 && bfd_is_com_section (syms[idx]->section))
7951 /* ELF common symbols put the alignment into the `value' field,
7952 and the size into the `size' field. This is backwards from
7953 how BFD handles it, so reverse it here. */
7954 sym.st_size = value;
7955 if (type_ptr == NULL
7956 || type_ptr->internal_elf_sym.st_value == 0)
7957 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
7959 sym.st_value = type_ptr->internal_elf_sym.st_value;
7960 sym.st_shndx = _bfd_elf_section_from_bfd_section
7961 (abfd, syms[idx]->section);
7965 asection *sec = syms[idx]->section;
7968 if (sec->output_section)
7970 value += sec->output_offset;
7971 sec = sec->output_section;
7974 /* Don't add in the section vma for relocatable output. */
7975 if (! relocatable_p)
7977 sym.st_value = value;
7978 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
7980 if (bfd_is_abs_section (sec)
7982 && type_ptr->internal_elf_sym.st_shndx != 0)
7984 /* This symbol is in a real ELF section which we did
7985 not create as a BFD section. Undo the mapping done
7986 by copy_private_symbol_data. */
7987 shndx = type_ptr->internal_elf_sym.st_shndx;
7991 shndx = elf_onesymtab (abfd);
7994 shndx = elf_dynsymtab (abfd);
7997 shndx = elf_strtab_sec (abfd);
8000 shndx = elf_shstrtab_sec (abfd);
8003 if (elf_symtab_shndx_list (abfd))
8004 shndx = elf_symtab_shndx_list (abfd)->ndx;
8013 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
8015 if (shndx == SHN_BAD)
8019 /* Writing this would be a hell of a lot easier if
8020 we had some decent documentation on bfd, and
8021 knew what to expect of the library, and what to
8022 demand of applications. For example, it
8023 appears that `objcopy' might not set the
8024 section of a symbol to be a section that is
8025 actually in the output file. */
8026 sec2 = bfd_get_section_by_name (abfd, sec->name);
8028 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8029 if (shndx == SHN_BAD)
8031 /* xgettext:c-format */
8033 (_("unable to find equivalent output section"
8034 " for symbol '%s' from section '%s'"),
8035 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8037 bfd_set_error (bfd_error_invalid_operation);
8043 sym.st_shndx = shndx;
8046 if ((flags & BSF_THREAD_LOCAL) != 0)
8048 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8049 type = STT_GNU_IFUNC;
8050 else if ((flags & BSF_FUNCTION) != 0)
8052 else if ((flags & BSF_OBJECT) != 0)
8054 else if ((flags & BSF_RELC) != 0)
8056 else if ((flags & BSF_SRELC) != 0)
8061 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8064 /* Processor-specific types. */
8065 if (type_ptr != NULL
8066 && bed->elf_backend_get_symbol_type)
8067 type = ((*bed->elf_backend_get_symbol_type)
8068 (&type_ptr->internal_elf_sym, type));
8070 if (flags & BSF_SECTION_SYM)
8072 if (flags & BSF_GLOBAL)
8073 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8075 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8077 else if (bfd_is_com_section (syms[idx]->section))
8079 if (type != STT_TLS)
8081 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8082 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8083 ? STT_COMMON : STT_OBJECT);
8085 type = ((flags & BSF_ELF_COMMON) != 0
8086 ? STT_COMMON : STT_OBJECT);
8088 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
8090 else if (bfd_is_und_section (syms[idx]->section))
8091 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8095 else if (flags & BSF_FILE)
8096 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8099 int bind = STB_LOCAL;
8101 if (flags & BSF_LOCAL)
8103 else if (flags & BSF_GNU_UNIQUE)
8104 bind = STB_GNU_UNIQUE;
8105 else if (flags & BSF_WEAK)
8107 else if (flags & BSF_GLOBAL)
8110 sym.st_info = ELF_ST_INFO (bind, type);
8113 if (type_ptr != NULL)
8115 sym.st_other = type_ptr->internal_elf_sym.st_other;
8116 sym.st_target_internal
8117 = type_ptr->internal_elf_sym.st_target_internal;
8122 sym.st_target_internal = 0;
8126 symstrtab[idx].sym = sym;
8127 symstrtab[idx].dest_index = outbound_syms_index;
8128 symstrtab[idx].destshndx_index = outbound_shndx_index;
8130 outbound_syms_index++;
8131 if (outbound_shndx != NULL)
8132 outbound_shndx_index++;
8135 /* Finalize the .strtab section. */
8136 _bfd_elf_strtab_finalize (stt);
8138 /* Swap out the .strtab section. */
8139 for (idx = 0; idx <= symcount; idx++)
8141 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8142 if (elfsym->sym.st_name == (unsigned long) -1)
8143 elfsym->sym.st_name = 0;
8145 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8146 elfsym->sym.st_name);
8147 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8149 + (elfsym->dest_index
8150 * bed->s->sizeof_sym)),
8152 + (elfsym->destshndx_index
8153 * sizeof (Elf_External_Sym_Shndx))));
8158 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
8159 symstrtab_hdr->sh_type = SHT_STRTAB;
8160 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
8161 symstrtab_hdr->sh_addr = 0;
8162 symstrtab_hdr->sh_entsize = 0;
8163 symstrtab_hdr->sh_link = 0;
8164 symstrtab_hdr->sh_info = 0;
8165 symstrtab_hdr->sh_addralign = 1;
8170 /* Return the number of bytes required to hold the symtab vector.
8172 Note that we base it on the count plus 1, since we will null terminate
8173 the vector allocated based on this size. However, the ELF symbol table
8174 always has a dummy entry as symbol #0, so it ends up even. */
8177 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
8181 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8183 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8184 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8186 symtab_size -= sizeof (asymbol *);
8192 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
8196 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8198 if (elf_dynsymtab (abfd) == 0)
8200 bfd_set_error (bfd_error_invalid_operation);
8204 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8205 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8207 symtab_size -= sizeof (asymbol *);
8213 _bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
8216 return (asect->reloc_count + 1) * sizeof (arelent *);
8219 /* Canonicalize the relocs. */
8222 _bfd_elf_canonicalize_reloc (bfd *abfd,
8229 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8231 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
8234 tblptr = section->relocation;
8235 for (i = 0; i < section->reloc_count; i++)
8236 *relptr++ = tblptr++;
8240 return section->reloc_count;
8244 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
8246 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8247 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
8250 bfd_get_symcount (abfd) = symcount;
8255 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8256 asymbol **allocation)
8258 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8259 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
8262 bfd_get_dynamic_symcount (abfd) = symcount;
8266 /* Return the size required for the dynamic reloc entries. Any loadable
8267 section that was actually installed in the BFD, and has type SHT_REL
8268 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8269 dynamic reloc section. */
8272 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
8277 if (elf_dynsymtab (abfd) == 0)
8279 bfd_set_error (bfd_error_invalid_operation);
8283 ret = sizeof (arelent *);
8284 for (s = abfd->sections; s != NULL; s = s->next)
8285 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8286 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8287 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8288 ret += ((s->size / elf_section_data (s)->this_hdr.sh_entsize)
8289 * sizeof (arelent *));
8294 /* Canonicalize the dynamic relocation entries. Note that we return the
8295 dynamic relocations as a single block, although they are actually
8296 associated with particular sections; the interface, which was
8297 designed for SunOS style shared libraries, expects that there is only
8298 one set of dynamic relocs. Any loadable section that was actually
8299 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8300 dynamic symbol table, is considered to be a dynamic reloc section. */
8303 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8307 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
8311 if (elf_dynsymtab (abfd) == 0)
8313 bfd_set_error (bfd_error_invalid_operation);
8317 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8319 for (s = abfd->sections; s != NULL; s = s->next)
8321 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8322 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8323 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8328 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
8330 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
8332 for (i = 0; i < count; i++)
8343 /* Read in the version information. */
8346 _bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
8348 bfd_byte *contents = NULL;
8349 unsigned int freeidx = 0;
8351 if (elf_dynverref (abfd) != 0)
8353 Elf_Internal_Shdr *hdr;
8354 Elf_External_Verneed *everneed;
8355 Elf_Internal_Verneed *iverneed;
8357 bfd_byte *contents_end;
8359 hdr = &elf_tdata (abfd)->dynverref_hdr;
8361 if (hdr->sh_info == 0
8362 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
8364 error_return_bad_verref:
8366 (_("%pB: .gnu.version_r invalid entry"), abfd);
8367 bfd_set_error (bfd_error_bad_value);
8368 error_return_verref:
8369 elf_tdata (abfd)->verref = NULL;
8370 elf_tdata (abfd)->cverrefs = 0;
8374 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8375 if (contents == NULL)
8376 goto error_return_verref;
8378 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8379 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
8380 goto error_return_verref;
8382 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *)
8383 bfd_alloc2 (abfd, hdr->sh_info, sizeof (Elf_Internal_Verneed));
8385 if (elf_tdata (abfd)->verref == NULL)
8386 goto error_return_verref;
8388 BFD_ASSERT (sizeof (Elf_External_Verneed)
8389 == sizeof (Elf_External_Vernaux));
8390 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
8391 everneed = (Elf_External_Verneed *) contents;
8392 iverneed = elf_tdata (abfd)->verref;
8393 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8395 Elf_External_Vernaux *evernaux;
8396 Elf_Internal_Vernaux *ivernaux;
8399 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8401 iverneed->vn_bfd = abfd;
8403 iverneed->vn_filename =
8404 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8406 if (iverneed->vn_filename == NULL)
8407 goto error_return_bad_verref;
8409 if (iverneed->vn_cnt == 0)
8410 iverneed->vn_auxptr = NULL;
8413 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
8414 bfd_alloc2 (abfd, iverneed->vn_cnt,
8415 sizeof (Elf_Internal_Vernaux));
8416 if (iverneed->vn_auxptr == NULL)
8417 goto error_return_verref;
8420 if (iverneed->vn_aux
8421 > (size_t) (contents_end - (bfd_byte *) everneed))
8422 goto error_return_bad_verref;
8424 evernaux = ((Elf_External_Vernaux *)
8425 ((bfd_byte *) everneed + iverneed->vn_aux));
8426 ivernaux = iverneed->vn_auxptr;
8427 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8429 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8431 ivernaux->vna_nodename =
8432 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8433 ivernaux->vna_name);
8434 if (ivernaux->vna_nodename == NULL)
8435 goto error_return_bad_verref;
8437 if (ivernaux->vna_other > freeidx)
8438 freeidx = ivernaux->vna_other;
8440 ivernaux->vna_nextptr = NULL;
8441 if (ivernaux->vna_next == 0)
8443 iverneed->vn_cnt = j + 1;
8446 if (j + 1 < iverneed->vn_cnt)
8447 ivernaux->vna_nextptr = ivernaux + 1;
8449 if (ivernaux->vna_next
8450 > (size_t) (contents_end - (bfd_byte *) evernaux))
8451 goto error_return_bad_verref;
8453 evernaux = ((Elf_External_Vernaux *)
8454 ((bfd_byte *) evernaux + ivernaux->vna_next));
8457 iverneed->vn_nextref = NULL;
8458 if (iverneed->vn_next == 0)
8460 if (i + 1 < hdr->sh_info)
8461 iverneed->vn_nextref = iverneed + 1;
8463 if (iverneed->vn_next
8464 > (size_t) (contents_end - (bfd_byte *) everneed))
8465 goto error_return_bad_verref;
8467 everneed = ((Elf_External_Verneed *)
8468 ((bfd_byte *) everneed + iverneed->vn_next));
8470 elf_tdata (abfd)->cverrefs = i;
8476 if (elf_dynverdef (abfd) != 0)
8478 Elf_Internal_Shdr *hdr;
8479 Elf_External_Verdef *everdef;
8480 Elf_Internal_Verdef *iverdef;
8481 Elf_Internal_Verdef *iverdefarr;
8482 Elf_Internal_Verdef iverdefmem;
8484 unsigned int maxidx;
8485 bfd_byte *contents_end_def, *contents_end_aux;
8487 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8489 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8491 error_return_bad_verdef:
8493 (_("%pB: .gnu.version_d invalid entry"), abfd);
8494 bfd_set_error (bfd_error_bad_value);
8495 error_return_verdef:
8496 elf_tdata (abfd)->verdef = NULL;
8497 elf_tdata (abfd)->cverdefs = 0;
8501 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8502 if (contents == NULL)
8503 goto error_return_verdef;
8504 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8505 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
8506 goto error_return_verdef;
8508 BFD_ASSERT (sizeof (Elf_External_Verdef)
8509 >= sizeof (Elf_External_Verdaux));
8510 contents_end_def = contents + hdr->sh_size
8511 - sizeof (Elf_External_Verdef);
8512 contents_end_aux = contents + hdr->sh_size
8513 - sizeof (Elf_External_Verdaux);
8515 /* We know the number of entries in the section but not the maximum
8516 index. Therefore we have to run through all entries and find
8518 everdef = (Elf_External_Verdef *) contents;
8520 for (i = 0; i < hdr->sh_info; ++i)
8522 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8524 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8525 goto error_return_bad_verdef;
8526 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8527 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
8529 if (iverdefmem.vd_next == 0)
8532 if (iverdefmem.vd_next
8533 > (size_t) (contents_end_def - (bfd_byte *) everdef))
8534 goto error_return_bad_verdef;
8536 everdef = ((Elf_External_Verdef *)
8537 ((bfd_byte *) everdef + iverdefmem.vd_next));
8540 if (default_imported_symver)
8542 if (freeidx > maxidx)
8548 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8549 bfd_zalloc2 (abfd, maxidx, sizeof (Elf_Internal_Verdef));
8550 if (elf_tdata (abfd)->verdef == NULL)
8551 goto error_return_verdef;
8553 elf_tdata (abfd)->cverdefs = maxidx;
8555 everdef = (Elf_External_Verdef *) contents;
8556 iverdefarr = elf_tdata (abfd)->verdef;
8557 for (i = 0; i < hdr->sh_info; i++)
8559 Elf_External_Verdaux *everdaux;
8560 Elf_Internal_Verdaux *iverdaux;
8563 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8565 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
8566 goto error_return_bad_verdef;
8568 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
8569 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
8571 iverdef->vd_bfd = abfd;
8573 if (iverdef->vd_cnt == 0)
8574 iverdef->vd_auxptr = NULL;
8577 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
8578 bfd_alloc2 (abfd, iverdef->vd_cnt,
8579 sizeof (Elf_Internal_Verdaux));
8580 if (iverdef->vd_auxptr == NULL)
8581 goto error_return_verdef;
8585 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
8586 goto error_return_bad_verdef;
8588 everdaux = ((Elf_External_Verdaux *)
8589 ((bfd_byte *) everdef + iverdef->vd_aux));
8590 iverdaux = iverdef->vd_auxptr;
8591 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8593 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8595 iverdaux->vda_nodename =
8596 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8597 iverdaux->vda_name);
8598 if (iverdaux->vda_nodename == NULL)
8599 goto error_return_bad_verdef;
8601 iverdaux->vda_nextptr = NULL;
8602 if (iverdaux->vda_next == 0)
8604 iverdef->vd_cnt = j + 1;
8607 if (j + 1 < iverdef->vd_cnt)
8608 iverdaux->vda_nextptr = iverdaux + 1;
8610 if (iverdaux->vda_next
8611 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
8612 goto error_return_bad_verdef;
8614 everdaux = ((Elf_External_Verdaux *)
8615 ((bfd_byte *) everdaux + iverdaux->vda_next));
8618 iverdef->vd_nodename = NULL;
8619 if (iverdef->vd_cnt)
8620 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
8622 iverdef->vd_nextdef = NULL;
8623 if (iverdef->vd_next == 0)
8625 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
8626 iverdef->vd_nextdef = iverdef + 1;
8628 everdef = ((Elf_External_Verdef *)
8629 ((bfd_byte *) everdef + iverdef->vd_next));
8635 else if (default_imported_symver)
8642 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8643 bfd_zalloc2 (abfd, freeidx, sizeof (Elf_Internal_Verdef));
8644 if (elf_tdata (abfd)->verdef == NULL)
8647 elf_tdata (abfd)->cverdefs = freeidx;
8650 /* Create a default version based on the soname. */
8651 if (default_imported_symver)
8653 Elf_Internal_Verdef *iverdef;
8654 Elf_Internal_Verdaux *iverdaux;
8656 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
8658 iverdef->vd_version = VER_DEF_CURRENT;
8659 iverdef->vd_flags = 0;
8660 iverdef->vd_ndx = freeidx;
8661 iverdef->vd_cnt = 1;
8663 iverdef->vd_bfd = abfd;
8665 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8666 if (iverdef->vd_nodename == NULL)
8667 goto error_return_verdef;
8668 iverdef->vd_nextdef = NULL;
8669 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8670 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
8671 if (iverdef->vd_auxptr == NULL)
8672 goto error_return_verdef;
8674 iverdaux = iverdef->vd_auxptr;
8675 iverdaux->vda_nodename = iverdef->vd_nodename;
8681 if (contents != NULL)
8687 _bfd_elf_make_empty_symbol (bfd *abfd)
8689 elf_symbol_type *newsym;
8691 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof * newsym);
8694 newsym->symbol.the_bfd = abfd;
8695 return &newsym->symbol;
8699 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8703 bfd_symbol_info (symbol, ret);
8706 /* Return whether a symbol name implies a local symbol. Most targets
8707 use this function for the is_local_label_name entry point, but some
8711 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8714 /* Normal local symbols start with ``.L''. */
8715 if (name[0] == '.' && name[1] == 'L')
8718 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8719 DWARF debugging symbols starting with ``..''. */
8720 if (name[0] == '.' && name[1] == '.')
8723 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
8724 emitting DWARF debugging output. I suspect this is actually a
8725 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
8726 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
8727 underscore to be emitted on some ELF targets). For ease of use,
8728 we treat such symbols as local. */
8729 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
8732 /* Treat assembler generated fake symbols, dollar local labels and
8733 forward-backward labels (aka local labels) as locals.
8734 These labels have the form:
8736 L0^A.* (fake symbols)
8738 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
8740 Versions which start with .L will have already been matched above,
8741 so we only need to match the rest. */
8742 if (name[0] == 'L' && ISDIGIT (name[1]))
8744 bfd_boolean ret = FALSE;
8748 for (p = name + 2; (c = *p); p++)
8750 if (c == 1 || c == 2)
8752 if (c == 1 && p == name + 2)
8753 /* A fake symbol. */
8756 /* FIXME: We are being paranoid here and treating symbols like
8757 L0^Bfoo as if there were non-local, on the grounds that the
8758 assembler will never generate them. But can any symbol
8759 containing an ASCII value in the range 1-31 ever be anything
8760 other than some kind of local ? */
8777 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
8778 asymbol *symbol ATTRIBUTE_UNUSED)
8785 _bfd_elf_set_arch_mach (bfd *abfd,
8786 enum bfd_architecture arch,
8787 unsigned long machine)
8789 /* If this isn't the right architecture for this backend, and this
8790 isn't the generic backend, fail. */
8791 if (arch != get_elf_backend_data (abfd)->arch
8792 && arch != bfd_arch_unknown
8793 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
8796 return bfd_default_set_arch_mach (abfd, arch, machine);
8799 /* Find the nearest line to a particular section and offset,
8800 for error reporting. */
8803 _bfd_elf_find_nearest_line (bfd *abfd,
8807 const char **filename_ptr,
8808 const char **functionname_ptr,
8809 unsigned int *line_ptr,
8810 unsigned int *discriminator_ptr)
8814 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
8815 filename_ptr, functionname_ptr,
8816 line_ptr, discriminator_ptr,
8817 dwarf_debug_sections, 0,
8818 &elf_tdata (abfd)->dwarf2_find_line_info)
8819 || _bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
8820 filename_ptr, functionname_ptr,
8823 if (!*functionname_ptr)
8824 _bfd_elf_find_function (abfd, symbols, section, offset,
8825 *filename_ptr ? NULL : filename_ptr,
8830 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
8831 &found, filename_ptr,
8832 functionname_ptr, line_ptr,
8833 &elf_tdata (abfd)->line_info))
8835 if (found && (*functionname_ptr || *line_ptr))
8838 if (symbols == NULL)
8841 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
8842 filename_ptr, functionname_ptr))
8849 /* Find the line for a symbol. */
8852 _bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
8853 const char **filename_ptr, unsigned int *line_ptr)
8855 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
8856 filename_ptr, NULL, line_ptr, NULL,
8857 dwarf_debug_sections, 0,
8858 &elf_tdata (abfd)->dwarf2_find_line_info);
8861 /* After a call to bfd_find_nearest_line, successive calls to
8862 bfd_find_inliner_info can be used to get source information about
8863 each level of function inlining that terminated at the address
8864 passed to bfd_find_nearest_line. Currently this is only supported
8865 for DWARF2 with appropriate DWARF3 extensions. */
8868 _bfd_elf_find_inliner_info (bfd *abfd,
8869 const char **filename_ptr,
8870 const char **functionname_ptr,
8871 unsigned int *line_ptr)
8874 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
8875 functionname_ptr, line_ptr,
8876 & elf_tdata (abfd)->dwarf2_find_line_info);
8881 _bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
8883 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8884 int ret = bed->s->sizeof_ehdr;
8886 if (!bfd_link_relocatable (info))
8888 bfd_size_type phdr_size = elf_program_header_size (abfd);
8890 if (phdr_size == (bfd_size_type) -1)
8892 struct elf_segment_map *m;
8895 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
8896 phdr_size += bed->s->sizeof_phdr;
8899 phdr_size = get_program_header_size (abfd, info);
8902 elf_program_header_size (abfd) = phdr_size;
8910 _bfd_elf_set_section_contents (bfd *abfd,
8912 const void *location,
8914 bfd_size_type count)
8916 Elf_Internal_Shdr *hdr;
8919 if (! abfd->output_has_begun
8920 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
8926 hdr = &elf_section_data (section)->this_hdr;
8927 if (hdr->sh_offset == (file_ptr) -1)
8929 /* We must compress this section. Write output to the buffer. */
8930 unsigned char *contents = hdr->contents;
8931 if ((offset + count) > hdr->sh_size
8932 || (section->flags & SEC_ELF_COMPRESS) == 0
8933 || contents == NULL)
8935 memcpy (contents + offset, location, count);
8938 pos = hdr->sh_offset + offset;
8939 if (bfd_seek (abfd, pos, SEEK_SET) != 0
8940 || bfd_bwrite (location, count, abfd) != count)
8947 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
8948 arelent *cache_ptr ATTRIBUTE_UNUSED,
8949 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
8955 /* Try to convert a non-ELF reloc into an ELF one. */
8958 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
8960 /* Check whether we really have an ELF howto. */
8962 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
8964 bfd_reloc_code_real_type code;
8965 reloc_howto_type *howto;
8967 /* Alien reloc: Try to determine its type to replace it with an
8968 equivalent ELF reloc. */
8970 if (areloc->howto->pc_relative)
8972 switch (areloc->howto->bitsize)
8975 code = BFD_RELOC_8_PCREL;
8978 code = BFD_RELOC_12_PCREL;
8981 code = BFD_RELOC_16_PCREL;
8984 code = BFD_RELOC_24_PCREL;
8987 code = BFD_RELOC_32_PCREL;
8990 code = BFD_RELOC_64_PCREL;
8996 howto = bfd_reloc_type_lookup (abfd, code);
8998 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
9000 if (howto->pcrel_offset)
9001 areloc->addend += areloc->address;
9003 areloc->addend -= areloc->address; /* addend is unsigned!! */
9008 switch (areloc->howto->bitsize)
9014 code = BFD_RELOC_14;
9017 code = BFD_RELOC_16;
9020 code = BFD_RELOC_26;
9023 code = BFD_RELOC_32;
9026 code = BFD_RELOC_64;
9032 howto = bfd_reloc_type_lookup (abfd, code);
9036 areloc->howto = howto;
9044 /* xgettext:c-format */
9045 _bfd_error_handler (_("%pB: %s unsupported"),
9046 abfd, areloc->howto->name);
9047 bfd_set_error (bfd_error_bad_value);
9052 _bfd_elf_close_and_cleanup (bfd *abfd)
9054 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9055 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
9057 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
9058 _bfd_elf_strtab_free (elf_shstrtab (abfd));
9059 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
9062 return _bfd_generic_close_and_cleanup (abfd);
9065 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9066 in the relocation's offset. Thus we cannot allow any sort of sanity
9067 range-checking to interfere. There is nothing else to do in processing
9070 bfd_reloc_status_type
9071 _bfd_elf_rel_vtable_reloc_fn
9072 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
9073 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
9074 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9075 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
9077 return bfd_reloc_ok;
9080 /* Elf core file support. Much of this only works on native
9081 toolchains, since we rely on knowing the
9082 machine-dependent procfs structure in order to pick
9083 out details about the corefile. */
9085 #ifdef HAVE_SYS_PROCFS_H
9086 /* Needed for new procfs interface on sparc-solaris. */
9087 # define _STRUCTURED_PROC 1
9088 # include <sys/procfs.h>
9091 /* Return a PID that identifies a "thread" for threaded cores, or the
9092 PID of the main process for non-threaded cores. */
9095 elfcore_make_pid (bfd *abfd)
9099 pid = elf_tdata (abfd)->core->lwpid;
9101 pid = elf_tdata (abfd)->core->pid;
9106 /* If there isn't a section called NAME, make one, using
9107 data from SECT. Note, this function will generate a
9108 reference to NAME, so you shouldn't deallocate or
9112 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
9116 if (bfd_get_section_by_name (abfd, name) != NULL)
9119 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
9123 sect2->size = sect->size;
9124 sect2->filepos = sect->filepos;
9125 sect2->alignment_power = sect->alignment_power;
9129 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
9130 actually creates up to two pseudosections:
9131 - For the single-threaded case, a section named NAME, unless
9132 such a section already exists.
9133 - For the multi-threaded case, a section named "NAME/PID", where
9134 PID is elfcore_make_pid (abfd).
9135 Both pseudosections have identical contents. */
9137 _bfd_elfcore_make_pseudosection (bfd *abfd,
9143 char *threaded_name;
9147 /* Build the section name. */
9149 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
9150 len = strlen (buf) + 1;
9151 threaded_name = (char *) bfd_alloc (abfd, len);
9152 if (threaded_name == NULL)
9154 memcpy (threaded_name, buf, len);
9156 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9161 sect->filepos = filepos;
9162 sect->alignment_power = 2;
9164 return elfcore_maybe_make_sect (abfd, name, sect);
9167 /* prstatus_t exists on:
9169 linux 2.[01] + glibc
9173 #if defined (HAVE_PRSTATUS_T)
9176 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
9181 if (note->descsz == sizeof (prstatus_t))
9185 size = sizeof (prstat.pr_reg);
9186 offset = offsetof (prstatus_t, pr_reg);
9187 memcpy (&prstat, note->descdata, sizeof (prstat));
9189 /* Do not overwrite the core signal if it
9190 has already been set by another thread. */
9191 if (elf_tdata (abfd)->core->signal == 0)
9192 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9193 if (elf_tdata (abfd)->core->pid == 0)
9194 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9196 /* pr_who exists on:
9199 pr_who doesn't exist on:
9202 #if defined (HAVE_PRSTATUS_T_PR_WHO)
9203 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9205 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9208 #if defined (HAVE_PRSTATUS32_T)
9209 else if (note->descsz == sizeof (prstatus32_t))
9211 /* 64-bit host, 32-bit corefile */
9212 prstatus32_t prstat;
9214 size = sizeof (prstat.pr_reg);
9215 offset = offsetof (prstatus32_t, pr_reg);
9216 memcpy (&prstat, note->descdata, sizeof (prstat));
9218 /* Do not overwrite the core signal if it
9219 has already been set by another thread. */
9220 if (elf_tdata (abfd)->core->signal == 0)
9221 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9222 if (elf_tdata (abfd)->core->pid == 0)
9223 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9225 /* pr_who exists on:
9228 pr_who doesn't exist on:
9231 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
9232 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9234 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9237 #endif /* HAVE_PRSTATUS32_T */
9240 /* Fail - we don't know how to handle any other
9241 note size (ie. data object type). */
9245 /* Make a ".reg/999" section and a ".reg" section. */
9246 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
9247 size, note->descpos + offset);
9249 #endif /* defined (HAVE_PRSTATUS_T) */
9251 /* Create a pseudosection containing the exact contents of NOTE. */
9253 elfcore_make_note_pseudosection (bfd *abfd,
9255 Elf_Internal_Note *note)
9257 return _bfd_elfcore_make_pseudosection (abfd, name,
9258 note->descsz, note->descpos);
9261 /* There isn't a consistent prfpregset_t across platforms,
9262 but it doesn't matter, because we don't have to pick this
9263 data structure apart. */
9266 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
9268 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9271 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
9272 type of NT_PRXFPREG. Just include the whole note's contents
9276 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
9278 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9281 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9282 with a note type of NT_X86_XSTATE. Just include the whole note's
9283 contents literally. */
9286 elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9288 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9292 elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9294 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9298 elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9300 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9304 elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9306 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9310 elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9312 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9316 elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9318 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9322 elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9324 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9328 elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9330 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9334 elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9336 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9340 elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9342 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9346 elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9348 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9352 elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9354 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9358 elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9360 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9364 elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9366 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9370 elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9372 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9376 elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9378 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9382 elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9384 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9388 elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9390 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9394 elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9396 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9400 elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9402 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9406 elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9408 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9412 elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9414 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9418 elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9420 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9424 elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9426 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9430 elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9432 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9436 elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9438 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9442 elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9444 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9448 elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9450 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9454 elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9456 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9460 elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9462 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9466 elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9468 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9472 elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9474 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9478 elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9480 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9484 elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9486 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9489 #if defined (HAVE_PRPSINFO_T)
9490 typedef prpsinfo_t elfcore_psinfo_t;
9491 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
9492 typedef prpsinfo32_t elfcore_psinfo32_t;
9496 #if defined (HAVE_PSINFO_T)
9497 typedef psinfo_t elfcore_psinfo_t;
9498 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
9499 typedef psinfo32_t elfcore_psinfo32_t;
9503 /* return a malloc'ed copy of a string at START which is at
9504 most MAX bytes long, possibly without a terminating '\0'.
9505 the copy will always have a terminating '\0'. */
9508 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
9511 char *end = (char *) memchr (start, '\0', max);
9519 dups = (char *) bfd_alloc (abfd, len + 1);
9523 memcpy (dups, start, len);
9529 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9531 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
9533 if (note->descsz == sizeof (elfcore_psinfo_t))
9535 elfcore_psinfo_t psinfo;
9537 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9539 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
9540 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9542 elf_tdata (abfd)->core->program
9543 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9544 sizeof (psinfo.pr_fname));
9546 elf_tdata (abfd)->core->command
9547 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9548 sizeof (psinfo.pr_psargs));
9550 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
9551 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9553 /* 64-bit host, 32-bit corefile */
9554 elfcore_psinfo32_t psinfo;
9556 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9558 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
9559 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9561 elf_tdata (abfd)->core->program
9562 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9563 sizeof (psinfo.pr_fname));
9565 elf_tdata (abfd)->core->command
9566 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9567 sizeof (psinfo.pr_psargs));
9573 /* Fail - we don't know how to handle any other
9574 note size (ie. data object type). */
9578 /* Note that for some reason, a spurious space is tacked
9579 onto the end of the args in some (at least one anyway)
9580 implementations, so strip it off if it exists. */
9583 char *command = elf_tdata (abfd)->core->command;
9584 int n = strlen (command);
9586 if (0 < n && command[n - 1] == ' ')
9587 command[n - 1] = '\0';
9592 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9594 #if defined (HAVE_PSTATUS_T)
9596 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
9598 if (note->descsz == sizeof (pstatus_t)
9599 #if defined (HAVE_PXSTATUS_T)
9600 || note->descsz == sizeof (pxstatus_t)
9606 memcpy (&pstat, note->descdata, sizeof (pstat));
9608 elf_tdata (abfd)->core->pid = pstat.pr_pid;
9610 #if defined (HAVE_PSTATUS32_T)
9611 else if (note->descsz == sizeof (pstatus32_t))
9613 /* 64-bit host, 32-bit corefile */
9616 memcpy (&pstat, note->descdata, sizeof (pstat));
9618 elf_tdata (abfd)->core->pid = pstat.pr_pid;
9621 /* Could grab some more details from the "representative"
9622 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
9623 NT_LWPSTATUS note, presumably. */
9627 #endif /* defined (HAVE_PSTATUS_T) */
9629 #if defined (HAVE_LWPSTATUS_T)
9631 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
9633 lwpstatus_t lwpstat;
9639 if (note->descsz != sizeof (lwpstat)
9640 #if defined (HAVE_LWPXSTATUS_T)
9641 && note->descsz != sizeof (lwpxstatus_t)
9646 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9648 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
9649 /* Do not overwrite the core signal if it has already been set by
9651 if (elf_tdata (abfd)->core->signal == 0)
9652 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
9654 /* Make a ".reg/999" section. */
9656 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
9657 len = strlen (buf) + 1;
9658 name = bfd_alloc (abfd, len);
9661 memcpy (name, buf, len);
9663 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9667 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
9668 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
9669 sect->filepos = note->descpos
9670 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
9673 #if defined (HAVE_LWPSTATUS_T_PR_REG)
9674 sect->size = sizeof (lwpstat.pr_reg);
9675 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
9678 sect->alignment_power = 2;
9680 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
9683 /* Make a ".reg2/999" section */
9685 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
9686 len = strlen (buf) + 1;
9687 name = bfd_alloc (abfd, len);
9690 memcpy (name, buf, len);
9692 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9696 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
9697 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
9698 sect->filepos = note->descpos
9699 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
9702 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
9703 sect->size = sizeof (lwpstat.pr_fpreg);
9704 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
9707 sect->alignment_power = 2;
9709 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
9711 #endif /* defined (HAVE_LWPSTATUS_T) */
9714 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
9721 int is_active_thread;
9724 if (note->descsz < 728)
9727 if (! CONST_STRNEQ (note->namedata, "win32"))
9730 type = bfd_get_32 (abfd, note->descdata);
9734 case 1 /* NOTE_INFO_PROCESS */:
9735 /* FIXME: need to add ->core->command. */
9736 /* process_info.pid */
9737 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
9738 /* process_info.signal */
9739 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
9742 case 2 /* NOTE_INFO_THREAD */:
9743 /* Make a ".reg/999" section. */
9744 /* thread_info.tid */
9745 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
9747 len = strlen (buf) + 1;
9748 name = (char *) bfd_alloc (abfd, len);
9752 memcpy (name, buf, len);
9754 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9758 /* sizeof (thread_info.thread_context) */
9760 /* offsetof (thread_info.thread_context) */
9761 sect->filepos = note->descpos + 12;
9762 sect->alignment_power = 2;
9764 /* thread_info.is_active_thread */
9765 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
9767 if (is_active_thread)
9768 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
9772 case 3 /* NOTE_INFO_MODULE */:
9773 /* Make a ".module/xxxxxxxx" section. */
9774 /* module_info.base_address */
9775 base_addr = bfd_get_32 (abfd, note->descdata + 4);
9776 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
9778 len = strlen (buf) + 1;
9779 name = (char *) bfd_alloc (abfd, len);
9783 memcpy (name, buf, len);
9785 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9790 sect->size = note->descsz;
9791 sect->filepos = note->descpos;
9792 sect->alignment_power = 2;
9803 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
9805 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9813 if (bed->elf_backend_grok_prstatus)
9814 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
9816 #if defined (HAVE_PRSTATUS_T)
9817 return elfcore_grok_prstatus (abfd, note);
9822 #if defined (HAVE_PSTATUS_T)
9824 return elfcore_grok_pstatus (abfd, note);
9827 #if defined (HAVE_LWPSTATUS_T)
9829 return elfcore_grok_lwpstatus (abfd, note);
9832 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
9833 return elfcore_grok_prfpreg (abfd, note);
9835 case NT_WIN32PSTATUS:
9836 return elfcore_grok_win32pstatus (abfd, note);
9838 case NT_PRXFPREG: /* Linux SSE extension */
9839 if (note->namesz == 6
9840 && strcmp (note->namedata, "LINUX") == 0)
9841 return elfcore_grok_prxfpreg (abfd, note);
9845 case NT_X86_XSTATE: /* Linux XSAVE extension */
9846 if (note->namesz == 6
9847 && strcmp (note->namedata, "LINUX") == 0)
9848 return elfcore_grok_xstatereg (abfd, note);
9853 if (note->namesz == 6
9854 && strcmp (note->namedata, "LINUX") == 0)
9855 return elfcore_grok_ppc_vmx (abfd, note);
9860 if (note->namesz == 6
9861 && strcmp (note->namedata, "LINUX") == 0)
9862 return elfcore_grok_ppc_vsx (abfd, note);
9867 if (note->namesz == 6
9868 && strcmp (note->namedata, "LINUX") == 0)
9869 return elfcore_grok_ppc_tar (abfd, note);
9874 if (note->namesz == 6
9875 && strcmp (note->namedata, "LINUX") == 0)
9876 return elfcore_grok_ppc_ppr (abfd, note);
9881 if (note->namesz == 6
9882 && strcmp (note->namedata, "LINUX") == 0)
9883 return elfcore_grok_ppc_dscr (abfd, note);
9888 if (note->namesz == 6
9889 && strcmp (note->namedata, "LINUX") == 0)
9890 return elfcore_grok_ppc_ebb (abfd, note);
9895 if (note->namesz == 6
9896 && strcmp (note->namedata, "LINUX") == 0)
9897 return elfcore_grok_ppc_pmu (abfd, note);
9901 case NT_PPC_TM_CGPR:
9902 if (note->namesz == 6
9903 && strcmp (note->namedata, "LINUX") == 0)
9904 return elfcore_grok_ppc_tm_cgpr (abfd, note);
9908 case NT_PPC_TM_CFPR:
9909 if (note->namesz == 6
9910 && strcmp (note->namedata, "LINUX") == 0)
9911 return elfcore_grok_ppc_tm_cfpr (abfd, note);
9915 case NT_PPC_TM_CVMX:
9916 if (note->namesz == 6
9917 && strcmp (note->namedata, "LINUX") == 0)
9918 return elfcore_grok_ppc_tm_cvmx (abfd, note);
9922 case NT_PPC_TM_CVSX:
9923 if (note->namesz == 6
9924 && strcmp (note->namedata, "LINUX") == 0)
9925 return elfcore_grok_ppc_tm_cvsx (abfd, note);
9930 if (note->namesz == 6
9931 && strcmp (note->namedata, "LINUX") == 0)
9932 return elfcore_grok_ppc_tm_spr (abfd, note);
9936 case NT_PPC_TM_CTAR:
9937 if (note->namesz == 6
9938 && strcmp (note->namedata, "LINUX") == 0)
9939 return elfcore_grok_ppc_tm_ctar (abfd, note);
9943 case NT_PPC_TM_CPPR:
9944 if (note->namesz == 6
9945 && strcmp (note->namedata, "LINUX") == 0)
9946 return elfcore_grok_ppc_tm_cppr (abfd, note);
9950 case NT_PPC_TM_CDSCR:
9951 if (note->namesz == 6
9952 && strcmp (note->namedata, "LINUX") == 0)
9953 return elfcore_grok_ppc_tm_cdscr (abfd, note);
9957 case NT_S390_HIGH_GPRS:
9958 if (note->namesz == 6
9959 && strcmp (note->namedata, "LINUX") == 0)
9960 return elfcore_grok_s390_high_gprs (abfd, note);
9965 if (note->namesz == 6
9966 && strcmp (note->namedata, "LINUX") == 0)
9967 return elfcore_grok_s390_timer (abfd, note);
9971 case NT_S390_TODCMP:
9972 if (note->namesz == 6
9973 && strcmp (note->namedata, "LINUX") == 0)
9974 return elfcore_grok_s390_todcmp (abfd, note);
9978 case NT_S390_TODPREG:
9979 if (note->namesz == 6
9980 && strcmp (note->namedata, "LINUX") == 0)
9981 return elfcore_grok_s390_todpreg (abfd, note);
9986 if (note->namesz == 6
9987 && strcmp (note->namedata, "LINUX") == 0)
9988 return elfcore_grok_s390_ctrs (abfd, note);
9992 case NT_S390_PREFIX:
9993 if (note->namesz == 6
9994 && strcmp (note->namedata, "LINUX") == 0)
9995 return elfcore_grok_s390_prefix (abfd, note);
9999 case NT_S390_LAST_BREAK:
10000 if (note->namesz == 6
10001 && strcmp (note->namedata, "LINUX") == 0)
10002 return elfcore_grok_s390_last_break (abfd, note);
10006 case NT_S390_SYSTEM_CALL:
10007 if (note->namesz == 6
10008 && strcmp (note->namedata, "LINUX") == 0)
10009 return elfcore_grok_s390_system_call (abfd, note);
10014 if (note->namesz == 6
10015 && strcmp (note->namedata, "LINUX") == 0)
10016 return elfcore_grok_s390_tdb (abfd, note);
10020 case NT_S390_VXRS_LOW:
10021 if (note->namesz == 6
10022 && strcmp (note->namedata, "LINUX") == 0)
10023 return elfcore_grok_s390_vxrs_low (abfd, note);
10027 case NT_S390_VXRS_HIGH:
10028 if (note->namesz == 6
10029 && strcmp (note->namedata, "LINUX") == 0)
10030 return elfcore_grok_s390_vxrs_high (abfd, note);
10034 case NT_S390_GS_CB:
10035 if (note->namesz == 6
10036 && strcmp (note->namedata, "LINUX") == 0)
10037 return elfcore_grok_s390_gs_cb (abfd, note);
10041 case NT_S390_GS_BC:
10042 if (note->namesz == 6
10043 && strcmp (note->namedata, "LINUX") == 0)
10044 return elfcore_grok_s390_gs_bc (abfd, note);
10049 if (note->namesz == 6
10050 && strcmp (note->namedata, "LINUX") == 0)
10051 return elfcore_grok_arm_vfp (abfd, note);
10056 if (note->namesz == 6
10057 && strcmp (note->namedata, "LINUX") == 0)
10058 return elfcore_grok_aarch_tls (abfd, note);
10062 case NT_ARM_HW_BREAK:
10063 if (note->namesz == 6
10064 && strcmp (note->namedata, "LINUX") == 0)
10065 return elfcore_grok_aarch_hw_break (abfd, note);
10069 case NT_ARM_HW_WATCH:
10070 if (note->namesz == 6
10071 && strcmp (note->namedata, "LINUX") == 0)
10072 return elfcore_grok_aarch_hw_watch (abfd, note);
10077 if (note->namesz == 6
10078 && strcmp (note->namedata, "LINUX") == 0)
10079 return elfcore_grok_aarch_sve (abfd, note);
10085 if (bed->elf_backend_grok_psinfo)
10086 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
10088 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10089 return elfcore_grok_psinfo (abfd, note);
10096 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
10101 sect->size = note->descsz;
10102 sect->filepos = note->descpos;
10103 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10109 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10113 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10120 elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10122 struct bfd_build_id* build_id;
10124 if (note->descsz == 0)
10127 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10128 if (build_id == NULL)
10131 build_id->size = note->descsz;
10132 memcpy (build_id->data, note->descdata, note->descsz);
10133 abfd->build_id = build_id;
10139 elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10141 switch (note->type)
10146 case NT_GNU_PROPERTY_TYPE_0:
10147 return _bfd_elf_parse_gnu_properties (abfd, note);
10149 case NT_GNU_BUILD_ID:
10150 return elfobj_grok_gnu_build_id (abfd, note);
10155 elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10157 struct sdt_note *cur =
10158 (struct sdt_note *) bfd_alloc (abfd, sizeof (struct sdt_note)
10161 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10162 cur->size = (bfd_size_type) note->descsz;
10163 memcpy (cur->data, note->descdata, note->descsz);
10165 elf_tdata (abfd)->sdt_note_head = cur;
10171 elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10173 switch (note->type)
10176 return elfobj_grok_stapsdt_note_1 (abfd, note);
10184 elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10188 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
10191 if (note->descsz < 108)
10196 if (note->descsz < 120)
10204 /* Check for version 1 in pr_version. */
10205 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10210 /* Skip over pr_psinfosz. */
10211 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10215 offset += 4; /* Padding before pr_psinfosz. */
10219 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10220 elf_tdata (abfd)->core->program
10221 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10224 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10225 elf_tdata (abfd)->core->command
10226 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
10229 /* Padding before pr_pid. */
10232 /* The pr_pid field was added in version "1a". */
10233 if (note->descsz < offset + 4)
10236 elf_tdata (abfd)->core->pid
10237 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10243 elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10249 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10250 Also compute minimum size of this note. */
10251 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
10255 min_size = offset + (4 * 2) + 4 + 4 + 4;
10259 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10260 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
10267 if (note->descsz < min_size)
10270 /* Check for version 1 in pr_version. */
10271 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10274 /* Extract size of pr_reg from pr_gregsetsz. */
10275 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
10276 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10278 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10283 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10287 /* Skip over pr_osreldate. */
10290 /* Read signal from pr_cursig. */
10291 if (elf_tdata (abfd)->core->signal == 0)
10292 elf_tdata (abfd)->core->signal
10293 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10296 /* Read TID from pr_pid. */
10297 elf_tdata (abfd)->core->lwpid
10298 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10301 /* Padding before pr_reg. */
10302 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
10305 /* Make sure that there is enough data remaining in the note. */
10306 if ((note->descsz - offset) < size)
10309 /* Make a ".reg/999" section and a ".reg" section. */
10310 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10311 size, note->descpos + offset);
10315 elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10317 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10319 switch (note->type)
10322 if (bed->elf_backend_grok_freebsd_prstatus)
10323 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10325 return elfcore_grok_freebsd_prstatus (abfd, note);
10328 return elfcore_grok_prfpreg (abfd, note);
10331 return elfcore_grok_freebsd_psinfo (abfd, note);
10333 case NT_FREEBSD_THRMISC:
10334 if (note->namesz == 8)
10335 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10339 case NT_FREEBSD_PROCSTAT_PROC:
10340 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10343 case NT_FREEBSD_PROCSTAT_FILES:
10344 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10347 case NT_FREEBSD_PROCSTAT_VMMAP:
10348 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10351 case NT_FREEBSD_PROCSTAT_AUXV:
10353 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
10358 sect->size = note->descsz - 4;
10359 sect->filepos = note->descpos + 4;
10360 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10365 case NT_X86_XSTATE:
10366 if (note->namesz == 8)
10367 return elfcore_grok_xstatereg (abfd, note);
10371 case NT_FREEBSD_PTLWPINFO:
10372 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10376 return elfcore_grok_arm_vfp (abfd, note);
10384 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
10388 cp = strchr (note->namedata, '@');
10391 *lwpidp = atoi(cp + 1);
10398 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10400 if (note->descsz <= 0x7c + 31)
10403 /* Signal number at offset 0x08. */
10404 elf_tdata (abfd)->core->signal
10405 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10407 /* Process ID at offset 0x50. */
10408 elf_tdata (abfd)->core->pid
10409 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10411 /* Command name at 0x7c (max 32 bytes, including nul). */
10412 elf_tdata (abfd)->core->command
10413 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10415 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10420 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
10424 if (elfcore_netbsd_get_lwpid (note, &lwp))
10425 elf_tdata (abfd)->core->lwpid = lwp;
10427 if (note->type == NT_NETBSDCORE_PROCINFO)
10429 /* NetBSD-specific core "procinfo". Note that we expect to
10430 find this note before any of the others, which is fine,
10431 since the kernel writes this note out first when it
10432 creates a core file. */
10434 return elfcore_grok_netbsd_procinfo (abfd, note);
10437 /* As of Jan 2002 there are no other machine-independent notes
10438 defined for NetBSD core files. If the note type is less
10439 than the start of the machine-dependent note types, we don't
10442 if (note->type < NT_NETBSDCORE_FIRSTMACH)
10446 switch (bfd_get_arch (abfd))
10448 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10449 PT_GETFPREGS == mach+2. */
10451 case bfd_arch_alpha:
10452 case bfd_arch_sparc:
10453 switch (note->type)
10455 case NT_NETBSDCORE_FIRSTMACH+0:
10456 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10458 case NT_NETBSDCORE_FIRSTMACH+2:
10459 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10465 /* On all other arch's, PT_GETREGS == mach+1 and
10466 PT_GETFPREGS == mach+3. */
10469 switch (note->type)
10471 case NT_NETBSDCORE_FIRSTMACH+1:
10472 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10474 case NT_NETBSDCORE_FIRSTMACH+3:
10475 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10485 elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10487 if (note->descsz <= 0x48 + 31)
10490 /* Signal number at offset 0x08. */
10491 elf_tdata (abfd)->core->signal
10492 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10494 /* Process ID at offset 0x20. */
10495 elf_tdata (abfd)->core->pid
10496 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10498 /* Command name at 0x48 (max 32 bytes, including nul). */
10499 elf_tdata (abfd)->core->command
10500 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10506 elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10508 if (note->type == NT_OPENBSD_PROCINFO)
10509 return elfcore_grok_openbsd_procinfo (abfd, note);
10511 if (note->type == NT_OPENBSD_REGS)
10512 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10514 if (note->type == NT_OPENBSD_FPREGS)
10515 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10517 if (note->type == NT_OPENBSD_XFPREGS)
10518 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
10520 if (note->type == NT_OPENBSD_AUXV)
10522 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
10527 sect->size = note->descsz;
10528 sect->filepos = note->descpos;
10529 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10534 if (note->type == NT_OPENBSD_WCOOKIE)
10536 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
10541 sect->size = note->descsz;
10542 sect->filepos = note->descpos;
10543 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10552 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
10554 void *ddata = note->descdata;
10561 if (note->descsz < 16)
10564 /* nto_procfs_status 'pid' field is at offset 0. */
10565 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
10567 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
10568 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
10570 /* nto_procfs_status 'flags' field is at offset 8. */
10571 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
10573 /* nto_procfs_status 'what' field is at offset 14. */
10574 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
10576 elf_tdata (abfd)->core->signal = sig;
10577 elf_tdata (abfd)->core->lwpid = *tid;
10580 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
10581 do not come from signals so we make sure we set the current
10582 thread just in case. */
10583 if (flags & 0x00000080)
10584 elf_tdata (abfd)->core->lwpid = *tid;
10586 /* Make a ".qnx_core_status/%d" section. */
10587 sprintf (buf, ".qnx_core_status/%ld", *tid);
10589 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
10592 strcpy (name, buf);
10594 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10598 sect->size = note->descsz;
10599 sect->filepos = note->descpos;
10600 sect->alignment_power = 2;
10602 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
10606 elfcore_grok_nto_regs (bfd *abfd,
10607 Elf_Internal_Note *note,
10615 /* Make a "(base)/%d" section. */
10616 sprintf (buf, "%s/%ld", base, tid);
10618 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
10621 strcpy (name, buf);
10623 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10627 sect->size = note->descsz;
10628 sect->filepos = note->descpos;
10629 sect->alignment_power = 2;
10631 /* This is the current thread. */
10632 if (elf_tdata (abfd)->core->lwpid == tid)
10633 return elfcore_maybe_make_sect (abfd, base, sect);
10638 #define BFD_QNT_CORE_INFO 7
10639 #define BFD_QNT_CORE_STATUS 8
10640 #define BFD_QNT_CORE_GREG 9
10641 #define BFD_QNT_CORE_FPREG 10
10644 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
10646 /* Every GREG section has a STATUS section before it. Store the
10647 tid from the previous call to pass down to the next gregs
10649 static long tid = 1;
10651 switch (note->type)
10653 case BFD_QNT_CORE_INFO:
10654 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
10655 case BFD_QNT_CORE_STATUS:
10656 return elfcore_grok_nto_status (abfd, note, &tid);
10657 case BFD_QNT_CORE_GREG:
10658 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
10659 case BFD_QNT_CORE_FPREG:
10660 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
10667 elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
10673 /* Use note name as section name. */
10674 len = note->namesz;
10675 name = (char *) bfd_alloc (abfd, len);
10678 memcpy (name, note->namedata, len);
10679 name[len - 1] = '\0';
10681 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10685 sect->size = note->descsz;
10686 sect->filepos = note->descpos;
10687 sect->alignment_power = 1;
10692 /* Function: elfcore_write_note
10695 buffer to hold note, and current size of buffer
10699 size of data for note
10701 Writes note to end of buffer. ELF64 notes are written exactly as
10702 for ELF32, despite the current (as of 2006) ELF gabi specifying
10703 that they ought to have 8-byte namesz and descsz field, and have
10704 8-byte alignment. Other writers, eg. Linux kernel, do the same.
10707 Pointer to realloc'd buffer, *BUFSIZ updated. */
10710 elfcore_write_note (bfd *abfd,
10718 Elf_External_Note *xnp;
10725 namesz = strlen (name) + 1;
10727 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
10729 buf = (char *) realloc (buf, *bufsiz + newspace);
10732 dest = buf + *bufsiz;
10733 *bufsiz += newspace;
10734 xnp = (Elf_External_Note *) dest;
10735 H_PUT_32 (abfd, namesz, xnp->namesz);
10736 H_PUT_32 (abfd, size, xnp->descsz);
10737 H_PUT_32 (abfd, type, xnp->type);
10741 memcpy (dest, name, namesz);
10749 memcpy (dest, input, size);
10759 /* gcc-8 warns (*) on all the strncpy calls in this function about
10760 possible string truncation. The "truncation" is not a bug. We
10761 have an external representation of structs with fields that are not
10762 necessarily NULL terminated and corresponding internal
10763 representation fields that are one larger so that they can always
10764 be NULL terminated.
10765 gcc versions between 4.2 and 4.6 do not allow pragma control of
10766 diagnostics inside functions, giving a hard error if you try to use
10767 the finer control available with later versions.
10768 gcc prior to 4.2 warns about diagnostic push and pop.
10769 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
10770 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
10771 (*) Depending on your system header files! */
10772 #if GCC_VERSION >= 8000
10773 # pragma GCC diagnostic push
10774 # pragma GCC diagnostic ignored "-Wstringop-truncation"
10777 elfcore_write_prpsinfo (bfd *abfd,
10781 const char *psargs)
10783 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10785 if (bed->elf_backend_write_core_note != NULL)
10788 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
10789 NT_PRPSINFO, fname, psargs);
10794 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10795 # if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
10796 if (bed->s->elfclass == ELFCLASS32)
10798 # if defined (HAVE_PSINFO32_T)
10800 int note_type = NT_PSINFO;
10803 int note_type = NT_PRPSINFO;
10806 memset (&data, 0, sizeof (data));
10807 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
10808 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
10809 return elfcore_write_note (abfd, buf, bufsiz,
10810 "CORE", note_type, &data, sizeof (data));
10815 # if defined (HAVE_PSINFO_T)
10817 int note_type = NT_PSINFO;
10820 int note_type = NT_PRPSINFO;
10823 memset (&data, 0, sizeof (data));
10824 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
10825 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
10826 return elfcore_write_note (abfd, buf, bufsiz,
10827 "CORE", note_type, &data, sizeof (data));
10829 #endif /* PSINFO_T or PRPSINFO_T */
10834 #if GCC_VERSION >= 8000
10835 # pragma GCC diagnostic pop
10839 elfcore_write_linux_prpsinfo32
10840 (bfd *abfd, char *buf, int *bufsiz,
10841 const struct elf_internal_linux_prpsinfo *prpsinfo)
10843 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
10845 struct elf_external_linux_prpsinfo32_ugid16 data;
10847 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
10848 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
10849 &data, sizeof (data));
10853 struct elf_external_linux_prpsinfo32_ugid32 data;
10855 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
10856 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
10857 &data, sizeof (data));
10862 elfcore_write_linux_prpsinfo64
10863 (bfd *abfd, char *buf, int *bufsiz,
10864 const struct elf_internal_linux_prpsinfo *prpsinfo)
10866 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
10868 struct elf_external_linux_prpsinfo64_ugid16 data;
10870 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
10871 return elfcore_write_note (abfd, buf, bufsiz,
10872 "CORE", NT_PRPSINFO, &data, sizeof (data));
10876 struct elf_external_linux_prpsinfo64_ugid32 data;
10878 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
10879 return elfcore_write_note (abfd, buf, bufsiz,
10880 "CORE", NT_PRPSINFO, &data, sizeof (data));
10885 elfcore_write_prstatus (bfd *abfd,
10892 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10894 if (bed->elf_backend_write_core_note != NULL)
10897 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
10899 pid, cursig, gregs);
10904 #if defined (HAVE_PRSTATUS_T)
10905 #if defined (HAVE_PRSTATUS32_T)
10906 if (bed->s->elfclass == ELFCLASS32)
10908 prstatus32_t prstat;
10910 memset (&prstat, 0, sizeof (prstat));
10911 prstat.pr_pid = pid;
10912 prstat.pr_cursig = cursig;
10913 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
10914 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
10915 NT_PRSTATUS, &prstat, sizeof (prstat));
10922 memset (&prstat, 0, sizeof (prstat));
10923 prstat.pr_pid = pid;
10924 prstat.pr_cursig = cursig;
10925 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
10926 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
10927 NT_PRSTATUS, &prstat, sizeof (prstat));
10929 #endif /* HAVE_PRSTATUS_T */
10935 #if defined (HAVE_LWPSTATUS_T)
10937 elfcore_write_lwpstatus (bfd *abfd,
10944 lwpstatus_t lwpstat;
10945 const char *note_name = "CORE";
10947 memset (&lwpstat, 0, sizeof (lwpstat));
10948 lwpstat.pr_lwpid = pid >> 16;
10949 lwpstat.pr_cursig = cursig;
10950 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10951 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
10952 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10953 #if !defined(gregs)
10954 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
10955 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
10957 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
10958 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
10961 return elfcore_write_note (abfd, buf, bufsiz, note_name,
10962 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
10964 #endif /* HAVE_LWPSTATUS_T */
10966 #if defined (HAVE_PSTATUS_T)
10968 elfcore_write_pstatus (bfd *abfd,
10972 int cursig ATTRIBUTE_UNUSED,
10973 const void *gregs ATTRIBUTE_UNUSED)
10975 const char *note_name = "CORE";
10976 #if defined (HAVE_PSTATUS32_T)
10977 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10979 if (bed->s->elfclass == ELFCLASS32)
10983 memset (&pstat, 0, sizeof (pstat));
10984 pstat.pr_pid = pid & 0xffff;
10985 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
10986 NT_PSTATUS, &pstat, sizeof (pstat));
10994 memset (&pstat, 0, sizeof (pstat));
10995 pstat.pr_pid = pid & 0xffff;
10996 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
10997 NT_PSTATUS, &pstat, sizeof (pstat));
11001 #endif /* HAVE_PSTATUS_T */
11004 elfcore_write_prfpreg (bfd *abfd,
11007 const void *fpregs,
11010 const char *note_name = "CORE";
11011 return elfcore_write_note (abfd, buf, bufsiz,
11012 note_name, NT_FPREGSET, fpregs, size);
11016 elfcore_write_prxfpreg (bfd *abfd,
11019 const void *xfpregs,
11022 char *note_name = "LINUX";
11023 return elfcore_write_note (abfd, buf, bufsiz,
11024 note_name, NT_PRXFPREG, xfpregs, size);
11028 elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11029 const void *xfpregs, int size)
11032 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11033 note_name = "FreeBSD";
11035 note_name = "LINUX";
11036 return elfcore_write_note (abfd, buf, bufsiz,
11037 note_name, NT_X86_XSTATE, xfpregs, size);
11041 elfcore_write_ppc_vmx (bfd *abfd,
11044 const void *ppc_vmx,
11047 char *note_name = "LINUX";
11048 return elfcore_write_note (abfd, buf, bufsiz,
11049 note_name, NT_PPC_VMX, ppc_vmx, size);
11053 elfcore_write_ppc_vsx (bfd *abfd,
11056 const void *ppc_vsx,
11059 char *note_name = "LINUX";
11060 return elfcore_write_note (abfd, buf, bufsiz,
11061 note_name, NT_PPC_VSX, ppc_vsx, size);
11065 elfcore_write_ppc_tar (bfd *abfd,
11068 const void *ppc_tar,
11071 char *note_name = "LINUX";
11072 return elfcore_write_note (abfd, buf, bufsiz,
11073 note_name, NT_PPC_TAR, ppc_tar, size);
11077 elfcore_write_ppc_ppr (bfd *abfd,
11080 const void *ppc_ppr,
11083 char *note_name = "LINUX";
11084 return elfcore_write_note (abfd, buf, bufsiz,
11085 note_name, NT_PPC_PPR, ppc_ppr, size);
11089 elfcore_write_ppc_dscr (bfd *abfd,
11092 const void *ppc_dscr,
11095 char *note_name = "LINUX";
11096 return elfcore_write_note (abfd, buf, bufsiz,
11097 note_name, NT_PPC_DSCR, ppc_dscr, size);
11101 elfcore_write_ppc_ebb (bfd *abfd,
11104 const void *ppc_ebb,
11107 char *note_name = "LINUX";
11108 return elfcore_write_note (abfd, buf, bufsiz,
11109 note_name, NT_PPC_EBB, ppc_ebb, size);
11113 elfcore_write_ppc_pmu (bfd *abfd,
11116 const void *ppc_pmu,
11119 char *note_name = "LINUX";
11120 return elfcore_write_note (abfd, buf, bufsiz,
11121 note_name, NT_PPC_PMU, ppc_pmu, size);
11125 elfcore_write_ppc_tm_cgpr (bfd *abfd,
11128 const void *ppc_tm_cgpr,
11131 char *note_name = "LINUX";
11132 return elfcore_write_note (abfd, buf, bufsiz,
11133 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
11137 elfcore_write_ppc_tm_cfpr (bfd *abfd,
11140 const void *ppc_tm_cfpr,
11143 char *note_name = "LINUX";
11144 return elfcore_write_note (abfd, buf, bufsiz,
11145 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
11149 elfcore_write_ppc_tm_cvmx (bfd *abfd,
11152 const void *ppc_tm_cvmx,
11155 char *note_name = "LINUX";
11156 return elfcore_write_note (abfd, buf, bufsiz,
11157 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
11161 elfcore_write_ppc_tm_cvsx (bfd *abfd,
11164 const void *ppc_tm_cvsx,
11167 char *note_name = "LINUX";
11168 return elfcore_write_note (abfd, buf, bufsiz,
11169 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
11173 elfcore_write_ppc_tm_spr (bfd *abfd,
11176 const void *ppc_tm_spr,
11179 char *note_name = "LINUX";
11180 return elfcore_write_note (abfd, buf, bufsiz,
11181 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
11185 elfcore_write_ppc_tm_ctar (bfd *abfd,
11188 const void *ppc_tm_ctar,
11191 char *note_name = "LINUX";
11192 return elfcore_write_note (abfd, buf, bufsiz,
11193 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
11197 elfcore_write_ppc_tm_cppr (bfd *abfd,
11200 const void *ppc_tm_cppr,
11203 char *note_name = "LINUX";
11204 return elfcore_write_note (abfd, buf, bufsiz,
11205 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
11209 elfcore_write_ppc_tm_cdscr (bfd *abfd,
11212 const void *ppc_tm_cdscr,
11215 char *note_name = "LINUX";
11216 return elfcore_write_note (abfd, buf, bufsiz,
11217 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
11221 elfcore_write_s390_high_gprs (bfd *abfd,
11224 const void *s390_high_gprs,
11227 char *note_name = "LINUX";
11228 return elfcore_write_note (abfd, buf, bufsiz,
11229 note_name, NT_S390_HIGH_GPRS,
11230 s390_high_gprs, size);
11234 elfcore_write_s390_timer (bfd *abfd,
11237 const void *s390_timer,
11240 char *note_name = "LINUX";
11241 return elfcore_write_note (abfd, buf, bufsiz,
11242 note_name, NT_S390_TIMER, s390_timer, size);
11246 elfcore_write_s390_todcmp (bfd *abfd,
11249 const void *s390_todcmp,
11252 char *note_name = "LINUX";
11253 return elfcore_write_note (abfd, buf, bufsiz,
11254 note_name, NT_S390_TODCMP, s390_todcmp, size);
11258 elfcore_write_s390_todpreg (bfd *abfd,
11261 const void *s390_todpreg,
11264 char *note_name = "LINUX";
11265 return elfcore_write_note (abfd, buf, bufsiz,
11266 note_name, NT_S390_TODPREG, s390_todpreg, size);
11270 elfcore_write_s390_ctrs (bfd *abfd,
11273 const void *s390_ctrs,
11276 char *note_name = "LINUX";
11277 return elfcore_write_note (abfd, buf, bufsiz,
11278 note_name, NT_S390_CTRS, s390_ctrs, size);
11282 elfcore_write_s390_prefix (bfd *abfd,
11285 const void *s390_prefix,
11288 char *note_name = "LINUX";
11289 return elfcore_write_note (abfd, buf, bufsiz,
11290 note_name, NT_S390_PREFIX, s390_prefix, size);
11294 elfcore_write_s390_last_break (bfd *abfd,
11297 const void *s390_last_break,
11300 char *note_name = "LINUX";
11301 return elfcore_write_note (abfd, buf, bufsiz,
11302 note_name, NT_S390_LAST_BREAK,
11303 s390_last_break, size);
11307 elfcore_write_s390_system_call (bfd *abfd,
11310 const void *s390_system_call,
11313 char *note_name = "LINUX";
11314 return elfcore_write_note (abfd, buf, bufsiz,
11315 note_name, NT_S390_SYSTEM_CALL,
11316 s390_system_call, size);
11320 elfcore_write_s390_tdb (bfd *abfd,
11323 const void *s390_tdb,
11326 char *note_name = "LINUX";
11327 return elfcore_write_note (abfd, buf, bufsiz,
11328 note_name, NT_S390_TDB, s390_tdb, size);
11332 elfcore_write_s390_vxrs_low (bfd *abfd,
11335 const void *s390_vxrs_low,
11338 char *note_name = "LINUX";
11339 return elfcore_write_note (abfd, buf, bufsiz,
11340 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11344 elfcore_write_s390_vxrs_high (bfd *abfd,
11347 const void *s390_vxrs_high,
11350 char *note_name = "LINUX";
11351 return elfcore_write_note (abfd, buf, bufsiz,
11352 note_name, NT_S390_VXRS_HIGH,
11353 s390_vxrs_high, size);
11357 elfcore_write_s390_gs_cb (bfd *abfd,
11360 const void *s390_gs_cb,
11363 char *note_name = "LINUX";
11364 return elfcore_write_note (abfd, buf, bufsiz,
11365 note_name, NT_S390_GS_CB,
11370 elfcore_write_s390_gs_bc (bfd *abfd,
11373 const void *s390_gs_bc,
11376 char *note_name = "LINUX";
11377 return elfcore_write_note (abfd, buf, bufsiz,
11378 note_name, NT_S390_GS_BC,
11383 elfcore_write_arm_vfp (bfd *abfd,
11386 const void *arm_vfp,
11389 char *note_name = "LINUX";
11390 return elfcore_write_note (abfd, buf, bufsiz,
11391 note_name, NT_ARM_VFP, arm_vfp, size);
11395 elfcore_write_aarch_tls (bfd *abfd,
11398 const void *aarch_tls,
11401 char *note_name = "LINUX";
11402 return elfcore_write_note (abfd, buf, bufsiz,
11403 note_name, NT_ARM_TLS, aarch_tls, size);
11407 elfcore_write_aarch_hw_break (bfd *abfd,
11410 const void *aarch_hw_break,
11413 char *note_name = "LINUX";
11414 return elfcore_write_note (abfd, buf, bufsiz,
11415 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11419 elfcore_write_aarch_hw_watch (bfd *abfd,
11422 const void *aarch_hw_watch,
11425 char *note_name = "LINUX";
11426 return elfcore_write_note (abfd, buf, bufsiz,
11427 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11431 elfcore_write_aarch_sve (bfd *abfd,
11434 const void *aarch_sve,
11437 char *note_name = "LINUX";
11438 return elfcore_write_note (abfd, buf, bufsiz,
11439 note_name, NT_ARM_SVE, aarch_sve, size);
11443 elfcore_write_register_note (bfd *abfd,
11446 const char *section,
11450 if (strcmp (section, ".reg2") == 0)
11451 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11452 if (strcmp (section, ".reg-xfp") == 0)
11453 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
11454 if (strcmp (section, ".reg-xstate") == 0)
11455 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
11456 if (strcmp (section, ".reg-ppc-vmx") == 0)
11457 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
11458 if (strcmp (section, ".reg-ppc-vsx") == 0)
11459 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
11460 if (strcmp (section, ".reg-ppc-tar") == 0)
11461 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
11462 if (strcmp (section, ".reg-ppc-ppr") == 0)
11463 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
11464 if (strcmp (section, ".reg-ppc-dscr") == 0)
11465 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
11466 if (strcmp (section, ".reg-ppc-ebb") == 0)
11467 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
11468 if (strcmp (section, ".reg-ppc-pmu") == 0)
11469 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
11470 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
11471 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
11472 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
11473 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
11474 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
11475 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
11476 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
11477 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
11478 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
11479 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
11480 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
11481 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
11482 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
11483 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
11484 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
11485 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
11486 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11487 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
11488 if (strcmp (section, ".reg-s390-timer") == 0)
11489 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11490 if (strcmp (section, ".reg-s390-todcmp") == 0)
11491 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11492 if (strcmp (section, ".reg-s390-todpreg") == 0)
11493 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11494 if (strcmp (section, ".reg-s390-ctrs") == 0)
11495 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11496 if (strcmp (section, ".reg-s390-prefix") == 0)
11497 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
11498 if (strcmp (section, ".reg-s390-last-break") == 0)
11499 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
11500 if (strcmp (section, ".reg-s390-system-call") == 0)
11501 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
11502 if (strcmp (section, ".reg-s390-tdb") == 0)
11503 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
11504 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
11505 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
11506 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
11507 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
11508 if (strcmp (section, ".reg-s390-gs-cb") == 0)
11509 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
11510 if (strcmp (section, ".reg-s390-gs-bc") == 0)
11511 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
11512 if (strcmp (section, ".reg-arm-vfp") == 0)
11513 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
11514 if (strcmp (section, ".reg-aarch-tls") == 0)
11515 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
11516 if (strcmp (section, ".reg-aarch-hw-break") == 0)
11517 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
11518 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
11519 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
11520 if (strcmp (section, ".reg-aarch-sve") == 0)
11521 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
11526 elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
11531 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
11532 gABI specifies that PT_NOTE alignment should be aligned to 4
11533 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
11534 align is less than 4, we use 4 byte alignment. */
11537 if (align != 4 && align != 8)
11541 while (p < buf + size)
11543 Elf_External_Note *xnp = (Elf_External_Note *) p;
11544 Elf_Internal_Note in;
11546 if (offsetof (Elf_External_Note, name) > buf - p + size)
11549 in.type = H_GET_32 (abfd, xnp->type);
11551 in.namesz = H_GET_32 (abfd, xnp->namesz);
11552 in.namedata = xnp->name;
11553 if (in.namesz > buf - in.namedata + size)
11556 in.descsz = H_GET_32 (abfd, xnp->descsz);
11557 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
11558 in.descpos = offset + (in.descdata - buf);
11560 && (in.descdata >= buf + size
11561 || in.descsz > buf - in.descdata + size))
11564 switch (bfd_get_format (abfd))
11571 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
11574 const char * string;
11576 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
11580 GROKER_ELEMENT ("", elfcore_grok_note),
11581 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
11582 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
11583 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
11584 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
11585 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note)
11587 #undef GROKER_ELEMENT
11590 for (i = ARRAY_SIZE (grokers); i--;)
11592 if (in.namesz >= grokers[i].len
11593 && strncmp (in.namedata, grokers[i].string,
11594 grokers[i].len) == 0)
11596 if (! grokers[i].func (abfd, & in))
11605 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
11607 if (! elfobj_grok_gnu_note (abfd, &in))
11610 else if (in.namesz == sizeof "stapsdt"
11611 && strcmp (in.namedata, "stapsdt") == 0)
11613 if (! elfobj_grok_stapsdt_note (abfd, &in))
11619 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
11626 elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
11631 if (size == 0 || (size + 1) == 0)
11634 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
11637 buf = (char *) bfd_malloc (size + 1);
11641 /* PR 17512: file: ec08f814
11642 0-termintate the buffer so that string searches will not overflow. */
11645 if (bfd_bread (buf, size, abfd) != size
11646 || !elf_parse_notes (abfd, buf, size, offset, align))
11656 /* Providing external access to the ELF program header table. */
11658 /* Return an upper bound on the number of bytes required to store a
11659 copy of ABFD's program header table entries. Return -1 if an error
11660 occurs; bfd_get_error will return an appropriate code. */
11663 bfd_get_elf_phdr_upper_bound (bfd *abfd)
11665 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11667 bfd_set_error (bfd_error_wrong_format);
11671 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
11674 /* Copy ABFD's program header table entries to *PHDRS. The entries
11675 will be stored as an array of Elf_Internal_Phdr structures, as
11676 defined in include/elf/internal.h. To find out how large the
11677 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
11679 Return the number of program header table entries read, or -1 if an
11680 error occurs; bfd_get_error will return an appropriate code. */
11683 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
11687 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11689 bfd_set_error (bfd_error_wrong_format);
11693 num_phdrs = elf_elfheader (abfd)->e_phnum;
11694 if (num_phdrs != 0)
11695 memcpy (phdrs, elf_tdata (abfd)->phdr,
11696 num_phdrs * sizeof (Elf_Internal_Phdr));
11701 enum elf_reloc_type_class
11702 _bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
11703 const asection *rel_sec ATTRIBUTE_UNUSED,
11704 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
11706 return reloc_class_normal;
11709 /* For RELA architectures, return the relocation value for a
11710 relocation against a local symbol. */
11713 _bfd_elf_rela_local_sym (bfd *abfd,
11714 Elf_Internal_Sym *sym,
11716 Elf_Internal_Rela *rel)
11718 asection *sec = *psec;
11719 bfd_vma relocation;
11721 relocation = (sec->output_section->vma
11722 + sec->output_offset
11724 if ((sec->flags & SEC_MERGE)
11725 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
11726 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
11729 _bfd_merged_section_offset (abfd, psec,
11730 elf_section_data (sec)->sec_info,
11731 sym->st_value + rel->r_addend);
11734 /* If we have changed the section, and our original section is
11735 marked with SEC_EXCLUDE, it means that the original
11736 SEC_MERGE section has been completely subsumed in some
11737 other SEC_MERGE section. In this case, we need to leave
11738 some info around for --emit-relocs. */
11739 if ((sec->flags & SEC_EXCLUDE) != 0)
11740 sec->kept_section = *psec;
11743 rel->r_addend -= relocation;
11744 rel->r_addend += sec->output_section->vma + sec->output_offset;
11750 _bfd_elf_rel_local_sym (bfd *abfd,
11751 Elf_Internal_Sym *sym,
11755 asection *sec = *psec;
11757 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
11758 return sym->st_value + addend;
11760 return _bfd_merged_section_offset (abfd, psec,
11761 elf_section_data (sec)->sec_info,
11762 sym->st_value + addend);
11765 /* Adjust an address within a section. Given OFFSET within SEC, return
11766 the new offset within the section, based upon changes made to the
11767 section. Returns -1 if the offset is now invalid.
11768 The offset (in abnd out) is in target sized bytes, however big a
11772 _bfd_elf_section_offset (bfd *abfd,
11773 struct bfd_link_info *info,
11777 switch (sec->sec_info_type)
11779 case SEC_INFO_TYPE_STABS:
11780 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
11782 case SEC_INFO_TYPE_EH_FRAME:
11783 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
11786 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
11788 /* Reverse the offset. */
11789 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11790 bfd_size_type address_size = bed->s->arch_size / 8;
11792 /* address_size and sec->size are in octets. Convert
11793 to bytes before subtracting the original offset. */
11794 offset = (sec->size - address_size) / bfd_octets_per_byte (abfd) - offset;
11800 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
11801 reconstruct an ELF file by reading the segments out of remote memory
11802 based on the ELF file header at EHDR_VMA and the ELF program headers it
11803 points to. If not null, *LOADBASEP is filled in with the difference
11804 between the VMAs from which the segments were read, and the VMAs the
11805 file headers (and hence BFD's idea of each section's VMA) put them at.
11807 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
11808 remote memory at target address VMA into the local buffer at MYADDR; it
11809 should return zero on success or an `errno' code on failure. TEMPL must
11810 be a BFD for an ELF target with the word size and byte order found in
11811 the remote memory. */
11814 bfd_elf_bfd_from_remote_memory
11817 bfd_size_type size,
11818 bfd_vma *loadbasep,
11819 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
11821 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
11822 (templ, ehdr_vma, size, loadbasep, target_read_memory);
11826 _bfd_elf_get_synthetic_symtab (bfd *abfd,
11827 long symcount ATTRIBUTE_UNUSED,
11828 asymbol **syms ATTRIBUTE_UNUSED,
11833 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11836 const char *relplt_name;
11837 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
11841 Elf_Internal_Shdr *hdr;
11847 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
11850 if (dynsymcount <= 0)
11853 if (!bed->plt_sym_val)
11856 relplt_name = bed->relplt_name;
11857 if (relplt_name == NULL)
11858 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
11859 relplt = bfd_get_section_by_name (abfd, relplt_name);
11860 if (relplt == NULL)
11863 hdr = &elf_section_data (relplt)->this_hdr;
11864 if (hdr->sh_link != elf_dynsymtab (abfd)
11865 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
11868 plt = bfd_get_section_by_name (abfd, ".plt");
11872 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
11873 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
11876 count = relplt->size / hdr->sh_entsize;
11877 size = count * sizeof (asymbol);
11878 p = relplt->relocation;
11879 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
11881 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
11882 if (p->addend != 0)
11885 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
11887 size += sizeof ("+0x") - 1 + 8;
11892 s = *ret = (asymbol *) bfd_malloc (size);
11896 names = (char *) (s + count);
11897 p = relplt->relocation;
11899 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
11904 addr = bed->plt_sym_val (i, plt, p);
11905 if (addr == (bfd_vma) -1)
11908 *s = **p->sym_ptr_ptr;
11909 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
11910 we are defining a symbol, ensure one of them is set. */
11911 if ((s->flags & BSF_LOCAL) == 0)
11912 s->flags |= BSF_GLOBAL;
11913 s->flags |= BSF_SYNTHETIC;
11915 s->value = addr - plt->vma;
11918 len = strlen ((*p->sym_ptr_ptr)->name);
11919 memcpy (names, (*p->sym_ptr_ptr)->name, len);
11921 if (p->addend != 0)
11925 memcpy (names, "+0x", sizeof ("+0x") - 1);
11926 names += sizeof ("+0x") - 1;
11927 bfd_sprintf_vma (abfd, buf, p->addend);
11928 for (a = buf; *a == '0'; ++a)
11931 memcpy (names, a, len);
11934 memcpy (names, "@plt", sizeof ("@plt"));
11935 names += sizeof ("@plt");
11942 /* It is only used by x86-64 so far.
11943 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
11944 but current usage would allow all of _bfd_std_section to be zero. */
11945 static const asymbol lcomm_sym
11946 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
11947 asection _bfd_elf_large_com_section
11948 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
11949 "LARGE_COMMON", 0, SEC_IS_COMMON);
11952 _bfd_elf_post_process_headers (bfd * abfd,
11953 struct bfd_link_info * link_info ATTRIBUTE_UNUSED)
11955 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
11957 i_ehdrp = elf_elfheader (abfd);
11959 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
11961 /* To make things simpler for the loader on Linux systems we set the
11962 osabi field to ELFOSABI_GNU if the binary contains symbols of
11963 the STT_GNU_IFUNC type or STB_GNU_UNIQUE binding. */
11964 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE
11965 && elf_tdata (abfd)->has_gnu_symbols)
11966 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
11970 /* Return TRUE for ELF symbol types that represent functions.
11971 This is the default version of this function, which is sufficient for
11972 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
11975 _bfd_elf_is_function_type (unsigned int type)
11977 return (type == STT_FUNC
11978 || type == STT_GNU_IFUNC);
11981 /* If the ELF symbol SYM might be a function in SEC, return the
11982 function size and set *CODE_OFF to the function's entry point,
11983 otherwise return zero. */
11986 _bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
11989 bfd_size_type size;
11991 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
11992 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
11993 || sym->section != sec)
11996 *code_off = sym->value;
11998 if (!(sym->flags & BSF_SYNTHETIC))
11999 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;