1 /* ELF executable support for BFD.
3 Copyright (C) 1993-2020 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. */
44 #include "libiberty.h"
45 #include "safe-ctype.h"
46 #include "elf-linux-core.h"
52 static int elf_sort_sections (const void *, const void *);
53 static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
54 static bfd_boolean swap_out_syms (bfd *, struct elf_strtab_hash **, int) ;
55 static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
56 file_ptr offset, size_t align);
58 /* Swap version information in and out. The version information is
59 currently size independent. If that ever changes, this code will
60 need to move into elfcode.h. */
62 /* Swap in a Verdef structure. */
65 _bfd_elf_swap_verdef_in (bfd *abfd,
66 const Elf_External_Verdef *src,
67 Elf_Internal_Verdef *dst)
69 dst->vd_version = H_GET_16 (abfd, src->vd_version);
70 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
71 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
72 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
73 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
74 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
75 dst->vd_next = H_GET_32 (abfd, src->vd_next);
78 /* Swap out a Verdef structure. */
81 _bfd_elf_swap_verdef_out (bfd *abfd,
82 const Elf_Internal_Verdef *src,
83 Elf_External_Verdef *dst)
85 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
86 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
87 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
88 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
89 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
90 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
91 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
94 /* Swap in a Verdaux structure. */
97 _bfd_elf_swap_verdaux_in (bfd *abfd,
98 const Elf_External_Verdaux *src,
99 Elf_Internal_Verdaux *dst)
101 dst->vda_name = H_GET_32 (abfd, src->vda_name);
102 dst->vda_next = H_GET_32 (abfd, src->vda_next);
105 /* Swap out a Verdaux structure. */
108 _bfd_elf_swap_verdaux_out (bfd *abfd,
109 const Elf_Internal_Verdaux *src,
110 Elf_External_Verdaux *dst)
112 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
113 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
116 /* Swap in a Verneed structure. */
119 _bfd_elf_swap_verneed_in (bfd *abfd,
120 const Elf_External_Verneed *src,
121 Elf_Internal_Verneed *dst)
123 dst->vn_version = H_GET_16 (abfd, src->vn_version);
124 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
125 dst->vn_file = H_GET_32 (abfd, src->vn_file);
126 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
127 dst->vn_next = H_GET_32 (abfd, src->vn_next);
130 /* Swap out a Verneed structure. */
133 _bfd_elf_swap_verneed_out (bfd *abfd,
134 const Elf_Internal_Verneed *src,
135 Elf_External_Verneed *dst)
137 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
138 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
139 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
140 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
141 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
144 /* Swap in a Vernaux structure. */
147 _bfd_elf_swap_vernaux_in (bfd *abfd,
148 const Elf_External_Vernaux *src,
149 Elf_Internal_Vernaux *dst)
151 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
152 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
153 dst->vna_other = H_GET_16 (abfd, src->vna_other);
154 dst->vna_name = H_GET_32 (abfd, src->vna_name);
155 dst->vna_next = H_GET_32 (abfd, src->vna_next);
158 /* Swap out a Vernaux structure. */
161 _bfd_elf_swap_vernaux_out (bfd *abfd,
162 const Elf_Internal_Vernaux *src,
163 Elf_External_Vernaux *dst)
165 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
166 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
167 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
168 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
169 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
172 /* Swap in a Versym structure. */
175 _bfd_elf_swap_versym_in (bfd *abfd,
176 const Elf_External_Versym *src,
177 Elf_Internal_Versym *dst)
179 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
182 /* Swap out a Versym structure. */
185 _bfd_elf_swap_versym_out (bfd *abfd,
186 const Elf_Internal_Versym *src,
187 Elf_External_Versym *dst)
189 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
192 /* Standard ELF hash function. Do not change this function; you will
193 cause invalid hash tables to be generated. */
196 bfd_elf_hash (const char *namearg)
198 const unsigned char *name = (const unsigned char *) namearg;
203 while ((ch = *name++) != '\0')
206 if ((g = (h & 0xf0000000)) != 0)
209 /* The ELF ABI says `h &= ~g', but this is equivalent in
210 this case and on some machines one insn instead of two. */
214 return h & 0xffffffff;
217 /* DT_GNU_HASH hash function. Do not change this function; you will
218 cause invalid hash tables to be generated. */
221 bfd_elf_gnu_hash (const char *namearg)
223 const unsigned char *name = (const unsigned char *) namearg;
224 unsigned long h = 5381;
227 while ((ch = *name++) != '\0')
228 h = (h << 5) + h + ch;
229 return h & 0xffffffff;
232 /* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
233 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
235 bfd_elf_allocate_object (bfd *abfd,
237 enum elf_target_id object_id)
239 BFD_ASSERT (object_size >= sizeof (struct elf_obj_tdata));
240 abfd->tdata.any = bfd_zalloc (abfd, object_size);
241 if (abfd->tdata.any == NULL)
244 elf_object_id (abfd) = object_id;
245 if (abfd->direction != read_direction)
247 struct output_elf_obj_tdata *o = bfd_zalloc (abfd, sizeof *o);
250 elf_tdata (abfd)->o = o;
251 elf_program_header_size (abfd) = (bfd_size_type) -1;
258 bfd_elf_make_object (bfd *abfd)
260 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
261 return bfd_elf_allocate_object (abfd, sizeof (struct elf_obj_tdata),
266 bfd_elf_mkcorefile (bfd *abfd)
268 /* I think this can be done just like an object file. */
269 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
271 elf_tdata (abfd)->core = bfd_zalloc (abfd, sizeof (*elf_tdata (abfd)->core));
272 return elf_tdata (abfd)->core != NULL;
276 bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
278 Elf_Internal_Shdr **i_shdrp;
279 bfd_byte *shstrtab = NULL;
281 bfd_size_type shstrtabsize;
283 i_shdrp = elf_elfsections (abfd);
285 || shindex >= elf_numsections (abfd)
286 || i_shdrp[shindex] == 0)
289 shstrtab = i_shdrp[shindex]->contents;
290 if (shstrtab == NULL)
292 /* No cached one, attempt to read, and cache what we read. */
293 offset = i_shdrp[shindex]->sh_offset;
294 shstrtabsize = i_shdrp[shindex]->sh_size;
296 /* Allocate and clear an extra byte at the end, to prevent crashes
297 in case the string table is not terminated. */
298 if (shstrtabsize + 1 <= 1
299 || bfd_seek (abfd, offset, SEEK_SET) != 0
300 || (shstrtab = _bfd_alloc_and_read (abfd, shstrtabsize + 1,
301 shstrtabsize)) == NULL)
303 /* Once we've failed to read it, make sure we don't keep
304 trying. Otherwise, we'll keep allocating space for
305 the string table over and over. */
306 i_shdrp[shindex]->sh_size = 0;
309 shstrtab[shstrtabsize] = '\0';
310 i_shdrp[shindex]->contents = shstrtab;
312 return (char *) shstrtab;
316 bfd_elf_string_from_elf_section (bfd *abfd,
317 unsigned int shindex,
318 unsigned int strindex)
320 Elf_Internal_Shdr *hdr;
325 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
328 hdr = elf_elfsections (abfd)[shindex];
330 if (hdr->contents == NULL)
332 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
334 /* PR 17512: file: f057ec89. */
335 /* xgettext:c-format */
336 _bfd_error_handler (_("%pB: attempt to load strings from"
337 " a non-string section (number %d)"),
342 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
347 /* PR 24273: The string section's contents may have already
348 been loaded elsewhere, eg because a corrupt file has the
349 string section index in the ELF header pointing at a group
350 section. So be paranoid, and test that the last byte of
351 the section is zero. */
352 if (hdr->sh_size == 0 || hdr->contents[hdr->sh_size - 1] != 0)
356 if (strindex >= hdr->sh_size)
358 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
360 /* xgettext:c-format */
361 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
362 abfd, strindex, (uint64_t) hdr->sh_size,
363 (shindex == shstrndx && strindex == hdr->sh_name
365 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
369 return ((char *) hdr->contents) + strindex;
372 /* Read and convert symbols to internal format.
373 SYMCOUNT specifies the number of symbols to read, starting from
374 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
375 are non-NULL, they are used to store the internal symbols, external
376 symbols, and symbol section index extensions, respectively.
377 Returns a pointer to the internal symbol buffer (malloced if necessary)
378 or NULL if there were no symbols or some kind of problem. */
381 bfd_elf_get_elf_syms (bfd *ibfd,
382 Elf_Internal_Shdr *symtab_hdr,
385 Elf_Internal_Sym *intsym_buf,
387 Elf_External_Sym_Shndx *extshndx_buf)
389 Elf_Internal_Shdr *shndx_hdr;
391 const bfd_byte *esym;
392 Elf_External_Sym_Shndx *alloc_extshndx;
393 Elf_External_Sym_Shndx *shndx;
394 Elf_Internal_Sym *alloc_intsym;
395 Elf_Internal_Sym *isym;
396 Elf_Internal_Sym *isymend;
397 const struct elf_backend_data *bed;
402 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
408 /* Normal syms might have section extension entries. */
410 if (elf_symtab_shndx_list (ibfd) != NULL)
412 elf_section_list * entry;
413 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
415 /* Find an index section that is linked to this symtab section. */
416 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
419 if (entry->hdr.sh_link >= elf_numsections (ibfd))
422 if (sections[entry->hdr.sh_link] == symtab_hdr)
424 shndx_hdr = & entry->hdr;
429 if (shndx_hdr == NULL)
431 if (symtab_hdr == & elf_symtab_hdr (ibfd))
432 /* Not really accurate, but this was how the old code used to work. */
433 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
434 /* Otherwise we do nothing. The assumption is that
435 the index table will not be needed. */
439 /* Read the symbols. */
441 alloc_extshndx = NULL;
443 bed = get_elf_backend_data (ibfd);
444 extsym_size = bed->s->sizeof_sym;
445 if (_bfd_mul_overflow (symcount, extsym_size, &amt))
447 bfd_set_error (bfd_error_file_too_big);
451 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
452 if (extsym_buf == NULL)
454 alloc_ext = bfd_malloc (amt);
455 extsym_buf = alloc_ext;
457 if (extsym_buf == NULL
458 || bfd_seek (ibfd, pos, SEEK_SET) != 0
459 || bfd_bread (extsym_buf, amt, ibfd) != amt)
465 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
469 if (_bfd_mul_overflow (symcount, sizeof (Elf_External_Sym_Shndx), &amt))
471 bfd_set_error (bfd_error_file_too_big);
475 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
476 if (extshndx_buf == NULL)
478 alloc_extshndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
479 extshndx_buf = alloc_extshndx;
481 if (extshndx_buf == NULL
482 || bfd_seek (ibfd, pos, SEEK_SET) != 0
483 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
490 if (intsym_buf == NULL)
492 if (_bfd_mul_overflow (symcount, sizeof (Elf_Internal_Sym), &amt))
494 bfd_set_error (bfd_error_file_too_big);
497 alloc_intsym = (Elf_Internal_Sym *) bfd_malloc (amt);
498 intsym_buf = alloc_intsym;
499 if (intsym_buf == NULL)
503 /* Convert the symbols to internal form. */
504 isymend = intsym_buf + symcount;
505 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
506 shndx = extshndx_buf;
508 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
509 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
511 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
512 /* xgettext:c-format */
513 _bfd_error_handler (_("%pB symbol number %lu references"
514 " nonexistent SHT_SYMTAB_SHNDX section"),
515 ibfd, (unsigned long) symoffset);
523 free (alloc_extshndx);
528 /* Look up a symbol name. */
530 bfd_elf_sym_name (bfd *abfd,
531 Elf_Internal_Shdr *symtab_hdr,
532 Elf_Internal_Sym *isym,
536 unsigned int iname = isym->st_name;
537 unsigned int shindex = symtab_hdr->sh_link;
539 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
540 /* Check for a bogus st_shndx to avoid crashing. */
541 && isym->st_shndx < elf_numsections (abfd))
543 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
544 shindex = elf_elfheader (abfd)->e_shstrndx;
547 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
550 else if (sym_sec && *name == '\0')
551 name = bfd_section_name (sym_sec);
556 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
557 sections. The first element is the flags, the rest are section
560 typedef union elf_internal_group {
561 Elf_Internal_Shdr *shdr;
563 } Elf_Internal_Group;
565 /* Return the name of the group signature symbol. Why isn't the
566 signature just a string? */
569 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
571 Elf_Internal_Shdr *hdr;
572 unsigned char esym[sizeof (Elf64_External_Sym)];
573 Elf_External_Sym_Shndx eshndx;
574 Elf_Internal_Sym isym;
576 /* First we need to ensure the symbol table is available. Make sure
577 that it is a symbol table section. */
578 if (ghdr->sh_link >= elf_numsections (abfd))
580 hdr = elf_elfsections (abfd) [ghdr->sh_link];
581 if (hdr->sh_type != SHT_SYMTAB
582 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
585 /* Go read the symbol. */
586 hdr = &elf_tdata (abfd)->symtab_hdr;
587 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
588 &isym, esym, &eshndx) == NULL)
591 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
594 /* Set next_in_group list pointer, and group name for NEWSECT. */
597 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
599 unsigned int num_group = elf_tdata (abfd)->num_group;
601 /* If num_group is zero, read in all SHT_GROUP sections. The count
602 is set to -1 if there are no SHT_GROUP sections. */
605 unsigned int i, shnum;
607 /* First count the number of groups. If we have a SHT_GROUP
608 section with just a flag word (ie. sh_size is 4), ignore it. */
609 shnum = elf_numsections (abfd);
612 #define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
613 ( (shdr)->sh_type == SHT_GROUP \
614 && (shdr)->sh_size >= minsize \
615 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
616 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
618 for (i = 0; i < shnum; i++)
620 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
622 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
628 num_group = (unsigned) -1;
629 elf_tdata (abfd)->num_group = num_group;
630 elf_tdata (abfd)->group_sect_ptr = NULL;
634 /* We keep a list of elf section headers for group sections,
635 so we can find them quickly. */
638 elf_tdata (abfd)->num_group = num_group;
639 amt = num_group * sizeof (Elf_Internal_Shdr *);
640 elf_tdata (abfd)->group_sect_ptr
641 = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
642 if (elf_tdata (abfd)->group_sect_ptr == NULL)
646 for (i = 0; i < shnum; i++)
648 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
650 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
653 Elf_Internal_Group *dest;
655 /* Make sure the group section has a BFD section
657 if (!bfd_section_from_shdr (abfd, i))
660 /* Add to list of sections. */
661 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
664 /* Read the raw contents. */
665 BFD_ASSERT (sizeof (*dest) >= 4 && sizeof (*dest) % 4 == 0);
666 shdr->contents = NULL;
667 if (_bfd_mul_overflow (shdr->sh_size,
668 sizeof (*dest) / 4, &amt)
669 || bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
671 = _bfd_alloc_and_read (abfd, amt, shdr->sh_size)))
674 /* xgettext:c-format */
675 (_("%pB: invalid size field in group section"
676 " header: %#" PRIx64 ""),
677 abfd, (uint64_t) shdr->sh_size);
678 bfd_set_error (bfd_error_bad_value);
683 /* Translate raw contents, a flag word followed by an
684 array of elf section indices all in target byte order,
685 to the flag word followed by an array of elf section
687 src = shdr->contents + shdr->sh_size;
688 dest = (Elf_Internal_Group *) (shdr->contents + amt);
696 idx = H_GET_32 (abfd, src);
697 if (src == shdr->contents)
701 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
702 shdr->bfd_section->flags
703 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
708 dest->shdr = elf_elfsections (abfd)[idx];
709 /* PR binutils/23199: All sections in a
710 section group should be marked with
711 SHF_GROUP. But some tools generate
712 broken objects without SHF_GROUP. Fix
714 dest->shdr->sh_flags |= SHF_GROUP;
717 || dest->shdr->sh_type == SHT_GROUP)
720 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
728 /* PR 17510: Corrupt binaries might contain invalid groups. */
729 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
731 elf_tdata (abfd)->num_group = num_group;
733 /* If all groups are invalid then fail. */
736 elf_tdata (abfd)->group_sect_ptr = NULL;
737 elf_tdata (abfd)->num_group = num_group = -1;
739 (_("%pB: no valid group sections found"), abfd);
740 bfd_set_error (bfd_error_bad_value);
746 if (num_group != (unsigned) -1)
748 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
751 for (j = 0; j < num_group; j++)
753 /* Begin search from previous found group. */
754 unsigned i = (j + search_offset) % num_group;
756 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
757 Elf_Internal_Group *idx;
763 idx = (Elf_Internal_Group *) shdr->contents;
764 if (idx == NULL || shdr->sh_size < 4)
766 /* See PR 21957 for a reproducer. */
767 /* xgettext:c-format */
768 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
769 abfd, shdr->bfd_section);
770 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
771 bfd_set_error (bfd_error_bad_value);
774 n_elt = shdr->sh_size / 4;
776 /* Look through this group's sections to see if current
777 section is a member. */
779 if ((++idx)->shdr == hdr)
783 /* We are a member of this group. Go looking through
784 other members to see if any others are linked via
786 idx = (Elf_Internal_Group *) shdr->contents;
787 n_elt = shdr->sh_size / 4;
789 if ((++idx)->shdr != NULL
790 && (s = idx->shdr->bfd_section) != NULL
791 && elf_next_in_group (s) != NULL)
795 /* Snarf the group name from other member, and
796 insert current section in circular list. */
797 elf_group_name (newsect) = elf_group_name (s);
798 elf_next_in_group (newsect) = elf_next_in_group (s);
799 elf_next_in_group (s) = newsect;
805 gname = group_signature (abfd, shdr);
808 elf_group_name (newsect) = gname;
810 /* Start a circular list with one element. */
811 elf_next_in_group (newsect) = newsect;
814 /* If the group section has been created, point to the
816 if (shdr->bfd_section != NULL)
817 elf_next_in_group (shdr->bfd_section) = newsect;
819 elf_tdata (abfd)->group_search_offset = i;
826 if (elf_group_name (newsect) == NULL)
828 /* xgettext:c-format */
829 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
837 _bfd_elf_setup_sections (bfd *abfd)
840 unsigned int num_group = elf_tdata (abfd)->num_group;
841 bfd_boolean result = TRUE;
844 /* Process SHF_LINK_ORDER. */
845 for (s = abfd->sections; s != NULL; s = s->next)
847 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
848 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
850 unsigned int elfsec = this_hdr->sh_link;
851 /* FIXME: The old Intel compiler and old strip/objcopy may
852 not set the sh_link or sh_info fields. Hence we could
853 get the situation where elfsec is 0. */
856 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
857 bed->link_order_error_handler
858 /* xgettext:c-format */
859 (_("%pB: warning: sh_link not set for section `%pA'"),
864 asection *linksec = NULL;
866 if (elfsec < elf_numsections (abfd))
868 this_hdr = elf_elfsections (abfd)[elfsec];
869 linksec = this_hdr->bfd_section;
873 Some strip/objcopy may leave an incorrect value in
874 sh_link. We don't want to proceed. */
878 /* xgettext:c-format */
879 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
880 s->owner, elfsec, s);
884 elf_linked_to_section (s) = linksec;
887 else if (this_hdr->sh_type == SHT_GROUP
888 && elf_next_in_group (s) == NULL)
891 /* xgettext:c-format */
892 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
893 abfd, elf_section_data (s)->this_idx);
898 /* Process section groups. */
899 if (num_group == (unsigned) -1)
902 for (i = 0; i < num_group; i++)
904 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
905 Elf_Internal_Group *idx;
908 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
909 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
912 /* xgettext:c-format */
913 (_("%pB: section group entry number %u is corrupt"),
919 idx = (Elf_Internal_Group *) shdr->contents;
920 n_elt = shdr->sh_size / 4;
926 if (idx->shdr == NULL)
928 else if (idx->shdr->bfd_section)
929 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
930 else if (idx->shdr->sh_type != SHT_RELA
931 && idx->shdr->sh_type != SHT_REL)
933 /* There are some unknown sections in the group. */
935 /* xgettext:c-format */
936 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
939 bfd_elf_string_from_elf_section (abfd,
940 (elf_elfheader (abfd)
953 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
955 return elf_next_in_group (sec) != NULL;
959 bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
961 if (elf_sec_group (sec) != NULL)
962 return elf_group_name (sec);
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 /* This a copy of lto_section defined in GCC (lto-streamer.h). */
995 int16_t major_version;
996 int16_t minor_version;
997 unsigned char slim_object;
999 /* Flags is a private field that is not defined publicly. */
1003 /* Make a BFD section from an ELF section. We store a pointer to the
1004 BFD section in the bfd_section field of the header. */
1007 _bfd_elf_make_section_from_shdr (bfd *abfd,
1008 Elf_Internal_Shdr *hdr,
1014 const struct elf_backend_data *bed;
1015 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
1017 if (hdr->bfd_section != NULL)
1020 newsect = bfd_make_section_anyway (abfd, name);
1021 if (newsect == NULL)
1024 hdr->bfd_section = newsect;
1025 elf_section_data (newsect)->this_hdr = *hdr;
1026 elf_section_data (newsect)->this_idx = shindex;
1028 /* Always use the real type/flags. */
1029 elf_section_type (newsect) = hdr->sh_type;
1030 elf_section_flags (newsect) = hdr->sh_flags;
1032 newsect->filepos = hdr->sh_offset;
1034 flags = SEC_NO_FLAGS;
1035 if (hdr->sh_type != SHT_NOBITS)
1036 flags |= SEC_HAS_CONTENTS;
1037 if (hdr->sh_type == SHT_GROUP)
1039 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1042 if (hdr->sh_type != SHT_NOBITS)
1045 if ((hdr->sh_flags & SHF_WRITE) == 0)
1046 flags |= SEC_READONLY;
1047 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1049 else if ((flags & SEC_LOAD) != 0)
1051 if ((hdr->sh_flags & SHF_MERGE) != 0)
1054 newsect->entsize = hdr->sh_entsize;
1056 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1057 flags |= SEC_STRINGS;
1058 if (hdr->sh_flags & SHF_GROUP)
1059 if (!setup_group (abfd, hdr, newsect))
1061 if ((hdr->sh_flags & SHF_TLS) != 0)
1062 flags |= SEC_THREAD_LOCAL;
1063 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1064 flags |= SEC_EXCLUDE;
1066 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1068 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1069 but binutils as of 2019-07-23 did not set the EI_OSABI header
1073 case ELFOSABI_FREEBSD:
1074 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1075 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1079 if ((flags & SEC_ALLOC) == 0)
1081 /* The debugging sections appear to be recognized only by name,
1082 not any sort of flag. Their SEC_ALLOC bits are cleared. */
1083 if (name [0] == '.')
1085 if (strncmp (name, ".debug", 6) == 0
1086 || strncmp (name, ".gnu.linkonce.wi.", 17) == 0
1087 || strncmp (name, ".zdebug", 7) == 0)
1088 flags |= SEC_DEBUGGING | SEC_ELF_OCTETS;
1089 else if (strncmp (name, GNU_BUILD_ATTRS_SECTION_NAME, 21) == 0
1090 || strncmp (name, ".note.gnu", 9) == 0)
1092 flags |= SEC_ELF_OCTETS;
1095 else if (strncmp (name, ".line", 5) == 0
1096 || strncmp (name, ".stab", 5) == 0
1097 || strcmp (name, ".gdb_index") == 0)
1098 flags |= SEC_DEBUGGING;
1102 if (!bfd_set_section_vma (newsect, hdr->sh_addr / opb)
1103 || !bfd_set_section_size (newsect, hdr->sh_size)
1104 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
1107 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1108 only link a single copy of the section. This is used to support
1109 g++. g++ will emit each template expansion in its own section.
1110 The symbols will be defined as weak, so that multiple definitions
1111 are permitted. The GNU linker extension is to actually discard
1112 all but one of the sections. */
1113 if (CONST_STRNEQ (name, ".gnu.linkonce")
1114 && elf_next_in_group (newsect) == NULL)
1115 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1117 if (!bfd_set_section_flags (newsect, flags))
1120 bed = get_elf_backend_data (abfd);
1121 if (bed->elf_backend_section_flags)
1122 if (!bed->elf_backend_section_flags (hdr))
1125 /* We do not parse the PT_NOTE segments as we are interested even in the
1126 separate debug info files which may have the segments offsets corrupted.
1127 PT_NOTEs from the core files are currently not parsed using BFD. */
1128 if (hdr->sh_type == SHT_NOTE)
1132 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
1135 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1136 hdr->sh_offset, hdr->sh_addralign);
1140 if ((newsect->flags & SEC_ALLOC) != 0)
1142 Elf_Internal_Phdr *phdr;
1143 unsigned int i, nload;
1145 /* Some ELF linkers produce binaries with all the program header
1146 p_paddr fields zero. If we have such a binary with more than
1147 one PT_LOAD header, then leave the section lma equal to vma
1148 so that we don't create sections with overlapping lma. */
1149 phdr = elf_tdata (abfd)->phdr;
1150 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1151 if (phdr->p_paddr != 0)
1153 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1155 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1158 phdr = elf_tdata (abfd)->phdr;
1159 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1161 if (((phdr->p_type == PT_LOAD
1162 && (hdr->sh_flags & SHF_TLS) == 0)
1163 || phdr->p_type == PT_TLS)
1164 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
1166 if ((newsect->flags & SEC_LOAD) == 0)
1167 newsect->lma = (phdr->p_paddr
1168 + hdr->sh_addr - phdr->p_vaddr) / opb;
1170 /* We used to use the same adjustment for SEC_LOAD
1171 sections, but that doesn't work if the segment
1172 is packed with code from multiple VMAs.
1173 Instead we calculate the section LMA based on
1174 the segment LMA. It is assumed that the
1175 segment will contain sections with contiguous
1176 LMAs, even if the VMAs are not. */
1177 newsect->lma = (phdr->p_paddr
1178 + hdr->sh_offset - phdr->p_offset) / opb;
1180 /* With contiguous segments, we can't tell from file
1181 offsets whether a section with zero size should
1182 be placed at the end of one segment or the
1183 beginning of the next. Decide based on vaddr. */
1184 if (hdr->sh_addr >= phdr->p_vaddr
1185 && (hdr->sh_addr + hdr->sh_size
1186 <= phdr->p_vaddr + phdr->p_memsz))
1192 /* Compress/decompress DWARF debug sections with names: .debug_* and
1193 .zdebug_*, after the section flags is set. */
1194 if ((newsect->flags & SEC_DEBUGGING)
1195 && ((name[1] == 'd' && name[6] == '_')
1196 || (name[1] == 'z' && name[7] == '_')))
1198 enum { nothing, compress, decompress } action = nothing;
1199 int compression_header_size;
1200 bfd_size_type uncompressed_size;
1201 unsigned int uncompressed_align_power;
1202 bfd_boolean compressed
1203 = bfd_is_section_compressed_with_header (abfd, newsect,
1204 &compression_header_size,
1206 &uncompressed_align_power);
1209 /* Compressed section. Check if we should decompress. */
1210 if ((abfd->flags & BFD_DECOMPRESS))
1211 action = decompress;
1214 /* Compress the uncompressed section or convert from/to .zdebug*
1215 section. Check if we should compress. */
1216 if (action == nothing)
1218 if (newsect->size != 0
1219 && (abfd->flags & BFD_COMPRESS)
1220 && compression_header_size >= 0
1221 && uncompressed_size > 0
1223 || ((compression_header_size > 0)
1224 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
1230 if (action == compress)
1232 if (!bfd_init_section_compress_status (abfd, newsect))
1235 /* xgettext:c-format */
1236 (_("%pB: unable to initialize compress status for section %s"),
1243 if (!bfd_init_section_decompress_status (abfd, newsect))
1246 /* xgettext:c-format */
1247 (_("%pB: unable to initialize decompress status for section %s"),
1253 if (abfd->is_linker_input)
1256 && (action == decompress
1257 || (action == compress
1258 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
1260 /* Convert section name from .zdebug_* to .debug_* so
1261 that linker will consider this section as a debug
1263 char *new_name = convert_zdebug_to_debug (abfd, name);
1264 if (new_name == NULL)
1266 bfd_rename_section (newsect, new_name);
1270 /* For objdump, don't rename the section. For objcopy, delay
1271 section rename to elf_fake_sections. */
1272 newsect->flags |= SEC_ELF_RENAME;
1275 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1277 const char *lto_section_name = ".gnu.lto_.lto.";
1278 if (strncmp (name, lto_section_name, strlen (lto_section_name)) == 0)
1280 struct lto_section lsection;
1281 if (bfd_get_section_contents (abfd, newsect, &lsection, 0,
1282 sizeof (struct lto_section)))
1283 abfd->lto_slim_object = lsection.slim_object;
1289 const char *const bfd_elf_section_type_names[] =
1291 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1292 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1293 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1296 /* ELF relocs are against symbols. If we are producing relocatable
1297 output, and the reloc is against an external symbol, and nothing
1298 has given us any additional addend, the resulting reloc will also
1299 be against the same symbol. In such a case, we don't want to
1300 change anything about the way the reloc is handled, since it will
1301 all be done at final link time. Rather than put special case code
1302 into bfd_perform_relocation, all the reloc types use this howto
1303 function. It just short circuits the reloc if producing
1304 relocatable output against an external symbol. */
1306 bfd_reloc_status_type
1307 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1308 arelent *reloc_entry,
1310 void *data ATTRIBUTE_UNUSED,
1311 asection *input_section,
1313 char **error_message ATTRIBUTE_UNUSED)
1315 if (output_bfd != NULL
1316 && (symbol->flags & BSF_SECTION_SYM) == 0
1317 && (! reloc_entry->howto->partial_inplace
1318 || reloc_entry->addend == 0))
1320 reloc_entry->address += input_section->output_offset;
1321 return bfd_reloc_ok;
1324 return bfd_reloc_continue;
1327 /* Returns TRUE if section A matches section B.
1328 Names, addresses and links may be different, but everything else
1329 should be the same. */
1332 section_match (const Elf_Internal_Shdr * a,
1333 const Elf_Internal_Shdr * b)
1335 if (a->sh_type != b->sh_type
1336 || ((a->sh_flags ^ b->sh_flags) & ~SHF_INFO_LINK) != 0
1337 || a->sh_addralign != b->sh_addralign
1338 || a->sh_entsize != b->sh_entsize)
1340 if (a->sh_type == SHT_SYMTAB
1341 || a->sh_type == SHT_STRTAB)
1343 return a->sh_size == b->sh_size;
1346 /* Find a section in OBFD that has the same characteristics
1347 as IHEADER. Return the index of this section or SHN_UNDEF if
1348 none can be found. Check's section HINT first, as this is likely
1349 to be the correct section. */
1352 find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1353 const unsigned int hint)
1355 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1358 BFD_ASSERT (iheader != NULL);
1360 /* See PR 20922 for a reproducer of the NULL test. */
1361 if (hint < elf_numsections (obfd)
1362 && oheaders[hint] != NULL
1363 && section_match (oheaders[hint], iheader))
1366 for (i = 1; i < elf_numsections (obfd); i++)
1368 Elf_Internal_Shdr * oheader = oheaders[i];
1370 if (oheader == NULL)
1372 if (section_match (oheader, iheader))
1373 /* FIXME: Do we care if there is a potential for
1374 multiple matches ? */
1381 /* PR 19938: Attempt to set the ELF section header fields of an OS or
1382 Processor specific section, based upon a matching input section.
1383 Returns TRUE upon success, FALSE otherwise. */
1386 copy_special_section_fields (const bfd *ibfd,
1388 const Elf_Internal_Shdr *iheader,
1389 Elf_Internal_Shdr *oheader,
1390 const unsigned int secnum)
1392 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1393 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1394 bfd_boolean changed = FALSE;
1395 unsigned int sh_link;
1397 if (oheader->sh_type == SHT_NOBITS)
1399 /* This is a feature for objcopy --only-keep-debug:
1400 When a section's type is changed to NOBITS, we preserve
1401 the sh_link and sh_info fields so that they can be
1402 matched up with the original.
1404 Note: Strictly speaking these assignments are wrong.
1405 The sh_link and sh_info fields should point to the
1406 relevent sections in the output BFD, which may not be in
1407 the same location as they were in the input BFD. But
1408 the whole point of this action is to preserve the
1409 original values of the sh_link and sh_info fields, so
1410 that they can be matched up with the section headers in
1411 the original file. So strictly speaking we may be
1412 creating an invalid ELF file, but it is only for a file
1413 that just contains debug info and only for sections
1414 without any contents. */
1415 if (oheader->sh_link == 0)
1416 oheader->sh_link = iheader->sh_link;
1417 if (oheader->sh_info == 0)
1418 oheader->sh_info = iheader->sh_info;
1422 /* Allow the target a chance to decide how these fields should be set. */
1423 if (bed->elf_backend_copy_special_section_fields (ibfd, obfd,
1427 /* We have an iheader which might match oheader, and which has non-zero
1428 sh_info and/or sh_link fields. Attempt to follow those links and find
1429 the section in the output bfd which corresponds to the linked section
1430 in the input bfd. */
1431 if (iheader->sh_link != SHN_UNDEF)
1433 /* See PR 20931 for a reproducer. */
1434 if (iheader->sh_link >= elf_numsections (ibfd))
1437 /* xgettext:c-format */
1438 (_("%pB: invalid sh_link field (%d) in section number %d"),
1439 ibfd, iheader->sh_link, secnum);
1443 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1444 if (sh_link != SHN_UNDEF)
1446 oheader->sh_link = sh_link;
1450 /* FIXME: Should we install iheader->sh_link
1451 if we could not find a match ? */
1453 /* xgettext:c-format */
1454 (_("%pB: failed to find link section for section %d"), obfd, secnum);
1457 if (iheader->sh_info)
1459 /* The sh_info field can hold arbitrary information, but if the
1460 SHF_LINK_INFO flag is set then it should be interpreted as a
1462 if (iheader->sh_flags & SHF_INFO_LINK)
1464 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1466 if (sh_link != SHN_UNDEF)
1467 oheader->sh_flags |= SHF_INFO_LINK;
1470 /* No idea what it means - just copy it. */
1471 sh_link = iheader->sh_info;
1473 if (sh_link != SHN_UNDEF)
1475 oheader->sh_info = sh_link;
1480 /* xgettext:c-format */
1481 (_("%pB: failed to find info section for section %d"), obfd, secnum);
1487 /* Copy the program header and other data from one object module to
1491 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1493 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1494 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1495 const struct elf_backend_data *bed;
1498 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1499 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1502 if (!elf_flags_init (obfd))
1504 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1505 elf_flags_init (obfd) = TRUE;
1508 elf_gp (obfd) = elf_gp (ibfd);
1510 /* Also copy the EI_OSABI field. */
1511 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1512 elf_elfheader (ibfd)->e_ident[EI_OSABI];
1514 /* If set, copy the EI_ABIVERSION field. */
1515 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1516 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1517 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
1519 /* Copy object attributes. */
1520 _bfd_elf_copy_obj_attributes (ibfd, obfd);
1522 if (iheaders == NULL || oheaders == NULL)
1525 bed = get_elf_backend_data (obfd);
1527 /* Possibly copy other fields in the section header. */
1528 for (i = 1; i < elf_numsections (obfd); i++)
1531 Elf_Internal_Shdr * oheader = oheaders[i];
1533 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1534 because of a special case need for generating separate debug info
1535 files. See below for more details. */
1537 || (oheader->sh_type != SHT_NOBITS
1538 && oheader->sh_type < SHT_LOOS))
1541 /* Ignore empty sections, and sections whose
1542 fields have already been initialised. */
1543 if (oheader->sh_size == 0
1544 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1547 /* Scan for the matching section in the input bfd.
1548 First we try for a direct mapping between the input and output sections. */
1549 for (j = 1; j < elf_numsections (ibfd); j++)
1551 const Elf_Internal_Shdr * iheader = iheaders[j];
1553 if (iheader == NULL)
1556 if (oheader->bfd_section != NULL
1557 && iheader->bfd_section != NULL
1558 && iheader->bfd_section->output_section != NULL
1559 && iheader->bfd_section->output_section == oheader->bfd_section)
1561 /* We have found a connection from the input section to the
1562 output section. Attempt to copy the header fields. If
1563 this fails then do not try any further sections - there
1564 should only be a one-to-one mapping between input and output. */
1565 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1566 j = elf_numsections (ibfd);
1571 if (j < elf_numsections (ibfd))
1574 /* That failed. So try to deduce the corresponding input section.
1575 Unfortunately we cannot compare names as the output string table
1576 is empty, so instead we check size, address and type. */
1577 for (j = 1; j < elf_numsections (ibfd); j++)
1579 const Elf_Internal_Shdr * iheader = iheaders[j];
1581 if (iheader == NULL)
1584 /* Try matching fields in the input section's header.
1585 Since --only-keep-debug turns all non-debug sections into
1586 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1588 if ((oheader->sh_type == SHT_NOBITS
1589 || iheader->sh_type == oheader->sh_type)
1590 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1591 == (oheader->sh_flags & ~ SHF_INFO_LINK)
1592 && iheader->sh_addralign == oheader->sh_addralign
1593 && iheader->sh_entsize == oheader->sh_entsize
1594 && iheader->sh_size == oheader->sh_size
1595 && iheader->sh_addr == oheader->sh_addr
1596 && (iheader->sh_info != oheader->sh_info
1597 || iheader->sh_link != oheader->sh_link))
1599 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1604 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1606 /* Final attempt. Call the backend copy function
1607 with a NULL input section. */
1608 (void) bed->elf_backend_copy_special_section_fields (ibfd, obfd,
1617 get_segment_type (unsigned int p_type)
1622 case PT_NULL: pt = "NULL"; break;
1623 case PT_LOAD: pt = "LOAD"; break;
1624 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1625 case PT_INTERP: pt = "INTERP"; break;
1626 case PT_NOTE: pt = "NOTE"; break;
1627 case PT_SHLIB: pt = "SHLIB"; break;
1628 case PT_PHDR: pt = "PHDR"; break;
1629 case PT_TLS: pt = "TLS"; break;
1630 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
1631 case PT_GNU_STACK: pt = "STACK"; break;
1632 case PT_GNU_RELRO: pt = "RELRO"; break;
1633 default: pt = NULL; break;
1638 /* Print out the program headers. */
1641 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1643 FILE *f = (FILE *) farg;
1644 Elf_Internal_Phdr *p;
1646 bfd_byte *dynbuf = NULL;
1648 p = elf_tdata (abfd)->phdr;
1653 fprintf (f, _("\nProgram Header:\n"));
1654 c = elf_elfheader (abfd)->e_phnum;
1655 for (i = 0; i < c; i++, p++)
1657 const char *pt = get_segment_type (p->p_type);
1662 sprintf (buf, "0x%lx", p->p_type);
1665 fprintf (f, "%8s off 0x", pt);
1666 bfd_fprintf_vma (abfd, f, p->p_offset);
1667 fprintf (f, " vaddr 0x");
1668 bfd_fprintf_vma (abfd, f, p->p_vaddr);
1669 fprintf (f, " paddr 0x");
1670 bfd_fprintf_vma (abfd, f, p->p_paddr);
1671 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1672 fprintf (f, " filesz 0x");
1673 bfd_fprintf_vma (abfd, f, p->p_filesz);
1674 fprintf (f, " memsz 0x");
1675 bfd_fprintf_vma (abfd, f, p->p_memsz);
1676 fprintf (f, " flags %c%c%c",
1677 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1678 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1679 (p->p_flags & PF_X) != 0 ? 'x' : '-');
1680 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1681 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
1686 s = bfd_get_section_by_name (abfd, ".dynamic");
1689 unsigned int elfsec;
1690 unsigned long shlink;
1691 bfd_byte *extdyn, *extdynend;
1693 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1695 fprintf (f, _("\nDynamic Section:\n"));
1697 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1700 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1701 if (elfsec == SHN_BAD)
1703 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1705 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1706 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1709 /* PR 17512: file: 6f427532. */
1710 if (s->size < extdynsize)
1712 extdynend = extdyn + s->size;
1713 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1715 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
1717 Elf_Internal_Dyn dyn;
1718 const char *name = "";
1720 bfd_boolean stringp;
1721 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1723 (*swap_dyn_in) (abfd, extdyn, &dyn);
1725 if (dyn.d_tag == DT_NULL)
1732 if (bed->elf_backend_get_target_dtag)
1733 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1735 if (!strcmp (name, ""))
1737 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
1742 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
1743 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1744 case DT_PLTGOT: name = "PLTGOT"; break;
1745 case DT_HASH: name = "HASH"; break;
1746 case DT_STRTAB: name = "STRTAB"; break;
1747 case DT_SYMTAB: name = "SYMTAB"; break;
1748 case DT_RELA: name = "RELA"; break;
1749 case DT_RELASZ: name = "RELASZ"; break;
1750 case DT_RELAENT: name = "RELAENT"; break;
1751 case DT_STRSZ: name = "STRSZ"; break;
1752 case DT_SYMENT: name = "SYMENT"; break;
1753 case DT_INIT: name = "INIT"; break;
1754 case DT_FINI: name = "FINI"; break;
1755 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1756 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
1757 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1758 case DT_REL: name = "REL"; break;
1759 case DT_RELSZ: name = "RELSZ"; break;
1760 case DT_RELENT: name = "RELENT"; break;
1761 case DT_PLTREL: name = "PLTREL"; break;
1762 case DT_DEBUG: name = "DEBUG"; break;
1763 case DT_TEXTREL: name = "TEXTREL"; break;
1764 case DT_JMPREL: name = "JMPREL"; break;
1765 case DT_BIND_NOW: name = "BIND_NOW"; break;
1766 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1767 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1768 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1769 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
1770 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
1771 case DT_FLAGS: name = "FLAGS"; break;
1772 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1773 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
1774 case DT_CHECKSUM: name = "CHECKSUM"; break;
1775 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1776 case DT_MOVEENT: name = "MOVEENT"; break;
1777 case DT_MOVESZ: name = "MOVESZ"; break;
1778 case DT_FEATURE: name = "FEATURE"; break;
1779 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1780 case DT_SYMINSZ: name = "SYMINSZ"; break;
1781 case DT_SYMINENT: name = "SYMINENT"; break;
1782 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1783 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1784 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
1785 case DT_PLTPAD: name = "PLTPAD"; break;
1786 case DT_MOVETAB: name = "MOVETAB"; break;
1787 case DT_SYMINFO: name = "SYMINFO"; break;
1788 case DT_RELACOUNT: name = "RELACOUNT"; break;
1789 case DT_RELCOUNT: name = "RELCOUNT"; break;
1790 case DT_FLAGS_1: name = "FLAGS_1"; break;
1791 case DT_VERSYM: name = "VERSYM"; break;
1792 case DT_VERDEF: name = "VERDEF"; break;
1793 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1794 case DT_VERNEED: name = "VERNEED"; break;
1795 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
1796 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
1797 case DT_USED: name = "USED"; break;
1798 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
1799 case DT_GNU_HASH: name = "GNU_HASH"; break;
1802 fprintf (f, " %-20s ", name);
1806 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1811 unsigned int tagv = dyn.d_un.d_val;
1813 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1816 fprintf (f, "%s", string);
1825 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1826 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1828 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
1832 if (elf_dynverdef (abfd) != 0)
1834 Elf_Internal_Verdef *t;
1836 fprintf (f, _("\nVersion definitions:\n"));
1837 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1839 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
1840 t->vd_flags, t->vd_hash,
1841 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1842 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
1844 Elf_Internal_Verdaux *a;
1847 for (a = t->vd_auxptr->vda_nextptr;
1851 a->vda_nodename ? a->vda_nodename : "<corrupt>");
1857 if (elf_dynverref (abfd) != 0)
1859 Elf_Internal_Verneed *t;
1861 fprintf (f, _("\nVersion References:\n"));
1862 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1864 Elf_Internal_Vernaux *a;
1866 fprintf (f, _(" required from %s:\n"),
1867 t->vn_filename ? t->vn_filename : "<corrupt>");
1868 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1869 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
1870 a->vna_flags, a->vna_other,
1871 a->vna_nodename ? a->vna_nodename : "<corrupt>");
1882 /* Get version name. If BASE_P is TRUE, return "Base" for VER_FLG_BASE
1883 and return symbol version for symbol version itself. */
1886 _bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1888 bfd_boolean *hidden)
1890 const char *version_string = NULL;
1891 if (elf_dynversym (abfd) != 0
1892 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1894 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1896 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1897 vernum &= VERSYM_VERSION;
1900 version_string = "";
1901 else if (vernum == 1
1902 && (vernum > elf_tdata (abfd)->cverdefs
1903 || (elf_tdata (abfd)->verdef[0].vd_flags
1905 version_string = base_p ? "Base" : "";
1906 else if (vernum <= elf_tdata (abfd)->cverdefs)
1908 const char *nodename
1909 = elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1910 version_string = "";
1913 || symbol->name == NULL
1914 || strcmp (symbol->name, nodename) != 0)
1915 version_string = nodename;
1919 Elf_Internal_Verneed *t;
1921 version_string = _("<corrupt>");
1922 for (t = elf_tdata (abfd)->verref;
1926 Elf_Internal_Vernaux *a;
1928 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1930 if (a->vna_other == vernum)
1932 version_string = a->vna_nodename;
1939 return version_string;
1942 /* Display ELF-specific fields of a symbol. */
1945 bfd_elf_print_symbol (bfd *abfd,
1948 bfd_print_symbol_type how)
1950 FILE *file = (FILE *) filep;
1953 case bfd_print_symbol_name:
1954 fprintf (file, "%s", symbol->name);
1956 case bfd_print_symbol_more:
1957 fprintf (file, "elf ");
1958 bfd_fprintf_vma (abfd, file, symbol->value);
1959 fprintf (file, " %x", symbol->flags);
1961 case bfd_print_symbol_all:
1963 const char *section_name;
1964 const char *name = NULL;
1965 const struct elf_backend_data *bed;
1966 unsigned char st_other;
1968 const char *version_string;
1971 section_name = symbol->section ? symbol->section->name : "(*none*)";
1973 bed = get_elf_backend_data (abfd);
1974 if (bed->elf_backend_print_symbol_all)
1975 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1979 name = symbol->name;
1980 bfd_print_symbol_vandf (abfd, file, symbol);
1983 fprintf (file, " %s\t", section_name);
1984 /* Print the "other" value for a symbol. For common symbols,
1985 we've already printed the size; now print the alignment.
1986 For other symbols, we have no specified alignment, and
1987 we've printed the address; now print the size. */
1988 if (symbol->section && bfd_is_com_section (symbol->section))
1989 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1991 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1992 bfd_fprintf_vma (abfd, file, val);
1994 /* If we have version information, print it. */
1995 version_string = _bfd_elf_get_symbol_version_string (abfd,
2002 fprintf (file, " %-11s", version_string);
2007 fprintf (file, " (%s)", version_string);
2008 for (i = 10 - strlen (version_string); i > 0; --i)
2013 /* If the st_other field is not zero, print it. */
2014 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
2019 case STV_INTERNAL: fprintf (file, " .internal"); break;
2020 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2021 case STV_PROTECTED: fprintf (file, " .protected"); break;
2023 /* Some other non-defined flags are also present, so print
2025 fprintf (file, " 0x%02x", (unsigned int) st_other);
2028 fprintf (file, " %s", name);
2034 /* ELF .o/exec file reading */
2036 /* Create a new bfd section from an ELF section header. */
2039 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
2041 Elf_Internal_Shdr *hdr;
2042 Elf_Internal_Ehdr *ehdr;
2043 const struct elf_backend_data *bed;
2045 bfd_boolean ret = TRUE;
2046 static bfd_boolean * sections_being_created = NULL;
2047 static bfd * sections_being_created_abfd = NULL;
2048 static unsigned int nesting = 0;
2050 if (shindex >= elf_numsections (abfd))
2055 /* PR17512: A corrupt ELF binary might contain a recursive group of
2056 sections, with each the string indices pointing to the next in the
2057 loop. Detect this here, by refusing to load a section that we are
2058 already in the process of loading. We only trigger this test if
2059 we have nested at least three sections deep as normal ELF binaries
2060 can expect to recurse at least once.
2062 FIXME: It would be better if this array was attached to the bfd,
2063 rather than being held in a static pointer. */
2065 if (sections_being_created_abfd != abfd)
2066 sections_being_created = NULL;
2067 if (sections_being_created == NULL)
2069 size_t amt = elf_numsections (abfd) * sizeof (bfd_boolean);
2071 /* PR 26005: Do not use bfd_zalloc here as the memory might
2072 be released before the bfd has been fully scanned. */
2073 sections_being_created = (bfd_boolean *) bfd_malloc (amt);
2074 if (sections_being_created == NULL)
2076 memset (sections_being_created, FALSE, amt);
2077 sections_being_created_abfd = abfd;
2079 if (sections_being_created [shindex])
2082 (_("%pB: warning: loop in section dependencies detected"), abfd);
2085 sections_being_created [shindex] = TRUE;
2088 hdr = elf_elfsections (abfd)[shindex];
2089 ehdr = elf_elfheader (abfd);
2090 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
2095 bed = get_elf_backend_data (abfd);
2096 switch (hdr->sh_type)
2099 /* Inactive section. Throw it away. */
2102 case SHT_PROGBITS: /* Normal section with contents. */
2103 case SHT_NOBITS: /* .bss section. */
2104 case SHT_HASH: /* .hash section. */
2105 case SHT_NOTE: /* .note section. */
2106 case SHT_INIT_ARRAY: /* .init_array section. */
2107 case SHT_FINI_ARRAY: /* .fini_array section. */
2108 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
2109 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
2110 case SHT_GNU_HASH: /* .gnu.hash section. */
2111 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2114 case SHT_DYNAMIC: /* Dynamic linking information. */
2115 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2118 if (hdr->sh_link > elf_numsections (abfd))
2120 /* PR 10478: Accept Solaris binaries with a sh_link
2121 field set to SHN_BEFORE or SHN_AFTER. */
2122 switch (bfd_get_arch (abfd))
2125 case bfd_arch_sparc:
2126 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2127 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2129 /* Otherwise fall through. */
2134 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
2136 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
2138 Elf_Internal_Shdr *dynsymhdr;
2140 /* The shared libraries distributed with hpux11 have a bogus
2141 sh_link field for the ".dynamic" section. Find the
2142 string table for the ".dynsym" section instead. */
2143 if (elf_dynsymtab (abfd) != 0)
2145 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2146 hdr->sh_link = dynsymhdr->sh_link;
2150 unsigned int i, num_sec;
2152 num_sec = elf_numsections (abfd);
2153 for (i = 1; i < num_sec; i++)
2155 dynsymhdr = elf_elfsections (abfd)[i];
2156 if (dynsymhdr->sh_type == SHT_DYNSYM)
2158 hdr->sh_link = dynsymhdr->sh_link;
2166 case SHT_SYMTAB: /* A symbol table. */
2167 if (elf_onesymtab (abfd) == shindex)
2170 if (hdr->sh_entsize != bed->s->sizeof_sym)
2173 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2175 if (hdr->sh_size != 0)
2177 /* Some assemblers erroneously set sh_info to one with a
2178 zero sh_size. ld sees this as a global symbol count
2179 of (unsigned) -1. Fix it here. */
2184 /* PR 18854: A binary might contain more than one symbol table.
2185 Unusual, but possible. Warn, but continue. */
2186 if (elf_onesymtab (abfd) != 0)
2189 /* xgettext:c-format */
2190 (_("%pB: warning: multiple symbol tables detected"
2191 " - ignoring the table in section %u"),
2195 elf_onesymtab (abfd) = shindex;
2196 elf_symtab_hdr (abfd) = *hdr;
2197 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
2198 abfd->flags |= HAS_SYMS;
2200 /* Sometimes a shared object will map in the symbol table. If
2201 SHF_ALLOC is set, and this is a shared object, then we also
2202 treat this section as a BFD section. We can not base the
2203 decision purely on SHF_ALLOC, because that flag is sometimes
2204 set in a relocatable object file, which would confuse the
2206 if ((hdr->sh_flags & SHF_ALLOC) != 0
2207 && (abfd->flags & DYNAMIC) != 0
2208 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2212 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2213 can't read symbols without that section loaded as well. It
2214 is most likely specified by the next section header. */
2216 elf_section_list * entry;
2217 unsigned int i, num_sec;
2219 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2220 if (entry->hdr.sh_link == shindex)
2223 num_sec = elf_numsections (abfd);
2224 for (i = shindex + 1; i < num_sec; i++)
2226 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2228 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2229 && hdr2->sh_link == shindex)
2234 for (i = 1; i < shindex; i++)
2236 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2238 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2239 && hdr2->sh_link == shindex)
2244 ret = bfd_section_from_shdr (abfd, i);
2245 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2249 case SHT_DYNSYM: /* A dynamic symbol table. */
2250 if (elf_dynsymtab (abfd) == shindex)
2253 if (hdr->sh_entsize != bed->s->sizeof_sym)
2256 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2258 if (hdr->sh_size != 0)
2261 /* Some linkers erroneously set sh_info to one with a
2262 zero sh_size. ld sees this as a global symbol count
2263 of (unsigned) -1. Fix it here. */
2268 /* PR 18854: A binary might contain more than one dynamic symbol table.
2269 Unusual, but possible. Warn, but continue. */
2270 if (elf_dynsymtab (abfd) != 0)
2273 /* xgettext:c-format */
2274 (_("%pB: warning: multiple dynamic symbol tables detected"
2275 " - ignoring the table in section %u"),
2279 elf_dynsymtab (abfd) = shindex;
2280 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2281 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2282 abfd->flags |= HAS_SYMS;
2284 /* Besides being a symbol table, we also treat this as a regular
2285 section, so that objcopy can handle it. */
2286 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2289 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
2291 elf_section_list * entry;
2293 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2294 if (entry->ndx == shindex)
2297 entry = bfd_alloc (abfd, sizeof (*entry));
2300 entry->ndx = shindex;
2302 entry->next = elf_symtab_shndx_list (abfd);
2303 elf_symtab_shndx_list (abfd) = entry;
2304 elf_elfsections (abfd)[shindex] = & entry->hdr;
2308 case SHT_STRTAB: /* A string table. */
2309 if (hdr->bfd_section != NULL)
2312 if (ehdr->e_shstrndx == shindex)
2314 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2315 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
2319 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2322 elf_tdata (abfd)->strtab_hdr = *hdr;
2323 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
2327 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2330 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2331 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2332 elf_elfsections (abfd)[shindex] = hdr;
2333 /* We also treat this as a regular section, so that objcopy
2335 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2340 /* If the string table isn't one of the above, then treat it as a
2341 regular section. We need to scan all the headers to be sure,
2342 just in case this strtab section appeared before the above. */
2343 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2345 unsigned int i, num_sec;
2347 num_sec = elf_numsections (abfd);
2348 for (i = 1; i < num_sec; i++)
2350 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2351 if (hdr2->sh_link == shindex)
2353 /* Prevent endless recursion on broken objects. */
2356 if (! bfd_section_from_shdr (abfd, i))
2358 if (elf_onesymtab (abfd) == i)
2360 if (elf_dynsymtab (abfd) == i)
2361 goto dynsymtab_strtab;
2365 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2370 /* *These* do a lot of work -- but build no sections! */
2372 asection *target_sect;
2373 Elf_Internal_Shdr *hdr2, **p_hdr;
2374 unsigned int num_sec = elf_numsections (abfd);
2375 struct bfd_elf_section_data *esdt;
2378 != (bfd_size_type) (hdr->sh_type == SHT_REL
2379 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
2382 /* Check for a bogus link to avoid crashing. */
2383 if (hdr->sh_link >= num_sec)
2386 /* xgettext:c-format */
2387 (_("%pB: invalid link %u for reloc section %s (index %u)"),
2388 abfd, hdr->sh_link, name, shindex);
2389 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2394 /* For some incomprehensible reason Oracle distributes
2395 libraries for Solaris in which some of the objects have
2396 bogus sh_link fields. It would be nice if we could just
2397 reject them, but, unfortunately, some people need to use
2398 them. We scan through the section headers; if we find only
2399 one suitable symbol table, we clobber the sh_link to point
2400 to it. I hope this doesn't break anything.
2402 Don't do it on executable nor shared library. */
2403 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2404 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
2405 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2411 for (scan = 1; scan < num_sec; scan++)
2413 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2414 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2425 hdr->sh_link = found;
2428 /* Get the symbol table. */
2429 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2430 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
2431 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
2434 /* If this is an alloc section in an executable or shared
2435 library, or the reloc section does not use the main symbol
2436 table we don't treat it as a reloc section. BFD can't
2437 adequately represent such a section, so at least for now,
2438 we don't try. We just present it as a normal section. We
2439 also can't use it as a reloc section if it points to the
2440 null section, an invalid section, another reloc section, or
2441 its sh_link points to the null section. */
2442 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2443 && (hdr->sh_flags & SHF_ALLOC) != 0)
2444 || hdr->sh_link == SHN_UNDEF
2445 || hdr->sh_link != elf_onesymtab (abfd)
2446 || hdr->sh_info == SHN_UNDEF
2447 || hdr->sh_info >= num_sec
2448 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2449 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
2451 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2456 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
2459 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2460 if (target_sect == NULL)
2463 esdt = elf_section_data (target_sect);
2464 if (hdr->sh_type == SHT_RELA)
2465 p_hdr = &esdt->rela.hdr;
2467 p_hdr = &esdt->rel.hdr;
2469 /* PR 17512: file: 0b4f81b7.
2470 Also see PR 24456, for a file which deliberately has two reloc
2474 if (!bed->init_secondary_reloc_section (abfd, hdr, name, shindex))
2477 /* xgettext:c-format */
2478 (_("%pB: warning: secondary relocation section '%s' "
2479 "for section %pA found - ignoring"),
2480 abfd, name, target_sect);
2485 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
2490 elf_elfsections (abfd)[shindex] = hdr2;
2491 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2492 * bed->s->int_rels_per_ext_rel);
2493 target_sect->flags |= SEC_RELOC;
2494 target_sect->relocation = NULL;
2495 target_sect->rel_filepos = hdr->sh_offset;
2496 /* In the section to which the relocations apply, mark whether
2497 its relocations are of the REL or RELA variety. */
2498 if (hdr->sh_size != 0)
2500 if (hdr->sh_type == SHT_RELA)
2501 target_sect->use_rela_p = 1;
2503 abfd->flags |= HAS_RELOC;
2507 case SHT_GNU_verdef:
2508 elf_dynverdef (abfd) = shindex;
2509 elf_tdata (abfd)->dynverdef_hdr = *hdr;
2510 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2513 case SHT_GNU_versym:
2514 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
2517 elf_dynversym (abfd) = shindex;
2518 elf_tdata (abfd)->dynversym_hdr = *hdr;
2519 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2522 case SHT_GNU_verneed:
2523 elf_dynverref (abfd) = shindex;
2524 elf_tdata (abfd)->dynverref_hdr = *hdr;
2525 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2532 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
2535 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2541 /* Possibly an attributes section. */
2542 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2543 || hdr->sh_type == bed->obj_attrs_section_type)
2545 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2547 _bfd_elf_parse_attributes (abfd, hdr);
2551 /* Check for any processor-specific section types. */
2552 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
2555 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2557 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2558 /* FIXME: How to properly handle allocated section reserved
2559 for applications? */
2561 /* xgettext:c-format */
2562 (_("%pB: unknown type [%#x] section `%s'"),
2563 abfd, hdr->sh_type, name);
2566 /* Allow sections reserved for applications. */
2567 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2572 else if (hdr->sh_type >= SHT_LOPROC
2573 && hdr->sh_type <= SHT_HIPROC)
2574 /* FIXME: We should handle this section. */
2576 /* xgettext:c-format */
2577 (_("%pB: unknown type [%#x] section `%s'"),
2578 abfd, hdr->sh_type, name);
2579 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
2581 /* Unrecognised OS-specific sections. */
2582 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2583 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2584 required to correctly process the section and the file should
2585 be rejected with an error message. */
2587 /* xgettext:c-format */
2588 (_("%pB: unknown type [%#x] section `%s'"),
2589 abfd, hdr->sh_type, name);
2592 /* Otherwise it should be processed. */
2593 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2598 /* FIXME: We should handle this section. */
2600 /* xgettext:c-format */
2601 (_("%pB: unknown type [%#x] section `%s'"),
2602 abfd, hdr->sh_type, name);
2610 if (sections_being_created && sections_being_created_abfd == abfd)
2611 sections_being_created [shindex] = FALSE;
2612 if (-- nesting == 0)
2614 free (sections_being_created);
2615 sections_being_created = NULL;
2616 sections_being_created_abfd = NULL;
2621 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2624 bfd_sym_from_r_symndx (struct sym_cache *cache,
2626 unsigned long r_symndx)
2628 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2630 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2632 Elf_Internal_Shdr *symtab_hdr;
2633 unsigned char esym[sizeof (Elf64_External_Sym)];
2634 Elf_External_Sym_Shndx eshndx;
2636 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2637 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
2638 &cache->sym[ent], esym, &eshndx) == NULL)
2641 if (cache->abfd != abfd)
2643 memset (cache->indx, -1, sizeof (cache->indx));
2646 cache->indx[ent] = r_symndx;
2649 return &cache->sym[ent];
2652 /* Given an ELF section number, retrieve the corresponding BFD
2656 bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
2658 if (sec_index >= elf_numsections (abfd))
2660 return elf_elfsections (abfd)[sec_index]->bfd_section;
2663 static const struct bfd_elf_special_section special_sections_b[] =
2665 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2666 { NULL, 0, 0, 0, 0 }
2669 static const struct bfd_elf_special_section special_sections_c[] =
2671 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
2672 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
2673 { NULL, 0, 0, 0, 0 }
2676 static const struct bfd_elf_special_section special_sections_d[] =
2678 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2679 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2680 /* There are more DWARF sections than these, but they needn't be added here
2681 unless you have to cope with broken compilers that don't emit section
2682 attributes or you want to help the user writing assembler. */
2683 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2684 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2685 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2686 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
2687 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
2688 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2689 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2690 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2691 { NULL, 0, 0, 0, 0 }
2694 static const struct bfd_elf_special_section special_sections_f[] =
2696 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2697 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2698 { NULL, 0 , 0, 0, 0 }
2701 static const struct bfd_elf_special_section special_sections_g[] =
2703 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2704 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2705 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2706 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
2707 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2708 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
2709 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2710 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2711 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2712 { NULL, 0, 0, 0, 0 }
2715 static const struct bfd_elf_special_section special_sections_h[] =
2717 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2718 { NULL, 0, 0, 0, 0 }
2721 static const struct bfd_elf_special_section special_sections_i[] =
2723 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2724 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2725 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2726 { NULL, 0, 0, 0, 0 }
2729 static const struct bfd_elf_special_section special_sections_l[] =
2731 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
2732 { NULL, 0, 0, 0, 0 }
2735 static const struct bfd_elf_special_section special_sections_n[] =
2737 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
2738 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2739 { NULL, 0, 0, 0, 0 }
2742 static const struct bfd_elf_special_section special_sections_p[] =
2744 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2745 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2746 { NULL, 0, 0, 0, 0 }
2749 static const struct bfd_elf_special_section special_sections_r[] =
2751 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2752 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
2753 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2754 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2755 { NULL, 0, 0, 0, 0 }
2758 static const struct bfd_elf_special_section special_sections_s[] =
2760 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2761 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2762 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
2763 /* See struct bfd_elf_special_section declaration for the semantics of
2764 this special case where .prefix_length != strlen (.prefix). */
2765 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2766 { NULL, 0, 0, 0, 0 }
2769 static const struct bfd_elf_special_section special_sections_t[] =
2771 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2772 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2773 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2774 { NULL, 0, 0, 0, 0 }
2777 static const struct bfd_elf_special_section special_sections_z[] =
2779 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2780 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
2781 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2782 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
2783 { NULL, 0, 0, 0, 0 }
2786 static const struct bfd_elf_special_section * const special_sections[] =
2788 special_sections_b, /* 'b' */
2789 special_sections_c, /* 'c' */
2790 special_sections_d, /* 'd' */
2792 special_sections_f, /* 'f' */
2793 special_sections_g, /* 'g' */
2794 special_sections_h, /* 'h' */
2795 special_sections_i, /* 'i' */
2798 special_sections_l, /* 'l' */
2800 special_sections_n, /* 'n' */
2802 special_sections_p, /* 'p' */
2804 special_sections_r, /* 'r' */
2805 special_sections_s, /* 's' */
2806 special_sections_t, /* 't' */
2812 special_sections_z /* 'z' */
2815 const struct bfd_elf_special_section *
2816 _bfd_elf_get_special_section (const char *name,
2817 const struct bfd_elf_special_section *spec,
2823 len = strlen (name);
2825 for (i = 0; spec[i].prefix != NULL; i++)
2828 int prefix_len = spec[i].prefix_length;
2830 if (len < prefix_len)
2832 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
2835 suffix_len = spec[i].suffix_length;
2836 if (suffix_len <= 0)
2838 if (name[prefix_len] != 0)
2840 if (suffix_len == 0)
2842 if (name[prefix_len] != '.'
2843 && (suffix_len == -2
2844 || (rela && spec[i].type == SHT_REL)))
2850 if (len < prefix_len + suffix_len)
2852 if (memcmp (name + len - suffix_len,
2853 spec[i].prefix + prefix_len,
2863 const struct bfd_elf_special_section *
2864 _bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2867 const struct bfd_elf_special_section *spec;
2868 const struct elf_backend_data *bed;
2870 /* See if this is one of the special sections. */
2871 if (sec->name == NULL)
2874 bed = get_elf_backend_data (abfd);
2875 spec = bed->special_sections;
2878 spec = _bfd_elf_get_special_section (sec->name,
2879 bed->special_sections,
2885 if (sec->name[0] != '.')
2888 i = sec->name[1] - 'b';
2889 if (i < 0 || i > 'z' - 'b')
2892 spec = special_sections[i];
2897 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2901 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2903 struct bfd_elf_section_data *sdata;
2904 const struct elf_backend_data *bed;
2905 const struct bfd_elf_special_section *ssect;
2907 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2910 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
2914 sec->used_by_bfd = sdata;
2917 /* Indicate whether or not this section should use RELA relocations. */
2918 bed = get_elf_backend_data (abfd);
2919 sec->use_rela_p = bed->default_use_rela_p;
2921 /* Set up ELF section type and flags for newly created sections, if
2922 there is an ABI mandated section. */
2923 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2926 elf_section_type (sec) = ssect->type;
2927 elf_section_flags (sec) = ssect->attr;
2930 return _bfd_generic_new_section_hook (abfd, sec);
2933 /* Create a new bfd section from an ELF program header.
2935 Since program segments have no names, we generate a synthetic name
2936 of the form segment<NUM>, where NUM is generally the index in the
2937 program header table. For segments that are split (see below) we
2938 generate the names segment<NUM>a and segment<NUM>b.
2940 Note that some program segments may have a file size that is different than
2941 (less than) the memory size. All this means is that at execution the
2942 system must allocate the amount of memory specified by the memory size,
2943 but only initialize it with the first "file size" bytes read from the
2944 file. This would occur for example, with program segments consisting
2945 of combined data+bss.
2947 To handle the above situation, this routine generates TWO bfd sections
2948 for the single program segment. The first has the length specified by
2949 the file size of the segment, and the second has the length specified
2950 by the difference between the two sizes. In effect, the segment is split
2951 into its initialized and uninitialized parts.
2956 _bfd_elf_make_section_from_phdr (bfd *abfd,
2957 Elf_Internal_Phdr *hdr,
2959 const char *type_name)
2966 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
2968 split = ((hdr->p_memsz > 0)
2969 && (hdr->p_filesz > 0)
2970 && (hdr->p_memsz > hdr->p_filesz));
2972 if (hdr->p_filesz > 0)
2974 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
2975 len = strlen (namebuf) + 1;
2976 name = (char *) bfd_alloc (abfd, len);
2979 memcpy (name, namebuf, len);
2980 newsect = bfd_make_section (abfd, name);
2981 if (newsect == NULL)
2983 newsect->vma = hdr->p_vaddr / opb;
2984 newsect->lma = hdr->p_paddr / opb;
2985 newsect->size = hdr->p_filesz;
2986 newsect->filepos = hdr->p_offset;
2987 newsect->flags |= SEC_HAS_CONTENTS;
2988 newsect->alignment_power = bfd_log2 (hdr->p_align);
2989 if (hdr->p_type == PT_LOAD)
2991 newsect->flags |= SEC_ALLOC;
2992 newsect->flags |= SEC_LOAD;
2993 if (hdr->p_flags & PF_X)
2995 /* FIXME: all we known is that it has execute PERMISSION,
2997 newsect->flags |= SEC_CODE;
3000 if (!(hdr->p_flags & PF_W))
3002 newsect->flags |= SEC_READONLY;
3006 if (hdr->p_memsz > hdr->p_filesz)
3010 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
3011 len = strlen (namebuf) + 1;
3012 name = (char *) bfd_alloc (abfd, len);
3015 memcpy (name, namebuf, len);
3016 newsect = bfd_make_section (abfd, name);
3017 if (newsect == NULL)
3019 newsect->vma = (hdr->p_vaddr + hdr->p_filesz) / opb;
3020 newsect->lma = (hdr->p_paddr + hdr->p_filesz) / opb;
3021 newsect->size = hdr->p_memsz - hdr->p_filesz;
3022 newsect->filepos = hdr->p_offset + hdr->p_filesz;
3023 align = newsect->vma & -newsect->vma;
3024 if (align == 0 || align > hdr->p_align)
3025 align = hdr->p_align;
3026 newsect->alignment_power = bfd_log2 (align);
3027 if (hdr->p_type == PT_LOAD)
3029 newsect->flags |= SEC_ALLOC;
3030 if (hdr->p_flags & PF_X)
3031 newsect->flags |= SEC_CODE;
3033 if (!(hdr->p_flags & PF_W))
3034 newsect->flags |= SEC_READONLY;
3041 _bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3043 /* The return value is ignored. Build-ids are considered optional. */
3044 if (templ->xvec->flavour == bfd_target_elf_flavour)
3045 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3051 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
3053 const struct elf_backend_data *bed;
3055 switch (hdr->p_type)
3058 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
3061 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
3063 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3064 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
3068 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
3071 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
3074 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
3076 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3082 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
3085 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
3087 case PT_GNU_EH_FRAME:
3088 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
3092 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
3095 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
3098 /* Check for any processor-specific program segment types. */
3099 bed = get_elf_backend_data (abfd);
3100 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
3104 /* Return the REL_HDR for SEC, assuming there is only a single one, either
3108 _bfd_elf_single_rel_hdr (asection *sec)
3110 if (elf_section_data (sec)->rel.hdr)
3112 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3113 return elf_section_data (sec)->rel.hdr;
3116 return elf_section_data (sec)->rela.hdr;
3120 _bfd_elf_set_reloc_sh_name (bfd *abfd,
3121 Elf_Internal_Shdr *rel_hdr,
3122 const char *sec_name,
3123 bfd_boolean use_rela_p)
3125 char *name = (char *) bfd_alloc (abfd,
3126 sizeof ".rela" + strlen (sec_name));
3130 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3132 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3134 if (rel_hdr->sh_name == (unsigned int) -1)
3140 /* Allocate and initialize a section-header for a new reloc section,
3141 containing relocations against ASECT. It is stored in RELDATA. If
3142 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3146 _bfd_elf_init_reloc_shdr (bfd *abfd,
3147 struct bfd_elf_section_reloc_data *reldata,
3148 const char *sec_name,
3149 bfd_boolean use_rela_p,
3150 bfd_boolean delay_st_name_p)
3152 Elf_Internal_Shdr *rel_hdr;
3153 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3155 BFD_ASSERT (reldata->hdr == NULL);
3156 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
3157 reldata->hdr = rel_hdr;
3159 if (delay_st_name_p)
3160 rel_hdr->sh_name = (unsigned int) -1;
3161 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3164 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3165 rel_hdr->sh_entsize = (use_rela_p
3166 ? bed->s->sizeof_rela
3167 : bed->s->sizeof_rel);
3168 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
3169 rel_hdr->sh_flags = 0;
3170 rel_hdr->sh_addr = 0;
3171 rel_hdr->sh_size = 0;
3172 rel_hdr->sh_offset = 0;
3177 /* Return the default section type based on the passed in section flags. */
3180 bfd_elf_get_default_section_type (flagword flags)
3182 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
3183 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3185 return SHT_PROGBITS;
3188 struct fake_section_arg
3190 struct bfd_link_info *link_info;
3194 /* Set up an ELF internal section header for a section. */
3197 elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
3199 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
3200 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3201 struct bfd_elf_section_data *esd = elf_section_data (asect);
3202 Elf_Internal_Shdr *this_hdr;
3203 unsigned int sh_type;
3204 const char *name = asect->name;
3205 bfd_boolean delay_st_name_p = FALSE;
3210 /* We already failed; just get out of the bfd_map_over_sections
3215 this_hdr = &esd->this_hdr;
3219 /* ld: compress DWARF debug sections with names: .debug_*. */
3220 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3221 && (asect->flags & SEC_DEBUGGING)
3225 /* Set SEC_ELF_COMPRESS to indicate this section should be
3227 asect->flags |= SEC_ELF_COMPRESS;
3228 /* If this section will be compressed, delay adding section
3229 name to section name section after it is compressed in
3230 _bfd_elf_assign_file_positions_for_non_load. */
3231 delay_st_name_p = TRUE;
3234 else if ((asect->flags & SEC_ELF_RENAME))
3236 /* objcopy: rename output DWARF debug section. */
3237 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3239 /* When we decompress or compress with SHF_COMPRESSED,
3240 convert section name from .zdebug_* to .debug_* if
3244 char *new_name = convert_zdebug_to_debug (abfd, name);
3245 if (new_name == NULL)
3253 else if (asect->compress_status == COMPRESS_SECTION_DONE)
3255 /* PR binutils/18087: Compression does not always make a
3256 section smaller. So only rename the section when
3257 compression has actually taken place. If input section
3258 name is .zdebug_*, we should never compress it again. */
3259 char *new_name = convert_debug_to_zdebug (abfd, name);
3260 if (new_name == NULL)
3265 BFD_ASSERT (name[1] != 'z');
3270 if (delay_st_name_p)
3271 this_hdr->sh_name = (unsigned int) -1;
3275 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3277 if (this_hdr->sh_name == (unsigned int) -1)
3284 /* Don't clear sh_flags. Assembler may set additional bits. */
3286 if ((asect->flags & SEC_ALLOC) != 0
3287 || asect->user_set_vma)
3288 this_hdr->sh_addr = asect->vma * bfd_octets_per_byte (abfd, asect);
3290 this_hdr->sh_addr = 0;
3292 this_hdr->sh_offset = 0;
3293 this_hdr->sh_size = asect->size;
3294 this_hdr->sh_link = 0;
3295 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3296 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3299 /* xgettext:c-format */
3300 (_("%pB: error: alignment power %d of section `%pA' is too big"),
3301 abfd, asect->alignment_power, asect);
3305 /* Set sh_addralign to the highest power of two given by alignment
3306 consistent with the section VMA. Linker scripts can force VMA. */
3307 mask = ((bfd_vma) 1 << asect->alignment_power) | this_hdr->sh_addr;
3308 this_hdr->sh_addralign = mask & -mask;
3309 /* The sh_entsize and sh_info fields may have been set already by
3310 copy_private_section_data. */
3312 this_hdr->bfd_section = asect;
3313 this_hdr->contents = NULL;
3315 /* If the section type is unspecified, we set it based on
3317 if ((asect->flags & SEC_GROUP) != 0)
3318 sh_type = SHT_GROUP;
3320 sh_type = bfd_elf_get_default_section_type (asect->flags);
3322 if (this_hdr->sh_type == SHT_NULL)
3323 this_hdr->sh_type = sh_type;
3324 else if (this_hdr->sh_type == SHT_NOBITS
3325 && sh_type == SHT_PROGBITS
3326 && (asect->flags & SEC_ALLOC) != 0)
3328 /* Warn if we are changing a NOBITS section to PROGBITS, but
3329 allow the link to proceed. This can happen when users link
3330 non-bss input sections to bss output sections, or emit data
3331 to a bss output section via a linker script. */
3333 (_("warning: section `%pA' type changed to PROGBITS"), asect);
3334 this_hdr->sh_type = sh_type;
3337 switch (this_hdr->sh_type)
3348 case SHT_INIT_ARRAY:
3349 case SHT_FINI_ARRAY:
3350 case SHT_PREINIT_ARRAY:
3351 this_hdr->sh_entsize = bed->s->arch_size / 8;
3355 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
3359 this_hdr->sh_entsize = bed->s->sizeof_sym;
3363 this_hdr->sh_entsize = bed->s->sizeof_dyn;
3367 if (get_elf_backend_data (abfd)->may_use_rela_p)
3368 this_hdr->sh_entsize = bed->s->sizeof_rela;
3372 if (get_elf_backend_data (abfd)->may_use_rel_p)
3373 this_hdr->sh_entsize = bed->s->sizeof_rel;
3376 case SHT_GNU_versym:
3377 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
3380 case SHT_GNU_verdef:
3381 this_hdr->sh_entsize = 0;
3382 /* objcopy or strip will copy over sh_info, but may not set
3383 cverdefs. The linker will set cverdefs, but sh_info will be
3385 if (this_hdr->sh_info == 0)
3386 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3388 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3389 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
3392 case SHT_GNU_verneed:
3393 this_hdr->sh_entsize = 0;
3394 /* objcopy or strip will copy over sh_info, but may not set
3395 cverrefs. The linker will set cverrefs, but sh_info will be
3397 if (this_hdr->sh_info == 0)
3398 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3400 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3401 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
3405 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
3409 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3413 if ((asect->flags & SEC_ALLOC) != 0)
3414 this_hdr->sh_flags |= SHF_ALLOC;
3415 if ((asect->flags & SEC_READONLY) == 0)
3416 this_hdr->sh_flags |= SHF_WRITE;
3417 if ((asect->flags & SEC_CODE) != 0)
3418 this_hdr->sh_flags |= SHF_EXECINSTR;
3419 if ((asect->flags & SEC_MERGE) != 0)
3421 this_hdr->sh_flags |= SHF_MERGE;
3422 this_hdr->sh_entsize = asect->entsize;
3424 if ((asect->flags & SEC_STRINGS) != 0)
3425 this_hdr->sh_flags |= SHF_STRINGS;
3426 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
3427 this_hdr->sh_flags |= SHF_GROUP;
3428 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
3430 this_hdr->sh_flags |= SHF_TLS;
3431 if (asect->size == 0
3432 && (asect->flags & SEC_HAS_CONTENTS) == 0)
3434 struct bfd_link_order *o = asect->map_tail.link_order;
3436 this_hdr->sh_size = 0;
3439 this_hdr->sh_size = o->offset + o->size;
3440 if (this_hdr->sh_size != 0)
3441 this_hdr->sh_type = SHT_NOBITS;
3445 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3446 this_hdr->sh_flags |= SHF_EXCLUDE;
3448 /* If the section has relocs, set up a section header for the
3449 SHT_REL[A] section. If two relocation sections are required for
3450 this section, it is up to the processor-specific back-end to
3451 create the other. */
3452 if ((asect->flags & SEC_RELOC) != 0)
3454 /* When doing a relocatable link, create both REL and RELA sections if
3457 /* Do the normal setup if we wouldn't create any sections here. */
3458 && esd->rel.count + esd->rela.count > 0
3459 && (bfd_link_relocatable (arg->link_info)
3460 || arg->link_info->emitrelocations))
3462 if (esd->rel.count && esd->rel.hdr == NULL
3463 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
3464 FALSE, delay_st_name_p))
3469 if (esd->rela.count && esd->rela.hdr == NULL
3470 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
3471 TRUE, delay_st_name_p))
3477 else if (!_bfd_elf_init_reloc_shdr (abfd,
3479 ? &esd->rela : &esd->rel),
3489 /* Check for processor-specific section types. */
3490 sh_type = this_hdr->sh_type;
3491 if (bed->elf_backend_fake_sections
3492 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
3498 if (sh_type == SHT_NOBITS && asect->size != 0)
3500 /* Don't change the header type from NOBITS if we are being
3501 called for objcopy --only-keep-debug. */
3502 this_hdr->sh_type = sh_type;
3506 /* Fill in the contents of a SHT_GROUP section. Called from
3507 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3508 when ELF targets use the generic linker, ld. Called for ld -r
3509 from bfd_elf_final_link. */
3512 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
3514 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
3515 asection *elt, *first;
3519 /* Ignore linker created group section. See elfNN_ia64_object_p in
3521 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3526 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3528 unsigned long symindx = 0;
3530 /* elf_group_id will have been set up by objcopy and the
3532 if (elf_group_id (sec) != NULL)
3533 symindx = elf_group_id (sec)->udata.i;
3537 /* If called from the assembler, swap_out_syms will have set up
3539 PR 25699: A corrupt input file could contain bogus group info. */
3540 if (elf_section_syms (abfd) == NULL)
3545 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3547 elf_section_data (sec)->this_hdr.sh_info = symindx;
3549 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
3551 /* The ELF backend linker sets sh_info to -2 when the group
3552 signature symbol is global, and thus the index can't be
3553 set until all local symbols are output. */
3555 struct bfd_elf_section_data *sec_data;
3556 unsigned long symndx;
3557 unsigned long extsymoff;
3558 struct elf_link_hash_entry *h;
3560 /* The point of this little dance to the first SHF_GROUP section
3561 then back to the SHT_GROUP section is that this gets us to
3562 the SHT_GROUP in the input object. */
3563 igroup = elf_sec_group (elf_next_in_group (sec));
3564 sec_data = elf_section_data (igroup);
3565 symndx = sec_data->this_hdr.sh_info;
3567 if (!elf_bad_symtab (igroup->owner))
3569 Elf_Internal_Shdr *symtab_hdr;
3571 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3572 extsymoff = symtab_hdr->sh_info;
3574 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3575 while (h->root.type == bfd_link_hash_indirect
3576 || h->root.type == bfd_link_hash_warning)
3577 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3579 elf_section_data (sec)->this_hdr.sh_info = h->indx;
3582 /* The contents won't be allocated for "ld -r" or objcopy. */
3584 if (sec->contents == NULL)
3587 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
3589 /* Arrange for the section to be written out. */
3590 elf_section_data (sec)->this_hdr.contents = sec->contents;
3591 if (sec->contents == NULL)
3598 loc = sec->contents + sec->size;
3600 /* Get the pointer to the first section in the group that gas
3601 squirreled away here. objcopy arranges for this to be set to the
3602 start of the input section group. */
3603 first = elt = elf_next_in_group (sec);
3605 /* First element is a flag word. Rest of section is elf section
3606 indices for all the sections of the group. Write them backwards
3607 just to keep the group in the same order as given in .section
3608 directives, not that it matters. */
3615 s = s->output_section;
3617 && !bfd_is_abs_section (s))
3619 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
3620 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3622 if (elf_sec->rel.hdr != NULL
3624 || (input_elf_sec->rel.hdr != NULL
3625 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
3627 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
3629 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3631 if (elf_sec->rela.hdr != NULL
3633 || (input_elf_sec->rela.hdr != NULL
3634 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
3636 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
3638 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3641 H_PUT_32 (abfd, elf_sec->this_idx, loc);
3643 elt = elf_next_in_group (elt);
3649 BFD_ASSERT (loc == sec->contents);
3651 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
3654 /* Given NAME, the name of a relocation section stripped of its
3655 .rel/.rela prefix, return the section in ABFD to which the
3656 relocations apply. */
3659 _bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3661 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3662 section likely apply to .got.plt or .got section. */
3663 if (get_elf_backend_data (abfd)->want_got_plt
3664 && strcmp (name, ".plt") == 0)
3669 sec = bfd_get_section_by_name (abfd, name);
3675 return bfd_get_section_by_name (abfd, name);
3678 /* Return the section to which RELOC_SEC applies. */
3681 elf_get_reloc_section (asection *reloc_sec)
3686 const struct elf_backend_data *bed;
3688 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3689 if (type != SHT_REL && type != SHT_RELA)
3692 /* We look up the section the relocs apply to by name. */
3693 name = reloc_sec->name;
3694 if (strncmp (name, ".rel", 4) != 0)
3697 if (type == SHT_RELA && *name++ != 'a')
3700 abfd = reloc_sec->owner;
3701 bed = get_elf_backend_data (abfd);
3702 return bed->get_reloc_section (abfd, name);
3705 /* Assign all ELF section numbers. The dummy first section is handled here
3706 too. The link/info pointers for the standard section types are filled
3707 in here too, while we're at it. LINK_INFO will be 0 when arriving
3708 here for objcopy, and when using the generic ELF linker. */
3711 assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
3713 struct elf_obj_tdata *t = elf_tdata (abfd);
3715 unsigned int section_number;
3716 Elf_Internal_Shdr **i_shdrp;
3717 struct bfd_elf_section_data *d;
3718 bfd_boolean need_symtab;
3723 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3725 /* SHT_GROUP sections are in relocatable files only. */
3726 if (link_info == NULL || !link_info->resolve_section_groups)
3728 size_t reloc_count = 0;
3730 /* Put SHT_GROUP sections first. */
3731 for (sec = abfd->sections; sec != NULL; sec = sec->next)
3733 d = elf_section_data (sec);
3735 if (d->this_hdr.sh_type == SHT_GROUP)
3737 if (sec->flags & SEC_LINKER_CREATED)
3739 /* Remove the linker created SHT_GROUP sections. */
3740 bfd_section_list_remove (abfd, sec);
3741 abfd->section_count--;
3744 d->this_idx = section_number++;
3747 /* Count relocations. */
3748 reloc_count += sec->reloc_count;
3751 /* Clear HAS_RELOC if there are no relocations. */
3752 if (reloc_count == 0)
3753 abfd->flags &= ~HAS_RELOC;
3756 for (sec = abfd->sections; sec; sec = sec->next)
3758 d = elf_section_data (sec);
3760 if (d->this_hdr.sh_type != SHT_GROUP)
3761 d->this_idx = section_number++;
3762 if (d->this_hdr.sh_name != (unsigned int) -1)
3763 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
3766 d->rel.idx = section_number++;
3767 if (d->rel.hdr->sh_name != (unsigned int) -1)
3768 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
3775 d->rela.idx = section_number++;
3776 if (d->rela.hdr->sh_name != (unsigned int) -1)
3777 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
3783 need_symtab = (bfd_get_symcount (abfd) > 0
3784 || (link_info == NULL
3785 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3789 elf_onesymtab (abfd) = section_number++;
3790 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
3791 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
3793 elf_section_list *entry;
3795 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3797 entry = bfd_zalloc (abfd, sizeof (*entry));
3798 entry->ndx = section_number++;
3799 elf_symtab_shndx_list (abfd) = entry;
3801 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3802 ".symtab_shndx", FALSE);
3803 if (entry->hdr.sh_name == (unsigned int) -1)
3806 elf_strtab_sec (abfd) = section_number++;
3807 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
3810 elf_shstrtab_sec (abfd) = section_number++;
3811 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3812 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3814 if (section_number >= SHN_LORESERVE)
3816 /* xgettext:c-format */
3817 _bfd_error_handler (_("%pB: too many sections: %u"),
3818 abfd, section_number);
3822 elf_numsections (abfd) = section_number;
3823 elf_elfheader (abfd)->e_shnum = section_number;
3825 /* Set up the list of section header pointers, in agreement with the
3827 amt = section_number * sizeof (Elf_Internal_Shdr *);
3828 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
3829 if (i_shdrp == NULL)
3832 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
3833 sizeof (Elf_Internal_Shdr));
3834 if (i_shdrp[0] == NULL)
3836 bfd_release (abfd, i_shdrp);
3840 elf_elfsections (abfd) = i_shdrp;
3842 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3845 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
3846 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
3848 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3849 BFD_ASSERT (entry != NULL);
3850 i_shdrp[entry->ndx] = & entry->hdr;
3851 entry->hdr.sh_link = elf_onesymtab (abfd);
3853 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3854 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
3857 for (sec = abfd->sections; sec; sec = sec->next)
3861 d = elf_section_data (sec);
3863 i_shdrp[d->this_idx] = &d->this_hdr;
3864 if (d->rel.idx != 0)
3865 i_shdrp[d->rel.idx] = d->rel.hdr;
3866 if (d->rela.idx != 0)
3867 i_shdrp[d->rela.idx] = d->rela.hdr;
3869 /* Fill in the sh_link and sh_info fields while we're at it. */
3871 /* sh_link of a reloc section is the section index of the symbol
3872 table. sh_info is the section index of the section to which
3873 the relocation entries apply. */
3874 if (d->rel.idx != 0)
3876 d->rel.hdr->sh_link = elf_onesymtab (abfd);
3877 d->rel.hdr->sh_info = d->this_idx;
3878 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
3880 if (d->rela.idx != 0)
3882 d->rela.hdr->sh_link = elf_onesymtab (abfd);
3883 d->rela.hdr->sh_info = d->this_idx;
3884 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
3887 /* We need to set up sh_link for SHF_LINK_ORDER. */
3888 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3890 s = elf_linked_to_section (sec);
3893 /* Check discarded linkonce section. */
3894 if (discarded_section (s))
3898 /* xgettext:c-format */
3899 (_("%pB: sh_link of section `%pA' points to"
3900 " discarded section `%pA' of `%pB'"),
3901 abfd, d->this_hdr.bfd_section, s, s->owner);
3902 /* Point to the kept section if it has the same
3903 size as the discarded one. */
3904 kept = _bfd_elf_check_kept_section (s, link_info);
3907 bfd_set_error (bfd_error_bad_value);
3912 /* Handle objcopy. */
3913 else if (s->output_section == NULL)
3916 /* xgettext:c-format */
3917 (_("%pB: sh_link of section `%pA' points to"
3918 " removed section `%pA' of `%pB'"),
3919 abfd, d->this_hdr.bfd_section, s, s->owner);
3920 bfd_set_error (bfd_error_bad_value);
3923 s = s->output_section;
3924 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3929 The Intel C compiler generates SHT_IA_64_UNWIND with
3930 SHF_LINK_ORDER. But it doesn't set the sh_link or
3931 sh_info fields. Hence we could get the situation
3933 const struct elf_backend_data *bed
3934 = get_elf_backend_data (abfd);
3935 bed->link_order_error_handler
3936 /* xgettext:c-format */
3937 (_("%pB: warning: sh_link not set for section `%pA'"),
3942 switch (d->this_hdr.sh_type)
3946 /* A reloc section which we are treating as a normal BFD
3947 section. sh_link is the section index of the symbol
3948 table. sh_info is the section index of the section to
3949 which the relocation entries apply. We assume that an
3950 allocated reloc section uses the dynamic symbol table.
3951 FIXME: How can we be sure? */
3952 s = bfd_get_section_by_name (abfd, ".dynsym");
3954 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3956 s = elf_get_reloc_section (sec);
3959 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3960 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3965 /* We assume that a section named .stab*str is a stabs
3966 string section. We look for a section with the same name
3967 but without the trailing ``str'', and set its sh_link
3968 field to point to this section. */
3969 if (CONST_STRNEQ (sec->name, ".stab")
3970 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3975 len = strlen (sec->name);
3976 alc = (char *) bfd_malloc (len - 2);
3979 memcpy (alc, sec->name, len - 3);
3980 alc[len - 3] = '\0';
3981 s = bfd_get_section_by_name (abfd, alc);
3985 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3987 /* This is a .stab section. */
3988 elf_section_data (s)->this_hdr.sh_entsize = 12;
3995 case SHT_GNU_verneed:
3996 case SHT_GNU_verdef:
3997 /* sh_link is the section header index of the string table
3998 used for the dynamic entries, or the symbol table, or the
4000 s = bfd_get_section_by_name (abfd, ".dynstr");
4002 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4005 case SHT_GNU_LIBLIST:
4006 /* sh_link is the section header index of the prelink library
4007 list used for the dynamic entries, or the symbol table, or
4008 the version strings. */
4009 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
4010 ? ".dynstr" : ".gnu.libstr");
4012 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4017 case SHT_GNU_versym:
4018 /* sh_link is the section header index of the symbol table
4019 this hash table or version table is for. */
4020 s = bfd_get_section_by_name (abfd, ".dynsym");
4022 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4026 d->this_hdr.sh_link = elf_onesymtab (abfd);
4030 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
4031 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
4032 debug section name from .debug_* to .zdebug_* if needed. */
4038 sym_is_global (bfd *abfd, asymbol *sym)
4040 /* If the backend has a special mapping, use it. */
4041 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4042 if (bed->elf_backend_sym_is_global)
4043 return (*bed->elf_backend_sym_is_global) (abfd, sym);
4045 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
4046 || bfd_is_und_section (bfd_asymbol_section (sym))
4047 || bfd_is_com_section (bfd_asymbol_section (sym)));
4050 /* Filter global symbols of ABFD to include in the import library. All
4051 SYMCOUNT symbols of ABFD can be examined from their pointers in
4052 SYMS. Pointers of symbols to keep should be stored contiguously at
4053 the beginning of that array.
4055 Returns the number of symbols to keep. */
4058 _bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4059 asymbol **syms, long symcount)
4061 long src_count, dst_count = 0;
4063 for (src_count = 0; src_count < symcount; src_count++)
4065 asymbol *sym = syms[src_count];
4066 char *name = (char *) bfd_asymbol_name (sym);
4067 struct bfd_link_hash_entry *h;
4069 if (!sym_is_global (abfd, sym))
4072 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
4075 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4077 if (h->linker_def || h->ldscript_def)
4080 syms[dst_count++] = sym;
4083 syms[dst_count] = NULL;
4088 /* Don't output section symbols for sections that are not going to be
4089 output, that are duplicates or there is no BFD section. */
4092 ignore_section_sym (bfd *abfd, asymbol *sym)
4094 elf_symbol_type *type_ptr;
4099 if ((sym->flags & BSF_SECTION_SYM) == 0)
4102 if (sym->section == NULL)
4105 type_ptr = elf_symbol_from (abfd, sym);
4106 return ((type_ptr != NULL
4107 && type_ptr->internal_elf_sym.st_shndx != 0
4108 && bfd_is_abs_section (sym->section))
4109 || !(sym->section->owner == abfd
4110 || (sym->section->output_section != NULL
4111 && sym->section->output_section->owner == abfd
4112 && sym->section->output_offset == 0)
4113 || bfd_is_abs_section (sym->section)));
4116 /* Map symbol from it's internal number to the external number, moving
4117 all local symbols to be at the head of the list. */
4120 elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
4122 unsigned int symcount = bfd_get_symcount (abfd);
4123 asymbol **syms = bfd_get_outsymbols (abfd);
4124 asymbol **sect_syms;
4125 unsigned int num_locals = 0;
4126 unsigned int num_globals = 0;
4127 unsigned int num_locals2 = 0;
4128 unsigned int num_globals2 = 0;
4129 unsigned int max_index = 0;
4136 fprintf (stderr, "elf_map_symbols\n");
4140 for (asect = abfd->sections; asect; asect = asect->next)
4142 if (max_index < asect->index)
4143 max_index = asect->index;
4147 amt = max_index * sizeof (asymbol *);
4148 sect_syms = (asymbol **) bfd_zalloc (abfd, amt);
4149 if (sect_syms == NULL)
4151 elf_section_syms (abfd) = sect_syms;
4152 elf_num_section_syms (abfd) = max_index;
4154 /* Init sect_syms entries for any section symbols we have already
4155 decided to output. */
4156 for (idx = 0; idx < symcount; idx++)
4158 asymbol *sym = syms[idx];
4160 if ((sym->flags & BSF_SECTION_SYM) != 0
4162 && !ignore_section_sym (abfd, sym)
4163 && !bfd_is_abs_section (sym->section))
4165 asection *sec = sym->section;
4167 if (sec->owner != abfd)
4168 sec = sec->output_section;
4170 sect_syms[sec->index] = syms[idx];
4174 /* Classify all of the symbols. */
4175 for (idx = 0; idx < symcount; idx++)
4177 if (sym_is_global (abfd, syms[idx]))
4179 else if (!ignore_section_sym (abfd, syms[idx]))
4183 /* We will be adding a section symbol for each normal BFD section. Most
4184 sections will already have a section symbol in outsymbols, but
4185 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4186 at least in that case. */
4187 for (asect = abfd->sections; asect; asect = asect->next)
4189 if (sect_syms[asect->index] == NULL)
4191 if (!sym_is_global (abfd, asect->symbol))
4198 /* Now sort the symbols so the local symbols are first. */
4199 amt = (num_locals + num_globals) * sizeof (asymbol *);
4200 new_syms = (asymbol **) bfd_alloc (abfd, amt);
4201 if (new_syms == NULL)
4204 for (idx = 0; idx < symcount; idx++)
4206 asymbol *sym = syms[idx];
4209 if (sym_is_global (abfd, sym))
4210 i = num_locals + num_globals2++;
4211 else if (!ignore_section_sym (abfd, sym))
4216 sym->udata.i = i + 1;
4218 for (asect = abfd->sections; asect; asect = asect->next)
4220 if (sect_syms[asect->index] == NULL)
4222 asymbol *sym = asect->symbol;
4225 sect_syms[asect->index] = sym;
4226 if (!sym_is_global (abfd, sym))
4229 i = num_locals + num_globals2++;
4231 sym->udata.i = i + 1;
4235 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4237 *pnum_locals = num_locals;
4241 /* Align to the maximum file alignment that could be required for any
4242 ELF data structure. */
4244 static inline file_ptr
4245 align_file_position (file_ptr off, int align)
4247 return (off + align - 1) & ~(align - 1);
4250 /* Assign a file position to a section, optionally aligning to the
4251 required section alignment. */
4254 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4258 if (align && i_shdrp->sh_addralign > 1)
4259 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
4260 i_shdrp->sh_offset = offset;
4261 if (i_shdrp->bfd_section != NULL)
4262 i_shdrp->bfd_section->filepos = offset;
4263 if (i_shdrp->sh_type != SHT_NOBITS)
4264 offset += i_shdrp->sh_size;
4268 /* Compute the file positions we are going to put the sections at, and
4269 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4270 is not NULL, this is being called by the ELF backend linker. */
4273 _bfd_elf_compute_section_file_positions (bfd *abfd,
4274 struct bfd_link_info *link_info)
4276 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4277 struct fake_section_arg fsargs;
4279 struct elf_strtab_hash *strtab = NULL;
4280 Elf_Internal_Shdr *shstrtab_hdr;
4281 bfd_boolean need_symtab;
4283 if (abfd->output_has_begun)
4286 /* Do any elf backend specific processing first. */
4287 if (bed->elf_backend_begin_write_processing)
4288 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4290 if (!(*bed->elf_backend_init_file_header) (abfd, link_info))
4293 fsargs.failed = FALSE;
4294 fsargs.link_info = link_info;
4295 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4299 if (!assign_section_numbers (abfd, link_info))
4302 /* The backend linker builds symbol table information itself. */
4303 need_symtab = (link_info == NULL
4304 && (bfd_get_symcount (abfd) > 0
4305 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4309 /* Non-zero if doing a relocatable link. */
4310 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4312 if (! swap_out_syms (abfd, &strtab, relocatable_p))
4317 if (link_info == NULL)
4319 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
4324 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
4325 /* sh_name was set in init_file_header. */
4326 shstrtab_hdr->sh_type = SHT_STRTAB;
4327 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
4328 shstrtab_hdr->sh_addr = 0;
4329 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4330 shstrtab_hdr->sh_entsize = 0;
4331 shstrtab_hdr->sh_link = 0;
4332 shstrtab_hdr->sh_info = 0;
4333 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4334 shstrtab_hdr->sh_addralign = 1;
4336 if (!assign_file_positions_except_relocs (abfd, link_info))
4342 Elf_Internal_Shdr *hdr;
4344 off = elf_next_file_pos (abfd);
4346 hdr = & elf_symtab_hdr (abfd);
4347 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4349 if (elf_symtab_shndx_list (abfd) != NULL)
4351 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4352 if (hdr->sh_size != 0)
4353 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4354 /* FIXME: What about other symtab_shndx sections in the list ? */
4357 hdr = &elf_tdata (abfd)->strtab_hdr;
4358 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4360 elf_next_file_pos (abfd) = off;
4362 /* Now that we know where the .strtab section goes, write it
4364 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4365 || ! _bfd_elf_strtab_emit (abfd, strtab))
4367 _bfd_elf_strtab_free (strtab);
4370 abfd->output_has_begun = TRUE;
4375 /* Make an initial estimate of the size of the program header. If we
4376 get the number wrong here, we'll redo section placement. */
4378 static bfd_size_type
4379 get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4383 const struct elf_backend_data *bed;
4385 /* Assume we will need exactly two PT_LOAD segments: one for text
4386 and one for data. */
4389 s = bfd_get_section_by_name (abfd, ".interp");
4390 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
4392 /* If we have a loadable interpreter section, we need a
4393 PT_INTERP segment. In this case, assume we also need a
4394 PT_PHDR segment, although that may not be true for all
4399 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4401 /* We need a PT_DYNAMIC segment. */
4405 if (info != NULL && info->relro)
4407 /* We need a PT_GNU_RELRO segment. */
4411 if (elf_eh_frame_hdr (abfd))
4413 /* We need a PT_GNU_EH_FRAME segment. */
4417 if (elf_stack_flags (abfd))
4419 /* We need a PT_GNU_STACK segment. */
4423 s = bfd_get_section_by_name (abfd,
4424 NOTE_GNU_PROPERTY_SECTION_NAME);
4425 if (s != NULL && s->size != 0)
4427 /* We need a PT_GNU_PROPERTY segment. */
4431 for (s = abfd->sections; s != NULL; s = s->next)
4433 if ((s->flags & SEC_LOAD) != 0
4434 && elf_section_type (s) == SHT_NOTE)
4436 unsigned int alignment_power;
4437 /* We need a PT_NOTE segment. */
4439 /* Try to create just one PT_NOTE segment for all adjacent
4440 loadable SHT_NOTE sections. gABI requires that within a
4441 PT_NOTE segment (and also inside of each SHT_NOTE section)
4442 each note should have the same alignment. So we check
4443 whether the sections are correctly aligned. */
4444 alignment_power = s->alignment_power;
4445 while (s->next != NULL
4446 && s->next->alignment_power == alignment_power
4447 && (s->next->flags & SEC_LOAD) != 0
4448 && elf_section_type (s->next) == SHT_NOTE)
4453 for (s = abfd->sections; s != NULL; s = s->next)
4455 if (s->flags & SEC_THREAD_LOCAL)
4457 /* We need a PT_TLS segment. */
4463 bed = get_elf_backend_data (abfd);
4465 if ((abfd->flags & D_PAGED) != 0
4466 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4468 /* Add a PT_GNU_MBIND segment for each mbind section. */
4469 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4470 for (s = abfd->sections; s != NULL; s = s->next)
4471 if (elf_section_flags (s) & SHF_GNU_MBIND)
4473 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4476 /* xgettext:c-format */
4477 (_("%pB: GNU_MBIND section `%pA' has invalid "
4478 "sh_info field: %d"),
4479 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4482 /* Align mbind section to page size. */
4483 if (s->alignment_power < page_align_power)
4484 s->alignment_power = page_align_power;
4489 /* Let the backend count up any program headers it might need. */
4490 if (bed->elf_backend_additional_program_headers)
4494 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4500 return segs * bed->s->sizeof_phdr;
4503 /* Find the segment that contains the output_section of section. */
4506 _bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4508 struct elf_segment_map *m;
4509 Elf_Internal_Phdr *p;
4511 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
4517 for (i = m->count - 1; i >= 0; i--)
4518 if (m->sections[i] == section)
4525 /* Create a mapping from a set of sections to a program segment. */
4527 static struct elf_segment_map *
4528 make_mapping (bfd *abfd,
4529 asection **sections,
4534 struct elf_segment_map *m;
4539 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4540 amt += (to - from) * sizeof (asection *);
4541 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4545 m->p_type = PT_LOAD;
4546 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4547 m->sections[i - from] = *hdrpp;
4548 m->count = to - from;
4550 if (from == 0 && phdr)
4552 /* Include the headers in the first PT_LOAD segment. */
4553 m->includes_filehdr = 1;
4554 m->includes_phdrs = 1;
4560 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4563 struct elf_segment_map *
4564 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4566 struct elf_segment_map *m;
4568 m = (struct elf_segment_map *) bfd_zalloc (abfd,
4569 sizeof (struct elf_segment_map));
4573 m->p_type = PT_DYNAMIC;
4575 m->sections[0] = dynsec;
4580 /* Possibly add or remove segments from the segment map. */
4583 elf_modify_segment_map (bfd *abfd,
4584 struct bfd_link_info *info,
4585 bfd_boolean remove_empty_load)
4587 struct elf_segment_map **m;
4588 const struct elf_backend_data *bed;
4590 /* The placement algorithm assumes that non allocated sections are
4591 not in PT_LOAD segments. We ensure this here by removing such
4592 sections from the segment map. We also remove excluded
4593 sections. Finally, any PT_LOAD segment without sections is
4595 m = &elf_seg_map (abfd);
4598 unsigned int i, new_count;
4600 for (new_count = 0, i = 0; i < (*m)->count; i++)
4602 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4603 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4604 || (*m)->p_type != PT_LOAD))
4606 (*m)->sections[new_count] = (*m)->sections[i];
4610 (*m)->count = new_count;
4612 if (remove_empty_load
4613 && (*m)->p_type == PT_LOAD
4615 && !(*m)->includes_phdrs)
4621 bed = get_elf_backend_data (abfd);
4622 if (bed->elf_backend_modify_segment_map != NULL)
4624 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
4631 #define IS_TBSS(s) \
4632 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4634 /* Set up a mapping from BFD sections to program segments. */
4637 _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4640 struct elf_segment_map *m;
4641 asection **sections = NULL;
4642 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4643 bfd_boolean no_user_phdrs;
4645 no_user_phdrs = elf_seg_map (abfd) == NULL;
4648 info->user_phdrs = !no_user_phdrs;
4650 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
4654 struct elf_segment_map *mfirst;
4655 struct elf_segment_map **pm;
4658 unsigned int hdr_index;
4659 bfd_vma maxpagesize;
4661 bfd_boolean phdr_in_segment;
4662 bfd_boolean writable;
4663 bfd_boolean executable;
4664 unsigned int tls_count = 0;
4665 asection *first_tls = NULL;
4666 asection *first_mbind = NULL;
4667 asection *dynsec, *eh_frame_hdr;
4669 bfd_vma addr_mask, wrap_to = 0; /* Bytes. */
4670 bfd_size_type phdr_size; /* Octets/bytes. */
4671 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
4673 /* Select the allocated sections, and sort them. */
4675 amt = bfd_count_sections (abfd) * sizeof (asection *);
4676 sections = (asection **) bfd_malloc (amt);
4677 if (sections == NULL)
4680 /* Calculate top address, avoiding undefined behaviour of shift
4681 left operator when shift count is equal to size of type
4683 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4684 addr_mask = (addr_mask << 1) + 1;
4687 for (s = abfd->sections; s != NULL; s = s->next)
4689 if ((s->flags & SEC_ALLOC) != 0)
4691 /* target_index is unused until bfd_elf_final_link
4692 starts output of section symbols. Use it to make
4694 s->target_index = i;
4697 /* A wrapping section potentially clashes with header. */
4698 if (((s->lma + s->size / opb) & addr_mask) < (s->lma & addr_mask))
4699 wrap_to = (s->lma + s->size / opb) & addr_mask;
4702 BFD_ASSERT (i <= bfd_count_sections (abfd));
4705 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
4707 phdr_size = elf_program_header_size (abfd);
4708 if (phdr_size == (bfd_size_type) -1)
4709 phdr_size = get_program_header_size (abfd, info);
4710 phdr_size += bed->s->sizeof_ehdr;
4711 /* phdr_size is compared to LMA values which are in bytes. */
4713 maxpagesize = bed->maxpagesize;
4714 if (maxpagesize == 0)
4716 phdr_in_segment = info != NULL && info->load_phdrs;
4718 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4719 >= (phdr_size & (maxpagesize - 1))))
4720 /* For compatibility with old scripts that may not be using
4721 SIZEOF_HEADERS, add headers when it looks like space has
4722 been left for them. */
4723 phdr_in_segment = TRUE;
4725 /* Build the mapping. */
4729 /* If we have a .interp section, then create a PT_PHDR segment for
4730 the program headers and a PT_INTERP segment for the .interp
4732 s = bfd_get_section_by_name (abfd, ".interp");
4733 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
4735 amt = sizeof (struct elf_segment_map);
4736 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4740 m->p_type = PT_PHDR;
4742 m->p_flags_valid = 1;
4743 m->includes_phdrs = 1;
4744 phdr_in_segment = TRUE;
4748 amt = sizeof (struct elf_segment_map);
4749 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4753 m->p_type = PT_INTERP;
4761 /* Look through the sections. We put sections in the same program
4762 segment when the start of the second section can be placed within
4763 a few bytes of the end of the first section. */
4769 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4771 && (dynsec->flags & SEC_LOAD) == 0)
4774 if ((abfd->flags & D_PAGED) == 0)
4775 phdr_in_segment = FALSE;
4777 /* Deal with -Ttext or something similar such that the first section
4778 is not adjacent to the program headers. This is an
4779 approximation, since at this point we don't know exactly how many
4780 program headers we will need. */
4781 if (phdr_in_segment && count > 0)
4783 bfd_vma phdr_lma; /* Bytes. */
4784 bfd_boolean separate_phdr = FALSE;
4786 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4788 && info->separate_code
4789 && (sections[0]->flags & SEC_CODE) != 0)
4791 /* If data sections should be separate from code and
4792 thus not executable, and the first section is
4793 executable then put the file and program headers in
4794 their own PT_LOAD. */
4795 separate_phdr = TRUE;
4796 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4797 == (sections[0]->lma & addr_mask & -maxpagesize)))
4799 /* The file and program headers are currently on the
4800 same page as the first section. Put them on the
4801 previous page if we can. */
4802 if (phdr_lma >= maxpagesize)
4803 phdr_lma -= maxpagesize;
4805 separate_phdr = FALSE;
4808 if ((sections[0]->lma & addr_mask) < phdr_lma
4809 || (sections[0]->lma & addr_mask) < phdr_size)
4810 /* If file and program headers would be placed at the end
4811 of memory then it's probably better to omit them. */
4812 phdr_in_segment = FALSE;
4813 else if (phdr_lma < wrap_to)
4814 /* If a section wraps around to where we'll be placing
4815 file and program headers, then the headers will be
4817 phdr_in_segment = FALSE;
4818 else if (separate_phdr)
4820 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4823 m->p_paddr = phdr_lma * opb;
4825 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4826 m->p_paddr_valid = 1;
4829 phdr_in_segment = FALSE;
4833 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
4836 bfd_boolean new_segment;
4840 /* See if this section and the last one will fit in the same
4843 if (last_hdr == NULL)
4845 /* If we don't have a segment yet, then we don't need a new
4846 one (we build the last one after this loop). */
4847 new_segment = FALSE;
4849 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4851 /* If this section has a different relation between the
4852 virtual address and the load address, then we need a new
4856 else if (hdr->lma < last_hdr->lma + last_size
4857 || last_hdr->lma + last_size < last_hdr->lma)
4859 /* If this section has a load address that makes it overlap
4860 the previous section, then we need a new segment. */
4863 else if ((abfd->flags & D_PAGED) != 0
4864 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4865 == (hdr->lma & -maxpagesize)))
4867 /* If we are demand paged then we can't map two disk
4868 pages onto the same memory page. */
4869 new_segment = FALSE;
4871 /* In the next test we have to be careful when last_hdr->lma is close
4872 to the end of the address space. If the aligned address wraps
4873 around to the start of the address space, then there are no more
4874 pages left in memory and it is OK to assume that the current
4875 section can be included in the current segment. */
4876 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4877 + maxpagesize > last_hdr->lma)
4878 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4879 + maxpagesize <= hdr->lma))
4881 /* If putting this section in this segment would force us to
4882 skip a page in the segment, then we need a new segment. */
4885 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
4886 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
4888 /* We don't want to put a loaded section after a
4889 nonloaded (ie. bss style) section in the same segment
4890 as that will force the non-loaded section to be loaded.
4891 Consider .tbss sections as loaded for this purpose. */
4894 else if ((abfd->flags & D_PAGED) == 0)
4896 /* If the file is not demand paged, which means that we
4897 don't require the sections to be correctly aligned in the
4898 file, then there is no other reason for a new segment. */
4899 new_segment = FALSE;
4901 else if (info != NULL
4902 && info->separate_code
4903 && executable != ((hdr->flags & SEC_CODE) != 0))
4908 && (hdr->flags & SEC_READONLY) == 0)
4910 /* We don't want to put a writable section in a read only
4916 /* Otherwise, we can use the same segment. */
4917 new_segment = FALSE;
4920 /* Allow interested parties a chance to override our decision. */
4921 if (last_hdr != NULL
4923 && info->callbacks->override_segment_assignment != NULL)
4925 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4931 if ((hdr->flags & SEC_READONLY) == 0)
4933 if ((hdr->flags & SEC_CODE) != 0)
4936 /* .tbss sections effectively have zero size. */
4937 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
4941 /* We need a new program segment. We must create a new program
4942 header holding all the sections from hdr_index until hdr. */
4944 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
4951 if ((hdr->flags & SEC_READONLY) == 0)
4956 if ((hdr->flags & SEC_CODE) == 0)
4962 /* .tbss sections effectively have zero size. */
4963 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
4965 phdr_in_segment = FALSE;
4968 /* Create a final PT_LOAD program segment, but not if it's just
4970 if (last_hdr != NULL
4971 && (i - hdr_index != 1
4972 || !IS_TBSS (last_hdr)))
4974 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
4982 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4985 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4992 /* For each batch of consecutive loadable SHT_NOTE sections,
4993 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
4994 because if we link together nonloadable .note sections and
4995 loadable .note sections, we will generate two .note sections
4996 in the output file. */
4997 for (s = abfd->sections; s != NULL; s = s->next)
4999 if ((s->flags & SEC_LOAD) != 0
5000 && elf_section_type (s) == SHT_NOTE)
5003 unsigned int alignment_power = s->alignment_power;
5006 for (s2 = s; s2->next != NULL; s2 = s2->next)
5008 if (s2->next->alignment_power == alignment_power
5009 && (s2->next->flags & SEC_LOAD) != 0
5010 && elf_section_type (s2->next) == SHT_NOTE
5011 && align_power (s2->lma + s2->size / opb,
5018 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5019 amt += count * sizeof (asection *);
5020 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5024 m->p_type = PT_NOTE;
5028 m->sections[m->count - count--] = s;
5029 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5032 m->sections[m->count - 1] = s;
5033 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5037 if (s->flags & SEC_THREAD_LOCAL)
5043 if (first_mbind == NULL
5044 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5048 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5051 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5052 amt += tls_count * sizeof (asection *);
5053 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5058 m->count = tls_count;
5059 /* Mandated PF_R. */
5061 m->p_flags_valid = 1;
5063 for (i = 0; i < tls_count; ++i)
5065 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5068 (_("%pB: TLS sections are not adjacent:"), abfd);
5071 while (i < tls_count)
5073 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5075 _bfd_error_handler (_(" TLS: %pA"), s);
5079 _bfd_error_handler (_(" non-TLS: %pA"), s);
5082 bfd_set_error (bfd_error_bad_value);
5094 && (abfd->flags & D_PAGED) != 0
5095 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
5096 for (s = first_mbind; s != NULL; s = s->next)
5097 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
5098 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
5100 /* Mandated PF_R. */
5101 unsigned long p_flags = PF_R;
5102 if ((s->flags & SEC_READONLY) == 0)
5104 if ((s->flags & SEC_CODE) != 0)
5107 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5108 m = bfd_zalloc (abfd, amt);
5112 m->p_type = (PT_GNU_MBIND_LO
5113 + elf_section_data (s)->this_hdr.sh_info);
5115 m->p_flags_valid = 1;
5117 m->p_flags = p_flags;
5123 s = bfd_get_section_by_name (abfd,
5124 NOTE_GNU_PROPERTY_SECTION_NAME);
5125 if (s != NULL && s->size != 0)
5127 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5128 m = bfd_zalloc (abfd, amt);
5132 m->p_type = PT_GNU_PROPERTY;
5134 m->p_flags_valid = 1;
5141 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5143 eh_frame_hdr = elf_eh_frame_hdr (abfd);
5144 if (eh_frame_hdr != NULL
5145 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
5147 amt = sizeof (struct elf_segment_map);
5148 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5152 m->p_type = PT_GNU_EH_FRAME;
5154 m->sections[0] = eh_frame_hdr->output_section;
5160 if (elf_stack_flags (abfd))
5162 amt = sizeof (struct elf_segment_map);
5163 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5167 m->p_type = PT_GNU_STACK;
5168 m->p_flags = elf_stack_flags (abfd);
5169 m->p_align = bed->stack_align;
5170 m->p_flags_valid = 1;
5171 m->p_align_valid = m->p_align != 0;
5172 if (info->stacksize > 0)
5174 m->p_size = info->stacksize;
5175 m->p_size_valid = 1;
5182 if (info != NULL && info->relro)
5184 for (m = mfirst; m != NULL; m = m->next)
5186 if (m->p_type == PT_LOAD
5188 && m->sections[0]->vma >= info->relro_start
5189 && m->sections[0]->vma < info->relro_end)
5192 while (--i != (unsigned) -1)
5194 if (m->sections[i]->size > 0
5195 && (m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5196 == (SEC_LOAD | SEC_HAS_CONTENTS))
5200 if (i != (unsigned) -1)
5205 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5208 amt = sizeof (struct elf_segment_map);
5209 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5213 m->p_type = PT_GNU_RELRO;
5220 elf_seg_map (abfd) = mfirst;
5223 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
5226 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
5228 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
5237 /* Sort sections by address. */
5240 elf_sort_sections (const void *arg1, const void *arg2)
5242 const asection *sec1 = *(const asection **) arg1;
5243 const asection *sec2 = *(const asection **) arg2;
5244 bfd_size_type size1, size2;
5246 /* Sort by LMA first, since this is the address used to
5247 place the section into a segment. */
5248 if (sec1->lma < sec2->lma)
5250 else if (sec1->lma > sec2->lma)
5253 /* Then sort by VMA. Normally the LMA and the VMA will be
5254 the same, and this will do nothing. */
5255 if (sec1->vma < sec2->vma)
5257 else if (sec1->vma > sec2->vma)
5260 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5262 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
5269 else if (TOEND (sec2))
5274 /* Sort by size, to put zero sized sections
5275 before others at the same address. */
5277 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5278 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
5285 return sec1->target_index - sec2->target_index;
5288 /* This qsort comparison functions sorts PT_LOAD segments first and
5289 by p_paddr, for assign_file_positions_for_load_sections. */
5292 elf_sort_segments (const void *arg1, const void *arg2)
5294 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5295 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5297 if (m1->p_type != m2->p_type)
5299 if (m1->p_type == PT_NULL)
5301 if (m2->p_type == PT_NULL)
5303 return m1->p_type < m2->p_type ? -1 : 1;
5305 if (m1->includes_filehdr != m2->includes_filehdr)
5306 return m1->includes_filehdr ? -1 : 1;
5307 if (m1->no_sort_lma != m2->no_sort_lma)
5308 return m1->no_sort_lma ? -1 : 1;
5309 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5311 bfd_vma lma1, lma2; /* Octets. */
5313 if (m1->p_paddr_valid)
5315 else if (m1->count != 0)
5317 unsigned int opb = bfd_octets_per_byte (m1->sections[0]->owner,
5319 lma1 = (m1->sections[0]->lma + m1->p_vaddr_offset) * opb;
5322 if (m2->p_paddr_valid)
5324 else if (m2->count != 0)
5326 unsigned int opb = bfd_octets_per_byte (m2->sections[0]->owner,
5328 lma2 = (m2->sections[0]->lma + m2->p_vaddr_offset) * opb;
5331 return lma1 < lma2 ? -1 : 1;
5333 if (m1->idx != m2->idx)
5334 return m1->idx < m2->idx ? -1 : 1;
5338 /* Ian Lance Taylor writes:
5340 We shouldn't be using % with a negative signed number. That's just
5341 not good. We have to make sure either that the number is not
5342 negative, or that the number has an unsigned type. When the types
5343 are all the same size they wind up as unsigned. When file_ptr is a
5344 larger signed type, the arithmetic winds up as signed long long,
5347 What we're trying to say here is something like ``increase OFF by
5348 the least amount that will cause it to be equal to the VMA modulo
5350 /* In other words, something like:
5352 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5353 off_offset = off % bed->maxpagesize;
5354 if (vma_offset < off_offset)
5355 adjustment = vma_offset + bed->maxpagesize - off_offset;
5357 adjustment = vma_offset - off_offset;
5359 which can be collapsed into the expression below. */
5362 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5364 /* PR binutils/16199: Handle an alignment of zero. */
5365 if (maxpagesize == 0)
5367 return ((vma - off) % maxpagesize);
5371 print_segment_map (const struct elf_segment_map *m)
5374 const char *pt = get_segment_type (m->p_type);
5379 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5380 sprintf (buf, "LOPROC+%7.7x",
5381 (unsigned int) (m->p_type - PT_LOPROC));
5382 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5383 sprintf (buf, "LOOS+%7.7x",
5384 (unsigned int) (m->p_type - PT_LOOS));
5386 snprintf (buf, sizeof (buf), "%8.8x",
5387 (unsigned int) m->p_type);
5391 fprintf (stderr, "%s:", pt);
5392 for (j = 0; j < m->count; j++)
5393 fprintf (stderr, " %s", m->sections [j]->name);
5399 write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5404 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5406 buf = bfd_zmalloc (len);
5409 ret = bfd_bwrite (buf, len, abfd) == len;
5414 /* Assign file positions to the sections based on the mapping from
5415 sections to segments. This function also sets up some fields in
5419 assign_file_positions_for_load_sections (bfd *abfd,
5420 struct bfd_link_info *link_info)
5422 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5423 struct elf_segment_map *m;
5424 struct elf_segment_map *phdr_load_seg;
5425 Elf_Internal_Phdr *phdrs;
5426 Elf_Internal_Phdr *p;
5427 file_ptr off; /* Octets. */
5428 bfd_size_type maxpagesize;
5429 unsigned int alloc, actual;
5431 struct elf_segment_map **sorted_seg_map;
5432 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
5434 if (link_info == NULL
5435 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
5439 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5444 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5445 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5449 /* PR binutils/12467. */
5450 elf_elfheader (abfd)->e_phoff = 0;
5451 elf_elfheader (abfd)->e_phentsize = 0;
5454 elf_elfheader (abfd)->e_phnum = alloc;
5456 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
5459 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5463 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5464 BFD_ASSERT (elf_program_header_size (abfd)
5465 == actual * bed->s->sizeof_phdr);
5466 BFD_ASSERT (actual >= alloc);
5471 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
5475 /* We're writing the size in elf_program_header_size (abfd),
5476 see assign_file_positions_except_relocs, so make sure we have
5477 that amount allocated, with trailing space cleared.
5478 The variable alloc contains the computed need, while
5479 elf_program_header_size (abfd) contains the size used for the
5481 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5482 where the layout is forced to according to a larger size in the
5483 last iterations for the testcase ld-elf/header. */
5484 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5485 + alloc * sizeof (*sorted_seg_map)));
5486 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
5487 elf_tdata (abfd)->phdr = phdrs;
5491 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
5493 sorted_seg_map[j] = m;
5494 /* If elf_segment_map is not from map_sections_to_segments, the
5495 sections may not be correctly ordered. NOTE: sorting should
5496 not be done to the PT_NOTE section of a corefile, which may
5497 contain several pseudo-sections artificially created by bfd.
5498 Sorting these pseudo-sections breaks things badly. */
5500 && !(elf_elfheader (abfd)->e_type == ET_CORE
5501 && m->p_type == PT_NOTE))
5503 for (i = 0; i < m->count; i++)
5504 m->sections[i]->target_index = i;
5505 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5510 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5514 if ((abfd->flags & D_PAGED) != 0)
5515 maxpagesize = bed->maxpagesize;
5517 /* Sections must map to file offsets past the ELF file header. */
5518 off = bed->s->sizeof_ehdr;
5519 /* And if one of the PT_LOAD headers doesn't include the program
5520 headers then we'll be mapping program headers in the usual
5521 position after the ELF file header. */
5522 phdr_load_seg = NULL;
5523 for (j = 0; j < alloc; j++)
5525 m = sorted_seg_map[j];
5526 if (m->p_type != PT_LOAD)
5528 if (m->includes_phdrs)
5534 if (phdr_load_seg == NULL)
5535 off += actual * bed->s->sizeof_phdr;
5537 for (j = 0; j < alloc; j++)
5540 bfd_vma off_adjust; /* Octets. */
5541 bfd_boolean no_contents;
5543 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5544 number of sections with contents contributing to both p_filesz
5545 and p_memsz, followed by a number of sections with no contents
5546 that just contribute to p_memsz. In this loop, OFF tracks next
5547 available file offset for PT_LOAD and PT_NOTE segments. */
5548 m = sorted_seg_map[j];
5550 p->p_type = m->p_type;
5551 p->p_flags = m->p_flags;
5554 p->p_vaddr = m->p_vaddr_offset * opb;
5556 p->p_vaddr = (m->sections[0]->vma + m->p_vaddr_offset) * opb;
5558 if (m->p_paddr_valid)
5559 p->p_paddr = m->p_paddr;
5560 else if (m->count == 0)
5563 p->p_paddr = (m->sections[0]->lma + m->p_vaddr_offset) * opb;
5565 if (p->p_type == PT_LOAD
5566 && (abfd->flags & D_PAGED) != 0)
5568 /* p_align in demand paged PT_LOAD segments effectively stores
5569 the maximum page size. When copying an executable with
5570 objcopy, we set m->p_align from the input file. Use this
5571 value for maxpagesize rather than bed->maxpagesize, which
5572 may be different. Note that we use maxpagesize for PT_TLS
5573 segment alignment later in this function, so we are relying
5574 on at least one PT_LOAD segment appearing before a PT_TLS
5576 if (m->p_align_valid)
5577 maxpagesize = m->p_align;
5579 p->p_align = maxpagesize;
5581 else if (m->p_align_valid)
5582 p->p_align = m->p_align;
5583 else if (m->count == 0)
5584 p->p_align = 1 << bed->s->log_file_align;
5586 if (m == phdr_load_seg)
5588 if (!m->includes_filehdr)
5590 off += actual * bed->s->sizeof_phdr;
5593 no_contents = FALSE;
5595 if (p->p_type == PT_LOAD
5598 bfd_size_type align; /* Bytes. */
5599 unsigned int align_power = 0;
5601 if (m->p_align_valid)
5605 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5607 unsigned int secalign;
5609 secalign = bfd_section_alignment (*secpp);
5610 if (secalign > align_power)
5611 align_power = secalign;
5613 align = (bfd_size_type) 1 << align_power;
5614 if (align < maxpagesize)
5615 align = maxpagesize;
5618 for (i = 0; i < m->count; i++)
5619 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5620 /* If we aren't making room for this section, then
5621 it must be SHT_NOBITS regardless of what we've
5622 set via struct bfd_elf_special_section. */
5623 elf_section_type (m->sections[i]) = SHT_NOBITS;
5625 /* Find out whether this segment contains any loadable
5628 for (i = 0; i < m->count; i++)
5629 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5631 no_contents = FALSE;
5635 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align * opb);
5637 /* Broken hardware and/or kernel require that files do not
5638 map the same page with different permissions on some hppa
5641 && (abfd->flags & D_PAGED) != 0
5642 && bed->no_page_alias
5643 && (off & (maxpagesize - 1)) != 0
5644 && ((off & -maxpagesize)
5645 == ((off + off_adjust) & -maxpagesize)))
5646 off_adjust += maxpagesize;
5650 /* We shouldn't need to align the segment on disk since
5651 the segment doesn't need file space, but the gABI
5652 arguably requires the alignment and glibc ld.so
5653 checks it. So to comply with the alignment
5654 requirement but not waste file space, we adjust
5655 p_offset for just this segment. (OFF_ADJUST is
5656 subtracted from OFF later.) This may put p_offset
5657 past the end of file, but that shouldn't matter. */
5662 /* Make sure the .dynamic section is the first section in the
5663 PT_DYNAMIC segment. */
5664 else if (p->p_type == PT_DYNAMIC
5666 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5669 (_("%pB: The first section in the PT_DYNAMIC segment"
5670 " is not the .dynamic section"),
5672 bfd_set_error (bfd_error_bad_value);
5675 /* Set the note section type to SHT_NOTE. */
5676 else if (p->p_type == PT_NOTE)
5677 for (i = 0; i < m->count; i++)
5678 elf_section_type (m->sections[i]) = SHT_NOTE;
5680 if (m->includes_filehdr)
5682 if (!m->p_flags_valid)
5684 p->p_filesz = bed->s->sizeof_ehdr;
5685 p->p_memsz = bed->s->sizeof_ehdr;
5686 if (p->p_type == PT_LOAD)
5690 if (p->p_vaddr < (bfd_vma) off
5691 || (!m->p_paddr_valid
5692 && p->p_paddr < (bfd_vma) off))
5695 (_("%pB: not enough room for program headers,"
5696 " try linking with -N"),
5698 bfd_set_error (bfd_error_bad_value);
5702 if (!m->p_paddr_valid)
5706 else if (sorted_seg_map[0]->includes_filehdr)
5708 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5709 p->p_vaddr = filehdr->p_vaddr;
5710 if (!m->p_paddr_valid)
5711 p->p_paddr = filehdr->p_paddr;
5715 if (m->includes_phdrs)
5717 if (!m->p_flags_valid)
5719 p->p_filesz += actual * bed->s->sizeof_phdr;
5720 p->p_memsz += actual * bed->s->sizeof_phdr;
5721 if (!m->includes_filehdr)
5723 if (p->p_type == PT_LOAD)
5725 elf_elfheader (abfd)->e_phoff = p->p_offset;
5728 p->p_vaddr -= off - p->p_offset;
5729 if (!m->p_paddr_valid)
5730 p->p_paddr -= off - p->p_offset;
5733 else if (phdr_load_seg != NULL)
5735 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
5736 bfd_vma phdr_off = 0; /* Octets. */
5737 if (phdr_load_seg->includes_filehdr)
5738 phdr_off = bed->s->sizeof_ehdr;
5739 p->p_vaddr = phdr->p_vaddr + phdr_off;
5740 if (!m->p_paddr_valid)
5741 p->p_paddr = phdr->p_paddr + phdr_off;
5742 p->p_offset = phdr->p_offset + phdr_off;
5745 p->p_offset = bed->s->sizeof_ehdr;
5749 if (p->p_type == PT_LOAD
5750 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5752 if (!m->includes_filehdr && !m->includes_phdrs)
5757 /* Put meaningless p_offset for PT_LOAD segments
5758 without file contents somewhere within the first
5759 page, in an attempt to not point past EOF. */
5760 bfd_size_type align = maxpagesize;
5761 if (align < p->p_align)
5765 p->p_offset = off % align;
5770 file_ptr adjust; /* Octets. */
5772 adjust = off - (p->p_offset + p->p_filesz);
5774 p->p_filesz += adjust;
5775 p->p_memsz += adjust;
5779 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5780 maps. Set filepos for sections in PT_LOAD segments, and in
5781 core files, for sections in PT_NOTE segments.
5782 assign_file_positions_for_non_load_sections will set filepos
5783 for other sections and update p_filesz for other segments. */
5784 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5787 bfd_size_type align;
5788 Elf_Internal_Shdr *this_hdr;
5791 this_hdr = &elf_section_data (sec)->this_hdr;
5792 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
5794 if ((p->p_type == PT_LOAD
5795 || p->p_type == PT_TLS)
5796 && (this_hdr->sh_type != SHT_NOBITS
5797 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5798 && ((this_hdr->sh_flags & SHF_TLS) == 0
5799 || p->p_type == PT_TLS))))
5801 bfd_vma p_start = p->p_paddr; /* Octets. */
5802 bfd_vma p_end = p_start + p->p_memsz; /* Octets. */
5803 bfd_vma s_start = sec->lma * opb; /* Octets. */
5804 bfd_vma adjust = s_start - p_end; /* Octets. */
5808 || p_end < p_start))
5811 /* xgettext:c-format */
5812 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5813 abfd, sec, (uint64_t) s_start / opb,
5814 (uint64_t) p_end / opb);
5816 sec->lma = p_end / opb;
5818 p->p_memsz += adjust;
5820 if (p->p_type == PT_LOAD)
5822 if (this_hdr->sh_type != SHT_NOBITS)
5825 if (p->p_filesz + adjust < p->p_memsz)
5827 /* We have a PROGBITS section following NOBITS ones.
5828 Allocate file space for the NOBITS section(s) and
5830 adjust = p->p_memsz - p->p_filesz;
5831 if (!write_zeros (abfd, off, adjust))
5835 /* We only adjust sh_offset in SHT_NOBITS sections
5836 as would seem proper for their address when the
5837 section is first in the segment. sh_offset
5838 doesn't really have any significance for
5839 SHT_NOBITS anyway, apart from a notional position
5840 relative to other sections. Historically we
5841 didn't bother with adjusting sh_offset and some
5842 programs depend on it not being adjusted. See
5843 pr12921 and pr25662. */
5844 if (this_hdr->sh_type != SHT_NOBITS || i == 0)
5847 if (this_hdr->sh_type == SHT_NOBITS)
5848 off_adjust += adjust;
5851 if (this_hdr->sh_type != SHT_NOBITS)
5852 p->p_filesz += adjust;
5855 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5857 /* The section at i == 0 is the one that actually contains
5861 this_hdr->sh_offset = sec->filepos = off;
5862 off += this_hdr->sh_size;
5863 p->p_filesz = this_hdr->sh_size;
5869 /* The rest are fake sections that shouldn't be written. */
5878 if (p->p_type == PT_LOAD)
5880 this_hdr->sh_offset = sec->filepos = off;
5881 if (this_hdr->sh_type != SHT_NOBITS)
5882 off += this_hdr->sh_size;
5884 else if (this_hdr->sh_type == SHT_NOBITS
5885 && (this_hdr->sh_flags & SHF_TLS) != 0
5886 && this_hdr->sh_offset == 0)
5888 /* This is a .tbss section that didn't get a PT_LOAD.
5889 (See _bfd_elf_map_sections_to_segments "Create a
5890 final PT_LOAD".) Set sh_offset to the value it
5891 would have if we had created a zero p_filesz and
5892 p_memsz PT_LOAD header for the section. This
5893 also makes the PT_TLS header have the same
5895 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5897 this_hdr->sh_offset = sec->filepos = off + adjust;
5900 if (this_hdr->sh_type != SHT_NOBITS)
5902 p->p_filesz += this_hdr->sh_size;
5903 /* A load section without SHF_ALLOC is something like
5904 a note section in a PT_NOTE segment. These take
5905 file space but are not loaded into memory. */
5906 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5907 p->p_memsz += this_hdr->sh_size;
5909 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5911 if (p->p_type == PT_TLS)
5912 p->p_memsz += this_hdr->sh_size;
5914 /* .tbss is special. It doesn't contribute to p_memsz of
5916 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5917 p->p_memsz += this_hdr->sh_size;
5920 if (align > p->p_align
5921 && !m->p_align_valid
5922 && (p->p_type != PT_LOAD
5923 || (abfd->flags & D_PAGED) == 0))
5927 if (!m->p_flags_valid)
5930 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
5932 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
5939 /* PR ld/20815 - Check that the program header segment, if
5940 present, will be loaded into memory. */
5941 if (p->p_type == PT_PHDR
5942 && phdr_load_seg == NULL
5943 && !(bed->elf_backend_allow_non_load_phdr != NULL
5944 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5946 /* The fix for this error is usually to edit the linker script being
5947 used and set up the program headers manually. Either that or
5948 leave room for the headers at the start of the SECTIONS. */
5949 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5950 " by LOAD segment"),
5952 if (link_info == NULL)
5954 /* Arrange for the linker to exit with an error, deleting
5955 the output file unless --noinhibit-exec is given. */
5956 link_info->callbacks->info ("%X");
5959 /* Check that all sections are in a PT_LOAD segment.
5960 Don't check funky gdb generated core files. */
5961 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
5963 bfd_boolean check_vma = TRUE;
5965 for (i = 1; i < m->count; i++)
5966 if (m->sections[i]->vma == m->sections[i - 1]->vma
5967 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5968 ->this_hdr), p) != 0
5969 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5970 ->this_hdr), p) != 0)
5972 /* Looks like we have overlays packed into the segment. */
5977 for (i = 0; i < m->count; i++)
5979 Elf_Internal_Shdr *this_hdr;
5982 sec = m->sections[i];
5983 this_hdr = &(elf_section_data(sec)->this_hdr);
5984 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5985 && !ELF_TBSS_SPECIAL (this_hdr, p))
5988 /* xgettext:c-format */
5989 (_("%pB: section `%pA' can't be allocated in segment %d"),
5991 print_segment_map (m);
5997 elf_next_file_pos (abfd) = off;
5999 if (link_info != NULL
6000 && phdr_load_seg != NULL
6001 && phdr_load_seg->includes_filehdr)
6003 /* There is a segment that contains both the file headers and the
6004 program headers, so provide a symbol __ehdr_start pointing there.
6005 A program can use this to examine itself robustly. */
6007 struct elf_link_hash_entry *hash
6008 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
6009 FALSE, FALSE, TRUE);
6010 /* If the symbol was referenced and not defined, define it. */
6012 && (hash->root.type == bfd_link_hash_new
6013 || hash->root.type == bfd_link_hash_undefined
6014 || hash->root.type == bfd_link_hash_undefweak
6015 || hash->root.type == bfd_link_hash_common))
6018 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr / opb;
6020 if (phdr_load_seg->count != 0)
6021 /* The segment contains sections, so use the first one. */
6022 s = phdr_load_seg->sections[0];
6024 /* Use the first (i.e. lowest-addressed) section in any segment. */
6025 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6026 if (m->p_type == PT_LOAD && m->count != 0)
6034 hash->root.u.def.value = filehdr_vaddr - s->vma;
6035 hash->root.u.def.section = s;
6039 hash->root.u.def.value = filehdr_vaddr;
6040 hash->root.u.def.section = bfd_abs_section_ptr;
6043 hash->root.type = bfd_link_hash_defined;
6044 hash->def_regular = 1;
6052 /* Determine if a bfd is a debuginfo file. Unfortunately there
6053 is no defined method for detecting such files, so we have to
6054 use heuristics instead. */
6057 is_debuginfo_file (bfd *abfd)
6059 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6062 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6063 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6064 Elf_Internal_Shdr **headerp;
6066 for (headerp = start_headers; headerp < end_headers; headerp ++)
6068 Elf_Internal_Shdr *header = * headerp;
6070 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6071 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6072 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6073 && header->sh_type != SHT_NOBITS
6074 && header->sh_type != SHT_NOTE)
6081 /* Assign file positions for the other sections, except for compressed debugging
6082 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
6085 assign_file_positions_for_non_load_sections (bfd *abfd,
6086 struct bfd_link_info *link_info)
6088 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6089 Elf_Internal_Shdr **i_shdrpp;
6090 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
6091 Elf_Internal_Phdr *phdrs;
6092 Elf_Internal_Phdr *p;
6093 struct elf_segment_map *m;
6095 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
6097 i_shdrpp = elf_elfsections (abfd);
6098 end_hdrpp = i_shdrpp + elf_numsections (abfd);
6099 off = elf_next_file_pos (abfd);
6100 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
6102 Elf_Internal_Shdr *hdr;
6105 if (hdr->bfd_section != NULL
6106 && (hdr->bfd_section->filepos != 0
6107 || (hdr->sh_type == SHT_NOBITS
6108 && hdr->contents == NULL)))
6109 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
6110 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6112 if (hdr->sh_size != 0
6113 /* PR 24717 - debuginfo files are known to be not strictly
6114 compliant with the ELF standard. In particular they often
6115 have .note.gnu.property sections that are outside of any
6116 loadable segment. This is not a problem for such files,
6117 so do not warn about them. */
6118 && ! is_debuginfo_file (abfd))
6120 /* xgettext:c-format */
6121 (_("%pB: warning: allocated section `%s' not in segment"),
6123 (hdr->bfd_section == NULL
6125 : hdr->bfd_section->name));
6126 /* We don't need to page align empty sections. */
6127 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
6128 off += vma_page_aligned_bias (hdr->sh_addr, off,
6131 off += vma_page_aligned_bias (hdr->sh_addr, off,
6133 off = _bfd_elf_assign_file_position_for_section (hdr, off,
6136 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6137 && hdr->bfd_section == NULL)
6138 /* We don't know the offset of these sections yet: their size has
6139 not been decided. */
6140 || (hdr->bfd_section != NULL
6141 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6142 || (bfd_section_is_ctf (hdr->bfd_section)
6143 && abfd->is_linker_output)))
6144 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6145 || (elf_symtab_shndx_list (abfd) != NULL
6146 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
6147 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6148 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
6149 hdr->sh_offset = -1;
6151 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
6153 elf_next_file_pos (abfd) = off;
6155 /* Now that we have set the section file positions, we can set up
6156 the file positions for the non PT_LOAD segments. */
6157 phdrs = elf_tdata (abfd)->phdr;
6158 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
6160 if (p->p_type == PT_GNU_RELRO)
6162 bfd_vma start, end; /* Bytes. */
6165 if (link_info != NULL)
6167 /* During linking the range of the RELRO segment is passed
6168 in link_info. Note that there may be padding between
6169 relro_start and the first RELRO section. */
6170 start = link_info->relro_start;
6171 end = link_info->relro_end;
6173 else if (m->count != 0)
6175 if (!m->p_size_valid)
6177 start = m->sections[0]->vma;
6178 end = start + m->p_size / opb;
6189 struct elf_segment_map *lm;
6190 const Elf_Internal_Phdr *lp;
6193 /* Find a LOAD segment containing a section in the RELRO
6195 for (lm = elf_seg_map (abfd), lp = phdrs;
6197 lm = lm->next, lp++)
6199 if (lp->p_type == PT_LOAD
6201 && (lm->sections[lm->count - 1]->vma
6202 + (!IS_TBSS (lm->sections[lm->count - 1])
6203 ? lm->sections[lm->count - 1]->size / opb
6205 && lm->sections[0]->vma < end)
6211 /* Find the section starting the RELRO segment. */
6212 for (i = 0; i < lm->count; i++)
6214 asection *s = lm->sections[i];
6223 p->p_vaddr = lm->sections[i]->vma * opb;
6224 p->p_paddr = lm->sections[i]->lma * opb;
6225 p->p_offset = lm->sections[i]->filepos;
6226 p->p_memsz = end * opb - p->p_vaddr;
6227 p->p_filesz = p->p_memsz;
6229 /* The RELRO segment typically ends a few bytes
6230 into .got.plt but other layouts are possible.
6231 In cases where the end does not match any
6232 loaded section (for instance is in file
6233 padding), trim p_filesz back to correspond to
6234 the end of loaded section contents. */
6235 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6236 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6238 /* Preserve the alignment and flags if they are
6239 valid. The gold linker generates RW/4 for
6240 the PT_GNU_RELRO section. It is better for
6241 objcopy/strip to honor these attributes
6242 otherwise gdb will choke when using separate
6244 if (!m->p_align_valid)
6246 if (!m->p_flags_valid)
6252 if (link_info != NULL)
6255 memset (p, 0, sizeof *p);
6257 else if (p->p_type == PT_GNU_STACK)
6259 if (m->p_size_valid)
6260 p->p_memsz = m->p_size;
6262 else if (m->count != 0)
6266 if (p->p_type != PT_LOAD
6267 && (p->p_type != PT_NOTE
6268 || bfd_get_format (abfd) != bfd_core))
6270 /* A user specified segment layout may include a PHDR
6271 segment that overlaps with a LOAD segment... */
6272 if (p->p_type == PT_PHDR)
6278 if (m->includes_filehdr || m->includes_phdrs)
6280 /* PR 17512: file: 2195325e. */
6282 (_("%pB: error: non-load segment %d includes file header "
6283 "and/or program header"),
6284 abfd, (int) (p - phdrs));
6289 p->p_offset = m->sections[0]->filepos;
6290 for (i = m->count; i-- != 0;)
6292 asection *sect = m->sections[i];
6293 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6294 if (hdr->sh_type != SHT_NOBITS)
6296 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6308 static elf_section_list *
6309 find_section_in_list (unsigned int i, elf_section_list * list)
6311 for (;list != NULL; list = list->next)
6317 /* Work out the file positions of all the sections. This is called by
6318 _bfd_elf_compute_section_file_positions. All the section sizes and
6319 VMAs must be known before this is called.
6321 Reloc sections come in two flavours: Those processed specially as
6322 "side-channel" data attached to a section to which they apply, and those that
6323 bfd doesn't process as relocations. The latter sort are stored in a normal
6324 bfd section by bfd_section_from_shdr. We don't consider the former sort
6325 here, unless they form part of the loadable image. Reloc sections not
6326 assigned here (and compressed debugging sections and CTF sections which
6327 nothing else in the file can rely upon) will be handled later by
6328 assign_file_positions_for_relocs.
6330 We also don't set the positions of the .symtab and .strtab here. */
6333 assign_file_positions_except_relocs (bfd *abfd,
6334 struct bfd_link_info *link_info)
6336 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6337 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
6338 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6341 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6342 && bfd_get_format (abfd) != bfd_core)
6344 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6345 unsigned int num_sec = elf_numsections (abfd);
6346 Elf_Internal_Shdr **hdrpp;
6350 /* Start after the ELF header. */
6351 off = i_ehdrp->e_ehsize;
6353 /* We are not creating an executable, which means that we are
6354 not creating a program header, and that the actual order of
6355 the sections in the file is unimportant. */
6356 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
6358 Elf_Internal_Shdr *hdr;
6361 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6362 && hdr->bfd_section == NULL)
6363 /* Do not assign offsets for these sections yet: we don't know
6365 || (hdr->bfd_section != NULL
6366 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6367 || (bfd_section_is_ctf (hdr->bfd_section)
6368 && abfd->is_linker_output)))
6369 || i == elf_onesymtab (abfd)
6370 || (elf_symtab_shndx_list (abfd) != NULL
6371 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
6372 || i == elf_strtab_sec (abfd)
6373 || i == elf_shstrtab_sec (abfd))
6375 hdr->sh_offset = -1;
6378 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
6381 elf_next_file_pos (abfd) = off;
6382 elf_program_header_size (abfd) = 0;
6386 /* Assign file positions for the loaded sections based on the
6387 assignment of sections to segments. */
6388 if (!assign_file_positions_for_load_sections (abfd, link_info))
6391 /* And for non-load sections. */
6392 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6396 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
6399 /* Write out the program headers. */
6400 alloc = i_ehdrp->e_phnum;
6403 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
6404 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6412 _bfd_elf_init_file_header (bfd *abfd,
6413 struct bfd_link_info *info ATTRIBUTE_UNUSED)
6415 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
6416 struct elf_strtab_hash *shstrtab;
6417 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6419 i_ehdrp = elf_elfheader (abfd);
6421 shstrtab = _bfd_elf_strtab_init ();
6422 if (shstrtab == NULL)
6425 elf_shstrtab (abfd) = shstrtab;
6427 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6428 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6429 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6430 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6432 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6433 i_ehdrp->e_ident[EI_DATA] =
6434 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6435 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6437 if ((abfd->flags & DYNAMIC) != 0)
6438 i_ehdrp->e_type = ET_DYN;
6439 else if ((abfd->flags & EXEC_P) != 0)
6440 i_ehdrp->e_type = ET_EXEC;
6441 else if (bfd_get_format (abfd) == bfd_core)
6442 i_ehdrp->e_type = ET_CORE;
6444 i_ehdrp->e_type = ET_REL;
6446 switch (bfd_get_arch (abfd))
6448 case bfd_arch_unknown:
6449 i_ehdrp->e_machine = EM_NONE;
6452 /* There used to be a long list of cases here, each one setting
6453 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6454 in the corresponding bfd definition. To avoid duplication,
6455 the switch was removed. Machines that need special handling
6456 can generally do it in elf_backend_final_write_processing(),
6457 unless they need the information earlier than the final write.
6458 Such need can generally be supplied by replacing the tests for
6459 e_machine with the conditions used to determine it. */
6461 i_ehdrp->e_machine = bed->elf_machine_code;
6464 i_ehdrp->e_version = bed->s->ev_current;
6465 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6467 /* No program header, for now. */
6468 i_ehdrp->e_phoff = 0;
6469 i_ehdrp->e_phentsize = 0;
6470 i_ehdrp->e_phnum = 0;
6472 /* Each bfd section is section header entry. */
6473 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6474 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6476 elf_tdata (abfd)->symtab_hdr.sh_name =
6477 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
6478 elf_tdata (abfd)->strtab_hdr.sh_name =
6479 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
6480 elf_tdata (abfd)->shstrtab_hdr.sh_name =
6481 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
6482 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
6483 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
6484 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
6490 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6492 FIXME: We used to have code here to sort the PT_LOAD segments into
6493 ascending order, as per the ELF spec. But this breaks some programs,
6494 including the Linux kernel. But really either the spec should be
6495 changed or the programs updated. */
6498 _bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6500 if (link_info != NULL && bfd_link_pie (link_info))
6502 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6503 unsigned int num_segments = i_ehdrp->e_phnum;
6504 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6505 Elf_Internal_Phdr *segment = tdata->phdr;
6506 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6508 /* Find the lowest p_vaddr in PT_LOAD segments. */
6509 bfd_vma p_vaddr = (bfd_vma) -1;
6510 for (; segment < end_segment; segment++)
6511 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6512 p_vaddr = segment->p_vaddr;
6514 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6515 segments is non-zero. */
6517 i_ehdrp->e_type = ET_EXEC;
6522 /* Assign file positions for all the reloc sections which are not part
6523 of the loadable file image, and the file position of section headers. */
6526 _bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
6529 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
6530 Elf_Internal_Shdr *shdrp;
6531 Elf_Internal_Ehdr *i_ehdrp;
6532 const struct elf_backend_data *bed;
6534 off = elf_next_file_pos (abfd);
6536 shdrpp = elf_elfsections (abfd);
6537 end_shdrpp = shdrpp + elf_numsections (abfd);
6538 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
6541 if (shdrp->sh_offset == -1)
6543 asection *sec = shdrp->bfd_section;
6544 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6545 || shdrp->sh_type == SHT_RELA);
6546 bfd_boolean is_ctf = sec && bfd_section_is_ctf (sec);
6549 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
6551 if (!is_rel && !is_ctf)
6553 const char *name = sec->name;
6554 struct bfd_elf_section_data *d;
6556 /* Compress DWARF debug sections. */
6557 if (!bfd_compress_section (abfd, sec,
6561 if (sec->compress_status == COMPRESS_SECTION_DONE
6562 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6564 /* If section is compressed with zlib-gnu, convert
6565 section name from .debug_* to .zdebug_*. */
6567 = convert_debug_to_zdebug (abfd, name);
6568 if (new_name == NULL)
6572 /* Add section name to section name section. */
6573 if (shdrp->sh_name != (unsigned int) -1)
6576 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6578 d = elf_section_data (sec);
6580 /* Add reloc section name to section name section. */
6582 && !_bfd_elf_set_reloc_sh_name (abfd,
6587 && !_bfd_elf_set_reloc_sh_name (abfd,
6592 /* Update section size and contents. */
6593 shdrp->sh_size = sec->size;
6594 shdrp->contents = sec->contents;
6595 shdrp->bfd_section->contents = NULL;
6599 /* Update section size and contents. */
6600 shdrp->sh_size = sec->size;
6601 shdrp->contents = sec->contents;
6604 off = _bfd_elf_assign_file_position_for_section (shdrp,
6611 /* Place section name section after DWARF debug sections have been
6613 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6614 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6615 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6616 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6618 /* Place the section headers. */
6619 i_ehdrp = elf_elfheader (abfd);
6620 bed = get_elf_backend_data (abfd);
6621 off = align_file_position (off, 1 << bed->s->log_file_align);
6622 i_ehdrp->e_shoff = off;
6623 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
6624 elf_next_file_pos (abfd) = off;
6630 _bfd_elf_write_object_contents (bfd *abfd)
6632 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6633 Elf_Internal_Shdr **i_shdrp;
6635 unsigned int count, num_sec;
6636 struct elf_obj_tdata *t;
6638 if (! abfd->output_has_begun
6639 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
6641 /* Do not rewrite ELF data when the BFD has been opened for update.
6642 abfd->output_has_begun was set to TRUE on opening, so creation of new
6643 sections, and modification of existing section sizes was restricted.
6644 This means the ELF header, program headers and section headers can't have
6646 If the contents of any sections has been modified, then those changes have
6647 already been written to the BFD. */
6648 else if (abfd->direction == both_direction)
6650 BFD_ASSERT (abfd->output_has_begun);
6654 i_shdrp = elf_elfsections (abfd);
6657 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6661 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6664 /* After writing the headers, we need to write the sections too... */
6665 num_sec = elf_numsections (abfd);
6666 for (count = 1; count < num_sec; count++)
6668 i_shdrp[count]->sh_name
6669 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6670 i_shdrp[count]->sh_name);
6671 if (bed->elf_backend_section_processing)
6672 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6674 if (i_shdrp[count]->contents)
6676 bfd_size_type amt = i_shdrp[count]->sh_size;
6678 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
6679 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
6684 /* Write out the section header names. */
6685 t = elf_tdata (abfd);
6686 if (elf_shstrtab (abfd) != NULL
6687 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
6688 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
6691 if (!(*bed->elf_backend_final_write_processing) (abfd))
6694 if (!bed->s->write_shdrs_and_ehdr (abfd))
6697 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6698 if (t->o->build_id.after_write_object_contents != NULL)
6699 return (*t->o->build_id.after_write_object_contents) (abfd);
6705 _bfd_elf_write_corefile_contents (bfd *abfd)
6707 /* Hopefully this can be done just like an object file. */
6708 return _bfd_elf_write_object_contents (abfd);
6711 /* Given a section, search the header to find them. */
6714 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
6716 const struct elf_backend_data *bed;
6717 unsigned int sec_index;
6719 if (elf_section_data (asect) != NULL
6720 && elf_section_data (asect)->this_idx != 0)
6721 return elf_section_data (asect)->this_idx;
6723 if (bfd_is_abs_section (asect))
6724 sec_index = SHN_ABS;
6725 else if (bfd_is_com_section (asect))
6726 sec_index = SHN_COMMON;
6727 else if (bfd_is_und_section (asect))
6728 sec_index = SHN_UNDEF;
6730 sec_index = SHN_BAD;
6732 bed = get_elf_backend_data (abfd);
6733 if (bed->elf_backend_section_from_bfd_section)
6735 int retval = sec_index;
6737 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6741 if (sec_index == SHN_BAD)
6742 bfd_set_error (bfd_error_nonrepresentable_section);
6747 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6751 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
6753 asymbol *asym_ptr = *asym_ptr_ptr;
6755 flagword flags = asym_ptr->flags;
6757 /* When gas creates relocations against local labels, it creates its
6758 own symbol for the section, but does put the symbol into the
6759 symbol chain, so udata is 0. When the linker is generating
6760 relocatable output, this section symbol may be for one of the
6761 input sections rather than the output section. */
6762 if (asym_ptr->udata.i == 0
6763 && (flags & BSF_SECTION_SYM)
6764 && asym_ptr->section)
6769 sec = asym_ptr->section;
6770 if (sec->owner != abfd && sec->output_section != NULL)
6771 sec = sec->output_section;
6772 if (sec->owner == abfd
6773 && (indx = sec->index) < elf_num_section_syms (abfd)
6774 && elf_section_syms (abfd)[indx] != NULL)
6775 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6778 idx = asym_ptr->udata.i;
6782 /* This case can occur when using --strip-symbol on a symbol
6783 which is used in a relocation entry. */
6785 /* xgettext:c-format */
6786 (_("%pB: symbol `%s' required but not present"),
6787 abfd, bfd_asymbol_name (asym_ptr));
6788 bfd_set_error (bfd_error_no_symbols);
6795 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6796 (long) asym_ptr, asym_ptr->name, idx, flags);
6804 /* Rewrite program header information. */
6807 rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
6809 Elf_Internal_Ehdr *iehdr;
6810 struct elf_segment_map *map;
6811 struct elf_segment_map *map_first;
6812 struct elf_segment_map **pointer_to_map;
6813 Elf_Internal_Phdr *segment;
6816 unsigned int num_segments;
6817 bfd_boolean phdr_included = FALSE;
6818 bfd_boolean p_paddr_valid;
6819 bfd_vma maxpagesize;
6820 struct elf_segment_map *phdr_adjust_seg = NULL;
6821 unsigned int phdr_adjust_num = 0;
6822 const struct elf_backend_data *bed;
6823 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
6825 bed = get_elf_backend_data (ibfd);
6826 iehdr = elf_elfheader (ibfd);
6829 pointer_to_map = &map_first;
6831 num_segments = elf_elfheader (ibfd)->e_phnum;
6832 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6834 /* Returns the end address of the segment + 1. */
6835 #define SEGMENT_END(segment, start) \
6836 (start + (segment->p_memsz > segment->p_filesz \
6837 ? segment->p_memsz : segment->p_filesz))
6839 #define SECTION_SIZE(section, segment) \
6840 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6841 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6842 ? section->size : 0)
6844 /* Returns TRUE if the given section is contained within
6845 the given segment. VMA addresses are compared. */
6846 #define IS_CONTAINED_BY_VMA(section, segment, opb) \
6847 (section->vma * (opb) >= segment->p_vaddr \
6848 && (section->vma * (opb) + SECTION_SIZE (section, segment) \
6849 <= (SEGMENT_END (segment, segment->p_vaddr))))
6851 /* Returns TRUE if the given section is contained within
6852 the given segment. LMA addresses are compared. */
6853 #define IS_CONTAINED_BY_LMA(section, segment, base, opb) \
6854 (section->lma * (opb) >= base \
6855 && (section->lma + SECTION_SIZE (section, segment) / (opb) >= section->lma) \
6856 && (section->lma * (opb) + SECTION_SIZE (section, segment) \
6857 <= SEGMENT_END (segment, base)))
6859 /* Handle PT_NOTE segment. */
6860 #define IS_NOTE(p, s) \
6861 (p->p_type == PT_NOTE \
6862 && elf_section_type (s) == SHT_NOTE \
6863 && (bfd_vma) s->filepos >= p->p_offset \
6864 && ((bfd_vma) s->filepos + s->size \
6865 <= p->p_offset + p->p_filesz))
6867 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6869 #define IS_COREFILE_NOTE(p, s) \
6871 && bfd_get_format (ibfd) == bfd_core \
6875 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6876 linker, which generates a PT_INTERP section with p_vaddr and
6877 p_memsz set to 0. */
6878 #define IS_SOLARIS_PT_INTERP(p, s) \
6880 && p->p_paddr == 0 \
6881 && p->p_memsz == 0 \
6882 && p->p_filesz > 0 \
6883 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6885 && (bfd_vma) s->filepos >= p->p_offset \
6886 && ((bfd_vma) s->filepos + s->size \
6887 <= p->p_offset + p->p_filesz))
6889 /* Decide if the given section should be included in the given segment.
6890 A section will be included if:
6891 1. It is within the address space of the segment -- we use the LMA
6892 if that is set for the segment and the VMA otherwise,
6893 2. It is an allocated section or a NOTE section in a PT_NOTE
6895 3. There is an output section associated with it,
6896 4. The section has not already been allocated to a previous segment.
6897 5. PT_GNU_STACK segments do not include any sections.
6898 6. PT_TLS segment includes only SHF_TLS sections.
6899 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6900 8. PT_DYNAMIC should not contain empty sections at the beginning
6901 (with the possible exception of .dynamic). */
6902 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed, opb) \
6903 ((((segment->p_paddr \
6904 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr, opb) \
6905 : IS_CONTAINED_BY_VMA (section, segment, opb)) \
6906 && (section->flags & SEC_ALLOC) != 0) \
6907 || IS_NOTE (segment, section)) \
6908 && segment->p_type != PT_GNU_STACK \
6909 && (segment->p_type != PT_TLS \
6910 || (section->flags & SEC_THREAD_LOCAL)) \
6911 && (segment->p_type == PT_LOAD \
6912 || segment->p_type == PT_TLS \
6913 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6914 && (segment->p_type != PT_DYNAMIC \
6915 || SECTION_SIZE (section, segment) > 0 \
6916 || (segment->p_paddr \
6917 ? segment->p_paddr != section->lma * (opb) \
6918 : segment->p_vaddr != section->vma * (opb)) \
6919 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
6920 && (segment->p_type != PT_LOAD || !section->segment_mark))
6922 /* If the output section of a section in the input segment is NULL,
6923 it is removed from the corresponding output segment. */
6924 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed, opb) \
6925 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb) \
6926 && section->output_section != NULL)
6928 /* Returns TRUE iff seg1 starts after the end of seg2. */
6929 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6930 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6932 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6933 their VMA address ranges and their LMA address ranges overlap.
6934 It is possible to have overlapping VMA ranges without overlapping LMA
6935 ranges. RedBoot images for example can have both .data and .bss mapped
6936 to the same VMA range, but with the .data section mapped to a different
6938 #define SEGMENT_OVERLAPS(seg1, seg2) \
6939 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
6940 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
6941 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
6942 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
6944 /* Initialise the segment mark field. */
6945 for (section = ibfd->sections; section != NULL; section = section->next)
6946 section->segment_mark = FALSE;
6948 /* The Solaris linker creates program headers in which all the
6949 p_paddr fields are zero. When we try to objcopy or strip such a
6950 file, we get confused. Check for this case, and if we find it
6951 don't set the p_paddr_valid fields. */
6952 p_paddr_valid = FALSE;
6953 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6956 if (segment->p_paddr != 0)
6958 p_paddr_valid = TRUE;
6962 /* Scan through the segments specified in the program header
6963 of the input BFD. For this first scan we look for overlaps
6964 in the loadable segments. These can be created by weird
6965 parameters to objcopy. Also, fix some solaris weirdness. */
6966 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6971 Elf_Internal_Phdr *segment2;
6973 if (segment->p_type == PT_INTERP)
6974 for (section = ibfd->sections; section; section = section->next)
6975 if (IS_SOLARIS_PT_INTERP (segment, section))
6977 /* Mininal change so that the normal section to segment
6978 assignment code will work. */
6979 segment->p_vaddr = section->vma * opb;
6983 if (segment->p_type != PT_LOAD)
6985 /* Remove PT_GNU_RELRO segment. */
6986 if (segment->p_type == PT_GNU_RELRO)
6987 segment->p_type = PT_NULL;
6991 /* Determine if this segment overlaps any previous segments. */
6992 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
6994 bfd_signed_vma extra_length;
6996 if (segment2->p_type != PT_LOAD
6997 || !SEGMENT_OVERLAPS (segment, segment2))
7000 /* Merge the two segments together. */
7001 if (segment2->p_vaddr < segment->p_vaddr)
7003 /* Extend SEGMENT2 to include SEGMENT and then delete
7005 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
7006 - SEGMENT_END (segment2, segment2->p_vaddr));
7008 if (extra_length > 0)
7010 segment2->p_memsz += extra_length;
7011 segment2->p_filesz += extra_length;
7014 segment->p_type = PT_NULL;
7016 /* Since we have deleted P we must restart the outer loop. */
7018 segment = elf_tdata (ibfd)->phdr;
7023 /* Extend SEGMENT to include SEGMENT2 and then delete
7025 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
7026 - SEGMENT_END (segment, segment->p_vaddr));
7028 if (extra_length > 0)
7030 segment->p_memsz += extra_length;
7031 segment->p_filesz += extra_length;
7034 segment2->p_type = PT_NULL;
7039 /* The second scan attempts to assign sections to segments. */
7040 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7044 unsigned int section_count;
7045 asection **sections;
7046 asection *output_section;
7048 asection *matching_lma;
7049 asection *suggested_lma;
7052 asection *first_section;
7054 if (segment->p_type == PT_NULL)
7057 first_section = NULL;
7058 /* Compute how many sections might be placed into this segment. */
7059 for (section = ibfd->sections, section_count = 0;
7061 section = section->next)
7063 /* Find the first section in the input segment, which may be
7064 removed from the corresponding output segment. */
7065 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb))
7067 if (first_section == NULL)
7068 first_section = section;
7069 if (section->output_section != NULL)
7074 /* Allocate a segment map big enough to contain
7075 all of the sections we have selected. */
7076 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7077 amt += section_count * sizeof (asection *);
7078 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7082 /* Initialise the fields of the segment map. Default to
7083 using the physical address of the segment in the input BFD. */
7085 map->p_type = segment->p_type;
7086 map->p_flags = segment->p_flags;
7087 map->p_flags_valid = 1;
7089 /* If the first section in the input segment is removed, there is
7090 no need to preserve segment physical address in the corresponding
7092 if (!first_section || first_section->output_section != NULL)
7094 map->p_paddr = segment->p_paddr;
7095 map->p_paddr_valid = p_paddr_valid;
7098 /* Determine if this segment contains the ELF file header
7099 and if it contains the program headers themselves. */
7100 map->includes_filehdr = (segment->p_offset == 0
7101 && segment->p_filesz >= iehdr->e_ehsize);
7102 map->includes_phdrs = 0;
7104 if (!phdr_included || segment->p_type != PT_LOAD)
7106 map->includes_phdrs =
7107 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7108 && (segment->p_offset + segment->p_filesz
7109 >= ((bfd_vma) iehdr->e_phoff
7110 + iehdr->e_phnum * iehdr->e_phentsize)));
7112 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7113 phdr_included = TRUE;
7116 if (section_count == 0)
7118 /* Special segments, such as the PT_PHDR segment, may contain
7119 no sections, but ordinary, loadable segments should contain
7120 something. They are allowed by the ELF spec however, so only
7121 a warning is produced.
7122 There is however the valid use case of embedded systems which
7123 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7124 flash memory with zeros. No warning is shown for that case. */
7125 if (segment->p_type == PT_LOAD
7126 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7127 /* xgettext:c-format */
7129 (_("%pB: warning: empty loadable segment detected"
7130 " at vaddr=%#" PRIx64 ", is this intentional?"),
7131 ibfd, (uint64_t) segment->p_vaddr);
7133 map->p_vaddr_offset = segment->p_vaddr / opb;
7135 *pointer_to_map = map;
7136 pointer_to_map = &map->next;
7141 /* Now scan the sections in the input BFD again and attempt
7142 to add their corresponding output sections to the segment map.
7143 The problem here is how to handle an output section which has
7144 been moved (ie had its LMA changed). There are four possibilities:
7146 1. None of the sections have been moved.
7147 In this case we can continue to use the segment LMA from the
7150 2. All of the sections have been moved by the same amount.
7151 In this case we can change the segment's LMA to match the LMA
7152 of the first section.
7154 3. Some of the sections have been moved, others have not.
7155 In this case those sections which have not been moved can be
7156 placed in the current segment which will have to have its size,
7157 and possibly its LMA changed, and a new segment or segments will
7158 have to be created to contain the other sections.
7160 4. The sections have been moved, but not by the same amount.
7161 In this case we can change the segment's LMA to match the LMA
7162 of the first section and we will have to create a new segment
7163 or segments to contain the other sections.
7165 In order to save time, we allocate an array to hold the section
7166 pointers that we are interested in. As these sections get assigned
7167 to a segment, they are removed from this array. */
7169 amt = section_count * sizeof (asection *);
7170 sections = (asection **) bfd_malloc (amt);
7171 if (sections == NULL)
7174 /* Step One: Scan for segment vs section LMA conflicts.
7175 Also add the sections to the section array allocated above.
7176 Also add the sections to the current segment. In the common
7177 case, where the sections have not been moved, this means that
7178 we have completely filled the segment, and there is nothing
7181 matching_lma = NULL;
7182 suggested_lma = NULL;
7184 for (section = first_section, j = 0;
7186 section = section->next)
7188 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed, opb))
7190 output_section = section->output_section;
7192 sections[j++] = section;
7194 /* The Solaris native linker always sets p_paddr to 0.
7195 We try to catch that case here, and set it to the
7196 correct value. Note - some backends require that
7197 p_paddr be left as zero. */
7199 && segment->p_vaddr != 0
7200 && !bed->want_p_paddr_set_to_zero
7202 && output_section->lma != 0
7203 && (align_power (segment->p_vaddr
7204 + (map->includes_filehdr
7205 ? iehdr->e_ehsize : 0)
7206 + (map->includes_phdrs
7207 ? iehdr->e_phnum * iehdr->e_phentsize
7209 output_section->alignment_power * opb)
7210 == (output_section->vma * opb)))
7211 map->p_paddr = segment->p_vaddr;
7213 /* Match up the physical address of the segment with the
7214 LMA address of the output section. */
7215 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7217 || IS_COREFILE_NOTE (segment, section)
7218 || (bed->want_p_paddr_set_to_zero
7219 && IS_CONTAINED_BY_VMA (output_section, segment, opb)))
7221 if (matching_lma == NULL
7222 || output_section->lma < matching_lma->lma)
7223 matching_lma = output_section;
7225 /* We assume that if the section fits within the segment
7226 then it does not overlap any other section within that
7228 map->sections[isec++] = output_section;
7230 else if (suggested_lma == NULL)
7231 suggested_lma = output_section;
7233 if (j == section_count)
7238 BFD_ASSERT (j == section_count);
7240 /* Step Two: Adjust the physical address of the current segment,
7242 if (isec == section_count)
7244 /* All of the sections fitted within the segment as currently
7245 specified. This is the default case. Add the segment to
7246 the list of built segments and carry on to process the next
7247 program header in the input BFD. */
7248 map->count = section_count;
7249 *pointer_to_map = map;
7250 pointer_to_map = &map->next;
7253 && !bed->want_p_paddr_set_to_zero)
7255 bfd_vma hdr_size = 0;
7256 if (map->includes_filehdr)
7257 hdr_size = iehdr->e_ehsize;
7258 if (map->includes_phdrs)
7259 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7261 /* Account for padding before the first section in the
7263 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
7264 - matching_lma->lma);
7272 /* Change the current segment's physical address to match
7273 the LMA of the first section that fitted, or if no
7274 section fitted, the first section. */
7275 if (matching_lma == NULL)
7276 matching_lma = suggested_lma;
7278 map->p_paddr = matching_lma->lma * opb;
7280 /* Offset the segment physical address from the lma
7281 to allow for space taken up by elf headers. */
7282 if (map->includes_phdrs)
7284 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7286 /* iehdr->e_phnum is just an estimate of the number
7287 of program headers that we will need. Make a note
7288 here of the number we used and the segment we chose
7289 to hold these headers, so that we can adjust the
7290 offset when we know the correct value. */
7291 phdr_adjust_num = iehdr->e_phnum;
7292 phdr_adjust_seg = map;
7295 if (map->includes_filehdr)
7297 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7298 map->p_paddr -= iehdr->e_ehsize;
7299 /* We've subtracted off the size of headers from the
7300 first section lma, but there may have been some
7301 alignment padding before that section too. Try to
7302 account for that by adjusting the segment lma down to
7303 the same alignment. */
7304 if (segment->p_align != 0 && segment->p_align < align)
7305 align = segment->p_align;
7306 map->p_paddr &= -(align * opb);
7310 /* Step Three: Loop over the sections again, this time assigning
7311 those that fit to the current segment and removing them from the
7312 sections array; but making sure not to leave large gaps. Once all
7313 possible sections have been assigned to the current segment it is
7314 added to the list of built segments and if sections still remain
7315 to be assigned, a new segment is constructed before repeating
7321 suggested_lma = NULL;
7323 /* Fill the current segment with sections that fit. */
7324 for (j = 0; j < section_count; j++)
7326 section = sections[j];
7328 if (section == NULL)
7331 output_section = section->output_section;
7333 BFD_ASSERT (output_section != NULL);
7335 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7337 || IS_COREFILE_NOTE (segment, section))
7339 if (map->count == 0)
7341 /* If the first section in a segment does not start at
7342 the beginning of the segment, then something is
7344 if (align_power (map->p_paddr
7345 + (map->includes_filehdr
7346 ? iehdr->e_ehsize : 0)
7347 + (map->includes_phdrs
7348 ? iehdr->e_phnum * iehdr->e_phentsize
7350 output_section->alignment_power * opb)
7351 != output_section->lma * opb)
7358 prev_sec = map->sections[map->count - 1];
7360 /* If the gap between the end of the previous section
7361 and the start of this section is more than
7362 maxpagesize then we need to start a new segment. */
7363 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
7365 < BFD_ALIGN (output_section->lma, maxpagesize))
7366 || (prev_sec->lma + prev_sec->size
7367 > output_section->lma))
7369 if (suggested_lma == NULL)
7370 suggested_lma = output_section;
7376 map->sections[map->count++] = output_section;
7379 if (segment->p_type == PT_LOAD)
7380 section->segment_mark = TRUE;
7382 else if (suggested_lma == NULL)
7383 suggested_lma = output_section;
7386 /* PR 23932. A corrupt input file may contain sections that cannot
7387 be assigned to any segment - because for example they have a
7388 negative size - or segments that do not contain any sections.
7389 But there are also valid reasons why a segment can be empty.
7390 So allow a count of zero. */
7392 /* Add the current segment to the list of built segments. */
7393 *pointer_to_map = map;
7394 pointer_to_map = &map->next;
7396 if (isec < section_count)
7398 /* We still have not allocated all of the sections to
7399 segments. Create a new segment here, initialise it
7400 and carry on looping. */
7401 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7402 amt += section_count * sizeof (asection *);
7403 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7410 /* Initialise the fields of the segment map. Set the physical
7411 physical address to the LMA of the first section that has
7412 not yet been assigned. */
7414 map->p_type = segment->p_type;
7415 map->p_flags = segment->p_flags;
7416 map->p_flags_valid = 1;
7417 map->p_paddr = suggested_lma->lma * opb;
7418 map->p_paddr_valid = p_paddr_valid;
7419 map->includes_filehdr = 0;
7420 map->includes_phdrs = 0;
7425 bfd_set_error (bfd_error_sorry);
7429 while (isec < section_count);
7434 elf_seg_map (obfd) = map_first;
7436 /* If we had to estimate the number of program headers that were
7437 going to be needed, then check our estimate now and adjust
7438 the offset if necessary. */
7439 if (phdr_adjust_seg != NULL)
7443 for (count = 0, map = map_first; map != NULL; map = map->next)
7446 if (count > phdr_adjust_num)
7447 phdr_adjust_seg->p_paddr
7448 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
7450 for (map = map_first; map != NULL; map = map->next)
7451 if (map->p_type == PT_PHDR)
7454 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7455 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7462 #undef IS_CONTAINED_BY_VMA
7463 #undef IS_CONTAINED_BY_LMA
7465 #undef IS_COREFILE_NOTE
7466 #undef IS_SOLARIS_PT_INTERP
7467 #undef IS_SECTION_IN_INPUT_SEGMENT
7468 #undef INCLUDE_SECTION_IN_SEGMENT
7469 #undef SEGMENT_AFTER_SEGMENT
7470 #undef SEGMENT_OVERLAPS
7474 /* Copy ELF program header information. */
7477 copy_elf_program_header (bfd *ibfd, bfd *obfd)
7479 Elf_Internal_Ehdr *iehdr;
7480 struct elf_segment_map *map;
7481 struct elf_segment_map *map_first;
7482 struct elf_segment_map **pointer_to_map;
7483 Elf_Internal_Phdr *segment;
7485 unsigned int num_segments;
7486 bfd_boolean phdr_included = FALSE;
7487 bfd_boolean p_paddr_valid;
7488 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
7490 iehdr = elf_elfheader (ibfd);
7493 pointer_to_map = &map_first;
7495 /* If all the segment p_paddr fields are zero, don't set
7496 map->p_paddr_valid. */
7497 p_paddr_valid = FALSE;
7498 num_segments = elf_elfheader (ibfd)->e_phnum;
7499 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7502 if (segment->p_paddr != 0)
7504 p_paddr_valid = TRUE;
7508 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7513 unsigned int section_count;
7515 Elf_Internal_Shdr *this_hdr;
7516 asection *first_section = NULL;
7517 asection *lowest_section;
7519 /* Compute how many sections are in this segment. */
7520 for (section = ibfd->sections, section_count = 0;
7522 section = section->next)
7524 this_hdr = &(elf_section_data(section)->this_hdr);
7525 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7527 if (first_section == NULL)
7528 first_section = section;
7533 /* Allocate a segment map big enough to contain
7534 all of the sections we have selected. */
7535 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7536 amt += section_count * sizeof (asection *);
7537 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7541 /* Initialize the fields of the output segment map with the
7544 map->p_type = segment->p_type;
7545 map->p_flags = segment->p_flags;
7546 map->p_flags_valid = 1;
7547 map->p_paddr = segment->p_paddr;
7548 map->p_paddr_valid = p_paddr_valid;
7549 map->p_align = segment->p_align;
7550 map->p_align_valid = 1;
7551 map->p_vaddr_offset = 0;
7553 if (map->p_type == PT_GNU_RELRO
7554 || map->p_type == PT_GNU_STACK)
7556 /* The PT_GNU_RELRO segment may contain the first a few
7557 bytes in the .got.plt section even if the whole .got.plt
7558 section isn't in the PT_GNU_RELRO segment. We won't
7559 change the size of the PT_GNU_RELRO segment.
7560 Similarly, PT_GNU_STACK size is significant on uclinux
7562 map->p_size = segment->p_memsz;
7563 map->p_size_valid = 1;
7566 /* Determine if this segment contains the ELF file header
7567 and if it contains the program headers themselves. */
7568 map->includes_filehdr = (segment->p_offset == 0
7569 && segment->p_filesz >= iehdr->e_ehsize);
7571 map->includes_phdrs = 0;
7572 if (! phdr_included || segment->p_type != PT_LOAD)
7574 map->includes_phdrs =
7575 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7576 && (segment->p_offset + segment->p_filesz
7577 >= ((bfd_vma) iehdr->e_phoff
7578 + iehdr->e_phnum * iehdr->e_phentsize)));
7580 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7581 phdr_included = TRUE;
7584 lowest_section = NULL;
7585 if (section_count != 0)
7587 unsigned int isec = 0;
7589 for (section = first_section;
7591 section = section->next)
7593 this_hdr = &(elf_section_data(section)->this_hdr);
7594 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7596 map->sections[isec++] = section->output_section;
7597 if ((section->flags & SEC_ALLOC) != 0)
7601 if (lowest_section == NULL
7602 || section->lma < lowest_section->lma)
7603 lowest_section = section;
7605 /* Section lmas are set up from PT_LOAD header
7606 p_paddr in _bfd_elf_make_section_from_shdr.
7607 If this header has a p_paddr that disagrees
7608 with the section lma, flag the p_paddr as
7610 if ((section->flags & SEC_LOAD) != 0)
7611 seg_off = this_hdr->sh_offset - segment->p_offset;
7613 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7614 if (section->lma * opb - segment->p_paddr != seg_off)
7615 map->p_paddr_valid = FALSE;
7617 if (isec == section_count)
7623 if (section_count == 0)
7624 map->p_vaddr_offset = segment->p_vaddr / opb;
7625 else if (map->p_paddr_valid)
7627 /* Account for padding before the first section in the segment. */
7628 bfd_vma hdr_size = 0;
7629 if (map->includes_filehdr)
7630 hdr_size = iehdr->e_ehsize;
7631 if (map->includes_phdrs)
7632 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7634 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
7635 - (lowest_section ? lowest_section->lma : 0));
7638 map->count = section_count;
7639 *pointer_to_map = map;
7640 pointer_to_map = &map->next;
7643 elf_seg_map (obfd) = map_first;
7647 /* Copy private BFD data. This copies or rewrites ELF program header
7651 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7653 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7654 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7657 if (elf_tdata (ibfd)->phdr == NULL)
7660 if (ibfd->xvec == obfd->xvec)
7662 /* Check to see if any sections in the input BFD
7663 covered by ELF program header have changed. */
7664 Elf_Internal_Phdr *segment;
7665 asection *section, *osec;
7666 unsigned int i, num_segments;
7667 Elf_Internal_Shdr *this_hdr;
7668 const struct elf_backend_data *bed;
7670 bed = get_elf_backend_data (ibfd);
7672 /* Regenerate the segment map if p_paddr is set to 0. */
7673 if (bed->want_p_paddr_set_to_zero)
7676 /* Initialize the segment mark field. */
7677 for (section = obfd->sections; section != NULL;
7678 section = section->next)
7679 section->segment_mark = FALSE;
7681 num_segments = elf_elfheader (ibfd)->e_phnum;
7682 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7686 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7687 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7688 which severly confuses things, so always regenerate the segment
7689 map in this case. */
7690 if (segment->p_paddr == 0
7691 && segment->p_memsz == 0
7692 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
7695 for (section = ibfd->sections;
7696 section != NULL; section = section->next)
7698 /* We mark the output section so that we know it comes
7699 from the input BFD. */
7700 osec = section->output_section;
7702 osec->segment_mark = TRUE;
7704 /* Check if this section is covered by the segment. */
7705 this_hdr = &(elf_section_data(section)->this_hdr);
7706 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7708 /* FIXME: Check if its output section is changed or
7709 removed. What else do we need to check? */
7711 || section->flags != osec->flags
7712 || section->lma != osec->lma
7713 || section->vma != osec->vma
7714 || section->size != osec->size
7715 || section->rawsize != osec->rawsize
7716 || section->alignment_power != osec->alignment_power)
7722 /* Check to see if any output section do not come from the
7724 for (section = obfd->sections; section != NULL;
7725 section = section->next)
7727 if (!section->segment_mark)
7730 section->segment_mark = FALSE;
7733 return copy_elf_program_header (ibfd, obfd);
7737 if (ibfd->xvec == obfd->xvec)
7739 /* When rewriting program header, set the output maxpagesize to
7740 the maximum alignment of input PT_LOAD segments. */
7741 Elf_Internal_Phdr *segment;
7743 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7744 bfd_vma maxpagesize = 0;
7746 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7749 if (segment->p_type == PT_LOAD
7750 && maxpagesize < segment->p_align)
7752 /* PR 17512: file: f17299af. */
7753 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
7754 /* xgettext:c-format */
7755 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7756 PRIx64 " is too large"),
7757 ibfd, (uint64_t) segment->p_align);
7759 maxpagesize = segment->p_align;
7762 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7763 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7766 return rewrite_elf_program_header (ibfd, obfd);
7769 /* Initialize private output section information from input section. */
7772 _bfd_elf_init_private_section_data (bfd *ibfd,
7776 struct bfd_link_info *link_info)
7779 Elf_Internal_Shdr *ihdr, *ohdr;
7780 bfd_boolean final_link = (link_info != NULL
7781 && !bfd_link_relocatable (link_info));
7783 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7784 || obfd->xvec->flavour != bfd_target_elf_flavour)
7787 BFD_ASSERT (elf_section_data (osec) != NULL);
7789 /* If this is a known ABI section, ELF section type and flags may
7790 have been set up when OSEC was created. For normal sections we
7791 allow the user to override the type and flags other than
7792 SHF_MASKOS and SHF_MASKPROC. */
7793 if (elf_section_type (osec) == SHT_PROGBITS
7794 || elf_section_type (osec) == SHT_NOTE
7795 || elf_section_type (osec) == SHT_NOBITS)
7796 elf_section_type (osec) = SHT_NULL;
7797 /* For objcopy and relocatable link, copy the ELF section type from
7798 the input file if the BFD section flags are the same. (If they
7799 are different the user may be doing something like
7800 "objcopy --set-section-flags .text=alloc,data".) For a final
7801 link allow some flags that the linker clears to differ. */
7802 if (elf_section_type (osec) == SHT_NULL
7803 && (osec->flags == isec->flags
7805 && ((osec->flags ^ isec->flags)
7806 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
7807 elf_section_type (osec) = elf_section_type (isec);
7809 /* FIXME: Is this correct for all OS/PROC specific flags? */
7810 elf_section_flags (osec) = (elf_section_flags (isec)
7811 & (SHF_MASKOS | SHF_MASKPROC));
7813 /* Copy sh_info from input for mbind section. */
7814 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7815 && elf_section_flags (isec) & SHF_GNU_MBIND)
7816 elf_section_data (osec)->this_hdr.sh_info
7817 = elf_section_data (isec)->this_hdr.sh_info;
7819 /* Set things up for objcopy and relocatable link. The output
7820 SHT_GROUP section will have its elf_next_in_group pointing back
7821 to the input group members. Ignore linker created group section.
7822 See elfNN_ia64_object_p in elfxx-ia64.c. */
7823 if ((link_info == NULL
7824 || !link_info->resolve_section_groups)
7825 && (elf_sec_group (isec) == NULL
7826 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
7828 if (elf_section_flags (isec) & SHF_GROUP)
7829 elf_section_flags (osec) |= SHF_GROUP;
7830 elf_next_in_group (osec) = elf_next_in_group (isec);
7831 elf_section_data (osec)->group = elf_section_data (isec)->group;
7834 /* If not decompress, preserve SHF_COMPRESSED. */
7835 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7836 elf_section_flags (osec) |= (elf_section_flags (isec)
7839 ihdr = &elf_section_data (isec)->this_hdr;
7841 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7842 don't use the output section of the linked-to section since it
7843 may be NULL at this point. */
7844 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7846 ohdr = &elf_section_data (osec)->this_hdr;
7847 ohdr->sh_flags |= SHF_LINK_ORDER;
7848 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7851 osec->use_rela_p = isec->use_rela_p;
7856 /* Copy private section information. This copies over the entsize
7857 field, and sometimes the info field. */
7860 _bfd_elf_copy_private_section_data (bfd *ibfd,
7865 Elf_Internal_Shdr *ihdr, *ohdr;
7867 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7868 || obfd->xvec->flavour != bfd_target_elf_flavour)
7871 ihdr = &elf_section_data (isec)->this_hdr;
7872 ohdr = &elf_section_data (osec)->this_hdr;
7874 ohdr->sh_entsize = ihdr->sh_entsize;
7876 if (ihdr->sh_type == SHT_SYMTAB
7877 || ihdr->sh_type == SHT_DYNSYM
7878 || ihdr->sh_type == SHT_GNU_verneed
7879 || ihdr->sh_type == SHT_GNU_verdef)
7880 ohdr->sh_info = ihdr->sh_info;
7882 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7886 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7887 necessary if we are removing either the SHT_GROUP section or any of
7888 the group member sections. DISCARDED is the value that a section's
7889 output_section has if the section will be discarded, NULL when this
7890 function is called from objcopy, bfd_abs_section_ptr when called
7894 _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
7898 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
7899 if (elf_section_type (isec) == SHT_GROUP)
7901 asection *first = elf_next_in_group (isec);
7902 asection *s = first;
7903 bfd_size_type removed = 0;
7907 /* If this member section is being output but the
7908 SHT_GROUP section is not, then clear the group info
7909 set up by _bfd_elf_copy_private_section_data. */
7910 if (s->output_section != discarded
7911 && isec->output_section == discarded)
7913 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7914 elf_group_name (s->output_section) = NULL;
7918 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7919 if (s->output_section == discarded
7920 && isec->output_section != discarded)
7922 /* Conversely, if the member section is not being
7923 output but the SHT_GROUP section is, then adjust
7926 if (elf_sec->rel.hdr != NULL
7927 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7929 if (elf_sec->rela.hdr != NULL
7930 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7935 /* Also adjust for zero-sized relocation member
7937 if (elf_sec->rel.hdr != NULL
7938 && elf_sec->rel.hdr->sh_size == 0)
7940 if (elf_sec->rela.hdr != NULL
7941 && elf_sec->rela.hdr->sh_size == 0)
7945 s = elf_next_in_group (s);
7951 if (discarded != NULL)
7953 /* If we've been called for ld -r, then we need to
7954 adjust the input section size. */
7955 if (isec->rawsize == 0)
7956 isec->rawsize = isec->size;
7957 isec->size = isec->rawsize - removed;
7958 if (isec->size <= 4)
7961 isec->flags |= SEC_EXCLUDE;
7966 /* Adjust the output section size when called from
7968 isec->output_section->size -= removed;
7969 if (isec->output_section->size <= 4)
7971 isec->output_section->size = 0;
7972 isec->output_section->flags |= SEC_EXCLUDE;
7981 /* Copy private header information. */
7984 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7986 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7987 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7990 /* Copy over private BFD data if it has not already been copied.
7991 This must be done here, rather than in the copy_private_bfd_data
7992 entry point, because the latter is called after the section
7993 contents have been set, which means that the program headers have
7994 already been worked out. */
7995 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
7997 if (! copy_private_bfd_data (ibfd, obfd))
8001 return _bfd_elf_fixup_group_sections (ibfd, NULL);
8004 /* Copy private symbol information. If this symbol is in a section
8005 which we did not map into a BFD section, try to map the section
8006 index correctly. We use special macro definitions for the mapped
8007 section indices; these definitions are interpreted by the
8008 swap_out_syms function. */
8010 #define MAP_ONESYMTAB (SHN_HIOS + 1)
8011 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
8012 #define MAP_STRTAB (SHN_HIOS + 3)
8013 #define MAP_SHSTRTAB (SHN_HIOS + 4)
8014 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
8017 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
8022 elf_symbol_type *isym, *osym;
8024 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
8025 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
8028 isym = elf_symbol_from (ibfd, isymarg);
8029 osym = elf_symbol_from (obfd, osymarg);
8032 && isym->internal_elf_sym.st_shndx != 0
8034 && bfd_is_abs_section (isym->symbol.section))
8038 shndx = isym->internal_elf_sym.st_shndx;
8039 if (shndx == elf_onesymtab (ibfd))
8040 shndx = MAP_ONESYMTAB;
8041 else if (shndx == elf_dynsymtab (ibfd))
8042 shndx = MAP_DYNSYMTAB;
8043 else if (shndx == elf_strtab_sec (ibfd))
8045 else if (shndx == elf_shstrtab_sec (ibfd))
8046 shndx = MAP_SHSTRTAB;
8047 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
8048 shndx = MAP_SYM_SHNDX;
8049 osym->internal_elf_sym.st_shndx = shndx;
8055 /* Swap out the symbols. */
8058 swap_out_syms (bfd *abfd,
8059 struct elf_strtab_hash **sttp,
8062 const struct elf_backend_data *bed;
8063 unsigned int symcount;
8065 struct elf_strtab_hash *stt;
8066 Elf_Internal_Shdr *symtab_hdr;
8067 Elf_Internal_Shdr *symtab_shndx_hdr;
8068 Elf_Internal_Shdr *symstrtab_hdr;
8069 struct elf_sym_strtab *symstrtab;
8070 bfd_byte *outbound_syms;
8071 bfd_byte *outbound_shndx;
8072 unsigned long outbound_syms_index;
8073 unsigned long outbound_shndx_index;
8075 unsigned int num_locals;
8077 bfd_boolean name_local_sections;
8079 if (!elf_map_symbols (abfd, &num_locals))
8082 /* Dump out the symtabs. */
8083 stt = _bfd_elf_strtab_init ();
8087 bed = get_elf_backend_data (abfd);
8088 symcount = bfd_get_symcount (abfd);
8089 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8090 symtab_hdr->sh_type = SHT_SYMTAB;
8091 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8092 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
8093 symtab_hdr->sh_info = num_locals + 1;
8094 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
8096 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8097 symstrtab_hdr->sh_type = SHT_STRTAB;
8099 /* Allocate buffer to swap out the .strtab section. */
8100 if (_bfd_mul_overflow (symcount + 1, sizeof (*symstrtab), &amt)
8101 || (symstrtab = (struct elf_sym_strtab *) bfd_malloc (amt)) == NULL)
8103 bfd_set_error (bfd_error_no_memory);
8104 _bfd_elf_strtab_free (stt);
8108 if (_bfd_mul_overflow (symcount + 1, bed->s->sizeof_sym, &amt)
8109 || (outbound_syms = (bfd_byte *) bfd_alloc (abfd, amt)) == NULL)
8112 bfd_set_error (bfd_error_no_memory);
8115 _bfd_elf_strtab_free (stt);
8118 symtab_hdr->contents = outbound_syms;
8119 outbound_syms_index = 0;
8121 outbound_shndx = NULL;
8122 outbound_shndx_index = 0;
8124 if (elf_symtab_shndx_list (abfd))
8126 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8127 if (symtab_shndx_hdr->sh_name != 0)
8129 if (_bfd_mul_overflow (symcount + 1,
8130 sizeof (Elf_External_Sym_Shndx), &amt))
8132 outbound_shndx = (bfd_byte *) bfd_zalloc (abfd, amt);
8133 if (outbound_shndx == NULL)
8136 symtab_shndx_hdr->contents = outbound_shndx;
8137 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8138 symtab_shndx_hdr->sh_size = amt;
8139 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8140 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8142 /* FIXME: What about any other headers in the list ? */
8145 /* Now generate the data (for "contents"). */
8147 /* Fill in zeroth symbol and swap it out. */
8148 Elf_Internal_Sym sym;
8154 sym.st_shndx = SHN_UNDEF;
8155 sym.st_target_internal = 0;
8156 symstrtab[0].sym = sym;
8157 symstrtab[0].dest_index = outbound_syms_index;
8158 symstrtab[0].destshndx_index = outbound_shndx_index;
8159 outbound_syms_index++;
8160 if (outbound_shndx != NULL)
8161 outbound_shndx_index++;
8165 = (bed->elf_backend_name_local_section_symbols
8166 && bed->elf_backend_name_local_section_symbols (abfd));
8168 syms = bfd_get_outsymbols (abfd);
8169 for (idx = 0; idx < symcount;)
8171 Elf_Internal_Sym sym;
8172 bfd_vma value = syms[idx]->value;
8173 elf_symbol_type *type_ptr;
8174 flagword flags = syms[idx]->flags;
8177 if (!name_local_sections
8178 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
8180 /* Local section symbols have no name. */
8181 sym.st_name = (unsigned long) -1;
8185 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8186 to get the final offset for st_name. */
8188 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
8190 if (sym.st_name == (unsigned long) -1)
8194 type_ptr = elf_symbol_from (abfd, syms[idx]);
8196 if ((flags & BSF_SECTION_SYM) == 0
8197 && bfd_is_com_section (syms[idx]->section))
8199 /* ELF common symbols put the alignment into the `value' field,
8200 and the size into the `size' field. This is backwards from
8201 how BFD handles it, so reverse it here. */
8202 sym.st_size = value;
8203 if (type_ptr == NULL
8204 || type_ptr->internal_elf_sym.st_value == 0)
8205 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8207 sym.st_value = type_ptr->internal_elf_sym.st_value;
8208 sym.st_shndx = _bfd_elf_section_from_bfd_section
8209 (abfd, syms[idx]->section);
8213 asection *sec = syms[idx]->section;
8216 if (sec->output_section)
8218 value += sec->output_offset;
8219 sec = sec->output_section;
8222 /* Don't add in the section vma for relocatable output. */
8223 if (! relocatable_p)
8225 sym.st_value = value;
8226 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8228 if (bfd_is_abs_section (sec)
8230 && type_ptr->internal_elf_sym.st_shndx != 0)
8232 /* This symbol is in a real ELF section which we did
8233 not create as a BFD section. Undo the mapping done
8234 by copy_private_symbol_data. */
8235 shndx = type_ptr->internal_elf_sym.st_shndx;
8239 shndx = elf_onesymtab (abfd);
8242 shndx = elf_dynsymtab (abfd);
8245 shndx = elf_strtab_sec (abfd);
8248 shndx = elf_shstrtab_sec (abfd);
8251 if (elf_symtab_shndx_list (abfd))
8252 shndx = elf_symtab_shndx_list (abfd)->ndx;
8259 if (shndx >= SHN_LOPROC && shndx <= SHN_HIOS)
8261 if (bed->symbol_section_index)
8262 shndx = bed->symbol_section_index (abfd, type_ptr);
8263 /* Otherwise just leave the index alone. */
8267 if (shndx > SHN_HIOS && shndx < SHN_HIRESERVE)
8268 _bfd_error_handler (_("%pB: \
8269 Unable to handle section index %x in ELF symbol. Using ABS instead."),
8278 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
8280 if (shndx == SHN_BAD)
8284 /* Writing this would be a hell of a lot easier if
8285 we had some decent documentation on bfd, and
8286 knew what to expect of the library, and what to
8287 demand of applications. For example, it
8288 appears that `objcopy' might not set the
8289 section of a symbol to be a section that is
8290 actually in the output file. */
8291 sec2 = bfd_get_section_by_name (abfd, sec->name);
8293 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8294 if (shndx == SHN_BAD)
8296 /* xgettext:c-format */
8298 (_("unable to find equivalent output section"
8299 " for symbol '%s' from section '%s'"),
8300 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8302 bfd_set_error (bfd_error_invalid_operation);
8308 sym.st_shndx = shndx;
8311 if ((flags & BSF_THREAD_LOCAL) != 0)
8313 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8314 type = STT_GNU_IFUNC;
8315 else if ((flags & BSF_FUNCTION) != 0)
8317 else if ((flags & BSF_OBJECT) != 0)
8319 else if ((flags & BSF_RELC) != 0)
8321 else if ((flags & BSF_SRELC) != 0)
8326 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8329 /* Processor-specific types. */
8330 if (type_ptr != NULL
8331 && bed->elf_backend_get_symbol_type)
8332 type = ((*bed->elf_backend_get_symbol_type)
8333 (&type_ptr->internal_elf_sym, type));
8335 if (flags & BSF_SECTION_SYM)
8337 if (flags & BSF_GLOBAL)
8338 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8340 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8342 else if (bfd_is_com_section (syms[idx]->section))
8344 if (type != STT_TLS)
8346 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8347 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8348 ? STT_COMMON : STT_OBJECT);
8350 type = ((flags & BSF_ELF_COMMON) != 0
8351 ? STT_COMMON : STT_OBJECT);
8353 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
8355 else if (bfd_is_und_section (syms[idx]->section))
8356 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8360 else if (flags & BSF_FILE)
8361 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8364 int bind = STB_LOCAL;
8366 if (flags & BSF_LOCAL)
8368 else if (flags & BSF_GNU_UNIQUE)
8369 bind = STB_GNU_UNIQUE;
8370 else if (flags & BSF_WEAK)
8372 else if (flags & BSF_GLOBAL)
8375 sym.st_info = ELF_ST_INFO (bind, type);
8378 if (type_ptr != NULL)
8380 sym.st_other = type_ptr->internal_elf_sym.st_other;
8381 sym.st_target_internal
8382 = type_ptr->internal_elf_sym.st_target_internal;
8387 sym.st_target_internal = 0;
8391 symstrtab[idx].sym = sym;
8392 symstrtab[idx].dest_index = outbound_syms_index;
8393 symstrtab[idx].destshndx_index = outbound_shndx_index;
8395 outbound_syms_index++;
8396 if (outbound_shndx != NULL)
8397 outbound_shndx_index++;
8400 /* Finalize the .strtab section. */
8401 _bfd_elf_strtab_finalize (stt);
8403 /* Swap out the .strtab section. */
8404 for (idx = 0; idx <= symcount; idx++)
8406 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8407 if (elfsym->sym.st_name == (unsigned long) -1)
8408 elfsym->sym.st_name = 0;
8410 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8411 elfsym->sym.st_name);
8412 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8414 + (elfsym->dest_index
8415 * bed->s->sizeof_sym)),
8417 + (elfsym->destshndx_index
8418 * sizeof (Elf_External_Sym_Shndx))));
8423 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
8424 symstrtab_hdr->sh_type = SHT_STRTAB;
8425 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
8426 symstrtab_hdr->sh_addr = 0;
8427 symstrtab_hdr->sh_entsize = 0;
8428 symstrtab_hdr->sh_link = 0;
8429 symstrtab_hdr->sh_info = 0;
8430 symstrtab_hdr->sh_addralign = 1;
8435 /* Return the number of bytes required to hold the symtab vector.
8437 Note that we base it on the count plus 1, since we will null terminate
8438 the vector allocated based on this size. However, the ELF symbol table
8439 always has a dummy entry as symbol #0, so it ends up even. */
8442 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
8444 bfd_size_type symcount;
8446 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8448 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8449 if (symcount > LONG_MAX / sizeof (asymbol *))
8451 bfd_set_error (bfd_error_file_too_big);
8454 symtab_size = symcount * (sizeof (asymbol *));
8456 symtab_size = sizeof (asymbol *);
8457 else if (!bfd_write_p (abfd))
8459 ufile_ptr filesize = bfd_get_file_size (abfd);
8461 if (filesize != 0 && (unsigned long) symtab_size > filesize)
8463 bfd_set_error (bfd_error_file_truncated);
8472 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
8474 bfd_size_type symcount;
8476 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8478 if (elf_dynsymtab (abfd) == 0)
8480 bfd_set_error (bfd_error_invalid_operation);
8484 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8485 if (symcount > LONG_MAX / sizeof (asymbol *))
8487 bfd_set_error (bfd_error_file_too_big);
8490 symtab_size = symcount * (sizeof (asymbol *));
8492 symtab_size = sizeof (asymbol *);
8493 else if (!bfd_write_p (abfd))
8495 ufile_ptr filesize = bfd_get_file_size (abfd);
8497 if (filesize != 0 && (unsigned long) symtab_size > filesize)
8499 bfd_set_error (bfd_error_file_truncated);
8508 _bfd_elf_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
8510 if (asect->reloc_count != 0 && !bfd_write_p (abfd))
8512 /* Sanity check reloc section size. */
8513 struct bfd_elf_section_data *d = elf_section_data (asect);
8514 Elf_Internal_Shdr *rel_hdr = &d->this_hdr;
8515 bfd_size_type ext_rel_size = rel_hdr->sh_size;
8516 ufile_ptr filesize = bfd_get_file_size (abfd);
8518 if (filesize != 0 && ext_rel_size > filesize)
8520 bfd_set_error (bfd_error_file_truncated);
8525 #if SIZEOF_LONG == SIZEOF_INT
8526 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8528 bfd_set_error (bfd_error_file_too_big);
8532 return (asect->reloc_count + 1) * sizeof (arelent *);
8535 /* Canonicalize the relocs. */
8538 _bfd_elf_canonicalize_reloc (bfd *abfd,
8545 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8547 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
8550 tblptr = section->relocation;
8551 for (i = 0; i < section->reloc_count; i++)
8552 *relptr++ = tblptr++;
8556 return section->reloc_count;
8560 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
8562 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8563 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
8566 abfd->symcount = symcount;
8571 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8572 asymbol **allocation)
8574 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8575 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
8578 abfd->dynsymcount = symcount;
8582 /* Return the size required for the dynamic reloc entries. Any loadable
8583 section that was actually installed in the BFD, and has type SHT_REL
8584 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8585 dynamic reloc section. */
8588 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
8590 bfd_size_type count, ext_rel_size;
8593 if (elf_dynsymtab (abfd) == 0)
8595 bfd_set_error (bfd_error_invalid_operation);
8601 for (s = abfd->sections; s != NULL; s = s->next)
8602 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8603 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8604 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8606 ext_rel_size += s->size;
8607 if (ext_rel_size < s->size)
8609 bfd_set_error (bfd_error_file_truncated);
8612 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8613 if (count > LONG_MAX / sizeof (arelent *))
8615 bfd_set_error (bfd_error_file_too_big);
8619 if (count > 1 && !bfd_write_p (abfd))
8621 /* Sanity check reloc section sizes. */
8622 ufile_ptr filesize = bfd_get_file_size (abfd);
8623 if (filesize != 0 && ext_rel_size > filesize)
8625 bfd_set_error (bfd_error_file_truncated);
8629 return count * sizeof (arelent *);
8632 /* Canonicalize the dynamic relocation entries. Note that we return the
8633 dynamic relocations as a single block, although they are actually
8634 associated with particular sections; the interface, which was
8635 designed for SunOS style shared libraries, expects that there is only
8636 one set of dynamic relocs. Any loadable section that was actually
8637 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8638 dynamic symbol table, is considered to be a dynamic reloc section. */
8641 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8645 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
8649 if (elf_dynsymtab (abfd) == 0)
8651 bfd_set_error (bfd_error_invalid_operation);
8655 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8657 for (s = abfd->sections; s != NULL; s = s->next)
8659 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8660 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8661 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8666 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
8668 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
8670 for (i = 0; i < count; i++)
8681 /* Read in the version information. */
8684 _bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
8686 bfd_byte *contents = NULL;
8687 unsigned int freeidx = 0;
8690 if (elf_dynverref (abfd) != 0)
8692 Elf_Internal_Shdr *hdr;
8693 Elf_External_Verneed *everneed;
8694 Elf_Internal_Verneed *iverneed;
8696 bfd_byte *contents_end;
8698 hdr = &elf_tdata (abfd)->dynverref_hdr;
8700 if (hdr->sh_info == 0
8701 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
8703 error_return_bad_verref:
8705 (_("%pB: .gnu.version_r invalid entry"), abfd);
8706 bfd_set_error (bfd_error_bad_value);
8707 error_return_verref:
8708 elf_tdata (abfd)->verref = NULL;
8709 elf_tdata (abfd)->cverrefs = 0;
8713 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8714 goto error_return_verref;
8715 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8716 if (contents == NULL)
8717 goto error_return_verref;
8719 if (_bfd_mul_overflow (hdr->sh_info, sizeof (Elf_Internal_Verneed), &amt))
8721 bfd_set_error (bfd_error_file_too_big);
8722 goto error_return_verref;
8724 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *) bfd_alloc (abfd, amt);
8725 if (elf_tdata (abfd)->verref == NULL)
8726 goto error_return_verref;
8728 BFD_ASSERT (sizeof (Elf_External_Verneed)
8729 == sizeof (Elf_External_Vernaux));
8730 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
8731 everneed = (Elf_External_Verneed *) contents;
8732 iverneed = elf_tdata (abfd)->verref;
8733 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8735 Elf_External_Vernaux *evernaux;
8736 Elf_Internal_Vernaux *ivernaux;
8739 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8741 iverneed->vn_bfd = abfd;
8743 iverneed->vn_filename =
8744 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8746 if (iverneed->vn_filename == NULL)
8747 goto error_return_bad_verref;
8749 if (iverneed->vn_cnt == 0)
8750 iverneed->vn_auxptr = NULL;
8753 if (_bfd_mul_overflow (iverneed->vn_cnt,
8754 sizeof (Elf_Internal_Vernaux), &amt))
8756 bfd_set_error (bfd_error_file_too_big);
8757 goto error_return_verref;
8759 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
8760 bfd_alloc (abfd, amt);
8761 if (iverneed->vn_auxptr == NULL)
8762 goto error_return_verref;
8765 if (iverneed->vn_aux
8766 > (size_t) (contents_end - (bfd_byte *) everneed))
8767 goto error_return_bad_verref;
8769 evernaux = ((Elf_External_Vernaux *)
8770 ((bfd_byte *) everneed + iverneed->vn_aux));
8771 ivernaux = iverneed->vn_auxptr;
8772 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8774 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8776 ivernaux->vna_nodename =
8777 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8778 ivernaux->vna_name);
8779 if (ivernaux->vna_nodename == NULL)
8780 goto error_return_bad_verref;
8782 if (ivernaux->vna_other > freeidx)
8783 freeidx = ivernaux->vna_other;
8785 ivernaux->vna_nextptr = NULL;
8786 if (ivernaux->vna_next == 0)
8788 iverneed->vn_cnt = j + 1;
8791 if (j + 1 < iverneed->vn_cnt)
8792 ivernaux->vna_nextptr = ivernaux + 1;
8794 if (ivernaux->vna_next
8795 > (size_t) (contents_end - (bfd_byte *) evernaux))
8796 goto error_return_bad_verref;
8798 evernaux = ((Elf_External_Vernaux *)
8799 ((bfd_byte *) evernaux + ivernaux->vna_next));
8802 iverneed->vn_nextref = NULL;
8803 if (iverneed->vn_next == 0)
8805 if (i + 1 < hdr->sh_info)
8806 iverneed->vn_nextref = iverneed + 1;
8808 if (iverneed->vn_next
8809 > (size_t) (contents_end - (bfd_byte *) everneed))
8810 goto error_return_bad_verref;
8812 everneed = ((Elf_External_Verneed *)
8813 ((bfd_byte *) everneed + iverneed->vn_next));
8815 elf_tdata (abfd)->cverrefs = i;
8821 if (elf_dynverdef (abfd) != 0)
8823 Elf_Internal_Shdr *hdr;
8824 Elf_External_Verdef *everdef;
8825 Elf_Internal_Verdef *iverdef;
8826 Elf_Internal_Verdef *iverdefarr;
8827 Elf_Internal_Verdef iverdefmem;
8829 unsigned int maxidx;
8830 bfd_byte *contents_end_def, *contents_end_aux;
8832 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8834 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8836 error_return_bad_verdef:
8838 (_("%pB: .gnu.version_d invalid entry"), abfd);
8839 bfd_set_error (bfd_error_bad_value);
8840 error_return_verdef:
8841 elf_tdata (abfd)->verdef = NULL;
8842 elf_tdata (abfd)->cverdefs = 0;
8846 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8847 goto error_return_verdef;
8848 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8849 if (contents == NULL)
8850 goto error_return_verdef;
8852 BFD_ASSERT (sizeof (Elf_External_Verdef)
8853 >= sizeof (Elf_External_Verdaux));
8854 contents_end_def = contents + hdr->sh_size
8855 - sizeof (Elf_External_Verdef);
8856 contents_end_aux = contents + hdr->sh_size
8857 - sizeof (Elf_External_Verdaux);
8859 /* We know the number of entries in the section but not the maximum
8860 index. Therefore we have to run through all entries and find
8862 everdef = (Elf_External_Verdef *) contents;
8864 for (i = 0; i < hdr->sh_info; ++i)
8866 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8868 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8869 goto error_return_bad_verdef;
8870 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8871 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
8873 if (iverdefmem.vd_next == 0)
8876 if (iverdefmem.vd_next
8877 > (size_t) (contents_end_def - (bfd_byte *) everdef))
8878 goto error_return_bad_verdef;
8880 everdef = ((Elf_External_Verdef *)
8881 ((bfd_byte *) everdef + iverdefmem.vd_next));
8884 if (default_imported_symver)
8886 if (freeidx > maxidx)
8891 if (_bfd_mul_overflow (maxidx, sizeof (Elf_Internal_Verdef), &amt))
8893 bfd_set_error (bfd_error_file_too_big);
8894 goto error_return_verdef;
8896 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
8897 if (elf_tdata (abfd)->verdef == NULL)
8898 goto error_return_verdef;
8900 elf_tdata (abfd)->cverdefs = maxidx;
8902 everdef = (Elf_External_Verdef *) contents;
8903 iverdefarr = elf_tdata (abfd)->verdef;
8904 for (i = 0; i < hdr->sh_info; i++)
8906 Elf_External_Verdaux *everdaux;
8907 Elf_Internal_Verdaux *iverdaux;
8910 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8912 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
8913 goto error_return_bad_verdef;
8915 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
8916 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
8918 iverdef->vd_bfd = abfd;
8920 if (iverdef->vd_cnt == 0)
8921 iverdef->vd_auxptr = NULL;
8924 if (_bfd_mul_overflow (iverdef->vd_cnt,
8925 sizeof (Elf_Internal_Verdaux), &amt))
8927 bfd_set_error (bfd_error_file_too_big);
8928 goto error_return_verdef;
8930 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
8931 bfd_alloc (abfd, amt);
8932 if (iverdef->vd_auxptr == NULL)
8933 goto error_return_verdef;
8937 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
8938 goto error_return_bad_verdef;
8940 everdaux = ((Elf_External_Verdaux *)
8941 ((bfd_byte *) everdef + iverdef->vd_aux));
8942 iverdaux = iverdef->vd_auxptr;
8943 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8945 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8947 iverdaux->vda_nodename =
8948 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8949 iverdaux->vda_name);
8950 if (iverdaux->vda_nodename == NULL)
8951 goto error_return_bad_verdef;
8953 iverdaux->vda_nextptr = NULL;
8954 if (iverdaux->vda_next == 0)
8956 iverdef->vd_cnt = j + 1;
8959 if (j + 1 < iverdef->vd_cnt)
8960 iverdaux->vda_nextptr = iverdaux + 1;
8962 if (iverdaux->vda_next
8963 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
8964 goto error_return_bad_verdef;
8966 everdaux = ((Elf_External_Verdaux *)
8967 ((bfd_byte *) everdaux + iverdaux->vda_next));
8970 iverdef->vd_nodename = NULL;
8971 if (iverdef->vd_cnt)
8972 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
8974 iverdef->vd_nextdef = NULL;
8975 if (iverdef->vd_next == 0)
8977 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
8978 iverdef->vd_nextdef = iverdef + 1;
8980 everdef = ((Elf_External_Verdef *)
8981 ((bfd_byte *) everdef + iverdef->vd_next));
8987 else if (default_imported_symver)
8994 if (_bfd_mul_overflow (freeidx, sizeof (Elf_Internal_Verdef), &amt))
8996 bfd_set_error (bfd_error_file_too_big);
8999 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
9000 if (elf_tdata (abfd)->verdef == NULL)
9003 elf_tdata (abfd)->cverdefs = freeidx;
9006 /* Create a default version based on the soname. */
9007 if (default_imported_symver)
9009 Elf_Internal_Verdef *iverdef;
9010 Elf_Internal_Verdaux *iverdaux;
9012 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
9014 iverdef->vd_version = VER_DEF_CURRENT;
9015 iverdef->vd_flags = 0;
9016 iverdef->vd_ndx = freeidx;
9017 iverdef->vd_cnt = 1;
9019 iverdef->vd_bfd = abfd;
9021 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
9022 if (iverdef->vd_nodename == NULL)
9023 goto error_return_verdef;
9024 iverdef->vd_nextdef = NULL;
9025 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
9026 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
9027 if (iverdef->vd_auxptr == NULL)
9028 goto error_return_verdef;
9030 iverdaux = iverdef->vd_auxptr;
9031 iverdaux->vda_nodename = iverdef->vd_nodename;
9042 _bfd_elf_make_empty_symbol (bfd *abfd)
9044 elf_symbol_type *newsym;
9046 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
9049 newsym->symbol.the_bfd = abfd;
9050 return &newsym->symbol;
9054 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
9058 bfd_symbol_info (symbol, ret);
9061 /* Return whether a symbol name implies a local symbol. Most targets
9062 use this function for the is_local_label_name entry point, but some
9066 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
9069 /* Normal local symbols start with ``.L''. */
9070 if (name[0] == '.' && name[1] == 'L')
9073 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
9074 DWARF debugging symbols starting with ``..''. */
9075 if (name[0] == '.' && name[1] == '.')
9078 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
9079 emitting DWARF debugging output. I suspect this is actually a
9080 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
9081 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
9082 underscore to be emitted on some ELF targets). For ease of use,
9083 we treat such symbols as local. */
9084 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
9087 /* Treat assembler generated fake symbols, dollar local labels and
9088 forward-backward labels (aka local labels) as locals.
9089 These labels have the form:
9091 L0^A.* (fake symbols)
9093 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
9095 Versions which start with .L will have already been matched above,
9096 so we only need to match the rest. */
9097 if (name[0] == 'L' && ISDIGIT (name[1]))
9099 bfd_boolean ret = FALSE;
9103 for (p = name + 2; (c = *p); p++)
9105 if (c == 1 || c == 2)
9107 if (c == 1 && p == name + 2)
9108 /* A fake symbol. */
9111 /* FIXME: We are being paranoid here and treating symbols like
9112 L0^Bfoo as if there were non-local, on the grounds that the
9113 assembler will never generate them. But can any symbol
9114 containing an ASCII value in the range 1-31 ever be anything
9115 other than some kind of local ? */
9132 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9133 asymbol *symbol ATTRIBUTE_UNUSED)
9140 _bfd_elf_set_arch_mach (bfd *abfd,
9141 enum bfd_architecture arch,
9142 unsigned long machine)
9144 /* If this isn't the right architecture for this backend, and this
9145 isn't the generic backend, fail. */
9146 if (arch != get_elf_backend_data (abfd)->arch
9147 && arch != bfd_arch_unknown
9148 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
9151 return bfd_default_set_arch_mach (abfd, arch, machine);
9154 /* Find the nearest line to a particular section and offset,
9155 for error reporting. */
9158 _bfd_elf_find_nearest_line (bfd *abfd,
9162 const char **filename_ptr,
9163 const char **functionname_ptr,
9164 unsigned int *line_ptr,
9165 unsigned int *discriminator_ptr)
9169 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
9170 filename_ptr, functionname_ptr,
9171 line_ptr, discriminator_ptr,
9172 dwarf_debug_sections,
9173 &elf_tdata (abfd)->dwarf2_find_line_info))
9176 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9177 filename_ptr, functionname_ptr, line_ptr))
9179 if (!*functionname_ptr)
9180 _bfd_elf_find_function (abfd, symbols, section, offset,
9181 *filename_ptr ? NULL : filename_ptr,
9186 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
9187 &found, filename_ptr,
9188 functionname_ptr, line_ptr,
9189 &elf_tdata (abfd)->line_info))
9191 if (found && (*functionname_ptr || *line_ptr))
9194 if (symbols == NULL)
9197 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9198 filename_ptr, functionname_ptr))
9205 /* Find the line for a symbol. */
9208 _bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9209 const char **filename_ptr, unsigned int *line_ptr)
9211 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9212 filename_ptr, NULL, line_ptr, NULL,
9213 dwarf_debug_sections,
9214 &elf_tdata (abfd)->dwarf2_find_line_info);
9217 /* After a call to bfd_find_nearest_line, successive calls to
9218 bfd_find_inliner_info can be used to get source information about
9219 each level of function inlining that terminated at the address
9220 passed to bfd_find_nearest_line. Currently this is only supported
9221 for DWARF2 with appropriate DWARF3 extensions. */
9224 _bfd_elf_find_inliner_info (bfd *abfd,
9225 const char **filename_ptr,
9226 const char **functionname_ptr,
9227 unsigned int *line_ptr)
9230 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9231 functionname_ptr, line_ptr,
9232 & elf_tdata (abfd)->dwarf2_find_line_info);
9237 _bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
9239 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9240 int ret = bed->s->sizeof_ehdr;
9242 if (!bfd_link_relocatable (info))
9244 bfd_size_type phdr_size = elf_program_header_size (abfd);
9246 if (phdr_size == (bfd_size_type) -1)
9248 struct elf_segment_map *m;
9251 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
9252 phdr_size += bed->s->sizeof_phdr;
9255 phdr_size = get_program_header_size (abfd, info);
9258 elf_program_header_size (abfd) = phdr_size;
9266 _bfd_elf_set_section_contents (bfd *abfd,
9268 const void *location,
9270 bfd_size_type count)
9272 Elf_Internal_Shdr *hdr;
9275 if (! abfd->output_has_begun
9276 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
9282 hdr = &elf_section_data (section)->this_hdr;
9283 if (hdr->sh_offset == (file_ptr) -1)
9285 unsigned char *contents;
9287 if (bfd_section_is_ctf (section))
9288 /* Nothing to do with this section: the contents are generated
9292 if ((section->flags & SEC_ELF_COMPRESS) == 0)
9295 (_("%pB:%pA: error: attempting to write into an unallocated compressed section"),
9297 bfd_set_error (bfd_error_invalid_operation);
9301 if ((offset + count) > hdr->sh_size)
9304 (_("%pB:%pA: error: attempting to write over the end of the section"),
9307 bfd_set_error (bfd_error_invalid_operation);
9311 contents = hdr->contents;
9312 if (contents == NULL)
9315 (_("%pB:%pA: error: attempting to write section into an empty buffer"),
9318 bfd_set_error (bfd_error_invalid_operation);
9322 memcpy (contents + offset, location, count);
9326 pos = hdr->sh_offset + offset;
9327 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9328 || bfd_bwrite (location, count, abfd) != count)
9335 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9336 arelent *cache_ptr ATTRIBUTE_UNUSED,
9337 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
9343 /* Try to convert a non-ELF reloc into an ELF one. */
9346 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
9348 /* Check whether we really have an ELF howto. */
9350 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9352 bfd_reloc_code_real_type code;
9353 reloc_howto_type *howto;
9355 /* Alien reloc: Try to determine its type to replace it with an
9356 equivalent ELF reloc. */
9358 if (areloc->howto->pc_relative)
9360 switch (areloc->howto->bitsize)
9363 code = BFD_RELOC_8_PCREL;
9366 code = BFD_RELOC_12_PCREL;
9369 code = BFD_RELOC_16_PCREL;
9372 code = BFD_RELOC_24_PCREL;
9375 code = BFD_RELOC_32_PCREL;
9378 code = BFD_RELOC_64_PCREL;
9384 howto = bfd_reloc_type_lookup (abfd, code);
9386 if (howto && areloc->howto->pcrel_offset != howto->pcrel_offset)
9388 if (howto->pcrel_offset)
9389 areloc->addend += areloc->address;
9391 areloc->addend -= areloc->address; /* addend is unsigned!! */
9396 switch (areloc->howto->bitsize)
9402 code = BFD_RELOC_14;
9405 code = BFD_RELOC_16;
9408 code = BFD_RELOC_26;
9411 code = BFD_RELOC_32;
9414 code = BFD_RELOC_64;
9420 howto = bfd_reloc_type_lookup (abfd, code);
9424 areloc->howto = howto;
9432 /* xgettext:c-format */
9433 _bfd_error_handler (_("%pB: %s unsupported"),
9434 abfd, areloc->howto->name);
9435 bfd_set_error (bfd_error_sorry);
9440 _bfd_elf_close_and_cleanup (bfd *abfd)
9442 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9444 && (bfd_get_format (abfd) == bfd_object
9445 || bfd_get_format (abfd) == bfd_core))
9447 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
9448 _bfd_elf_strtab_free (elf_shstrtab (abfd));
9449 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
9452 return _bfd_generic_close_and_cleanup (abfd);
9455 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9456 in the relocation's offset. Thus we cannot allow any sort of sanity
9457 range-checking to interfere. There is nothing else to do in processing
9460 bfd_reloc_status_type
9461 _bfd_elf_rel_vtable_reloc_fn
9462 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
9463 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
9464 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9465 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
9467 return bfd_reloc_ok;
9470 /* Elf core file support. Much of this only works on native
9471 toolchains, since we rely on knowing the
9472 machine-dependent procfs structure in order to pick
9473 out details about the corefile. */
9475 #ifdef HAVE_SYS_PROCFS_H
9476 # include <sys/procfs.h>
9479 /* Return a PID that identifies a "thread" for threaded cores, or the
9480 PID of the main process for non-threaded cores. */
9483 elfcore_make_pid (bfd *abfd)
9487 pid = elf_tdata (abfd)->core->lwpid;
9489 pid = elf_tdata (abfd)->core->pid;
9494 /* If there isn't a section called NAME, make one, using
9495 data from SECT. Note, this function will generate a
9496 reference to NAME, so you shouldn't deallocate or
9500 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
9504 if (bfd_get_section_by_name (abfd, name) != NULL)
9507 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
9511 sect2->size = sect->size;
9512 sect2->filepos = sect->filepos;
9513 sect2->alignment_power = sect->alignment_power;
9517 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
9518 actually creates up to two pseudosections:
9519 - For the single-threaded case, a section named NAME, unless
9520 such a section already exists.
9521 - For the multi-threaded case, a section named "NAME/PID", where
9522 PID is elfcore_make_pid (abfd).
9523 Both pseudosections have identical contents. */
9525 _bfd_elfcore_make_pseudosection (bfd *abfd,
9531 char *threaded_name;
9535 /* Build the section name. */
9537 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
9538 len = strlen (buf) + 1;
9539 threaded_name = (char *) bfd_alloc (abfd, len);
9540 if (threaded_name == NULL)
9542 memcpy (threaded_name, buf, len);
9544 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9549 sect->filepos = filepos;
9550 sect->alignment_power = 2;
9552 return elfcore_maybe_make_sect (abfd, name, sect);
9556 elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9559 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9565 sect->size = note->descsz - offs;
9566 sect->filepos = note->descpos + offs;
9567 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9572 /* prstatus_t exists on:
9574 linux 2.[01] + glibc
9578 #if defined (HAVE_PRSTATUS_T)
9581 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
9586 if (note->descsz == sizeof (prstatus_t))
9590 size = sizeof (prstat.pr_reg);
9591 offset = offsetof (prstatus_t, pr_reg);
9592 memcpy (&prstat, note->descdata, sizeof (prstat));
9594 /* Do not overwrite the core signal if it
9595 has already been set by another thread. */
9596 if (elf_tdata (abfd)->core->signal == 0)
9597 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9598 if (elf_tdata (abfd)->core->pid == 0)
9599 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9601 /* pr_who exists on:
9604 pr_who doesn't exist on:
9607 #if defined (HAVE_PRSTATUS_T_PR_WHO)
9608 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9610 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9613 #if defined (HAVE_PRSTATUS32_T)
9614 else if (note->descsz == sizeof (prstatus32_t))
9616 /* 64-bit host, 32-bit corefile */
9617 prstatus32_t prstat;
9619 size = sizeof (prstat.pr_reg);
9620 offset = offsetof (prstatus32_t, pr_reg);
9621 memcpy (&prstat, note->descdata, sizeof (prstat));
9623 /* Do not overwrite the core signal if it
9624 has already been set by another thread. */
9625 if (elf_tdata (abfd)->core->signal == 0)
9626 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9627 if (elf_tdata (abfd)->core->pid == 0)
9628 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9630 /* pr_who exists on:
9633 pr_who doesn't exist on:
9636 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
9637 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9639 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9642 #endif /* HAVE_PRSTATUS32_T */
9645 /* Fail - we don't know how to handle any other
9646 note size (ie. data object type). */
9650 /* Make a ".reg/999" section and a ".reg" section. */
9651 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
9652 size, note->descpos + offset);
9654 #endif /* defined (HAVE_PRSTATUS_T) */
9656 /* Create a pseudosection containing the exact contents of NOTE. */
9658 elfcore_make_note_pseudosection (bfd *abfd,
9660 Elf_Internal_Note *note)
9662 return _bfd_elfcore_make_pseudosection (abfd, name,
9663 note->descsz, note->descpos);
9666 /* There isn't a consistent prfpregset_t across platforms,
9667 but it doesn't matter, because we don't have to pick this
9668 data structure apart. */
9671 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
9673 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9676 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
9677 type of NT_PRXFPREG. Just include the whole note's contents
9681 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
9683 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9686 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9687 with a note type of NT_X86_XSTATE. Just include the whole note's
9688 contents literally. */
9691 elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9693 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9697 elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9699 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9703 elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9705 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9709 elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9711 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9715 elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9717 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9721 elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9723 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9727 elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9729 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9733 elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9735 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9739 elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9741 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9745 elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9747 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9751 elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9753 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9757 elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9759 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9763 elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9765 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9769 elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9771 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9775 elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9777 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9781 elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9783 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9787 elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9789 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9793 elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9795 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9799 elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9801 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9805 elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9807 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9811 elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9813 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9817 elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9819 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9823 elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9825 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9829 elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9831 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9835 elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9837 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9841 elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9843 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9847 elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9849 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9853 elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9855 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9859 elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9861 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9865 elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9867 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9871 elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9873 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9877 elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9879 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9883 elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9885 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9889 elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9891 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9895 elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9897 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9901 elfcore_grok_arc_v2 (bfd *abfd, Elf_Internal_Note *note)
9903 return elfcore_make_note_pseudosection (abfd, ".reg-arc-v2", note);
9906 #if defined (HAVE_PRPSINFO_T)
9907 typedef prpsinfo_t elfcore_psinfo_t;
9908 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
9909 typedef prpsinfo32_t elfcore_psinfo32_t;
9913 #if defined (HAVE_PSINFO_T)
9914 typedef psinfo_t elfcore_psinfo_t;
9915 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
9916 typedef psinfo32_t elfcore_psinfo32_t;
9920 /* return a malloc'ed copy of a string at START which is at
9921 most MAX bytes long, possibly without a terminating '\0'.
9922 the copy will always have a terminating '\0'. */
9925 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
9928 char *end = (char *) memchr (start, '\0', max);
9936 dups = (char *) bfd_alloc (abfd, len + 1);
9940 memcpy (dups, start, len);
9946 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9948 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
9950 if (note->descsz == sizeof (elfcore_psinfo_t))
9952 elfcore_psinfo_t psinfo;
9954 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9956 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
9957 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9959 elf_tdata (abfd)->core->program
9960 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9961 sizeof (psinfo.pr_fname));
9963 elf_tdata (abfd)->core->command
9964 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9965 sizeof (psinfo.pr_psargs));
9967 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
9968 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9970 /* 64-bit host, 32-bit corefile */
9971 elfcore_psinfo32_t psinfo;
9973 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9975 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
9976 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9978 elf_tdata (abfd)->core->program
9979 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9980 sizeof (psinfo.pr_fname));
9982 elf_tdata (abfd)->core->command
9983 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9984 sizeof (psinfo.pr_psargs));
9990 /* Fail - we don't know how to handle any other
9991 note size (ie. data object type). */
9995 /* Note that for some reason, a spurious space is tacked
9996 onto the end of the args in some (at least one anyway)
9997 implementations, so strip it off if it exists. */
10000 char *command = elf_tdata (abfd)->core->command;
10001 int n = strlen (command);
10003 if (0 < n && command[n - 1] == ' ')
10004 command[n - 1] = '\0';
10009 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
10011 #if defined (HAVE_PSTATUS_T)
10013 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
10015 if (note->descsz == sizeof (pstatus_t)
10016 #if defined (HAVE_PXSTATUS_T)
10017 || note->descsz == sizeof (pxstatus_t)
10023 memcpy (&pstat, note->descdata, sizeof (pstat));
10025 elf_tdata (abfd)->core->pid = pstat.pr_pid;
10027 #if defined (HAVE_PSTATUS32_T)
10028 else if (note->descsz == sizeof (pstatus32_t))
10030 /* 64-bit host, 32-bit corefile */
10033 memcpy (&pstat, note->descdata, sizeof (pstat));
10035 elf_tdata (abfd)->core->pid = pstat.pr_pid;
10038 /* Could grab some more details from the "representative"
10039 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
10040 NT_LWPSTATUS note, presumably. */
10044 #endif /* defined (HAVE_PSTATUS_T) */
10046 #if defined (HAVE_LWPSTATUS_T)
10048 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
10050 lwpstatus_t lwpstat;
10056 if (note->descsz != sizeof (lwpstat)
10057 #if defined (HAVE_LWPXSTATUS_T)
10058 && note->descsz != sizeof (lwpxstatus_t)
10063 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
10065 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
10066 /* Do not overwrite the core signal if it has already been set by
10068 if (elf_tdata (abfd)->core->signal == 0)
10069 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
10071 /* Make a ".reg/999" section. */
10073 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
10074 len = strlen (buf) + 1;
10075 name = bfd_alloc (abfd, len);
10078 memcpy (name, buf, len);
10080 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10084 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10085 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
10086 sect->filepos = note->descpos
10087 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
10090 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10091 sect->size = sizeof (lwpstat.pr_reg);
10092 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
10095 sect->alignment_power = 2;
10097 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
10100 /* Make a ".reg2/999" section */
10102 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
10103 len = strlen (buf) + 1;
10104 name = bfd_alloc (abfd, len);
10107 memcpy (name, buf, len);
10109 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10113 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10114 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
10115 sect->filepos = note->descpos
10116 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
10119 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
10120 sect->size = sizeof (lwpstat.pr_fpreg);
10121 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
10124 sect->alignment_power = 2;
10126 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
10128 #endif /* defined (HAVE_LWPSTATUS_T) */
10130 /* These constants, and the structure offsets used below, are defined by
10131 Cygwin's core_dump.h */
10132 #define NOTE_INFO_PROCESS 1
10133 #define NOTE_INFO_THREAD 2
10134 #define NOTE_INFO_MODULE 3
10135 #define NOTE_INFO_MODULE64 4
10138 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
10143 unsigned int name_size;
10146 int is_active_thread;
10149 if (note->descsz < 4)
10152 if (! CONST_STRNEQ (note->namedata, "win32"))
10155 type = bfd_get_32 (abfd, note->descdata);
10158 const char *type_name;
10159 unsigned long min_size;
10162 { "NOTE_INFO_PROCESS", 12 },
10163 { "NOTE_INFO_THREAD", 12 },
10164 { "NOTE_INFO_MODULE", 12 },
10165 { "NOTE_INFO_MODULE64", 16 },
10168 if (type > (sizeof(size_check)/sizeof(size_check[0])))
10171 if (note->descsz < size_check[type - 1].min_size)
10173 _bfd_error_handler (_("%pB: warning: win32pstatus %s of size %lu bytes is too small"),
10174 abfd, size_check[type - 1].type_name, note->descsz);
10180 case NOTE_INFO_PROCESS:
10181 /* FIXME: need to add ->core->command. */
10182 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 4);
10183 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 8);
10186 case NOTE_INFO_THREAD:
10187 /* Make a ".reg/<tid>" section containing the Win32 API thread CONTEXT
10189 /* thread_info.tid */
10190 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 4));
10192 len = strlen (buf) + 1;
10193 name = (char *) bfd_alloc (abfd, len);
10197 memcpy (name, buf, len);
10199 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10203 /* sizeof (thread_info.thread_context) */
10204 sect->size = note->descsz - 12;
10205 /* offsetof (thread_info.thread_context) */
10206 sect->filepos = note->descpos + 12;
10207 sect->alignment_power = 2;
10209 /* thread_info.is_active_thread */
10210 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10212 if (is_active_thread)
10213 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
10217 case NOTE_INFO_MODULE:
10218 case NOTE_INFO_MODULE64:
10219 /* Make a ".module/xxxxxxxx" section. */
10220 if (type == NOTE_INFO_MODULE)
10222 /* module_info.base_address */
10223 base_addr = bfd_get_32 (abfd, note->descdata + 4);
10224 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
10225 /* module_info.module_name_size */
10226 name_size = bfd_get_32 (abfd, note->descdata + 8);
10228 else /* NOTE_INFO_MODULE64 */
10230 /* module_info.base_address */
10231 base_addr = bfd_get_64 (abfd, note->descdata + 4);
10232 sprintf (buf, ".module/%016lx", (unsigned long) base_addr);
10233 /* module_info.module_name_size */
10234 name_size = bfd_get_32 (abfd, note->descdata + 12);
10237 len = strlen (buf) + 1;
10238 name = (char *) bfd_alloc (abfd, len);
10242 memcpy (name, buf, len);
10244 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10249 if (note->descsz < 12 + name_size)
10251 _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"),
10252 abfd, note->descsz, name_size);
10256 sect->size = note->descsz;
10257 sect->filepos = note->descpos;
10258 sect->alignment_power = 2;
10269 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
10271 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10273 switch (note->type)
10279 if (bed->elf_backend_grok_prstatus)
10280 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
10282 #if defined (HAVE_PRSTATUS_T)
10283 return elfcore_grok_prstatus (abfd, note);
10288 #if defined (HAVE_PSTATUS_T)
10290 return elfcore_grok_pstatus (abfd, note);
10293 #if defined (HAVE_LWPSTATUS_T)
10295 return elfcore_grok_lwpstatus (abfd, note);
10298 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10299 return elfcore_grok_prfpreg (abfd, note);
10301 case NT_WIN32PSTATUS:
10302 return elfcore_grok_win32pstatus (abfd, note);
10304 case NT_PRXFPREG: /* Linux SSE extension */
10305 if (note->namesz == 6
10306 && strcmp (note->namedata, "LINUX") == 0)
10307 return elfcore_grok_prxfpreg (abfd, note);
10311 case NT_X86_XSTATE: /* Linux XSAVE extension */
10312 if (note->namesz == 6
10313 && strcmp (note->namedata, "LINUX") == 0)
10314 return elfcore_grok_xstatereg (abfd, note);
10319 if (note->namesz == 6
10320 && strcmp (note->namedata, "LINUX") == 0)
10321 return elfcore_grok_ppc_vmx (abfd, note);
10326 if (note->namesz == 6
10327 && strcmp (note->namedata, "LINUX") == 0)
10328 return elfcore_grok_ppc_vsx (abfd, note);
10333 if (note->namesz == 6
10334 && strcmp (note->namedata, "LINUX") == 0)
10335 return elfcore_grok_ppc_tar (abfd, note);
10340 if (note->namesz == 6
10341 && strcmp (note->namedata, "LINUX") == 0)
10342 return elfcore_grok_ppc_ppr (abfd, note);
10347 if (note->namesz == 6
10348 && strcmp (note->namedata, "LINUX") == 0)
10349 return elfcore_grok_ppc_dscr (abfd, note);
10354 if (note->namesz == 6
10355 && strcmp (note->namedata, "LINUX") == 0)
10356 return elfcore_grok_ppc_ebb (abfd, note);
10361 if (note->namesz == 6
10362 && strcmp (note->namedata, "LINUX") == 0)
10363 return elfcore_grok_ppc_pmu (abfd, note);
10367 case NT_PPC_TM_CGPR:
10368 if (note->namesz == 6
10369 && strcmp (note->namedata, "LINUX") == 0)
10370 return elfcore_grok_ppc_tm_cgpr (abfd, note);
10374 case NT_PPC_TM_CFPR:
10375 if (note->namesz == 6
10376 && strcmp (note->namedata, "LINUX") == 0)
10377 return elfcore_grok_ppc_tm_cfpr (abfd, note);
10381 case NT_PPC_TM_CVMX:
10382 if (note->namesz == 6
10383 && strcmp (note->namedata, "LINUX") == 0)
10384 return elfcore_grok_ppc_tm_cvmx (abfd, note);
10388 case NT_PPC_TM_CVSX:
10389 if (note->namesz == 6
10390 && strcmp (note->namedata, "LINUX") == 0)
10391 return elfcore_grok_ppc_tm_cvsx (abfd, note);
10395 case NT_PPC_TM_SPR:
10396 if (note->namesz == 6
10397 && strcmp (note->namedata, "LINUX") == 0)
10398 return elfcore_grok_ppc_tm_spr (abfd, note);
10402 case NT_PPC_TM_CTAR:
10403 if (note->namesz == 6
10404 && strcmp (note->namedata, "LINUX") == 0)
10405 return elfcore_grok_ppc_tm_ctar (abfd, note);
10409 case NT_PPC_TM_CPPR:
10410 if (note->namesz == 6
10411 && strcmp (note->namedata, "LINUX") == 0)
10412 return elfcore_grok_ppc_tm_cppr (abfd, note);
10416 case NT_PPC_TM_CDSCR:
10417 if (note->namesz == 6
10418 && strcmp (note->namedata, "LINUX") == 0)
10419 return elfcore_grok_ppc_tm_cdscr (abfd, note);
10423 case NT_S390_HIGH_GPRS:
10424 if (note->namesz == 6
10425 && strcmp (note->namedata, "LINUX") == 0)
10426 return elfcore_grok_s390_high_gprs (abfd, note);
10430 case NT_S390_TIMER:
10431 if (note->namesz == 6
10432 && strcmp (note->namedata, "LINUX") == 0)
10433 return elfcore_grok_s390_timer (abfd, note);
10437 case NT_S390_TODCMP:
10438 if (note->namesz == 6
10439 && strcmp (note->namedata, "LINUX") == 0)
10440 return elfcore_grok_s390_todcmp (abfd, note);
10444 case NT_S390_TODPREG:
10445 if (note->namesz == 6
10446 && strcmp (note->namedata, "LINUX") == 0)
10447 return elfcore_grok_s390_todpreg (abfd, note);
10452 if (note->namesz == 6
10453 && strcmp (note->namedata, "LINUX") == 0)
10454 return elfcore_grok_s390_ctrs (abfd, note);
10458 case NT_S390_PREFIX:
10459 if (note->namesz == 6
10460 && strcmp (note->namedata, "LINUX") == 0)
10461 return elfcore_grok_s390_prefix (abfd, note);
10465 case NT_S390_LAST_BREAK:
10466 if (note->namesz == 6
10467 && strcmp (note->namedata, "LINUX") == 0)
10468 return elfcore_grok_s390_last_break (abfd, note);
10472 case NT_S390_SYSTEM_CALL:
10473 if (note->namesz == 6
10474 && strcmp (note->namedata, "LINUX") == 0)
10475 return elfcore_grok_s390_system_call (abfd, note);
10480 if (note->namesz == 6
10481 && strcmp (note->namedata, "LINUX") == 0)
10482 return elfcore_grok_s390_tdb (abfd, note);
10486 case NT_S390_VXRS_LOW:
10487 if (note->namesz == 6
10488 && strcmp (note->namedata, "LINUX") == 0)
10489 return elfcore_grok_s390_vxrs_low (abfd, note);
10493 case NT_S390_VXRS_HIGH:
10494 if (note->namesz == 6
10495 && strcmp (note->namedata, "LINUX") == 0)
10496 return elfcore_grok_s390_vxrs_high (abfd, note);
10500 case NT_S390_GS_CB:
10501 if (note->namesz == 6
10502 && strcmp (note->namedata, "LINUX") == 0)
10503 return elfcore_grok_s390_gs_cb (abfd, note);
10507 case NT_S390_GS_BC:
10508 if (note->namesz == 6
10509 && strcmp (note->namedata, "LINUX") == 0)
10510 return elfcore_grok_s390_gs_bc (abfd, note);
10515 if (note->namesz == 6
10516 && strcmp (note->namedata, "LINUX") == 0)
10517 return elfcore_grok_arc_v2 (abfd, note);
10522 if (note->namesz == 6
10523 && strcmp (note->namedata, "LINUX") == 0)
10524 return elfcore_grok_arm_vfp (abfd, note);
10529 if (note->namesz == 6
10530 && strcmp (note->namedata, "LINUX") == 0)
10531 return elfcore_grok_aarch_tls (abfd, note);
10535 case NT_ARM_HW_BREAK:
10536 if (note->namesz == 6
10537 && strcmp (note->namedata, "LINUX") == 0)
10538 return elfcore_grok_aarch_hw_break (abfd, note);
10542 case NT_ARM_HW_WATCH:
10543 if (note->namesz == 6
10544 && strcmp (note->namedata, "LINUX") == 0)
10545 return elfcore_grok_aarch_hw_watch (abfd, note);
10550 if (note->namesz == 6
10551 && strcmp (note->namedata, "LINUX") == 0)
10552 return elfcore_grok_aarch_sve (abfd, note);
10556 case NT_ARM_PAC_MASK:
10557 if (note->namesz == 6
10558 && strcmp (note->namedata, "LINUX") == 0)
10559 return elfcore_grok_aarch_pauth (abfd, note);
10565 if (bed->elf_backend_grok_psinfo)
10566 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
10568 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10569 return elfcore_grok_psinfo (abfd, note);
10575 return elfcore_make_auxv_note_section (abfd, note, 0);
10578 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10582 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10589 elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10591 struct bfd_build_id* build_id;
10593 if (note->descsz == 0)
10596 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10597 if (build_id == NULL)
10600 build_id->size = note->descsz;
10601 memcpy (build_id->data, note->descdata, note->descsz);
10602 abfd->build_id = build_id;
10608 elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10610 switch (note->type)
10615 case NT_GNU_PROPERTY_TYPE_0:
10616 return _bfd_elf_parse_gnu_properties (abfd, note);
10618 case NT_GNU_BUILD_ID:
10619 return elfobj_grok_gnu_build_id (abfd, note);
10624 elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10626 struct sdt_note *cur =
10627 (struct sdt_note *) bfd_alloc (abfd,
10628 sizeof (struct sdt_note) + note->descsz);
10630 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10631 cur->size = (bfd_size_type) note->descsz;
10632 memcpy (cur->data, note->descdata, note->descsz);
10634 elf_tdata (abfd)->sdt_note_head = cur;
10640 elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10642 switch (note->type)
10645 return elfobj_grok_stapsdt_note_1 (abfd, note);
10653 elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10657 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
10660 if (note->descsz < 108)
10665 if (note->descsz < 120)
10673 /* Check for version 1 in pr_version. */
10674 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10679 /* Skip over pr_psinfosz. */
10680 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10684 offset += 4; /* Padding before pr_psinfosz. */
10688 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10689 elf_tdata (abfd)->core->program
10690 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10693 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10694 elf_tdata (abfd)->core->command
10695 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
10698 /* Padding before pr_pid. */
10701 /* The pr_pid field was added in version "1a". */
10702 if (note->descsz < offset + 4)
10705 elf_tdata (abfd)->core->pid
10706 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10712 elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10718 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10719 Also compute minimum size of this note. */
10720 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
10724 min_size = offset + (4 * 2) + 4 + 4 + 4;
10728 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10729 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
10736 if (note->descsz < min_size)
10739 /* Check for version 1 in pr_version. */
10740 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10743 /* Extract size of pr_reg from pr_gregsetsz. */
10744 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
10745 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10747 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10752 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10756 /* Skip over pr_osreldate. */
10759 /* Read signal from pr_cursig. */
10760 if (elf_tdata (abfd)->core->signal == 0)
10761 elf_tdata (abfd)->core->signal
10762 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10765 /* Read TID from pr_pid. */
10766 elf_tdata (abfd)->core->lwpid
10767 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10770 /* Padding before pr_reg. */
10771 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
10774 /* Make sure that there is enough data remaining in the note. */
10775 if ((note->descsz - offset) < size)
10778 /* Make a ".reg/999" section and a ".reg" section. */
10779 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10780 size, note->descpos + offset);
10784 elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10786 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10788 switch (note->type)
10791 if (bed->elf_backend_grok_freebsd_prstatus)
10792 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10794 return elfcore_grok_freebsd_prstatus (abfd, note);
10797 return elfcore_grok_prfpreg (abfd, note);
10800 return elfcore_grok_freebsd_psinfo (abfd, note);
10802 case NT_FREEBSD_THRMISC:
10803 if (note->namesz == 8)
10804 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10808 case NT_FREEBSD_PROCSTAT_PROC:
10809 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10812 case NT_FREEBSD_PROCSTAT_FILES:
10813 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10816 case NT_FREEBSD_PROCSTAT_VMMAP:
10817 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10820 case NT_FREEBSD_PROCSTAT_AUXV:
10821 return elfcore_make_auxv_note_section (abfd, note, 4);
10823 case NT_X86_XSTATE:
10824 if (note->namesz == 8)
10825 return elfcore_grok_xstatereg (abfd, note);
10829 case NT_FREEBSD_PTLWPINFO:
10830 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10834 return elfcore_grok_arm_vfp (abfd, note);
10842 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
10846 cp = strchr (note->namedata, '@');
10849 *lwpidp = atoi(cp + 1);
10856 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10858 if (note->descsz <= 0x7c + 31)
10861 /* Signal number at offset 0x08. */
10862 elf_tdata (abfd)->core->signal
10863 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10865 /* Process ID at offset 0x50. */
10866 elf_tdata (abfd)->core->pid
10867 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10869 /* Command name at 0x7c (max 32 bytes, including nul). */
10870 elf_tdata (abfd)->core->command
10871 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10873 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10878 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
10882 if (elfcore_netbsd_get_lwpid (note, &lwp))
10883 elf_tdata (abfd)->core->lwpid = lwp;
10885 switch (note->type)
10887 case NT_NETBSDCORE_PROCINFO:
10888 /* NetBSD-specific core "procinfo". Note that we expect to
10889 find this note before any of the others, which is fine,
10890 since the kernel writes this note out first when it
10891 creates a core file. */
10892 return elfcore_grok_netbsd_procinfo (abfd, note);
10893 #ifdef NT_NETBSDCORE_AUXV
10894 case NT_NETBSDCORE_AUXV:
10895 /* NetBSD-specific Elf Auxiliary Vector data. */
10896 return elfcore_make_auxv_note_section (abfd, note, 4);
10898 #ifdef NT_NETBSDCORE_LWPSTATUS
10899 case NT_NETBSDCORE_LWPSTATUS:
10900 return elfcore_make_note_pseudosection (abfd,
10901 ".note.netbsdcore.lwpstatus",
10908 /* As of March 2020 there are no other machine-independent notes
10909 defined for NetBSD core files. If the note type is less
10910 than the start of the machine-dependent note types, we don't
10913 if (note->type < NT_NETBSDCORE_FIRSTMACH)
10917 switch (bfd_get_arch (abfd))
10919 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10920 PT_GETFPREGS == mach+2. */
10922 case bfd_arch_aarch64:
10923 case bfd_arch_alpha:
10924 case bfd_arch_sparc:
10925 switch (note->type)
10927 case NT_NETBSDCORE_FIRSTMACH+0:
10928 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10930 case NT_NETBSDCORE_FIRSTMACH+2:
10931 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10937 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
10938 There's also old PT___GETREGS40 == mach + 1 for old reg
10939 structure which lacks GBR. */
10942 switch (note->type)
10944 case NT_NETBSDCORE_FIRSTMACH+3:
10945 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10947 case NT_NETBSDCORE_FIRSTMACH+5:
10948 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10954 /* On all other arch's, PT_GETREGS == mach+1 and
10955 PT_GETFPREGS == mach+3. */
10958 switch (note->type)
10960 case NT_NETBSDCORE_FIRSTMACH+1:
10961 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10963 case NT_NETBSDCORE_FIRSTMACH+3:
10964 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10974 elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10976 if (note->descsz <= 0x48 + 31)
10979 /* Signal number at offset 0x08. */
10980 elf_tdata (abfd)->core->signal
10981 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10983 /* Process ID at offset 0x20. */
10984 elf_tdata (abfd)->core->pid
10985 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10987 /* Command name at 0x48 (max 32 bytes, including nul). */
10988 elf_tdata (abfd)->core->command
10989 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10995 elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10997 if (note->type == NT_OPENBSD_PROCINFO)
10998 return elfcore_grok_openbsd_procinfo (abfd, note);
11000 if (note->type == NT_OPENBSD_REGS)
11001 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11003 if (note->type == NT_OPENBSD_FPREGS)
11004 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11006 if (note->type == NT_OPENBSD_XFPREGS)
11007 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
11009 if (note->type == NT_OPENBSD_AUXV)
11010 return elfcore_make_auxv_note_section (abfd, note, 0);
11012 if (note->type == NT_OPENBSD_WCOOKIE)
11014 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
11019 sect->size = note->descsz;
11020 sect->filepos = note->descpos;
11021 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
11030 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
11032 void *ddata = note->descdata;
11039 if (note->descsz < 16)
11042 /* nto_procfs_status 'pid' field is at offset 0. */
11043 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
11045 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
11046 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
11048 /* nto_procfs_status 'flags' field is at offset 8. */
11049 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
11051 /* nto_procfs_status 'what' field is at offset 14. */
11052 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
11054 elf_tdata (abfd)->core->signal = sig;
11055 elf_tdata (abfd)->core->lwpid = *tid;
11058 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
11059 do not come from signals so we make sure we set the current
11060 thread just in case. */
11061 if (flags & 0x00000080)
11062 elf_tdata (abfd)->core->lwpid = *tid;
11064 /* Make a ".qnx_core_status/%d" section. */
11065 sprintf (buf, ".qnx_core_status/%ld", *tid);
11067 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
11070 strcpy (name, buf);
11072 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11076 sect->size = note->descsz;
11077 sect->filepos = note->descpos;
11078 sect->alignment_power = 2;
11080 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
11084 elfcore_grok_nto_regs (bfd *abfd,
11085 Elf_Internal_Note *note,
11093 /* Make a "(base)/%d" section. */
11094 sprintf (buf, "%s/%ld", base, tid);
11096 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
11099 strcpy (name, buf);
11101 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11105 sect->size = note->descsz;
11106 sect->filepos = note->descpos;
11107 sect->alignment_power = 2;
11109 /* This is the current thread. */
11110 if (elf_tdata (abfd)->core->lwpid == tid)
11111 return elfcore_maybe_make_sect (abfd, base, sect);
11116 #define BFD_QNT_CORE_INFO 7
11117 #define BFD_QNT_CORE_STATUS 8
11118 #define BFD_QNT_CORE_GREG 9
11119 #define BFD_QNT_CORE_FPREG 10
11122 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
11124 /* Every GREG section has a STATUS section before it. Store the
11125 tid from the previous call to pass down to the next gregs
11127 static long tid = 1;
11129 switch (note->type)
11131 case BFD_QNT_CORE_INFO:
11132 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
11133 case BFD_QNT_CORE_STATUS:
11134 return elfcore_grok_nto_status (abfd, note, &tid);
11135 case BFD_QNT_CORE_GREG:
11136 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
11137 case BFD_QNT_CORE_FPREG:
11138 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
11145 elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
11151 /* Use note name as section name. */
11152 len = note->namesz;
11153 name = (char *) bfd_alloc (abfd, len);
11156 memcpy (name, note->namedata, len);
11157 name[len - 1] = '\0';
11159 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11163 sect->size = note->descsz;
11164 sect->filepos = note->descpos;
11165 sect->alignment_power = 1;
11170 /* Function: elfcore_write_note
11173 buffer to hold note, and current size of buffer
11177 size of data for note
11179 Writes note to end of buffer. ELF64 notes are written exactly as
11180 for ELF32, despite the current (as of 2006) ELF gabi specifying
11181 that they ought to have 8-byte namesz and descsz field, and have
11182 8-byte alignment. Other writers, eg. Linux kernel, do the same.
11185 Pointer to realloc'd buffer, *BUFSIZ updated. */
11188 elfcore_write_note (bfd *abfd,
11196 Elf_External_Note *xnp;
11203 namesz = strlen (name) + 1;
11205 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
11207 buf = (char *) realloc (buf, *bufsiz + newspace);
11210 dest = buf + *bufsiz;
11211 *bufsiz += newspace;
11212 xnp = (Elf_External_Note *) dest;
11213 H_PUT_32 (abfd, namesz, xnp->namesz);
11214 H_PUT_32 (abfd, size, xnp->descsz);
11215 H_PUT_32 (abfd, type, xnp->type);
11219 memcpy (dest, name, namesz);
11227 memcpy (dest, input, size);
11237 /* gcc-8 warns (*) on all the strncpy calls in this function about
11238 possible string truncation. The "truncation" is not a bug. We
11239 have an external representation of structs with fields that are not
11240 necessarily NULL terminated and corresponding internal
11241 representation fields that are one larger so that they can always
11242 be NULL terminated.
11243 gcc versions between 4.2 and 4.6 do not allow pragma control of
11244 diagnostics inside functions, giving a hard error if you try to use
11245 the finer control available with later versions.
11246 gcc prior to 4.2 warns about diagnostic push and pop.
11247 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11248 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11249 (*) Depending on your system header files! */
11250 #if GCC_VERSION >= 8000
11251 # pragma GCC diagnostic push
11252 # pragma GCC diagnostic ignored "-Wstringop-truncation"
11255 elfcore_write_prpsinfo (bfd *abfd,
11259 const char *psargs)
11261 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11263 if (bed->elf_backend_write_core_note != NULL)
11266 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11267 NT_PRPSINFO, fname, psargs);
11272 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
11273 # if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
11274 if (bed->s->elfclass == ELFCLASS32)
11276 # if defined (HAVE_PSINFO32_T)
11278 int note_type = NT_PSINFO;
11281 int note_type = NT_PRPSINFO;
11284 memset (&data, 0, sizeof (data));
11285 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11286 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11287 return elfcore_write_note (abfd, buf, bufsiz,
11288 "CORE", note_type, &data, sizeof (data));
11293 # if defined (HAVE_PSINFO_T)
11295 int note_type = NT_PSINFO;
11298 int note_type = NT_PRPSINFO;
11301 memset (&data, 0, sizeof (data));
11302 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11303 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11304 return elfcore_write_note (abfd, buf, bufsiz,
11305 "CORE", note_type, &data, sizeof (data));
11307 #endif /* PSINFO_T or PRPSINFO_T */
11312 #if GCC_VERSION >= 8000
11313 # pragma GCC diagnostic pop
11317 elfcore_write_linux_prpsinfo32
11318 (bfd *abfd, char *buf, int *bufsiz,
11319 const struct elf_internal_linux_prpsinfo *prpsinfo)
11321 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11323 struct elf_external_linux_prpsinfo32_ugid16 data;
11325 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11326 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11327 &data, sizeof (data));
11331 struct elf_external_linux_prpsinfo32_ugid32 data;
11333 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11334 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11335 &data, sizeof (data));
11340 elfcore_write_linux_prpsinfo64
11341 (bfd *abfd, char *buf, int *bufsiz,
11342 const struct elf_internal_linux_prpsinfo *prpsinfo)
11344 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11346 struct elf_external_linux_prpsinfo64_ugid16 data;
11348 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11349 return elfcore_write_note (abfd, buf, bufsiz,
11350 "CORE", NT_PRPSINFO, &data, sizeof (data));
11354 struct elf_external_linux_prpsinfo64_ugid32 data;
11356 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11357 return elfcore_write_note (abfd, buf, bufsiz,
11358 "CORE", NT_PRPSINFO, &data, sizeof (data));
11363 elfcore_write_prstatus (bfd *abfd,
11370 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11372 if (bed->elf_backend_write_core_note != NULL)
11375 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11377 pid, cursig, gregs);
11382 #if defined (HAVE_PRSTATUS_T)
11383 #if defined (HAVE_PRSTATUS32_T)
11384 if (bed->s->elfclass == ELFCLASS32)
11386 prstatus32_t prstat;
11388 memset (&prstat, 0, sizeof (prstat));
11389 prstat.pr_pid = pid;
11390 prstat.pr_cursig = cursig;
11391 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
11392 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
11393 NT_PRSTATUS, &prstat, sizeof (prstat));
11400 memset (&prstat, 0, sizeof (prstat));
11401 prstat.pr_pid = pid;
11402 prstat.pr_cursig = cursig;
11403 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
11404 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
11405 NT_PRSTATUS, &prstat, sizeof (prstat));
11407 #endif /* HAVE_PRSTATUS_T */
11413 #if defined (HAVE_LWPSTATUS_T)
11415 elfcore_write_lwpstatus (bfd *abfd,
11422 lwpstatus_t lwpstat;
11423 const char *note_name = "CORE";
11425 memset (&lwpstat, 0, sizeof (lwpstat));
11426 lwpstat.pr_lwpid = pid >> 16;
11427 lwpstat.pr_cursig = cursig;
11428 #if defined (HAVE_LWPSTATUS_T_PR_REG)
11429 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
11430 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11431 #if !defined(gregs)
11432 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11433 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11435 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11436 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11439 return elfcore_write_note (abfd, buf, bufsiz, note_name,
11440 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11442 #endif /* HAVE_LWPSTATUS_T */
11444 #if defined (HAVE_PSTATUS_T)
11446 elfcore_write_pstatus (bfd *abfd,
11450 int cursig ATTRIBUTE_UNUSED,
11451 const void *gregs ATTRIBUTE_UNUSED)
11453 const char *note_name = "CORE";
11454 #if defined (HAVE_PSTATUS32_T)
11455 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11457 if (bed->s->elfclass == ELFCLASS32)
11461 memset (&pstat, 0, sizeof (pstat));
11462 pstat.pr_pid = pid & 0xffff;
11463 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11464 NT_PSTATUS, &pstat, sizeof (pstat));
11472 memset (&pstat, 0, sizeof (pstat));
11473 pstat.pr_pid = pid & 0xffff;
11474 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11475 NT_PSTATUS, &pstat, sizeof (pstat));
11479 #endif /* HAVE_PSTATUS_T */
11482 elfcore_write_prfpreg (bfd *abfd,
11485 const void *fpregs,
11488 const char *note_name = "CORE";
11489 return elfcore_write_note (abfd, buf, bufsiz,
11490 note_name, NT_FPREGSET, fpregs, size);
11494 elfcore_write_prxfpreg (bfd *abfd,
11497 const void *xfpregs,
11500 char *note_name = "LINUX";
11501 return elfcore_write_note (abfd, buf, bufsiz,
11502 note_name, NT_PRXFPREG, xfpregs, size);
11506 elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11507 const void *xfpregs, int size)
11510 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11511 note_name = "FreeBSD";
11513 note_name = "LINUX";
11514 return elfcore_write_note (abfd, buf, bufsiz,
11515 note_name, NT_X86_XSTATE, xfpregs, size);
11519 elfcore_write_ppc_vmx (bfd *abfd,
11522 const void *ppc_vmx,
11525 char *note_name = "LINUX";
11526 return elfcore_write_note (abfd, buf, bufsiz,
11527 note_name, NT_PPC_VMX, ppc_vmx, size);
11531 elfcore_write_ppc_vsx (bfd *abfd,
11534 const void *ppc_vsx,
11537 char *note_name = "LINUX";
11538 return elfcore_write_note (abfd, buf, bufsiz,
11539 note_name, NT_PPC_VSX, ppc_vsx, size);
11543 elfcore_write_ppc_tar (bfd *abfd,
11546 const void *ppc_tar,
11549 char *note_name = "LINUX";
11550 return elfcore_write_note (abfd, buf, bufsiz,
11551 note_name, NT_PPC_TAR, ppc_tar, size);
11555 elfcore_write_ppc_ppr (bfd *abfd,
11558 const void *ppc_ppr,
11561 char *note_name = "LINUX";
11562 return elfcore_write_note (abfd, buf, bufsiz,
11563 note_name, NT_PPC_PPR, ppc_ppr, size);
11567 elfcore_write_ppc_dscr (bfd *abfd,
11570 const void *ppc_dscr,
11573 char *note_name = "LINUX";
11574 return elfcore_write_note (abfd, buf, bufsiz,
11575 note_name, NT_PPC_DSCR, ppc_dscr, size);
11579 elfcore_write_ppc_ebb (bfd *abfd,
11582 const void *ppc_ebb,
11585 char *note_name = "LINUX";
11586 return elfcore_write_note (abfd, buf, bufsiz,
11587 note_name, NT_PPC_EBB, ppc_ebb, size);
11591 elfcore_write_ppc_pmu (bfd *abfd,
11594 const void *ppc_pmu,
11597 char *note_name = "LINUX";
11598 return elfcore_write_note (abfd, buf, bufsiz,
11599 note_name, NT_PPC_PMU, ppc_pmu, size);
11603 elfcore_write_ppc_tm_cgpr (bfd *abfd,
11606 const void *ppc_tm_cgpr,
11609 char *note_name = "LINUX";
11610 return elfcore_write_note (abfd, buf, bufsiz,
11611 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
11615 elfcore_write_ppc_tm_cfpr (bfd *abfd,
11618 const void *ppc_tm_cfpr,
11621 char *note_name = "LINUX";
11622 return elfcore_write_note (abfd, buf, bufsiz,
11623 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
11627 elfcore_write_ppc_tm_cvmx (bfd *abfd,
11630 const void *ppc_tm_cvmx,
11633 char *note_name = "LINUX";
11634 return elfcore_write_note (abfd, buf, bufsiz,
11635 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
11639 elfcore_write_ppc_tm_cvsx (bfd *abfd,
11642 const void *ppc_tm_cvsx,
11645 char *note_name = "LINUX";
11646 return elfcore_write_note (abfd, buf, bufsiz,
11647 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
11651 elfcore_write_ppc_tm_spr (bfd *abfd,
11654 const void *ppc_tm_spr,
11657 char *note_name = "LINUX";
11658 return elfcore_write_note (abfd, buf, bufsiz,
11659 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
11663 elfcore_write_ppc_tm_ctar (bfd *abfd,
11666 const void *ppc_tm_ctar,
11669 char *note_name = "LINUX";
11670 return elfcore_write_note (abfd, buf, bufsiz,
11671 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
11675 elfcore_write_ppc_tm_cppr (bfd *abfd,
11678 const void *ppc_tm_cppr,
11681 char *note_name = "LINUX";
11682 return elfcore_write_note (abfd, buf, bufsiz,
11683 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
11687 elfcore_write_ppc_tm_cdscr (bfd *abfd,
11690 const void *ppc_tm_cdscr,
11693 char *note_name = "LINUX";
11694 return elfcore_write_note (abfd, buf, bufsiz,
11695 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
11699 elfcore_write_s390_high_gprs (bfd *abfd,
11702 const void *s390_high_gprs,
11705 char *note_name = "LINUX";
11706 return elfcore_write_note (abfd, buf, bufsiz,
11707 note_name, NT_S390_HIGH_GPRS,
11708 s390_high_gprs, size);
11712 elfcore_write_s390_timer (bfd *abfd,
11715 const void *s390_timer,
11718 char *note_name = "LINUX";
11719 return elfcore_write_note (abfd, buf, bufsiz,
11720 note_name, NT_S390_TIMER, s390_timer, size);
11724 elfcore_write_s390_todcmp (bfd *abfd,
11727 const void *s390_todcmp,
11730 char *note_name = "LINUX";
11731 return elfcore_write_note (abfd, buf, bufsiz,
11732 note_name, NT_S390_TODCMP, s390_todcmp, size);
11736 elfcore_write_s390_todpreg (bfd *abfd,
11739 const void *s390_todpreg,
11742 char *note_name = "LINUX";
11743 return elfcore_write_note (abfd, buf, bufsiz,
11744 note_name, NT_S390_TODPREG, s390_todpreg, size);
11748 elfcore_write_s390_ctrs (bfd *abfd,
11751 const void *s390_ctrs,
11754 char *note_name = "LINUX";
11755 return elfcore_write_note (abfd, buf, bufsiz,
11756 note_name, NT_S390_CTRS, s390_ctrs, size);
11760 elfcore_write_s390_prefix (bfd *abfd,
11763 const void *s390_prefix,
11766 char *note_name = "LINUX";
11767 return elfcore_write_note (abfd, buf, bufsiz,
11768 note_name, NT_S390_PREFIX, s390_prefix, size);
11772 elfcore_write_s390_last_break (bfd *abfd,
11775 const void *s390_last_break,
11778 char *note_name = "LINUX";
11779 return elfcore_write_note (abfd, buf, bufsiz,
11780 note_name, NT_S390_LAST_BREAK,
11781 s390_last_break, size);
11785 elfcore_write_s390_system_call (bfd *abfd,
11788 const void *s390_system_call,
11791 char *note_name = "LINUX";
11792 return elfcore_write_note (abfd, buf, bufsiz,
11793 note_name, NT_S390_SYSTEM_CALL,
11794 s390_system_call, size);
11798 elfcore_write_s390_tdb (bfd *abfd,
11801 const void *s390_tdb,
11804 char *note_name = "LINUX";
11805 return elfcore_write_note (abfd, buf, bufsiz,
11806 note_name, NT_S390_TDB, s390_tdb, size);
11810 elfcore_write_s390_vxrs_low (bfd *abfd,
11813 const void *s390_vxrs_low,
11816 char *note_name = "LINUX";
11817 return elfcore_write_note (abfd, buf, bufsiz,
11818 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11822 elfcore_write_s390_vxrs_high (bfd *abfd,
11825 const void *s390_vxrs_high,
11828 char *note_name = "LINUX";
11829 return elfcore_write_note (abfd, buf, bufsiz,
11830 note_name, NT_S390_VXRS_HIGH,
11831 s390_vxrs_high, size);
11835 elfcore_write_s390_gs_cb (bfd *abfd,
11838 const void *s390_gs_cb,
11841 char *note_name = "LINUX";
11842 return elfcore_write_note (abfd, buf, bufsiz,
11843 note_name, NT_S390_GS_CB,
11848 elfcore_write_s390_gs_bc (bfd *abfd,
11851 const void *s390_gs_bc,
11854 char *note_name = "LINUX";
11855 return elfcore_write_note (abfd, buf, bufsiz,
11856 note_name, NT_S390_GS_BC,
11861 elfcore_write_arm_vfp (bfd *abfd,
11864 const void *arm_vfp,
11867 char *note_name = "LINUX";
11868 return elfcore_write_note (abfd, buf, bufsiz,
11869 note_name, NT_ARM_VFP, arm_vfp, size);
11873 elfcore_write_aarch_tls (bfd *abfd,
11876 const void *aarch_tls,
11879 char *note_name = "LINUX";
11880 return elfcore_write_note (abfd, buf, bufsiz,
11881 note_name, NT_ARM_TLS, aarch_tls, size);
11885 elfcore_write_aarch_hw_break (bfd *abfd,
11888 const void *aarch_hw_break,
11891 char *note_name = "LINUX";
11892 return elfcore_write_note (abfd, buf, bufsiz,
11893 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11897 elfcore_write_aarch_hw_watch (bfd *abfd,
11900 const void *aarch_hw_watch,
11903 char *note_name = "LINUX";
11904 return elfcore_write_note (abfd, buf, bufsiz,
11905 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11909 elfcore_write_aarch_sve (bfd *abfd,
11912 const void *aarch_sve,
11915 char *note_name = "LINUX";
11916 return elfcore_write_note (abfd, buf, bufsiz,
11917 note_name, NT_ARM_SVE, aarch_sve, size);
11921 elfcore_write_aarch_pauth (bfd *abfd,
11924 const void *aarch_pauth,
11927 char *note_name = "LINUX";
11928 return elfcore_write_note (abfd, buf, bufsiz,
11929 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
11933 elfcore_write_arc_v2 (bfd *abfd,
11936 const void *arc_v2,
11939 char *note_name = "LINUX";
11940 return elfcore_write_note (abfd, buf, bufsiz,
11941 note_name, NT_ARC_V2, arc_v2, size);
11945 elfcore_write_register_note (bfd *abfd,
11948 const char *section,
11952 if (strcmp (section, ".reg2") == 0)
11953 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11954 if (strcmp (section, ".reg-xfp") == 0)
11955 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
11956 if (strcmp (section, ".reg-xstate") == 0)
11957 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
11958 if (strcmp (section, ".reg-ppc-vmx") == 0)
11959 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
11960 if (strcmp (section, ".reg-ppc-vsx") == 0)
11961 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
11962 if (strcmp (section, ".reg-ppc-tar") == 0)
11963 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
11964 if (strcmp (section, ".reg-ppc-ppr") == 0)
11965 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
11966 if (strcmp (section, ".reg-ppc-dscr") == 0)
11967 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
11968 if (strcmp (section, ".reg-ppc-ebb") == 0)
11969 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
11970 if (strcmp (section, ".reg-ppc-pmu") == 0)
11971 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
11972 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
11973 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
11974 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
11975 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
11976 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
11977 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
11978 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
11979 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
11980 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
11981 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
11982 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
11983 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
11984 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
11985 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
11986 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
11987 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
11988 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11989 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
11990 if (strcmp (section, ".reg-s390-timer") == 0)
11991 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11992 if (strcmp (section, ".reg-s390-todcmp") == 0)
11993 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11994 if (strcmp (section, ".reg-s390-todpreg") == 0)
11995 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11996 if (strcmp (section, ".reg-s390-ctrs") == 0)
11997 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11998 if (strcmp (section, ".reg-s390-prefix") == 0)
11999 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
12000 if (strcmp (section, ".reg-s390-last-break") == 0)
12001 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
12002 if (strcmp (section, ".reg-s390-system-call") == 0)
12003 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
12004 if (strcmp (section, ".reg-s390-tdb") == 0)
12005 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
12006 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
12007 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
12008 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
12009 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
12010 if (strcmp (section, ".reg-s390-gs-cb") == 0)
12011 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
12012 if (strcmp (section, ".reg-s390-gs-bc") == 0)
12013 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
12014 if (strcmp (section, ".reg-arm-vfp") == 0)
12015 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
12016 if (strcmp (section, ".reg-aarch-tls") == 0)
12017 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
12018 if (strcmp (section, ".reg-aarch-hw-break") == 0)
12019 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
12020 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
12021 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
12022 if (strcmp (section, ".reg-aarch-sve") == 0)
12023 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
12024 if (strcmp (section, ".reg-aarch-pauth") == 0)
12025 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
12026 if (strcmp (section, ".reg-arc-v2") == 0)
12027 return elfcore_write_arc_v2 (abfd, buf, bufsiz, data, size);
12032 elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
12037 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
12038 gABI specifies that PT_NOTE alignment should be aligned to 4
12039 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
12040 align is less than 4, we use 4 byte alignment. */
12043 if (align != 4 && align != 8)
12047 while (p < buf + size)
12049 Elf_External_Note *xnp = (Elf_External_Note *) p;
12050 Elf_Internal_Note in;
12052 if (offsetof (Elf_External_Note, name) > buf - p + size)
12055 in.type = H_GET_32 (abfd, xnp->type);
12057 in.namesz = H_GET_32 (abfd, xnp->namesz);
12058 in.namedata = xnp->name;
12059 if (in.namesz > buf - in.namedata + size)
12062 in.descsz = H_GET_32 (abfd, xnp->descsz);
12063 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
12064 in.descpos = offset + (in.descdata - buf);
12066 && (in.descdata >= buf + size
12067 || in.descsz > buf - in.descdata + size))
12070 switch (bfd_get_format (abfd))
12077 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
12080 const char * string;
12082 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
12086 GROKER_ELEMENT ("", elfcore_grok_note),
12087 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
12088 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
12089 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
12090 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
12091 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
12092 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note)
12094 #undef GROKER_ELEMENT
12097 for (i = ARRAY_SIZE (grokers); i--;)
12099 if (in.namesz >= grokers[i].len
12100 && strncmp (in.namedata, grokers[i].string,
12101 grokers[i].len) == 0)
12103 if (! grokers[i].func (abfd, & in))
12112 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
12114 if (! elfobj_grok_gnu_note (abfd, &in))
12117 else if (in.namesz == sizeof "stapsdt"
12118 && strcmp (in.namedata, "stapsdt") == 0)
12120 if (! elfobj_grok_stapsdt_note (abfd, &in))
12126 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
12133 elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
12138 if (size == 0 || (size + 1) == 0)
12141 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
12144 buf = (char *) _bfd_malloc_and_read (abfd, size + 1, size);
12148 /* PR 17512: file: ec08f814
12149 0-termintate the buffer so that string searches will not overflow. */
12152 if (!elf_parse_notes (abfd, buf, size, offset, align))
12162 /* Providing external access to the ELF program header table. */
12164 /* Return an upper bound on the number of bytes required to store a
12165 copy of ABFD's program header table entries. Return -1 if an error
12166 occurs; bfd_get_error will return an appropriate code. */
12169 bfd_get_elf_phdr_upper_bound (bfd *abfd)
12171 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12173 bfd_set_error (bfd_error_wrong_format);
12177 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
12180 /* Copy ABFD's program header table entries to *PHDRS. The entries
12181 will be stored as an array of Elf_Internal_Phdr structures, as
12182 defined in include/elf/internal.h. To find out how large the
12183 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
12185 Return the number of program header table entries read, or -1 if an
12186 error occurs; bfd_get_error will return an appropriate code. */
12189 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
12193 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12195 bfd_set_error (bfd_error_wrong_format);
12199 num_phdrs = elf_elfheader (abfd)->e_phnum;
12200 if (num_phdrs != 0)
12201 memcpy (phdrs, elf_tdata (abfd)->phdr,
12202 num_phdrs * sizeof (Elf_Internal_Phdr));
12207 enum elf_reloc_type_class
12208 _bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
12209 const asection *rel_sec ATTRIBUTE_UNUSED,
12210 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
12212 return reloc_class_normal;
12215 /* For RELA architectures, return the relocation value for a
12216 relocation against a local symbol. */
12219 _bfd_elf_rela_local_sym (bfd *abfd,
12220 Elf_Internal_Sym *sym,
12222 Elf_Internal_Rela *rel)
12224 asection *sec = *psec;
12225 bfd_vma relocation;
12227 relocation = (sec->output_section->vma
12228 + sec->output_offset
12230 if ((sec->flags & SEC_MERGE)
12231 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
12232 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
12235 _bfd_merged_section_offset (abfd, psec,
12236 elf_section_data (sec)->sec_info,
12237 sym->st_value + rel->r_addend);
12240 /* If we have changed the section, and our original section is
12241 marked with SEC_EXCLUDE, it means that the original
12242 SEC_MERGE section has been completely subsumed in some
12243 other SEC_MERGE section. In this case, we need to leave
12244 some info around for --emit-relocs. */
12245 if ((sec->flags & SEC_EXCLUDE) != 0)
12246 sec->kept_section = *psec;
12249 rel->r_addend -= relocation;
12250 rel->r_addend += sec->output_section->vma + sec->output_offset;
12256 _bfd_elf_rel_local_sym (bfd *abfd,
12257 Elf_Internal_Sym *sym,
12261 asection *sec = *psec;
12263 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
12264 return sym->st_value + addend;
12266 return _bfd_merged_section_offset (abfd, psec,
12267 elf_section_data (sec)->sec_info,
12268 sym->st_value + addend);
12271 /* Adjust an address within a section. Given OFFSET within SEC, return
12272 the new offset within the section, based upon changes made to the
12273 section. Returns -1 if the offset is now invalid.
12274 The offset (in abnd out) is in target sized bytes, however big a
12278 _bfd_elf_section_offset (bfd *abfd,
12279 struct bfd_link_info *info,
12283 switch (sec->sec_info_type)
12285 case SEC_INFO_TYPE_STABS:
12286 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12288 case SEC_INFO_TYPE_EH_FRAME:
12289 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
12292 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12294 /* Reverse the offset. */
12295 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12296 bfd_size_type address_size = bed->s->arch_size / 8;
12298 /* address_size and sec->size are in octets. Convert
12299 to bytes before subtracting the original offset. */
12300 offset = ((sec->size - address_size)
12301 / bfd_octets_per_byte (abfd, sec) - offset);
12307 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
12308 reconstruct an ELF file by reading the segments out of remote memory
12309 based on the ELF file header at EHDR_VMA and the ELF program headers it
12310 points to. If not null, *LOADBASEP is filled in with the difference
12311 between the VMAs from which the segments were read, and the VMAs the
12312 file headers (and hence BFD's idea of each section's VMA) put them at.
12314 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12315 remote memory at target address VMA into the local buffer at MYADDR; it
12316 should return zero on success or an `errno' code on failure. TEMPL must
12317 be a BFD for an ELF target with the word size and byte order found in
12318 the remote memory. */
12321 bfd_elf_bfd_from_remote_memory
12324 bfd_size_type size,
12325 bfd_vma *loadbasep,
12326 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
12328 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
12329 (templ, ehdr_vma, size, loadbasep, target_read_memory);
12333 _bfd_elf_get_synthetic_symtab (bfd *abfd,
12334 long symcount ATTRIBUTE_UNUSED,
12335 asymbol **syms ATTRIBUTE_UNUSED,
12340 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12343 const char *relplt_name;
12344 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
12348 Elf_Internal_Shdr *hdr;
12354 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12357 if (dynsymcount <= 0)
12360 if (!bed->plt_sym_val)
12363 relplt_name = bed->relplt_name;
12364 if (relplt_name == NULL)
12365 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
12366 relplt = bfd_get_section_by_name (abfd, relplt_name);
12367 if (relplt == NULL)
12370 hdr = &elf_section_data (relplt)->this_hdr;
12371 if (hdr->sh_link != elf_dynsymtab (abfd)
12372 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12375 plt = bfd_get_section_by_name (abfd, ".plt");
12379 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
12380 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
12383 count = relplt->size / hdr->sh_entsize;
12384 size = count * sizeof (asymbol);
12385 p = relplt->relocation;
12386 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
12388 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12389 if (p->addend != 0)
12392 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12394 size += sizeof ("+0x") - 1 + 8;
12399 s = *ret = (asymbol *) bfd_malloc (size);
12403 names = (char *) (s + count);
12404 p = relplt->relocation;
12406 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
12411 addr = bed->plt_sym_val (i, plt, p);
12412 if (addr == (bfd_vma) -1)
12415 *s = **p->sym_ptr_ptr;
12416 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12417 we are defining a symbol, ensure one of them is set. */
12418 if ((s->flags & BSF_LOCAL) == 0)
12419 s->flags |= BSF_GLOBAL;
12420 s->flags |= BSF_SYNTHETIC;
12422 s->value = addr - plt->vma;
12425 len = strlen ((*p->sym_ptr_ptr)->name);
12426 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12428 if (p->addend != 0)
12432 memcpy (names, "+0x", sizeof ("+0x") - 1);
12433 names += sizeof ("+0x") - 1;
12434 bfd_sprintf_vma (abfd, buf, p->addend);
12435 for (a = buf; *a == '0'; ++a)
12438 memcpy (names, a, len);
12441 memcpy (names, "@plt", sizeof ("@plt"));
12442 names += sizeof ("@plt");
12449 /* It is only used by x86-64 so far.
12450 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
12451 but current usage would allow all of _bfd_std_section to be zero. */
12452 static const asymbol lcomm_sym
12453 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
12454 asection _bfd_elf_large_com_section
12455 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
12456 "LARGE_COMMON", 0, SEC_IS_COMMON);
12459 _bfd_elf_final_write_processing (bfd *abfd)
12461 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
12463 i_ehdrp = elf_elfheader (abfd);
12465 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12466 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
12468 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12469 SHF_GNU_MBIND sections or symbols of STT_GNU_IFUNC type or
12470 STB_GNU_UNIQUE binding. */
12471 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12473 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12474 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12475 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12476 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12478 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
12479 _bfd_error_handler (_("GNU_MBIND section is unsupported"));
12480 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
12481 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is unsupported"));
12482 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
12483 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is unsupported"));
12484 bfd_set_error (bfd_error_sorry);
12492 /* Return TRUE for ELF symbol types that represent functions.
12493 This is the default version of this function, which is sufficient for
12494 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
12497 _bfd_elf_is_function_type (unsigned int type)
12499 return (type == STT_FUNC
12500 || type == STT_GNU_IFUNC);
12503 /* If the ELF symbol SYM might be a function in SEC, return the
12504 function size and set *CODE_OFF to the function's entry point,
12505 otherwise return zero. */
12508 _bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12511 bfd_size_type size;
12513 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
12514 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12515 || sym->section != sec)
12518 *code_off = sym->value;
12520 if (!(sym->flags & BSF_SYNTHETIC))
12521 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
12527 /* Set to non-zero to enable some debug messages. */
12528 #define DEBUG_SECONDARY_RELOCS 0
12530 /* An internal-to-the-bfd-library only section type
12531 used to indicate a cached secondary reloc section. */
12532 #define SHT_SECONDARY_RELOC (SHT_LOOS + SHT_RELA)
12534 /* Create a BFD section to hold a secondary reloc section. */
12537 _bfd_elf_init_secondary_reloc_section (bfd * abfd,
12538 Elf_Internal_Shdr *hdr,
12540 unsigned int shindex)
12542 /* We only support RELA secondary relocs. */
12543 if (hdr->sh_type != SHT_RELA)
12546 #if DEBUG_SECONDARY_RELOCS
12547 fprintf (stderr, "secondary reloc section %s encountered\n", name);
12549 hdr->sh_type = SHT_SECONDARY_RELOC;
12550 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
12553 /* Read in any secondary relocs associated with SEC. */
12556 _bfd_elf_slurp_secondary_reloc_section (bfd * abfd,
12558 asymbol ** symbols)
12560 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12562 bfd_boolean result = TRUE;
12563 bfd_vma (*r_sym) (bfd_vma);
12565 #if BFD_DEFAULT_TARGET_SIZE > 32
12566 if (bfd_arch_bits_per_address (abfd) != 32)
12567 r_sym = elf64_r_sym;
12570 r_sym = elf32_r_sym;
12572 /* Discover if there are any secondary reloc sections
12573 associated with SEC. */
12574 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
12576 Elf_Internal_Shdr * hdr = & elf_section_data (relsec)->this_hdr;
12578 if (hdr->sh_type == SHT_SECONDARY_RELOC
12579 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx
12580 && (hdr->sh_entsize == ebd->s->sizeof_rel
12581 || hdr->sh_entsize == ebd->s->sizeof_rela))
12583 bfd_byte * native_relocs;
12584 bfd_byte * native_reloc;
12585 arelent * internal_relocs;
12586 arelent * internal_reloc;
12588 unsigned int entsize;
12589 unsigned int symcount;
12590 unsigned int reloc_count;
12593 if (ebd->elf_info_to_howto == NULL)
12596 #if DEBUG_SECONDARY_RELOCS
12597 fprintf (stderr, "read secondary relocs for %s from %s\n",
12598 sec->name, relsec->name);
12600 entsize = hdr->sh_entsize;
12602 native_relocs = bfd_malloc (hdr->sh_size);
12603 if (native_relocs == NULL)
12609 reloc_count = NUM_SHDR_ENTRIES (hdr);
12610 if (_bfd_mul_overflow (reloc_count, sizeof (arelent), & amt))
12612 free (native_relocs);
12613 bfd_set_error (bfd_error_file_too_big);
12618 internal_relocs = (arelent *) bfd_alloc (abfd, amt);
12619 if (internal_relocs == NULL)
12621 free (native_relocs);
12626 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
12627 || (bfd_bread (native_relocs, hdr->sh_size, abfd)
12630 free (native_relocs);
12631 /* The internal_relocs will be freed when
12632 the memory for the bfd is released. */
12637 symcount = bfd_get_symcount (abfd);
12639 for (i = 0, internal_reloc = internal_relocs,
12640 native_reloc = native_relocs;
12642 i++, internal_reloc++, native_reloc += entsize)
12645 Elf_Internal_Rela rela;
12647 ebd->s->swap_reloca_in (abfd, native_reloc, & rela);
12649 /* The address of an ELF reloc is section relative for an object
12650 file, and absolute for an executable file or shared library.
12651 The address of a normal BFD reloc is always section relative,
12652 and the address of a dynamic reloc is absolute.. */
12653 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
12654 internal_reloc->address = rela.r_offset;
12656 internal_reloc->address = rela.r_offset - sec->vma;
12658 if (r_sym (rela.r_info) == STN_UNDEF)
12660 /* FIXME: This and the error case below mean that we
12661 have a symbol on relocs that is not elf_symbol_type. */
12662 internal_reloc->sym_ptr_ptr =
12663 bfd_abs_section_ptr->symbol_ptr_ptr;
12665 else if (r_sym (rela.r_info) > symcount)
12668 /* xgettext:c-format */
12669 (_("%pB(%pA): relocation %d has invalid symbol index %ld"),
12670 abfd, sec, i, (long) r_sym (rela.r_info));
12671 bfd_set_error (bfd_error_bad_value);
12672 internal_reloc->sym_ptr_ptr =
12673 bfd_abs_section_ptr->symbol_ptr_ptr;
12680 ps = symbols + r_sym (rela.r_info) - 1;
12682 internal_reloc->sym_ptr_ptr = ps;
12683 /* Make sure that this symbol is not removed by strip. */
12684 (*ps)->flags |= BSF_KEEP;
12687 internal_reloc->addend = rela.r_addend;
12689 res = ebd->elf_info_to_howto (abfd, internal_reloc, & rela);
12690 if (! res || internal_reloc->howto == NULL)
12692 #if DEBUG_SECONDARY_RELOCS
12693 fprintf (stderr, "there is no howto associated with reloc %lx\n",
12700 free (native_relocs);
12701 /* Store the internal relocs. */
12702 elf_section_data (relsec)->sec_info = internal_relocs;
12709 /* Set the ELF section header fields of an output secondary reloc section. */
12712 _bfd_elf_copy_special_section_fields (const bfd * ibfd ATTRIBUTE_UNUSED,
12713 bfd * obfd ATTRIBUTE_UNUSED,
12714 const Elf_Internal_Shdr * isection,
12715 Elf_Internal_Shdr * osection)
12719 struct bfd_elf_section_data * esd;
12721 if (isection == NULL)
12724 if (isection->sh_type != SHT_SECONDARY_RELOC)
12727 isec = isection->bfd_section;
12731 osec = osection->bfd_section;
12735 esd = elf_section_data (osec);
12736 BFD_ASSERT (esd->sec_info == NULL);
12737 esd->sec_info = elf_section_data (isec)->sec_info;
12738 osection->sh_type = SHT_RELA;
12739 osection->sh_link = elf_onesymtab (obfd);
12740 if (osection->sh_link == 0)
12742 /* There is no symbol table - we are hosed... */
12744 /* xgettext:c-format */
12745 (_("%pB(%pA): link section cannot be set because the output file does not have a symbol table"),
12747 bfd_set_error (bfd_error_bad_value);
12751 /* Find the output section that corresponds to the isection's sh_info link. */
12752 if (isection->sh_info == 0
12753 || isection->sh_info >= elf_numsections (ibfd))
12756 /* xgettext:c-format */
12757 (_("%pB(%pA): info section index is invalid"),
12759 bfd_set_error (bfd_error_bad_value);
12763 isection = elf_elfsections (ibfd)[isection->sh_info];
12765 if (isection == NULL
12766 || isection->bfd_section == NULL
12767 || isection->bfd_section->output_section == NULL)
12770 /* xgettext:c-format */
12771 (_("%pB(%pA): info section index cannot be set because the section is not in the output"),
12773 bfd_set_error (bfd_error_bad_value);
12777 esd = elf_section_data (isection->bfd_section->output_section);
12778 BFD_ASSERT (esd != NULL);
12779 osection->sh_info = esd->this_idx;
12780 esd->has_secondary_relocs = TRUE;
12781 #if DEBUG_SECONDARY_RELOCS
12782 fprintf (stderr, "update header of %s, sh_link = %u, sh_info = %u\n",
12783 osec->name, osection->sh_link, osection->sh_info);
12784 fprintf (stderr, "mark section %s as having secondary relocs\n",
12785 bfd_section_name (isection->bfd_section->output_section));
12791 /* Write out a secondary reloc section.
12793 FIXME: Currently this function can result in a serious performance penalty
12794 for files with secondary relocs and lots of sections. The proper way to
12795 fix this is for _bfd_elf_copy_special_section_fields() to chain secondary
12796 relocs together and then to have this function just walk that chain. */
12799 _bfd_elf_write_secondary_reloc_section (bfd *abfd, asection *sec)
12801 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12802 bfd_vma addr_offset;
12804 bfd_vma (*r_info) (bfd_vma, bfd_vma);
12805 bfd_boolean result = TRUE;
12810 #if BFD_DEFAULT_TARGET_SIZE > 32
12811 if (bfd_arch_bits_per_address (abfd) != 32)
12812 r_info = elf64_r_info;
12815 r_info = elf32_r_info;
12817 /* The address of an ELF reloc is section relative for an object
12818 file, and absolute for an executable file or shared library.
12819 The address of a BFD reloc is always section relative. */
12821 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
12822 addr_offset = sec->vma;
12824 /* Discover if there are any secondary reloc sections
12825 associated with SEC. */
12826 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
12828 const struct bfd_elf_section_data * const esd = elf_section_data (relsec);
12829 Elf_Internal_Shdr * const hdr = (Elf_Internal_Shdr *) & esd->this_hdr;
12831 if (hdr->sh_type == SHT_RELA
12832 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx)
12834 asymbol * last_sym;
12836 unsigned int reloc_count;
12838 arelent * src_irel;
12839 bfd_byte * dst_rela;
12841 if (hdr->contents != NULL)
12844 /* xgettext:c-format */
12845 (_("%pB(%pA): error: secondary reloc section processed twice"),
12847 bfd_set_error (bfd_error_bad_value);
12852 if (hdr->sh_entsize == 0)
12855 /* xgettext:c-format */
12856 (_("%pB(%pA): error: secondary reloc section has zero sized entries"),
12858 bfd_set_error (bfd_error_bad_value);
12863 reloc_count = hdr->sh_size / hdr->sh_entsize;
12864 if (reloc_count <= 0)
12867 /* xgettext:c-format */
12868 (_("%pB(%pA): error: secondary reloc section is empty!"),
12870 bfd_set_error (bfd_error_bad_value);
12875 hdr->contents = bfd_alloc (abfd, hdr->sh_size);
12876 if (hdr->contents == NULL)
12879 #if DEBUG_SECONDARY_RELOCS
12880 fprintf (stderr, "write %u secondary relocs for %s from %s\n",
12881 reloc_count, sec->name, relsec->name);
12885 dst_rela = hdr->contents;
12886 src_irel = (arelent *) esd->sec_info;
12887 if (src_irel == NULL)
12890 /* xgettext:c-format */
12891 (_("%pB(%pA): error: internal relocs missing for secondary reloc section"),
12893 bfd_set_error (bfd_error_bad_value);
12898 for (idx = 0; idx < reloc_count; idx++, dst_rela += hdr->sh_entsize)
12900 Elf_Internal_Rela src_rela;
12905 ptr = src_irel + idx;
12909 /* xgettext:c-format */
12910 (_("%pB(%pA): error: reloc table entry %u is empty"),
12911 abfd, relsec, idx);
12912 bfd_set_error (bfd_error_bad_value);
12917 if (ptr->sym_ptr_ptr == NULL)
12919 /* FIXME: Is this an error ? */
12924 sym = *ptr->sym_ptr_ptr;
12926 if (sym == last_sym)
12930 n = _bfd_elf_symbol_from_bfd_symbol (abfd, & sym);
12934 /* xgettext:c-format */
12935 (_("%pB(%pA): error: secondary reloc %u references a missing symbol"),
12936 abfd, relsec, idx);
12937 bfd_set_error (bfd_error_bad_value);
12946 if (sym->the_bfd != NULL
12947 && sym->the_bfd->xvec != abfd->xvec
12948 && ! _bfd_elf_validate_reloc (abfd, ptr))
12951 /* xgettext:c-format */
12952 (_("%pB(%pA): error: secondary reloc %u references a deleted symbol"),
12953 abfd, relsec, idx);
12954 bfd_set_error (bfd_error_bad_value);
12960 src_rela.r_offset = ptr->address + addr_offset;
12961 if (ptr->howto == NULL)
12964 /* xgettext:c-format */
12965 (_("%pB(%pA): error: secondary reloc %u is of an unknown type"),
12966 abfd, relsec, idx);
12967 bfd_set_error (bfd_error_bad_value);
12969 src_rela.r_info = r_info (0, 0);
12972 src_rela.r_info = r_info (n, ptr->howto->type);
12973 src_rela.r_addend = ptr->addend;
12974 ebd->s->swap_reloca_out (abfd, &src_rela, dst_rela);