1 /* ELF executable support for BFD.
3 Copyright (C) 1993-2018 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
27 BFD support for ELF formats is being worked on.
28 Currently, the best supported back ends are for sparc and i386
29 (running svr4 or Solaris 2).
31 Documentation of the internals of the support code still needs
32 to be written. The code is changing quickly enough that we
33 haven't bothered yet. */
35 /* For sparc64-cross-sparc32. */
43 #include "libiberty.h"
44 #include "safe-ctype.h"
45 #include "elf-linux-core.h"
51 static int elf_sort_sections (const void *, const void *);
52 static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
53 static bfd_boolean prep_headers (bfd *);
54 static bfd_boolean swap_out_syms (bfd *, struct elf_strtab_hash **, int) ;
55 static bfd_boolean elf_read_notes (bfd *, file_ptr, bfd_size_type,
57 static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
58 file_ptr offset, size_t align);
60 /* Swap version information in and out. The version information is
61 currently size independent. If that ever changes, this code will
62 need to move into elfcode.h. */
64 /* Swap in a Verdef structure. */
67 _bfd_elf_swap_verdef_in (bfd *abfd,
68 const Elf_External_Verdef *src,
69 Elf_Internal_Verdef *dst)
71 dst->vd_version = H_GET_16 (abfd, src->vd_version);
72 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
73 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
74 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
75 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
76 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
77 dst->vd_next = H_GET_32 (abfd, src->vd_next);
80 /* Swap out a Verdef structure. */
83 _bfd_elf_swap_verdef_out (bfd *abfd,
84 const Elf_Internal_Verdef *src,
85 Elf_External_Verdef *dst)
87 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
88 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
89 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
90 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
91 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
92 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
93 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
96 /* Swap in a Verdaux structure. */
99 _bfd_elf_swap_verdaux_in (bfd *abfd,
100 const Elf_External_Verdaux *src,
101 Elf_Internal_Verdaux *dst)
103 dst->vda_name = H_GET_32 (abfd, src->vda_name);
104 dst->vda_next = H_GET_32 (abfd, src->vda_next);
107 /* Swap out a Verdaux structure. */
110 _bfd_elf_swap_verdaux_out (bfd *abfd,
111 const Elf_Internal_Verdaux *src,
112 Elf_External_Verdaux *dst)
114 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
115 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
118 /* Swap in a Verneed structure. */
121 _bfd_elf_swap_verneed_in (bfd *abfd,
122 const Elf_External_Verneed *src,
123 Elf_Internal_Verneed *dst)
125 dst->vn_version = H_GET_16 (abfd, src->vn_version);
126 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
127 dst->vn_file = H_GET_32 (abfd, src->vn_file);
128 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
129 dst->vn_next = H_GET_32 (abfd, src->vn_next);
132 /* Swap out a Verneed structure. */
135 _bfd_elf_swap_verneed_out (bfd *abfd,
136 const Elf_Internal_Verneed *src,
137 Elf_External_Verneed *dst)
139 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
140 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
141 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
142 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
143 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
146 /* Swap in a Vernaux structure. */
149 _bfd_elf_swap_vernaux_in (bfd *abfd,
150 const Elf_External_Vernaux *src,
151 Elf_Internal_Vernaux *dst)
153 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
154 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
155 dst->vna_other = H_GET_16 (abfd, src->vna_other);
156 dst->vna_name = H_GET_32 (abfd, src->vna_name);
157 dst->vna_next = H_GET_32 (abfd, src->vna_next);
160 /* Swap out a Vernaux structure. */
163 _bfd_elf_swap_vernaux_out (bfd *abfd,
164 const Elf_Internal_Vernaux *src,
165 Elf_External_Vernaux *dst)
167 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
168 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
169 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
170 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
171 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
174 /* Swap in a Versym structure. */
177 _bfd_elf_swap_versym_in (bfd *abfd,
178 const Elf_External_Versym *src,
179 Elf_Internal_Versym *dst)
181 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
184 /* Swap out a Versym structure. */
187 _bfd_elf_swap_versym_out (bfd *abfd,
188 const Elf_Internal_Versym *src,
189 Elf_External_Versym *dst)
191 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
194 /* Standard ELF hash function. Do not change this function; you will
195 cause invalid hash tables to be generated. */
198 bfd_elf_hash (const char *namearg)
200 const unsigned char *name = (const unsigned char *) namearg;
205 while ((ch = *name++) != '\0')
208 if ((g = (h & 0xf0000000)) != 0)
211 /* The ELF ABI says `h &= ~g', but this is equivalent in
212 this case and on some machines one insn instead of two. */
216 return h & 0xffffffff;
219 /* DT_GNU_HASH hash function. Do not change this function; you will
220 cause invalid hash tables to be generated. */
223 bfd_elf_gnu_hash (const char *namearg)
225 const unsigned char *name = (const unsigned char *) namearg;
226 unsigned long h = 5381;
229 while ((ch = *name++) != '\0')
230 h = (h << 5) + h + ch;
231 return h & 0xffffffff;
234 /* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
235 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
237 bfd_elf_allocate_object (bfd *abfd,
239 enum elf_target_id object_id)
241 BFD_ASSERT (object_size >= sizeof (struct elf_obj_tdata));
242 abfd->tdata.any = bfd_zalloc (abfd, object_size);
243 if (abfd->tdata.any == NULL)
246 elf_object_id (abfd) = object_id;
247 if (abfd->direction != read_direction)
249 struct output_elf_obj_tdata *o = bfd_zalloc (abfd, sizeof *o);
252 elf_tdata (abfd)->o = o;
253 elf_program_header_size (abfd) = (bfd_size_type) -1;
260 bfd_elf_make_object (bfd *abfd)
262 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
263 return bfd_elf_allocate_object (abfd, sizeof (struct elf_obj_tdata),
268 bfd_elf_mkcorefile (bfd *abfd)
270 /* I think this can be done just like an object file. */
271 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
273 elf_tdata (abfd)->core = bfd_zalloc (abfd, sizeof (*elf_tdata (abfd)->core));
274 return elf_tdata (abfd)->core != NULL;
278 bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
280 Elf_Internal_Shdr **i_shdrp;
281 bfd_byte *shstrtab = NULL;
283 bfd_size_type shstrtabsize;
285 i_shdrp = elf_elfsections (abfd);
287 || shindex >= elf_numsections (abfd)
288 || i_shdrp[shindex] == 0)
291 shstrtab = i_shdrp[shindex]->contents;
292 if (shstrtab == NULL)
294 /* No cached one, attempt to read, and cache what we read. */
295 offset = i_shdrp[shindex]->sh_offset;
296 shstrtabsize = i_shdrp[shindex]->sh_size;
298 /* Allocate and clear an extra byte at the end, to prevent crashes
299 in case the string table is not terminated. */
300 if (shstrtabsize + 1 <= 1
301 || bfd_seek (abfd, offset, SEEK_SET) != 0
302 || (shstrtab = (bfd_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL)
304 else if (bfd_bread (shstrtab, shstrtabsize, abfd) != shstrtabsize)
306 if (bfd_get_error () != bfd_error_system_call)
307 bfd_set_error (bfd_error_file_truncated);
308 bfd_release (abfd, shstrtab);
310 /* Once we've failed to read it, make sure we don't keep
311 trying. Otherwise, we'll keep allocating space for
312 the string table over and over. */
313 i_shdrp[shindex]->sh_size = 0;
316 shstrtab[shstrtabsize] = '\0';
317 i_shdrp[shindex]->contents = shstrtab;
319 return (char *) shstrtab;
323 bfd_elf_string_from_elf_section (bfd *abfd,
324 unsigned int shindex,
325 unsigned int strindex)
327 Elf_Internal_Shdr *hdr;
332 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
335 hdr = elf_elfsections (abfd)[shindex];
337 if (hdr->contents == NULL)
339 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
341 /* PR 17512: file: f057ec89. */
342 /* xgettext:c-format */
343 _bfd_error_handler (_("%pB: attempt to load strings from"
344 " a non-string section (number %d)"),
349 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
353 if (strindex >= hdr->sh_size)
355 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
357 /* xgettext:c-format */
358 (_("%pB: invalid string offset %u >= %" PRIu64 " for section `%s'"),
359 abfd, strindex, (uint64_t) hdr->sh_size,
360 (shindex == shstrndx && strindex == hdr->sh_name
362 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
366 return ((char *) hdr->contents) + strindex;
369 /* Read and convert symbols to internal format.
370 SYMCOUNT specifies the number of symbols to read, starting from
371 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
372 are non-NULL, they are used to store the internal symbols, external
373 symbols, and symbol section index extensions, respectively.
374 Returns a pointer to the internal symbol buffer (malloced if necessary)
375 or NULL if there were no symbols or some kind of problem. */
378 bfd_elf_get_elf_syms (bfd *ibfd,
379 Elf_Internal_Shdr *symtab_hdr,
382 Elf_Internal_Sym *intsym_buf,
384 Elf_External_Sym_Shndx *extshndx_buf)
386 Elf_Internal_Shdr *shndx_hdr;
388 const bfd_byte *esym;
389 Elf_External_Sym_Shndx *alloc_extshndx;
390 Elf_External_Sym_Shndx *shndx;
391 Elf_Internal_Sym *alloc_intsym;
392 Elf_Internal_Sym *isym;
393 Elf_Internal_Sym *isymend;
394 const struct elf_backend_data *bed;
399 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
405 /* Normal syms might have section extension entries. */
407 if (elf_symtab_shndx_list (ibfd) != NULL)
409 elf_section_list * entry;
410 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
412 /* Find an index section that is linked to this symtab section. */
413 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
416 if (entry->hdr.sh_link >= elf_numsections (ibfd))
419 if (sections[entry->hdr.sh_link] == symtab_hdr)
421 shndx_hdr = & entry->hdr;
426 if (shndx_hdr == NULL)
428 if (symtab_hdr == & elf_symtab_hdr (ibfd))
429 /* Not really accurate, but this was how the old code used to work. */
430 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
431 /* Otherwise we do nothing. The assumption is that
432 the index table will not be needed. */
436 /* Read the symbols. */
438 alloc_extshndx = NULL;
440 bed = get_elf_backend_data (ibfd);
441 extsym_size = bed->s->sizeof_sym;
442 amt = (bfd_size_type) symcount * extsym_size;
443 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
444 if (extsym_buf == NULL)
446 alloc_ext = bfd_malloc2 (symcount, extsym_size);
447 extsym_buf = alloc_ext;
449 if (extsym_buf == NULL
450 || bfd_seek (ibfd, pos, SEEK_SET) != 0
451 || bfd_bread (extsym_buf, amt, ibfd) != amt)
457 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
461 amt = (bfd_size_type) symcount * sizeof (Elf_External_Sym_Shndx);
462 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
463 if (extshndx_buf == NULL)
465 alloc_extshndx = (Elf_External_Sym_Shndx *)
466 bfd_malloc2 (symcount, sizeof (Elf_External_Sym_Shndx));
467 extshndx_buf = alloc_extshndx;
469 if (extshndx_buf == NULL
470 || bfd_seek (ibfd, pos, SEEK_SET) != 0
471 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
478 if (intsym_buf == NULL)
480 alloc_intsym = (Elf_Internal_Sym *)
481 bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
482 intsym_buf = alloc_intsym;
483 if (intsym_buf == NULL)
487 /* Convert the symbols to internal form. */
488 isymend = intsym_buf + symcount;
489 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
490 shndx = extshndx_buf;
492 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
493 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
495 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
496 /* xgettext:c-format */
497 _bfd_error_handler (_("%pB symbol number %lu references"
498 " nonexistent SHT_SYMTAB_SHNDX section"),
499 ibfd, (unsigned long) symoffset);
500 if (alloc_intsym != NULL)
507 if (alloc_ext != NULL)
509 if (alloc_extshndx != NULL)
510 free (alloc_extshndx);
515 /* Look up a symbol name. */
517 bfd_elf_sym_name (bfd *abfd,
518 Elf_Internal_Shdr *symtab_hdr,
519 Elf_Internal_Sym *isym,
523 unsigned int iname = isym->st_name;
524 unsigned int shindex = symtab_hdr->sh_link;
526 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
527 /* Check for a bogus st_shndx to avoid crashing. */
528 && isym->st_shndx < elf_numsections (abfd))
530 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
531 shindex = elf_elfheader (abfd)->e_shstrndx;
534 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
537 else if (sym_sec && *name == '\0')
538 name = bfd_section_name (abfd, sym_sec);
543 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
544 sections. The first element is the flags, the rest are section
547 typedef union elf_internal_group {
548 Elf_Internal_Shdr *shdr;
550 } Elf_Internal_Group;
552 /* Return the name of the group signature symbol. Why isn't the
553 signature just a string? */
556 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
558 Elf_Internal_Shdr *hdr;
559 unsigned char esym[sizeof (Elf64_External_Sym)];
560 Elf_External_Sym_Shndx eshndx;
561 Elf_Internal_Sym isym;
563 /* First we need to ensure the symbol table is available. Make sure
564 that it is a symbol table section. */
565 if (ghdr->sh_link >= elf_numsections (abfd))
567 hdr = elf_elfsections (abfd) [ghdr->sh_link];
568 if (hdr->sh_type != SHT_SYMTAB
569 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
572 /* Go read the symbol. */
573 hdr = &elf_tdata (abfd)->symtab_hdr;
574 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
575 &isym, esym, &eshndx) == NULL)
578 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
581 /* Set next_in_group list pointer, and group name for NEWSECT. */
584 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
586 unsigned int num_group = elf_tdata (abfd)->num_group;
588 /* If num_group is zero, read in all SHT_GROUP sections. The count
589 is set to -1 if there are no SHT_GROUP sections. */
592 unsigned int i, shnum;
594 /* First count the number of groups. If we have a SHT_GROUP
595 section with just a flag word (ie. sh_size is 4), ignore it. */
596 shnum = elf_numsections (abfd);
599 #define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
600 ( (shdr)->sh_type == SHT_GROUP \
601 && (shdr)->sh_size >= minsize \
602 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
603 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
605 for (i = 0; i < shnum; i++)
607 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
609 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
615 num_group = (unsigned) -1;
616 elf_tdata (abfd)->num_group = num_group;
617 elf_tdata (abfd)->group_sect_ptr = NULL;
621 /* We keep a list of elf section headers for group sections,
622 so we can find them quickly. */
625 elf_tdata (abfd)->num_group = num_group;
626 elf_tdata (abfd)->group_sect_ptr = (Elf_Internal_Shdr **)
627 bfd_alloc2 (abfd, num_group, sizeof (Elf_Internal_Shdr *));
628 if (elf_tdata (abfd)->group_sect_ptr == NULL)
630 memset (elf_tdata (abfd)->group_sect_ptr, 0, num_group * sizeof (Elf_Internal_Shdr *));
633 for (i = 0; i < shnum; i++)
635 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
637 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
640 Elf_Internal_Group *dest;
642 /* Make sure the group section has a BFD section
644 if (!bfd_section_from_shdr (abfd, i))
647 /* Add to list of sections. */
648 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
651 /* Read the raw contents. */
652 BFD_ASSERT (sizeof (*dest) >= 4);
653 amt = shdr->sh_size * sizeof (*dest) / 4;
654 shdr->contents = (unsigned char *)
655 bfd_alloc2 (abfd, shdr->sh_size, sizeof (*dest) / 4);
656 /* PR binutils/4110: Handle corrupt group headers. */
657 if (shdr->contents == NULL)
660 /* xgettext:c-format */
661 (_("%pB: corrupt size field in group section"
662 " header: %#" PRIx64),
663 abfd, (uint64_t) shdr->sh_size);
664 bfd_set_error (bfd_error_bad_value);
669 memset (shdr->contents, 0, amt);
671 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
672 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
676 /* xgettext:c-format */
677 (_("%pB: invalid size field in group section"
678 " header: %#" PRIx64 ""),
679 abfd, (uint64_t) shdr->sh_size);
680 bfd_set_error (bfd_error_bad_value);
682 /* PR 17510: If the group contents are even
683 partially corrupt, do not allow any of the
684 contents to be used. */
685 memset (shdr->contents, 0, amt);
689 /* Translate raw contents, a flag word followed by an
690 array of elf section indices all in target byte order,
691 to the flag word followed by an array of elf section
693 src = shdr->contents + shdr->sh_size;
694 dest = (Elf_Internal_Group *) (shdr->contents + amt);
702 idx = H_GET_32 (abfd, src);
703 if (src == shdr->contents)
706 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
707 shdr->bfd_section->flags
708 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
714 (_("%pB: invalid SHT_GROUP entry"), abfd);
717 dest->shdr = elf_elfsections (abfd)[idx];
722 /* PR 17510: Corrupt binaries might contain invalid groups. */
723 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
725 elf_tdata (abfd)->num_group = num_group;
727 /* If all groups are invalid then fail. */
730 elf_tdata (abfd)->group_sect_ptr = NULL;
731 elf_tdata (abfd)->num_group = num_group = -1;
733 (_("%pB: no valid group sections found"), abfd);
734 bfd_set_error (bfd_error_bad_value);
740 if (num_group != (unsigned) -1)
742 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
745 for (j = 0; j < num_group; j++)
747 /* Begin search from previous found group. */
748 unsigned i = (j + search_offset) % num_group;
750 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
751 Elf_Internal_Group *idx;
757 idx = (Elf_Internal_Group *) shdr->contents;
758 if (idx == NULL || shdr->sh_size < 4)
760 /* See PR 21957 for a reproducer. */
761 /* xgettext:c-format */
762 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
763 abfd, shdr->bfd_section);
764 elf_tdata (abfd)->group_sect_ptr[i] = NULL;
765 bfd_set_error (bfd_error_bad_value);
768 n_elt = shdr->sh_size / 4;
770 /* Look through this group's sections to see if current
771 section is a member. */
773 if ((++idx)->shdr == hdr)
777 /* We are a member of this group. Go looking through
778 other members to see if any others are linked via
780 idx = (Elf_Internal_Group *) shdr->contents;
781 n_elt = shdr->sh_size / 4;
783 if ((s = (++idx)->shdr->bfd_section) != NULL
784 && elf_next_in_group (s) != NULL)
788 /* Snarf the group name from other member, and
789 insert current section in circular list. */
790 elf_group_name (newsect) = elf_group_name (s);
791 elf_next_in_group (newsect) = elf_next_in_group (s);
792 elf_next_in_group (s) = newsect;
798 gname = group_signature (abfd, shdr);
801 elf_group_name (newsect) = gname;
803 /* Start a circular list with one element. */
804 elf_next_in_group (newsect) = newsect;
807 /* If the group section has been created, point to the
809 if (shdr->bfd_section != NULL)
810 elf_next_in_group (shdr->bfd_section) = newsect;
812 elf_tdata (abfd)->group_search_offset = i;
819 if (elf_group_name (newsect) == NULL)
821 /* xgettext:c-format */
822 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
830 _bfd_elf_setup_sections (bfd *abfd)
833 unsigned int num_group = elf_tdata (abfd)->num_group;
834 bfd_boolean result = TRUE;
837 /* Process SHF_LINK_ORDER. */
838 for (s = abfd->sections; s != NULL; s = s->next)
840 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
841 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
843 unsigned int elfsec = this_hdr->sh_link;
844 /* FIXME: The old Intel compiler and old strip/objcopy may
845 not set the sh_link or sh_info fields. Hence we could
846 get the situation where elfsec is 0. */
849 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
850 if (bed->link_order_error_handler)
851 bed->link_order_error_handler
852 /* xgettext:c-format */
853 (_("%pB: warning: sh_link not set for section `%pA'"),
858 asection *linksec = NULL;
860 if (elfsec < elf_numsections (abfd))
862 this_hdr = elf_elfsections (abfd)[elfsec];
863 linksec = this_hdr->bfd_section;
867 Some strip/objcopy may leave an incorrect value in
868 sh_link. We don't want to proceed. */
872 /* xgettext:c-format */
873 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
874 s->owner, elfsec, s);
878 elf_linked_to_section (s) = linksec;
881 else if (this_hdr->sh_type == SHT_GROUP
882 && elf_next_in_group (s) == NULL)
885 /* xgettext:c-format */
886 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
887 abfd, elf_section_data (s)->this_idx);
892 /* Process section groups. */
893 if (num_group == (unsigned) -1)
896 for (i = 0; i < num_group; i++)
898 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
899 Elf_Internal_Group *idx;
902 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
903 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
906 /* xgettext:c-format */
907 (_("%pB: section group entry number %u is corrupt"),
913 idx = (Elf_Internal_Group *) shdr->contents;
914 n_elt = shdr->sh_size / 4;
920 if (idx->shdr == NULL)
922 else if (idx->shdr->bfd_section)
923 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
924 else if (idx->shdr->sh_type != SHT_RELA
925 && idx->shdr->sh_type != SHT_REL)
927 /* There are some unknown sections in the group. */
929 /* xgettext:c-format */
930 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
933 bfd_elf_string_from_elf_section (abfd,
934 (elf_elfheader (abfd)
947 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
949 return elf_next_in_group (sec) != NULL;
953 convert_debug_to_zdebug (bfd *abfd, const char *name)
955 unsigned int len = strlen (name);
956 char *new_name = bfd_alloc (abfd, len + 2);
957 if (new_name == NULL)
961 memcpy (new_name + 2, name + 1, len);
966 convert_zdebug_to_debug (bfd *abfd, const char *name)
968 unsigned int len = strlen (name);
969 char *new_name = bfd_alloc (abfd, len);
970 if (new_name == NULL)
973 memcpy (new_name + 1, name + 2, len - 1);
977 /* Make a BFD section from an ELF section. We store a pointer to the
978 BFD section in the bfd_section field of the header. */
981 _bfd_elf_make_section_from_shdr (bfd *abfd,
982 Elf_Internal_Shdr *hdr,
988 const struct elf_backend_data *bed;
990 if (hdr->bfd_section != NULL)
993 newsect = bfd_make_section_anyway (abfd, name);
997 hdr->bfd_section = newsect;
998 elf_section_data (newsect)->this_hdr = *hdr;
999 elf_section_data (newsect)->this_idx = shindex;
1001 /* Always use the real type/flags. */
1002 elf_section_type (newsect) = hdr->sh_type;
1003 elf_section_flags (newsect) = hdr->sh_flags;
1005 newsect->filepos = hdr->sh_offset;
1007 if (! bfd_set_section_vma (abfd, newsect, hdr->sh_addr)
1008 || ! bfd_set_section_size (abfd, newsect, hdr->sh_size)
1009 || ! bfd_set_section_alignment (abfd, newsect,
1010 bfd_log2 (hdr->sh_addralign)))
1013 flags = SEC_NO_FLAGS;
1014 if (hdr->sh_type != SHT_NOBITS)
1015 flags |= SEC_HAS_CONTENTS;
1016 if (hdr->sh_type == SHT_GROUP)
1018 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1021 if (hdr->sh_type != SHT_NOBITS)
1024 if ((hdr->sh_flags & SHF_WRITE) == 0)
1025 flags |= SEC_READONLY;
1026 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1028 else if ((flags & SEC_LOAD) != 0)
1030 if ((hdr->sh_flags & SHF_MERGE) != 0)
1033 newsect->entsize = hdr->sh_entsize;
1035 if ((hdr->sh_flags & SHF_STRINGS) != 0)
1036 flags |= SEC_STRINGS;
1037 if (hdr->sh_flags & SHF_GROUP)
1038 if (!setup_group (abfd, hdr, newsect))
1040 if ((hdr->sh_flags & SHF_TLS) != 0)
1041 flags |= SEC_THREAD_LOCAL;
1042 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
1043 flags |= SEC_EXCLUDE;
1045 if ((flags & SEC_ALLOC) == 0)
1047 /* The debugging sections appear to be recognized only by name,
1048 not any sort of flag. Their SEC_ALLOC bits are cleared. */
1049 if (name [0] == '.')
1054 p = ".debug", n = 6;
1055 else if (name[1] == 'g' && name[2] == 'n')
1056 p = ".gnu.linkonce.wi.", n = 17;
1057 else if (name[1] == 'g' && name[2] == 'd')
1058 p = ".gdb_index", n = 11; /* yes we really do mean 11. */
1059 else if (name[1] == 'l')
1061 else if (name[1] == 's')
1063 else if (name[1] == 'z')
1064 p = ".zdebug", n = 7;
1067 if (p != NULL && strncmp (name, p, n) == 0)
1068 flags |= SEC_DEBUGGING;
1072 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1073 only link a single copy of the section. This is used to support
1074 g++. g++ will emit each template expansion in its own section.
1075 The symbols will be defined as weak, so that multiple definitions
1076 are permitted. The GNU linker extension is to actually discard
1077 all but one of the sections. */
1078 if (CONST_STRNEQ (name, ".gnu.linkonce")
1079 && elf_next_in_group (newsect) == NULL)
1080 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1082 bed = get_elf_backend_data (abfd);
1083 if (bed->elf_backend_section_flags)
1084 if (! bed->elf_backend_section_flags (&flags, hdr))
1087 if (! bfd_set_section_flags (abfd, newsect, flags))
1090 /* We do not parse the PT_NOTE segments as we are interested even in the
1091 separate debug info files which may have the segments offsets corrupted.
1092 PT_NOTEs from the core files are currently not parsed using BFD. */
1093 if (hdr->sh_type == SHT_NOTE)
1097 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
1100 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1101 hdr->sh_offset, hdr->sh_addralign);
1105 if ((flags & SEC_ALLOC) != 0)
1107 Elf_Internal_Phdr *phdr;
1108 unsigned int i, nload;
1110 /* Some ELF linkers produce binaries with all the program header
1111 p_paddr fields zero. If we have such a binary with more than
1112 one PT_LOAD header, then leave the section lma equal to vma
1113 so that we don't create sections with overlapping lma. */
1114 phdr = elf_tdata (abfd)->phdr;
1115 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1116 if (phdr->p_paddr != 0)
1118 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1120 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1123 phdr = elf_tdata (abfd)->phdr;
1124 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1126 if (((phdr->p_type == PT_LOAD
1127 && (hdr->sh_flags & SHF_TLS) == 0)
1128 || phdr->p_type == PT_TLS)
1129 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
1131 if ((flags & SEC_LOAD) == 0)
1132 newsect->lma = (phdr->p_paddr
1133 + hdr->sh_addr - phdr->p_vaddr);
1135 /* We used to use the same adjustment for SEC_LOAD
1136 sections, but that doesn't work if the segment
1137 is packed with code from multiple VMAs.
1138 Instead we calculate the section LMA based on
1139 the segment LMA. It is assumed that the
1140 segment will contain sections with contiguous
1141 LMAs, even if the VMAs are not. */
1142 newsect->lma = (phdr->p_paddr
1143 + hdr->sh_offset - phdr->p_offset);
1145 /* With contiguous segments, we can't tell from file
1146 offsets whether a section with zero size should
1147 be placed at the end of one segment or the
1148 beginning of the next. Decide based on vaddr. */
1149 if (hdr->sh_addr >= phdr->p_vaddr
1150 && (hdr->sh_addr + hdr->sh_size
1151 <= phdr->p_vaddr + phdr->p_memsz))
1157 /* Compress/decompress DWARF debug sections with names: .debug_* and
1158 .zdebug_*, after the section flags is set. */
1159 if ((flags & SEC_DEBUGGING)
1160 && ((name[1] == 'd' && name[6] == '_')
1161 || (name[1] == 'z' && name[7] == '_')))
1163 enum { nothing, compress, decompress } action = nothing;
1164 int compression_header_size;
1165 bfd_size_type uncompressed_size;
1166 bfd_boolean compressed
1167 = bfd_is_section_compressed_with_header (abfd, newsect,
1168 &compression_header_size,
1169 &uncompressed_size);
1173 /* Compressed section. Check if we should decompress. */
1174 if ((abfd->flags & BFD_DECOMPRESS))
1175 action = decompress;
1178 /* Compress the uncompressed section or convert from/to .zdebug*
1179 section. Check if we should compress. */
1180 if (action == nothing)
1182 if (newsect->size != 0
1183 && (abfd->flags & BFD_COMPRESS)
1184 && compression_header_size >= 0
1185 && uncompressed_size > 0
1187 || ((compression_header_size > 0)
1188 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
1194 if (action == compress)
1196 if (!bfd_init_section_compress_status (abfd, newsect))
1199 /* xgettext:c-format */
1200 (_("%pB: unable to initialize compress status for section %s"),
1207 if (!bfd_init_section_decompress_status (abfd, newsect))
1210 /* xgettext:c-format */
1211 (_("%pB: unable to initialize decompress status for section %s"),
1217 if (abfd->is_linker_input)
1220 && (action == decompress
1221 || (action == compress
1222 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
1224 /* Convert section name from .zdebug_* to .debug_* so
1225 that linker will consider this section as a debug
1227 char *new_name = convert_zdebug_to_debug (abfd, name);
1228 if (new_name == NULL)
1230 bfd_rename_section (abfd, newsect, new_name);
1234 /* For objdump, don't rename the section. For objcopy, delay
1235 section rename to elf_fake_sections. */
1236 newsect->flags |= SEC_ELF_RENAME;
1242 const char *const bfd_elf_section_type_names[] =
1244 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1245 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1246 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1249 /* ELF relocs are against symbols. If we are producing relocatable
1250 output, and the reloc is against an external symbol, and nothing
1251 has given us any additional addend, the resulting reloc will also
1252 be against the same symbol. In such a case, we don't want to
1253 change anything about the way the reloc is handled, since it will
1254 all be done at final link time. Rather than put special case code
1255 into bfd_perform_relocation, all the reloc types use this howto
1256 function. It just short circuits the reloc if producing
1257 relocatable output against an external symbol. */
1259 bfd_reloc_status_type
1260 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1261 arelent *reloc_entry,
1263 void *data ATTRIBUTE_UNUSED,
1264 asection *input_section,
1266 char **error_message ATTRIBUTE_UNUSED)
1268 if (output_bfd != NULL
1269 && (symbol->flags & BSF_SECTION_SYM) == 0
1270 && (! reloc_entry->howto->partial_inplace
1271 || reloc_entry->addend == 0))
1273 reloc_entry->address += input_section->output_offset;
1274 return bfd_reloc_ok;
1277 return bfd_reloc_continue;
1280 /* Returns TRUE if section A matches section B.
1281 Names, addresses and links may be different, but everything else
1282 should be the same. */
1285 section_match (const Elf_Internal_Shdr * a,
1286 const Elf_Internal_Shdr * b)
1289 a->sh_type == b->sh_type
1290 && (a->sh_flags & ~ SHF_INFO_LINK)
1291 == (b->sh_flags & ~ SHF_INFO_LINK)
1292 && a->sh_addralign == b->sh_addralign
1293 && a->sh_size == b->sh_size
1294 && a->sh_entsize == b->sh_entsize
1295 /* FIXME: Check sh_addr ? */
1299 /* Find a section in OBFD that has the same characteristics
1300 as IHEADER. Return the index of this section or SHN_UNDEF if
1301 none can be found. Check's section HINT first, as this is likely
1302 to be the correct section. */
1305 find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1306 const unsigned int hint)
1308 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1311 BFD_ASSERT (iheader != NULL);
1313 /* See PR 20922 for a reproducer of the NULL test. */
1314 if (hint < elf_numsections (obfd)
1315 && oheaders[hint] != NULL
1316 && section_match (oheaders[hint], iheader))
1319 for (i = 1; i < elf_numsections (obfd); i++)
1321 Elf_Internal_Shdr * oheader = oheaders[i];
1323 if (oheader == NULL)
1325 if (section_match (oheader, iheader))
1326 /* FIXME: Do we care if there is a potential for
1327 multiple matches ? */
1334 /* PR 19938: Attempt to set the ELF section header fields of an OS or
1335 Processor specific section, based upon a matching input section.
1336 Returns TRUE upon success, FALSE otherwise. */
1339 copy_special_section_fields (const bfd *ibfd,
1341 const Elf_Internal_Shdr *iheader,
1342 Elf_Internal_Shdr *oheader,
1343 const unsigned int secnum)
1345 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1346 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1347 bfd_boolean changed = FALSE;
1348 unsigned int sh_link;
1350 if (oheader->sh_type == SHT_NOBITS)
1352 /* This is a feature for objcopy --only-keep-debug:
1353 When a section's type is changed to NOBITS, we preserve
1354 the sh_link and sh_info fields so that they can be
1355 matched up with the original.
1357 Note: Strictly speaking these assignments are wrong.
1358 The sh_link and sh_info fields should point to the
1359 relevent sections in the output BFD, which may not be in
1360 the same location as they were in the input BFD. But
1361 the whole point of this action is to preserve the
1362 original values of the sh_link and sh_info fields, so
1363 that they can be matched up with the section headers in
1364 the original file. So strictly speaking we may be
1365 creating an invalid ELF file, but it is only for a file
1366 that just contains debug info and only for sections
1367 without any contents. */
1368 if (oheader->sh_link == 0)
1369 oheader->sh_link = iheader->sh_link;
1370 if (oheader->sh_info == 0)
1371 oheader->sh_info = iheader->sh_info;
1375 /* Allow the target a chance to decide how these fields should be set. */
1376 if (bed->elf_backend_copy_special_section_fields != NULL
1377 && bed->elf_backend_copy_special_section_fields
1378 (ibfd, obfd, iheader, oheader))
1381 /* We have an iheader which might match oheader, and which has non-zero
1382 sh_info and/or sh_link fields. Attempt to follow those links and find
1383 the section in the output bfd which corresponds to the linked section
1384 in the input bfd. */
1385 if (iheader->sh_link != SHN_UNDEF)
1387 /* See PR 20931 for a reproducer. */
1388 if (iheader->sh_link >= elf_numsections (ibfd))
1391 /* xgettext:c-format */
1392 (_("%pB: Invalid sh_link field (%d) in section number %d"),
1393 ibfd, iheader->sh_link, secnum);
1397 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1398 if (sh_link != SHN_UNDEF)
1400 oheader->sh_link = sh_link;
1404 /* FIXME: Should we install iheader->sh_link
1405 if we could not find a match ? */
1407 /* xgettext:c-format */
1408 (_("%pB: Failed to find link section for section %d"), obfd, secnum);
1411 if (iheader->sh_info)
1413 /* The sh_info field can hold arbitrary information, but if the
1414 SHF_LINK_INFO flag is set then it should be interpreted as a
1416 if (iheader->sh_flags & SHF_INFO_LINK)
1418 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1420 if (sh_link != SHN_UNDEF)
1421 oheader->sh_flags |= SHF_INFO_LINK;
1424 /* No idea what it means - just copy it. */
1425 sh_link = iheader->sh_info;
1427 if (sh_link != SHN_UNDEF)
1429 oheader->sh_info = sh_link;
1434 /* xgettext:c-format */
1435 (_("%pB: Failed to find info section for section %d"), obfd, secnum);
1441 /* Copy the program header and other data from one object module to
1445 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1447 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1448 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1449 const struct elf_backend_data *bed;
1452 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1453 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1456 if (!elf_flags_init (obfd))
1458 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1459 elf_flags_init (obfd) = TRUE;
1462 elf_gp (obfd) = elf_gp (ibfd);
1464 /* Also copy the EI_OSABI field. */
1465 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1466 elf_elfheader (ibfd)->e_ident[EI_OSABI];
1468 /* If set, copy the EI_ABIVERSION field. */
1469 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1470 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1471 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
1473 /* Copy object attributes. */
1474 _bfd_elf_copy_obj_attributes (ibfd, obfd);
1476 if (iheaders == NULL || oheaders == NULL)
1479 bed = get_elf_backend_data (obfd);
1481 /* Possibly copy other fields in the section header. */
1482 for (i = 1; i < elf_numsections (obfd); i++)
1485 Elf_Internal_Shdr * oheader = oheaders[i];
1487 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1488 because of a special case need for generating separate debug info
1489 files. See below for more details. */
1491 || (oheader->sh_type != SHT_NOBITS
1492 && oheader->sh_type < SHT_LOOS))
1495 /* Ignore empty sections, and sections whose
1496 fields have already been initialised. */
1497 if (oheader->sh_size == 0
1498 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1501 /* Scan for the matching section in the input bfd.
1502 First we try for a direct mapping between the input and output sections. */
1503 for (j = 1; j < elf_numsections (ibfd); j++)
1505 const Elf_Internal_Shdr * iheader = iheaders[j];
1507 if (iheader == NULL)
1510 if (oheader->bfd_section != NULL
1511 && iheader->bfd_section != NULL
1512 && iheader->bfd_section->output_section != NULL
1513 && iheader->bfd_section->output_section == oheader->bfd_section)
1515 /* We have found a connection from the input section to the
1516 output section. Attempt to copy the header fields. If
1517 this fails then do not try any further sections - there
1518 should only be a one-to-one mapping between input and output. */
1519 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1520 j = elf_numsections (ibfd);
1525 if (j < elf_numsections (ibfd))
1528 /* That failed. So try to deduce the corresponding input section.
1529 Unfortunately we cannot compare names as the output string table
1530 is empty, so instead we check size, address and type. */
1531 for (j = 1; j < elf_numsections (ibfd); j++)
1533 const Elf_Internal_Shdr * iheader = iheaders[j];
1535 if (iheader == NULL)
1538 /* Try matching fields in the input section's header.
1539 Since --only-keep-debug turns all non-debug sections into
1540 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1542 if ((oheader->sh_type == SHT_NOBITS
1543 || iheader->sh_type == oheader->sh_type)
1544 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1545 == (oheader->sh_flags & ~ SHF_INFO_LINK)
1546 && iheader->sh_addralign == oheader->sh_addralign
1547 && iheader->sh_entsize == oheader->sh_entsize
1548 && iheader->sh_size == oheader->sh_size
1549 && iheader->sh_addr == oheader->sh_addr
1550 && (iheader->sh_info != oheader->sh_info
1551 || iheader->sh_link != oheader->sh_link))
1553 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1558 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1560 /* Final attempt. Call the backend copy function
1561 with a NULL input section. */
1562 if (bed->elf_backend_copy_special_section_fields != NULL)
1563 bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
1571 get_segment_type (unsigned int p_type)
1576 case PT_NULL: pt = "NULL"; break;
1577 case PT_LOAD: pt = "LOAD"; break;
1578 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1579 case PT_INTERP: pt = "INTERP"; break;
1580 case PT_NOTE: pt = "NOTE"; break;
1581 case PT_SHLIB: pt = "SHLIB"; break;
1582 case PT_PHDR: pt = "PHDR"; break;
1583 case PT_TLS: pt = "TLS"; break;
1584 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
1585 case PT_GNU_STACK: pt = "STACK"; break;
1586 case PT_GNU_RELRO: pt = "RELRO"; break;
1587 default: pt = NULL; break;
1592 /* Print out the program headers. */
1595 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1597 FILE *f = (FILE *) farg;
1598 Elf_Internal_Phdr *p;
1600 bfd_byte *dynbuf = NULL;
1602 p = elf_tdata (abfd)->phdr;
1607 fprintf (f, _("\nProgram Header:\n"));
1608 c = elf_elfheader (abfd)->e_phnum;
1609 for (i = 0; i < c; i++, p++)
1611 const char *pt = get_segment_type (p->p_type);
1616 sprintf (buf, "0x%lx", p->p_type);
1619 fprintf (f, "%8s off 0x", pt);
1620 bfd_fprintf_vma (abfd, f, p->p_offset);
1621 fprintf (f, " vaddr 0x");
1622 bfd_fprintf_vma (abfd, f, p->p_vaddr);
1623 fprintf (f, " paddr 0x");
1624 bfd_fprintf_vma (abfd, f, p->p_paddr);
1625 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1626 fprintf (f, " filesz 0x");
1627 bfd_fprintf_vma (abfd, f, p->p_filesz);
1628 fprintf (f, " memsz 0x");
1629 bfd_fprintf_vma (abfd, f, p->p_memsz);
1630 fprintf (f, " flags %c%c%c",
1631 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1632 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1633 (p->p_flags & PF_X) != 0 ? 'x' : '-');
1634 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1635 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
1640 s = bfd_get_section_by_name (abfd, ".dynamic");
1643 unsigned int elfsec;
1644 unsigned long shlink;
1645 bfd_byte *extdyn, *extdynend;
1647 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1649 fprintf (f, _("\nDynamic Section:\n"));
1651 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1654 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1655 if (elfsec == SHN_BAD)
1657 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1659 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1660 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1663 /* PR 17512: file: 6f427532. */
1664 if (s->size < extdynsize)
1666 extdynend = extdyn + s->size;
1667 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1669 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
1671 Elf_Internal_Dyn dyn;
1672 const char *name = "";
1674 bfd_boolean stringp;
1675 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1677 (*swap_dyn_in) (abfd, extdyn, &dyn);
1679 if (dyn.d_tag == DT_NULL)
1686 if (bed->elf_backend_get_target_dtag)
1687 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1689 if (!strcmp (name, ""))
1691 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
1696 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
1697 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1698 case DT_PLTGOT: name = "PLTGOT"; break;
1699 case DT_HASH: name = "HASH"; break;
1700 case DT_STRTAB: name = "STRTAB"; break;
1701 case DT_SYMTAB: name = "SYMTAB"; break;
1702 case DT_RELA: name = "RELA"; break;
1703 case DT_RELASZ: name = "RELASZ"; break;
1704 case DT_RELAENT: name = "RELAENT"; break;
1705 case DT_STRSZ: name = "STRSZ"; break;
1706 case DT_SYMENT: name = "SYMENT"; break;
1707 case DT_INIT: name = "INIT"; break;
1708 case DT_FINI: name = "FINI"; break;
1709 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1710 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
1711 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1712 case DT_REL: name = "REL"; break;
1713 case DT_RELSZ: name = "RELSZ"; break;
1714 case DT_RELENT: name = "RELENT"; break;
1715 case DT_PLTREL: name = "PLTREL"; break;
1716 case DT_DEBUG: name = "DEBUG"; break;
1717 case DT_TEXTREL: name = "TEXTREL"; break;
1718 case DT_JMPREL: name = "JMPREL"; break;
1719 case DT_BIND_NOW: name = "BIND_NOW"; break;
1720 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1721 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1722 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1723 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
1724 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
1725 case DT_FLAGS: name = "FLAGS"; break;
1726 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1727 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
1728 case DT_CHECKSUM: name = "CHECKSUM"; break;
1729 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1730 case DT_MOVEENT: name = "MOVEENT"; break;
1731 case DT_MOVESZ: name = "MOVESZ"; break;
1732 case DT_FEATURE: name = "FEATURE"; break;
1733 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1734 case DT_SYMINSZ: name = "SYMINSZ"; break;
1735 case DT_SYMINENT: name = "SYMINENT"; break;
1736 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1737 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1738 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
1739 case DT_PLTPAD: name = "PLTPAD"; break;
1740 case DT_MOVETAB: name = "MOVETAB"; break;
1741 case DT_SYMINFO: name = "SYMINFO"; break;
1742 case DT_RELACOUNT: name = "RELACOUNT"; break;
1743 case DT_RELCOUNT: name = "RELCOUNT"; break;
1744 case DT_FLAGS_1: name = "FLAGS_1"; break;
1745 case DT_VERSYM: name = "VERSYM"; break;
1746 case DT_VERDEF: name = "VERDEF"; break;
1747 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1748 case DT_VERNEED: name = "VERNEED"; break;
1749 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
1750 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
1751 case DT_USED: name = "USED"; break;
1752 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
1753 case DT_GNU_HASH: name = "GNU_HASH"; break;
1756 fprintf (f, " %-20s ", name);
1760 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1765 unsigned int tagv = dyn.d_un.d_val;
1767 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1770 fprintf (f, "%s", string);
1779 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1780 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1782 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
1786 if (elf_dynverdef (abfd) != 0)
1788 Elf_Internal_Verdef *t;
1790 fprintf (f, _("\nVersion definitions:\n"));
1791 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1793 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
1794 t->vd_flags, t->vd_hash,
1795 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1796 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
1798 Elf_Internal_Verdaux *a;
1801 for (a = t->vd_auxptr->vda_nextptr;
1805 a->vda_nodename ? a->vda_nodename : "<corrupt>");
1811 if (elf_dynverref (abfd) != 0)
1813 Elf_Internal_Verneed *t;
1815 fprintf (f, _("\nVersion References:\n"));
1816 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1818 Elf_Internal_Vernaux *a;
1820 fprintf (f, _(" required from %s:\n"),
1821 t->vn_filename ? t->vn_filename : "<corrupt>");
1822 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1823 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
1824 a->vna_flags, a->vna_other,
1825 a->vna_nodename ? a->vna_nodename : "<corrupt>");
1837 /* Get version string. */
1840 _bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1841 bfd_boolean *hidden)
1843 const char *version_string = NULL;
1844 if (elf_dynversym (abfd) != 0
1845 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1847 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1849 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1850 vernum &= VERSYM_VERSION;
1853 version_string = "";
1854 else if (vernum == 1)
1855 version_string = "Base";
1856 else if (vernum <= elf_tdata (abfd)->cverdefs)
1858 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1861 Elf_Internal_Verneed *t;
1863 version_string = "";
1864 for (t = elf_tdata (abfd)->verref;
1868 Elf_Internal_Vernaux *a;
1870 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1872 if (a->vna_other == vernum)
1874 version_string = a->vna_nodename;
1881 return version_string;
1884 /* Display ELF-specific fields of a symbol. */
1887 bfd_elf_print_symbol (bfd *abfd,
1890 bfd_print_symbol_type how)
1892 FILE *file = (FILE *) filep;
1895 case bfd_print_symbol_name:
1896 fprintf (file, "%s", symbol->name);
1898 case bfd_print_symbol_more:
1899 fprintf (file, "elf ");
1900 bfd_fprintf_vma (abfd, file, symbol->value);
1901 fprintf (file, " %x", symbol->flags);
1903 case bfd_print_symbol_all:
1905 const char *section_name;
1906 const char *name = NULL;
1907 const struct elf_backend_data *bed;
1908 unsigned char st_other;
1910 const char *version_string;
1913 section_name = symbol->section ? symbol->section->name : "(*none*)";
1915 bed = get_elf_backend_data (abfd);
1916 if (bed->elf_backend_print_symbol_all)
1917 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1921 name = symbol->name;
1922 bfd_print_symbol_vandf (abfd, file, symbol);
1925 fprintf (file, " %s\t", section_name);
1926 /* Print the "other" value for a symbol. For common symbols,
1927 we've already printed the size; now print the alignment.
1928 For other symbols, we have no specified alignment, and
1929 we've printed the address; now print the size. */
1930 if (symbol->section && bfd_is_com_section (symbol->section))
1931 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1933 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1934 bfd_fprintf_vma (abfd, file, val);
1936 /* If we have version information, print it. */
1937 version_string = _bfd_elf_get_symbol_version_string (abfd,
1943 fprintf (file, " %-11s", version_string);
1948 fprintf (file, " (%s)", version_string);
1949 for (i = 10 - strlen (version_string); i > 0; --i)
1954 /* If the st_other field is not zero, print it. */
1955 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
1960 case STV_INTERNAL: fprintf (file, " .internal"); break;
1961 case STV_HIDDEN: fprintf (file, " .hidden"); break;
1962 case STV_PROTECTED: fprintf (file, " .protected"); break;
1964 /* Some other non-defined flags are also present, so print
1966 fprintf (file, " 0x%02x", (unsigned int) st_other);
1969 fprintf (file, " %s", name);
1975 /* ELF .o/exec file reading */
1977 /* Create a new bfd section from an ELF section header. */
1980 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
1982 Elf_Internal_Shdr *hdr;
1983 Elf_Internal_Ehdr *ehdr;
1984 const struct elf_backend_data *bed;
1986 bfd_boolean ret = TRUE;
1987 static bfd_boolean * sections_being_created = NULL;
1988 static bfd * sections_being_created_abfd = NULL;
1989 static unsigned int nesting = 0;
1991 if (shindex >= elf_numsections (abfd))
1996 /* PR17512: A corrupt ELF binary might contain a recursive group of
1997 sections, with each the string indicies pointing to the next in the
1998 loop. Detect this here, by refusing to load a section that we are
1999 already in the process of loading. We only trigger this test if
2000 we have nested at least three sections deep as normal ELF binaries
2001 can expect to recurse at least once.
2003 FIXME: It would be better if this array was attached to the bfd,
2004 rather than being held in a static pointer. */
2006 if (sections_being_created_abfd != abfd)
2007 sections_being_created = NULL;
2008 if (sections_being_created == NULL)
2010 /* FIXME: It would be more efficient to attach this array to the bfd somehow. */
2011 sections_being_created = (bfd_boolean *)
2012 bfd_zalloc (abfd, elf_numsections (abfd) * sizeof (bfd_boolean));
2013 sections_being_created_abfd = abfd;
2015 if (sections_being_created [shindex])
2018 (_("%pB: warning: loop in section dependencies detected"), abfd);
2021 sections_being_created [shindex] = TRUE;
2024 hdr = elf_elfsections (abfd)[shindex];
2025 ehdr = elf_elfheader (abfd);
2026 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
2031 bed = get_elf_backend_data (abfd);
2032 switch (hdr->sh_type)
2035 /* Inactive section. Throw it away. */
2038 case SHT_PROGBITS: /* Normal section with contents. */
2039 case SHT_NOBITS: /* .bss section. */
2040 case SHT_HASH: /* .hash section. */
2041 case SHT_NOTE: /* .note section. */
2042 case SHT_INIT_ARRAY: /* .init_array section. */
2043 case SHT_FINI_ARRAY: /* .fini_array section. */
2044 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
2045 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
2046 case SHT_GNU_HASH: /* .gnu.hash section. */
2047 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2050 case SHT_DYNAMIC: /* Dynamic linking information. */
2051 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2054 if (hdr->sh_link > elf_numsections (abfd))
2056 /* PR 10478: Accept Solaris binaries with a sh_link
2057 field set to SHN_BEFORE or SHN_AFTER. */
2058 switch (bfd_get_arch (abfd))
2061 case bfd_arch_sparc:
2062 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2063 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2065 /* Otherwise fall through. */
2070 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
2072 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
2074 Elf_Internal_Shdr *dynsymhdr;
2076 /* The shared libraries distributed with hpux11 have a bogus
2077 sh_link field for the ".dynamic" section. Find the
2078 string table for the ".dynsym" section instead. */
2079 if (elf_dynsymtab (abfd) != 0)
2081 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2082 hdr->sh_link = dynsymhdr->sh_link;
2086 unsigned int i, num_sec;
2088 num_sec = elf_numsections (abfd);
2089 for (i = 1; i < num_sec; i++)
2091 dynsymhdr = elf_elfsections (abfd)[i];
2092 if (dynsymhdr->sh_type == SHT_DYNSYM)
2094 hdr->sh_link = dynsymhdr->sh_link;
2102 case SHT_SYMTAB: /* A symbol table. */
2103 if (elf_onesymtab (abfd) == shindex)
2106 if (hdr->sh_entsize != bed->s->sizeof_sym)
2109 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2111 if (hdr->sh_size != 0)
2113 /* Some assemblers erroneously set sh_info to one with a
2114 zero sh_size. ld sees this as a global symbol count
2115 of (unsigned) -1. Fix it here. */
2120 /* PR 18854: A binary might contain more than one symbol table.
2121 Unusual, but possible. Warn, but continue. */
2122 if (elf_onesymtab (abfd) != 0)
2125 /* xgettext:c-format */
2126 (_("%pB: warning: multiple symbol tables detected"
2127 " - ignoring the table in section %u"),
2131 elf_onesymtab (abfd) = shindex;
2132 elf_symtab_hdr (abfd) = *hdr;
2133 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
2134 abfd->flags |= HAS_SYMS;
2136 /* Sometimes a shared object will map in the symbol table. If
2137 SHF_ALLOC is set, and this is a shared object, then we also
2138 treat this section as a BFD section. We can not base the
2139 decision purely on SHF_ALLOC, because that flag is sometimes
2140 set in a relocatable object file, which would confuse the
2142 if ((hdr->sh_flags & SHF_ALLOC) != 0
2143 && (abfd->flags & DYNAMIC) != 0
2144 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2148 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2149 can't read symbols without that section loaded as well. It
2150 is most likely specified by the next section header. */
2152 elf_section_list * entry;
2153 unsigned int i, num_sec;
2155 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2156 if (entry->hdr.sh_link == shindex)
2159 num_sec = elf_numsections (abfd);
2160 for (i = shindex + 1; i < num_sec; i++)
2162 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2164 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2165 && hdr2->sh_link == shindex)
2170 for (i = 1; i < shindex; i++)
2172 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2174 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2175 && hdr2->sh_link == shindex)
2180 ret = bfd_section_from_shdr (abfd, i);
2181 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2185 case SHT_DYNSYM: /* A dynamic symbol table. */
2186 if (elf_dynsymtab (abfd) == shindex)
2189 if (hdr->sh_entsize != bed->s->sizeof_sym)
2192 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2194 if (hdr->sh_size != 0)
2197 /* Some linkers erroneously set sh_info to one with a
2198 zero sh_size. ld sees this as a global symbol count
2199 of (unsigned) -1. Fix it here. */
2204 /* PR 18854: A binary might contain more than one dynamic symbol table.
2205 Unusual, but possible. Warn, but continue. */
2206 if (elf_dynsymtab (abfd) != 0)
2209 /* xgettext:c-format */
2210 (_("%pB: warning: multiple dynamic symbol tables detected"
2211 " - ignoring the table in section %u"),
2215 elf_dynsymtab (abfd) = shindex;
2216 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2217 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2218 abfd->flags |= HAS_SYMS;
2220 /* Besides being a symbol table, we also treat this as a regular
2221 section, so that objcopy can handle it. */
2222 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2225 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
2227 elf_section_list * entry;
2229 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2230 if (entry->ndx == shindex)
2233 entry = bfd_alloc (abfd, sizeof * entry);
2236 entry->ndx = shindex;
2238 entry->next = elf_symtab_shndx_list (abfd);
2239 elf_symtab_shndx_list (abfd) = entry;
2240 elf_elfsections (abfd)[shindex] = & entry->hdr;
2244 case SHT_STRTAB: /* A string table. */
2245 if (hdr->bfd_section != NULL)
2248 if (ehdr->e_shstrndx == shindex)
2250 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2251 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
2255 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2258 elf_tdata (abfd)->strtab_hdr = *hdr;
2259 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
2263 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2266 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2267 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2268 elf_elfsections (abfd)[shindex] = hdr;
2269 /* We also treat this as a regular section, so that objcopy
2271 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2276 /* If the string table isn't one of the above, then treat it as a
2277 regular section. We need to scan all the headers to be sure,
2278 just in case this strtab section appeared before the above. */
2279 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2281 unsigned int i, num_sec;
2283 num_sec = elf_numsections (abfd);
2284 for (i = 1; i < num_sec; i++)
2286 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2287 if (hdr2->sh_link == shindex)
2289 /* Prevent endless recursion on broken objects. */
2292 if (! bfd_section_from_shdr (abfd, i))
2294 if (elf_onesymtab (abfd) == i)
2296 if (elf_dynsymtab (abfd) == i)
2297 goto dynsymtab_strtab;
2301 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2306 /* *These* do a lot of work -- but build no sections! */
2308 asection *target_sect;
2309 Elf_Internal_Shdr *hdr2, **p_hdr;
2310 unsigned int num_sec = elf_numsections (abfd);
2311 struct bfd_elf_section_data *esdt;
2314 != (bfd_size_type) (hdr->sh_type == SHT_REL
2315 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
2318 /* Check for a bogus link to avoid crashing. */
2319 if (hdr->sh_link >= num_sec)
2322 /* xgettext:c-format */
2323 (_("%pB: invalid link %u for reloc section %s (index %u)"),
2324 abfd, hdr->sh_link, name, shindex);
2325 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2330 /* For some incomprehensible reason Oracle distributes
2331 libraries for Solaris in which some of the objects have
2332 bogus sh_link fields. It would be nice if we could just
2333 reject them, but, unfortunately, some people need to use
2334 them. We scan through the section headers; if we find only
2335 one suitable symbol table, we clobber the sh_link to point
2336 to it. I hope this doesn't break anything.
2338 Don't do it on executable nor shared library. */
2339 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2340 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
2341 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2347 for (scan = 1; scan < num_sec; scan++)
2349 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2350 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2361 hdr->sh_link = found;
2364 /* Get the symbol table. */
2365 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2366 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
2367 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
2370 /* If this reloc section does not use the main symbol table we
2371 don't treat it as a reloc section. BFD can't adequately
2372 represent such a section, so at least for now, we don't
2373 try. We just present it as a normal section. We also
2374 can't use it as a reloc section if it points to the null
2375 section, an invalid section, another reloc section, or its
2376 sh_link points to the null section. */
2377 if (hdr->sh_link != elf_onesymtab (abfd)
2378 || hdr->sh_link == SHN_UNDEF
2379 || hdr->sh_info == SHN_UNDEF
2380 || hdr->sh_info >= num_sec
2381 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2382 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
2384 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2389 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
2392 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2393 if (target_sect == NULL)
2396 esdt = elf_section_data (target_sect);
2397 if (hdr->sh_type == SHT_RELA)
2398 p_hdr = &esdt->rela.hdr;
2400 p_hdr = &esdt->rel.hdr;
2402 /* PR 17512: file: 0b4f81b7. */
2405 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
2410 elf_elfsections (abfd)[shindex] = hdr2;
2411 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2412 * bed->s->int_rels_per_ext_rel);
2413 target_sect->flags |= SEC_RELOC;
2414 target_sect->relocation = NULL;
2415 target_sect->rel_filepos = hdr->sh_offset;
2416 /* In the section to which the relocations apply, mark whether
2417 its relocations are of the REL or RELA variety. */
2418 if (hdr->sh_size != 0)
2420 if (hdr->sh_type == SHT_RELA)
2421 target_sect->use_rela_p = 1;
2423 abfd->flags |= HAS_RELOC;
2427 case SHT_GNU_verdef:
2428 elf_dynverdef (abfd) = shindex;
2429 elf_tdata (abfd)->dynverdef_hdr = *hdr;
2430 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2433 case SHT_GNU_versym:
2434 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
2437 elf_dynversym (abfd) = shindex;
2438 elf_tdata (abfd)->dynversym_hdr = *hdr;
2439 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2442 case SHT_GNU_verneed:
2443 elf_dynverref (abfd) = shindex;
2444 elf_tdata (abfd)->dynverref_hdr = *hdr;
2445 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2452 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
2455 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2461 /* Possibly an attributes section. */
2462 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2463 || hdr->sh_type == bed->obj_attrs_section_type)
2465 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2467 _bfd_elf_parse_attributes (abfd, hdr);
2471 /* Check for any processor-specific section types. */
2472 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
2475 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2477 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2478 /* FIXME: How to properly handle allocated section reserved
2479 for applications? */
2481 /* xgettext:c-format */
2482 (_("%pB: unknown type [%#x] section `%s'"),
2483 abfd, hdr->sh_type, name);
2486 /* Allow sections reserved for applications. */
2487 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2492 else if (hdr->sh_type >= SHT_LOPROC
2493 && hdr->sh_type <= SHT_HIPROC)
2494 /* FIXME: We should handle this section. */
2496 /* xgettext:c-format */
2497 (_("%pB: unknown type [%#x] section `%s'"),
2498 abfd, hdr->sh_type, name);
2499 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
2501 /* Unrecognised OS-specific sections. */
2502 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2503 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2504 required to correctly process the section and the file should
2505 be rejected with an error message. */
2507 /* xgettext:c-format */
2508 (_("%pB: unknown type [%#x] section `%s'"),
2509 abfd, hdr->sh_type, name);
2512 /* Otherwise it should be processed. */
2513 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2518 /* FIXME: We should handle this section. */
2520 /* xgettext:c-format */
2521 (_("%pB: unknown type [%#x] section `%s'"),
2522 abfd, hdr->sh_type, name);
2530 if (sections_being_created && sections_being_created_abfd == abfd)
2531 sections_being_created [shindex] = FALSE;
2532 if (-- nesting == 0)
2534 sections_being_created = NULL;
2535 sections_being_created_abfd = abfd;
2540 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2543 bfd_sym_from_r_symndx (struct sym_cache *cache,
2545 unsigned long r_symndx)
2547 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2549 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2551 Elf_Internal_Shdr *symtab_hdr;
2552 unsigned char esym[sizeof (Elf64_External_Sym)];
2553 Elf_External_Sym_Shndx eshndx;
2555 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2556 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
2557 &cache->sym[ent], esym, &eshndx) == NULL)
2560 if (cache->abfd != abfd)
2562 memset (cache->indx, -1, sizeof (cache->indx));
2565 cache->indx[ent] = r_symndx;
2568 return &cache->sym[ent];
2571 /* Given an ELF section number, retrieve the corresponding BFD
2575 bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
2577 if (sec_index >= elf_numsections (abfd))
2579 return elf_elfsections (abfd)[sec_index]->bfd_section;
2582 static const struct bfd_elf_special_section special_sections_b[] =
2584 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2585 { NULL, 0, 0, 0, 0 }
2588 static const struct bfd_elf_special_section special_sections_c[] =
2590 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
2591 { NULL, 0, 0, 0, 0 }
2594 static const struct bfd_elf_special_section special_sections_d[] =
2596 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2597 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2598 /* There are more DWARF sections than these, but they needn't be added here
2599 unless you have to cope with broken compilers that don't emit section
2600 attributes or you want to help the user writing assembler. */
2601 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2602 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2603 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2604 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
2605 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
2606 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2607 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2608 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2609 { NULL, 0, 0, 0, 0 }
2612 static const struct bfd_elf_special_section special_sections_f[] =
2614 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2615 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2616 { NULL, 0 , 0, 0, 0 }
2619 static const struct bfd_elf_special_section special_sections_g[] =
2621 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2622 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2623 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2624 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
2625 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2626 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
2627 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2628 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2629 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2630 { NULL, 0, 0, 0, 0 }
2633 static const struct bfd_elf_special_section special_sections_h[] =
2635 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2636 { NULL, 0, 0, 0, 0 }
2639 static const struct bfd_elf_special_section special_sections_i[] =
2641 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2642 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2643 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2644 { NULL, 0, 0, 0, 0 }
2647 static const struct bfd_elf_special_section special_sections_l[] =
2649 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
2650 { NULL, 0, 0, 0, 0 }
2653 static const struct bfd_elf_special_section special_sections_n[] =
2655 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
2656 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2657 { NULL, 0, 0, 0, 0 }
2660 static const struct bfd_elf_special_section special_sections_p[] =
2662 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2663 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2664 { NULL, 0, 0, 0, 0 }
2667 static const struct bfd_elf_special_section special_sections_r[] =
2669 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2670 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
2671 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2672 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2673 { NULL, 0, 0, 0, 0 }
2676 static const struct bfd_elf_special_section special_sections_s[] =
2678 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2679 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2680 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
2681 /* See struct bfd_elf_special_section declaration for the semantics of
2682 this special case where .prefix_length != strlen (.prefix). */
2683 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2684 { NULL, 0, 0, 0, 0 }
2687 static const struct bfd_elf_special_section special_sections_t[] =
2689 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2690 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2691 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2692 { NULL, 0, 0, 0, 0 }
2695 static const struct bfd_elf_special_section special_sections_z[] =
2697 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2698 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
2699 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2700 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
2701 { NULL, 0, 0, 0, 0 }
2704 static const struct bfd_elf_special_section * const special_sections[] =
2706 special_sections_b, /* 'b' */
2707 special_sections_c, /* 'c' */
2708 special_sections_d, /* 'd' */
2710 special_sections_f, /* 'f' */
2711 special_sections_g, /* 'g' */
2712 special_sections_h, /* 'h' */
2713 special_sections_i, /* 'i' */
2716 special_sections_l, /* 'l' */
2718 special_sections_n, /* 'n' */
2720 special_sections_p, /* 'p' */
2722 special_sections_r, /* 'r' */
2723 special_sections_s, /* 's' */
2724 special_sections_t, /* 't' */
2730 special_sections_z /* 'z' */
2733 const struct bfd_elf_special_section *
2734 _bfd_elf_get_special_section (const char *name,
2735 const struct bfd_elf_special_section *spec,
2741 len = strlen (name);
2743 for (i = 0; spec[i].prefix != NULL; i++)
2746 int prefix_len = spec[i].prefix_length;
2748 if (len < prefix_len)
2750 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
2753 suffix_len = spec[i].suffix_length;
2754 if (suffix_len <= 0)
2756 if (name[prefix_len] != 0)
2758 if (suffix_len == 0)
2760 if (name[prefix_len] != '.'
2761 && (suffix_len == -2
2762 || (rela && spec[i].type == SHT_REL)))
2768 if (len < prefix_len + suffix_len)
2770 if (memcmp (name + len - suffix_len,
2771 spec[i].prefix + prefix_len,
2781 const struct bfd_elf_special_section *
2782 _bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2785 const struct bfd_elf_special_section *spec;
2786 const struct elf_backend_data *bed;
2788 /* See if this is one of the special sections. */
2789 if (sec->name == NULL)
2792 bed = get_elf_backend_data (abfd);
2793 spec = bed->special_sections;
2796 spec = _bfd_elf_get_special_section (sec->name,
2797 bed->special_sections,
2803 if (sec->name[0] != '.')
2806 i = sec->name[1] - 'b';
2807 if (i < 0 || i > 'z' - 'b')
2810 spec = special_sections[i];
2815 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2819 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2821 struct bfd_elf_section_data *sdata;
2822 const struct elf_backend_data *bed;
2823 const struct bfd_elf_special_section *ssect;
2825 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2828 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
2832 sec->used_by_bfd = sdata;
2835 /* Indicate whether or not this section should use RELA relocations. */
2836 bed = get_elf_backend_data (abfd);
2837 sec->use_rela_p = bed->default_use_rela_p;
2839 /* When we read a file, we don't need to set ELF section type and
2840 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2841 anyway. We will set ELF section type and flags for all linker
2842 created sections. If user specifies BFD section flags, we will
2843 set ELF section type and flags based on BFD section flags in
2844 elf_fake_sections. Special handling for .init_array/.fini_array
2845 output sections since they may contain .ctors/.dtors input
2846 sections. We don't want _bfd_elf_init_private_section_data to
2847 copy ELF section type from .ctors/.dtors input sections. */
2848 if (abfd->direction != read_direction
2849 || (sec->flags & SEC_LINKER_CREATED) != 0)
2851 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2854 || (sec->flags & SEC_LINKER_CREATED) != 0
2855 || ssect->type == SHT_INIT_ARRAY
2856 || ssect->type == SHT_FINI_ARRAY))
2858 elf_section_type (sec) = ssect->type;
2859 elf_section_flags (sec) = ssect->attr;
2863 return _bfd_generic_new_section_hook (abfd, sec);
2866 /* Create a new bfd section from an ELF program header.
2868 Since program segments have no names, we generate a synthetic name
2869 of the form segment<NUM>, where NUM is generally the index in the
2870 program header table. For segments that are split (see below) we
2871 generate the names segment<NUM>a and segment<NUM>b.
2873 Note that some program segments may have a file size that is different than
2874 (less than) the memory size. All this means is that at execution the
2875 system must allocate the amount of memory specified by the memory size,
2876 but only initialize it with the first "file size" bytes read from the
2877 file. This would occur for example, with program segments consisting
2878 of combined data+bss.
2880 To handle the above situation, this routine generates TWO bfd sections
2881 for the single program segment. The first has the length specified by
2882 the file size of the segment, and the second has the length specified
2883 by the difference between the two sizes. In effect, the segment is split
2884 into its initialized and uninitialized parts.
2889 _bfd_elf_make_section_from_phdr (bfd *abfd,
2890 Elf_Internal_Phdr *hdr,
2892 const char *type_name)
2900 split = ((hdr->p_memsz > 0)
2901 && (hdr->p_filesz > 0)
2902 && (hdr->p_memsz > hdr->p_filesz));
2904 if (hdr->p_filesz > 0)
2906 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
2907 len = strlen (namebuf) + 1;
2908 name = (char *) bfd_alloc (abfd, len);
2911 memcpy (name, namebuf, len);
2912 newsect = bfd_make_section (abfd, name);
2913 if (newsect == NULL)
2915 newsect->vma = hdr->p_vaddr;
2916 newsect->lma = hdr->p_paddr;
2917 newsect->size = hdr->p_filesz;
2918 newsect->filepos = hdr->p_offset;
2919 newsect->flags |= SEC_HAS_CONTENTS;
2920 newsect->alignment_power = bfd_log2 (hdr->p_align);
2921 if (hdr->p_type == PT_LOAD)
2923 newsect->flags |= SEC_ALLOC;
2924 newsect->flags |= SEC_LOAD;
2925 if (hdr->p_flags & PF_X)
2927 /* FIXME: all we known is that it has execute PERMISSION,
2929 newsect->flags |= SEC_CODE;
2932 if (!(hdr->p_flags & PF_W))
2934 newsect->flags |= SEC_READONLY;
2938 if (hdr->p_memsz > hdr->p_filesz)
2942 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
2943 len = strlen (namebuf) + 1;
2944 name = (char *) bfd_alloc (abfd, len);
2947 memcpy (name, namebuf, len);
2948 newsect = bfd_make_section (abfd, name);
2949 if (newsect == NULL)
2951 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
2952 newsect->lma = hdr->p_paddr + hdr->p_filesz;
2953 newsect->size = hdr->p_memsz - hdr->p_filesz;
2954 newsect->filepos = hdr->p_offset + hdr->p_filesz;
2955 align = newsect->vma & -newsect->vma;
2956 if (align == 0 || align > hdr->p_align)
2957 align = hdr->p_align;
2958 newsect->alignment_power = bfd_log2 (align);
2959 if (hdr->p_type == PT_LOAD)
2961 /* Hack for gdb. Segments that have not been modified do
2962 not have their contents written to a core file, on the
2963 assumption that a debugger can find the contents in the
2964 executable. We flag this case by setting the fake
2965 section size to zero. Note that "real" bss sections will
2966 always have their contents dumped to the core file. */
2967 if (bfd_get_format (abfd) == bfd_core)
2969 newsect->flags |= SEC_ALLOC;
2970 if (hdr->p_flags & PF_X)
2971 newsect->flags |= SEC_CODE;
2973 if (!(hdr->p_flags & PF_W))
2974 newsect->flags |= SEC_READONLY;
2981 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
2983 const struct elf_backend_data *bed;
2985 switch (hdr->p_type)
2988 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
2991 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load");
2994 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
2997 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
3000 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
3002 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3008 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
3011 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
3013 case PT_GNU_EH_FRAME:
3014 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
3018 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
3021 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
3024 /* Check for any processor-specific program segment types. */
3025 bed = get_elf_backend_data (abfd);
3026 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
3030 /* Return the REL_HDR for SEC, assuming there is only a single one, either
3034 _bfd_elf_single_rel_hdr (asection *sec)
3036 if (elf_section_data (sec)->rel.hdr)
3038 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3039 return elf_section_data (sec)->rel.hdr;
3042 return elf_section_data (sec)->rela.hdr;
3046 _bfd_elf_set_reloc_sh_name (bfd *abfd,
3047 Elf_Internal_Shdr *rel_hdr,
3048 const char *sec_name,
3049 bfd_boolean use_rela_p)
3051 char *name = (char *) bfd_alloc (abfd,
3052 sizeof ".rela" + strlen (sec_name));
3056 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3058 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3060 if (rel_hdr->sh_name == (unsigned int) -1)
3066 /* Allocate and initialize a section-header for a new reloc section,
3067 containing relocations against ASECT. It is stored in RELDATA. If
3068 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3072 _bfd_elf_init_reloc_shdr (bfd *abfd,
3073 struct bfd_elf_section_reloc_data *reldata,
3074 const char *sec_name,
3075 bfd_boolean use_rela_p,
3076 bfd_boolean delay_st_name_p)
3078 Elf_Internal_Shdr *rel_hdr;
3079 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3081 BFD_ASSERT (reldata->hdr == NULL);
3082 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
3083 reldata->hdr = rel_hdr;
3085 if (delay_st_name_p)
3086 rel_hdr->sh_name = (unsigned int) -1;
3087 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3090 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3091 rel_hdr->sh_entsize = (use_rela_p
3092 ? bed->s->sizeof_rela
3093 : bed->s->sizeof_rel);
3094 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
3095 rel_hdr->sh_flags = 0;
3096 rel_hdr->sh_addr = 0;
3097 rel_hdr->sh_size = 0;
3098 rel_hdr->sh_offset = 0;
3103 /* Return the default section type based on the passed in section flags. */
3106 bfd_elf_get_default_section_type (flagword flags)
3108 if ((flags & SEC_ALLOC) != 0
3109 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3111 return SHT_PROGBITS;
3114 struct fake_section_arg
3116 struct bfd_link_info *link_info;
3120 /* Set up an ELF internal section header for a section. */
3123 elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
3125 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
3126 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3127 struct bfd_elf_section_data *esd = elf_section_data (asect);
3128 Elf_Internal_Shdr *this_hdr;
3129 unsigned int sh_type;
3130 const char *name = asect->name;
3131 bfd_boolean delay_st_name_p = FALSE;
3135 /* We already failed; just get out of the bfd_map_over_sections
3140 this_hdr = &esd->this_hdr;
3144 /* ld: compress DWARF debug sections with names: .debug_*. */
3145 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3146 && (asect->flags & SEC_DEBUGGING)
3150 /* Set SEC_ELF_COMPRESS to indicate this section should be
3152 asect->flags |= SEC_ELF_COMPRESS;
3154 /* If this section will be compressed, delay adding section
3155 name to section name section after it is compressed in
3156 _bfd_elf_assign_file_positions_for_non_load. */
3157 delay_st_name_p = TRUE;
3160 else if ((asect->flags & SEC_ELF_RENAME))
3162 /* objcopy: rename output DWARF debug section. */
3163 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3165 /* When we decompress or compress with SHF_COMPRESSED,
3166 convert section name from .zdebug_* to .debug_* if
3170 char *new_name = convert_zdebug_to_debug (abfd, name);
3171 if (new_name == NULL)
3179 else if (asect->compress_status == COMPRESS_SECTION_DONE)
3181 /* PR binutils/18087: Compression does not always make a
3182 section smaller. So only rename the section when
3183 compression has actually taken place. If input section
3184 name is .zdebug_*, we should never compress it again. */
3185 char *new_name = convert_debug_to_zdebug (abfd, name);
3186 if (new_name == NULL)
3191 BFD_ASSERT (name[1] != 'z');
3196 if (delay_st_name_p)
3197 this_hdr->sh_name = (unsigned int) -1;
3201 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3203 if (this_hdr->sh_name == (unsigned int) -1)
3210 /* Don't clear sh_flags. Assembler may set additional bits. */
3212 if ((asect->flags & SEC_ALLOC) != 0
3213 || asect->user_set_vma)
3214 this_hdr->sh_addr = asect->vma;
3216 this_hdr->sh_addr = 0;
3218 this_hdr->sh_offset = 0;
3219 this_hdr->sh_size = asect->size;
3220 this_hdr->sh_link = 0;
3221 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3222 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3225 /* xgettext:c-format */
3226 (_("%pB: error: Alignment power %d of section `%pA' is too big"),
3227 abfd, asect->alignment_power, asect);
3231 this_hdr->sh_addralign = (bfd_vma) 1 << asect->alignment_power;
3232 /* The sh_entsize and sh_info fields may have been set already by
3233 copy_private_section_data. */
3235 this_hdr->bfd_section = asect;
3236 this_hdr->contents = NULL;
3238 /* If the section type is unspecified, we set it based on
3240 if ((asect->flags & SEC_GROUP) != 0)
3241 sh_type = SHT_GROUP;
3243 sh_type = bfd_elf_get_default_section_type (asect->flags);
3245 if (this_hdr->sh_type == SHT_NULL)
3246 this_hdr->sh_type = sh_type;
3247 else if (this_hdr->sh_type == SHT_NOBITS
3248 && sh_type == SHT_PROGBITS
3249 && (asect->flags & SEC_ALLOC) != 0)
3251 /* Warn if we are changing a NOBITS section to PROGBITS, but
3252 allow the link to proceed. This can happen when users link
3253 non-bss input sections to bss output sections, or emit data
3254 to a bss output section via a linker script. */
3256 (_("warning: section `%pA' type changed to PROGBITS"), asect);
3257 this_hdr->sh_type = sh_type;
3260 switch (this_hdr->sh_type)
3271 case SHT_INIT_ARRAY:
3272 case SHT_FINI_ARRAY:
3273 case SHT_PREINIT_ARRAY:
3274 this_hdr->sh_entsize = bed->s->arch_size / 8;
3278 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
3282 this_hdr->sh_entsize = bed->s->sizeof_sym;
3286 this_hdr->sh_entsize = bed->s->sizeof_dyn;
3290 if (get_elf_backend_data (abfd)->may_use_rela_p)
3291 this_hdr->sh_entsize = bed->s->sizeof_rela;
3295 if (get_elf_backend_data (abfd)->may_use_rel_p)
3296 this_hdr->sh_entsize = bed->s->sizeof_rel;
3299 case SHT_GNU_versym:
3300 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
3303 case SHT_GNU_verdef:
3304 this_hdr->sh_entsize = 0;
3305 /* objcopy or strip will copy over sh_info, but may not set
3306 cverdefs. The linker will set cverdefs, but sh_info will be
3308 if (this_hdr->sh_info == 0)
3309 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3311 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3312 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
3315 case SHT_GNU_verneed:
3316 this_hdr->sh_entsize = 0;
3317 /* objcopy or strip will copy over sh_info, but may not set
3318 cverrefs. The linker will set cverrefs, but sh_info will be
3320 if (this_hdr->sh_info == 0)
3321 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3323 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3324 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
3328 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
3332 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3336 if ((asect->flags & SEC_ALLOC) != 0)
3337 this_hdr->sh_flags |= SHF_ALLOC;
3338 if ((asect->flags & SEC_READONLY) == 0)
3339 this_hdr->sh_flags |= SHF_WRITE;
3340 if ((asect->flags & SEC_CODE) != 0)
3341 this_hdr->sh_flags |= SHF_EXECINSTR;
3342 if ((asect->flags & SEC_MERGE) != 0)
3344 this_hdr->sh_flags |= SHF_MERGE;
3345 this_hdr->sh_entsize = asect->entsize;
3347 if ((asect->flags & SEC_STRINGS) != 0)
3348 this_hdr->sh_flags |= SHF_STRINGS;
3349 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
3350 this_hdr->sh_flags |= SHF_GROUP;
3351 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
3353 this_hdr->sh_flags |= SHF_TLS;
3354 if (asect->size == 0
3355 && (asect->flags & SEC_HAS_CONTENTS) == 0)
3357 struct bfd_link_order *o = asect->map_tail.link_order;
3359 this_hdr->sh_size = 0;
3362 this_hdr->sh_size = o->offset + o->size;
3363 if (this_hdr->sh_size != 0)
3364 this_hdr->sh_type = SHT_NOBITS;
3368 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3369 this_hdr->sh_flags |= SHF_EXCLUDE;
3371 /* If the section has relocs, set up a section header for the
3372 SHT_REL[A] section. If two relocation sections are required for
3373 this section, it is up to the processor-specific back-end to
3374 create the other. */
3375 if ((asect->flags & SEC_RELOC) != 0)
3377 /* When doing a relocatable link, create both REL and RELA sections if
3380 /* Do the normal setup if we wouldn't create any sections here. */
3381 && esd->rel.count + esd->rela.count > 0
3382 && (bfd_link_relocatable (arg->link_info)
3383 || arg->link_info->emitrelocations))
3385 if (esd->rel.count && esd->rel.hdr == NULL
3386 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
3387 FALSE, delay_st_name_p))
3392 if (esd->rela.count && esd->rela.hdr == NULL
3393 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
3394 TRUE, delay_st_name_p))
3400 else if (!_bfd_elf_init_reloc_shdr (abfd,
3402 ? &esd->rela : &esd->rel),
3412 /* Check for processor-specific section types. */
3413 sh_type = this_hdr->sh_type;
3414 if (bed->elf_backend_fake_sections
3415 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
3421 if (sh_type == SHT_NOBITS && asect->size != 0)
3423 /* Don't change the header type from NOBITS if we are being
3424 called for objcopy --only-keep-debug. */
3425 this_hdr->sh_type = sh_type;
3429 /* Fill in the contents of a SHT_GROUP section. Called from
3430 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3431 when ELF targets use the generic linker, ld. Called for ld -r
3432 from bfd_elf_final_link. */
3435 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
3437 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
3438 asection *elt, *first;
3442 /* Ignore linker created group section. See elfNN_ia64_object_p in
3444 if (((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP)
3448 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3450 unsigned long symindx = 0;
3452 /* elf_group_id will have been set up by objcopy and the
3454 if (elf_group_id (sec) != NULL)
3455 symindx = elf_group_id (sec)->udata.i;
3459 /* If called from the assembler, swap_out_syms will have set up
3460 elf_section_syms. */
3461 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3462 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3464 elf_section_data (sec)->this_hdr.sh_info = symindx;
3466 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
3468 /* The ELF backend linker sets sh_info to -2 when the group
3469 signature symbol is global, and thus the index can't be
3470 set until all local symbols are output. */
3472 struct bfd_elf_section_data *sec_data;
3473 unsigned long symndx;
3474 unsigned long extsymoff;
3475 struct elf_link_hash_entry *h;
3477 /* The point of this little dance to the first SHF_GROUP section
3478 then back to the SHT_GROUP section is that this gets us to
3479 the SHT_GROUP in the input object. */
3480 igroup = elf_sec_group (elf_next_in_group (sec));
3481 sec_data = elf_section_data (igroup);
3482 symndx = sec_data->this_hdr.sh_info;
3484 if (!elf_bad_symtab (igroup->owner))
3486 Elf_Internal_Shdr *symtab_hdr;
3488 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3489 extsymoff = symtab_hdr->sh_info;
3491 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3492 while (h->root.type == bfd_link_hash_indirect
3493 || h->root.type == bfd_link_hash_warning)
3494 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3496 elf_section_data (sec)->this_hdr.sh_info = h->indx;
3499 /* The contents won't be allocated for "ld -r" or objcopy. */
3501 if (sec->contents == NULL)
3504 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
3506 /* Arrange for the section to be written out. */
3507 elf_section_data (sec)->this_hdr.contents = sec->contents;
3508 if (sec->contents == NULL)
3515 loc = sec->contents + sec->size;
3517 /* Get the pointer to the first section in the group that gas
3518 squirreled away here. objcopy arranges for this to be set to the
3519 start of the input section group. */
3520 first = elt = elf_next_in_group (sec);
3522 /* First element is a flag word. Rest of section is elf section
3523 indices for all the sections of the group. Write them backwards
3524 just to keep the group in the same order as given in .section
3525 directives, not that it matters. */
3532 s = s->output_section;
3534 && !bfd_is_abs_section (s))
3536 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
3537 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3539 if (elf_sec->rel.hdr != NULL
3541 || (input_elf_sec->rel.hdr != NULL
3542 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
3544 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
3546 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3548 if (elf_sec->rela.hdr != NULL
3550 || (input_elf_sec->rela.hdr != NULL
3551 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
3553 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
3555 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3558 H_PUT_32 (abfd, elf_sec->this_idx, loc);
3560 elt = elf_next_in_group (elt);
3566 BFD_ASSERT (loc == sec->contents);
3568 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
3571 /* Given NAME, the name of a relocation section stripped of its
3572 .rel/.rela prefix, return the section in ABFD to which the
3573 relocations apply. */
3576 _bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3578 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3579 section likely apply to .got.plt or .got section. */
3580 if (get_elf_backend_data (abfd)->want_got_plt
3581 && strcmp (name, ".plt") == 0)
3586 sec = bfd_get_section_by_name (abfd, name);
3592 return bfd_get_section_by_name (abfd, name);
3595 /* Return the section to which RELOC_SEC applies. */
3598 elf_get_reloc_section (asection *reloc_sec)
3603 const struct elf_backend_data *bed;
3605 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3606 if (type != SHT_REL && type != SHT_RELA)
3609 /* We look up the section the relocs apply to by name. */
3610 name = reloc_sec->name;
3611 if (strncmp (name, ".rel", 4) != 0)
3614 if (type == SHT_RELA && *name++ != 'a')
3617 abfd = reloc_sec->owner;
3618 bed = get_elf_backend_data (abfd);
3619 return bed->get_reloc_section (abfd, name);
3622 /* Assign all ELF section numbers. The dummy first section is handled here
3623 too. The link/info pointers for the standard section types are filled
3624 in here too, while we're at it. */
3627 assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
3629 struct elf_obj_tdata *t = elf_tdata (abfd);
3631 unsigned int section_number;
3632 Elf_Internal_Shdr **i_shdrp;
3633 struct bfd_elf_section_data *d;
3634 bfd_boolean need_symtab;
3638 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3640 /* SHT_GROUP sections are in relocatable files only. */
3641 if (link_info == NULL || !link_info->resolve_section_groups)
3643 size_t reloc_count = 0;
3645 /* Put SHT_GROUP sections first. */
3646 for (sec = abfd->sections; sec != NULL; sec = sec->next)
3648 d = elf_section_data (sec);
3650 if (d->this_hdr.sh_type == SHT_GROUP)
3652 if (sec->flags & SEC_LINKER_CREATED)
3654 /* Remove the linker created SHT_GROUP sections. */
3655 bfd_section_list_remove (abfd, sec);
3656 abfd->section_count--;
3659 d->this_idx = section_number++;
3662 /* Count relocations. */
3663 reloc_count += sec->reloc_count;
3666 /* Clear HAS_RELOC if there are no relocations. */
3667 if (reloc_count == 0)
3668 abfd->flags &= ~HAS_RELOC;
3671 for (sec = abfd->sections; sec; sec = sec->next)
3673 d = elf_section_data (sec);
3675 if (d->this_hdr.sh_type != SHT_GROUP)
3676 d->this_idx = section_number++;
3677 if (d->this_hdr.sh_name != (unsigned int) -1)
3678 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
3681 d->rel.idx = section_number++;
3682 if (d->rel.hdr->sh_name != (unsigned int) -1)
3683 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
3690 d->rela.idx = section_number++;
3691 if (d->rela.hdr->sh_name != (unsigned int) -1)
3692 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
3698 need_symtab = (bfd_get_symcount (abfd) > 0
3699 || (link_info == NULL
3700 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3704 elf_onesymtab (abfd) = section_number++;
3705 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
3706 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
3708 elf_section_list * entry;
3710 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3712 entry = bfd_zalloc (abfd, sizeof * entry);
3713 entry->ndx = section_number++;
3714 elf_symtab_shndx_list (abfd) = entry;
3716 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3717 ".symtab_shndx", FALSE);
3718 if (entry->hdr.sh_name == (unsigned int) -1)
3721 elf_strtab_sec (abfd) = section_number++;
3722 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
3725 elf_shstrtab_sec (abfd) = section_number++;
3726 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3727 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3729 if (section_number >= SHN_LORESERVE)
3731 /* xgettext:c-format */
3732 _bfd_error_handler (_("%pB: too many sections: %u"),
3733 abfd, section_number);
3737 elf_numsections (abfd) = section_number;
3738 elf_elfheader (abfd)->e_shnum = section_number;
3740 /* Set up the list of section header pointers, in agreement with the
3742 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc2 (abfd, section_number,
3743 sizeof (Elf_Internal_Shdr *));
3744 if (i_shdrp == NULL)
3747 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
3748 sizeof (Elf_Internal_Shdr));
3749 if (i_shdrp[0] == NULL)
3751 bfd_release (abfd, i_shdrp);
3755 elf_elfsections (abfd) = i_shdrp;
3757 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3760 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
3761 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
3763 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3764 BFD_ASSERT (entry != NULL);
3765 i_shdrp[entry->ndx] = & entry->hdr;
3766 entry->hdr.sh_link = elf_onesymtab (abfd);
3768 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3769 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
3772 for (sec = abfd->sections; sec; sec = sec->next)
3776 d = elf_section_data (sec);
3778 i_shdrp[d->this_idx] = &d->this_hdr;
3779 if (d->rel.idx != 0)
3780 i_shdrp[d->rel.idx] = d->rel.hdr;
3781 if (d->rela.idx != 0)
3782 i_shdrp[d->rela.idx] = d->rela.hdr;
3784 /* Fill in the sh_link and sh_info fields while we're at it. */
3786 /* sh_link of a reloc section is the section index of the symbol
3787 table. sh_info is the section index of the section to which
3788 the relocation entries apply. */
3789 if (d->rel.idx != 0)
3791 d->rel.hdr->sh_link = elf_onesymtab (abfd);
3792 d->rel.hdr->sh_info = d->this_idx;
3793 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
3795 if (d->rela.idx != 0)
3797 d->rela.hdr->sh_link = elf_onesymtab (abfd);
3798 d->rela.hdr->sh_info = d->this_idx;
3799 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
3802 /* We need to set up sh_link for SHF_LINK_ORDER. */
3803 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3805 s = elf_linked_to_section (sec);
3808 /* elf_linked_to_section points to the input section. */
3809 if (link_info != NULL)
3811 /* Check discarded linkonce section. */
3812 if (discarded_section (s))
3816 /* xgettext:c-format */
3817 (_("%pB: sh_link of section `%pA' points to"
3818 " discarded section `%pA' of `%pB'"),
3819 abfd, d->this_hdr.bfd_section,
3821 /* Point to the kept section if it has the same
3822 size as the discarded one. */
3823 kept = _bfd_elf_check_kept_section (s, link_info);
3826 bfd_set_error (bfd_error_bad_value);
3832 s = s->output_section;
3833 BFD_ASSERT (s != NULL);
3837 /* Handle objcopy. */
3838 if (s->output_section == NULL)
3841 /* xgettext:c-format */
3842 (_("%pB: sh_link of section `%pA' points to"
3843 " removed section `%pA' of `%pB'"),
3844 abfd, d->this_hdr.bfd_section, s, s->owner);
3845 bfd_set_error (bfd_error_bad_value);
3848 s = s->output_section;
3850 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3855 The Intel C compiler generates SHT_IA_64_UNWIND with
3856 SHF_LINK_ORDER. But it doesn't set the sh_link or
3857 sh_info fields. Hence we could get the situation
3859 const struct elf_backend_data *bed
3860 = get_elf_backend_data (abfd);
3861 if (bed->link_order_error_handler)
3862 bed->link_order_error_handler
3863 /* xgettext:c-format */
3864 (_("%pB: warning: sh_link not set for section `%pA'"),
3869 switch (d->this_hdr.sh_type)
3873 /* A reloc section which we are treating as a normal BFD
3874 section. sh_link is the section index of the symbol
3875 table. sh_info is the section index of the section to
3876 which the relocation entries apply. We assume that an
3877 allocated reloc section uses the dynamic symbol table.
3878 FIXME: How can we be sure? */
3879 s = bfd_get_section_by_name (abfd, ".dynsym");
3881 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3883 s = elf_get_reloc_section (sec);
3886 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3887 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3892 /* We assume that a section named .stab*str is a stabs
3893 string section. We look for a section with the same name
3894 but without the trailing ``str'', and set its sh_link
3895 field to point to this section. */
3896 if (CONST_STRNEQ (sec->name, ".stab")
3897 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3902 len = strlen (sec->name);
3903 alc = (char *) bfd_malloc (len - 2);
3906 memcpy (alc, sec->name, len - 3);
3907 alc[len - 3] = '\0';
3908 s = bfd_get_section_by_name (abfd, alc);
3912 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3914 /* This is a .stab section. */
3915 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
3916 elf_section_data (s)->this_hdr.sh_entsize
3917 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
3924 case SHT_GNU_verneed:
3925 case SHT_GNU_verdef:
3926 /* sh_link is the section header index of the string table
3927 used for the dynamic entries, or the symbol table, or the
3929 s = bfd_get_section_by_name (abfd, ".dynstr");
3931 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3934 case SHT_GNU_LIBLIST:
3935 /* sh_link is the section header index of the prelink library
3936 list used for the dynamic entries, or the symbol table, or
3937 the version strings. */
3938 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
3939 ? ".dynstr" : ".gnu.libstr");
3941 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3946 case SHT_GNU_versym:
3947 /* sh_link is the section header index of the symbol table
3948 this hash table or version table is for. */
3949 s = bfd_get_section_by_name (abfd, ".dynsym");
3951 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3955 d->this_hdr.sh_link = elf_onesymtab (abfd);
3959 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
3960 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
3961 debug section name from .debug_* to .zdebug_* if needed. */
3967 sym_is_global (bfd *abfd, asymbol *sym)
3969 /* If the backend has a special mapping, use it. */
3970 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3971 if (bed->elf_backend_sym_is_global)
3972 return (*bed->elf_backend_sym_is_global) (abfd, sym);
3974 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
3975 || bfd_is_und_section (bfd_get_section (sym))
3976 || bfd_is_com_section (bfd_get_section (sym)));
3979 /* Filter global symbols of ABFD to include in the import library. All
3980 SYMCOUNT symbols of ABFD can be examined from their pointers in
3981 SYMS. Pointers of symbols to keep should be stored contiguously at
3982 the beginning of that array.
3984 Returns the number of symbols to keep. */
3987 _bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
3988 asymbol **syms, long symcount)
3990 long src_count, dst_count = 0;
3992 for (src_count = 0; src_count < symcount; src_count++)
3994 asymbol *sym = syms[src_count];
3995 char *name = (char *) bfd_asymbol_name (sym);
3996 struct bfd_link_hash_entry *h;
3998 if (!sym_is_global (abfd, sym))
4001 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
4004 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4006 if (h->linker_def || h->ldscript_def)
4009 syms[dst_count++] = sym;
4012 syms[dst_count] = NULL;
4017 /* Don't output section symbols for sections that are not going to be
4018 output, that are duplicates or there is no BFD section. */
4021 ignore_section_sym (bfd *abfd, asymbol *sym)
4023 elf_symbol_type *type_ptr;
4025 if ((sym->flags & BSF_SECTION_SYM) == 0)
4028 type_ptr = elf_symbol_from (abfd, sym);
4029 return ((type_ptr != NULL
4030 && type_ptr->internal_elf_sym.st_shndx != 0
4031 && bfd_is_abs_section (sym->section))
4032 || !(sym->section->owner == abfd
4033 || (sym->section->output_section->owner == abfd
4034 && sym->section->output_offset == 0)
4035 || bfd_is_abs_section (sym->section)));
4038 /* Map symbol from it's internal number to the external number, moving
4039 all local symbols to be at the head of the list. */
4042 elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
4044 unsigned int symcount = bfd_get_symcount (abfd);
4045 asymbol **syms = bfd_get_outsymbols (abfd);
4046 asymbol **sect_syms;
4047 unsigned int num_locals = 0;
4048 unsigned int num_globals = 0;
4049 unsigned int num_locals2 = 0;
4050 unsigned int num_globals2 = 0;
4051 unsigned int max_index = 0;
4057 fprintf (stderr, "elf_map_symbols\n");
4061 for (asect = abfd->sections; asect; asect = asect->next)
4063 if (max_index < asect->index)
4064 max_index = asect->index;
4068 sect_syms = (asymbol **) bfd_zalloc2 (abfd, max_index, sizeof (asymbol *));
4069 if (sect_syms == NULL)
4071 elf_section_syms (abfd) = sect_syms;
4072 elf_num_section_syms (abfd) = max_index;
4074 /* Init sect_syms entries for any section symbols we have already
4075 decided to output. */
4076 for (idx = 0; idx < symcount; idx++)
4078 asymbol *sym = syms[idx];
4080 if ((sym->flags & BSF_SECTION_SYM) != 0
4082 && !ignore_section_sym (abfd, sym)
4083 && !bfd_is_abs_section (sym->section))
4085 asection *sec = sym->section;
4087 if (sec->owner != abfd)
4088 sec = sec->output_section;
4090 sect_syms[sec->index] = syms[idx];
4094 /* Classify all of the symbols. */
4095 for (idx = 0; idx < symcount; idx++)
4097 if (sym_is_global (abfd, syms[idx]))
4099 else if (!ignore_section_sym (abfd, syms[idx]))
4103 /* We will be adding a section symbol for each normal BFD section. Most
4104 sections will already have a section symbol in outsymbols, but
4105 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4106 at least in that case. */
4107 for (asect = abfd->sections; asect; asect = asect->next)
4109 if (sect_syms[asect->index] == NULL)
4111 if (!sym_is_global (abfd, asect->symbol))
4118 /* Now sort the symbols so the local symbols are first. */
4119 new_syms = (asymbol **) bfd_alloc2 (abfd, num_locals + num_globals,
4120 sizeof (asymbol *));
4122 if (new_syms == NULL)
4125 for (idx = 0; idx < symcount; idx++)
4127 asymbol *sym = syms[idx];
4130 if (sym_is_global (abfd, sym))
4131 i = num_locals + num_globals2++;
4132 else if (!ignore_section_sym (abfd, sym))
4137 sym->udata.i = i + 1;
4139 for (asect = abfd->sections; asect; asect = asect->next)
4141 if (sect_syms[asect->index] == NULL)
4143 asymbol *sym = asect->symbol;
4146 sect_syms[asect->index] = sym;
4147 if (!sym_is_global (abfd, sym))
4150 i = num_locals + num_globals2++;
4152 sym->udata.i = i + 1;
4156 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4158 *pnum_locals = num_locals;
4162 /* Align to the maximum file alignment that could be required for any
4163 ELF data structure. */
4165 static inline file_ptr
4166 align_file_position (file_ptr off, int align)
4168 return (off + align - 1) & ~(align - 1);
4171 /* Assign a file position to a section, optionally aligning to the
4172 required section alignment. */
4175 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4179 if (align && i_shdrp->sh_addralign > 1)
4180 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
4181 i_shdrp->sh_offset = offset;
4182 if (i_shdrp->bfd_section != NULL)
4183 i_shdrp->bfd_section->filepos = offset;
4184 if (i_shdrp->sh_type != SHT_NOBITS)
4185 offset += i_shdrp->sh_size;
4189 /* Compute the file positions we are going to put the sections at, and
4190 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4191 is not NULL, this is being called by the ELF backend linker. */
4194 _bfd_elf_compute_section_file_positions (bfd *abfd,
4195 struct bfd_link_info *link_info)
4197 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4198 struct fake_section_arg fsargs;
4200 struct elf_strtab_hash *strtab = NULL;
4201 Elf_Internal_Shdr *shstrtab_hdr;
4202 bfd_boolean need_symtab;
4204 if (abfd->output_has_begun)
4207 /* Do any elf backend specific processing first. */
4208 if (bed->elf_backend_begin_write_processing)
4209 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4211 if (! prep_headers (abfd))
4214 /* Post process the headers if necessary. */
4215 (*bed->elf_backend_post_process_headers) (abfd, link_info);
4217 fsargs.failed = FALSE;
4218 fsargs.link_info = link_info;
4219 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4223 if (!assign_section_numbers (abfd, link_info))
4226 /* The backend linker builds symbol table information itself. */
4227 need_symtab = (link_info == NULL
4228 && (bfd_get_symcount (abfd) > 0
4229 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4233 /* Non-zero if doing a relocatable link. */
4234 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4236 if (! swap_out_syms (abfd, &strtab, relocatable_p))
4241 if (link_info == NULL)
4243 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
4248 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
4249 /* sh_name was set in prep_headers. */
4250 shstrtab_hdr->sh_type = SHT_STRTAB;
4251 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
4252 shstrtab_hdr->sh_addr = 0;
4253 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4254 shstrtab_hdr->sh_entsize = 0;
4255 shstrtab_hdr->sh_link = 0;
4256 shstrtab_hdr->sh_info = 0;
4257 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4258 shstrtab_hdr->sh_addralign = 1;
4260 if (!assign_file_positions_except_relocs (abfd, link_info))
4266 Elf_Internal_Shdr *hdr;
4268 off = elf_next_file_pos (abfd);
4270 hdr = & elf_symtab_hdr (abfd);
4271 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4273 if (elf_symtab_shndx_list (abfd) != NULL)
4275 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4276 if (hdr->sh_size != 0)
4277 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4278 /* FIXME: What about other symtab_shndx sections in the list ? */
4281 hdr = &elf_tdata (abfd)->strtab_hdr;
4282 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4284 elf_next_file_pos (abfd) = off;
4286 /* Now that we know where the .strtab section goes, write it
4288 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4289 || ! _bfd_elf_strtab_emit (abfd, strtab))
4291 _bfd_elf_strtab_free (strtab);
4294 abfd->output_has_begun = TRUE;
4299 /* Make an initial estimate of the size of the program header. If we
4300 get the number wrong here, we'll redo section placement. */
4302 static bfd_size_type
4303 get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4307 const struct elf_backend_data *bed;
4309 /* Assume we will need exactly two PT_LOAD segments: one for text
4310 and one for data. */
4313 s = bfd_get_section_by_name (abfd, ".interp");
4314 if (s != NULL && (s->flags & SEC_LOAD) != 0)
4316 /* If we have a loadable interpreter section, we need a
4317 PT_INTERP segment. In this case, assume we also need a
4318 PT_PHDR segment, although that may not be true for all
4323 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4325 /* We need a PT_DYNAMIC segment. */
4329 if (info != NULL && info->relro)
4331 /* We need a PT_GNU_RELRO segment. */
4335 if (elf_eh_frame_hdr (abfd))
4337 /* We need a PT_GNU_EH_FRAME segment. */
4341 if (elf_stack_flags (abfd))
4343 /* We need a PT_GNU_STACK segment. */
4347 for (s = abfd->sections; s != NULL; s = s->next)
4349 if ((s->flags & SEC_LOAD) != 0
4350 && CONST_STRNEQ (s->name, ".note"))
4352 /* We need a PT_NOTE segment. */
4354 /* Try to create just one PT_NOTE segment
4355 for all adjacent loadable .note* sections.
4356 gABI requires that within a PT_NOTE segment
4357 (and also inside of each SHT_NOTE section)
4358 each note is padded to a multiple of 4 size,
4359 so we check whether the sections are correctly
4361 if (s->alignment_power == 2)
4362 while (s->next != NULL
4363 && s->next->alignment_power == 2
4364 && (s->next->flags & SEC_LOAD) != 0
4365 && CONST_STRNEQ (s->next->name, ".note"))
4370 for (s = abfd->sections; s != NULL; s = s->next)
4372 if (s->flags & SEC_THREAD_LOCAL)
4374 /* We need a PT_TLS segment. */
4380 bed = get_elf_backend_data (abfd);
4382 if ((abfd->flags & D_PAGED) != 0)
4384 /* Add a PT_GNU_MBIND segment for each mbind section. */
4385 unsigned int page_align_power = bfd_log2 (bed->commonpagesize);
4386 for (s = abfd->sections; s != NULL; s = s->next)
4387 if (elf_section_flags (s) & SHF_GNU_MBIND)
4389 if (elf_section_data (s)->this_hdr.sh_info
4393 /* xgettext:c-format */
4394 (_("%pB: GNU_MBIN section `%pA' has invalid sh_info field: %d"),
4395 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4398 /* Align mbind section to page size. */
4399 if (s->alignment_power < page_align_power)
4400 s->alignment_power = page_align_power;
4405 /* Let the backend count up any program headers it might need. */
4406 if (bed->elf_backend_additional_program_headers)
4410 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4416 return segs * bed->s->sizeof_phdr;
4419 /* Find the segment that contains the output_section of section. */
4422 _bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4424 struct elf_segment_map *m;
4425 Elf_Internal_Phdr *p;
4427 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
4433 for (i = m->count - 1; i >= 0; i--)
4434 if (m->sections[i] == section)
4441 /* Create a mapping from a set of sections to a program segment. */
4443 static struct elf_segment_map *
4444 make_mapping (bfd *abfd,
4445 asection **sections,
4450 struct elf_segment_map *m;
4455 amt = sizeof (struct elf_segment_map);
4456 amt += (to - from - 1) * sizeof (asection *);
4457 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4461 m->p_type = PT_LOAD;
4462 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4463 m->sections[i - from] = *hdrpp;
4464 m->count = to - from;
4466 if (from == 0 && phdr)
4468 /* Include the headers in the first PT_LOAD segment. */
4469 m->includes_filehdr = 1;
4470 m->includes_phdrs = 1;
4476 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4479 struct elf_segment_map *
4480 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4482 struct elf_segment_map *m;
4484 m = (struct elf_segment_map *) bfd_zalloc (abfd,
4485 sizeof (struct elf_segment_map));
4489 m->p_type = PT_DYNAMIC;
4491 m->sections[0] = dynsec;
4496 /* Possibly add or remove segments from the segment map. */
4499 elf_modify_segment_map (bfd *abfd,
4500 struct bfd_link_info *info,
4501 bfd_boolean remove_empty_load)
4503 struct elf_segment_map **m;
4504 const struct elf_backend_data *bed;
4506 /* The placement algorithm assumes that non allocated sections are
4507 not in PT_LOAD segments. We ensure this here by removing such
4508 sections from the segment map. We also remove excluded
4509 sections. Finally, any PT_LOAD segment without sections is
4511 m = &elf_seg_map (abfd);
4514 unsigned int i, new_count;
4516 for (new_count = 0, i = 0; i < (*m)->count; i++)
4518 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4519 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4520 || (*m)->p_type != PT_LOAD))
4522 (*m)->sections[new_count] = (*m)->sections[i];
4526 (*m)->count = new_count;
4528 if (remove_empty_load
4529 && (*m)->p_type == PT_LOAD
4531 && !(*m)->includes_phdrs)
4537 bed = get_elf_backend_data (abfd);
4538 if (bed->elf_backend_modify_segment_map != NULL)
4540 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
4547 #define IS_TBSS(s) \
4548 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4550 /* Set up a mapping from BFD sections to program segments. */
4553 _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4556 struct elf_segment_map *m;
4557 asection **sections = NULL;
4558 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4559 bfd_boolean no_user_phdrs;
4561 no_user_phdrs = elf_seg_map (abfd) == NULL;
4564 info->user_phdrs = !no_user_phdrs;
4566 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
4570 struct elf_segment_map *mfirst;
4571 struct elf_segment_map **pm;
4574 unsigned int phdr_index;
4575 bfd_vma maxpagesize;
4577 bfd_boolean phdr_in_segment = TRUE;
4578 bfd_boolean writable;
4579 bfd_boolean executable;
4581 asection *first_tls = NULL;
4582 asection *first_mbind = NULL;
4583 asection *dynsec, *eh_frame_hdr;
4585 bfd_vma addr_mask, wrap_to = 0;
4586 bfd_boolean linker_created_pt_phdr_segment = FALSE;
4588 /* Select the allocated sections, and sort them. */
4590 sections = (asection **) bfd_malloc2 (bfd_count_sections (abfd),
4591 sizeof (asection *));
4592 if (sections == NULL)
4595 /* Calculate top address, avoiding undefined behaviour of shift
4596 left operator when shift count is equal to size of type
4598 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4599 addr_mask = (addr_mask << 1) + 1;
4602 for (s = abfd->sections; s != NULL; s = s->next)
4604 if ((s->flags & SEC_ALLOC) != 0)
4608 /* A wrapping section potentially clashes with header. */
4609 if (((s->lma + s->size) & addr_mask) < (s->lma & addr_mask))
4610 wrap_to = (s->lma + s->size) & addr_mask;
4613 BFD_ASSERT (i <= bfd_count_sections (abfd));
4616 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
4618 /* Build the mapping. */
4623 /* If we have a .interp section, then create a PT_PHDR segment for
4624 the program headers and a PT_INTERP segment for the .interp
4626 s = bfd_get_section_by_name (abfd, ".interp");
4627 if (s != NULL && (s->flags & SEC_LOAD) != 0)
4629 amt = sizeof (struct elf_segment_map);
4630 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4634 m->p_type = PT_PHDR;
4636 m->p_flags_valid = 1;
4637 m->includes_phdrs = 1;
4638 linker_created_pt_phdr_segment = TRUE;
4642 amt = sizeof (struct elf_segment_map);
4643 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4647 m->p_type = PT_INTERP;
4655 /* Look through the sections. We put sections in the same program
4656 segment when the start of the second section can be placed within
4657 a few bytes of the end of the first section. */
4661 maxpagesize = bed->maxpagesize;
4662 /* PR 17512: file: c8455299.
4663 Avoid divide-by-zero errors later on.
4664 FIXME: Should we abort if the maxpagesize is zero ? */
4665 if (maxpagesize == 0)
4669 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4671 && (dynsec->flags & SEC_LOAD) == 0)
4674 /* Deal with -Ttext or something similar such that the first section
4675 is not adjacent to the program headers. This is an
4676 approximation, since at this point we don't know exactly how many
4677 program headers we will need. */
4680 bfd_size_type phdr_size = elf_program_header_size (abfd);
4682 if (phdr_size == (bfd_size_type) -1)
4683 phdr_size = get_program_header_size (abfd, info);
4684 phdr_size += bed->s->sizeof_ehdr;
4685 if ((abfd->flags & D_PAGED) == 0
4686 || (sections[0]->lma & addr_mask) < phdr_size
4687 || ((sections[0]->lma & addr_mask) % maxpagesize
4688 < phdr_size % maxpagesize)
4689 || (sections[0]->lma & addr_mask & -maxpagesize) < wrap_to)
4691 /* PR 20815: The ELF standard says that a PT_PHDR segment, if
4692 present, must be included as part of the memory image of the
4693 program. Ie it must be part of a PT_LOAD segment as well.
4694 If we have had to create our own PT_PHDR segment, but it is
4695 not going to be covered by the first PT_LOAD segment, then
4696 force the inclusion if we can... */
4697 if ((abfd->flags & D_PAGED) != 0
4698 && linker_created_pt_phdr_segment)
4699 phdr_in_segment = TRUE;
4701 phdr_in_segment = FALSE;
4705 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
4708 bfd_boolean new_segment;
4712 /* See if this section and the last one will fit in the same
4715 if (last_hdr == NULL)
4717 /* If we don't have a segment yet, then we don't need a new
4718 one (we build the last one after this loop). */
4719 new_segment = FALSE;
4721 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4723 /* If this section has a different relation between the
4724 virtual address and the load address, then we need a new
4728 else if (hdr->lma < last_hdr->lma + last_size
4729 || last_hdr->lma + last_size < last_hdr->lma)
4731 /* If this section has a load address that makes it overlap
4732 the previous section, then we need a new segment. */
4735 else if ((abfd->flags & D_PAGED) != 0
4736 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4737 == (hdr->lma & -maxpagesize)))
4739 /* If we are demand paged then we can't map two disk
4740 pages onto the same memory page. */
4741 new_segment = FALSE;
4743 /* In the next test we have to be careful when last_hdr->lma is close
4744 to the end of the address space. If the aligned address wraps
4745 around to the start of the address space, then there are no more
4746 pages left in memory and it is OK to assume that the current
4747 section can be included in the current segment. */
4748 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4749 + maxpagesize > last_hdr->lma)
4750 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4751 + maxpagesize <= hdr->lma))
4753 /* If putting this section in this segment would force us to
4754 skip a page in the segment, then we need a new segment. */
4757 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
4758 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
4760 /* We don't want to put a loaded section after a
4761 nonloaded (ie. bss style) section in the same segment
4762 as that will force the non-loaded section to be loaded.
4763 Consider .tbss sections as loaded for this purpose. */
4766 else if ((abfd->flags & D_PAGED) == 0)
4768 /* If the file is not demand paged, which means that we
4769 don't require the sections to be correctly aligned in the
4770 file, then there is no other reason for a new segment. */
4771 new_segment = FALSE;
4773 else if (info != NULL
4774 && info->separate_code
4775 && executable != ((hdr->flags & SEC_CODE) != 0))
4780 && (hdr->flags & SEC_READONLY) == 0)
4782 /* We don't want to put a writable section in a read only
4788 /* Otherwise, we can use the same segment. */
4789 new_segment = FALSE;
4792 /* Allow interested parties a chance to override our decision. */
4793 if (last_hdr != NULL
4795 && info->callbacks->override_segment_assignment != NULL)
4797 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4803 if ((hdr->flags & SEC_READONLY) == 0)
4805 if ((hdr->flags & SEC_CODE) != 0)
4808 /* .tbss sections effectively have zero size. */
4809 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
4813 /* We need a new program segment. We must create a new program
4814 header holding all the sections from phdr_index until hdr. */
4816 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
4823 if ((hdr->flags & SEC_READONLY) == 0)
4828 if ((hdr->flags & SEC_CODE) == 0)
4834 /* .tbss sections effectively have zero size. */
4835 last_size = !IS_TBSS (hdr) ? hdr->size : 0;
4837 phdr_in_segment = FALSE;
4840 /* Create a final PT_LOAD program segment, but not if it's just
4842 if (last_hdr != NULL
4843 && (i - phdr_index != 1
4844 || !IS_TBSS (last_hdr)))
4846 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
4854 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4857 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4864 /* For each batch of consecutive loadable .note sections,
4865 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
4866 because if we link together nonloadable .note sections and
4867 loadable .note sections, we will generate two .note sections
4868 in the output file. FIXME: Using names for section types is
4870 for (s = abfd->sections; s != NULL; s = s->next)
4872 if ((s->flags & SEC_LOAD) != 0
4873 && CONST_STRNEQ (s->name, ".note"))
4878 amt = sizeof (struct elf_segment_map);
4879 if (s->alignment_power == 2)
4880 for (s2 = s; s2->next != NULL; s2 = s2->next)
4882 if (s2->next->alignment_power == 2
4883 && (s2->next->flags & SEC_LOAD) != 0
4884 && CONST_STRNEQ (s2->next->name, ".note")
4885 && align_power (s2->lma + s2->size, 2)
4891 amt += (count - 1) * sizeof (asection *);
4892 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4896 m->p_type = PT_NOTE;
4900 m->sections[m->count - count--] = s;
4901 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
4904 m->sections[m->count - 1] = s;
4905 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
4909 if (s->flags & SEC_THREAD_LOCAL)
4915 if (first_mbind == NULL
4916 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
4920 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
4923 amt = sizeof (struct elf_segment_map);
4924 amt += (tls_count - 1) * sizeof (asection *);
4925 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4930 m->count = tls_count;
4931 /* Mandated PF_R. */
4933 m->p_flags_valid = 1;
4935 for (i = 0; i < (unsigned int) tls_count; ++i)
4937 if ((s->flags & SEC_THREAD_LOCAL) == 0)
4940 (_("%pB: TLS sections are not adjacent:"), abfd);
4943 while (i < (unsigned int) tls_count)
4945 if ((s->flags & SEC_THREAD_LOCAL) != 0)
4947 _bfd_error_handler (_(" TLS: %pA"), s);
4951 _bfd_error_handler (_(" non-TLS: %pA"), s);
4954 bfd_set_error (bfd_error_bad_value);
4965 if (first_mbind && (abfd->flags & D_PAGED) != 0)
4966 for (s = first_mbind; s != NULL; s = s->next)
4967 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
4968 && (elf_section_data (s)->this_hdr.sh_info
4969 <= PT_GNU_MBIND_NUM))
4971 /* Mandated PF_R. */
4972 unsigned long p_flags = PF_R;
4973 if ((s->flags & SEC_READONLY) == 0)
4975 if ((s->flags & SEC_CODE) != 0)
4978 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
4979 m = bfd_zalloc (abfd, amt);
4983 m->p_type = (PT_GNU_MBIND_LO
4984 + elf_section_data (s)->this_hdr.sh_info);
4986 m->p_flags_valid = 1;
4988 m->p_flags = p_flags;
4994 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
4996 eh_frame_hdr = elf_eh_frame_hdr (abfd);
4997 if (eh_frame_hdr != NULL
4998 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
5000 amt = sizeof (struct elf_segment_map);
5001 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5005 m->p_type = PT_GNU_EH_FRAME;
5007 m->sections[0] = eh_frame_hdr->output_section;
5013 if (elf_stack_flags (abfd))
5015 amt = sizeof (struct elf_segment_map);
5016 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5020 m->p_type = PT_GNU_STACK;
5021 m->p_flags = elf_stack_flags (abfd);
5022 m->p_align = bed->stack_align;
5023 m->p_flags_valid = 1;
5024 m->p_align_valid = m->p_align != 0;
5025 if (info->stacksize > 0)
5027 m->p_size = info->stacksize;
5028 m->p_size_valid = 1;
5035 if (info != NULL && info->relro)
5037 for (m = mfirst; m != NULL; m = m->next)
5039 if (m->p_type == PT_LOAD
5041 && m->sections[0]->vma >= info->relro_start
5042 && m->sections[0]->vma < info->relro_end)
5045 while (--i != (unsigned) -1)
5046 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5047 == (SEC_LOAD | SEC_HAS_CONTENTS))
5050 if (i != (unsigned) -1)
5055 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5058 amt = sizeof (struct elf_segment_map);
5059 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5063 m->p_type = PT_GNU_RELRO;
5070 elf_seg_map (abfd) = mfirst;
5073 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
5076 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
5078 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
5083 if (sections != NULL)
5088 /* Sort sections by address. */
5091 elf_sort_sections (const void *arg1, const void *arg2)
5093 const asection *sec1 = *(const asection **) arg1;
5094 const asection *sec2 = *(const asection **) arg2;
5095 bfd_size_type size1, size2;
5097 /* Sort by LMA first, since this is the address used to
5098 place the section into a segment. */
5099 if (sec1->lma < sec2->lma)
5101 else if (sec1->lma > sec2->lma)
5104 /* Then sort by VMA. Normally the LMA and the VMA will be
5105 the same, and this will do nothing. */
5106 if (sec1->vma < sec2->vma)
5108 else if (sec1->vma > sec2->vma)
5111 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5113 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
5119 /* If the indicies are the same, do not return 0
5120 here, but continue to try the next comparison. */
5121 if (sec1->target_index - sec2->target_index != 0)
5122 return sec1->target_index - sec2->target_index;
5127 else if (TOEND (sec2))
5132 /* Sort by size, to put zero sized sections
5133 before others at the same address. */
5135 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5136 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
5143 return sec1->target_index - sec2->target_index;
5146 /* Ian Lance Taylor writes:
5148 We shouldn't be using % with a negative signed number. That's just
5149 not good. We have to make sure either that the number is not
5150 negative, or that the number has an unsigned type. When the types
5151 are all the same size they wind up as unsigned. When file_ptr is a
5152 larger signed type, the arithmetic winds up as signed long long,
5155 What we're trying to say here is something like ``increase OFF by
5156 the least amount that will cause it to be equal to the VMA modulo
5158 /* In other words, something like:
5160 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5161 off_offset = off % bed->maxpagesize;
5162 if (vma_offset < off_offset)
5163 adjustment = vma_offset + bed->maxpagesize - off_offset;
5165 adjustment = vma_offset - off_offset;
5167 which can be collapsed into the expression below. */
5170 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5172 /* PR binutils/16199: Handle an alignment of zero. */
5173 if (maxpagesize == 0)
5175 return ((vma - off) % maxpagesize);
5179 print_segment_map (const struct elf_segment_map *m)
5182 const char *pt = get_segment_type (m->p_type);
5187 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5188 sprintf (buf, "LOPROC+%7.7x",
5189 (unsigned int) (m->p_type - PT_LOPROC));
5190 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5191 sprintf (buf, "LOOS+%7.7x",
5192 (unsigned int) (m->p_type - PT_LOOS));
5194 snprintf (buf, sizeof (buf), "%8.8x",
5195 (unsigned int) m->p_type);
5199 fprintf (stderr, "%s:", pt);
5200 for (j = 0; j < m->count; j++)
5201 fprintf (stderr, " %s", m->sections [j]->name);
5207 write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5212 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5214 buf = bfd_zmalloc (len);
5217 ret = bfd_bwrite (buf, len, abfd) == len;
5222 /* Assign file positions to the sections based on the mapping from
5223 sections to segments. This function also sets up some fields in
5227 assign_file_positions_for_load_sections (bfd *abfd,
5228 struct bfd_link_info *link_info)
5230 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5231 struct elf_segment_map *m;
5232 Elf_Internal_Phdr *phdrs;
5233 Elf_Internal_Phdr *p;
5235 bfd_size_type maxpagesize;
5236 unsigned int pt_load_count = 0;
5239 bfd_vma header_pad = 0;
5241 if (link_info == NULL
5242 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
5246 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5250 header_pad = m->header_size;
5255 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5256 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5260 /* PR binutils/12467. */
5261 elf_elfheader (abfd)->e_phoff = 0;
5262 elf_elfheader (abfd)->e_phentsize = 0;
5265 elf_elfheader (abfd)->e_phnum = alloc;
5267 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
5268 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5270 BFD_ASSERT (elf_program_header_size (abfd)
5271 >= alloc * bed->s->sizeof_phdr);
5275 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
5279 /* We're writing the size in elf_program_header_size (abfd),
5280 see assign_file_positions_except_relocs, so make sure we have
5281 that amount allocated, with trailing space cleared.
5282 The variable alloc contains the computed need, while
5283 elf_program_header_size (abfd) contains the size used for the
5285 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5286 where the layout is forced to according to a larger size in the
5287 last iterations for the testcase ld-elf/header. */
5288 BFD_ASSERT (elf_program_header_size (abfd) % bed->s->sizeof_phdr
5290 phdrs = (Elf_Internal_Phdr *)
5292 (elf_program_header_size (abfd) / bed->s->sizeof_phdr),
5293 sizeof (Elf_Internal_Phdr));
5294 elf_tdata (abfd)->phdr = phdrs;
5299 if ((abfd->flags & D_PAGED) != 0)
5300 maxpagesize = bed->maxpagesize;
5302 off = bed->s->sizeof_ehdr;
5303 off += alloc * bed->s->sizeof_phdr;
5304 if (header_pad < (bfd_vma) off)
5310 for (m = elf_seg_map (abfd), p = phdrs, j = 0;
5312 m = m->next, p++, j++)
5316 bfd_boolean no_contents;
5318 /* If elf_segment_map is not from map_sections_to_segments, the
5319 sections may not be correctly ordered. NOTE: sorting should
5320 not be done to the PT_NOTE section of a corefile, which may
5321 contain several pseudo-sections artificially created by bfd.
5322 Sorting these pseudo-sections breaks things badly. */
5324 && !(elf_elfheader (abfd)->e_type == ET_CORE
5325 && m->p_type == PT_NOTE))
5326 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5329 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5330 number of sections with contents contributing to both p_filesz
5331 and p_memsz, followed by a number of sections with no contents
5332 that just contribute to p_memsz. In this loop, OFF tracks next
5333 available file offset for PT_LOAD and PT_NOTE segments. */
5334 p->p_type = m->p_type;
5335 p->p_flags = m->p_flags;
5340 p->p_vaddr = m->sections[0]->vma - m->p_vaddr_offset;
5342 if (m->p_paddr_valid)
5343 p->p_paddr = m->p_paddr;
5344 else if (m->count == 0)
5347 p->p_paddr = m->sections[0]->lma - m->p_vaddr_offset;
5349 if (p->p_type == PT_LOAD
5350 && (abfd->flags & D_PAGED) != 0)
5352 /* p_align in demand paged PT_LOAD segments effectively stores
5353 the maximum page size. When copying an executable with
5354 objcopy, we set m->p_align from the input file. Use this
5355 value for maxpagesize rather than bed->maxpagesize, which
5356 may be different. Note that we use maxpagesize for PT_TLS
5357 segment alignment later in this function, so we are relying
5358 on at least one PT_LOAD segment appearing before a PT_TLS
5360 if (m->p_align_valid)
5361 maxpagesize = m->p_align;
5363 p->p_align = maxpagesize;
5366 else if (m->p_align_valid)
5367 p->p_align = m->p_align;
5368 else if (m->count == 0)
5369 p->p_align = 1 << bed->s->log_file_align;
5373 no_contents = FALSE;
5375 if (p->p_type == PT_LOAD
5378 bfd_size_type align;
5379 unsigned int align_power = 0;
5381 if (m->p_align_valid)
5385 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5387 unsigned int secalign;
5389 secalign = bfd_get_section_alignment (abfd, *secpp);
5390 if (secalign > align_power)
5391 align_power = secalign;
5393 align = (bfd_size_type) 1 << align_power;
5394 if (align < maxpagesize)
5395 align = maxpagesize;
5398 for (i = 0; i < m->count; i++)
5399 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5400 /* If we aren't making room for this section, then
5401 it must be SHT_NOBITS regardless of what we've
5402 set via struct bfd_elf_special_section. */
5403 elf_section_type (m->sections[i]) = SHT_NOBITS;
5405 /* Find out whether this segment contains any loadable
5408 for (i = 0; i < m->count; i++)
5409 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5411 no_contents = FALSE;
5415 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align);
5417 /* Broken hardware and/or kernel require that files do not
5418 map the same page with different permissions on some hppa
5420 if (pt_load_count > 1
5421 && bed->no_page_alias
5422 && (off & (maxpagesize - 1)) != 0
5423 && (off & -maxpagesize) == ((off + off_adjust) & -maxpagesize))
5424 off_adjust += maxpagesize;
5428 /* We shouldn't need to align the segment on disk since
5429 the segment doesn't need file space, but the gABI
5430 arguably requires the alignment and glibc ld.so
5431 checks it. So to comply with the alignment
5432 requirement but not waste file space, we adjust
5433 p_offset for just this segment. (OFF_ADJUST is
5434 subtracted from OFF later.) This may put p_offset
5435 past the end of file, but that shouldn't matter. */
5440 /* Make sure the .dynamic section is the first section in the
5441 PT_DYNAMIC segment. */
5442 else if (p->p_type == PT_DYNAMIC
5444 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5447 (_("%pB: The first section in the PT_DYNAMIC segment"
5448 " is not the .dynamic section"),
5450 bfd_set_error (bfd_error_bad_value);
5453 /* Set the note section type to SHT_NOTE. */
5454 else if (p->p_type == PT_NOTE)
5455 for (i = 0; i < m->count; i++)
5456 elf_section_type (m->sections[i]) = SHT_NOTE;
5462 if (m->includes_filehdr)
5464 if (!m->p_flags_valid)
5466 p->p_filesz = bed->s->sizeof_ehdr;
5467 p->p_memsz = bed->s->sizeof_ehdr;
5470 if (p->p_vaddr < (bfd_vma) off
5471 || (!m->p_paddr_valid
5472 && p->p_paddr < (bfd_vma) off))
5475 (_("%pB: Not enough room for program headers,"
5476 " try linking with -N"),
5478 bfd_set_error (bfd_error_bad_value);
5483 if (!m->p_paddr_valid)
5488 if (m->includes_phdrs)
5490 if (!m->p_flags_valid)
5493 if (!m->includes_filehdr)
5495 p->p_offset = bed->s->sizeof_ehdr;
5499 p->p_vaddr -= off - p->p_offset;
5500 if (!m->p_paddr_valid)
5501 p->p_paddr -= off - p->p_offset;
5505 p->p_filesz += alloc * bed->s->sizeof_phdr;
5506 p->p_memsz += alloc * bed->s->sizeof_phdr;
5509 p->p_filesz += header_pad;
5510 p->p_memsz += header_pad;
5514 if (p->p_type == PT_LOAD
5515 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5517 if (!m->includes_filehdr && !m->includes_phdrs)
5523 adjust = off - (p->p_offset + p->p_filesz);
5525 p->p_filesz += adjust;
5526 p->p_memsz += adjust;
5530 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5531 maps. Set filepos for sections in PT_LOAD segments, and in
5532 core files, for sections in PT_NOTE segments.
5533 assign_file_positions_for_non_load_sections will set filepos
5534 for other sections and update p_filesz for other segments. */
5535 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5538 bfd_size_type align;
5539 Elf_Internal_Shdr *this_hdr;
5542 this_hdr = &elf_section_data (sec)->this_hdr;
5543 align = (bfd_size_type) 1 << bfd_get_section_alignment (abfd, sec);
5545 if ((p->p_type == PT_LOAD
5546 || p->p_type == PT_TLS)
5547 && (this_hdr->sh_type != SHT_NOBITS
5548 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5549 && ((this_hdr->sh_flags & SHF_TLS) == 0
5550 || p->p_type == PT_TLS))))
5552 bfd_vma p_start = p->p_paddr;
5553 bfd_vma p_end = p_start + p->p_memsz;
5554 bfd_vma s_start = sec->lma;
5555 bfd_vma adjust = s_start - p_end;
5559 || p_end < p_start))
5562 /* xgettext:c-format */
5563 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5564 abfd, sec, (uint64_t) s_start, (uint64_t) p_end);
5568 p->p_memsz += adjust;
5570 if (this_hdr->sh_type != SHT_NOBITS)
5572 if (p->p_filesz + adjust < p->p_memsz)
5574 /* We have a PROGBITS section following NOBITS ones.
5575 Allocate file space for the NOBITS section(s) and
5577 adjust = p->p_memsz - p->p_filesz;
5578 if (!write_zeros (abfd, off, adjust))
5582 p->p_filesz += adjust;
5586 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5588 /* The section at i == 0 is the one that actually contains
5592 this_hdr->sh_offset = sec->filepos = off;
5593 off += this_hdr->sh_size;
5594 p->p_filesz = this_hdr->sh_size;
5600 /* The rest are fake sections that shouldn't be written. */
5609 if (p->p_type == PT_LOAD)
5611 this_hdr->sh_offset = sec->filepos = off;
5612 if (this_hdr->sh_type != SHT_NOBITS)
5613 off += this_hdr->sh_size;
5615 else if (this_hdr->sh_type == SHT_NOBITS
5616 && (this_hdr->sh_flags & SHF_TLS) != 0
5617 && this_hdr->sh_offset == 0)
5619 /* This is a .tbss section that didn't get a PT_LOAD.
5620 (See _bfd_elf_map_sections_to_segments "Create a
5621 final PT_LOAD".) Set sh_offset to the value it
5622 would have if we had created a zero p_filesz and
5623 p_memsz PT_LOAD header for the section. This
5624 also makes the PT_TLS header have the same
5626 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5628 this_hdr->sh_offset = sec->filepos = off + adjust;
5631 if (this_hdr->sh_type != SHT_NOBITS)
5633 p->p_filesz += this_hdr->sh_size;
5634 /* A load section without SHF_ALLOC is something like
5635 a note section in a PT_NOTE segment. These take
5636 file space but are not loaded into memory. */
5637 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5638 p->p_memsz += this_hdr->sh_size;
5640 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5642 if (p->p_type == PT_TLS)
5643 p->p_memsz += this_hdr->sh_size;
5645 /* .tbss is special. It doesn't contribute to p_memsz of
5647 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5648 p->p_memsz += this_hdr->sh_size;
5651 if (align > p->p_align
5652 && !m->p_align_valid
5653 && (p->p_type != PT_LOAD
5654 || (abfd->flags & D_PAGED) == 0))
5658 if (!m->p_flags_valid)
5661 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
5663 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
5670 /* Check that all sections are in a PT_LOAD segment.
5671 Don't check funky gdb generated core files. */
5672 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
5674 bfd_boolean check_vma = TRUE;
5676 for (i = 1; i < m->count; i++)
5677 if (m->sections[i]->vma == m->sections[i - 1]->vma
5678 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5679 ->this_hdr), p) != 0
5680 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5681 ->this_hdr), p) != 0)
5683 /* Looks like we have overlays packed into the segment. */
5688 for (i = 0; i < m->count; i++)
5690 Elf_Internal_Shdr *this_hdr;
5693 sec = m->sections[i];
5694 this_hdr = &(elf_section_data(sec)->this_hdr);
5695 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5696 && !ELF_TBSS_SPECIAL (this_hdr, p))
5699 /* xgettext:c-format */
5700 (_("%pB: section `%pA' can't be allocated in segment %d"),
5702 print_segment_map (m);
5708 elf_next_file_pos (abfd) = off;
5712 /* Assign file positions for the other sections. */
5715 assign_file_positions_for_non_load_sections (bfd *abfd,
5716 struct bfd_link_info *link_info)
5718 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5719 Elf_Internal_Shdr **i_shdrpp;
5720 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
5721 Elf_Internal_Phdr *phdrs;
5722 Elf_Internal_Phdr *p;
5723 struct elf_segment_map *m;
5724 struct elf_segment_map *hdrs_segment;
5725 bfd_vma filehdr_vaddr, filehdr_paddr;
5726 bfd_vma phdrs_vaddr, phdrs_paddr;
5730 i_shdrpp = elf_elfsections (abfd);
5731 end_hdrpp = i_shdrpp + elf_numsections (abfd);
5732 off = elf_next_file_pos (abfd);
5733 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5735 Elf_Internal_Shdr *hdr;
5738 if (hdr->bfd_section != NULL
5739 && (hdr->bfd_section->filepos != 0
5740 || (hdr->sh_type == SHT_NOBITS
5741 && hdr->contents == NULL)))
5742 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5743 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
5745 if (hdr->sh_size != 0)
5747 /* xgettext:c-format */
5748 (_("%pB: warning: allocated section `%s' not in segment"),
5750 (hdr->bfd_section == NULL
5752 : hdr->bfd_section->name));
5753 /* We don't need to page align empty sections. */
5754 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5755 off += vma_page_aligned_bias (hdr->sh_addr, off,
5758 off += vma_page_aligned_bias (hdr->sh_addr, off,
5760 off = _bfd_elf_assign_file_position_for_section (hdr, off,
5763 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
5764 && hdr->bfd_section == NULL)
5765 || (hdr->bfd_section != NULL
5766 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS))
5767 /* Compress DWARF debug sections. */
5768 || hdr == i_shdrpp[elf_onesymtab (abfd)]
5769 || (elf_symtab_shndx_list (abfd) != NULL
5770 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
5771 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
5772 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5773 hdr->sh_offset = -1;
5775 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5778 /* Now that we have set the section file positions, we can set up
5779 the file positions for the non PT_LOAD segments. */
5783 phdrs_vaddr = bed->maxpagesize + bed->s->sizeof_ehdr;
5785 hdrs_segment = NULL;
5786 phdrs = elf_tdata (abfd)->phdr;
5787 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
5790 if (p->p_type != PT_LOAD)
5793 if (m->includes_filehdr)
5795 filehdr_vaddr = p->p_vaddr;
5796 filehdr_paddr = p->p_paddr;
5798 if (m->includes_phdrs)
5800 phdrs_vaddr = p->p_vaddr;
5801 phdrs_paddr = p->p_paddr;
5802 if (m->includes_filehdr)
5805 phdrs_vaddr += bed->s->sizeof_ehdr;
5806 phdrs_paddr += bed->s->sizeof_ehdr;
5811 if (hdrs_segment != NULL && link_info != NULL)
5813 /* There is a segment that contains both the file headers and the
5814 program headers, so provide a symbol __ehdr_start pointing there.
5815 A program can use this to examine itself robustly. */
5817 struct elf_link_hash_entry *hash
5818 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5819 FALSE, FALSE, TRUE);
5820 /* If the symbol was referenced and not defined, define it. */
5822 && (hash->root.type == bfd_link_hash_new
5823 || hash->root.type == bfd_link_hash_undefined
5824 || hash->root.type == bfd_link_hash_undefweak
5825 || hash->root.type == bfd_link_hash_common))
5828 if (hdrs_segment->count != 0)
5829 /* The segment contains sections, so use the first one. */
5830 s = hdrs_segment->sections[0];
5832 /* Use the first (i.e. lowest-addressed) section in any segment. */
5833 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5842 hash->root.u.def.value = filehdr_vaddr - s->vma;
5843 hash->root.u.def.section = s;
5847 hash->root.u.def.value = filehdr_vaddr;
5848 hash->root.u.def.section = bfd_abs_section_ptr;
5851 hash->root.type = bfd_link_hash_defined;
5852 hash->def_regular = 1;
5857 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
5859 if (p->p_type == PT_GNU_RELRO)
5863 if (link_info != NULL)
5865 /* During linking the range of the RELRO segment is passed
5866 in link_info. Note that there may be padding between
5867 relro_start and the first RELRO section. */
5868 start = link_info->relro_start;
5869 end = link_info->relro_end;
5871 else if (m->count != 0)
5873 if (!m->p_size_valid)
5875 start = m->sections[0]->vma;
5876 end = start + m->p_size;
5886 struct elf_segment_map *lm;
5887 const Elf_Internal_Phdr *lp;
5890 /* Find a LOAD segment containing a section in the RELRO
5892 for (lm = elf_seg_map (abfd), lp = phdrs;
5894 lm = lm->next, lp++)
5896 if (lp->p_type == PT_LOAD
5898 && (lm->sections[lm->count - 1]->vma
5899 + (!IS_TBSS (lm->sections[lm->count - 1])
5900 ? lm->sections[lm->count - 1]->size
5902 && lm->sections[0]->vma < end)
5905 BFD_ASSERT (lm != NULL);
5907 /* Find the section starting the RELRO segment. */
5908 for (i = 0; i < lm->count; i++)
5910 asection *s = lm->sections[i];
5916 BFD_ASSERT (i < lm->count);
5918 p->p_vaddr = lm->sections[i]->vma;
5919 p->p_paddr = lm->sections[i]->lma;
5920 p->p_offset = lm->sections[i]->filepos;
5921 p->p_memsz = end - p->p_vaddr;
5922 p->p_filesz = p->p_memsz;
5924 /* The RELRO segment typically ends a few bytes into
5925 .got.plt but other layouts are possible. In cases
5926 where the end does not match any loaded section (for
5927 instance is in file padding), trim p_filesz back to
5928 correspond to the end of loaded section contents. */
5929 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
5930 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
5932 /* Preserve the alignment and flags if they are valid. The
5933 gold linker generates RW/4 for the PT_GNU_RELRO section.
5934 It is better for objcopy/strip to honor these attributes
5935 otherwise gdb will choke when using separate debug files.
5937 if (!m->p_align_valid)
5939 if (!m->p_flags_valid)
5944 memset (p, 0, sizeof *p);
5945 p->p_type = PT_NULL;
5948 else if (p->p_type == PT_GNU_STACK)
5950 if (m->p_size_valid)
5951 p->p_memsz = m->p_size;
5953 else if (m->count != 0)
5957 if (p->p_type != PT_LOAD
5958 && (p->p_type != PT_NOTE
5959 || bfd_get_format (abfd) != bfd_core))
5961 /* A user specified segment layout may include a PHDR
5962 segment that overlaps with a LOAD segment... */
5963 if (p->p_type == PT_PHDR)
5969 if (m->includes_filehdr || m->includes_phdrs)
5971 /* PR 17512: file: 2195325e. */
5973 (_("%pB: error: non-load segment %d includes file header "
5974 "and/or program header"),
5975 abfd, (int) (p - phdrs));
5980 p->p_offset = m->sections[0]->filepos;
5981 for (i = m->count; i-- != 0;)
5983 asection *sect = m->sections[i];
5984 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
5985 if (hdr->sh_type != SHT_NOBITS)
5987 p->p_filesz = (sect->filepos - m->sections[0]->filepos
5994 else if (m->includes_filehdr)
5996 p->p_vaddr = filehdr_vaddr;
5997 if (! m->p_paddr_valid)
5998 p->p_paddr = filehdr_paddr;
6000 else if (m->includes_phdrs)
6002 p->p_vaddr = phdrs_vaddr;
6003 if (! m->p_paddr_valid)
6004 p->p_paddr = phdrs_paddr;
6008 elf_next_file_pos (abfd) = off;
6013 static elf_section_list *
6014 find_section_in_list (unsigned int i, elf_section_list * list)
6016 for (;list != NULL; list = list->next)
6022 /* Work out the file positions of all the sections. This is called by
6023 _bfd_elf_compute_section_file_positions. All the section sizes and
6024 VMAs must be known before this is called.
6026 Reloc sections come in two flavours: Those processed specially as
6027 "side-channel" data attached to a section to which they apply, and
6028 those that bfd doesn't process as relocations. The latter sort are
6029 stored in a normal bfd section by bfd_section_from_shdr. We don't
6030 consider the former sort here, unless they form part of the loadable
6031 image. Reloc sections not assigned here will be handled later by
6032 assign_file_positions_for_relocs.
6034 We also don't set the positions of the .symtab and .strtab here. */
6037 assign_file_positions_except_relocs (bfd *abfd,
6038 struct bfd_link_info *link_info)
6040 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6041 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
6042 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6044 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6045 && bfd_get_format (abfd) != bfd_core)
6047 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6048 unsigned int num_sec = elf_numsections (abfd);
6049 Elf_Internal_Shdr **hdrpp;
6053 /* Start after the ELF header. */
6054 off = i_ehdrp->e_ehsize;
6056 /* We are not creating an executable, which means that we are
6057 not creating a program header, and that the actual order of
6058 the sections in the file is unimportant. */
6059 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
6061 Elf_Internal_Shdr *hdr;
6064 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6065 && hdr->bfd_section == NULL)
6066 || (hdr->bfd_section != NULL
6067 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS))
6068 /* Compress DWARF debug sections. */
6069 || i == elf_onesymtab (abfd)
6070 || (elf_symtab_shndx_list (abfd) != NULL
6071 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
6072 || i == elf_strtab_sec (abfd)
6073 || i == elf_shstrtab_sec (abfd))
6075 hdr->sh_offset = -1;
6078 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
6081 elf_next_file_pos (abfd) = off;
6087 /* Assign file positions for the loaded sections based on the
6088 assignment of sections to segments. */
6089 if (!assign_file_positions_for_load_sections (abfd, link_info))
6092 /* And for non-load sections. */
6093 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6096 if (bed->elf_backend_modify_program_headers != NULL)
6098 if (!(*bed->elf_backend_modify_program_headers) (abfd, link_info))
6102 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=. */
6103 if (link_info != NULL && bfd_link_pie (link_info))
6105 unsigned int num_segments = elf_elfheader (abfd)->e_phnum;
6106 Elf_Internal_Phdr *segment = elf_tdata (abfd)->phdr;
6107 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6109 /* Find the lowest p_vaddr in PT_LOAD segments. */
6110 bfd_vma p_vaddr = (bfd_vma) -1;
6111 for (; segment < end_segment; segment++)
6112 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6113 p_vaddr = segment->p_vaddr;
6115 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6116 segments is non-zero. */
6118 i_ehdrp->e_type = ET_EXEC;
6121 /* Write out the program headers. */
6122 alloc = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
6124 /* Sort the program headers into the ordering required by the ELF standard. */
6128 /* PR ld/20815 - Check that the program header segment, if present, will
6129 be loaded into memory. FIXME: The check below is not sufficient as
6130 really all PT_LOAD segments should be checked before issuing an error
6131 message. Plus the PHDR segment does not have to be the first segment
6132 in the program header table. But this version of the check should
6133 catch all real world use cases.
6135 FIXME: We used to have code here to sort the PT_LOAD segments into
6136 ascending order, as per the ELF spec. But this breaks some programs,
6137 including the Linux kernel. But really either the spec should be
6138 changed or the programs updated. */
6140 && tdata->phdr[0].p_type == PT_PHDR
6141 && (bed->elf_backend_allow_non_load_phdr == NULL
6142 || !bed->elf_backend_allow_non_load_phdr (abfd, tdata->phdr,
6144 && tdata->phdr[1].p_type == PT_LOAD
6145 && (tdata->phdr[1].p_vaddr > tdata->phdr[0].p_vaddr
6146 || (tdata->phdr[1].p_vaddr + tdata->phdr[1].p_memsz)
6147 < (tdata->phdr[0].p_vaddr + tdata->phdr[0].p_memsz)))
6149 /* The fix for this error is usually to edit the linker script being
6150 used and set up the program headers manually. Either that or
6151 leave room for the headers at the start of the SECTIONS. */
6152 _bfd_error_handler (_("\
6153 %pB: error: PHDR segment not covered by LOAD segment"),
6158 if (bfd_seek (abfd, (bfd_signed_vma) bed->s->sizeof_ehdr, SEEK_SET) != 0
6159 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6167 prep_headers (bfd *abfd)
6169 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
6170 struct elf_strtab_hash *shstrtab;
6171 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6173 i_ehdrp = elf_elfheader (abfd);
6175 shstrtab = _bfd_elf_strtab_init ();
6176 if (shstrtab == NULL)
6179 elf_shstrtab (abfd) = shstrtab;
6181 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6182 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6183 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6184 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6186 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6187 i_ehdrp->e_ident[EI_DATA] =
6188 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6189 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6191 if ((abfd->flags & DYNAMIC) != 0)
6192 i_ehdrp->e_type = ET_DYN;
6193 else if ((abfd->flags & EXEC_P) != 0)
6194 i_ehdrp->e_type = ET_EXEC;
6195 else if (bfd_get_format (abfd) == bfd_core)
6196 i_ehdrp->e_type = ET_CORE;
6198 i_ehdrp->e_type = ET_REL;
6200 switch (bfd_get_arch (abfd))
6202 case bfd_arch_unknown:
6203 i_ehdrp->e_machine = EM_NONE;
6206 /* There used to be a long list of cases here, each one setting
6207 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6208 in the corresponding bfd definition. To avoid duplication,
6209 the switch was removed. Machines that need special handling
6210 can generally do it in elf_backend_final_write_processing(),
6211 unless they need the information earlier than the final write.
6212 Such need can generally be supplied by replacing the tests for
6213 e_machine with the conditions used to determine it. */
6215 i_ehdrp->e_machine = bed->elf_machine_code;
6218 i_ehdrp->e_version = bed->s->ev_current;
6219 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6221 /* No program header, for now. */
6222 i_ehdrp->e_phoff = 0;
6223 i_ehdrp->e_phentsize = 0;
6224 i_ehdrp->e_phnum = 0;
6226 /* Each bfd section is section header entry. */
6227 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6228 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6230 /* If we're building an executable, we'll need a program header table. */
6231 if (abfd->flags & EXEC_P)
6232 /* It all happens later. */
6236 i_ehdrp->e_phentsize = 0;
6237 i_ehdrp->e_phoff = 0;
6240 elf_tdata (abfd)->symtab_hdr.sh_name =
6241 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
6242 elf_tdata (abfd)->strtab_hdr.sh_name =
6243 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
6244 elf_tdata (abfd)->shstrtab_hdr.sh_name =
6245 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
6246 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
6247 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
6248 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
6254 /* Assign file positions for all the reloc sections which are not part
6255 of the loadable file image, and the file position of section headers. */
6258 _bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
6261 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
6262 Elf_Internal_Shdr *shdrp;
6263 Elf_Internal_Ehdr *i_ehdrp;
6264 const struct elf_backend_data *bed;
6266 off = elf_next_file_pos (abfd);
6268 shdrpp = elf_elfsections (abfd);
6269 end_shdrpp = shdrpp + elf_numsections (abfd);
6270 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
6273 if (shdrp->sh_offset == -1)
6275 asection *sec = shdrp->bfd_section;
6276 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
6277 || shdrp->sh_type == SHT_RELA);
6279 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
6283 const char *name = sec->name;
6284 struct bfd_elf_section_data *d;
6286 /* Compress DWARF debug sections. */
6287 if (!bfd_compress_section (abfd, sec,
6291 if (sec->compress_status == COMPRESS_SECTION_DONE
6292 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6294 /* If section is compressed with zlib-gnu, convert
6295 section name from .debug_* to .zdebug_*. */
6297 = convert_debug_to_zdebug (abfd, name);
6298 if (new_name == NULL)
6302 /* Add section name to section name section. */
6303 if (shdrp->sh_name != (unsigned int) -1)
6306 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6308 d = elf_section_data (sec);
6310 /* Add reloc section name to section name section. */
6312 && !_bfd_elf_set_reloc_sh_name (abfd,
6317 && !_bfd_elf_set_reloc_sh_name (abfd,
6322 /* Update section size and contents. */
6323 shdrp->sh_size = sec->size;
6324 shdrp->contents = sec->contents;
6325 shdrp->bfd_section->contents = NULL;
6327 off = _bfd_elf_assign_file_position_for_section (shdrp,
6334 /* Place section name section after DWARF debug sections have been
6336 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6337 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6338 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6339 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6341 /* Place the section headers. */
6342 i_ehdrp = elf_elfheader (abfd);
6343 bed = get_elf_backend_data (abfd);
6344 off = align_file_position (off, 1 << bed->s->log_file_align);
6345 i_ehdrp->e_shoff = off;
6346 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
6347 elf_next_file_pos (abfd) = off;
6353 _bfd_elf_write_object_contents (bfd *abfd)
6355 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6356 Elf_Internal_Shdr **i_shdrp;
6358 unsigned int count, num_sec;
6359 struct elf_obj_tdata *t;
6361 if (! abfd->output_has_begun
6362 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
6365 i_shdrp = elf_elfsections (abfd);
6368 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6372 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6375 /* After writing the headers, we need to write the sections too... */
6376 num_sec = elf_numsections (abfd);
6377 for (count = 1; count < num_sec; count++)
6379 i_shdrp[count]->sh_name
6380 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6381 i_shdrp[count]->sh_name);
6382 if (bed->elf_backend_section_processing)
6383 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6385 if (i_shdrp[count]->contents)
6387 bfd_size_type amt = i_shdrp[count]->sh_size;
6389 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
6390 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
6395 /* Write out the section header names. */
6396 t = elf_tdata (abfd);
6397 if (elf_shstrtab (abfd) != NULL
6398 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
6399 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
6402 if (bed->elf_backend_final_write_processing)
6403 (*bed->elf_backend_final_write_processing) (abfd, elf_linker (abfd));
6405 if (!bed->s->write_shdrs_and_ehdr (abfd))
6408 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6409 if (t->o->build_id.after_write_object_contents != NULL)
6410 return (*t->o->build_id.after_write_object_contents) (abfd);
6416 _bfd_elf_write_corefile_contents (bfd *abfd)
6418 /* Hopefully this can be done just like an object file. */
6419 return _bfd_elf_write_object_contents (abfd);
6422 /* Given a section, search the header to find them. */
6425 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
6427 const struct elf_backend_data *bed;
6428 unsigned int sec_index;
6430 if (elf_section_data (asect) != NULL
6431 && elf_section_data (asect)->this_idx != 0)
6432 return elf_section_data (asect)->this_idx;
6434 if (bfd_is_abs_section (asect))
6435 sec_index = SHN_ABS;
6436 else if (bfd_is_com_section (asect))
6437 sec_index = SHN_COMMON;
6438 else if (bfd_is_und_section (asect))
6439 sec_index = SHN_UNDEF;
6441 sec_index = SHN_BAD;
6443 bed = get_elf_backend_data (abfd);
6444 if (bed->elf_backend_section_from_bfd_section)
6446 int retval = sec_index;
6448 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6452 if (sec_index == SHN_BAD)
6453 bfd_set_error (bfd_error_nonrepresentable_section);
6458 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6462 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
6464 asymbol *asym_ptr = *asym_ptr_ptr;
6466 flagword flags = asym_ptr->flags;
6468 /* When gas creates relocations against local labels, it creates its
6469 own symbol for the section, but does put the symbol into the
6470 symbol chain, so udata is 0. When the linker is generating
6471 relocatable output, this section symbol may be for one of the
6472 input sections rather than the output section. */
6473 if (asym_ptr->udata.i == 0
6474 && (flags & BSF_SECTION_SYM)
6475 && asym_ptr->section)
6480 sec = asym_ptr->section;
6481 if (sec->owner != abfd && sec->output_section != NULL)
6482 sec = sec->output_section;
6483 if (sec->owner == abfd
6484 && (indx = sec->index) < elf_num_section_syms (abfd)
6485 && elf_section_syms (abfd)[indx] != NULL)
6486 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6489 idx = asym_ptr->udata.i;
6493 /* This case can occur when using --strip-symbol on a symbol
6494 which is used in a relocation entry. */
6496 /* xgettext:c-format */
6497 (_("%pB: symbol `%s' required but not present"),
6498 abfd, bfd_asymbol_name (asym_ptr));
6499 bfd_set_error (bfd_error_no_symbols);
6506 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6507 (long) asym_ptr, asym_ptr->name, idx, flags);
6515 /* Rewrite program header information. */
6518 rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
6520 Elf_Internal_Ehdr *iehdr;
6521 struct elf_segment_map *map;
6522 struct elf_segment_map *map_first;
6523 struct elf_segment_map **pointer_to_map;
6524 Elf_Internal_Phdr *segment;
6527 unsigned int num_segments;
6528 bfd_boolean phdr_included = FALSE;
6529 bfd_boolean p_paddr_valid;
6530 bfd_vma maxpagesize;
6531 struct elf_segment_map *phdr_adjust_seg = NULL;
6532 unsigned int phdr_adjust_num = 0;
6533 const struct elf_backend_data *bed;
6535 bed = get_elf_backend_data (ibfd);
6536 iehdr = elf_elfheader (ibfd);
6539 pointer_to_map = &map_first;
6541 num_segments = elf_elfheader (ibfd)->e_phnum;
6542 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6544 /* Returns the end address of the segment + 1. */
6545 #define SEGMENT_END(segment, start) \
6546 (start + (segment->p_memsz > segment->p_filesz \
6547 ? segment->p_memsz : segment->p_filesz))
6549 #define SECTION_SIZE(section, segment) \
6550 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6551 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6552 ? section->size : 0)
6554 /* Returns TRUE if the given section is contained within
6555 the given segment. VMA addresses are compared. */
6556 #define IS_CONTAINED_BY_VMA(section, segment) \
6557 (section->vma >= segment->p_vaddr \
6558 && (section->vma + SECTION_SIZE (section, segment) \
6559 <= (SEGMENT_END (segment, segment->p_vaddr))))
6561 /* Returns TRUE if the given section is contained within
6562 the given segment. LMA addresses are compared. */
6563 #define IS_CONTAINED_BY_LMA(section, segment, base) \
6564 (section->lma >= base \
6565 && (section->lma + SECTION_SIZE (section, segment) \
6566 <= SEGMENT_END (segment, base)))
6568 /* Handle PT_NOTE segment. */
6569 #define IS_NOTE(p, s) \
6570 (p->p_type == PT_NOTE \
6571 && elf_section_type (s) == SHT_NOTE \
6572 && (bfd_vma) s->filepos >= p->p_offset \
6573 && ((bfd_vma) s->filepos + s->size \
6574 <= p->p_offset + p->p_filesz))
6576 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6578 #define IS_COREFILE_NOTE(p, s) \
6580 && bfd_get_format (ibfd) == bfd_core \
6584 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6585 linker, which generates a PT_INTERP section with p_vaddr and
6586 p_memsz set to 0. */
6587 #define IS_SOLARIS_PT_INTERP(p, s) \
6589 && p->p_paddr == 0 \
6590 && p->p_memsz == 0 \
6591 && p->p_filesz > 0 \
6592 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6594 && (bfd_vma) s->filepos >= p->p_offset \
6595 && ((bfd_vma) s->filepos + s->size \
6596 <= p->p_offset + p->p_filesz))
6598 /* Decide if the given section should be included in the given segment.
6599 A section will be included if:
6600 1. It is within the address space of the segment -- we use the LMA
6601 if that is set for the segment and the VMA otherwise,
6602 2. It is an allocated section or a NOTE section in a PT_NOTE
6604 3. There is an output section associated with it,
6605 4. The section has not already been allocated to a previous segment.
6606 5. PT_GNU_STACK segments do not include any sections.
6607 6. PT_TLS segment includes only SHF_TLS sections.
6608 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6609 8. PT_DYNAMIC should not contain empty sections at the beginning
6610 (with the possible exception of .dynamic). */
6611 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
6612 ((((segment->p_paddr \
6613 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
6614 : IS_CONTAINED_BY_VMA (section, segment)) \
6615 && (section->flags & SEC_ALLOC) != 0) \
6616 || IS_NOTE (segment, section)) \
6617 && segment->p_type != PT_GNU_STACK \
6618 && (segment->p_type != PT_TLS \
6619 || (section->flags & SEC_THREAD_LOCAL)) \
6620 && (segment->p_type == PT_LOAD \
6621 || segment->p_type == PT_TLS \
6622 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6623 && (segment->p_type != PT_DYNAMIC \
6624 || SECTION_SIZE (section, segment) > 0 \
6625 || (segment->p_paddr \
6626 ? segment->p_paddr != section->lma \
6627 : segment->p_vaddr != section->vma) \
6628 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
6630 && !section->segment_mark)
6632 /* If the output section of a section in the input segment is NULL,
6633 it is removed from the corresponding output segment. */
6634 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
6635 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
6636 && section->output_section != NULL)
6638 /* Returns TRUE iff seg1 starts after the end of seg2. */
6639 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6640 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6642 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6643 their VMA address ranges and their LMA address ranges overlap.
6644 It is possible to have overlapping VMA ranges without overlapping LMA
6645 ranges. RedBoot images for example can have both .data and .bss mapped
6646 to the same VMA range, but with the .data section mapped to a different
6648 #define SEGMENT_OVERLAPS(seg1, seg2) \
6649 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
6650 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
6651 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
6652 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
6654 /* Initialise the segment mark field. */
6655 for (section = ibfd->sections; section != NULL; section = section->next)
6656 section->segment_mark = FALSE;
6658 /* The Solaris linker creates program headers in which all the
6659 p_paddr fields are zero. When we try to objcopy or strip such a
6660 file, we get confused. Check for this case, and if we find it
6661 don't set the p_paddr_valid fields. */
6662 p_paddr_valid = FALSE;
6663 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6666 if (segment->p_paddr != 0)
6668 p_paddr_valid = TRUE;
6672 /* Scan through the segments specified in the program header
6673 of the input BFD. For this first scan we look for overlaps
6674 in the loadable segments. These can be created by weird
6675 parameters to objcopy. Also, fix some solaris weirdness. */
6676 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6681 Elf_Internal_Phdr *segment2;
6683 if (segment->p_type == PT_INTERP)
6684 for (section = ibfd->sections; section; section = section->next)
6685 if (IS_SOLARIS_PT_INTERP (segment, section))
6687 /* Mininal change so that the normal section to segment
6688 assignment code will work. */
6689 segment->p_vaddr = section->vma;
6693 if (segment->p_type != PT_LOAD)
6695 /* Remove PT_GNU_RELRO segment. */
6696 if (segment->p_type == PT_GNU_RELRO)
6697 segment->p_type = PT_NULL;
6701 /* Determine if this segment overlaps any previous segments. */
6702 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
6704 bfd_signed_vma extra_length;
6706 if (segment2->p_type != PT_LOAD
6707 || !SEGMENT_OVERLAPS (segment, segment2))
6710 /* Merge the two segments together. */
6711 if (segment2->p_vaddr < segment->p_vaddr)
6713 /* Extend SEGMENT2 to include SEGMENT and then delete
6715 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6716 - SEGMENT_END (segment2, segment2->p_vaddr));
6718 if (extra_length > 0)
6720 segment2->p_memsz += extra_length;
6721 segment2->p_filesz += extra_length;
6724 segment->p_type = PT_NULL;
6726 /* Since we have deleted P we must restart the outer loop. */
6728 segment = elf_tdata (ibfd)->phdr;
6733 /* Extend SEGMENT to include SEGMENT2 and then delete
6735 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
6736 - SEGMENT_END (segment, segment->p_vaddr));
6738 if (extra_length > 0)
6740 segment->p_memsz += extra_length;
6741 segment->p_filesz += extra_length;
6744 segment2->p_type = PT_NULL;
6749 /* The second scan attempts to assign sections to segments. */
6750 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6754 unsigned int section_count;
6755 asection **sections;
6756 asection *output_section;
6758 bfd_vma matching_lma;
6759 bfd_vma suggested_lma;
6762 asection *first_section;
6763 bfd_boolean first_matching_lma;
6764 bfd_boolean first_suggested_lma;
6766 if (segment->p_type == PT_NULL)
6769 first_section = NULL;
6770 /* Compute how many sections might be placed into this segment. */
6771 for (section = ibfd->sections, section_count = 0;
6773 section = section->next)
6775 /* Find the first section in the input segment, which may be
6776 removed from the corresponding output segment. */
6777 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
6779 if (first_section == NULL)
6780 first_section = section;
6781 if (section->output_section != NULL)
6786 /* Allocate a segment map big enough to contain
6787 all of the sections we have selected. */
6788 amt = sizeof (struct elf_segment_map);
6789 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
6790 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
6794 /* Initialise the fields of the segment map. Default to
6795 using the physical address of the segment in the input BFD. */
6797 map->p_type = segment->p_type;
6798 map->p_flags = segment->p_flags;
6799 map->p_flags_valid = 1;
6801 /* If the first section in the input segment is removed, there is
6802 no need to preserve segment physical address in the corresponding
6804 if (!first_section || first_section->output_section != NULL)
6806 map->p_paddr = segment->p_paddr;
6807 map->p_paddr_valid = p_paddr_valid;
6810 /* Determine if this segment contains the ELF file header
6811 and if it contains the program headers themselves. */
6812 map->includes_filehdr = (segment->p_offset == 0
6813 && segment->p_filesz >= iehdr->e_ehsize);
6814 map->includes_phdrs = 0;
6816 if (!phdr_included || segment->p_type != PT_LOAD)
6818 map->includes_phdrs =
6819 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
6820 && (segment->p_offset + segment->p_filesz
6821 >= ((bfd_vma) iehdr->e_phoff
6822 + iehdr->e_phnum * iehdr->e_phentsize)));
6824 if (segment->p_type == PT_LOAD && map->includes_phdrs)
6825 phdr_included = TRUE;
6828 if (section_count == 0)
6830 /* Special segments, such as the PT_PHDR segment, may contain
6831 no sections, but ordinary, loadable segments should contain
6832 something. They are allowed by the ELF spec however, so only
6833 a warning is produced.
6834 There is however the valid use case of embedded systems which
6835 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
6836 flash memory with zeros. No warning is shown for that case. */
6837 if (segment->p_type == PT_LOAD
6838 && (segment->p_filesz > 0 || segment->p_memsz == 0))
6839 /* xgettext:c-format */
6840 _bfd_error_handler (_("%pB: warning: Empty loadable segment detected"
6841 " at vaddr=%#" PRIx64 ", is this intentional?"),
6842 ibfd, (uint64_t) segment->p_vaddr);
6845 *pointer_to_map = map;
6846 pointer_to_map = &map->next;
6851 /* Now scan the sections in the input BFD again and attempt
6852 to add their corresponding output sections to the segment map.
6853 The problem here is how to handle an output section which has
6854 been moved (ie had its LMA changed). There are four possibilities:
6856 1. None of the sections have been moved.
6857 In this case we can continue to use the segment LMA from the
6860 2. All of the sections have been moved by the same amount.
6861 In this case we can change the segment's LMA to match the LMA
6862 of the first section.
6864 3. Some of the sections have been moved, others have not.
6865 In this case those sections which have not been moved can be
6866 placed in the current segment which will have to have its size,
6867 and possibly its LMA changed, and a new segment or segments will
6868 have to be created to contain the other sections.
6870 4. The sections have been moved, but not by the same amount.
6871 In this case we can change the segment's LMA to match the LMA
6872 of the first section and we will have to create a new segment
6873 or segments to contain the other sections.
6875 In order to save time, we allocate an array to hold the section
6876 pointers that we are interested in. As these sections get assigned
6877 to a segment, they are removed from this array. */
6879 sections = (asection **) bfd_malloc2 (section_count, sizeof (asection *));
6880 if (sections == NULL)
6883 /* Step One: Scan for segment vs section LMA conflicts.
6884 Also add the sections to the section array allocated above.
6885 Also add the sections to the current segment. In the common
6886 case, where the sections have not been moved, this means that
6887 we have completely filled the segment, and there is nothing
6892 first_matching_lma = TRUE;
6893 first_suggested_lma = TRUE;
6895 for (section = first_section, j = 0;
6897 section = section->next)
6899 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
6901 output_section = section->output_section;
6903 sections[j++] = section;
6905 /* The Solaris native linker always sets p_paddr to 0.
6906 We try to catch that case here, and set it to the
6907 correct value. Note - some backends require that
6908 p_paddr be left as zero. */
6910 && segment->p_vaddr != 0
6911 && !bed->want_p_paddr_set_to_zero
6913 && output_section->lma != 0
6914 && output_section->vma == (segment->p_vaddr
6915 + (map->includes_filehdr
6918 + (map->includes_phdrs
6920 * iehdr->e_phentsize)
6922 map->p_paddr = segment->p_vaddr;
6924 /* Match up the physical address of the segment with the
6925 LMA address of the output section. */
6926 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
6927 || IS_COREFILE_NOTE (segment, section)
6928 || (bed->want_p_paddr_set_to_zero
6929 && IS_CONTAINED_BY_VMA (output_section, segment)))
6931 if (first_matching_lma || output_section->lma < matching_lma)
6933 matching_lma = output_section->lma;
6934 first_matching_lma = FALSE;
6937 /* We assume that if the section fits within the segment
6938 then it does not overlap any other section within that
6940 map->sections[isec++] = output_section;
6942 else if (first_suggested_lma)
6944 suggested_lma = output_section->lma;
6945 first_suggested_lma = FALSE;
6948 if (j == section_count)
6953 BFD_ASSERT (j == section_count);
6955 /* Step Two: Adjust the physical address of the current segment,
6957 if (isec == section_count)
6959 /* All of the sections fitted within the segment as currently
6960 specified. This is the default case. Add the segment to
6961 the list of built segments and carry on to process the next
6962 program header in the input BFD. */
6963 map->count = section_count;
6964 *pointer_to_map = map;
6965 pointer_to_map = &map->next;
6968 && !bed->want_p_paddr_set_to_zero
6969 && matching_lma != map->p_paddr
6970 && !map->includes_filehdr
6971 && !map->includes_phdrs)
6972 /* There is some padding before the first section in the
6973 segment. So, we must account for that in the output
6975 map->p_vaddr_offset = matching_lma - map->p_paddr;
6982 if (!first_matching_lma)
6984 /* At least one section fits inside the current segment.
6985 Keep it, but modify its physical address to match the
6986 LMA of the first section that fitted. */
6987 map->p_paddr = matching_lma;
6991 /* None of the sections fitted inside the current segment.
6992 Change the current segment's physical address to match
6993 the LMA of the first section. */
6994 map->p_paddr = suggested_lma;
6997 /* Offset the segment physical address from the lma
6998 to allow for space taken up by elf headers. */
6999 if (map->includes_filehdr)
7001 if (map->p_paddr >= iehdr->e_ehsize)
7002 map->p_paddr -= iehdr->e_ehsize;
7005 map->includes_filehdr = FALSE;
7006 map->includes_phdrs = FALSE;
7010 if (map->includes_phdrs)
7012 if (map->p_paddr >= iehdr->e_phnum * iehdr->e_phentsize)
7014 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7016 /* iehdr->e_phnum is just an estimate of the number
7017 of program headers that we will need. Make a note
7018 here of the number we used and the segment we chose
7019 to hold these headers, so that we can adjust the
7020 offset when we know the correct value. */
7021 phdr_adjust_num = iehdr->e_phnum;
7022 phdr_adjust_seg = map;
7025 map->includes_phdrs = FALSE;
7029 /* Step Three: Loop over the sections again, this time assigning
7030 those that fit to the current segment and removing them from the
7031 sections array; but making sure not to leave large gaps. Once all
7032 possible sections have been assigned to the current segment it is
7033 added to the list of built segments and if sections still remain
7034 to be assigned, a new segment is constructed before repeating
7041 first_suggested_lma = TRUE;
7043 /* Fill the current segment with sections that fit. */
7044 for (j = 0; j < section_count; j++)
7046 section = sections[j];
7048 if (section == NULL)
7051 output_section = section->output_section;
7053 BFD_ASSERT (output_section != NULL);
7055 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
7056 || IS_COREFILE_NOTE (segment, section))
7058 if (map->count == 0)
7060 /* If the first section in a segment does not start at
7061 the beginning of the segment, then something is
7063 if (output_section->lma
7065 + (map->includes_filehdr ? iehdr->e_ehsize : 0)
7066 + (map->includes_phdrs
7067 ? iehdr->e_phnum * iehdr->e_phentsize
7075 prev_sec = map->sections[map->count - 1];
7077 /* If the gap between the end of the previous section
7078 and the start of this section is more than
7079 maxpagesize then we need to start a new segment. */
7080 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
7082 < BFD_ALIGN (output_section->lma, maxpagesize))
7083 || (prev_sec->lma + prev_sec->size
7084 > output_section->lma))
7086 if (first_suggested_lma)
7088 suggested_lma = output_section->lma;
7089 first_suggested_lma = FALSE;
7096 map->sections[map->count++] = output_section;
7099 section->segment_mark = TRUE;
7101 else if (first_suggested_lma)
7103 suggested_lma = output_section->lma;
7104 first_suggested_lma = FALSE;
7108 BFD_ASSERT (map->count > 0);
7110 /* Add the current segment to the list of built segments. */
7111 *pointer_to_map = map;
7112 pointer_to_map = &map->next;
7114 if (isec < section_count)
7116 /* We still have not allocated all of the sections to
7117 segments. Create a new segment here, initialise it
7118 and carry on looping. */
7119 amt = sizeof (struct elf_segment_map);
7120 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
7121 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7128 /* Initialise the fields of the segment map. Set the physical
7129 physical address to the LMA of the first section that has
7130 not yet been assigned. */
7132 map->p_type = segment->p_type;
7133 map->p_flags = segment->p_flags;
7134 map->p_flags_valid = 1;
7135 map->p_paddr = suggested_lma;
7136 map->p_paddr_valid = p_paddr_valid;
7137 map->includes_filehdr = 0;
7138 map->includes_phdrs = 0;
7141 while (isec < section_count);
7146 elf_seg_map (obfd) = map_first;
7148 /* If we had to estimate the number of program headers that were
7149 going to be needed, then check our estimate now and adjust
7150 the offset if necessary. */
7151 if (phdr_adjust_seg != NULL)
7155 for (count = 0, map = map_first; map != NULL; map = map->next)
7158 if (count > phdr_adjust_num)
7159 phdr_adjust_seg->p_paddr
7160 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
7165 #undef IS_CONTAINED_BY_VMA
7166 #undef IS_CONTAINED_BY_LMA
7168 #undef IS_COREFILE_NOTE
7169 #undef IS_SOLARIS_PT_INTERP
7170 #undef IS_SECTION_IN_INPUT_SEGMENT
7171 #undef INCLUDE_SECTION_IN_SEGMENT
7172 #undef SEGMENT_AFTER_SEGMENT
7173 #undef SEGMENT_OVERLAPS
7177 /* Copy ELF program header information. */
7180 copy_elf_program_header (bfd *ibfd, bfd *obfd)
7182 Elf_Internal_Ehdr *iehdr;
7183 struct elf_segment_map *map;
7184 struct elf_segment_map *map_first;
7185 struct elf_segment_map **pointer_to_map;
7186 Elf_Internal_Phdr *segment;
7188 unsigned int num_segments;
7189 bfd_boolean phdr_included = FALSE;
7190 bfd_boolean p_paddr_valid;
7192 iehdr = elf_elfheader (ibfd);
7195 pointer_to_map = &map_first;
7197 /* If all the segment p_paddr fields are zero, don't set
7198 map->p_paddr_valid. */
7199 p_paddr_valid = FALSE;
7200 num_segments = elf_elfheader (ibfd)->e_phnum;
7201 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7204 if (segment->p_paddr != 0)
7206 p_paddr_valid = TRUE;
7210 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7215 unsigned int section_count;
7217 Elf_Internal_Shdr *this_hdr;
7218 asection *first_section = NULL;
7219 asection *lowest_section;
7221 /* Compute how many sections are in this segment. */
7222 for (section = ibfd->sections, section_count = 0;
7224 section = section->next)
7226 this_hdr = &(elf_section_data(section)->this_hdr);
7227 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7229 if (first_section == NULL)
7230 first_section = section;
7235 /* Allocate a segment map big enough to contain
7236 all of the sections we have selected. */
7237 amt = sizeof (struct elf_segment_map);
7238 if (section_count != 0)
7239 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
7240 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7244 /* Initialize the fields of the output segment map with the
7247 map->p_type = segment->p_type;
7248 map->p_flags = segment->p_flags;
7249 map->p_flags_valid = 1;
7250 map->p_paddr = segment->p_paddr;
7251 map->p_paddr_valid = p_paddr_valid;
7252 map->p_align = segment->p_align;
7253 map->p_align_valid = 1;
7254 map->p_vaddr_offset = 0;
7256 if (map->p_type == PT_GNU_RELRO
7257 || map->p_type == PT_GNU_STACK)
7259 /* The PT_GNU_RELRO segment may contain the first a few
7260 bytes in the .got.plt section even if the whole .got.plt
7261 section isn't in the PT_GNU_RELRO segment. We won't
7262 change the size of the PT_GNU_RELRO segment.
7263 Similarly, PT_GNU_STACK size is significant on uclinux
7265 map->p_size = segment->p_memsz;
7266 map->p_size_valid = 1;
7269 /* Determine if this segment contains the ELF file header
7270 and if it contains the program headers themselves. */
7271 map->includes_filehdr = (segment->p_offset == 0
7272 && segment->p_filesz >= iehdr->e_ehsize);
7274 map->includes_phdrs = 0;
7275 if (! phdr_included || segment->p_type != PT_LOAD)
7277 map->includes_phdrs =
7278 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7279 && (segment->p_offset + segment->p_filesz
7280 >= ((bfd_vma) iehdr->e_phoff
7281 + iehdr->e_phnum * iehdr->e_phentsize)));
7283 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7284 phdr_included = TRUE;
7287 lowest_section = NULL;
7288 if (section_count != 0)
7290 unsigned int isec = 0;
7292 for (section = first_section;
7294 section = section->next)
7296 this_hdr = &(elf_section_data(section)->this_hdr);
7297 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7299 map->sections[isec++] = section->output_section;
7300 if ((section->flags & SEC_ALLOC) != 0)
7304 if (lowest_section == NULL
7305 || section->lma < lowest_section->lma)
7306 lowest_section = section;
7308 /* Section lmas are set up from PT_LOAD header
7309 p_paddr in _bfd_elf_make_section_from_shdr.
7310 If this header has a p_paddr that disagrees
7311 with the section lma, flag the p_paddr as
7313 if ((section->flags & SEC_LOAD) != 0)
7314 seg_off = this_hdr->sh_offset - segment->p_offset;
7316 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7317 if (section->lma - segment->p_paddr != seg_off)
7318 map->p_paddr_valid = FALSE;
7320 if (isec == section_count)
7326 if (map->includes_filehdr && lowest_section != NULL)
7327 /* We need to keep the space used by the headers fixed. */
7328 map->header_size = lowest_section->vma - segment->p_vaddr;
7330 if (!map->includes_phdrs
7331 && !map->includes_filehdr
7332 && map->p_paddr_valid)
7333 /* There is some other padding before the first section. */
7334 map->p_vaddr_offset = ((lowest_section ? lowest_section->lma : 0)
7335 - segment->p_paddr);
7337 map->count = section_count;
7338 *pointer_to_map = map;
7339 pointer_to_map = &map->next;
7342 elf_seg_map (obfd) = map_first;
7346 /* Copy private BFD data. This copies or rewrites ELF program header
7350 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7352 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7353 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7356 if (elf_tdata (ibfd)->phdr == NULL)
7359 if (ibfd->xvec == obfd->xvec)
7361 /* Check to see if any sections in the input BFD
7362 covered by ELF program header have changed. */
7363 Elf_Internal_Phdr *segment;
7364 asection *section, *osec;
7365 unsigned int i, num_segments;
7366 Elf_Internal_Shdr *this_hdr;
7367 const struct elf_backend_data *bed;
7369 bed = get_elf_backend_data (ibfd);
7371 /* Regenerate the segment map if p_paddr is set to 0. */
7372 if (bed->want_p_paddr_set_to_zero)
7375 /* Initialize the segment mark field. */
7376 for (section = obfd->sections; section != NULL;
7377 section = section->next)
7378 section->segment_mark = FALSE;
7380 num_segments = elf_elfheader (ibfd)->e_phnum;
7381 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7385 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7386 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7387 which severly confuses things, so always regenerate the segment
7388 map in this case. */
7389 if (segment->p_paddr == 0
7390 && segment->p_memsz == 0
7391 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
7394 for (section = ibfd->sections;
7395 section != NULL; section = section->next)
7397 /* We mark the output section so that we know it comes
7398 from the input BFD. */
7399 osec = section->output_section;
7401 osec->segment_mark = TRUE;
7403 /* Check if this section is covered by the segment. */
7404 this_hdr = &(elf_section_data(section)->this_hdr);
7405 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7407 /* FIXME: Check if its output section is changed or
7408 removed. What else do we need to check? */
7410 || section->flags != osec->flags
7411 || section->lma != osec->lma
7412 || section->vma != osec->vma
7413 || section->size != osec->size
7414 || section->rawsize != osec->rawsize
7415 || section->alignment_power != osec->alignment_power)
7421 /* Check to see if any output section do not come from the
7423 for (section = obfd->sections; section != NULL;
7424 section = section->next)
7426 if (!section->segment_mark)
7429 section->segment_mark = FALSE;
7432 return copy_elf_program_header (ibfd, obfd);
7436 if (ibfd->xvec == obfd->xvec)
7438 /* When rewriting program header, set the output maxpagesize to
7439 the maximum alignment of input PT_LOAD segments. */
7440 Elf_Internal_Phdr *segment;
7442 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7443 bfd_vma maxpagesize = 0;
7445 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7448 if (segment->p_type == PT_LOAD
7449 && maxpagesize < segment->p_align)
7451 /* PR 17512: file: f17299af. */
7452 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
7453 /* xgettext:c-format */
7454 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7455 PRIx64 " is too large"),
7456 ibfd, (uint64_t) segment->p_align);
7458 maxpagesize = segment->p_align;
7461 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7462 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7465 return rewrite_elf_program_header (ibfd, obfd);
7468 /* Initialize private output section information from input section. */
7471 _bfd_elf_init_private_section_data (bfd *ibfd,
7475 struct bfd_link_info *link_info)
7478 Elf_Internal_Shdr *ihdr, *ohdr;
7479 bfd_boolean final_link = (link_info != NULL
7480 && !bfd_link_relocatable (link_info));
7482 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7483 || obfd->xvec->flavour != bfd_target_elf_flavour)
7486 BFD_ASSERT (elf_section_data (osec) != NULL);
7488 /* For objcopy and relocatable link, don't copy the output ELF
7489 section type from input if the output BFD section flags have been
7490 set to something different. For a final link allow some flags
7491 that the linker clears to differ. */
7492 if (elf_section_type (osec) == SHT_NULL
7493 && (osec->flags == isec->flags
7495 && ((osec->flags ^ isec->flags)
7496 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
7497 elf_section_type (osec) = elf_section_type (isec);
7499 /* FIXME: Is this correct for all OS/PROC specific flags? */
7500 elf_section_flags (osec) |= (elf_section_flags (isec)
7501 & (SHF_MASKOS | SHF_MASKPROC));
7503 /* Copy sh_info from input for mbind section. */
7504 if (elf_section_flags (isec) & SHF_GNU_MBIND)
7505 elf_section_data (osec)->this_hdr.sh_info
7506 = elf_section_data (isec)->this_hdr.sh_info;
7508 /* Set things up for objcopy and relocatable link. The output
7509 SHT_GROUP section will have its elf_next_in_group pointing back
7510 to the input group members. Ignore linker created group section.
7511 See elfNN_ia64_object_p in elfxx-ia64.c. */
7512 if ((link_info == NULL
7513 || !link_info->resolve_section_groups)
7514 && (elf_sec_group (isec) == NULL
7515 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
7517 if (elf_section_flags (isec) & SHF_GROUP)
7518 elf_section_flags (osec) |= SHF_GROUP;
7519 elf_next_in_group (osec) = elf_next_in_group (isec);
7520 elf_section_data (osec)->group = elf_section_data (isec)->group;
7523 /* If not decompress, preserve SHF_COMPRESSED. */
7524 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7525 elf_section_flags (osec) |= (elf_section_flags (isec)
7528 ihdr = &elf_section_data (isec)->this_hdr;
7530 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7531 don't use the output section of the linked-to section since it
7532 may be NULL at this point. */
7533 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7535 ohdr = &elf_section_data (osec)->this_hdr;
7536 ohdr->sh_flags |= SHF_LINK_ORDER;
7537 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7540 osec->use_rela_p = isec->use_rela_p;
7545 /* Copy private section information. This copies over the entsize
7546 field, and sometimes the info field. */
7549 _bfd_elf_copy_private_section_data (bfd *ibfd,
7554 Elf_Internal_Shdr *ihdr, *ohdr;
7556 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7557 || obfd->xvec->flavour != bfd_target_elf_flavour)
7560 ihdr = &elf_section_data (isec)->this_hdr;
7561 ohdr = &elf_section_data (osec)->this_hdr;
7563 ohdr->sh_entsize = ihdr->sh_entsize;
7565 if (ihdr->sh_type == SHT_SYMTAB
7566 || ihdr->sh_type == SHT_DYNSYM
7567 || ihdr->sh_type == SHT_GNU_verneed
7568 || ihdr->sh_type == SHT_GNU_verdef)
7569 ohdr->sh_info = ihdr->sh_info;
7571 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7575 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7576 necessary if we are removing either the SHT_GROUP section or any of
7577 the group member sections. DISCARDED is the value that a section's
7578 output_section has if the section will be discarded, NULL when this
7579 function is called from objcopy, bfd_abs_section_ptr when called
7583 _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
7587 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
7588 if (elf_section_type (isec) == SHT_GROUP)
7590 asection *first = elf_next_in_group (isec);
7591 asection *s = first;
7592 bfd_size_type removed = 0;
7596 /* If this member section is being output but the
7597 SHT_GROUP section is not, then clear the group info
7598 set up by _bfd_elf_copy_private_section_data. */
7599 if (s->output_section != discarded
7600 && isec->output_section == discarded)
7602 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7603 elf_group_name (s->output_section) = NULL;
7605 /* Conversely, if the member section is not being output
7606 but the SHT_GROUP section is, then adjust its size. */
7607 else if (s->output_section == discarded
7608 && isec->output_section != discarded)
7610 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7612 if (elf_sec->rel.hdr != NULL
7613 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7615 if (elf_sec->rela.hdr != NULL
7616 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7619 s = elf_next_in_group (s);
7625 if (discarded != NULL)
7627 /* If we've been called for ld -r, then we need to
7628 adjust the input section size. */
7629 if (isec->rawsize == 0)
7630 isec->rawsize = isec->size;
7631 isec->size = isec->rawsize - removed;
7632 if (isec->size <= 4)
7635 isec->flags |= SEC_EXCLUDE;
7640 /* Adjust the output section size when called from
7642 isec->output_section->size -= removed;
7643 if (isec->output_section->size <= 4)
7645 isec->output_section->size = 0;
7646 isec->output_section->flags |= SEC_EXCLUDE;
7655 /* Copy private header information. */
7658 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7660 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7661 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7664 /* Copy over private BFD data if it has not already been copied.
7665 This must be done here, rather than in the copy_private_bfd_data
7666 entry point, because the latter is called after the section
7667 contents have been set, which means that the program headers have
7668 already been worked out. */
7669 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
7671 if (! copy_private_bfd_data (ibfd, obfd))
7675 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7678 /* Copy private symbol information. If this symbol is in a section
7679 which we did not map into a BFD section, try to map the section
7680 index correctly. We use special macro definitions for the mapped
7681 section indices; these definitions are interpreted by the
7682 swap_out_syms function. */
7684 #define MAP_ONESYMTAB (SHN_HIOS + 1)
7685 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
7686 #define MAP_STRTAB (SHN_HIOS + 3)
7687 #define MAP_SHSTRTAB (SHN_HIOS + 4)
7688 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
7691 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
7696 elf_symbol_type *isym, *osym;
7698 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7699 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7702 isym = elf_symbol_from (ibfd, isymarg);
7703 osym = elf_symbol_from (obfd, osymarg);
7706 && isym->internal_elf_sym.st_shndx != 0
7708 && bfd_is_abs_section (isym->symbol.section))
7712 shndx = isym->internal_elf_sym.st_shndx;
7713 if (shndx == elf_onesymtab (ibfd))
7714 shndx = MAP_ONESYMTAB;
7715 else if (shndx == elf_dynsymtab (ibfd))
7716 shndx = MAP_DYNSYMTAB;
7717 else if (shndx == elf_strtab_sec (ibfd))
7719 else if (shndx == elf_shstrtab_sec (ibfd))
7720 shndx = MAP_SHSTRTAB;
7721 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
7722 shndx = MAP_SYM_SHNDX;
7723 osym->internal_elf_sym.st_shndx = shndx;
7729 /* Swap out the symbols. */
7732 swap_out_syms (bfd *abfd,
7733 struct elf_strtab_hash **sttp,
7736 const struct elf_backend_data *bed;
7739 struct elf_strtab_hash *stt;
7740 Elf_Internal_Shdr *symtab_hdr;
7741 Elf_Internal_Shdr *symtab_shndx_hdr;
7742 Elf_Internal_Shdr *symstrtab_hdr;
7743 struct elf_sym_strtab *symstrtab;
7744 bfd_byte *outbound_syms;
7745 bfd_byte *outbound_shndx;
7746 unsigned long outbound_syms_index;
7747 unsigned long outbound_shndx_index;
7749 unsigned int num_locals;
7751 bfd_boolean name_local_sections;
7753 if (!elf_map_symbols (abfd, &num_locals))
7756 /* Dump out the symtabs. */
7757 stt = _bfd_elf_strtab_init ();
7761 bed = get_elf_backend_data (abfd);
7762 symcount = bfd_get_symcount (abfd);
7763 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7764 symtab_hdr->sh_type = SHT_SYMTAB;
7765 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
7766 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
7767 symtab_hdr->sh_info = num_locals + 1;
7768 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
7770 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
7771 symstrtab_hdr->sh_type = SHT_STRTAB;
7773 /* Allocate buffer to swap out the .strtab section. */
7774 symstrtab = (struct elf_sym_strtab *) bfd_malloc ((symcount + 1)
7775 * sizeof (*symstrtab));
7776 if (symstrtab == NULL)
7778 _bfd_elf_strtab_free (stt);
7782 outbound_syms = (bfd_byte *) bfd_alloc2 (abfd, 1 + symcount,
7783 bed->s->sizeof_sym);
7784 if (outbound_syms == NULL)
7787 _bfd_elf_strtab_free (stt);
7791 symtab_hdr->contents = outbound_syms;
7792 outbound_syms_index = 0;
7794 outbound_shndx = NULL;
7795 outbound_shndx_index = 0;
7797 if (elf_symtab_shndx_list (abfd))
7799 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
7800 if (symtab_shndx_hdr->sh_name != 0)
7802 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
7803 outbound_shndx = (bfd_byte *)
7804 bfd_zalloc2 (abfd, 1 + symcount, sizeof (Elf_External_Sym_Shndx));
7805 if (outbound_shndx == NULL)
7808 symtab_shndx_hdr->contents = outbound_shndx;
7809 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
7810 symtab_shndx_hdr->sh_size = amt;
7811 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
7812 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
7814 /* FIXME: What about any other headers in the list ? */
7817 /* Now generate the data (for "contents"). */
7819 /* Fill in zeroth symbol and swap it out. */
7820 Elf_Internal_Sym sym;
7826 sym.st_shndx = SHN_UNDEF;
7827 sym.st_target_internal = 0;
7828 symstrtab[0].sym = sym;
7829 symstrtab[0].dest_index = outbound_syms_index;
7830 symstrtab[0].destshndx_index = outbound_shndx_index;
7831 outbound_syms_index++;
7832 if (outbound_shndx != NULL)
7833 outbound_shndx_index++;
7837 = (bed->elf_backend_name_local_section_symbols
7838 && bed->elf_backend_name_local_section_symbols (abfd));
7840 syms = bfd_get_outsymbols (abfd);
7841 for (idx = 0; idx < symcount;)
7843 Elf_Internal_Sym sym;
7844 bfd_vma value = syms[idx]->value;
7845 elf_symbol_type *type_ptr;
7846 flagword flags = syms[idx]->flags;
7849 if (!name_local_sections
7850 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
7852 /* Local section symbols have no name. */
7853 sym.st_name = (unsigned long) -1;
7857 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
7858 to get the final offset for st_name. */
7860 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
7862 if (sym.st_name == (unsigned long) -1)
7866 type_ptr = elf_symbol_from (abfd, syms[idx]);
7868 if ((flags & BSF_SECTION_SYM) == 0
7869 && bfd_is_com_section (syms[idx]->section))
7871 /* ELF common symbols put the alignment into the `value' field,
7872 and the size into the `size' field. This is backwards from
7873 how BFD handles it, so reverse it here. */
7874 sym.st_size = value;
7875 if (type_ptr == NULL
7876 || type_ptr->internal_elf_sym.st_value == 0)
7877 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
7879 sym.st_value = type_ptr->internal_elf_sym.st_value;
7880 sym.st_shndx = _bfd_elf_section_from_bfd_section
7881 (abfd, syms[idx]->section);
7885 asection *sec = syms[idx]->section;
7888 if (sec->output_section)
7890 value += sec->output_offset;
7891 sec = sec->output_section;
7894 /* Don't add in the section vma for relocatable output. */
7895 if (! relocatable_p)
7897 sym.st_value = value;
7898 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
7900 if (bfd_is_abs_section (sec)
7902 && type_ptr->internal_elf_sym.st_shndx != 0)
7904 /* This symbol is in a real ELF section which we did
7905 not create as a BFD section. Undo the mapping done
7906 by copy_private_symbol_data. */
7907 shndx = type_ptr->internal_elf_sym.st_shndx;
7911 shndx = elf_onesymtab (abfd);
7914 shndx = elf_dynsymtab (abfd);
7917 shndx = elf_strtab_sec (abfd);
7920 shndx = elf_shstrtab_sec (abfd);
7923 if (elf_symtab_shndx_list (abfd))
7924 shndx = elf_symtab_shndx_list (abfd)->ndx;
7933 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
7935 if (shndx == SHN_BAD)
7939 /* Writing this would be a hell of a lot easier if
7940 we had some decent documentation on bfd, and
7941 knew what to expect of the library, and what to
7942 demand of applications. For example, it
7943 appears that `objcopy' might not set the
7944 section of a symbol to be a section that is
7945 actually in the output file. */
7946 sec2 = bfd_get_section_by_name (abfd, sec->name);
7948 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
7949 if (shndx == SHN_BAD)
7951 /* xgettext:c-format */
7952 _bfd_error_handler (_("\
7953 Unable to find equivalent output section for symbol '%s' from section '%s'"),
7954 syms[idx]->name ? syms[idx]->name : "<Local sym>",
7956 bfd_set_error (bfd_error_invalid_operation);
7962 sym.st_shndx = shndx;
7965 if ((flags & BSF_THREAD_LOCAL) != 0)
7967 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
7968 type = STT_GNU_IFUNC;
7969 else if ((flags & BSF_FUNCTION) != 0)
7971 else if ((flags & BSF_OBJECT) != 0)
7973 else if ((flags & BSF_RELC) != 0)
7975 else if ((flags & BSF_SRELC) != 0)
7980 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
7983 /* Processor-specific types. */
7984 if (type_ptr != NULL
7985 && bed->elf_backend_get_symbol_type)
7986 type = ((*bed->elf_backend_get_symbol_type)
7987 (&type_ptr->internal_elf_sym, type));
7989 if (flags & BSF_SECTION_SYM)
7991 if (flags & BSF_GLOBAL)
7992 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
7994 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
7996 else if (bfd_is_com_section (syms[idx]->section))
7998 if (type != STT_TLS)
8000 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8001 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8002 ? STT_COMMON : STT_OBJECT);
8004 type = ((flags & BSF_ELF_COMMON) != 0
8005 ? STT_COMMON : STT_OBJECT);
8007 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
8009 else if (bfd_is_und_section (syms[idx]->section))
8010 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8014 else if (flags & BSF_FILE)
8015 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8018 int bind = STB_LOCAL;
8020 if (flags & BSF_LOCAL)
8022 else if (flags & BSF_GNU_UNIQUE)
8023 bind = STB_GNU_UNIQUE;
8024 else if (flags & BSF_WEAK)
8026 else if (flags & BSF_GLOBAL)
8029 sym.st_info = ELF_ST_INFO (bind, type);
8032 if (type_ptr != NULL)
8034 sym.st_other = type_ptr->internal_elf_sym.st_other;
8035 sym.st_target_internal
8036 = type_ptr->internal_elf_sym.st_target_internal;
8041 sym.st_target_internal = 0;
8045 symstrtab[idx].sym = sym;
8046 symstrtab[idx].dest_index = outbound_syms_index;
8047 symstrtab[idx].destshndx_index = outbound_shndx_index;
8049 outbound_syms_index++;
8050 if (outbound_shndx != NULL)
8051 outbound_shndx_index++;
8054 /* Finalize the .strtab section. */
8055 _bfd_elf_strtab_finalize (stt);
8057 /* Swap out the .strtab section. */
8058 for (idx = 0; idx <= symcount; idx++)
8060 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8061 if (elfsym->sym.st_name == (unsigned long) -1)
8062 elfsym->sym.st_name = 0;
8064 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8065 elfsym->sym.st_name);
8066 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8068 + (elfsym->dest_index
8069 * bed->s->sizeof_sym)),
8071 + (elfsym->destshndx_index
8072 * sizeof (Elf_External_Sym_Shndx))));
8077 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
8078 symstrtab_hdr->sh_type = SHT_STRTAB;
8079 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
8080 symstrtab_hdr->sh_addr = 0;
8081 symstrtab_hdr->sh_entsize = 0;
8082 symstrtab_hdr->sh_link = 0;
8083 symstrtab_hdr->sh_info = 0;
8084 symstrtab_hdr->sh_addralign = 1;
8089 /* Return the number of bytes required to hold the symtab vector.
8091 Note that we base it on the count plus 1, since we will null terminate
8092 the vector allocated based on this size. However, the ELF symbol table
8093 always has a dummy entry as symbol #0, so it ends up even. */
8096 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
8100 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8102 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8103 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8105 symtab_size -= sizeof (asymbol *);
8111 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
8115 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8117 if (elf_dynsymtab (abfd) == 0)
8119 bfd_set_error (bfd_error_invalid_operation);
8123 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8124 symtab_size = (symcount + 1) * (sizeof (asymbol *));
8126 symtab_size -= sizeof (asymbol *);
8132 _bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
8135 return (asect->reloc_count + 1) * sizeof (arelent *);
8138 /* Canonicalize the relocs. */
8141 _bfd_elf_canonicalize_reloc (bfd *abfd,
8148 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8150 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
8153 tblptr = section->relocation;
8154 for (i = 0; i < section->reloc_count; i++)
8155 *relptr++ = tblptr++;
8159 return section->reloc_count;
8163 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
8165 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8166 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
8169 bfd_get_symcount (abfd) = symcount;
8174 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8175 asymbol **allocation)
8177 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8178 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
8181 bfd_get_dynamic_symcount (abfd) = symcount;
8185 /* Return the size required for the dynamic reloc entries. Any loadable
8186 section that was actually installed in the BFD, and has type SHT_REL
8187 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8188 dynamic reloc section. */
8191 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
8196 if (elf_dynsymtab (abfd) == 0)
8198 bfd_set_error (bfd_error_invalid_operation);
8202 ret = sizeof (arelent *);
8203 for (s = abfd->sections; s != NULL; s = s->next)
8204 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8205 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8206 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8207 ret += ((s->size / elf_section_data (s)->this_hdr.sh_entsize)
8208 * sizeof (arelent *));
8213 /* Canonicalize the dynamic relocation entries. Note that we return the
8214 dynamic relocations as a single block, although they are actually
8215 associated with particular sections; the interface, which was
8216 designed for SunOS style shared libraries, expects that there is only
8217 one set of dynamic relocs. Any loadable section that was actually
8218 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8219 dynamic symbol table, is considered to be a dynamic reloc section. */
8222 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8226 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
8230 if (elf_dynsymtab (abfd) == 0)
8232 bfd_set_error (bfd_error_invalid_operation);
8236 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8238 for (s = abfd->sections; s != NULL; s = s->next)
8240 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8241 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8242 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8247 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
8249 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
8251 for (i = 0; i < count; i++)
8262 /* Read in the version information. */
8265 _bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
8267 bfd_byte *contents = NULL;
8268 unsigned int freeidx = 0;
8270 if (elf_dynverref (abfd) != 0)
8272 Elf_Internal_Shdr *hdr;
8273 Elf_External_Verneed *everneed;
8274 Elf_Internal_Verneed *iverneed;
8276 bfd_byte *contents_end;
8278 hdr = &elf_tdata (abfd)->dynverref_hdr;
8280 if (hdr->sh_info == 0
8281 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
8283 error_return_bad_verref:
8285 (_("%pB: .gnu.version_r invalid entry"), abfd);
8286 bfd_set_error (bfd_error_bad_value);
8287 error_return_verref:
8288 elf_tdata (abfd)->verref = NULL;
8289 elf_tdata (abfd)->cverrefs = 0;
8293 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8294 if (contents == NULL)
8295 goto error_return_verref;
8297 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8298 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
8299 goto error_return_verref;
8301 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *)
8302 bfd_alloc2 (abfd, hdr->sh_info, sizeof (Elf_Internal_Verneed));
8304 if (elf_tdata (abfd)->verref == NULL)
8305 goto error_return_verref;
8307 BFD_ASSERT (sizeof (Elf_External_Verneed)
8308 == sizeof (Elf_External_Vernaux));
8309 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
8310 everneed = (Elf_External_Verneed *) contents;
8311 iverneed = elf_tdata (abfd)->verref;
8312 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8314 Elf_External_Vernaux *evernaux;
8315 Elf_Internal_Vernaux *ivernaux;
8318 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8320 iverneed->vn_bfd = abfd;
8322 iverneed->vn_filename =
8323 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8325 if (iverneed->vn_filename == NULL)
8326 goto error_return_bad_verref;
8328 if (iverneed->vn_cnt == 0)
8329 iverneed->vn_auxptr = NULL;
8332 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
8333 bfd_alloc2 (abfd, iverneed->vn_cnt,
8334 sizeof (Elf_Internal_Vernaux));
8335 if (iverneed->vn_auxptr == NULL)
8336 goto error_return_verref;
8339 if (iverneed->vn_aux
8340 > (size_t) (contents_end - (bfd_byte *) everneed))
8341 goto error_return_bad_verref;
8343 evernaux = ((Elf_External_Vernaux *)
8344 ((bfd_byte *) everneed + iverneed->vn_aux));
8345 ivernaux = iverneed->vn_auxptr;
8346 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8348 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8350 ivernaux->vna_nodename =
8351 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8352 ivernaux->vna_name);
8353 if (ivernaux->vna_nodename == NULL)
8354 goto error_return_bad_verref;
8356 if (ivernaux->vna_other > freeidx)
8357 freeidx = ivernaux->vna_other;
8359 ivernaux->vna_nextptr = NULL;
8360 if (ivernaux->vna_next == 0)
8362 iverneed->vn_cnt = j + 1;
8365 if (j + 1 < iverneed->vn_cnt)
8366 ivernaux->vna_nextptr = ivernaux + 1;
8368 if (ivernaux->vna_next
8369 > (size_t) (contents_end - (bfd_byte *) evernaux))
8370 goto error_return_bad_verref;
8372 evernaux = ((Elf_External_Vernaux *)
8373 ((bfd_byte *) evernaux + ivernaux->vna_next));
8376 iverneed->vn_nextref = NULL;
8377 if (iverneed->vn_next == 0)
8379 if (i + 1 < hdr->sh_info)
8380 iverneed->vn_nextref = iverneed + 1;
8382 if (iverneed->vn_next
8383 > (size_t) (contents_end - (bfd_byte *) everneed))
8384 goto error_return_bad_verref;
8386 everneed = ((Elf_External_Verneed *)
8387 ((bfd_byte *) everneed + iverneed->vn_next));
8389 elf_tdata (abfd)->cverrefs = i;
8395 if (elf_dynverdef (abfd) != 0)
8397 Elf_Internal_Shdr *hdr;
8398 Elf_External_Verdef *everdef;
8399 Elf_Internal_Verdef *iverdef;
8400 Elf_Internal_Verdef *iverdefarr;
8401 Elf_Internal_Verdef iverdefmem;
8403 unsigned int maxidx;
8404 bfd_byte *contents_end_def, *contents_end_aux;
8406 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8408 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8410 error_return_bad_verdef:
8412 (_("%pB: .gnu.version_d invalid entry"), abfd);
8413 bfd_set_error (bfd_error_bad_value);
8414 error_return_verdef:
8415 elf_tdata (abfd)->verdef = NULL;
8416 elf_tdata (abfd)->cverdefs = 0;
8420 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8421 if (contents == NULL)
8422 goto error_return_verdef;
8423 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8424 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
8425 goto error_return_verdef;
8427 BFD_ASSERT (sizeof (Elf_External_Verdef)
8428 >= sizeof (Elf_External_Verdaux));
8429 contents_end_def = contents + hdr->sh_size
8430 - sizeof (Elf_External_Verdef);
8431 contents_end_aux = contents + hdr->sh_size
8432 - sizeof (Elf_External_Verdaux);
8434 /* We know the number of entries in the section but not the maximum
8435 index. Therefore we have to run through all entries and find
8437 everdef = (Elf_External_Verdef *) contents;
8439 for (i = 0; i < hdr->sh_info; ++i)
8441 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8443 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8444 goto error_return_bad_verdef;
8445 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8446 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
8448 if (iverdefmem.vd_next == 0)
8451 if (iverdefmem.vd_next
8452 > (size_t) (contents_end_def - (bfd_byte *) everdef))
8453 goto error_return_bad_verdef;
8455 everdef = ((Elf_External_Verdef *)
8456 ((bfd_byte *) everdef + iverdefmem.vd_next));
8459 if (default_imported_symver)
8461 if (freeidx > maxidx)
8467 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8468 bfd_zalloc2 (abfd, maxidx, sizeof (Elf_Internal_Verdef));
8469 if (elf_tdata (abfd)->verdef == NULL)
8470 goto error_return_verdef;
8472 elf_tdata (abfd)->cverdefs = maxidx;
8474 everdef = (Elf_External_Verdef *) contents;
8475 iverdefarr = elf_tdata (abfd)->verdef;
8476 for (i = 0; i < hdr->sh_info; i++)
8478 Elf_External_Verdaux *everdaux;
8479 Elf_Internal_Verdaux *iverdaux;
8482 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8484 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
8485 goto error_return_bad_verdef;
8487 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
8488 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
8490 iverdef->vd_bfd = abfd;
8492 if (iverdef->vd_cnt == 0)
8493 iverdef->vd_auxptr = NULL;
8496 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
8497 bfd_alloc2 (abfd, iverdef->vd_cnt,
8498 sizeof (Elf_Internal_Verdaux));
8499 if (iverdef->vd_auxptr == NULL)
8500 goto error_return_verdef;
8504 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
8505 goto error_return_bad_verdef;
8507 everdaux = ((Elf_External_Verdaux *)
8508 ((bfd_byte *) everdef + iverdef->vd_aux));
8509 iverdaux = iverdef->vd_auxptr;
8510 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8512 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8514 iverdaux->vda_nodename =
8515 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8516 iverdaux->vda_name);
8517 if (iverdaux->vda_nodename == NULL)
8518 goto error_return_bad_verdef;
8520 iverdaux->vda_nextptr = NULL;
8521 if (iverdaux->vda_next == 0)
8523 iverdef->vd_cnt = j + 1;
8526 if (j + 1 < iverdef->vd_cnt)
8527 iverdaux->vda_nextptr = iverdaux + 1;
8529 if (iverdaux->vda_next
8530 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
8531 goto error_return_bad_verdef;
8533 everdaux = ((Elf_External_Verdaux *)
8534 ((bfd_byte *) everdaux + iverdaux->vda_next));
8537 iverdef->vd_nodename = NULL;
8538 if (iverdef->vd_cnt)
8539 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
8541 iverdef->vd_nextdef = NULL;
8542 if (iverdef->vd_next == 0)
8544 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
8545 iverdef->vd_nextdef = iverdef + 1;
8547 everdef = ((Elf_External_Verdef *)
8548 ((bfd_byte *) everdef + iverdef->vd_next));
8554 else if (default_imported_symver)
8561 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8562 bfd_zalloc2 (abfd, freeidx, sizeof (Elf_Internal_Verdef));
8563 if (elf_tdata (abfd)->verdef == NULL)
8566 elf_tdata (abfd)->cverdefs = freeidx;
8569 /* Create a default version based on the soname. */
8570 if (default_imported_symver)
8572 Elf_Internal_Verdef *iverdef;
8573 Elf_Internal_Verdaux *iverdaux;
8575 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
8577 iverdef->vd_version = VER_DEF_CURRENT;
8578 iverdef->vd_flags = 0;
8579 iverdef->vd_ndx = freeidx;
8580 iverdef->vd_cnt = 1;
8582 iverdef->vd_bfd = abfd;
8584 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8585 if (iverdef->vd_nodename == NULL)
8586 goto error_return_verdef;
8587 iverdef->vd_nextdef = NULL;
8588 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8589 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
8590 if (iverdef->vd_auxptr == NULL)
8591 goto error_return_verdef;
8593 iverdaux = iverdef->vd_auxptr;
8594 iverdaux->vda_nodename = iverdef->vd_nodename;
8600 if (contents != NULL)
8606 _bfd_elf_make_empty_symbol (bfd *abfd)
8608 elf_symbol_type *newsym;
8610 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof * newsym);
8613 newsym->symbol.the_bfd = abfd;
8614 return &newsym->symbol;
8618 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8622 bfd_symbol_info (symbol, ret);
8625 /* Return whether a symbol name implies a local symbol. Most targets
8626 use this function for the is_local_label_name entry point, but some
8630 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8633 /* Normal local symbols start with ``.L''. */
8634 if (name[0] == '.' && name[1] == 'L')
8637 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8638 DWARF debugging symbols starting with ``..''. */
8639 if (name[0] == '.' && name[1] == '.')
8642 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
8643 emitting DWARF debugging output. I suspect this is actually a
8644 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
8645 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
8646 underscore to be emitted on some ELF targets). For ease of use,
8647 we treat such symbols as local. */
8648 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
8651 /* Treat assembler generated fake symbols, dollar local labels and
8652 forward-backward labels (aka local labels) as locals.
8653 These labels have the form:
8655 L0^A.* (fake symbols)
8657 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
8659 Versions which start with .L will have already been matched above,
8660 so we only need to match the rest. */
8661 if (name[0] == 'L' && ISDIGIT (name[1]))
8663 bfd_boolean ret = FALSE;
8667 for (p = name + 2; (c = *p); p++)
8669 if (c == 1 || c == 2)
8671 if (c == 1 && p == name + 2)
8672 /* A fake symbol. */
8675 /* FIXME: We are being paranoid here and treating symbols like
8676 L0^Bfoo as if there were non-local, on the grounds that the
8677 assembler will never generate them. But can any symbol
8678 containing an ASCII value in the range 1-31 ever be anything
8679 other than some kind of local ? */
8696 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
8697 asymbol *symbol ATTRIBUTE_UNUSED)
8704 _bfd_elf_set_arch_mach (bfd *abfd,
8705 enum bfd_architecture arch,
8706 unsigned long machine)
8708 /* If this isn't the right architecture for this backend, and this
8709 isn't the generic backend, fail. */
8710 if (arch != get_elf_backend_data (abfd)->arch
8711 && arch != bfd_arch_unknown
8712 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
8715 return bfd_default_set_arch_mach (abfd, arch, machine);
8718 /* Find the nearest line to a particular section and offset,
8719 for error reporting. */
8722 _bfd_elf_find_nearest_line (bfd *abfd,
8726 const char **filename_ptr,
8727 const char **functionname_ptr,
8728 unsigned int *line_ptr,
8729 unsigned int *discriminator_ptr)
8733 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
8734 filename_ptr, functionname_ptr,
8735 line_ptr, discriminator_ptr,
8736 dwarf_debug_sections, 0,
8737 &elf_tdata (abfd)->dwarf2_find_line_info)
8738 || _bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
8739 filename_ptr, functionname_ptr,
8742 if (!*functionname_ptr)
8743 _bfd_elf_find_function (abfd, symbols, section, offset,
8744 *filename_ptr ? NULL : filename_ptr,
8749 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
8750 &found, filename_ptr,
8751 functionname_ptr, line_ptr,
8752 &elf_tdata (abfd)->line_info))
8754 if (found && (*functionname_ptr || *line_ptr))
8757 if (symbols == NULL)
8760 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
8761 filename_ptr, functionname_ptr))
8768 /* Find the line for a symbol. */
8771 _bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
8772 const char **filename_ptr, unsigned int *line_ptr)
8774 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
8775 filename_ptr, NULL, line_ptr, NULL,
8776 dwarf_debug_sections, 0,
8777 &elf_tdata (abfd)->dwarf2_find_line_info);
8780 /* After a call to bfd_find_nearest_line, successive calls to
8781 bfd_find_inliner_info can be used to get source information about
8782 each level of function inlining that terminated at the address
8783 passed to bfd_find_nearest_line. Currently this is only supported
8784 for DWARF2 with appropriate DWARF3 extensions. */
8787 _bfd_elf_find_inliner_info (bfd *abfd,
8788 const char **filename_ptr,
8789 const char **functionname_ptr,
8790 unsigned int *line_ptr)
8793 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
8794 functionname_ptr, line_ptr,
8795 & elf_tdata (abfd)->dwarf2_find_line_info);
8800 _bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
8802 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8803 int ret = bed->s->sizeof_ehdr;
8805 if (!bfd_link_relocatable (info))
8807 bfd_size_type phdr_size = elf_program_header_size (abfd);
8809 if (phdr_size == (bfd_size_type) -1)
8811 struct elf_segment_map *m;
8814 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
8815 phdr_size += bed->s->sizeof_phdr;
8818 phdr_size = get_program_header_size (abfd, info);
8821 elf_program_header_size (abfd) = phdr_size;
8829 _bfd_elf_set_section_contents (bfd *abfd,
8831 const void *location,
8833 bfd_size_type count)
8835 Elf_Internal_Shdr *hdr;
8838 if (! abfd->output_has_begun
8839 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
8845 hdr = &elf_section_data (section)->this_hdr;
8846 if (hdr->sh_offset == (file_ptr) -1)
8848 /* We must compress this section. Write output to the buffer. */
8849 unsigned char *contents = hdr->contents;
8850 if ((offset + count) > hdr->sh_size
8851 || (section->flags & SEC_ELF_COMPRESS) == 0
8852 || contents == NULL)
8854 memcpy (contents + offset, location, count);
8857 pos = hdr->sh_offset + offset;
8858 if (bfd_seek (abfd, pos, SEEK_SET) != 0
8859 || bfd_bwrite (location, count, abfd) != count)
8866 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
8867 arelent *cache_ptr ATTRIBUTE_UNUSED,
8868 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
8873 /* Try to convert a non-ELF reloc into an ELF one. */
8876 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
8878 /* Check whether we really have an ELF howto. */
8880 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
8882 bfd_reloc_code_real_type code;
8883 reloc_howto_type *howto;
8885 /* Alien reloc: Try to determine its type to replace it with an
8886 equivalent ELF reloc. */
8888 if (areloc->howto->pc_relative)
8890 switch (areloc->howto->bitsize)
8893 code = BFD_RELOC_8_PCREL;
8896 code = BFD_RELOC_12_PCREL;
8899 code = BFD_RELOC_16_PCREL;
8902 code = BFD_RELOC_24_PCREL;
8905 code = BFD_RELOC_32_PCREL;
8908 code = BFD_RELOC_64_PCREL;
8914 howto = bfd_reloc_type_lookup (abfd, code);
8916 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
8918 if (howto->pcrel_offset)
8919 areloc->addend += areloc->address;
8921 areloc->addend -= areloc->address; /* addend is unsigned!! */
8926 switch (areloc->howto->bitsize)
8932 code = BFD_RELOC_14;
8935 code = BFD_RELOC_16;
8938 code = BFD_RELOC_26;
8941 code = BFD_RELOC_32;
8944 code = BFD_RELOC_64;
8950 howto = bfd_reloc_type_lookup (abfd, code);
8954 areloc->howto = howto;
8963 /* xgettext:c-format */
8964 (_("%pB: unsupported relocation type %s"),
8965 abfd, areloc->howto->name);
8966 bfd_set_error (bfd_error_bad_value);
8971 _bfd_elf_close_and_cleanup (bfd *abfd)
8973 struct elf_obj_tdata *tdata = elf_tdata (abfd);
8974 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
8976 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
8977 _bfd_elf_strtab_free (elf_shstrtab (abfd));
8978 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
8981 return _bfd_generic_close_and_cleanup (abfd);
8984 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
8985 in the relocation's offset. Thus we cannot allow any sort of sanity
8986 range-checking to interfere. There is nothing else to do in processing
8989 bfd_reloc_status_type
8990 _bfd_elf_rel_vtable_reloc_fn
8991 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
8992 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
8993 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
8994 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
8996 return bfd_reloc_ok;
8999 /* Elf core file support. Much of this only works on native
9000 toolchains, since we rely on knowing the
9001 machine-dependent procfs structure in order to pick
9002 out details about the corefile. */
9004 #ifdef HAVE_SYS_PROCFS_H
9005 /* Needed for new procfs interface on sparc-solaris. */
9006 # define _STRUCTURED_PROC 1
9007 # include <sys/procfs.h>
9010 /* Return a PID that identifies a "thread" for threaded cores, or the
9011 PID of the main process for non-threaded cores. */
9014 elfcore_make_pid (bfd *abfd)
9018 pid = elf_tdata (abfd)->core->lwpid;
9020 pid = elf_tdata (abfd)->core->pid;
9025 /* If there isn't a section called NAME, make one, using
9026 data from SECT. Note, this function will generate a
9027 reference to NAME, so you shouldn't deallocate or
9031 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
9035 if (bfd_get_section_by_name (abfd, name) != NULL)
9038 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
9042 sect2->size = sect->size;
9043 sect2->filepos = sect->filepos;
9044 sect2->alignment_power = sect->alignment_power;
9048 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
9049 actually creates up to two pseudosections:
9050 - For the single-threaded case, a section named NAME, unless
9051 such a section already exists.
9052 - For the multi-threaded case, a section named "NAME/PID", where
9053 PID is elfcore_make_pid (abfd).
9054 Both pseudosections have identical contents. */
9056 _bfd_elfcore_make_pseudosection (bfd *abfd,
9062 char *threaded_name;
9066 /* Build the section name. */
9068 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
9069 len = strlen (buf) + 1;
9070 threaded_name = (char *) bfd_alloc (abfd, len);
9071 if (threaded_name == NULL)
9073 memcpy (threaded_name, buf, len);
9075 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9080 sect->filepos = filepos;
9081 sect->alignment_power = 2;
9083 return elfcore_maybe_make_sect (abfd, name, sect);
9086 /* prstatus_t exists on:
9088 linux 2.[01] + glibc
9092 #if defined (HAVE_PRSTATUS_T)
9095 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
9100 if (note->descsz == sizeof (prstatus_t))
9104 size = sizeof (prstat.pr_reg);
9105 offset = offsetof (prstatus_t, pr_reg);
9106 memcpy (&prstat, note->descdata, sizeof (prstat));
9108 /* Do not overwrite the core signal if it
9109 has already been set by another thread. */
9110 if (elf_tdata (abfd)->core->signal == 0)
9111 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9112 if (elf_tdata (abfd)->core->pid == 0)
9113 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9115 /* pr_who exists on:
9118 pr_who doesn't exist on:
9121 #if defined (HAVE_PRSTATUS_T_PR_WHO)
9122 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9124 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9127 #if defined (HAVE_PRSTATUS32_T)
9128 else if (note->descsz == sizeof (prstatus32_t))
9130 /* 64-bit host, 32-bit corefile */
9131 prstatus32_t prstat;
9133 size = sizeof (prstat.pr_reg);
9134 offset = offsetof (prstatus32_t, pr_reg);
9135 memcpy (&prstat, note->descdata, sizeof (prstat));
9137 /* Do not overwrite the core signal if it
9138 has already been set by another thread. */
9139 if (elf_tdata (abfd)->core->signal == 0)
9140 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9141 if (elf_tdata (abfd)->core->pid == 0)
9142 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9144 /* pr_who exists on:
9147 pr_who doesn't exist on:
9150 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
9151 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9153 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9156 #endif /* HAVE_PRSTATUS32_T */
9159 /* Fail - we don't know how to handle any other
9160 note size (ie. data object type). */
9164 /* Make a ".reg/999" section and a ".reg" section. */
9165 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
9166 size, note->descpos + offset);
9168 #endif /* defined (HAVE_PRSTATUS_T) */
9170 /* Create a pseudosection containing the exact contents of NOTE. */
9172 elfcore_make_note_pseudosection (bfd *abfd,
9174 Elf_Internal_Note *note)
9176 return _bfd_elfcore_make_pseudosection (abfd, name,
9177 note->descsz, note->descpos);
9180 /* There isn't a consistent prfpregset_t across platforms,
9181 but it doesn't matter, because we don't have to pick this
9182 data structure apart. */
9185 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
9187 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9190 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
9191 type of NT_PRXFPREG. Just include the whole note's contents
9195 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
9197 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9200 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9201 with a note type of NT_X86_XSTATE. Just include the whole note's
9202 contents literally. */
9205 elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9207 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9211 elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9213 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9217 elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9219 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9223 elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9225 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9229 elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9231 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9235 elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9237 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9241 elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9243 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9247 elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9249 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9253 elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9255 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9259 elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9261 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9265 elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9267 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9271 elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9273 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9277 elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9279 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9283 elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9285 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9289 elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9291 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9295 elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9297 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9301 elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9303 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9307 elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9309 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9313 elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9315 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9319 elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9321 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9324 #if defined (HAVE_PRPSINFO_T)
9325 typedef prpsinfo_t elfcore_psinfo_t;
9326 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
9327 typedef prpsinfo32_t elfcore_psinfo32_t;
9331 #if defined (HAVE_PSINFO_T)
9332 typedef psinfo_t elfcore_psinfo_t;
9333 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
9334 typedef psinfo32_t elfcore_psinfo32_t;
9338 /* return a malloc'ed copy of a string at START which is at
9339 most MAX bytes long, possibly without a terminating '\0'.
9340 the copy will always have a terminating '\0'. */
9343 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
9346 char *end = (char *) memchr (start, '\0', max);
9354 dups = (char *) bfd_alloc (abfd, len + 1);
9358 memcpy (dups, start, len);
9364 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9366 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
9368 if (note->descsz == sizeof (elfcore_psinfo_t))
9370 elfcore_psinfo_t psinfo;
9372 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9374 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
9375 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9377 elf_tdata (abfd)->core->program
9378 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9379 sizeof (psinfo.pr_fname));
9381 elf_tdata (abfd)->core->command
9382 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9383 sizeof (psinfo.pr_psargs));
9385 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
9386 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9388 /* 64-bit host, 32-bit corefile */
9389 elfcore_psinfo32_t psinfo;
9391 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9393 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
9394 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9396 elf_tdata (abfd)->core->program
9397 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9398 sizeof (psinfo.pr_fname));
9400 elf_tdata (abfd)->core->command
9401 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9402 sizeof (psinfo.pr_psargs));
9408 /* Fail - we don't know how to handle any other
9409 note size (ie. data object type). */
9413 /* Note that for some reason, a spurious space is tacked
9414 onto the end of the args in some (at least one anyway)
9415 implementations, so strip it off if it exists. */
9418 char *command = elf_tdata (abfd)->core->command;
9419 int n = strlen (command);
9421 if (0 < n && command[n - 1] == ' ')
9422 command[n - 1] = '\0';
9427 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9429 #if defined (HAVE_PSTATUS_T)
9431 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
9433 if (note->descsz == sizeof (pstatus_t)
9434 #if defined (HAVE_PXSTATUS_T)
9435 || note->descsz == sizeof (pxstatus_t)
9441 memcpy (&pstat, note->descdata, sizeof (pstat));
9443 elf_tdata (abfd)->core->pid = pstat.pr_pid;
9445 #if defined (HAVE_PSTATUS32_T)
9446 else if (note->descsz == sizeof (pstatus32_t))
9448 /* 64-bit host, 32-bit corefile */
9451 memcpy (&pstat, note->descdata, sizeof (pstat));
9453 elf_tdata (abfd)->core->pid = pstat.pr_pid;
9456 /* Could grab some more details from the "representative"
9457 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
9458 NT_LWPSTATUS note, presumably. */
9462 #endif /* defined (HAVE_PSTATUS_T) */
9464 #if defined (HAVE_LWPSTATUS_T)
9466 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
9468 lwpstatus_t lwpstat;
9474 if (note->descsz != sizeof (lwpstat)
9475 #if defined (HAVE_LWPXSTATUS_T)
9476 && note->descsz != sizeof (lwpxstatus_t)
9481 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9483 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
9484 /* Do not overwrite the core signal if it has already been set by
9486 if (elf_tdata (abfd)->core->signal == 0)
9487 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
9489 /* Make a ".reg/999" section. */
9491 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
9492 len = strlen (buf) + 1;
9493 name = bfd_alloc (abfd, len);
9496 memcpy (name, buf, len);
9498 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9502 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
9503 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
9504 sect->filepos = note->descpos
9505 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
9508 #if defined (HAVE_LWPSTATUS_T_PR_REG)
9509 sect->size = sizeof (lwpstat.pr_reg);
9510 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
9513 sect->alignment_power = 2;
9515 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
9518 /* Make a ".reg2/999" section */
9520 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
9521 len = strlen (buf) + 1;
9522 name = bfd_alloc (abfd, len);
9525 memcpy (name, buf, len);
9527 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9531 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
9532 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
9533 sect->filepos = note->descpos
9534 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
9537 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
9538 sect->size = sizeof (lwpstat.pr_fpreg);
9539 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
9542 sect->alignment_power = 2;
9544 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
9546 #endif /* defined (HAVE_LWPSTATUS_T) */
9549 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
9556 int is_active_thread;
9559 if (note->descsz < 728)
9562 if (! CONST_STRNEQ (note->namedata, "win32"))
9565 type = bfd_get_32 (abfd, note->descdata);
9569 case 1 /* NOTE_INFO_PROCESS */:
9570 /* FIXME: need to add ->core->command. */
9571 /* process_info.pid */
9572 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
9573 /* process_info.signal */
9574 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
9577 case 2 /* NOTE_INFO_THREAD */:
9578 /* Make a ".reg/999" section. */
9579 /* thread_info.tid */
9580 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
9582 len = strlen (buf) + 1;
9583 name = (char *) bfd_alloc (abfd, len);
9587 memcpy (name, buf, len);
9589 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9593 /* sizeof (thread_info.thread_context) */
9595 /* offsetof (thread_info.thread_context) */
9596 sect->filepos = note->descpos + 12;
9597 sect->alignment_power = 2;
9599 /* thread_info.is_active_thread */
9600 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
9602 if (is_active_thread)
9603 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
9607 case 3 /* NOTE_INFO_MODULE */:
9608 /* Make a ".module/xxxxxxxx" section. */
9609 /* module_info.base_address */
9610 base_addr = bfd_get_32 (abfd, note->descdata + 4);
9611 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
9613 len = strlen (buf) + 1;
9614 name = (char *) bfd_alloc (abfd, len);
9618 memcpy (name, buf, len);
9620 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9625 sect->size = note->descsz;
9626 sect->filepos = note->descpos;
9627 sect->alignment_power = 2;
9638 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
9640 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9648 if (bed->elf_backend_grok_prstatus)
9649 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
9651 #if defined (HAVE_PRSTATUS_T)
9652 return elfcore_grok_prstatus (abfd, note);
9657 #if defined (HAVE_PSTATUS_T)
9659 return elfcore_grok_pstatus (abfd, note);
9662 #if defined (HAVE_LWPSTATUS_T)
9664 return elfcore_grok_lwpstatus (abfd, note);
9667 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
9668 return elfcore_grok_prfpreg (abfd, note);
9670 case NT_WIN32PSTATUS:
9671 return elfcore_grok_win32pstatus (abfd, note);
9673 case NT_PRXFPREG: /* Linux SSE extension */
9674 if (note->namesz == 6
9675 && strcmp (note->namedata, "LINUX") == 0)
9676 return elfcore_grok_prxfpreg (abfd, note);
9680 case NT_X86_XSTATE: /* Linux XSAVE extension */
9681 if (note->namesz == 6
9682 && strcmp (note->namedata, "LINUX") == 0)
9683 return elfcore_grok_xstatereg (abfd, note);
9688 if (note->namesz == 6
9689 && strcmp (note->namedata, "LINUX") == 0)
9690 return elfcore_grok_ppc_vmx (abfd, note);
9695 if (note->namesz == 6
9696 && strcmp (note->namedata, "LINUX") == 0)
9697 return elfcore_grok_ppc_vsx (abfd, note);
9701 case NT_S390_HIGH_GPRS:
9702 if (note->namesz == 6
9703 && strcmp (note->namedata, "LINUX") == 0)
9704 return elfcore_grok_s390_high_gprs (abfd, note);
9709 if (note->namesz == 6
9710 && strcmp (note->namedata, "LINUX") == 0)
9711 return elfcore_grok_s390_timer (abfd, note);
9715 case NT_S390_TODCMP:
9716 if (note->namesz == 6
9717 && strcmp (note->namedata, "LINUX") == 0)
9718 return elfcore_grok_s390_todcmp (abfd, note);
9722 case NT_S390_TODPREG:
9723 if (note->namesz == 6
9724 && strcmp (note->namedata, "LINUX") == 0)
9725 return elfcore_grok_s390_todpreg (abfd, note);
9730 if (note->namesz == 6
9731 && strcmp (note->namedata, "LINUX") == 0)
9732 return elfcore_grok_s390_ctrs (abfd, note);
9736 case NT_S390_PREFIX:
9737 if (note->namesz == 6
9738 && strcmp (note->namedata, "LINUX") == 0)
9739 return elfcore_grok_s390_prefix (abfd, note);
9743 case NT_S390_LAST_BREAK:
9744 if (note->namesz == 6
9745 && strcmp (note->namedata, "LINUX") == 0)
9746 return elfcore_grok_s390_last_break (abfd, note);
9750 case NT_S390_SYSTEM_CALL:
9751 if (note->namesz == 6
9752 && strcmp (note->namedata, "LINUX") == 0)
9753 return elfcore_grok_s390_system_call (abfd, note);
9758 if (note->namesz == 6
9759 && strcmp (note->namedata, "LINUX") == 0)
9760 return elfcore_grok_s390_tdb (abfd, note);
9764 case NT_S390_VXRS_LOW:
9765 if (note->namesz == 6
9766 && strcmp (note->namedata, "LINUX") == 0)
9767 return elfcore_grok_s390_vxrs_low (abfd, note);
9771 case NT_S390_VXRS_HIGH:
9772 if (note->namesz == 6
9773 && strcmp (note->namedata, "LINUX") == 0)
9774 return elfcore_grok_s390_vxrs_high (abfd, note);
9779 if (note->namesz == 6
9780 && strcmp (note->namedata, "LINUX") == 0)
9781 return elfcore_grok_s390_gs_cb (abfd, note);
9786 if (note->namesz == 6
9787 && strcmp (note->namedata, "LINUX") == 0)
9788 return elfcore_grok_s390_gs_bc (abfd, note);
9793 if (note->namesz == 6
9794 && strcmp (note->namedata, "LINUX") == 0)
9795 return elfcore_grok_arm_vfp (abfd, note);
9800 if (note->namesz == 6
9801 && strcmp (note->namedata, "LINUX") == 0)
9802 return elfcore_grok_aarch_tls (abfd, note);
9806 case NT_ARM_HW_BREAK:
9807 if (note->namesz == 6
9808 && strcmp (note->namedata, "LINUX") == 0)
9809 return elfcore_grok_aarch_hw_break (abfd, note);
9813 case NT_ARM_HW_WATCH:
9814 if (note->namesz == 6
9815 && strcmp (note->namedata, "LINUX") == 0)
9816 return elfcore_grok_aarch_hw_watch (abfd, note);
9822 if (bed->elf_backend_grok_psinfo)
9823 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
9825 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9826 return elfcore_grok_psinfo (abfd, note);
9833 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9838 sect->size = note->descsz;
9839 sect->filepos = note->descpos;
9840 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9846 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
9850 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
9857 elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
9859 struct bfd_build_id* build_id;
9861 if (note->descsz == 0)
9864 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
9865 if (build_id == NULL)
9868 build_id->size = note->descsz;
9869 memcpy (build_id->data, note->descdata, note->descsz);
9870 abfd->build_id = build_id;
9876 elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
9883 case NT_GNU_PROPERTY_TYPE_0:
9884 return _bfd_elf_parse_gnu_properties (abfd, note);
9886 case NT_GNU_BUILD_ID:
9887 return elfobj_grok_gnu_build_id (abfd, note);
9892 elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
9894 struct sdt_note *cur =
9895 (struct sdt_note *) bfd_alloc (abfd, sizeof (struct sdt_note)
9898 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
9899 cur->size = (bfd_size_type) note->descsz;
9900 memcpy (cur->data, note->descdata, note->descsz);
9902 elf_tdata (abfd)->sdt_note_head = cur;
9908 elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
9913 return elfobj_grok_stapsdt_note_1 (abfd, note);
9921 elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
9925 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
9928 if (note->descsz < 108)
9933 if (note->descsz < 120)
9941 /* Check for version 1 in pr_version. */
9942 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
9947 /* Skip over pr_psinfosz. */
9948 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
9952 offset += 4; /* Padding before pr_psinfosz. */
9956 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
9957 elf_tdata (abfd)->core->program
9958 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
9961 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
9962 elf_tdata (abfd)->core->command
9963 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
9966 /* Padding before pr_pid. */
9969 /* The pr_pid field was added in version "1a". */
9970 if (note->descsz < offset + 4)
9973 elf_tdata (abfd)->core->pid
9974 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
9980 elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
9986 /* Compute offset of pr_getregsz, skipping over pr_statussz.
9987 Also compute minimum size of this note. */
9988 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
9992 min_size = offset + (4 * 2) + 4 + 4 + 4;
9996 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
9997 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
10004 if (note->descsz < min_size)
10007 /* Check for version 1 in pr_version. */
10008 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10011 /* Extract size of pr_reg from pr_gregsetsz. */
10012 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
10013 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10015 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10020 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10024 /* Skip over pr_osreldate. */
10027 /* Read signal from pr_cursig. */
10028 if (elf_tdata (abfd)->core->signal == 0)
10029 elf_tdata (abfd)->core->signal
10030 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10033 /* Read TID from pr_pid. */
10034 elf_tdata (abfd)->core->lwpid
10035 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10038 /* Padding before pr_reg. */
10039 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
10042 /* Make sure that there is enough data remaining in the note. */
10043 if ((note->descsz - offset) < size)
10046 /* Make a ".reg/999" section and a ".reg" section. */
10047 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10048 size, note->descpos + offset);
10052 elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10054 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10056 switch (note->type)
10059 if (bed->elf_backend_grok_freebsd_prstatus)
10060 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10062 return elfcore_grok_freebsd_prstatus (abfd, note);
10065 return elfcore_grok_prfpreg (abfd, note);
10068 return elfcore_grok_freebsd_psinfo (abfd, note);
10070 case NT_FREEBSD_THRMISC:
10071 if (note->namesz == 8)
10072 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10076 case NT_FREEBSD_PROCSTAT_PROC:
10077 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10080 case NT_FREEBSD_PROCSTAT_FILES:
10081 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10084 case NT_FREEBSD_PROCSTAT_VMMAP:
10085 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10088 case NT_FREEBSD_PROCSTAT_AUXV:
10090 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
10095 sect->size = note->descsz - 4;
10096 sect->filepos = note->descpos + 4;
10097 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10102 case NT_X86_XSTATE:
10103 if (note->namesz == 8)
10104 return elfcore_grok_xstatereg (abfd, note);
10108 case NT_FREEBSD_PTLWPINFO:
10109 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10113 return elfcore_grok_arm_vfp (abfd, note);
10121 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
10125 cp = strchr (note->namedata, '@');
10128 *lwpidp = atoi(cp + 1);
10135 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10137 if (note->descsz <= 0x7c + 31)
10140 /* Signal number at offset 0x08. */
10141 elf_tdata (abfd)->core->signal
10142 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10144 /* Process ID at offset 0x50. */
10145 elf_tdata (abfd)->core->pid
10146 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10148 /* Command name at 0x7c (max 32 bytes, including nul). */
10149 elf_tdata (abfd)->core->command
10150 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10152 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10157 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
10161 if (elfcore_netbsd_get_lwpid (note, &lwp))
10162 elf_tdata (abfd)->core->lwpid = lwp;
10164 if (note->type == NT_NETBSDCORE_PROCINFO)
10166 /* NetBSD-specific core "procinfo". Note that we expect to
10167 find this note before any of the others, which is fine,
10168 since the kernel writes this note out first when it
10169 creates a core file. */
10171 return elfcore_grok_netbsd_procinfo (abfd, note);
10174 /* As of Jan 2002 there are no other machine-independent notes
10175 defined for NetBSD core files. If the note type is less
10176 than the start of the machine-dependent note types, we don't
10179 if (note->type < NT_NETBSDCORE_FIRSTMACH)
10183 switch (bfd_get_arch (abfd))
10185 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10186 PT_GETFPREGS == mach+2. */
10188 case bfd_arch_alpha:
10189 case bfd_arch_sparc:
10190 switch (note->type)
10192 case NT_NETBSDCORE_FIRSTMACH+0:
10193 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10195 case NT_NETBSDCORE_FIRSTMACH+2:
10196 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10202 /* On all other arch's, PT_GETREGS == mach+1 and
10203 PT_GETFPREGS == mach+3. */
10206 switch (note->type)
10208 case NT_NETBSDCORE_FIRSTMACH+1:
10209 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10211 case NT_NETBSDCORE_FIRSTMACH+3:
10212 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10222 elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10224 if (note->descsz <= 0x48 + 31)
10227 /* Signal number at offset 0x08. */
10228 elf_tdata (abfd)->core->signal
10229 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10231 /* Process ID at offset 0x20. */
10232 elf_tdata (abfd)->core->pid
10233 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
10235 /* Command name at 0x48 (max 32 bytes, including nul). */
10236 elf_tdata (abfd)->core->command
10237 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
10243 elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
10245 if (note->type == NT_OPENBSD_PROCINFO)
10246 return elfcore_grok_openbsd_procinfo (abfd, note);
10248 if (note->type == NT_OPENBSD_REGS)
10249 return elfcore_make_note_pseudosection (abfd, ".reg", note);
10251 if (note->type == NT_OPENBSD_FPREGS)
10252 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
10254 if (note->type == NT_OPENBSD_XFPREGS)
10255 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
10257 if (note->type == NT_OPENBSD_AUXV)
10259 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
10264 sect->size = note->descsz;
10265 sect->filepos = note->descpos;
10266 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10271 if (note->type == NT_OPENBSD_WCOOKIE)
10273 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
10278 sect->size = note->descsz;
10279 sect->filepos = note->descpos;
10280 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
10289 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
10291 void *ddata = note->descdata;
10298 if (note->descsz < 16)
10301 /* nto_procfs_status 'pid' field is at offset 0. */
10302 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
10304 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
10305 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
10307 /* nto_procfs_status 'flags' field is at offset 8. */
10308 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
10310 /* nto_procfs_status 'what' field is at offset 14. */
10311 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
10313 elf_tdata (abfd)->core->signal = sig;
10314 elf_tdata (abfd)->core->lwpid = *tid;
10317 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
10318 do not come from signals so we make sure we set the current
10319 thread just in case. */
10320 if (flags & 0x00000080)
10321 elf_tdata (abfd)->core->lwpid = *tid;
10323 /* Make a ".qnx_core_status/%d" section. */
10324 sprintf (buf, ".qnx_core_status/%ld", *tid);
10326 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
10329 strcpy (name, buf);
10331 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10335 sect->size = note->descsz;
10336 sect->filepos = note->descpos;
10337 sect->alignment_power = 2;
10339 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
10343 elfcore_grok_nto_regs (bfd *abfd,
10344 Elf_Internal_Note *note,
10352 /* Make a "(base)/%d" section. */
10353 sprintf (buf, "%s/%ld", base, tid);
10355 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
10358 strcpy (name, buf);
10360 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10364 sect->size = note->descsz;
10365 sect->filepos = note->descpos;
10366 sect->alignment_power = 2;
10368 /* This is the current thread. */
10369 if (elf_tdata (abfd)->core->lwpid == tid)
10370 return elfcore_maybe_make_sect (abfd, base, sect);
10375 #define BFD_QNT_CORE_INFO 7
10376 #define BFD_QNT_CORE_STATUS 8
10377 #define BFD_QNT_CORE_GREG 9
10378 #define BFD_QNT_CORE_FPREG 10
10381 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
10383 /* Every GREG section has a STATUS section before it. Store the
10384 tid from the previous call to pass down to the next gregs
10386 static long tid = 1;
10388 switch (note->type)
10390 case BFD_QNT_CORE_INFO:
10391 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
10392 case BFD_QNT_CORE_STATUS:
10393 return elfcore_grok_nto_status (abfd, note, &tid);
10394 case BFD_QNT_CORE_GREG:
10395 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
10396 case BFD_QNT_CORE_FPREG:
10397 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
10404 elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
10410 /* Use note name as section name. */
10411 len = note->namesz;
10412 name = (char *) bfd_alloc (abfd, len);
10415 memcpy (name, note->namedata, len);
10416 name[len - 1] = '\0';
10418 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10422 sect->size = note->descsz;
10423 sect->filepos = note->descpos;
10424 sect->alignment_power = 1;
10429 /* Function: elfcore_write_note
10432 buffer to hold note, and current size of buffer
10436 size of data for note
10438 Writes note to end of buffer. ELF64 notes are written exactly as
10439 for ELF32, despite the current (as of 2006) ELF gabi specifying
10440 that they ought to have 8-byte namesz and descsz field, and have
10441 8-byte alignment. Other writers, eg. Linux kernel, do the same.
10444 Pointer to realloc'd buffer, *BUFSIZ updated. */
10447 elfcore_write_note (bfd *abfd,
10455 Elf_External_Note *xnp;
10462 namesz = strlen (name) + 1;
10464 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
10466 buf = (char *) realloc (buf, *bufsiz + newspace);
10469 dest = buf + *bufsiz;
10470 *bufsiz += newspace;
10471 xnp = (Elf_External_Note *) dest;
10472 H_PUT_32 (abfd, namesz, xnp->namesz);
10473 H_PUT_32 (abfd, size, xnp->descsz);
10474 H_PUT_32 (abfd, type, xnp->type);
10478 memcpy (dest, name, namesz);
10486 memcpy (dest, input, size);
10497 elfcore_write_prpsinfo (bfd *abfd,
10501 const char *psargs)
10503 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10505 if (bed->elf_backend_write_core_note != NULL)
10508 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
10509 NT_PRPSINFO, fname, psargs);
10514 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10515 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
10516 if (bed->s->elfclass == ELFCLASS32)
10518 #if defined (HAVE_PSINFO32_T)
10520 int note_type = NT_PSINFO;
10523 int note_type = NT_PRPSINFO;
10526 memset (&data, 0, sizeof (data));
10527 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
10528 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
10529 return elfcore_write_note (abfd, buf, bufsiz,
10530 "CORE", note_type, &data, sizeof (data));
10535 #if defined (HAVE_PSINFO_T)
10537 int note_type = NT_PSINFO;
10540 int note_type = NT_PRPSINFO;
10543 memset (&data, 0, sizeof (data));
10544 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
10545 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
10546 return elfcore_write_note (abfd, buf, bufsiz,
10547 "CORE", note_type, &data, sizeof (data));
10549 #endif /* PSINFO_T or PRPSINFO_T */
10556 elfcore_write_linux_prpsinfo32
10557 (bfd *abfd, char *buf, int *bufsiz,
10558 const struct elf_internal_linux_prpsinfo *prpsinfo)
10560 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
10562 struct elf_external_linux_prpsinfo32_ugid16 data;
10564 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
10565 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
10566 &data, sizeof (data));
10570 struct elf_external_linux_prpsinfo32_ugid32 data;
10572 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
10573 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
10574 &data, sizeof (data));
10579 elfcore_write_linux_prpsinfo64
10580 (bfd *abfd, char *buf, int *bufsiz,
10581 const struct elf_internal_linux_prpsinfo *prpsinfo)
10583 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
10585 struct elf_external_linux_prpsinfo64_ugid16 data;
10587 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
10588 return elfcore_write_note (abfd, buf, bufsiz,
10589 "CORE", NT_PRPSINFO, &data, sizeof (data));
10593 struct elf_external_linux_prpsinfo64_ugid32 data;
10595 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
10596 return elfcore_write_note (abfd, buf, bufsiz,
10597 "CORE", NT_PRPSINFO, &data, sizeof (data));
10602 elfcore_write_prstatus (bfd *abfd,
10609 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10611 if (bed->elf_backend_write_core_note != NULL)
10614 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
10616 pid, cursig, gregs);
10621 #if defined (HAVE_PRSTATUS_T)
10622 #if defined (HAVE_PRSTATUS32_T)
10623 if (bed->s->elfclass == ELFCLASS32)
10625 prstatus32_t prstat;
10627 memset (&prstat, 0, sizeof (prstat));
10628 prstat.pr_pid = pid;
10629 prstat.pr_cursig = cursig;
10630 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
10631 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
10632 NT_PRSTATUS, &prstat, sizeof (prstat));
10639 memset (&prstat, 0, sizeof (prstat));
10640 prstat.pr_pid = pid;
10641 prstat.pr_cursig = cursig;
10642 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
10643 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
10644 NT_PRSTATUS, &prstat, sizeof (prstat));
10646 #endif /* HAVE_PRSTATUS_T */
10652 #if defined (HAVE_LWPSTATUS_T)
10654 elfcore_write_lwpstatus (bfd *abfd,
10661 lwpstatus_t lwpstat;
10662 const char *note_name = "CORE";
10664 memset (&lwpstat, 0, sizeof (lwpstat));
10665 lwpstat.pr_lwpid = pid >> 16;
10666 lwpstat.pr_cursig = cursig;
10667 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10668 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
10669 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10670 #if !defined(gregs)
10671 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
10672 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
10674 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
10675 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
10678 return elfcore_write_note (abfd, buf, bufsiz, note_name,
10679 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
10681 #endif /* HAVE_LWPSTATUS_T */
10683 #if defined (HAVE_PSTATUS_T)
10685 elfcore_write_pstatus (bfd *abfd,
10689 int cursig ATTRIBUTE_UNUSED,
10690 const void *gregs ATTRIBUTE_UNUSED)
10692 const char *note_name = "CORE";
10693 #if defined (HAVE_PSTATUS32_T)
10694 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10696 if (bed->s->elfclass == ELFCLASS32)
10700 memset (&pstat, 0, sizeof (pstat));
10701 pstat.pr_pid = pid & 0xffff;
10702 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
10703 NT_PSTATUS, &pstat, sizeof (pstat));
10711 memset (&pstat, 0, sizeof (pstat));
10712 pstat.pr_pid = pid & 0xffff;
10713 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
10714 NT_PSTATUS, &pstat, sizeof (pstat));
10718 #endif /* HAVE_PSTATUS_T */
10721 elfcore_write_prfpreg (bfd *abfd,
10724 const void *fpregs,
10727 const char *note_name = "CORE";
10728 return elfcore_write_note (abfd, buf, bufsiz,
10729 note_name, NT_FPREGSET, fpregs, size);
10733 elfcore_write_prxfpreg (bfd *abfd,
10736 const void *xfpregs,
10739 char *note_name = "LINUX";
10740 return elfcore_write_note (abfd, buf, bufsiz,
10741 note_name, NT_PRXFPREG, xfpregs, size);
10745 elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
10746 const void *xfpregs, int size)
10749 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
10750 note_name = "FreeBSD";
10752 note_name = "LINUX";
10753 return elfcore_write_note (abfd, buf, bufsiz,
10754 note_name, NT_X86_XSTATE, xfpregs, size);
10758 elfcore_write_ppc_vmx (bfd *abfd,
10761 const void *ppc_vmx,
10764 char *note_name = "LINUX";
10765 return elfcore_write_note (abfd, buf, bufsiz,
10766 note_name, NT_PPC_VMX, ppc_vmx, size);
10770 elfcore_write_ppc_vsx (bfd *abfd,
10773 const void *ppc_vsx,
10776 char *note_name = "LINUX";
10777 return elfcore_write_note (abfd, buf, bufsiz,
10778 note_name, NT_PPC_VSX, ppc_vsx, size);
10782 elfcore_write_s390_high_gprs (bfd *abfd,
10785 const void *s390_high_gprs,
10788 char *note_name = "LINUX";
10789 return elfcore_write_note (abfd, buf, bufsiz,
10790 note_name, NT_S390_HIGH_GPRS,
10791 s390_high_gprs, size);
10795 elfcore_write_s390_timer (bfd *abfd,
10798 const void *s390_timer,
10801 char *note_name = "LINUX";
10802 return elfcore_write_note (abfd, buf, bufsiz,
10803 note_name, NT_S390_TIMER, s390_timer, size);
10807 elfcore_write_s390_todcmp (bfd *abfd,
10810 const void *s390_todcmp,
10813 char *note_name = "LINUX";
10814 return elfcore_write_note (abfd, buf, bufsiz,
10815 note_name, NT_S390_TODCMP, s390_todcmp, size);
10819 elfcore_write_s390_todpreg (bfd *abfd,
10822 const void *s390_todpreg,
10825 char *note_name = "LINUX";
10826 return elfcore_write_note (abfd, buf, bufsiz,
10827 note_name, NT_S390_TODPREG, s390_todpreg, size);
10831 elfcore_write_s390_ctrs (bfd *abfd,
10834 const void *s390_ctrs,
10837 char *note_name = "LINUX";
10838 return elfcore_write_note (abfd, buf, bufsiz,
10839 note_name, NT_S390_CTRS, s390_ctrs, size);
10843 elfcore_write_s390_prefix (bfd *abfd,
10846 const void *s390_prefix,
10849 char *note_name = "LINUX";
10850 return elfcore_write_note (abfd, buf, bufsiz,
10851 note_name, NT_S390_PREFIX, s390_prefix, size);
10855 elfcore_write_s390_last_break (bfd *abfd,
10858 const void *s390_last_break,
10861 char *note_name = "LINUX";
10862 return elfcore_write_note (abfd, buf, bufsiz,
10863 note_name, NT_S390_LAST_BREAK,
10864 s390_last_break, size);
10868 elfcore_write_s390_system_call (bfd *abfd,
10871 const void *s390_system_call,
10874 char *note_name = "LINUX";
10875 return elfcore_write_note (abfd, buf, bufsiz,
10876 note_name, NT_S390_SYSTEM_CALL,
10877 s390_system_call, size);
10881 elfcore_write_s390_tdb (bfd *abfd,
10884 const void *s390_tdb,
10887 char *note_name = "LINUX";
10888 return elfcore_write_note (abfd, buf, bufsiz,
10889 note_name, NT_S390_TDB, s390_tdb, size);
10893 elfcore_write_s390_vxrs_low (bfd *abfd,
10896 const void *s390_vxrs_low,
10899 char *note_name = "LINUX";
10900 return elfcore_write_note (abfd, buf, bufsiz,
10901 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
10905 elfcore_write_s390_vxrs_high (bfd *abfd,
10908 const void *s390_vxrs_high,
10911 char *note_name = "LINUX";
10912 return elfcore_write_note (abfd, buf, bufsiz,
10913 note_name, NT_S390_VXRS_HIGH,
10914 s390_vxrs_high, size);
10918 elfcore_write_s390_gs_cb (bfd *abfd,
10921 const void *s390_gs_cb,
10924 char *note_name = "LINUX";
10925 return elfcore_write_note (abfd, buf, bufsiz,
10926 note_name, NT_S390_GS_CB,
10931 elfcore_write_s390_gs_bc (bfd *abfd,
10934 const void *s390_gs_bc,
10937 char *note_name = "LINUX";
10938 return elfcore_write_note (abfd, buf, bufsiz,
10939 note_name, NT_S390_GS_BC,
10944 elfcore_write_arm_vfp (bfd *abfd,
10947 const void *arm_vfp,
10950 char *note_name = "LINUX";
10951 return elfcore_write_note (abfd, buf, bufsiz,
10952 note_name, NT_ARM_VFP, arm_vfp, size);
10956 elfcore_write_aarch_tls (bfd *abfd,
10959 const void *aarch_tls,
10962 char *note_name = "LINUX";
10963 return elfcore_write_note (abfd, buf, bufsiz,
10964 note_name, NT_ARM_TLS, aarch_tls, size);
10968 elfcore_write_aarch_hw_break (bfd *abfd,
10971 const void *aarch_hw_break,
10974 char *note_name = "LINUX";
10975 return elfcore_write_note (abfd, buf, bufsiz,
10976 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
10980 elfcore_write_aarch_hw_watch (bfd *abfd,
10983 const void *aarch_hw_watch,
10986 char *note_name = "LINUX";
10987 return elfcore_write_note (abfd, buf, bufsiz,
10988 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
10992 elfcore_write_register_note (bfd *abfd,
10995 const char *section,
10999 if (strcmp (section, ".reg2") == 0)
11000 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
11001 if (strcmp (section, ".reg-xfp") == 0)
11002 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
11003 if (strcmp (section, ".reg-xstate") == 0)
11004 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
11005 if (strcmp (section, ".reg-ppc-vmx") == 0)
11006 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
11007 if (strcmp (section, ".reg-ppc-vsx") == 0)
11008 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
11009 if (strcmp (section, ".reg-s390-high-gprs") == 0)
11010 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
11011 if (strcmp (section, ".reg-s390-timer") == 0)
11012 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
11013 if (strcmp (section, ".reg-s390-todcmp") == 0)
11014 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
11015 if (strcmp (section, ".reg-s390-todpreg") == 0)
11016 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
11017 if (strcmp (section, ".reg-s390-ctrs") == 0)
11018 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
11019 if (strcmp (section, ".reg-s390-prefix") == 0)
11020 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
11021 if (strcmp (section, ".reg-s390-last-break") == 0)
11022 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
11023 if (strcmp (section, ".reg-s390-system-call") == 0)
11024 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
11025 if (strcmp (section, ".reg-s390-tdb") == 0)
11026 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
11027 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
11028 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
11029 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
11030 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
11031 if (strcmp (section, ".reg-s390-gs-cb") == 0)
11032 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
11033 if (strcmp (section, ".reg-s390-gs-bc") == 0)
11034 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
11035 if (strcmp (section, ".reg-arm-vfp") == 0)
11036 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
11037 if (strcmp (section, ".reg-aarch-tls") == 0)
11038 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
11039 if (strcmp (section, ".reg-aarch-hw-break") == 0)
11040 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
11041 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
11042 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
11047 elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
11052 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
11053 gABI specifies that PT_NOTE alignment should be aligned to 4
11054 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
11055 align is less than 4, we use 4 byte alignment. */
11058 if (align != 4 && align != 8)
11062 while (p < buf + size)
11064 Elf_External_Note *xnp = (Elf_External_Note *) p;
11065 Elf_Internal_Note in;
11067 if (offsetof (Elf_External_Note, name) > buf - p + size)
11070 in.type = H_GET_32 (abfd, xnp->type);
11072 in.namesz = H_GET_32 (abfd, xnp->namesz);
11073 in.namedata = xnp->name;
11074 if (in.namesz > buf - in.namedata + size)
11077 in.descsz = H_GET_32 (abfd, xnp->descsz);
11078 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
11079 in.descpos = offset + (in.descdata - buf);
11081 && (in.descdata >= buf + size
11082 || in.descsz > buf - in.descdata + size))
11085 switch (bfd_get_format (abfd))
11092 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
11095 const char * string;
11097 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
11101 GROKER_ELEMENT ("", elfcore_grok_note),
11102 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
11103 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
11104 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
11105 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
11106 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note)
11108 #undef GROKER_ELEMENT
11111 for (i = ARRAY_SIZE (grokers); i--;)
11113 if (in.namesz >= grokers[i].len
11114 && strncmp (in.namedata, grokers[i].string,
11115 grokers[i].len) == 0)
11117 if (! grokers[i].func (abfd, & in))
11126 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
11128 if (! elfobj_grok_gnu_note (abfd, &in))
11131 else if (in.namesz == sizeof "stapsdt"
11132 && strcmp (in.namedata, "stapsdt") == 0)
11134 if (! elfobj_grok_stapsdt_note (abfd, &in))
11140 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
11147 elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
11152 if (size == 0 || (size + 1) == 0)
11155 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
11158 buf = (char *) bfd_malloc (size + 1);
11162 /* PR 17512: file: ec08f814
11163 0-termintate the buffer so that string searches will not overflow. */
11166 if (bfd_bread (buf, size, abfd) != size
11167 || !elf_parse_notes (abfd, buf, size, offset, align))
11177 /* Providing external access to the ELF program header table. */
11179 /* Return an upper bound on the number of bytes required to store a
11180 copy of ABFD's program header table entries. Return -1 if an error
11181 occurs; bfd_get_error will return an appropriate code. */
11184 bfd_get_elf_phdr_upper_bound (bfd *abfd)
11186 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11188 bfd_set_error (bfd_error_wrong_format);
11192 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
11195 /* Copy ABFD's program header table entries to *PHDRS. The entries
11196 will be stored as an array of Elf_Internal_Phdr structures, as
11197 defined in include/elf/internal.h. To find out how large the
11198 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
11200 Return the number of program header table entries read, or -1 if an
11201 error occurs; bfd_get_error will return an appropriate code. */
11204 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
11208 if (abfd->xvec->flavour != bfd_target_elf_flavour)
11210 bfd_set_error (bfd_error_wrong_format);
11214 num_phdrs = elf_elfheader (abfd)->e_phnum;
11215 memcpy (phdrs, elf_tdata (abfd)->phdr,
11216 num_phdrs * sizeof (Elf_Internal_Phdr));
11221 enum elf_reloc_type_class
11222 _bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
11223 const asection *rel_sec ATTRIBUTE_UNUSED,
11224 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
11226 return reloc_class_normal;
11229 /* For RELA architectures, return the relocation value for a
11230 relocation against a local symbol. */
11233 _bfd_elf_rela_local_sym (bfd *abfd,
11234 Elf_Internal_Sym *sym,
11236 Elf_Internal_Rela *rel)
11238 asection *sec = *psec;
11239 bfd_vma relocation;
11241 relocation = (sec->output_section->vma
11242 + sec->output_offset
11244 if ((sec->flags & SEC_MERGE)
11245 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
11246 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
11249 _bfd_merged_section_offset (abfd, psec,
11250 elf_section_data (sec)->sec_info,
11251 sym->st_value + rel->r_addend);
11254 /* If we have changed the section, and our original section is
11255 marked with SEC_EXCLUDE, it means that the original
11256 SEC_MERGE section has been completely subsumed in some
11257 other SEC_MERGE section. In this case, we need to leave
11258 some info around for --emit-relocs. */
11259 if ((sec->flags & SEC_EXCLUDE) != 0)
11260 sec->kept_section = *psec;
11263 rel->r_addend -= relocation;
11264 rel->r_addend += sec->output_section->vma + sec->output_offset;
11270 _bfd_elf_rel_local_sym (bfd *abfd,
11271 Elf_Internal_Sym *sym,
11275 asection *sec = *psec;
11277 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
11278 return sym->st_value + addend;
11280 return _bfd_merged_section_offset (abfd, psec,
11281 elf_section_data (sec)->sec_info,
11282 sym->st_value + addend);
11285 /* Adjust an address within a section. Given OFFSET within SEC, return
11286 the new offset within the section, based upon changes made to the
11287 section. Returns -1 if the offset is now invalid.
11288 The offset (in abnd out) is in target sized bytes, however big a
11292 _bfd_elf_section_offset (bfd *abfd,
11293 struct bfd_link_info *info,
11297 switch (sec->sec_info_type)
11299 case SEC_INFO_TYPE_STABS:
11300 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
11302 case SEC_INFO_TYPE_EH_FRAME:
11303 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
11306 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
11308 /* Reverse the offset. */
11309 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11310 bfd_size_type address_size = bed->s->arch_size / 8;
11312 /* address_size and sec->size are in octets. Convert
11313 to bytes before subtracting the original offset. */
11314 offset = (sec->size - address_size) / bfd_octets_per_byte (abfd) - offset;
11320 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
11321 reconstruct an ELF file by reading the segments out of remote memory
11322 based on the ELF file header at EHDR_VMA and the ELF program headers it
11323 points to. If not null, *LOADBASEP is filled in with the difference
11324 between the VMAs from which the segments were read, and the VMAs the
11325 file headers (and hence BFD's idea of each section's VMA) put them at.
11327 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
11328 remote memory at target address VMA into the local buffer at MYADDR; it
11329 should return zero on success or an `errno' code on failure. TEMPL must
11330 be a BFD for an ELF target with the word size and byte order found in
11331 the remote memory. */
11334 bfd_elf_bfd_from_remote_memory
11337 bfd_size_type size,
11338 bfd_vma *loadbasep,
11339 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
11341 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
11342 (templ, ehdr_vma, size, loadbasep, target_read_memory);
11346 _bfd_elf_get_synthetic_symtab (bfd *abfd,
11347 long symcount ATTRIBUTE_UNUSED,
11348 asymbol **syms ATTRIBUTE_UNUSED,
11353 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11356 const char *relplt_name;
11357 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
11361 Elf_Internal_Shdr *hdr;
11367 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
11370 if (dynsymcount <= 0)
11373 if (!bed->plt_sym_val)
11376 relplt_name = bed->relplt_name;
11377 if (relplt_name == NULL)
11378 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
11379 relplt = bfd_get_section_by_name (abfd, relplt_name);
11380 if (relplt == NULL)
11383 hdr = &elf_section_data (relplt)->this_hdr;
11384 if (hdr->sh_link != elf_dynsymtab (abfd)
11385 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
11388 plt = bfd_get_section_by_name (abfd, ".plt");
11392 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
11393 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
11396 count = relplt->size / hdr->sh_entsize;
11397 size = count * sizeof (asymbol);
11398 p = relplt->relocation;
11399 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
11401 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
11402 if (p->addend != 0)
11405 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
11407 size += sizeof ("+0x") - 1 + 8;
11412 s = *ret = (asymbol *) bfd_malloc (size);
11416 names = (char *) (s + count);
11417 p = relplt->relocation;
11419 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
11424 addr = bed->plt_sym_val (i, plt, p);
11425 if (addr == (bfd_vma) -1)
11428 *s = **p->sym_ptr_ptr;
11429 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
11430 we are defining a symbol, ensure one of them is set. */
11431 if ((s->flags & BSF_LOCAL) == 0)
11432 s->flags |= BSF_GLOBAL;
11433 s->flags |= BSF_SYNTHETIC;
11435 s->value = addr - plt->vma;
11438 len = strlen ((*p->sym_ptr_ptr)->name);
11439 memcpy (names, (*p->sym_ptr_ptr)->name, len);
11441 if (p->addend != 0)
11445 memcpy (names, "+0x", sizeof ("+0x") - 1);
11446 names += sizeof ("+0x") - 1;
11447 bfd_sprintf_vma (abfd, buf, p->addend);
11448 for (a = buf; *a == '0'; ++a)
11451 memcpy (names, a, len);
11454 memcpy (names, "@plt", sizeof ("@plt"));
11455 names += sizeof ("@plt");
11462 /* It is only used by x86-64 so far.
11463 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
11464 but current usage would allow all of _bfd_std_section to be zero. */
11465 static const asymbol lcomm_sym
11466 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
11467 asection _bfd_elf_large_com_section
11468 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
11469 "LARGE_COMMON", 0, SEC_IS_COMMON);
11472 _bfd_elf_post_process_headers (bfd * abfd,
11473 struct bfd_link_info * link_info ATTRIBUTE_UNUSED)
11475 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
11477 i_ehdrp = elf_elfheader (abfd);
11479 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
11481 /* To make things simpler for the loader on Linux systems we set the
11482 osabi field to ELFOSABI_GNU if the binary contains symbols of
11483 the STT_GNU_IFUNC type or STB_GNU_UNIQUE binding. */
11484 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE
11485 && elf_tdata (abfd)->has_gnu_symbols)
11486 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
11490 /* Return TRUE for ELF symbol types that represent functions.
11491 This is the default version of this function, which is sufficient for
11492 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
11495 _bfd_elf_is_function_type (unsigned int type)
11497 return (type == STT_FUNC
11498 || type == STT_GNU_IFUNC);
11501 /* If the ELF symbol SYM might be a function in SEC, return the
11502 function size and set *CODE_OFF to the function's entry point,
11503 otherwise return zero. */
11506 _bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
11509 bfd_size_type size;
11511 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
11512 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
11513 || sym->section != sec)
11516 *code_off = sym->value;
11518 if (!(sym->flags & BSF_SYNTHETIC))
11519 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;